0% found this document useful (0 votes)
8 views77 pages

Project_18_Movie_Recommendation_System_using_Machine_Learning_with_Python

The document outlines a process for building a movie recommendation system using Python, involving data collection, pre-processing, and feature extraction. It utilizes libraries such as Pandas for data handling and Scikit-learn for calculating cosine similarity between movies based on selected features. The system allows users to input their favorite movie and generates recommendations based on similarity scores.

Uploaded by

raiv09827
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views77 pages

Project_18_Movie_Recommendation_System_using_Machine_Learning_with_Python

The document outlines a process for building a movie recommendation system using Python, involving data collection, pre-processing, and feature extraction. It utilizes libraries such as Pandas for data handling and Scikit-learn for calculating cosine similarity between movies based on selected features. The system allows users to input their favorite movie and generates recommendations based on similarity scores.

Uploaded by

raiv09827
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 77

Importing the dependencies

In [ ]: import numpy as np
import pandas as pd
import difflib
from sklearn.feature_extraction.text import TfidfVectorizer
from sklearn.metrics.pairwise import cosine_similarity

Data Collection and Pre-Processing

In [ ]: # loading the data from the csv file to apandas dataframe


movies_data = pd.read_csv('/content/movies.csv')

In [ ]: # printing the first 5 rows of the dataframe


movies_data.head()

Out[ ]: index budget genres homepage i

Action
Adventure
0 0 237000000 Fantasy http://www.avatarmovie.com/ 1999
Science
Fiction

Adventure
1 1 300000000 Fantasy http://disney.go.com/disneypictures/pirates/ 28
Action

Action
2 2 245000000 Adventure http://www.sonypictures.com/movies/spectre/ 20664
Crime

Action
Crime
3 3 250000000 http://www.thedarkknightrises.com/ 4902
Drama
Thriller

Action
Adventure
4 4 260000000 http://movies.disney.com/john-carter 4952
Science
Fiction
In [ ]: # number of rows and columns in the data frame

movies_data.shape

Out[ ]: (4803, 24)

In [ ]: # selecting the relevant features for recommendation

selected_features = ['genres','keywords','tagline','cast','director']
print(selected_features)

['genres', 'keywords', 'tagline', 'cast', 'director']

In [ ]: # replacing the null valuess with null string

for feature in selected_features:


movies_data[feature] = movies_data[feature].fillna('')

In [ ]: # combining all the 5 selected features

combined_features = movies_data['genres']+' '+movies_data['keywords']+' '+mo

In [ ]: print(combined_features)

0 Action Adventure Fantasy Science Fiction cultu...


1 Adventure Fantasy Action ocean drug abuse exot...
2 Action Adventure Crime spy based on novel secr...
3 Action Crime Drama Thriller dc comics crime fi...
4 Action Adventure Science Fiction based on nove...
...
4798 Action Crime Thriller united states\u2013mexic...
4799 Comedy Romance A newlywed couple's honeymoon ...
4800 Comedy Drama Romance TV Movie date love at fir...
4801 A New Yorker in Shanghai Daniel Henney Eliza...
4802 Documentary obsession camcorder crush dream gi...
Length: 4803, dtype: object

In [ ]: # converting the text data to feature vectors

vectorizer = TfidfVectorizer()

In [ ]: feature_vectors = vectorizer.fit_transform(combined_features)

In [ ]: print(feature_vectors)
(0, 2432) 0.17272411194153
(0, 7755) 0.1128035714854756
(0, 13024) 0.1942362060108871
(0, 10229) 0.16058685400095302
(0, 8756) 0.22709015857011816
(0, 14608) 0.15150672398763912
(0, 16668) 0.19843263965100372
(0, 14064) 0.20596090415084142
(0, 13319) 0.2177470539412484
(0, 17290) 0.20197912553916567
(0, 17007) 0.23643326319898797
(0, 13349) 0.15021264094167086
(0, 11503) 0.27211310056983656
(0, 11192) 0.09049319826481456
(0, 16998) 0.1282126322850579
(0, 15261) 0.07095833561276566
(0, 4945) 0.24025852494110758
(0, 14271) 0.21392179219912877
(0, 3225) 0.24960162956997736
(0, 16587) 0.12549432354918996
(0, 14378) 0.33962752210959823
(0, 5836) 0.1646750903586285
(0, 3065) 0.22208377802661425
(0, 3678) 0.21392179219912877
(0, 5437) 0.1036413987316636
: :
(4801, 17266) 0.2886098184932947
(4801, 4835) 0.24713765026963996
(4801, 403) 0.17727585190343226
(4801, 6935) 0.2886098184932947
(4801, 11663) 0.21557500762727902
(4801, 1672) 0.1564793427630879
(4801, 10929) 0.13504166990041588
(4801, 7474) 0.11307961713172225
(4801, 3796) 0.3342808988877418
(4802, 6996) 0.5700048226105303
(4802, 5367) 0.22969114490410403
(4802, 3654) 0.262512960498006
(4802, 2425) 0.24002350969074696
(4802, 4608) 0.24002350969074696
(4802, 6417) 0.21753405888348784
(4802, 4371) 0.1538239182675544
(4802, 12989) 0.1696476532191718
(4802, 1316) 0.1960747079005741
(4802, 4528) 0.19504460807622875
(4802, 3436) 0.21753405888348784
(4802, 6155) 0.18056463596934083
(4802, 4980) 0.16078053641367315
(4802, 2129) 0.3099656128577656
(4802, 4518) 0.16784466610624255
(4802, 11161) 0.17867407682173203

Cosine Similarity

In [ ]: # getting the similarity scores using cosine similarity


similarity = cosine_similarity(feature_vectors)

In [ ]: print(similarity)

[[1. 0.07219487 0.037733 ... 0. 0. 0. ]


[0.07219487 1. 0.03281499 ... 0.03575545 0. 0. ]
[0.037733 0.03281499 1. ... 0. 0.05389661 0. ]
...
[0. 0.03575545 0. ... 1. 0. 0.02651502]
[0. 0. 0.05389661 ... 0. 1. 0. ]
[0. 0. 0. ... 0.02651502 0. 1. ]]

In [ ]: print(similarity.shape)

(4803, 4803)

Getting the movie name from the user

In [ ]: # getting the movie name from the user

movie_name = input(' Enter your favourite movie name : ')

Enter your favourite movie name : iron man

In [ ]: # creating a list with all the movie names given in the dataset

list_of_all_titles = movies_data['title'].tolist()
print(list_of_all_titles)
['Avatar', "Pirates of the Caribbean: At World's End", 'Spectre', 'The Dark
Knight Rises', 'John Carter', 'Spider-Man 3', 'Tangled', 'Avengers: Age of U
ltron', 'Harry Potter and the Half-Blood Prince', 'Batman v Superman: Dawn o
f Justice', 'Superman Returns', 'Quantum of Solace', "Pirates of the Caribbe
an: Dead Man's Chest", 'The Lone Ranger', 'Man of Steel', 'The Chronicles of
Narnia: Prince Caspian', 'The Avengers', 'Pirates of the Caribbean: On Stran
ger Tides', 'Men in Black 3', 'The Hobbit: The Battle of the Five Armies',
'The Amazing Spider-Man', 'Robin Hood', 'The Hobbit: The Desolation of Smau
g', 'The Golden Compass', 'King Kong', 'Titanic', 'Captain America: Civil Wa
r', 'Battleship', 'Jurassic World', 'Skyfall', 'Spider-Man 2', 'Iron Man 3',
'Alice in Wonderland', 'X-Men: The Last Stand', 'Monsters University', 'Tran
sformers: Revenge of the Fallen', 'Transformers: Age of Extinction', 'Oz: Th
e Great and Powerful', 'The Amazing Spider-Man 2', 'TRON: Legacy', 'Cars 2',
'Green Lantern', 'Toy Story 3', 'Terminator Salvation', 'Furious 7', 'World
War Z', 'X-Men: Days of Future Past', 'Star Trek Into Darkness', 'Jack the G
iant Slayer', 'The Great Gatsby', 'Prince of Persia: The Sands of Time', 'Pa
cific Rim', 'Transformers: Dark of the Moon', 'Indiana Jones and the Kingdom
of the Crystal Skull', 'The Good Dinosaur', 'Brave', 'Star Trek Beyond', 'WA
LL·E', 'Rush Hour 3', '2012', 'A Christmas Carol', 'Jupiter Ascending', 'The
Legend of Tarzan', 'The Chronicles of Narnia: The Lion, the Witch and the Wa
rdrobe', 'X-Men: Apocalypse', 'The Dark Knight', 'Up', 'Monsters vs Aliens',
'Iron Man', 'Hugo', 'Wild Wild West', 'The Mummy: Tomb of the Dragon Empero
r', 'Suicide Squad', 'Evan Almighty', 'Edge of Tomorrow', 'Waterworld', 'G.
I. Joe: The Rise of Cobra', 'Inside Out', 'The Jungle Book', 'Iron Man 2',
'Snow White and the Huntsman', 'Maleficent', 'Dawn of the Planet of the Ape
s', 'The Lovers', '47 Ronin', 'Captain America: The Winter Soldier', 'Shrek
Forever After', 'Tomorrowland', 'Big Hero 6', 'Wreck-It Ralph', 'The Polar E
xpress', 'Independence Day: Resurgence', 'How to Train Your Dragon', 'Termin
ator 3: Rise of the Machines', 'Guardians of the Galaxy', 'Interstellar', 'I
nception', 'Shin Godzilla', 'The Hobbit: An Unexpected Journey', 'The Fast a
nd the Furious', 'The Curious Case of Benjamin Button', 'X-Men: First Clas
s', 'The Hunger Games: Mockingjay - Part 2', "The Sorcerer's Apprentice", 'P
oseidon', 'Alice Through the Looking Glass', 'Shrek the Third', 'Warcraft',
'Terminator Genisys', 'The Chronicles of Narnia: The Voyage of the Dawn Trea
der', 'Pearl Harbor', 'Transformers', 'Alexander', 'Harry Potter and the Ord
er of the Phoenix', 'Harry Potter and the Goblet of Fire', 'Hancock', 'I Am
Legend', 'Charlie and the Chocolate Factory', 'Ratatouille', 'Batman Begin
s', 'Madagascar: Escape 2 Africa', 'Night at the Museum: Battle of the Smith
sonian', 'X-Men Origins: Wolverine', 'The Matrix Revolutions', 'Frozen', 'Th
e Matrix Reloaded', 'Thor: The Dark World', 'Mad Max: Fury Road', 'Angels &
Demons', 'Thor', 'Bolt', 'G-Force', 'Wrath of the Titans', 'Dark Shadows',
'Mission: Impossible - Rogue Nation', 'The Wolfman', 'Bee Movie', 'Kung Fu P
anda 2', 'The Last Airbender', 'Mission: Impossible III', 'White House Dow
n', 'Mars Needs Moms', 'Flushed Away', 'Pan', 'Mr. Peabody & Sherman', 'Tro
y', "Madagascar 3: Europe's Most Wanted", 'Die Another Day', 'Ghostbusters',
'Armageddon', 'Men in Black II', 'Beowulf', 'Kung Fu Panda 3', 'Mission: Imp
ossible - Ghost Protocol', 'Rise of the Guardians', 'Fun with Dick and Jan
e', 'The Last Samurai', 'Exodus: Gods and Kings', 'Star Trek', 'Spider-Man',
'How to Train Your Dragon 2', 'Gods of Egypt', 'Stealth', 'Watchmen', 'Letha
l Weapon 4', 'Hulk', 'G.I. Joe: Retaliation', 'Sahara', 'Final Fantasy: The
Spirits Within', 'Captain America: The First Avenger', 'The World Is Not Eno
ugh', 'Master and Commander: The Far Side of the World', 'The Twilight Saga:
Breaking Dawn - Part 2', 'Happy Feet Two', 'The Incredible Hulk', 'The BFG',
'The Revenant', 'Turbo', 'Rango', 'Penguins of Madagascar', 'The Bourne Ulti
matum', 'Kung Fu Panda', 'Ant-Man', 'The Hunger Games: Catching Fire', 'Hom
e', 'War of the Worlds', 'Bad Boys II', 'Puss in Boots', 'Salt', 'Noah', 'Th
e Adventures of Tintin', 'Harry Potter and the Prisoner of Azkaban', 'Austra
lia', 'After Earth', 'Dinosaur', 'Night at the Museum: Secret of the Tomb',
'Megamind', "Harry Potter and the Philosopher's Stone", 'R.I.P.D.', 'Pirates
of the Caribbean: The Curse of the Black Pearl', 'The Hunger Games: Mockingj
ay - Part 1', 'The Da Vinci Code', 'Rio 2', 'X2', 'Fast Five', 'Sherlock Hol
mes: A Game of Shadows', 'Clash of the Titans', 'Total Recall', 'The 13th Wa
rrior', 'The Bourne Legacy', 'Batman & Robin', 'How the Grinch Stole Christm
as', 'The Day After Tomorrow', 'Mission: Impossible II', 'The Perfect Stor
m', 'Fantastic 4: Rise of the Silver Surfer', 'Life of Pi', 'Ghost Rider',
'Jason Bourne', "Charlie's Angels: Full Throttle", 'Prometheus', 'Stuart Lit
tle 2', 'Elysium', 'The Chronicles of Riddick', 'RoboCop', 'Speed Racer', 'H
ow Do You Know', 'Knight and Day', 'Oblivion', 'Star Wars: Episode III - Rev
enge of the Sith', 'Star Wars: Episode II - Attack of the Clones', 'Monster
s, Inc.', 'The Wolverine', 'Star Wars: Episode I - The Phantom Menace', 'The
Croods', 'Asterix at the Olympic Games', 'Windtalkers', "The Huntsman: Winte
r's War", 'Teenage Mutant Ninja Turtles', 'Gravity', "Dante's Peak", 'Teenag
e Mutant Ninja Turtles: Out of the Shadows', 'Fantastic Four', 'Night at the
Museum', 'San Andreas', 'Tomorrow Never Dies', 'The Patriot', "Ocean's Twelv
e", 'Mr. & Mrs. Smith', 'Insurgent', 'The Aviator', "Gulliver's Travels", 'T
he Green Hornet', '300: Rise of an Empire', 'The Smurfs', 'Home on the Rang
e', 'Allegiant', 'Real Steel', 'The Smurfs 2', 'Speed 2: Cruise Control', "E
nder's Game", 'Live Free or Die Hard', 'The Lord of the Rings: The Fellowshi
p of the Ring', 'Around the World in 80 Days', 'Ali', 'The Cat in the Hat',
'I, Robot', 'Kingdom of Heaven', 'Stuart Little', 'The Princess and the Fro
g', 'The Martian', 'The Island', 'Town & Country', 'Gone in Sixty Seconds',
'Gladiator', 'Minority Report', 'Harry Potter and the Chamber of Secrets',
'Casino Royale', 'Planet of the Apes', 'Terminator 2: Judgment Day', 'Public
Enemies', 'American Gangster', 'True Lies', 'The Taking of Pelham 1 2 3', 'L
ittle Fockers', 'The Other Guys', 'Eraser', 'Django Unchained', 'The Hunchba
ck of Notre Dame', "The Emperor's New Groove", 'The Expendables 2', 'Nationa
l Treasure', 'Eragon', 'Where the Wild Things Are', 'Epic', 'The Tourist',
'End of Days', 'Blood Diamond', 'The Wolf of Wall Street', 'Batman Forever',
'Starship Troopers', 'Cloud Atlas', "Legend of the Guardians: The Owls of G
a'Hoole", 'Catwoman', 'Hercules', 'Treasure Planet', 'Land of the Lost', 'Th
e Expendables 3', 'Point Break', 'Son of the Mask', 'In the Heart of the Se
a', 'The Adventures of Pluto Nash', 'Green Zone', 'The Peanuts Movie', 'The
Spanish Prisoner', 'The Mummy Returns', 'Gangs of New York', 'The Flowers of
War', "Surf's Up", 'The Stepford Wives', 'Black Hawk Down', 'The Campaign',
'The Fifth Element', 'Sex and the City 2', 'The Road to El Dorado', 'Ice Ag
e: Continental Drift', 'Cinderella', 'The Lovely Bones', 'Finding Nemo', 'Th
e Lord of the Rings: The Return of the King', 'The Lord of the Rings: The Tw
o Towers', 'Seventh Son', 'Lara Croft: Tomb Raider', 'Transcendence', 'Juras
sic Park III', 'Rise of the Planet of the Apes', 'The Spiderwick Chronicle
s', 'A Good Day to Die Hard', 'The Alamo', 'The Incredibles', 'Cutthroat Isl
and', 'Percy Jackson & the Olympians: The Lightning Thief', 'Men in Black',
'Toy Story 2', 'Unstoppable', 'Rush Hour 2', 'What Lies Beneath', 'Cloudy wi
th a Chance of Meatballs', 'Ice Age: Dawn of the Dinosaurs', 'The Secret Lif
e of Walter Mitty', "Charlie's Angels", 'The Departed', 'Mulan', 'Tropic Thu
nder', 'The Girl with the Dragon Tattoo', 'Die Hard: With a Vengeance', 'She
rlock Holmes', 'Ben-Hur', 'Atlantis: The Lost Empire', 'Alvin and the Chipmu
nks: The Road Chip', 'Valkyrie', "You Don't Mess with the Zohan", 'Pixels',
'A.I. Artificial Intelligence', 'The Haunted Mansion', 'Contact', 'Hollow Ma
n', 'The Interpreter', 'Percy Jackson: Sea of Monsters', 'Lara Croft Tomb Ra
ider: The Cradle of Life', 'Now You See Me 2', 'The Saint', 'Spy Game', 'Mis
sion to Mars', 'Rio', 'Bicentennial Man', 'Volcano', "The Devil's Own", 'K-1
9: The Widowmaker', 'Conan the Barbarian', 'Cinderella Man', 'The Nutcracke
r: The Untold Story', 'Seabiscuit', 'Twister', 'Cast Away', 'Happy Feet', 'T
he Bourne Supremacy', 'Air Force One', "Ocean's Eleven", 'The Three Musketee
rs', 'Hotel Transylvania', 'Enchanted', 'Safe House', '102 Dalmatians', 'Tow
er Heist', 'The Holiday', 'Enemy of the State', "It's Complicated", "Ocean's
Thirteen", 'Open Season', 'Divergent', 'Enemy at the Gates', 'The Rundown',
'Last Action Hero', 'Memoirs of a Geisha', 'The Fast and the Furious: Tokyo
Drift', 'Arthur Christmas', 'Meet Joe Black', 'Collateral Damage', 'All That
Jazz', 'Mirror Mirror', 'Scott Pilgrim vs. the World', 'The Core', 'Nutty Pr
ofessor II: The Klumps', 'Scooby-Doo', 'Dredd', 'Click', 'Creepshow', 'Cats
& Dogs 2 : The Revenge of Kitty Galore', 'Jumper', 'Hellboy II: The Golden A
rmy', 'Zodiac', 'The 6th Day', 'Bruce Almighty', 'The Expendables', 'Missio
n: Impossible', 'The Hunger Games', 'The Hangover Part II', 'Batman Return
s', 'Over the Hedge', 'Lilo & Stitch', "Charlotte's Web", 'Deep Impact', 'RE
D 2', 'The Longest Yard', 'Alvin and the Chipmunks: Chipwrecked', 'Grown Ups
2', 'Get Smart', "Something's Gotta Give", 'Shutter Island', 'Four Christmas
es', 'Robots', 'Face/Off', 'Bedtime Stories', 'Road to Perdition', 'Just Go
with It', 'Con Air', 'Eagle Eye', 'Cold Mountain', 'The Book of Eli', 'Flubb
er', 'The Haunting', 'Space Jam', 'The Pink Panther', 'The Day the Earth Sto
od Still', 'Conspiracy Theory', 'Fury', 'Six Days Seven Nights', 'Yogi Bea
r', 'Spirit: Stallion of the Cimarron', 'Zookeeper', 'Lost in Space', 'The M
anchurian Candidate', 'Déjà Vu', 'Hotel Transylvania 2', 'Fantasia 2000', 'T
he Time Machine', 'Mighty Joe Young', 'Swordfish', 'The Legend of Zorro', 'W
hat Dreams May Come', 'Little Nicky', 'The Brothers Grimm', 'Mars Attacks!',
'Evolution', 'The Edge', 'Surrogates', 'Thirteen Days', 'Daylight', 'Walking
With Dinosaurs', 'Battlefield Earth', 'Looney Tunes: Back in Action', 'Nin
e', 'Timeline', 'The Postman', 'Babe: Pig in the City', 'The Last Witch Hunt
er', 'Red Planet', 'Arthur and the Invisibles', 'Oceans', 'A Sound of Thunde
r', 'Pompeii', 'Top Cat Begins', 'A Beautiful Mind', 'The Lion King', 'Journ
ey 2: The Mysterious Island', 'Cloudy with a Chance of Meatballs 2', 'Red Dr
agon', 'Hidalgo', 'Jack and Jill', '2 Fast 2 Furious', 'The Little Prince',
'The Invasion', 'The Adventures of Rocky & Bullwinkle', 'The Secret Life of
Pets', 'The League of Extraordinary Gentlemen', 'Despicable Me 2', 'Independ
ence Day', 'The Lost World: Jurassic Park', 'Madagascar', 'Children of Men',
'X-Men', 'Wanted', 'The Rock', 'Ice Age: The Meltdown', '50 First Dates', 'H
airspray', 'Exorcist: The Beginning', 'Inspector Gadget', 'Now You See Me',
'Grown Ups', 'The Terminal', 'Hotel for Dogs', 'Vertical Limit', "Charlie Wi
lson's War", 'Shark Tale', 'Dreamgirls', 'Be Cool', 'Munich', 'Tears of the
Sun', 'Killers', 'The Man from U.N.C.L.E.', 'Spanglish', 'Monster House', 'B
andits', 'First Knight', 'Anna and the King', 'Immortals', 'Hostage', 'Titan
A.E.', 'Hollywood Homicide', 'Soldier', 'Carriers', 'Monkeybone', 'Flight of
the Phoenix', 'Unbreakable', 'Minions', 'Sucker Punch', 'Snake Eyes', 'Spher
e', 'The Angry Birds Movie', "Fool's Gold", 'Funny People', 'The Kingdom',
'Talladega Nights: The Ballad of Ricky Bobby', 'Dr. Dolittle 2', 'Bravehear
t', 'Jarhead', 'The Simpsons Movie', 'The Majestic', 'Driven', 'Two Brother
s', 'The Village', 'Doctor Dolittle', 'Signs', 'Shrek 2', 'Cars', 'Runaway B
ride', 'xXx', 'The SpongeBob Movie: Sponge Out of Water', 'Ransom', 'Inglour
ious Basterds', 'Hook', 'Die Hard 2', 'S.W.A.T.', 'Vanilla Sky', 'Lady in th
e Water', 'AVP: Alien vs. Predator', 'Alvin and the Chipmunks: The Squeakque
l', 'We Were Soldiers', 'Olympus Has Fallen', 'Star Trek: Insurrection', 'Ba
ttle: Los Angeles', 'Big Fish', 'Wolf', 'War Horse', 'The Monuments Men', 'T
he Abyss', 'Wall Street: Money Never Sleeps', 'Dracula Untold', 'The Siege',
'Stardust', 'Seven Years in Tibet', 'The Dilemma', 'Bad Company', 'Doom', 'I
Spy', 'Underworld: Awakening', 'Rock of Ages', "Hart's War", 'Killer Elite',
'Rollerball', 'Ballistic: Ecks vs. Sever', 'Hard Rain', 'Osmosis Jones', "Le
gends of Oz: Dorothy's Return", 'Blackhat', 'Sky Captain and the World of To
morrow', 'Basic Instinct 2', 'Escape Plan', 'The Legend of Hercules', 'The S
um of All Fears', 'The Twilight Saga: Eclipse', 'The Score', 'Despicable M
e', 'Money Train', 'Ted 2', 'Agora', 'Mystery Men', 'Hall Pass', 'The Inside
r', 'The Finest Hours', 'Body of Lies', 'Dinner for Schmucks', 'Abraham Linc
oln: Vampire Hunter', 'Entrapment', 'The X Files', 'The Last Legion', 'Savin
g Private Ryan', 'Need for Speed', 'What Women Want', 'Ice Age', 'Dreamcatch
er', 'Lincoln', 'The Matrix', 'Apollo 13', 'The Santa Clause 2', 'Les Miséra
bles', "You've Got Mail", 'Step Brothers', 'The Mask of Zorro', 'Due Date',
'Unbroken', 'Space Cowboys', 'Cliffhanger', 'Broken Arrow', 'The Kid', 'Worl
d Trade Center', 'Mona Lisa Smile', 'The Dictator', 'Eyes Wide Shut', 'Anni
e', 'Focus', 'This Means War', 'Blade: Trinity', 'Red Dawn', 'Primary Color
s', 'Resident Evil: Retribution', 'Death Race', 'The Long Kiss Goodnight',
'Proof of Life', 'Zathura: A Space Adventure', 'Fight Club', 'We Are Marshal
l', 'Hudson Hawk', 'Lucky Numbers', 'I, Frankenstein', 'Oliver Twist', 'Elek
tra', 'Sin City: A Dame to Kill For', 'Random Hearts', 'Everest', 'Perfume:
The Story of a Murderer', 'Austin Powers in Goldmember', 'Astro Boy', 'Juras
sic Park', 'Wyatt Earp', 'Clear and Present Danger', 'Dragon Blade', 'Little
Man', 'U-571', 'The American President', 'The Love Guru', '3000 Miles to Gra
celand', 'The Hateful Eight', 'Blades of Glory', 'Hop', '300', 'Meet the Foc
kers', 'Marley & Me', 'The Green Mile', 'Wild Hogs', 'Chicken Little', 'Gone
Girl', 'The Bourne Identity', 'GoldenEye', "The General's Daughter", 'The Tr
uman Show', 'The Prince of Egypt', 'Daddy Day Care', '2 Guns', 'Cats & Dog
s', 'The Italian Job', 'Two Weeks Notice', 'Antz', 'Couples Retreat', 'Days
of Thunder', 'Cheaper by the Dozen 2', 'Maze Runner: The Scorch Trials', 'Ea
t Pray Love', 'The Family Man', 'RED', 'Any Given Sunday', 'The Horse Whispe
rer', 'Collateral', 'The Scorpion King', 'Ladder 49', 'Jack Reacher', 'Deep
Blue Sea', 'This Is It', 'Contagion', 'Kangaroo Jack', 'Coraline', 'The Happ
ening', 'Man on Fire', 'The Shaggy Dog', 'Starsky & Hutch', 'Jingle All the
Way', 'Hellboy', 'A Civil Action', 'ParaNorman', 'The Jackal', 'Paycheck',
'Up Close & Personal', 'The Tale of Despereaux', 'The Tuxedo', 'Under Siege
2: Dark Territory', 'Jack Ryan: Shadow Recruit', 'Joy', 'London Has Fallen',
'Alien: Resurrection', 'Shooter', 'The Boxtrolls', 'Practical Magic', 'The L
ego Movie', 'Miss Congeniality 2: Armed and Fabulous', 'Reign of Fire', 'Gan
gster Squad', 'Year One', 'Invictus', 'State of Play', 'Duplicity', 'My Favo
rite Martian', 'The Sentinel', 'Planet 51', 'Star Trek: Nemesis', 'Intolerab
le Cruelty', 'Trouble with the Curve', 'Edge of Darkness', 'The Relic', 'Ana
lyze That', 'Righteous Kill', 'Mercury Rising', 'The Soloist', 'The Legend o
f Bagger Vance', 'Almost Famous', 'Garfield: A Tail of Two Kitties', 'xXx: S
tate of the Union', 'Priest', 'Sinbad: Legend of the Seven Seas', 'Event Hor
izon', 'Dragonfly', 'The Black Dahlia', 'Flyboys', 'The Last Castle', 'Super
nova', "Winter's Tale", 'The Mortal Instruments: City of Bones', 'Meet Dav
e', 'Dark Water', 'Edtv', 'Inkheart', 'The Spirit', 'Mortdecai', 'In the Nam
e of the King: A Dungeon Siege Tale', 'Beyond Borders', 'The Monkey King 2',
'The Great Raid', 'Deadpool', 'Holy Man', 'American Sniper', 'Goosebumps',
'Just Like Heaven', 'The Flintstones in Viva Rock Vegas', 'Rambo III', 'Leat
herheads', 'The Ridiculous 6', 'Did You Hear About the Morgans?', 'The Inter
nship', 'Resident Evil: Afterlife', 'Red Tails', "The Devil's Advocate", "Th
at's My Boy", 'DragonHeart', 'After the Sunset', 'Ghost Rider: Spirit of Ven
geance', "Captain Corelli's Mandolin", 'The Pacifier', 'Walking Tall', 'Forr
est Gump', 'Alvin and the Chipmunks', 'Meet the Parents', 'Pocahontas', 'Sup
erman', 'The Nutty Professor', 'Hitch', 'George of the Jungle', 'American We
dding', 'Captain Phillips', 'Date Night', 'Casper', 'The Equalizer', 'Maid i
n Manhattan', 'Crimson Tide', 'The Pursuit of Happyness', 'Flightplan', 'Dis
closure', 'City of Angels', 'Kill Bill: Vol. 1', 'Bowfinger', 'Kill Bill: Vo
l. 2', 'Tango & Cash', 'Death Becomes Her', 'Shanghai Noon', 'Executive Deci
sion', "Mr. Popper's Penguins", 'The Forbidden Kingdom', 'Free Birds', 'Alie
n³', 'Evita', 'Ronin', 'The Ghost and the Darkness', 'Paddington', 'The Watc
h', 'The Hunted', 'Instinct', 'Stuck on You', 'Semi-Pro', 'The Pirates! In a
n Adventure with Scientists!', 'Changeling', 'Chain Reaction', 'The Fan', 'T
he Phantom of the Opera', 'Elizabeth: The Golden Age', 'Æon Flux', 'Gods and
Generals', 'Turbulence', 'Imagine That', 'Muppets Most Wanted', 'Thunderbird
s', 'Burlesque', 'A Very Long Engagement', 'Lolita', 'D-Tox', 'Blade II', 'S
even Pounds', 'Bullet to the Head', 'The Godfather: Part III', 'Elizabethtow
n', 'You, Me and Dupree', 'Superman II', 'Gigli', "All the King's Men", 'Sha
ft', 'Anastasia', 'Moulin Rouge!', 'Domestic Disturbance', 'Black Mass', 'Fl
ags of Our Fathers', 'Law Abiding Citizen', 'Grindhouse', 'Beloved', 'Lucky
You', 'Catch Me If You Can', 'Zero Dark Thirty', 'The Break-Up', 'Mamma Mi
a!', "Valentine's Day", 'The Dukes of Hazzard', 'The Thin Red Line', 'The Ch
ange-Up', 'Man on the Moon', 'Casino', 'From Paris with Love', 'Bulletproof
Monk', 'Me, Myself & Irene', 'Barnyard', 'Deck the Halls', 'The Twilight Sag
a: New Moon', 'Shrek', 'The Adjustment Bureau', 'Robin Hood: Prince of Thiev
es', 'Jerry Maguire', 'Ted', 'As Good as It Gets', 'Patch Adams', 'Anchorman
2: The Legend Continues', 'Mr. Deeds', 'Super 8', 'Erin Brockovich', 'How to
Lose a Guy in 10 Days', '22 Jump Street', 'Interview with the Vampire', 'Yes
Man', 'Central Intelligence', 'Stepmom', "Daddy's Home", 'Into the Woods',
'Inside Man', 'Payback', 'Congo', 'We Bought a Zoo', 'Knowing', 'Failure to
Launch', 'The Ring Two', 'Crazy, Stupid, Love.', 'Garfield', 'Christmas with
the Kranks', 'Moneyball', 'Outbreak', 'Non-Stop', 'Race to Witch Mountain',
'V for Vendetta', 'Shanghai Knights', 'Curious George', 'Herbie Fully Loade
d', "Don't Say a Word", 'Hansel & Gretel: Witch Hunters', 'Unfaithful', 'I A
m Number Four', 'Syriana', '13 Hours: The Secret Soldiers of Benghazi', 'The
Book of Life', 'Firewall', 'Absolute Power', 'G.I. Jane', 'The Game', 'Silen
t Hill', 'The Replacements', 'American Reunion', 'The Negotiator', 'Into the
Storm', 'Beverly Hills Cop III', 'Gremlins 2: The New Batch', 'The Judge',
'The Peacemaker', 'Resident Evil: Apocalypse', 'Bridget Jones: The Edge of R
eason', 'Out of Time', 'On Deadly Ground', 'The Adventures of Sharkboy and L
avagirl', 'The Beach', 'Raising Helen', 'Ninja Assassin', 'For Love of the G
ame', 'Striptease', 'Marmaduke', 'Hereafter', 'Murder by Numbers', 'Assassin
s', 'Hannibal Rising', 'The Story of Us', 'The Host', 'Basic', 'Blood Work',
'The International', 'Escape from L.A.', 'The Iron Giant', 'The Life Aquatic
with Steve Zissou', 'Free State of Jones', 'The Life of David Gale', 'Man of
the House', 'Run All Night', 'Eastern Promises', 'Into the Blue', 'The Messe
nger: The Story of Joan of Arc', 'Your Highness', 'Dream House', 'Mad City',
"Baby's Day Out", 'The Scarlet Letter', 'Fair Game', 'Domino', 'Jade', 'Game
r', 'Beautiful Creatures', 'Death to Smoochy', 'Zoolander 2', 'The Big Bounc
e', 'What Planet Are You From?', 'Drive Angry', 'Street Fighter: The Legend
of Chun-Li', 'The One', 'The Adventures of Ford Fairlane', 'The Boat That Ro
cked', 'Traffic', 'Indiana Jones and the Last Crusade', 'Anna Karenina', 'Ch
appie', 'The Bone Collector', 'Panic Room', 'The Tooth Fairy', 'Three King
s', 'Child 44', 'Rat Race', 'K-PAX', 'Kate & Leopold', 'Bedazzled', 'The Cot
ton Club', '3:10 to Yuma', 'Taken 3', 'Out of Sight', 'The Cable Guy', 'Eart
h', 'Dick Tracy', 'The Thomas Crown Affair', 'Riding in Cars with Boys', 'Fi
rst Blood', 'Solaris', "Happily N'Ever After", 'Mary Reilly', "My Best Frien
d's Wedding", "America's Sweethearts", 'Insomnia', 'Star Trek: First Contac
t', 'Jonah Hex', 'Courage Under Fire', 'Liar Liar', 'The Infiltrator', 'Inch
on', 'The Flintstones', 'Taken 2', 'Scary Movie 3', 'Miss Congeniality', 'Jo
urney to the Center of the Earth', 'The Princess Diaries 2: Royal Engagemen
t', 'The Pelican Brief', 'The Client', 'The Bucket List', 'Patriot Games',
'Monster-in-Law', 'Prisoners', 'Training Day', 'Galaxy Quest', 'Scary Movie
2', 'The Muppets', 'Blade', 'Coach Carter', 'Changing Lanes', 'Anaconda', 'C
oyote Ugly', 'Love Actually', "A Bug's Life", 'From Hell', 'The Specialist',
'Tin Cup', 'Yours, Mine and Ours', 'Kicking & Screaming', "The Hitchhiker's
Guide to the Galaxy", 'Fat Albert', 'Resident Evil: Extinction', 'Blended',
'Last Holiday', 'The River Wild', 'The Indian in the Cupboard', 'Savages',
'Cellular', 'Johnny English', 'The Ant Bully', 'Dune', 'Across the Univers
e', 'Revolutionary Road', '16 Blocks', 'Babylon A.D.', 'The Glimmer Man', 'M
ultiplicity', 'Aliens in the Attic', 'The Pledge', 'The Producers', 'The Pha
ntom', 'All the Pretty Horses', 'Nixon', 'The Ghost Writer', 'Deep Rising',
'Miracle at St. Anna', 'Curse of the Golden Flower', 'Bangkok Dangerous', 'B
ig Trouble', 'Love in the Time of Cholera', 'Shadow Conspiracy', 'Johnny Eng
lish Reborn', 'Foodfight!', 'Argo', 'The Fugitive', 'The Bounty Hunter', 'Sl
eepers', 'Rambo: First Blood Part II', 'The Juror', 'Pinocchio', "Heaven's G
ate", 'Underworld: Evolution', 'Victor Frankenstein', 'Finding Forrester',
'28 Days', 'Unleashed', 'The Sweetest Thing', 'The Firm', 'Charlie St. Clou
d', 'The Mechanic', '21 Jump Street', 'Notting Hill', 'Chicken Run', 'Along
Came Polly', 'Boomerang', 'The Heat', 'Cleopatra', 'Here Comes the Boom', 'H
igh Crimes', 'The Mirror Has Two Faces', 'The Mothman Prophecies', 'Brüno',
'Licence to Kill', 'Red Riding Hood', '15 Minutes', 'Super Mario Bros.', 'Lo
rd of War', 'Hero', 'One for the Money', 'The Interview', "The Warrior's Wa
y", 'Micmacs', '8 Mile', 'Why I Did (Not) Eat My Father', "A Knight's Tale",
'The Medallion', 'The Sixth Sense', 'Man on a Ledge', 'The Big Year', 'The K
arate Kid', 'American Hustle', 'The Proposal', 'Double Jeopardy', 'Back to t
he Future Part II', 'Lucy', 'Fifty Shades of Grey', 'Spy Kids 3-D: Game Ove
r', 'A Time to Kill', 'Cheaper by the Dozen', 'Lone Survivor', 'A League of
Their Own', 'The Conjuring 2', 'The Social Network', "He's Just Not That Int
o You", 'Scary Movie 4', 'Scream 3', 'Back to the Future Part III', 'Get Har
d', 'Dracula', 'Julie & Julia', '42', 'The Talented Mr. Ripley', 'Dumb and D
umber To', 'Eight Below', 'The Intern', 'Ride Along 2', 'The Last of the Moh
icans', 'Ray', 'Sin City', 'Vantage Point', 'I Love You, Man', 'Shallow Ha
l', 'JFK', "Big Momma's House 2", 'The Mexican', '17 Again', 'The Other Woma
n', 'The Final Destination', 'Bridge of Spies', 'Behind Enemy Lines', 'Get H
im to the Greek', 'Shall We Dance?', 'Small Soldiers', 'Spawn', 'The Count o
f Monte Cristo', 'The Lincoln Lawyer', 'Unknown', 'The Prestige', 'Horrible
Bosses 2', 'Escape from Planet Earth', 'Apocalypto', 'The Living Daylights',
'Predators', 'Legal Eagles', 'Secret Window', 'The Lake House', 'The Skeleto
n Key', 'The Odd Life of Timothy Green', 'Made of Honor', 'Jersey Boys', 'Th
e Rainmaker', 'Gothika', 'Amistad', 'Medicine Man', 'Aliens vs Predator: Req
uiem', 'Ri¢hie Ri¢h', 'Autumn in New York', 'Music and Lyrics', 'Paul', 'The
Guilt Trip', 'Scream 4', '8MM', 'The Doors', 'Sex Tape', 'Hanging Up', 'Fina
l Destination 5', 'Mickey Blue Eyes', 'Pay It Forward', 'Fever Pitch', 'Dril
lbit Taylor', 'A Million Ways to Die in the West', 'The Shadow', 'Extremely
Loud & Incredibly Close', 'Morning Glory', "Get Rich or Die Tryin'", 'The Ar
t of War', 'Rent', 'Bless the Child', 'The Out-of-Towners', 'The Island of D
r. Moreau', 'The Musketeer', 'The Other Boleyn Girl', 'Sweet November', 'The
Reaping', 'Mean Streets', 'Renaissance Man', 'Colombiana', 'Quest for Camelo
t', 'City By The Sea', 'At First Sight', 'Torque', 'City Hall', 'Showgirls',
'Marie Antoinette', 'Kiss of Death', 'Get Carter', 'The Impossible', 'Ishta
r', 'Fantastic Mr. Fox', 'Life or Something Like It', 'Memoirs of an Invisib
le Man', 'Amélie', 'New York Minute', 'Alfie', 'Big Miracle', 'The Deep End
of the Ocean', 'FearDotCom', "Cirque du Freak: The Vampire's Assistant", 'Du
plex', 'Soul Men', 'Raise the Titanic', 'Universal Soldier: The Return', 'Pa
ndorum', 'Impostor', 'Extreme Ops', 'Just Visiting', 'Sunshine', 'A Thousand
Words', 'Delgo', 'The Gunman', 'Stormbreaker', 'Disturbia', 'Hackers', 'The
Hunting Party', 'The Hudsucker Proxy', 'The Warlords', 'Nomad: The Warrior',
'Snowpiercer', 'A Monster in Paris', 'The Last Shot', 'The Crow', 'Baahubal
i: The Beginning', "The Time Traveler's Wife", 'Because I Said So', 'Franken
weenie', 'Serenity', 'Against the Ropes', 'Superman III', 'Grudge Match', 'R
ed Cliff', 'Sweet Home Alabama', 'The Ugly Truth', 'Sgt. Bilko', 'Spy Kids
2: The Island of Lost Dreams', 'Star Trek: Generations', 'The Grandmaster',
'Water for Elephants', "Dragon Nest: Warriors' Dawn", 'The Hurricane', 'Enou
gh', 'Heartbreakers', 'Paul Blart: Mall Cop 2', 'Angel Eyes', 'Joe Somebod
y', 'The Ninth Gate', 'Extreme Measures', 'Rock Star', 'Precious', 'White Sq
uall', 'The Thing', 'Riddick', 'Switchback', 'Texas Rangers', 'City of Embe
r', 'The Master', 'Virgin Territory', 'The Express', 'The 5th Wave', 'Cree
d', 'The Town', "What to Expect When You're Expecting", 'Burn After Readin
g', "Nim's Island", 'Rush', 'Magnolia', 'Cop Out', 'How to Be Single', 'Dolp
hin Tale', 'Twilight', 'John Q', 'Blue Streak', "We're the Millers", 'The In
habited Island', 'Breakdown', 'Never Say Never Again', 'Hot Tub Time Machin
e', 'Dolphin Tale 2', 'Reindeer Games', 'A Man Apart', 'Aloha', 'Ghosts of M
ississippi', 'Snow Falling on Cedars', 'The Rite', 'Gattaca', "Isn't She Gre
at", 'Space Chimps', 'Head of State', 'The Hangover', 'Ip Man 3', 'Austin Po
wers: The Spy Who Shagged Me', 'Batman', 'There Be Dragons', 'Lethal Weapon
3', 'The Blind Side', 'Spy Kids', 'Horrible Bosses', 'True Grit', 'The Devil
Wears Prada', 'Star Trek: The Motion Picture', 'Identity Thief', 'Cape Fea
r', '21', 'Trainwreck', 'Guess Who', 'The English Patient', 'L.A. Confidenti
al', 'Sky High', 'In & Out', 'Species', 'A Nightmare on Elm Street', 'The Ce
ll', 'The Man in the Iron Mask', 'Secretariat', 'TMNT', 'Radio', 'Friends wi
th Benefits', 'Neighbors 2: Sorority Rising', 'Saving Mr. Banks', 'Malcolm
X', 'This Is 40', 'Old Dogs', 'Underworld: Rise of the Lycans', 'License to
Wed', 'The Benchwarmers', 'Must Love Dogs', 'Donnie Brasco', 'Resident Evi
l', 'Poltergeist', 'The Ladykillers', 'Max Payne', 'In Time', 'The Back-Up P
lan', 'Something Borrowed', 'Black Knight', 'The Bad News Bears', 'Street Fi
ghter', 'The Pianist', 'The Nativity Story', 'House of Wax', 'Closer', 'J. E
dgar', 'Mirrors', 'Queen of the Damned', 'Predator 2', 'Untraceable', 'Blast
from the Past', 'Flash Gordon', 'Jersey Girl', 'Alex Cross', 'Midnight in th
e Garden of Good and Evil', 'Heist', 'Nanny McPhee and the Big Bang', 'Hoff
a', 'The X Files: I Want to Believe', 'Ella Enchanted', 'Concussion', 'Abduc
tion', 'Valiant', 'Wonder Boys', 'Superhero Movie', 'Broken City', 'Cursed',
'Premium Rush', 'Hot Pursuit', 'The Four Feathers', 'Parker', 'Wimbledon',
'Furry Vengeance', 'Bait', 'Krull', 'Lions for Lambs', 'Flight of the Intrud
er', 'Walk Hard: The Dewey Cox Story', 'The Shipping News', 'American Outlaw
s', 'The Young Victoria', 'Whiteout', 'The Tree of Life', 'Knock Off', 'Sabo
tage', 'The Order', 'Punisher: War Zone', 'Zoom', 'The Walk', 'Warriors of V
irtue', 'A Good Year', 'Radio Flyer', 'Bound by Honor', "Smilla's Sense of S
now", 'Femme Fatale', 'Lion of the Desert', 'The Horseman on the Roof', 'Rid
e with the Devil', 'Biutiful', 'Bandidas', 'Black Water Transit', 'The Maze
Runner', 'Unfinished Business', 'The Age of Innocence', 'The Fountain', 'Chi
ll Factor', 'Stolen', 'Ponyo', 'The Longest Ride', "The Astronaut's Wife",
'I Dreamed of Africa', 'Playing for Keeps', 'Mandela: Long Walk to Freedom',
'Reds', 'A Few Good Men', 'Exit Wounds', "Big Momma's House", 'Thunder and t
he House of Magic', 'The Darkest Hour', 'Step Up Revolution', 'Snakes on a P
lane', 'The Watcher', 'The Punisher', 'Goal!: The Dream Begins', 'Safe', 'Pu
shing Tin', 'Return of the Jedi', 'Doomsday', 'The Reader', 'Wanderlust', 'E
lf', 'Phenomenon', 'Snow Dogs', 'Scrooged', 'Nacho Libre', 'Bridesmaids', 'T
his Is the End', 'Stigmata', 'Men of Honor', 'Takers', 'The Big Wedding', 'B
ig Mommas: Like Father, Like Son', 'Source Code', 'Alive', 'The Number 23',
'The Young and Prodigious T.S. Spivet', '1941', 'Dreamer: Inspired By a True
Story', 'A History of Violence', 'Transporter 2', 'The Quick and the Dead',
'Laws of Attraction', 'Bringing Out the Dead', 'Repo Men', 'Dragon Wars: D-W
ar', 'Bogus', 'The Incredible Burt Wonderstone', "Cats Don't Dance", 'Cradle
Will Rock', 'The Good German', 'George and the Dragon', 'Apocalypse Now', 'G
oing the Distance', "Mr. Holland's Opus", 'Criminal', 'Out of Africa', 'Flig
ht', 'Moonraker', 'The Grand Budapest Hotel', 'Hearts in Atlantis', 'Arachno
phobia', 'Frequency', 'Vacation', 'Get Shorty', 'Chicago', 'Big Daddy', 'Ame
rican Pie 2', 'Toy Story', 'Speed', 'The Vow', 'Extraordinary Measures', 'Re
member the Titans', 'The Hunt for Red October', 'The Butler', 'DodgeBall: A
True Underdog Story', 'The Addams Family', 'Ace Ventura: When Nature Calls',
'The Princess Diaries', 'The First Wives Club', 'Se7en', 'District 9', 'The
SpongeBob SquarePants Movie', 'Mystic River', 'Million Dollar Baby', 'Analyz
e This', 'The Notebook', '27 Dresses', 'Hannah Montana: The Movie', 'Rugrats
in Paris: The Movie', 'The Prince of Tides', 'Legends of the Fall', 'Up in t
he Air', 'About Schmidt', 'Warm Bodies', 'Looper', 'Down to Earth', 'Babe',
'Hope Springs', 'Forgetting Sarah Marshall', 'Four Brothers', 'Baby Mama',
'Hope Floats', 'Bride Wars', 'Without a Paddle', '13 Going on 30', 'Midnight
in Paris', 'The Nut Job', 'Blow', 'Message in a Bottle', 'Star Trek V: The F
inal Frontier', 'Like Mike', 'The Naked Gun 33⅓: The Final Insult', 'A View
to a Kill', 'The Curse of the Were-Rabbit', 'P.S. I Love You', 'Racing Strip
es', 'Atonement', 'Letters to Juliet', 'Black Rain', 'The Three Stooges', 'C
orpse Bride', 'Glory Road', 'Sicario', 'Southpaw', 'Drag Me to Hell', 'The A
ge of Adaline', 'Secondhand Lions', 'Step Up 3D', 'Blue Crush', 'Stranger Th
an Fiction', '30 Days of Night', 'The Cabin in the Woods', 'Meet the Spartan
s', 'Midnight Run', 'The Running Man', 'Little Shop of Horrors', 'Hanna', 'M
ortal Kombat: Annihilation', 'Larry Crowne', 'Carrie', 'Take the Lead', 'Gri
diron Gang', "What's the Worst That Could Happen?", '9', 'Side Effects', 'Th
e Prince & Me', 'Winnie the Pooh', 'Dumb and Dumberer: When Harry Met Lloy
d', 'Bulworth', 'Get on Up', 'One True Thing', 'Virtuosity', 'My Super Ex-Gi
rlfriend', 'Deliver Us from Evil', 'Sanctum', 'Little Black Book', 'The Five
-Year Engagement', 'Mr. 3000', 'The Next Three Days', 'Ultraviolet', 'Assaul
t on Precinct 13', 'The Replacement Killers', 'Fled', 'Eight Legged Freaks',
'Love & Other Drugs', '88 Minutes', 'North Country', 'The Whole Ten Yards',
'Splice', 'Howard the Duck', 'Pride and Glory', 'The Cave', 'Alex & Emma',
'Wicker Park', 'Fright Night', 'The New World', 'Wing Commander', 'In Dream
s', 'Dragonball Evolution', 'The Last Stand', 'Godsend', 'Chasing Liberty',
'Hoodwinked Too! Hood VS. Evil', 'An Unfinished Life', 'The Imaginarium of D
octor Parnassus', "Barney's Version", 'Runner Runner', 'Antitrust', 'Glory',
'Once Upon a Time in America', 'Dead Man Down', 'The Merchant of Venice', 'T
he Good Thief', 'Supercross', 'Miss Potter', 'The Promise', 'DOA: Dead or Al
ive', 'The Assassination of Jesse James by the Coward Robert Ford', '1911',
'Little Nicholas', 'Wild Card', 'Machine Gun Preacher', 'Animals United', 'G
oodbye Bafana', 'United Passions', 'Grace of Monaco', 'Savva. Heart of the W
arrior', "Ripley's Game", 'Sausage Party', 'Pitch Perfect 2', 'Walk the Lin
e', 'Keeping the Faith', 'The Borrowers', 'Frost/Nixon', 'Confessions of a D
angerous Mind', 'Serving Sara', 'The Boss', 'Cry Freedom', 'Mumford', 'Seed
of Chucky', 'The Jacket', 'Aladdin', 'Straight Outta Compton', 'Indiana Jone
s and the Temple of Doom', 'The Rugrats Movie', 'Along Came a Spider', 'Flor
ence Foster Jenkins', 'Once Upon a Time in Mexico', 'Die Hard', 'Role Model
s', 'The Big Short', 'Taking Woodstock', 'Miracle', 'Dawn of the Dead', 'The
Wedding Planner', 'Space Pirate Captain Harlock', 'The Royal Tenenbaums', 'I
dentity', 'Last Vegas', 'For Your Eyes Only', 'Serendipity', 'Timecop', 'Zoo
lander', 'Safe Haven', 'Hocus Pocus', 'No Reservations', 'Kick-Ass', '30 Min
utes or Less', 'Dracula 2000', 'Alexander and the Terrible, Horrible, No Goo
d, Very Bad Day', 'Pride & Prejudice', 'Blade Runner', 'Rob Roy', '3 Days to
Kill', 'We Own the Night', 'Lost Souls', 'Winged Migration', 'Just My Luck',
'Mystery, Alaska', 'The Spy Next Door', 'A Simple Wish', 'Ghosts of Mars',
'Our Brand Is Crisis', 'Pride and Prejudice and Zombies', 'Kundun', 'How to
Lose Friends & Alienate People', 'Kick-Ass 2', 'Alatriste', 'Brick Mansion
s', 'Octopussy', 'Knocked Up', "My Sister's Keeper", 'Welcome Home Roscoe Je
nkins', 'A Passage to India', 'Notes on a Scandal', 'Rendition', 'Star Trek
VI: The Undiscovered Country', 'Divine Secrets of the Ya-Ya Sisterhood', 'Ki
ss the Girls', 'The Blues Brothers', 'The Sisterhood of the Traveling Pants
2', 'Joyful Noise', 'About a Boy', 'Lake Placid', 'Lucky Number Slevin', 'Th
e Right Stuff', 'Anonymous', 'The NeverEnding Story', 'Dark City', 'The Duch
ess', 'Return to Oz', 'The Newton Boys', 'Case 39', 'Suspect Zero', 'Martian
Child', 'Spy Kids: All the Time in the World', 'Money Monster', 'The 51st St
ate', 'Flawless', 'Mindhunters', 'What Just Happened', 'The Statement', 'The
Magic Flute', 'Paul Blart: Mall Cop', 'Freaky Friday', 'The 40 Year Old Virg
in', 'Shakespeare in Love', 'A Walk Among the Tombstones', 'Kindergarten Co
p', 'Pineapple Express', 'Ever After: A Cinderella Story', 'Open Range', 'Fl
atliners', 'A Bridge Too Far', 'Red Eye', 'Final Destination 2', 'O Brother,
Where Art Thou?', 'Legion', 'Pain & Gain', 'In Good Company', 'Clockstopper
s', 'Silverado', 'Brothers', 'Agent Cody Banks 2: Destination London', "New
Year's Eve", 'Original Sin', 'The Raven', 'Welcome to Mooseport', 'Highlande
r: The Final Dimension', 'Blood and Wine', 'Snow White: A Tale of Terror',
'The Curse of the Jade Scorpion', 'Accidental Love', 'Flipper', 'Self/less',
'The Constant Gardener', 'The Passion of the Christ', 'Mrs. Doubtfire', 'Rai
n Man', 'Gran Torino', 'W.', 'Taken', 'The Best of Me', 'The Bodyguard', "Sc
hindler's List", 'The Help', 'The Fifth Estate', 'Scooby-Doo 2: Monsters Unl
eashed', 'Forbidden Kingdom', 'Freddy vs. Jason', 'The Face of an Angel', 'J
immy Neutron: Boy Genius', 'Cloverfield', 'Teenage Mutant Ninja Turtles II:
The Secret of the Ooze', 'The Untouchables', 'No Country for Old Men', 'Ride
Along', "Bridget Jones's Diary", 'Chocolat', 'Legally Blonde 2: Red, White &
Blonde', 'Parental Guidance', 'No Strings Attached', 'Tombstone', 'Romeo Mus
t Die', 'The Omen', 'Final Destination 3', 'The Lucky One', 'Bridge to Terab
ithia', 'Finding Neverland', 'A Madea Christmas', 'The Grey', 'Hide and See
k', 'Anchorman: The Legend of Ron Burgundy', 'GoodFellas', 'Agent Cody Bank
s', 'Nanny McPhee', 'Scarface', 'Nothing to Lose', 'The Last Emperor', 'Cont
raband', 'Money Talks', 'There Will Be Blood', 'The Wild Thornberrys Movie',
'Rugrats Go Wild', 'Undercover Brother', 'The Sisterhood of the Traveling Pa
nts', 'Kiss of the Dragon', 'The House Bunny', 'Beauty Shop', 'Million Dolla
r Arm', 'The Giver', 'What a Girl Wants', 'Jeepers Creepers 2', 'Good Luck C
huck', 'Cradle 2 the Grave', 'The Hours', "She's the Man", "Mr. Bean's Holid
ay", 'Anacondas: The Hunt for the Blood Orchid', 'Blood Ties', 'August Rus
h', 'Elizabeth', 'Bride of Chucky', 'Tora! Tora! Tora!', 'Spice World', 'The
Sitter', 'Dance Flick', 'The Shawshank Redemption', 'Crocodile Dundee in Los
Angeles', 'Kingpin', 'The Gambler', 'August: Osage County', 'Ice Princess',
'A Lot Like Love', 'Eddie the Eagle', 'He Got Game', 'Don Juan DeMarco', 'De
ar John', 'The Losers', "Don't Be Afraid of the Dark", 'War', 'Punch-Drunk L
ove', 'EuroTrip', 'Half Past Dead', 'Unaccompanied Minors', 'Bright Lights,
Big City', 'The Adventures of Pinocchio', 'The Greatest Game Ever Played',
'The Box', 'The Ruins', 'The Next Best Thing', 'My Soul to Take', 'The Girl
Next Door', 'Maximum Risk', 'Stealing Harvard', 'Legend', 'Hot Rod', 'Shark
Night', "Angela's Ashes", 'Draft Day', 'Lifeforce', 'The Conspirator', 'Lord
s of Dogtown', 'The 33', 'Big Trouble in Little China', 'Fly Me to the Moo
n', 'Warrior', 'Michael Collins', 'Gettysburg', 'Stop-Loss', 'Abandon', 'Bro
kedown Palace', 'The Possession', 'Mrs. Winterbourne', 'Straw Dogs', 'The Ho
ax', 'Stone Cold', 'The Road', 'Sheena', 'Underclassman', "Say It Isn't So",
"The World's Fastest Indian", 'Tank Girl', "King's Ransom", 'Blindness', 'Bl
oodRayne', 'Carnage', 'Where the Truth Lies', 'Cirque du Soleil: Worlds Awa
y', 'Without Limits', 'Me and Orson Welles', 'The Best Offer', 'The Bad Lieu
tenant: Port of Call - New Orleans', "A Turtle's Tale: Sammy's Adventures",
'Little White Lies', 'Love Ranch', "The True Story of Puss 'n Boots", 'Space
Dogs', 'The Counselor', 'Ironclad', 'Waterloo', 'Kung Fu Jungle', 'Red Sky',
'Dangerous Liaisons', 'On the Road', 'Star Trek IV: The Voyage Home', 'Rocky
Balboa', 'Scream 2', 'Jane Got a Gun', 'Think Like a Man Too', 'The Whole Ni
ne Yards', 'Footloose', 'Old School', 'The Fisher King', 'I Still Know What
You Did Last Summer', 'Return to Me', 'Zack and Miri Make a Porno', 'Nurse B
etty', 'The Men Who Stare at Goats', 'Double Take', 'Girl, Interrupted', 'Wi
n a Date with Tad Hamilton!', 'Muppets from Space', 'The Wiz', 'Ready to Rum
ble', 'Play It to the Bone', "I Don't Know How She Does It", 'Piranha 3D',
'Beyond the Sea', 'Meet the Deedles', 'The Thief and the Cobbler', 'The Brid
ge of San Luis Rey', 'Faster', "Howl's Moving Castle", 'Zombieland', 'The Wa
terboy', 'The Empire Strikes Back', 'Bad Boys', 'The Naked Gun 2½: The Smell
of Fear', 'Final Destination', 'The Ides of March', 'Pitch Black', 'Someone
Like You...', 'Her', 'Joy Ride', 'The Adventurer: The Curse of the Midas Bo
x', 'Anywhere But Here', 'The Crew', 'Haywire', 'Jaws: The Revenge', "Marvi
n's Room", 'The Longshots', 'The End of the Affair', 'Harley Davidson and th
e Marlboro Man', 'In the Valley of Elah', 'Coco Before Chanel', 'Forsaken',
'Cheri', 'Vanity Fair', 'Bodyguards and Assassins', '1408', 'Spaceballs', 'T
he Water Diviner', 'Ghost', "There's Something About Mary", 'The Santa Claus
e', 'The Rookie', 'The Game Plan', 'The Bridges of Madison County', 'The Ani
mal', 'Gandhi', 'The Hundred-Foot Journey', 'The Net', 'I Am Sam', 'Son of G
od', 'Underworld', 'Derailed', 'The Informant!', 'Shadowlands', 'Deuce Bigal
ow: European Gigolo', 'Delivery Man', 'Our Kind of Traitor', 'Saving Silverm
an', 'Diary of a Wimpy Kid: Dog Days', 'Summer of Sam', 'Jay and Silent Bob
Strike Back', 'The Glass House', 'Hail, Caesar!', 'Josie and the Pussycats',
'Homefront', 'The Little Vampire', 'I Heart Huckabees', 'RoboCop 3', 'Megidd
o: The Omega Code 2', 'Darling Lili', 'Dudley Do-Right', 'The Transporter Re
fueled', 'The Libertine', 'Black Book', 'Joyeux Noël', 'Hit & Run', 'Mad Mon
ey', 'Before I Go to Sleep', 'Sorcerer', 'Stone', 'Moliere', 'Out of the Fur
nace', 'Michael Clayton', 'My Fellow Americans', 'Arlington Road', 'Underdog
s', 'To Rome with Love', 'Firefox', 'South Park: Bigger, Longer & Uncut', 'D
eath at a Funeral', 'Teenage Mutant Ninja Turtles III', 'Hardball', 'Silver
Linings Playbook', 'Freedom Writers', 'For Colored Girls', 'The Transporte
r', 'Never Back Down', 'The Rage: Carrie 2', 'Away We Go', 'Swing Vote', 'Mo
onlight Mile', 'Tinker Tailor Soldier Spy', 'Molly', 'The Beaver', 'The Best
Little Whorehouse in Texas', 'eXistenZ', 'Raiders of the Lost Ark', 'Home Al
one 2: Lost in New York', 'Close Encounters of the Third Kind', 'Pulse', 'Be
verly Hills Cop II', 'Bringing Down the House', 'The Silence of the Lambs',
"Wayne's World", 'Jackass 3D', 'Jaws 2', 'Beverly Hills Chihuahua', 'The Con
juring', 'Are We There Yet?', 'Tammy', 'School of Rock', 'Mortal Kombat', 'W
hite Chicks', 'The Descendants', 'Holes', 'The Last Song', '12 Years a Slav
e', 'Drumline', 'Why Did I Get Married Too?', 'Edward Scissorhands', 'Me Bef
ore You', "Madea's Witness Protection", 'The French Connection', 'Bad Moms',
'Date Movie', 'Return to Never Land', 'Selma', 'The Jungle Book 2', 'Boogeym
an', 'Premonition', 'The Tigger Movie', 'Orphan', 'Max', 'Epic Movie', 'Spot
light', 'Lakeview Terrace', 'The Grudge 2', 'How Stella Got Her Groove Bac
k', "Bill & Ted's Bogus Journey", 'Man of the Year', 'The Black Hole', 'The
American', 'Selena', 'Vampires Suck', 'Babel', 'This Is Where I Leave You',
'Doubt', 'Team America: World Police', 'Texas Chainsaw 3D', 'Copycat', 'Scar
y Movie 5', 'Paint Your Wagon', 'Milk', 'Risen', 'Ghost Ship', 'A Very Harol
d & Kumar Christmas', 'Wild Things', 'The Stepfather', 'The Debt', 'High Fid
elity', 'One Missed Call', 'Eye for an Eye', 'The Bank Job', 'Eternal Sunshi
ne of the Spotless Mind', 'You Again', 'Street Kings', "The World's End", 'N
ancy Drew', 'Daybreakers', "She's Out of My League", 'Monte Carlo', 'Stay Al
ive', 'Quigley Down Under', 'Alpha and Omega', 'The Covenant', 'Stick It',
'Shorts', 'To Die For', 'Nerve', 'Appaloosa', 'Vampires', 'Psycho', "My Best
Friend's Girl", 'Endless Love', 'Georgia Rule', 'Under the Rainbow', 'Ladyha
wke', 'Simon Birch', 'Reign Over Me', 'Into the Wild', 'School for Scoundrel
s', 'Silent Hill: Revelation 3D', 'From Dusk Till Dawn', "Pooh's Heffalump M
ovie", 'Home for the Holidays', 'Kung Fu Hustle', 'The Country Bears', 'The
Kite Runner', '21 Grams', 'Paparazzi', 'A Guy Thing', 'Loser', 'Capitalism:
A Love Story', 'The Greatest Story Ever Told', 'Secret in Their Eyes', 'Disa
ster Movie', 'Armored', 'The Man Who Knew Too Little', "What's Your Numbe
r?", 'Lockout', 'Envy', 'Crank: High Voltage', 'Bullets Over Broadway', 'One
Night with the King', 'The Quiet American', 'The Weather Man', 'Undisputed',
'Ghost Town', '12 Rounds', 'Let Me In', '3 Ninjas Kick Back', 'Be Kind Rewin
d', 'Mrs Henderson Presents', 'Triple 9', 'Deconstructing Harry', 'Three to
Tango', 'Burnt', "We're No Angels", 'Everyone Says I Love You', 'Death Sente
nce', "Everybody's Fine", 'Superbabies: Baby Geniuses 2', 'The Man', 'Code N
ame: The Cleaner', 'Connie and Carla', 'Sweet Charity', 'Inherent Vice', 'Do
ogal', 'Battle of the Year', 'An American Carol', 'Machete Kills', 'Willar
d', 'Strange Wilderness', 'Topsy-Turvy', 'Little Boy', 'A Dangerous Method',
'A Scanner Darkly', 'Chasing Mavericks', 'Alone in the Dark', 'Bandslam', 'B
irth', 'A Most Violent Year', 'Passchendaele', 'Flash of Genius', "I'm Not T
here.", 'The Cold Light of Day', 'The Brothers Bloom', 'Synecdoche, New Yor
k', 'Princess Mononoke', 'Bon voyage', "Can't Stop the Music", 'The Proposit
ion', 'My All American', 'Marci X', 'Equilibrium', 'The Children of Huang Sh
i', 'The Yards', 'The Oogieloves in the Big Balloon Adventure', 'By the Se
a', 'Steamboy', 'The Game of Their Lives', 'All Good Things', 'Rapa Nui', 'C
J7', 'The Visitors II: The Corridors of Time', 'Dylan Dog: Dead of Night',
'People I Know', 'The Tempest', 'Regression', 'Three Kingdoms: Resurrection
of the Dragon', 'Butterfly on a Wheel', 'Zambezia', 'Ramanujan', 'Dwegons',
'Hands of Stone', 'Survivor', 'The Frozen Ground', 'The Painted Veil', 'The
Baader Meinhof Complex', 'Dances with Wolves', 'Bad Teacher', 'Sea of Love',
'A Cinderella Story', 'Scream', 'Thir13en Ghosts', 'The Shining', 'Back to t
he Future', 'House on Haunted Hill', 'I Can Do Bad All By Myself', 'Fight Va
lley', 'The Switch', 'Just Married', "The Devil's Double", 'Thomas and the M
agic Railroad', 'The Crazies', 'Spirited Away', 'Firestorm', 'The Bounty',
'The Book Thief', 'Sex Drive', 'Leap Year', 'The Fall of the Roman Empire',
'Take Me Home Tonight', "Won't Back Down", 'The Nutcracker', 'Kansas City',
'Indignation', 'The Amityville Horror', 'Adaptation.', 'Land of the Dead',
'Out of Inferno', 'Fear and Loathing in Las Vegas', 'The Invention of Lyin
g', 'Neighbors', 'The Mask', 'Big', 'Borat: Cultural Learnings of America fo
r Make Benefit Glorious Nation of Kazakhstan', 'Legally Blonde', 'Star Trek
III: The Search for Spock', 'The Exorcism of Emily Rose', 'Deuce Bigalow: Ma
le Gigolo', 'Left Behind', 'The Family Stone', 'Barbershop 2: Back in Busin
ess', 'Bad Santa', 'Austin Powers: International Man of Mystery', 'My Big Fa
t Greek Wedding 2', 'Diary of a Wimpy Kid: Rodrick Rules', 'Predator', 'Amad
eus', 'Prom Night', 'Mean Girls', 'Under the Tuscan Sun', 'Gosford Park', 'P
eggy Sue Got Married', 'Birdman', 'Blue Jasmine', 'United 93', 'Honey', 'Spy
Hard', 'The Fog', 'Soul Surfer', 'Catch-22', 'Observe and Report', 'Conan th
e Destroyer', 'Raging Bull', 'Love Happens', 'Young Sherlock Holmes', 'Fam
e', '127 Hours', 'Small Time Crooks', 'Center Stage', 'Love the Coopers', 'C
atch That Kid', 'Life as a House', 'Steve Jobs', 'I Love You, Beth Cooper',
'Youth in Revolt', 'The Legend of the Lone Ranger', 'The Tailor of Panama',
'Blow Out', 'Getaway', 'The Ice Storm', 'And So It Goes', 'Troop Beverly Hil
ls', 'Being Julia', 'Nine 1/2 Weeks', 'Dragonslayer', 'The Last Station', 'E
d Wood', 'Labor Day', 'Mongol: The Rise of Genghis Khan', 'RockNRolla', 'Meg
aforce', 'Hamlet', "Mao's Last Dancer", 'Midnight Special', 'Anything Else',
'The Railway Man', 'The White Ribbon', 'Restoration', 'The Wraith', 'Salton
Sea', 'Metallica: Through the Never', 'The Informers', 'Carlos', 'I Come wit
h the Rain', "One Man's Hero", 'Day of the Dead', 'I Am Wrath', 'Renaissanc
e', 'Red Sonja', 'Red Lights', 'Superbad', 'Madea Goes to Jail', 'Wolves',
'Step Up 2: The Streets', 'Hoodwinked!', 'Hotel Rwanda', 'Hitman', 'Black Na
tivity', 'The Prince', 'City of Ghosts', 'The Others', 'Aliens', 'My Fair La
dy', 'I Know What You Did Last Summer', "Let's Be Cops", 'Sideways', 'Beerfe
st', 'Halloween', 'Good Boy!', 'The Best Man Holiday', "Smokin' Aces", 'Saw:
The Final Chapter', '40 Days and 40 Nights', 'A Night at the Roxbury', 'Beas
tly', 'The Hills Have Eyes', 'Dickie Roberts: Former Child Star', 'McFarlan
d, USA', 'Lottery Ticket', 'ATL', 'Pitch Perfect', 'Summer Catch', 'A Simple
Plan', 'They', 'Larry the Cable Guy: Health Inspector', 'The Adventures of E
lmo in Grouchland', "Brooklyn's Finest", '55 Days at Peking', 'Evil Dead',
'My Life in Ruins', 'American Dreamz', 'Superman IV: The Quest for Peace',
'How She Move', 'Running Scared', 'Bobby Jones: Stroke of Genius', 'Shanghai
Surprise', 'The Illusionist', 'Roar', 'Veronica Guerin', 'Escobar: Paradise
Lost', 'Southland Tales', 'Dragon Hunters', 'Damnation Alley', 'The Appariti
on', 'My Girl', 'Fur: An Imaginary Portrait of Diane Arbus', 'Wall Street',
'Sense and Sensibility', 'Becoming Jane', 'Sydney White', 'House of Sand and
Fog', 'Dead Poets Society', 'Dumb and Dumber', 'When Harry Met Sally...', 'T
he Verdict', 'Road Trip', 'Varsity Blues', 'The Artist', 'The Unborn', 'Moon
rise Kingdom', 'The Texas Chainsaw Massacre: The Beginning', 'The Young Mess
iah', 'The Master of Disguise', "Pan's Labyrinth", 'See Spot Run', 'Baby Bo
y', 'The Roommate', 'Joe Dirt', 'Double Impact', 'Hot Fuzz', 'The Women', 'V
icky Cristina Barcelona', 'Arn: The Knight Templar', 'Boys and Girls', 'Whit
e Oleander', "Jennifer's Body", 'Drowning Mona', 'Radio Days', 'Remember M
e', 'How to Deal', 'My Stepmother is an Alien', 'Philadelphia', 'The Thirtee
nth Floor', 'The Cookout', 'Meteor', 'Duets', 'Hollywood Ending', 'Detroit R
ock City', 'Highlander', 'Things We Lost in the Fire', 'Steel', 'The Immigra
nt', 'The White Countess', 'Trance', 'Soul Plane', 'Welcome to the Sticks',
'Good', 'Enter the Void', 'Vamps', "Hachi: A Dog's Tale", 'Zulu', 'The Homes
man', 'Juwanna Mann', 'Ararat', 'Madison', 'Slow Burn', 'Wasabi', 'Slither',
'Beverly Hills Cop', 'Home Alone', 'Three Men and a Baby', 'Tootsie', 'Top G
un', 'Crouching Tiger, Hidden Dragon', 'American Beauty', "The King's Speec
h", 'Twins', 'The Yellow Handkerchief', 'The Color Purple', 'Tidal Wave', 'T
he Imitation Game', 'Private Benjamin', "Coal Miner's Daughter", 'Diary of a
Wimpy Kid', 'Mama', "National Lampoon's Vacation", 'Bad Grandpa', 'The Quee
n', 'Beetlejuice', 'Why Did I Get Married?', 'Little Women', 'The Woman in B
lack', 'When a Stranger Calls', 'Big Fat Liar', 'The Deer Hunter', 'Wag the
Dog', 'The Lizzie McGuire Movie', 'Snitch', 'Krampus', 'The Faculty', "Wha
t's Love Got to Do with It", 'Cop Land', 'Not Another Teen Movie', 'End of W
atch', 'The Skulls', 'The Theory of Everything', "Malibu's Most Wanted", 'Wh
ere the Heart Is', 'Lawrence of Arabia', 'Halloween II', 'Wild', 'The Last H
ouse on the Left', 'The Wedding Date', 'Halloween: Resurrection', 'The Princ
ess Bride', 'The Great Debaters', 'Drive', 'Confessions of a Teenage Drama Q
ueen', 'The Object of My Affection', '28 Weeks Later', 'When the Game Stands
Tall', 'Because of Winn-Dixie', 'Love & Basketball', 'Grosse Pointe Blank',
'All About Steve', 'Book of Shadows: Blair Witch 2', 'The Craft', 'Match Poi
nt', 'Ramona and Beezus', 'The Remains of the Day', 'Boogie Nights', 'Nowher
e to Run', 'Flicka', 'The Hills Have Eyes 2', 'Urban Legends: Final Cut', 'T
uck Everlasting', 'The Marine', 'Keanu', 'Country Strong', 'Disturbing Behav
ior', 'The Place Beyond the Pines', 'The November Man', 'Eye of the Beholde
r', 'The Hurt Locker', 'Firestarter', 'Killing Them Softly', 'A Most Wanted
Man', 'Freddy Got Fingered', "VeggieTales: The Pirates Who Don't Do Anythin
g", 'U2 3D', 'Highlander: Endgame', 'Idlewild', 'One Day', 'Whip It', 'Knock
around Guys', 'Confidence', 'The Muse', 'De-Lovely', 'New York Stories', "Ba
rney's Great Adventure", 'The Man with the Iron Fists', 'Home Fries', 'Here
On Earth', 'Brazil', 'Raise Your Voice', 'The Big Lebowski', 'Black Snake Mo
an', 'Dark Blue', 'A Mighty Heart', 'Whatever It Takes', 'Boat Trip', 'The I
mportance of Being Earnest', 'The Love Letter', 'Hoot', 'In Bruges', 'Peeple
s', 'The Rocker', 'Post Grad', 'Promised Land', 'Whatever Works', 'The In Cr
owd', 'The Three Burials of Melquiades Estrada', 'Jakob the Liar', 'Kiss Kis
s Bang Bang', 'Idle Hands', 'Mulholland Drive', 'Blood and Chocolate', 'You
Will Meet a Tall Dark Stranger', 'Never Let Me Go', 'The Company', 'Transsib
erian', 'The Clan of the Cave Bear', 'Crazy in Alabama', 'Funny Games', 'Lis
tening', "Felicia's Journey", 'Metropolis', 'District B13', "Things to Do in
Denver When You're Dead", 'The Assassin', 'Buffalo Soldiers', 'The Return',
'Ong Bak 2', 'Centurion', 'Silent Trigger', 'The Midnight Meat Train', 'Winn
ie Mandela', 'The Son of No One', "All The Queen's Men", 'The Good Night',
'Bathory: Countess of Blood', 'Khumba', 'Automata', 'Dungeons & Dragons: Wra
th of the Dragon God', 'Chiamatemi Francesco - Il Papa della gente', 'Shinju
ku Incident', 'Pandaemonium', 'Groundhog Day', 'Magic Mike XXL', 'Romeo + Ju
liet', "Sarah's Key", 'Freedom', 'Unforgiven', 'Manderlay', 'Slumdog Million
aire', 'Fatal Attraction', 'Pretty Woman', 'Crocodile Dundee II', 'Broken Ho
rses', 'Born on the Fourth of July', 'Cool Runnings', 'My Bloody Valentine',
'Stomp the Yard', 'The Spy Who Loved Me', 'Urban Legend', 'Good Deeds', 'Whi
te Fang', 'Superstar', 'The Iron Lady', 'Jonah: A VeggieTales Movie', 'Poeti
c Justice', 'All About the Benjamins', 'Vampire in Brooklyn', 'Exorcist II:
The Heretic', 'An American Haunting', "My Boss's Daughter", 'A Perfect Getaw
ay', 'Our Family Wedding', 'Dead Man on Campus', 'Tea with Mussolini', 'Thin
ner', 'New York, New York', 'Crooklyn', 'I Think I Love My Wife', 'Jason X',
'Bobby', 'Head Over Heels', 'Fun Size', 'The Diving Bell and the Butterfly',
'Little Children', 'Gossip', 'A Walk on the Moon', 'Catch a Fire', 'Soul Sur
vivors', 'Jefferson in Paris', 'Easy Virtue', 'Caravans', 'Mr. Turner', 'Wil
d Grass', 'Amen.', 'Reign of Assassins', 'The Lucky Ones', 'Margaret', 'Stan
Helsing', 'Flipped', 'Brokeback Mountain', 'Clueless', 'Far from Heaven', 'H
ot Tub Time Machine 2', 'Quills', 'Seven Psychopaths', "The Caveman's Valent
ine", 'Downfall', 'The Sea Inside', 'Under the Skin', 'Good Morning, Vietna
m', 'The Last Godfather', 'Justin Bieber: Never Say Never', 'Black Swan', 'T
he Godfather: Part II', 'Save the Last Dance', 'A Nightmare on Elm Street 4:
The Dream Master', 'Miracles from Heaven', 'Dude, Where’s My Car?', 'Young G
uns', 'St. Vincent', 'About Last Night', '10 Things I Hate About You', 'The
New Guy', "National Lampoon's Loaded Weapon 1", 'The Shallows', 'The Butterf
ly Effect', 'Snow Day', 'This Christmas', 'Baby Geniuses', 'The Big Hit', 'H
arriet the Spy', "Child's Play 2", 'No Good Deed', 'The Mist', 'Ex Machina',
'Being John Malkovich', 'Two Can Play That Game', 'Earth to Echo', 'Crazy/Be
autiful', 'Letters from Iwo Jima', 'The Astronaut Farmer', 'Woo', 'Room', 'D
irty Work', 'Serial Mom', 'Dick', 'Light It Up', '54', 'Bubble Boy', 'Birthd
ay Girl', '21 & Over', "Paris, je t'aime", 'Resurrecting the Champ', 'Admiss
ion', 'The Widow of Saint-Pierre', 'Chloe', 'Faithful', 'Find Me Guilty', 'T
he Perks of Being a Wallflower', 'Excessive Force', 'Infamous', 'The Claim',
'The Vatican Tapes', 'Attack the Block', 'In the Land of Blood and Honey',
'The Call', 'Operation Chromite', 'The Crocodile Hunter: Collision Course',
'I Love You Phillip Morris', 'Quest for Fire', 'Antwone Fisher', "The Empero
r's Club", 'True Romance', 'Womb', 'Glengarry Glen Ross', 'The Killer Inside
Me', 'Cat People', 'Sorority Row', 'The Prisoner of Zenda', 'Lars and the Re
al Girl', 'The Boy in the Striped Pyjamas', 'Dancer in the Dark', 'Oscar and
Lucinda', 'The Funeral', 'Solitary Man', 'Machete', 'Casino Jack', 'The Land
Before Time', 'Tae Guk Gi: The Brotherhood of War', 'The Perfect Game', 'The
Exorcist', 'Jaws', 'American Pie', 'Ernest & Celestine', 'The Golden Child',
'Think Like a Man', 'Barbershop', 'Star Trek II: The Wrath of Khan', 'Ace Ve
ntura: Pet Detective', 'WarGames', 'Witness', 'Act of Valor', 'Step Up', 'Be
avis and Butt-Head Do America', 'Jackie Brown', 'Harold & Kumar Escape from
Guantanamo Bay', 'Chronicle', 'Yentl', 'Time Bandits', 'Crossroads', 'Projec
t X', 'Patton', 'One Hour Photo', 'Quarantine', 'The Eye', 'Johnson Family V
acation', 'How High', 'The Muppet Christmas Carol', 'Frida', 'Katy Perry: Pa
rt of Me', 'The Fault in Our Stars', 'Rounders', 'Top Five', 'Prophecy', 'St
ir of Echoes', 'Philomena', 'The Upside of Anger', 'The Boys from Brazil',
'Aquamarine', 'Paper Towns', "My Baby's Daddy", 'Nebraska', 'Tales from the
Crypt: Demon Knight', "Max Keeble's Big Move", 'Young Adult', 'Crank', "Def
Jam's How to Be a Player", 'Living Out Loud', 'Just Wright', 'Rachel Getting
Married', 'The Postman Always Rings Twice', 'Girl with a Pearl Earring', 'Da
s Boot', 'Sorority Boys', 'About Time', 'House of Flying Daggers', 'Arbitrag
e', 'Project Almanac', 'Cadillac Records', 'Screwed', 'Fortress', 'For Your
Consideration', 'Celebrity', 'Running with Scissors', 'From Justin to Kell
y', 'Girl 6', 'In the Cut', 'Two Lovers', 'Last Orders', 'The Host', 'The Pu
rsuit of D.B. Cooper', 'Ravenous', 'Charlie Bartlett', 'The Great Beauty',
'The Dangerous Lives of Altar Boys', 'Stoker', '2046', 'Married Life', 'Dum
a', 'Ondine', 'Brother', 'Welcome to Collinwood', 'Critical Care', 'The Life
Before Her Eyes', 'Darling Companion', 'Trade', 'Fateless', 'Breakfast of Ch
ampions', 'A Woman, a Gun and a Noodle Shop', 'Cypher', 'City of Life and De
ath', 'Legend of a Rabbit', 'Space Battleship Yamato', '5 Days of War', 'Tri
angle', '10 Days in a Madhouse', 'Heaven is for Real', 'Snatch', "Dancin' I
t's On", 'Pet Sematary', 'Madadayo', 'The Cry of the Owl', 'A Tale of Three
Cities', 'Gremlins', 'Star Wars', 'Dirty Grandpa', 'Doctor Zhivago', 'Tras
h', 'High School Musical 3: Senior Year', 'The Fighter', 'Jackass Number Tw
o', 'My Cousin Vinny', 'If I Stay', 'Drive Hard', 'Major League', "St. Trini
an's", 'Phone Booth', 'A Walk to Remember', 'Dead Man Walking', 'Cruel Inten
tions', 'Saw VI', 'History of the World: Part I', 'The Secret Life of Bees',
'Corky Romano', 'Raising Cain', 'F.I.S.T.', 'Invaders from Mars', 'Brookly
n', 'Barry Lyndon', 'Out Cold', 'The Ladies Man', 'Quartet', 'Tomcats', 'Fra
ilty', 'Woman in Gold', 'Kinsey', 'Army of Darkness', 'Slackers', "What's Ea
ting Gilbert Grape", 'The Visual Bible: The Gospel of John', 'Vera Drake',
'The Guru', 'The Perez Family', 'Inside Llewyn Davis', 'O', 'Return to the B
lue Lagoon', 'The Molly Maguires', 'Romance & Cigarettes', 'Copying Beethove
n', 'Brighton Rock', 'Saw V', 'Machine Gun McCain', 'LOL', 'Jindabyne', 'Kab
hi Alvida Naa Kehna', 'An Ideal Husband', 'The Last Days on Mars', 'Darknes
s', '2001: A Space Odyssey', 'E.T. the Extra-Terrestrial', 'In the Land of W
omen', 'The Blue Butterfly', 'There Goes My Baby', 'Housefull', 'September D
awn', 'For Greater Glory - The True Story of Cristiada', 'The Bélier Famil
y', 'Good Will Hunting', 'Misconduct', 'Saw III', 'Stripes', 'Bring It On',
'The Purge: Election Year', "She's All That", 'Saw IV', 'White Noise', "Made
a's Family Reunion", 'The Color of Money', 'The Longest Day', 'The Mighty Du
cks', 'The Grudge', 'Happy Gilmore', 'Jeepers Creepers', "Bill & Ted's Excel
lent Adventure", 'Oliver!', 'The Best Exotic Marigold Hotel', "Recess: Schoo
l's Out", 'Mad Max Beyond Thunderdome', 'Commando', 'The Boy', 'Devil', 'Fri
day After Next', 'Insidious: Chapter 3', 'The Last Dragon', 'The Lawnmower M
an', "Nick and Norah's Infinite Playlist", 'Dogma', 'The Banger Sisters', 'T
wilight Zone: The Movie', 'Road House', 'A Low Down Dirty Shame', 'Swimfan',
'Employee of the Month', "Can't Hardly Wait", 'The Outsiders', "Pete's Drago
n", 'The Dead Zone', 'Sinister 2', 'Sparkle', 'Valentine', 'The Fourth Kin
d', 'A Prairie Home Companion', 'Sugar Hill', 'Invasion U.S.A.', 'Roll Bounc
e', 'Rushmore', 'Skyline', 'The Second Best Exotic Marigold Hotel', 'Kit Kit
tredge: An American Girl', 'The Perfect Man', "Mo' Better Blues", 'Kung Pow:
Enter the Fist', 'Tremors', 'Wrong Turn', 'The Long Riders', 'The Corrupto
r', 'Mud', 'Reno 911!: Miami', 'One Direction: This Is Us', 'The Goods: Live
Hard, Sell Hard', 'Hey Arnold! The Movie', 'My Week with Marilyn', 'The Mata
dor', 'Love Jones', 'The Gift', 'End of the Spear', 'Get Over It', 'Office S
pace', 'Drop Dead Gorgeous', 'Big Eyes', 'Very Bad Things', 'Sleepover', 'Bo
dy Double', 'MacGruber', 'Dirty Pretty Things', 'Movie 43', 'Over Her Dead B
ody', 'Seeking a Friend for the End of the World', 'Cedar Rapids', 'American
History X', 'The Collection', "Teacher's Pet", 'The Red Violin', 'The Straig
ht Story', 'Deuces Wild', 'Bad Words', 'Run, Fatboy, Run', 'Heartbeeps', 'Bl
ack or White', 'On the Line', 'Rescue Dawn', 'Danny Collins', 'Jeff, Who Liv
es at Home', 'I Am Love', 'Atlas Shrugged Part II', 'Romeo Is Bleeding', 'Th
e Limey', 'Crash', 'The House of Mirth', 'Malone', 'Peaceful Warrior', 'Buck
y Larson: Born to Be a Star', 'Bamboozled', 'The Forest', 'Sphinx', "While W
e're Young", 'A Better Life', 'Spider', 'Gun Shy', 'Nicholas Nickleby', 'The
Iceman', 'Krrish', 'Cecil B. Demented', 'Killer Joe', 'The Joneses', 'Owning
Mahowny', 'The Brothers Solomon', 'My Blueberry Nights', 'Illuminata', 'Swep
t Away', 'War, Inc.', 'Shaolin Soccer', 'The Brown Bunny', 'The Swindle', 'R
osewater', 'The Chambermaid on the Titanic', 'Coriolanus', 'Imaginary Heroe
s', 'High Heels and Low Lifes', "World's Greatest Dad", 'Severance', 'Edmon
d', 'Welcome to the Rileys', 'Police Academy: Mission to Moscow', 'Blood Don
e Sign My Name', 'Cinco de Mayo: La Batalla', 'Elsa & Fred', 'An Alan Smithe
e Film: Burn, Hollywood, Burn', 'The Open Road', 'The Good Guy', 'Motherhoo
d', 'Free Style', 'Strangerland', 'Janky Promoters', 'Blonde Ambition', 'The
Oxford Murders', 'The Reef', 'Eulogy', 'White Noise 2: The Light', 'Beat the
World', 'Fifty Dead Men Walking', 'Jungle Shuffle', 'Adam Resurrected', 'Of
Horses and Men', "It's a Wonderful Afterlife", "The Devil's Tomb", 'Partitio
n', 'Good Intentions', 'The Good, The Bad, The Weird', 'Nurse 3-D', 'Gunles
s', 'Adventureland', 'The Lost City', 'Next Friday', 'American Heist', 'You
Only Live Twice', 'Plastic', 'Amour', 'Poltergeist III', 'Re-Kill', "It's a
Mad, Mad, Mad, Mad World", 'Volver', 'Heavy Metal', 'Gentlemen Broncos', 'Ri
chard III', 'Into the Grizzly Maze', 'Kites', 'Melancholia', 'Red Dog', 'Jab
Tak Hai Jaan', 'Alien', 'The Texas Chain Saw Massacre', 'The Runaways', 'Fid
dler on the Roof', 'Thunderball', 'Detention', 'Loose Cannons', 'Set It Of
f', 'The Best Man', "Child's Play", 'Sicko', 'The Purge: Anarchy', 'Down to
You', 'Harold & Kumar Go to White Castle', 'The Contender', 'Boiler Room',
'Trading Places', 'Black Christmas', "Breakin' All the Rules", 'Henry V', 'T
he Savages', 'Chasing Papi', 'The Way of the Gun', 'Igby Goes Down', 'PCU',
'The Ultimate Gift', 'The Ice Pirates', 'Gracie', 'Trust the Man', 'Hamlet
2', 'Velvet Goldmine', 'The Wailing', 'Glee: The Concert Movie', 'The Legend
of Suriyothai', 'Two Evil Eyes', 'Barbecue', 'All or Nothing', 'Princess Kai
ulani', 'Opal Dream', 'Flame & Citron', 'Undiscovered', 'Red Riding: In the
Year of Our Lord 1974', 'The Girl on the Train', 'Veronika Decides to Die',
'Crocodile Dundee', 'Ultramarines: A Warhammer 40,000 Movie', 'The I Insid
e', 'Beneath Hill 60', 'Polisse', 'Awake', 'Star Wars: Clone Wars: Volume
1', 'Skin Trade', 'The Lost Boys', 'Crazy Heart', 'The Rose', 'Baggage Clai
m', 'Barbarella', 'Shipwrecked', 'Election', 'The Namesake', 'The DUFF', 'Gl
itter', 'The Haunting in Connecticut 2: Ghosts of Georgia', 'Silmido', 'Brig
ht Star', 'My Name Is Khan', 'All Is Lost', 'Limbo', 'Namastey London', 'The
Wind That Shakes the Barley', 'Yeh Jawaani Hai Deewani', 'Quo Vadis', 'Repo!
The Genetic Opera', 'Valley of the Wolves: Iraq', 'Pulp Fiction', 'The Muppe
t Movie', 'Nightcrawler', 'Club Dread', 'The Sound of Music', 'Splash', 'Lit
tle Miss Sunshine', 'Stand by Me', '28 Days Later', 'You Got Served', 'Escap
e from Alcatraz', 'Brown Sugar', 'A Thin Line Between Love and Hate', '50/5
0', 'Shutter', 'That Awkward Moment', 'Modern Problems', 'Kicks', 'Much Ado
About Nothing', "On Her Majesty's Secret Service", 'New Nightmare', 'Drive M
e Crazy', 'Akeelah and the Bee', 'Half Baked', 'New in Town', 'American Psyc
ho', 'The Good Girl', 'Bon Cop Bad Cop', 'The Boondock Saints II: All Saints
Day', 'The City of Your Final Destination', 'Enough Said', 'Easy A', 'The In
kwell', 'Shadow of the Vampire', 'Prom', 'The Pallbearer', 'Held Up', 'Woman
on Top', 'Howards End', 'Anomalisa', 'Another Year', '8 Women', 'Showdown in
Little Tokyo', 'Clay Pigeons', "It's Kind of a Funny Story", 'Made in Dagenh
am', 'When Did You Last See Your Father?', 'Prefontaine', 'The Wicked Lady',
'The Secret of Kells', 'Begin Again', 'Down in the Valley', 'Brooklyn Rule
s', 'Restless', 'The Singing Detective', 'The Land Girls', 'Fido', 'The Wend
ell Baker Story', 'Wild Target', 'Pathology', 'Wuthering Heights', '10th & W
olf', 'Dear Wendy', 'Aloft', 'Akira', 'The Death and Life of Bobby Z', 'The
Rocket: The Legend of Rocket Richard', 'Swelter', 'My Lucky Star', 'Imagine
Me & You', 'Mr. Church', 'Swimming Pool', 'Green Street Hooligans: Undergrou
nd', 'The Blood of Heroes', 'Code of Honor', 'Driving Miss Daisy', 'Soul Foo
d', 'Rumble in the Bronx', 'Far from Men', 'Thank You for Smoking', 'Hostel:
Part II', 'An Education', 'Shopgirl', 'The Hotel New Hampshire', 'Narc', 'Me
n with Brooms', 'Witless Protection', 'The Work and the Glory', 'Extract',
'Masked and Anonymous', 'Betty Fisher and Other Stories', 'Code 46', 'Outsid
e Bet', 'Albert Nobbs', 'Black November', 'Ta Ra Rum Pum', 'Persepolis', 'Th
e Hole', 'The Wave', 'The Neon Demon', 'Harry Brown', 'The Omega Code', 'Jun
o', 'Pound of Flesh', 'Diamonds Are Forever', 'The Godfather', 'Flashdance',
'(500) Days of Summer', 'The Piano', 'Magic Mike', 'Darkness Falls', 'Live a
nd Let Die', 'My Dog Skip', 'Definitely, Maybe', 'Jumping the Broom', 'Good
Night, and Good Luck.', 'Capote', 'Desperado', "Logan's Run", 'The Man with
the Golden Gun', 'Action Jackson', 'The Descent', 'Michael Jordan to the Ma
x', "Devil's Due", 'Flirting with Disaster', "The Devil's Rejects", 'Dope',
'In Too Deep', 'House of 1000 Corpses', 'Alien Zone', 'A Serious Man', 'Get
Low', 'Warlock', 'Beyond the Lights', 'A Single Man', 'The Last Temptation o
f Christ', 'Outside Providence', 'Bride & Prejudice', 'Rabbit-Proof Fence',
"Who's Your Caddy?", 'Split Second', 'The Other Side of Heaven', 'Veer-Zaar
a', 'Redbelt', 'Cyrus', 'A Dog Of Flanders', 'Auto Focus', 'Factory Girl',
'We Need to Talk About Kevin', 'The Christmas Candle', 'The Mighty Macs', "L
osin' It", 'Mother and Child', 'March or Die', 'The Visitors', 'Somewhere',
'I Hope They Serve Beer in Hell', 'Chairman of the Board', 'Hesher', 'Dom He
mingway', 'Gerry', 'The Heart of Me', 'Freeheld', 'The Extra Man', 'Hard to
Be a God', 'Ca$h', 'Wah-Wah', 'The Boondock Saints', 'Z Storm', 'Twixt', 'Th
e Snow Queen', 'Alpha and Omega: The Legend of the Saw Tooth Cave', 'Pale Ri
der', 'Stargate: The Ark of Truth', 'Dazed and Confused', 'High School Music
al 2', 'Two Lovers and a Bear', 'Criminal Activities', 'Aimee & Jaguar', 'Th
e Chumscrubber', 'Shade', 'House at the End of the Street', 'Incendies', 'Re
member Me, My Love', 'Perrier’s Bounty', 'Elite Squad', 'Annabelle', 'Bran N
ue Dae', 'Boyz n the Hood', 'La Bamba', 'The Four Seasons', 'Dressed to Kil
l', 'The Adventures of Huck Finn', 'Go', 'Friends with Money', 'The Andromed
a Strain', 'Bats', 'Nowhere in Africa', 'Shame', 'Layer Cake', 'The Work and
the Glory II: American Zion', 'The East', 'A Home at the End of the World',
'Aberdeen', 'The Messenger', 'Tracker', 'Control', 'The Terminator', 'Good b
ye, Lenin!', 'The Damned United', 'The Return of the Living Dead', 'Mallrat
s', 'Grease', 'Platoon', 'Fahrenheit 9/11', 'Butch Cassidy and the Sundance
Kid', 'Mary Poppins', 'Ordinary People', 'West Side Story', 'Caddyshack', 'T
he Brothers', 'The Wood', 'The Usual Suspects', 'A Nightmare on Elm Street
5: The Dream Child', 'National Lampoon’s Van Wilder', 'The Wrestler', 'Duel
in the Sun', 'Best in Show', 'Escape from New York', 'School Daze', 'Daddy D
ay Camp', 'Mr. Nice Guy', 'A Mighty Wind', 'Mystic Pizza', 'Sliding Doors',
'Tales from the Hood', 'The Last King of Scotland', 'Halloween 5: The Reveng
e of Michael Myers', 'Bernie', 'Dolphins and Whales: Tribes of the Ocean',
'Pollock', '200 Cigarettes', 'The Words', 'Casa De Mi Padre', 'City Island',
'The Guard', 'College', 'The Virgin Suicides', 'Little Voice', 'Miss March',
'Wish I Was Here', 'Simply Irresistible', 'Hedwig and the Angry Inch', 'Only
the Strong', 'Goddess of Love', 'Shattered Glass', 'Novocaine', 'The Busines
s of Strangers', 'The Wild Bunch', 'The Wackness', 'The First Great Train Ro
bbery', 'Morvern Callar', 'Beastmaster 2: Through the Portal of Time', 'The
5th Quarter', 'The Flower of Evil', 'The Greatest', 'Snow Flower and the Sec
ret Fan', 'Come Early Morning', 'Lucky Break', 'Julia', 'Surfer, Dude', 'Lak
e of Fire', '11:14', 'Men of War', 'Don McKay', 'Deadfall', 'A Shine of Rain
bows', 'The Hit List', 'Emma', 'Videodrome', 'The Spanish Apartment', 'Song
One', 'Winter in Wartime', 'Freaky Deaky', 'The Train', 'Trade Of Innocent
s', 'The Protector', 'Stiff Upper Lips', 'Bend It Like Beckham', 'Sunshine S
tate', 'Crossover', 'Khiladi 786', '[REC]²', 'Standing Ovation', 'The Stin
g', 'Chariots of Fire', 'Diary of a Mad Black Woman', 'Shine', 'Don Jon', 'H
igh Plains Drifter', 'Ghost World', 'Iris', 'Galaxina', 'The Chorus', 'Mambo
Italiano', 'Wonderland', 'Do the Right Thing', 'Harvard Man', 'Le Havre', 'I
rreversible', 'R100', 'Rang De Basanti', 'Animals', 'Salvation Boulevard',
'The Ten', 'A Room for Romeo Brass', 'Headhunters', 'Grabbers', 'Saint Ralp
h', 'Miss Julie', 'Somewhere in Time', 'Dum Maaro Dum', 'Insidious: Chapter
2', 'Saw II', '10 Cloverfield Lane', 'Jackass: The Movie', 'Lights Out', 'Pa
ranormal Activity 3', 'Ouija', 'A Nightmare on Elm Street 3: Dream Warrior
s', 'Instructions Not Included', 'Paranormal Activity 4', 'The Robe', 'The R
eturn of the Pink Panther', "Freddy's Dead: The Final Nightmare", 'Monster',
'20,000 Leagues Under the Sea', 'Paranormal Activity: The Marked Ones', 'The
Elephant Man', 'Dallas Buyers Club', 'The Lazarus Effect', 'Memento', 'Oculu
s', 'Clerks II', 'Billy Elliot', 'The Way Way Back', 'House Party 2', 'The M
an from Snowy River', "Doug's 1st Movie", 'The Apostle', 'Mommie Dearest',
'Our Idiot Brother', 'Race', 'The Players Club', 'As Above, So Below', 'Addi
cted', "Eve's Bayou", 'Still Alice', 'The Egyptian', 'Nighthawks', 'Friday t
he 13th Part VIII: Jason Takes Manhattan', 'My Big Fat Greek Wedding', 'Spri
ng Breakers', 'Halloween: The Curse of Michael Myers', 'Y Tu Mamá También',
'Shaun of the Dead', 'The Haunting of Molly Hartley', 'Lone Star', 'Hallowee
n 4: The Return of Michael Myers', "April Fool's Day", 'Diner', 'Lone Wolf M
cQuade', 'Apollo 18', 'Sunshine Cleaning', 'No Escape', 'The Beastmaster',
'Solomon and Sheba', 'Fifty Shades of Black', 'Not Easily Broken', 'A Farewe
ll to Arms', 'The Perfect Match', 'Digimon: The Movie', 'Saved!', 'The Barba
rian Invasions', 'Robin and Marian', 'The Forsaken', 'Force 10 from Navaron
e', 'UHF', "Grandma's Boy", 'Slums of Beverly Hills', 'Once Upon a Time in t
he West', 'Made', 'Moon', 'Keeping Up with the Steins', 'Sea Rex 3D: Journey
to a Prehistoric World', 'The Sweet Hereafter', 'Of Gods and Men', 'Bottle S
hock', 'Jekyll and Hyde ... Together Again', 'Heavenly Creatures', '90 Minut
es in Heaven', 'Everything Must Go', 'Zero Effect', 'The Machinist', 'Light
Sleeper', 'Kill the Messenger', 'Rabbit Hole', 'Party Monster', 'Green Roo
m', 'The Oh in Ohio', 'Atlas Shrugged Part III: Who is John Galt?', 'Bottle
Rocket', 'Albino Alligator', 'Gandhi, My Father', 'Standard Operating Proced
ure', 'Out of the Blue', 'Tucker and Dale vs Evil', 'Lovely, Still', 'Tycoo
n', 'Desert Blue', 'Decoys', 'The Visit', 'Redacted', 'Fascination', 'Area 5
1', 'Sleep Tight', 'The Cottage', 'Dead Like Me: Life After Death', 'Farce o
f the Penguins', 'Flying By', 'Rudderless', 'Henry & Me', 'Christmas Eve',
'We Have Your Husband', 'Dying of the Light', 'Born Of War', 'Capricorn On
e', "Should've Been Romeo", 'Running Forever', 'Yoga Hosers', 'Navy Seals v
s. Zombies', 'I Served the King of England', 'Soul Kitchen', 'Sling Blade',
'The Awakening', 'Hostel', 'A Cock and Bull Story', 'Take Shelter', 'Lady in
White', 'Driving Lessons', "Let's Kill Ward's Wife", 'The Texas Chainsaw Mas
sacre 2', 'Pat Garrett & Billy the Kid', 'Only God Forgives', 'Camping Sauva
ge', 'Without Men', 'Dear Frankie', 'All Hat', 'The Names of Love', 'Treadin
g Water', 'Savage Grace', 'Out of the Blue', 'Police Academy', 'The Blue Lag
oon', 'Four Weddings and a Funeral', 'Fast Times at Ridgemont High', 'Moby D
ick', '25th Hour', 'Bound', 'Requiem for a Dream', 'State Fair', 'Tango', 'S
alvador', "Moms' Night Out", 'Donnie Darko', 'Saving Private Perez', 'Charac
ter', 'Spun', 'Life During Wartime', 'Sympathy for Lady Vengeance', "Mozar
t's Sister", 'Mean Machine', 'Exiled', 'Blackthorn', 'Lilya 4-ever', 'After.
Life', 'Fugly', "One Flew Over the Cuckoo's Nest", "R.L. Stine's Monstervill
e: The Cabinet of Souls", 'Silent Movie', 'Airlift', 'Anne of Green Gables',
'Falcon Rising', 'The Sweeney', 'Sexy Beast', 'Easy Money', 'Whale Rider',
'Paa', 'Cargo', 'High School Musical', 'Love and Death on Long Island', 'Nig
ht Watch', 'The Crying Game', "Porky's", 'Survival of the Dead', 'Night of t
he Living Dead', 'Lost in Translation', 'Annie Hall', 'The Greatest Show on
Earth', "Monster's Ball", 'Maggie', 'Leaving Las Vegas', 'Hansel and Gretel
Get Baked', 'The Front Page', 'The Boy Next Door', 'Trapeze', 'The Kids Are
All Right', 'They Live', 'The Great Escape', 'What the #$*! Do We (K)now!?',
'The Last Exorcism Part II', 'Boyhood', 'Scoop', 'The Wash', '3 Strikes', 'T
he Cooler', 'The Misfits', 'The Night Listener', 'The Jerky Boys', 'The Orph
anage', 'A Haunted House 2', 'The Rules of Attraction', 'Topaz', "Let's Go t
o Prison", 'Four Rooms', 'Secretary', 'The Real Cancun', 'Talk Radio', 'Wait
ing for Guffman', 'Love Stinks', 'You Kill Me', 'Thumbsucker', 'Red State',
'Mirrormask', 'Samsara', 'The Barbarians', 'The Art of Getting By', 'Zippe
r', 'Poolhall Junkies', 'The Loss of Sexual Innocence', 'Holy Motors', 'Jo
e', 'Shooting Fish', 'Prison', 'Psycho Beach Party', 'The Big Tease', 'Guten
Tag, Ramón', 'Trust', 'An Everlasting Piece', 'Among Giants', 'Adore', 'The
Velocity of Gary', 'Mondays in the Sun', 'Stake Land', 'The Last Time I Comm
itted Suicide', 'Futuro Beach', 'Another Happy Day', 'A Lonely Place to Di
e', 'Nothing', 'The Geographer Drank His Globe Away', '1776', 'Inescapable',
"Hell's Angels", 'Purple Violets', 'The Veil', 'The Loved Ones', 'The Helper
s', 'How to Fall in Love', 'The Perfect Wave', 'A Man for All Seasons', 'Net
work', 'Gone with the Wind', 'Desert Dancer', 'Major Dundee', 'Annie Get You
r Gun', 'Four Lions', 'The House of Sand', 'Defendor', 'The Pirate', 'The Go
od Heart', 'The History Boys', 'Midnight Cowboy', 'The Full Monty', 'Airplan
e!', 'Chain of Command', 'Friday', 'Menace II Society', 'Creepshow 2', 'The
Ballad of Cable Hogue', 'In Cold Blood', "The Nun's Story", 'Harper', 'Frenz
y', 'The Witch', 'I Got the Hook Up', "She's the One", 'Gods and Monsters',
'The Secret in Their Eyes', 'Train', 'Evil Dead II', 'Pootie Tang', 'Sharkna
do', 'The Other Conquest', 'Troll Hunter', 'Ira & Abby', 'Winter Passing',
'D.E.B.S.', 'The Masked Saint', 'The Betrayed', 'Taxman', 'The Secret', '2:1
3', 'Batman: The Dark Knight Returns, Part 2', 'Time to Choose', 'In the Nam
e of the King III', 'Wicked Blood', 'Stranded', 'Lords of London', 'High Anx
iety', 'March of the Penguins', 'Margin Call', 'August', 'Choke', 'Whiplas
h', 'City of God', 'Human Traffic', 'To Write Love on Her Arms', 'The Dead G
irl', 'The Hunt', 'A Christmas Story', 'Bella', 'Class of 1984', 'The Opposi
te Sex', 'Dreaming of Joseph Lees', 'The Class', "Rosemary's Baby", 'The Man
Who Shot Liberty Valance', 'Adam', 'Maria Full of Grace', 'Beginners', 'Feas
t', 'Animal House', 'Goldfinger', 'Antiviral', "It's a Wonderful Life", 'Tra
inspotting', 'The Original Kings of Comedy', 'Paranormal Activity 2', 'Wakin
g Ned', 'Bowling for Columbine', 'Coming Home', "A Nightmare on Elm Street P
art 2: Freddy's Revenge", 'A Room with a View', 'The Purge', 'Sinister', 'Ma
rtin Lawrence Live: Runteldat', 'Cat on a Hot Tin Roof', 'Beneath the Planet
of the Apes', 'Air Bud', 'Pokémon: Spell of the Unknown', 'Friday the 13th P
art VI: Jason Lives', 'The Bridge on the River Kwai', 'Spaced Invaders', 'Fa
mily Plot', 'The Apartment', 'Jason Goes to Hell: The Final Friday', 'Torn C
urtain', "Dave Chappelle's Block Party", 'Slow West', 'Krush Groove', 'Next
Day Air', 'Elmer Gantry', 'Judgment at Nuremberg', "Trippin'", 'Red River',
'Phat Girlz', 'Before Midnight', 'Teen Wolf Too', 'Phantasm II', 'Woman Thou
Art Loosed', 'Real Women Have Curves', 'Water', 'East Is East', 'Whipped',
'Kama Sutra - A Tale of Love', 'Please Give', 'Willy Wonka & the Chocolate F
actory', 'Warlock: The Armageddon', '8 Heads in a Duffel Bag', 'Days of Heav
en', 'Thirteen Conversations About One Thing', 'Jawbreaker', 'Basquiat', 'Fr
ances Ha', 'Tsotsi', 'Happiness', 'DysFunktional Family', 'Tusk', 'Oldboy',
'Letters to God', 'Hobo with a Shotgun', 'Compadres', 'Freeway', "Love's Abi
ding Joy", 'Fish Tank', 'Damsels in Distress', 'Creature', 'Bachelorette',
'Brave New Girl', "Tim and Eric's Billion Dollar Movie", 'Summer Storm', 'Fo
rt McCoy', 'Chain Letter', 'Just Looking', 'The Divide', 'The Eclipse', 'Dem
onic', 'My Big Fat Independent Movie', 'The Deported', 'Tanner Hall', 'Open
Road', 'They Came Together', '30 Nights of Paranormal Activity With the Devi
l Inside the Girl With the Dragon Tattoo', 'Never Back Down 2: The Beatdow
n', 'Point Blank', 'Four Single Fathers', 'Enter the Dangerous Mind', 'Somet
hing Wicked', 'AWOL-72', 'Iguana', 'Chicago Overcoat', 'Barry Munday', 'Cent
ral Station', 'Pocketful of Miracles', 'Close Range', 'Boynton Beach Club',
'Amnesiac', 'Freakonomics', 'High Tension', 'Griff the Invisible', 'Unnatura
l', 'Hustle & Flow', 'Some Like It Hot', 'Friday the 13th Part VII: The New
Blood', 'The Wizard of Oz', 'Young Frankenstein', 'Diary of the Dead', 'Lage
Raho Munna Bhai', "Ulee's Gold", 'The Black Stallion', 'Sardaarji', 'Journey
to Saturn', "Donovan's Reef", 'The Dress', 'A Guy Named Joe', 'Blazing Saddl
es', 'Friday the 13th: The Final Chapter', 'Ida', 'Maurice', 'Beer League',
'Riding Giants', 'Timecrimes', 'Silver Medalist', 'Timber Falls', "Singin' i
n the Rain", 'Fat, Sick & Nearly Dead', 'A Haunted House', "2016: Obama's Am
erica", 'That Thing You Do!', 'Halloween III: Season of the Witch', 'Escape
from the Planet of the Apes', 'Hud', 'Kevin Hart: Let Me Explain', 'My Own P
rivate Idaho', 'Garden State', 'Before Sunrise', 'Evil Words', "Jesus' Son",
'Saving Face', 'Brick Lane', 'Robot & Frank', 'My Life Without Me', 'The Spe
ctacular Now', 'Religulous', 'Fuel', "Valley of the Heart's Delight", 'Eye o
f the Dolphin', '8: The Mormon Proposition', 'The Other End of the Line', 'A
natomy', 'Sleep Dealer', 'Super', 'Christmas Mail', 'Stung', 'Antibirth', 'G
et on the Bus', 'Thr3e', 'Idiocracy', 'The Rise of the Krays', 'This Is Engl
and', 'U.F.O.', 'Bathing Beauty', 'Go for It!', 'Dancer, Texas Pop. 81', 'Sh
ow Boat', 'Redemption Road', 'The Calling', 'The Brave Little Toaster', 'Fan
tasia', '8 Days', 'Friday the 13th Part III', 'Friday the 13th: A New Beginn
ing', 'The Last Sin Eater', 'Do You Believe?', 'Impact Point', 'The Valley o
f Decision', 'Eden', 'Chicken Tikka Masala', "There's Always Woodstock", 'Ja
ck Brooks: Monster Slayer', 'The Best Years of Our Lives', 'Bully', 'Ellin
g', 'Mi America', '[REC]', 'Lies in Plain Sight', 'Sharkskin', 'Containmen
t', 'The Timber', 'From Russia with Love', 'The Toxic Avenger Part II', 'Sle
eper', 'It Follows', 'Everything You Always Wanted to Know About Sex *But We
re Afraid to Ask', 'To Kill a Mockingbird', 'Mad Max 2: The Road Warrior',
'The Legend of Drunken Master', "Boys Don't Cry", 'Silent House', 'The Lives
of Others', 'Courageous', 'The Hustler', 'Boom Town', 'The Triplets of Belle
ville', 'Smoke Signals', 'American Splendor', 'Before Sunset', 'Amores perro
s', 'Thirteen', "Gentleman's Agreement", "Winter's Bone", 'Touching the Voi
d', "Alexander's Ragtime Band", 'Me and You and Everyone We Know', 'Inside J
ob', 'We Are Your Friends', 'Ghost Dog: The Way of the Samurai', 'Harsh Time
s', 'Captive', 'Full Frontal', 'Witchboard', 'Shortbus', 'Waltz with Bashi
r', 'The Book of Mormon Movie, Volume 1: The Journey', 'No End in Sight', 'T
he Diary of a Teenage Girl', 'In the Shadow of the Moon', "Meek's Cutoff",
'Inside Deep Throat', 'Dinner Rush', 'Clockwatchers', 'The Virginity Hit',
'Subway', 'House of D', 'Teeth', 'Six-String Samurai', 'Hum To Mohabbat Kare
ga', "It's All Gone Pete Tong", 'Saint John of Las Vegas', '24 7: Twenty Fou
r Seven', 'Stonewall', 'Roadside Romeo', 'This Thing of Ours', 'The Lost Med
allion: The Adventures of Billy Stone', 'The Last Five Years', 'The Missing
Person', 'Return of the Living Dead 3', 'London', 'Sherrybaby', 'Circle', 'E
den Lake', 'Plush', 'Lesbian Vampire Killers', "Gangster's Paradise: Jerusal
ema", 'Freeze Frame', 'Grave Encounters', 'Stitches', 'Nine Dead', 'To Be Fr
ank, Sinatra at 100', 'Bananas', 'Supercapitalist', 'Rockaway', 'The Lady fr
om Shanghai', "No Man's Land: The Rise of Reeker", 'Highway', 'Small Apartme
nts', 'Coffee Town', 'The Ghastly Love of Johnny X', 'All Is Bright', 'The T
orture Chamber of Dr. Sadism', "Straight A's", 'A Funny Thing Happened on th
e Way to the Forum', 'Slacker Uprising', "The Legend of Hell's Gate: An Amer
ican Conspiracy", 'The Walking Deceased', 'The Curse of Downers Grove', 'Sha
rk Lake', "River's Edge", 'Northfork', 'The Marine 4: Moving Target', 'Burie
d', 'Submarine', 'The Square', 'One to Another', 'ABCD (Any Body Can Danc
e)', 'Man on Wire', 'Abandoned', 'Brotherly Love', 'The Last Exorcism', 'Now
here Boy', 'A Streetcar Named Desire', 'Dr. Strangelove or: How I Learned to
Stop Worrying and Love the Bomb', 'The Crime of Padre Amaro', 'Beasts of the
Southern Wild', 'Battle for the Planet of the Apes', 'Songcatcher', 'Higher
Ground', 'Vaalu', 'The Greatest Movie Ever Sold', 'Ed and His Dead Mother',
'Travellers and Magicians', "Hang 'em High", 'Deadline - U.S.A.', 'Sublime',
"A Beginner's Guide to Snuff", 'Independence Daysaster', 'Dysfunctional Frie
nds', 'Run Lola Run', 'May', 'Against the Wild', 'Under the Same Moon', 'Con
quest of the Planet of the Apes', 'In the Bedroom', 'I Spit on Your Grave',
'Happy, Texas', 'My Summer of Love', 'The Lunchbox', 'Yes', "You Can't Take
It With You", 'From Here to Eternity', 'She Wore a Yellow Ribbon', 'Grace Un
plugged', 'Foolish', 'N-Secure', 'Caramel', 'Out of the Dark', 'The Bubble',
'The Conversation', 'Dil Jo Bhi Kahey...', 'Mississippi Mermaid', 'I Love Yo
ur Work', 'Cabin Fever', 'Waitress', 'Bloodsport', 'Mr. Smith Goes to Washin
gton', 'Kids', 'The Squid and the Whale', 'Kissing Jessica Stein', 'Kickboxe
r: Vengeance', 'Spellbound', 'Exotica', "Buffalo '66", 'Insidious', 'Repo Ma
n', 'Nine Queens', 'The Gatekeepers', 'The Ballad of Jack and Rose', 'The To
Do List', 'Killing Zoe', 'The Believer', 'Snow Angels', 'Unsullied', 'Sessio
n 9', 'I Want Someone to Eat Cheese With', 'Mooz-lum', 'Hatchet', 'Modern Ti
mes', 'Stolen Summer', 'My Name Is Bruce', 'The Salon', 'Road Hard', 'Forty
Shades of Blue', 'Amigo', 'Pontypool', 'Trucker', 'Me You and Five Bucks',
'The Lords of Salem', 'Housebound', 'Wal-Mart: The High Cost of Low Price',
'Fetching Cody', 'Last I Heard', 'Closer to the Moon', 'Mutant World', 'Grow
ing Up Smith', 'Checkmate', '#Horror', 'Wind Walkers', 'Snow White and the S
even Dwarfs', 'The Holy Girl', 'Shalako', 'Incident at Loch Ness', 'The Dog
Lover', 'GirlHouse', 'The Blue Room', 'House at the End of the Drive', 'Batm
an', 'Lock, Stock and Two Smoking Barrels', 'The Ballad of Gregorio Cortez',
'The Celebration', 'Trees Lounge', 'Journey from the Fall', 'The Basket', 'E
ddie: The Sleepwalking Cannibal', 'Queen of the Mountains', 'Def-Con 4', 'Th
e Hebrew Hammer', "Neal 'n' Nikki", 'The 41–Year–Old Virgin Who Knocked Up S
arah Marshall and Felt Superbad About It', 'Forget Me Not', 'Rebecca', 'Frid
ay the 13th Part 2', 'The Lost Weekend', 'C.H.U.D.', 'Filly Brown', 'The Lio
n of Judah', 'Niagara', 'How Green Was My Valley', 'Da Sweet Blood of Jesu
s', 'Sex, Lies, and Videotape', 'Saw', 'Super Troopers', 'The Algerian', 'Th
e Amazing Catfish', 'Monsoon Wedding', 'You Can Count on Me', 'The Trouble w
ith Harry', "But I'm a Cheerleader", 'Home Run', 'Reservoir Dogs', 'The Blue
Bird', 'The Good, the Bad and the Ugly', 'The Second Mother', 'Blue Like Jaz
z', 'Down & Out With The Dolls', 'Pink Ribbons, Inc.', 'Certifiably Jonatha
n', 'Desire', 'The Blade of Don Juan', 'Grand Theft Parsons', 'Extreme Movi
e', 'The Charge of the Light Brigade', 'Below Zero', 'Crowsnest', 'Airborn
e', 'Cotton Comes to Harlem', 'The Wicked Within', 'Bleeding Hearts', 'Waiti
ng...', "Dead Man's Shoes", 'From a Whisper to a Scream', 'Sex With Stranger
s', "Dracula: Pages from a Virgin's Diary", 'Faith Like Potatoes', 'Beyond t
he Black Rainbow', 'The Raid', 'The Dead Undead', 'The Vatican Exorcisms',
'Casablanca', 'Lake Mungo', 'Rocket Singh: Salesman of the Year', 'Silent Ru
nning', 'Rocky', 'The Sleepwalker', 'Tom Jones', 'Unfriended', 'Taxi Drive
r', 'The Howling', 'Dr. No', 'Chernobyl Diaries', 'Hellraiser', "God's Not D
ead 2", 'Cry_Wolf', 'Godzilla 2000', 'Blue Valentine', 'Transamerica', 'The
Devil Inside', 'Beyond the Valley of the Dolls', 'Love Me Tender', 'An Incon
venient Truth', 'Sands of Iwo Jima', 'Shine a Light', 'The Green Inferno',
'Departure', 'The Sessions', 'Food, Inc.', 'October Baby', 'Next Stop Wonder
land', 'The Skeleton Twins', 'Martha Marcy May Marlene', 'Obvious Child', 'F
rozen River', '20 Feet from Stardom', 'Two Girls and a Guy', 'Walking and Ta
lking', 'Who Killed the Electric Car?', 'The Broken Hearts Club: A Romantic
Comedy', 'Bubba Ho-tep', 'Slam', 'Brigham City', 'Fiza', 'Orgazmo', 'All the
Real Girls', 'Dream with the Fishes', 'Blue Car', 'Palo Alto', 'Ajami', 'Wri
stcutters: A Love Story', 'I Origins', 'The Battle of Shaker Heights', 'The
Act of Killing', 'Taxi to the Dark Side', 'Once in a Lifetime: The Extraordi
nary Story of the New York Cosmos', 'Guiana 1838', 'Lisa Picard Is Famous',
'Antarctica: A Year on Ice', 'A LEGO Brickumentary', 'Hardflip', 'Chocolate:
Deep Dark Secrets', 'The House of the Devil', 'The Perfect Host', 'Safe Me
n', 'Speedway Junky', 'The Last Big Thing', 'The Specials', '16 to Life', 'A
lone With Her', 'Creative Control', 'Special', 'Sparkler', 'The Helix... Loa
ded', 'In Her Line of Fire', 'The Jimmy Show', 'Heli', 'Karachi se Lahore',
'Loving Annabelle', 'Hits', 'Jimmy and Judy', 'Frat Party', "The Party's Ove
r", 'Proud', 'The Poker House', 'Childless', 'ZMD: Zombies of Mass Destructi
on', 'Snow White: A Deadly Summer', 'Hidden Away', 'My Last Day Without Yo
u', 'Steppin: The Movie', "Doc Holliday's Revenge", 'Black Rock', 'Truth or
Dare', 'The Pet', 'Bang Bang Baby', 'Fear Clinic', 'Zombie Hunter', 'A Fine
Step', 'Charly', 'Banshee Chapter', 'Ask Me Anything', 'And Then Came Love',
'Food Chains', 'On the Waterfront', 'L!fe Happens', '4 Months, 3 Weeks and 2
Days', 'The Horror Network Vol. 1', 'Hard Candy', 'The Quiet', 'Circumstanc
e', 'Fruitvale Station', 'The Brass Teapot', 'Bambi', 'The Hammer', 'Latter
Days', 'Elza', '1982', 'For a Good Time, Call...', 'Celeste & Jesse Foreve
r', 'Time Changer', 'London to Brighton', 'American Hero', 'Windsor Drive',
'A Separation', 'Crying with Laughter', 'Welcome to the Dollhouse', 'Ruby in
Paradise', 'Raising Victor Vargas', "Pandora's Box", 'Harrison Montgomery',
'Live-In Maid', 'Deterrence', 'The Mudge Boy', 'The Young Unknowns', 'Not Co
ol', 'Dead Snow', 'Saints and Soldiers', 'Vessel', 'American Graffiti', 'Ira
q for Sale: The War Profiteers', 'Aqua Teen Hunger Force Colon Movie Film fo
r Theaters', 'Safety Not Guaranteed', 'Kevin Hart: Laugh at My Pain', 'Kill
List', 'The Innkeepers', 'The Conformist', 'Interview with the Assassin', 'D
onkey Punch', 'All the Boys Love Mandy Lane', 'Bled', 'High Noon', 'Hoop Dre
ams', 'Rize', 'L.I.E.', 'The Sisterhood of Night', 'B-Girl', 'Half Nelson',
'Naturally Native', 'Hav Plenty', 'Adulterers', 'Escape from Tomorrow', 'Sta
rsuckers', 'The Hadza: Last of the First', 'After', 'Treachery', 'Walter',
'Top Hat', 'The Blair Witch Project', 'Woodstock', 'The Kentucky Fried Movi
e', 'Mercy Streets', 'Carousel of Revenge', 'Broken Vessels', 'Water & Powe
r', 'They Will Have to Kill Us First', 'Light from the Darkroom', 'The Count
ry Doctor', "The Maid's Room", "A Hard Day's Night", 'The Harvest (La Cosech
a)', 'Love Letters', 'Juliet and Alfa Romeo', 'Fireproof', 'Faith Connection
s', 'Benji', 'Open Water', 'High Road', 'Kingdom of the Spiders', 'Mad Hot B
allroom', 'The Station Agent', 'To Save A Life', 'Wordplay', 'Beyond the Ma
t', 'The Singles Ward', 'Osama', 'Sholem Aleichem: Laughing In The Darknes
s', 'Groove', 'The R.M.', 'Twin Falls Idaho', 'Mean Creek', 'Hurricane Stree
ts', 'Never Again', 'Civil Brand', 'Lonesome Jim', 'Drinking Buddies', 'Dece
ptive Practice: The Mysteries and Mentors of Ricky Jay', 'Seven Samurai', 'T
he Other Dream Team', 'Johnny Suede', 'Finishing The Game', 'Rubber', 'Kiss
the Bride', 'The Slaughter Rule', 'Monsters', 'The Californians', 'The Livin
g Wake', 'Detention of the Dead', 'Crazy Stone', 'Scott Walker: 30 Century M
an', 'Everything Put Together', 'Good Kill', 'The Outrageous Sophie Tucker',
'Now Is Good', 'Girls Gone Dead', 'America Is Still the Place', 'Subconsciou
s', 'Enter Nowhere', 'El Rey de Najayo', 'Fight to the Finish', "Alleluia! T
he Devil's Carnival", 'The Sound and the Shadow', 'Rodeo Girl', 'Born to Fl
y: Elizabeth Streb vs. Gravity', 'The Little Ponderosa Zoo', 'The Toxic Aven
ger', 'Straight Out of Brooklyn', 'Bloody Sunday', 'Diamond Ruff', 'Conversa
tions with Other Women', 'Poultrygeist: Night of the Chicken Dead', 'Mutual
Friends', '42nd Street', 'Rise of the Entrepreneur: The Search for a Better
Way', 'Metropolitan', 'As It Is in Heaven', 'Roadside', 'Napoleon Dynamite',
'Blue Ruin', 'Paranormal Activity', 'Dogtown and Z-Boys', 'Monty Python and
the Holy Grail', 'Quinceañera', 'Gory Gory Hallelujah', 'Tarnation', 'I Want
Your Money', 'Love in the Time of Monsters', 'The Beyond', 'What Happens in
Vegas', 'The Dark Hours', 'My Beautiful Laundrette', 'Fabled', 'Show Me', 'C
ries and Whispers', 'Intolerance', 'Trekkies', 'The Broadway Melody', 'The E
vil Dead', 'Maniac', 'Censored Voices', 'Murderball', 'American Ninja 2: The
Confrontation', '51 Birch Street', 'Rotor DR1', '12 Angry Men', 'My Dog Tuli
p', 'It Happened One Night', 'Dogtooth', 'Tupac: Resurrection', 'Tumbleweed
s', 'The Prophecy', "When the Cat's Away", 'Pieces of April', 'The Big Swa
p', 'Old Joy', 'Wendy and Lucy', '3 Backyards', 'Pierrot le Fou', 'Sisters i
n Law', 'Ayurveda: Art of Being', 'Nothing But a Man', 'First Love, Last Rit
es', 'Fighting Tommy Riley', 'Royal Kill', 'The Looking Glass', 'Death Race
2000', 'Locker 13', 'Midnight Cabaret', "Anderson's Cross", 'Bizarre', 'Grad
uation Day', 'Some Guy Who Kills People', 'Compliance', 'Chasing Amy', 'Love
ly & Amazing', 'Death Calls', 'Better Luck Tomorrow', 'The Incredibly True A
dventure of Two Girls In Love', 'Chuck & Buck', 'American Desi', "Amidst the
Devil's Wings", 'Cube', 'Love and Other Catastrophes', 'I Married a Strange
Person!', 'November', 'Like Crazy', 'Teeth and Blood', 'Sugar Town', 'The Mo
tel', 'The Canyons', 'On the Outs', 'Shotgun Stories', 'Exam', 'The Sticky F
ingers of Time', 'Sunday School Musical', 'Rust', 'Ink', 'The Christmas Bunn
y', 'Butterfly', 'UnDivided', 'The Frozen', 'Horse Camp', 'Give Me Shelter',
'The Big Parade', 'Little Big Top', 'Along the Roadside', 'Bronson', 'Wester
n Religion', 'Burn', 'Urbania', 'The Stewardesses', 'The Beast from 20,000 F
athoms', 'Mad Max', 'Swingers', 'A Fistful of Dollars', 'She Done Him Wron
g', 'Short Cut to Nirvana: Kumbh Mela', 'The Grace Card', 'Middle of Nowher
e', 'Three', 'The Business of Fancydancing', 'Call + Response', 'Malevolenc
e', 'Reality Show', 'Super Hybrid', 'Baghead', 'American Beast', 'The Case o
f the Grinning Cat', 'Ordet', 'Good Dick', 'The Man from Earth', 'The Trials
Of Darryl Hunt', 'Samantha: An American Girl Holiday', 'Yesterday Was a Li
e', 'Theresa Is a Mother', 'H.', 'Archaeology of a Woman', 'Children of Heav
en', 'Weekend', "She's Gotta Have It", 'Butterfly Girl', 'The World Is Min
e', 'Another Earth', "Sweet Sweetback's Baadasssss Song", 'Perfect Cowboy',
'Tadpole', 'Once', 'The Woman Chaser', 'The Horse Boy', 'When the Lights Wen
t Out', 'Heroes of Dirt', 'A Charlie Brown Christmas', 'Antarctic Edge: 70°
South', 'Aroused', 'Top Spin', 'Roger & Me', 'An American in Hollywood', 'So
und of My Voice', 'The Blood of My Brother: A Story of Death in Iraq', "Your
Sister's Sister", "A Dog's Breakfast", 'The Married Woman', 'The Birth of a
Nation', 'The Work and The Story', 'Facing the Giants', 'The Gallows', 'Eras
erhead', 'Hollywood Shuffle', 'The Mighty', 'Penitentiary', 'The Lost Skelet
on of Cadavra', "Dude Where's My Dog?", 'Cheap Thrills', 'Indie Game: The Mo
vie', 'Straightheads', 'Open Secret', 'Echo Dr.', 'The Night Visitor', 'The
Past Is a Grotesque Animal', 'Peace, Propaganda & the Promised Land', 'Pi',
"I Love You, Don't Touch Me!", '20 Dates', 'Queen Crab', 'Super Size Me', 'T
he FP', 'Happy Christmas', "The Brain That Wouldn't Die", 'Tiger Orange', 'S
upporting Characters', 'Absentia', 'The Brothers McMullen', 'The Dirties',
'Gabriela', 'Tiny Furniture', 'Hayride', 'The Naked Ape', 'Counting', 'The C
all of Cthulhu', 'Bending Steel', 'The Signal', 'The Image Revolution', 'Thi
s Is Martin Bonner', 'A True Story', 'George Washington', 'Smiling Fish & Go
at On Fire', 'Dawn of the Crescent Moon', 'Raymond Did It', 'The Last Walt
z', 'Run, Hide, Die', 'The Exploding Girl', "The Legend of God's Gun", 'Mutu
al Appreciation', 'Her Cry: La Llorona Investigation', 'Down Terrace', 'Cler
ks', 'Pink Narcissus', 'Funny Ha Ha', 'In the Company of Men', 'Manito', 'Ra
mpage', 'Slacker', 'Dutch Kills', 'Dry Spell', 'Flywheel', 'Backmask', 'The
Puffy Chair', 'Stories of Our Lives', 'Breaking Upwards', 'All Superheroes M
ust Die', 'Pink Flamingos', 'Clean', 'The Circle', 'Tin Can Man', 'Cure', 'O
n The Downlow', 'Sanctuary: Quite a Conundrum', 'Bang', 'Primer', 'Cavite',
'El Mariachi', 'Newlyweds', 'Signed, Sealed, Delivered', 'Shanghai Calling',
'My Date with Drew']

In [ ]: # finding the close match for the movie name given by the user

find_close_match = difflib.get_close_matches(movie_name, list_of_all_titles)


print(find_close_match)

['Iron Man', 'Iron Man 3', 'Iron Man 2']


In [ ]: close_match = find_close_match[0]
print(close_match)

Iron Man

In [ ]: # finding the index of the movie with title

index_of_the_movie = movies_data[movies_data.title == close_match]['index'].


print(index_of_the_movie)

68

In [ ]: # getting a list of similar movies

similarity_score = list(enumerate(similarity[index_of_the_movie]))
print(similarity_score)
[(0, 0.033570748780675445), (1, 0.0546448279236134), (2, 0.01373550060422432
3), (3, 0.006468756104392058), (4, 0.03268943310073386), (5, 0.0139072566857
55473), (6, 0.07692837576335507), (7, 0.23944423963486405), (8, 0.0078823878
51851008), (9, 0.07599206098164225), (10, 0.07536074882460438), (11, 0.01192
606921174529), (12, 0.013707618139948929), (13, 0.012376074925089967), (14,
0.09657127116284188), (15, 0.007286271383816743), (16, 0.22704403782296803),
(17, 0.013112928084103857), (18, 0.04140526820609594), (19, 0.07883282546834
255), (20, 0.07981173664799915), (21, 0.011266873271064948), (22, 0.00689257
5895462364), (23, 0.006599097891242659), (24, 0.012665208122549737), (25, 0.
0), (26, 0.21566241096831154), (27, 0.030581282093826635), (28, 0.0610744022
19665376), (29, 0.014046184258938898), (30, 0.0807734659476981), (31, 0.3146
7052449477506), (32, 0.02878209913426701), (33, 0.13089810941050173), (34,
0.0), (35, 0.035350090674865595), (36, 0.03185325269937555), (37, 0.00802432
6882532318), (38, 0.1126182690487113), (39, 0.08902766481306311), (40, 0.008
086007019135987), (41, 0.06454289714171595), (42, 0.0), (43, 0.0543166925189
40446), (44, 0.006244741632576977), (45, 0.023530724758699103), (46, 0.14216
268867232237), (47, 0.03716851751705058), (48, 0.013755725647812333), (49,
0.0), (50, 0.012978759995781826), (51, 0.027557058720715163), (52, 0.0303264
0708636649), (53, 0.022454895898373586), (54, 0.04976759996785291), (55, 0.0
141234086767521), (56, 0.03765407977136924), (57, 0.03611189350591964), (58,
0.006559522468571584), (59, 0.031705778955831605), (60, 0.01384036298455364
4), (61, 0.0334730220502558), (62, 0.013292388095397085), (63, 0.00705260414
8534629), (64, 0.15299924139445145), (65, 0.005907393049485784), (66, 0.0072
15870794201356), (67, 0.028674707838967486), (68, 1.0000000000000002), (69,
0.01303791167475042), (70, 0.03296111942451571), (71, 0.017647877890961963),
(72, 0.07116913464035789), (73, 0.0), (74, 0.02605515302790224), (75, 0.0127
06074782984477), (76, 0.051392823037065084), (77, 0.0), (78, 0.0841900692701
125), (79, 0.40890433998005965), (80, 0.008262380058536143), (81, 0.02058515
7268030067), (82, 0.027350200955172085), (83, 0.03456975188175575), (84, 0.0
10896033200138981), (85, 0.20615862984665329), (86, 0.00651427245877694), (8
7, 0.02732356669290361), (88, 0.013137418635022081), (89, 0.0065440217577704
815), (90, 0.0203155551654759), (91, 0.07332047182734806), (92, 0.0158415312
6652656), (93, 0.024945228677866187), (94, 0.1361681957902901), (95, 0.06252
897649940424), (96, 0.033405021205442614), (97, 0.026094558260580214), (98,
0.04905848735292447), (99, 0.005561520671423613), (100, 0.0), (101, 0.144016
77581826294), (102, 0.03558469248172752), (103, 0.036898074457195514), (104,
0.013715791022299717), (105, 0.0), (106, 0.008019033368914791), (107, 0.0282
79993139118376), (108, 0.0334797534915236), (109, 0.005548679184587941), (11
0, 0.03910341630662284), (111, 0.035454313825025605), (112, 0.01327411397715
6034), (113, 0.007759892605819308), (114, 0.006989250733748654), (115, 0.005
576099256354755), (116, 0.02331817272145757), (117, 0.006974473701411298),
(118, 0.0), (119, 0.006096481233007207), (120, 0.0), (121, 0.012619773810815
626), (122, 0.10850296033661253), (123, 0.03115447480800445), (124, 0.006779
54947820739), (125, 0.030670701698560877), (126, 0.13263982780511066), (127,
0.03534673369287746), (128, 0.029208890659519884), (129, 0.0810117088625194
7), (130, 0.006805009963331235), (131, 0.13137698586006535), (132, 0.0070285
52956806382), (133, 0.0), (134, 0.012668821148788128), (135, 0.0), (136, 0.0
4236016592798786), (137, 0.0), (138, 0.11846458075866884), (139, 0.012071297
108255745), (140, 0.00596627478663651), (141, 0.007390628871215626), (142,
0.008290580639543894), (143, 0.007857094692385196), (144, 0.0076594868552766
32), (145, 0.00629812891195704), (146, 0.030799807030003203), (147, 0.012088
724874898267), (148, 0.005820207392883669), (149, 0.032405490339878086), (15
0, 0.032355140034882886), (151, 0.025966615810654573), (152, 0.0126127777110
94553), (153, 0.012527049725639658), (154, 0.0), (155, 0.0), (156, 0.0047796
39857266271), (157, 0.014107660677457974), (158, 0.03541549130163172), (159,
0.00542316214068809), (160, 0.013499774907434675), (161, 0.0), (162, 0.00704
9965568086859), (163, 0.05057552351215676), (164, 0.019561004605791712), (16
5, 0.028663192805703147), (166, 0.06561062051156705), (167, 0.02130877077220
7792), (168, 0.03199997003691454), (169, 0.1380947013224906), (170, 0.022059
705664745223), (171, 0.0070483318056277664), (172, 0.020074174629754093), (1
73, 0.0), (174, 0.1471993120942043), (175, 0.007278108122040668), (176, 0.00
701753260267472), (177, 0.0), (178, 0.04407535006798218), (179, 0.0078814315
9087014), (180, 0.006209899499267643), (181, 0.00784201060360527), (182, 0.1
9573956139611606), (183, 0.03486109654678598), (184, 0.02247033598810894),
(185, 0.06860505213764485), (186, 0.011679517754190759), (187, 0.01994745787
157503), (188, 0.005871770923133652), (189, 0.008410980836417606), (190, 0.0
14308003872917193), (191, 0.007335998680350284), (192, 0.0), (193, 0.0353716
6141532365), (194, 0.0), (195, 0.007182889033479824), (196, 0.02717101029399
197), (197, 0.0077605007650080006), (198, 0.08153087466980356), (199, 0.0489
1685287126126), (200, 0.028786237160676464), (201, 0.029641586366427965), (2
02, 0.007331578562093385), (203, 0.14818667948665118), (204, 0.0057728475915
898225), (205, 0.0897400597380081), (206, 0.012366206192057331), (207, 0.047
16662478030318), (208, 0.012833095829278003), (209, 0.005970673779866456),
(210, 0.00553105163130064), (211, 0.027417407508438504), (212, 0.03195537626
7947054), (213, 0.014656754949169543), (214, 0.0), (215, 0.01409295047642693
3), (216, 0.012418209963039488), (217, 0.005596449396060738), (218, 0.006805
981907974583), (219, 0.029541056427015617), (220, 0.024779500493157473), (22
1, 0.00805341061123271), (222, 0.026846153717126807), (223, 0.02356368134600
1324), (224, 0.02489512665451231), (225, 0.02889267862219055), (226, 0.0),
(227, 0.005708705031829342), (228, 0.03156314015161786), (229, 0.03433297413
750868), (230, 0.02635938132298936), (231, 0.0), (232, 0.09092162527012912),
(233, 0.027530962805956946), (234, 0.007819453077169452), (235, 0.0070561091
32256441), (236, 0.0058374390292392124), (237, 0.012509831919299386), (238,
0.06736274873833466), (239, 0.01806534125068375), (240, 0.01361437912671142
5), (241, 0.042240917371191684), (242, 0.10630339022327012), (243, 0.0131410
23801873984), (244, 0.004878034676241361), (245, 0.01157921821443525), (246,
0.0053869685364931795), (247, 0.0), (248, 0.006062629304803696), (249, 0.041
102703416918324), (250, 0.0), (251, 0.0), (252, 0.005876519977122681), (253,
0.00485226220043195), (254, 0.03531653184850298), (255, 0.0), (256, 0.040781
89289079018), (257, 0.02555495710928715), (258, 0.0), (259, 0.01192089305395
3798), (260, 0.03309287957030214), (261, 0.006618106417719788), (262, 0.0509
26451484028336), (263, 0.02595392941154679), (264, 0.021246710830882497), (2
65, 0.0), (266, 0.026218065199683213), (267, 0.011020103780391938), (268, 0.
0), (269, 0.0), (270, 0.05661980517846482), (271, 0.03673080173232901), (27
2, 0.0), (273, 0.005445437739453207), (274, 0.014371464874911068), (275, 0.0
24449642491222362), (276, 0.00766362066586878), (277, 0.013401174961564108),
(278, 0.06499232726167231), (279, 0.04184542612623717), (280, 0.0), (281, 0.
0), (282, 0.0051732196328447295), (283, 0.0), (284, 0.013248036192994214),
(285, 0.005304001568385907), (286, 0.0191322935467343), (287, 0.0), (288, 0.
0), (289, 0.0072860269680724956), (290, 0.01382398166081373), (291, 0.059551
1652211432), (292, 0.021831343432486265), (293, 0.0), (294, 0.00814051457926
125), (295, 0.005495334609364708), (296, 0.006055318711558956), (297, 0.0058
75643392252975), (298, 0.0), (299, 0.005951839881547006), (300, 0.0277815481
15258042), (301, 0.020731515593165495), (302, 0.007478532480637139), (303,
0.0058441239956522366), (304, 0.012631610695037928), (305, 0.027682511414037
294), (306, 0.027871722076876562), (307, 0.09363711287421697), (308, 0.00493
6382972280525), (309, 0.04001563294972253), (310, 0.04010220755839984), (31
1, 0.033030501399198775), (312, 0.01174608580312916), (313, 0.02675895835454
398), (314, 0.0), (315, 0.01182359280298129), (316, 0.04129430542926027), (3
17, 0.0), (318, 0.07430419806186547), (319, 0.027466662430837854), (320, 0.0
05800126265633735), (321, 0.0), (322, 0.03471484926308493), (323, 0.0), (32
4, 0.04588243562973823), (325, 0.011272933338699345), (326, 0.0), (327, 0.
0), (328, 0.033761014774220784), (329, 0.05105416620180264), (330, 0.0523983
0242647194), (331, 0.04967222692142935), (332, 0.06192334899399138), (333,
0.017499177386926537), (334, 0.031347407861047574), (335, 0.0257306371943886
7), (336, 0.007000145608964259), (337, 0.0037869959958092567), (338, 0.0),
(339, 0.014302690015952177), (340, 0.01617657488243324), (341, 0.00727079060
3084974), (342, 0.03055604849893611), (343, 0.0), (344, 0.00479416377914746
4), (345, 0.03123817830561087), (346, 0.011803541090238324), (347, 0.0116733
92934713473), (348, 0.00747806660819593), (349, 0.007168447070567705), (350,
0.02259738473161379), (351, 0.0), (352, 0.006985810229037041), (353, 0.11168
46512704428), (354, 0.0), (355, 0.006055185866562875), (356, 0.0892696189449
8348), (357, 0.0), (358, 0.025529662687546948), (359, 0.007308987845468155),
(360, 0.01683449695715065), (361, 0.0837387717151648), (362, 0.0278521484054
58053), (363, 0.019539839654889393), (364, 0.0), (365, 0.03013125469118562
2), (366, 0.031598550875319466), (367, 0.0), (368, 0.0064857491913528995),
(369, 0.01080632395113592), (370, 0.03661624072370357), (371, 0.026425181065
34205), (372, 0.017883308653084462), (373, 0.021522162525199937), (374, 0.00
6739086314764463), (375, 0.018130012396663144), (376, 0.0243221465035026),
(377, 0.025873509190502346), (378, 0.0), (379, 0.011352295042567434), (380,
0.024589046144214644), (381, 0.007056593264676717), (382, 0.0596631664099346
45), (383, 0.012527247177783519), (384, 0.020433530510970382), (385, 0.0),
(386, 0.024041680386098937), (387, 0.005749286221183894), (388, 0.0), (389,
0.022870327235892135), (390, 0.0), (391, 0.0), (392, 0.0054757618927209215),
(393, 0.03094965055877973), (394, 0.0058155383720721225), (395, 0.0), (396,
0.07306073690718969), (397, 0.0), (398, 0.0), (399, 0.006590070120469024),
(400, 0.029431908153005375), (401, 0.08177165724855545), (402, 0.03489741649
679879), (403, 0.012456039416646907), (404, 0.0), (405, 0.004494007227079278
5), (406, 0.0), (407, 0.0), (408, 0.00589061176664649), (409, 0.0), (410, 0.
02579223145375466), (411, 0.010312715133202439), (412, 0.05174696993121716),
(413, 0.020629406783290886), (414, 0.028859217357062324), (415, 0.0274670903
82297804), (416, 0.0), (417, 0.0), (418, 0.0), (419, 0.029931783915320555),
(420, 0.05915718018925476), (421, 0.0748823377910105), (422, 0.0196941235651
8406), (423, 0.0), (424, 0.013163221301189666), (425, 0.03920561889476084),
(426, 0.026028274588226968), (427, 0.0), (428, 0.006116274706473999), (429,
0.0), (430, 0.0), (431, 0.0), (432, 0.01866101389510323), (433, 0.0063347507
34592971), (434, 0.0), (435, 0.0), (436, 0.061954058834662235), (437, 0.0064
05396710939224), (438, 0.0), (439, 0.0), (440, 0.03366311131208971), (441,
0.04206174422572767), (442, 0.022179914086365403), (443, 0.01548542307675931
4), (444, 0.0), (445, 0.0), (446, 0.03915937769006765), (447, 0.006321088255
901316), (448, 0.0), (449, 0.02373526027403064), (450, 0.01967416126705322),
(451, 0.03925349815973287), (452, 0.0), (453, 0.006042652303083685), (454,
0.01710682171698591), (455, 0.005633945135807629), (456, 0.02579624379324768
6), (457, 0.05195626044862152), (458, 0.007587316154129055), (459, 0.0309035
99849334107), (460, 0.0694163372244785), (461, 0.02951048649267677), (462,
0.021903590279280554), (463, 0.0), (464, 0.042050879015941144), (465, 0.0),
(466, 0.04488043666368963), (467, 0.01504871569689806), (468, 0.005584711953
06696), (469, 0.012104977121661555), (470, 0.020897147877837252), (471, 0.01
8795598733373126), (472, 0.012895958166044046), (473, 0.019662602516671828),
(474, 0.0), (475, 0.025891586696414486), (476, 0.026431637652770353), (477,
0.0), (478, 0.013223799537330716), (479, 0.016327002367200517), (480, 0.0264
58644319412312), (481, 0.0), (482, 0.0), (483, 0.04522531422740274), (484,
0.006657918041132727), (485, 0.006741475025066299), (486, 0.0127786367403147
19), (487, 0.03086186943552198), (488, 0.013400432257732015), (489, 0.0), (4
90, 0.03229643164515758), (491, 0.011544605486217411), (492, 0.0), (493, 0.0
27963165198260254), (494, 0.0067571706441301406), (495, 0.03340057420781910
5), (496, 0.0), (497, 0.0), (498, 0.0068693758777834376), (499, 0.0), (500,
0.005448294558670802), (501, 0.07756977094853777), (502, 0.01550130043679837
6), (503, 0.03042500912175944), (504, 0.017697089993912177), (505, 0.0249546
0739478174), (506, 0.0), (507, 0.056637380119931136), (508, 0.05803681647993
076), (509, 0.0), (510, 0.025340102577920093), (511, 0.16702973947860686),
(512, 0.006076234207381594), (513, 0.010922135956364029), (514, 0.0056732855
63102637), (515, 0.0), (516, 0.0), (517, 0.0), (518, 0.015173950568481025),
(519, 0.0), (520, 0.0), (521, 0.0), (522, 0.0), (523, 0.013481842788365502),
(524, 0.0), (525, 0.01675604071044685), (526, 0.0), (527, 0.0), (528, 0.0042
91886829258619), (529, 0.005134445849356073), (530, 0.020666682983282343),
(531, 0.012245900904865489), (532, 0.0), (533, 0.0), (534, 0.006581410829534
892), (535, 0.012188769187353628), (536, 0.03863489699067402), (537, 0.00555
59902631470166), (538, 0.0), (539, 0.04473112014524868), (540, 0.01714174010
7311898), (541, 0.02049545347521903), (542, 0.023471710495883466), (543, 0.0
11139413235567257), (544, 0.013132543076088967), (545, 0.04505643420929539),
(546, 0.043886405381754055), (547, 0.005910886853328579), (548, 0.0), (549,
0.017700097138981782), (550, 0.0), (551, 0.007247711225629038), (552, 0.0),
(553, 0.005830008744236804), (554, 0.0), (555, 0.0), (556, 0.004903246459943
18), (557, 0.0), (558, 0.0), (559, 0.0), (560, 0.018133043730531023), (561,
0.00525371333043839), (562, 0.027318992637885058), (563, 0.0), (564, 0.03677
574065458575), (565, 0.008102001493028128), (566, 0.006759441819441758), (56
7, 0.0), (568, 0.012787248066823026), (569, 0.007849859297037302), (570, 0.0
32854594982761554), (571, 0.005308282954252374), (572, 0.00743968990441675
8), (573, 0.00603921472035501), (574, 0.05022277713260228), (575, 0.01999707
350210951), (576, 0.0), (577, 0.030643690717104117), (578, 0.016785069928979
8), (579, 0.004303417568776366), (580, 0.005434952954661658), (581, 0.029641
629074631838), (582, 0.024349931043859872), (583, 0.014507715742964826), (58
4, 0.0), (585, 0.0), (586, 0.005009709817927663), (587, 0.0347820661480750
8), (588, 0.0), (589, 0.005705117402069888), (590, 0.005530793548394926), (5
91, 0.022051159515357528), (592, 0.006634194090410942), (593, 0.027595990958
93918), (594, 0.01340790509381604), (595, 0.011980041161207827), (596, 0.013
69622649951429), (597, 0.0057002854055922345), (598, 0.0), (599, 0.058544889
98786811), (600, 0.03114072547808784), (601, 0.027861070671165514), (602, 0.
01467219956675259), (603, 0.0), (604, 0.01297658193445424), (605, 0.0), (60
6, 0.0), (607, 0.11387063493435637), (608, 0.0), (609, 0.02665691012785295),
(610, 0.011935841985128806), (611, 0.0051710416483227205), (612, 0.022362499
610261904), (613, 0.018001815043817183), (614, 0.0), (615, 0.017252508703783
56), (616, 0.0), (617, 0.00671389393272147), (618, 0.1025469263536857), (61
9, 0.0), (620, 0.0), (621, 0.005183303471355905), (622, 0.00583417568468757
9), (623, 0.0), (624, 0.0050985917687809326), (625, 0.02251164118305293), (6
26, 0.02224931103825451), (627, 0.009951359365983438), (628, 0.0), (629, 0.0
04728428146228916), (630, 0.0), (631, 0.05437912554741705), (632, 0.02093287
1082379404), (633, 0.0), (634, 0.02480640323858553), (635, 0.029847586528307
754), (636, 0.0), (637, 0.0), (638, 0.0), (639, 0.01718597943754243), (640,
0.012733413475698296), (641, 0.07251948597232677), (642, 0.0), (643, 0.01311
4598785422045), (644, 0.020724831425166026), (645, 0.013619800919043629), (6
46, 0.03379593115087771), (647, 0.0), (648, 0.0), (649, 0.0), (650, 0.0), (6
51, 0.0), (652, 0.012375145819213743), (653, 0.005677707701456618), (654, 0.
06893375253927388), (655, 0.006128629546293719), (656, 0.0), (657, 0.0264985
81330749976), (658, 0.024467492386938464), (659, 0.005774265116772308), (66
0, 0.01691019349099876), (661, 0.11719294096248463), (662, 0.0), (663, 0.0),
(664, 0.05177562907244579), (665, 0.025981132097714528), (666, 0.0), (667,
0.0), (668, 0.034831917071847955), (669, 0.014384003389310694), (670, 0.0170
24723274642578), (671, 0.006966125540203556), (672, 0.0), (673, 0.0148668665
34559056), (674, 0.074341814879682), (675, 0.05672203492643424), (676, 0.012
570201785618348), (677, 0.005489346664696526), (678, 0.015141193374001834),
(679, 0.0), (680, 0.05890384845411809), (681, 0.0), (682, 0.0), (683, 0.0119
43419533350687), (684, 0.0), (685, 0.02799170392405026), (686, 0.0), (687,
0.012612509858599156), (688, 0.01286308408873556), (689, 0.0), (690, 0.0),
(691, 0.012156840364272462), (692, 0.0), (693, 0.0), (694, 0.005472530269967
965), (695, 0.011544749656986198), (696, 0.0), (697, 0.0), (698, 0.008184007
385854676), (699, 0.026347088153186756), (700, 0.03540833127189545), (701,
0.023365327288921014), (702, 0.005849885469770789), (703, 0.0121188259326237
21), (704, 0.007602962150409792), (705, 0.06351892473185387), (706, 0.022025
623938146877), (707, 0.007729057362838717), (708, 0.005207177560491049), (70
9, 0.0), (710, 0.0), (711, 0.022513167740859055), (712, 0.0), (713, 0.027282
21925010165), (714, 0.0), (715, 0.015618877638812052), (716, 0.0184389513415
83496), (717, 0.0), (718, 0.020278256007439176), (719, 0.0), (720, 0.1008756
5815879387), (721, 0.006968514152195092), (722, 0.0), (723, 0.01654232159743
177), (724, 0.005624658434928665), (725, 0.07243344882526885), (726, 0.04201
009600845739), (727, 0.0), (728, 0.05328854507498712), (729, 0.0131082849231
55493), (730, 0.006423432021716283), (731, 0.0141935776976348), (732, 0.0370
4033842169193), (733, 0.03323928011845674), (734, 0.01957091594139941), (73
5, 0.03249407809712077), (736, 0.004982376980324958), (737, 0.00570845437577
25545), (738, 0.014654913135586232), (739, 0.005323608200500737), (740, 0.02
6809742292027563), (741, 0.00541362321112867), (742, 0.0), (743, 0.0), (744,
0.012901755936540842), (745, 0.00534394524047526), (746, 0.01155009145830205
8), (747, 0.005815429348567419), (748, 0.008023957046084844), (749, 0.0), (7
50, 0.007332168004791734), (751, 0.0), (752, 0.0398994371919455), (753, 0.00
5817545864023253), (754, 0.023181658266849283), (755, 0.03319983641642123),
(756, 0.016714340588405253), (757, 0.013862378158711018), (758, 0.0), (759,
0.0), (760, 0.014609132013617777), (761, 0.037901302166954254), (762, 0.0059
50617365467033), (763, 0.07475725913043305), (764, 0.013896807370913663), (7
65, 0.0), (766, 0.0), (767, 0.013404994811163109), (768, 0.02567617404181854
5), (769, 0.009972771514582021), (770, 0.018990980820521378), (771, 0.016520
098300259068), (772, 0.0), (773, 0.01494784664733944), (774, 0.0225869880805
1529), (775, 0.02994192428424238), (776, 0.0), (777, 0.025537751668565638),
(778, 0.027733825665927393), (779, 0.0), (780, 0.022082647788890405), (781,
0.013976641315684026), (782, 0.05413722158197985), (783, 0.1216299556204037
7), (784, 0.014239171230389), (785, 0.007668152487911395), (786, 0.014360113
816432051), (787, 0.004813890732603031), (788, 0.1330589507422922), (789, 0.
05671677052280989), (790, 0.005509471276615586), (791, 0.00846358302595244
7), (792, 0.0), (793, 0.020761777869982477), (794, 0.010666729666678632), (7
95, 0.0), (796, 0.0), (797, 0.02520599238601377), (798, 0.0), (799, 0.029841
710386129906), (800, 0.09503280362598002), (801, 0.0), (802, 0.0), (803, 0.
0), (804, 0.005794762348843588), (805, 0.0657886948202446), (806, 0.0), (80
7, 0.005964205313507123), (808, 0.013186633786329536), (809, 0.0112160562843
37483), (810, 0.0), (811, 0.012899148368003637), (812, 0.00740568242256855
7), (813, 0.031856213586461846), (814, 0.0182833148804369), (815, 0.0), (81
6, 0.007864956537943349), (817, 0.0), (818, 0.005955304138090515), (819, 0.
0), (820, 0.0), (821, 0.0055466671110301225), (822, 0.0), (823, 0.0056959865
25552399), (824, 0.0), (825, 0.01212285710584913), (826, 0.0), (827, 0.0),
(828, 0.00594356933691021), (829, 0.0), (830, 0.0050469324423224465), (831,
0.011189208873036132), (832, 0.009510389110638675), (833, 0.0510875518178510
2), (834, 0.013542195384591523), (835, 0.0), (836, 0.012013478339956519), (8
37, 0.0), (838, 0.02714525724085642), (839, 0.0), (840, 0.0686973883642302),
(841, 0.008110773965562652), (842, 0.008579526252826037), (843, 0.0), (844,
0.005681781411921748), (845, 0.05051888852390088), (846, 0.0), (847, 0.0),
(848, 0.008125457201045575), (849, 0.0), (850, 0.025281720420590577), (851,
0.01080080345536633), (852, 0.0), (853, 0.0), (854, 0.022985123576253916),
(855, 0.03378697436406514), (856, 0.017509976027333646), (857, 0.0), (858,
0.00791244537827933), (859, 0.011516857999652522), (860, 0.0), (861, 0.0),
(862, 0.016330945599710902), (863, 0.005935686222933201), (864, 0.0361091984
2686516), (865, 0.0), (866, 0.006430806031876921), (867, 0.0), (868, 0.0),
(869, 0.0), (870, 0.09574351274416697), (871, 0.0), (872, 0.0), (873, 0.0497
3721665258645), (874, 0.00691070424128861), (875, 0.0), (876, 0.0), (877, 0.
0), (878, 0.029916995295350024), (879, 0.0), (880, 0.017823930922964717), (8
81, 0.0), (882, 0.08853815053442779), (883, 0.0), (884, 0.0), (885, 0.071277
13298596235), (886, 0.0), (887, 0.0), (888, 0.012878509897401861), (889, 0.0
3786402108262418), (890, 0.0), (891, 0.0), (892, 0.013239017469059035), (89
3, 0.005367943615150826), (894, 0.005067770618611982), (895, 0.0147042609180
41844), (896, 0.0), (897, 0.0), (898, 0.02143172754595199), (899, 0.00779084
5567337891), (900, 0.021561086103725723), (901, 0.006437488983856181), (902,
0.02095095434446304), (903, 0.0), (904, 0.021809702100360512), (905, 0.0),
(906, 0.0), (907, 0.0), (908, 0.021712919094558747), (909, 0.0), (910, 0.0),
(911, 0.04751544760285254), (912, 0.0), (913, 0.0), (914, 0.0050994272109430
33), (915, 0.0), (916, 0.0), (917, 0.0), (918, 0.0), (919, 0.006094178240441
095), (920, 0.0311792452957307), (921, 0.0), (922, 0.03271895346827846), (92
3, 0.0), (924, 0.0), (925, 0.0), (926, 0.0), (927, 0.0), (928, 0.0), (929,
0.04170744779575931), (930, 0.005202293188738005), (931, 0.0284567625757514
5), (932, 0.004170932018430365), (933, 0.013082655484141375), (934, 0.006335
966231410641), (935, 0.00771296774034122), (936, 0.0), (937, 0.0052387072471
14239), (938, 0.0), (939, 0.0274286269728791), (940, 0.0875800937999186), (9
41, 0.004986872337716621), (942, 0.007872311595830392), (943, 0.0), (944, 0.
0), (945, 0.08346370644008311), (946, 0.0), (947, 0.0), (948, 0.025452397952
08989), (949, 0.022228977010921528), (950, 0.011668214950350168), (951, 0.00
5581683539618901), (952, 0.006249052683161279), (953, 0.044641883333497764),
(954, 0.0986387254713941), (955, 0.005217551867953665), (956, 0.049375426984
40879), (957, 0.0), (958, 0.0), (959, 0.0049588174673148265), (960, 0.082273
94174342709), (961, 0.006650011466193838), (962, 0.0), (963, 0.0051071522140
46513), (964, 0.0), (965, 0.02857826964363057), (966, 0.0), (967, 0.02749066
096114915), (968, 0.0), (969, 0.012282682736021022), (970, 0.0), (971, 0.0),
(972, 0.03408568528429526), (973, 0.0050857303713312246), (974, 0.0217333291
75255178), (975, 0.0), (976, 0.03552989221799278), (977, 0.04554913802008736
5), (978, 0.007395600581911993), (979, 0.0058113885465888235), (980, 0.0),
(981, 0.005792146668768498), (982, 0.005772596594420832), (983, 0.0), (984,
0.014517895617346838), (985, 0.015050744845155263), (986, 0.0), (987, 0.0),
(988, 0.018142110370525988), (989, 0.012085579929807806), (990, 0.0218138551
54124904), (991, 0.0), (992, 0.00551625688349404), (993, 0.0059159227970620
4), (994, 0.021161324009381345), (995, 0.0), (996, 0.021779072193357778), (9
97, 0.0), (998, 0.0), (999, 0.015235598070902703), (1000, 0.0055651026181351
36), (1001, 0.030016226048788373), (1002, 0.027340070707485536), (1003, 0.00
48539039726680005), (1004, 0.0), (1005, 0.031957317910297905), (1006, 0.0117
85434713595323), (1007, 0.0), (1008, 0.018500564616775038), (1009, 0.0), (10
10, 0.0), (1011, 0.0), (1012, 0.014138563809151643), (1013, 0.0), (1014, 0.0
2745267461909283), (1015, 0.08302788897735795), (1016, 0.04944875376701028),
(1017, 0.0), (1018, 0.004088433136853023), (1019, 0.0), (1020, 0.00629434707
6553977), (1021, 0.0), (1022, 0.0), (1023, 0.0), (1024, 0.0472220435351058
6), (1025, 0.0), (1026, 0.0), (1027, 0.012722478570891975), (1028, 0.0236586
2598334277), (1029, 0.07915366166146186), (1030, 0.0), (1031, 0.0), (1032,
0.0), (1033, 0.0), (1034, 0.030908255130846083), (1035, 0.00589504088598962
4), (1036, 0.0), (1037, 0.0), (1038, 0.0), (1039, 0.041301243392605526), (10
40, 0.0), (1041, 0.055843043459134975), (1042, 0.0), (1043, 0.00560711312409
3331), (1044, 0.029653705933640744), (1045, 0.0), (1046, 0.0), (1047, 0.0),
(1048, 0.0), (1049, 0.005335645775228684), (1050, 0.01307926314212288), (105
1, 0.0), (1052, 0.035061644119600666), (1053, 0.020705095247552378), (1054,
0.0), (1055, 0.03982043367815015), (1056, 0.005080233210203444), (1057, 0.01
2855956871744378), (1058, 0.026617409919706597), (1059, 0.02852735013764125
6), (1060, 0.0), (1061, 0.0), (1062, 0.006979028398232135), (1063, 0.0), (10
64, 0.004588290042733946), (1065, 0.0), (1066, 0.0), (1067, 0.01090728346766
8423), (1068, 0.02821344360811235), (1069, 0.0), (1070, 0.02652265234982442
4), (1071, 0.0), (1072, 0.007249617849525395), (1073, 0.013597686053891181),
(1074, 0.007618934105444065), (1075, 0.0), (1076, 0.013654683350876513), (10
77, 0.010534505142778787), (1078, 0.0074643007239527165), (1079, 0.029718753
055255943), (1080, 0.0075475335329625946), (1081, 0.0), (1082, 0.01115609711
8545118), (1083, 0.034433275222228145), (1084, 0.012922607622949254), (1085,
0.016798103775920788), (1086, 0.048063712599667144), (1087, 0.0), (1088, 0.
0), (1089, 0.01335805533130048), (1090, 0.012877926516809997), (1091, 0.0),
(1092, 0.023275805594777307), (1093, 0.031395152435308965), (1094, 0.0), (10
95, 0.0049375569105280384), (1096, 0.005324902404365661), (1097, 0.036306132
637175935), (1098, 0.0), (1099, 0.008457725159744299), (1100, 0.012441452572
186897), (1101, 0.005280917879393894), (1102, 0.0), (1103, 0.012422451740862
23), (1104, 0.005195418580265066), (1105, 0.012739300436461298), (1106, 0.01
2080921644303761), (1107, 0.0), (1108, 0.0), (1109, 0.004807243540443358),
(1110, 0.024653223934454214), (1111, 0.01655655719789069), (1112, 0.0), (111
3, 0.0), (1114, 0.00651971794510208), (1115, 0.0), (1116, 0.0), (1117, 0.0),
(1118, 0.005949193816419583), (1119, 0.032793628877686325), (1120, 0.0), (11
21, 0.0), (1122, 0.0), (1123, 0.0), (1124, 0.011943205514411461), (1125, 0.
0), (1126, 0.0), (1127, 0.0), (1128, 0.06295832431616688), (1129, 0.0), (113
0, 0.0), (1131, 0.025272195479197703), (1132, 0.0), (1133, 0.020211190920948
845), (1134, 0.007108485505703364), (1135, 0.08292193518209054), (1136, 0.01
1387914031308875), (1137, 0.005401620667240925), (1138, 0.00483688327381806
4), (1139, 0.01313641124787753), (1140, 0.004857238121907869), (1141, 0.0),
(1142, 0.005992932796703112), (1143, 0.013803174927986706), (1144, 0.0059600
68439079913), (1145, 0.0), (1146, 0.005243961442988001), (1147, 0.0), (1148,
0.0), (1149, 0.0), (1150, 0.0), (1151, 0.0), (1152, 0.05371817026868509), (1
153, 0.018774388742580344), (1154, 0.0), (1155, 0.041199423933513335), (115
6, 0.0), (1157, 0.016475236905413367), (1158, 0.0056475476341244085), (1159,
0.02057089659207338), (1160, 0.0), (1161, 0.0), (1162, 0.0), (1163, 0.0), (1
164, 0.0), (1165, 0.06457903857333991), (1166, 0.0), (1167, 0.0), (1168, 0.
0), (1169, 0.0), (1170, 0.0817445108969871), (1171, 0.02510358452584749), (1
172, 0.013717187817121498), (1173, 0.014430008633485725), (1174, 0.005036209
251344408), (1175, 0.012286664199222197), (1176, 0.0), (1177, 0.039057800642
1526), (1178, 0.00602271012983421), (1179, 0.0), (1180, 0.0710322795766753
2), (1181, 0.0), (1182, 0.0), (1183, 0.007010850716695228), (1184, 0.0208561
84056721287), (1185, 0.0), (1186, 0.0), (1187, 0.0), (1188, 0.00539505113044
9769), (1189, 0.0), (1190, 0.0), (1191, 0.029568887415213733), (1192, 0.0933
0019170580414), (1193, 0.018077093325534293), (1194, 0.0), (1195, 0.00552954
1964281229), (1196, 0.0), (1197, 0.0), (1198, 0.02619867671846427), (1199,
0.01139636109074424), (1200, 0.056625398955546954), (1201, 0.030143751383913
51), (1202, 0.008737512120375768), (1203, 0.0), (1204, 0.0), (1205, 0.0), (1
206, 0.0), (1207, 0.0), (1208, 0.0), (1209, 0.03280276084791804), (1210, 0.0
9911415072466837), (1211, 0.0), (1212, 0.006105145904841131), (1213, 0.05548
684862313957), (1214, 0.006329058749500924), (1215, 0.0), (1216, 0.0), (121
7, 0.023913846652035074), (1218, 0.0), (1219, 0.0), (1220, 0.0), (1221, 0.
0), (1222, 0.01717139727155076), (1223, 0.0), (1224, 0.0), (1225, 0.0), (122
6, 0.0), (1227, 0.0), (1228, 0.0), (1229, 0.0), (1230, 0.06947167248339838),
(1231, 0.0), (1232, 0.022558963997652212), (1233, 0.05663349067122292), (123
4, 0.013003897536461386), (1235, 0.0), (1236, 0.0), (1237, 0.028447497483465
273), (1238, 0.01974458436430513), (1239, 0.013189763893792165), (1240, 0.
0), (1241, 0.0), (1242, 0.0), (1243, 0.011820440610179065), (1244, 0.0193570
45100801523), (1245, 0.006038212832583458), (1246, 0.0), (1247, 0.0352769735
7435624), (1248, 0.008899330041879403), (1249, 0.04334264361033357), (1250,
0.03155682280457022), (1251, 0.010717713749831955), (1252, 0.0), (1253, 0.00
7516015376019976), (1254, 0.005904009070754855), (1255, 0.0), (1256, 0.01445
4972242441445), (1257, 0.00792472201276347), (1258, 0.0), (1259, 0.032226589
05024299), (1260, 0.0), (1261, 0.0), (1262, 0.0), (1263, 0.00705353398453178
5), (1264, 0.0), (1265, 0.0), (1266, 0.01275602477495706), (1267, 0.00785790
4220311733), (1268, 0.0), (1269, 0.02476099039368731), (1270, 0.022527303200
480818), (1271, 0.02390860407523602), (1272, 0.04393079202558518), (1273, 0.
01425279504148905), (1274, 0.08214849871621649), (1275, 0.01931339890914367
6), (1276, 0.0), (1277, 0.06338230186101917), (1278, 0.006525045591946184),
(1279, 0.013030645196896791), (1280, 0.0), (1281, 0.005058166457549107), (12
82, 0.0889047488292469), (1283, 0.016563457116321345), (1284, 0.005913703149
513752), (1285, 0.028841581905573885), (1286, 0.020574730119770592), (1287,
0.007319202977782694), (1288, 0.04006766232762396), (1289, 0.006205978974204
933), (1290, 0.011863758056264809), (1291, 0.04783904148143617), (1292, 0.
0), (1293, 0.0), (1294, 0.0324382376683082), (1295, 0.0), (1296, 0.026493917
46378832), (1297, 0.034369083646536874), (1298, 0.010871113330036292), (129
9, 0.02065654978156559), (1300, 0.013030962848333537), (1301, 0.0), (1302,
0.027063908341794417), (1303, 0.03158972031654986), (1304, 0.003963023316569
858), (1305, 0.012875995375989999), (1306, 0.008847662686316374), (1307, 0.
0), (1308, 0.0), (1309, 0.0), (1310, 0.005063917544870188), (1311, 0.0681016
8580871279), (1312, 0.0), (1313, 0.0), (1314, 0.0), (1315, 0.0), (1316, 0.
0), (1317, 0.06892000340269082), (1318, 0.019262095768412667), (1319, 0.0253
2139205015988), (1320, 0.01379155395315599), (1321, 0.005973240075966577),
(1322, 0.015278295978966175), (1323, 0.0), (1324, 0.03658185418243703), (132
5, 0.0), (1326, 0.025858551980448088), (1327, 0.0), (1328, 0.020950857918626
4), (1329, 0.0), (1330, 0.0), (1331, 0.015119104785959929), (1332, 0.0291262
0492023835), (1333, 0.0), (1334, 0.005503749574405398), (1335, 0.02422860978
0485983), (1336, 0.021723390551438376), (1337, 0.020282517424811394), (1338,
0.011869656901866964), (1339, 0.005750762506830963), (1340, 0.0), (1341, 0.0
1595398152825107), (1342, 0.006170404720583299), (1343, 0.01204173992697967
6), (1344, 0.02672534925812007), (1345, 0.022117612683167358), (1346, 0.0),
(1347, 0.005422723661047834), (1348, 0.0), (1349, 0.0), (1350, 0.0), (1351,
0.0), (1352, 0.019431744116054958), (1353, 0.0), (1354, 0.0243814042385587
4), (1355, 0.0), (1356, 0.0), (1357, 0.006814395981058139), (1358, 0.0474208
4816160476), (1359, 0.005130123069684274), (1360, 0.0), (1361, 0.01198864958
7914013), (1362, 0.0), (1363, 0.024536483411437205), (1364, 0.0), (1365, 0.0
657679891795958), (1366, 0.0), (1367, 0.04643038610999382), (1368, 0.0940322
1247985363), (1369, 0.01256243318756069), (1370, 0.024926450493213924), (137
1, 0.0), (1372, 0.0), (1373, 0.0), (1374, 0.0), (1375, 0.00755756955318531
5), (1376, 0.0), (1377, 0.027130064644328697), (1378, 0.0), (1379, 0.0187294
4832674328), (1380, 0.013226204519961534), (1381, 0.0), (1382, 0.00869082297
4721799), (1383, 0.02330500384869047), (1384, 0.0), (1385, 0.0), (1386, 0.
0), (1387, 0.02394834213193736), (1388, 0.0), (1389, 0.0), (1390, 0.03499008
772364489), (1391, 0.0), (1392, 0.04304915755416113), (1393, 0.0), (1394, 0.
0), (1395, 0.025992719404850925), (1396, 0.03943455269309808), (1397, 0.0),
(1398, 0.04526541093332748), (1399, 0.02686975249233259), (1400, 0.0), (140
1, 0.0), (1402, 0.007670438772180439), (1403, 0.0), (1404, 0.010283551478442
158), (1405, 0.0), (1406, 0.09571953277826747), (1407, 0.0), (1408, 0.0), (1
409, 0.0), (1410, 0.0), (1411, 0.0), (1412, 0.02034829006242872), (1413, 0.
0), (1414, 0.0), (1415, 0.018313719303210237), (1416, 0.0), (1417, 0.0064352
25050968506), (1418, 0.0), (1419, 0.018710362522053083), (1420, 0.0), (1421,
0.0), (1422, 0.02074460601888696), (1423, 0.0), (1424, 0.0), (1425, 0.024484
077734441154), (1426, 0.007560292725402896), (1427, 0.0), (1428, 0.080511970
77783612), (1429, 0.0), (1430, 0.0), (1431, 0.005290999790389548), (1432, 0.
005774412944962496), (1433, 0.006582561974004332), (1434, 0.0284644807075092
15), (1435, 0.0), (1436, 0.0166723035917583), (1437, 0.005053950511367084),
(1438, 0.011874249584187101), (1439, 0.03927952821190197), (1440, 0.03001938
0465094406), (1441, 0.0), (1442, 0.0), (1443, 0.0054331115028092725), (1444,
0.0), (1445, 0.035839217386984104), (1446, 0.038552254099542015), (1447, 0.0
12431599238228834), (1448, 0.006072307704699463), (1449, 0.0), (1450, 0.0052
31525840611278), (1451, 0.107849394974707), (1452, 0.020566317433587958), (1
453, 0.005063453058869155), (1454, 0.0), (1455, 0.0), (1456, 0.0355564114552
4713), (1457, 0.005517704626873745), (1458, 0.0), (1459, 0.0735333561039450
4), (1460, 0.007554656991452476), (1461, 0.0), (1462, 0.0), (1463, 0.0050364
491365704435), (1464, 0.0), (1465, 0.024585709272375324), (1466, 0.0), (146
7, 0.015702759596255778), (1468, 0.02749618965728028), (1469, 0.036090277231
484724), (1470, 0.005658516890585647), (1471, 0.0), (1472, 0.019263391421244
263), (1473, 0.01913756092915118), (1474, 0.016521528345021547), (1475, 0.
0), (1476, 0.0), (1477, 0.0), (1478, 0.0), (1479, 0.006447659193264534), (14
80, 0.04124738557188612), (1481, 0.013689253844983686), (1482, 0.06096851525
832482), (1483, 0.0), (1484, 0.05400342888209682), (1485, 0.0), (1486, 0.005
660120267129043), (1487, 0.0), (1488, 0.021290678440642738), (1489, 0.0), (1
490, 0.03399400789018407), (1491, 0.02436866924558531), (1492, 0.0), (1493,
0.0), (1494, 0.0644220263449984), (1495, 0.052089758991002884), (1496, 0.027
390066138247276), (1497, 0.0), (1498, 0.0), (1499, 0.0), (1500, 0.0055795520
78947937), (1501, 0.0), (1502, 0.05758271625402656), (1503, 0.00703188267379
4788), (1504, 0.013035477238482477), (1505, 0.006153049999790475), (1506, 0.
021701574138646183), (1507, 0.028259784172817617), (1508, 0.0), (1509, 0.008
246598293540528), (1510, 0.005718443532433642), (1511, 0.0), (1512, 0.0), (1
513, 0.0050912617332261444), (1514, 0.005804135262789303), (1515, 0.00582489
750458155), (1516, 0.0), (1517, 0.020593151548993376), (1518, 0.029977193753
579982), (1519, 0.0), (1520, 0.0), (1521, 0.0), (1522, 0.0), (1523, 0.0), (1
524, 0.009087485392233734), (1525, 0.01362930860646913), (1526, 0.0), (1527,
0.0), (1528, 0.006454491935348495), (1529, 0.013409941461347056), (1530, 0.0
15246814587794973), (1531, 0.027050309264943777), (1532, 0.0), (1533, 0.0),
(1534, 0.019909301651085926), (1535, 0.021748716494552726), (1536, 0.0), (15
37, 0.0), (1538, 0.005019761440535846), (1539, 0.020310496347051548), (1540,
0.0), (1541, 0.0), (1542, 0.0360115773438487), (1543, 0.0), (1544, 0.0), (15
45, 0.0), (1546, 0.014262141094443983), (1547, 0.021506284480489808), (1548,
0.0), (1549, 0.0), (1550, 0.007030839810276658), (1551, 0.01115022653420669
7), (1552, 0.0), (1553, 0.1079782217151326), (1554, 0.018108284361404825),
(1555, 0.0), (1556, 0.0), (1557, 0.0), (1558, 0.010318265881974495), (1559,
0.0), (1560, 0.0), (1561, 0.0), (1562, 0.00716844832024321), (1563, 0.0), (1
564, 0.007022688843134073), (1565, 0.0), (1566, 0.0), (1567, 0.0), (1568, 0.
023851745452238712), (1569, 0.027012538173616877), (1570, 0.0), (1571, 0.0),
(1572, 0.0), (1573, 0.08334194351908195), (1574, 0.0), (1575, 0.018978404576
52772), (1576, 0.0), (1577, 0.019035092373603207), (1578, 0.0), (1579, 0.0),
(1580, 0.008701546354063321), (1581, 0.0), (1582, 0.0), (1583, 0.03331077017
67908), (1584, 0.0), (1585, 0.0), (1586, 0.013529896288410368), (1587, 0.007
464891697896235), (1588, 0.01996005686697271), (1589, 0.020628241313639703),
(1590, 0.0), (1591, 0.0), (1592, 0.005405609117967553), (1593, 0.0), (1594,
0.0), (1595, 0.02135969170540642), (1596, 0.02741158126652205), (1597, 0.007
051503644778929), (1598, 0.0), (1599, 0.0), (1600, 0.01661021958168665), (16
01, 0.024065404165095446), (1602, 0.007875853945412707), (1603, 0.0), (1604,
0.044867955476829424), (1605, 0.0), (1606, 0.016391741807631338), (1607, 0.0
1755984646820972), (1608, 0.02131329033729676), (1609, 0.0), (1610, 0.013176
293780090338), (1611, 0.019622366909585486), (1612, 0.0), (1613, 0.0), (161
4, 0.0), (1615, 0.013107468755133935), (1616, 0.0051330412797200835), (1617,
0.03311547315459433), (1618, 0.0), (1619, 0.0), (1620, 0.0), (1621, 0.0), (1
622, 0.0), (1623, 0.0), (1624, 0.0), (1625, 0.023937302516701675), (1626, 0.
004879193344481684), (1627, 0.0), (1628, 0.013784197478486403), (1629, 0.0),
(1630, 0.0), (1631, 0.0), (1632, 0.0), (1633, 0.02634027975168779), (1634,
0.0), (1635, 0.0053331880986513605), (1636, 0.03850318986266549), (1637, 0.0
1564091776969275), (1638, 0.0), (1639, 0.019802775023042753), (1640, 0.0),
(1641, 0.0471160608527426), (1642, 0.02552062692475771), (1643, 0.0173087787
5271189), (1644, 0.02287773365608024), (1645, 0.012348180725565816), (1646,
0.017921173310048968), (1647, 0.0), (1648, 0.0), (1649, 0.0387924642301552
6), (1650, 0.047112731875006614), (1651, 0.0726634034884808), (1652, 0.06815
466463320763), (1653, 0.005274318313206838), (1654, 0.06821605798764344), (1
655, 0.0), (1656, 0.0), (1657, 0.012258613500649003), (1658, 0.0089749370228
77296), (1659, 0.0), (1660, 0.0), (1661, 0.005454884077201759), (1662, 0.0),
(1663, 0.010555415988094953), (1664, 0.06658410307179888), (1665, 0.0), (166
6, 0.0), (1667, 0.016964554874593696), (1668, 0.0), (1669, 0.005297436479512
104), (1670, 0.06235654345547298), (1671, 0.005316509074205562), (1672, 0.01
1704200906199608), (1673, 0.0), (1674, 0.0), (1675, 0.006532198322154744),
(1676, 0.0), (1677, 0.0), (1678, 0.0), (1679, 0.0), (1680, 0.005984109511210
041), (1681, 0.0), (1682, 0.007728102266310902), (1683, 0.02354997592602933
7), (1684, 0.013296552532482568), (1685, 0.0), (1686, 0.011647968431980925),
(1687, 0.025515618963641296), (1688, 0.0), (1689, 0.0), (1690, 0.0), (1691,
0.0), (1692, 0.0), (1693, 0.0), (1694, 0.0), (1695, 0.008146998871191276),
(1696, 0.04253023771707183), (1697, 0.018501032694875755), (1698, 0.0), (169
9, 0.005869460131483867), (1700, 0.0), (1701, 0.02445986884580993), (1702,
0.0054966982869084175), (1703, 0.05157853453841927), (1704, 0.0), (1705, 0.
0), (1706, 0.0), (1707, 0.005124391921143448), (1708, 0.0), (1709, 0.0201863
74452490975), (1710, 0.07824700133865668), (1711, 0.0), (1712, 0.03767059682
227396), (1713, 0.012954217761834537), (1714, 0.0), (1715, 0.050204220718063
7), (1716, 0.0), (1717, 0.0), (1718, 0.0), (1719, 0.0), (1720, 0.06715795913
25169), (1721, 0.017471332636609573), (1722, 0.0), (1723, 0.0), (1724, 0.0),
(1725, 0.01822574064319817), (1726, 0.005964404854952128), (1727, 0.00638050
5681514279), (1728, 0.012369517233498115), (1729, 0.0), (1730, 0.0), (1731,
0.0), (1732, 0.0), (1733, 0.0062447882398140924), (1734, 0.01871735284199219
8), (1735, 0.02097961026417998), (1736, 0.0), (1737, 0.0), (1738, 0.01165334
4620426722), (1739, 0.012875630142121924), (1740, 0.13624382641690763), (174
1, 0.005768228248295889), (1742, 0.01841895400817804), (1743, 0.011962005828
276463), (1744, 0.0), (1745, 0.0), (1746, 0.0), (1747, 0.00562842662915652
7), (1748, 0.0), (1749, 0.0), (1750, 0.029593601918204107), (1751, 0.0), (17
52, 0.0), (1753, 0.060099018932560005), (1754, 0.007242854732727878), (1755,
0.0), (1756, 0.0), (1757, 0.025828493366640944), (1758, 0.0), (1759, 0.0),
(1760, 0.0), (1761, 0.00614091955629013), (1762, 0.021618537796032355), (176
3, 0.0), (1764, 0.01470381557359812), (1765, 0.020441821036073102), (1766,
0.0), (1767, 0.0), (1768, 0.0), (1769, 0.022184278792179653), (1770, 0.0),
(1771, 0.017021843566216152), (1772, 0.01728274972816541), (1773, 0.01722170
3040707293), (1774, 0.014926960132599636), (1775, 0.0), (1776, 0.0), (1777,
0.014393993184899992), (1778, 0.0), (1779, 0.0), (1780, 0.0769610566096618),
(1781, 0.0), (1782, 0.032813187830791964), (1783, 0.005640209327265407), (17
84, 0.0), (1785, 0.012955523316723809), (1786, 0.01987191211374097), (1787,
0.0), (1788, 0.0), (1789, 0.0), (1790, 0.03053934771755873), (1791, 0.0), (1
792, 0.005713500930064905), (1793, 0.0), (1794, 0.034802596297112), (1795,
0.004721030548800252), (1796, 0.0), (1797, 0.007454240464658755), (1798, 0.0
1253458859739587), (1799, 0.0), (1800, 0.0), (1801, 0.0), (1802, 0.035389706
9101529), (1803, 0.0), (1804, 0.0), (1805, 0.0), (1806, 0.0), (1807, 0.01876
6459529704873), (1808, 0.017060448088589333), (1809, 0.0), (1810, 0.0), (181
1, 0.0), (1812, 0.0), (1813, 0.0), (1814, 0.0), (1815, 0.02195409445648643),
(1816, 0.0), (1817, 0.00427206381282814), (1818, 0.0), (1819, 0.026439619891
902282), (1820, 0.0), (1821, 0.07385452150655154), (1822, 0.0069126501090431
74), (1823, 0.013540675674544375), (1824, 0.0), (1825, 0.01249756400951909
7), (1826, 0.026692346496334902), (1827, 0.02872107780962734), (1828, 0.0121
99470862133029), (1829, 0.0), (1830, 0.005099804558294307), (1831, 0.0), (18
32, 0.0), (1833, 0.0), (1834, 0.0), (1835, 0.0), (1836, 0.01298476682753920
2), (1837, 0.004409442760183494), (1838, 0.0), (1839, 0.0), (1840, 0.0), (18
41, 0.018443101482480066), (1842, 0.0), (1843, 0.0), (1844, 0.00603406475982
5661), (1845, 0.012772111456610882), (1846, 0.016391554151943027), (1847, 0.
013911003192497502), (1848, 0.0051539919526277225), (1849, 0.0), (1850, 0.02
019668238473677), (1851, 0.012836562298447159), (1852, 0.02681582366354611
3), (1853, 0.005542641928578167), (1854, 0.012404344612562526), (1855, 0.0),
(1856, 0.00626963388547863), (1857, 0.0), (1858, 0.011941565413102456), (185
9, 0.0), (1860, 0.006269399978420817), (1861, 0.0), (1862, 0.0), (1863, 0.02
245478579011143), (1864, 0.08057474704343517), (1865, 0.039865052319853614),
(1866, 0.0), (1867, 0.0), (1868, 0.0058344872553096035), (1869, 0.0), (1870,
0.0), (1871, 0.0), (1872, 0.03413011795951668), (1873, 0.0), (1874, 0.059162
37967591406), (1875, 0.0), (1876, 0.0), (1877, 0.010366414399380085), (1878,
0.006194182734848451), (1879, 0.0), (1880, 0.02824993681145711), (1881, 0.
0), (1882, 0.006710454228447318), (1883, 0.0), (1884, 0.0), (1885, 0.0), (18
86, 0.0), (1887, 0.0), (1888, 0.0), (1889, 0.0), (1890, 0.0), (1891, 0.0),
(1892, 0.011485253651795512), (1893, 0.0), (1894, 0.006117519882114254), (18
95, 0.0), (1896, 0.023093708431124918), (1897, 0.006451356889398186), (1898,
0.0), (1899, 0.043068143125090795), (1900, 0.0), (1901, 0.0), (1902, 0.02035
9422403590646), (1903, 0.0), (1904, 0.0), (1905, 0.0), (1906, 0.0), (1907,
0.011665913514686727), (1908, 0.00524992288525664), (1909, 0.0), (1910, 0.00
57038111473882505), (1911, 0.0), (1912, 0.013431071379762193), (1913, 0.0),
(1914, 0.018751153182670666), (1915, 0.012763438997647644), (1916, 0.0576629
4608434259), (1917, 0.0), (1918, 0.02227038421739877), (1919, 0.016408484440
49817), (1920, 0.006231273090421751), (1921, 0.0), (1922, 0.0279755557398741
7), (1923, 0.0), (1924, 0.0), (1925, 0.029886006029653935), (1926, 0.0), (19
27, 0.0), (1928, 0.0), (1929, 0.0), (1930, 0.005172119583746531), (1931, 0.0
21503955412939386), (1932, 0.04398373508251108), (1933, 0.00638565253936335
5), (1934, 0.0), (1935, 0.0), (1936, 0.021518862758077403), (1937, 0.0072542
13964022755), (1938, 0.020152233860309458), (1939, 0.012827016207306582), (1
940, 0.0), (1941, 0.0), (1942, 0.0), (1943, 0.012127214318469933), (1944, 0.
0), (1945, 0.0), (1946, 0.0), (1947, 0.0), (1948, 0.0), (1949, 0.0), (1950,
0.005216786214941723), (1951, 0.0), (1952, 0.0), (1953, 0.0140312340069386
2), (1954, 0.006062768638472911), (1955, 0.0048877634181779366), (1956, 0.08
773417509413474), (1957, 0.0), (1958, 0.008167532211042038), (1959, 0.022436
227471916086), (1960, 0.0), (1961, 0.0), (1962, 0.0078004387697976595), (196
3, 0.0), (1964, 0.0), (1965, 0.0), (1966, 0.0), (1967, 0.04448386784127756),
(1968, 0.021686076724641783), (1969, 0.014406790674893854), (1970, 0.0), (19
71, 0.06573440942354027), (1972, 0.07116910089698233), (1973, 0.012447318759
098887), (1974, 0.020870825380259094), (1975, 0.013128723182161073), (1976,
0.020144338578496138), (1977, 0.005721663925133031), (1978, 0.05263105719648
286), (1979, 0.0), (1980, 0.0), (1981, 0.0), (1982, 0.0), (1983, 0.0), (198
4, 0.03236632264729962), (1985, 0.01422687229399918), (1986, 0.0314891083440
1048), (1987, 0.006521554789017134), (1988, 0.0), (1989, 0.0), (1990, 0.0416
9093081182787), (1991, 0.005801166615550376), (1992, 0.012313745846208484),
(1993, 0.0), (1994, 0.0), (1995, 0.021615511089431348), (1996, 0.0), (1997,
0.018701722282557162), (1998, 0.0), (1999, 0.024052897950476146), (2000, 0.
0), (2001, 0.008170651887040982), (2002, 0.02370758142978858), (2003, 0.0073
22388978831414), (2004, 0.010451078909085535), (2005, 0.0), (2006, 0.0), (20
07, 0.034133600903084024), (2008, 0.0), (2009, 0.0), (2010, 0.02953136433716
1043), (2011, 0.0), (2012, 0.0), (2013, 0.01847003998699561), (2014, 0.0),
(2015, 0.018574570193901407), (2016, 0.004181237325304903), (2017, 0.0), (20
18, 0.0), (2019, 0.0), (2020, 0.0), (2021, 0.0), (2022, 0.0), (2023, 0.00497
7199004848884), (2024, 0.02622336779606184), (2025, 0.0), (2026, 0.022443090
37346352), (2027, 0.0), (2028, 0.03783022143871327), (2029, 0.00637873600581
4319), (2030, 0.0), (2031, 0.0), (2032, 0.0), (2033, 0.0), (2034, 0.02344564
5577195213), (2035, 0.0), (2036, 0.015084994907505953), (2037, 0.01462909085
3618187), (2038, 0.0), (2039, 0.04915928626881007), (2040, 0.0), (2041, 0.
0), (2042, 0.013780399364880208), (2043, 0.03694798653833962), (2044, 0.0718
3019602913242), (2045, 0.0), (2046, 0.04660009777128106), (2047, 0.029078011
243339873), (2048, 0.0), (2049, 0.013015985010557885), (2050, 0.005364331838
613319), (2051, 0.0), (2052, 0.0), (2053, 0.0), (2054, 0.005255356133325948
5), (2055, 0.006792550924322605), (2056, 0.0), (2057, 0.010795743732489644),
(2058, 0.012795099601639824), (2059, 0.0), (2060, 0.03645484115490725), (206
1, 0.0), (2062, 0.0), (2063, 0.08009626814324249), (2064, 0.0061686549277688
435), (2065, 0.0), (2066, 0.08204329549497309), (2067, 0.0), (2068, 0.0), (2
069, 0.012304182051643422), (2070, 0.0), (2071, 0.014703965996796154), (207
2, 0.0), (2073, 0.0), (2074, 0.005284728749070173), (2075, 0.029229118001024
84), (2076, 0.019796892397649528), (2077, 0.02563850002873429), (2078, 0.0),
(2079, 0.0), (2080, 0.0), (2081, 0.0), (2082, 0.0), (2083, 0.0), (2084, 0.02
4822788697494307), (2085, 0.011913461732564194), (2086, 0.00711241104555660
4), (2087, 0.019478474805503566), (2088, 0.0), (2089, 0.057211048289395244),
(2090, 0.0), (2091, 0.0), (2092, 0.0), (2093, 0.03130891382964081), (2094,
0.0), (2095, 0.005898457067429846), (2096, 0.0), (2097, 0.0062571358536045),
(2098, 0.0), (2099, 0.0), (2100, 0.00549343189928707), (2101, 0.033608063400
5571), (2102, 0.012729099440929079), (2103, 0.026627522363514726), (2104, 0.
0), (2105, 0.0), (2106, 0.0), (2107, 0.04194746387969491), (2108, 0.0), (210
9, 0.0), (2110, 0.017587023415525573), (2111, 0.03267950846010693), (2112,
0.024510092334039803), (2113, 0.0), (2114, 0.03523854398723343), (2115, 0.
0), (2116, 0.007395040242382558), (2117, 0.0), (2118, 0.0), (2119, 0.0), (21
20, 0.0), (2121, 0.007412394514375863), (2122, 0.014632306662623891), (2123,
0.0), (2124, 0.0), (2125, 0.0), (2126, 0.0), (2127, 0.058054044285623885),
(2128, 0.026841668277151096), (2129, 0.04441462736290345), (2130, 0.0), (213
1, 0.018001361798460822), (2132, 0.0), (2133, 0.0), (2134, 0.0), (2135, 0.
0), (2136, 0.01182005206240171), (2137, 0.0), (2138, 0.06254181421851357),
(2139, 0.0), (2140, 0.005295355836964956), (2141, 0.0), (2142, 0.00541327920
6044731), (2143, 0.0), (2144, 0.0), (2145, 0.041127015181374724), (2146, 0.
0), (2147, 0.0), (2148, 0.0), (2149, 0.0), (2150, 0.0), (2151, 0.03921147731
072447), (2152, 0.017864217435517353), (2153, 0.0), (2154, 0.006215747906335
323), (2155, 0.024040075002081704), (2156, 0.02168315434796641), (2157, 0.02
328301715596493), (2158, 0.0), (2159, 0.0065031201109073435), (2160, 0.01871
2144050050627), (2161, 0.011640149015609131), (2162, 0.007929475238427887),
(2163, 0.03249344571389219), (2164, 0.04845634456143335), (2165, 0.014491332
531685663), (2166, 0.0), (2167, 0.007507342109224111), (2168, 0.0), (2169,
0.005623173196591178), (2170, 0.0), (2171, 0.02866703722928266), (2172, 0.01
4355283748570606), (2173, 0.0), (2174, 0.013179445589997063), (2175, 0.00669
687872596116), (2176, 0.0), (2177, 0.0), (2178, 0.006823156792854853), (217
9, 0.02190560801377982), (2180, 0.0), (2181, 0.01649193259860889), (2182, 0.
0), (2183, 0.06120097392605188), (2184, 0.004374592869500123), (2185, 0.0068
15191866220214), (2186, 0.08896119950952218), (2187, 0.0), (2188, 0.00678075
1576015704), (2189, 0.0), (2190, 0.0), (2191, 0.0), (2192, 0.024502648223846
898), (2193, 0.0), (2194, 0.0051326681885332116), (2195, 0.00517864542345684
6), (2196, 0.02677579354032517), (2197, 0.0), (2198, 0.026646645268953502),
(2199, 0.0), (2200, 0.005162897471652305), (2201, 0.006667859341965786), (22
02, 0.0), (2203, 0.005090514964340784), (2204, 0.0), (2205, 0.04010258905636
977), (2206, 0.015643423980448698), (2207, 0.014673805651602999), (2208, 0.
0), (2209, 0.01627090949843399), (2210, 0.0), (2211, 0.0), (2212, 0.00620225
2256841593), (2213, 0.026377736048891275), (2214, 0.0), (2215, 0.0), (2216,
0.012037802704581364), (2217, 0.0), (2218, 0.006151834690320389), (2219, 0.0
12446878284286525), (2220, 0.02160951576820948), (2221, 0.0718961234450113
8), (2222, 0.006882833944664309), (2223, 0.0), (2224, 0.019353941221279144),
(2225, 0.0), (2226, 0.02659752152996607), (2227, 0.0), (2228, 0.034628562186
56094), (2229, 0.016931623253402705), (2230, 0.0), (2231, 0.0), (2232, 0.0),
(2233, 0.0), (2234, 0.0), (2235, 0.09829572149918514), (2236, 0.0), (2237,
0.005274849633448043), (2238, 0.0), (2239, 0.0), (2240, 0.0), (2241, 0.0),
(2242, 0.0), (2243, 0.0), (2244, 0.005478296431642595), (2245, 0.02544644089
2488747), (2246, 0.0), (2247, 0.006052493078792354), (2248, 0.0), (2249, 0.
0), (2250, 0.013771310091898813), (2251, 0.0), (2252, 0.0), (2253, 0.0568149
4691727105), (2254, 0.0), (2255, 0.005730260693662331), (2256, 0.0), (2257,
0.0), (2258, 0.017547109648955356), (2259, 0.0), (2260, 0.0), (2261, 0.00750
8665416059879), (2262, 0.017587409409865213), (2263, 0.014842047251019197),
(2264, 0.025233202873066518), (2265, 0.0), (2266, 0.0), (2267, 0.0), (2268,
0.006555106141827337), (2269, 0.0), (2270, 0.0337902562504549), (2271, 0.0),
(2272, 0.0), (2273, 0.01339208980854222), (2274, 0.013040597139851555), (227
5, 0.0), (2276, 0.0), (2277, 0.005565732172112902), (2278, 0.006352304567027
079), (2279, 0.0), (2280, 0.0), (2281, 0.0), (2282, 0.0), (2283, 0.0), (228
4, 0.0), (2285, 0.07435320523526195), (2286, 0.0), (2287, 0.0), (2288, 0.005
435180235346115), (2289, 0.02580094596544835), (2290, 0.0), (2291, 0.0048743
73199977673), (2292, 0.025897625369234702), (2293, 0.00562802784510573), (22
94, 0.0061518848295582995), (2295, 0.005790961967837092), (2296, 0.005574229
812024996), (2297, 0.0), (2298, 0.007674433997885597), (2299, 0.0), (2300,
0.018698714091994043), (2301, 0.0), (2302, 0.0), (2303, 0.0), (2304, 0.01082
9893814736312), (2305, 0.0), (2306, 0.0), (2307, 0.0), (2308, 0.013027184410
329422), (2309, 0.006286477013365412), (2310, 0.006557726437380147), (2311,
0.0), (2312, 0.0), (2313, 0.0), (2314, 0.03139632461201054), (2315, 0.0), (2
316, 0.012024078708689477), (2317, 0.035459013674969266), (2318, 0.0), (231
9, 0.0), (2320, 0.02680256271335155), (2321, 0.0), (2322, 0.0), (2323, 0.021
667953241244785), (2324, 0.018570389223305655), (2325, 0.0), (2326, 0.059040
66910904872), (2327, 0.029998297170385324), (2328, 0.0), (2329, 0.0), (2330,
0.0), (2331, 0.0), (2332, 0.011678507273505105), (2333, 0.0), (2334, 0.03027
982461704874), (2335, 0.03616435192671273), (2336, 0.0041312087557689075),
(2337, 0.0), (2338, 0.010451279428475242), (2339, 0.0), (2340, 0.00501534512
7311243), (2341, 0.0), (2342, 0.0), (2343, 0.020264075862327282), (2344, 0.0
14976551509551054), (2345, 0.0), (2346, 0.04015213391554299), (2347, 0.0),
(2348, 0.013623664124908197), (2349, 0.020862574375042752), (2350, 0.0), (23
51, 0.0), (2352, 0.05870426540050588), (2353, 0.0), (2354, 0.023930233542448
307), (2355, 0.0), (2356, 0.0), (2357, 0.009601969269395334), (2358, 0.0),
(2359, 0.0), (2360, 0.033755196715061615), (2361, 0.0), (2362, 0.0), (2363,
0.030486203027000194), (2364, 0.050041405951497), (2365, 0.01554620796685195
4), (2366, 0.0059993087414960955), (2367, 0.0), (2368, 0.0), (2369, 0.0), (2
370, 0.0), (2371, 0.005723466975379193), (2372, 0.030696560628030757), (237
3, 0.0), (2374, 0.0), (2375, 0.05650923359772611), (2376, 0.0), (2377, 0.0),
(2378, 0.0), (2379, 0.0), (2380, 0.02594017108547978), (2381, 0.020405328585
800884), (2382, 0.0), (2383, 0.02048157648619361), (2384, 0.0), (2385, 0.0),
(2386, 0.005436852211710328), (2387, 0.03641272352277158), (2388, 0.00540143
7639268327), (2389, 0.023896358921392462), (2390, 0.10006436988307142), (239
1, 0.013660701556908763), (2392, 0.0), (2393, 0.0), (2394, 0.006178367902052
818), (2395, 0.07157685208126081), (2396, 0.0), (2397, 0.03987032301941668),
(2398, 0.01810095059500455), (2399, 0.0), (2400, 0.0057181611284733815), (24
01, 0.0), (2402, 0.0), (2403, 0.02705584569090424), (2404, 0.0), (2405, 0.04
1107216457004186), (2406, 0.022695935828011857), (2407, 0.0), (2408, 0.0),
(2409, 0.0), (2410, 0.03867449078728275), (2411, 0.0779064335945995), (2412,
0.005804252957338772), (2413, 0.0), (2414, 0.0), (2415, 0.0), (2416, 0.0),
(2417, 0.0), (2418, 0.0), (2419, 0.0), (2420, 0.0), (2421, 0.0), (2422, 0.
0), (2423, 0.02483103597530472), (2424, 0.0), (2425, 0.03411111608541534),
(2426, 0.0), (2427, 0.0), (2428, 0.0), (2429, 0.004619544920974324), (2430,
0.0), (2431, 0.0), (2432, 0.014800930052878086), (2433, 0.0221169617849436),
(2434, 0.0), (2435, 0.0050099245798268825), (2436, 0.0), (2437, 0.0185193278
5131163), (2438, 0.0), (2439, 0.005614858517679828), (2440, 0.0), (2441, 0.
0), (2442, 0.11725512335483321), (2443, 0.0), (2444, 0.03519980714737147),
(2445, 0.0), (2446, 0.018412184021815697), (2447, 0.08000920005123051), (244
8, 0.0), (2449, 0.0), (2450, 0.0), (2451, 0.029082660500344026), (2452, 0.
0), (2453, 0.012503035051940434), (2454, 0.024245664789547934), (2455, 0.0),
(2456, 0.0), (2457, 0.007293455720637931), (2458, 0.022002047483275874), (24
59, 0.0), (2460, 0.0), (2461, 0.0), (2462, 0.0), (2463, 0.0), (2464, 0.0),
(2465, 0.0), (2466, 0.006229052851970406), (2467, 0.0), (2468, 0.0), (2469,
0.006281165775211212), (2470, 0.004559111571995109), (2471, 0.00571015607521
8152), (2472, 0.0), (2473, 0.0), (2474, 0.011328965076965375), (2475, 0.0345
1065786019304), (2476, 0.0), (2477, 0.0), (2478, 0.0), (2479, 0.026386600838
295124), (2480, 0.013433691794338377), (2481, 0.0), (2482, 0.042801705878448
45), (2483, 0.0), (2484, 0.01584799536487045), (2485, 0.0), (2486, 0.0226750
77475295187), (2487, 0.12309731939910507), (2488, 0.0), (2489, 0.0), (2490,
0.013239893660001785), (2491, 0.0), (2492, 0.07070815892889158), (2493, 0.
0), (2494, 0.0), (2495, 0.0), (2496, 0.0), (2497, 0.0), (2498, 0.0), (2499,
0.0), (2500, 0.0), (2501, 0.0), (2502, 0.0), (2503, 0.0), (2504, 0.021816126
854045544), (2505, 0.0), (2506, 0.01562649621493573), (2507, 0.0), (2508, 0.
009939409260957219), (2509, 0.020626935950200674), (2510, 0.0063654794838722
59), (2511, 0.0), (2512, 0.01563352918867833), (2513, 0.0), (2514, 0.0054104
81856353042), (2515, 0.010282959641285283), (2516, 0.0), (2517, 0.0), (2518,
0.0), (2519, 0.0), (2520, 0.0), (2521, 0.010964740355720311), (2522, 0.0),
(2523, 0.04673197333737898), (2524, 0.0), (2525, 0.04884134870098054), (252
6, 0.0), (2527, 0.006047511527795769), (2528, 0.023843466277987224), (2529,
0.0), (2530, 0.0), (2531, 0.0), (2532, 0.0), (2533, 0.017368641605126425),
(2534, 0.0), (2535, 0.0), (2536, 0.012307311382159248), (2537, 0.01357385587
0530342), (2538, 0.021592440531861413), (2539, 0.022507531028458403), (2540,
0.0), (2541, 0.03365975285314387), (2542, 0.0), (2543, 0.02069394560481720
5), (2544, 0.046528447993020285), (2545, 0.014985306764925143), (2546, 0.0),
(2547, 0.0), (2548, 0.0), (2549, 0.0), (2550, 0.008264992504755877), (2551,
0.0), (2552, 0.007677007883989578), (2553, 0.0), (2554, 0.0), (2555, 0.0),
(2556, 0.006133468413142607), (2557, 0.0), (2558, 0.005371362118285829), (25
59, 0.0), (2560, 0.0), (2561, 0.029255496014252085), (2562, 0.0), (2563, 0.0
21431751166744072), (2564, 0.02486896995742568), (2565, 0.00565746363070029
5), (2566, 0.0), (2567, 0.0), (2568, 0.0), (2569, 0.0), (2570, 0.0), (2571,
0.0), (2572, 0.0), (2573, 0.023380742080652484), (2574, 0.0), (2575, 0.02524
0158524439053), (2576, 0.0), (2577, 0.022483973394796117), (2578, 0.02567343
6853464238), (2579, 0.0052233639251494084), (2580, 0.06987220564554412), (25
81, 0.04154977620589559), (2582, 0.020116287754230397), (2583, 0.00600597287
6119821), (2584, 0.0), (2585, 0.02411022568025284), (2586, 0.006543617143416
8), (2587, 0.024606341342806124), (2588, 0.0), (2589, 0.0), (2590, 0.0248286
26449136096), (2591, 0.027774522604879854), (2592, 0.020993832138296434), (2
593, 0.06252188993890204), (2594, 0.0), (2595, 0.0), (2596, 0.01458808678658
646), (2597, 0.004740694074384045), (2598, 0.06112708908319607), (2599, 0.
0), (2600, 0.0), (2601, 0.0), (2602, 0.004828783454335147), (2603, 0.0), (26
04, 0.0), (2605, 0.03189379458924232), (2606, 0.0), (2607, 0.057872925580015
7), (2608, 0.020163369923140245), (2609, 0.0052597865557895696), (2610, 0.
0), (2611, 0.01804725549144812), (2612, 0.04086817436457406), (2613, 0.0),
(2614, 0.0), (2615, 0.0), (2616, 0.0), (2617, 0.0), (2618, 0.0), (2619, 0.
0), (2620, 0.0), (2621, 0.0), (2622, 0.0), (2623, 0.006251306763517307), (26
24, 0.0), (2625, 0.07769873829656067), (2626, 0.0), (2627, 0.0), (2628, 0.
0), (2629, 0.0), (2630, 0.03486303727735512), (2631, 0.0), (2632, 0.0), (263
3, 0.013202931403018241), (2634, 0.0), (2635, 0.0), (2636, 0.018552717210513
887), (2637, 0.0), (2638, 0.013917058854518048), (2639, 0.02146185607741431
6), (2640, 0.0), (2641, 0.004837232568279299), (2642, 0.0), (2643, 0.0), (26
44, 0.012956145552213253), (2645, 0.01298830344107681), (2646, 0.00621239373
75572254), (2647, 0.0), (2648, 0.06710386698234966), (2649, 0.0), (2650, 0.0
06096986698751094), (2651, 0.1121878787373205), (2652, 0.0), (2653, 0.015975
545534609267), (2654, 0.028051753547982776), (2655, 0.014305393750961574),
(2656, 0.0), (2657, 0.018277028299003045), (2658, 0.0), (2659, 0.0), (2660,
0.0), (2661, 0.0), (2662, 0.0), (2663, 0.02320755242269554), (2664, 0.0), (2
665, 0.03948485081674015), (2666, 0.0), (2667, 0.0), (2668, 0.0), (2669, 0.0
06676278297027921), (2670, 0.0), (2671, 0.0), (2672, 0.019140233393603562),
(2673, 0.0), (2674, 0.0), (2675, 0.012409291100507355), (2676, 0.02097890547
91607), (2677, 0.0), (2678, 0.012391351026490017), (2679, 0.0), (2680, 0.0),
(2681, 0.011303498587997927), (2682, 0.0), (2683, 0.012743398578491315), (26
84, 0.03176815572726404), (2685, 0.0), (2686, 0.0), (2687, 0.0), (2688, 0.00
74148891187318594), (2689, 0.0), (2690, 0.0), (2691, 0.0), (2692, 0.01211701
5866487689), (2693, 0.01413514809576427), (2694, 0.0), (2695, 0.0), (2696,
0.01881869044660873), (2697, 0.0), (2698, 0.019905200277533886), (2699, 0.
0), (2700, 0.0), (2701, 0.0), (2702, 0.0), (2703, 0.0), (2704, 0.00462334659
77754545), (2705, 0.0), (2706, 0.0727480129402545), (2707, 0.0), (2708, 0.01
9484724567655806), (2709, 0.0), (2710, 0.0), (2711, 0.0), (2712, 0.005523670
344895499), (2713, 0.0), (2714, 0.0), (2715, 0.0), (2716, 0.0), (2717, 0.0),
(2718, 0.0), (2719, 0.0), (2720, 0.0), (2721, 0.0), (2722, 0.017699487086388
66), (2723, 0.0), (2724, 0.0), (2725, 0.0), (2726, 0.015963113748758227), (2
727, 0.0), (2728, 0.03511465476102779), (2729, 0.020532201445197015), (2730,
0.0), (2731, 0.023707267919739716), (2732, 0.0), (2733, 0.0125761035163967
3), (2734, 0.0), (2735, 0.03102116841626016), (2736, 0.011596465269998905),
(2737, 0.0), (2738, 0.0), (2739, 0.0), (2740, 0.0), (2741, 0.041266540851887
86), (2742, 0.0), (2743, 0.016666351498377474), (2744, 0.0), (2745, 0.0), (2
746, 0.016017241290624536), (2747, 0.011050667481366936), (2748, 0.0), (274
9, 0.0), (2750, 0.0), (2751, 0.017310606525190095), (2752, 0.018719904801138
564), (2753, 0.0), (2754, 0.0), (2755, 0.026733334571908508), (2756, 0.0),
(2757, 0.00972351493765599), (2758, 0.025036311570031743), (2759, 0.02081812
4457973538), (2760, 0.0), (2761, 0.02944322208224412), (2762, 0.0), (2763,
0.0), (2764, 0.01690763083446101), (2765, 0.0), (2766, 0.01429987750069849),
(2767, 0.0), (2768, 0.025774410850104883), (2769, 0.0), (2770, 0.0), (2771,
0.0), (2772, 0.0), (2773, 0.0), (2774, 0.0), (2775, 0.0058014412783521565),
(2776, 0.0), (2777, 0.02350747168789047), (2778, 0.08254666436931932), (277
9, 0.0), (2780, 0.0), (2781, 0.02386489547113044), (2782, 0.0), (2783, 0.0),
(2784, 0.01597231395001864), (2785, 0.02054266736568989), (2786, 0.0), (278
7, 0.01260984280019308), (2788, 0.0), (2789, 0.0), (2790, 0.0052930297101448
75), (2791, 0.01929083087355989), (2792, 0.0), (2793, 0.0), (2794, 0.0306782
77022217974), (2795, 0.0), (2796, 0.025760040101317352), (2797, 0.0), (2798,
0.0), (2799, 0.0), (2800, 0.016523449109549712), (2801, 0.0), (2802, 0.0),
(2803, 0.02718713591814251), (2804, 0.0), (2805, 0.051638235349561426), (280
6, 0.010201528772675397), (2807, 0.020965388427770366), (2808, 0.0), (2809,
0.021362181818871347), (2810, 0.0), (2811, 0.0), (2812, 0.01302143757042517
6), (2813, 0.0), (2814, 0.0), (2815, 0.029289301886701397), (2816, 0.0), (28
17, 0.019284664570866784), (2818, 0.015185210560701384), (2819, 0.0047721198
8519107), (2820, 0.0), (2821, 0.013336613451793369), (2822, 0.05004607809555
484), (2823, 0.07587317737557173), (2824, 0.021432945898927122), (2825, 0.
0), (2826, 0.025725926387696454), (2827, 0.013030118277459295), (2828, 0.0),
(2829, 0.0), (2830, 0.0), (2831, 0.019648438132268686), (2832, 0.03333078366
681674), (2833, 0.0), (2834, 0.015142264741442792), (2835, 0.0), (2836, 0.
0), (2837, 0.0), (2838, 0.0), (2839, 0.0), (2840, 0.0), (2841, 0.03403432733
815667), (2842, 0.0), (2843, 0.0), (2844, 0.0), (2845, 0.03375640830637995),
(2846, 0.0), (2847, 0.0), (2848, 0.04267572703014345), (2849, 0.006607461883
8483055), (2850, 0.0), (2851, 0.02353140203991321), (2852, 0.0), (2853, 0.00
4712250100467962), (2854, 0.0), (2855, 0.0), (2856, 0.023407325522567028),
(2857, 0.0), (2858, 0.0), (2859, 0.0), (2860, 0.011161275592276618), (2861,
0.0), (2862, 0.02053377380621971), (2863, 0.01260393827519266), (2864, 0.0),
(2865, 0.017691337161991005), (2866, 0.0), (2867, 0.0075898217854650195), (2
868, 0.08634041463423897), (2869, 0.0), (2870, 0.0), (2871, 0.0), (2872, 0.0
14442945065347693), (2873, 0.0), (2874, 0.0), (2875, 0.0957179952078477), (2
876, 0.0), (2877, 0.014813164727396973), (2878, 0.023514200262513076), (287
9, 0.013648436213562588), (2880, 0.09551596914906027), (2881, 0.0), (2882,
0.0), (2883, 0.0), (2884, 0.015922856264564047), (2885, 0.0), (2886, 0.00699
0763697154421), (2887, 0.0), (2888, 0.0), (2889, 0.0), (2890, 0.0), (2891,
0.0), (2892, 0.0), (2893, 0.0), (2894, 0.0), (2895, 0.0), (2896, 0.0), (289
7, 0.0207374275016581), (2898, 0.0), (2899, 0.04286732256027681), (2900, 0.0
18917739908569854), (2901, 0.0), (2902, 0.0), (2903, 0.0), (2904, 0.02264948
6444076015), (2905, 0.0), (2906, 0.0), (2907, 0.0), (2908, 0.0), (2909, 0.
0), (2910, 0.0), (2911, 0.0), (2912, 0.02885299162814698), (2913, 0.01117881
3951735932), (2914, 0.0), (2915, 0.007463810432472856), (2916, 0.0), (2917,
0.0), (2918, 0.029481994748350324), (2919, 0.0), (2920, 0.0), (2921, 0.00712
8195329521292), (2922, 0.0), (2923, 0.018246036753046358), (2924, 0.0), (292
5, 0.0), (2926, 0.01426428002763455), (2927, 0.0), (2928, 0.0), (2929, 0.0),
(2930, 0.0075131119689367375), (2931, 0.006959360382628293), (2932, 0.0), (2
933, 0.007760201729369884), (2934, 0.05327698315797834), (2935, 0.0), (2936,
0.0), (2937, 0.04951964286320249), (2938, 0.0), (2939, 0.0), (2940, 0.0), (2
941, 0.0), (2942, 0.0), (2943, 0.0), (2944, 0.0), (2945, 0.0), (2946, 0.0),
(2947, 0.0), (2948, 0.0), (2949, 0.0), (2950, 0.0), (2951, 0.0), (2952, 0.
0), (2953, 0.01224043419929678), (2954, 0.0), (2955, 0.0), (2956, 0.0), (295
7, 0.0), (2958, 0.0), (2959, 0.005527503738662853), (2960, 0.0), (2961, 0.02
5847768393518617), (2962, 0.0), (2963, 0.0), (2964, 0.04228963100125496), (2
965, 0.0), (2966, 0.03286402394994079), (2967, 0.03446024167625945), (2968,
0.02481630689126588), (2969, 0.007435061175577933), (2970, 0.0), (2971, 0.
0), (2972, 0.03299738145002257), (2973, 0.0), (2974, 0.0), (2975, 0.0), (297
6, 0.0), (2977, 0.0), (2978, 0.0052803858743085234), (2979, 0.0), (2980, 0.0
06245645106104692), (2981, 0.028912835382524704), (2982, 0.0), (2983, 0.0),
(2984, 0.0), (2985, 0.0), (2986, 0.0045802513382911915), (2987, 0.0401017117
905758), (2988, 0.0), (2989, 0.0), (2990, 0.0), (2991, 0.04224078691318641),
(2992, 0.0), (2993, 0.0), (2994, 0.01780523748550187), (2995, 0.032220055904
694275), (2996, 0.012575096980323865), (2997, 0.0), (2998, 0.0), (2999, 0.
0), (3000, 0.0), (3001, 0.01084429248137382), (3002, 0.04617193209491663),
(3003, 0.0), (3004, 0.007642260315995082), (3005, 0.0), (3006, 0.02755196284
5643485), (3007, 0.004462180039104246), (3008, 0.004568882850853553), (3009,
0.0), (3010, 0.0), (3011, 0.0), (3012, 0.03863100457153548), (3013, 0.031704
400213876466), (3014, 0.016906250223254336), (3015, 0.011684551966513928),
(3016, 0.0), (3017, 0.0), (3018, 0.016099334107277277), (3019, 0.01083878182
6130826), (3020, 0.005614653461283358), (3021, 0.006332498030937433), (3022,
0.0), (3023, 0.0), (3024, 0.020416020101926034), (3025, 0.0), (3026, 0.0),
(3027, 0.0), (3028, 0.0), (3029, 0.005196230366766419), (3030, 0.00528920788
7152248), (3031, 0.0), (3032, 0.022263049988878385), (3033, 0.05855006118586
9764), (3034, 0.02543123190819681), (3035, 0.011692060057410601), (3036, 0.
0), (3037, 0.0), (3038, 0.0), (3039, 0.0), (3040, 0.005684411606030021), (30
41, 0.0), (3042, 0.0), (3043, 0.009466422642396591), (3044, 0.0), (3045, 0.
0), (3046, 0.0), (3047, 0.016457492614424675), (3048, 0.08576681487052276),
(3049, 0.0), (3050, 0.0), (3051, 0.015038560880261904), (3052, 0.0), (3053,
0.0), (3054, 0.02249135136362627), (3055, 0.02024916463867033), (3056, 0.0),
(3057, 0.0), (3058, 0.0), (3059, 0.047708204062145786), (3060, 0.0), (3061,
0.0), (3062, 0.005557947390848267), (3063, 0.0), (3064, 0.0), (3065, 0.0),
(3066, 0.0), (3067, 0.0), (3068, 0.006790321712480484), (3069, 0.04086624792
708708), (3070, 0.0), (3071, 0.0), (3072, 0.021054236405633434), (3073, 0.00
51265995519498815), (3074, 0.005214289797347882), (3075, 0.0), (3076, 0.0),
(3077, 0.005707541461229693), (3078, 0.0), (3079, 0.0), (3080, 0.0), (3081,
0.0), (3082, 0.006824488489398743), (3083, 0.03928621428262567), (3084, 0.
0), (3085, 0.0), (3086, 0.005197205853775061), (3087, 0.01939113880212736),
(3088, 0.0), (3089, 0.026717074424634786), (3090, 0.02125698931985668), (309
1, 0.0), (3092, 0.08004994895394213), (3093, 0.0), (3094, 0.0160734783490223
17), (3095, 0.0), (3096, 0.0), (3097, 0.0), (3098, 0.01370800550108068), (30
99, 0.004595629656707778), (3100, 0.0), (3101, 0.0), (3102, 0.02284042860449
578), (3103, 0.0), (3104, 0.0), (3105, 0.04691000687921332), (3106, 0.080831
02554049604), (3107, 0.0), (3108, 0.0), (3109, 0.0), (3110, 0.0), (3111, 0.
0), (3112, 0.0), (3113, 0.0), (3114, 0.0), (3115, 0.0), (3116, 0.09304312287
733228), (3117, 0.0), (3118, 0.0), (3119, 0.0), (3120, 0.01546560399984393),
(3121, 0.0), (3122, 0.0), (3123, 0.0), (3124, 0.0), (3125, 0.0), (3126, 0.01
7953840237280475), (3127, 0.014006197271347765), (3128, 0.006311175792582458
5), (3129, 0.008370935429100702), (3130, 0.02703338167663571), (3131, 0.0),
(3132, 0.0), (3133, 0.037973365929431076), (3134, 0.0), (3135, 0.0), (3136,
0.01163318415289629), (3137, 0.0), (3138, 0.0050384561494722984), (3139, 0.
0), (3140, 0.0), (3141, 0.0), (3142, 0.05368229521949337), (3143, 0.01027652
2125897358), (3144, 0.0062144197324906945), (3145, 0.0), (3146, 0.0), (3147,
0.01883644064574417), (3148, 0.0118541494923353), (3149, 0.0), (3150, 0.0360
68049902245186), (3151, 0.005295938310687628), (3152, 0.0), (3153, 0.0058649
2709524395), (3154, 0.0063973331565408565), (3155, 0.016373599690172314), (3
156, 0.0), (3157, 0.0), (3158, 0.022908006752621824), (3159, 0.0), (3160, 0.
03733084279375338), (3161, 0.0), (3162, 0.010531967260644851), (3163, 0.0214
6788983987858), (3164, 0.0), (3165, 0.004933141378972832), (3166, 0.09247435
261735147), (3167, 0.0), (3168, 0.0), (3169, 0.0), (3170, 0.0192769785874458
66), (3171, 0.007022861300789078), (3172, 0.06470675164054021), (3173, 0.0),
(3174, 0.0), (3175, 0.0), (3176, 0.0), (3177, 0.011186761942153758), (3178,
0.0), (3179, 0.0), (3180, 0.0062705342024132775), (3181, 0.02556548677427720
3), (3182, 0.014833799084538798), (3183, 0.0), (3184, 0.04367161911100059),
(3185, 0.0), (3186, 0.0), (3187, 0.0), (3188, 0.0), (3189, 0.0), (3190, 0.08
740301658450944), (3191, 0.0), (3192, 0.0), (3193, 0.0), (3194, 0.0), (3195,
0.04604867713102017), (3196, 0.01310257720871702), (3197, 0.0), (3198, 0.015
66629082871719), (3199, 0.0), (3200, 0.0), (3201, 0.0), (3202, 0.00774948555
787503), (3203, 0.021059751681876005), (3204, 0.03273595166360184), (3205,
0.0), (3206, 0.0), (3207, 0.06596396019383235), (3208, 0.03502992033944778),
(3209, 0.004938256294249752), (3210, 0.02352684522685594), (3211, 0.07522613
969813607), (3212, 0.0), (3213, 0.0), (3214, 0.01768250943966359), (3215, 0.
006619625859455825), (3216, 0.0), (3217, 0.0), (3218, 0.0), (3219, 0.0549451
9578521795), (3220, 0.0), (3221, 0.005126964207047642), (3222, 0.0), (3223,
0.0), (3224, 0.03281132058326441), (3225, 0.009147254181053738), (3226, 0.
0), (3227, 0.0), (3228, 0.0), (3229, 0.010172202466962394), (3230, 0.0219969
99760546566), (3231, 0.07410985848722018), (3232, 0.0320219156120307), (323
3, 0.0074492797989099534), (3234, 0.0), (3235, 0.0), (3236, 0.01295154213243
9492), (3237, 0.026608936468904783), (3238, 0.0), (3239, 0.0), (3240, 0.0146
46413566362442), (3241, 0.0), (3242, 0.0), (3243, 0.0), (3244, 0.0), (3245,
0.025933193063478615), (3246, 0.0), (3247, 0.0), (3248, 0.0), (3249, 0.06105
2748399677476), (3250, 0.012147477967543958), (3251, 0.010525756758090705),
(3252, 0.01218264618205494), (3253, 0.0), (3254, 0.0), (3255, 0.016423307239
74264), (3256, 0.01696862270757432), (3257, 0.0), (3258, 0.0), (3259, 0.0050
4808833409177), (3260, 0.027431129312523755), (3261, 0.0), (3262, 0.0), (326
3, 0.0), (3264, 0.0), (3265, 0.0), (3266, 0.0), (3267, 0.08389285844073753),
(3268, 0.0), (3269, 0.0), (3270, 0.0), (3271, 0.0), (3272, 0.0), (3273, 0.
0), (3274, 0.037955958126377726), (3275, 0.0), (3276, 0.0), (3277, 0.0), (32
78, 0.0), (3279, 0.0), (3280, 0.007322798561125077), (3281, 0.0), (3282, 0.0
2485983494136272), (3283, 0.0), (3284, 0.006799399517214227), (3285, 0.0),
(3286, 0.07357828661267143), (3287, 0.0), (3288, 0.0), (3289, 0.0), (3290,
0.02227892009046514), (3291, 0.0), (3292, 0.0), (3293, 0.01864090097970497
2), (3294, 0.0), (3295, 0.0), (3296, 0.01622205086083452), (3297, 0.00555555
7730959811), (3298, 0.0), (3299, 0.006822363918914749), (3300, 0.0), (3301,
0.0), (3302, 0.0), (3303, 0.0), (3304, 0.007447806236883482), (3305, 0.02939
449080173264), (3306, 0.006409683160680518), (3307, 0.0), (3308, 0.023742145
849063163), (3309, 0.0049774421686656955), (3310, 0.0), (3311, 0.0), (3312,
0.016298460095923114), (3313, 0.0), (3314, 0.0), (3315, 0.0242761581565420
4), (3316, 0.005895849435100806), (3317, 0.0), (3318, 0.026180749685803896),
(3319, 0.0), (3320, 0.0), (3321, 0.0539449131388131), (3322, 0.0), (3323, 0.
016786707581067012), (3324, 0.0), (3325, 0.0), (3326, 0.006147516675936614),
(3327, 0.0), (3328, 0.0), (3329, 0.008114608947281443), (3330, 0.0), (3331,
0.0), (3332, 0.006245485345825851), (3333, 0.01292981705128393), (3334, 0.
0), (3335, 0.006011745513294125), (3336, 0.012898580548963805), (3337, 0.012
720489418181838), (3338, 0.0), (3339, 0.0), (3340, 0.0), (3341, 0.0), (3342,
0.0), (3343, 0.013243806240332116), (3344, 0.0), (3345, 0.0), (3346, 0.0),
(3347, 0.03875543955174386), (3348, 0.0), (3349, 0.01731706800117797), (335
0, 0.027489752426467326), (3351, 0.011896956393315767), (3352, 0.01373492126
1026845), (3353, 0.007069963464014245), (3354, 0.04739919188599552), (3355,
0.014003369239384375), (3356, 0.0), (3357, 0.0), (3358, 0.0), (3359, 0.00792
785878651691), (3360, 0.0), (3361, 0.02731113912836786), (3362, 0.0), (3363,
0.015865528195095936), (3364, 0.007795353506837987), (3365, 0.0), (3366, 0.0
25291947683357952), (3367, 0.0), (3368, 0.02277477635201086), (3369, 0.0),
(3370, 0.01096334582496127), (3371, 0.0), (3372, 0.02425369176616696), (337
3, 0.016409156048216557), (3374, 0.0), (3375, 0.0), (3376, 0.0), (3377, 0.02
983548756202151), (3378, 0.0), (3379, 0.0), (3380, 0.0), (3381, 0.0), (3382,
0.0055243419360443335), (3383, 0.021092214675417602), (3384, 0.0), (3385, 0.
09760018407279153), (3386, 0.09147088765725242), (3387, 0.0), (3388, 0.0),
(3389, 0.0), (3390, 0.0), (3391, 0.0), (3392, 0.009939539789944066), (3393,
0.0), (3394, 0.0), (3395, 0.08227841855020515), (3396, 0.01959794665570867
3), (3397, 0.0), (3398, 0.0), (3399, 0.004641839359086458), (3400, 0.0), (34
01, 0.0), (3402, 0.0), (3403, 0.008770727916425537), (3404, 0.0), (3405, 0.0
6381703095982828), (3406, 0.0), (3407, 0.0), (3408, 0.0), (3409, 0.0), (341
0, 0.0), (3411, 0.0), (3412, 0.006199665143752347), (3413, 0.0), (3414, 0.06
591842128545326), (3415, 0.0), (3416, 0.005054557599302327), (3417, 0.004256
932583050854), (3418, 0.0), (3419, 0.0), (3420, 0.019354632690505417), (342
1, 0.031740936195519515), (3422, 0.0), (3423, 0.0), (3424, 0.011224225488695
765), (3425, 0.0), (3426, 0.0), (3427, 0.02537432649968222), (3428, 0.014473
849093212122), (3429, 0.0), (3430, 0.0), (3431, 0.0), (3432, 0.0), (3433, 0.
0), (3434, 0.0), (3435, 0.0), (3436, 0.0), (3437, 0.017450835154007385), (34
38, 0.0), (3439, 0.027247478505983014), (3440, 0.0), (3441, 0.02947216424014
573), (3442, 0.036939399366845885), (3443, 0.09877044853778177), (3444, 0.02
388062745112972), (3445, 0.005658829447034606), (3446, 0.01183078134931859
2), (3447, 0.01257116573312346), (3448, 0.012675188078950602), (3449, 0.0120
15719725922809), (3450, 0.010710016563517536), (3451, 0.0), (3452, 0.0), (34
53, 0.0), (3454, 0.0), (3455, 0.013330340352272723), (3456, 0.0), (3457, 0.
0), (3458, 0.0), (3459, 0.0), (3460, 0.020203028724862473), (3461, 0.0), (34
62, 0.019925568532569077), (3463, 0.04158573801943963), (3464, 0.0), (3465,
0.0), (3466, 0.06915707332486215), (3467, 0.0), (3468, 0.0), (3469, 0.038306
369147501615), (3470, 0.0), (3471, 0.0), (3472, 0.0), (3473, 0.0323574729602
6368), (3474, 0.0), (3475, 0.0), (3476, 0.0), (3477, 0.004834671556504662),
(3478, 0.0), (3479, 0.0), (3480, 0.0), (3481, 0.0), (3482, 0.0), (3483, 0.01
9706913762682313), (3484, 0.0), (3485, 0.0062913315434528615), (3486, 0.0244
93181887115002), (3487, 0.0), (3488, 0.0), (3489, 0.0), (3490, 0.01630704652
2940745), (3491, 0.0), (3492, 0.005892680791212392), (3493, 0.0), (3494, 0.0
4599666191566592), (3495, 0.0), (3496, 0.0), (3497, 0.0), (3498, 0.0), (349
9, 0.0), (3500, 0.008675420864201054), (3501, 0.0), (3502, 0.0), (3503, 0.
0), (3504, 0.0), (3505, 0.032758803936985076), (3506, 0.0), (3507, 0.0), (35
08, 0.0), (3509, 0.033116546087329), (3510, 0.0), (3511, 0.01683241811241861
8), (3512, 0.013391346681791835), (3513, 0.0), (3514, 0.0), (3515, 0.0), (35
16, 0.005009745147057797), (3517, 0.0), (3518, 0.00517010411350107), (3519,
0.0), (3520, 0.0), (3521, 0.0), (3522, 0.014439119035995042), (3523, 0.00596
0877434809571), (3524, 0.0), (3525, 0.0), (3526, 0.027019957235589663), (352
7, 0.012194043351965013), (3528, 0.0), (3529, 0.0), (3530, 0.0), (3531, 0.
0), (3532, 0.0), (3533, 0.0), (3534, 0.017138618397246234), (3535, 0.0), (35
36, 0.0), (3537, 0.0), (3538, 0.0), (3539, 0.0), (3540, 0.0), (3541, 0.0),
(3542, 0.0), (3543, 0.0), (3544, 0.0), (3545, 0.00581846549575977), (3546,
0.01832406150125869), (3547, 0.0), (3548, 0.0), (3549, 0.03936109968448532
6), (3550, 0.0), (3551, 0.0), (3552, 0.016659098608887434), (3553, 0.0041982
60102788322), (3554, 0.0), (3555, 0.0), (3556, 0.04122354855895735), (3557,
0.025020157809978558), (3558, 0.0), (3559, 0.0), (3560, 0.0), (3561, 0.03272
2475316026345), (3562, 0.02026031171380345), (3563, 0.0), (3564, 0.0), (356
5, 0.0), (3566, 0.027711809896317347), (3567, 0.0), (3568, 0.039369382411291
09), (3569, 0.02506014423807436), (3570, 0.0), (3571, 0.0), (3572, 0.0), (35
73, 0.0), (3574, 0.0), (3575, 0.02805111104447649), (3576, 0.0), (3577, 0.
0), (3578, 0.0), (3579, 0.004600699117446862), (3580, 0.0), (3581, 0.0242021
66818818968), (3582, 0.026061904540668968), (3583, 0.0), (3584, 0.0051152228
84878196), (3585, 0.0), (3586, 0.0), (3587, 0.0), (3588, 0.0), (3589, 0.0),
(3590, 0.0), (3591, 0.005281742919736083), (3592, 0.0), (3593, 0.0), (3594,
0.03152535040530148), (3595, 0.0), (3596, 0.0), (3597, 0.0), (3598, 0.0), (3
599, 0.0), (3600, 0.0), (3601, 0.0), (3602, 0.0), (3603, 0.00484328741062607
6), (3604, 0.01610714711899733), (3605, 0.0), (3606, 0.005539302436088057),
(3607, 0.04114976213545788), (3608, 0.0), (3609, 0.0), (3610, 0.0), (3611,
0.0), (3612, 0.03771097906912784), (3613, 0.019740364233045503), (3614, 0.
0), (3615, 0.0), (3616, 0.03544221427373788), (3617, 0.012112987857951455),
(3618, 0.03050339668457572), (3619, 0.012325661236123692), (3620, 0.01953953
4595422393), (3621, 0.0), (3622, 0.0), (3623, 0.1609246088135586), (3624, 0.
018715540115561848), (3625, 0.0), (3626, 0.0), (3627, 0.0), (3628, 0.0), (36
29, 0.0), (3630, 0.017677609803744575), (3631, 0.0), (3632, 0.0), (3633, 0.
0), (3634, 0.0), (3635, 0.0), (3636, 0.0321559984487356), (3637, 0.016264567
161936073), (3638, 0.0), (3639, 0.01670859725340603), (3640, 0.0), (3641, 0.
0), (3642, 0.019542728911351642), (3643, 0.04624119617926222), (3644, 0.0159
1606316245263), (3645, 0.0), (3646, 0.0), (3647, 0.0), (3648, 0.0), (3649,
0.014727481344929625), (3650, 0.014506670860289204), (3651, 0.0), (3652, 0.0
3440239657583764), (3653, 0.0), (3654, 0.0), (3655, 0.0), (3656, 0.019671458
046522976), (3657, 0.0), (3658, 0.0), (3659, 0.0), (3660, 0.0), (3661, 0.0),
(3662, 0.0), (3663, 0.0), (3664, 0.03808287613311466), (3665, 0.0), (3666,
0.0), (3667, 0.005800551191061778), (3668, 0.025262860168782816), (3669, 0.
0), (3670, 0.0), (3671, 0.0), (3672, 0.005772047728012396), (3673, 0.0), (36
74, 0.0), (3675, 0.0), (3676, 0.0), (3677, 0.0), (3678, 0.0), (3679, 0.02726
1155949072205), (3680, 0.0), (3681, 0.0), (3682, 0.0), (3683, 0.0), (3684,
0.0), (3685, 0.0), (3686, 0.0), (3687, 0.0), (3688, 0.0), (3689, 0.005882017
555227478), (3690, 0.0), (3691, 0.0), (3692, 0.010549524583570996), (3693,
0.012517132287393682), (3694, 0.0), (3695, 0.006835633113142684), (3696, 0.
0), (3697, 0.0), (3698, 0.013609648314787181), (3699, 0.03722889544365498),
(3700, 0.0), (3701, 0.0), (3702, 0.0), (3703, 0.0), (3704, 0.0), (3705, 0.03
5890783607435764), (3706, 0.0), (3707, 0.005628754513302558), (3708, 0.0),
(3709, 0.0), (3710, 0.0), (3711, 0.014407115808943344), (3712, 0.0), (3713,
0.0), (3714, 0.0075461808869673646), (3715, 0.01226068639441599), (3716, 0.
0), (3717, 0.0), (3718, 0.0), (3719, 0.0), (3720, 0.0), (3721, 0.0), (3722,
0.004648869332647166), (3723, 0.0), (3724, 0.01404301645313408), (3725, 0.00
5876125846066993), (3726, 0.0), (3727, 0.0), (3728, 0.0), (3729, 0.0), (373
0, 0.017852407566659876), (3731, 0.0), (3732, 0.0), (3733, 0.004760706668934
6255), (3734, 0.0), (3735, 0.0), (3736, 0.02146045283995403), (3737, 0.02133
995631773802), (3738, 0.0), (3739, 0.0), (3740, 0.00555495365578747), (3741,
0.0), (3742, 0.0), (3743, 0.0), (3744, 0.0), (3745, 0.0), (3746, 0.0), (374
7, 0.0), (3748, 0.014397379973433773), (3749, 0.057349584988722155), (3750,
0.02165616685287211), (3751, 0.043802457191498154), (3752, 0.0), (3753, 0.
0), (3754, 0.0), (3755, 0.023387963972197195), (3756, 0.006102501752830844),
(3757, 0.0), (3758, 0.004959263150108861), (3759, 0.0), (3760, 0.0), (3761,
0.0), (3762, 0.0), (3763, 0.0), (3764, 0.004474336285610847), (3765, 0.0),
(3766, 0.0), (3767, 0.0), (3768, 0.0), (3769, 0.0), (3770, 0.0), (3771, 0.02
457649448063607), (3772, 0.0), (3773, 0.0), (3774, 0.006470723074325125), (3
775, 0.0), (3776, 0.0), (3777, 0.051012922095374356), (3778, 0.0), (3779, 0.
0), (3780, 0.0), (3781, 0.0), (3782, 0.0), (3783, 0.0), (3784, 0.0), (3785,
0.0), (3786, 0.013927428079173064), (3787, 0.0), (3788, 0.0), (3789, 0.0),
(3790, 0.0), (3791, 0.0), (3792, 0.0), (3793, 0.0), (3794, 0.0), (3795, 0.02
7114531769966414), (3796, 0.02493895442849558), (3797, 0.0), (3798, 0.0), (3
799, 0.013405884904677735), (3800, 0.02150038592725774), (3801, 0.0), (3802,
0.053315635831509944), (3803, 0.0), (3804, 0.024971160613485067), (3805, 0.
0), (3806, 0.0), (3807, 0.0), (3808, 0.0), (3809, 0.0), (3810, 0.00963456391
81556), (3811, 0.012641314584689362), (3812, 0.036765968036515634), (3813,
0.026638326675638535), (3814, 0.0), (3815, 0.023899591659339196), (3816, 0.0
3449615846381329), (3817, 0.0), (3818, 0.0), (3819, 0.04159469121197377), (3
820, 0.0), (3821, 0.0), (3822, 0.0), (3823, 0.023221886175453586), (3824, 0.
012770812699522493), (3825, 0.03872747584201364), (3826, 0.01383482461538176
2), (3827, 0.02154795904008237), (3828, 0.039644799154214316), (3829, 0.0),
(3830, 0.006099612308650296), (3831, 0.0180294115685902), (3832, 0.0), (383
3, 0.005463001192831069), (3834, 0.020301640200367777), (3835, 0.01243266431
1873584), (3836, 0.030647173835020643), (3837, 0.0), (3838, 0.0), (3839, 0.
0), (3840, 0.02199787130027927), (3841, 0.0), (3842, 0.019207011688036187),
(3843, 0.0), (3844, 0.0), (3845, 0.006398391533823579), (3846, 0.01212824199
1713645), (3847, 0.0), (3848, 0.005362623447780739), (3849, 0.00598595535275
7245), (3850, 0.0), (3851, 0.01700259462830383), (3852, 0.0), (3853, 0.06232
497806553705), (3854, 0.004834047584964279), (3855, 0.0), (3856, 0.013459443
74335227), (3857, 0.007295319576671534), (3858, 0.0532057494880263), (3859,
0.0), (3860, 0.0), (3861, 0.0), (3862, 0.0), (3863, 0.0), (3864, 0.0), (386
5, 0.0), (3866, 0.03374174181172873), (3867, 0.04549983577037269), (3868, 0.
0), (3869, 0.0), (3870, 0.0), (3871, 0.0), (3872, 0.0), (3873, 0.00562738898
6371831), (3874, 0.0), (3875, 0.0), (3876, 0.0), (3877, 0.0), (3878, 0.0),
(3879, 0.0), (3880, 0.0), (3881, 0.0), (3882, 0.006276972941502049), (3883,
0.0), (3884, 0.010360833935839135), (3885, 0.033309196383713935), (3886, 0.
0), (3887, 0.014657935478728876), (3888, 0.0), (3889, 0.0), (3890, 0.0), (38
91, 0.0), (3892, 0.0), (3893, 0.02657103669585359), (3894, 0.0), (3895, 0.01
7872860376212368), (3896, 0.0), (3897, 0.0), (3898, 0.0), (3899, 0.018995494
647454824), (3900, 0.0), (3901, 0.013441040141075552), (3902, 0.0), (3903,
0.0), (3904, 0.021590386572614553), (3905, 0.0), (3906, 0.0), (3907, 0.0),
(3908, 0.03918144504805072), (3909, 0.0), (3910, 0.0), (3911, 0.0), (3912,
0.007027546210068871), (3913, 0.0), (3914, 0.0), (3915, 0.0), (3916, 0.02133
544418069292), (3917, 0.0), (3918, 0.0), (3919, 0.0), (3920, 0.0240362877089
24374), (3921, 0.0), (3922, 0.0), (3923, 0.0), (3924, 0.0), (3925, 0.0), (39
26, 0.0), (3927, 0.0), (3928, 0.0), (3929, 0.023331436530467774), (3930, 0.
0), (3931, 0.04690966100424272), (3932, 0.025127615137180016), (3933, 0.0),
(3934, 0.0), (3935, 0.0), (3936, 0.0), (3937, 0.020420017065549193), (3938,
0.06480438042515084), (3939, 0.0), (3940, 0.004179867334422005), (3941, 0.00
5990259955784118), (3942, 0.04132621995347769), (3943, 0.00676315376577259
5), (3944, 0.0), (3945, 0.03192354781088845), (3946, 0.0), (3947, 0.0), (394
8, 0.02344657529536644), (3949, 0.0), (3950, 0.0), (3951, 0.0), (3952, 0.012
151496446083307), (3953, 0.0), (3954, 0.0), (3955, 0.0), (3956, 0.0172631389
8364027), (3957, 0.0), (3958, 0.0), (3959, 0.0), (3960, 0.0), (3961, 0.0),
(3962, 0.07741016628602321), (3963, 0.016939696706782213), (3964, 0.0), (396
5, 0.005668490895195058), (3966, 0.004476055516530503), (3967, 0.0), (3968,
0.0), (3969, 0.016220996855851003), (3970, 0.0), (3971, 0.0), (3972, 0.00647
7737531293158), (3973, 0.0), (3974, 0.0), (3975, 0.0), (3976, 0.006016005707
652179), (3977, 0.0), (3978, 0.0), (3979, 0.0), (3980, 0.0), (3981, 0.034191
12543580626), (3982, 0.0055285713813091305), (3983, 0.08438424822724339), (3
984, 0.0), (3985, 0.0), (3986, 0.026287567567440523), (3987, 0.0199290619311
33953), (3988, 0.028507117793133654), (3989, 0.06810439945461477), (3990, 0.
0), (3991, 0.0055259191625414116), (3992, 0.0), (3993, 0.03604148184907349),
(3994, 0.014731524417893231), (3995, 0.0), (3996, 0.0), (3997, 0.0), (3998,
0.02462176589907288), (3999, 0.0), (4000, 0.0), (4001, 0.0), (4002, 0.044689
191458146746), (4003, 0.015208313962375307), (4004, 0.014309089481217365),
(4005, 0.0), (4006, 0.0), (4007, 0.0), (4008, 0.0), (4009, 0.0), (4010, 0.
0), (4011, 0.01826752534935415), (4012, 0.024192169382549956), (4013, 0.0051
90437860568185), (4014, 0.0), (4015, 0.0), (4016, 0.0), (4017, 0.0), (4018,
0.0), (4019, 0.0), (4020, 0.0), (4021, 0.0), (4022, 0.01916358106005305), (4
023, 0.0), (4024, 0.0), (4025, 0.0), (4026, 0.0), (4027, 0.0), (4028, 0.0),
(4029, 0.0), (4030, 0.0), (4031, 0.0), (4032, 0.01721262065329481), (4033,
0.07811803934171806), (4034, 0.0), (4035, 0.020473212577425334), (4036, 0.
0), (4037, 0.0), (4038, 0.0), (4039, 0.02662818620968614), (4040, 0.0), (404
1, 0.0), (4042, 0.032161708311406974), (4043, 0.0), (4044, 0.0), (4045, 0.06
067005168197363), (4046, 0.02613553507213042), (4047, 0.0), (4048, 0.0), (40
49, 0.02485180307182606), (4050, 0.0), (4051, 0.0), (4052, 0.0), (4053, 0.
0), (4054, 0.02392996338091389), (4055, 0.028825976298968933), (4056, 0.0),
(4057, 0.0), (4058, 0.0), (4059, 0.0), (4060, 0.0), (4061, 0.054773786251284
88), (4062, 0.0), (4063, 0.0), (4064, 0.0), (4065, 0.027664951238610666), (4
066, 0.0), (4067, 0.0), (4068, 0.0), (4069, 0.018002992957463368), (4070, 0.
0075477330369805775), (4071, 0.02179539701670308), (4072, 0.0409671058747315
2), (4073, 0.017802949197837287), (4074, 0.011059999037848194), (4075, 0.0),
(4076, 0.014062311287086748), (4077, 0.029108526977860795), (4078, 0.0043610
15369641064), (4079, 0.0), (4080, 0.0), (4081, 0.028126730583797763), (4082,
0.0), (4083, 0.025097947441273187), (4084, 0.005474493170555133), (4085, 0.0
06344772646780073), (4086, 0.0), (4087, 0.0), (4088, 0.0), (4089, 0.0), (409
0, 0.0), (4091, 0.0), (4092, 0.0), (4093, 0.01399048566468773), (4094, 0.0),
(4095, 0.0), (4096, 0.0), (4097, 0.0), (4098, 0.0), (4099, 0.005410252510439
377), (4100, 0.0), (4101, 0.0), (4102, 0.0), (4103, 0.0), (4104, 0.069682897
22050071), (4105, 0.0), (4106, 0.011783824201068426), (4107, 0.0), (4108, 0.
0), (4109, 0.0), (4110, 0.0), (4111, 0.006734994318325397), (4112, 0.0), (41
13, 0.0), (4114, 0.005224746057072845), (4115, 0.0), (4116, 0.0), (4117, 0.0
35040358202548305), (4118, 0.0), (4119, 0.0), (4120, 0.0), (4121, 0.0), (412
2, 0.0), (4123, 0.0), (4124, 0.006299638279278828), (4125, 0.008987370932150
351), (4126, 0.0), (4127, 0.0), (4128, 0.022039697454112193), (4129, 0.00626
1659452448684), (4130, 0.0), (4131, 0.019438651634066568), (4132, 0.0), (413
3, 0.0), (4134, 0.0), (4135, 0.016960457582334092), (4136, 0.0), (4137, 0.02
9758318794943037), (4138, 0.0), (4139, 0.0), (4140, 0.0), (4141, 0.0), (414
2, 0.0), (4143, 0.04317553620691163), (4144, 0.0), (4145, 0.0135878332684593
58), (4146, 0.013502562270305773), (4147, 0.0), (4148, 0.0), (4149, 0.064778
04847826815), (4150, 0.0), (4151, 0.0), (4152, 0.0), (4153, 0.0), (4154, 0.0
150461346523309), (4155, 0.012813557503195756), (4156, 0.02056568587607270
4), (4157, 0.0), (4158, 0.020372851278762764), (4159, 0.0), (4160, 0.0276334
99862154076), (4161, 0.007542129150783524), (4162, 0.010048896073138048), (4
163, 0.0), (4164, 0.0), (4165, 0.0), (4166, 0.0), (4167, 0.0), (4168, 0.0),
(4169, 0.0262505502039109), (4170, 0.0), (4171, 0.0), (4172, 0.0), (4173, 0.
0), (4174, 0.0), (4175, 0.0), (4176, 0.0183937131504138), (4177, 0.0), (417
8, 0.0), (4179, 0.0), (4180, 0.0), (4181, 0.0), (4182, 0.00572600984299706
4), (4183, 0.03959287724741893), (4184, 0.0), (4185, 0.0), (4186, 0.0), (418
7, 0.028895242204601115), (4188, 0.0), (4189, 0.023427643252842818), (4190,
0.0), (4191, 0.006668531156575292), (4192, 0.0), (4193, 0.0364478872088299
9), (4194, 0.0), (4195, 0.025130423494555625), (4196, 0.0), (4197, 0.0), (41
98, 0.0), (4199, 0.0), (4200, 0.0), (4201, 0.0), (4202, 0.01832843342486292
8), (4203, 0.0), (4204, 0.0), (4205, 0.0), (4206, 0.0), (4207, 0.0), (4208,
0.0), (4209, 0.0), (4210, 0.0), (4211, 0.0), (4212, 0.0), (4213, 0.0), (421
4, 0.0), (4215, 0.0047549654624323675), (4216, 0.0), (4217, 0.0), (4218, 0.0
24703358587728885), (4219, 0.018838127334115672), (4220, 0.00494637995231842
6), (4221, 0.0), (4222, 0.0), (4223, 0.0), (4224, 0.0), (4225, 0.01919123202
5564015), (4226, 0.0), (4227, 0.0), (4228, 0.0), (4229, 0.0), (4230, 0.00600
4334778392853), (4231, 0.0), (4232, 0.0), (4233, 0.007103436599692038), (423
4, 0.0), (4235, 0.05413406483382726), (4236, 0.0), (4237, 0.0), (4238, 0.0),
(4239, 0.0), (4240, 0.0), (4241, 0.06917307106382808), (4242, 0.0), (4243,
0.0), (4244, 0.0), (4245, 0.018721101921414133), (4246, 0.0), (4247, 0.0),
(4248, 0.019254084566837373), (4249, 0.0), (4250, 0.034472938104093374), (42
51, 0.022396118029379398), (4252, 0.0), (4253, 0.0), (4254, 0.02238150203240
497), (4255, 0.0), (4256, 0.03663094688306773), (4257, 0.0), (4258, 0.006719
636205600988), (4259, 0.0), (4260, 0.0), (4261, 0.008459859886979875), (426
2, 0.009517313289721588), (4263, 0.0), (4264, 0.022586969659420128), (4265,
0.0), (4266, 0.020321890553112773), (4267, 0.024705224416157193), (4268, 0.
0), (4269, 0.022170956509778985), (4270, 0.0), (4271, 0.0), (4272, 0.0), (42
73, 0.018290561079800517), (4274, 0.0), (4275, 0.0054001909375229985), (427
6, 0.017876396878896805), (4277, 0.00802114625738905), (4278, 0.0), (4279,
0.0), (4280, 0.04222401126887029), (4281, 0.0), (4282, 0.0), (4283, 0.022097
832303152976), (4284, 0.057171291703811314), (4285, 0.0), (4286, 0.006586323
739701676), (4287, 0.0), (4288, 0.0), (4289, 0.0), (4290, 0.0), (4291, 0.0),
(4292, 0.0), (4293, 0.0), (4294, 0.0), (4295, 0.0), (4296, 0.029934017495601
616), (4297, 0.0), (4298, 0.0), (4299, 0.0), (4300, 0.0), (4301, 0.0), (430
2, 0.0), (4303, 0.0), (4304, 0.0), (4305, 0.0), (4306, 0.0), (4307, 0.0), (4
308, 0.0), (4309, 0.0), (4310, 0.019950193734041416), (4311, 0.0), (4312, 0.
03817827945407959), (4313, 0.0), (4314, 0.0), (4315, 0.01159230203533573),
(4316, 0.011637932213206512), (4317, 0.0), (4318, 0.0178273873177525), (431
9, 0.0), (4320, 0.0), (4321, 0.021876069102302775), (4322, 0.0), (4323, 0.
0), (4324, 0.0), (4325, 0.023819491037776048), (4326, 0.00431957114111891),
(4327, 0.02297598781829193), (4328, 0.0), (4329, 0.014837288052613036), (433
0, 0.0), (4331, 0.0), (4332, 0.022998092236196283), (4333, 0.0), (4334, 0.
0), (4335, 0.005722431795644589), (4336, 0.0), (4337, 0.04360126921699727),
(4338, 0.0), (4339, 0.0215402608026279), (4340, 0.0), (4341, 0.0), (4342, 0.
0), (4343, 0.07738397001189273), (4344, 0.027624753021796414), (4345, 0.0),
(4346, 0.0), (4347, 0.0), (4348, 0.0), (4349, 0.03251882381902114), (4350,
0.0), (4351, 0.005205531315997691), (4352, 0.0), (4353, 0.01174186665443760
5), (4354, 0.0), (4355, 0.0), (4356, 0.010737289343284533), (4357, 0.0167673
6459152054), (4358, 0.0), (4359, 0.0), (4360, 0.0), (4361, 0.0), (4362, 0.
0), (4363, 0.0), (4364, 0.05838366714806149), (4365, 0.0), (4366, 0.0), (436
7, 0.0), (4368, 0.0), (4369, 0.0), (4370, 0.0), (4371, 0.0), (4372, 0.0), (4
373, 0.0), (4374, 0.0), (4375, 0.0), (4376, 0.0), (4377, 0.0), (4378, 0.0),
(4379, 0.019574485027000894), (4380, 0.02294837377443372), (4381, 0.01488459
4599815166), (4382, 0.0), (4383, 0.0), (4384, 0.0), (4385, 0.0), (4386, 0.00
7870719138505655), (4387, 0.0), (4388, 0.005464494993906863), (4389, 0.0),
(4390, 0.0), (4391, 0.0), (4392, 0.0), (4393, 0.0), (4394, 0.0), (4395, 0.05
078973661732965), (4396, 0.0), (4397, 0.0), (4398, 0.01767043166269735), (43
99, 0.08212335910080115), (4400, 0.028566524360635562), (4401, 0.14505971470
107848), (4402, 0.0049805859614365615), (4403, 0.0), (4404, 0.0), (4405, 0.
0), (4406, 0.0), (4407, 0.0), (4408, 0.0071664499847577685), (4409, 0.016482
428089079813), (4410, 0.0), (4411, 0.0), (4412, 0.0), (4413, 0.0), (4414, 0.
04245604417295188), (4415, 0.0), (4416, 0.0), (4417, 0.0), (4418, 0.0), (441
9, 0.0), (4420, 0.0), (4421, 0.01662863732746083), (4422, 0.0), (4423, 0.019
07997488384204), (4424, 0.030608989791329765), (4425, 0.02927912405376505),
(4426, 0.021882873296392415), (4427, 0.018356807509096323), (4428, 0.0), (44
29, 0.0), (4430, 0.0), (4431, 0.0), (4432, 0.0), (4433, 0.0), (4434, 0.0),
(4435, 0.0), (4436, 0.0), (4437, 0.0), (4438, 0.0), (4439, 0.0), (4440, 0.02
7473714904858525), (4441, 0.0), (4442, 0.0), (4443, 0.0), (4444, 0.0), (444
5, 0.0), (4446, 0.0), (4447, 0.0), (4448, 0.017814209588107862), (4449, 0.
0), (4450, 0.06971679920186875), (4451, 0.0), (4452, 0.0), (4453, 0.0), (445
4, 0.023424585240631055), (4455, 0.0), (4456, 0.0), (4457, 0.0), (4458, 0.
0), (4459, 0.0), (4460, 0.006311693724683517), (4461, 0.0), (4462, 0.0), (44
63, 0.0), (4464, 0.0), (4465, 0.013611975464612628), (4466, 0.02434852585162
5974), (4467, 0.027265241651168937), (4468, 0.02555702437819166), (4469, 0.
0), (4470, 0.021095029259797914), (4471, 0.0), (4472, 0.0), (4473, 0.0), (44
74, 0.0), (4475, 0.0), (4476, 0.013953311230662652), (4477, 0.0), (4478, 0.
0), (4479, 0.03518184119185134), (4480, 0.0), (4481, 0.0), (4482, 0.02999285
944428568), (4483, 0.0), (4484, 0.0), (4485, 0.0225570455522579), (4486, 0.0
17708468313204367), (4487, 0.02613492374218533), (4488, 0.0), (4489, 0.0),
(4490, 0.0), (4491, 0.0), (4492, 0.0), (4493, 0.0), (4494, 0.0), (4495, 0.03
2921267277261926), (4496, 0.0), (4497, 0.0), (4498, 0.0), (4499, 0.049568221
09879931), (4500, 0.0), (4501, 0.0), (4502, 0.0), (4503, 0.0), (4504, 0.0),
(4505, 0.0), (4506, 0.0), (4507, 0.0045642224890969476), (4508, 0.0), (4509,
0.0), (4510, 0.0), (4511, 0.0), (4512, 0.0), (4513, 0.008124900774879708),
(4514, 0.0), (4515, 0.0), (4516, 0.01828435803766876), (4517, 0.0), (4518,
0.0), (4519, 0.0), (4520, 0.0), (4521, 0.0), (4522, 0.0), (4523, 0.0), (452
4, 0.0), (4525, 0.0), (4526, 0.0), (4527, 0.021353809707158267), (4528, 0.
0), (4529, 0.0), (4530, 0.0), (4531, 0.0), (4532, 0.0), (4533, 0.0), (4534,
0.0), (4535, 0.03429038603172884), (4536, 0.0), (4537, 0.0), (4538, 0.0), (4
539, 0.0), (4540, 0.0), (4541, 0.0), (4542, 0.0816725222254055), (4543, 0.
0), (4544, 0.0), (4545, 0.0), (4546, 0.006306354591100198), (4547, 0.0), (45
48, 0.0), (4549, 0.005830484377055269), (4550, 0.0), (4551, 0.0), (4552, 0.0
27583146841740295), (4553, 0.0), (4554, 0.006576423923435974), (4555, 0.0625
2909698222003), (4556, 0.0), (4557, 0.0063462929557308945), (4558, 0.0), (45
59, 0.0), (4560, 0.0), (4561, 0.0), (4562, 0.0), (4563, 0.0309537684806185
4), (4564, 0.0), (4565, 0.013767380201593415), (4566, 0.0), (4567, 0.0), (45
68, 0.0), (4569, 0.0), (4570, 0.0), (4571, 0.0), (4572, 0.0), (4573, 0.0),
(4574, 0.0), (4575, 0.0361487232078978), (4576, 0.0), (4577, 0.0), (4578, 0.
0), (4579, 0.0439404528233469), (4580, 0.0), (4581, 0.0), (4582, 0.0), (458
3, 0.0), (4584, 0.0), (4585, 0.0), (4586, 0.0), (4587, 0.02093113484902848
7), (4588, 0.0), (4589, 0.0), (4590, 0.0), (4591, 0.0), (4592, 0.01224382977
6903224), (4593, 0.01916619497441802), (4594, 0.0), (4595, 0.0), (4596, 0.
0), (4597, 0.0), (4598, 0.0), (4599, 0.04404516443229754), (4600, 0.0), (460
1, 0.023074153179513095), (4602, 0.0), (4603, 0.0), (4604, 0.0), (4605, 0.
0), (4606, 0.0), (4607, 0.02074347298564), (4608, 0.03424882225781649), (460
9, 0.0), (4610, 0.0), (4611, 0.0), (4612, 0.0), (4613, 0.0), (4614, 0.0), (4
615, 0.0), (4616, 0.0), (4617, 0.0), (4618, 0.0), (4619, 0.01410161296996024
4), (4620, 0.014903071608683819), (4621, 0.0060671287373734025), (4622, 0.
0), (4623, 0.026119458433383636), (4624, 0.02531467786145811), (4625, 0.0),
(4626, 0.0), (4627, 0.0), (4628, 0.0), (4629, 0.0), (4630, 0.0), (4631, 0.
0), (4632, 0.0), (4633, 0.0), (4634, 0.0), (4635, 0.0), (4636, 0.0), (4637,
0.0), (4638, 0.01135719252991956), (4639, 0.016989959348787505), (4640, 0.
0), (4641, 0.0), (4642, 0.0), (4643, 0.0), (4644, 0.0), (4645, 0.0), (4646,
0.03979048385232708), (4647, 0.0), (4648, 0.05826979470835855), (4649, 0.022
732213598835108), (4650, 0.0), (4651, 0.021180561831487275), (4652, 0.014785
93788750288), (4653, 0.0), (4654, 0.006331897969251694), (4655, 0.0), (4656,
0.0), (4657, 0.0), (4658, 0.0), (4659, 0.016815669724536558), (4660, 0.01487
6725271542306), (4661, 0.0), (4662, 0.0), (4663, 0.0), (4664, 0.006398665118
325466), (4665, 0.0), (4666, 0.0), (4667, 0.02411687965570547), (4668, 0.020
24783003264817), (4669, 0.025500315594252258), (4670, 0.033762530124275214),
(4671, 0.06397661186887463), (4672, 0.0), (4673, 0.0), (4674, 0.0), (4675,
0.02217969080216694), (4676, 0.0), (4677, 0.009911335160001488), (4678, 0.
0), (4679, 0.0), (4680, 0.0), (4681, 0.0), (4682, 0.0), (4683, 0.0), (4684,
0.0), (4685, 0.0), (4686, 0.0), (4687, 0.0), (4688, 0.016106044092463547),
(4689, 0.0), (4690, 0.0445824294545851), (4691, 0.02363414733751951), (4692,
0.015072021096073406), (4693, 0.025034350194709284), (4694, 0.0), (4695, 0.0
06606737900229252), (4696, 0.0), (4697, 0.0), (4698, 0.0), (4699, 0.0), (470
0, 0.019818430498681452), (4701, 0.004017122134485077), (4702, 0.0), (4703,
0.0), (4704, 0.0), (4705, 0.0), (4706, 0.0), (4707, 0.0), (4708, 0.007963861
578731843), (4709, 0.0), (4710, 0.0), (4711, 0.0), (4712, 0.0), (4713, 0.0),
(4714, 0.05039884406377344), (4715, 0.01862783784751713), (4716, 0.0), (471
7, 0.0), (4718, 0.0), (4719, 0.0), (4720, 0.0), (4721, 0.0), (4722, 0.0), (4
723, 0.0), (4724, 0.020846970361709627), (4725, 0.022697321420657092), (472
6, 0.0), (4727, 0.004715312436126916), (4728, 0.027642318690695854), (4729,
0.0), (4730, 0.0), (4731, 0.0), (4732, 0.0), (4733, 0.0), (4734, 0.029608061
345827892), (4735, 0.022542478969123807), (4736, 0.0), (4737, 0.0), (4738,
0.0), (4739, 0.0), (4740, 0.019131263547385632), (4741, 0.02217208556943346
7), (4742, 0.0), (4743, 0.0), (4744, 0.0), (4745, 0.017218556708017464), (47
46, 0.0), (4747, 0.0), (4748, 0.0), (4749, 0.0), (4750, 0.0), (4751, 0.0),
(4752, 0.0), (4753, 0.0), (4754, 0.0), (4755, 0.0), (4756, 0.0), (4757, 0.
0), (4758, 0.03223820608970436), (4759, 0.07573748422385312), (4760, 0.01358
965162575368), (4761, 0.024509012447597317), (4762, 0.0), (4763, 0.0), (476
4, 0.023904360750831317), (4765, 0.0), (4766, 0.0), (4767, 0.0), (4768, 0.
0), (4769, 0.027358833532339456), (4770, 0.0), (4771, 0.0), (4772, 0.0434755
4267008958), (4773, 0.059161335039496374), (4774, 0.0), (4775, 0.0), (4776,
0.0), (4777, 0.0), (4778, 0.053684211011249795), (4779, 0.0), (4780, 0.0),
(4781, 0.0), (4782, 0.0), (4783, 0.0), (4784, 0.0), (4785, 0.0), (4786, 0.
0), (4787, 0.054602691488508756), (4788, 0.03260549091508807), (4789, 0.0),
(4790, 0.0), (4791, 0.0), (4792, 0.0), (4793, 0.0), (4794, 0.0), (4795, 0.
0), (4796, 0.01616802010341423), (4797, 0.0), (4798, 0.04755747664537595),
(4799, 0.0), (4800, 0.0), (4801, 0.0), (4802, 0.0)]

In [ ]: len(similarity_score)

Out[ ]: 4803

In [ ]: # sorting the movies based on their similarity score

sorted_similar_movies = sorted(similarity_score, key = lambda x:x[1], revers


print(sorted_similar_movies)
[(68, 1.0000000000000002), (79, 0.40890433998005965), (31, 0.314670524494775
06), (7, 0.23944423963486405), (16, 0.22704403782296803), (26, 0.21566241096
831154), (85, 0.20615862984665329), (182, 0.19573956139611606), (511, 0.1670
2973947860686), (3623, 0.1609246088135586), (64, 0.15299924139445145), (203,
0.14818667948665118), (174, 0.1471993120942043), (4401, 0.1450597147010784
8), (101, 0.14401677581826294), (46, 0.14216268867232237), (169, 0.138094701
3224906), (1740, 0.13624382641690763), (94, 0.1361681957902901), (788, 0.133
0589507422922), (126, 0.13263982780511066), (131, 0.13137698586006535), (33,
0.13089810941050173), (2487, 0.12309731939910507), (783, 0.1216299556204037
7), (138, 0.11846458075866884), (2442, 0.11725512335483321), (661, 0.1171929
4096248463), (607, 0.11387063493435637), (38, 0.1126182690487113), (2651, 0.
1121878787373205), (353, 0.1116846512704428), (122, 0.10850296033661253), (1
553, 0.1079782217151326), (1451, 0.107849394974707), (242, 0.106303390223270
12), (618, 0.1025469263536857), (720, 0.10087565815879387), (2390, 0.1000643
6988307142), (1210, 0.09911415072466837), (3443, 0.09877044853778177), (954,
0.0986387254713941), (2235, 0.09829572149918514), (3385, 0.0976001840727915
3), (14, 0.09657127116284188), (870, 0.09574351274416697), (1406, 0.09571953
277826747), (2875, 0.0957179952078477), (2880, 0.09551596914906027), (800,
0.09503280362598002), (1368, 0.09403221247985363), (307, 0.0936371128742169
7), (1192, 0.09330019170580414), (3116, 0.09304312287733228), (3166, 0.09247
435261735147), (3386, 0.09147088765725242), (232, 0.09092162527012912), (20
5, 0.0897400597380081), (356, 0.08926961894498348), (39, 0.0890276648130631
1), (2186, 0.08896119950952218), (1282, 0.0889047488292469), (882, 0.0885381
5053442779), (1956, 0.08773417509413474), (940, 0.0875800937999186), (3190,
0.08740301658450944), (2868, 0.08634041463423897), (3048, 0.0857668148705227
6), (3983, 0.08438424822724339), (78, 0.0841900692701125), (3267, 0.08389285
844073753), (361, 0.0837387717151648), (945, 0.08346370644008311), (1573, 0.
08334194351908195), (1015, 0.08302788897735795), (1135, 0.0829219351820905
4), (2778, 0.08254666436931932), (3395, 0.08227841855020515), (960, 0.082273
94174342709), (1274, 0.08214849871621649), (4399, 0.08212335910080115), (206
6, 0.08204329549497309), (401, 0.08177165724855545), (1170, 0.08174451089698
71), (4542, 0.0816725222254055), (198, 0.08153087466980356), (129, 0.0810117
0886251947), (3106, 0.08083102554049604), (30, 0.0807734659476981), (1864,
0.08057474704343517), (1428, 0.08051197077783612), (2063, 0.0800962681432424
9), (3092, 0.08004994895394213), (2447, 0.08000920005123051), (20, 0.0798117
3664799915), (1029, 0.07915366166146186), (19, 0.07883282546834255), (1710,
0.07824700133865668), (4033, 0.07811803934171806), (2411, 0.077906433594599
5), (2625, 0.07769873829656067), (501, 0.07756977094853777), (3962, 0.077410
16628602321), (4343, 0.07738397001189273), (1780, 0.0769610566096618), (6,
0.07692837576335507), (9, 0.07599206098164225), (2823, 0.07587317737557173),
(4759, 0.07573748422385312), (10, 0.07536074882460438), (3211, 0.07522613969
813607), (421, 0.0748823377910105), (763, 0.07475725913043305), (2285, 0.074
35320523526195), (674, 0.074341814879682), (318, 0.07430419806186547), (323
1, 0.07410985848722018), (1821, 0.07385452150655154), (3286, 0.0735782866126
7143), (1459, 0.07353335610394504), (91, 0.07332047182734806), (396, 0.07306
073690718969), (2706, 0.0727480129402545), (1651, 0.0726634034884808), (641,
0.07251948597232677), (725, 0.07243344882526885), (2221, 0.0718961234450113
8), (2044, 0.07183019602913242), (2395, 0.07157685208126081), (885, 0.071277
13298596235), (72, 0.07116913464035789), (1972, 0.07116910089698233), (1180,
0.07103227957667532), (2492, 0.07070815892889158), (2580, 0.0698722056455441
2), (4450, 0.06971679920186875), (4104, 0.06968289722050071), (1230, 0.06947
167248339838), (460, 0.0694163372244785), (4241, 0.06917307106382808), (346
6, 0.06915707332486215), (654, 0.06893375253927388), (1317, 0.06892000340269
082), (840, 0.0686973883642302), (185, 0.06860505213764485), (1654, 0.068216
05798764344), (1652, 0.06815466463320763), (3989, 0.06810439945461477), (131
1, 0.06810168580871279), (238, 0.06736274873833466), (1720, 0.06715795913251
69), (2648, 0.06710386698234966), (1664, 0.06658410307179888), (3207, 0.0659
6396019383235), (3414, 0.06591842128545326), (805, 0.0657886948202446), (136
5, 0.0657679891795958), (1971, 0.06573440942354027), (166, 0.065610620511567
05), (278, 0.06499232726167231), (3938, 0.06480438042515084), (4149, 0.06477
804847826815), (3172, 0.06470675164054021), (1165, 0.06457903857333991), (4
1, 0.06454289714171595), (1494, 0.0644220263449984), (4671, 0.06397661186887
463), (3405, 0.06381703095982828), (705, 0.06351892473185387), (1277, 0.0633
8230186101917), (1128, 0.06295832431616688), (2138, 0.06254181421851357), (4
555, 0.06252909698222003), (95, 0.06252897649940424), (2593, 0.0625218899389
0204), (1670, 0.06235654345547298), (3853, 0.06232497806553705), (436, 0.061
954058834662235), (332, 0.06192334899399138), (2183, 0.06120097392605188),
(2598, 0.06112708908319607), (28, 0.061074402219665376), (3249, 0.0610527483
99677476), (1482, 0.06096851525832482), (4045, 0.06067005168197363), (1753,
0.060099018932560005), (382, 0.059663166409934645), (291, 0.059551165221143
2), (1874, 0.05916237967591406), (4773, 0.059161335039496374), (420, 0.05915
718018925476), (2326, 0.05904066910904872), (680, 0.05890384845411809), (235
2, 0.05870426540050588), (3033, 0.058550061185869764), (599, 0.0585448899878
6811), (4364, 0.05838366714806149), (4648, 0.05826979470835855), (2127, 0.05
8054044285623885), (508, 0.05803681647993076), (2607, 0.0578729255800157),
(1916, 0.05766294608434259), (1502, 0.05758271625402656), (3749, 0.057349584
988722155), (2089, 0.057211048289395244), (4284, 0.057171291703811314), (225
3, 0.05681494691727105), (675, 0.05672203492643424), (789, 0.056716770522809
89), (507, 0.056637380119931136), (1233, 0.05663349067122292), (1200, 0.0566
25398955546954), (270, 0.05661980517846482), (2375, 0.05650923359772611), (1
041, 0.055843043459134975), (1213, 0.05548684862313957), (3219, 0.0549451957
8521795), (4061, 0.05477378625128488), (1, 0.0546448279236134), (4787, 0.054
602691488508756), (631, 0.05437912554741705), (43, 0.054316692518940446), (7
82, 0.05413722158197985), (4235, 0.05413406483382726), (1484, 0.054003428882
09682), (3321, 0.0539449131388131), (1152, 0.05371817026868509), (4778, 0.05
3684211011249795), (3142, 0.05368229521949337), (3802, 0.05331563583150994
4), (728, 0.05328854507498712), (2934, 0.05327698315797834), (3858, 0.053205
7494880263), (1978, 0.05263105719648286), (330, 0.05239830242647194), (1495,
0.052089758991002884), (457, 0.05195626044862152), (664, 0.0517756290724457
9), (412, 0.05174696993121716), (2805, 0.051638235349561426), (1703, 0.05157
853453841927), (76, 0.051392823037065084), (833, 0.05108755181785102), (329,
0.05105416620180264), (3777, 0.051012922095374356), (262, 0.0509264514840283
36), (4395, 0.05078973661732965), (163, 0.05057552351215676), (845, 0.050518
88852390088), (4714, 0.05039884406377344), (574, 0.05022277713260228), (171
5, 0.0502042207180637), (2822, 0.05004607809555484), (2364, 0.05004140595149
7), (54, 0.04976759996785291), (873, 0.04973721665258645), (331, 0.049672226
92142935), (4499, 0.04956822109879931), (2937, 0.04951964286320249), (1016,
0.04944875376701028), (956, 0.04937542698440879), (2039, 0.0491592862688100
7), (98, 0.04905848735292447), (199, 0.04891685287126126), (2525, 0.04884134
870098054), (2164, 0.04845634456143335), (1086, 0.048063712599667144), (129
1, 0.04783904148143617), (3059, 0.047708204062145786), (4798, 0.047557476645
37595), (911, 0.04751544760285254), (1358, 0.04742084816160476), (3354, 0.04
739919188599552), (1024, 0.04722204353510586), (207, 0.04716662478030318),
(1641, 0.0471160608527426), (1650, 0.047112731875006614), (3105, 0.046910006
87921332), (3931, 0.04690966100424272), (2523, 0.04673197333737898), (2046,
0.04660009777128106), (2544, 0.046528447993020285), (1367, 0.046430386109993
82), (3643, 0.04624119617926222), (3002, 0.04617193209491663), (3195, 0.0460
4867713102017), (3494, 0.04599666191566592), (324, 0.04588243562973823), (97
7, 0.045549138020087365), (3867, 0.04549983577037269), (1398, 0.045265410933
32748), (483, 0.04522531422740274), (545, 0.04505643420929539), (466, 0.0448
8043666368963), (1604, 0.044867955476829424), (539, 0.04473112014524868), (4
002, 0.044689191458146746), (953, 0.044641883333497764), (4690, 0.0445824294
545851), (1967, 0.04448386784127756), (2129, 0.04441462736290345), (178, 0.0
4407535006798218), (4599, 0.04404516443229754), (1932, 0.04398373508251108),
(4579, 0.0439404528233469), (1272, 0.04393079202558518), (546, 0.04388640538
1754055), (3751, 0.043802457191498154), (3184, 0.04367161911100059), (4337,
0.04360126921699727), (4772, 0.04347554267008958), (1249, 0.0433426436103335
7), (4143, 0.04317553620691163), (1899, 0.043068143125090795), (1392, 0.0430
4915755416113), (2899, 0.04286732256027681), (2482, 0.04280170587844845), (2
848, 0.04267572703014345), (1696, 0.04253023771707183), (4414, 0.04245604417
295188), (136, 0.04236016592798786), (2964, 0.04228963100125496), (241, 0.04
2240917371191684), (2991, 0.04224078691318641), (4280, 0.04222401126887029),
(441, 0.04206174422572767), (464, 0.042050879015941144), (726, 0.04201009600
845739), (2107, 0.04194746387969491), (279, 0.04184542612623717), (929, 0.04
170744779575931), (1990, 0.04169093081182787), (3819, 0.04159469121197377),
(3463, 0.04158573801943963), (2581, 0.04154977620589559), (18, 0.04140526820
609594), (3942, 0.04132621995347769), (1039, 0.041301243392605526), (316, 0.
04129430542926027), (2741, 0.04126654085188786), (1480, 0.0412473855718861
2), (3556, 0.04122354855895735), (1155, 0.041199423933513335), (3607, 0.0411
4976213545788), (2145, 0.041127015181374724), (2405, 0.041107216457004186),
(249, 0.041102703416918324), (4072, 0.04096710587473152), (2612, 0.040868174
36457406), (3069, 0.04086624792708708), (256, 0.04078189289079018), (2346,
0.04015213391554299), (2205, 0.04010258905636977), (310, 0.0401022075583998
4), (2987, 0.0401017117905758), (1288, 0.04006766232762396), (309, 0.0400156
3294972253), (752, 0.0398994371919455), (2397, 0.03987032301941668), (1865,
0.039865052319853614), (1055, 0.03982043367815015), (4646, 0.039790483852327
08), (3828, 0.039644799154214316), (4183, 0.03959287724741893), (2665, 0.039
48485081674015), (1396, 0.03943455269309808), (3568, 0.03936938241129109),
(3549, 0.039361099684485326), (3083, 0.03928621428262567), (1439, 0.03927952
821190197), (451, 0.03925349815973287), (2151, 0.03921147731072447), (425,
0.03920561889476084), (3908, 0.03918144504805072), (446, 0.0391593776900676
5), (110, 0.03910341630662284), (1177, 0.0390578006421526), (1649, 0.0387924
6423015526), (3347, 0.03875543955174386), (3825, 0.03872747584201364), (241
0, 0.03867449078728275), (536, 0.03863489699067402), (3012, 0.03863100457153
548), (1446, 0.038552254099542015), (1636, 0.03850318986266549), (3469, 0.03
8306369147501615), (4312, 0.03817827945407959), (3664, 0.03808287613311466),
(3133, 0.037973365929431076), (3274, 0.037955958126377726), (761, 0.03790130
2166954254), (889, 0.03786402108262418), (2028, 0.03783022143871327), (3612,
0.03771097906912784), (1712, 0.03767059682227396), (56, 0.0376540797713692
4), (3160, 0.03733084279375338), (3699, 0.03722889544365498), (47, 0.0371685
1751705058), (732, 0.03704033842169193), (2043, 0.03694798653833962), (3442,
0.036939399366845885), (103, 0.036898074457195514), (564, 0.0367757406545857
5), (3812, 0.036765968036515634), (271, 0.03673080173232901), (4256, 0.03663
094688306773), (370, 0.03661624072370357), (1324, 0.03658185418243703), (206
0, 0.03645484115490725), (4193, 0.03644788720882999), (2387, 0.0364127235227
7158), (1097, 0.036306132637175935), (2335, 0.03616435192671273), (4575, 0.0
361487232078978), (57, 0.03611189350591964), (864, 0.03610919842686516), (14
69, 0.036090277231484724), (3150, 0.036068049902245186), (3993, 0.0360414818
4907349), (1542, 0.0360115773438487), (3705, 0.035890783607435764), (1445,
0.035839217386984104), (102, 0.03558469248172752), (1456, 0.0355564114552471
3), (976, 0.03552989221799278), (2317, 0.035459013674969266), (111, 0.035454
313825025605), (3616, 0.03544221427373788), (158, 0.03541549130163172), (70
0, 0.03540833127189545), (1802, 0.0353897069101529), (193, 0.035371661415323
65), (35, 0.035350090674865595), (127, 0.03534673369287746), (254, 0.0353165
3184850298), (1247, 0.03527697357435624), (2114, 0.03523854398723343), (244
4, 0.03519980714737147), (4479, 0.03518184119185134), (2728, 0.0351146547610
2779), (1052, 0.035061644119600666), (4117, 0.035040358202548305), (3208, 0.
03502992033944778), (1390, 0.03499008772364489), (402, 0.03489741649679879),
(2630, 0.03486303727735512), (183, 0.03486109654678598), (668, 0.03483191707
1847955), (1794, 0.034802596297112), (587, 0.03478206614807508), (322, 0.034
71484926308493), (2228, 0.03462856218656094), (83, 0.03456975188175575), (24
75, 0.03451065786019304), (3816, 0.03449615846381329), (4250, 0.034472938104
093374), (2967, 0.03446024167625945), (1083, 0.034433275222228145), (3652,
0.03440239657583764), (1297, 0.034369083646536874), (229, 0.0343329741375086
8), (4535, 0.03429038603172884), (4608, 0.03424882225781649), (3981, 0.03419
112543580626), (2007, 0.034133600903084024), (1872, 0.03413011795951668), (2
425, 0.03411111608541534), (972, 0.03408568528429526), (2841, 0.034034327338
15667), (1490, 0.03399400789018407), (646, 0.03379593115087771), (2270, 0.03
37902562504549), (855, 0.03378697436406514), (4670, 0.033762530124275214),
(328, 0.033761014774220784), (2845, 0.03375640830637995), (2360, 0.033755196
715061615), (3866, 0.03374174181172873), (440, 0.03366311131208971), (2541,
0.03365975285314387), (2101, 0.0336080634005571), (0, 0.033570748780675445),
(108, 0.0334797534915236), (61, 0.0334730220502558), (96, 0.0334050212054426
14), (495, 0.033400574207819105), (2832, 0.03333078366681674), (1583, 0.0333
107701767908), (3885, 0.033309196383713935), (733, 0.03323928011845674), (75
5, 0.03319983641642123), (3509, 0.033116546087329), (1617, 0.033115473154594
33), (260, 0.03309287957030214), (311, 0.033030501399198775), (2972, 0.03299
738145002257), (70, 0.03296111942451571), (4495, 0.032921267277261926), (296
6, 0.03286402394994079), (570, 0.032854594982761554), (1782, 0.0328131878307
91964), (3224, 0.03281132058326441), (1209, 0.03280276084791804), (1119, 0.0
32793628877686325), (3505, 0.032758803936985076), (3204, 0.0327359516636018
4), (3561, 0.032722475316026345), (922, 0.03271895346827846), (4, 0.03268943
310073386), (2111, 0.03267950846010693), (4788, 0.03260549091508807), (4349,
0.03251882381902114), (735, 0.03249407809712077), (2163, 0.0324934457138921
9), (1294, 0.0324382376683082), (149, 0.032405490339878086), (1984, 0.032366
32264729962), (3473, 0.03235747296026368), (150, 0.032355140034882886), (49
0, 0.03229643164515758), (4758, 0.03223820608970436), (1259, 0.0322265890502
4299), (2995, 0.032220055904694275), (4042, 0.032161708311406974), (3636, 0.
0321559984487356), (3232, 0.0320219156120307), (168, 0.03199997003691454),
(1005, 0.031957317910297905), (212, 0.031955376267947054), (3945, 0.03192354
781088845), (2605, 0.03189379458924232), (813, 0.031856213586461846), (36,
0.03185325269937555), (2684, 0.03176815572726404), (3421, 0.0317409361955195
15), (59, 0.031705778955831605), (3013, 0.031704400213876466), (366, 0.03159
8550875319466), (1303, 0.03158972031654986), (228, 0.03156314015161786), (12
50, 0.03155682280457022), (3594, 0.03152535040530148), (1986, 0.031489108344
01048), (2314, 0.03139632461201054), (1093, 0.031395152435308965), (334, 0.0
31347407861047574), (2093, 0.03130891382964081), (345, 0.03123817830561087),
(920, 0.0311792452957307), (123, 0.03115447480800445), (600, 0.0311407254780
8784), (2735, 0.03102116841626016), (4563, 0.03095376848061854), (393, 0.030
94965055877973), (1034, 0.030908255130846083), (459, 0.030903599849334107),
(487, 0.03086186943552198), (146, 0.030799807030003203), (2372, 0.0306965606
28030757), (2794, 0.030678277022217974), (125, 0.030670701698560877), (3836,
0.030647173835020643), (577, 0.030643690717104117), (4424, 0.030608989791329
765), (27, 0.030581282093826635), (342, 0.03055604849893611), (1790, 0.03053
934771755873), (3618, 0.03050339668457572), (2363, 0.030486203027000194), (5
03, 0.03042500912175944), (52, 0.03032640708636649), (2334, 0.03027982461704
874), (1201, 0.03014375138391351), (365, 0.030131254691185622), (1440, 0.030
019380465094406), (1001, 0.030016226048788373), (2327, 0.02999829717038532
4), (4482, 0.02999285944428568), (1518, 0.029977193753579982), (775, 0.02994
192428424238), (4296, 0.029934017495601616), (419, 0.029931783915320555), (8
78, 0.029916995295350024), (1925, 0.029886006029653935), (635, 0.02984758652
8307754), (799, 0.029841710386129906), (3377, 0.02983548756202151), (4137,
0.029758318794943037), (1079, 0.029718753055255943), (1044, 0.02965370593364
0744), (581, 0.029641629074631838), (201, 0.029641586366427965), (4734, 0.02
9608061345827892), (1750, 0.029593601918204107), (1191, 0.02956888741521373
3), (219, 0.029541056427015617), (2010, 0.029531364337161043), (461, 0.02951
048649267677), (2918, 0.029481994748350324), (3441, 0.02947216424014573), (2
761, 0.02944322208224412), (400, 0.029431908153005375), (3305, 0.02939449080
173264), (2815, 0.029289301886701397), (4425, 0.02927912405376505), (2561,
0.029255496014252085), (2075, 0.02922911800102484), (128, 0.0292088906595198
84), (1332, 0.02912620492023835), (4077, 0.029108526977860795), (2451, 0.029
082660500344026), (2047, 0.029078011243339873), (2981, 0.02891283538252470
4), (4187, 0.028895242204601115), (225, 0.02889267862219055), (414, 0.028859
217357062324), (2912, 0.02885299162814698), (1285, 0.028841581905573885), (4
055, 0.028825976298968933), (200, 0.028786237160676464), (32, 0.028782099134
26701), (1827, 0.02872107780962734), (67, 0.028674707838967486), (2171, 0.02
866703722928266), (165, 0.028663192805703147), (965, 0.02857826964363057),
(4400, 0.028566524360635562), (1059, 0.028527350137641256), (3988, 0.0285071
17793133654), (1434, 0.028464480707509215), (931, 0.02845676257575145), (123
7, 0.028447497483465273), (107, 0.028279993139118376), (1507, 0.028259784172
817617), (1880, 0.02824993681145711), (1068, 0.02821344360811235), (4081, 0.
028126730583797763), (2654, 0.028051753547982776), (3575, 0.0280511110444764
9), (685, 0.02799170392405026), (1922, 0.02797555573987417), (493, 0.0279631
65198260254), (306, 0.027871722076876562), (601, 0.027861070671165514), (36
2, 0.027852148405458053), (300, 0.027781548115258042), (2591, 0.027774522604
879854), (778, 0.027733825665927393), (3566, 0.027711809896317347), (305, 0.
027682511414037294), (4065, 0.027664951238610666), (4728, 0.0276423186906958
54), (4160, 0.027633499862154076), (4344, 0.027624753021796414), (593, 0.027
59599095893918), (4552, 0.027583146841740295), (51, 0.027557058720715163),
(3006, 0.027551962845643485), (233, 0.027530962805956946), (1468, 0.02749618
965728028), (967, 0.02749066096114915), (3350, 0.027489752426467326), (4440,
0.027473714904858525), (415, 0.027467090382297804), (319, 0.0274666624308378
54), (1014, 0.02745267461909283), (3260, 0.027431129312523755), (939, 0.0274
286269728791), (211, 0.027417407508438504), (1596, 0.02741158126652205), (14
96, 0.027390066138247276), (4769, 0.027358833532339456), (82, 0.027350200955
172085), (1002, 0.027340070707485536), (87, 0.02732356669290361), (562, 0.02
7318992637885058), (3361, 0.02731113912836786), (713, 0.02728221925010165),
(4467, 0.027265241651168937), (3679, 0.027261155949072205), (3439, 0.0272474
78505983014), (2803, 0.02718713591814251), (196, 0.02717101029399197), (838,
0.02714525724085642), (1377, 0.027130064644328697), (3795, 0.027114531769966
414), (1302, 0.027063908341794417), (2403, 0.02705584569090424), (1531, 0.02
7050309264943777), (3130, 0.02703338167663571), (3526, 0.02701995723558966
3), (1569, 0.027012538173616877), (1399, 0.02686975249233259), (222, 0.02684
6153717126807), (2128, 0.026841668277151096), (1852, 0.026815823663546113),
(740, 0.026809742292027563), (2320, 0.02680256271335155), (2196, 0.026775793
54032517), (313, 0.02675895835454398), (2755, 0.026733334571908508), (1344,
0.02672534925812007), (3089, 0.026717074424634786), (1826, 0.026692346496334
902), (609, 0.02665691012785295), (2198, 0.026646645268953502), (3813, 0.026
638326675638535), (4039, 0.02662818620968614), (2103, 0.026627522363514726),
(1058, 0.026617409919706597), (3237, 0.026608936468904783), (2226, 0.0265975
2152996607), (3893, 0.02657103669585359), (1070, 0.026522652349824424), (65
7, 0.026498581330749976), (1296, 0.02649391746378832), (480, 0.0264586443194
12312), (1819, 0.026439619891902282), (476, 0.026431637652770353), (371, 0.0
2642518106534205), (2479, 0.026386600838295124), (2213, 0.02637773604889127
5), (230, 0.02635938132298936), (699, 0.026347088153186756), (1633, 0.026340
27975168779), (3986, 0.026287567567440523), (4169, 0.0262505502039109), (202
4, 0.02622336779606184), (266, 0.026218065199683213), (1198, 0.0261986767184
6427), (3318, 0.026180749685803896), (4046, 0.02613553507213042), (4487, 0.0
2613492374218533), (4623, 0.026119458433383636), (97, 0.026094558260580214),
(3582, 0.026061904540668968), (74, 0.02605515302790224), (426, 0.02602827458
8226968), (1395, 0.025992719404850925), (665, 0.025981132097714528), (151,
0.025966615810654573), (263, 0.02595392941154679), (2380, 0.0259401710854797
8), (3245, 0.025933193063478615), (2292, 0.025897625369234702), (475, 0.0258
91586696414486), (377, 0.025873509190502346), (1326, 0.025858551980448088),
(2961, 0.025847768393518617), (1757, 0.025828493366640944), (2289, 0.0258009
4596544835), (456, 0.025796243793247686), (410, 0.02579223145375466), (2768,
0.025774410850104883), (2796, 0.025760040101317352), (335, 0.025730637194388
67), (2826, 0.025725926387696454), (768, 0.025676174041818545), (2578, 0.025
673436853464238), (2077, 0.02563850002873429), (3181, 0.025565486774277203),
(4468, 0.02555702437819166), (257, 0.02555495710928715), (777, 0.02553775166
8565638), (358, 0.025529662687546948), (1642, 0.02552062692475771), (1687,
0.025515618963641296), (4669, 0.025500315594252258), (948, 0.025452397952089
89), (2245, 0.025446440892488747), (3034, 0.02543123190819681), (3427, 0.025
37432649968222), (510, 0.025340102577920093), (1319, 0.02532139205015988),
(4624, 0.02531467786145811), (3366, 0.025291947683357952), (850, 0.025281720
420590577), (1131, 0.025272195479197703), (3668, 0.025262860168782816), (257
5, 0.025240158524439053), (2264, 0.025233202873066518), (797, 0.025205992386
01377), (4195, 0.025130423494555625), (3932, 0.025127615137180016), (1171,
0.02510358452584749), (4083, 0.025097947441273187), (3569, 0.025060144238074
36), (2758, 0.025036311570031743), (4693, 0.025034350194709284), (3557, 0.02
5020157809978558), (3804, 0.024971160613485067), (505, 0.02495460739478174),
(93, 0.024945228677866187), (3796, 0.02493895442849558), (1370, 0.0249264504
93213924), (224, 0.02489512665451231), (2564, 0.02486896995742568), (3282,
0.02485983494136272), (4049, 0.02485180307182606), (2423, 0.0248310359753047
2), (2590, 0.024828626449136096), (2084, 0.024822788697494307), (2968, 0.024
81630689126588), (634, 0.02480640323858553), (220, 0.024779500493157473), (1
269, 0.02476099039368731), (4267, 0.024705224416157193), (4218, 0.0247033585
87728885), (1110, 0.024653223934454214), (3998, 0.02462176589907288), (2587,
0.024606341342806124), (380, 0.024589046144214644), (1465, 0.024585709272375
324), (3771, 0.02457649448063607), (1363, 0.024536483411437205), (2112, 0.02
4510092334039803), (4761, 0.024509012447597317), (2192, 0.02450264822384689
8), (3486, 0.024493181887115002), (1425, 0.024484077734441154), (658, 0.0244
67492386938464), (1701, 0.02445986884580993), (275, 0.024449642491222362),
(1354, 0.02438140423855874), (1491, 0.02436866924558531), (582, 0.0243499310
43859872), (4466, 0.024348525851625974), (376, 0.0243221465035026), (3315,
0.02427615815654204), (3372, 0.02425369176616696), (2454, 0.0242456647895479
34), (1335, 0.024228609780485983), (3581, 0.024202166818818968), (4012, 0.02
4192169382549956), (4667, 0.02411687965570547), (2585, 0.02411022568025284),
(1601, 0.024065404165095446), (1999, 0.024052897950476146), (386, 0.02404168
0386098937), (2155, 0.024040075002081704), (3920, 0.024036287708924374), (13
87, 0.02394834213193736), (1625, 0.023937302516701675), (2354, 0.02393023354
2448307), (4054, 0.02392996338091389), (1217, 0.023913846652035074), (1271,
0.02390860407523602), (4764, 0.023904360750831317), (3815, 0.023899591659339
196), (2389, 0.023896358921392462), (3444, 0.02388062745112972), (2781, 0.02
386489547113044), (1568, 0.023851745452238712), (2528, 0.02384346627798722
4), (4325, 0.023819491037776048), (3308, 0.023742145849063163), (449, 0.0237
3526027403064), (2002, 0.02370758142978858), (2731, 0.023707267919739716),
(1028, 0.02365862598334277), (4691, 0.02363414733751951), (223, 0.0235636813
46001324), (1683, 0.023549975926029337), (2851, 0.02353140203991321), (45,
0.023530724758699103), (3210, 0.02352684522685594), (2878, 0.023514200262513
076), (2777, 0.02350747168789047), (542, 0.023471710495883466), (3948, 0.023
44657529536644), (2034, 0.023445645577195213), (4189, 0.023427643252842818),
(4454, 0.023424585240631055), (2856, 0.023407325522567028), (3755, 0.0233879
63972197195), (2573, 0.023380742080652484), (701, 0.023365327288921014), (39
29, 0.023331436530467774), (116, 0.02331817272145757), (1383, 0.023305003848
69047), (2157, 0.02328301715596493), (1092, 0.023275805594777307), (3823, 0.
023221886175453586), (2663, 0.02320755242269554), (754, 0.02318165826684928
3), (1896, 0.023093708431124918), (4601, 0.023074153179513095), (4332, 0.022
998092236196283), (854, 0.022985123576253916), (4327, 0.02297598781829193),
(4380, 0.02294837377443372), (3158, 0.022908006752621824), (1644, 0.02287773
365608024), (389, 0.022870327235892135), (3102, 0.02284042860449578), (3368,
0.02277477635201086), (4649, 0.022732213598835108), (4725, 0.022697321420657
092), (2406, 0.022695935828011857), (2486, 0.022675077475295187), (2904, 0.0
22649486444076015), (350, 0.02259738473161379), (774, 0.02258698808051529),
(4264, 0.022586969659420128), (1232, 0.022558963997652212), (4485, 0.0225570
455522579), (4735, 0.022542478969123807), (1270, 0.022527303200480818), (71
1, 0.022513167740859055), (625, 0.02251164118305293), (2539, 0.0225075310284
58403), (3054, 0.02249135136362627), (2577, 0.022483973394796117), (184, 0.0
2247033598810894), (53, 0.022454895898373586), (1863, 0.02245478579011143),
(2026, 0.02244309037346352), (1959, 0.022436227471916086), (4251, 0.02239611
8029379398), (4254, 0.02238150203240497), (612, 0.022362499610261904), (329
0, 0.02227892009046514), (1918, 0.02227038421739877), (3032, 0.0222630499888
78385), (626, 0.02224931103825451), (949, 0.022228977010921528), (1769, 0.02
2184278792179653), (442, 0.022179914086365403), (4675, 0.02217969080216694),
(4741, 0.022172085569433467), (4269, 0.022170956509778985), (1345, 0.0221176
12683167358), (2433, 0.0221169617849436), (4283, 0.022097832303152976), (78
0, 0.022082647788890405), (170, 0.022059705664745223), (591, 0.0220511595153
57528), (4128, 0.022039697454112193), (706, 0.022025623938146877), (2458, 0.
022002047483275874), (3840, 0.02199787130027927), (3230, 0.02199699976054656
6), (1815, 0.02195409445648643), (2179, 0.02190560801377982), (462, 0.021903
590279280554), (4426, 0.021882873296392415), (4321, 0.021876069102302775),
(292, 0.021831343432486265), (2504, 0.021816126854045544), (990, 0.021813855
154124904), (904, 0.021809702100360512), (4071, 0.02179539701670308), (996,
0.021779072193357778), (1535, 0.021748716494552726), (974, 0.021733329175255
178), (1336, 0.021723390551438376), (908, 0.021712919094558747), (1506, 0.02
1701574138646183), (1968, 0.021686076724641783), (2156, 0.0216831543479664
1), (2323, 0.021667953241244785), (3750, 0.02165616685287211), (1762, 0.0216
18537796032355), (1995, 0.021615511089431348), (2220, 0.02160951576820948),
(2538, 0.021592440531861413), (3904, 0.021590386572614553), (900, 0.02156108
6103725723), (3827, 0.02154795904008237), (4339, 0.0215402608026279), (373,
0.021522162525199937), (1936, 0.021518862758077403), (1547, 0.02150628448048
9808), (1931, 0.021503955412939386), (3800, 0.02150038592725774), (3163, 0.0
2146788983987858), (2639, 0.021461856077414316), (3736, 0.0214604528399540
3), (2824, 0.021432945898927122), (2563, 0.021431751166744072), (898, 0.0214
3172754595199), (2809, 0.021362181818871347), (1595, 0.02135969170540642),
(4527, 0.021353809707158267), (3737, 0.02133995631773802), (3916, 0.02133544
418069292), (1608, 0.02131329033729676), (167, 0.021308770772207792), (1488,
0.021290678440642738), (3090, 0.02125698931985668), (264, 0.0212467108308824
97), (4651, 0.021180561831487275), (994, 0.021161324009381345), (4470, 0.021
095029259797914), (3383, 0.021092214675417602), (3203, 0.02105975168187600
5), (3072, 0.021054236405633434), (2592, 0.020993832138296434), (1735, 0.020
97961026417998), (2676, 0.0209789054791607), (2807, 0.020965388427770366),
(902, 0.02095095434446304), (1328, 0.0209508579186264), (632, 0.020932871082
379404), (4587, 0.020931134849028487), (470, 0.020897147877837252), (1974,
0.020870825380259094), (2349, 0.020862574375042752), (1184, 0.02085618405672
1287), (4724, 0.020846970361709627), (2759, 0.020818124457973538), (793, 0.0
20761777869982477), (1422, 0.02074460601888696), (4607, 0.02074347298564),
(2897, 0.0207374275016581), (301, 0.020731515593165495), (644, 0.02072483142
5166026), (1053, 0.020705095247552378), (2543, 0.020693945604817205), (530,
0.020666682983282343), (1299, 0.02065654978156559), (413, 0.0206294067832908
86), (1589, 0.020628241313639703), (2509, 0.020626935950200674), (1517, 0.02
0593151548993376), (81, 0.020585157268030067), (1286, 0.020574730119770592),
(1159, 0.02057089659207338), (1452, 0.020566317433587958), (4156, 0.02056568
5876072704), (2785, 0.02054266736568989), (2862, 0.02053377380621971), (272
9, 0.020532201445197015), (541, 0.02049545347521903), (2383, 0.0204815764861
9361), (4035, 0.020473212577425334), (1765, 0.020441821036073102), (384, 0.0
20433530510970382), (3937, 0.020420017065549193), (3024, 0.02041602010192603
4), (2381, 0.020405328585800884), (4158, 0.020372851278762764), (1902, 0.020
359422403590646), (1412, 0.02034829006242872), (4266, 0.020321890553112773),
(90, 0.0203155551654759), (1539, 0.020310496347051548), (3834, 0.02030164020
0367777), (1337, 0.020282517424811394), (718, 0.020278256007439176), (2343,
0.020264075862327282), (3562, 0.02026031171380345), (3055, 0.020249164638670
33), (4668, 0.02024783003264817), (1133, 0.020211190920948845), (3460, 0.020
203028724862473), (1850, 0.02019668238473677), (1709, 0.020186374452490975),
(2608, 0.020163369923140245), (1938, 0.020152233860309458), (1976, 0.0201443
38578496138), (2582, 0.020116287754230397), (172, 0.020074174629754093), (57
5, 0.01999707350210951), (1588, 0.01996005686697271), (4310, 0.0199501937340
41416), (187, 0.01994745787157503), (3987, 0.019929061931133953), (3462, 0.0
19925568532569077), (1534, 0.019909301651085926), (2698, 0.01990520027753388
6), (1786, 0.01987191211374097), (4700, 0.019818430498681452), (1639, 0.0198
02775023042753), (2076, 0.019796892397649528), (1238, 0.01974458436430513),
(3613, 0.019740364233045503), (3483, 0.019706913762682313), (422, 0.01969412
356518406), (450, 0.01967416126705322), (3656, 0.019671458046522976), (473,
0.019662602516671828), (2831, 0.019648438132268686), (1611, 0.01962236690958
5486), (3396, 0.019597946655708673), (4379, 0.019574485027000894), (734, 0.0
1957091594139941), (164, 0.019561004605791712), (3642, 0.01954272891135164
2), (363, 0.019539839654889393), (3620, 0.019539534595422393), (2708, 0.0194
84724567655806), (2087, 0.019478474805503566), (4131, 0.019438651634066568),
(1352, 0.019431744116054958), (3087, 0.01939113880212736), (1244, 0.01935704
5100801523), (3420, 0.019354632690505417), (2224, 0.019353941221279144), (12
75, 0.019313398909143676), (2791, 0.01929083087355989), (2817, 0.01928466457
0866784), (3170, 0.019276978587445866), (1472, 0.019263391421244263), (1318,
0.019262095768412667), (4248, 0.019254084566837373), (3842, 0.01920701168803
6187), (4225, 0.019191232025564015), (4593, 0.01916619497441802), (4022, 0.0
1916358106005305), (2672, 0.019140233393603562), (1473, 0.0191375609291511
8), (286, 0.0191322935467343), (4740, 0.019131263547385632), (4423, 0.019079
97488384204), (1577, 0.019035092373603207), (3899, 0.018995494647454824), (7
70, 0.018990980820521378), (1575, 0.01897840457652772), (2900, 0.01891773990
8569854), (4219, 0.018838127334115672), (3147, 0.01883644064574417), (2696,
0.01881869044660873), (471, 0.018795598733373126), (1153, 0.0187743887425803
44), (1807, 0.018766459529704873), (1914, 0.018751153182670666), (1379, 0.01
872944832674328), (4245, 0.018721101921414133), (2752, 0.01871990480113856
4), (1734, 0.018717352841992198), (3624, 0.018715540115561848), (2160, 0.018
712144050050627), (1419, 0.018710362522053083), (1997, 0.01870172228255716
2), (2300, 0.018698714091994043), (432, 0.01866101389510323), (3293, 0.01864
0900979704972), (4715, 0.01862783784751713), (2015, 0.018574570193901407),
(2324, 0.018570389223305655), (2636, 0.018552717210513887), (2437, 0.0185193
2785131163), (1697, 0.018501032694875755), (1008, 0.018500564616775038), (20
13, 0.01847003998699561), (1841, 0.018443101482480066), (716, 0.018438951341
583496), (1742, 0.01841895400817804), (2446, 0.018412184021815697), (4176,
0.0183937131504138), (4427, 0.018356807509096323), (4202, 0.0183284334248629
28), (3546, 0.01832406150125869), (1415, 0.018313719303210237), (4273, 0.018
290561079800517), (4516, 0.01828435803766876), (814, 0.0182833148804369), (2
657, 0.018277028299003045), (4011, 0.01826752534935415), (2923, 0.0182460367
53046358), (1725, 0.01822574064319817), (988, 0.018142110370525988), (560,
0.018133043730531023), (375, 0.018130012396663144), (1554, 0.018108284361404
825), (2398, 0.01810095059500455), (1193, 0.018077093325534293), (239, 0.018
06534125068375), (2611, 0.01804725549144812), (3831, 0.0180294115685902), (4
069, 0.018002992957463368), (613, 0.018001815043817183), (2131, 0.0180013617
98460822), (3126, 0.017953840237280475), (1646, 0.017921173310048968), (372,
0.017883308653084462), (4276, 0.017876396878896805), (3895, 0.01787286037621
2368), (2152, 0.017864217435517353), (3730, 0.017852407566659876), (4318, 0.
0178273873177525), (880, 0.017823930922964717), (4448, 0.01781420958810786
2), (2994, 0.01780523748550187), (4073, 0.017802949197837287), (4486, 0.0177
08468313204367), (549, 0.017700097138981782), (2722, 0.01769948708638866),
(504, 0.017697089993912177), (2865, 0.017691337161991005), (3214, 0.01768250
943966359), (3630, 0.017677609803744575), (4398, 0.01767043166269735), (71,
0.017647877890961963), (2262, 0.017587409409865213), (2110, 0.01758702341552
5573), (1607, 0.01755984646820972), (2258, 0.017547109648955356), (856, 0.01
7509976027333646), (333, 0.017499177386926537), (1721, 0.01747133263660957
3), (3437, 0.017450835154007385), (2533, 0.017368641605126425), (3349, 0.017
31706800117797), (2751, 0.017310606525190095), (1643, 0.01730877875271189),
(1772, 0.01728274972816541), (3956, 0.01726313898364027), (615, 0.0172525087
0378356), (1773, 0.017221703040707293), (4745, 0.017218556708017464), (4032,
0.01721262065329481), (639, 0.01718597943754243), (1222, 0.0171713972715507
6), (540, 0.017141740107311898), (3534, 0.017138618397246234), (454, 0.01710
682171698591), (1808, 0.017060448088589333), (670, 0.017024723274642578), (1
771, 0.017021843566216152), (3851, 0.01700259462830383), (4639, 0.0169899593
48787505), (3256, 0.01696862270757432), (1667, 0.016964554874593696), (4135,
0.016960457582334092), (3963, 0.016939696706782213), (2229, 0.01693162325340
2705), (660, 0.01691019349099876), (2764, 0.01690763083446101), (3014, 0.016
906250223254336), (360, 0.01683449695715065), (3511, 0.016832418112418618),
(4659, 0.016815669724536558), (1085, 0.016798103775920788), (3323, 0.0167867
07581067012), (578, 0.0167850699289798), (4357, 0.01676736459152054), (525,
0.01675604071044685), (756, 0.016714340588405253), (3639, 0.0167085972534060
3), (1436, 0.0166723035917583), (2743, 0.016666351498377474), (3552, 0.01665
9098608887434), (4421, 0.01662863732746083), (1600, 0.01661021958168665), (1
283, 0.016563457116321345), (1111, 0.01655655719789069), (723, 0.01654232159
743177), (2800, 0.016523449109549712), (1474, 0.016521528345021547), (771,
0.016520098300259068), (2181, 0.01649193259860889), (4409, 0.016482428089079
813), (1157, 0.016475236905413367), (3047, 0.016457492614424675), (3255, 0.0
1642330723974264), (3373, 0.016409156048216557), (1919, 0.0164084844404981
7), (1606, 0.016391741807631338), (1846, 0.016391554151943027), (3155, 0.016
373599690172314), (862, 0.016330945599710902), (479, 0.016327002367200517),
(3490, 0.016307046522940745), (3312, 0.016298460095923114), (2209, 0.0162709
0949843399), (3637, 0.016264567161936073), (3296, 0.01622205086083452), (396
9, 0.016220996855851003), (340, 0.01617657488243324), (4796, 0.0161680201034
1423), (3604, 0.01610714711899733), (4688, 0.016106044092463547), (3018, 0.0
16099334107277277), (3094, 0.016073478349022317), (2746, 0.01601724129062453
6), (2653, 0.015975545534609267), (2784, 0.01597231395001864), (2726, 0.0159
63113748758227), (1341, 0.01595398152825107), (2884, 0.015922856264564047),
(3644, 0.01591606316245263), (3363, 0.015865528195095936), (2484, 0.01584799
536487045), (92, 0.01584153126652656), (1467, 0.015702759596255778), (3198,
0.01566629082871719), (2206, 0.015643423980448698), (1637, 0.015640917769692
75), (2512, 0.01563352918867833), (2506, 0.01562649621493573), (715, 0.01561
8877638812052), (2365, 0.015546207966851954), (502, 0.015501300436798376),
(443, 0.015485423076759314), (3120, 0.01546560399984393), (1322, 0.015278295
978966175), (1530, 0.015246814587794973), (999, 0.015235598070902703), (400
3, 0.015208313962375307), (2818, 0.015185210560701384), (518, 0.015173950568
481025), (2834, 0.015142264741442792), (678, 0.015141193374001834), (1331,
0.015119104785959929), (2036, 0.015084994907505953), (4692, 0.01507202109607
3406), (985, 0.015050744845155263), (467, 0.01504871569689806), (4154, 0.015
0461346523309), (3051, 0.015038560880261904), (2545, 0.014985306764925143),
(2344, 0.014976551509551054), (773, 0.01494784664733944), (1774, 0.014926960
132599636), (4620, 0.014903071608683819), (4381, 0.014884594599815166), (466
0, 0.014876725271542306), (673, 0.014866866534559056), (2263, 0.014842047251
019197), (4329, 0.014837288052613036), (3182, 0.014833799084538798), (2877,
0.014813164727396973), (2432, 0.014800930052878086), (4652, 0.01478593788750
288), (3994, 0.014731524417893231), (3649, 0.014727481344929625), (895, 0.01
4704260918041844), (2071, 0.014703965996796154), (1764, 0.0147038155735981
2), (2207, 0.014673805651602999), (602, 0.01467219956675259), (3887, 0.01465
7935478728876), (213, 0.014656754949169543), (738, 0.014654913135586232), (3
240, 0.014646413566362442), (2122, 0.014632306662623891), (2037, 0.014629090
853618187), (760, 0.014609132013617777), (2596, 0.01458808678658646), (984,
0.014517895617346838), (583, 0.014507715742964826), (3650, 0.014506670860289
204), (2165, 0.014491332531685663), (3428, 0.014473849093212122), (1256, 0.0
14454972242441445), (2872, 0.014442945065347693), (3522, 0.01443911903599504
2), (1173, 0.014430008633485725), (3711, 0.014407115808943344), (1969, 0.014
406790674893854), (3748, 0.014397379973433773), (1777, 0.01439399318489999
2), (669, 0.014384003389310694), (274, 0.014371464874911068), (786, 0.014360
113816432051), (2172, 0.014355283748570606), (4004, 0.014309089481217365),
(190, 0.014308003872917193), (2655, 0.014305393750961574), (339, 0.014302690
015952177), (2766, 0.01429987750069849), (2926, 0.01426428002763455), (1546,
0.014262141094443983), (1273, 0.01425279504148905), (784, 0.01423917123038
9), (1985, 0.01422687229399918), (731, 0.0141935776976348), (1012, 0.0141385
63809151643), (2693, 0.01413514809576427), (55, 0.0141234086767521), (157,
0.014107660677457974), (4619, 0.014101612969960244), (215, 0.014092950476426
933), (4076, 0.014062311287086748), (29, 0.014046184258938898), (3724, 0.014
04301645313408), (1953, 0.01403123400693862), (3127, 0.014006197271347765),
(3355, 0.014003369239384375), (4093, 0.01399048566468773), (781, 0.013976641
315684026), (4476, 0.013953311230662652), (3786, 0.013927428079173064), (263
8, 0.013917058854518048), (1847, 0.013911003192497502), (5, 0.01390725668575
5473), (764, 0.013896807370913663), (757, 0.013862378158711018), (60, 0.0138
40362984553644), (3826, 0.013834824615381762), (290, 0.01382398166081373),
(1143, 0.013803174927986706), (1320, 0.01379155395315599), (1628, 0.01378419
7478486403), (2042, 0.013780399364880208), (2250, 0.013771310091898813), (45
65, 0.013767380201593415), (48, 0.013755725647812333), (2, 0.013735500604224
323), (3352, 0.013734921261026845), (1172, 0.013717187817121498), (104, 0.01
3715791022299717), (3098, 0.01370800550108068), (12, 0.013707618139948929),
(596, 0.01369622649951429), (1481, 0.013689253844983686), (2391, 0.013660701
556908763), (1076, 0.013654683350876513), (2879, 0.013648436213562588), (152
5, 0.01362930860646913), (2348, 0.013623664124908197), (645, 0.0136198009190
43629), (240, 0.013614379126711425), (4465, 0.013611975464612628), (3698, 0.
013609648314787181), (1073, 0.013597686053891181), (4760, 0.0135896516257536
8), (4145, 0.013587833268459358), (2537, 0.013573855870530342), (834, 0.0135
42195384591523), (1823, 0.013540675674544375), (1586, 0.013529896288410368),
(4146, 0.013502562270305773), (160, 0.013499774907434675), (523, 0.013481842
788365502), (3856, 0.01345944374335227), (3901, 0.013441040141075552), (248
0, 0.013433691794338377), (1912, 0.013431071379762193), (1529, 0.01340994146
1347056), (594, 0.01340790509381604), (3799, 0.013405884904677735), (767, 0.
013404994811163109), (277, 0.013401174961564108), (488, 0.01340043225773201
5), (2273, 0.01339208980854222), (3512, 0.013391346681791835), (1089, 0.0133
5805533130048), (2821, 0.013336613451793369), (3455, 0.013330340352272723),
(1684, 0.013296552532482568), (62, 0.013292388095397085), (112, 0.0132741139
77156034), (284, 0.013248036192994214), (3343, 0.013243806240332116), (2490,
0.013239893660001785), (892, 0.013239017469059035), (1380, 0.013226204519961
534), (478, 0.013223799537330716), (2633, 0.013202931403018241), (1239, 0.01
3189763893792165), (808, 0.013186633786329536), (2174, 0.01317944558999706
3), (1610, 0.013176293780090338), (424, 0.013163221301189666), (243, 0.01314
1023801873984), (88, 0.013137418635022081), (1139, 0.01313641124787753), (54
4, 0.013132543076088967), (1975, 0.013128723182161073), (643, 0.013114598785
422045), (17, 0.013112928084103857), (729, 0.013108284923155493), (1615, 0.0
13107468755133935), (3196, 0.01310257720871702), (933, 0.01308265548414137
5), (1050, 0.01307926314212288), (2274, 0.013040597139851555), (69, 0.013037
91167475042), (1504, 0.013035477238482477), (1300, 0.013030962848333537), (1
279, 0.013030645196896791), (2827, 0.013030118277459295), (2308, 0.013027184
410329422), (2812, 0.013021437570425176), (2049, 0.013015985010557885), (123
4, 0.013003897536461386), (2645, 0.01298830344107681), (1836, 0.012984766827
539202), (50, 0.012978759995781826), (604, 0.01297658193445424), (2644, 0.01
2956145552213253), (1785, 0.012955523316723809), (1713, 0.01295421776183453
7), (3236, 0.012951542132439492), (3333, 0.01292981705128393), (1084, 0.0129
22607622949254), (744, 0.012901755936540842), (811, 0.012899148368003637),
(3336, 0.012898580548963805), (472, 0.012895958166044046), (888, 0.012878509
897401861), (1090, 0.012877926516809997), (1305, 0.012875995375989999), (173
9, 0.012875630142121924), (688, 0.01286308408873556), (1057, 0.0128559568717
44378), (1851, 0.012836562298447159), (208, 0.012833095829278003), (1939, 0.
012827016207306582), (4155, 0.012813557503195756), (2058, 0.0127950996016398
24), (568, 0.012787248066823026), (486, 0.012778636740314719), (1845, 0.0127
72111456610882), (3824, 0.012770812699522493), (1915, 0.012763438997647644),
(1266, 0.01275602477495706), (2683, 0.012743398578491315), (1105, 0.01273930
0436461298), (640, 0.012733413475698296), (2102, 0.012729099440929079), (102
7, 0.012722478570891975), (3337, 0.012720489418181838), (75, 0.0127060747829
84477), (3448, 0.012675188078950602), (134, 0.012668821148788128), (24, 0.01
2665208122549737), (3811, 0.012641314584689362), (304, 0.01263161069503792
8), (121, 0.012619773810815626), (152, 0.012612777711094553), (687, 0.012612
509858599156), (2787, 0.01260984280019308), (2863, 0.01260393827519266), (27
33, 0.01257610351639673), (2996, 0.012575096980323865), (3447, 0.01257116573
312346), (676, 0.012570201785618348), (1369, 0.01256243318756069), (1798, 0.
01253458859739587), (383, 0.012527247177783519), (153, 0.01252704972563965
8), (3693, 0.012517132287393682), (237, 0.012509831919299386), (2453, 0.0125
03035051940434), (1825, 0.012497564009519097), (403, 0.012456039416646907),
(1973, 0.012447318759098887), (2219, 0.012446878284286525), (1100, 0.0124414
52572186897), (3835, 0.012432664311873584), (1447, 0.012431599238228834), (1
103, 0.01242245174086223), (216, 0.012418209963039488), (2675, 0.01240929110
0507355), (1854, 0.012404344612562526), (2678, 0.012391351026490017), (13,
0.012376074925089967), (652, 0.012375145819213743), (1728, 0.012369517233498
115), (206, 0.012366206192057331), (1645, 0.012348180725565816), (3619, 0.01
2325661236123692), (1992, 0.012313745846208484), (2536, 0.01230731138215924
8), (2069, 0.012304182051643422), (1175, 0.012286664199222197), (969, 0.0122
82682736021022), (3715, 0.01226068639441599), (1657, 0.012258613500649003),
(531, 0.012245900904865489), (4592, 0.012243829776903224), (2953, 0.01224043
419929678), (1828, 0.012199470862133029), (3527, 0.012194043351965013), (53
5, 0.012188769187353628), (3252, 0.01218264618205494), (691, 0.0121568403642
72462), (3952, 0.012151496446083307), (3250, 0.012147477967543958), (3846,
0.012128241991713645), (1943, 0.012127214318469933), (825, 0.012122857105849
13), (703, 0.012118825932623721), (2692, 0.012117015866487689), (3617, 0.012
112987857951455), (469, 0.012104977121661555), (147, 0.012088724874898267),
(989, 0.012085579929807806), (1106, 0.012080921644303761), (139, 0.012071297
108255745), (1343, 0.012041739926979676), (2216, 0.012037802704581364), (231
6, 0.012024078708689477), (3449, 0.012015719725922809), (836, 0.012013478339
956519), (1361, 0.011988649587914013), (595, 0.011980041161207827), (1743,
0.011962005828276463), (683, 0.011943419533350687), (1124, 0.011943205514411
461), (1858, 0.011941565413102456), (610, 0.011935841985128806), (11, 0.0119
2606921174529), (259, 0.011920893053953798), (2085, 0.011913461732564194),
(3351, 0.011896956393315767), (1438, 0.011874249584187101), (1338, 0.0118696
56901866964), (1290, 0.011863758056264809), (3148, 0.0118541494923353), (344
6, 0.011830781349318592), (315, 0.01182359280298129), (1243, 0.0118204406101
79065), (2136, 0.01182005206240171), (346, 0.011803541090238324), (1006, 0.0
11785434713595323), (4106, 0.011783824201068426), (312, 0.0117460858031291
6), (4353, 0.011741866654437605), (1672, 0.011704200906199608), (3035, 0.011
692060057410601), (3015, 0.011684551966513928), (186, 0.011679517754190759),
(2332, 0.011678507273505105), (347, 0.011673392934713473), (950, 0.011668214
950350168), (1907, 0.011665913514686727), (1738, 0.011653344620426722), (168
6, 0.011647968431980925), (2161, 0.011640149015609131), (4316, 0.01163793221
3206512), (3136, 0.01163318415289629), (2736, 0.011596465269998905), (4315,
0.01159230203533573), (245, 0.01157921821443525), (746, 0.01155009145830205
8), (695, 0.011544749656986198), (491, 0.011544605486217411), (859, 0.011516
857999652522), (1892, 0.011485253651795512), (1199, 0.01139636109074424), (1
136, 0.011387914031308875), (4638, 0.01135719252991956), (379, 0.01135229504
2567434), (2474, 0.011328965076965375), (2681, 0.011303498587997927), (325,
0.011272933338699345), (21, 0.011266873271064948), (3424, 0.0112242254886957
65), (809, 0.011216056284337483), (831, 0.011189208873036132), (3177, 0.0111
86761942153758), (2913, 0.011178813951735932), (2860, 0.011161275592276618),
(1082, 0.011156097118545118), (1551, 0.011150226534206697), (543, 0.01113941
3235567257), (4074, 0.011059999037848194), (2747, 0.011050667481366936), (26
7, 0.011020103780391938), (2521, 0.010964740355720311), (3370, 0.01096334582
496127), (513, 0.010922135956364029), (1067, 0.010907283467668423), (84, 0.0
10896033200138981), (1298, 0.010871113330036292), (3001, 0.0108442924813738
2), (3019, 0.010838781826130826), (2304, 0.010829893814736312), (369, 0.0108
0632395113592), (851, 0.01080080345536633), (2057, 0.010795743732489644), (4
356, 0.010737289343284533), (1251, 0.010717713749831955), (3450, 0.010710016
563517536), (794, 0.010666729666678632), (1663, 0.010555415988094953), (369
2, 0.010549524583570996), (1077, 0.010534505142778787), (3162, 0.01053196726
0644851), (3251, 0.010525756758090705), (2338, 0.010451279428475242), (2004,
0.010451078909085535), (1877, 0.010366414399380085), (3884, 0.01036083393583
9135), (1558, 0.010318265881974495), (411, 0.010312715133202439), (1404, 0.0
10283551478442158), (2515, 0.010282959641285283), (3143, 0.01027652212589735
8), (2806, 0.010201528772675397), (3229, 0.010172202466962394), (4162, 0.010
048896073138048), (769, 0.009972771514582021), (627, 0.009951359365983438),
(3392, 0.009939539789944066), (2508, 0.009939409260957219), (4677, 0.0099113
35160001488), (2757, 0.00972351493765599), (3810, 0.0096345639181556), (235
7, 0.009601969269395334), (4262, 0.009517313289721588), (832, 0.009510389110
638675), (3043, 0.009466422642396591), (3225, 0.009147254181053738), (1524,
0.009087485392233734), (4125, 0.008987370932150351), (1658, 0.00897493702287
7296), (1248, 0.008899330041879403), (1306, 0.008847662686316374), (3403, 0.
008770727916425537), (1202, 0.008737512120375768), (1580, 0.0087015463540633
21), (1382, 0.008690822974721799), (3500, 0.008675420864201054), (842, 0.008
579526252826037), (791, 0.008463583025952447), (4261, 0.008459859886979875),
(1099, 0.008457725159744299), (189, 0.008410980836417606), (3129, 0.00837093
5429100702), (142, 0.008290580639543894), (2550, 0.008264992504755877), (80,
0.008262380058536143), (1509, 0.008246598293540528), (698, 0.008184007385854
676), (2001, 0.008170651887040982), (1958, 0.008167532211042038), (1695, 0.0
08146998871191276), (294, 0.00814051457926125), (848, 0.008125457201045575),
(4513, 0.008124900774879708), (3329, 0.008114608947281443), (841, 0.00811077
3965562652), (565, 0.008102001493028128), (40, 0.008086007019135987), (221,
0.00805341061123271), (37, 0.008024326882532318), (748, 0.00802395704608484
4), (4277, 0.00802114625738905), (106, 0.008019033368914791), (4708, 0.00796
3861578731843), (2162, 0.007929475238427887), (3359, 0.00792785878651691),
(1257, 0.00792472201276347), (858, 0.00791244537827933), (8, 0.0078823878518
51008), (179, 0.00788143159087014), (1602, 0.007875853945412707), (942, 0.00
7872311595830392), (4386, 0.007870719138505655), (816, 0.00786495653794334
9), (1267, 0.007857904220311733), (143, 0.007857094692385196), (569, 0.00784
9859297037302), (181, 0.00784201060360527), (234, 0.007819453077169452), (19
62, 0.0078004387697976595), (3364, 0.007795353506837987), (899, 0.0077908455
67337891), (197, 0.0077605007650080006), (2933, 0.007760201729369884), (113,
0.007759892605819308), (3202, 0.00774948555787503), (707, 0.0077290573628387
17), (1682, 0.007728102266310902), (935, 0.00771296774034122), (2552, 0.0076
77007883989578), (2298, 0.007674433997885597), (1402, 0.007670438772180439),
(785, 0.007668152487911395), (276, 0.00766362066586878), (144, 0.00765948685
5276632), (3004, 0.007642260315995082), (1074, 0.007618934105444065), (704,
0.007602962150409792), (2867, 0.0075898217854650195), (458, 0.00758731615412
9055), (1426, 0.007560292725402896), (1375, 0.007557569553185315), (1460, 0.
007554656991452476), (4070, 0.0075477330369805775), (1080, 0.007547533532962
5946), (3714, 0.0075461808869673646), (4161, 0.007542129150783524), (1253,
0.007516015376019976), (2930, 0.0075131119689367375), (2261, 0.0075086654160
59879), (2167, 0.007507342109224111), (302, 0.007478532480637139), (348, 0.0
0747806660819593), (1587, 0.007464891697896235), (1078, 0.007464300723952716
5), (2915, 0.007463810432472856), (1797, 0.007454240464658755), (3233, 0.007
4492797989099534), (3304, 0.007447806236883482), (572, 0.00743968990441675
8), (2969, 0.007435061175577933), (2688, 0.0074148891187318594), (2121, 0.00
7412394514375863), (812, 0.007405682422568557), (978, 0.007395600581911993),
(2116, 0.007395040242382558), (141, 0.007390628871215626), (191, 0.007335998
680350284), (750, 0.007332168004791734), (202, 0.007331578562093385), (3280,
0.007322798561125077), (2003, 0.007322388978831414), (1287, 0.00731920297778
2694), (359, 0.007308987845468155), (3857, 0.007295319576671534), (2457, 0.0
07293455720637931), (15, 0.007286271383816743), (289, 0.007286026968072495
6), (175, 0.007278108122040668), (341, 0.007270790603084974), (1937, 0.00725
4213964022755), (1072, 0.007249617849525395), (551, 0.007247711225629038),
(1754, 0.007242854732727878), (66, 0.007215870794201356), (195, 0.0071828890
33479824), (1562, 0.00716844832024321), (349, 0.007168447070567705), (4408,
0.0071664499847577685), (2921, 0.007128195329521292), (2086, 0.0071124110455
56604), (1134, 0.007108485505703364), (4233, 0.007103436599692038), (3353,
0.007069963464014245), (381, 0.007056593264676717), (235, 0.0070561091322564
41), (1263, 0.007053533984531785), (63, 0.007052604148534629), (1597, 0.0070
51503644778929), (162, 0.007049965568086859), (171, 0.0070483318056277664),
(1503, 0.007031882673794788), (1550, 0.007030839810276658), (132, 0.00702855
2956806382), (3912, 0.007027546210068871), (3171, 0.007022861300789078), (15
64, 0.007022688843134073), (176, 0.00701753260267472), (1183, 0.007010850716
695228), (336, 0.007000145608964259), (2886, 0.006990763697154421), (114, 0.
006989250733748654), (352, 0.006985810229037041), (1062, 0.00697902839823213
5), (117, 0.006974473701411298), (721, 0.006968514152195092), (671, 0.006966
125540203556), (2931, 0.006959360382628293), (1822, 0.006912650109043174),
(874, 0.00691070424128861), (22, 0.006892575895462364), (2222, 0.00688283394
4664309), (498, 0.0068693758777834376), (3695, 0.006835633113142684), (3082,
0.006824488489398743), (2178, 0.006823156792854853), (3299, 0.00682236391891
4749), (2185, 0.006815191866220214), (1357, 0.006814395981058139), (218, 0.0
06805981907974583), (130, 0.006805009963331235), (3284, 0.00679939951721422
7), (2055, 0.006792550924322605), (3068, 0.006790321712480484), (2188, 0.006
780751576015704), (124, 0.00677954947820739), (3943, 0.006763153765772595),
(566, 0.006759441819441758), (494, 0.0067571706441301406), (485, 0.006741475
025066299), (374, 0.006739086314764463), (4111, 0.006734994318325397), (425
8, 0.006719636205600988), (617, 0.00671389393272147), (1882, 0.0067104542284
47318), (2175, 0.00669687872596116), (2669, 0.006676278297027921), (4191, 0.
006668531156575292), (2201, 0.006667859341965786), (484, 0.00665791804113272
7), (961, 0.006650011466193838), (592, 0.006634194090410942), (3215, 0.00661
9625859455825), (261, 0.006618106417719788), (2849, 0.0066074618838483055),
(4695, 0.006606737900229252), (23, 0.006599097891242659), (399, 0.0065900701
20469024), (4286, 0.006586323739701676), (1433, 0.006582561974004332), (534,
0.006581410829534892), (4554, 0.006576423923435974), (58, 0.0065595224685715
84), (2310, 0.006557726437380147), (2268, 0.006555106141827337), (89, 0.0065
440217577704815), (2586, 0.0065436171434168), (1675, 0.006532198322154744),
(1278, 0.006525045591946184), (1987, 0.006521554789017134), (1114, 0.0065197
1794510208), (86, 0.00651427245877694), (2159, 0.0065031201109073435), (368,
0.0064857491913528995), (3972, 0.006477737531293158), (3774, 0.0064707230743
25125), (3, 0.006468756104392058), (1528, 0.006454491935348495), (1897, 0.00
6451356889398186), (1479, 0.006447659193264534), (901, 0.00643748898385618
1), (1417, 0.006435225050968506), (866, 0.006430806031876921), (730, 0.00642
3432021716283), (3306, 0.006409683160680518), (437, 0.006405396710939224),
(4664, 0.006398665118325466), (3845, 0.006398391533823579), (3154, 0.0063973
331565408565), (1933, 0.006385652539363355), (1727, 0.006380505681514279),
(2029, 0.006378736005814319), (2510, 0.006365479483872259), (2278, 0.0063523
04567027079), (4557, 0.0063462929557308945), (4085, 0.006344772646780073),
(934, 0.006335966231410641), (433, 0.006334750734592971), (3021, 0.006332498
030937433), (4654, 0.006331897969251694), (1214, 0.006329058749500924), (44
7, 0.006321088255901316), (4460, 0.006311693724683517), (3128, 0.00631117579
25824585), (4546, 0.006306354591100198), (4124, 0.006299638279278828), (145,
0.00629812891195704), (1020, 0.006294347076553977), (3485, 0.006291331543452
8615), (2309, 0.006286477013365412), (2469, 0.006281165775211212), (3882, 0.
006276972941502049), (3180, 0.0062705342024132775), (1856, 0.006269633885478
63), (1860, 0.006269399978420817), (4129, 0.006261659452448684), (2097, 0.00
62571358536045), (2623, 0.006251306763517307), (952, 0.006249052683161279),
(2980, 0.006245645106104692), (3332, 0.006245485345825851), (1733, 0.0062447
882398140924), (44, 0.006244741632576977), (1920, 0.006231273090421751), (24
66, 0.006229052851970406), (2154, 0.006215747906335323), (3144, 0.0062144197
324906945), (2646, 0.0062123937375572254), (180, 0.006209899499267643), (128
9, 0.006205978974204933), (2212, 0.006202252256841593), (3412, 0.00619966514
3752347), (1878, 0.006194182734848451), (2394, 0.006178367902052818), (1342,
0.006170404720583299), (2064, 0.0061686549277688435), (1505, 0.0061530499997
90475), (2294, 0.0061518848295582995), (2218, 0.006151834690320389), (3326,
0.006147516675936614), (1761, 0.00614091955629013), (2556, 0.006133468413142
607), (655, 0.006128629546293719), (1894, 0.006117519882114254), (428, 0.006
116274706473999), (1212, 0.006105145904841131), (3756, 0.00610250175283084
4), (3830, 0.006099612308650296), (2650, 0.006096986698751094), (119, 0.0060
96481233007207), (919, 0.006094178240441095), (512, 0.006076234207381594),
(1448, 0.006072307704699463), (4621, 0.0060671287373734025), (1954, 0.006062
768638472911), (248, 0.006062629304803696), (296, 0.006055318711558956), (35
5, 0.006055185866562875), (2247, 0.006052493078792354), (2527, 0.00604751152
7795769), (453, 0.006042652303083685), (573, 0.00603921472035501), (1245, 0.
006038212832583458), (1844, 0.006034064759825661), (1178, 0.0060227101298342
1), (3976, 0.006016005707652179), (3335, 0.006011745513294125), (2583, 0.006
005972876119821), (4230, 0.006004334778392853), (2366, 0.005999308741496095
5), (1142, 0.005992932796703112), (3941, 0.005990259955784118), (3849, 0.005
985955352757245), (1680, 0.005984109511210041), (1321, 0.00597324007596657
7), (209, 0.005970673779866456), (140, 0.00596627478663651), (1726, 0.005964
404854952128), (807, 0.005964205313507123), (3523, 0.005960877434809571), (1
144, 0.005960068439079913), (818, 0.005955304138090515), (299, 0.00595183988
1547006), (762, 0.005950617365467033), (1118, 0.005949193816419583), (828,
0.00594356933691021), (863, 0.005935686222933201), (993, 0.0059159227970620
4), (1284, 0.005913703149513752), (547, 0.005910886853328579), (65, 0.005907
393049485784), (1254, 0.005904009070754855), (2095, 0.005898457067429846),
(3316, 0.005895849435100806), (1035, 0.005895040885989624), (3492, 0.0058926
80791212392), (408, 0.00589061176664649), (3689, 0.005882017555227478), (25
2, 0.005876519977122681), (3725, 0.005876125846066993), (297, 0.005875643392
252975), (188, 0.005871770923133652), (1699, 0.005869460131483867), (3153,
0.00586492709524395), (702, 0.005849885469770789), (303, 0.00584412399565223
66), (236, 0.0058374390292392124), (1868, 0.0058344872553096035), (622, 0.00
5834175684687579), (4549, 0.005830484377055269), (553, 0.00583000874423680
4), (1515, 0.00582489750458155), (148, 0.005820207392883669), (3545, 0.00581
846549575977), (753, 0.005817545864023253), (394, 0.0058155383720721225), (7
47, 0.005815429348567419), (979, 0.0058113885465888235), (2412, 0.0058042529
57338772), (1514, 0.005804135262789303), (2775, 0.0058014412783521565), (199
1, 0.005801166615550376), (3667, 0.005800551191061778), (320, 0.005800126265
633735), (804, 0.005794762348843588), (981, 0.005792146668768498), (2295, 0.
005790961967837092), (1432, 0.005774412944962496), (659, 0.00577426511677230
8), (204, 0.0057728475915898225), (982, 0.005772596594420832), (3672, 0.0057
72047728012396), (1741, 0.005768228248295889), (1339, 0.005750762506830963),
(387, 0.005749286221183894), (2255, 0.005730260693662331), (4182, 0.00572600
9842997064), (2371, 0.005723466975379193), (4335, 0.005722431795644589), (19
77, 0.005721663925133031), (1510, 0.005718443532433642), (2400, 0.0057181611
284733815), (1792, 0.005713500930064905), (2471, 0.005710156075218152), (22
7, 0.005708705031829342), (737, 0.0057084543757725545), (3077, 0.00570754146
1229693), (589, 0.005705117402069888), (1910, 0.0057038111473882505), (597,
0.0057002854055922345), (823, 0.005695986525552399), (3040, 0.00568441160603
0021), (844, 0.005681781411921748), (653, 0.005677707701456618), (514, 0.005
673285563102637), (3965, 0.005668490895195058), (1486, 0.00566012026712904
3), (3445, 0.005658829447034606), (1470, 0.005658516890585647), (2565, 0.005
657463630700295), (1158, 0.0056475476341244085), (1783, 0.00564020932726540
7), (455, 0.005633945135807629), (3707, 0.005628754513302558), (1747, 0.0056
28426629156527), (2293, 0.00562802784510573), (3873, 0.005627388986371831),
(724, 0.005624658434928665), (2169, 0.005623173196591178), (2439, 0.00561485
8517679828), (3020, 0.005614653461283358), (1043, 0.005607113124093331), (21
7, 0.005596449396060738), (468, 0.00558471195306696), (951, 0.00558168353961
8901), (1500, 0.005579552078947937), (115, 0.005576099256354755), (2296, 0.0
05574229812024996), (2277, 0.005565732172112902), (1000, 0.00556510261813513
6), (99, 0.005561520671423613), (3062, 0.005557947390848267), (537, 0.005555
9902631470166), (3297, 0.005555557730959811), (3740, 0.00555495365578747),
(109, 0.005548679184587941), (821, 0.0055466671110301225), (1853, 0.00554264
1928578167), (3606, 0.005539302436088057), (210, 0.00553105163130064), (590,
0.005530793548394926), (1195, 0.005529541964281229), (3982, 0.00552857138130
91305), (2959, 0.005527503738662853), (3991, 0.0055259191625414116), (3382,
0.0055243419360443335), (2712, 0.005523670344895499), (1457, 0.0055177046268
73745), (992, 0.00551625688349404), (790, 0.005509471276615586), (1334, 0.00
5503749574405398), (1702, 0.0054966982869084175), (295, 0.00549533460936470
8), (2100, 0.00549343189928707), (677, 0.005489346664696526), (2244, 0.00547
8296431642595), (392, 0.0054757618927209215), (4084, 0.005474493170555133),
(694, 0.005472530269967965), (4388, 0.005464494993906863), (3833, 0.00546300
1192831069), (1661, 0.005454884077201759), (500, 0.005448294558670802), (27
3, 0.005445437739453207), (2386, 0.005436852211710328), (2288, 0.00543518023
5346115), (580, 0.005434952954661658), (1443, 0.0054331115028092725), (159,
0.00542316214068809), (1347, 0.005422723661047834), (741, 0.0054136232111286
7), (2142, 0.005413279206044731), (2514, 0.005410481856353042), (4099, 0.005
410252510439377), (1592, 0.005405609117967553), (1137, 0.00540162066724092
5), (2388, 0.005401437639268327), (4275, 0.0054001909375229985), (1188, 0.00
5395051130449769), (246, 0.0053869685364931795), (2558, 0.00537136211828582
9), (893, 0.005367943615150826), (2050, 0.005364331838613319), (3848, 0.0053
62623447780739), (745, 0.00534394524047526), (1049, 0.005335645775228684),
(1635, 0.0053331880986513605), (1096, 0.005324902404365661), (739, 0.0053236
08200500737), (1671, 0.005316509074205562), (571, 0.005308282954252374), (28
5, 0.005304001568385907), (1669, 0.005297436479512104), (3151, 0.00529593831
0687628), (2140, 0.005295355836964956), (2790, 0.005293029710144875), (1431,
0.005290999790389548), (3030, 0.005289207887152248), (2074, 0.00528472874907
0173), (3591, 0.005281742919736083), (1101, 0.005280917879393894), (2978, 0.
0052803858743085234), (2237, 0.005274849633448043), (1653, 0.005274318313206
838), (2609, 0.0052597865557895696), (2054, 0.0052553561333259485), (561, 0.
00525371333043839), (1908, 0.00524992288525664), (1146, 0.00524396144298800
1), (937, 0.005238707247114239), (1450, 0.005231525840611278), (4114, 0.0052
24746057072845), (2579, 0.0052233639251494084), (955, 0.005217551867953665),
(1950, 0.005216786214941723), (3074, 0.005214289797347882), (708, 0.00520717
7560491049), (4351, 0.005205531315997691), (930, 0.005202293188738005), (308
6, 0.005197205853775061), (3029, 0.005196230366766419), (1104, 0.00519541858
0265066), (4013, 0.005190437860568185), (621, 0.005183303471355905), (2195,
0.005178645423456846), (282, 0.0051732196328447295), (1930, 0.00517211958374
6531), (611, 0.0051710416483227205), (3518, 0.00517010411350107), (2200, 0.0
05162897471652305), (1848, 0.0051539919526277225), (529, 0.00513444584935607
3), (1616, 0.0051330412797200835), (2194, 0.0051326681885332116), (1359, 0.0
05130123069684274), (3221, 0.005126964207047642), (3073, 0.00512659955194988
15), (1707, 0.005124391921143448), (3584, 0.005115222884878196), (963, 0.005
107152214046513), (1830, 0.005099804558294307), (914, 0.005099427210943033),
(624, 0.0050985917687809326), (1513, 0.0050912617332261444), (2203, 0.005090
514964340784), (973, 0.0050857303713312246), (1056, 0.005080233210203444),
(894, 0.005067770618611982), (1310, 0.005063917544870188), (1453, 0.00506345
3058869155), (1281, 0.005058166457549107), (3416, 0.005054557599302327), (14
37, 0.005053950511367084), (3259, 0.00504808833409177), (830, 0.005046932442
3224465), (3138, 0.0050384561494722984), (1463, 0.0050364491365704435), (117
4, 0.005036209251344408), (1538, 0.005019761440535846), (2340, 0.00501534512
7311243), (2435, 0.0050099245798268825), (3516, 0.005009745147057797), (586,
0.005009709817927663), (941, 0.004986872337716621), (736, 0.0049823769803249
58), (4402, 0.0049805859614365615), (3309, 0.0049774421686656955), (2023, 0.
004977199004848884), (3758, 0.004959263150108861), (959, 0.00495881746731482
65), (4220, 0.004946379952318426), (3209, 0.004938256294249752), (1095, 0.00
49375569105280384), (308, 0.004936382972280525), (3165, 0.00493314137897283
2), (556, 0.00490324645994318), (1955, 0.0048877634181779366), (1626, 0.0048
79193344481684), (244, 0.004878034676241361), (2291, 0.004874373199977673),
(1140, 0.004857238121907869), (1003, 0.0048539039726680005), (253, 0.0048522
6220043195), (3603, 0.004843287410626076), (2641, 0.004837232568279299), (11
38, 0.004836883273818064), (3477, 0.004834671556504662), (3854, 0.0048340475
84964279), (2602, 0.004828783454335147), (787, 0.004813890732603031), (1109,
0.004807243540443358), (344, 0.004794163779147464), (156, 0.0047796398572662
71), (2819, 0.00477211988519107), (3733, 0.0047607066689346255), (4215, 0.00
47549654624323675), (2597, 0.004740694074384045), (629, 0.00472842814622891
6), (1795, 0.004721030548800252), (4727, 0.004715312436126916), (2853, 0.004
712250100467962), (3722, 0.004648869332647166), (3399, 0.00464183935908645
8), (2704, 0.0046233465977754545), (2429, 0.004619544920974324), (3579, 0.00
4600699117446862), (3099, 0.004595629656707778), (1064, 0.00458829004273394
6), (2986, 0.0045802513382911915), (3008, 0.004568882850853553), (4507, 0.00
45642224890969476), (2470, 0.004559111571995109), (405, 0.004494007227079278
5), (3966, 0.004476055516530503), (3764, 0.004474336285610847), (3007, 0.004
462180039104246), (1837, 0.004409442760183494), (2184, 0.00437459286950012
3), (4078, 0.004361015369641064), (4326, 0.00431957114111891), (579, 0.00430
3417568776366), (528, 0.004291886829258619), (1817, 0.00427206381282814), (3
417, 0.004256932583050854), (3553, 0.004198260102788322), (2016, 0.004181237
325304903), (3940, 0.004179867334422005), (932, 0.004170932018430365), (233
6, 0.0041312087557689075), (1018, 0.004088433136853023), (4701, 0.0040171221
34485077), (1304, 0.003963023316569858), (337, 0.0037869959958092567), (25,
0.0), (34, 0.0), (42, 0.0), (49, 0.0), (73, 0.0), (77, 0.0), (100, 0.0), (10
5, 0.0), (118, 0.0), (120, 0.0), (133, 0.0), (135, 0.0), (137, 0.0), (154,
0.0), (155, 0.0), (161, 0.0), (173, 0.0), (177, 0.0), (192, 0.0), (194, 0.
0), (214, 0.0), (226, 0.0), (231, 0.0), (247, 0.0), (250, 0.0), (251, 0.0),
(255, 0.0), (258, 0.0), (265, 0.0), (268, 0.0), (269, 0.0), (272, 0.0), (28
0, 0.0), (281, 0.0), (283, 0.0), (287, 0.0), (288, 0.0), (293, 0.0), (298,
0.0), (314, 0.0), (317, 0.0), (321, 0.0), (323, 0.0), (326, 0.0), (327, 0.
0), (338, 0.0), (343, 0.0), (351, 0.0), (354, 0.0), (357, 0.0), (364, 0.0),
(367, 0.0), (378, 0.0), (385, 0.0), (388, 0.0), (390, 0.0), (391, 0.0), (39
5, 0.0), (397, 0.0), (398, 0.0), (404, 0.0), (406, 0.0), (407, 0.0), (409,
0.0), (416, 0.0), (417, 0.0), (418, 0.0), (423, 0.0), (427, 0.0), (429, 0.
0), (430, 0.0), (431, 0.0), (434, 0.0), (435, 0.0), (438, 0.0), (439, 0.0),
(444, 0.0), (445, 0.0), (448, 0.0), (452, 0.0), (463, 0.0), (465, 0.0), (47
4, 0.0), (477, 0.0), (481, 0.0), (482, 0.0), (489, 0.0), (492, 0.0), (496,
0.0), (497, 0.0), (499, 0.0), (506, 0.0), (509, 0.0), (515, 0.0), (516, 0.
0), (517, 0.0), (519, 0.0), (520, 0.0), (521, 0.0), (522, 0.0), (524, 0.0),
(526, 0.0), (527, 0.0), (532, 0.0), (533, 0.0), (538, 0.0), (548, 0.0), (55
0, 0.0), (552, 0.0), (554, 0.0), (555, 0.0), (557, 0.0), (558, 0.0), (559,
0.0), (563, 0.0), (567, 0.0), (576, 0.0), (584, 0.0), (585, 0.0), (588, 0.
0), (598, 0.0), (603, 0.0), (605, 0.0), (606, 0.0), (608, 0.0), (614, 0.0),
(616, 0.0), (619, 0.0), (620, 0.0), (623, 0.0), (628, 0.0), (630, 0.0), (63
3, 0.0), (636, 0.0), (637, 0.0), (638, 0.0), (642, 0.0), (647, 0.0), (648,
0.0), (649, 0.0), (650, 0.0), (651, 0.0), (656, 0.0), (662, 0.0), (663, 0.
0), (666, 0.0), (667, 0.0), (672, 0.0), (679, 0.0), (681, 0.0), (682, 0.0),
(684, 0.0), (686, 0.0), (689, 0.0), (690, 0.0), (692, 0.0), (693, 0.0), (69
6, 0.0), (697, 0.0), (709, 0.0), (710, 0.0), (712, 0.0), (714, 0.0), (717,
0.0), (719, 0.0), (722, 0.0), (727, 0.0), (742, 0.0), (743, 0.0), (749, 0.
0), (751, 0.0), (758, 0.0), (759, 0.0), (765, 0.0), (766, 0.0), (772, 0.0),
(776, 0.0), (779, 0.0), (792, 0.0), (795, 0.0), (796, 0.0), (798, 0.0), (80
1, 0.0), (802, 0.0), (803, 0.0), (806, 0.0), (810, 0.0), (815, 0.0), (817,
0.0), (819, 0.0), (820, 0.0), (822, 0.0), (824, 0.0), (826, 0.0), (827, 0.
0), (829, 0.0), (835, 0.0), (837, 0.0), (839, 0.0), (843, 0.0), (846, 0.0),
(847, 0.0), (849, 0.0), (852, 0.0), (853, 0.0), (857, 0.0), (860, 0.0), (86
1, 0.0), (865, 0.0), (867, 0.0), (868, 0.0), (869, 0.0), (871, 0.0), (872,
0.0), (875, 0.0), (876, 0.0), (877, 0.0), (879, 0.0), (881, 0.0), (883, 0.
0), (884, 0.0), (886, 0.0), (887, 0.0), (890, 0.0), (891, 0.0), (896, 0.0),
(897, 0.0), (903, 0.0), (905, 0.0), (906, 0.0), (907, 0.0), (909, 0.0), (91
0, 0.0), (912, 0.0), (913, 0.0), (915, 0.0), (916, 0.0), (917, 0.0), (918,
0.0), (921, 0.0), (923, 0.0), (924, 0.0), (925, 0.0), (926, 0.0), (927, 0.
0), (928, 0.0), (936, 0.0), (938, 0.0), (943, 0.0), (944, 0.0), (946, 0.0),
(947, 0.0), (957, 0.0), (958, 0.0), (962, 0.0), (964, 0.0), (966, 0.0), (96
8, 0.0), (970, 0.0), (971, 0.0), (975, 0.0), (980, 0.0), (983, 0.0), (986,
0.0), (987, 0.0), (991, 0.0), (995, 0.0), (997, 0.0), (998, 0.0), (1004, 0.
0), (1007, 0.0), (1009, 0.0), (1010, 0.0), (1011, 0.0), (1013, 0.0), (1017,
0.0), (1019, 0.0), (1021, 0.0), (1022, 0.0), (1023, 0.0), (1025, 0.0), (102
6, 0.0), (1030, 0.0), (1031, 0.0), (1032, 0.0), (1033, 0.0), (1036, 0.0), (1
037, 0.0), (1038, 0.0), (1040, 0.0), (1042, 0.0), (1045, 0.0), (1046, 0.0),
(1047, 0.0), (1048, 0.0), (1051, 0.0), (1054, 0.0), (1060, 0.0), (1061, 0.
0), (1063, 0.0), (1065, 0.0), (1066, 0.0), (1069, 0.0), (1071, 0.0), (1075,
0.0), (1081, 0.0), (1087, 0.0), (1088, 0.0), (1091, 0.0), (1094, 0.0), (109
8, 0.0), (1102, 0.0), (1107, 0.0), (1108, 0.0), (1112, 0.0), (1113, 0.0), (1
115, 0.0), (1116, 0.0), (1117, 0.0), (1120, 0.0), (1121, 0.0), (1122, 0.0),
(1123, 0.0), (1125, 0.0), (1126, 0.0), (1127, 0.0), (1129, 0.0), (1130, 0.
0), (1132, 0.0), (1141, 0.0), (1145, 0.0), (1147, 0.0), (1148, 0.0), (1149,
0.0), (1150, 0.0), (1151, 0.0), (1154, 0.0), (1156, 0.0), (1160, 0.0), (116
1, 0.0), (1162, 0.0), (1163, 0.0), (1164, 0.0), (1166, 0.0), (1167, 0.0), (1
168, 0.0), (1169, 0.0), (1176, 0.0), (1179, 0.0), (1181, 0.0), (1182, 0.0),
(1185, 0.0), (1186, 0.0), (1187, 0.0), (1189, 0.0), (1190, 0.0), (1194, 0.
0), (1196, 0.0), (1197, 0.0), (1203, 0.0), (1204, 0.0), (1205, 0.0), (1206,
0.0), (1207, 0.0), (1208, 0.0), (1211, 0.0), (1215, 0.0), (1216, 0.0), (121
8, 0.0), (1219, 0.0), (1220, 0.0), (1221, 0.0), (1223, 0.0), (1224, 0.0), (1
225, 0.0), (1226, 0.0), (1227, 0.0), (1228, 0.0), (1229, 0.0), (1231, 0.0),
(1235, 0.0), (1236, 0.0), (1240, 0.0), (1241, 0.0), (1242, 0.0), (1246, 0.
0), (1252, 0.0), (1255, 0.0), (1258, 0.0), (1260, 0.0), (1261, 0.0), (1262,
0.0), (1264, 0.0), (1265, 0.0), (1268, 0.0), (1276, 0.0), (1280, 0.0), (129
2, 0.0), (1293, 0.0), (1295, 0.0), (1301, 0.0), (1307, 0.0), (1308, 0.0), (1
309, 0.0), (1312, 0.0), (1313, 0.0), (1314, 0.0), (1315, 0.0), (1316, 0.0),
(1323, 0.0), (1325, 0.0), (1327, 0.0), (1329, 0.0), (1330, 0.0), (1333, 0.
0), (1340, 0.0), (1346, 0.0), (1348, 0.0), (1349, 0.0), (1350, 0.0), (1351,
0.0), (1353, 0.0), (1355, 0.0), (1356, 0.0), (1360, 0.0), (1362, 0.0), (136
4, 0.0), (1366, 0.0), (1371, 0.0), (1372, 0.0), (1373, 0.0), (1374, 0.0), (1
376, 0.0), (1378, 0.0), (1381, 0.0), (1384, 0.0), (1385, 0.0), (1386, 0.0),
(1388, 0.0), (1389, 0.0), (1391, 0.0), (1393, 0.0), (1394, 0.0), (1397, 0.
0), (1400, 0.0), (1401, 0.0), (1403, 0.0), (1405, 0.0), (1407, 0.0), (1408,
0.0), (1409, 0.0), (1410, 0.0), (1411, 0.0), (1413, 0.0), (1414, 0.0), (141
6, 0.0), (1418, 0.0), (1420, 0.0), (1421, 0.0), (1423, 0.0), (1424, 0.0), (1
427, 0.0), (1429, 0.0), (1430, 0.0), (1435, 0.0), (1441, 0.0), (1442, 0.0),
(1444, 0.0), (1449, 0.0), (1454, 0.0), (1455, 0.0), (1458, 0.0), (1461, 0.
0), (1462, 0.0), (1464, 0.0), (1466, 0.0), (1471, 0.0), (1475, 0.0), (1476,
0.0), (1477, 0.0), (1478, 0.0), (1483, 0.0), (1485, 0.0), (1487, 0.0), (148
9, 0.0), (1492, 0.0), (1493, 0.0), (1497, 0.0), (1498, 0.0), (1499, 0.0), (1
501, 0.0), (1508, 0.0), (1511, 0.0), (1512, 0.0), (1516, 0.0), (1519, 0.0),
(1520, 0.0), (1521, 0.0), (1522, 0.0), (1523, 0.0), (1526, 0.0), (1527, 0.
0), (1532, 0.0), (1533, 0.0), (1536, 0.0), (1537, 0.0), (1540, 0.0), (1541,
0.0), (1543, 0.0), (1544, 0.0), (1545, 0.0), (1548, 0.0), (1549, 0.0), (155
2, 0.0), (1555, 0.0), (1556, 0.0), (1557, 0.0), (1559, 0.0), (1560, 0.0), (1
561, 0.0), (1563, 0.0), (1565, 0.0), (1566, 0.0), (1567, 0.0), (1570, 0.0),
(1571, 0.0), (1572, 0.0), (1574, 0.0), (1576, 0.0), (1578, 0.0), (1579, 0.
0), (1581, 0.0), (1582, 0.0), (1584, 0.0), (1585, 0.0), (1590, 0.0), (1591,
0.0), (1593, 0.0), (1594, 0.0), (1598, 0.0), (1599, 0.0), (1603, 0.0), (160
5, 0.0), (1609, 0.0), (1612, 0.0), (1613, 0.0), (1614, 0.0), (1618, 0.0), (1
619, 0.0), (1620, 0.0), (1621, 0.0), (1622, 0.0), (1623, 0.0), (1624, 0.0),
(1627, 0.0), (1629, 0.0), (1630, 0.0), (1631, 0.0), (1632, 0.0), (1634, 0.
0), (1638, 0.0), (1640, 0.0), (1647, 0.0), (1648, 0.0), (1655, 0.0), (1656,
0.0), (1659, 0.0), (1660, 0.0), (1662, 0.0), (1665, 0.0), (1666, 0.0), (166
8, 0.0), (1673, 0.0), (1674, 0.0), (1676, 0.0), (1677, 0.0), (1678, 0.0), (1
679, 0.0), (1681, 0.0), (1685, 0.0), (1688, 0.0), (1689, 0.0), (1690, 0.0),
(1691, 0.0), (1692, 0.0), (1693, 0.0), (1694, 0.0), (1698, 0.0), (1700, 0.
0), (1704, 0.0), (1705, 0.0), (1706, 0.0), (1708, 0.0), (1711, 0.0), (1714,
0.0), (1716, 0.0), (1717, 0.0), (1718, 0.0), (1719, 0.0), (1722, 0.0), (172
3, 0.0), (1724, 0.0), (1729, 0.0), (1730, 0.0), (1731, 0.0), (1732, 0.0), (1
736, 0.0), (1737, 0.0), (1744, 0.0), (1745, 0.0), (1746, 0.0), (1748, 0.0),
(1749, 0.0), (1751, 0.0), (1752, 0.0), (1755, 0.0), (1756, 0.0), (1758, 0.
0), (1759, 0.0), (1760, 0.0), (1763, 0.0), (1766, 0.0), (1767, 0.0), (1768,
0.0), (1770, 0.0), (1775, 0.0), (1776, 0.0), (1778, 0.0), (1779, 0.0), (178
1, 0.0), (1784, 0.0), (1787, 0.0), (1788, 0.0), (1789, 0.0), (1791, 0.0), (1
793, 0.0), (1796, 0.0), (1799, 0.0), (1800, 0.0), (1801, 0.0), (1803, 0.0),
(1804, 0.0), (1805, 0.0), (1806, 0.0), (1809, 0.0), (1810, 0.0), (1811, 0.
0), (1812, 0.0), (1813, 0.0), (1814, 0.0), (1816, 0.0), (1818, 0.0), (1820,
0.0), (1824, 0.0), (1829, 0.0), (1831, 0.0), (1832, 0.0), (1833, 0.0), (183
4, 0.0), (1835, 0.0), (1838, 0.0), (1839, 0.0), (1840, 0.0), (1842, 0.0), (1
843, 0.0), (1849, 0.0), (1855, 0.0), (1857, 0.0), (1859, 0.0), (1861, 0.0),
(1862, 0.0), (1866, 0.0), (1867, 0.0), (1869, 0.0), (1870, 0.0), (1871, 0.
0), (1873, 0.0), (1875, 0.0), (1876, 0.0), (1879, 0.0), (1881, 0.0), (1883,
0.0), (1884, 0.0), (1885, 0.0), (1886, 0.0), (1887, 0.0), (1888, 0.0), (188
9, 0.0), (1890, 0.0), (1891, 0.0), (1893, 0.0), (1895, 0.0), (1898, 0.0), (1
900, 0.0), (1901, 0.0), (1903, 0.0), (1904, 0.0), (1905, 0.0), (1906, 0.0),
(1909, 0.0), (1911, 0.0), (1913, 0.0), (1917, 0.0), (1921, 0.0), (1923, 0.
0), (1924, 0.0), (1926, 0.0), (1927, 0.0), (1928, 0.0), (1929, 0.0), (1934,
0.0), (1935, 0.0), (1940, 0.0), (1941, 0.0), (1942, 0.0), (1944, 0.0), (194
5, 0.0), (1946, 0.0), (1947, 0.0), (1948, 0.0), (1949, 0.0), (1951, 0.0), (1
952, 0.0), (1957, 0.0), (1960, 0.0), (1961, 0.0), (1963, 0.0), (1964, 0.0),
(1965, 0.0), (1966, 0.0), (1970, 0.0), (1979, 0.0), (1980, 0.0), (1981, 0.
0), (1982, 0.0), (1983, 0.0), (1988, 0.0), (1989, 0.0), (1993, 0.0), (1994,
0.0), (1996, 0.0), (1998, 0.0), (2000, 0.0), (2005, 0.0), (2006, 0.0), (200
8, 0.0), (2009, 0.0), (2011, 0.0), (2012, 0.0), (2014, 0.0), (2017, 0.0), (2
018, 0.0), (2019, 0.0), (2020, 0.0), (2021, 0.0), (2022, 0.0), (2025, 0.0),
(2027, 0.0), (2030, 0.0), (2031, 0.0), (2032, 0.0), (2033, 0.0), (2035, 0.
0), (2038, 0.0), (2040, 0.0), (2041, 0.0), (2045, 0.0), (2048, 0.0), (2051,
0.0), (2052, 0.0), (2053, 0.0), (2056, 0.0), (2059, 0.0), (2061, 0.0), (206
2, 0.0), (2065, 0.0), (2067, 0.0), (2068, 0.0), (2070, 0.0), (2072, 0.0), (2
073, 0.0), (2078, 0.0), (2079, 0.0), (2080, 0.0), (2081, 0.0), (2082, 0.0),
(2083, 0.0), (2088, 0.0), (2090, 0.0), (2091, 0.0), (2092, 0.0), (2094, 0.
0), (2096, 0.0), (2098, 0.0), (2099, 0.0), (2104, 0.0), (2105, 0.0), (2106,
0.0), (2108, 0.0), (2109, 0.0), (2113, 0.0), (2115, 0.0), (2117, 0.0), (211
8, 0.0), (2119, 0.0), (2120, 0.0), (2123, 0.0), (2124, 0.0), (2125, 0.0), (2
126, 0.0), (2130, 0.0), (2132, 0.0), (2133, 0.0), (2134, 0.0), (2135, 0.0),
(2137, 0.0), (2139, 0.0), (2141, 0.0), (2143, 0.0), (2144, 0.0), (2146, 0.
0), (2147, 0.0), (2148, 0.0), (2149, 0.0), (2150, 0.0), (2153, 0.0), (2158,
0.0), (2166, 0.0), (2168, 0.0), (2170, 0.0), (2173, 0.0), (2176, 0.0), (217
7, 0.0), (2180, 0.0), (2182, 0.0), (2187, 0.0), (2189, 0.0), (2190, 0.0), (2
191, 0.0), (2193, 0.0), (2197, 0.0), (2199, 0.0), (2202, 0.0), (2204, 0.0),
(2208, 0.0), (2210, 0.0), (2211, 0.0), (2214, 0.0), (2215, 0.0), (2217, 0.
0), (2223, 0.0), (2225, 0.0), (2227, 0.0), (2230, 0.0), (2231, 0.0), (2232,
0.0), (2233, 0.0), (2234, 0.0), (2236, 0.0), (2238, 0.0), (2239, 0.0), (224
0, 0.0), (2241, 0.0), (2242, 0.0), (2243, 0.0), (2246, 0.0), (2248, 0.0), (2
249, 0.0), (2251, 0.0), (2252, 0.0), (2254, 0.0), (2256, 0.0), (2257, 0.0),
(2259, 0.0), (2260, 0.0), (2265, 0.0), (2266, 0.0), (2267, 0.0), (2269, 0.
0), (2271, 0.0), (2272, 0.0), (2275, 0.0), (2276, 0.0), (2279, 0.0), (2280,
0.0), (2281, 0.0), (2282, 0.0), (2283, 0.0), (2284, 0.0), (2286, 0.0), (228
7, 0.0), (2290, 0.0), (2297, 0.0), (2299, 0.0), (2301, 0.0), (2302, 0.0), (2
303, 0.0), (2305, 0.0), (2306, 0.0), (2307, 0.0), (2311, 0.0), (2312, 0.0),
(2313, 0.0), (2315, 0.0), (2318, 0.0), (2319, 0.0), (2321, 0.0), (2322, 0.
0), (2325, 0.0), (2328, 0.0), (2329, 0.0), (2330, 0.0), (2331, 0.0), (2333,
0.0), (2337, 0.0), (2339, 0.0), (2341, 0.0), (2342, 0.0), (2345, 0.0), (234
7, 0.0), (2350, 0.0), (2351, 0.0), (2353, 0.0), (2355, 0.0), (2356, 0.0), (2
358, 0.0), (2359, 0.0), (2361, 0.0), (2362, 0.0), (2367, 0.0), (2368, 0.0),
(2369, 0.0), (2370, 0.0), (2373, 0.0), (2374, 0.0), (2376, 0.0), (2377, 0.
0), (2378, 0.0), (2379, 0.0), (2382, 0.0), (2384, 0.0), (2385, 0.0), (2392,
0.0), (2393, 0.0), (2396, 0.0), (2399, 0.0), (2401, 0.0), (2402, 0.0), (240
4, 0.0), (2407, 0.0), (2408, 0.0), (2409, 0.0), (2413, 0.0), (2414, 0.0), (2
415, 0.0), (2416, 0.0), (2417, 0.0), (2418, 0.0), (2419, 0.0), (2420, 0.0),
(2421, 0.0), (2422, 0.0), (2424, 0.0), (2426, 0.0), (2427, 0.0), (2428, 0.
0), (2430, 0.0), (2431, 0.0), (2434, 0.0), (2436, 0.0), (2438, 0.0), (2440,
0.0), (2441, 0.0), (2443, 0.0), (2445, 0.0), (2448, 0.0), (2449, 0.0), (245
0, 0.0), (2452, 0.0), (2455, 0.0), (2456, 0.0), (2459, 0.0), (2460, 0.0), (2
461, 0.0), (2462, 0.0), (2463, 0.0), (2464, 0.0), (2465, 0.0), (2467, 0.0),
(2468, 0.0), (2472, 0.0), (2473, 0.0), (2476, 0.0), (2477, 0.0), (2478, 0.
0), (2481, 0.0), (2483, 0.0), (2485, 0.0), (2488, 0.0), (2489, 0.0), (2491,
0.0), (2493, 0.0), (2494, 0.0), (2495, 0.0), (2496, 0.0), (2497, 0.0), (249
8, 0.0), (2499, 0.0), (2500, 0.0), (2501, 0.0), (2502, 0.0), (2503, 0.0), (2
505, 0.0), (2507, 0.0), (2511, 0.0), (2513, 0.0), (2516, 0.0), (2517, 0.0),
(2518, 0.0), (2519, 0.0), (2520, 0.0), (2522, 0.0), (2524, 0.0), (2526, 0.
0), (2529, 0.0), (2530, 0.0), (2531, 0.0), (2532, 0.0), (2534, 0.0), (2535,
0.0), (2540, 0.0), (2542, 0.0), (2546, 0.0), (2547, 0.0), (2548, 0.0), (254
9, 0.0), (2551, 0.0), (2553, 0.0), (2554, 0.0), (2555, 0.0), (2557, 0.0), (2
559, 0.0), (2560, 0.0), (2562, 0.0), (2566, 0.0), (2567, 0.0), (2568, 0.0),
(2569, 0.0), (2570, 0.0), (2571, 0.0), (2572, 0.0), (2574, 0.0), (2576, 0.
0), (2584, 0.0), (2588, 0.0), (2589, 0.0), (2594, 0.0), (2595, 0.0), (2599,
0.0), (2600, 0.0), (2601, 0.0), (2603, 0.0), (2604, 0.0), (2606, 0.0), (261
0, 0.0), (2613, 0.0), (2614, 0.0), (2615, 0.0), (2616, 0.0), (2617, 0.0), (2
618, 0.0), (2619, 0.0), (2620, 0.0), (2621, 0.0), (2622, 0.0), (2624, 0.0),
(2626, 0.0), (2627, 0.0), (2628, 0.0), (2629, 0.0), (2631, 0.0), (2632, 0.
0), (2634, 0.0), (2635, 0.0), (2637, 0.0), (2640, 0.0), (2642, 0.0), (2643,
0.0), (2647, 0.0), (2649, 0.0), (2652, 0.0), (2656, 0.0), (2658, 0.0), (265
9, 0.0), (2660, 0.0), (2661, 0.0), (2662, 0.0), (2664, 0.0), (2666, 0.0), (2
667, 0.0), (2668, 0.0), (2670, 0.0), (2671, 0.0), (2673, 0.0), (2674, 0.0),
(2677, 0.0), (2679, 0.0), (2680, 0.0), (2682, 0.0), (2685, 0.0), (2686, 0.
0), (2687, 0.0), (2689, 0.0), (2690, 0.0), (2691, 0.0), (2694, 0.0), (2695,
0.0), (2697, 0.0), (2699, 0.0), (2700, 0.0), (2701, 0.0), (2702, 0.0), (270
3, 0.0), (2705, 0.0), (2707, 0.0), (2709, 0.0), (2710, 0.0), (2711, 0.0), (2
713, 0.0), (2714, 0.0), (2715, 0.0), (2716, 0.0), (2717, 0.0), (2718, 0.0),
(2719, 0.0), (2720, 0.0), (2721, 0.0), (2723, 0.0), (2724, 0.0), (2725, 0.
0), (2727, 0.0), (2730, 0.0), (2732, 0.0), (2734, 0.0), (2737, 0.0), (2738,
0.0), (2739, 0.0), (2740, 0.0), (2742, 0.0), (2744, 0.0), (2745, 0.0), (274
8, 0.0), (2749, 0.0), (2750, 0.0), (2753, 0.0), (2754, 0.0), (2756, 0.0), (2
760, 0.0), (2762, 0.0), (2763, 0.0), (2765, 0.0), (2767, 0.0), (2769, 0.0),
(2770, 0.0), (2771, 0.0), (2772, 0.0), (2773, 0.0), (2774, 0.0), (2776, 0.
0), (2779, 0.0), (2780, 0.0), (2782, 0.0), (2783, 0.0), (2786, 0.0), (2788,
0.0), (2789, 0.0), (2792, 0.0), (2793, 0.0), (2795, 0.0), (2797, 0.0), (279
8, 0.0), (2799, 0.0), (2801, 0.0), (2802, 0.0), (2804, 0.0), (2808, 0.0), (2
810, 0.0), (2811, 0.0), (2813, 0.0), (2814, 0.0), (2816, 0.0), (2820, 0.0),
(2825, 0.0), (2828, 0.0), (2829, 0.0), (2830, 0.0), (2833, 0.0), (2835, 0.
0), (2836, 0.0), (2837, 0.0), (2838, 0.0), (2839, 0.0), (2840, 0.0), (2842,
0.0), (2843, 0.0), (2844, 0.0), (2846, 0.0), (2847, 0.0), (2850, 0.0), (285
2, 0.0), (2854, 0.0), (2855, 0.0), (2857, 0.0), (2858, 0.0), (2859, 0.0), (2
861, 0.0), (2864, 0.0), (2866, 0.0), (2869, 0.0), (2870, 0.0), (2871, 0.0),
(2873, 0.0), (2874, 0.0), (2876, 0.0), (2881, 0.0), (2882, 0.0), (2883, 0.
0), (2885, 0.0), (2887, 0.0), (2888, 0.0), (2889, 0.0), (2890, 0.0), (2891,
0.0), (2892, 0.0), (2893, 0.0), (2894, 0.0), (2895, 0.0), (2896, 0.0), (289
8, 0.0), (2901, 0.0), (2902, 0.0), (2903, 0.0), (2905, 0.0), (2906, 0.0), (2
907, 0.0), (2908, 0.0), (2909, 0.0), (2910, 0.0), (2911, 0.0), (2914, 0.0),
(2916, 0.0), (2917, 0.0), (2919, 0.0), (2920, 0.0), (2922, 0.0), (2924, 0.
0), (2925, 0.0), (2927, 0.0), (2928, 0.0), (2929, 0.0), (2932, 0.0), (2935,
0.0), (2936, 0.0), (2938, 0.0), (2939, 0.0), (2940, 0.0), (2941, 0.0), (294
2, 0.0), (2943, 0.0), (2944, 0.0), (2945, 0.0), (2946, 0.0), (2947, 0.0), (2
948, 0.0), (2949, 0.0), (2950, 0.0), (2951, 0.0), (2952, 0.0), (2954, 0.0),
(2955, 0.0), (2956, 0.0), (2957, 0.0), (2958, 0.0), (2960, 0.0), (2962, 0.
0), (2963, 0.0), (2965, 0.0), (2970, 0.0), (2971, 0.0), (2973, 0.0), (2974,
0.0), (2975, 0.0), (2976, 0.0), (2977, 0.0), (2979, 0.0), (2982, 0.0), (298
3, 0.0), (2984, 0.0), (2985, 0.0), (2988, 0.0), (2989, 0.0), (2990, 0.0), (2
992, 0.0), (2993, 0.0), (2997, 0.0), (2998, 0.0), (2999, 0.0), (3000, 0.0),
(3003, 0.0), (3005, 0.0), (3009, 0.0), (3010, 0.0), (3011, 0.0), (3016, 0.
0), (3017, 0.0), (3022, 0.0), (3023, 0.0), (3025, 0.0), (3026, 0.0), (3027,
0.0), (3028, 0.0), (3031, 0.0), (3036, 0.0), (3037, 0.0), (3038, 0.0), (303
9, 0.0), (3041, 0.0), (3042, 0.0), (3044, 0.0), (3045, 0.0), (3046, 0.0), (3
049, 0.0), (3050, 0.0), (3052, 0.0), (3053, 0.0), (3056, 0.0), (3057, 0.0),
(3058, 0.0), (3060, 0.0), (3061, 0.0), (3063, 0.0), (3064, 0.0), (3065, 0.
0), (3066, 0.0), (3067, 0.0), (3070, 0.0), (3071, 0.0), (3075, 0.0), (3076,
0.0), (3078, 0.0), (3079, 0.0), (3080, 0.0), (3081, 0.0), (3084, 0.0), (308
5, 0.0), (3088, 0.0), (3091, 0.0), (3093, 0.0), (3095, 0.0), (3096, 0.0), (3
097, 0.0), (3100, 0.0), (3101, 0.0), (3103, 0.0), (3104, 0.0), (3107, 0.0),
(3108, 0.0), (3109, 0.0), (3110, 0.0), (3111, 0.0), (3112, 0.0), (3113, 0.
0), (3114, 0.0), (3115, 0.0), (3117, 0.0), (3118, 0.0), (3119, 0.0), (3121,
0.0), (3122, 0.0), (3123, 0.0), (3124, 0.0), (3125, 0.0), (3131, 0.0), (313
2, 0.0), (3134, 0.0), (3135, 0.0), (3137, 0.0), (3139, 0.0), (3140, 0.0), (3
141, 0.0), (3145, 0.0), (3146, 0.0), (3149, 0.0), (3152, 0.0), (3156, 0.0),
(3157, 0.0), (3159, 0.0), (3161, 0.0), (3164, 0.0), (3167, 0.0), (3168, 0.
0), (3169, 0.0), (3173, 0.0), (3174, 0.0), (3175, 0.0), (3176, 0.0), (3178,
0.0), (3179, 0.0), (3183, 0.0), (3185, 0.0), (3186, 0.0), (3187, 0.0), (318
8, 0.0), (3189, 0.0), (3191, 0.0), (3192, 0.0), (3193, 0.0), (3194, 0.0), (3
197, 0.0), (3199, 0.0), (3200, 0.0), (3201, 0.0), (3205, 0.0), (3206, 0.0),
(3212, 0.0), (3213, 0.0), (3216, 0.0), (3217, 0.0), (3218, 0.0), (3220, 0.
0), (3222, 0.0), (3223, 0.0), (3226, 0.0), (3227, 0.0), (3228, 0.0), (3234,
0.0), (3235, 0.0), (3238, 0.0), (3239, 0.0), (3241, 0.0), (3242, 0.0), (324
3, 0.0), (3244, 0.0), (3246, 0.0), (3247, 0.0), (3248, 0.0), (3253, 0.0), (3
254, 0.0), (3257, 0.0), (3258, 0.0), (3261, 0.0), (3262, 0.0), (3263, 0.0),
(3264, 0.0), (3265, 0.0), (3266, 0.0), (3268, 0.0), (3269, 0.0), (3270, 0.
0), (3271, 0.0), (3272, 0.0), (3273, 0.0), (3275, 0.0), (3276, 0.0), (3277,
0.0), (3278, 0.0), (3279, 0.0), (3281, 0.0), (3283, 0.0), (3285, 0.0), (328
7, 0.0), (3288, 0.0), (3289, 0.0), (3291, 0.0), (3292, 0.0), (3294, 0.0), (3
295, 0.0), (3298, 0.0), (3300, 0.0), (3301, 0.0), (3302, 0.0), (3303, 0.0),
(3307, 0.0), (3310, 0.0), (3311, 0.0), (3313, 0.0), (3314, 0.0), (3317, 0.
0), (3319, 0.0), (3320, 0.0), (3322, 0.0), (3324, 0.0), (3325, 0.0), (3327,
0.0), (3328, 0.0), (3330, 0.0), (3331, 0.0), (3334, 0.0), (3338, 0.0), (333
9, 0.0), (3340, 0.0), (3341, 0.0), (3342, 0.0), (3344, 0.0), (3345, 0.0), (3
346, 0.0), (3348, 0.0), (3356, 0.0), (3357, 0.0), (3358, 0.0), (3360, 0.0),
(3362, 0.0), (3365, 0.0), (3367, 0.0), (3369, 0.0), (3371, 0.0), (3374, 0.
0), (3375, 0.0), (3376, 0.0), (3378, 0.0), (3379, 0.0), (3380, 0.0), (3381,
0.0), (3384, 0.0), (3387, 0.0), (3388, 0.0), (3389, 0.0), (3390, 0.0), (339
1, 0.0), (3393, 0.0), (3394, 0.0), (3397, 0.0), (3398, 0.0), (3400, 0.0), (3
401, 0.0), (3402, 0.0), (3404, 0.0), (3406, 0.0), (3407, 0.0), (3408, 0.0),
(3409, 0.0), (3410, 0.0), (3411, 0.0), (3413, 0.0), (3415, 0.0), (3418, 0.
0), (3419, 0.0), (3422, 0.0), (3423, 0.0), (3425, 0.0), (3426, 0.0), (3429,
0.0), (3430, 0.0), (3431, 0.0), (3432, 0.0), (3433, 0.0), (3434, 0.0), (343
5, 0.0), (3436, 0.0), (3438, 0.0), (3440, 0.0), (3451, 0.0), (3452, 0.0), (3
453, 0.0), (3454, 0.0), (3456, 0.0), (3457, 0.0), (3458, 0.0), (3459, 0.0),
(3461, 0.0), (3464, 0.0), (3465, 0.0), (3467, 0.0), (3468, 0.0), (3470, 0.
0), (3471, 0.0), (3472, 0.0), (3474, 0.0), (3475, 0.0), (3476, 0.0), (3478,
0.0), (3479, 0.0), (3480, 0.0), (3481, 0.0), (3482, 0.0), (3484, 0.0), (348
7, 0.0), (3488, 0.0), (3489, 0.0), (3491, 0.0), (3493, 0.0), (3495, 0.0), (3
496, 0.0), (3497, 0.0), (3498, 0.0), (3499, 0.0), (3501, 0.0), (3502, 0.0),
(3503, 0.0), (3504, 0.0), (3506, 0.0), (3507, 0.0), (3508, 0.0), (3510, 0.
0), (3513, 0.0), (3514, 0.0), (3515, 0.0), (3517, 0.0), (3519, 0.0), (3520,
0.0), (3521, 0.0), (3524, 0.0), (3525, 0.0), (3528, 0.0), (3529, 0.0), (353
0, 0.0), (3531, 0.0), (3532, 0.0), (3533, 0.0), (3535, 0.0), (3536, 0.0), (3
537, 0.0), (3538, 0.0), (3539, 0.0), (3540, 0.0), (3541, 0.0), (3542, 0.0),
(3543, 0.0), (3544, 0.0), (3547, 0.0), (3548, 0.0), (3550, 0.0), (3551, 0.
0), (3554, 0.0), (3555, 0.0), (3558, 0.0), (3559, 0.0), (3560, 0.0), (3563,
0.0), (3564, 0.0), (3565, 0.0), (3567, 0.0), (3570, 0.0), (3571, 0.0), (357
2, 0.0), (3573, 0.0), (3574, 0.0), (3576, 0.0), (3577, 0.0), (3578, 0.0), (3
580, 0.0), (3583, 0.0), (3585, 0.0), (3586, 0.0), (3587, 0.0), (3588, 0.0),
(3589, 0.0), (3590, 0.0), (3592, 0.0), (3593, 0.0), (3595, 0.0), (3596, 0.
0), (3597, 0.0), (3598, 0.0), (3599, 0.0), (3600, 0.0), (3601, 0.0), (3602,
0.0), (3605, 0.0), (3608, 0.0), (3609, 0.0), (3610, 0.0), (3611, 0.0), (361
4, 0.0), (3615, 0.0), (3621, 0.0), (3622, 0.0), (3625, 0.0), (3626, 0.0), (3
627, 0.0), (3628, 0.0), (3629, 0.0), (3631, 0.0), (3632, 0.0), (3633, 0.0),
(3634, 0.0), (3635, 0.0), (3638, 0.0), (3640, 0.0), (3641, 0.0), (3645, 0.
0), (3646, 0.0), (3647, 0.0), (3648, 0.0), (3651, 0.0), (3653, 0.0), (3654,
0.0), (3655, 0.0), (3657, 0.0), (3658, 0.0), (3659, 0.0), (3660, 0.0), (366
1, 0.0), (3662, 0.0), (3663, 0.0), (3665, 0.0), (3666, 0.0), (3669, 0.0), (3
670, 0.0), (3671, 0.0), (3673, 0.0), (3674, 0.0), (3675, 0.0), (3676, 0.0),
(3677, 0.0), (3678, 0.0), (3680, 0.0), (3681, 0.0), (3682, 0.0), (3683, 0.
0), (3684, 0.0), (3685, 0.0), (3686, 0.0), (3687, 0.0), (3688, 0.0), (3690,
0.0), (3691, 0.0), (3694, 0.0), (3696, 0.0), (3697, 0.0), (3700, 0.0), (370
1, 0.0), (3702, 0.0), (3703, 0.0), (3704, 0.0), (3706, 0.0), (3708, 0.0), (3
709, 0.0), (3710, 0.0), (3712, 0.0), (3713, 0.0), (3716, 0.0), (3717, 0.0),
(3718, 0.0), (3719, 0.0), (3720, 0.0), (3721, 0.0), (3723, 0.0), (3726, 0.
0), (3727, 0.0), (3728, 0.0), (3729, 0.0), (3731, 0.0), (3732, 0.0), (3734,
0.0), (3735, 0.0), (3738, 0.0), (3739, 0.0), (3741, 0.0), (3742, 0.0), (374
3, 0.0), (3744, 0.0), (3745, 0.0), (3746, 0.0), (3747, 0.0), (3752, 0.0), (3
753, 0.0), (3754, 0.0), (3757, 0.0), (3759, 0.0), (3760, 0.0), (3761, 0.0),
(3762, 0.0), (3763, 0.0), (3765, 0.0), (3766, 0.0), (3767, 0.0), (3768, 0.
0), (3769, 0.0), (3770, 0.0), (3772, 0.0), (3773, 0.0), (3775, 0.0), (3776,
0.0), (3778, 0.0), (3779, 0.0), (3780, 0.0), (3781, 0.0), (3782, 0.0), (378
3, 0.0), (3784, 0.0), (3785, 0.0), (3787, 0.0), (3788, 0.0), (3789, 0.0), (3
790, 0.0), (3791, 0.0), (3792, 0.0), (3793, 0.0), (3794, 0.0), (3797, 0.0),
(3798, 0.0), (3801, 0.0), (3803, 0.0), (3805, 0.0), (3806, 0.0), (3807, 0.
0), (3808, 0.0), (3809, 0.0), (3814, 0.0), (3817, 0.0), (3818, 0.0), (3820,
0.0), (3821, 0.0), (3822, 0.0), (3829, 0.0), (3832, 0.0), (3837, 0.0), (383
8, 0.0), (3839, 0.0), (3841, 0.0), (3843, 0.0), (3844, 0.0), (3847, 0.0), (3
850, 0.0), (3852, 0.0), (3855, 0.0), (3859, 0.0), (3860, 0.0), (3861, 0.0),
(3862, 0.0), (3863, 0.0), (3864, 0.0), (3865, 0.0), (3868, 0.0), (3869, 0.
0), (3870, 0.0), (3871, 0.0), (3872, 0.0), (3874, 0.0), (3875, 0.0), (3876,
0.0), (3877, 0.0), (3878, 0.0), (3879, 0.0), (3880, 0.0), (3881, 0.0), (388
3, 0.0), (3886, 0.0), (3888, 0.0), (3889, 0.0), (3890, 0.0), (3891, 0.0), (3
892, 0.0), (3894, 0.0), (3896, 0.0), (3897, 0.0), (3898, 0.0), (3900, 0.0),
(3902, 0.0), (3903, 0.0), (3905, 0.0), (3906, 0.0), (3907, 0.0), (3909, 0.
0), (3910, 0.0), (3911, 0.0), (3913, 0.0), (3914, 0.0), (3915, 0.0), (3917,
0.0), (3918, 0.0), (3919, 0.0), (3921, 0.0), (3922, 0.0), (3923, 0.0), (392
4, 0.0), (3925, 0.0), (3926, 0.0), (3927, 0.0), (3928, 0.0), (3930, 0.0), (3
933, 0.0), (3934, 0.0), (3935, 0.0), (3936, 0.0), (3939, 0.0), (3944, 0.0),
(3946, 0.0), (3947, 0.0), (3949, 0.0), (3950, 0.0), (3951, 0.0), (3953, 0.
0), (3954, 0.0), (3955, 0.0), (3957, 0.0), (3958, 0.0), (3959, 0.0), (3960,
0.0), (3961, 0.0), (3964, 0.0), (3967, 0.0), (3968, 0.0), (3970, 0.0), (397
1, 0.0), (3973, 0.0), (3974, 0.0), (3975, 0.0), (3977, 0.0), (3978, 0.0), (3
979, 0.0), (3980, 0.0), (3984, 0.0), (3985, 0.0), (3990, 0.0), (3992, 0.0),
(3995, 0.0), (3996, 0.0), (3997, 0.0), (3999, 0.0), (4000, 0.0), (4001, 0.
0), (4005, 0.0), (4006, 0.0), (4007, 0.0), (4008, 0.0), (4009, 0.0), (4010,
0.0), (4014, 0.0), (4015, 0.0), (4016, 0.0), (4017, 0.0), (4018, 0.0), (401
9, 0.0), (4020, 0.0), (4021, 0.0), (4023, 0.0), (4024, 0.0), (4025, 0.0), (4
026, 0.0), (4027, 0.0), (4028, 0.0), (4029, 0.0), (4030, 0.0), (4031, 0.0),
(4034, 0.0), (4036, 0.0), (4037, 0.0), (4038, 0.0), (4040, 0.0), (4041, 0.
0), (4043, 0.0), (4044, 0.0), (4047, 0.0), (4048, 0.0), (4050, 0.0), (4051,
0.0), (4052, 0.0), (4053, 0.0), (4056, 0.0), (4057, 0.0), (4058, 0.0), (405
9, 0.0), (4060, 0.0), (4062, 0.0), (4063, 0.0), (4064, 0.0), (4066, 0.0), (4
067, 0.0), (4068, 0.0), (4075, 0.0), (4079, 0.0), (4080, 0.0), (4082, 0.0),
(4086, 0.0), (4087, 0.0), (4088, 0.0), (4089, 0.0), (4090, 0.0), (4091, 0.
0), (4092, 0.0), (4094, 0.0), (4095, 0.0), (4096, 0.0), (4097, 0.0), (4098,
0.0), (4100, 0.0), (4101, 0.0), (4102, 0.0), (4103, 0.0), (4105, 0.0), (410
7, 0.0), (4108, 0.0), (4109, 0.0), (4110, 0.0), (4112, 0.0), (4113, 0.0), (4
115, 0.0), (4116, 0.0), (4118, 0.0), (4119, 0.0), (4120, 0.0), (4121, 0.0),
(4122, 0.0), (4123, 0.0), (4126, 0.0), (4127, 0.0), (4130, 0.0), (4132, 0.
0), (4133, 0.0), (4134, 0.0), (4136, 0.0), (4138, 0.0), (4139, 0.0), (4140,
0.0), (4141, 0.0), (4142, 0.0), (4144, 0.0), (4147, 0.0), (4148, 0.0), (415
0, 0.0), (4151, 0.0), (4152, 0.0), (4153, 0.0), (4157, 0.0), (4159, 0.0), (4
163, 0.0), (4164, 0.0), (4165, 0.0), (4166, 0.0), (4167, 0.0), (4168, 0.0),
(4170, 0.0), (4171, 0.0), (4172, 0.0), (4173, 0.0), (4174, 0.0), (4175, 0.
0), (4177, 0.0), (4178, 0.0), (4179, 0.0), (4180, 0.0), (4181, 0.0), (4184,
0.0), (4185, 0.0), (4186, 0.0), (4188, 0.0), (4190, 0.0), (4192, 0.0), (419
4, 0.0), (4196, 0.0), (4197, 0.0), (4198, 0.0), (4199, 0.0), (4200, 0.0), (4
201, 0.0), (4203, 0.0), (4204, 0.0), (4205, 0.0), (4206, 0.0), (4207, 0.0),
(4208, 0.0), (4209, 0.0), (4210, 0.0), (4211, 0.0), (4212, 0.0), (4213, 0.
0), (4214, 0.0), (4216, 0.0), (4217, 0.0), (4221, 0.0), (4222, 0.0), (4223,
0.0), (4224, 0.0), (4226, 0.0), (4227, 0.0), (4228, 0.0), (4229, 0.0), (423
1, 0.0), (4232, 0.0), (4234, 0.0), (4236, 0.0), (4237, 0.0), (4238, 0.0), (4
239, 0.0), (4240, 0.0), (4242, 0.0), (4243, 0.0), (4244, 0.0), (4246, 0.0),
(4247, 0.0), (4249, 0.0), (4252, 0.0), (4253, 0.0), (4255, 0.0), (4257, 0.
0), (4259, 0.0), (4260, 0.0), (4263, 0.0), (4265, 0.0), (4268, 0.0), (4270,
0.0), (4271, 0.0), (4272, 0.0), (4274, 0.0), (4278, 0.0), (4279, 0.0), (428
1, 0.0), (4282, 0.0), (4285, 0.0), (4287, 0.0), (4288, 0.0), (4289, 0.0), (4
290, 0.0), (4291, 0.0), (4292, 0.0), (4293, 0.0), (4294, 0.0), (4295, 0.0),
(4297, 0.0), (4298, 0.0), (4299, 0.0), (4300, 0.0), (4301, 0.0), (4302, 0.
0), (4303, 0.0), (4304, 0.0), (4305, 0.0), (4306, 0.0), (4307, 0.0), (4308,
0.0), (4309, 0.0), (4311, 0.0), (4313, 0.0), (4314, 0.0), (4317, 0.0), (431
9, 0.0), (4320, 0.0), (4322, 0.0), (4323, 0.0), (4324, 0.0), (4328, 0.0), (4
330, 0.0), (4331, 0.0), (4333, 0.0), (4334, 0.0), (4336, 0.0), (4338, 0.0),
(4340, 0.0), (4341, 0.0), (4342, 0.0), (4345, 0.0), (4346, 0.0), (4347, 0.
0), (4348, 0.0), (4350, 0.0), (4352, 0.0), (4354, 0.0), (4355, 0.0), (4358,
0.0), (4359, 0.0), (4360, 0.0), (4361, 0.0), (4362, 0.0), (4363, 0.0), (436
5, 0.0), (4366, 0.0), (4367, 0.0), (4368, 0.0), (4369, 0.0), (4370, 0.0), (4
371, 0.0), (4372, 0.0), (4373, 0.0), (4374, 0.0), (4375, 0.0), (4376, 0.0),
(4377, 0.0), (4378, 0.0), (4382, 0.0), (4383, 0.0), (4384, 0.0), (4385, 0.
0), (4387, 0.0), (4389, 0.0), (4390, 0.0), (4391, 0.0), (4392, 0.0), (4393,
0.0), (4394, 0.0), (4396, 0.0), (4397, 0.0), (4403, 0.0), (4404, 0.0), (440
5, 0.0), (4406, 0.0), (4407, 0.0), (4410, 0.0), (4411, 0.0), (4412, 0.0), (4
413, 0.0), (4415, 0.0), (4416, 0.0), (4417, 0.0), (4418, 0.0), (4419, 0.0),
(4420, 0.0), (4422, 0.0), (4428, 0.0), (4429, 0.0), (4430, 0.0), (4431, 0.
0), (4432, 0.0), (4433, 0.0), (4434, 0.0), (4435, 0.0), (4436, 0.0), (4437,
0.0), (4438, 0.0), (4439, 0.0), (4441, 0.0), (4442, 0.0), (4443, 0.0), (444
4, 0.0), (4445, 0.0), (4446, 0.0), (4447, 0.0), (4449, 0.0), (4451, 0.0), (4
452, 0.0), (4453, 0.0), (4455, 0.0), (4456, 0.0), (4457, 0.0), (4458, 0.0),
(4459, 0.0), (4461, 0.0), (4462, 0.0), (4463, 0.0), (4464, 0.0), (4469, 0.
0), (4471, 0.0), (4472, 0.0), (4473, 0.0), (4474, 0.0), (4475, 0.0), (4477,
0.0), (4478, 0.0), (4480, 0.0), (4481, 0.0), (4483, 0.0), (4484, 0.0), (448
8, 0.0), (4489, 0.0), (4490, 0.0), (4491, 0.0), (4492, 0.0), (4493, 0.0), (4
494, 0.0), (4496, 0.0), (4497, 0.0), (4498, 0.0), (4500, 0.0), (4501, 0.0),
(4502, 0.0), (4503, 0.0), (4504, 0.0), (4505, 0.0), (4506, 0.0), (4508, 0.
0), (4509, 0.0), (4510, 0.0), (4511, 0.0), (4512, 0.0), (4514, 0.0), (4515,
0.0), (4517, 0.0), (4518, 0.0), (4519, 0.0), (4520, 0.0), (4521, 0.0), (452
2, 0.0), (4523, 0.0), (4524, 0.0), (4525, 0.0), (4526, 0.0), (4528, 0.0), (4
529, 0.0), (4530, 0.0), (4531, 0.0), (4532, 0.0), (4533, 0.0), (4534, 0.0),
(4536, 0.0), (4537, 0.0), (4538, 0.0), (4539, 0.0), (4540, 0.0), (4541, 0.
0), (4543, 0.0), (4544, 0.0), (4545, 0.0), (4547, 0.0), (4548, 0.0), (4550,
0.0), (4551, 0.0), (4553, 0.0), (4556, 0.0), (4558, 0.0), (4559, 0.0), (456
0, 0.0), (4561, 0.0), (4562, 0.0), (4564, 0.0), (4566, 0.0), (4567, 0.0), (4
568, 0.0), (4569, 0.0), (4570, 0.0), (4571, 0.0), (4572, 0.0), (4573, 0.0),
(4574, 0.0), (4576, 0.0), (4577, 0.0), (4578, 0.0), (4580, 0.0), (4581, 0.
0), (4582, 0.0), (4583, 0.0), (4584, 0.0), (4585, 0.0), (4586, 0.0), (4588,
0.0), (4589, 0.0), (4590, 0.0), (4591, 0.0), (4594, 0.0), (4595, 0.0), (459
6, 0.0), (4597, 0.0), (4598, 0.0), (4600, 0.0), (4602, 0.0), (4603, 0.0), (4
604, 0.0), (4605, 0.0), (4606, 0.0), (4609, 0.0), (4610, 0.0), (4611, 0.0),
(4612, 0.0), (4613, 0.0), (4614, 0.0), (4615, 0.0), (4616, 0.0), (4617, 0.
0), (4618, 0.0), (4622, 0.0), (4625, 0.0), (4626, 0.0), (4627, 0.0), (4628,
0.0), (4629, 0.0), (4630, 0.0), (4631, 0.0), (4632, 0.0), (4633, 0.0), (463
4, 0.0), (4635, 0.0), (4636, 0.0), (4637, 0.0), (4640, 0.0), (4641, 0.0), (4
642, 0.0), (4643, 0.0), (4644, 0.0), (4645, 0.0), (4647, 0.0), (4650, 0.0),
(4653, 0.0), (4655, 0.0), (4656, 0.0), (4657, 0.0), (4658, 0.0), (4661, 0.
0), (4662, 0.0), (4663, 0.0), (4665, 0.0), (4666, 0.0), (4672, 0.0), (4673,
0.0), (4674, 0.0), (4676, 0.0), (4678, 0.0), (4679, 0.0), (4680, 0.0), (468
1, 0.0), (4682, 0.0), (4683, 0.0), (4684, 0.0), (4685, 0.0), (4686, 0.0), (4
687, 0.0), (4689, 0.0), (4694, 0.0), (4696, 0.0), (4697, 0.0), (4698, 0.0),
(4699, 0.0), (4702, 0.0), (4703, 0.0), (4704, 0.0), (4705, 0.0), (4706, 0.
0), (4707, 0.0), (4709, 0.0), (4710, 0.0), (4711, 0.0), (4712, 0.0), (4713,
0.0), (4716, 0.0), (4717, 0.0), (4718, 0.0), (4719, 0.0), (4720, 0.0), (472
1, 0.0), (4722, 0.0), (4723, 0.0), (4726, 0.0), (4729, 0.0), (4730, 0.0), (4
731, 0.0), (4732, 0.0), (4733, 0.0), (4736, 0.0), (4737, 0.0), (4738, 0.0),
(4739, 0.0), (4742, 0.0), (4743, 0.0), (4744, 0.0), (4746, 0.0), (4747, 0.
0), (4748, 0.0), (4749, 0.0), (4750, 0.0), (4751, 0.0), (4752, 0.0), (4753,
0.0), (4754, 0.0), (4755, 0.0), (4756, 0.0), (4757, 0.0), (4762, 0.0), (476
3, 0.0), (4765, 0.0), (4766, 0.0), (4767, 0.0), (4768, 0.0), (4770, 0.0), (4
771, 0.0), (4774, 0.0), (4775, 0.0), (4776, 0.0), (4777, 0.0), (4779, 0.0),
(4780, 0.0), (4781, 0.0), (4782, 0.0), (4783, 0.0), (4784, 0.0), (4785, 0.
0), (4786, 0.0), (4789, 0.0), (4790, 0.0), (4791, 0.0), (4792, 0.0), (4793,
0.0), (4794, 0.0), (4795, 0.0), (4797, 0.0), (4799, 0.0), (4800, 0.0), (480
1, 0.0), (4802, 0.0)]

In [ ]: # print the name of similar movies based on the index

print('Movies suggested for you : \n')

i = 1

for movie in sorted_similar_movies:


index = movie[0]
title_from_index = movies_data[movies_data.index==index]['title'].values[0
if (i<30):
print(i, '.',title_from_index)
i+=1
Movies suggested for you :

1 . Iron Man
2 . Iron Man 2
3 . Iron Man 3
4 . Avengers: Age of Ultron
5 . The Avengers
6 . Captain America: Civil War
7 . Captain America: The Winter Soldier
8 . Ant-Man
9 . X-Men
10 . Made
11 . X-Men: Apocalypse
12 . X2
13 . The Incredible Hulk
14 . The Helix... Loaded
15 . X-Men: First Class
16 . X-Men: Days of Future Past
17 . Captain America: The First Avenger
18 . Kick-Ass 2
19 . Guardians of the Galaxy
20 . Deadpool
21 . Thor: The Dark World
22 . G-Force
23 . X-Men: The Last Stand
24 . Duets
25 . Mortdecai
26 . The Last Airbender
27 . Southland Tales
28 . Zathura: A Space Adventure
29 . Sky Captain and the World of Tomorrow

Movie Recommendation Sytem

In [ ]: movie_name = input(' Enter your favourite movie name : ')

list_of_all_titles = movies_data['title'].tolist()

find_close_match = difflib.get_close_matches(movie_name, list_of_all_titles)

close_match = find_close_match[0]

index_of_the_movie = movies_data[movies_data.title == close_match]['index'].

similarity_score = list(enumerate(similarity[index_of_the_movie]))

sorted_similar_movies = sorted(similarity_score, key = lambda x:x[1], revers

print('Movies suggested for you : \n')

i = 1

for movie in sorted_similar_movies:


index = movie[0]
title_from_index = movies_data[movies_data.index==index]['title'].values[0
if (i<30):
print(i, '.',title_from_index)
i+=1

Enter your favourite movie name : bat man


Movies suggested for you :

1 . Batman
2 . Batman Returns
3 . Batman & Robin
4 . The Dark Knight Rises
5 . Batman Begins
6 . The Dark Knight
7 . A History of Violence
8 . Superman
9 . Beetlejuice
10 . Bedazzled
11 . Mars Attacks!
12 . The Sentinel
13 . Planet of the Apes
14 . Man of Steel
15 . Suicide Squad
16 . The Mask
17 . Salton Sea
18 . Spider-Man 3
19 . The Postman Always Rings Twice
20 . Hang 'em High
21 . Spider-Man 2
22 . Dungeons & Dragons: Wrath of the Dragon God
23 . Superman Returns
24 . Jonah Hex
25 . Exorcist II: The Heretic
26 . Superman II
27 . Green Lantern
28 . Superman III
29 . Something's Gotta Give

In [ ]:

This notebook was converted with convert.ploomber.io

You might also like