yify 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d979512449ef590614706d2f76342aca3142e2b5
4
- data.tar.gz: 5ea8fd1e035bc1c3b3050c590560ce5d6b7a499b
3
+ metadata.gz: c77d1e69e4e5daff8c3e3c8cff2c2e71c0e5de6c
4
+ data.tar.gz: 6877a4665e7894606465fde4277bd8fb5c4e67a1
5
5
  SHA512:
6
- metadata.gz: 4eedc326e2b9d72049582ec9952d81e2a779a4c758d4395c8d7fa42c832980cb346b2eeea7a59029ab9c6b33f261bdc90b7dbb402f6947219170227267e82448
7
- data.tar.gz: 5e510d4fc9eb94465e60d0f22bbc920045a622d0c5c52569f52ecf4a79a3a9a4374d8a799bef3688d439bf5e569afb936516d1360fcebe40489e98aee826897f
6
+ metadata.gz: 344a85a4bd8a8f51da22e64abc918748b1fbef5f50c54be3fd92a3a7b33c2592a4fdb071f6383d0dcdce5c70def1e08a8ab2da2ae61c28571ad07f1b03a53089
7
+ data.tar.gz: 23489e91340310d2e790038e74ef6dbf8f48e21fdcd29e7825f18ebc9c7e14439d24fa20ca59086eca78154d754bc1a346bff40856588af56be917be8b8518ff
data/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # Yify
2
2
 
