Skip to content

Instantly share code, notes, and snippets.

@sxywu
Last active November 28, 2017 16:28
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save sxywu/4d8d330cec3902529d442a6316d6b4df to your computer and use it in GitHub Desktop.
Film Flowers #axidraw
license: gpl-3.0
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.13.1/lodash.js'></script>
<script src='https://cdn.rawgit.com/riccardoscalco/textures/master/textures.min.js'></script>
<link href='https://fonts.googleapis.com/css?family=Libre+Baskerville:400,700' rel='stylesheet' type='text/css'>
<style>
body {
font-family: "Libre Baskerville";
color: #444;
}
a {
color: #444;
}
.all {
width: 1090px;
margin: auto;
}
.header {
text-align: center;
margin-top: 60px;
}
.header svg {
width: 100%;
height: 500px;
margin: 40px 0;
}
.header h1 {
font-size: 64px;
margin-bottom: 0px;
}
.header .description {
margin: 20px auto;
width: 320px;
font-size: 18px;
}
.content {
position: relative;
}
.content svg {
position: absolute;
width: 900px;
height: 1200px;
top: 0;
}
.years {
position: absolute;
top: 0;
text-align: center;
}
.year {
font-size: 28px;
}
.titles {
position: absolute;
top: 0;
text-align: center;
font-weight: 700;
font-size: 12px;
}
/* blend options taken from visual cinnamon tutorial: http://www.visualcinnamon.com/2016/05/beautiful-color-blending-svg-d3.html */
/*Set isolate on the group element*/
/* .flower {
isolation: isolate;
cursor: pointer;
} */
/*Set blend mode on SVG element: e.g. screen, multiply*/
/* .flower circle, .legend circle { mix-blend-mode: multiply; } */
</style>
</head>
<body>
<div class='all'>
<div class='header'>
<h1>film flowers</h1>
<div class='description'>
<p>top summer blockbusters reimagined as flowers</p>
(<a href='https://twitter.com/sxywu' target='_new'>shirley wu</a>)
</div>
<svg></svg>
</div>
<div class='content'>
<svg></svg>
<div class='years'></div>
<div class='titles'></div>
</div>
</div>
<script>
var strokeColor = '#444';
var flowerSize = 150;
var padding = 20;
var legend = d3.select('.header svg');
var svg = d3.select('.content svg')
.style('left', flowerSize + 'px')
.append('g')
.attr('transform', 'translate(' + [padding, padding] + ')');
var years = d3.select('.years');
var titles = d3.select('.titles')
.style('left', flowerSize + 'px')
.style('padding', padding + 'px');
var petalPaths = [[
'M0 0',
"C50 50 50 100 0 100",
"C-50 100 -50 50 0 0"
],
[
'M-35 0',
'C-25 25 25 25 35 0',
'C50 25 25 75 0 100',
'C-25 75 -50 25 -35 0'
],
[
'M0 0',
'C50 40 50 70 20 100',
'L0 85',
'L-20 100',
'C-50 70 -50 40 0 0'
],
[
'M0 0',
'C50 25 50 75 0 100',
'C-50 75 -50 25 0 0'
]];
var leaf = [
'M0 15',
'C15 40 15 60 0 75',
'C-15 60 -15 40 0 15'
];
var numPetalScale = d3.scaleQuantize()
.range(_.range(5, 15));
var flowerSizeScale = d3.scaleLinear()
.range([.05, .5]);
var petalScale = d3.scaleOrdinal()
.domain(['G', 'PG', 'PG-13', 'R'])
.range(_.range(4));
var petalColors = d3.scaleOrdinal()
.range(['#FFB09E', '#CBF2BD', '#AFE9FF', '#FFC8F0', '#FFF2B4']);
/*****************************************************
** get movie data
******************************************************/
d3.json('movies.json', function(movies) {
movies = _.chain(movies)
.map(function(movie) {
movie.year = parseInt(movie.Year);
movie.genres = movie.Genre.split(', ');
movie.rating = parseFloat(movie.imdbRating);
movie.votes = parseInt(movie.imdbVotes.replace(/\,/g, ''));
return movie;
}).sortBy(function(movie) {
return -movie.year
}).take(25).value();
// number of petals depending on number of rating votes
var minVotes = d3.min(movies, function(d) {return d.votes});
var maxVotes = d3.max(movies, function(d) {return d.votes});
numPetalScale.domain([minVotes, maxVotes]);
// overall flower size from rating
var minRating = d3.min(movies, function(d) {return d.rating});
var maxRating = d3.max(movies, function(d) {return d.rating});
flowerSizeScale.domain([minRating, maxRating]);
// get the top 4 genres by count
var topGenres = _.chain(movies)
.map('genres').flatten()
.countBy().toPairs()
.sortBy(1).map(0)
.takeRight(4)
.value();
topGenres.push('Other');
petalColors.domain(topGenres);
var allTextures = _.reduce(topGenres, (obj, genre) => {
var t = textures.lines()
.orientation("3/8", "7/8")
.size(10)
.strokeWidth(1)
.shapeRendering("crispEdges")
.stroke(petalColors(genre));
svg.call(t);
obj[genre] = t;
return obj;
}, {});
// get all the years
var allYears = _.chain(movies)
.map('year').uniq().value();
/*****************************************************
** build legend
******************************************************/
var fontSize = 12;
var legendWidth = 1090;
// petal shapes
var legendPetalShapes = legend.append('g')
.attr('transform', 'translate(' + (legendWidth / 2) + ',0)')
.selectAll('g')
.data(['G', 'PG', 'PG-13', 'R'])
.enter().append('g')
.attr('transform', function(d, i) {
var x = i * (flowerSize / 2) - 112.5;
return 'translate(' + [x, 0] + ')scale(0.5)';
});
legendPetalShapes.append('path')
.attr('fill', 'none')
.attr('stroke', strokeColor)
.attr('stroke-width', 4)
.attr('d', function(rating) {
return petalPaths[petalScale(rating)];
});
legendPetalShapes.append('text')
.attr('y', flowerSize)
.attr('text-anchor', 'middle')
.attr('fill', strokeColor)
.style('font-size', fontSize / .5 + 'px')
.text(function(d) {return d});
// petal colors
var legendPetalColors = legend.append('g')
.attr('transform',
'translate(' + [legendWidth / 2, flowerSize * .9] + ')')
.selectAll('g').data(topGenres)
.enter().append('g')
.attr('transform', function(d, i) {
var x = i * (flowerSize / 2) - flowerSize;
return 'translate(' + [x, 0] + ')scale(0.5)';
});
legendPetalColors.append('circle')
.attr('r', flowerSize / 3)
.attr('fill', function(d) {return allTextures[d].url()})
// .attr('fill', d => petalColors(d));
legendPetalColors.append('text')
.attr('y', flowerSize * .75)
.attr('text-anchor', 'middle')
.attr('fill', strokeColor)
.style('font-size', fontSize / .5 + 'px')
.text(function(d) {return d});
// number of petals in a flower
var legendNumPetals = legend.append('g')
.attr('transform',
'translate(' + [legendWidth / 2, flowerSize * .9 * 2] + ')')
.selectAll('g')
.data(_.times(5, function(i) {
var votes = minVotes + (maxVotes - minVotes) / 4 * i;
return Math.round(votes / 1000) * 1000;
})).enter().append('g')
.attr('transform', function(d, i) {
var x = i * (flowerSize * .6) - (flowerSize * .6 * 2);
return 'translate(' + [x, 0] + ')scale(0.3)';
});
legendNumPetals.selectAll('path')
.data(function(d) {
var numPetals = numPetalScale(d);
var path = petalPaths[petalScale('PG-13')];
return _.times(numPetals, function(i) {
return {
angle: (360/numPetals) * i,
path: path
}
});
}).enter().append('path')
.attr('stroke', strokeColor)
.attr('stroke-width', 2 / .3)
.attr('fill', 'none')
.attr('d', function(d) {return d.path.join(' ')})
.attr('transform', function(d) {
return 'rotate(' + [d.angle] + ')';
});
legendNumPetals.append('text')
.attr('y', flowerSize * 1.25)
.attr('text-anchor', 'middle')
.attr('fill', strokeColor)
.style('font-size', fontSize / .3 + 'px')
.text(function(d, i) {
return d3.format(',')(d / 1000) + 'k' +
(i === 0 ? ' imdb votes' : '');
});
// size of flower
var legendPetalSizes = legend.append('g')
.attr('transform',
'translate(' + [legendWidth / 2, flowerSize * .9 * 3] + ')')
.selectAll('g')
.data(_.times(5, function(i) {
return minRating + (maxRating - minRating) / 4 * i;
})).enter().append('g')
.attr('transform', function(d, i) {
var x = i * (flowerSize * .8) - (flowerSize * .8 * 2);
return 'translate(' + [x, 0] + ')';
});
legendPetalSizes.selectAll('path')
.data(function(rating) {
var numPetals = 5;
var path = petalPaths[petalScale('PG-13')];
return _.times(numPetals, function(i) {
return {
scale: flowerSizeScale(rating),
angle: (360/numPetals) * i,
path: path
}
});
}).enter().append('path')
.attr('stroke', strokeColor)
.attr('stroke-width', function(d) {
return 2 / d.scale;
}).attr('fill', 'none')
.attr('d', function(d) {return d.path.join(' ')})
.attr('transform', function(d) {
return 'rotate(' + [d.angle] + ')scale(' + d.scale + ')';
});
legendPetalSizes.append('text')
.attr('y', flowerSize / 2)
.attr('dy', '.35em')
.attr('text-anchor', 'middle')
.attr('fill', strokeColor)
.style('font-size', fontSize)
.text(function(d, i) {
return d3.format('.1f')(d) + ' / 10';
});
/*****************************************************
** draw all flowers
******************************************************/
// draw flower for each movie
var flowers = svg.selectAll('g.flower')
.data(_.values(movies)).enter().append('g')
.classed('flower', true)
.attr('transform', function(d, i) {
var scale = flowerSizeScale(d.rating);
var x = (i % 5) * flowerSize * 1.25;
var y = Math.floor(i / 5) * flowerSize * 1.5;
return 'translate(' + [x, y] +
')scale(' + scale + ')';
}).on('click', function(d) {
window.open('http://www.imdb.com/title/' + d.imdbID, '_new');
});
// create the data for each flower's colors
flowers.selectAll('circle')
.data(function(d) {
// if there's only one genre, center the circle
var cy = d.genres.length === 1 ? 0 : -flowerSize / 5;
return _.map(d.genres, function(genre, i) {
genre = _.includes(topGenres, genre) ? genre : 'Other';
return {
cy: cy,
scale: flowerSizeScale(d.rating),
angle: (360/d.genres.length) * i,
fill: allTextures[genre].url(),
// fill: petalColors(genre),
}
});
}).enter().append('circle')
.attr('cy', function(d) {return d.cy})
.attr('r', flowerSize / 2)
.attr('fill', function(d) {return d.fill})
.attr('transform', function(d) {
var x = flowerSize / 2 / d.scale;
var y = flowerSize / 2 / d.scale;
return 'translate(' + [x, y] +
')rotate(' + d.angle + ')';
});
// draw the flower petals
flowers.selectAll('path.petal')
.data(function(d) {
var numPetals = numPetalScale(d.votes);
var path = petalPaths[petalScale(d.Rated)];
return _.times(numPetals, function(i) {
return {
scale: flowerSizeScale(d.rating),
angle: (360/numPetals) * i,
path: path
}
});
}).enter().append('path')
.classed('petal', true)
.attr('stroke', strokeColor)
.attr('stroke-width', function(d) {
return 2 / d.scale;
}).attr('fill', 'none')
.attr('d', function(d) {return d.path.join(' ')})
.attr('transform', function(d) {
var cx = flowerSize / 2 / d.scale;
var cy = flowerSize / 2 / d.scale;
return 'translate(' + [cx, cy] +
')rotate(' + [d.angle] + ')';
});
// draw the leaves
flowers.selectAll('path.leaf')
.data(function(d) {
var leaves = [];
if (d.Seen) {
leaves.push({
scale: flowerSizeScale(d.rating),
angle: -120
});
}
if (d.SeenOnRelease) {
leaves.push({
scale: flowerSizeScale(d.rating),
angle: 120
});
}
return leaves;
}).enter().append('path')
.classed('leaf', true)
.attr('stroke', '#555')
.attr('stroke-width', function(d) {
return 2 / d.scale;
}).attr('fill', '#4AB56D')
.attr('d', leaf.join(' '))
.attr('transform', function(d) {
var cx = flowerSize / 2 / d.scale;
var cy = flowerSize / 2 / d.scale + flowerSize;
return 'translate(' + [cx, cy] +
')rotate(' + [d.angle] + ')';
});
/*****************************************************
** add annotation
******************************************************/
// add the years to titles
years.selectAll('.year')
.data(allYears).enter().append('h1')
.classed('year', true)
.style('margin', 0)
.style('position', 'absolute')
.style('width', flowerSize + 'px')
.style('top', function(d, i) {
return i * flowerSize * 1.5 + flowerSize / 2 + 'px';
})
.text(function(d) {return d});
// finally add the titles
titles.selectAll('.title')
.data(_.values(movies))
.enter().append('div')
.classed('title', true)
.style('position', 'absolute')
.style('padding', '0 ' + padding + 'px')
.style('width', flowerSize * 1.25 - 2 * padding + 'px')
.style('left', function(d, i) {
return (i % 5) * flowerSize * 1.25 + 'px';
}).style('top', function(d, i) {
return Math.floor(i / 5) * flowerSize * 1.5 + flowerSize * 1.1 + 'px';
}).text(function(d) {
return d.Title;
});
});
</script>
</body>
{
"tt0099371":{
"Title":"Days of Thunder",
"Year":"1990",
"Rated":"PG-13",
"Released":"27 Jun 1990",
"Runtime":"107 min",
"Genre":"Action, Drama, Sport",
"Director":"Tony Scott",
"Writer":"Robert Towne (story), Tom Cruise (story), Robert Towne (screenplay)",
"Actors":"Tom Cruise, Nicole Kidman, Robert Duvall, Randy Quaid",
"Plot":"A young hot-shot stock car driver gets his chance to compete at the top level.",
"Language":"French, English",
"Country":"USA",
"Awards":"Nominated for 1 Oscar. Another 1 win.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BNjc5NjQ1ODIzN15BMl5BanBnXkFtZTgwMjkwNTg4NjE@._V1_SX300.jpg",
"Metascore":"60",
"imdbRating":"5.9",
"imdbVotes":"59,821",
"imdbID":"tt0099371",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0100404":{
"Title":"Presumed Innocent",
"Year":"1990",
"Rated":"R",
"Released":"27 Jul 1990",
"Runtime":"127 min",
"Genre":"Mystery, Thriller",
"Director":"Alan J. Pakula",
"Writer":"Scott Turow (novel), Frank Pierson (screenplay), Alan J. Pakula (screenplay)",
"Actors":"Harrison Ford, Brian Dennehy, Raul Julia, Bonnie Bedelia",
"Plot":"When the female deputy prosecutor R.K. Sabich had an affair with is murdered, he is chosen to lead the investigation. However, when he digs too deeply, he finds himself framed for the murder.",
"Language":"English",
"Country":"USA",
"Awards":"1 win & 2 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMjMyODU4NjQwMV5BMl5BanBnXkFtZTgwMTkwNTg4NjE@._V1_SX300.jpg",
"Metascore":"N/A",
"imdbRating":"6.9",
"imdbVotes":"28,947",
"imdbID":"tt0100404",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0099422":{
"Title":"Dick Tracy",
"Year":"1990",
"Rated":"PG",
"Released":"15 Jun 1990",
"Runtime":"105 min",
"Genre":"Action, Comedy, Crime",
"Director":"Warren Beatty",
"Writer":"Chester Gould (characters), Jim Cash, Jack Epps Jr.",
"Actors":"Warren Beatty, Charlie Korsmo, Michael Donovan O'Donnell, Jim Wilkey",
"Plot":"The comic strip detective finds his life vastly complicated when Breathless Mahoney makes advances towards him while he is trying to battle Big Boy Caprice's united mob.",
"Language":"English",
"Country":"USA",
"Awards":"Won 3 Oscars. Another 6 wins & 30 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BNDc3MjAxNjk0OV5BMl5BanBnXkFtZTgwNDI0MDc3NjE@._V1_SX300.jpg",
"Metascore":"N/A",
"imdbRating":"6.1",
"imdbVotes":"47,595",
"imdbID":"tt0099422",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0099423":{
"Title":"Die Hard 2",
"Year":"1990",
"Rated":"R",
"Released":"04 Jul 1990",
"Runtime":"124 min",
"Genre":"Action, Thriller",
"Director":"Renny Harlin",
"Writer":"Walter Wager (novel), Steven E. de Souza (screenplay), Doug Richardson (screenplay)",
"Actors":"Bruce Willis, Bonnie Bedelia, William Atherton, Reginald VelJohnson",
"Plot":"John McClane attempts to avert disaster as rogue military operatives seize control of Dulles International Airport in Washington, D.C.",
"Language":"English, Spanish",
"Country":"USA",
"Awards":"1 win & 1 nomination.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BNzM1MzMwNzY2OF5BMl5BanBnXkFtZTgwNzE1MzkyMTE@._V1_SX300.jpg",
"Metascore":"67",
"imdbRating":"7.1",
"imdbVotes":"267,702",
"imdbID":"tt0099423",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0099653":{
"Title":"Ghost",
"Year":"1990",
"Rated":"PG-13",
"Released":"13 Jul 1990",
"Runtime":"127 min",
"Genre":"Drama, Fantasy, Romance",
"Director":"Jerry Zucker",
"Writer":"Bruce Joel Rubin",
"Actors":"Patrick Swayze, Demi Moore, Whoopi Goldberg, Tony Goldwyn",
"Plot":"After an accident leaves a young man dead, his spirit stays behind to warn his lover of impending danger, with the help of a reluctant psychic.",
"Language":"English",
"Country":"USA",
"Awards":"Won 2 Oscars. Another 16 wins & 22 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTU0NzQzODUzNl5BMl5BanBnXkFtZTgwMjc5NTYxMTE@._V1_SX300.jpg",
"Metascore":"52",
"imdbRating":"7.0",
"imdbVotes":"152,717",
"imdbID":"tt0099653",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0102059":{
"Title":"Hot Shots!",
"Year":"1991",
"Rated":"PG-13",
"Released":"31 Jul 1991",
"Runtime":"84 min",
"Genre":"Action, Comedy",
"Director":"Jim Abrahams",
"Writer":"Jim Abrahams, Pat Proft",
"Actors":"Charlie Sheen, Cary Elwes, Valeria Golino, Lloyd Bridges",
"Plot":"A parody of Top Gun (1986) in which a talented but unstable fighter pilot must overcome the ghosts of his father and save a mission sabotaged by greedy weapons manufacturers.",
"Language":"English",
"Country":"USA",
"Awards":"1 win.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTQ4Mjg2NjY4NV5BMl5BanBnXkFtZTcwMjgwMDU1MQ@@._V1_SX300.jpg",
"Metascore":"N/A",
"imdbRating":"6.7",
"imdbVotes":"78,236",
"imdbID":"tt0102059",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0102510":{
"Title":"The Naked Gun 2½: The Smell of Fear",
"Year":"1991",
"Rated":"PG-13",
"Released":"28 Jun 1991",
"Runtime":"85 min",
"Genre":"Comedy, Crime",
"Director":"David Zucker",
"Writer":"Jim Abrahams (television series Police Squad), David Zucker (television series \"Police Squad\"), Jerry Zucker (television series Police Squad), David Zucker, Pat Proft",
"Actors":"Leslie Nielsen, Priscilla Presley, George Kennedy, O.J. Simpson",
"Plot":"Lieutenant Drebin discovers that his ex-girlfriend's new beau is involved in a plot to kidnap a scientist who advocates solar energy.",
"Language":"English",
"Country":"USA",
"Awards":"2 wins & 1 nomination.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTIyNTI5NDE1MF5BMl5BanBnXkFtZTYwMDAwMDY5._V1_SX300.jpg",
"Metascore":"N/A",
"imdbRating":"6.8",
"imdbVotes":"82,425",
"imdbID":"tt0102510",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0101587":{
"Title":"City Slickers",
"Year":"1991",
"Rated":"PG-13",
"Released":"07 Jun 1991",
"Runtime":"113 min",
"Genre":"Comedy",
"Director":"Ron Underwood",
"Writer":"Lowell Ganz, Babaloo Mandel",
"Actors":"Billy Crystal, Daniel Stern, Bruno Kirby, Patricia Wettig",
"Plot":"On the verge of turning 40, an unhappy Manhattan yuppie is roped into joining his two friends on a cattle drive in the southwest.",
"Language":"English",
"Country":"USA",
"Awards":"Won 1 Oscar. Another 7 wins & 6 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTkwNjM2MTc5NF5BMl5BanBnXkFtZTcwMzQ2NjEzNA@@._V1_SX300.jpg",
"Metascore":"N/A",
"imdbRating":"6.7",
"imdbVotes":"38,968",
"imdbID":"tt0101587",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0102798":{
"Title":"Robin Hood: Prince of Thieves",
"Year":"1991",
"Rated":"PG-13",
"Released":"14 Jun 1991",
"Runtime":"143 min",
"Genre":"Action, Adventure, Drama",
"Director":"Kevin Reynolds",
"Writer":"Pen Densham (story), Pen Densham (screenplay), John Watson (screenplay)",
"Actors":"Kevin Costner, Morgan Freeman, Mary Elizabeth Mastrantonio, Christian Slater",
"Plot":"When Robin and his Moorish companion come to England and the tyranny of the Sheriff of Nottingham, he decides to fight back as an outlaw.",
"Language":"English",
"Country":"USA",
"Awards":"Nominated for 1 Oscar. Another 16 wins & 17 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTg0OTg5MjExN15BMl5BanBnXkFtZTgwMjg3OTgzMTE@._V1_SX300.jpg",
"Metascore":"N/A",
"imdbRating":"6.9",
"imdbVotes":"143,950",
"imdbID":"tt0102798",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0103064":{
"Title":"Terminator 2: Judgment Day",
"Year":"1991",
"Rated":"R",
"Released":"03 Jul 1991",
"Runtime":"137 min",
"Genre":"Action, Sci-Fi",
"Director":"James Cameron",
"Writer":"James Cameron, William Wisher Jr.",
"Actors":"Arnold Schwarzenegger, Linda Hamilton, Edward Furlong, Robert Patrick",
"Plot":"A cyborg, identical to the one who failed to kill Sarah Connor, must now protect her young son, John Connor, from a more advanced cyborg, made out of liquid metal.",
"Language":"English, Spanish",
"Country":"USA, France",
"Awards":"Won 4 Oscars. Another 20 wins & 22 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTI4MDAwMDY3N15BMl5BanBnXkFtZTcwODIwMzMzMQ@@._V1._CR46,1,342,473_SY132_CR3,0,89,132_AL_.jpg_V1_SX300.jpg",
"Metascore":"75",
"imdbRating":"8.5",
"imdbVotes":"734,005",
"imdbID":"tt0103064",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0104691":{
"Title":"The Last of the Mohicans",
"Year":"1992",
"Rated":"R",
"Released":"25 Sep 1992",
"Runtime":"112 min",
"Genre":"Action, Adventure, Drama",
"Director":"Michael Mann",
"Writer":"James Fenimore Cooper (novel), John L. Balderston (adaptation), Paul Perez (adaptation), Daniel Moore (adaptation), Philip Dunne, Michael Mann (screenplay), Christopher Crowe (screenplay)",
"Actors":"Daniel Day-Lewis, Madeleine Stowe, Russell Means, Eric Schweig",
"Plot":"Three trappers protect a British Colonel's daughters in the midst of the French and Indian War.",
"Language":"English, French, Mohawk",
"Country":"USA",
"Awards":"Won 1 Oscar. Another 6 wins & 13 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTQ0MjQ5NDAzMV5BMl5BanBnXkFtZTcwNjYzMjE2MQ@@._V1_SX300.jpg",
"Metascore":"76",
"imdbRating":"7.8",
"imdbVotes":"112,195",
"imdbID":"tt0104691",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0105112":{
"Title":"Patriot Games",
"Year":"1992",
"Rated":"R",
"Released":"05 Jun 1992",
"Runtime":"117 min",
"Genre":"Action, Thriller",
"Director":"Phillip Noyce",
"Writer":"Tom Clancy (novel), W. Peter Iliff (screenplay), Donald Stewart (screenplay)",
"Actors":"Harrison Ford, Anne Archer, Patrick Bergin, Sean Bean",
"Plot":"When CIA Analyst Jack Ryan interferes with an IRA assassination, a renegade faction targets him and his family for revenge.",
"Language":"English",
"Country":"USA",
"Awards":"1 win & 2 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMjA3OTA0NjI0Nl5BMl5BanBnXkFtZTgwNjUwODQxMTE@._V1_SX300.jpg",
"Metascore":"N/A",
"imdbRating":"6.9",
"imdbVotes":"80,741",
"imdbID":"tt0105112",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0105695":{
"Title":"Unforgiven",
"Year":"1992",
"Rated":"R",
"Released":"07 Aug 1992",
"Runtime":"131 min",
"Genre":"Drama, Western",
"Director":"Clint Eastwood",
"Writer":"David Webb Peoples",
"Actors":"Clint Eastwood, Gene Hackman, Morgan Freeman, Richard Harris",
"Plot":"Retired Old West gunslinger William Munny reluctantly takes on one last job, with the help of his old partner and a young man.",
"Language":"English",
"Country":"USA",
"Awards":"Won 4 Oscars. Another 36 wins & 29 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTkzNTc0NDc4OF5BMl5BanBnXkFtZTcwNTY1ODg3OA@@._V1_SX300.jpg",
"Metascore":"82",
"imdbRating":"8.3",
"imdbVotes":"274,119",
"imdbID":"tt0105695",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0104694":{
"Title":"A League of Their Own",
"Year":"1992",
"Rated":"PG",
"Released":"01 Jul 1992",
"Runtime":"128 min",
"Genre":"Comedy, Drama, Sport",
"Director":"Penny Marshall",
"Writer":"Kim Wilson (story), Kelly Candaele (story), Lowell Ganz (screenplay), Babaloo Mandel (screenplay)",
"Actors":"Tom Hanks, Geena Davis, Lori Petty, Madonna",
"Plot":"Two sisters join the first female professional baseball league and struggle to help it succeed amidst their own growing rivalry.",
"Language":"English",
"Country":"USA",
"Awards":"Nominated for 2 Golden Globes. Another 6 wins & 6 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BODliMGQ1YzEtM2VhZi00MTU5LTllYTUtY2M3MDdjOTE4OGZlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg",
"Metascore":"67",
"imdbRating":"7.2",
"imdbVotes":"70,520",
"imdbID":"tt0104694",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0103776":{
"Title":"Batman Returns",
"Year":"1992",
"Rated":"PG-13",
"Released":"19 Jun 1992",
"Runtime":"126 min",
"Genre":"Action",
"Director":"Tim Burton",
"Writer":"Bob Kane (Batman characters), Daniel Waters (story), Sam Hamm (story), Daniel Waters (screenplay)",
"Actors":"Michael Keaton, Danny DeVito, Michelle Pfeiffer, Christopher Walken",
"Plot":"When a corrupt businessman and the grotesque Penguin plot to take control of Gotham City, only Batman can stop them, while the Catwoman has her own agenda.",
"Language":"English",
"Country":"USA, UK",
"Awards":"Nominated for 2 Oscars. Another 2 wins & 15 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BODM2OTc0Njg2OF5BMl5BanBnXkFtZTgwMDA4NjQxMTE@._V1_SX300.jpg",
"Metascore":"68",
"imdbRating":"7.0",
"imdbVotes":"212,437",
"imdbID":"tt0103776",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0107206":{
"Title":"In the Line of Fire",
"Year":"1993",
"Rated":"R",
"Released":"09 Jul 1993",
"Runtime":"128 min",
"Genre":"Action, Drama, Thriller",
"Director":"Wolfgang Petersen",
"Writer":"Jeff Maguire",
"Actors":"Clint Eastwood, John Malkovich, Rene Russo, Dylan McDermott",
"Plot":"Secret Service agent Frank Horrigan couldn't save Kennedy, but he's determined not to let a clever assassin take out this president.",
"Language":"English",
"Country":"USA",
"Awards":"Nominated for 3 Oscars. Another 2 wins & 12 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTM2MTIwOTQwMl5BMl5BanBnXkFtZTcwNTM2NDU2MQ@@._V1_SX300.jpg",
"Metascore":"74",
"imdbRating":"7.2",
"imdbVotes":"73,293",
"imdbID":"tt0107206",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0108160":{
"Title":"Sleepless in Seattle",
"Year":"1993",
"Rated":"PG",
"Released":"25 Jun 1993",
"Runtime":"105 min",
"Genre":"Comedy, Drama, Romance",
"Director":"Nora Ephron",
"Writer":"Jeff Arch (story), Nora Ephron (screenplay), David S. Ward (screenplay), Jeff Arch (screenplay)",
"Actors":"Tom Hanks, Ross Malinger, Rita Wilson, Victor Garber",
"Plot":"A recently widowed man's son calls a radio talk-show in an attempt to find his father a partner.",
"Language":"English",
"Country":"USA",
"Awards":"Nominated for 2 Oscars. Another 4 wins & 12 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BNzc0MDkwNjI0NF5BMl5BanBnXkFtZTgwMTY1MjEyMDE@._V1_SX300.jpg",
"Metascore":"72",
"imdbRating":"6.8",
"imdbVotes":"121,678",
"imdbID":"tt0108160",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0106918":{
"Title":"The Firm",
"Year":"1993",
"Rated":"R",
"Released":"30 Jun 1993",
"Runtime":"154 min",
"Genre":"Drama, Mystery, Thriller",
"Director":"Sydney Pollack",
"Writer":"John Grisham (novel), David Rabe (screenplay), Robert Towne (screenplay), David Rayfiel (screenplay)",
"Actors":"Tom Cruise, Jeanne Tripplehorn, Gene Hackman, Hal Holbrook",
"Plot":"A young lawyer joins a prestigious law firm only to discover that it has a sinister dark side.",
"Language":"English",
"Country":"USA",
"Awards":"Nominated for 2 Oscars. Another 3 wins & 4 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTgxMjM5NDYwM15BMl5BanBnXkFtZTgwODkzMzk5MDE@._V1_SX300.jpg",
"Metascore":"58",
"imdbRating":"6.8",
"imdbVotes":"88,127",
"imdbID":"tt0106918",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0106977":{
"Title":"The Fugitive",
"Year":"1993",
"Rated":"PG-13",
"Released":"06 Aug 1993",
"Runtime":"130 min",
"Genre":"Action, Adventure, Crime",
"Director":"Andrew Davis",
"Writer":"Jeb Stuart (screenplay), David Twohy (screenplay), David Twohy (story), Roy Huggins (characters)",
"Actors":"Harrison Ford, Tommy Lee Jones, Sela Ward, Julianne Moore",
"Plot":"Dr. Richard Kimble, unjustly accused of murdering his wife, must find the real killer while being the target of a nationwide manhunt.",
"Language":"English, Polish, Spanish",
"Country":"USA",
"Awards":"Won 1 Oscar. Another 11 wins & 28 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTU2OTkxNDA2OV5BMl5BanBnXkFtZTgwMzg3MjkyMTE@._V1_SX300.jpg",
"Metascore":"88",
"imdbRating":"7.8",
"imdbVotes":"211,830",
"imdbID":"tt0106977",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0107290":{
"Title":"Jurassic Park",
"Year":"1993",
"Rated":"PG-13",
"Released":"11 Jun 1993",
"Runtime":"127 min",
"Genre":"Adventure, Sci-Fi, Thriller",
"Director":"Steven Spielberg",
"Writer":"Michael Crichton (novel), Michael Crichton (screenplay), David Koepp (screenplay)",
"Actors":"Sam Neill, Laura Dern, Jeff Goldblum, Richard Attenborough",
"Plot":"During a preview tour, a theme park suffers a major power breakdown that allows its cloned dinosaur exhibits to run amok.",
"Language":"English, Spanish",
"Country":"USA",
"Awards":"Won 3 Oscars. Another 27 wins & 17 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMjM2MDgxMDg0Nl5BMl5BanBnXkFtZTgwNTM2OTM5NDE@._V1_SX300.jpg",
"Metascore":"68",
"imdbRating":"8.1",
"imdbVotes":"601,312",
"imdbID":"tt0107290",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0110475":{
"Title":"The Mask",
"Year":"1994",
"Rated":"PG-13",
"Released":"29 Jul 1994",
"Runtime":"101 min",
"Genre":"Action, Comedy, Crime",
"Director":"Chuck Russell",
"Writer":"Michael Fallon (story), Mark Verheiden (story), Mike Werb (screenplay)",
"Actors":"Jim Carrey, Peter Riegert, Peter Greene, Amy Yasbeck",
"Plot":"Bank clerk Stanley Ipkiss is transformed into a manic superhero when he wears a mysterious mask.",
"Language":"English, Swedish",
"Country":"USA",
"Awards":"Nominated for 1 Oscar. Another 6 wins & 17 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMjM3NDI5OTA5Nl5BMl5BanBnXkFtZTgwNzE4ODYxMTE@._V1_SX300.jpg",
"Metascore":"56",
"imdbRating":"6.9",
"imdbVotes":"263,187",
"imdbID":"tt0110475",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0111257":{
"Title":"Speed",
"Year":"1994",
"Rated":"R",
"Released":"10 Jun 1994",
"Runtime":"116 min",
"Genre":"Action, Adventure, Crime",
"Director":"Jan de Bont",
"Writer":"Graham Yost",
"Actors":"Keanu Reeves, Dennis Hopper, Sandra Bullock, Joe Morton",
"Plot":"A young cop must prevent a bomb exploding aboard a city bus by keeping its speed above 50 mph.",
"Language":"English",
"Country":"USA",
"Awards":"Won 2 Oscars. Another 14 wins & 16 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BNzczNDQyMTc2MF5BMl5BanBnXkFtZTgwNjI2NzQxMTE@._V1_SX300.jpg",
"Metascore":"78",
"imdbRating":"7.2",
"imdbVotes":"258,050",
"imdbID":"tt0111257",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0109444":{
"Title":"Clear and Present Danger",
"Year":"1994",
"Rated":"PG-13",
"Released":"03 Aug 1994",
"Runtime":"141 min",
"Genre":"Action, Crime, Drama",
"Director":"Phillip Noyce",
"Writer":"Tom Clancy (novel), Donald Stewart (screenplay), Steven Zaillian (screenplay), John Milius (screenplay)",
"Actors":"Harrison Ford, Willem Dafoe, Anne Archer, Joaquim de Almeida",
"Plot":"CIA Analyst Jack Ryan is drawn into an illegal war fought by the US government against a Colombian drug cartel.",
"Language":"English",
"Country":"USA",
"Awards":"Nominated for 2 Oscars. Another 3 wins & 6 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTUxOTk4NzUyOF5BMl5BanBnXkFtZTgwNzc3ODYxMTE@._V1_SX300.jpg",
"Metascore":"74",
"imdbRating":"6.9",
"imdbVotes":"68,997",
"imdbID":"tt0109444",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0111503":{
"Title":"True Lies",
"Year":"1994",
"Rated":"R",
"Released":"15 Jul 1994",
"Runtime":"141 min",
"Genre":"Action, Comedy, Thriller",
"Director":"James Cameron",
"Writer":"Claude Zidi (screenplay), Simon Michaël (screenplay), Didier Kaminka (screenplay), James Cameron (screenplay)",
"Actors":"Arnold Schwarzenegger, Jamie Lee Curtis, Tom Arnold, Bill Paxton",
"Plot":"A fearless, globe-trotting, terrorist-battling secret agent has his life turned upside down when he discovers his wife might be having an affair with a used car salesman.",
"Language":"English, French, Arabic, German",
"Country":"USA",
"Awards":"Nominated for 1 Oscar. Another 7 wins & 15 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BYzg5YmUyNGMtMThiNS00MjA2LTgwZDctNDlhM2RkZDNmZmRkXkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_SX300.jpg",
"Metascore":"63",
"imdbRating":"7.2",
"imdbVotes":"188,905",
"imdbID":"tt0111503",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0109830":{
"Title":"Forrest Gump",
"Year":"1994",
"Rated":"PG-13",
"Released":"06 Jul 1994",
"Runtime":"142 min",
"Genre":"Drama, Romance",
"Director":"Robert Zemeckis",
"Writer":"Winston Groom (novel), Eric Roth (screenplay)",
"Actors":"Tom Hanks, Rebecca Williams, Sally Field, Michael Conner Humphreys",
"Plot":"Forrest Gump, while not intelligent, has accidentally been present at many historic moments, but his true love, Jenny Curran, eludes him.",
"Language":"English",
"Country":"USA",
"Awards":"Won 6 Oscars. Another 37 wins & 51 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTI1Nzk1MzQwMV5BMl5BanBnXkFtZTYwODkxOTA5._V1_SX300.jpg",
"Metascore":"82",
"imdbRating":"8.8",
"imdbVotes":"1,236,853",
"imdbID":"tt0109830",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": false
},
"tt0112715":{
"Title":"Congo",
"Year":"1995",
"Rated":"PG-13",
"Released":"09 Jun 1995",
"Runtime":"109 min",
"Genre":"Action, Adventure, Mystery",
"Director":"Frank Marshall",
"Writer":"Michael Crichton (novel), John Patrick Shanley (screenplay)",
"Actors":"Laura Linney, Dylan Walsh, Ernie Hudson, Tim Curry",
"Plot":"When an expedition to the African Congo ends in disaster, a new team is assembled to find out what went wrong.",
"Language":"English, American Sign Language",
"Country":"USA",
"Awards":"2 wins & 11 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BNjI3MTE5NTMzOF5BMl5BanBnXkFtZTcwMzkyOTAyMQ@@._V1_SX300.jpg",
"Metascore":"22",
"imdbRating":"5.0",
"imdbVotes":"34,120",
"imdbID":"tt0112715",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0112792":{
"Title":"Dangerous Minds",
"Year":"1995",
"Rated":"R",
"Released":"11 Aug 1995",
"Runtime":"99 min",
"Genre":"Biography, Drama",
"Director":"John N. Smith",
"Writer":"LouAnne Johnson (book), Ronald Bass (screenplay)",
"Actors":"Michelle Pfeiffer, George Dzundza, Courtney B. Vance, Robin Bartlett",
"Plot":"An ex-Marine turned teacher struggles to connect with her students in an inner city school.",
"Language":"English",
"Country":"USA",
"Awards":"5 wins & 5 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTI3NDIyMjIyM15BMl5BanBnXkFtZTYwMzA3NjU5._V1_SX300.jpg",
"Metascore":"47",
"imdbRating":"6.4",
"imdbVotes":"37,839",
"imdbID":"tt0112792",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0114898":{
"Title":"Waterworld",
"Year":"1995",
"Rated":"PG-13",
"Released":"28 Jul 1995",
"Runtime":"135 min",
"Genre":"Action, Adventure, Sci-Fi",
"Director":"Kevin Reynolds",
"Writer":"Peter Rader, David Twohy",
"Actors":"Kevin Costner, Chaim Jeraffi, Rick Aviles, R.D. Call",
"Plot":"In a future where the polar ice-caps have melted and Earth is almost entirely submerged, a mutated mariner fights starvation and outlaw \"smokers,\" and reluctantly helps a woman and a young girl try to find dry land.",
"Language":"English",
"Country":"USA",
"Awards":"Nominated for 1 Oscar. Another 5 wins & 8 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTA2Nzk3MTgzMTVeQTJeQWpwZ15BbWU3MDgyNTgxNjk@._V1_SX300.jpg",
"Metascore":"56",
"imdbRating":"6.1",
"imdbVotes":"143,326",
"imdbID":"tt0114898",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0114148":{
"Title":"Pocahontas",
"Year":"1995",
"Rated":"G",
"Released":"23 Jun 1995",
"Runtime":"81 min",
"Genre":"Animation, Adventure, Drama",
"Director":"Mike Gabriel, Eric Goldberg",
"Writer":"Carl Binder, Susannah Grant, Philip LaZebnik, Glen Keane (story), Joe Grant (story), Ralph Zondag (story), Burny Mattinson (story), Ed Gombert (story), Kaan Kalyon (story), Francis Glebas (story), Rob Gibbs (story), Bruce Morris (story), Todd Kurosawa (story), Duncan Marjoribanks (story), Chris Buck (story), Mike Gabriel (based on an idea by), Andrew Chapman (additional story development), Randy Cartwright (additional story development), Will Finn (additional story development), Broose Johnson (additional story development), T. Daniel Hofstedt (additional story development), David Pruiksma (additional story development), Nik Ranieri (additional story development), Vincent DeFrances (additional story development), Tom Mazzocco (additional story development), Don Dougherty (additional story development), Jorgen Klubien (additional story development)",
"Actors":"Irene Bedard, Judy Kuhn, Mel Gibson, David Ogden Stiers",
"Plot":"An English soldier and the daughter of an Algonquin chief share a romance when English colonists invade seventeenth-century Virginia.",
"Language":"English, Algonquin",
"Country":"USA",
"Awards":"Won 2 Oscars. Another 13 wins & 6 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTU2ODI2NzI4OF5BMl5BanBnXkFtZTYwMjk5NzA5._V1_SX300.jpg",
"Metascore":"58",
"imdbRating":"6.6",
"imdbVotes":"118,212",
"imdbID":"tt0114148",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0112462":{
"Title":"Batman Forever",
"Year":"1995",
"Rated":"PG-13",
"Released":"16 Jun 1995",
"Runtime":"121 min",
"Genre":"Action, Adventure, Fantasy",
"Director":"Joel Schumacher",
"Writer":"Bob Kane (characters), Lee Batchler (story), Janet Scott Batchler (story), Lee Batchler (screenplay), Janet Scott Batchler (screenplay), Akiva Goldsman (screenplay)",
"Actors":"Val Kilmer, Tommy Lee Jones, Jim Carrey, Nicole Kidman",
"Plot":"Batman must battle Two-Face and The Riddler with help from an amorous psychologist and a young circus acrobat who becomes his sidekick, Robin.",
"Language":"English",
"Country":"USA, UK",
"Awards":"Nominated for 3 Oscars. Another 9 wins & 21 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BNWY3M2I0YzItNzA1ZS00MzE3LThlYTEtMTg2YjNiOTYzODQ1XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_SX300.jpg",
"Metascore":"51",
"imdbRating":"5.4",
"imdbVotes":"189,168",
"imdbID":"tt0112462",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0117333":{
"Title":"Phenomenon",
"Year":"1996",
"Rated":"PG",
"Released":"03 Jul 1996",
"Runtime":"123 min",
"Genre":"Drama, Fantasy, Romance",
"Director":"Jon Turteltaub",
"Writer":"Gerald Di Pego",
"Actors":"John Travolta, Kyra Sedgwick, Forest Whitaker, Robert Duvall",
"Plot":"An ordinary man sees a bright light descend from the sky, and discovers he now has super-intelligence and telekinesis.",
"Language":"English",
"Country":"USA",
"Awards":"7 wins & 8 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMjAwMDA2NzEyMl5BMl5BanBnXkFtZTgwNTA2MjgxMTE@._V1_SX300.jpg",
"Metascore":"41",
"imdbRating":"6.4",
"imdbVotes":"63,195",
"imdbID":"tt0117333",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0117913":{
"Title":"A Time to Kill",
"Year":"1996",
"Rated":"R",
"Released":"24 Jul 1996",
"Runtime":"149 min",
"Genre":"Crime, Drama, Thriller",
"Director":"Joel Schumacher",
"Writer":"John Grisham (novel), Akiva Goldsman (screenplay)",
"Actors":"Matthew McConaughey, Sandra Bullock, Samuel L. Jackson, Kevin Spacey",
"Plot":"A young lawyer defends a black man accused of murdering two men who raped his 10-year-old daughter, sparking a rebirth of the K.K.K.",
"Language":"English",
"Country":"USA",
"Awards":"Nominated for 1 Golden Globe. Another 7 wins & 11 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMjIwMzI2NTk3N15BMl5BanBnXkFtZTgwMDgxNTYxMTE@._V1_SX300.jpg",
"Metascore":"54",
"imdbRating":"7.4",
"imdbVotes":"98,280",
"imdbID":"tt0117913",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0117218":{
"Title":"The Nutty Professor",
"Year":"1996",
"Rated":"PG-13",
"Released":"28 Jun 1996",
"Runtime":"95 min",
"Genre":"Comedy, Romance, Sci-Fi",
"Director":"Tom Shadyac",
"Writer":"Jerry Lewis, Bill Richmond, David Sheffield (screenplay), Barry W. Blaustein (screenplay), Tom Shadyac (screenplay), Steve Oedekerk (screenplay)",
"Actors":"Eddie Murphy, Jada Pinkett Smith, James Coburn, Larry Miller",
"Plot":"Grossly overweight professor Sherman Klump, desperate to lose weight, takes a special chemical that turns him into the slim but obnoxious Buddy Love.",
"Language":"English",
"Country":"USA",
"Awards":"Won 1 Oscar. Another 8 wins & 11 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMjA3ODA2MjU4OV5BMl5BanBnXkFtZTcwNzIwMzUxMQ@@._V1_SX300.jpg",
"Metascore":"62",
"imdbRating":"5.6",
"imdbVotes":"85,396",
"imdbID":"tt0117218",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0117500":{
"Title":"The Rock",
"Year":"1996",
"Rated":"R",
"Released":"07 Jun 1996",
"Runtime":"136 min",
"Genre":"Action, Adventure, Thriller",
"Director":"Michael Bay",
"Writer":"David Weisberg (story), Douglas Cook (story), David Weisberg (screenplay), Douglas Cook (screenplay), Mark Rosner (screenplay)",
"Actors":"Sean Connery, Nicolas Cage, Ed Harris, John Spencer",
"Plot":"A mild-mannered chemist and an ex-con must lead the counterstrike when a rogue group of military men, led by a renegade general, threaten a nerve gas attack from Alcatraz against San Francisco.",
"Language":"English",
"Country":"USA",
"Awards":"Nominated for 1 Oscar. Another 8 wins & 8 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTM3MTczOTM1OF5BMl5BanBnXkFtZTYwMjc1NDA5._V1_SX300.jpg",
"Metascore":"58",
"imdbRating":"7.4",
"imdbVotes":"256,938",
"imdbID":"tt0117500",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0116629":{
"Title":"Independence Day",
"Year":"1996",
"Rated":"PG-13",
"Released":"03 Jul 1996",
"Runtime":"145 min",
"Genre":"Action, Adventure, Sci-Fi",
"Director":"Roland Emmerich",
"Writer":"Dean Devlin, Roland Emmerich",
"Actors":"Will Smith, Bill Pullman, Jeff Goldblum, Mary McDonnell",
"Plot":"The aliens are coming and their goal is to invade and destroy Earth. Fighting superior technology, mankind's best weapon is the will to survive.",
"Language":"English",
"Country":"USA",
"Awards":"Won 1 Oscar. Another 32 wins & 33 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTMwODY3NzQzNF5BMl5BanBnXkFtZTcwNzUxNjc0MQ@@._V1_SX300.jpg",
"Metascore":"59",
"imdbRating":"6.9",
"imdbVotes":"418,882",
"imdbID":"tt0116629",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0118688":{
"Title":"Batman & Robin",
"Year":"1997",
"Rated":"PG-13",
"Released":"20 Jun 1997",
"Runtime":"125 min",
"Genre":"Action, Fantasy, Sci-Fi",
"Director":"Joel Schumacher",
"Writer":"Bob Kane (Batman characters), Akiva Goldsman",
"Actors":"Arnold Schwarzenegger, George Clooney, Chris O'Donnell, Uma Thurman",
"Plot":"Batman & Robin try to keep their relationship together even as they must stop Mr. Freeze and Poison Ivy from freezing Gotham City.",
"Language":"English",
"Country":"USA, UK",
"Awards":"10 wins & 21 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BNTM1NTIyNjkwM15BMl5BanBnXkFtZTcwODkxOTQxMQ@@._V1_SX300.jpg",
"Metascore":"28",
"imdbRating":"3.7",
"imdbVotes":"188,119",
"imdbID":"tt0118688",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0119094":{
"Title":"Face/Off",
"Year":"1997",
"Rated":"R",
"Released":"27 Jun 1997",
"Runtime":"138 min",
"Genre":"Action, Crime, Sci-Fi",
"Director":"John Woo",
"Writer":"Mike Werb, Michael Colleary",
"Actors":"John Travolta, Nicolas Cage, Joan Allen, Alessandro Nivola",
"Plot":"In order to foil an extortion plot, an FBI agent undergoes a face-transplant surgery and assumes the identity and physical appearance of a ruthless terrorist, but the plan turns from bad to worse when the same criminal impersonates the cop.",
"Language":"English, Latin",
"Country":"USA",
"Awards":"Nominated for 1 Oscar. Another 11 wins & 21 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTU4MjA5NTc2NV5BMl5BanBnXkFtZTgwOTI2Mzk5MDE@._V1_SX300.jpg",
"Metascore":"82",
"imdbRating":"7.3",
"imdbVotes":"281,650",
"imdbID":"tt0119094",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0119738":{
"Title":"My Best Friend's Wedding",
"Year":"1997",
"Rated":"PG-13",
"Released":"20 Jun 1997",
"Runtime":"105 min",
"Genre":"Comedy, Romance",
"Director":"P.J. Hogan",
"Writer":"Ronald Bass",
"Actors":"Julia Roberts, Dermot Mulroney, Cameron Diaz, Rupert Everett",
"Plot":"When a woman's long-time friend reveals he's engaged, she realizes she loves him herself and sets out to get him, with only days before the wedding.",
"Language":"English, French, Italian",
"Country":"USA",
"Awards":"Nominated for 1 Oscar. Another 12 wins & 22 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMjAyNDAwOTUyOV5BMl5BanBnXkFtZTYwNzcyNjA5._V1_SX300.jpg",
"Metascore":"50",
"imdbRating":"6.3",
"imdbVotes":"97,238",
"imdbID":"tt0119738",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0118571":{
"Title":"Air Force One",
"Year":"1997",
"Rated":"R",
"Released":"25 Jul 1997",
"Runtime":"124 min",
"Genre":"Action, Adventure, Drama",
"Director":"Wolfgang Petersen",
"Writer":"Andrew W. Marlowe",
"Actors":"Harrison Ford, Gary Oldman, Glenn Close, Wendy Crewson",
"Plot":"Hijackers seize the plane carrying the President of the United States and his family, but he - an ex-soldier - works from hiding to defeat them.",
"Language":"English, Russian",
"Country":"USA, Germany",
"Awards":"Nominated for 2 Oscars. Another 7 wins & 10 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTg4NDM4NzA2N15BMl5BanBnXkFtZTcwOTA2NDU2MQ@@._V1_SX300.jpg",
"Metascore":"61",
"imdbRating":"6.4",
"imdbVotes":"145,068",
"imdbID":"tt0118571",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0119654":{
"Title":"Men in Black",
"Year":"1997",
"Rated":"PG-13",
"Released":"02 Jul 1997",
"Runtime":"98 min",
"Genre":"Adventure, Comedy, Family",
"Director":"Barry Sonnenfeld",
"Writer":"Lowell Cunningham (comic), Ed Solomon (screen story), Ed Solomon (screenplay)",
"Actors":"Tommy Lee Jones, Will Smith, Linda Fiorentino, Vincent D'Onofrio",
"Plot":"A police officer joins a secret organization that polices and monitors extra terrestrial interactions on planet earth.",
"Language":"English, Spanish",
"Country":"USA",
"Awards":"Won 1 Oscar. Another 18 wins & 39 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BNzA2MzI5Nzc0N15BMl5BanBnXkFtZTcwODE2NDU2MQ@@._V1_SX300.jpg",
"Metascore":"71",
"imdbRating":"7.3",
"imdbVotes":"397,652",
"imdbID":"tt0119654",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": false
},
"tt0122151":{
"Title":"Lethal Weapon 4",
"Year":"1998",
"Rated":"R",
"Released":"10 Jul 1998",
"Runtime":"127 min",
"Genre":"Action, Crime, Thriller",
"Director":"Richard Donner",
"Writer":"Shane Black (characters), Jonathan Lemkin (story), Alfred Gough (story), Miles Millar (story), Channing Gibson (screenplay)",
"Actors":"Mel Gibson, Danny Glover, Joe Pesci, Rene Russo",
"Plot":"With personal crises and age weighing in on them, LAPD officers Riggs and Murtaugh must contend with a deadly Chinese crimelord trying to get his brother out of prison.",
"Language":"English, Cantonese, Mandarin",
"Country":"USA",
"Awards":"4 wins & 11 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTU0OTc5NjI3OV5BMl5BanBnXkFtZTcwNTg5NDEyMQ@@._V1_SX300.jpg",
"Metascore":"37",
"imdbRating":"6.6",
"imdbVotes":"126,457",
"imdbID":"tt0122151",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0118998":{
"Title":"Doctor Dolittle",
"Year":"1998",
"Rated":"PG-13",
"Released":"26 Jun 1998",
"Runtime":"85 min",
"Genre":"Comedy, Family, Fantasy",
"Director":"Betty Thomas",
"Writer":"Hugh Lofting (stories), Nat Mauldin (screenplay), Larry Levin (screenplay)",
"Actors":"Eddie Murphy, Ossie Davis, Oliver Platt, Peter Boyle",
"Plot":"A Doctor finds out that he can understand what animals are saying. And the animals find out that he understands.",
"Language":"English",
"Country":"USA",
"Awards":"4 wins & 8 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTQzMjc4NjIxOV5BMl5BanBnXkFtZTcwMDU0NzIyMQ@@._V1_SX300.jpg",
"Metascore":"46",
"imdbRating":"5.3",
"imdbVotes":"73,587",
"imdbID":"tt0118998",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0129387":{
"Title":"There's Something About Mary",
"Year":"1998",
"Rated":"R",
"Released":"15 Jul 1998",
"Runtime":"119 min",
"Genre":"Comedy, Romance",
"Director":"Bobby Farrelly, Peter Farrelly",
"Writer":"Ed Decter (story), John J. Strauss (story), Ed Decter (screenplay), John J. Strauss (screenplay), Peter Farrelly (screenplay), Bobby Farrelly (screenplay)",
"Actors":"Cameron Diaz, Matt Dillon, Ben Stiller, Lee Evans",
"Plot":"A man gets a chance to meet up with his dream girl from highschool, even though his date with her back then was a complete disaster.",
"Language":"English",
"Country":"USA",
"Awards":"Nominated for 2 Golden Globes. Another 17 wins & 15 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTAzNzM3NTM4NDNeQTJeQWpwZ15BbWU4MDgzOTgzMTAx._V1_SX300.jpg",
"Metascore":"69",
"imdbRating":"7.1",
"imdbVotes":"245,544",
"imdbID":"tt0129387",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0120591":{
"Title":"Armageddon",
"Year":"1998",
"Rated":"PG-13",
"Released":"01 Jul 1998",
"Runtime":"151 min",
"Genre":"Action, Adventure, Sci-Fi",
"Director":"Michael Bay",
"Writer":"Jonathan Hensleigh (screenplay), J.J. Abrams (screenplay), Tony Gilroy (adaptation), Shane Salerno (adaptation), Robert Roy Pool (story), Jonathan Hensleigh (story)",
"Actors":"Bruce Willis, Billy Bob Thornton, Ben Affleck, Liv Tyler",
"Plot":"After discovering that an asteroid the size of Texas is going to impact Earth in less than a month, N.A.S.A. recruits a misfit team of deep core drillers to save the planet.",
"Language":"English, Russian, Indonesian",
"Country":"USA",
"Awards":"Nominated for 4 Oscars. Another 14 wins & 35 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTc3NzA4MDIyNV5BMl5BanBnXkFtZTcwMzc1OTM2MQ@@._V1_SX300.jpg",
"Metascore":"42",
"imdbRating":"6.6",
"imdbVotes":"319,038",
"imdbID":"tt0120591",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0120815":{
"Title":"Saving Private Ryan",
"Year":"1998",
"Rated":"R",
"Released":"24 Jul 1998",
"Runtime":"169 min",
"Genre":"Action, Drama, War",
"Director":"Steven Spielberg",
"Writer":"Robert Rodat",
"Actors":"Tom Hanks, Tom Sizemore, Edward Burns, Barry Pepper",
"Plot":"Following the Normandy Landings, a group of U.S. soldiers go behind enemy lines to retrieve a paratrooper whose brothers have been killed in action.",
"Language":"English, French, German, Czech",
"Country":"USA",
"Awards":"Won 5 Oscars. Another 74 wins & 74 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BNjczODkxNTAxN15BMl5BanBnXkFtZTcwMTcwNjUxMw@@._V1_SX300.jpg",
"Metascore":"90",
"imdbRating":"8.6",
"imdbVotes":"872,122",
"imdbID":"tt0120815",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": false
},
"tt0163187":{
"Title":"Runaway Bride",
"Year":"1999",
"Rated":"PG",
"Released":"30 Jul 1999",
"Runtime":"116 min",
"Genre":"Comedy, Romance",
"Director":"Garry Marshall",
"Writer":"Josann McGibbon, Sara Parriott",
"Actors":"Julia Roberts, Richard Gere, Joan Cusack, Hector Elizondo",
"Plot":"A reporter is assigned to write a story about a woman who has left a string of fiances at the altar.",
"Language":"English",
"Country":"USA",
"Awards":"6 wins & 9 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BOTcxMDU2ODc5OV5BMl5BanBnXkFtZTcwNTA0NzMyMQ@@._V1_SX300.jpg",
"Metascore":"39",
"imdbRating":"5.5",
"imdbVotes":"73,501",
"imdbID":"tt0163187",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0142342":{
"Title":"Big Daddy",
"Year":"1999",
"Rated":"PG-13",
"Released":"25 Jun 1999",
"Runtime":"93 min",
"Genre":"Comedy, Drama",
"Director":"Dennis Dugan",
"Writer":"Steve Franks (story), Steve Franks (screenplay), Tim Herlihy (screenplay), Adam Sandler (screenplay)",
"Actors":"Adam Sandler, Joey Lauren Adams, Jon Stewart, Cole Sprouse",
"Plot":"A lazy law school grad adopts a kid to impress his girlfriend, but everything doesn't go as planned and he becomes the unlikely foster father.",
"Language":"English, Italian",
"Country":"USA",
"Awards":"8 wins & 11 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTgwODU4MTg5M15BMl5BanBnXkFtZTcwNjM2NjkxMQ@@._V1_SX300.jpg",
"Metascore":"41",
"imdbRating":"6.4",
"imdbVotes":"160,147",
"imdbID":"tt0142342",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0120855":{
"Title":"Tarzan",
"Year":"1999",
"Rated":"G",
"Released":"18 Jun 1999",
"Runtime":"88 min",
"Genre":"Animation, Adventure, Family",
"Director":"Chris Buck, Kevin Lima",
"Writer":"Tab Murphy (screenplay), Bob Tzudiker (screenplay), Noni White (screenplay), Stephen J. Anderson (story), Mark Kennedy (story), Carole Holliday (story), Gaëtan Brizzi (story), Paul Brizzi (story), Don Dougherty (story), Ed Gombert (story), Randy Haycock (story), Don Hall (story), Kevin Harkey (story), Glen Keane (story), Burny Mattinson (story), Frank Nissen (story), John Norton (story), Jeff Snow (story), Michael Surrey (story), Chris Ure (story), Mark Walton (story), Stevie Wermers (story), Kelly Wightman (story), John Ramirez (story), Edgar Rice Burroughs (story \"Tarzan of the Apes\")",
"Actors":"Brian Blessed, Glenn Close, Minnie Driver, Tony Goldwyn",
"Plot":"A man raised by gorillas must decide where he really belongs when he discovers he is a human.",
"Language":"English",
"Country":"USA",
"Awards":"Won 1 Oscar. Another 11 wins & 25 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTIxNzY1MDg2Ml5BMl5BanBnXkFtZTcwMDgxMDEzMQ@@._V1_SX300.jpg",
"Metascore":"79",
"imdbRating":"7.2",
"imdbVotes":"141,995",
"imdbID":"tt0120855",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": false
},
"tt0145660":{
"Title":"Austin Powers: The Spy Who Shagged Me",
"Year":"1999",
"Rated":"PG-13",
"Released":"11 Jun 1999",
"Runtime":"95 min",
"Genre":"Action, Adventure, Comedy",
"Director":"Jay Roach",
"Writer":"Mike Myers, Michael McCullers, Mike Myers (characters)",
"Actors":"Mike Myers, Heather Graham, Michael York, Robert Wagner",
"Plot":"Dr. Evil is back...and has invented a new time machine that allows him to go back to the 60's and steal Austin Powers's mojo, inadvertently leaving him \"shagless\".",
"Language":"English, German",
"Country":"USA",
"Awards":"Nominated for 1 Oscar. Another 17 wins & 28 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMjEwMDk0MzgxNV5BMl5BanBnXkFtZTYwNjMzMDc3._V1_SX300.jpg",
"Metascore":"59",
"imdbRating":"6.6",
"imdbVotes":"179,866",
"imdbID":"tt0145660",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0167404":{
"Title":"The Sixth Sense",
"Year":"1999",
"Rated":"PG-13",
"Released":"06 Aug 1999",
"Runtime":"107 min",
"Genre":"Drama, Mystery, Thriller",
"Director":"M. Night Shyamalan",
"Writer":"M. Night Shyamalan",
"Actors":"Bruce Willis, Haley Joel Osment, Toni Collette, Olivia Williams",
"Plot":"A boy who communicates with spirits that don't know they're dead seeks the help of a disheartened child psychologist.",
"Language":"English, Latin, Spanish",
"Country":"USA",
"Awards":"Nominated for 6 Oscars. Another 32 wins & 48 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMWM4NTFhYjctNzUyNi00NGMwLTk3NTYtMDIyNTZmMzRlYmQyXkEyXkFqcGdeQXVyMTAwMzUyOTc@._V1_SX300.jpg",
"Metascore":"64",
"imdbRating":"8.1",
"imdbVotes":"696,786",
"imdbID":"tt0167404",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": false
},
"tt0144528":{
"Title":"Nutty Professor II: The Klumps",
"Year":"2000",
"Rated":"PG-13",
"Released":"28 Jul 2000",
"Runtime":"106 min",
"Genre":"Comedy, Romance, Sci-Fi",
"Director":"Peter Segal",
"Writer":"Jerry Lewis (characters), Steve Oedekerk (story), Barry W. Blaustein (story), David Sheffield (story), Barry W. Blaustein (screenplay), David Sheffield (screenplay), Paul Weitz (screenplay), Chris Weitz (screenplay)",
"Actors":"Eddie Murphy, Janet Jackson, Larry Miller, John Ales",
"Plot":"Scientist Sherman Klump's inventions, his upcoming marriage to his pretty colleague Denise Gaines and his reputation are threatened by his evil clone Buddy Love.",
"Language":"English",
"Country":"USA",
"Awards":"2 wins & 12 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTI5MDE3NzA2OF5BMl5BanBnXkFtZTcwMzQzMzAyMQ@@._V1_SX300.jpg",
"Metascore":"38",
"imdbRating":"4.3",
"imdbVotes":"39,109",
"imdbID":"tt0144528",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0161081":{
"Title":"What Lies Beneath",
"Year":"2000",
"Rated":"PG-13",
"Released":"21 Jul 2000",
"Runtime":"130 min",
"Genre":"Drama, Fantasy, Horror",
"Director":"Robert Zemeckis",
"Writer":"Clark Gregg (screenplay), Sarah Kernochan (story), Clark Gregg (story)",
"Actors":"Michelle Pfeiffer, Katharine Towne, Miranda Otto, James Remar",
"Plot":"The wife of a university research scientist believes that her lakeside Vermont home is haunted by a ghost - or that she is losing her mind.",
"Language":"English",
"Country":"USA",
"Awards":"5 wins & 5 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMzEwMTE4MDk2M15BMl5BanBnXkFtZTcwMjMyMDI5MQ@@._V1_SX300.jpg",
"Metascore":"51",
"imdbRating":"6.6",
"imdbVotes":"97,832",
"imdbID":"tt0161081",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0175142":{
"Title":"Scary Movie",
"Year":"2000",
"Rated":"R",
"Released":"07 Jul 2000",
"Runtime":"88 min",
"Genre":"Comedy",
"Director":"Keenen Ivory Wayans",
"Writer":"Shawn Wayans, Marlon Wayans, Buddy Johnson, Phil Beauman, Jason Friedberg, Aaron Seltzer",
"Actors":"Carmen Electra, Dave Sheridan, Frank B. Moore, Giacomo Baessato",
"Plot":"A year after disposing of the body of a man they accidentally killed, a group of dumb teenagers are stalked by a bumbling serial killer.",
"Language":"English",
"Country":"USA",
"Awards":"7 wins & 5 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTYzMTI3NjQzM15BMl5BanBnXkFtZTcwOTkzMzMyMQ@@._V1_SX300.jpg",
"Metascore":"48",
"imdbRating":"6.2",
"imdbVotes":"185,562",
"imdbID":"tt0175142",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0120903":{
"Title":"X-Men",
"Year":"2000",
"Rated":"PG-13",
"Released":"14 Jul 2000",
"Runtime":"104 min",
"Genre":"Action, Adventure, Sci-Fi",
"Director":"Bryan Singer",
"Writer":"Tom DeSanto (story), Bryan Singer (story), David Hayter (screenplay)",
"Actors":"Hugh Jackman, Patrick Stewart, Ian McKellen, Famke Janssen",
"Plot":"Two mutants come to a private academy for their kind whose resident superhero team must oppose a terrorist organization with similar powers.",
"Language":"English",
"Country":"USA",
"Awards":"13 wins & 26 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BOTU3MzA3ODYyM15BMl5BanBnXkFtZTgwMDgwNzc3NjE@._V1_SX300.jpg",
"Metascore":"64",
"imdbRating":"7.4",
"imdbVotes":"449,284",
"imdbID":"tt0120903",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0177971":{
"Title":"The Perfect Storm",
"Year":"2000",
"Rated":"PG-13",
"Released":"30 Jun 2000",
"Runtime":"130 min",
"Genre":"Action, Adventure, Drama",
"Director":"Wolfgang Petersen",
"Writer":"Sebastian Junger (book), William D. Wittliff (screenplay)",
"Actors":"George Clooney, Mark Wahlberg, John C. Reilly, Diane Lane",
"Plot":"An unusually intense storm pattern catches some commercial fishermen unaware and puts them in mortal danger.",
"Language":"English",
"Country":"USA",
"Awards":"Nominated for 2 Oscars. Another 4 wins & 24 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BNzIwMTc0NTI0Nl5BMl5BanBnXkFtZTcwNTk4Mzc3Mw@@._V1_SX300.jpg",
"Metascore":"59",
"imdbRating":"6.4",
"imdbVotes":"132,399",
"imdbID":"tt0177971",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0163651":{
"Title":"American Pie",
"Year":"1999",
"Rated":"R",
"Released":"09 Jul 1999",
"Runtime":"95 min",
"Genre":"Comedy",
"Director":"Paul Weitz, Chris Weitz",
"Writer":"Adam Herz",
"Actors":"Jason Biggs, Chris Klein, Thomas Ian Nicholas, Alyson Hannigan",
"Plot":"Four teenage boys enter a pact to lose their virginity by prom night.",
"Language":"English",
"Country":"USA",
"Awards":"9 wins & 14 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTg3ODY5ODI1NF5BMl5BanBnXkFtZTgwMTkxNTYxMTE@._V1_SX300.jpg",
"Metascore":"58",
"imdbRating":"7.0",
"imdbVotes":"313,224",
"imdbID":"tt0163651",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0252866":{
"Title":"American Pie 2",
"Year":"2001",
"Rated":"R",
"Released":"10 Aug 2001",
"Runtime":"108 min",
"Genre":"Comedy",
"Director":"J.B. Rogers",
"Writer":"Adam Herz (characters), David H. Steinberg (story), Adam Herz (story), Adam Herz (screenplay)",
"Actors":"Jason Biggs, Shannon Elizabeth, Alyson Hannigan, Chris Klein",
"Plot":"In this sequel to the hit comedy American Pie (1999), the high school students are now in college. These close friends decide to meet up at the beach house for some fun.",
"Language":"English",
"Country":"USA",
"Awards":"8 wins & 6 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTc0Mzc1ODI0MV5BMl5BanBnXkFtZTYwMjA0ODc5._V1_SX300.jpg",
"Metascore":"43",
"imdbRating":"6.4",
"imdbVotes":"198,752",
"imdbID":"tt0252866",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0133152":{
"Title":"Planet of the Apes",
"Year":"2001",
"Rated":"PG-13",
"Released":"27 Jul 2001",
"Runtime":"119 min",
"Genre":"Action, Adventure, Sci-Fi",
"Director":"Tim Burton",
"Writer":"Pierre Boulle (novel), William Broyles Jr. (screenplay), Lawrence Konner (screenplay), Mark Rosenthal (screenplay)",
"Actors":"Mark Wahlberg, Tim Roth, Helena Bonham Carter, Michael Clarke Duncan",
"Plot":"An Air Force astronaut crash lands on a mysterious planet where evolved, talking apes dominate a race of primitive humans.",
"Language":"English",
"Country":"USA",
"Awards":"Nominated for 2 BAFTA Film Awards. Another 10 wins & 25 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTY5Nzg4NzAzMF5BMl5BanBnXkFtZTcwMjc5MzcyMQ@@._V1_SX300.jpg",
"Metascore":"50",
"imdbRating":"5.7",
"imdbVotes":"176,544",
"imdbID":"tt0133152",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0163025":{
"Title":"Jurassic Park III",
"Year":"2001",
"Rated":"PG-13",
"Released":"18 Jul 2001",
"Runtime":"92 min",
"Genre":"Action, Adventure, Sci-Fi",
"Director":"Joe Johnston",
"Writer":"Michael Crichton (characters), Peter Buchman, Alexander Payne, Jim Taylor",
"Actors":"Sam Neill, William H. Macy, Téa Leoni, Alessandro Nivola",
"Plot":"A decidedly odd couple with ulterior motives convince Dr. Alan Grant to go to Isla Sorna (the second InGen dinosaur lab.), resulting in an unexpected landing...and unexpected new inhabitants on the island.",
"Language":"English, Spanish",
"Country":"USA",
"Awards":"5 wins & 13 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMjA2NzAyMDgyM15BMl5BanBnXkFtZTYwOTQ5Mjg5._V1_SX300.jpg",
"Metascore":"42",
"imdbRating":"5.9",
"imdbVotes":"216,472",
"imdbID":"tt0163025",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0266915":{
"Title":"Rush Hour 2",
"Year":"2001",
"Rated":"PG-13",
"Released":"03 Aug 2001",
"Runtime":"90 min",
"Genre":"Action, Comedy, Crime",
"Director":"Brett Ratner",
"Writer":"Ross LaManna (characters), Jeff Nathanson",
"Actors":"Jackie Chan, Chris Tucker, John Lone, Ziyi Zhang",
"Plot":"Carter and Lee head to Hong Kong for vacation, but become embroiled in a counterfeit money scam.",
"Language":"Cantonese, English, Mandarin",
"Country":"USA, Hong Kong",
"Awards":"10 wins & 22 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMjExMzc0Nzk2M15BMl5BanBnXkFtZTcwMTQ1MzkxMQ@@._V1_SX300.jpg",
"Metascore":"48",
"imdbRating":"6.6",
"imdbVotes":"158,746",
"imdbID":"tt0266915",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": false
},
"tt0275847":{
"Title":"Lilo & Stitch",
"Year":"2002",
"Rated":"PG",
"Released":"21 Jun 2002",
"Runtime":"85 min",
"Genre":"Animation, Adventure, Comedy",
"Director":"Dean DeBlois, Chris Sanders",
"Writer":"Chris Sanders (idea), Chris Sanders, Dean DeBlois",
"Actors":"Daveigh Chase, Chris Sanders, Tia Carrere, David Ogden Stiers",
"Plot":"A Hawaiian girl adopts an unusual pet who is actually a notorious extra-terrestrial fugitive from the law.",
"Language":"English, Hawaiian",
"Country":"USA",
"Awards":"Nominated for 1 Oscar. Another 10 wins & 27 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTkwOTU5MTA2M15BMl5BanBnXkFtZTYwMjYyNTc3._V1_SX300.jpg",
"Metascore":"73",
"imdbRating":"7.2",
"imdbVotes":"115,634",
"imdbID":"tt0275847",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": false
},
"tt0267913":{
"Title":"Scooby-Doo",
"Year":"2002",
"Rated":"PG",
"Released":"14 Jun 2002",
"Runtime":"86 min",
"Genre":"Adventure, Comedy, Mystery",
"Director":"Raja Gosnell",
"Writer":"James Gunn (screenplay), Craig Titley (story), James Gunn (story), William Hanna (characters), Joseph Barbera (characters)",
"Actors":"Freddie Prinze Jr., Sarah Michelle Gellar, Matthew Lillard, Linda Cardellini",
"Plot":"After an acrimonious break up, the Mystery Inc. gang are individually brought to an island resort to investigate strange goings on.",
"Language":"English",
"Country":"USA, Australia",
"Awards":"3 wins & 8 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTg4MzMzMTY0OF5BMl5BanBnXkFtZTYwNzM3MTg2._V1_SX300.jpg",
"Metascore":"35",
"imdbRating":"4.9",
"imdbVotes":"70,429",
"imdbID":"tt0267913",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0120912":{
"Title":"Men in Black II",
"Year":"2002",
"Rated":"PG-13",
"Released":"03 Jul 2002",
"Runtime":"88 min",
"Genre":"Action, Adventure, Comedy",
"Director":"Barry Sonnenfeld",
"Writer":"Lowell Cunningham (comic book \"Malibu Comics\"), Robert Gordon (story), Robert Gordon (screenplay), Barry Fanaro (screenplay)",
"Actors":"Tommy Lee Jones, Will Smith, Rip Torn, Lara Flynn Boyle",
"Plot":"Agent J needs help so he is sent to find Agent K and restore his memory.",
"Language":"English",
"Country":"USA",
"Awards":"4 wins & 12 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTMxNDA0NTMxMV5BMl5BanBnXkFtZTYwMDE2NzY2._V1_SX300.jpg",
"Metascore":"49",
"imdbRating":"6.1",
"imdbVotes":"268,229",
"imdbID":"tt0120912",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0295178":{
"Title":"Austin Powers in Goldmember",
"Year":"2002",
"Rated":"PG-13",
"Released":"26 Jul 2002",
"Runtime":"94 min",
"Genre":"Action, Comedy, Crime",
"Director":"Jay Roach",
"Writer":"Mike Myers, Michael McCullers, Mike Myers (characters created by)",
"Actors":"Mike Myers, Beyoncé Knowles, Seth Green, Michael York",
"Plot":"Upon learning that his father has been kidnapped, Austin Powers must travel to 1975 and defeat the aptly named villain Goldmember - who is working with Dr. Evil.",
"Language":"English, German, French, Japanese",
"Country":"USA",
"Awards":"5 wins & 21 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTkzNTk3Mzk1MF5BMl5BanBnXkFtZTYwMzM5NDA5._V1_SX300.jpg",
"Metascore":"62",
"imdbRating":"6.2",
"imdbVotes":"161,309",
"imdbID":"tt0295178",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0286106":{
"Title":"Signs",
"Year":"2002",
"Rated":"PG-13",
"Released":"02 Aug 2002",
"Runtime":"106 min",
"Genre":"Drama, Sci-Fi, Thriller",
"Director":"M. Night Shyamalan",
"Writer":"M. Night Shyamalan",
"Actors":"Mel Gibson, Joaquin Phoenix, Rory Culkin, Abigail Breslin",
"Plot":"A family living on a farm finds mysterious crop circles in their fields which suggests something more frightening to come.",
"Language":"Portuguese, English",
"Country":"USA",
"Awards":"3 wins & 30 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BNDUwMDUyMDAyNF5BMl5BanBnXkFtZTYwMDQ3NzM3._V1_SX300.jpg",
"Metascore":"59",
"imdbRating":"6.7",
"imdbVotes":"268,897",
"imdbID":"tt0286106",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0322259":{
"Title":"2 Fast 2 Furious",
"Year":"2003",
"Rated":"PG-13",
"Released":"06 Jun 2003",
"Runtime":"107 min",
"Genre":"Action, Crime, Thriller",
"Director":"John Singleton",
"Writer":"Gary Scott Thompson (characters), Michael Brandt (story), Derek Haas (story), Gary Scott Thompson (story), Michael Brandt (screenplay), Derek Haas (screenplay)",
"Actors":"Paul Walker, Tyrese Gibson, Eva Mendes, Cole Hauser",
"Plot":"Former cop Brian O'Conner is called upon to bust a dangerous criminal and he recruits the help of a former childhood friend and street racer who has a chance to redeem himself.",
"Language":"English, Spanish",
"Country":"USA, Germany",
"Awards":"3 wins & 13 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTIyMDUwMDc4OF5BMl5BanBnXkFtZTYwNTY2Nzk5._V1_SX300.jpg",
"Metascore":"38",
"imdbRating":"5.8",
"imdbVotes":"188,950",
"imdbID":"tt0322259",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0286716":{
"Title":"Hulk",
"Year":"2003",
"Rated":"PG-13",
"Released":"20 Jun 2003",
"Runtime":"138 min",
"Genre":"Action, Sci-Fi",
"Director":"Ang Lee",
"Writer":"Stan Lee (Marvel comic book character), Jack Kirby (Marvel comic book character), James Schamus (story), John Turman (screenplay), Michael France (screenplay), James Schamus (screenplay)",
"Actors":"Eric Bana, Jennifer Connelly, Sam Elliott, Josh Lucas",
"Plot":"Bruce Banner, a genetics researcher with a tragic past, suffers an accident that causes him to transform into a raging green monster when he gets angry.",
"Language":"English, Spanish",
"Country":"USA",
"Awards":"2 wins & 10 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTQxNzUxNTE4Nl5BMl5BanBnXkFtZTYwMjcyNTk5._V1_SX300.jpg",
"Metascore":"54",
"imdbRating":"5.7",
"imdbVotes":"210,613",
"imdbID":"tt0286716",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0172156":{
"Title":"Bad Boys II",
"Year":"2003",
"Rated":"R",
"Released":"18 Jul 2003",
"Runtime":"147 min",
"Genre":"Action, Comedy, Crime",
"Director":"Michael Bay",
"Writer":"George Gallo (characters), Marianne Wibberley (story), Cormac Wibberley (story), Ron Shelton (story), Ron Shelton (screenplay), Jerry Stahl (screenplay)",
"Actors":"Martin Lawrence, Will Smith, Jordi Mollà, Gabrielle Union",
"Plot":"Two loose-cannon narcotics cops investigate the flow of Ecstasy into Florida.",
"Language":"English, Spanish",
"Country":"USA",
"Awards":"5 wins & 12 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTI4Mjc2OTE4MV5BMl5BanBnXkFtZTYwNTE3NDY3._V1_SX300.jpg",
"Metascore":"38",
"imdbRating":"6.6",
"imdbVotes":"176,122",
"imdbID":"tt0172156",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0181852":{
"Title":"Terminator 3: Rise of the Machines",
"Year":"2003",
"Rated":"R",
"Released":"02 Jul 2003",
"Runtime":"109 min",
"Genre":"Action, Sci-Fi",
"Director":"Jonathan Mostow",
"Writer":"James Cameron (characters), Gale Anne Hurd (characters), John Brancato (story), Michael Ferris (story), Tedi Sarafian (story), John Brancato (screenplay), Michael Ferris (screenplay)",
"Actors":"Arnold Schwarzenegger, Nick Stahl, Claire Danes, Kristanna Loken",
"Plot":"A cybernetic warrior from a post-apocalyptic future travels back in time to protect a 19-year old drifter and his future wife from a most advanced robotic assassin and to ensure they both survive a nuclear attack.",
"Language":"English",
"Country":"USA, Germany, UK",
"Awards":"2 wins & 17 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTk5NzM1ODgyN15BMl5BanBnXkFtZTcwMzA5MjAzMw@@._V1_SX300.jpg",
"Metascore":"66",
"imdbRating":"6.4",
"imdbVotes":"301,849",
"imdbID":"tt0181852",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0325980":{
"Title":"Pirates of the Caribbean: The Curse of the Black Pearl",
"Year":"2003",
"Rated":"PG-13",
"Released":"09 Jul 2003",
"Runtime":"143 min",
"Genre":"Action, Adventure, Fantasy",
"Director":"Gore Verbinski",
"Writer":"Ted Elliott (screen story), Terry Rossio (screen story), Stuart Beattie (screen story), Jay Wolpert (screen story), Ted Elliott (screenplay), Terry Rossio (screenplay)",
"Actors":"Johnny Depp, Geoffrey Rush, Orlando Bloom, Keira Knightley",
"Plot":"Blacksmith Will Turner teams up with eccentric pirate \"Captain\" Jack Sparrow to save his love, the governor's daughter, from Jack's former pirate allies, who are now undead.",
"Language":"English",
"Country":"USA",
"Awards":"Nominated for 5 Oscars. Another 31 wins & 88 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMjAyNDM4MTc2N15BMl5BanBnXkFtZTYwNDk0Mjc3._V1_SX300.jpg",
"Metascore":"63",
"imdbRating":"8.1",
"imdbVotes":"800,218",
"imdbID":"tt0325980",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": false
},
"tt0368447":{
"Title":"The Village",
"Year":"2004",
"Rated":"PG-13",
"Released":"30 Jul 2004",
"Runtime":"108 min",
"Genre":"Drama, Mystery, Romance",
"Director":"M. Night Shyamalan",
"Writer":"M. Night Shyamalan",
"Actors":"Bryce Dallas Howard, Joaquin Phoenix, Adrien Brody, William Hurt",
"Plot":"A series of events tests the beliefs of a small isolated countryside village.",
"Language":"English",
"Country":"USA",
"Awards":"Nominated for 1 Oscar. Another 4 wins & 21 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTM1NTEzODQ1NV5BMl5BanBnXkFtZTcwNDUyMDYyMQ@@._V1_SX300.jpg",
"Metascore":"44",
"imdbRating":"6.5",
"imdbVotes":"192,051",
"imdbID":"tt0368447",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0364725":{
"Title":"Dodgeball: A True Underdog Story",
"Year":"2004",
"Rated":"PG-13",
"Released":"18 Jun 2004",
"Runtime":"92 min",
"Genre":"Comedy, Sport",
"Director":"Rawson Marshall Thurber",
"Writer":"Rawson Marshall Thurber",
"Actors":"Vince Vaughn, Christine Taylor, Ben Stiller, Rip Torn",
"Plot":"A group of misfits enter a Las Vegas dodgeball tournament in order to save their cherished local gym from the onslaught of a corporate health fitness chain.",
"Language":"English, German",
"Country":"USA, Germany",
"Awards":"2 wins & 7 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTIwMzE2MjM4MV5BMl5BanBnXkFtZTYwNjA1OTY3._V1_SX300.jpg",
"Metascore":"55",
"imdbRating":"6.7",
"imdbVotes":"182,999",
"imdbID":"tt0364725",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0343818":{
"Title":"I, Robot",
"Year":"2004",
"Rated":"PG-13",
"Released":"16 Jul 2004",
"Runtime":"115 min",
"Genre":"Action, Mystery, Sci-Fi",
"Director":"Alex Proyas",
"Writer":"Jeff Vintar (screenplay), Akiva Goldsman (screenplay), Jeff Vintar (screen story), Isaac Asimov (suggested by book)",
"Actors":"Will Smith, Bridget Moynahan, Alan Tudyk, James Cromwell",
"Plot":"In 2035, a technophobic cop investigates a crime that may have been perpetrated by a robot, which leads to a larger threat to humanity.",
"Language":"English",
"Country":"USA, Germany",
"Awards":"Nominated for 1 Oscar. Another 1 win & 13 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTQwNzI5NTQ0OF5BMl5BanBnXkFtZTYwMTI3Mjk2._V1_SX300.jpg",
"Metascore":"59",
"imdbRating":"7.1",
"imdbVotes":"381,911",
"imdbID":"tt0343818",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0372183":{
"Title":"The Bourne Supremacy",
"Year":"2004",
"Rated":"PG-13",
"Released":"23 Jul 2004",
"Runtime":"108 min",
"Genre":"Action, Mystery, Thriller",
"Director":"Paul Greengrass",
"Writer":"Robert Ludlum (novel), Tony Gilroy (screenplay)",
"Actors":"Matt Damon, Franka Potente, Brian Cox, Julia Stiles",
"Plot":"When Jason Bourne is framed for a CIA operation gone awry, he is forced to resume his former life as a trained assassin to survive.",
"Language":"English, German, Russian, Italian",
"Country":"USA, Germany",
"Awards":"5 wins & 21 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTAxODk0MjEyMjZeQTJeQWpwZ15BbWU2MDgzMzExNw@@._V1_SX300.jpg",
"Metascore":"73",
"imdbRating":"7.8",
"imdbVotes":"338,889",
"imdbID":"tt0372183",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0316654":{
"Title":"Spider-Man 2",
"Year":"2004",
"Rated":"PG-13",
"Released":"30 Jun 2004",
"Runtime":"127 min",
"Genre":"Action, Adventure, Fantasy",
"Director":"Sam Raimi",
"Writer":"Stan Lee (comic book), Steve Ditko (comic book), Alfred Gough (screen story), Miles Millar (screen story), Michael Chabon (screen story), Alvin Sargent (screenplay)",
"Actors":"Tobey Maguire, Kirsten Dunst, James Franco, Alfred Molina",
"Plot":"Peter Parker is beset with troubles in his failing personal life as he battles a brilliant scientist named Doctor Otto Octavius.",
"Language":"English, Russian, Chinese",
"Country":"USA",
"Awards":"Won 1 Oscar. Another 23 wins & 54 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMjE0Njc1NDYzN15BMl5BanBnXkFtZTcwNjAxMzYyMQ@@._V1_SX300.jpg",
"Metascore":"83",
"imdbRating":"7.3",
"imdbVotes":"406,228",
"imdbID":"tt0316654",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": false
},
"tt0356910":{
"Title":"Mr. & Mrs. Smith",
"Year":"2005",
"Rated":"PG-13",
"Released":"10 Jun 2005",
"Runtime":"120 min",
"Genre":"Action, Comedy, Crime",
"Director":"Doug Liman",
"Writer":"Simon Kinberg",
"Actors":"Brad Pitt, Angelina Jolie, Vince Vaughn, Adam Brody",
"Plot":"A bored married couple is surprised to learn that they are both assassins hired by competing agencies to kill each other.",
"Language":"English, Spanish",
"Country":"USA",
"Awards":"9 wins & 18 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTUxMzcxNzQzOF5BMl5BanBnXkFtZTcwMzQxNjUyMw@@._V1_SX300.jpg",
"Metascore":"55",
"imdbRating":"6.5",
"imdbVotes":"344,697",
"imdbID":"tt0356910",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": false
},
"tt0372784":{
"Title":"Batman Begins",
"Year":"2005",
"Rated":"PG-13",
"Released":"15 Jun 2005",
"Runtime":"140 min",
"Genre":"Action, Adventure",
"Director":"Christopher Nolan",
"Writer":"Bob Kane (characters), David S. Goyer (story), Christopher Nolan (screenplay), David S. Goyer (screenplay)",
"Actors":"Christian Bale, Michael Caine, Liam Neeson, Katie Holmes",
"Plot":"After training with his mentor, Batman begins his war on crime to free the crime-ridden Gotham City from corruption that the Scarecrow and the League of Shadows have cast upon it.",
"Language":"English, Urdu, Mandarin",
"Country":"USA, UK",
"Awards":"Nominated for 1 Oscar. Another 15 wins & 66 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BNTM3OTc0MzM2OV5BMl5BanBnXkFtZTYwNzUwMTI3._V1_SX300.jpg",
"Metascore":"70",
"imdbRating":"8.3",
"imdbVotes":"965,047",
"imdbID":"tt0372784",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": false
},
"tt0367594":{
"Title":"Charlie and the Chocolate Factory",
"Year":"2005",
"Rated":"PG",
"Released":"15 Jul 2005",
"Runtime":"115 min",
"Genre":"Adventure, Comedy, Family",
"Director":"Tim Burton",
"Writer":"Roald Dahl (book), John August (screenplay)",
"Actors":"Johnny Depp, Freddie Highmore, David Kelly, Helena Bonham Carter",
"Plot":"A young boy wins a tour through the most magnificent chocolate factory in the world, led by the world's most unusual candy maker.",
"Language":"English",
"Country":"USA, UK, Australia",
"Awards":"Nominated for 1 Oscar. Another 15 wins & 46 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BNjcxMjg1Njg2NF5BMl5BanBnXkFtZTcwMjQ4NzMzMw@@._V1_SX300.jpg",
"Metascore":"72",
"imdbRating":"6.7",
"imdbVotes":"315,590",
"imdbID":"tt0367594",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0396269":{
"Title":"Wedding Crashers",
"Year":"2005",
"Rated":"R",
"Released":"15 Jul 2005",
"Runtime":"119 min",
"Genre":"Comedy, Romance",
"Director":"David Dobkin",
"Writer":"Steve Faber, Bob Fisher",
"Actors":"Owen Wilson, Vince Vaughn, Christopher Walken, Rachel McAdams",
"Plot":"John Beckwith and Jeremy Grey, a pair of committed womanizers who sneak into weddings to take advantage of the romantic tinge in the air, find themselves at odds with one another when John meets and falls for Claire Cleary.",
"Language":"English",
"Country":"USA",
"Awards":"11 wins & 11 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BZmJkNzViYjYtZWZlNy00OGE4LWI2MzUtYTcwNjY3Y2MyODIwXkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_SX300.jpg",
"Metascore":"64",
"imdbRating":"7.0",
"imdbVotes":"278,410",
"imdbID":"tt0396269",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0407304":{
"Title":"War of the Worlds",
"Year":"2005",
"Rated":"PG-13",
"Released":"29 Jun 2005",
"Runtime":"116 min",
"Genre":"Adventure, Sci-Fi, Thriller",
"Director":"Steven Spielberg",
"Writer":"Josh Friedman (screenplay), David Koepp (screenplay), H.G. Wells (novel)",
"Actors":"Tom Cruise, Dakota Fanning, Miranda Otto, Justin Chatwin",
"Plot":"As Earth is invaded by alien tripod fighting machines, one family fights for survival.",
"Language":"English",
"Country":"USA",
"Awards":"Nominated for 3 Oscars. Another 13 wins & 40 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BNDUyODAzNDI1Nl5BMl5BanBnXkFtZTcwMDA2NDAzMw@@._V1_SX300.jpg",
"Metascore":"73",
"imdbRating":"6.5",
"imdbVotes":"330,847",
"imdbID":"tt0407304",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0443453":{
"Title":"Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan",
"Year":"2006",
"Rated":"R",
"Released":"03 Nov 2006",
"Runtime":"84 min",
"Genre":"Comedy",
"Director":"Larry Charles",
"Writer":"Sacha Baron Cohen (screenplay), Anthony Hines (screenplay), Peter Baynham (screenplay), Dan Mazer (screenplay), Sacha Baron Cohen (story), Peter Baynham (story), Anthony Hines (story), Todd Phillips (story), Sacha Baron Cohen (based on a character created by)",
"Actors":"Sacha Baron Cohen, Ken Davitian, Luenell, Chester",
"Plot":"Kazakh TV talking head Borat is dispatched to the United States to report on the greatest country in the world. With a documentary crew in tow, Borat becomes more interested in locating and marrying Pamela Anderson.",
"Language":"English, Romanian, Hebrew, Polish, Armenian",
"Country":"USA, UK",
"Awards":"Nominated for 1 Oscar. Another 20 wins & 29 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTk0MTQ3NDQ4Ml5BMl5BanBnXkFtZTcwOTQ3OTQzMw@@._V1_SX300.jpg",
"Metascore":"89",
"imdbRating":"7.3",
"imdbVotes":"294,595",
"imdbID":"tt0443453",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0389860":{
"Title":"Click",
"Year":"2006",
"Rated":"PG-13",
"Released":"23 Jun 2006",
"Runtime":"107 min",
"Genre":"Comedy, Drama, Fantasy",
"Director":"Frank Coraci",
"Writer":"Steve Koren, Mark O'Keefe",
"Actors":"Adam Sandler, Kate Beckinsale, Christopher Walken, David Hasselhoff",
"Plot":"A workaholic architect finds a universal remote that allows him to fast-forward and rewind to different parts of his life. Complications arise when the remote starts to overrule his choices.",
"Language":"English, Portuguese, Japanese",
"Country":"USA",
"Awards":"Nominated for 1 Oscar. Another 3 wins & 11 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMjEyODM5MzY2N15BMl5BanBnXkFtZTcwNjcyMTIzMQ@@._V1_SX300.jpg",
"Metascore":"45",
"imdbRating":"6.4",
"imdbVotes":"244,407",
"imdbID":"tt0389860",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": false
},
"tt0415306":{
"Title":"Talladega Nights: The Ballad of Ricky Bobby",
"Year":"2006",
"Rated":"PG-13",
"Released":"04 Aug 2006",
"Runtime":"108 min",
"Genre":"Action, Comedy, Sport",
"Director":"Adam McKay",
"Writer":"Will Ferrell, Adam McKay",
"Actors":"Will Ferrell, John C. Reilly, Sacha Baron Cohen, Gary Cole",
"Plot":"#1 NASCAR driver Ricky Bobby stays atop the heap thanks to a pact with his best friend and teammate, Cal Naughton, Jr. But when a French Formula One driver, makes his way up the ladder, Ricky Bobby's talent and devotion are put to the test.",
"Language":"English, French",
"Country":"USA",
"Awards":"8 wins & 9 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BNzAzOTk1OTIyM15BMl5BanBnXkFtZTcwNDIzNTQzMQ@@._V1_SX300.jpg",
"Metascore":"66",
"imdbRating":"6.6",
"imdbVotes":"129,793",
"imdbID":"tt0415306",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0348150":{
"Title":"Superman Returns",
"Year":"2006",
"Rated":"PG-13",
"Released":"28 Jun 2006",
"Runtime":"154 min",
"Genre":"Action, Adventure, Sci-Fi",
"Director":"Bryan Singer",
"Writer":"Michael Dougherty (screenplay), Dan Harris (screenplay), Bryan Singer (story), Michael Dougherty (story), Dan Harris (story), Jerry Siegel (characters), Joe Shuster (characters)",
"Actors":"Brandon Routh, Kate Bosworth, Kevin Spacey, James Marsden",
"Plot":"Superman reappears after a long absence, but is challenged by an old foe who uses Kryptonian technology for world domination.",
"Language":"English, German, French",
"Country":"USA",
"Awards":"Nominated for 1 Oscar. Another 12 wins & 38 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTU3NzA5MjI0Nl5BMl5BanBnXkFtZTcwMTEwNzMzMQ@@._V1_SX300.jpg",
"Metascore":"72",
"imdbRating":"6.1",
"imdbVotes":"239,077",
"imdbID":"tt0348150",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0383574":{
"Title":"Pirates of the Caribbean: Dead Man's Chest",
"Year":"2006",
"Rated":"PG-13",
"Released":"07 Jul 2006",
"Runtime":"151 min",
"Genre":"Action, Adventure, Fantasy",
"Director":"Gore Verbinski",
"Writer":"Ted Elliott, Terry Rossio, Ted Elliott (characters), Terry Rossio (characters), Stuart Beattie (characters), Jay Wolpert (characters)",
"Actors":"Johnny Depp, Orlando Bloom, Keira Knightley, Jack Davenport",
"Plot":"Jack Sparrow races to recover the heart of Davy Jones to avoid enslaving his soul to Jones' service, as other friends and foes seek the heart for their own agenda as well.",
"Language":"English, Turkish, Greek, Mandarin, French",
"Country":"USA",
"Awards":"Won 1 Oscar. Another 42 wins & 51 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTcwODc1MTMxM15BMl5BanBnXkFtZTYwMDg1NzY3._V1_SX300.jpg",
"Metascore":"53",
"imdbRating":"7.3",
"imdbVotes":"515,601",
"imdbID":"tt0383574",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": false
},
"tt0462538":{
"Title":"The Simpsons Movie",
"Year":"2007",
"Rated":"PG-13",
"Released":"27 Jul 2007",
"Runtime":"87 min",
"Genre":"Animation, Adventure, Comedy",
"Director":"David Silverman",
"Writer":"James L. Brooks (screenplay), Matt Groening (screenplay), Al Jean (screenplay), Ian Maxtone-Graham (screenplay), George Meyer (screenplay), David Mirkin (screenplay), Mike Reiss (screenplay), Mike Scully (screenplay), Matt Selman (screenplay), John Swartzwelder (screenplay), Jon Vitti (screenplay), Joel H. Cohen (consultant writer), John Frink (consultant writer), Tim Long (consultant writer), Michael Price (consultant writer)",
"Actors":"Dan Castellaneta, Julie Kavner, Nancy Cartwright, Yeardley Smith",
"Plot":"After Homer accidentally pollutes the town's water supply, Springfield is encased in a gigantic dome by the EPA and the Simpson family are declared fugitives.",
"Language":"English",
"Country":"USA",
"Awards":"Nominated for 1 Golden Globe. Another 4 wins & 32 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTgxMDczMTA5N15BMl5BanBnXkFtZTcwMzk1MzMzMw@@._V1_SX300.jpg",
"Metascore":"80",
"imdbRating":"7.4",
"imdbVotes":"256,430",
"imdbID":"tt0462538",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0382932":{
"Title":"Ratatouille",
"Year":"2007",
"Rated":"G",
"Released":"29 Jun 2007",
"Runtime":"111 min",
"Genre":"Animation, Comedy, Family",
"Director":"Brad Bird, Jan Pinkava",
"Writer":"Brad Bird (screenplay), Jan Pinkava (original story), Jim Capobianco (original story by), Brad Bird (original story by)",
"Actors":"Patton Oswalt, Ian Holm, Lou Romano, Brian Dennehy",
"Plot":"A rat who can cook makes an unusual alliance with a young kitchen worker at a famous restaurant.",
"Language":"English, French",
"Country":"USA",
"Awards":"Won 1 Oscar. Another 64 wins & 42 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTMzODU0NTkxMF5BMl5BanBnXkFtZTcwMjQ4MzMzMw@@._V1_SX300.jpg",
"Metascore":"96",
"imdbRating":"8.0",
"imdbVotes":"466,263",
"imdbID":"tt0382932",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": false
},
"tt0440963":{
"Title":"The Bourne Ultimatum",
"Year":"2007",
"Rated":"PG-13",
"Released":"03 Aug 2007",
"Runtime":"115 min",
"Genre":"Action, Mystery, Thriller",
"Director":"Paul Greengrass",
"Writer":"Tony Gilroy (screenplay), Scott Z. Burns (screenplay), George Nolfi (screenplay), Tony Gilroy (screen story), Robert Ludlum (novel)",
"Actors":"Matt Damon, Julia Stiles, David Strathairn, Scott Glenn",
"Plot":"Jason Bourne dodges a ruthless CIA official and his agents from a new assassination program while searching for the origins of his life as a trained killer.",
"Language":"English, French, Arabic, Russian, Spanish",
"Country":"USA, Germany",
"Awards":"Won 3 Oscars. Another 25 wins & 38 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTgzNjMwOTM3N15BMl5BanBnXkFtZTcwMzA5MDY0MQ@@._V1_SX300.jpg",
"Metascore":"85",
"imdbRating":"8.1",
"imdbVotes":"483,157",
"imdbID":"tt0440963",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0373889":{
"Title":"Harry Potter and the Order of the Phoenix",
"Year":"2007",
"Rated":"PG-13",
"Released":"11 Jul 2007",
"Runtime":"138 min",
"Genre":"Adventure, Family, Fantasy",
"Director":"David Yates",
"Writer":"Michael Goldenberg (screenplay), J.K. Rowling (novel)",
"Actors":"Daniel Radcliffe, Harry Melling, Jason Boyd, Richard Macklin",
"Plot":"With their warning about Lord Voldemort's return scoffed at, Harry and Dumbledore are targeted by the Wizard authorities as an authoritarian bureaucrat slowly seizes power at Hogwarts.",
"Language":"English",
"Country":"UK, USA",
"Awards":"Nominated for 2 BAFTA Film Awards. Another 15 wins & 38 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTM0NTczMTUzOV5BMl5BanBnXkFtZTYwMzIxNTg3._V1_SX300.jpg",
"Metascore":"71",
"imdbRating":"7.5",
"imdbVotes":"350,333",
"imdbID":"tt0373889",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": true
},
"tt0418279":{
"Title":"Transformers",
"Year":"2007",
"Rated":"PG-13",
"Released":"03 Jul 2007",
"Runtime":"144 min",
"Genre":"Action, Adventure, Sci-Fi",
"Director":"Michael Bay",
"Writer":"Roberto Orci (screenplay), Alex Kurtzman (screenplay), John Rogers (story), Roberto Orci (story), Alex Kurtzman (story)",
"Actors":"Shia LaBeouf, Megan Fox, Josh Duhamel, Tyrese Gibson",
"Plot":"An ancient struggle between two Cybertronian races, the heroic Autobots and the evil Decepticons, comes to Earth, with a clue to the ultimate power held by a teenager.",
"Language":"English, Spanish",
"Country":"USA",
"Awards":"Nominated for 3 Oscars. Another 19 wins & 40 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTQwNjU5MzUzNl5BMl5BanBnXkFtZTYwMzc1MTI3._V1_SX300.jpg",
"Metascore":"61",
"imdbRating":"7.1",
"imdbVotes":"509,845",
"imdbID":"tt0418279",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": false
},
"tt1010048":{
"Title":"Slumdog Millionaire",
"Year":"2008",
"Rated":"R",
"Released":"25 Dec 2008",
"Runtime":"120 min",
"Genre":"Drama, Romance",
"Director":"Danny Boyle, Loveleen Tandan",
"Writer":"Simon Beaufoy (screenplay), Vikas Swarup (novel)",
"Actors":"Dev Patel, Saurabh Shukla, Anil Kapoor, Rajendranath Zutshi",
"Plot":"A Mumbai teen reflects on his upbringing in the slums when he is accused of cheating on the Indian Version of \"Who Wants to be a Millionaire?\"",
"Language":"English, Hindi, French",
"Country":"UK, USA",
"Awards":"Won 8 Oscars. Another 142 wins & 120 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTU2NTA5NzI0N15BMl5BanBnXkFtZTcwMjUxMjYxMg@@._V1_SX300.jpg",
"Metascore":"86",
"imdbRating":"8.0",
"imdbVotes":"637,553",
"imdbID":"tt1010048",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": false
},
"tt0795421":{
"Title":"Mamma Mia!",
"Year":"2008",
"Rated":"PG-13",
"Released":"18 Jul 2008",
"Runtime":"108 min",
"Genre":"Comedy, Family, Musical",
"Director":"Phyllida Lloyd",
"Writer":"Catherine Johnson (screenplay), Catherine Johnson (musical book)",
"Actors":"Amanda Seyfried, Stellan Skarsgård, Pierce Brosnan, Nancy Baldwin",
"Plot":"The story of a bride-to-be trying to find her real father told using hit songs by the popular '70s group ABBA.",
"Language":"English, Greek",
"Country":"USA, UK, Germany",
"Awards":"Nominated for 2 Golden Globes. Another 15 wins & 24 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTA2MDU0MjM0MzReQTJeQWpwZ15BbWU3MDYwNzgwNzE@._V1_SX300.jpg",
"Metascore":"51",
"imdbRating":"6.3",
"imdbVotes":"144,461",
"imdbID":"tt0795421",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0910970":{
"Title":"WALL·E",
"Year":"2008",
"Rated":"G",
"Released":"27 Jun 2008",
"Runtime":"98 min",
"Genre":"Animation, Adventure, Family",
"Director":"Andrew Stanton",
"Writer":"Andrew Stanton (original story by), Pete Docter (original story by), Andrew Stanton (screenplay), Jim Reardon (screenplay)",
"Actors":"Ben Burtt, Elissa Knight, Jeff Garlin, Fred Willard",
"Plot":"In the distant future, a small waste-collecting robot inadvertently embarks on a space journey that will ultimately decide the fate of mankind.",
"Language":"English",
"Country":"USA",
"Awards":"Won 1 Oscar. Another 86 wins & 85 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTczOTA3MzY2N15BMl5BanBnXkFtZTcwOTYwNjE2MQ@@._V1_SX300.jpg",
"Metascore":"94",
"imdbRating":"8.4",
"imdbVotes":"705,530",
"imdbID":"tt0910970",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": false
},
"tt0448157":{
"Title":"Hancock",
"Year":"2008",
"Rated":"PG-13",
"Released":"02 Jul 2008",
"Runtime":"92 min",
"Genre":"Action, Drama",
"Director":"Peter Berg",
"Writer":"Vincent Ngo, Vince Gilligan",
"Actors":"Will Smith, Charlize Theron, Jason Bateman, Jae Head",
"Plot":"Hancock is a superhero whose ill considered behavior regularly causes damage in the millions. He changes when one person he saves helps him improve his public image.",
"Language":"English, Japanese",
"Country":"USA",
"Awards":"4 wins & 11 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTgyMzc4ODU3NV5BMl5BanBnXkFtZTcwNjk5Mzc1MQ@@._V1_SX300.jpg",
"Metascore":"49",
"imdbRating":"6.4",
"imdbVotes":"338,756",
"imdbID":"tt0448157",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0468569":{
"Title":"The Dark Knight",
"Year":"2008",
"Rated":"PG-13",
"Released":"18 Jul 2008",
"Runtime":"152 min",
"Genre":"Action, Adventure, Crime",
"Director":"Christopher Nolan",
"Writer":"Jonathan Nolan (screenplay), Christopher Nolan (screenplay), Christopher Nolan (story), David S. Goyer (story), Bob Kane (characters)",
"Actors":"Christian Bale, Heath Ledger, Aaron Eckhart, Michael Caine",
"Plot":"When the menace known as the Joker wreaks havoc and chaos on the people of Gotham, the caped crusader must come to terms with one of the greatest psychological tests of his ability to fight injustice.",
"Language":"English, Mandarin",
"Country":"USA, UK",
"Awards":"Won 2 Oscars. Another 146 wins & 142 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTMxNTMwODM0NF5BMl5BanBnXkFtZTcwODAyMTk2Mw@@._V1_SX300.jpg",
"Metascore":"82",
"imdbRating":"9.0",
"imdbVotes":"1,652,832",
"imdbID":"tt0468569",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": false
},
"tt1046173":{
"Title":"G.I. Joe: The Rise of Cobra",
"Year":"2009",
"Rated":"PG-13",
"Released":"07 Aug 2009",
"Runtime":"118 min",
"Genre":"Action, Adventure, Sci-Fi",
"Director":"Stephen Sommers",
"Writer":"Stuart Beattie (screenplay), David Elliot (screenplay), Paul Lovett (screenplay), Michael Gordon (story), Stuart Beattie (story), Stephen Sommers (story)",
"Actors":"Adewale Akinnuoye-Agbaje, Christopher Eccleston, Grégory Fitoussi, Joseph Gordon-Levitt",
"Plot":"An elite military unit comprised of special operatives known as G.I. Joe, operating out of The Pit, takes on an evil organization led by a notorious arms dealer.",
"Language":"English, French, Scottish Gaelic",
"Country":"USA, Czech Republic",
"Awards":"3 wins & 14 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTQzMTU1NzQwNl5BMl5BanBnXkFtZTcwNDg4NzMzMw@@._V1_SX300.jpg",
"Metascore":"32",
"imdbRating":"5.8",
"imdbVotes":"172,509",
"imdbID":"tt1046173",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt1041829":{
"Title":"The Proposal",
"Year":"2009",
"Rated":"PG-13",
"Released":"19 Jun 2009",
"Runtime":"108 min",
"Genre":"Comedy, Drama, Romance",
"Director":"Anne Fletcher",
"Writer":"Pete Chiarelli",
"Actors":"Sandra Bullock, Ryan Reynolds, Mary Steenburgen, Craig T. Nelson",
"Plot":"A pushy boss (Sandra Bullock) forces her young assistant (Ryan Reynolds) to marry her in order to keep her Visa status in the U.S. and avoid deportation to Canada.",
"Language":"English",
"Country":"USA",
"Awards":"Nominated for 1 Golden Globe. Another 7 wins & 18 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTU1MzY1ODIyNV5BMl5BanBnXkFtZTcwNDU4NTE3Mg@@._V1_SX300.jpg",
"Metascore":"48",
"imdbRating":"6.7",
"imdbVotes":"224,613",
"imdbID":"tt1041829",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt1080016":{
"Title":"Ice Age: Dawn of the Dinosaurs",
"Year":"2009",
"Rated":"PG",
"Released":"01 Jul 2009",
"Runtime":"94 min",
"Genre":"Animation, Action, Adventure",
"Director":"Carlos Saldanha, Mike Thurmeier",
"Writer":"Peter Ackerman (screenplay), Michael Berg (screenplay), Yoni Brenner (screenplay), Jason Carter Eaton (story), Mike Reiss (screenplay)",
"Actors":"Eunice Cho, Karen Disher, Harrison Fahn, Maile Flanagan",
"Plot":"When Sid's attempt to adopt three dinosaur eggs gets him abducted by their real mother to an underground lost world, his friends attempt to rescue him.",
"Language":"English",
"Country":"USA",
"Awards":"2 wins & 12 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMjA4NDI0Mjg4NV5BMl5BanBnXkFtZTcwOTM1NTY0Mg@@._V1_SX300.jpg",
"Metascore":"50",
"imdbRating":"7.0",
"imdbVotes":"163,446",
"imdbID":"tt1080016",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0417741":{
"Title":"Harry Potter and the Half-Blood Prince",
"Year":"2009",
"Rated":"PG",
"Released":"15 Jul 2009",
"Runtime":"153 min",
"Genre":"Adventure, Family, Fantasy",
"Director":"David Yates",
"Writer":"Steve Kloves (screenplay), J.K. Rowling (novel)",
"Actors":"Daniel Radcliffe, Michael Gambon, Dave Legeno, Elarica Johnson",
"Plot":"As Harry Potter begins his sixth year at Hogwarts, he discovers an old book marked as \"the property of the Half-Blood Prince\" and begins to learn more about Lord Voldemort's dark past.",
"Language":"English",
"Country":"UK, USA",
"Awards":"Nominated for 1 Oscar. Another 8 wins & 30 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BNzU3NDg4NTAyNV5BMl5BanBnXkFtZTcwOTg2ODg1Mg@@._V1_SX300.jpg",
"Metascore":"78",
"imdbRating":"7.5",
"imdbVotes":"317,551",
"imdbID":"tt0417741",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": true
},
"tt1055369":{
"Title":"Transformers: Revenge of the Fallen",
"Year":"2009",
"Rated":"PG-13",
"Released":"24 Jun 2009",
"Runtime":"150 min",
"Genre":"Action, Adventure, Sci-Fi",
"Director":"Michael Bay",
"Writer":"Ehren Kruger, Roberto Orci, Alex Kurtzman",
"Actors":"Shia LaBeouf, Megan Fox, Josh Duhamel, Tyrese Gibson",
"Plot":"Sam Witwicky leaves the Autobots behind for a normal life. But when his mind is filled with cryptic symbols, the Decepticons target him and he is dragged back into the Transformers' war.",
"Language":"English, Spanish",
"Country":"USA",
"Awards":"Nominated for 1 Oscar. Another 13 wins & 25 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BNjk4OTczOTk0NF5BMl5BanBnXkFtZTcwNjQ0NzMzMw@@._V1_SX300.jpg",
"Metascore":"35",
"imdbRating":"6.0",
"imdbVotes":"320,072",
"imdbID":"tt1055369",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt1155076":{
"Title":"The Karate Kid",
"Year":"2010",
"Rated":"PG",
"Released":"11 Jun 2010",
"Runtime":"140 min",
"Genre":"Action, Drama, Family",
"Director":"Harald Zwart",
"Writer":"Christopher Murphey (screenplay), Robert Mark Kamen (story)",
"Actors":"Jaden Smith, Jackie Chan, Taraji P. Henson, Wenwen Han",
"Plot":"Work causes a single mother to move to China with her young son; in his new home, the boy embraces kung fu, taught to him by a master.",
"Language":"English, Chinese",
"Country":"USA, China",
"Awards":"5 wins & 13 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTQ0ODg3ODEyMF5BMl5BanBnXkFtZTcwNjI1MTgxMw@@._V1_SX300.jpg",
"Metascore":"61",
"imdbRating":"6.2",
"imdbVotes":"118,096",
"imdbID":"tt1155076",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt1323594":{
"Title":"Despicable Me",
"Year":"2010",
"Rated":"PG",
"Released":"09 Jul 2010",
"Runtime":"95 min",
"Genre":"Animation, Comedy, Family",
"Director":"Pierre Coffin, Chris Renaud",
"Writer":"Cinco Paul (screenplay), Ken Daurio (screenplay), Sergio Pablos (story)",
"Actors":"Steve Carell, Jason Segel, Russell Brand, Julie Andrews",
"Plot":"When a criminal mastermind uses a trio of orphan girls as pawns for a grand scheme, he finds their love is profoundly changing him for the better.",
"Language":"English",
"Country":"USA, France",
"Awards":"Nominated for 1 Golden Globe. Another 3 wins & 38 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTY3NjY0MTQ0Nl5BMl5BanBnXkFtZTcwMzQ2MTc0Mw@@._V1_SX300.jpg",
"Metascore":"72",
"imdbRating":"7.7",
"imdbVotes":"379,642",
"imdbID":"tt1323594",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": true
},
"tt1375666":{
"Title":"Inception",
"Year":"2010",
"Rated":"PG-13",
"Released":"16 Jul 2010",
"Runtime":"148 min",
"Genre":"Action, Adventure, Crime",
"Director":"Christopher Nolan",
"Writer":"Christopher Nolan",
"Actors":"Leonardo DiCaprio, Joseph Gordon-Levitt, Ellen Page, Tom Hardy",
"Plot":"A thief, who steals corporate secrets through use of dream-sharing technology, is given the inverse task of planting an idea into the mind of a CEO.",
"Language":"English, Japanese, French",
"Country":"USA, UK",
"Awards":"Won 4 Oscars. Another 143 wins & 198 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMjAxMzY3NjcxNF5BMl5BanBnXkFtZTcwNTI5OTM0Mw@@._V1_SX300.jpg",
"Metascore":"74",
"imdbRating":"8.8",
"imdbVotes":"1,446,708",
"imdbID":"tt1375666",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": true
},
"tt1325004":{
"Title":"The Twilight Saga: Eclipse",
"Year":"2010",
"Rated":"PG-13",
"Released":"30 Jun 2010",
"Runtime":"124 min",
"Genre":"Adventure, Drama, Fantasy",
"Director":"David Slade",
"Writer":"Melissa Rosenberg (screenplay), Stephenie Meyer (novel)",
"Actors":"Xavier Samuel, Kristen Stewart, Robert Pattinson, Billy Burke",
"Plot":"As a string of mysterious killings grips Seattle, Bella, whose high school graduation is fast approaching, is forced to choose between her love for vampire Edward and her friendship with werewolf Jacob.",
"Language":"English",
"Country":"USA",
"Awards":"23 wins & 33 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BNDMwNjAzNzYwOF5BMl5BanBnXkFtZTcwMDY5NzcyMw@@._V1_SX300.jpg",
"Metascore":"58",
"imdbRating":"4.9",
"imdbVotes":"182,635",
"imdbID":"tt1325004",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0435761":{
"Title":"Toy Story 3",
"Year":"2010",
"Rated":"G",
"Released":"18 Jun 2010",
"Runtime":"103 min",
"Genre":"Animation, Adventure, Comedy",
"Director":"Lee Unkrich",
"Writer":"John Lasseter (story by), Andrew Stanton (story by), Lee Unkrich (story by), Michael Arndt (screenplay)",
"Actors":"Tom Hanks, Tim Allen, Joan Cusack, Ned Beatty",
"Plot":"The toys are mistakenly delivered to a day-care center instead of the attic right before Andy leaves for college, and it's up to Woody to convince the other toys that they weren't abandoned and to return home.",
"Language":"English, Spanish",
"Country":"USA",
"Awards":"Won 2 Oscars. Another 57 wins & 89 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTgxOTY4Mjc0MF5BMl5BanBnXkFtZTcwNTA4MDQyMw@@._V1_SX300.jpg",
"Metascore":"92",
"imdbRating":"8.3",
"imdbVotes":"538,240",
"imdbID":"tt0435761",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": false
},
"tt0458339":{
"Title":"Captain America: The First Avenger",
"Year":"2011",
"Rated":"PG-13",
"Released":"22 Jul 2011",
"Runtime":"124 min",
"Genre":"Action, Adventure, Sci-Fi",
"Director":"Joe Johnston",
"Writer":"Christopher Markus (screenplay), Stephen McFeely (screenplay), Joe Simon (comic books), Jack Kirby (comic books)",
"Actors":"Chris Evans, Hayley Atwell, Sebastian Stan, Tommy Lee Jones",
"Plot":"Steve Rogers, a rejected military soldier transforms into Captain America after taking a dose of a \"Super-Soldier serum\". But being Captain America comes at a price as he attempts to take down a war monger and a terrorist organization.",
"Language":"English, Norwegian, French",
"Country":"USA",
"Awards":"3 wins & 42 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTYzOTc2NzU3N15BMl5BanBnXkFtZTcwNjY3MDE3NQ@@._V1_SX300.jpg",
"Metascore":"66",
"imdbRating":"6.9",
"imdbVotes":"502,898",
"imdbID":"tt0458339",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": false
},
"tt1318514":{
"Title":"Rise of the Planet of the Apes",
"Year":"2011",
"Rated":"PG-13",
"Released":"05 Aug 2011",
"Runtime":"105 min",
"Genre":"Action, Drama, Sci-Fi",
"Director":"Rupert Wyatt",
"Writer":"Rick Jaffa, Amanda Silver, Pierre Boulle (novel)",
"Actors":"Andy Serkis, Karin Konoval, Terry Notary, Richard Ridings",
"Plot":"A substance, designed to help the brain repair itself, gives rise to a super-intelligent chimp who leads an ape uprising.",
"Language":"English, Sign Languages",
"Country":"USA",
"Awards":"Nominated for 1 Oscar. Another 20 wins & 41 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTQyMjUxNTc0Ml5BMl5BanBnXkFtZTcwMjg1ODExNg@@._V1_SX300.jpg",
"Metascore":"68",
"imdbRating":"7.6",
"imdbVotes":"399,342",
"imdbID":"tt1318514",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt1216475":{
"Title":"Cars 2",
"Year":"2011",
"Rated":"G",
"Released":"24 Jun 2011",
"Runtime":"106 min",
"Genre":"Animation, Adventure, Comedy",
"Director":"John Lasseter, Brad Lewis",
"Writer":"John Lasseter (original story by), Brad Lewis (original story by), Dan Fogelman (original story by), Ben Queen (screenplay)",
"Actors":"Larry the Cable Guy, Owen Wilson, Michael Caine, Emily Mortimer",
"Plot":"Star race car Lightning McQueen and his pal Mater head overseas to compete in the World Grand Prix race. But the road to the championship becomes rocky as Mater gets caught up in an intriguing adventure of his own: international espionage.",
"Language":"English, Japanese, Italian, French",
"Country":"USA",
"Awards":"Nominated for 1 Golden Globe. Another 1 win & 16 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTUzNTc3MTU3M15BMl5BanBnXkFtZTcwMzIxNTc3NA@@._V1_SX300.jpg",
"Metascore":"57",
"imdbRating":"6.3",
"imdbVotes":"99,327",
"imdbID":"tt1216475",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": false
},
"tt1399103":{
"Title":"Transformers: Dark of the Moon",
"Year":"2011",
"Rated":"PG-13",
"Released":"29 Jun 2011",
"Runtime":"154 min",
"Genre":"Action, Adventure, Sci-Fi",
"Director":"Michael Bay",
"Writer":"Ehren Kruger",
"Actors":"Shia LaBeouf, Rosie Huntington-Whiteley, Josh Duhamel, John Turturro",
"Plot":"The Autobots learn of a Cybertronian spacecraft hidden on the moon, and race against the Decepticons to reach it and to learn its secrets.",
"Language":"English",
"Country":"USA",
"Awards":"Nominated for 3 Oscars. Another 10 wins & 40 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTkwOTY0MTc1NV5BMl5BanBnXkFtZTcwMDQwNjA2NQ@@._V1_SX300.jpg",
"Metascore":"42",
"imdbRating":"6.3",
"imdbVotes":"322,619",
"imdbID":"tt1399103",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt1201607":{
"Title":"Harry Potter and the Deathly Hallows: Part 2",
"Year":"2011",
"Rated":"PG-13",
"Released":"15 Jul 2011",
"Runtime":"130 min",
"Genre":"Adventure, Drama, Fantasy",
"Director":"David Yates",
"Writer":"Steve Kloves (screenplay), J.K. Rowling (novel)",
"Actors":"Ralph Fiennes, Michael Gambon, Alan Rickman, Daniel Radcliffe",
"Plot":"Harry, Ron and Hermione search for Voldemort's remaining Horcruxes in their effort to destroy the Dark Lord as the final battle rages on at Hogwarts.",
"Language":"English",
"Country":"USA, UK",
"Awards":"Nominated for 3 Oscars. Another 45 wins & 87 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTY2MTk3MDQ1N15BMl5BanBnXkFtZTcwMzI4NzA2NQ@@._V1_SX300.jpg",
"Metascore":"87",
"imdbRating":"8.1",
"imdbVotes":"535,695",
"imdbID":"tt1201607",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": true
},
"tt1667889":{
"Title":"Ice Age: Continental Drift",
"Year":"2012",
"Rated":"PG",
"Released":"13 Jul 2012",
"Runtime":"88 min",
"Genre":"Animation, Adventure, Comedy",
"Director":"Steve Martino, Mike Thurmeier",
"Writer":"Michael Berg (screenplay), Jason Fuchs (screenplay), Michael Berg (story), Lori Forte (story)",
"Actors":"Aziz Ansari, Joy Behar, Christopher Campbell, Alain Chabat",
"Plot":"Manny, Diego, and Sid embark upon another adventure after their continent is set adrift. Using an iceberg as a ship, they encounter sea creatures and battle pirates as they explore a new world.",
"Language":"English",
"Country":"USA",
"Awards":"2 wins & 10 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTM3NDM5MzY5Ml5BMl5BanBnXkFtZTcwNjExMDUwOA@@._V1_SX300.jpg",
"Metascore":"49",
"imdbRating":"6.7",
"imdbVotes":"142,145",
"imdbID":"tt1667889",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt1637725":{
"Title":"Ted",
"Year":"2012",
"Rated":"R",
"Released":"29 Jun 2012",
"Runtime":"106 min",
"Genre":"Comedy, Fantasy",
"Director":"Seth MacFarlane",
"Writer":"Seth MacFarlane (screenplay), Alec Sulkin (screenplay), Wellesley Wild (screenplay), Seth MacFarlane (story by)",
"Actors":"Mark Wahlberg, Mila Kunis, Seth MacFarlane, Joel McHale",
"Plot":"John Bennett, a man whose childhood wish of bringing his teddy bear to life came true, now must decide between keeping the relationship with the bear or his girlfriend, Lori.",
"Language":"English, Ukrainian",
"Country":"USA",
"Awards":"Nominated for 1 Oscar. Another 13 wins & 28 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTQ1OTU0ODcxMV5BMl5BanBnXkFtZTcwOTMxNTUwOA@@._V1_SX300.jpg",
"Metascore":"62",
"imdbRating":"7.0",
"imdbVotes":"466,710",
"imdbID":"tt1637725",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt1217209":{
"Title":"Brave",
"Year":"2012",
"Rated":"PG",
"Released":"22 Jun 2012",
"Runtime":"93 min",
"Genre":"Animation, Adventure, Comedy",
"Director":"Mark Andrews, Brenda Chapman, Steve Purcell",
"Writer":"Brenda Chapman (story by), Mark Andrews (screenplay), Steve Purcell (screenplay), Brenda Chapman (screenplay), Irene Mecchi (screenplay)",
"Actors":"Kelly Macdonald, Billy Connolly, Emma Thompson, Julie Walters",
"Plot":"Determined to make her own path in life, Princess Merida defies a custom that brings chaos to her kingdom. Granted one wish, Merida must rely on her bravery and her archery skills to undo a beastly curse.",
"Language":"English",
"Country":"USA",
"Awards":"Won 1 Oscar. Another 18 wins & 47 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMzgwODk3ODA1NF5BMl5BanBnXkFtZTcwNjU3NjQ0Nw@@._V1_SX300.jpg",
"Metascore":"69",
"imdbRating":"7.2",
"imdbVotes":"270,429",
"imdbID":"tt1217209",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": true
},
"tt0948470":{
"Title":"The Amazing Spider-Man",
"Year":"2012",
"Rated":"PG-13",
"Released":"03 Jul 2012",
"Runtime":"136 min",
"Genre":"Action, Adventure, Fantasy",
"Director":"Marc Webb",
"Writer":"James Vanderbilt (screenplay), Alvin Sargent (screenplay), Steve Kloves (screenplay), James Vanderbilt (story), Stan Lee (based on the Marvel comic book by), Steve Ditko (based on the Marvel comic book by)",
"Actors":"Andrew Garfield, Emma Stone, Rhys Ifans, Denis Leary",
"Plot":"After Peter Parker is bitten by a genetically altered spider, he gains newfound, spider-like powers and ventures out to solve the mystery of his parent's mysterious death.",
"Language":"English",
"Country":"USA",
"Awards":"2 wins & 31 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMjMyOTM4MDMxNV5BMl5BanBnXkFtZTcwNjIyNzExOA@@._V1_SX300.jpg",
"Metascore":"66",
"imdbRating":"7.0",
"imdbVotes":"447,493",
"imdbID":"tt0948470",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": false
},
"tt1345836":{
"Title":"The Dark Knight Rises",
"Year":"2012",
"Rated":"PG-13",
"Released":"20 Jul 2012",
"Runtime":"164 min",
"Genre":"Action, Adventure, Drama",
"Director":"Christopher Nolan",
"Writer":"Jonathan Nolan (screenplay), Christopher Nolan (screenplay), Christopher Nolan (story), David S. Goyer (story), Bob Kane (characters)",
"Actors":"Christian Bale, Gary Oldman, Tom Hardy, Joseph Gordon-Levitt",
"Plot":"Eight years after the Joker's reign of anarchy, the Dark Knight, with the help of the enigmatic Selina, is forced from his imposed exile to save Gotham City, now on the edge of total annihilation, from the brutal guerrilla terrorist Bane.",
"Language":"English, Arabic",
"Country":"USA, UK",
"Awards":"Nominated for 1 BAFTA Film Award. Another 38 wins & 96 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTk4ODQzNDY3Ml5BMl5BanBnXkFtZTcwODA0NTM4Nw@@._V1_SX300.jpg",
"Metascore":"78",
"imdbRating":"8.5",
"imdbVotes":"1,131,146",
"imdbID":"tt1345836",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": true
},
"tt0816711":{
"Title":"World War Z",
"Year":"2013",
"Rated":"PG-13",
"Released":"21 Jun 2013",
"Runtime":"116 min",
"Genre":"Action, Adventure, Horror",
"Director":"Marc Forster",
"Writer":"Matthew Michael Carnahan (screenplay), Drew Goddard (screenplay), Damon Lindelof (screenplay), Matthew Michael Carnahan (screen story), J. Michael Straczynski (screen story), Max Brooks (based on the novel by)",
"Actors":"Brad Pitt, Mireille Enos, Daniella Kertesz, James Badge Dale",
"Plot":"Former United Nations employee Gerry Lane traverses the world in a race against time to stop the Zombie pandemic that is toppling armies and governments, and threatening to destroy humanity itself.",
"Language":"English, Spanish, Hebrew, Arabic",
"Country":"USA",
"Awards":"3 wins & 23 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTg0NTgxMjIxOF5BMl5BanBnXkFtZTcwMDM0MDY1OQ@@._V1_SX300.jpg",
"Metascore":"63",
"imdbRating":"7.0",
"imdbVotes":"459,688",
"imdbID":"tt0816711",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt1453405":{
"Title":"Monsters University",
"Year":"2013",
"Rated":"G",
"Released":"21 Jun 2013",
"Runtime":"104 min",
"Genre":"Animation, Adventure, Comedy",
"Director":"Dan Scanlon",
"Writer":"Dan Scanlon (story by), Daniel Gerson (story by), Robert L. Baird (story by), Daniel Gerson (screenplay), Robert L. Baird (screenplay), Dan Scanlon (screenplay)",
"Actors":"Billy Crystal, John Goodman, Steve Buscemi, Helen Mirren",
"Plot":"A look at the relationship between Mike and Sulley during their days at Monsters University -- when they weren't necessarily the best of friends.",
"Language":"English",
"Country":"USA",
"Awards":"Nominated for 1 BAFTA Film Award. Another 9 wins & 54 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTUyODgwMDU3M15BMl5BanBnXkFtZTcwOTM4MjcxOQ@@._V1_SX300.jpg",
"Metascore":"65",
"imdbRating":"7.3",
"imdbVotes":"230,835",
"imdbID":"tt1453405",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": true
},
"tt1454468":{
"Title":"Gravity",
"Year":"2013",
"Rated":"PG-13",
"Released":"04 Oct 2013",
"Runtime":"91 min",
"Genre":"Adventure, Drama, Sci-Fi",
"Director":"Alfonso Cuarón",
"Writer":"Alfonso Cuarón, Jonás Cuarón",
"Actors":"Sandra Bullock, George Clooney, Ed Harris, Orto Ignatiussen",
"Plot":"A medical engineer and an astronaut work together to survive after an accident leaves them adrift in space.",
"Language":"English, Greenlandic",
"Country":"UK, USA",
"Awards":"Won 7 Oscars. Another 213 wins & 168 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BNjE5MzYwMzYxMF5BMl5BanBnXkFtZTcwOTk4MTk0OQ@@._V1_SX300.jpg",
"Metascore":"96",
"imdbRating":"7.8",
"imdbVotes":"577,366",
"imdbID":"tt1454468",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0770828":{
"Title":"Man of Steel",
"Year":"2013",
"Rated":"PG-13",
"Released":"14 Jun 2013",
"Runtime":"143 min",
"Genre":"Action, Adventure, Fantasy",
"Director":"Zack Snyder",
"Writer":"David S. Goyer (screenplay), David S. Goyer (story), Christopher Nolan (story), Jerry Siegel (Superman created by), Joe Shuster (Superman created by)",
"Actors":"Henry Cavill, Amy Adams, Michael Shannon, Diane Lane",
"Plot":"Clark Kent, one of the last of an extinguished race disguised as an unremarkable human, is forced to reveal his identity when Earth is invaded by an army of survivors who threaten to bring the planet to the brink of destruction.",
"Language":"English",
"Country":"USA, Canada, UK",
"Awards":"7 wins & 42 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMjI5OTYzNjI0Ml5BMl5BanBnXkFtZTcwMzM1NDA1OQ@@._V1_SX300.jpg",
"Metascore":"55",
"imdbRating":"7.2",
"imdbVotes":"539,282",
"imdbID":"tt0770828",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": true
},
"tt1690953":{
"Title":"Despicable Me 2",
"Year":"2013",
"Rated":"PG",
"Released":"03 Jul 2013",
"Runtime":"98 min",
"Genre":"Animation, Comedy, Family",
"Director":"Pierre Coffin, Chris Renaud",
"Writer":"Cinco Paul, Ken Daurio",
"Actors":"Steve Carell, Kristen Wiig, Benjamin Bratt, Miranda Cosgrove",
"Plot":"When Gru, the world's most super-bad turned super-dad has been recruited by a team of officials to stop lethal muscle and a host of Gru's own, He has to fight back with new gadgetry, cars, and more minion madness.",
"Language":"English, Ukrainian",
"Country":"USA",
"Awards":"Nominated for 2 Oscars. Another 12 wins & 63 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMjExNjAyNTcyMF5BMl5BanBnXkFtZTgwODQzMjQ3MDE@._V1_SX300.jpg",
"Metascore":"62",
"imdbRating":"7.5",
"imdbVotes":"282,972",
"imdbID":"tt1690953",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": true
},
"tt1291150":{
"Title":"Teenage Mutant Ninja Turtles",
"Year":"2014",
"Rated":"PG-13",
"Released":"08 Aug 2014",
"Runtime":"101 min",
"Genre":"Action, Adventure, Comedy",
"Director":"Jonathan Liebesman",
"Writer":"Josh Appelbaum, André Nemec, Evan Daugherty, Peter Laird (Teenage Mutant Ninja Turtles characters), Kevin Eastman (Teenage Mutant Ninja Turtles characters)",
"Actors":"Megan Fox, Will Arnett, William Fichtner, Alan Ritchson",
"Plot":"When a kingpin threatens New York City, a group of mutated turtle warriors must emerge from the shadows to protect their home.",
"Language":"English, Japanese",
"Country":"USA",
"Awards":"1 win & 10 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BNjUzODQ5MDY5NV5BMl5BanBnXkFtZTgwOTc1NzcyMjE@._V1_SX300.jpg",
"Metascore":"31",
"imdbRating":"5.9",
"imdbVotes":"164,422",
"imdbID":"tt1291150",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt2294449":{
"Title":"22 Jump Street",
"Year":"2014",
"Rated":"R",
"Released":"13 Jun 2014",
"Runtime":"112 min",
"Genre":"Action, Comedy, Crime",
"Director":"Phil Lord, Christopher Miller",
"Writer":"Michael Bacall (screenplay), Oren Uziel (screenplay), Rodney Rothman (screenplay), Michael Bacall (story), Jonah Hill (story), Patrick Hasburgh (television series \"21 Jump Street\"), Stephen J. Cannell (television series \"21 Jump Street\")",
"Actors":"Jonah Hill, Channing Tatum, Peter Stormare, Wyatt Russell",
"Plot":"After making their way through high school (twice), big changes are in store for officers Schmidt and Jenko when they go deep undercover at a local college.",
"Language":"English",
"Country":"USA",
"Awards":"7 wins & 22 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTcwNzAxMDU1M15BMl5BanBnXkFtZTgwNDE2NTU1MTE@._V1_SX300.jpg",
"Metascore":"71",
"imdbRating":"7.1",
"imdbVotes":"253,238",
"imdbID":"tt2294449",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt2103281":{
"Title":"Dawn of the Planet of the Apes",
"Year":"2014",
"Rated":"PG-13",
"Released":"11 Jul 2014",
"Runtime":"130 min",
"Genre":"Action, Adventure, Drama",
"Director":"Matt Reeves",
"Writer":"Mark Bomback, Rick Jaffa, Amanda Silver, Rick Jaffa (characters), Amanda Silver (characters), Pierre Boulle (novel)",
"Actors":"Andy Serkis, Jason Clarke, Gary Oldman, Keri Russell",
"Plot":"A growing nation of genetically evolved apes led by Caesar is threatened by a band of human survivors of the devastating virus unleashed a decade earlier.",
"Language":"English, American Sign Language",
"Country":"USA",
"Awards":"Nominated for 1 Oscar. Another 14 wins & 45 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTgwODk3NDc1N15BMl5BanBnXkFtZTgwNTc1NjQwMjE@._V1_SX300.jpg",
"Metascore":"79",
"imdbRating":"7.6",
"imdbVotes":"312,612",
"imdbID":"tt2103281",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt2109248":{
"Title":"Transformers: Age of Extinction",
"Year":"2014",
"Rated":"PG-13",
"Released":"27 Jun 2014",
"Runtime":"165 min",
"Genre":"Action, Adventure, Sci-Fi",
"Director":"Michael Bay",
"Writer":"Ehren Kruger",
"Actors":"Mark Wahlberg, Stanley Tucci, Kelsey Grammer, Nicola Peltz",
"Plot":"Autobots must escape sight from a bounty hunter who has taken control of the human serendipity: Unexpectedly, Optimus Prime and his remaining gang turn to a mechanic, his daughter, and her back street racing boyfriend for help.",
"Language":"English",
"Country":"USA, China",
"Awards":"5 wins & 22 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMjEwNTg1MTA5Nl5BMl5BanBnXkFtZTgwOTg2OTM4MTE@._V1_SX300.jpg",
"Metascore":"32",
"imdbRating":"5.7",
"imdbVotes":"240,006",
"imdbID":"tt2109248",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt2015381":{
"Title":"Guardians of the Galaxy",
"Year":"2014",
"Rated":"PG-13",
"Released":"01 Aug 2014",
"Runtime":"121 min",
"Genre":"Action, Adventure, Sci-Fi",
"Director":"James Gunn",
"Writer":"James Gunn, Nicole Perlman, Dan Abnett (comic book), Andy Lanning (comic book)",
"Actors":"Chris Pratt, Zoe Saldana, Dave Bautista, Vin Diesel",
"Plot":"A group of intergalactic criminals are forced to work together to stop a fanatical warrior from taking control of the universe.",
"Language":"English",
"Country":"USA, UK",
"Awards":"Nominated for 2 Oscars. Another 48 wins & 92 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTAwMjU5OTgxNjZeQTJeQWpwZ15BbWU4MDUxNDYxODEx._V1_SX300.jpg",
"Metascore":"76",
"imdbRating":"8.1",
"imdbVotes":"669,684",
"imdbID":"tt2015381",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": false
},
"tt1340138":{
"Title":"Terminator Genisys",
"Year":"2015",
"Rated":"PG-13",
"Released":"01 Jul 2015",
"Runtime":"126 min",
"Genre":"Action, Adventure, Sci-Fi",
"Director":"Alan Taylor",
"Writer":"Laeta Kalogridis, Patrick Lussier, James Cameron (characters), Gale Anne Hurd (characters)",
"Actors":"Arnold Schwarzenegger, Jason Clarke, Emilia Clarke, Jai Courtney",
"Plot":"When John Connor, leader of the human resistance, sends Sgt. Kyle Reese back to 1984 to protect Sarah Connor and safeguard the future, an unexpected turn of events creates a fractured timeline.",
"Language":"English",
"Country":"USA",
"Awards":"6 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMjM1NTc0NzE4OF5BMl5BanBnXkFtZTgwNDkyNjQ1NTE@._V1_SX300.jpg",
"Metascore":"38",
"imdbRating":"6.6",
"imdbVotes":"182,812",
"imdbID":"tt1340138",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt1398426":{
"Title":"Straight Outta Compton",
"Year":"2015",
"Rated":"R",
"Released":"14 Aug 2015",
"Runtime":"147 min",
"Genre":"Biography, Crime, Drama",
"Director":"F. Gary Gray",
"Writer":"Jonathan Herman (screenplay), Andrea Berloff (screenplay), S. Leigh Savidge (story), Alan Wenkus (story), Andrea Berloff (story)",
"Actors":"O'Shea Jackson Jr., Corey Hawkins, Jason Mitchell, Neil Brown Jr.",
"Plot":"The group NWA emerges from the mean streets of Compton in Los Angeles, California, in the mid-1980s and revolutionizes Hip Hop culture with their music and tales about life in the hood.",
"Language":"English",
"Country":"USA",
"Awards":"Nominated for 1 Oscar. Another 22 wins & 38 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTA5MzkyMzIxNjJeQTJeQWpwZ15BbWU4MDU0MDk0OTUx._V1_SX300.jpg",
"Metascore":"72",
"imdbRating":"8.0",
"imdbVotes":"110,326",
"imdbID":"tt1398426",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0478970":{
"Title":"Ant-Man",
"Year":"2015",
"Rated":"PG-13",
"Released":"17 Jul 2015",
"Runtime":"117 min",
"Genre":"Action, Adventure, Comedy",
"Director":"Peyton Reed",
"Writer":"Edgar Wright (screenplay), Joe Cornish (screenplay), Adam McKay (screenplay), Paul Rudd (screenplay), Edgar Wright (story), Joe Cornish (story), Stan Lee (comic book), Larry Lieber (comic book), Jack Kirby (comic book)",
"Actors":"Paul Rudd, Michael Douglas, Evangeline Lilly, Corey Stoll",
"Plot":"Armed with a super-suit with the astonishing ability to shrink in scale but increase in strength, cat burglar Scott Lang must embrace his inner hero and help his mentor, Dr. Hank Pym, plan and pull off a heist that will save the world.",
"Language":"English",
"Country":"USA",
"Awards":"Nominated for 1 BAFTA Film Award. Another 1 win & 27 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMjM2NTQ5Mzc2M15BMl5BanBnXkFtZTgwNTcxMDI2NTE@._V1_SX300.jpg",
"Metascore":"64",
"imdbRating":"7.4",
"imdbVotes":"297,867",
"imdbID":"tt0478970",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt2381249":{
"Title":"Mission: Impossible - Rogue Nation",
"Year":"2015",
"Rated":"PG-13",
"Released":"31 Jul 2015",
"Runtime":"131 min",
"Genre":"Action, Adventure, Thriller",
"Director":"Christopher McQuarrie",
"Writer":"Christopher McQuarrie (screenplay), Christopher McQuarrie (story), Drew Pearce (story), Bruce Geller (television series)",
"Actors":"Tom Cruise, Jeremy Renner, Simon Pegg, Rebecca Ferguson",
"Plot":"Ethan and team take on their most impossible mission yet, eradicating the Syndicate - an International rogue organization as highly skilled as they are, committed to destroying the IMF.",
"Language":"English, German, Swedish",
"Country":"China, Hong Kong, USA",
"Awards":"2 wins & 17 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTQ1NDI2MzU2MF5BMl5BanBnXkFtZTgwNTExNTU5NDE@._V1_SX300.jpg",
"Metascore":"75",
"imdbRating":"7.5",
"imdbVotes":"223,103",
"imdbID":"tt2381249",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt2293640":{
"Title":"Minions",
"Year":"2015",
"Rated":"PG",
"Released":"10 Jul 2015",
"Runtime":"91 min",
"Genre":"Animation, Action, Comedy",
"Director":"Kyle Balda, Pierre Coffin",
"Writer":"Brian Lynch",
"Actors":"Sandra Bullock, Jon Hamm, Michael Keaton, Allison Janney",
"Plot":"Minions Stuart, Kevin and Bob are recruited by Scarlet Overkill, a super-villain who, alongside her inventor husband Herb, hatches a plot to take over the world.",
"Language":"English, Spanish",
"Country":"USA",
"Awards":"Nominated for 1 BAFTA Film Award. Another 16 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTg2MTMyMzU0M15BMl5BanBnXkFtZTgwOTU3ODk4NTE@._V1_SX300.jpg",
"Metascore":"56",
"imdbRating":"6.4",
"imdbVotes":"135,756",
"imdbID":"tt2293640",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": true
},
"tt3110958":{
"Title":"Now You See Me 2",
"Year":"2016",
"Rated":"PG-13",
"Released":"10 Jun 2016",
"Runtime":"129 min",
"Genre":"Action, Comedy, Thriller",
"Director":"Jon M. Chu",
"Writer":"Ed Solomon (screenplay), Ed Solomon (story), Pete Chiarelli (story), Boaz Yakin (characters), Edward Ricourt (characters)",
"Actors":"Jesse Eisenberg, Mark Ruffalo, Woody Harrelson, Dave Franco",
"Plot":"The Four Horsemen resurface and are forcibly recruited by a tech genius to pull off their most impossible heist yet.",
"Language":"English",
"Country":"USA",
"Awards":"N/A",
"Poster":"http://ia.media-imdb.com/images/M/MV5BNzQ0NDgwODQ3NV5BMl5BanBnXkFtZTgwOTYxNjc2ODE@._V1_SX300.jpg",
"Metascore":"48",
"imdbRating":"7.3",
"imdbVotes":"2,876",
"imdbID":"tt3110958",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0918940":{
"Title":"The Legend of Tarzan",
"Year":"2016",
"Rated":"PG-13",
"Released":"01 Jul 2016",
"Runtime":"109 min",
"Genre":"Action, Adventure",
"Director":"David Yates",
"Writer":"Adam Cozad (screenplay), Craig Brewer (screenplay), Craig Brewer (story by), Adam Cozad (story by), Edgar Rice Burroughs (Based on the'Tarzan' stories created by)",
"Actors":"Alexander Skarsgård, Rory J. Saper, Christian Stevens, Christoph Waltz",
"Plot":"Tarzan, having acclimated to life in London, is called back to his former home in the jungle to investigate the activities at a mining encampment.",
"Language":"English",
"Country":"USA",
"Awards":"N/A",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMzY3OTI0OTcyMF5BMl5BanBnXkFtZTgwNjkxNTAwOTE@._V1_SX300.jpg",
"Metascore":"N/A",
"imdbRating":"7.6",
"imdbVotes":"541",
"imdbID":"tt0918940",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt1628841":{
"Title":"Independence Day: Resurgence",
"Year":"2016",
"Rated":"PG-13",
"Released":"24 Jun 2016",
"Runtime":"120 min",
"Genre":"Action, Adventure, Sci-Fi",
"Director":"Roland Emmerich",
"Writer":"Nicolas Wright (screenplay), James A. Woods (screenplay), Dean Devlin (screenplay), Roland Emmerich (screenplay), James Vanderbilt (screenplay), Dean Devlin (story by), Roland Emmerich (story by), Nicolas Wright (story by), James A. Woods (story by), Dean Devlin (based on characters created by), Roland Emmerich (based on characters created by)",
"Actors":"Liam Hemsworth, Jeff Goldblum, Jessie T. Usher, Bill Pullman",
"Plot":"Two decades after the first Independence Day invasion, Earth is faced with a new extra-Solar threat. But will mankind's new space defenses be enough?",
"Language":"English",
"Country":"USA",
"Awards":"1 win.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMjIyMTg5MTg4OV5BMl5BanBnXkFtZTgwMzkzMjY5NzE@._V1_SX300.jpg",
"Metascore":"32",
"imdbRating":"5.9",
"imdbVotes":"7,058",
"imdbID":"tt1628841",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt1489889":{
"Title":"Central Intelligence",
"Year":"2016",
"Rated":"PG-13",
"Released":"17 Jun 2016",
"Runtime":"114 min",
"Genre":"Comedy, Crime",
"Director":"Rawson Marshall Thurber",
"Writer":"Ike Barinholtz (screenplay), David Stassen (screenplay), Rawson Marshall Thurber (screenplay), Ike Barinholtz (story), David Stassen (story)",
"Actors":"Dwayne Johnson, Kevin Hart, Amy Ryan, Danielle Nicolet",
"Plot":"After he reunites with an old school pal through Facebook, a mild-mannered accountant is lured into the world of international espionage.",
"Language":"English",
"Country":"USA",
"Awards":"N/A",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMjA2NzEzNjIwNl5BMl5BanBnXkFtZTgwNzgwMTEzNzE@._V1_SX300.jpg",
"Metascore":"52",
"imdbRating":"7.0",
"imdbVotes":"4,663",
"imdbID":"tt1489889",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt2277860":{
"Title":"Finding Dory",
"Year":"2016",
"Rated":"PG",
"Released":"17 Jun 2016",
"Runtime":"103 min",
"Genre":"Animation, Adventure, Comedy",
"Director":"Andrew Stanton, Angus MacLane",
"Writer":"Andrew Stanton (original story by), Andrew Stanton (screenplay), Victoria Strouse (screenplay), Bob Peterson (additional screenplay material by), Angus MacLane (additional story material by)",
"Actors":"Ellen DeGeneres, Albert Brooks, Ed O'Neill, Kaitlin Olson",
"Plot":"The friendly-but-forgetful blue tang fish reunites with her loved ones, and everyone learns a few things about the real meaning of family along the way.",
"Language":"English, Indonesian",
"Country":"USA",
"Awards":"N/A",
"Poster":"http://ia.media-imdb.com/images/M/MV5BNzg4MjM2NDQ4MV5BMl5BanBnXkFtZTgwMzk3MTgyODE@._V1_SX300.jpg",
"Metascore":"77",
"imdbRating":"8.2",
"imdbVotes":"13,158",
"imdbID":"tt2277860",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment