docker-api 1.10.1 → 1.10.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/lib/docker/image.rb +4 -7
- data/lib/docker/version.rb +1 -1
- data/spec/docker/image_spec.rb +12 -2
- data/spec/vcr/Docker_Image/_create/when_the_Image_does_not_yet_exist_and_the_body_is_a_Hash/sets_the_id_and_sends_Docker_creds.yml +697 -0
- metadata +4 -4
- data/spec/vcr/Docker_Image/_create/when_the_Image_does_not_yet_exist_and_the_body_is_a_Hash/sets_the_id.yml +0 -38
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b46cdd5696d4b7d1adfc05957499b466bab318b2
|
4
|
+
data.tar.gz: f8574306660d31b28bab6c080caeab37b10f18d7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 39398561ff708d43c6780c75614bd30dbb96dcd2ba81cecb2e7b6dab45f38effec2620ffa72b0d7d487c31dfdad7018786911ad87f44bb673da7b711508305e5
|
7
|
+
data.tar.gz: 7dc5a542a78b64264b6e76e29125792c7c2ff3d5b17fbcca65a6417c2fb55317ec2169b3dfc08c7b2634c162a2f1f7711e84fffa380875cd6b3c1e83201fe476
|
data/README.md
CHANGED
@@ -2,7 +2,7 @@ docker-api
|
|
2
2
|
==========
|
3
3
|
[![Gem Version](https://badge.fury.io/rb/docker-api.png)](http://badge.fury.io/rb/docker-api) [![travis-ci](https://travis-ci.org/swipely/docker-api.png?branch=master)](https://travis-ci.org/swipely/docker-api) [![Code Climate](https://codeclimate.com/github/swipely/docker-api.png)](https://codeclimate.com/github/swipely/docker-api) [![Dependency Status](https://gemnasium.com/swipely/docker-api.png)](https://gemnasium.com/swipely/docker-api)
|
4
4
|
|
5
|
-
This gem provides an object-oriented interface to the [Docker Remote API](http://docs.docker.io/en/latest/api/
|
5
|
+
This gem provides an object-oriented interface to the [Docker Remote API](http://docs.docker.io/en/latest/reference/api/docker_remote_api/). Every method listed there is implemented, with the exception of attaching to the STDIN of a Container. At the time of this writing, docker-api is meant to interface with Docker version 0.8.*.
|
6
6
|
|
7
7
|
If you're interested in using Docker to package your apps, we recommend the [dockly](https://github.com/swipely/dockly) gem. Dockly provides a simple DSL for describing Docker containers that install as Debian packages and are controlled by upstart scripts.
|
8
8
|
|
@@ -95,7 +95,7 @@ Docker.authenticate!('username' => 'docker-fan-boi', 'password' => 'i<3docker',
|
|
95
95
|
```
|
96
96
|
|
97
97
|
## Images
|
98
|
-
Just about every method here has a one-to-one mapping with the [Images](http://docs.docker.io/en/latest/api/docker_remote_api_v1.
|
98
|
+
Just about every method here has a one-to-one mapping with the [Images](http://docs.docker.io/en/latest/reference/api/docker_remote_api_v1.10/#images) section of the API. If an API call accepts query parameters, these can be passed as an Hash to it's corresponding method. Also, note that `Docker::Image.new` is a private method, so you must use `.create`, `.build`, `.build_from_dir`, or `.import` to make an instance.
|
99
99
|
|
100
100
|
```ruby
|
101
101
|
require 'docker'
|
@@ -165,7 +165,7 @@ Docker::Image.search('term' => 'sshd')
|
|
165
165
|
```
|
166
166
|
|
167
167
|
## Containers
|
168
|
-
Much like the Images, this object also has a one-to-one mapping with the [Containers](http://docs.docker.io/en/latest/api/docker_remote_api_v1.
|
168
|
+
Much like the Images, this object also has a one-to-one mapping with the [Containers](http://docs.docker.io/en/latest/reference/api/docker_remote_api_v1.10/#containers) section of the API. Also like Images, `.new` is a private method, so you must use `.create` to make an instance.
|
169
169
|
|
170
170
|
```ruby
|
171
171
|
require 'docker'
|
data/lib/docker/image.rb
CHANGED
@@ -107,13 +107,10 @@ class Docker::Image
|
|
107
107
|
|
108
108
|
# Create a new Image.
|
109
109
|
def create(opts = {}, creds = nil, conn = Docker.connection)
|
110
|
-
credentials =
|
111
|
-
headers =
|
112
|
-
|
113
|
-
|
114
|
-
{}
|
115
|
-
end
|
116
|
-
body = conn.post('/images/create', opts)
|
110
|
+
credentials = creds.nil? ? Docker.creds : creds.to_json
|
111
|
+
headers = !credentials.nil? && Docker::Util.build_auth_header(credentials)
|
112
|
+
headers ||= {}
|
113
|
+
body = conn.post('/images/create', opts, :headers => headers)
|
117
114
|
id = Docker::Util.fix_json(body).last['id']
|
118
115
|
new(conn, 'id' => id, :headers => headers)
|
119
116
|
end
|
data/lib/docker/version.rb
CHANGED
data/spec/docker/image_spec.rb
CHANGED
@@ -214,14 +214,24 @@ describe Docker::Image do
|
|
214
214
|
subject { described_class }
|
215
215
|
|
216
216
|
context 'when the Image does not yet exist and the body is a Hash' do
|
217
|
-
let(:image) { subject.create('fromImage' => '
|
217
|
+
let(:image) { subject.create('fromImage' => 'ubuntu') }
|
218
|
+
let(:creds) {
|
219
|
+
{
|
220
|
+
:username => 'nahiluhmot',
|
221
|
+
:password => '*********',
|
222
|
+
:email => 'hulihan.tom159@gmail.com'
|
223
|
+
}
|
224
|
+
}
|
225
|
+
|
226
|
+
before { Docker.creds = creds }
|
218
227
|
|
219
|
-
it 'sets the id', :vcr do
|
228
|
+
it 'sets the id and sends Docker.creds', :vcr do
|
220
229
|
image.should be_a Docker::Image
|
221
230
|
image.id.should match(/\A[a-fA-F0-9]+\Z/)
|
222
231
|
image.id.should_not include('base')
|
223
232
|
image.id.should_not be_nil
|
224
233
|
image.id.should_not be_empty
|
234
|
+
image.info[:headers].keys.should include('X-Registry-Auth')
|
225
235
|
end
|
226
236
|
end
|
227
237
|
end
|
@@ -0,0 +1,697 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: unix:///var/run/docker.sock/v1.10/images/create?fromImage=ubuntu
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Swipely/Docker-API 1.10.1
|
12
|
+
Content-Type:
|
13
|
+
- text/plain
|
14
|
+
X-Registry-Auth:
|
15
|
+
- XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
|
16
|
+
X-Registry-Config:
|
17
|
+
- XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 200
|
21
|
+
message:
|
22
|
+
headers:
|
23
|
+
Content-Type:
|
24
|
+
- application/json
|
25
|
+
Date:
|
26
|
+
- Wed, 19 Mar 2014 18:34:44 GMT
|
27
|
+
Connection:
|
28
|
+
- close
|
29
|
+
Transfer-Encoding:
|
30
|
+
- ''
|
31
|
+
body:
|
32
|
+
encoding: UTF-8
|
33
|
+
string: "{\"status\":\"Pulling repository ubuntu\"}\r\n{\"status\":\"Pulling
|
34
|
+
image (13.04) from ubuntu\",\"progressDetail\":{},\"id\":\"eb601b8965b8\"}{\"status\":\"Pulling
|
35
|
+
image (13.04) from ubuntu, endpoint: https://cdn-registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"eb601b8965b8\"}{\"status\":\"Pulling
|
36
|
+
image (precise) from ubuntu\",\"progressDetail\":{},\"id\":\"9cd978db300e\"}{\"status\":\"Pulling
|
37
|
+
image (precise) from ubuntu, endpoint: https://cdn-registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"9cd978db300e\"}{\"status\":\"Pulling
|
38
|
+
image (saucy) from ubuntu\",\"progressDetail\":{},\"id\":\"9f676bd305a4\"}{\"status\":\"Pulling
|
39
|
+
image (saucy) from ubuntu, endpoint: https://cdn-registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"9f676bd305a4\"}{\"status\":\"Pulling
|
40
|
+
image (12.10) from ubuntu\",\"progressDetail\":{},\"id\":\"5ac751e8d623\"}{\"status\":\"Pulling
|
41
|
+
image (12.10) from ubuntu, endpoint: https://cdn-registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"5ac751e8d623\"}{\"status\":\"Pulling
|
42
|
+
image (lucid) from ubuntu\",\"progressDetail\":{},\"id\":\"9cc9ea5ea540\"}{\"status\":\"Pulling
|
43
|
+
image (lucid) from ubuntu, endpoint: https://cdn-registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"9cc9ea5ea540\"}{\"status\":\"Pulling
|
44
|
+
dependent layers\",\"progressDetail\":{},\"id\":\"eb601b8965b8\"}{\"status\":\"Pulling
|
45
|
+
metadata\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Pulling
|
46
|
+
dependent layers\",\"progressDetail\":{},\"id\":\"9f676bd305a4\"}{\"status\":\"Pulling
|
47
|
+
dependent layers\",\"progressDetail\":{},\"id\":\"9cd978db300e\"}{\"status\":\"Pulling
|
48
|
+
dependent layers\",\"progressDetail\":{},\"id\":\"9cc9ea5ea540\"}{\"status\":\"Pulling
|
49
|
+
dependent layers\",\"progressDetail\":{},\"id\":\"5ac751e8d623\"}{\"status\":\"Pulling
|
50
|
+
fs layer\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":512,\"total\":10240,\"start\":1395254086},\"progress\":\"[==\\u003e
|
51
|
+
\ ] 512 B/10.24 kB 19s\",\"id\":\"511136ea3c5a\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1024,\"total\":10240,\"start\":1395254086},\"progress\":\"[=====\\u003e
|
52
|
+
\ ] 1.024 kB/10.24 kB 9s\",\"id\":\"511136ea3c5a\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1536,\"total\":10240,\"start\":1395254086},\"progress\":\"[=======\\u003e
|
53
|
+
\ ] 1.536 kB/10.24 kB 5s\",\"id\":\"511136ea3c5a\"}{\"status\":\"Download
|
54
|
+
complete\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Pulling
|
55
|
+
metadata\",\"progressDetail\":{},\"id\":\"f323cf34fd77\"}{\"status\":\"Pulling
|
56
|
+
fs layer\",\"progressDetail\":{},\"id\":\"f323cf34fd77\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10,\"total\":178,\"start\":1395254087},\"progress\":\"[==\\u003e
|
57
|
+
\ ] 10 B/178 B 7s\",\"id\":\"f323cf34fd77\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":178,\"total\":178,\"start\":1395254087},\"progress\":\"[==================================================\\u003e]
|
58
|
+
\ 178 B/178 B\",\"id\":\"f323cf34fd77\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":178,\"total\":178,\"start\":1395254087},\"progress\":\"[==================================================\\u003e]
|
59
|
+
\ 178 B/178 B\",\"id\":\"f323cf34fd77\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"f323cf34fd77\"}{\"status\":\"Pulling
|
60
|
+
metadata\",\"progressDetail\":{},\"id\":\"eb601b8965b8\"}{\"status\":\"Pulling
|
61
|
+
fs layer\",\"progressDetail\":{},\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":528384,\"total\":60276579,\"start\":1395254088},\"progress\":\"[\\u003e
|
62
|
+
\ ] 528.4 kB/60.28 MB 48s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1056768,\"total\":60276579,\"start\":1395254088},\"progress\":\"[\\u003e
|
63
|
+
\ ] 1.057 MB/60.28 MB 37s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1585152,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=\\u003e
|
64
|
+
\ ] 1.585 MB/60.28 MB 36s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2113536,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=\\u003e
|
65
|
+
\ ] 2.114 MB/60.28 MB 31s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2641920,\"total\":60276579,\"start\":1395254088},\"progress\":\"[==\\u003e
|
66
|
+
\ ] 2.642 MB/60.28 MB 28s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3170304,\"total\":60276579,\"start\":1395254088},\"progress\":\"[==\\u003e
|
67
|
+
\ ] 3.17 MB/60.28 MB 27s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3698688,\"total\":60276579,\"start\":1395254088},\"progress\":\"[===\\u003e
|
68
|
+
\ ] 3.699 MB/60.28 MB 26s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4227072,\"total\":60276579,\"start\":1395254088},\"progress\":\"[===\\u003e
|
69
|
+
\ ] 4.227 MB/60.28 MB 26s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4755456,\"total\":60276579,\"start\":1395254088},\"progress\":\"[===\\u003e
|
70
|
+
\ ] 4.755 MB/60.28 MB 25s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5283840,\"total\":60276579,\"start\":1395254088},\"progress\":\"[====\\u003e
|
71
|
+
\ ] 5.284 MB/60.28 MB 25s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5812224,\"total\":60276579,\"start\":1395254088},\"progress\":\"[====\\u003e
|
72
|
+
\ ] 5.812 MB/60.28 MB 25s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6340608,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=====\\u003e
|
73
|
+
\ ] 6.341 MB/60.28 MB 24s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6868992,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=====\\u003e
|
74
|
+
\ ] 6.869 MB/60.28 MB 24s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7397376,\"total\":60276579,\"start\":1395254088},\"progress\":\"[======\\u003e
|
75
|
+
\ ] 7.397 MB/60.28 MB 24s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7925760,\"total\":60276579,\"start\":1395254088},\"progress\":\"[======\\u003e
|
76
|
+
\ ] 7.926 MB/60.28 MB 24s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8454144,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=======\\u003e
|
77
|
+
\ ] 8.454 MB/60.28 MB 24s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8982528,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=======\\u003e
|
78
|
+
\ ] 8.983 MB/60.28 MB 24s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9510912,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=======\\u003e
|
79
|
+
\ ] 9.511 MB/60.28 MB 24s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10039296,\"total\":60276579,\"start\":1395254088},\"progress\":\"[========\\u003e
|
80
|
+
\ ] 10.04 MB/60.28 MB 24s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10567680,\"total\":60276579,\"start\":1395254088},\"progress\":\"[========\\u003e
|
81
|
+
\ ] 10.57 MB/60.28 MB 23s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11096064,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=========\\u003e
|
82
|
+
\ ] 11.1 MB/60.28 MB 23s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11624448,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=========\\u003e
|
83
|
+
\ ] 11.62 MB/60.28 MB 23s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12152832,\"total\":60276579,\"start\":1395254088},\"progress\":\"[==========\\u003e
|
84
|
+
\ ] 12.15 MB/60.28 MB 23s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12681216,\"total\":60276579,\"start\":1395254088},\"progress\":\"[==========\\u003e
|
85
|
+
\ ] 12.68 MB/60.28 MB 23s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13209600,\"total\":60276579,\"start\":1395254088},\"progress\":\"[==========\\u003e
|
86
|
+
\ ] 13.21 MB/60.28 MB 24s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13737984,\"total\":60276579,\"start\":1395254088},\"progress\":\"[===========\\u003e
|
87
|
+
\ ] 13.74 MB/60.28 MB 24s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14266368,\"total\":60276579,\"start\":1395254088},\"progress\":\"[===========\\u003e
|
88
|
+
\ ] 14.27 MB/60.28 MB 24s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14794752,\"total\":60276579,\"start\":1395254088},\"progress\":\"[============\\u003e
|
89
|
+
\ ] 14.79 MB/60.28 MB 24s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15323136,\"total\":60276579,\"start\":1395254088},\"progress\":\"[============\\u003e
|
90
|
+
\ ] 15.32 MB/60.28 MB 24s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15851520,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=============\\u003e
|
91
|
+
\ ] 15.85 MB/60.28 MB 24s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16379904,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=============\\u003e
|
92
|
+
\ ] 16.38 MB/60.28 MB 24s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16908288,\"total\":60276579,\"start\":1395254088},\"progress\":\"[==============\\u003e
|
93
|
+
\ ] 16.91 MB/60.28 MB 25s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17436672,\"total\":60276579,\"start\":1395254088},\"progress\":\"[==============\\u003e
|
94
|
+
\ ] 17.44 MB/60.28 MB 26s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17965056,\"total\":60276579,\"start\":1395254088},\"progress\":\"[==============\\u003e
|
95
|
+
\ ] 17.97 MB/60.28 MB 26s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18493440,\"total\":60276579,\"start\":1395254088},\"progress\":\"[===============\\u003e
|
96
|
+
\ ] 18.49 MB/60.28 MB 27s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19021824,\"total\":60276579,\"start\":1395254088},\"progress\":\"[===============\\u003e
|
97
|
+
\ ] 19.02 MB/60.28 MB 27s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19550208,\"total\":60276579,\"start\":1395254088},\"progress\":\"[================\\u003e
|
98
|
+
\ ] 19.55 MB/60.28 MB 27s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20078592,\"total\":60276579,\"start\":1395254088},\"progress\":\"[================\\u003e
|
99
|
+
\ ] 20.08 MB/60.28 MB 27s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20606976,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=================\\u003e
|
100
|
+
\ ] 20.61 MB/60.28 MB 27s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21135360,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=================\\u003e
|
101
|
+
\ ] 21.14 MB/60.28 MB 27s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21663744,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=================\\u003e
|
102
|
+
\ ] 21.66 MB/60.28 MB 27s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22192128,\"total\":60276579,\"start\":1395254088},\"progress\":\"[==================\\u003e
|
103
|
+
\ ] 22.19 MB/60.28 MB 27s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22720512,\"total\":60276579,\"start\":1395254088},\"progress\":\"[==================\\u003e
|
104
|
+
\ ] 22.72 MB/60.28 MB 27s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23248896,\"total\":60276579,\"start\":1395254088},\"progress\":\"[===================\\u003e
|
105
|
+
\ ] 23.25 MB/60.28 MB 27s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23777280,\"total\":60276579,\"start\":1395254088},\"progress\":\"[===================\\u003e
|
106
|
+
\ ] 23.78 MB/60.28 MB 27s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24305664,\"total\":60276579,\"start\":1395254088},\"progress\":\"[====================\\u003e
|
107
|
+
\ ] 24.31 MB/60.28 MB 27s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24834048,\"total\":60276579,\"start\":1395254088},\"progress\":\"[====================\\u003e
|
108
|
+
\ ] 24.83 MB/60.28 MB 27s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25362432,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=====================\\u003e
|
109
|
+
\ ] 25.36 MB/60.28 MB 27s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25890816,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=====================\\u003e
|
110
|
+
\ ] 25.89 MB/60.28 MB 27s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26419200,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=====================\\u003e
|
111
|
+
\ ] 26.42 MB/60.28 MB 27s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26947584,\"total\":60276579,\"start\":1395254088},\"progress\":\"[======================\\u003e
|
112
|
+
\ ] 26.95 MB/60.28 MB 26s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27475968,\"total\":60276579,\"start\":1395254088},\"progress\":\"[======================\\u003e
|
113
|
+
\ ] 27.48 MB/60.28 MB 26s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28004352,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=======================\\u003e
|
114
|
+
\ ] 28 MB/60.28 MB 26s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28532736,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=======================\\u003e
|
115
|
+
\ ] 28.53 MB/60.28 MB 26s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29061120,\"total\":60276579,\"start\":1395254088},\"progress\":\"[========================\\u003e
|
116
|
+
\ ] 29.06 MB/60.28 MB 26s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29589504,\"total\":60276579,\"start\":1395254088},\"progress\":\"[========================\\u003e
|
117
|
+
\ ] 29.59 MB/60.28 MB 26s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30117888,\"total\":60276579,\"start\":1395254088},\"progress\":\"[========================\\u003e
|
118
|
+
\ ] 30.12 MB/60.28 MB 25s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30646272,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=========================\\u003e
|
119
|
+
\ ] 30.65 MB/60.28 MB 25s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31174656,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=========================\\u003e
|
120
|
+
\ ] 31.17 MB/60.28 MB 25s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31703040,\"total\":60276579,\"start\":1395254088},\"progress\":\"[==========================\\u003e
|
121
|
+
\ ] 31.7 MB/60.28 MB 24s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32231424,\"total\":60276579,\"start\":1395254088},\"progress\":\"[==========================\\u003e
|
122
|
+
\ ] 32.23 MB/60.28 MB 24s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32759808,\"total\":60276579,\"start\":1395254088},\"progress\":\"[===========================\\u003e
|
123
|
+
\ ] 32.76 MB/60.28 MB 23s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33288192,\"total\":60276579,\"start\":1395254088},\"progress\":\"[===========================\\u003e
|
124
|
+
\ ] 33.29 MB/60.28 MB 23s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33816576,\"total\":60276579,\"start\":1395254088},\"progress\":\"[============================\\u003e
|
125
|
+
\ ] 33.82 MB/60.28 MB 22s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34344960,\"total\":60276579,\"start\":1395254088},\"progress\":\"[============================\\u003e
|
126
|
+
\ ] 34.34 MB/60.28 MB 22s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34873344,\"total\":60276579,\"start\":1395254088},\"progress\":\"[============================\\u003e
|
127
|
+
\ ] 34.87 MB/60.28 MB 21s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35401728,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=============================\\u003e
|
128
|
+
\ ] 35.4 MB/60.28 MB 21s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35930112,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=============================\\u003e
|
129
|
+
\ ] 35.93 MB/60.28 MB 20s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36458496,\"total\":60276579,\"start\":1395254088},\"progress\":\"[==============================\\u003e
|
130
|
+
\ ] 36.46 MB/60.28 MB 20s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36986880,\"total\":60276579,\"start\":1395254088},\"progress\":\"[==============================\\u003e
|
131
|
+
\ ] 36.99 MB/60.28 MB 19s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37515264,\"total\":60276579,\"start\":1395254088},\"progress\":\"[===============================\\u003e
|
132
|
+
\ ] 37.52 MB/60.28 MB 19s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38043648,\"total\":60276579,\"start\":1395254088},\"progress\":\"[===============================\\u003e
|
133
|
+
\ ] 38.04 MB/60.28 MB 19s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38572032,\"total\":60276579,\"start\":1395254088},\"progress\":\"[===============================\\u003e
|
134
|
+
\ ] 38.57 MB/60.28 MB 18s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39100416,\"total\":60276579,\"start\":1395254088},\"progress\":\"[================================\\u003e
|
135
|
+
\ ] 39.1 MB/60.28 MB 18s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39628800,\"total\":60276579,\"start\":1395254088},\"progress\":\"[================================\\u003e
|
136
|
+
\ ] 39.63 MB/60.28 MB 18s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40157184,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=================================\\u003e
|
137
|
+
\ ] 40.16 MB/60.28 MB 17s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40685568,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=================================\\u003e
|
138
|
+
\ ] 40.69 MB/60.28 MB 17s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41213952,\"total\":60276579,\"start\":1395254088},\"progress\":\"[==================================\\u003e
|
139
|
+
\ ] 41.21 MB/60.28 MB 16s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41742336,\"total\":60276579,\"start\":1395254088},\"progress\":\"[==================================\\u003e
|
140
|
+
\ ] 41.74 MB/60.28 MB 16s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42270720,\"total\":60276579,\"start\":1395254088},\"progress\":\"[===================================\\u003e
|
141
|
+
\ ] 42.27 MB/60.28 MB 15s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42799104,\"total\":60276579,\"start\":1395254088},\"progress\":\"[===================================\\u003e
|
142
|
+
\ ] 42.8 MB/60.28 MB 15s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43327488,\"total\":60276579,\"start\":1395254088},\"progress\":\"[===================================\\u003e
|
143
|
+
\ ] 43.33 MB/60.28 MB 14s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43855872,\"total\":60276579,\"start\":1395254088},\"progress\":\"[====================================\\u003e
|
144
|
+
\ ] 43.86 MB/60.28 MB 14s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44384256,\"total\":60276579,\"start\":1395254088},\"progress\":\"[====================================\\u003e
|
145
|
+
\ ] 44.38 MB/60.28 MB 13s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44912640,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=====================================\\u003e
|
146
|
+
\ ] 44.91 MB/60.28 MB 13s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45441024,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=====================================\\u003e
|
147
|
+
\ ] 45.44 MB/60.28 MB 12s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45966232,\"total\":60276579,\"start\":1395254088},\"progress\":\"[======================================\\u003e
|
148
|
+
\ ] 45.97 MB/60.28 MB 12s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46493418,\"total\":60276579,\"start\":1395254088},\"progress\":\"[======================================\\u003e
|
149
|
+
\ ] 46.49 MB/60.28 MB 11s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47021173,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=======================================\\u003e
|
150
|
+
\ ] 47.02 MB/60.28 MB 11s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47546368,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=======================================\\u003e
|
151
|
+
\ ] 47.55 MB/60.28 MB 10s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48074752,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=======================================\\u003e
|
152
|
+
\ ] 48.07 MB/60.28 MB 10s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48603136,\"total\":60276579,\"start\":1395254088},\"progress\":\"[========================================\\u003e
|
153
|
+
\ ] 48.6 MB/60.28 MB 10s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49131520,\"total\":60276579,\"start\":1395254088},\"progress\":\"[========================================\\u003e
|
154
|
+
\ ] 49.13 MB/60.28 MB 9s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49659904,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=========================================\\u003e
|
155
|
+
\ ] 49.66 MB/60.28 MB 9s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50188288,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=========================================\\u003e
|
156
|
+
\ ] 50.19 MB/60.28 MB 8s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50716672,\"total\":60276579,\"start\":1395254088},\"progress\":\"[==========================================\\u003e
|
157
|
+
\ ] 50.72 MB/60.28 MB 8s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51245056,\"total\":60276579,\"start\":1395254088},\"progress\":\"[==========================================\\u003e
|
158
|
+
\ ] 51.25 MB/60.28 MB 7s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51773037,\"total\":60276579,\"start\":1395254088},\"progress\":\"[==========================================\\u003e
|
159
|
+
\ ] 51.77 MB/60.28 MB 7s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52297728,\"total\":60276579,\"start\":1395254088},\"progress\":\"[===========================================\\u003e
|
160
|
+
\ ] 52.3 MB/60.28 MB 6s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52826112,\"total\":60276579,\"start\":1395254088},\"progress\":\"[===========================================\\u003e
|
161
|
+
\ ] 52.83 MB/60.28 MB 6s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53354496,\"total\":60276579,\"start\":1395254088},\"progress\":\"[============================================\\u003e
|
162
|
+
\ ] 53.35 MB/60.28 MB 5s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53882880,\"total\":60276579,\"start\":1395254088},\"progress\":\"[============================================\\u003e
|
163
|
+
\ ] 53.88 MB/60.28 MB 5s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54411264,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=============================================\\u003e
|
164
|
+
\ ] 54.41 MB/60.28 MB 4s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54939648,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=============================================\\u003e
|
165
|
+
\ ] 54.94 MB/60.28 MB 4s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55468033,\"total\":60276579,\"start\":1395254088},\"progress\":\"[==============================================\\u003e
|
166
|
+
\ ] 55.47 MB/60.28 MB 3s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55996416,\"total\":60276579,\"start\":1395254088},\"progress\":\"[==============================================\\u003e
|
167
|
+
\ ] 56 MB/60.28 MB 3s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56524800,\"total\":60276579,\"start\":1395254088},\"progress\":\"[==============================================\\u003e
|
168
|
+
\ ] 56.52 MB/60.28 MB 2s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57053184,\"total\":60276579,\"start\":1395254088},\"progress\":\"[===============================================\\u003e
|
169
|
+
\ ] 57.05 MB/60.28 MB 2s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57581568,\"total\":60276579,\"start\":1395254088},\"progress\":\"[===============================================\\u003e
|
170
|
+
\ ] 57.58 MB/60.28 MB 2s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58109952,\"total\":60276579,\"start\":1395254088},\"progress\":\"[================================================\\u003e
|
171
|
+
\ ] 58.11 MB/60.28 MB 1s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58638336,\"total\":60276579,\"start\":1395254088},\"progress\":\"[================================================\\u003e
|
172
|
+
\ ] 58.64 MB/60.28 MB 1s\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59166720,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=================================================\\u003e
|
173
|
+
] 59.17 MB/60.28 MB 0\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59695104,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=================================================\\u003e
|
174
|
+
] 59.7 MB/60.28 MB 0\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60223488,\"total\":60276579,\"start\":1395254088},\"progress\":\"[=================================================\\u003e
|
175
|
+
] 60.22 MB/60.28 MB 0\",\"id\":\"eb601b8965b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60276579,\"total\":60276579,\"start\":1395254088},\"progress\":\"[==================================================\\u003e]
|
176
|
+
60.28 MB/60.28 MB\",\"id\":\"eb601b8965b8\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"eb601b8965b8\"}{\"status\":\"Download
|
177
|
+
complete\",\"progressDetail\":{},\"id\":\"eb601b8965b8\"}{\"status\":\"Download
|
178
|
+
complete\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Pulling
|
179
|
+
metadata\",\"progressDetail\":{},\"id\":\"1c7f181e78b9\"}{\"status\":\"Download
|
180
|
+
complete\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Pulling
|
181
|
+
metadata\",\"progressDetail\":{},\"id\":\"6170bb7b0ad1\"}{\"status\":\"Download
|
182
|
+
complete\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Pulling
|
183
|
+
metadata\",\"progressDetail\":{},\"id\":\"7a4f87241845\"}{\"status\":\"Download
|
184
|
+
complete\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Pulling
|
185
|
+
metadata\",\"progressDetail\":{},\"id\":\"321f7f4200f4\"}{\"status\":\"Pulling
|
186
|
+
fs layer\",\"progressDetail\":{},\"id\":\"321f7f4200f4\"}{\"status\":\"Pulling
|
187
|
+
fs layer\",\"progressDetail\":{},\"id\":\"1c7f181e78b9\"}{\"status\":\"Pulling
|
188
|
+
fs layer\",\"progressDetail\":{},\"id\":\"7a4f87241845\"}{\"status\":\"Pulling
|
189
|
+
fs layer\",\"progressDetail\":{},\"id\":\"6170bb7b0ad1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10,\"total\":177,\"start\":1395254135},\"progress\":\"[==\\u003e
|
190
|
+
\ ] 10 B/177 B 16s\",\"id\":\"1c7f181e78b9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":177,\"total\":177,\"start\":1395254135},\"progress\":\"[==================================================\\u003e]
|
191
|
+
\ 177 B/177 B\",\"id\":\"1c7f181e78b9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":177,\"total\":177,\"start\":1395254135},\"progress\":\"[==================================================\\u003e]
|
192
|
+
\ 177 B/177 B\",\"id\":\"1c7f181e78b9\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"1c7f181e78b9\"}{\"status\":\"Pulling
|
193
|
+
metadata\",\"progressDetail\":{},\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10,\"total\":178,\"start\":1395254135},\"progress\":\"[==\\u003e
|
194
|
+
\ ] 10 B/178 B 19s\",\"id\":\"321f7f4200f4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":178,\"total\":178,\"start\":1395254135},\"progress\":\"[==================================================\\u003e]
|
195
|
+
\ 178 B/178 B\",\"id\":\"321f7f4200f4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":178,\"total\":178,\"start\":1395254135},\"progress\":\"[==================================================\\u003e]
|
196
|
+
\ 178 B/178 B\",\"id\":\"321f7f4200f4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10,\"total\":177,\"start\":1395254135},\"progress\":\"[==\\u003e
|
197
|
+
\ ] 10 B/177 B 19s\",\"id\":\"7a4f87241845\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":177,\"total\":177,\"start\":1395254135},\"progress\":\"[==================================================\\u003e]
|
198
|
+
\ 177 B/177 B\",\"id\":\"7a4f87241845\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":177,\"total\":177,\"start\":1395254135},\"progress\":\"[==================================================\\u003e]
|
199
|
+
\ 177 B/177 B\",\"id\":\"7a4f87241845\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"321f7f4200f4\"}{\"status\":\"Pulling
|
200
|
+
metadata\",\"progressDetail\":{},\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10,\"total\":178,\"start\":1395254136},\"progress\":\"[==\\u003e
|
201
|
+
\ ] 10 B/178 B 5s\",\"id\":\"6170bb7b0ad1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":178,\"total\":178,\"start\":1395254136},\"progress\":\"[==================================================\\u003e]
|
202
|
+
\ 178 B/178 B\",\"id\":\"6170bb7b0ad1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":178,\"total\":178,\"start\":1395254136},\"progress\":\"[==================================================\\u003e]
|
203
|
+
\ 178 B/178 B\",\"id\":\"6170bb7b0ad1\"}{\"status\":\"Pulling fs layer\",\"progressDetail\":{},\"id\":\"9f676bd305a4\"}{\"status\":\"Download
|
204
|
+
complete\",\"progressDetail\":{},\"id\":\"7a4f87241845\"}{\"status\":\"Pulling
|
205
|
+
metadata\",\"progressDetail\":{},\"id\":\"9cc9ea5ea540\"}{\"status\":\"Pulling
|
206
|
+
fs layer\",\"progressDetail\":{},\"id\":\"5ac751e8d623\"}{\"status\":\"Download
|
207
|
+
complete\",\"progressDetail\":{},\"id\":\"6170bb7b0ad1\"}{\"status\":\"Pulling
|
208
|
+
metadata\",\"progressDetail\":{},\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":528384,\"total\":62781611,\"start\":1395254136},\"progress\":\"[\\u003e
|
209
|
+
\ ] 528.4 kB/62.78 MB 1m42s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Pulling
|
210
|
+
fs layer\",\"progressDetail\":{},\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1056768,\"total\":62781611,\"start\":1395254136},\"progress\":\"[\\u003e
|
211
|
+
\ ] 1.057 MB/62.78 MB 1m3s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":528384,\"total\":58083269,\"start\":1395254136},\"progress\":\"[\\u003e
|
212
|
+
\ ] 528.4 kB/58.08 MB 2m4s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1585152,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=\\u003e
|
213
|
+
\ ] 1.585 MB/62.78 MB 48s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1056768,\"total\":58083269,\"start\":1395254136},\"progress\":\"[\\u003e
|
214
|
+
\ ] 1.057 MB/58.08 MB 1m16s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2113536,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=\\u003e
|
215
|
+
\ ] 2.114 MB/62.78 MB 41s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Pulling
|
216
|
+
fs layer\",\"progressDetail\":{},\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2641920,\"total\":62781611,\"start\":1395254136},\"progress\":\"[==\\u003e
|
217
|
+
\ ] 2.642 MB/62.78 MB 36s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":528384,\"total\":67295982,\"start\":1395254137},\"progress\":\"[\\u003e
|
218
|
+
\ ] 528.4 kB/67.3 MB 1m28s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1585152,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=\\u003e
|
219
|
+
\ ] 1.585 MB/58.08 MB 1m1s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3170304,\"total\":62781611,\"start\":1395254136},\"progress\":\"[==\\u003e
|
220
|
+
\ ] 3.17 MB/62.78 MB 33s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2113536,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=\\u003e
|
221
|
+
\ ] 2.114 MB/58.08 MB 51s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3698688,\"total\":62781611,\"start\":1395254136},\"progress\":\"[==\\u003e
|
222
|
+
\ ] 3.699 MB/62.78 MB 31s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1056768,\"total\":67295982,\"start\":1395254137},\"progress\":\"[\\u003e
|
223
|
+
\ ] 1.057 MB/67.3 MB 1m10s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4227072,\"total\":62781611,\"start\":1395254136},\"progress\":\"[===\\u003e
|
224
|
+
\ ] 4.227 MB/62.78 MB 29s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2641920,\"total\":58083269,\"start\":1395254136},\"progress\":\"[==\\u003e
|
225
|
+
\ ] 2.642 MB/58.08 MB 46s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4755456,\"total\":62781611,\"start\":1395254136},\"progress\":\"[===\\u003e
|
226
|
+
\ ] 4.755 MB/62.78 MB 29s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1585152,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=\\u003e
|
227
|
+
\ ] 1.585 MB/67.3 MB 1m2s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3170304,\"total\":58083269,\"start\":1395254136},\"progress\":\"[==\\u003e
|
228
|
+
\ ] 3.17 MB/58.08 MB 44s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5283840,\"total\":62781611,\"start\":1395254136},\"progress\":\"[====\\u003e
|
229
|
+
\ ] 5.284 MB/62.78 MB 28s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2113536,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=\\u003e
|
230
|
+
\ ] 2.114 MB/67.3 MB 55s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5812224,\"total\":62781611,\"start\":1395254136},\"progress\":\"[====\\u003e
|
231
|
+
\ ] 5.812 MB/62.78 MB 27s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":528384,\"total\":63561414,\"start\":1395254137},\"progress\":\"[\\u003e
|
232
|
+
\ ] 528.4 kB/63.56 MB 3m38s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3698688,\"total\":58083269,\"start\":1395254136},\"progress\":\"[===\\u003e
|
233
|
+
\ ] 3.699 MB/58.08 MB 41s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4227072,\"total\":58083269,\"start\":1395254136},\"progress\":\"[===\\u003e
|
234
|
+
\ ] 4.227 MB/58.08 MB 39s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2641920,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=\\u003e
|
235
|
+
\ ] 2.642 MB/67.3 MB 52s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6340608,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=====\\u003e
|
236
|
+
\ ] 6.341 MB/62.78 MB 28s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6868992,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=====\\u003e
|
237
|
+
\ ] 6.869 MB/62.78 MB 26s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4755456,\"total\":58083269,\"start\":1395254136},\"progress\":\"[====\\u003e
|
238
|
+
\ ] 4.755 MB/58.08 MB 37s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1056768,\"total\":63561414,\"start\":1395254137},\"progress\":\"[\\u003e
|
239
|
+
\ ] 1.057 MB/63.56 MB 2m19s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3170304,\"total\":67295982,\"start\":1395254137},\"progress\":\"[==\\u003e
|
240
|
+
\ ] 3.17 MB/67.3 MB 49s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7397376,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=====\\u003e
|
241
|
+
\ ] 7.397 MB/62.78 MB 27s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5283840,\"total\":58083269,\"start\":1395254136},\"progress\":\"[====\\u003e
|
242
|
+
\ ] 5.284 MB/58.08 MB 36s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1585152,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=\\u003e
|
243
|
+
\ ] 1.585 MB/63.56 MB 1m48s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3698688,\"total\":67295982,\"start\":1395254137},\"progress\":\"[==\\u003e
|
244
|
+
\ ] 3.699 MB/67.3 MB 48s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5812224,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=====\\u003e
|
245
|
+
\ ] 5.812 MB/58.08 MB 35s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7925760,\"total\":62781611,\"start\":1395254136},\"progress\":\"[======\\u003e
|
246
|
+
\ ] 7.926 MB/62.78 MB 27s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2113536,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=\\u003e
|
247
|
+
\ ] 2.114 MB/63.56 MB 1m27s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6340608,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=====\\u003e
|
248
|
+
\ ] 6.341 MB/58.08 MB 33s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4227072,\"total\":67295982,\"start\":1395254137},\"progress\":\"[===\\u003e
|
249
|
+
\ ] 4.227 MB/67.3 MB 47s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8454144,\"total\":62781611,\"start\":1395254136},\"progress\":\"[======\\u003e
|
250
|
+
\ ] 8.454 MB/62.78 MB 27s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6868992,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=====\\u003e
|
251
|
+
\ ] 6.869 MB/58.08 MB 32s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2641920,\"total\":63561414,\"start\":1395254137},\"progress\":\"[==\\u003e
|
252
|
+
\ ] 2.642 MB/63.56 MB 1m17s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7397376,\"total\":58083269,\"start\":1395254136},\"progress\":\"[======\\u003e
|
253
|
+
\ ] 7.397 MB/58.08 MB 30s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8982528,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=======\\u003e
|
254
|
+
\ ] 8.983 MB/62.78 MB 27s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7925760,\"total\":58083269,\"start\":1395254136},\"progress\":\"[======\\u003e
|
255
|
+
\ ] 7.926 MB/58.08 MB 29s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4755456,\"total\":67295982,\"start\":1395254137},\"progress\":\"[===\\u003e
|
256
|
+
\ ] 4.755 MB/67.3 MB 49s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3170304,\"total\":63561414,\"start\":1395254137},\"progress\":\"[==\\u003e
|
257
|
+
\ ] 3.17 MB/63.56 MB 1m12s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9510912,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=======\\u003e
|
258
|
+
\ ] 9.511 MB/62.78 MB 26s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8454144,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=======\\u003e
|
259
|
+
\ ] 8.454 MB/58.08 MB 28s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8982528,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=======\\u003e
|
260
|
+
\ ] 8.983 MB/58.08 MB 27s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3698688,\"total\":63561414,\"start\":1395254137},\"progress\":\"[==\\u003e
|
261
|
+
\ ] 3.699 MB/63.56 MB 1m6s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10039296,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=======\\u003e
|
262
|
+
\ ] 10.04 MB/62.78 MB 27s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9510912,\"total\":58083269,\"start\":1395254136},\"progress\":\"[========\\u003e
|
263
|
+
\ ] 9.511 MB/58.08 MB 27s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5283840,\"total\":67295982,\"start\":1395254137},\"progress\":\"[===\\u003e
|
264
|
+
\ ] 5.284 MB/67.3 MB 50s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4227072,\"total\":63561414,\"start\":1395254137},\"progress\":\"[===\\u003e
|
265
|
+
\ ] 4.227 MB/63.56 MB 1m2s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10567680,\"total\":62781611,\"start\":1395254136},\"progress\":\"[========\\u003e
|
266
|
+
\ ] 10.57 MB/62.78 MB 27s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10039296,\"total\":58083269,\"start\":1395254136},\"progress\":\"[========\\u003e
|
267
|
+
\ ] 10.04 MB/58.08 MB 26s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4755456,\"total\":63561414,\"start\":1395254137},\"progress\":\"[===\\u003e
|
268
|
+
\ ] 4.755 MB/63.56 MB 58s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5812224,\"total\":67295982,\"start\":1395254137},\"progress\":\"[====\\u003e
|
269
|
+
\ ] 5.812 MB/67.3 MB 50s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10567680,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=========\\u003e
|
270
|
+
\ ] 10.57 MB/58.08 MB 26s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11096064,\"total\":62781611,\"start\":1395254136},\"progress\":\"[========\\u003e
|
271
|
+
\ ] 11.1 MB/62.78 MB 27s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5283840,\"total\":63561414,\"start\":1395254137},\"progress\":\"[====\\u003e
|
272
|
+
\ ] 5.284 MB/63.56 MB 55s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5812224,\"total\":63561414,\"start\":1395254137},\"progress\":\"[====\\u003e
|
273
|
+
\ ] 5.812 MB/63.56 MB 52s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6340608,\"total\":67295982,\"start\":1395254137},\"progress\":\"[====\\u003e
|
274
|
+
\ ] 6.341 MB/67.3 MB 50s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11624448,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=========\\u003e
|
275
|
+
\ ] 11.62 MB/62.78 MB 27s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11096064,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=========\\u003e
|
276
|
+
\ ] 11.1 MB/58.08 MB 26s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6340608,\"total\":63561414,\"start\":1395254137},\"progress\":\"[====\\u003e
|
277
|
+
\ ] 6.341 MB/63.56 MB 49s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12152832,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=========\\u003e
|
278
|
+
\ ] 12.15 MB/62.78 MB 27s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11624448,\"total\":58083269,\"start\":1395254136},\"progress\":\"[==========\\u003e
|
279
|
+
\ ] 11.62 MB/58.08 MB 26s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6868992,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=====\\u003e
|
280
|
+
\ ] 6.869 MB/67.3 MB 49s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6868992,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=====\\u003e
|
281
|
+
\ ] 6.869 MB/63.56 MB 47s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12681216,\"total\":62781611,\"start\":1395254136},\"progress\":\"[==========\\u003e
|
282
|
+
\ ] 12.68 MB/62.78 MB 27s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12152832,\"total\":58083269,\"start\":1395254136},\"progress\":\"[==========\\u003e
|
283
|
+
\ ] 12.15 MB/58.08 MB 26s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7397376,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=====\\u003e
|
284
|
+
\ ] 7.397 MB/63.56 MB 45s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13209600,\"total\":62781611,\"start\":1395254136},\"progress\":\"[==========\\u003e
|
285
|
+
\ ] 13.21 MB/62.78 MB 26s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12681216,\"total\":58083269,\"start\":1395254136},\"progress\":\"[==========\\u003e
|
286
|
+
\ ] 12.68 MB/58.08 MB 25s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7397376,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=====\\u003e
|
287
|
+
\ ] 7.397 MB/67.3 MB 50s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13737984,\"total\":62781611,\"start\":1395254136},\"progress\":\"[==========\\u003e
|
288
|
+
\ ] 13.74 MB/62.78 MB 26s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13209600,\"total\":58083269,\"start\":1395254136},\"progress\":\"[===========\\u003e
|
289
|
+
\ ] 13.21 MB/58.08 MB 25s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7925760,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=====\\u003e
|
290
|
+
\ ] 7.926 MB/67.3 MB 49s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14266368,\"total\":62781611,\"start\":1395254136},\"progress\":\"[===========\\u003e
|
291
|
+
\ ] 14.27 MB/62.78 MB 26s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7925760,\"total\":63561414,\"start\":1395254137},\"progress\":\"[======\\u003e
|
292
|
+
\ ] 7.926 MB/63.56 MB 47s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13737984,\"total\":58083269,\"start\":1395254136},\"progress\":\"[===========\\u003e
|
293
|
+
\ ] 13.74 MB/58.08 MB 25s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8454144,\"total\":63561414,\"start\":1395254137},\"progress\":\"[======\\u003e
|
294
|
+
\ ] 8.454 MB/63.56 MB 45s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8454144,\"total\":67295982,\"start\":1395254137},\"progress\":\"[======\\u003e
|
295
|
+
\ ] 8.454 MB/67.3 MB 49s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8982528,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=======\\u003e
|
296
|
+
\ ] 8.983 MB/63.56 MB 44s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14266368,\"total\":58083269,\"start\":1395254136},\"progress\":\"[============\\u003e
|
297
|
+
\ ] 14.27 MB/58.08 MB 25s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9510912,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=======\\u003e
|
298
|
+
\ ] 9.511 MB/63.56 MB 42s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8982528,\"total\":67295982,\"start\":1395254137},\"progress\":\"[======\\u003e
|
299
|
+
\ ] 8.983 MB/67.3 MB 48s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14794752,\"total\":62781611,\"start\":1395254136},\"progress\":\"[===========\\u003e
|
300
|
+
\ ] 14.79 MB/62.78 MB 28s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9510912,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=======\\u003e
|
301
|
+
\ ] 9.511 MB/67.3 MB 47s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10039296,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=======\\u003e
|
302
|
+
\ ] 10.04 MB/63.56 MB 41s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15323136,\"total\":62781611,\"start\":1395254136},\"progress\":\"[============\\u003e
|
303
|
+
\ ] 15.32 MB/62.78 MB 28s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14794752,\"total\":58083269,\"start\":1395254136},\"progress\":\"[============\\u003e
|
304
|
+
\ ] 14.79 MB/58.08 MB 26s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10567680,\"total\":63561414,\"start\":1395254137},\"progress\":\"[========\\u003e
|
305
|
+
\ ] 10.57 MB/63.56 MB 40s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10039296,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=======\\u003e
|
306
|
+
\ ] 10.04 MB/67.3 MB 46s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15851520,\"total\":62781611,\"start\":1395254136},\"progress\":\"[============\\u003e
|
307
|
+
\ ] 15.85 MB/62.78 MB 27s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15323136,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=============\\u003e
|
308
|
+
\ ] 15.32 MB/58.08 MB 26s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11096064,\"total\":63561414,\"start\":1395254137},\"progress\":\"[========\\u003e
|
309
|
+
\ ] 11.1 MB/63.56 MB 39s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16379904,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=============\\u003e
|
310
|
+
\ ] 16.38 MB/62.78 MB 26s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10567680,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=======\\u003e
|
311
|
+
\ ] 10.57 MB/67.3 MB 46s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15851520,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=============\\u003e
|
312
|
+
\ ] 15.85 MB/58.08 MB 25s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16908288,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=============\\u003e
|
313
|
+
\ ] 16.91 MB/62.78 MB 26s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11624448,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=========\\u003e
|
314
|
+
\ ] 11.62 MB/63.56 MB 38s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17436672,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=============\\u003e
|
315
|
+
\ ] 17.44 MB/62.78 MB 25s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16379904,\"total\":58083269,\"start\":1395254136},\"progress\":\"[==============\\u003e
|
316
|
+
\ ] 16.38 MB/58.08 MB 25s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11096064,\"total\":67295982,\"start\":1395254137},\"progress\":\"[========\\u003e
|
317
|
+
\ ] 11.1 MB/67.3 MB 45s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17965056,\"total\":62781611,\"start\":1395254136},\"progress\":\"[==============\\u003e
|
318
|
+
\ ] 17.97 MB/62.78 MB 24s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12152832,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=========\\u003e
|
319
|
+
\ ] 12.15 MB/63.56 MB 38s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16908288,\"total\":58083269,\"start\":1395254136},\"progress\":\"[==============\\u003e
|
320
|
+
\ ] 16.91 MB/58.08 MB 24s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12681216,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=========\\u003e
|
321
|
+
\ ] 12.68 MB/63.56 MB 36s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17436672,\"total\":58083269,\"start\":1395254136},\"progress\":\"[===============\\u003e
|
322
|
+
\ ] 17.44 MB/58.08 MB 23s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18493440,\"total\":62781611,\"start\":1395254136},\"progress\":\"[==============\\u003e
|
323
|
+
\ ] 18.49 MB/62.78 MB 24s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13209600,\"total\":63561414,\"start\":1395254137},\"progress\":\"[==========\\u003e
|
324
|
+
\ ] 13.21 MB/63.56 MB 35s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11624448,\"total\":67295982,\"start\":1395254137},\"progress\":\"[========\\u003e
|
325
|
+
\ ] 11.62 MB/67.3 MB 44s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13737984,\"total\":63561414,\"start\":1395254137},\"progress\":\"[==========\\u003e
|
326
|
+
\ ] 13.74 MB/63.56 MB 34s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17965056,\"total\":58083269,\"start\":1395254136},\"progress\":\"[===============\\u003e
|
327
|
+
\ ] 17.97 MB/58.08 MB 23s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19021824,\"total\":62781611,\"start\":1395254136},\"progress\":\"[===============\\u003e
|
328
|
+
\ ] 19.02 MB/62.78 MB 24s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12152832,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=========\\u003e
|
329
|
+
\ ] 12.15 MB/67.3 MB 43s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14266368,\"total\":63561414,\"start\":1395254137},\"progress\":\"[===========\\u003e
|
330
|
+
\ ] 14.27 MB/63.56 MB 33s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18493440,\"total\":58083269,\"start\":1395254136},\"progress\":\"[===============\\u003e
|
331
|
+
\ ] 18.49 MB/58.08 MB 23s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19550208,\"total\":62781611,\"start\":1395254136},\"progress\":\"[===============\\u003e
|
332
|
+
\ ] 19.55 MB/62.78 MB 24s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12681216,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=========\\u003e
|
333
|
+
\ ] 12.68 MB/67.3 MB 43s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14794752,\"total\":63561414,\"start\":1395254137},\"progress\":\"[===========\\u003e
|
334
|
+
\ ] 14.79 MB/63.56 MB 33s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19021824,\"total\":58083269,\"start\":1395254136},\"progress\":\"[================\\u003e
|
335
|
+
\ ] 19.02 MB/58.08 MB 23s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20078592,\"total\":62781611,\"start\":1395254136},\"progress\":\"[===============\\u003e
|
336
|
+
\ ] 20.08 MB/62.78 MB 24s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13209600,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=========\\u003e
|
337
|
+
\ ] 13.21 MB/67.3 MB 42s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15323136,\"total\":63561414,\"start\":1395254137},\"progress\":\"[============\\u003e
|
338
|
+
\ ] 15.32 MB/63.56 MB 32s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19550208,\"total\":58083269,\"start\":1395254136},\"progress\":\"[================\\u003e
|
339
|
+
\ ] 19.55 MB/58.08 MB 22s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20606976,\"total\":62781611,\"start\":1395254136},\"progress\":\"[================\\u003e
|
340
|
+
\ ] 20.61 MB/62.78 MB 23s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13737984,\"total\":67295982,\"start\":1395254137},\"progress\":\"[==========\\u003e
|
341
|
+
\ ] 13.74 MB/67.3 MB 41s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15851520,\"total\":63561414,\"start\":1395254137},\"progress\":\"[============\\u003e
|
342
|
+
\ ] 15.85 MB/63.56 MB 32s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21135360,\"total\":62781611,\"start\":1395254136},\"progress\":\"[================\\u003e
|
343
|
+
\ ] 21.14 MB/62.78 MB 23s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20078592,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=================\\u003e
|
344
|
+
\ ] 20.08 MB/58.08 MB 22s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14266368,\"total\":67295982,\"start\":1395254137},\"progress\":\"[==========\\u003e
|
345
|
+
\ ] 14.27 MB/67.3 MB 40s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20606976,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=================\\u003e
|
346
|
+
\ ] 20.61 MB/58.08 MB 22s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21663744,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=================\\u003e
|
347
|
+
\ ] 21.66 MB/62.78 MB 23s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16379904,\"total\":63561414,\"start\":1395254137},\"progress\":\"[============\\u003e
|
348
|
+
\ ] 16.38 MB/63.56 MB 32s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14794752,\"total\":67295982,\"start\":1395254137},\"progress\":\"[==========\\u003e
|
349
|
+
\ ] 14.79 MB/67.3 MB 40s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21135360,\"total\":58083269,\"start\":1395254136},\"progress\":\"[==================\\u003e
|
350
|
+
\ ] 21.14 MB/58.08 MB 21s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22192128,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=================\\u003e
|
351
|
+
\ ] 22.19 MB/62.78 MB 22s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16908288,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=============\\u003e
|
352
|
+
\ ] 16.91 MB/63.56 MB 31s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15323136,\"total\":67295982,\"start\":1395254137},\"progress\":\"[===========\\u003e
|
353
|
+
\ ] 15.32 MB/67.3 MB 39s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21663744,\"total\":58083269,\"start\":1395254136},\"progress\":\"[==================\\u003e
|
354
|
+
\ ] 21.66 MB/58.08 MB 21s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22720512,\"total\":62781611,\"start\":1395254136},\"progress\":\"[==================\\u003e
|
355
|
+
\ ] 22.72 MB/62.78 MB 22s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15851520,\"total\":67295982,\"start\":1395254137},\"progress\":\"[===========\\u003e
|
356
|
+
\ ] 15.85 MB/67.3 MB 38s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22192128,\"total\":58083269,\"start\":1395254136},\"progress\":\"[===================\\u003e
|
357
|
+
\ ] 22.19 MB/58.08 MB 21s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17436672,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=============\\u003e
|
358
|
+
\ ] 17.44 MB/63.56 MB 31s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16379904,\"total\":67295982,\"start\":1395254137},\"progress\":\"[============\\u003e
|
359
|
+
\ ] 16.38 MB/67.3 MB 38s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23248896,\"total\":62781611,\"start\":1395254136},\"progress\":\"[==================\\u003e
|
360
|
+
\ ] 23.25 MB/62.78 MB 22s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22720512,\"total\":58083269,\"start\":1395254136},\"progress\":\"[===================\\u003e
|
361
|
+
\ ] 22.72 MB/58.08 MB 20s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17965056,\"total\":63561414,\"start\":1395254137},\"progress\":\"[==============\\u003e
|
362
|
+
\ ] 17.97 MB/63.56 MB 31s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16908288,\"total\":67295982,\"start\":1395254137},\"progress\":\"[============\\u003e
|
363
|
+
\ ] 16.91 MB/67.3 MB 37s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23248896,\"total\":58083269,\"start\":1395254136},\"progress\":\"[====================\\u003e
|
364
|
+
\ ] 23.25 MB/58.08 MB 20s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23777280,\"total\":62781611,\"start\":1395254136},\"progress\":\"[==================\\u003e
|
365
|
+
\ ] 23.78 MB/62.78 MB 22s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23777280,\"total\":58083269,\"start\":1395254136},\"progress\":\"[====================\\u003e
|
366
|
+
\ ] 23.78 MB/58.08 MB 19s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17436672,\"total\":67295982,\"start\":1395254137},\"progress\":\"[============\\u003e
|
367
|
+
\ ] 17.44 MB/67.3 MB 36s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18493440,\"total\":63561414,\"start\":1395254137},\"progress\":\"[==============\\u003e
|
368
|
+
\ ] 18.49 MB/63.56 MB 31s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24305664,\"total\":58083269,\"start\":1395254136},\"progress\":\"[====================\\u003e
|
369
|
+
\ ] 24.31 MB/58.08 MB 19s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24305664,\"total\":62781611,\"start\":1395254136},\"progress\":\"[===================\\u003e
|
370
|
+
\ ] 24.31 MB/62.78 MB 22s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24834048,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=====================\\u003e
|
371
|
+
\ ] 24.83 MB/58.08 MB 18s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17965056,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=============\\u003e
|
372
|
+
\ ] 17.97 MB/67.3 MB 35s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19021824,\"total\":63561414,\"start\":1395254137},\"progress\":\"[==============\\u003e
|
373
|
+
\ ] 19.02 MB/63.56 MB 30s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24834048,\"total\":62781611,\"start\":1395254136},\"progress\":\"[===================\\u003e
|
374
|
+
\ ] 24.83 MB/62.78 MB 21s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25362432,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=====================\\u003e
|
375
|
+
\ ] 25.36 MB/58.08 MB 18s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18493440,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=============\\u003e
|
376
|
+
\ ] 18.49 MB/67.3 MB 35s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19550208,\"total\":63561414,\"start\":1395254137},\"progress\":\"[===============\\u003e
|
377
|
+
\ ] 19.55 MB/63.56 MB 30s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25362432,\"total\":62781611,\"start\":1395254136},\"progress\":\"[====================\\u003e
|
378
|
+
\ ] 25.36 MB/62.78 MB 21s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19021824,\"total\":67295982,\"start\":1395254137},\"progress\":\"[==============\\u003e
|
379
|
+
\ ] 19.02 MB/67.3 MB 34s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25890816,\"total\":58083269,\"start\":1395254136},\"progress\":\"[======================\\u003e
|
380
|
+
\ ] 25.89 MB/58.08 MB 18s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26419200,\"total\":58083269,\"start\":1395254136},\"progress\":\"[======================\\u003e
|
381
|
+
\ ] 26.42 MB/58.08 MB 17s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20078592,\"total\":63561414,\"start\":1395254137},\"progress\":\"[===============\\u003e
|
382
|
+
\ ] 20.08 MB/63.56 MB 30s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25890816,\"total\":62781611,\"start\":1395254136},\"progress\":\"[====================\\u003e
|
383
|
+
\ ] 25.89 MB/62.78 MB 21s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26947584,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=======================\\u003e
|
384
|
+
\ ] 26.95 MB/58.08 MB 17s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19550208,\"total\":67295982,\"start\":1395254137},\"progress\":\"[==============\\u003e
|
385
|
+
\ ] 19.55 MB/67.3 MB 34s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27475968,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=======================\\u003e
|
386
|
+
\ ] 27.48 MB/58.08 MB 16s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20606976,\"total\":63561414,\"start\":1395254137},\"progress\":\"[================\\u003e
|
387
|
+
\ ] 20.61 MB/63.56 MB 29s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26419200,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=====================\\u003e
|
388
|
+
\ ] 26.42 MB/62.78 MB 21s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28004352,\"total\":58083269,\"start\":1395254136},\"progress\":\"[========================\\u003e
|
389
|
+
\ ] 28 MB/58.08 MB 16s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20078592,\"total\":67295982,\"start\":1395254137},\"progress\":\"[==============\\u003e
|
390
|
+
\ ] 20.08 MB/67.3 MB 33s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28532736,\"total\":58083269,\"start\":1395254136},\"progress\":\"[========================\\u003e
|
391
|
+
\ ] 28.53 MB/58.08 MB 16s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26947584,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=====================\\u003e
|
392
|
+
\ ] 26.95 MB/62.78 MB 20s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21135360,\"total\":63561414,\"start\":1395254137},\"progress\":\"[================\\u003e
|
393
|
+
\ ] 21.14 MB/63.56 MB 29s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29061120,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=========================\\u003e
|
394
|
+
\ ] 29.06 MB/58.08 MB 15s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20606976,\"total\":67295982,\"start\":1395254137},\"progress\":\"[===============\\u003e
|
395
|
+
\ ] 20.61 MB/67.3 MB 33s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27475968,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=====================\\u003e
|
396
|
+
\ ] 27.48 MB/62.78 MB 20s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29589504,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=========================\\u003e
|
397
|
+
\ ] 29.59 MB/58.08 MB 15s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21663744,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=================\\u003e
|
398
|
+
\ ] 21.66 MB/63.56 MB 29s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30117888,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=========================\\u003e
|
399
|
+
\ ] 30.12 MB/58.08 MB 15s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28004352,\"total\":62781611,\"start\":1395254136},\"progress\":\"[======================\\u003e
|
400
|
+
\ ] 28 MB/62.78 MB 20s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21135360,\"total\":67295982,\"start\":1395254137},\"progress\":\"[===============\\u003e
|
401
|
+
\ ] 21.14 MB/67.3 MB 33s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22192128,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=================\\u003e
|
402
|
+
\ ] 22.19 MB/63.56 MB 28s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30646272,\"total\":58083269,\"start\":1395254136},\"progress\":\"[==========================\\u003e
|
403
|
+
\ ] 30.65 MB/58.08 MB 14s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28532736,\"total\":62781611,\"start\":1395254136},\"progress\":\"[======================\\u003e
|
404
|
+
\ ] 28.53 MB/62.78 MB 20s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31174656,\"total\":58083269,\"start\":1395254136},\"progress\":\"[==========================\\u003e
|
405
|
+
\ ] 31.17 MB/58.08 MB 14s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22720512,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=================\\u003e
|
406
|
+
\ ] 22.72 MB/63.56 MB 28s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21663744,\"total\":67295982,\"start\":1395254137},\"progress\":\"[================\\u003e
|
407
|
+
\ ] 21.66 MB/67.3 MB 33s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29061120,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=======================\\u003e
|
408
|
+
\ ] 29.06 MB/62.78 MB 19s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31703040,\"total\":58083269,\"start\":1395254136},\"progress\":\"[===========================\\u003e
|
409
|
+
\ ] 31.7 MB/58.08 MB 14s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32231424,\"total\":58083269,\"start\":1395254136},\"progress\":\"[===========================\\u003e
|
410
|
+
\ ] 32.23 MB/58.08 MB 13s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29589504,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=======================\\u003e
|
411
|
+
\ ] 29.59 MB/62.78 MB 19s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32759808,\"total\":58083269,\"start\":1395254136},\"progress\":\"[============================\\u003e
|
412
|
+
\ ] 32.76 MB/58.08 MB 13s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23248896,\"total\":63561414,\"start\":1395254137},\"progress\":\"[==================\\u003e
|
413
|
+
\ ] 23.25 MB/63.56 MB 28s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30117888,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=======================\\u003e
|
414
|
+
\ ] 30.12 MB/62.78 MB 19s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33288192,\"total\":58083269,\"start\":1395254136},\"progress\":\"[============================\\u003e
|
415
|
+
\ ] 33.29 MB/58.08 MB 13s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22192128,\"total\":67295982,\"start\":1395254137},\"progress\":\"[================\\u003e
|
416
|
+
\ ] 22.19 MB/67.3 MB 33s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23777280,\"total\":63561414,\"start\":1395254137},\"progress\":\"[==================\\u003e
|
417
|
+
\ ] 23.78 MB/63.56 MB 28s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33816576,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=============================\\u003e
|
418
|
+
\ ] 33.82 MB/58.08 MB 12s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22720512,\"total\":67295982,\"start\":1395254137},\"progress\":\"[================\\u003e
|
419
|
+
\ ] 22.72 MB/67.3 MB 33s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30646272,\"total\":62781611,\"start\":1395254136},\"progress\":\"[========================\\u003e
|
420
|
+
\ ] 30.65 MB/62.78 MB 18s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24305664,\"total\":63561414,\"start\":1395254137},\"progress\":\"[===================\\u003e
|
421
|
+
\ ] 24.31 MB/63.56 MB 27s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34344960,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=============================\\u003e
|
422
|
+
\ ] 34.34 MB/58.08 MB 12s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23248896,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=================\\u003e
|
423
|
+
\ ] 23.25 MB/67.3 MB 32s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24834048,\"total\":63561414,\"start\":1395254137},\"progress\":\"[===================\\u003e
|
424
|
+
\ ] 24.83 MB/63.56 MB 26s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31174656,\"total\":62781611,\"start\":1395254136},\"progress\":\"[========================\\u003e
|
425
|
+
\ ] 31.17 MB/62.78 MB 18s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34873344,\"total\":58083269,\"start\":1395254136},\"progress\":\"[==============================\\u003e
|
426
|
+
\ ] 34.87 MB/58.08 MB 12s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23777280,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=================\\u003e
|
427
|
+
\ ] 23.78 MB/67.3 MB 31s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35401728,\"total\":58083269,\"start\":1395254136},\"progress\":\"[==============================\\u003e
|
428
|
+
\ ] 35.4 MB/58.08 MB 11s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31703040,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=========================\\u003e
|
429
|
+
\ ] 31.7 MB/62.78 MB 18s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25362432,\"total\":63561414,\"start\":1395254137},\"progress\":\"[===================\\u003e
|
430
|
+
\ ] 25.36 MB/63.56 MB 26s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35930112,\"total\":58083269,\"start\":1395254136},\"progress\":\"[==============================\\u003e
|
431
|
+
\ ] 35.93 MB/58.08 MB 11s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24305664,\"total\":67295982,\"start\":1395254137},\"progress\":\"[==================\\u003e
|
432
|
+
\ ] 24.31 MB/67.3 MB 31s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32231424,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=========================\\u003e
|
433
|
+
\ ] 32.23 MB/62.78 MB 17s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25890816,\"total\":63561414,\"start\":1395254137},\"progress\":\"[====================\\u003e
|
434
|
+
\ ] 25.89 MB/63.56 MB 26s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36458496,\"total\":58083269,\"start\":1395254136},\"progress\":\"[===============================\\u003e
|
435
|
+
\ ] 36.46 MB/58.08 MB 11s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32759808,\"total\":62781611,\"start\":1395254136},\"progress\":\"[==========================\\u003e
|
436
|
+
\ ] 32.76 MB/62.78 MB 17s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36986880,\"total\":58083269,\"start\":1395254136},\"progress\":\"[===============================\\u003e
|
437
|
+
\ ] 36.99 MB/58.08 MB 11s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26419200,\"total\":63561414,\"start\":1395254137},\"progress\":\"[====================\\u003e
|
438
|
+
\ ] 26.42 MB/63.56 MB 25s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33288192,\"total\":62781611,\"start\":1395254136},\"progress\":\"[==========================\\u003e
|
439
|
+
\ ] 33.29 MB/62.78 MB 17s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37515264,\"total\":58083269,\"start\":1395254136},\"progress\":\"[================================\\u003e
|
440
|
+
\ ] 37.52 MB/58.08 MB 10s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38043648,\"total\":58083269,\"start\":1395254136},\"progress\":\"[================================\\u003e
|
441
|
+
\ ] 38.04 MB/58.08 MB 10s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24834048,\"total\":67295982,\"start\":1395254137},\"progress\":\"[==================\\u003e
|
442
|
+
\ ] 24.83 MB/67.3 MB 31s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26947584,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=====================\\u003e
|
443
|
+
\ ] 26.95 MB/63.56 MB 25s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25362432,\"total\":67295982,\"start\":1395254137},\"progress\":\"[==================\\u003e
|
444
|
+
\ ] 25.36 MB/67.3 MB 30s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38572032,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=================================\\u003e
|
445
|
+
\ ] 38.57 MB/58.08 MB 10s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33816576,\"total\":62781611,\"start\":1395254136},\"progress\":\"[==========================\\u003e
|
446
|
+
\ ] 33.82 MB/62.78 MB 17s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27475968,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=====================\\u003e
|
447
|
+
\ ] 27.48 MB/63.56 MB 25s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39100416,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=================================\\u003e
|
448
|
+
\ ] 39.1 MB/58.08 MB 9s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25890816,\"total\":67295982,\"start\":1395254137},\"progress\":\"[===================\\u003e
|
449
|
+
\ ] 25.89 MB/67.3 MB 30s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34344960,\"total\":62781611,\"start\":1395254136},\"progress\":\"[===========================\\u003e
|
450
|
+
\ ] 34.34 MB/62.78 MB 16s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34873344,\"total\":62781611,\"start\":1395254136},\"progress\":\"[===========================\\u003e
|
451
|
+
\ ] 34.87 MB/62.78 MB 16s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28004352,\"total\":63561414,\"start\":1395254137},\"progress\":\"[======================\\u003e
|
452
|
+
\ ] 28 MB/63.56 MB 24s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39628800,\"total\":58083269,\"start\":1395254136},\"progress\":\"[==================================\\u003e
|
453
|
+
\ ] 39.63 MB/58.08 MB 9s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26419200,\"total\":67295982,\"start\":1395254137},\"progress\":\"[===================\\u003e
|
454
|
+
\ ] 26.42 MB/67.3 MB 30s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35401728,\"total\":62781611,\"start\":1395254136},\"progress\":\"[============================\\u003e
|
455
|
+
\ ] 35.4 MB/62.78 MB 15s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28532736,\"total\":63561414,\"start\":1395254137},\"progress\":\"[======================\\u003e
|
456
|
+
\ ] 28.53 MB/63.56 MB 24s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40157184,\"total\":58083269,\"start\":1395254136},\"progress\":\"[==================================\\u003e
|
457
|
+
\ ] 40.16 MB/58.08 MB 9s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35930112,\"total\":62781611,\"start\":1395254136},\"progress\":\"[============================\\u003e
|
458
|
+
\ ] 35.93 MB/62.78 MB 15s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26947584,\"total\":67295982,\"start\":1395254137},\"progress\":\"[====================\\u003e
|
459
|
+
\ ] 26.95 MB/67.3 MB 29s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29061120,\"total\":63561414,\"start\":1395254137},\"progress\":\"[======================\\u003e
|
460
|
+
\ ] 29.06 MB/63.56 MB 23s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36458496,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=============================\\u003e
|
461
|
+
\ ] 36.46 MB/62.78 MB 15s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29589504,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=======================\\u003e
|
462
|
+
\ ] 29.59 MB/63.56 MB 23s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27475968,\"total\":67295982,\"start\":1395254137},\"progress\":\"[====================\\u003e
|
463
|
+
\ ] 27.48 MB/67.3 MB 29s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36986880,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=============================\\u003e
|
464
|
+
\ ] 36.99 MB/62.78 MB 14s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30117888,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=======================\\u003e
|
465
|
+
\ ] 30.12 MB/63.56 MB 22s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37515264,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=============================\\u003e
|
466
|
+
\ ] 37.52 MB/62.78 MB 14s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30646272,\"total\":63561414,\"start\":1395254137},\"progress\":\"[========================\\u003e
|
467
|
+
\ ] 30.65 MB/63.56 MB 22s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40685568,\"total\":58083269,\"start\":1395254136},\"progress\":\"[===================================\\u003e
|
468
|
+
\ ] 40.69 MB/58.08 MB 9s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28004352,\"total\":67295982,\"start\":1395254137},\"progress\":\"[====================\\u003e
|
469
|
+
\ ] 28 MB/67.3 MB 29s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41213952,\"total\":58083269,\"start\":1395254136},\"progress\":\"[===================================\\u003e
|
470
|
+
\ ] 41.21 MB/58.08 MB 8s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31174656,\"total\":63561414,\"start\":1395254137},\"progress\":\"[========================\\u003e
|
471
|
+
\ ] 31.17 MB/63.56 MB 21s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38043648,\"total\":62781611,\"start\":1395254136},\"progress\":\"[==============================\\u003e
|
472
|
+
\ ] 38.04 MB/62.78 MB 14s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41742336,\"total\":58083269,\"start\":1395254136},\"progress\":\"[===================================\\u003e
|
473
|
+
\ ] 41.74 MB/58.08 MB 8s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38572032,\"total\":62781611,\"start\":1395254136},\"progress\":\"[==============================\\u003e
|
474
|
+
\ ] 38.57 MB/62.78 MB 14s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42270720,\"total\":58083269,\"start\":1395254136},\"progress\":\"[====================================\\u003e
|
475
|
+
\ ] 42.27 MB/58.08 MB 8s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28532736,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=====================\\u003e
|
476
|
+
\ ] 28.53 MB/67.3 MB 29s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39100416,\"total\":62781611,\"start\":1395254136},\"progress\":\"[===============================\\u003e
|
477
|
+
\ ] 39.1 MB/62.78 MB 13s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42799104,\"total\":58083269,\"start\":1395254136},\"progress\":\"[====================================\\u003e
|
478
|
+
\ ] 42.8 MB/58.08 MB 8s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39628800,\"total\":62781611,\"start\":1395254136},\"progress\":\"[===============================\\u003e
|
479
|
+
\ ] 39.63 MB/62.78 MB 13s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29061120,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=====================\\u003e
|
480
|
+
\ ] 29.06 MB/67.3 MB 29s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40157184,\"total\":62781611,\"start\":1395254136},\"progress\":\"[===============================\\u003e
|
481
|
+
\ ] 40.16 MB/62.78 MB 13s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43327488,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=====================================\\u003e
|
482
|
+
\ ] 43.33 MB/58.08 MB 7s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40685568,\"total\":62781611,\"start\":1395254136},\"progress\":\"[================================\\u003e
|
483
|
+
\ ] 40.69 MB/62.78 MB 12s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31703040,\"total\":63561414,\"start\":1395254137},\"progress\":\"[========================\\u003e
|
484
|
+
\ ] 31.7 MB/63.56 MB 22s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29589504,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=====================\\u003e
|
485
|
+
\ ] 29.59 MB/67.3 MB 28s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32231424,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=========================\\u003e
|
486
|
+
\ ] 32.23 MB/63.56 MB 22s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43855872,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=====================================\\u003e
|
487
|
+
\ ] 43.86 MB/58.08 MB 7s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41213952,\"total\":62781611,\"start\":1395254136},\"progress\":\"[================================\\u003e
|
488
|
+
\ ] 41.21 MB/62.78 MB 12s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32759808,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=========================\\u003e
|
489
|
+
\ ] 32.76 MB/63.56 MB 21s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33288192,\"total\":63561414,\"start\":1395254137},\"progress\":\"[==========================\\u003e
|
490
|
+
\ ] 33.29 MB/63.56 MB 20s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41742336,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=================================\\u003e
|
491
|
+
\ ] 41.74 MB/62.78 MB 12s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33816576,\"total\":63561414,\"start\":1395254137},\"progress\":\"[==========================\\u003e
|
492
|
+
\ ] 33.82 MB/63.56 MB 20s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44389606,\"total\":58083269,\"start\":1395254136},\"progress\":\"[======================================\\u003e
|
493
|
+
\ ] 44.39 MB/58.08 MB 7s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34344960,\"total\":63561414,\"start\":1395254137},\"progress\":\"[===========================\\u003e
|
494
|
+
\ ] 34.34 MB/63.56 MB 19s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30117888,\"total\":67295982,\"start\":1395254137},\"progress\":\"[======================\\u003e
|
495
|
+
\ ] 30.12 MB/67.3 MB 28s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34873344,\"total\":63561414,\"start\":1395254137},\"progress\":\"[===========================\\u003e
|
496
|
+
\ ] 34.87 MB/63.56 MB 19s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42270720,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=================================\\u003e
|
497
|
+
\ ] 42.27 MB/62.78 MB 11s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35401728,\"total\":63561414,\"start\":1395254137},\"progress\":\"[===========================\\u003e
|
498
|
+
\ ] 35.4 MB/63.56 MB 18s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44916736,\"total\":58083269,\"start\":1395254136},\"progress\":\"[======================================\\u003e
|
499
|
+
\ ] 44.92 MB/58.08 MB 7s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42799104,\"total\":62781611,\"start\":1395254136},\"progress\":\"[==================================\\u003e
|
500
|
+
\ ] 42.8 MB/62.78 MB 11s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30646272,\"total\":67295982,\"start\":1395254137},\"progress\":\"[======================\\u003e
|
501
|
+
\ ] 30.65 MB/67.3 MB 28s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35930112,\"total\":63561414,\"start\":1395254137},\"progress\":\"[============================\\u003e
|
502
|
+
\ ] 35.93 MB/63.56 MB 18s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45445120,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=======================================\\u003e
|
503
|
+
\ ] 45.45 MB/58.08 MB 6s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36458496,\"total\":63561414,\"start\":1395254137},\"progress\":\"[============================\\u003e
|
504
|
+
\ ] 36.46 MB/63.56 MB 17s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43327488,\"total\":62781611,\"start\":1395254136},\"progress\":\"[==================================\\u003e
|
505
|
+
\ ] 43.33 MB/62.78 MB 11s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36986880,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=============================\\u003e
|
506
|
+
\ ] 36.99 MB/63.56 MB 17s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43855872,\"total\":62781611,\"start\":1395254136},\"progress\":\"[==================================\\u003e
|
507
|
+
\ ] 43.86 MB/62.78 MB 10s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31174656,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=======================\\u003e
|
508
|
+
\ ] 31.17 MB/67.3 MB 27s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45971711,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=======================================\\u003e
|
509
|
+
\ ] 45.97 MB/58.08 MB 6s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37515264,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=============================\\u003e
|
510
|
+
\ ] 37.52 MB/63.56 MB 16s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44384256,\"total\":62781611,\"start\":1395254136},\"progress\":\"[===================================\\u003e
|
511
|
+
\ ] 44.38 MB/62.78 MB 10s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38043648,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=============================\\u003e
|
512
|
+
\ ] 38.04 MB/63.56 MB 16s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46497792,\"total\":58083269,\"start\":1395254136},\"progress\":\"[========================================\\u003e
|
513
|
+
\ ] 46.5 MB/58.08 MB 6s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38572032,\"total\":63561414,\"start\":1395254137},\"progress\":\"[==============================\\u003e
|
514
|
+
\ ] 38.57 MB/63.56 MB 15s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31703040,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=======================\\u003e
|
515
|
+
\ ] 31.7 MB/67.3 MB 27s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44912640,\"total\":62781611,\"start\":1395254136},\"progress\":\"[===================================\\u003e
|
516
|
+
\ ] 44.91 MB/62.78 MB 10s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47026176,\"total\":58083269,\"start\":1395254136},\"progress\":\"[========================================\\u003e
|
517
|
+
\ ] 47.03 MB/58.08 MB 6s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39100416,\"total\":63561414,\"start\":1395254137},\"progress\":\"[==============================\\u003e
|
518
|
+
\ ] 39.1 MB/63.56 MB 15s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45441024,\"total\":62781611,\"start\":1395254136},\"progress\":\"[====================================\\u003e
|
519
|
+
\ ] 45.44 MB/62.78 MB 9s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39628800,\"total\":63561414,\"start\":1395254137},\"progress\":\"[===============================\\u003e
|
520
|
+
\ ] 39.63 MB/63.56 MB 15s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32231424,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=======================\\u003e
|
521
|
+
\ ] 32.23 MB/67.3 MB 27s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47554560,\"total\":58083269,\"start\":1395254136},\"progress\":\"[========================================\\u003e
|
522
|
+
\ ] 47.55 MB/58.08 MB 5s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45969408,\"total\":62781611,\"start\":1395254136},\"progress\":\"[====================================\\u003e
|
523
|
+
\ ] 45.97 MB/62.78 MB 9s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40157184,\"total\":63561414,\"start\":1395254137},\"progress\":\"[===============================\\u003e
|
524
|
+
\ ] 40.16 MB/63.56 MB 14s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40685568,\"total\":63561414,\"start\":1395254137},\"progress\":\"[================================\\u003e
|
525
|
+
\ ] 40.69 MB/63.56 MB 14s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46497792,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=====================================\\u003e
|
526
|
+
\ ] 46.5 MB/62.78 MB 9s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48082944,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=========================================\\u003e
|
527
|
+
\ ] 48.08 MB/58.08 MB 5s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32759808,\"total\":67295982,\"start\":1395254137},\"progress\":\"[========================\\u003e
|
528
|
+
\ ] 32.76 MB/67.3 MB 27s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41213952,\"total\":63561414,\"start\":1395254137},\"progress\":\"[================================\\u003e
|
529
|
+
\ ] 41.21 MB/63.56 MB 13s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47026176,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=====================================\\u003e
|
530
|
+
\ ] 47.03 MB/62.78 MB 8s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48615872,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=========================================\\u003e
|
531
|
+
\ ] 48.62 MB/58.08 MB 5s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41742336,\"total\":63561414,\"start\":1395254137},\"progress\":\"[================================\\u003e
|
532
|
+
\ ] 41.74 MB/63.56 MB 13s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47554560,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=====================================\\u003e
|
533
|
+
\ ] 47.55 MB/62.78 MB 8s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33288192,\"total\":67295982,\"start\":1395254137},\"progress\":\"[========================\\u003e
|
534
|
+
\ ] 33.29 MB/67.3 MB 26s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42270720,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=================================\\u003e
|
535
|
+
\ ] 42.27 MB/63.56 MB 13s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49143808,\"total\":58083269,\"start\":1395254136},\"progress\":\"[==========================================\\u003e
|
536
|
+
\ ] 49.14 MB/58.08 MB 4s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48082944,\"total\":62781611,\"start\":1395254136},\"progress\":\"[======================================\\u003e
|
537
|
+
\ ] 48.08 MB/62.78 MB 8s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42799104,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=================================\\u003e
|
538
|
+
\ ] 42.8 MB/63.56 MB 12s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33816576,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=========================\\u003e
|
539
|
+
\ ] 33.82 MB/67.3 MB 26s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49672192,\"total\":58083269,\"start\":1395254136},\"progress\":\"[==========================================\\u003e
|
540
|
+
\ ] 49.67 MB/58.08 MB 4s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48611328,\"total\":62781611,\"start\":1395254136},\"progress\":\"[======================================\\u003e
|
541
|
+
\ ] 48.61 MB/62.78 MB 8s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49139712,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=======================================\\u003e
|
542
|
+
\ ] 49.14 MB/62.78 MB 7s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34344960,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=========================\\u003e
|
543
|
+
\ ] 34.34 MB/67.3 MB 25s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50200576,\"total\":58083269,\"start\":1395254136},\"progress\":\"[===========================================\\u003e
|
544
|
+
\ ] 50.2 MB/58.08 MB 4s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49670676,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=======================================\\u003e
|
545
|
+
\ ] 49.67 MB/62.78 MB 7s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43327488,\"total\":63561414,\"start\":1395254137},\"progress\":\"[==================================\\u003e
|
546
|
+
\ ] 43.33 MB/63.56 MB 12s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43855872,\"total\":63561414,\"start\":1395254137},\"progress\":\"[==================================\\u003e
|
547
|
+
\ ] 43.86 MB/63.56 MB 12s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50196480,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=======================================\\u003e
|
548
|
+
\ ] 50.2 MB/62.78 MB 7s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44382836,\"total\":63561414,\"start\":1395254137},\"progress\":\"[==================================\\u003e
|
549
|
+
\ ] 44.38 MB/63.56 MB 11s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50728960,\"total\":58083269,\"start\":1395254136},\"progress\":\"[===========================================\\u003e
|
550
|
+
\ ] 50.73 MB/58.08 MB 4s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34873344,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=========================\\u003e
|
551
|
+
\ ] 34.87 MB/67.3 MB 25s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50724864,\"total\":62781611,\"start\":1395254136},\"progress\":\"[========================================\\u003e
|
552
|
+
\ ] 50.72 MB/62.78 MB 6s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51256104,\"total\":62781611,\"start\":1395254136},\"progress\":\"[========================================\\u003e
|
553
|
+
\ ] 51.26 MB/62.78 MB 6s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51257344,\"total\":58083269,\"start\":1395254136},\"progress\":\"[============================================\\u003e
|
554
|
+
\ ] 51.26 MB/58.08 MB 3s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44910037,\"total\":63561414,\"start\":1395254137},\"progress\":\"[===================================\\u003e
|
555
|
+
\ ] 44.91 MB/63.56 MB 11s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51781632,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=========================================\\u003e
|
556
|
+
\ ] 51.78 MB/62.78 MB 6s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35401728,\"total\":67295982,\"start\":1395254137},\"progress\":\"[==========================\\u003e
|
557
|
+
\ ] 35.4 MB/67.3 MB 25s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51785728,\"total\":58083269,\"start\":1395254136},\"progress\":\"[============================================\\u003e
|
558
|
+
\ ] 51.79 MB/58.08 MB 3s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45436928,\"total\":63561414,\"start\":1395254137},\"progress\":\"[===================================\\u003e
|
559
|
+
\ ] 45.44 MB/63.56 MB 11s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52310016,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=========================================\\u003e
|
560
|
+
\ ] 52.31 MB/62.78 MB 5s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35930112,\"total\":67295982,\"start\":1395254137},\"progress\":\"[==========================\\u003e
|
561
|
+
\ ] 35.93 MB/67.3 MB 24s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45963483,\"total\":63561414,\"start\":1395254137},\"progress\":\"[====================================\\u003e
|
562
|
+
\ ] 45.96 MB/63.56 MB 10s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52314112,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=============================================\\u003e
|
563
|
+
\ ] 52.31 MB/58.08 MB 3s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52838400,\"total\":62781611,\"start\":1395254136},\"progress\":\"[==========================================\\u003e
|
564
|
+
\ ] 52.84 MB/62.78 MB 5s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36458496,\"total\":67295982,\"start\":1395254137},\"progress\":\"[===========================\\u003e
|
565
|
+
\ ] 36.46 MB/67.3 MB 24s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46491136,\"total\":63561414,\"start\":1395254137},\"progress\":\"[====================================\\u003e
|
566
|
+
\ ] 46.49 MB/63.56 MB 10s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53366784,\"total\":62781611,\"start\":1395254136},\"progress\":\"[==========================================\\u003e
|
567
|
+
\ ] 53.37 MB/62.78 MB 5s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52842496,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=============================================\\u003e
|
568
|
+
\ ] 52.84 MB/58.08 MB 2s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47022080,\"total\":63561414,\"start\":1395254137},\"progress\":\"[====================================\\u003e
|
569
|
+
\ ] 47.02 MB/63.56 MB 10s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53370756,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=============================================\\u003e
|
570
|
+
\ ] 53.37 MB/58.08 MB 2s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53895018,\"total\":62781611,\"start\":1395254136},\"progress\":\"[==========================================\\u003e
|
571
|
+
\ ] 53.9 MB/62.78 MB 4s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36986880,\"total\":67295982,\"start\":1395254137},\"progress\":\"[===========================\\u003e
|
572
|
+
\ ] 36.99 MB/67.3 MB 23s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37515264,\"total\":67295982,\"start\":1395254137},\"progress\":\"[===========================\\u003e
|
573
|
+
\ ] 37.52 MB/67.3 MB 23s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53895168,\"total\":58083269,\"start\":1395254136},\"progress\":\"[==============================================\\u003e
|
574
|
+
\ ] 53.9 MB/58.08 MB 2s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54419456,\"total\":62781611,\"start\":1395254136},\"progress\":\"[===========================================\\u003e
|
575
|
+
\ ] 54.42 MB/62.78 MB 4s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47550464,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=====================================\\u003e
|
576
|
+
\ ] 47.55 MB/63.56 MB 9s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38043648,\"total\":67295982,\"start\":1395254137},\"progress\":\"[============================\\u003e
|
577
|
+
\ ] 38.04 MB/67.3 MB 22s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48076046,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=====================================\\u003e
|
578
|
+
\ ] 48.08 MB/63.56 MB 9s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54423552,\"total\":58083269,\"start\":1395254136},\"progress\":\"[==============================================\\u003e
|
579
|
+
\ ] 54.42 MB/58.08 MB 2s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54947840,\"total\":62781611,\"start\":1395254136},\"progress\":\"[===========================================\\u003e
|
580
|
+
\ ] 54.95 MB/62.78 MB 4s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48603136,\"total\":63561414,\"start\":1395254137},\"progress\":\"[======================================\\u003e
|
581
|
+
\ ] 48.6 MB/63.56 MB 9s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38572032,\"total\":67295982,\"start\":1395254137},\"progress\":\"[============================\\u003e
|
582
|
+
\ ] 38.57 MB/67.3 MB 22s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54951936,\"total\":58083269,\"start\":1395254136},\"progress\":\"[===============================================\\u003e
|
583
|
+
\ ] 54.95 MB/58.08 MB 1s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55476224,\"total\":62781611,\"start\":1395254136},\"progress\":\"[============================================\\u003e
|
584
|
+
\ ] 55.48 MB/62.78 MB 4s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49130509,\"total\":63561414,\"start\":1395254137},\"progress\":\"[======================================\\u003e
|
585
|
+
\ ] 49.13 MB/63.56 MB 8s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39100416,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=============================\\u003e
|
586
|
+
\ ] 39.1 MB/67.3 MB 21s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55480320,\"total\":58083269,\"start\":1395254136},\"progress\":\"[===============================================\\u003e
|
587
|
+
\ ] 55.48 MB/58.08 MB 1s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56004608,\"total\":62781611,\"start\":1395254136},\"progress\":\"[============================================\\u003e
|
588
|
+
\ ] 56 MB/62.78 MB 3s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49655808,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=======================================\\u003e
|
589
|
+
\ ] 49.66 MB/63.56 MB 8s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39628800,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=============================\\u003e
|
590
|
+
\ ] 39.63 MB/67.3 MB 21s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40157184,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=============================\\u003e
|
591
|
+
\ ] 40.16 MB/67.3 MB 20s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50183090,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=======================================\\u003e
|
592
|
+
\ ] 50.18 MB/63.56 MB 8s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56532992,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=============================================\\u003e
|
593
|
+
\ ] 56.53 MB/62.78 MB 3s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40685568,\"total\":67295982,\"start\":1395254137},\"progress\":\"[==============================\\u003e
|
594
|
+
\ ] 40.69 MB/67.3 MB 20s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50717411,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=======================================\\u003e
|
595
|
+
\ ] 50.72 MB/63.56 MB 7s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57061376,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=============================================\\u003e
|
596
|
+
\ ] 57.06 MB/62.78 MB 3s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56008704,\"total\":58083269,\"start\":1395254136},\"progress\":\"[================================================\\u003e
|
597
|
+
\ ] 56.01 MB/58.08 MB 1s\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41213952,\"total\":67295982,\"start\":1395254137},\"progress\":\"[==============================\\u003e
|
598
|
+
\ ] 41.21 MB/67.3 MB 19s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56537088,\"total\":58083269,\"start\":1395254136},\"progress\":\"[================================================\\u003e
|
599
|
+
\ ] 56.54 MB/58.08 MB 0\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41742336,\"total\":67295982,\"start\":1395254137},\"progress\":\"[===============================\\u003e
|
600
|
+
\ ] 41.74 MB/67.3 MB 19s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57065472,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=================================================\\u003e
|
601
|
+
] 57.07 MB/58.08 MB 0\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57589760,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=============================================\\u003e
|
602
|
+
\ ] 57.59 MB/62.78 MB 2s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51245990,\"total\":63561414,\"start\":1395254137},\"progress\":\"[========================================\\u003e
|
603
|
+
\ ] 51.25 MB/63.56 MB 7s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51773440,\"total\":63561414,\"start\":1395254137},\"progress\":\"[========================================\\u003e
|
604
|
+
\ ] 51.77 MB/63.56 MB 7s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42270720,\"total\":67295982,\"start\":1395254137},\"progress\":\"[===============================\\u003e
|
605
|
+
\ ] 42.27 MB/67.3 MB 18s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57593856,\"total\":58083269,\"start\":1395254136},\"progress\":\"[=================================================\\u003e
|
606
|
+
] 57.59 MB/58.08 MB 0\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58124618,\"total\":62781611,\"start\":1395254136},\"progress\":\"[==============================================\\u003e
|
607
|
+
\ ] 58.12 MB/62.78 MB 2s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52301824,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=========================================\\u003e
|
608
|
+
\ ] 52.3 MB/63.56 MB 6s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42799104,\"total\":67295982,\"start\":1395254137},\"progress\":\"[===============================\\u003e
|
609
|
+
\ ] 42.8 MB/67.3 MB 18s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58083269,\"total\":58083269,\"start\":1395254136},\"progress\":\"[==================================================\\u003e]
|
610
|
+
58.08 MB/58.08 MB\",\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58650624,\"total\":62781611,\"start\":1395254136},\"progress\":\"[==============================================\\u003e
|
611
|
+
\ ] 58.65 MB/62.78 MB 2s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43327488,\"total\":67295982,\"start\":1395254137},\"progress\":\"[================================\\u003e
|
612
|
+
\ ] 43.33 MB/67.3 MB 17s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52830208,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=========================================\\u003e
|
613
|
+
\ ] 52.83 MB/63.56 MB 6s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59179008,\"total\":62781611,\"start\":1395254136},\"progress\":\"[===============================================\\u003e
|
614
|
+
\ ] 59.18 MB/62.78 MB 2s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43855872,\"total\":67295982,\"start\":1395254137},\"progress\":\"[================================\\u003e
|
615
|
+
\ ] 43.86 MB/67.3 MB 17s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53358592,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=========================================\\u003e
|
616
|
+
\ ] 53.36 MB/63.56 MB 6s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53888359,\"total\":63561414,\"start\":1395254137},\"progress\":\"[==========================================\\u003e
|
617
|
+
\ ] 53.89 MB/63.56 MB 5s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59707392,\"total\":62781611,\"start\":1395254136},\"progress\":\"[===============================================\\u003e
|
618
|
+
\ ] 59.71 MB/62.78 MB 1s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44384256,\"total\":67295982,\"start\":1395254137},\"progress\":\"[================================\\u003e
|
619
|
+
\ ] 44.38 MB/67.3 MB 16s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44912640,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=================================\\u003e
|
620
|
+
\ ] 44.91 MB/67.3 MB 16s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54415360,\"total\":63561414,\"start\":1395254137},\"progress\":\"[==========================================\\u003e
|
621
|
+
\ ] 54.42 MB/63.56 MB 5s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60235776,\"total\":62781611,\"start\":1395254136},\"progress\":\"[===============================================\\u003e
|
622
|
+
\ ] 60.24 MB/62.78 MB 1s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45441024,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=================================\\u003e
|
623
|
+
\ ] 45.44 MB/67.3 MB 15s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54943744,\"total\":63561414,\"start\":1395254137},\"progress\":\"[===========================================\\u003e
|
624
|
+
\ ] 54.94 MB/63.56 MB 5s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60764160,\"total\":62781611,\"start\":1395254136},\"progress\":\"[================================================\\u003e
|
625
|
+
\ ] 60.76 MB/62.78 MB 1s\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45969408,\"total\":67295982,\"start\":1395254137},\"progress\":\"[==================================\\u003e
|
626
|
+
\ ] 45.97 MB/67.3 MB 15s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55472128,\"total\":63561414,\"start\":1395254137},\"progress\":\"[===========================================\\u003e
|
627
|
+
\ ] 55.47 MB/63.56 MB 4s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61292544,\"total\":62781611,\"start\":1395254136},\"progress\":\"[================================================\\u003e
|
628
|
+
\ ] 61.29 MB/62.78 MB 0\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46497792,\"total\":67295982,\"start\":1395254137},\"progress\":\"[==================================\\u003e
|
629
|
+
\ ] 46.5 MB/67.3 MB 14s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56000512,\"total\":63561414,\"start\":1395254137},\"progress\":\"[============================================\\u003e
|
630
|
+
\ ] 56 MB/63.56 MB 4s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61820928,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=================================================\\u003e
|
631
|
+
] 61.82 MB/62.78 MB 0\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47026176,\"total\":67295982,\"start\":1395254137},\"progress\":\"[==================================\\u003e
|
632
|
+
\ ] 47.03 MB/67.3 MB 14s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56528896,\"total\":63561414,\"start\":1395254137},\"progress\":\"[============================================\\u003e
|
633
|
+
\ ] 56.53 MB/63.56 MB 4s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Download
|
634
|
+
complete\",\"progressDetail\":{},\"id\":\"5ac751e8d623\"}{\"status\":\"Download
|
635
|
+
complete\",\"progressDetail\":{},\"id\":\"5ac751e8d623\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47554560,\"total\":67295982,\"start\":1395254137},\"progress\":\"[===================================\\u003e
|
636
|
+
\ ] 47.55 MB/67.3 MB 14s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62349312,\"total\":62781611,\"start\":1395254136},\"progress\":\"[=================================================\\u003e
|
637
|
+
] 62.35 MB/62.78 MB 0\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57057280,\"total\":63561414,\"start\":1395254137},\"progress\":\"[============================================\\u003e
|
638
|
+
\ ] 57.06 MB/63.56 MB 3s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48082944,\"total\":67295982,\"start\":1395254137},\"progress\":\"[===================================\\u003e
|
639
|
+
\ ] 48.08 MB/67.3 MB 13s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62781611,\"total\":62781611,\"start\":1395254136},\"progress\":\"[==================================================\\u003e]
|
640
|
+
62.78 MB/62.78 MB\",\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57585664,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=============================================\\u003e
|
641
|
+
\ ] 57.59 MB/63.56 MB 3s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58114048,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=============================================\\u003e
|
642
|
+
\ ] 58.11 MB/63.56 MB 3s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48611328,\"total\":67295982,\"start\":1395254137},\"progress\":\"[====================================\\u003e
|
643
|
+
\ ] 48.61 MB/67.3 MB 13s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58642432,\"total\":63561414,\"start\":1395254137},\"progress\":\"[==============================================\\u003e
|
644
|
+
\ ] 58.64 MB/63.56 MB 2s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49139712,\"total\":67295982,\"start\":1395254137},\"progress\":\"[====================================\\u003e
|
645
|
+
\ ] 49.14 MB/67.3 MB 12s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59170816,\"total\":63561414,\"start\":1395254137},\"progress\":\"[==============================================\\u003e
|
646
|
+
\ ] 59.17 MB/63.56 MB 2s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49668096,\"total\":67295982,\"start\":1395254137},\"progress\":\"[====================================\\u003e
|
647
|
+
\ ] 49.67 MB/67.3 MB 12s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59699200,\"total\":63561414,\"start\":1395254137},\"progress\":\"[==============================================\\u003e
|
648
|
+
\ ] 59.7 MB/63.56 MB 2s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50196480,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=====================================\\u003e
|
649
|
+
\ ] 50.2 MB/67.3 MB 11s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60227584,\"total\":63561414,\"start\":1395254137},\"progress\":\"[===============================================\\u003e
|
650
|
+
\ ] 60.23 MB/63.56 MB 1s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50724864,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=====================================\\u003e
|
651
|
+
\ ] 50.72 MB/67.3 MB 11s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60755968,\"total\":63561414,\"start\":1395254137},\"progress\":\"[===============================================\\u003e
|
652
|
+
\ ] 60.76 MB/63.56 MB 1s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61284352,\"total\":63561414,\"start\":1395254137},\"progress\":\"[================================================\\u003e
|
653
|
+
\ ] 61.28 MB/63.56 MB 1s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51253248,\"total\":67295982,\"start\":1395254137},\"progress\":\"[======================================\\u003e
|
654
|
+
\ ] 51.25 MB/67.3 MB 11s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61812736,\"total\":63561414,\"start\":1395254137},\"progress\":\"[================================================\\u003e
|
655
|
+
\ ] 61.81 MB/63.56 MB 1s\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51781632,\"total\":67295982,\"start\":1395254137},\"progress\":\"[======================================\\u003e
|
656
|
+
\ ] 51.78 MB/67.3 MB 10s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62341120,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=================================================\\u003e
|
657
|
+
] 62.34 MB/63.56 MB 0\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52310016,\"total\":67295982,\"start\":1395254137},\"progress\":\"[======================================\\u003e
|
658
|
+
\ ] 52.31 MB/67.3 MB 10s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62869504,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=================================================\\u003e
|
659
|
+
] 62.87 MB/63.56 MB 0\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"9f676bd305a4\"}{\"status\":\"Download
|
660
|
+
complete\",\"progressDetail\":{},\"id\":\"9f676bd305a4\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63397888,\"total\":63561414,\"start\":1395254137},\"progress\":\"[=================================================\\u003e
|
661
|
+
] 63.4 MB/63.56 MB 0\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63561414,\"total\":63561414,\"start\":1395254137},\"progress\":\"[==================================================\\u003e]
|
662
|
+
63.56 MB/63.56 MB\",\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52838400,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=======================================\\u003e
|
663
|
+
\ ] 52.84 MB/67.3 MB 9s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53366784,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=======================================\\u003e
|
664
|
+
\ ] 53.37 MB/67.3 MB 9s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53895168,\"total\":67295982,\"start\":1395254137},\"progress\":\"[========================================\\u003e
|
665
|
+
\ ] 53.9 MB/67.3 MB 9s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54422863,\"total\":67295982,\"start\":1395254137},\"progress\":\"[========================================\\u003e
|
666
|
+
\ ] 54.42 MB/67.3 MB 8s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54948026,\"total\":67295982,\"start\":1395254137},\"progress\":\"[========================================\\u003e
|
667
|
+
\ ] 54.95 MB/67.3 MB 8s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55476224,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=========================================\\u003e
|
668
|
+
\ ] 55.48 MB/67.3 MB 7s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56004608,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=========================================\\u003e
|
669
|
+
\ ] 56 MB/67.3 MB 7s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56532992,\"total\":67295982,\"start\":1395254137},\"progress\":\"[==========================================\\u003e
|
670
|
+
\ ] 56.53 MB/67.3 MB 6s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57061376,\"total\":67295982,\"start\":1395254137},\"progress\":\"[==========================================\\u003e
|
671
|
+
\ ] 57.06 MB/67.3 MB 6s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57589760,\"total\":67295982,\"start\":1395254137},\"progress\":\"[==========================================\\u003e
|
672
|
+
\ ] 57.59 MB/67.3 MB 6s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58118144,\"total\":67295982,\"start\":1395254137},\"progress\":\"[===========================================\\u003e
|
673
|
+
\ ] 58.12 MB/67.3 MB 5s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58646528,\"total\":67295982,\"start\":1395254137},\"progress\":\"[===========================================\\u003e
|
674
|
+
\ ] 58.65 MB/67.3 MB 5s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59174912,\"total\":67295982,\"start\":1395254137},\"progress\":\"[===========================================\\u003e
|
675
|
+
\ ] 59.17 MB/67.3 MB 5s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59703296,\"total\":67295982,\"start\":1395254137},\"progress\":\"[============================================\\u003e
|
676
|
+
\ ] 59.7 MB/67.3 MB 4s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60231680,\"total\":67295982,\"start\":1395254137},\"progress\":\"[============================================\\u003e
|
677
|
+
\ ] 60.23 MB/67.3 MB 4s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60760064,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=============================================\\u003e
|
678
|
+
\ ] 60.76 MB/67.3 MB 4s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61288448,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=============================================\\u003e
|
679
|
+
\ ] 61.29 MB/67.3 MB 3s\",\"id\":\"9cd978db300e\"}{\"status\":\"Download
|
680
|
+
complete\",\"progressDetail\":{},\"id\":\"9cc9ea5ea540\"}{\"status\":\"Download
|
681
|
+
complete\",\"progressDetail\":{},\"id\":\"9cc9ea5ea540\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61816832,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=============================================\\u003e
|
682
|
+
\ ] 61.82 MB/67.3 MB 3s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62345216,\"total\":67295982,\"start\":1395254137},\"progress\":\"[==============================================\\u003e
|
683
|
+
\ ] 62.35 MB/67.3 MB 3s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62872422,\"total\":67295982,\"start\":1395254137},\"progress\":\"[==============================================\\u003e
|
684
|
+
\ ] 62.87 MB/67.3 MB 2s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63397888,\"total\":67295982,\"start\":1395254137},\"progress\":\"[===============================================\\u003e
|
685
|
+
\ ] 63.4 MB/67.3 MB 2s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63926272,\"total\":67295982,\"start\":1395254137},\"progress\":\"[===============================================\\u003e
|
686
|
+
\ ] 63.93 MB/67.3 MB 2s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64454656,\"total\":67295982,\"start\":1395254137},\"progress\":\"[===============================================\\u003e
|
687
|
+
\ ] 64.45 MB/67.3 MB 1s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64983040,\"total\":67295982,\"start\":1395254137},\"progress\":\"[================================================\\u003e
|
688
|
+
\ ] 64.98 MB/67.3 MB 1s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65511424,\"total\":67295982,\"start\":1395254137},\"progress\":\"[================================================\\u003e
|
689
|
+
\ ] 65.51 MB/67.3 MB 1s\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66039808,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=================================================\\u003e
|
690
|
+
] 66.04 MB/67.3 MB 0\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66568192,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=================================================\\u003e
|
691
|
+
] 66.57 MB/67.3 MB 0\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67096576,\"total\":67295982,\"start\":1395254137},\"progress\":\"[=================================================\\u003e
|
692
|
+
] 67.1 MB/67.3 MB 0\",\"id\":\"9cd978db300e\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67295982,\"total\":67295982,\"start\":1395254137},\"progress\":\"[==================================================\\u003e]
|
693
|
+
\ 67.3 MB/67.3 MB\",\"id\":\"9cd978db300e\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"9cd978db300e\"}{\"status\":\"Download
|
694
|
+
complete\",\"progressDetail\":{},\"id\":\"9cd978db300e\"}"
|
695
|
+
http_version:
|
696
|
+
recorded_at: Wed, 19 Mar 2014 18:36:17 GMT
|
697
|
+
recorded_with: VCR 2.8.0
|