3
- A Ruby wrapper for the [Yify torrenst API](http://yify-torrents.com/api/)
3
+ [![Gem Version](https://badge.fury.io/rb/yify.svg)](http://badge.fury.io/rb/yify)
4
+
5
+ A Ruby wrapper for the [Yify Torrents API](http://yify-torrents.com/api/)
4
6
 
5
7
  ## Installation
6
8
 
@@ -16,7 +18,7 @@ Or install it yourself as:
16
18
 
17
19
  $ gem install yify
18
20
 
19
- ## Usage;
21
+ ## Usage
20
22
 
21
23
  Require Yify in your project:
22
24
 
@@ -37,7 +39,7 @@ A `Yify::Response` will always return an untouched hash as well, like this:
37
39
 
38
40
  movie = client.movie(353).response
39
41
  => {"MovieID"=>"353",
40
- "MovieUrl"=>"http://yts.re/movie/We_Were_Soldiers_2002",
42
+ "MovieUrl"=>"http://yts.to/movie/We_Were_Soldiers_2002",
41
43
  "DateUploaded"=>"2011-08-31 01:04:02",
42
44
  ... }
43
45
 
@@ -186,7 +188,7 @@ Parameter |required | Description
186
188
  `username`| **yes** |The username of the desired account
187
189
  `password`| **yes** |The username of the desired account
188
190
 
189
- #### Profile, [yify docs](https://yts.re/api#profileDocs)
191
+ #### Profile, [yify docs](https://yts.to/api#profileDocs)
190
192
 
191
193
  Get details about a users' profile.
192
194
 
@@ -199,7 +201,7 @@ Parameter |required | Description
199
201
  ----------|----------|-------------
200
202
  `hash` | **yes** |The unique hash that will be used as a means of authentication
201
203
 
202
- #### Edit Profile, [yify docs](https://yts.re/api#editProfileDocs)
204
+ #### Edit Profile, [yify docs](https://yts.to/api#editProfileDocs)
203
205
 
204
206
  Edit a users' profile.
205
207
 
@@ -218,7 +220,7 @@ Parameter |required | Description
218
220
  `old password` | **no** |The old password as confirmation
219
221
  `avatar` | **no** |This will be the newest avatar image for the user
220
222
 
221
- #### Requests, [yify docs](https://yts.re/api#requestsDocs)
223
+ #### Requests, [yify docs](https://yts.to/api#requestsDocs)
222
224
 
223
225
  Get a list of all currently requested movies.
224
226
 
@@ -237,7 +239,7 @@ Parameter |required | Description
237
239
  `sort` | **no** |Sorts the results by choose method
238
240
  `order` | **no** |Orders the results with either ascending or descending
239
241
 
240
- #### Make Request, [yify docs](https://yts.re/api#makerequestsDocs)
242
+ #### Make Request, [yify docs](https://yts.to/api#makerequestsDocs)
241
243
 
242
244
  Send a movie request to Yify.
243
245
 
@@ -252,7 +254,7 @@ Parameter |required | Description
252
254
  `hash` | **yes** |The unique hash that will be used as a means of authentication
253
255
  `request` | **yes** |Request input can be: Movie name or IMDB Code or IMDB URL
254
256
 
255
- #### Vote, [yify docs](https://yts.re/api#voteDocs)
257
+ #### Vote, [yify docs](https://yts.to/api#voteDocs)
256
258
 
257
259
  Vote for a requested movie.
258
260
 
data/lib/yify/client.rb CHANGED
@@ -1,13 +1,13 @@
1
- # A ruby wrapper for the YIFY Torrents API (https://yts.re/api)
1
+ # A ruby wrapper for the YIFY Torrents API (https://yts.to/api)
2
2
 
3
3
  module Yify
4
4
  class Client
5
5
  include HTTParty
6
- base_uri 'http://yts.re/api'
6
+ base_uri 'http://yts.to/api'
7
7
  format :json
8
8
 
9
9
  # [GET] upcoming
10
- # See: https://yts.re/api#upcomingDocs
10
+ # See: https://yts.to/api#upcomingDocs
11
11
  #
12
12
  # A list of all upcoming movies.
13
13
  #
@@ -18,7 +18,7 @@ module Yify
18
18
  end
19
19
 
20
20
  # [GET] list
21
- # See: https://yts.re/api#listDocs
21
+ # See: https://yts.to/api#listDocs
22
22
  #
23
23
  # Get a list of movies, this method can be used to search
24
24
  # or filter.
@@ -30,7 +30,7 @@ module Yify
30
30
  end
31
31
 
32
32
  # [GET] list_imbd
33
- # See: https://yts.re/api#listimdbDocs
33
+ # See: https://yts.to/api#listimdbDocs
34
34
  #
35
35
  # Get a list of movies using a desired list of IMDB IDs.
36
36
  #
@@ -41,7 +41,7 @@ module Yify
41
41
  end
42
42
 
43
43
  # [GET] movie
44
- # See: https://yts.re/api#movieDocs
44
+ # See: https://yts.to/api#movieDocs
45
45
  #
46
46
  # Get movie details.
47
47
  #
@@ -52,7 +52,7 @@ module Yify
52
52
  end
53
53
 
54
54
  # [GET] comments
55
- # See: https://yts.re/api#commentDocs
55
+ # See: https://yts.to/api#commentDocs
56
56
  #
57
57
  # Get comments for the desired movie
58
58
  #
@@ -63,7 +63,7 @@ module Yify
63
63
  end
64
64
 
65
65
  # [POST] post_comment
66
- # See: https://yts.re/api#commentpostDocs
66
+ # See: https://yts.to/api#commentpostDocs
67
67
  #
68
68
  # Add comment to a movie.
69
69
  #
@@ -74,7 +74,7 @@ module Yify
74
74
  end
75
75
 
76
76
  # [GET] user
77
- # See: https://yts.re/api#userDocs
77
+ # See: https://yts.to/api#userDocs
78
78
  #
79
79
  # Get desired users' details.
80
80
  #
@@ -85,7 +85,7 @@ module Yify
85
85
  end
86
86
 
87
87
  # [POST] register
88
- # See: https://yts.re/api#registerDocs
88
+ # See: https://yts.to/api#registerDocs
89
89
  #
90
90
  # Register a new user with Yify.
91
91
  #
@@ -96,7 +96,7 @@ module Yify
96
96
  end
97
97
 
98
98
  # [POST] login
99
- # See: https://yts.re/api#loginDocs
99
+ # See: https://yts.to/api#loginDocs
100
100
  #
101
101
  # Login a Yify user.
102
102
  #
@@ -107,7 +107,7 @@ module Yify
107
107
  end
108
108
 
109
109
  # [POST] send_password_reset
110
- # https://yts.re/api#passRecoveryDoc
110
+ # https://yts.to/api#passRecoveryDoc
111
111
  #
112
112
  # Send a password reset email to the specified email address.
113
113
  #
@@ -118,7 +118,7 @@ module Yify
118
118
  end
119
119
 
120
120
  # [POST] reset_password
121
- # See: https://yts.re/api#resetPasswordDocs
121
+ # See: https://yts.to/api#resetPasswordDocs
122
122
  #
123
123
  # Reset the users' password.
124
124
  def reset_password(options)
@@ -127,7 +127,7 @@ module Yify
127
127
  end
128
128
 
129
129
  # [GET] profile
130
- # See: https://yts.re/api#profileDocs
130
+ # See: https://yts.to/api#profileDocs
131
131
  #
132
132
  # Get a logged in users' profile.
133
133
  #
@@ -138,7 +138,7 @@ module Yify
138
138
  end
139
139
 
140
140
  # [POST] update_profile
141
- # See: https://yts.re/api#editProfileDocs
141
+ # See: https://yts.to/api#editProfileDocs
142
142
  #
143
143
  # update a logged in users' profile.
144
144
  #
@@ -149,7 +149,7 @@ module Yify
149
149
  end
150
150
 
151
151
  # [GET] requests
152
- # See: https://yts.re/api#requestsDocs
152
+ # See: https://yts.to/api#requestsDocs
153
153
  #
154
154
  # Get a list of all requested movies.
155
155
  #
@@ -160,7 +160,7 @@ module Yify
160
160
  end
161
161
 
162
162
  # [POST] make_request
163
- # See: https://yts.re/api#makerequestsDocs
163
+ # See: https://yts.to/api#makerequestsDocs
164
164
  #
165
165
  # Request a movie to be added to Yify.
166
166
  #
@@ -171,7 +171,7 @@ module Yify
171
171
  end
172
172
 
173
173
  # [POST] vote
174
- # See: https://yts.re/api#voteDocs
174
+ # See: https://yts.to/api#voteDocs
175
175
  #
176
176
  # Vote for a requested movie.
177
177
  #
data/lib/yify/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Yify
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://yts.re/api/makerequest
5
+ uri: http://yts.to/api/makerequest
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: hash=<HASH>&request=tt0111161
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://yts.re/api/editprofile
5
+ uri: http://yts.to/api/editprofile
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: hash=<HASH>&about=RUBY%20FTW!
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://yts.re/api/profile?hash=<HASH>
5
+ uri: http://yts.to/api/profile?hash=<HASH>
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -37,7 +37,7 @@ http_interactions:
37
37
  body:
38
38
  encoding: UTF-8
39
39
  string: '{"UserID":"<USERID>","UserName":"<USERNAME>","JoinDated":"2014-10-20
40
- 11:41:55","JoinDatedEpoch":1413758515,"LastSeenDate":"2014-10-20 11:57:38","LastSeenDateEpoch":1413759458,"IpAddress":"<IPADDRESS>","NumOfVotesLeft":"1","NumOfRequestsLeft":"1","ProfileActive":1,"TorrentsDownloadedCount":0,"MoviesRequestedCount":0,"CommentCount":0,"ChatTimeSeconds":0,"Avatar":"http:\/\/static.yts.re\/avatar\/default_avatar.jpg","About":null,"UserRole":"Regular
40
+ 11:41:55","JoinDatedEpoch":1413758515,"LastSeenDate":"2014-10-20 11:57:38","LastSeenDateEpoch":1413759458,"IpAddress":"<IPADDRESS>","NumOfVotesLeft":"1","NumOfRequestsLeft":"1","ProfileActive":1,"TorrentsDownloadedCount":0,"MoviesRequestedCount":0,"CommentCount":0,"ChatTimeSeconds":0,"Avatar":"http:\/\/static.yts.to\/avatar\/default_avatar.jpg","About":null,"UserRole":"Regular
41
41
  User"}'
42
42
  http_version:
43
43
  recorded_at: Sun, 19 Oct 2014 23:13:02 GMT
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://yts.re/api/comments?movieid=353
5
+ uri: http://yts.to/api/comments?movieid=353
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -38,52 +38,52 @@ http_interactions:
38
38
  encoding: UTF-8
39
39
  string: '[{"CommentID":"399","CommentText":"thanxxxxxxx","DateAdded":"2011-08-31
40
40
  03:02:46","DateAddedEpoch":1314716566,"UserID":"223","ParentCommentID":null,"UserName":"2
41
- hot 4 u","UserAvatar":"http:\/\/static.yts.re\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"841","CommentText":"tnx
42
- a lot classic...","DateAdded":"2011-09-16 18:25:18","DateAddedEpoch":1316154318,"UserID":"1339","ParentCommentID":null,"UserName":"bokbak","UserAvatar":"http:\/\/static.yts.re\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"1584","CommentText":"Thank
43
- you very much","DateAdded":"2011-10-07 03:10:40","DateAddedEpoch":1317910240,"UserID":"2893","ParentCommentID":null,"UserName":"bogartrules","UserAvatar":"http:\/\/static.yts.re\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"14784","CommentText":"another
41
+ hot 4 u","UserAvatar":"http:\/\/static.yts.to\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"841","CommentText":"tnx
42
+ a lot classic...","DateAdded":"2011-09-16 18:25:18","DateAddedEpoch":1316154318,"UserID":"1339","ParentCommentID":null,"UserName":"bokbak","UserAvatar":"http:\/\/static.yts.to\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"1584","CommentText":"Thank
43
+ you very much","DateAdded":"2011-10-07 03:10:40","DateAddedEpoch":1317910240,"UserID":"2893","ParentCommentID":null,"UserName":"bogartrules","UserAvatar":"http:\/\/static.yts.to\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"14784","CommentText":"another
44
44
  great movie, thanks yify , this site is the best","DateAdded":"2012-03-18
45
- 06:34:28","DateAddedEpoch":1332005668,"UserID":"22841","ParentCommentID":null,"UserName":"IRISH-SPARTAN-","UserAvatar":"http:\/\/static.yts.re\/avatar\/228411379764020.jpg","UserGroup":"Users"},{"CommentID":"15216","CommentText":"Made
45
+ 06:34:28","DateAddedEpoch":1332005668,"UserID":"22841","ParentCommentID":null,"UserName":"IRISH-SPARTAN-","UserAvatar":"http:\/\/static.yts.to\/avatar\/228411379764020.jpg","UserGroup":"Users"},{"CommentID":"15216","CommentText":"Made
46
46
  for the 50&#39;s generation of bravado and courageous, seems to worship mel
47
47
  gibson as most of these films, worse, they played music during the battle
48
- scene&#39;s","DateAdded":"2012-03-21 08:15:32","DateAddedEpoch":1332270932,"UserID":"22350","ParentCommentID":null,"UserName":"suibhnemeister","UserAvatar":"http:\/\/static.yts.re\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"16820","CommentText":"great
49
- movie yify!!! yuh should get act of valor=D","DateAdded":"2012-04-01 17:48:16","DateAddedEpoch":1333259296,"UserID":"25817","ParentCommentID":null,"UserName":"djleo50","UserAvatar":"http:\/\/static.yts.re\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"53456","CommentText":"1080p
50
- version please ?","DateAdded":"2012-08-26 23:16:06","DateAddedEpoch":1345979766,"UserID":"67058","ParentCommentID":null,"UserName":"incubus72","UserAvatar":"http:\/\/static.yts.re\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"55229","CommentText":"great
51
- movie ..... viva mill gepson","DateAdded":"2012-09-01 12:00:11","DateAddedEpoch":1346457611,"UserID":"82481","ParentCommentID":null,"UserName":"zoreel","UserAvatar":"http:\/\/static.yts.re\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"60880","CommentText":"thanks..
48
+ scene&#39;s","DateAdded":"2012-03-21 08:15:32","DateAddedEpoch":1332270932,"UserID":"22350","ParentCommentID":null,"UserName":"suibhnemeister","UserAvatar":"http:\/\/static.yts.to\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"16820","CommentText":"great
49
+ movie yify!!! yuh should get act of valor=D","DateAdded":"2012-04-01 17:48:16","DateAddedEpoch":1333259296,"UserID":"25817","ParentCommentID":null,"UserName":"djleo50","UserAvatar":"http:\/\/static.yts.to\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"53456","CommentText":"1080p
50
+ version please ?","DateAdded":"2012-08-26 23:16:06","DateAddedEpoch":1345979766,"UserID":"67058","ParentCommentID":null,"UserName":"incubus72","UserAvatar":"http:\/\/static.yts.to\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"55229","CommentText":"great
51
+ movie ..... viva mill gepson","DateAdded":"2012-09-01 12:00:11","DateAddedEpoch":1346457611,"UserID":"82481","ParentCommentID":null,"UserName":"zoreel","UserAvatar":"http:\/\/static.yts.to\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"60880","CommentText":"thanks..
52
52
  my all time favourite war movie!!! great quality too.. thnx YIFY","DateAdded":"2012-09-14
53
- 08:12:12","DateAddedEpoch":1347567132,"UserID":"89903","ParentCommentID":null,"UserName":"mrkevslayer","UserAvatar":"http:\/\/static.yts.re\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"68783","CommentText":"please
54
- upload 1080p........please","DateAdded":"2012-10-01 04:57:23","DateAddedEpoch":1349020643,"UserID":"85774","ParentCommentID":null,"UserName":"shirtkapanis","UserAvatar":"http:\/\/static.yts.re\/avatar\/857741349712061.jpg","UserGroup":"Users"},{"CommentID":"96642","CommentText":"great
55
- movie!!! thanks a million!!!","DateAdded":"2012-11-17 01:12:57","DateAddedEpoch":1353067977,"UserID":"97559","ParentCommentID":null,"UserName":"bigguy","UserAvatar":"http:\/\/static.yts.re\/avatar\/975591351116485.jpg","UserGroup":"Users"},{"CommentID":"122924","CommentText":"Thanks","DateAdded":"2013-01-06
56
- 04:36:55","DateAddedEpoch":1357400215,"UserID":"123846","ParentCommentID":null,"UserName":"makakosi","UserAvatar":"http:\/\/static.yts.re\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"128209","CommentText":"thank
57
- you!!","DateAdded":"2013-01-14 09:24:04","DateAddedEpoch":1358108644,"UserID":"158194","ParentCommentID":null,"UserName":"mahsaton","UserAvatar":"http:\/\/static.yts.re\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"132332","CommentText":"Thanks
58
- a lot","DateAdded":"2013-01-22 22:18:57","DateAddedEpoch":1358846337,"UserID":"131892","ParentCommentID":null,"UserName":"kekosbilkos","UserAvatar":"http:\/\/static.yts.re\/avatar\/1318921352926164.jpg","UserGroup":"Users"},{"CommentID":"147701","CommentText":"1080p,
53
+ 08:12:12","DateAddedEpoch":1347567132,"UserID":"89903","ParentCommentID":null,"UserName":"mrkevslayer","UserAvatar":"http:\/\/static.yts.to\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"68783","CommentText":"please
54
+ upload 1080p........please","DateAdded":"2012-10-01 04:57:23","DateAddedEpoch":1349020643,"UserID":"85774","ParentCommentID":null,"UserName":"shirtkapanis","UserAvatar":"http:\/\/static.yts.to\/avatar\/857741349712061.jpg","UserGroup":"Users"},{"CommentID":"96642","CommentText":"great
55
+ movie!!! thanks a million!!!","DateAdded":"2012-11-17 01:12:57","DateAddedEpoch":1353067977,"UserID":"97559","ParentCommentID":null,"UserName":"bigguy","UserAvatar":"http:\/\/static.yts.to\/avatar\/975591351116485.jpg","UserGroup":"Users"},{"CommentID":"122924","CommentText":"Thanks","DateAdded":"2013-01-06
56
+ 04:36:55","DateAddedEpoch":1357400215,"UserID":"123846","ParentCommentID":null,"UserName":"makakosi","UserAvatar":"http:\/\/static.yts.to\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"128209","CommentText":"thank
57
+ you!!","DateAdded":"2013-01-14 09:24:04","DateAddedEpoch":1358108644,"UserID":"158194","ParentCommentID":null,"UserName":"mahsaton","UserAvatar":"http:\/\/static.yts.to\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"132332","CommentText":"Thanks
58
+ a lot","DateAdded":"2013-01-22 22:18:57","DateAddedEpoch":1358846337,"UserID":"131892","ParentCommentID":null,"UserName":"kekosbilkos","UserAvatar":"http:\/\/static.yts.to\/avatar\/1318921352926164.jpg","UserGroup":"Users"},{"CommentID":"147701","CommentText":"1080p,
59
59
  pls, pls, pls, pls","DateAdded":"2013-02-27 07:44:19","DateAddedEpoch":1361904259,"UserID":"60596","ParentCommentID":null,"UserName":"Filip
60
- Eskic","UserAvatar":"http:\/\/static.yts.re\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"164868","CommentText":"Thanx
60
+ Eskic","UserAvatar":"http:\/\/static.yts.to\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"164868","CommentText":"Thanx
61
61
  Yify, but if you don&#39;t mind please upload 1080p :)","DateAdded":"2013-03-21
62
- 04:30:15","DateAddedEpoch":1363793415,"UserID":"196357","ParentCommentID":null,"UserName":"riocavallera","UserAvatar":"http:\/\/static.yts.re\/avatar\/1963571366255177.JPG","UserGroup":"Users"},{"CommentID":"168540","CommentText":"I
62
+ 04:30:15","DateAddedEpoch":1363793415,"UserID":"196357","ParentCommentID":null,"UserName":"riocavallera","UserAvatar":"http:\/\/static.yts.to\/avatar\/1963571366255177.JPG","UserGroup":"Users"},{"CommentID":"168540","CommentText":"I
63
63
  agree with riocavallera. Movies like this one are deserving of 1080p and not
64
64
  just because of its 2hr+ duration. Thanks for this 720p version though (which
65
- is still awesome by the way).","DateAdded":"2013-03-26 07:13:04","DateAddedEpoch":1364235184,"UserID":"178237","ParentCommentID":null,"UserName":"TheFuriousFuryan","UserAvatar":"http:\/\/static.yts.re\/avatar\/1782371364503091.jpg","UserGroup":"Users"},{"CommentID":"175506","CommentText":"Thanks
66
- YIFY :)","DateAdded":"2013-04-08 07:08:54","DateAddedEpoch":1365361734,"UserID":"4945","ParentCommentID":null,"UserName":"jbryan391","UserAvatar":"http:\/\/static.yts.re\/avatar\/49451362409308.jpg","UserGroup":"VIP"},{"CommentID":"176242","CommentText":"thank
67
- you","DateAdded":"2013-04-09 10:35:01","DateAddedEpoch":1365460501,"UserID":"226138","ParentCommentID":null,"UserName":"brutus26000","UserAvatar":"http:\/\/static.yts.re\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"204356","CommentText":"Thank
68
- You!! ","DateAdded":"2013-05-26 10:26:20","DateAddedEpoch":1369520780,"UserID":"60681","ParentCommentID":null,"UserName":"dd53787","UserAvatar":"http:\/\/static.yts.re\/avatar\/606811349914681.jpg","UserGroup":"Users"},{"CommentID":"206039","CommentText":"ty","DateAdded":"2013-05-28
65
+ is still awesome by the way).","DateAdded":"2013-03-26 07:13:04","DateAddedEpoch":1364235184,"UserID":"178237","ParentCommentID":null,"UserName":"TheFuriousFuryan","UserAvatar":"http:\/\/static.yts.to\/avatar\/1782371364503091.jpg","UserGroup":"Users"},{"CommentID":"175506","CommentText":"Thanks
66
+ YIFY :)","DateAdded":"2013-04-08 07:08:54","DateAddedEpoch":1365361734,"UserID":"4945","ParentCommentID":null,"UserName":"jbryan391","UserAvatar":"http:\/\/static.yts.to\/avatar\/49451362409308.jpg","UserGroup":"VIP"},{"CommentID":"176242","CommentText":"thank
67
+ you","DateAdded":"2013-04-09 10:35:01","DateAddedEpoch":1365460501,"UserID":"226138","ParentCommentID":null,"UserName":"brutus26000","UserAvatar":"http:\/\/static.yts.to\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"204356","CommentText":"Thank
68
+ You!! ","DateAdded":"2013-05-26 10:26:20","DateAddedEpoch":1369520780,"UserID":"60681","ParentCommentID":null,"UserName":"dd53787","UserAvatar":"http:\/\/static.yts.to\/avatar\/606811349914681.jpg","UserGroup":"Users"},{"CommentID":"206039","CommentText":"ty","DateAdded":"2013-05-28
69
69
  21:50:31","DateAddedEpoch":1369734631,"UserID":"102011","ParentCommentID":null,"UserName":"FIFA
70
- Freak","UserAvatar":"http:\/\/static.yts.re\/avatar\/1020111358284473.JPG","UserGroup":"Users"},{"CommentID":"263764","CommentText":"thanks\r<br
71
- \/>","DateAdded":"2013-09-10 18:20:56","DateAddedEpoch":1378794056,"UserID":"160026","ParentCommentID":null,"UserName":"Weezy","UserAvatar":"http:\/\/static.yts.re\/avatar\/1600261355761900.jpg","UserGroup":"Users"},{"CommentID":"265403","CommentText":"Thanks.
72
- 1080p please","DateAdded":"2013-09-13 18:16:03","DateAddedEpoch":1379052963,"UserID":"404734","ParentCommentID":null,"UserName":"marawatto","UserAvatar":"http:\/\/static.yts.re\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"312572","CommentText":"Great
73
- thanks!!!!","DateAdded":"2013-10-09 16:09:20","DateAddedEpoch":1381288160,"UserID":"434025","ParentCommentID":null,"UserName":"miel027","UserAvatar":"http:\/\/static.yts.re\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"317458","CommentText":"can
74
- you upload 1080p of this... Thanks","DateAdded":"2013-10-13 01:09:18","DateAddedEpoch":1381579758,"UserID":"443869","ParentCommentID":null,"UserName":"Jhay08","UserAvatar":"http:\/\/static.yts.re\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"336476","CommentText":"\r<br
75
- \/>\r<br \/>Great thanks!!!!\r<br \/>","DateAdded":"2013-11-16 12:46:25","DateAddedEpoch":1384559185,"UserID":"458962","ParentCommentID":null,"UserName":"basempop","UserAvatar":"http:\/\/static.yts.re\/avatar\/4589621383590332.jpg","UserGroup":"Users"},{"CommentID":"361412","CommentText":"1080p
76
- .... pleaseee .... thanks a lot","DateAdded":"2014-01-30 17:10:34","DateAddedEpoch":1391055034,"UserID":"582185","ParentCommentID":null,"UserName":"xxArchangelxx","UserAvatar":"http:\/\/static.yts.re\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"363534","CommentText":"Thank-you","DateAdded":"2014-02-04
77
- 12:56:32","DateAddedEpoch":1391471792,"UserID":"601710","ParentCommentID":null,"UserName":"leopoe","UserAvatar":"http:\/\/static.yts.re\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"374399","CommentText":"Thank
78
- you","DateAdded":"2014-03-06 02:46:15","DateAddedEpoch":1394027175,"UserID":"75856","ParentCommentID":null,"UserName":"patnaude1","UserAvatar":"http:\/\/static.yts.re\/avatar\/758561380160617.jpg","UserGroup":"Users"},{"CommentID":"377766","CommentText":"Thank
79
- you YIFY.","DateAdded":"2014-03-17 10:13:49","DateAddedEpoch":1395004429,"UserID":"208003","ParentCommentID":null,"UserName":"cktorr@gr","UserAvatar":"http:\/\/static.yts.re\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"387024","CommentText":"Many
80
- Thankssssss","DateAdded":"2014-04-18 14:19:03","DateAddedEpoch":1397787543,"UserID":"97088","ParentCommentID":null,"UserName":"oufa12","UserAvatar":"http:\/\/static.yts.re\/avatar\/970881355965579.jpg","UserGroup":"Users"},{"CommentID":"415995","CommentText":"Thank
70
+ Freak","UserAvatar":"http:\/\/static.yts.to\/avatar\/1020111358284473.JPG","UserGroup":"Users"},{"CommentID":"263764","CommentText":"thanks\r<br
71
+ \/>","DateAdded":"2013-09-10 18:20:56","DateAddedEpoch":1378794056,"UserID":"160026","ParentCommentID":null,"UserName":"Weezy","UserAvatar":"http:\/\/static.yts.to\/avatar\/1600261355761900.jpg","UserGroup":"Users"},{"CommentID":"265403","CommentText":"Thanks.
72
+ 1080p please","DateAdded":"2013-09-13 18:16:03","DateAddedEpoch":1379052963,"UserID":"404734","ParentCommentID":null,"UserName":"marawatto","UserAvatar":"http:\/\/static.yts.to\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"312572","CommentText":"Great
73
+ thanks!!!!","DateAdded":"2013-10-09 16:09:20","DateAddedEpoch":1381288160,"UserID":"434025","ParentCommentID":null,"UserName":"miel027","UserAvatar":"http:\/\/static.yts.to\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"317458","CommentText":"can
74
+ you upload 1080p of this... Thanks","DateAdded":"2013-10-13 01:09:18","DateAddedEpoch":1381579758,"UserID":"443869","ParentCommentID":null,"UserName":"Jhay08","UserAvatar":"http:\/\/static.yts.to\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"336476","CommentText":"\r<br
75
+ \/>\r<br \/>Great thanks!!!!\r<br \/>","DateAdded":"2013-11-16 12:46:25","DateAddedEpoch":1384559185,"UserID":"458962","ParentCommentID":null,"UserName":"basempop","UserAvatar":"http:\/\/static.yts.to\/avatar\/4589621383590332.jpg","UserGroup":"Users"},{"CommentID":"361412","CommentText":"1080p
76
+ .... pleaseee .... thanks a lot","DateAdded":"2014-01-30 17:10:34","DateAddedEpoch":1391055034,"UserID":"582185","ParentCommentID":null,"UserName":"xxArchangelxx","UserAvatar":"http:\/\/static.yts.to\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"363534","CommentText":"Thank-you","DateAdded":"2014-02-04
77
+ 12:56:32","DateAddedEpoch":1391471792,"UserID":"601710","ParentCommentID":null,"UserName":"leopoe","UserAvatar":"http:\/\/static.yts.to\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"374399","CommentText":"Thank
78
+ you","DateAdded":"2014-03-06 02:46:15","DateAddedEpoch":1394027175,"UserID":"75856","ParentCommentID":null,"UserName":"patnaude1","UserAvatar":"http:\/\/static.yts.to\/avatar\/758561380160617.jpg","UserGroup":"Users"},{"CommentID":"377766","CommentText":"Thank
79
+ you YIFY.","DateAdded":"2014-03-17 10:13:49","DateAddedEpoch":1395004429,"UserID":"208003","ParentCommentID":null,"UserName":"cktorr@gr","UserAvatar":"http:\/\/static.yts.to\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"387024","CommentText":"Many
80
+ Thankssssss","DateAdded":"2014-04-18 14:19:03","DateAddedEpoch":1397787543,"UserID":"97088","ParentCommentID":null,"UserName":"oufa12","UserAvatar":"http:\/\/static.yts.to\/avatar\/970881355965579.jpg","UserGroup":"Users"},{"CommentID":"415995","CommentText":"Thank
81
81
  you BOKUTOX!!!\r<br \/>\r<br \/>WILL SEED LIKE A CLOCKWORK!","DateAdded":"2014-07-27
82
82
  12:00:42","DateAddedEpoch":1406419242,"UserID":"391836","ParentCommentID":null,"UserName":"SyncMaster
83
- EX1920","UserAvatar":"http:\/\/static.yts.re\/avatar\/3918361406347568.png","UserGroup":"Users"},{"CommentID":"422434","CommentText":"Thanks!!!","DateAdded":"2014-08-14
84
- 00:24:22","DateAddedEpoch":1407932662,"UserID":"518572","ParentCommentID":null,"UserName":"nosbor","UserAvatar":"http:\/\/static.yts.re\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"423082","CommentText":"thanks","DateAdded":"2014-08-16
85
- 03:35:20","DateAddedEpoch":1408116920,"UserID":"396342","ParentCommentID":null,"UserName":"Scarhead1986","UserAvatar":"http:\/\/static.yts.re\/avatar\/3963421394917749.jpg","UserGroup":"Users"},{"CommentID":"439939","CommentText":"thanks
86
- yify","DateAdded":"2014-10-08 07:21:13","DateAddedEpoch":1412706073,"UserID":"605669","ParentCommentID":null,"UserName":"CuftaGunner","UserAvatar":"http:\/\/static.yts.re\/avatar\/6056691391469425.jpg","UserGroup":"Users"}]'
83
+ EX1920","UserAvatar":"http:\/\/static.yts.to\/avatar\/3918361406347568.png","UserGroup":"Users"},{"CommentID":"422434","CommentText":"Thanks!!!","DateAdded":"2014-08-14
84
+ 00:24:22","DateAddedEpoch":1407932662,"UserID":"518572","ParentCommentID":null,"UserName":"nosbor","UserAvatar":"http:\/\/static.yts.to\/avatar\/default_avatar.jpg","UserGroup":"Users"},{"CommentID":"423082","CommentText":"thanks","DateAdded":"2014-08-16
85
+ 03:35:20","DateAddedEpoch":1408116920,"UserID":"396342","ParentCommentID":null,"UserName":"Scarhead1986","UserAvatar":"http:\/\/static.yts.to\/avatar\/3963421394917749.jpg","UserGroup":"Users"},{"CommentID":"439939","CommentText":"thanks
86
+ yify","DateAdded":"2014-10-08 07:21:13","DateAddedEpoch":1412706073,"UserID":"605669","ParentCommentID":null,"UserName":"CuftaGunner","UserAvatar":"http:\/\/static.yts.to\/avatar\/6056691391469425.jpg","UserGroup":"Users"}]'
87
87
  http_version:
88
88
  recorded_at: Thu, 16 Oct 2014 05:57:26 GMT
89
89
  recorded_with: VCR 2.9.3
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://yts.re/api/movie?id=353
5
+ uri: http://yts.to/api/movie?id=353
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -36,8 +36,8 @@ http_interactions:
36
36
  - nosniff
37
37
  body:
38
38
  encoding: UTF-8
39
- string: '{"MovieID":"353","MovieUrl":"http:\/\/yts.re\/movie\/We_Were_Soldiers_2002","DateUploaded":"2011-08-31
40
- 01:04:02","DateUploadedEpoch":1314709442,"Uploader":"YIFY","UploaderUID":"16","UploaderNotes":null,"Quality":"720p","Resolution":"1280*544","FrameRate":"23.976","Language":"English","Subtitles":"English","LargeCover":"http:\/\/static.yts.re\/attachments\/we_were_soldiers_(2002)\/wearesoldiers_large.jpg","MediumCover":"http:\/\/static.yts.re\/attachments\/we_were_soldiers_(2002)\/wearesoldiers_med.jpg","LargeScreenshot1":"http:\/\/static.yts.re\/attachments\/we_were_soldiers_(2002)\/lajbaaadn_large.jpg","LargeScreenshot2":"http:\/\/static.yts.re\/attachments\/we_were_soldiers_(2002)\/lajbcaadn_large.jpg","LargeScreenshot3":"http:\/\/static.yts.re\/attachments\/we_were_soldiers_(2002)\/lajbdaadn_large.jpg","MediumScreenshot1":"http:\/\/static.yts.re\/attachments\/we_were_soldiers_(2002)\/lajbaaadn_med.jpg","MediumScreenshot2":"http:\/\/static.yts.re\/attachments\/we_were_soldiers_(2002)\/lajbcaadn_med.jpg","MediumScreenshot3":"http:\/\/static.yts.re\/attachments\/we_were_soldiers_(2002)\/lajbdaadn_med.jpg","ImdbCode":"tt0277434","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0277434\/","MovieTitle":"We
39
+ string: '{"MovieID":"353","MovieUrl":"http:\/\/yts.to\/movie\/We_Were_Soldiers_2002","DateUploaded":"2011-08-31
40
+ 01:04:02","DateUploadedEpoch":1314709442,"Uploader":"YIFY","UploaderUID":"16","UploaderNotes":null,"Quality":"720p","Resolution":"1280*544","FrameRate":"23.976","Language":"English","Subtitles":"English","LargeCover":"http:\/\/static.yts.to\/attachments\/we_were_soldiers_(2002)\/wearesoldiers_large.jpg","MediumCover":"http:\/\/static.yts.to\/attachments\/we_were_soldiers_(2002)\/wearesoldiers_med.jpg","LargeScreenshot1":"http:\/\/static.yts.to\/attachments\/we_were_soldiers_(2002)\/lajbaaadn_large.jpg","LargeScreenshot2":"http:\/\/static.yts.to\/attachments\/we_were_soldiers_(2002)\/lajbcaadn_large.jpg","LargeScreenshot3":"http:\/\/static.yts.to\/attachments\/we_were_soldiers_(2002)\/lajbdaadn_large.jpg","MediumScreenshot1":"http:\/\/static.yts.to\/attachments\/we_were_soldiers_(2002)\/lajbaaadn_med.jpg","MediumScreenshot2":"http:\/\/static.yts.to\/attachments\/we_were_soldiers_(2002)\/lajbcaadn_med.jpg","MediumScreenshot3":"http:\/\/static.yts.to\/attachments\/we_were_soldiers_(2002)\/lajbdaadn_med.jpg","ImdbCode":"tt0277434","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0277434\/","MovieTitle":"We
41
41
  Were Soldiers (2002)","MovieTitleClean":"We Were Soldiers","MovieYear":"2002","MovieRating":"7.0","MovieRuntime":"138","YoutubeTrailerID":"h0yUlbAt8Kk","YoutubeTrailerUrl":"http:\/\/www.youtube.com\/watch?v=h0yUlbAt8Kk","AgeRating":"R","Genre1":"Action","Genre2":"Drama","ShortDescription":"
42
42
  The story of the first major battle of the American phase of the Vietnam War
43
43
  and the soldiers on both sides that fought it.","LongDescription":"In a place
@@ -53,7 +53,7 @@ http_interactions:
53
53
  Col. Hal Moore","ActorImdbCode":"nm0000154","ActorImdbLink":"http:\/\/www.imdb.com\/name\/nm0000154\/"},{"ActorName":"Madeleine
54
54
  Stowe","CharacterName":"Julie Moore","ActorImdbCode":"nm0000656","ActorImdbLink":"http:\/\/www.imdb.com\/name\/nm0000656\/"},{"ActorName":"Sam
55
55
  Elliott","CharacterName":"Sgt. Maj. Basil Plumley","ActorImdbCode":"nm0000385","ActorImdbLink":"http:\/\/www.imdb.com\/name\/nm0000385\/"}],"DirectorList":[{"DirectorName":"Randall
56
- Wallace","DirectorImdbCode":"nm0908824","DirectorImdbLink":"http:\/\/www.imdb.com\/name\/nm0908824\/"}],"Downloaded":"65293","TorrentUrl":"http:\/\/yts.re\/download\/start\/95DCB8759C3FF0234A81E595EB4E5347062C4961.torrent","TorrentHash":"95dcb8759c3ff0234a81e595eb4e5347062c4961","TorrentMagnetUrl":"magnet:?xt=urn:btih:95dcb8759c3ff0234a81e595eb4e5347062c4961&dn=We+Were+Soldiers&tr=http:\/\/exodus.desync.com:6969\/announce&tr=udp:\/\/tracker.openbittorrent.com:80\/announce&tr=udp:\/\/open.demonii.com:1337\/announce&tr=udp:\/\/exodus.desync.com:6969\/announce&tr=udp:\/\/tracker.yify-torrents.com\/announce","TorrentSeeds":"135","TorrentPeers":"13","Size":"750.12
56
+ Wallace","DirectorImdbCode":"nm0908824","DirectorImdbLink":"http:\/\/www.imdb.com\/name\/nm0908824\/"}],"Downloaded":"65293","TorrentUrl":"http:\/\/yts.to\/download\/start\/95DCB8759C3FF0234A81E595EB4E5347062C4961.torrent","TorrentHash":"95dcb8759c3ff0234a81e595eb4e5347062c4961","TorrentMagnetUrl":"magnet:?xt=urn:btih:95dcb8759c3ff0234a81e595eb4e5347062c4961&dn=We+Were+Soldiers&tr=http:\/\/exodus.desync.com:6969\/announce&tr=udp:\/\/tracker.openbittorrent.com:80\/announce&tr=udp:\/\/open.demonii.com:1337\/announce&tr=udp:\/\/exodus.desync.com:6969\/announce&tr=udp:\/\/tracker.yify-torrents.com\/announce","TorrentSeeds":"135","TorrentPeers":"13","Size":"750.12
57
57
  MB","SizeByte":"786557829"}'
58
58
  http_version:
59
59
  recorded_at: Thu, 16 Oct 2014 05:52:16 GMT
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://yts.re/api/requests?limit=2&page=confirmed
5
+ uri: http://yts.to/api/requests?limit=2&page=confirmed
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -37,11 +37,11 @@ http_interactions:
37
37
  body:
38
38
  encoding: UTF-8
39
39
  string: '{"MovieCount":"143","RequestList":[{"RequestID":"1258","MovieTitle":"American
40
- Wedding (2003)","MovieTitleClean":"American Wedding","MovieYear":"2003","ImdbCode":"tt0328828","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0328828\/","CoverImage":"http:\/\/static.yts.re\/attachments\/_posters\/0328828.jpg","ShortDescription":"It&#x27;s
40
+ Wedding (2003)","MovieTitleClean":"American Wedding","MovieYear":"2003","ImdbCode":"tt0328828","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0328828\/","CoverImage":"http:\/\/static.yts.to\/attachments\/_posters\/0328828.jpg","ShortDescription":"It&#x27;s
41
41
  the wedding of Jim and Michelle and the gathering of their families and friends,
42
42
  including Jim&#x27;s old friends from high school and Michelle&#x27;s little
43
43
  sister.","Genre":"Comedy","MovieRating":"6.1","DateAdded":"2012-06-25 03:42:28","DateAddedEpoch":1340552548,"Votes":13801,"UserID":"10117","Username":"shubham.1992"},{"RequestID":"669","MovieTitle":"North
44
- by Northwest (1959)","MovieTitleClean":"North by Northwest","MovieYear":"1959","ImdbCode":"tt0053125","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0053125\/","CoverImage":"http:\/\/static.yts.re\/attachments\/_posters\/0053125.jpg","ShortDescription":"A
44
+ by Northwest (1959)","MovieTitleClean":"North by Northwest","MovieYear":"1959","ImdbCode":"tt0053125","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0053125\/","CoverImage":"http:\/\/static.yts.to\/attachments\/_posters\/0053125.jpg","ShortDescription":"A
45
45
  hapless New York advertising executive is mistaken for a government agent
46
46
  by a group of foreign spies, and is pursued across the country while he looks
47
47
  for a way to survive.","Genre":"Adventure","MovieRating":"8.6","DateAdded":"2012-06-24
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://yts.re/api/upcoming
5
+ uri: http://yts.to/api/upcoming
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -36,152 +36,152 @@ http_interactions:
36
36
  - nosniff
37
37
  body:
38
38
  encoding: UTF-8
39
- string: '[{"MovieTitle":"Persecuted (2014)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Persecuted_2014_720p.png","ImdbCode":"tt1761005","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1761005\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-16
39
+ string: '[{"MovieTitle":"Persecuted (2014)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Persecuted_2014_720p.png","ImdbCode":"tt1761005","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1761005\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-16
40
40
  12:49:20","DateAddedEpoch":1413416960},{"MovieTitle":"Whitey United States
41
- of America v. James J. Bulger (2014)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Whitey_United_States_of_America_v_James_J_Bulger_2014_720p.png","ImdbCode":"tt3326366","ImdbLink":"http:\/\/www.imdb.com\/title\/tt3326366\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-16
42
- 11:19:42","DateAddedEpoch":1413411582},{"MovieTitle":"Beneath (2013)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Beneath_2013_720p.png","ImdbCode":"tt2991296","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2991296\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-16
41
+ of America v. James J. Bulger (2014)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Whitey_United_States_of_America_v_James_J_Bulger_2014_720p.png","ImdbCode":"tt3326366","ImdbLink":"http:\/\/www.imdb.com\/title\/tt3326366\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-16
42
+ 11:19:42","DateAddedEpoch":1413411582},{"MovieTitle":"Beneath (2013)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Beneath_2013_720p.png","ImdbCode":"tt2991296","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2991296\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-16
43
43
  09:20:19","DateAddedEpoch":1413404419},{"MovieTitle":"Sinbad The Fifth Voyage
44
- (2014)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Sinbad_The_Fifth_Voyage_2014_720p.png","ImdbCode":"tt1403862","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1403862\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-16
44
+ (2014)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Sinbad_The_Fifth_Voyage_2014_720p.png","ImdbCode":"tt1403862","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1403862\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-16
45
45
  07:49:52","DateAddedEpoch":1413398992},{"MovieTitle":"America Imagine the
46
- World Without Her (2014)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/America_Imagine_the_World_Without_Her_2014_720p.png","ImdbCode":"tt2785390","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2785390\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-15
47
- 11:50:41","DateAddedEpoch":1413327041},{"MovieTitle":"The Dog (2013)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/The_Dog_2013_720p.png","ImdbCode":"tt3091304","ImdbLink":"http:\/\/www.imdb.com\/title\/tt3091304\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-15
46
+ World Without Her (2014)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/America_Imagine_the_World_Without_Her_2014_720p.png","ImdbCode":"tt2785390","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2785390\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-15
47
+ 11:50:41","DateAddedEpoch":1413327041},{"MovieTitle":"The Dog (2013)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/The_Dog_2013_720p.png","ImdbCode":"tt3091304","ImdbLink":"http:\/\/www.imdb.com\/title\/tt3091304\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-15
48
48
  09:03:42","DateAddedEpoch":1413317022},{"MovieTitle":"The Sugarland Express
49
- (1974)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/The_Sugarland_Express_1974_720p.png","ImdbCode":"tt0072226","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0072226\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-14
50
- 11:37:13","DateAddedEpoch":1413239833},{"MovieTitle":"The Visitor (1979)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/The_Visitor_1979_720p.png","ImdbCode":"tt0080100","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0080100\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-14
51
- 00:50:23","DateAddedEpoch":1413201023},{"MovieTitle":"The Tomb of Ligeia (1964)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/The_Tomb_of_Ligeia_1964_720p.png","ImdbCode":"tt0059821","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0059821\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-13
49
+ (1974)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/The_Sugarland_Express_1974_720p.png","ImdbCode":"tt0072226","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0072226\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-14
50
+ 11:37:13","DateAddedEpoch":1413239833},{"MovieTitle":"The Visitor (1979)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/The_Visitor_1979_720p.png","ImdbCode":"tt0080100","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0080100\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-14
51
+ 00:50:23","DateAddedEpoch":1413201023},{"MovieTitle":"The Tomb of Ligeia (1964)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/The_Tomb_of_Ligeia_1964_720p.png","ImdbCode":"tt0059821","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0059821\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-13
52
52
  13:50:04","DateAddedEpoch":1413161404},{"MovieTitle":"Supermensch The Legend
53
- of Shep Gordon (2013)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Supermensch_The_Legend_of_Shep_Gordon_2013_720p.png","ImdbCode":"tt3074780","ImdbLink":"http:\/\/www.imdb.com\/title\/tt3074780\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-13
54
- 10:50:09","DateAddedEpoch":1413150609},{"MovieTitle":"Bitter Moon (1992)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Bitter_Moon_1992_720p.png","ImdbCode":"tt0104779","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0104779\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-13
53
+ of Shep Gordon (2013)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Supermensch_The_Legend_of_Shep_Gordon_2013_720p.png","ImdbCode":"tt3074780","ImdbLink":"http:\/\/www.imdb.com\/title\/tt3074780\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-13
54
+ 10:50:09","DateAddedEpoch":1413150609},{"MovieTitle":"Bitter Moon (1992)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Bitter_Moon_1992_720p.png","ImdbCode":"tt0104779","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0104779\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-13
55
55
  01:16:16","DateAddedEpoch":1413116176},{"MovieTitle":"The Neverending Story
56
- II The Next Chapter (1990)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/The_Neverending_Story_II_The_Next_Chapter_1990_720p.png","ImdbCode":"tt0100240","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0100240\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-13
57
- 01:00:17","DateAddedEpoch":1413115217},{"MovieTitle":"Married to the Mob (1988)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Married_to_the_Mob_1988_720p_1.png","ImdbCode":"tt0095593","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0095593\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-11
58
- 14:14:10","DateAddedEpoch":1412990050},{"MovieTitle":"Nurse 3D (2013)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Nurse_3D_2013_720p.png","ImdbCode":"tt1913166","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1913166\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-11
59
- 08:50:17","DateAddedEpoch":1412970617},{"MovieTitle":"Sordid Lives (2000)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Sordid_Lives_2000_720p.png","ImdbCode":"tt0204640","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0204640\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-11
60
- 07:49:58","DateAddedEpoch":1412966998},{"MovieTitle":"Victim (1961)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Victim_1961_720p.png","ImdbCode":"tt0055597","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0055597\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-11
61
- 02:19:45","DateAddedEpoch":1412947185},{"MovieTitle":"Kingpin (1996)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Kingpin_1996_720p.png","ImdbCode":"tt0116778","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0116778\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-10
56
+ II The Next Chapter (1990)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/The_Neverending_Story_II_The_Next_Chapter_1990_720p.png","ImdbCode":"tt0100240","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0100240\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-13
57
+ 01:00:17","DateAddedEpoch":1413115217},{"MovieTitle":"Married to the Mob (1988)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Married_to_the_Mob_1988_720p_1.png","ImdbCode":"tt0095593","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0095593\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-11
58
+ 14:14:10","DateAddedEpoch":1412990050},{"MovieTitle":"Nurse 3D (2013)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Nurse_3D_2013_720p.png","ImdbCode":"tt1913166","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1913166\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-11
59
+ 08:50:17","DateAddedEpoch":1412970617},{"MovieTitle":"Sordid Lives (2000)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Sordid_Lives_2000_720p.png","ImdbCode":"tt0204640","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0204640\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-11
60
+ 07:49:58","DateAddedEpoch":1412966998},{"MovieTitle":"Victim (1961)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Victim_1961_720p.png","ImdbCode":"tt0055597","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0055597\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-11
61
+ 02:19:45","DateAddedEpoch":1412947185},{"MovieTitle":"Kingpin (1996)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Kingpin_1996_720p.png","ImdbCode":"tt0116778","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0116778\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-10
62
62
  10:50:18","DateAddedEpoch":1412891418},{"MovieTitle":"Dragonball Evolution
63
- (2009)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Dragonball_Evolution_2009_720p.png","ImdbCode":"tt1098327","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1098327\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-08
64
- 23:32:42","DateAddedEpoch":1412764362},{"MovieTitle":"Next of Kin (1989)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Next_of_Kin_1989_720p.png","ImdbCode":"tt0097967","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0097967\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-07
63
+ (2009)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Dragonball_Evolution_2009_720p.png","ImdbCode":"tt1098327","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1098327\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-08
64
+ 23:32:42","DateAddedEpoch":1412764362},{"MovieTitle":"Next of Kin (1989)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Next_of_Kin_1989_720p.png","ImdbCode":"tt0097967","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0097967\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-07
65
65
  20:52:44","DateAddedEpoch":1412668364},{"MovieTitle":"I Spit on Your Grave
66
- 2 (2013)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/I_Spit_on_Your_Grave_2_2013_720p.png","ImdbCode":"tt2537176","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2537176\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-07
67
- 19:46:34","DateAddedEpoch":1412664394},{"MovieTitle":"The Medusa Touch (1978)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/The_Medusa_Touch_1978_720p.png","ImdbCode":"tt0077921","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0077921\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-07
66
+ 2 (2013)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/I_Spit_on_Your_Grave_2_2013_720p.png","ImdbCode":"tt2537176","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2537176\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-07
67
+ 19:46:34","DateAddedEpoch":1412664394},{"MovieTitle":"The Medusa Touch (1978)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/The_Medusa_Touch_1978_720p.png","ImdbCode":"tt0077921","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0077921\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-07
68
68
  18:34:03","DateAddedEpoch":1412660043},{"MovieTitle":"Dominion Prequel to
69
- the Exorcist (2005)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Dominion_Prequel_to_the_Exorcist_2005_720p.png","ImdbCode":"tt0449086","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0449086\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-07
70
- 00:21:46","DateAddedEpoch":1412594506},{"MovieTitle":"Sex Tape (2014)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Sex_Tape_2014_720p.png","ImdbCode":"tt1956620","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1956620\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-04
71
- 03:49:28","DateAddedEpoch":1412347768},{"MovieTitle":"The Scribbler (2014)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/The_Scribbler_2014_720p.png","ImdbCode":"tt2396721","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2396721\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-04
72
- 00:50:18","DateAddedEpoch":1412337018},{"MovieTitle":"Flex Is Kings (2013)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Flex_Is_Kings_2013_720p.png","ImdbCode":"tt2393799","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2393799\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-03
73
- 09:49:33","DateAddedEpoch":1412282973},{"MovieTitle":"The Wanderers (1979)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/The_Wanderers_1979_720p.png","ImdbCode":"tt0080117","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0080117\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-03
74
- 09:19:48","DateAddedEpoch":1412281188},{"MovieTitle":"Dirty Wars (2013)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Dirty_Wars_2013_720p.png","ImdbCode":"tt2532528","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2532528\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-01
75
- 22:12:16","DateAddedEpoch":1412154736},{"MovieTitle":"The Scout (1994)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/The_Scout_1994_720p.png","ImdbCode":"tt0111094","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0111094\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-01
69
+ the Exorcist (2005)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Dominion_Prequel_to_the_Exorcist_2005_720p.png","ImdbCode":"tt0449086","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0449086\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-07
70
+ 00:21:46","DateAddedEpoch":1412594506},{"MovieTitle":"Sex Tape (2014)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Sex_Tape_2014_720p.png","ImdbCode":"tt1956620","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1956620\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-04
71
+ 03:49:28","DateAddedEpoch":1412347768},{"MovieTitle":"The Scribbler (2014)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/The_Scribbler_2014_720p.png","ImdbCode":"tt2396721","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2396721\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-04
72
+ 00:50:18","DateAddedEpoch":1412337018},{"MovieTitle":"Flex Is Kings (2013)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Flex_Is_Kings_2013_720p.png","ImdbCode":"tt2393799","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2393799\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-03
73
+ 09:49:33","DateAddedEpoch":1412282973},{"MovieTitle":"The Wanderers (1979)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/The_Wanderers_1979_720p.png","ImdbCode":"tt0080117","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0080117\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-03
74
+ 09:19:48","DateAddedEpoch":1412281188},{"MovieTitle":"Dirty Wars (2013)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Dirty_Wars_2013_720p.png","ImdbCode":"tt2532528","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2532528\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-01
75
+ 22:12:16","DateAddedEpoch":1412154736},{"MovieTitle":"The Scout (1994)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/The_Scout_1994_720p.png","ImdbCode":"tt0111094","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0111094\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-01
76
76
  13:12:09","DateAddedEpoch":1412122329},{"MovieTitle":"The Man Who Knew Too
77
- Little (1997)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/The_Man_Who_Knew_Too_Little_1997_720p.png","ImdbCode":"tt0120483","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0120483\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-01
78
- 12:13:14","DateAddedEpoch":1412118794},{"MovieTitle":"Invaders from Mars (1986)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Invaders_from_Mars_1986_720p.png","ImdbCode":"tt0091276","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0091276\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-01
77
+ Little (1997)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/The_Man_Who_Knew_Too_Little_1997_720p.png","ImdbCode":"tt0120483","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0120483\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-01
78
+ 12:13:14","DateAddedEpoch":1412118794},{"MovieTitle":"Invaders from Mars (1986)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Invaders_from_Mars_1986_720p.png","ImdbCode":"tt0091276","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0091276\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-01
79
79
  06:20:35","DateAddedEpoch":1412097635},{"MovieTitle":"Leave The World Behind
80
- (2014)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Leave_The_World_Behind_2014_720p.png","ImdbCode":"tt3288290","ImdbLink":"http:\/\/www.imdb.com\/title\/tt3288290\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-01
80
+ (2014)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Leave_The_World_Behind_2014_720p.png","ImdbCode":"tt3288290","ImdbLink":"http:\/\/www.imdb.com\/title\/tt3288290\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-10-01
81
81
  06:20:01","DateAddedEpoch":1412097601},{"MovieTitle":"Big Trouble in Little
82
- China (1986)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Big_Trouble_in_Little_China_1986_720p.png","ImdbCode":"tt0090728","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0090728\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-30
83
- 13:29:40","DateAddedEpoch":1412036980},{"MovieTitle":"Project X (1987)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Project_X_1987_720p.png","ImdbCode":"tt0093793","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0093793\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-30
82
+ China (1986)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Big_Trouble_in_Little_China_1986_720p.png","ImdbCode":"tt0090728","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0090728\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-30
83
+ 13:29:40","DateAddedEpoch":1412036980},{"MovieTitle":"Project X (1987)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Project_X_1987_720p.png","ImdbCode":"tt0093793","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0093793\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-30
84
84
  10:12:29","DateAddedEpoch":1412025149},{"MovieTitle":"Romy and Michele''s
85
- High School Reunion (1997)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Romy_and_Micheles_High_School_Reunion_1997_720p.png","ImdbCode":"tt0120032","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0120032\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-30
86
- 07:13:19","DateAddedEpoch":1412014399},{"MovieTitle":"Revenge (1990)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Revenge_1990_720p.png","ImdbCode":"tt0100485","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0100485\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-29
87
- 08:19:01","DateAddedEpoch":1411931941},{"MovieTitle":"Fear of Clowns 2 (2007)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Fear_of_Clowns_2_2007_720p.png","ImdbCode":"tt0816496","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0816496\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-29
88
- 07:58:04","DateAddedEpoch":1411930684},{"MovieTitle":"Topkapi (1964)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Topkapi_1964_720p.png","ImdbCode":"tt0058672","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0058672\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-29
89
- 04:41:56","DateAddedEpoch":1411918916},{"MovieTitle":"The Last Legion (2007)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/The_Last_Legion_2007_720p.png","ImdbCode":"tt0462396","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0462396\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-28
85
+ High School Reunion (1997)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Romy_and_Micheles_High_School_Reunion_1997_720p.png","ImdbCode":"tt0120032","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0120032\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-30
86
+ 07:13:19","DateAddedEpoch":1412014399},{"MovieTitle":"Revenge (1990)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Revenge_1990_720p.png","ImdbCode":"tt0100485","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0100485\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-29
87
+ 08:19:01","DateAddedEpoch":1411931941},{"MovieTitle":"Fear of Clowns 2 (2007)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Fear_of_Clowns_2_2007_720p.png","ImdbCode":"tt0816496","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0816496\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-29
88
+ 07:58:04","DateAddedEpoch":1411930684},{"MovieTitle":"Topkapi (1964)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Topkapi_1964_720p.png","ImdbCode":"tt0058672","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0058672\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-29
89
+ 04:41:56","DateAddedEpoch":1411918916},{"MovieTitle":"The Last Legion (2007)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/The_Last_Legion_2007_720p.png","ImdbCode":"tt0462396","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0462396\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-28
90
90
  13:04:16","DateAddedEpoch":1411862656},{"MovieTitle":"The Postman Always Rings
91
- Twice (1981)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/The_Postman_Always_Rings_Twice_1981_720p.png","ImdbCode":"tt0082934","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0082934\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-28
92
- 13:04:04","DateAddedEpoch":1411862644},{"MovieTitle":"SEAL Patrol (2014)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/SEAL_Patrol_2014_720p.png","ImdbCode":"tt2078549","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2078549\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-27
93
- 13:00:29","DateAddedEpoch":1411779629},{"MovieTitle":"The Prestige (2006)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/The_Prestige_2006_1080p.png","ImdbCode":"tt0482571","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0482571\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-27
94
- 12:55:15","DateAddedEpoch":1411779315},{"MovieTitle":"Holiday Inn (1942)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Holiday_Inn_1942_720p.png","ImdbCode":"tt0034862","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0034862\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-27
95
- 10:49:29","DateAddedEpoch":1411771769},{"MovieTitle":"The Congress (2013)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/The_Congress_2013_720p.png","ImdbCode":"tt1821641","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1821641\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-26
96
- 03:49:47","DateAddedEpoch":1411660187},{"MovieTitle":"One Hour Photo (2002)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/One_Hour_Photo_2002_720p.png","ImdbCode":"tt0265459","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0265459\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-25
97
- 11:36:38","DateAddedEpoch":1411601798},{"MovieTitle":"The Grifters (1990)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/The_Grifters_1990_720p.png","ImdbCode":"tt0099703","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0099703\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-25
98
- 08:19:34","DateAddedEpoch":1411589974},{"MovieTitle":"The Natural (1984)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/The_Natural_1984_1080p.png","ImdbCode":"tt0087781","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0087781\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-25
99
- 08:17:49","DateAddedEpoch":1411589869},{"MovieTitle":"Maps to the Stars (2014)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Maps_to_the_Stars_2014_720p.png","ImdbCode":"tt2172584","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2172584\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-25
91
+ Twice (1981)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/The_Postman_Always_Rings_Twice_1981_720p.png","ImdbCode":"tt0082934","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0082934\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-28
92
+ 13:04:04","DateAddedEpoch":1411862644},{"MovieTitle":"SEAL Patrol (2014)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/SEAL_Patrol_2014_720p.png","ImdbCode":"tt2078549","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2078549\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-27
93
+ 13:00:29","DateAddedEpoch":1411779629},{"MovieTitle":"The Prestige (2006)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/The_Prestige_2006_1080p.png","ImdbCode":"tt0482571","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0482571\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-27
94
+ 12:55:15","DateAddedEpoch":1411779315},{"MovieTitle":"Holiday Inn (1942)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Holiday_Inn_1942_720p.png","ImdbCode":"tt0034862","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0034862\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-27
95
+ 10:49:29","DateAddedEpoch":1411771769},{"MovieTitle":"The Congress (2013)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/The_Congress_2013_720p.png","ImdbCode":"tt1821641","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1821641\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-26
96
+ 03:49:47","DateAddedEpoch":1411660187},{"MovieTitle":"One Hour Photo (2002)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/One_Hour_Photo_2002_720p.png","ImdbCode":"tt0265459","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0265459\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-25
97
+ 11:36:38","DateAddedEpoch":1411601798},{"MovieTitle":"The Grifters (1990)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/The_Grifters_1990_720p.png","ImdbCode":"tt0099703","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0099703\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-25
98
+ 08:19:34","DateAddedEpoch":1411589974},{"MovieTitle":"The Natural (1984)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/The_Natural_1984_1080p.png","ImdbCode":"tt0087781","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0087781\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-25
99
+ 08:17:49","DateAddedEpoch":1411589869},{"MovieTitle":"Maps to the Stars (2014)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Maps_to_the_Stars_2014_720p.png","ImdbCode":"tt2172584","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2172584\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-25
100
100
  08:16:12","DateAddedEpoch":1411589772},{"MovieTitle":"The Adventurer The Curse
101
- of the Midas Box (2013)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/The_Adventurer_The_Curse_of_the_Midas_Box_2013_720p.png","ImdbCode":"tt1376213","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1376213\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-25
102
- 03:49:08","DateAddedEpoch":1411573748},{"MovieTitle":"Perfect Sisters (2014)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Perfect_Sisters_2014_720p.png","ImdbCode":"tt2027231","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2027231\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-23
103
- 21:49:20","DateAddedEpoch":1411465760},{"MovieTitle":"Jackie Brown (1997)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Jackie_Brown_1997_1080p.png","ImdbCode":"tt0119396","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0119396\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-23
104
- 21:03:11","DateAddedEpoch":1411462991},{"MovieTitle":"Junior (1994)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Junior_1994_720p.png","ImdbCode":"tt0110216","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0110216\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-23
105
- 13:31:42","DateAddedEpoch":1411435902},{"MovieTitle":"Frailty (2001)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Frailty_2001_720p.png","ImdbCode":"tt0264616","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0264616\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-23
101
+ of the Midas Box (2013)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/The_Adventurer_The_Curse_of_the_Midas_Box_2013_720p.png","ImdbCode":"tt1376213","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1376213\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-25
102
+ 03:49:08","DateAddedEpoch":1411573748},{"MovieTitle":"Perfect Sisters (2014)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Perfect_Sisters_2014_720p.png","ImdbCode":"tt2027231","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2027231\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-23
103
+ 21:49:20","DateAddedEpoch":1411465760},{"MovieTitle":"Jackie Brown (1997)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Jackie_Brown_1997_1080p.png","ImdbCode":"tt0119396","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0119396\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-23
104
+ 21:03:11","DateAddedEpoch":1411462991},{"MovieTitle":"Junior (1994)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Junior_1994_720p.png","ImdbCode":"tt0110216","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0110216\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-23
105
+ 13:31:42","DateAddedEpoch":1411435902},{"MovieTitle":"Frailty (2001)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Frailty_2001_720p.png","ImdbCode":"tt0264616","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0264616\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-23
106
106
  06:55:01","DateAddedEpoch":1411412101},{"MovieTitle":"In the Line of Fire
107
- (1993)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/In_the_Line_of_Fire_1993_1080p.png","ImdbCode":"tt0107206","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0107206\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-23
108
- 01:04:53","DateAddedEpoch":1411391093},{"MovieTitle":"Tell Tale (2009)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Tell_Tale_2009_720p.png","ImdbCode":"tt1135095","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1135095\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-22
109
- 21:50:48","DateAddedEpoch":1411379448},{"MovieTitle":"The Maiden Heist (2009)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/The_Maiden_Heist_2009_720p.png","ImdbCode":"tt1107860","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1107860\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-22
110
- 16:56:27","DateAddedEpoch":1411361787},{"MovieTitle":"Stricken (2010)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Stricken_2010_720p.png","ImdbCode":"tt1375754","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1375754\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-22
111
- 16:27:57","DateAddedEpoch":1411360077},{"MovieTitle":"Isle of Dogs (2011)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Isle_of_Dogs_2011_720p.png","ImdbCode":"tt1588362","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1588362\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-21
112
- 14:18:46","DateAddedEpoch":1411265926},{"MovieTitle":"King Kong (1976)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/King_Kong_1976_720p.png","ImdbCode":"tt0074751","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0074751\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-21
113
- 11:57:47","DateAddedEpoch":1411257467},{"MovieTitle":"The Homesman (2014)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/The_Homesman_2014_720p.png","ImdbCode":"tt2398231","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2398231\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-21
114
- 11:55:15","DateAddedEpoch":1411257315},{"MovieTitle":"April Apocalypse (2013)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/April_Apocalypse_2013_720p.png","ImdbCode":"tt2070604","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2070604\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-20
115
- 07:49:02","DateAddedEpoch":1411156142},{"MovieTitle":"Saint Dracula 3D (2012)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Saint_Dracula_3D_2012_720p.png","ImdbCode":"tt2184267","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2184267\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-18
116
- 07:18:36","DateAddedEpoch":1410981516},{"MovieTitle":"A Good Man (2014)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/A_Good_Man_2014_720p.png","ImdbCode":"tt3480556","ImdbLink":"http:\/\/www.imdb.com\/title\/tt3480556\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-17
117
- 10:50:00","DateAddedEpoch":1410907800},{"MovieTitle":"Heavenly Sword (2014)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Heavenly_Sword_2014_720p.png","ImdbCode":"tt2006753","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2006753\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-17
118
- 10:19:19","DateAddedEpoch":1410905959},{"MovieTitle":"Meteor (1979)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Meteor_1979_720p.png","ImdbCode":"tt0079550","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0079550\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-17
119
- 04:52:21","DateAddedEpoch":1410886341},{"MovieTitle":"Red Balls (2012)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Red_Balls_2012_720p.png","ImdbCode":"tt2258545","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2258545\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-15
120
- 22:07:19","DateAddedEpoch":1410775639},{"MovieTitle":"Coherence (2013)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Coherence_2013_720p.png","ImdbCode":"tt2866360","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2866360\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-15
121
- 08:59:36","DateAddedEpoch":1410728376},{"MovieTitle":"Willow Creek (2013)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Willow_Creek_2013_720p.png","ImdbCode":"tt2885364","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2885364\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-14
107
+ (1993)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/In_the_Line_of_Fire_1993_1080p.png","ImdbCode":"tt0107206","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0107206\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-23
108
+ 01:04:53","DateAddedEpoch":1411391093},{"MovieTitle":"Tell Tale (2009)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Tell_Tale_2009_720p.png","ImdbCode":"tt1135095","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1135095\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-22
109
+ 21:50:48","DateAddedEpoch":1411379448},{"MovieTitle":"The Maiden Heist (2009)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/The_Maiden_Heist_2009_720p.png","ImdbCode":"tt1107860","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1107860\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-22
110
+ 16:56:27","DateAddedEpoch":1411361787},{"MovieTitle":"Stricken (2010)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Stricken_2010_720p.png","ImdbCode":"tt1375754","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1375754\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-22
111
+ 16:27:57","DateAddedEpoch":1411360077},{"MovieTitle":"Isle of Dogs (2011)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Isle_of_Dogs_2011_720p.png","ImdbCode":"tt1588362","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1588362\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-21
112
+ 14:18:46","DateAddedEpoch":1411265926},{"MovieTitle":"King Kong (1976)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/King_Kong_1976_720p.png","ImdbCode":"tt0074751","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0074751\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-21
113
+ 11:57:47","DateAddedEpoch":1411257467},{"MovieTitle":"The Homesman (2014)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/The_Homesman_2014_720p.png","ImdbCode":"tt2398231","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2398231\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-21
114
+ 11:55:15","DateAddedEpoch":1411257315},{"MovieTitle":"April Apocalypse (2013)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/April_Apocalypse_2013_720p.png","ImdbCode":"tt2070604","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2070604\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-20
115
+ 07:49:02","DateAddedEpoch":1411156142},{"MovieTitle":"Saint Dracula 3D (2012)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Saint_Dracula_3D_2012_720p.png","ImdbCode":"tt2184267","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2184267\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-18
116
+ 07:18:36","DateAddedEpoch":1410981516},{"MovieTitle":"A Good Man (2014)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/A_Good_Man_2014_720p.png","ImdbCode":"tt3480556","ImdbLink":"http:\/\/www.imdb.com\/title\/tt3480556\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-17
117
+ 10:50:00","DateAddedEpoch":1410907800},{"MovieTitle":"Heavenly Sword (2014)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Heavenly_Sword_2014_720p.png","ImdbCode":"tt2006753","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2006753\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-17
118
+ 10:19:19","DateAddedEpoch":1410905959},{"MovieTitle":"Meteor (1979)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Meteor_1979_720p.png","ImdbCode":"tt0079550","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0079550\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-17
119
+ 04:52:21","DateAddedEpoch":1410886341},{"MovieTitle":"Red Balls (2012)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Red_Balls_2012_720p.png","ImdbCode":"tt2258545","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2258545\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-15
120
+ 22:07:19","DateAddedEpoch":1410775639},{"MovieTitle":"Coherence (2013)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Coherence_2013_720p.png","ImdbCode":"tt2866360","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2866360\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-15
121
+ 08:59:36","DateAddedEpoch":1410728376},{"MovieTitle":"Willow Creek (2013)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Willow_Creek_2013_720p.png","ImdbCode":"tt2885364","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2885364\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-14
122
122
  10:41:32","DateAddedEpoch":1410648092},{"MovieTitle":"Run Silent Run Deep
123
- (1958)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Run_Silent_Run_Deep_1958_720p.png","ImdbCode":"tt0052151","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0052151\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-13
124
- 12:48:23","DateAddedEpoch":1410569303},{"MovieTitle":"Firewalker (1986)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Firewalker_1986_720p.png","ImdbCode":"tt0091055","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0091055\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-13
125
- 00:09:25","DateAddedEpoch":1410523765},{"MovieTitle":"Elmer Gantry (1960)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Elmer_Gantry_1960_720p.png","ImdbCode":"tt0053793","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0053793\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-12
126
- 18:10:40","DateAddedEpoch":1410502240},{"MovieTitle":"Stag (2013)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Stag_2013_720p.png","ImdbCode":"tt1821617","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1821617\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-12
127
- 04:49:41","DateAddedEpoch":1410454181},{"MovieTitle":"Night Crawlers (2009)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Night_Crawlers_2009_720p.png","ImdbCode":"tt0985060","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0985060\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-08-29
128
- 12:50:27","DateAddedEpoch":1409273427},{"MovieTitle":"House on the Hill (2012)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/House_on_the_Hill_2012_720p.png","ImdbCode":"tt2513864","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2513864\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-08-19
129
- 21:17:53","DateAddedEpoch":1408439873},{"MovieTitle":"Ragamuffin (2014)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Ragamuffin_2014_720p.png","ImdbCode":"tt2412568","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2412568\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-08-19
130
- 05:48:52","DateAddedEpoch":1408384132},{"MovieTitle":"Love Actually (2003)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Love_Actually_2003_720p.png","ImdbCode":"tt0314331","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0314331\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-08-18
123
+ (1958)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Run_Silent_Run_Deep_1958_720p.png","ImdbCode":"tt0052151","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0052151\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-13
124
+ 12:48:23","DateAddedEpoch":1410569303},{"MovieTitle":"Firewalker (1986)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Firewalker_1986_720p.png","ImdbCode":"tt0091055","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0091055\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-13
125
+ 00:09:25","DateAddedEpoch":1410523765},{"MovieTitle":"Elmer Gantry (1960)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Elmer_Gantry_1960_720p.png","ImdbCode":"tt0053793","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0053793\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-12
126
+ 18:10:40","DateAddedEpoch":1410502240},{"MovieTitle":"Stag (2013)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Stag_2013_720p.png","ImdbCode":"tt1821617","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1821617\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-09-12
127
+ 04:49:41","DateAddedEpoch":1410454181},{"MovieTitle":"Night Crawlers (2009)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Night_Crawlers_2009_720p.png","ImdbCode":"tt0985060","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0985060\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-08-29
128
+ 12:50:27","DateAddedEpoch":1409273427},{"MovieTitle":"House on the Hill (2012)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/House_on_the_Hill_2012_720p.png","ImdbCode":"tt2513864","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2513864\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-08-19
129
+ 21:17:53","DateAddedEpoch":1408439873},{"MovieTitle":"Ragamuffin (2014)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Ragamuffin_2014_720p.png","ImdbCode":"tt2412568","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2412568\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-08-19
130
+ 05:48:52","DateAddedEpoch":1408384132},{"MovieTitle":"Love Actually (2003)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Love_Actually_2003_720p.png","ImdbCode":"tt0314331","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0314331\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-08-18
131
131
  03:35:03","DateAddedEpoch":1408289703},{"MovieTitle":"Only Lovers Left Alive
132
- (2013)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Only_Lovers_Left_Alive_2013_720p.png","ImdbCode":"tt1714915","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1714915\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-08-16
132
+ (2013)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Only_Lovers_Left_Alive_2013_720p.png","ImdbCode":"tt1714915","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1714915\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-08-16
133
133
  21:19:42","DateAddedEpoch":1408180782},{"MovieTitle":"Island of the Burning
134
- Damned (1967)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Island_of_the_Burning_Damned_1967_720p.png","ImdbCode":"tt0062037","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0062037\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-08-16
135
- 10:18:19","DateAddedEpoch":1408141099},{"MovieTitle":"Hamlet (1996)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Hamlet_1996_720p.png","ImdbCode":"tt0116477","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0116477\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-08-14
136
- 15:24:27","DateAddedEpoch":1407986667},{"MovieTitle":"Le Week-End (2013)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Le_Week_End_2013_720p.png","ImdbCode":"tt2392326","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2392326\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-08-04
137
- 09:04:27","DateAddedEpoch":1407099867},{"MovieTitle":"Around the Block (2013)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Around_the_Block_2013_720p.png","ImdbCode":"tt1847541","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1847541\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-07-30
138
- 00:48:04","DateAddedEpoch":1406638084},{"MovieTitle":"We the Party (2012)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/We_the_Party_2012_720p.png","ImdbCode":"tt1702016","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1702016\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-07-28
139
- 05:48:09","DateAddedEpoch":1406483289},{"MovieTitle":"Behaving Badly (2014)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Behaving_Badly_2014_720p.png","ImdbCode":"tt2314824","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2314824\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-07-26
134
+ Damned (1967)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Island_of_the_Burning_Damned_1967_720p.png","ImdbCode":"tt0062037","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0062037\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-08-16
135
+ 10:18:19","DateAddedEpoch":1408141099},{"MovieTitle":"Hamlet (1996)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Hamlet_1996_720p.png","ImdbCode":"tt0116477","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0116477\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-08-14
136
+ 15:24:27","DateAddedEpoch":1407986667},{"MovieTitle":"Le Week-End (2013)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Le_Week_End_2013_720p.png","ImdbCode":"tt2392326","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2392326\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-08-04
137
+ 09:04:27","DateAddedEpoch":1407099867},{"MovieTitle":"Around the Block (2013)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Around_the_Block_2013_720p.png","ImdbCode":"tt1847541","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1847541\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-07-30
138
+ 00:48:04","DateAddedEpoch":1406638084},{"MovieTitle":"We the Party (2012)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/We_the_Party_2012_720p.png","ImdbCode":"tt1702016","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1702016\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-07-28
139
+ 05:48:09","DateAddedEpoch":1406483289},{"MovieTitle":"Behaving Badly (2014)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Behaving_Badly_2014_720p.png","ImdbCode":"tt2314824","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2314824\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-07-26
140
140
  22:37:53","DateAddedEpoch":1406371073},{"MovieTitle":"The Hound of the Baskervilles
141
- (1959)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/The_Hound_of_the_Baskervilles_1959_720p.png","ImdbCode":"tt0052905","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0052905\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-07-24
141
+ (1959)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/The_Hound_of_the_Baskervilles_1959_720p.png","ImdbCode":"tt0052905","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0052905\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-07-24
142
142
  00:17:35","DateAddedEpoch":1406117855},{"MovieTitle":"Spud 2 The Madness Continues
143
- (2013)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Spud_2_The_Madness_Continues_2013_720p.png","ImdbCode":"tt2262270","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2262270\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-07-23
144
- 00:47:24","DateAddedEpoch":1406033244},{"MovieTitle":"Moby Dick (1956)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Moby_Dick_1956_720p.png","ImdbCode":"tt0049513","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0049513\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-07-22
145
- 20:17:21","DateAddedEpoch":1406017041},{"MovieTitle":"Attila (2001)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Attila_2001_720p.png","ImdbCode":"tt0259127","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0259127\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-07-20
146
- 14:48:38","DateAddedEpoch":1405824518},{"MovieTitle":"Separate Tables (1958)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Separate_Tables_1958_720p.png","ImdbCode":"tt0052182","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0052182\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-07-18
147
- 21:17:36","DateAddedEpoch":1405675056},{"MovieTitle":"Joy Ride 3 (2014)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Joy_Ride_3_2014_720p.png","ImdbCode":"tt3138376","ImdbLink":"http:\/\/www.imdb.com\/title\/tt3138376\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-07-17
148
- 10:48:14","DateAddedEpoch":1405550894},{"MovieTitle":"The Uninvited (1944)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/The_Uninvited_1944_720p.png","ImdbCode":"tt0037415","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0037415\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-07-06
143
+ (2013)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Spud_2_The_Madness_Continues_2013_720p.png","ImdbCode":"tt2262270","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2262270\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-07-23
144
+ 00:47:24","DateAddedEpoch":1406033244},{"MovieTitle":"Moby Dick (1956)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Moby_Dick_1956_720p.png","ImdbCode":"tt0049513","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0049513\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-07-22
145
+ 20:17:21","DateAddedEpoch":1406017041},{"MovieTitle":"Attila (2001)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Attila_2001_720p.png","ImdbCode":"tt0259127","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0259127\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-07-20
146
+ 14:48:38","DateAddedEpoch":1405824518},{"MovieTitle":"Separate Tables (1958)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Separate_Tables_1958_720p.png","ImdbCode":"tt0052182","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0052182\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-07-18
147
+ 21:17:36","DateAddedEpoch":1405675056},{"MovieTitle":"Joy Ride 3 (2014)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Joy_Ride_3_2014_720p.png","ImdbCode":"tt3138376","ImdbLink":"http:\/\/www.imdb.com\/title\/tt3138376\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-07-17
148
+ 10:48:14","DateAddedEpoch":1405550894},{"MovieTitle":"The Uninvited (1944)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/The_Uninvited_1944_720p.png","ImdbCode":"tt0037415","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0037415\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-07-06
149
149
  14:47:04","DateAddedEpoch":1404614824},{"MovieTitle":"The Private Life of
150
- Sherlock Holmes (1970)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/The_Private_Life_of_Sherlock_Holmes_1970_720p.png","ImdbCode":"tt0066249","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0066249\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-07-04
151
- 13:17:09","DateAddedEpoch":1404436629},{"MovieTitle":"Gun Woman (2014)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Gun_Woman_2014_720p.png","ImdbCode":"tt3141912","ImdbLink":"http:\/\/www.imdb.com\/title\/tt3141912\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-07-02
152
- 10:46:34","DateAddedEpoch":1404254794},{"MovieTitle":"Buck Wild (2013)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Buck_Wild_2013_720p.png","ImdbCode":"tt1839426","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1839426\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-06-30
150
+ Sherlock Holmes (1970)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/The_Private_Life_of_Sherlock_Holmes_1970_720p.png","ImdbCode":"tt0066249","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0066249\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-07-04
151
+ 13:17:09","DateAddedEpoch":1404436629},{"MovieTitle":"Gun Woman (2014)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Gun_Woman_2014_720p.png","ImdbCode":"tt3141912","ImdbLink":"http:\/\/www.imdb.com\/title\/tt3141912\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-07-02
152
+ 10:46:34","DateAddedEpoch":1404254794},{"MovieTitle":"Buck Wild (2013)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Buck_Wild_2013_720p.png","ImdbCode":"tt1839426","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1839426\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-06-30
153
153
  14:16:40","DateAddedEpoch":1404094600},{"MovieTitle":"The Fighting Kentuckian
154
- (1949)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/The_Fighting_Kentuckian_1949_720p.png","ImdbCode":"tt0041361","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0041361\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-06-29
155
- 04:46:58","DateAddedEpoch":1403974018},{"MovieTitle":"A Fighting Man (2014)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/A_Fighting_Man_2014_720p.png","ImdbCode":"tt2854894","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2854894\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-06-27
156
- 18:08:12","DateAddedEpoch":1403849292},{"MovieTitle":"Bloody Birthday (1981)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Bloody_Birthday_1981_720p_1.png","ImdbCode":"tt0082084","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0082084\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-06-27
157
- 17:31:56","DateAddedEpoch":1403847116},{"MovieTitle":"Caught (1949)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Caught_1949_720p.png","ImdbCode":"tt0040221","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0040221\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-06-27
158
- 17:17:28","DateAddedEpoch":1403846248},{"MovieTitle":"About a Boy (2002)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/About_a_Boy_2002_720p.png","ImdbCode":"tt0276751","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0276751\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-06-27
159
- 08:24:21","DateAddedEpoch":1403814261},{"MovieTitle":"Warlock (1959)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Warlock_1959_720p.png","ImdbCode":"tt0053434","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0053434\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-06-26
160
- 21:54:19","DateAddedEpoch":1403776459},{"MovieTitle":"My Tutor (1983)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/My_Tutor_1983_720p.png","ImdbCode":"tt0085980","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0085980\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-06-19
154
+ (1949)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/The_Fighting_Kentuckian_1949_720p.png","ImdbCode":"tt0041361","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0041361\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-06-29
155
+ 04:46:58","DateAddedEpoch":1403974018},{"MovieTitle":"A Fighting Man (2014)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/A_Fighting_Man_2014_720p.png","ImdbCode":"tt2854894","ImdbLink":"http:\/\/www.imdb.com\/title\/tt2854894\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-06-27
156
+ 18:08:12","DateAddedEpoch":1403849292},{"MovieTitle":"Bloody Birthday (1981)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Bloody_Birthday_1981_720p_1.png","ImdbCode":"tt0082084","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0082084\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-06-27
157
+ 17:31:56","DateAddedEpoch":1403847116},{"MovieTitle":"Caught (1949)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Caught_1949_720p.png","ImdbCode":"tt0040221","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0040221\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-06-27
158
+ 17:17:28","DateAddedEpoch":1403846248},{"MovieTitle":"About a Boy (2002)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/About_a_Boy_2002_720p.png","ImdbCode":"tt0276751","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0276751\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-06-27
159
+ 08:24:21","DateAddedEpoch":1403814261},{"MovieTitle":"Warlock (1959)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Warlock_1959_720p.png","ImdbCode":"tt0053434","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0053434\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-06-26
160
+ 21:54:19","DateAddedEpoch":1403776459},{"MovieTitle":"My Tutor (1983)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/My_Tutor_1983_720p.png","ImdbCode":"tt0085980","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0085980\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-06-19
161
161
  20:47:05","DateAddedEpoch":1403167625},{"MovieTitle":"Camp Rock 2 The Final
162
- Jam (2010)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Camp_Rock_2_The_Final_Jam_2010_720p.png","ImdbCode":"tt1252380","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1252380\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-06-16
163
- 01:17:03","DateAddedEpoch":1402838223},{"MovieTitle":"Hot Rod (2007)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Hot_Rod_2007_720p.png","ImdbCode":"tt0787475","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0787475\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-06-13
162
+ Jam (2010)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Camp_Rock_2_The_Final_Jam_2010_720p.png","ImdbCode":"tt1252380","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1252380\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-06-16
163
+ 01:17:03","DateAddedEpoch":1402838223},{"MovieTitle":"Hot Rod (2007)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Hot_Rod_2007_720p.png","ImdbCode":"tt0787475","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0787475\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-06-13
164
164
  21:07:32","DateAddedEpoch":1402650452},{"MovieTitle":"The Young and Prodigious
165
- T.S. Spivet (2013)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/The_Young_and_Prodigious_T_S_Spivet_2013_720p.png","ImdbCode":"tt1981107","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1981107\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-05-29
166
- 03:16:16","DateAddedEpoch":1401290176},{"MovieTitle":"A Day of Violence (2010)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/A_Day_of_Violence_2010_720p.png","ImdbCode":"tt1109582","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1109582\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-05-21
167
- 09:15:38","DateAddedEpoch":1400620538},{"MovieTitle":"Shout at the Devil (1976)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Shout_at_the_Devil_1976_720p.png","ImdbCode":"tt0075214","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0075214\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-05-20
168
- 21:46:22","DateAddedEpoch":1400579182},{"MovieTitle":"Rio Conchos (1964)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Rio_Conchos_1964_720p.png","ImdbCode":"tt0058525","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0058525\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-05-20
169
- 12:45:24","DateAddedEpoch":1400546724},{"MovieTitle":"Blood Moon Rising (2009)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Blood_Moon_Rising_2009_720p.png","ImdbCode":"tt1242605","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1242605\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-05-18
165
+ T.S. Spivet (2013)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/The_Young_and_Prodigious_T_S_Spivet_2013_720p.png","ImdbCode":"tt1981107","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1981107\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-05-29
166
+ 03:16:16","DateAddedEpoch":1401290176},{"MovieTitle":"A Day of Violence (2010)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/A_Day_of_Violence_2010_720p.png","ImdbCode":"tt1109582","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1109582\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-05-21
167
+ 09:15:38","DateAddedEpoch":1400620538},{"MovieTitle":"Shout at the Devil (1976)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Shout_at_the_Devil_1976_720p.png","ImdbCode":"tt0075214","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0075214\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-05-20
168
+ 21:46:22","DateAddedEpoch":1400579182},{"MovieTitle":"Rio Conchos (1964)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Rio_Conchos_1964_720p.png","ImdbCode":"tt0058525","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0058525\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-05-20
169
+ 12:45:24","DateAddedEpoch":1400546724},{"MovieTitle":"Blood Moon Rising (2009)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Blood_Moon_Rising_2009_720p.png","ImdbCode":"tt1242605","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1242605\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-05-18
170
170
  22:15:36","DateAddedEpoch":1400408136},{"MovieTitle":"Birdemic Shock and Terror
171
- (2010)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Birdemic_Shock_and_Terror_2010_720p.png","ImdbCode":"tt1316037","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1316037\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-05-14
171
+ (2010)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Birdemic_Shock_and_Terror_2010_720p.png","ImdbCode":"tt1316037","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1316037\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-05-14
172
172
  23:15:56","DateAddedEpoch":1400066156},{"MovieTitle":"Confessions of a Shopaholic
173
- (2009)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Confessions_of_a_Shopaholic_2009_720p.png","ImdbCode":"tt1093908","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1093908\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-05-12
173
+ (2009)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Confessions_of_a_Shopaholic_2009_720p.png","ImdbCode":"tt1093908","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1093908\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-05-12
174
174
  12:29:11","DateAddedEpoch":1399854551},{"MovieTitle":"Jason and the Argonauts
175
- (1963)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Jason_and_the_Argonauts_1963_720p.png","ImdbCode":"tt0057197","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0057197\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-05-06
176
- 00:40:39","DateAddedEpoch":1399293639},{"MovieTitle":"The Pawnbroker (1964)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/The_Pawnbroker_1964_720p.png","ImdbCode":"tt0059575","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0059575\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-05-05
177
- 18:44:59","DateAddedEpoch":1399272299},{"MovieTitle":"Die, Monster, Die! (1965)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Die_Monster_Die_1965_720p.png","ImdbCode":"tt0059465","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0059465\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-05-02
175
+ (1963)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Jason_and_the_Argonauts_1963_720p.png","ImdbCode":"tt0057197","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0057197\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-05-06
176
+ 00:40:39","DateAddedEpoch":1399293639},{"MovieTitle":"The Pawnbroker (1964)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/The_Pawnbroker_1964_720p.png","ImdbCode":"tt0059575","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0059575\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-05-05
177
+ 18:44:59","DateAddedEpoch":1399272299},{"MovieTitle":"Die, Monster, Die! (1965)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Die_Monster_Die_1965_720p.png","ImdbCode":"tt0059465","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0059465\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-05-02
178
178
  06:46:02","DateAddedEpoch":1398969962},{"MovieTitle":"The Belles of St. Trinian''s
179
- (1954)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/The_Belles_of_St_Trinians_1954_720p.png","ImdbCode":"tt0046766","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0046766\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-05-01
179
+ (1954)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/The_Belles_of_St_Trinians_1954_720p.png","ImdbCode":"tt0046766","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0046766\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-05-01
180
180
  06:15:31","DateAddedEpoch":1398881731},{"MovieTitle":"Bob Dylan 30th Anniversary
181
- Concert Celebration (1993)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Bob_Dylan_30th_Anniversary_Concert_Celebration_1993_720p.png","ImdbCode":"tt0319075","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0319075\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-04-19
181
+ Concert Celebration (1993)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Bob_Dylan_30th_Anniversary_Concert_Celebration_1993_720p.png","ImdbCode":"tt0319075","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0319075\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-04-19
182
182
  21:15:05","DateAddedEpoch":1397898905},{"MovieTitle":"Murph The Protector
183
- (2013)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Murph_The_Protector_2013_720p.png","ImdbCode":"tt1790825","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1790825\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-04-09
184
- 18:45:55","DateAddedEpoch":1397025955},{"MovieTitle":"Kramer vs. Kramer (1979)","MovieCover":"http:\/\/static.yts.re\/attachments\/_upcoming\/Kramer_vs_Kramer_1979.png","ImdbCode":"tt0079417","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0079417\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2013-12-20
183
+ (2013)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Murph_The_Protector_2013_720p.png","ImdbCode":"tt1790825","ImdbLink":"http:\/\/www.imdb.com\/title\/tt1790825\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2014-04-09
184
+ 18:45:55","DateAddedEpoch":1397025955},{"MovieTitle":"Kramer vs. Kramer (1979)","MovieCover":"http:\/\/static.yts.to\/attachments\/_upcoming\/Kramer_vs_Kramer_1979.png","ImdbCode":"tt0079417","ImdbLink":"http:\/\/www.imdb.com\/title\/tt0079417\/","Uploader":"OTTO","UploaderUID":"310615","DateAdded":"2013-12-20
185
185
  06:50:58","DateAddedEpoch":1387475458}]'
186
186
  http_version:
187
187
  recorded_at: Thu, 16 Oct 2014 05:00:38 GMT