Note
Go to the end to download the full example code.
How pyAFQ uses BIDS#
The pyAFQ API relies heavily on the Brain Imaging Data Standard (BIDS), a widely used standard for organizing and describing neuroimaging data. This means that the software assumes that its inputs are organized according to the BIDS specification and its outputs conform where possible with BIDS.
Note
Derivatives of processing diffusion MRI are not currently fully described in the existing BIDS specification, but describing these is part of an ongoing effort. Wherever possible, we conform with the draft implementation of the BIDS DWI derivatives available here
In this example, we will explore the use of BIDS in pyAFQ and see how BIDS allows us to extend and provide flexibility to the users of the software.
import os
import os.path as op
import AFQ.api.bundle_dict as abd
from AFQ.api.group import GroupAFQ, get_afq_bids_entities_fname
import AFQ.data.fetch as afd
- To interact with and query BIDS datasets, we use
pyBIDS, which we import here:
import bids
from bids.layout import BIDSLayout
We start with some example data. The data we will use here is generated from the Stanford HARDI dataset. The call below fetches this dataset and organized it within the ~/AFQ_data folder in the BIDS format.
afd.organize_stanford_data(clear_previous_afq="all")
After doing that, we should have a folder that looks like this:
The top level directory (stanford_hardi) is our overall BIDS dataset folder. In many cases, this folder will include folders with raw data for each subject in the dataset. In this case, we do not include the raw data folders and only have the outputs of pipelines that were used to preprocess the data (e.g., correct the data for subject motion, eddy currents, and so forth). In general, only the preprocessed diffusion data is required for pyAFQ to run. See the “Organizing your data” section of the documentation for more details. In this case, one folder contains derivative of the Freesurfer software and another folder contains the DWI data that has been preprocessed with the Vistasoft software. pyAFQ provides facilities to segment tractography results obtained using other software as well. For example, we often use qsiprep to preprocess our data and reconstruct tractographies with software such as MRTRIX. Here, we will demonstrate how to use these reconstructions in the pyAFQ segmentation and tractometry pipeline We fetch this data and add it as a separate pipeline The following code will download a previously-created tractography and organize it by adding it to the BIDS dataset folder and renaming them to be BIDS-compliant (e.g., sub-01_ses_01_dwi_tractography.trk).
afd.fetch_stanford_hardi_tractography()
bids_path = op.join(op.expanduser('~'), 'AFQ_data', 'stanford_hardi')
tractography_path = op.join(bids_path, 'derivatives', 'my_tractography')
sub_path = op.join(tractography_path, 'sub-01', 'ses-01', 'dwi')
os.makedirs(sub_path, exist_ok=True)
os.rename(
op.join(
op.expanduser('~'),
'AFQ_data',
'stanford_hardi_tractography',
'full_segmented_cleaned_tractography.trk'),
op.join(
sub_path,
'sub-01_ses-01-dwi_tractography.trk'))
afd.to_bids_description(
tractography_path,
**{"Name": "my_tractography",
"PipelineDescription": {"Name": "my_tractography"},
"GeneratedBy": [{"Name": "my_tractography"}]})
0%| | 0/11337 [00:00<?, ? MB/s]
0%| | 2/11337 [00:00<12:42, 14.87 MB/s]
0%| | 4/11337 [00:00<12:46, 14.78 MB/s]
0%| | 8/11337 [00:00<08:47, 21.49 MB/s]
0%| | 16/11337 [00:00<05:12, 36.27 MB/s]
0%| | 34/11337 [00:00<02:39, 71.00 MB/s]
1%| | 72/11337 [00:00<01:19, 141.86 MB/s]
1%|▏ | 144/11337 [00:00<00:41, 268.97 MB/s]
2%|▏ | 204/11337 [00:01<00:34, 320.55 MB/s]
3%|▎ | 315/11337 [00:01<00:23, 477.24 MB/s]
3%|▎ | 381/11337 [00:01<00:22, 491.83 MB/s]
4%|▍ | 501/11337 [00:01<00:17, 614.30 MB/s]
5%|▌ | 587/11337 [00:01<00:17, 597.86 MB/s]
6%|▌ | 660/11337 [00:01<00:18, 580.85 MB/s]
7%|▋ | 756/11337 [00:01<00:16, 633.12 MB/s]
7%|▋ | 820/11337 [00:02<00:18, 568.40 MB/s]
8%|▊ | 878/11337 [00:02<00:19, 526.64 MB/s]
8%|▊ | 932/11337 [00:02<00:27, 381.93 MB/s]
9%|▉ | 1010/11337 [00:02<00:24, 430.24 MB/s]
9%|▉ | 1058/11337 [00:02<00:25, 401.86 MB/s]
10%|▉ | 1102/11337 [00:02<00:27, 374.92 MB/s]
10%|█ | 1142/11337 [00:03<00:36, 277.10 MB/s]
10%|█ | 1174/11337 [00:03<00:46, 218.26 MB/s]
11%|█ | 1201/11337 [00:03<00:57, 176.33 MB/s]
11%|█ | 1223/11337 [00:03<01:10, 143.79 MB/s]
11%|█ | 1241/11337 [00:04<01:24, 118.85 MB/s]
11%|█ | 1256/11337 [00:04<01:41, 99.16 MB/s]
11%|█ | 1268/11337 [00:04<01:43, 97.13 MB/s]
11%|█▏ | 1279/11337 [00:04<01:47, 93.70 MB/s]
11%|█▏ | 1289/11337 [00:04<01:52, 89.09 MB/s]
11%|█▏ | 1299/11337 [00:05<01:57, 85.28 MB/s]
12%|█▏ | 1308/11337 [00:05<02:04, 80.35 MB/s]
12%|█▏ | 1317/11337 [00:05<02:10, 76.52 MB/s]
12%|█▏ | 1327/11337 [00:05<02:12, 75.71 MB/s]
12%|█▏ | 1338/11337 [00:05<02:10, 76.74 MB/s]
12%|█▏ | 1348/11337 [00:05<02:10, 76.34 MB/s]
12%|█▏ | 1357/11337 [00:05<02:20, 71.23 MB/s]
12%|█▏ | 1369/11337 [00:05<02:07, 78.32 MB/s]
12%|█▏ | 1377/11337 [00:06<02:18, 72.04 MB/s]
12%|█▏ | 1385/11337 [00:06<02:26, 68.14 MB/s]
12%|█▏ | 1392/11337 [00:06<02:36, 63.61 MB/s]
12%|█▏ | 1400/11337 [00:06<02:39, 62.20 MB/s]
12%|█▏ | 1408/11337 [00:06<02:42, 61.21 MB/s]
12%|█▏ | 1417/11337 [00:06<02:39, 62.34 MB/s]
13%|█▎ | 1425/11337 [00:06<02:40, 61.68 MB/s]
13%|█▎ | 1433/11337 [00:07<02:47, 59.05 MB/s]
13%|█▎ | 1442/11337 [00:07<02:38, 62.52 MB/s]
13%|█▎ | 1449/11337 [00:07<02:47, 59.09 MB/s]
13%|█▎ | 1455/11337 [00:07<03:00, 54.70 MB/s]
13%|█▎ | 1461/11337 [00:07<03:11, 51.55 MB/s]
13%|█▎ | 1467/11337 [00:07<03:19, 49.38 MB/s]
13%|█▎ | 1473/11337 [00:07<03:25, 48.03 MB/s]
13%|█▎ | 1480/11337 [00:08<03:21, 48.88 MB/s]
13%|█▎ | 1486/11337 [00:08<03:26, 47.67 MB/s]
13%|█▎ | 1493/11337 [00:08<03:21, 48.83 MB/s]
13%|█▎ | 1500/11337 [00:08<03:18, 49.63 MB/s]
13%|█▎ | 1507/11337 [00:08<03:15, 50.20 MB/s]
13%|█▎ | 1514/11337 [00:08<03:14, 50.59 MB/s]
13%|█▎ | 1521/11337 [00:08<03:12, 50.88 MB/s]
13%|█▎ | 1528/11337 [00:08<02:57, 55.29 MB/s]
14%|█▎ | 1535/11337 [00:09<03:01, 54.10 MB/s]
14%|█▎ | 1542/11337 [00:09<03:03, 53.30 MB/s]
14%|█▎ | 1550/11337 [00:09<03:11, 51.01 MB/s]
14%|█▎ | 1557/11337 [00:09<03:11, 51.18 MB/s]
14%|█▍ | 1564/11337 [00:09<03:10, 51.28 MB/s]
14%|█▍ | 1571/11337 [00:09<02:55, 55.49 MB/s]
14%|█▍ | 1578/11337 [00:09<02:59, 54.28 MB/s]
14%|█▍ | 1585/11337 [00:10<03:02, 53.44 MB/s]
14%|█▍ | 1593/11337 [00:10<03:10, 51.13 MB/s]
14%|█▍ | 1600/11337 [00:10<03:09, 51.25 MB/s]
14%|█▍ | 1607/11337 [00:10<02:55, 55.41 MB/s]
14%|█▍ | 1614/11337 [00:10<02:59, 54.22 MB/s]
14%|█▍ | 1621/11337 [00:10<03:01, 53.42 MB/s]
14%|█▍ | 1628/11337 [00:10<03:03, 52.84 MB/s]
14%|█▍ | 1635/11337 [00:10<03:04, 52.45 MB/s]
14%|█▍ | 1643/11337 [00:11<03:11, 50.51 MB/s]
15%|█▍ | 1650/11337 [00:11<02:56, 54.76 MB/s]
15%|█▍ | 1657/11337 [00:11<02:59, 53.78 MB/s]
15%|█▍ | 1664/11337 [00:11<03:02, 53.09 MB/s]
15%|█▍ | 1672/11337 [00:11<03:10, 50.86 MB/s]
15%|█▍ | 1679/11337 [00:11<02:55, 55.08 MB/s]
15%|█▍ | 1687/11337 [00:11<03:04, 52.17 MB/s]
15%|█▍ | 1694/11337 [00:12<02:51, 56.14 MB/s]
15%|█▌ | 1702/11337 [00:12<03:41, 43.57 MB/s]
15%|█▌ | 1714/11337 [00:12<02:55, 54.84 MB/s]
15%|█▌ | 1721/11337 [00:12<03:14, 49.46 MB/s]
15%|█▌ | 1727/11337 [00:12<03:19, 48.11 MB/s]
15%|█▌ | 1733/11337 [00:12<03:24, 47.05 MB/s]
15%|█▌ | 1738/11337 [00:13<03:33, 44.92 MB/s]
15%|█▌ | 1744/11337 [00:13<03:34, 44.71 MB/s]
15%|█▌ | 1750/11337 [00:13<03:34, 44.62 MB/s]
15%|█▌ | 1757/11337 [00:13<03:25, 46.59 MB/s]
16%|█▌ | 1764/11337 [00:13<03:19, 48.01 MB/s]
16%|█▌ | 1771/11337 [00:13<03:14, 49.07 MB/s]
16%|█▌ | 1778/11337 [00:13<03:11, 49.81 MB/s]
16%|█▌ | 1785/11337 [00:14<03:09, 50.33 MB/s]
16%|█▌ | 1791/11337 [00:14<03:20, 47.64 MB/s]
16%|█▌ | 1797/11337 [00:14<03:21, 47.41 MB/s]
16%|█▌ | 1802/11337 [00:14<03:35, 44.23 MB/s]
16%|█▌ | 1807/11337 [00:14<03:46, 41.99 MB/s]
16%|█▌ | 1812/11337 [00:14<03:55, 40.44 MB/s]
16%|█▌ | 1817/11337 [00:14<03:42, 42.71 MB/s]
16%|█▌ | 1822/11337 [00:14<03:53, 40.83 MB/s]
16%|█▌ | 1827/11337 [00:15<04:00, 39.57 MB/s]
16%|█▌ | 1833/11337 [00:15<03:51, 40.99 MB/s]
16%|█▌ | 1839/11337 [00:15<03:46, 41.93 MB/s]
16%|█▋ | 1844/11337 [00:15<03:53, 40.61 MB/s]
16%|█▋ | 1850/11337 [00:15<03:47, 41.70 MB/s]
16%|█▋ | 1856/11337 [00:15<03:44, 42.23 MB/s]
16%|█▋ | 1862/11337 [00:15<03:41, 42.77 MB/s]
16%|█▋ | 1868/11337 [00:16<03:39, 43.16 MB/s]
17%|█▋ | 1874/11337 [00:16<03:37, 43.45 MB/s]
17%|█▋ | 1880/11337 [00:16<03:36, 43.62 MB/s]
17%|█▋ | 1886/11337 [00:16<03:35, 43.85 MB/s]
17%|█▋ | 1892/11337 [00:16<03:35, 43.89 MB/s]
17%|█▋ | 1898/11337 [00:16<03:34, 43.99 MB/s]
17%|█▋ | 1904/11337 [00:16<03:34, 44.04 MB/s]
17%|█▋ | 1909/11337 [00:17<04:06, 38.29 MB/s]
17%|█▋ | 1916/11337 [00:17<03:41, 42.59 MB/s]
17%|█▋ | 1921/11337 [00:17<03:50, 40.88 MB/s]
17%|█▋ | 1926/11337 [00:17<03:57, 39.66 MB/s]
17%|█▋ | 1931/11337 [00:17<04:02, 38.80 MB/s]
17%|█▋ | 1935/11337 [00:17<04:20, 36.09 MB/s]
17%|█▋ | 1939/11337 [00:17<04:35, 34.11 MB/s]
17%|█▋ | 1944/11337 [00:17<04:08, 37.84 MB/s]
17%|█▋ | 1949/11337 [00:18<04:10, 37.53 MB/s]
17%|█▋ | 1954/11337 [00:18<04:10, 37.39 MB/s]
17%|█▋ | 1960/11337 [00:18<03:58, 39.36 MB/s]
17%|█▋ | 1965/11337 [00:18<04:02, 38.69 MB/s]
17%|█▋ | 1971/11337 [00:18<03:52, 40.23 MB/s]
17%|█▋ | 1976/11337 [00:18<03:58, 39.27 MB/s]
17%|█▋ | 1982/11337 [00:18<03:49, 40.75 MB/s]
18%|█▊ | 1988/11337 [00:18<03:43, 41.74 MB/s]
18%|█▊ | 1994/11337 [00:19<03:40, 42.44 MB/s]
18%|█▊ | 2000/11337 [00:19<03:37, 42.96 MB/s]
18%|█▊ | 2006/11337 [00:19<03:35, 43.29 MB/s]
18%|█▊ | 2012/11337 [00:19<03:33, 43.61 MB/s]
18%|█▊ | 2018/11337 [00:19<03:33, 43.74 MB/s]
18%|█▊ | 2024/11337 [00:19<03:34, 43.47 MB/s]
18%|█▊ | 2030/11337 [00:19<03:33, 43.68 MB/s]
18%|█▊ | 2036/11337 [00:20<03:32, 43.83 MB/s]
18%|█▊ | 2041/11337 [00:20<03:36, 42.97 MB/s]
18%|█▊ | 2047/11337 [00:20<03:38, 42.57 MB/s]
18%|█▊ | 2053/11337 [00:20<03:35, 43.05 MB/s]
18%|█▊ | 2059/11337 [00:20<03:33, 43.38 MB/s]
18%|█▊ | 2065/11337 [00:20<03:32, 43.62 MB/s]
18%|█▊ | 2071/11337 [00:20<03:31, 43.78 MB/s]
18%|█▊ | 2077/11337 [00:21<03:30, 43.91 MB/s]
18%|█▊ | 2083/11337 [00:21<03:30, 43.99 MB/s]
18%|█▊ | 2089/11337 [00:21<03:30, 44.02 MB/s]
18%|█▊ | 2095/11337 [00:21<03:29, 44.07 MB/s]
19%|█▊ | 2101/11337 [00:21<03:29, 44.07 MB/s]
19%|█▊ | 2107/11337 [00:21<03:29, 44.11 MB/s]
19%|█▊ | 2113/11337 [00:21<03:29, 44.13 MB/s]
19%|█▊ | 2119/11337 [00:21<03:28, 44.11 MB/s]
19%|█▊ | 2125/11337 [00:22<03:28, 44.10 MB/s]
19%|█▉ | 2131/11337 [00:22<03:28, 44.18 MB/s]
19%|█▉ | 2137/11337 [00:22<03:28, 44.18 MB/s]
19%|█▉ | 2143/11337 [00:22<03:28, 44.18 MB/s]
19%|█▉ | 2150/11337 [00:22<03:21, 45.66 MB/s]
19%|█▉ | 2156/11337 [00:22<03:19, 45.91 MB/s]
19%|█▉ | 2162/11337 [00:22<03:22, 45.39 MB/s]
19%|█▉ | 2168/11337 [00:23<03:23, 45.05 MB/s]
19%|█▉ | 2175/11337 [00:23<03:15, 46.94 MB/s]
19%|█▉ | 2181/11337 [00:23<03:18, 46.16 MB/s]
19%|█▉ | 2188/11337 [00:23<03:11, 47.74 MB/s]
19%|█▉ | 2195/11337 [00:23<03:09, 48.19 MB/s]
19%|█▉ | 2201/11337 [00:23<03:11, 47.71 MB/s]
19%|█▉ | 2208/11337 [00:23<03:06, 48.82 MB/s]
20%|█▉ | 2215/11337 [00:24<03:03, 49.64 MB/s]
20%|█▉ | 2222/11337 [00:24<03:01, 50.25 MB/s]
20%|█▉ | 2230/11337 [00:24<02:54, 52.08 MB/s]
20%|█▉ | 2237/11337 [00:24<02:53, 52.47 MB/s]
20%|█▉ | 2245/11337 [00:24<02:47, 54.37 MB/s]
20%|█▉ | 2253/11337 [00:24<02:44, 55.18 MB/s]
20%|█▉ | 2259/11337 [00:24<02:55, 51.84 MB/s]
20%|█▉ | 2266/11337 [00:24<02:53, 52.22 MB/s]
20%|██ | 2272/11337 [00:25<03:02, 49.79 MB/s]
20%|██ | 2278/11337 [00:25<03:08, 48.11 MB/s]
20%|██ | 2284/11337 [00:25<03:12, 46.93 MB/s]
20%|██ | 2291/11337 [00:25<03:07, 48.27 MB/s]
20%|██ | 2298/11337 [00:25<03:03, 49.22 MB/s]
20%|██ | 2304/11337 [00:25<03:09, 47.78 MB/s]
20%|██ | 2311/11337 [00:25<03:04, 48.91 MB/s]
20%|██ | 2319/11337 [00:26<02:54, 51.82 MB/s]
21%|██ | 2326/11337 [00:26<02:54, 51.76 MB/s]
21%|██ | 2333/11337 [00:26<02:54, 51.69 MB/s]
21%|██ | 2341/11337 [00:26<02:47, 53.82 MB/s]
21%|██ | 2349/11337 [00:26<02:42, 55.30 MB/s]
21%|██ | 2355/11337 [00:26<03:05, 48.45 MB/s]
21%|██ | 2362/11337 [00:26<02:49, 52.91 MB/s]
21%|██ | 2368/11337 [00:27<03:00, 49.65 MB/s]
21%|██ | 2374/11337 [00:27<03:17, 45.33 MB/s]
21%|██ | 2379/11337 [00:27<03:14, 45.99 MB/s]
21%|██ | 2384/11337 [00:27<03:27, 43.19 MB/s]
21%|██ | 2390/11337 [00:27<03:25, 43.49 MB/s]
21%|██ | 2396/11337 [00:27<03:24, 43.70 MB/s]
21%|██ | 2402/11337 [00:27<03:23, 43.84 MB/s]
21%|██ | 2409/11337 [00:27<03:13, 46.12 MB/s]
21%|██▏ | 2415/11337 [00:28<03:15, 45.54 MB/s]
21%|██▏ | 2421/11337 [00:28<03:17, 45.14 MB/s]
21%|██▏ | 2428/11337 [00:28<03:09, 47.02 MB/s]
21%|██▏ | 2434/11337 [00:28<03:12, 46.18 MB/s]
22%|██▏ | 2440/11337 [00:28<03:15, 45.61 MB/s]
22%|██▏ | 2447/11337 [00:28<03:08, 47.26 MB/s]
22%|██▏ | 2453/11337 [00:28<03:11, 46.47 MB/s]
22%|██▏ | 2460/11337 [00:29<03:05, 47.87 MB/s]
22%|██▏ | 2466/11337 [00:29<03:09, 46.89 MB/s]
22%|██▏ | 2471/11337 [00:29<03:23, 43.66 MB/s]
22%|██▏ | 2477/11337 [00:29<03:21, 43.91 MB/s]
22%|██▏ | 2482/11337 [00:29<03:31, 41.78 MB/s]
22%|██▏ | 2487/11337 [00:29<03:39, 40.29 MB/s]
22%|██▏ | 2492/11337 [00:29<04:31, 32.58 MB/s]
22%|██▏ | 2498/11337 [00:30<04:03, 36.37 MB/s]
22%|██▏ | 2502/11337 [00:30<04:16, 34.44 MB/s]
22%|██▏ | 2506/11337 [00:30<04:27, 33.02 MB/s]
22%|██▏ | 2510/11337 [00:30<04:41, 31.32 MB/s]
22%|██▏ | 2514/11337 [00:30<04:40, 31.45 MB/s]
22%|██▏ | 2518/11337 [00:30<04:45, 30.86 MB/s]
22%|██▏ | 2522/11337 [00:30<04:49, 30.45 MB/s]
22%|██▏ | 2526/11337 [00:31<04:52, 30.15 MB/s]
22%|██▏ | 2530/11337 [00:31<04:54, 29.93 MB/s]
22%|██▏ | 2534/11337 [00:31<04:55, 29.78 MB/s]
22%|██▏ | 2538/11337 [00:31<04:56, 29.68 MB/s]
22%|██▏ | 2543/11337 [00:31<04:36, 31.78 MB/s]
22%|██▏ | 2547/11337 [00:31<04:42, 31.12 MB/s]
23%|██▎ | 2552/11337 [00:31<04:27, 32.79 MB/s]
23%|██▎ | 2556/11337 [00:31<04:36, 31.78 MB/s]
23%|██▎ | 2560/11337 [00:32<04:41, 31.12 MB/s]
23%|██▎ | 2565/11337 [00:32<04:27, 32.77 MB/s]
23%|██▎ | 2569/11337 [00:32<04:35, 31.81 MB/s]
23%|██▎ | 2573/11337 [00:32<04:48, 30.42 MB/s]
23%|██▎ | 2577/11337 [00:32<04:44, 30.76 MB/s]
23%|██▎ | 2581/11337 [00:32<04:49, 30.29 MB/s]
23%|██▎ | 2585/11337 [00:32<04:56, 29.51 MB/s]
23%|██▎ | 2588/11337 [00:33<05:14, 27.79 MB/s]
23%|██▎ | 2591/11337 [00:33<05:35, 26.09 MB/s]
23%|██▎ | 2595/11337 [00:33<05:22, 27.08 MB/s]
23%|██▎ | 2598/11337 [00:33<05:51, 24.86 MB/s]
23%|██▎ | 2602/11337 [00:33<05:30, 26.45 MB/s]
23%|██▎ | 2605/11337 [00:33<05:47, 25.13 MB/s]
23%|██▎ | 2608/11337 [00:33<06:00, 24.21 MB/s]
23%|██▎ | 2611/11337 [00:34<06:10, 23.56 MB/s]
23%|██▎ | 2614/11337 [00:34<06:17, 23.13 MB/s]
23%|██▎ | 2617/11337 [00:34<06:22, 22.82 MB/s]
23%|██▎ | 2620/11337 [00:34<06:25, 22.62 MB/s]
23%|██▎ | 2623/11337 [00:34<06:27, 22.46 MB/s]
23%|██▎ | 2626/11337 [00:34<06:29, 22.35 MB/s]
23%|██▎ | 2629/11337 [00:34<06:30, 22.28 MB/s]
23%|██▎ | 2632/11337 [00:34<06:31, 22.23 MB/s]
23%|██▎ | 2635/11337 [00:35<06:32, 22.19 MB/s]
23%|██▎ | 2638/11337 [00:35<06:25, 22.54 MB/s]
23%|██▎ | 2641/11337 [00:35<06:28, 22.40 MB/s]
23%|██▎ | 2644/11337 [00:35<06:29, 22.31 MB/s]
23%|██▎ | 2647/11337 [00:35<07:18, 19.82 MB/s]
23%|██▎ | 2651/11337 [00:35<06:21, 22.74 MB/s]
23%|██▎ | 2654/11337 [00:36<06:56, 20.86 MB/s]
23%|██▎ | 2657/11337 [00:36<07:36, 19.03 MB/s]
23%|██▎ | 2660/11337 [00:36<07:18, 19.80 MB/s]
23%|██▎ | 2663/11337 [00:36<07:05, 20.41 MB/s]
24%|██▎ | 2666/11337 [00:36<07:28, 19.31 MB/s]
24%|██▎ | 2669/11337 [00:36<07:12, 20.06 MB/s]
24%|██▎ | 2672/11337 [00:36<07:00, 20.62 MB/s]
24%|██▎ | 2675/11337 [00:37<06:51, 21.04 MB/s]
24%|██▎ | 2678/11337 [00:37<06:45, 21.34 MB/s]
24%|██▎ | 2681/11337 [00:37<06:41, 21.55 MB/s]
24%|██▎ | 2684/11337 [00:37<06:38, 21.71 MB/s]
24%|██▎ | 2688/11337 [00:37<06:00, 23.98 MB/s]
24%|██▎ | 2691/11337 [00:37<06:09, 23.42 MB/s]
24%|██▍ | 2694/11337 [00:37<06:17, 22.91 MB/s]
24%|██▍ | 2697/11337 [00:38<06:21, 22.67 MB/s]
24%|██▍ | 2701/11337 [00:38<05:53, 24.42 MB/s]
24%|██▍ | 2704/11337 [00:38<06:00, 23.98 MB/s]
24%|██▍ | 2707/11337 [00:38<06:08, 23.41 MB/s]
24%|██▍ | 2710/11337 [00:38<06:14, 23.03 MB/s]
24%|██▍ | 2713/11337 [00:38<06:19, 22.74 MB/s]
24%|██▍ | 2717/11337 [00:38<05:51, 24.49 MB/s]
24%|██▍ | 2720/11337 [00:38<05:58, 24.02 MB/s]
24%|██▍ | 2723/11337 [00:39<06:07, 23.44 MB/s]
24%|██▍ | 2726/11337 [00:39<06:13, 23.05 MB/s]
24%|██▍ | 2729/11337 [00:39<06:18, 22.76 MB/s]
24%|██▍ | 2733/11337 [00:39<05:47, 24.74 MB/s]
24%|██▍ | 2736/11337 [00:39<05:59, 23.96 MB/s]
24%|██▍ | 2739/11337 [00:39<06:07, 23.41 MB/s]
24%|██▍ | 2743/11337 [00:39<05:41, 25.19 MB/s]
24%|██▍ | 2746/11337 [00:40<05:53, 24.29 MB/s]
24%|██▍ | 2750/11337 [00:40<05:32, 25.82 MB/s]
24%|██▍ | 2754/11337 [00:40<05:22, 26.65 MB/s]
24%|██▍ | 2757/11337 [00:40<05:35, 25.54 MB/s]
24%|██▍ | 2761/11337 [00:40<05:21, 26.69 MB/s]
24%|██▍ | 2764/11337 [00:40<05:38, 25.35 MB/s]
24%|██▍ | 2768/11337 [00:40<05:22, 26.58 MB/s]
24%|██▍ | 2772/11337 [00:41<06:22, 22.41 MB/s]
24%|██▍ | 2777/11337 [00:41<05:24, 26.41 MB/s]
25%|██▍ | 2780/11337 [00:41<05:39, 25.23 MB/s]
25%|██▍ | 2783/11337 [00:41<05:51, 24.35 MB/s]
25%|██▍ | 2786/11337 [00:41<06:00, 23.70 MB/s]
25%|██▍ | 2789/11337 [00:41<06:07, 23.23 MB/s]
25%|██▍ | 2792/11337 [00:41<06:13, 22.90 MB/s]
25%|██▍ | 2795/11337 [00:42<06:16, 22.66 MB/s]
25%|██▍ | 2798/11337 [00:42<06:09, 23.09 MB/s]
25%|██▍ | 2802/11337 [00:42<05:50, 24.34 MB/s]
25%|██▍ | 2805/11337 [00:42<06:31, 21.77 MB/s]
25%|██▍ | 2809/11337 [00:42<05:56, 23.92 MB/s]
25%|██▍ | 2812/11337 [00:42<06:04, 23.38 MB/s]
25%|██▍ | 2815/11337 [00:42<06:10, 22.98 MB/s]
25%|██▍ | 2818/11337 [00:43<06:19, 22.45 MB/s]
25%|██▍ | 2821/11337 [00:43<06:51, 20.68 MB/s]
25%|██▍ | 2824/11337 [00:43<06:43, 21.07 MB/s]
25%|██▍ | 2827/11337 [00:43<06:38, 21.36 MB/s]
25%|██▍ | 2830/11337 [00:43<06:34, 21.57 MB/s]
25%|██▍ | 2833/11337 [00:43<06:31, 21.71 MB/s]
25%|██▌ | 2836/11337 [00:43<06:29, 21.83 MB/s]
25%|██▌ | 2839/11337 [00:44<06:27, 21.91 MB/s]
25%|██▌ | 2842/11337 [00:44<06:26, 21.96 MB/s]
25%|██▌ | 2845/11337 [00:44<07:47, 18.15 MB/s]
25%|██▌ | 2849/11337 [00:44<06:40, 21.22 MB/s]
25%|██▌ | 2852/11337 [00:44<07:41, 18.37 MB/s]
25%|██▌ | 2855/11337 [00:44<07:29, 18.88 MB/s]
25%|██▌ | 2857/11337 [00:45<07:56, 17.81 MB/s]
25%|██▌ | 2860/11337 [00:45<07:27, 18.95 MB/s]
25%|██▌ | 2863/11337 [00:45<07:07, 19.82 MB/s]
25%|██▌ | 2866/11337 [00:45<07:28, 18.90 MB/s]
25%|██▌ | 2869/11337 [00:45<07:08, 19.77 MB/s]
25%|██▌ | 2872/11337 [00:45<06:54, 20.41 MB/s]
25%|██▌ | 2875/11337 [00:45<06:45, 20.89 MB/s]
25%|██▌ | 2878/11337 [00:46<06:38, 21.24 MB/s]
25%|██▌ | 2881/11337 [00:46<06:33, 21.49 MB/s]
25%|██▌ | 2884/11337 [00:46<06:30, 21.67 MB/s]
25%|██▌ | 2887/11337 [00:46<06:27, 21.79 MB/s]
25%|██▌ | 2890/11337 [00:46<06:26, 21.88 MB/s]
26%|██▌ | 2893/11337 [00:46<06:24, 21.94 MB/s]
26%|██▌ | 2896/11337 [00:46<06:23, 21.99 MB/s]
26%|██▌ | 2899/11337 [00:46<06:23, 22.00 MB/s]
26%|██▌ | 2902/11337 [00:47<06:22, 22.05 MB/s]
26%|██▌ | 2905/11337 [00:47<06:22, 22.06 MB/s]
26%|██▌ | 2908/11337 [00:47<06:21, 22.07 MB/s]
26%|██▌ | 2911/11337 [00:47<06:21, 22.07 MB/s]
26%|██▌ | 2914/11337 [00:47<06:21, 22.06 MB/s]
26%|██▌ | 2918/11337 [00:47<06:27, 21.73 MB/s]
26%|██▌ | 2921/11337 [00:47<06:27, 21.73 MB/s]
26%|██▌ | 2925/11337 [00:48<05:51, 23.91 MB/s]
26%|██▌ | 2928/11337 [00:48<05:59, 23.38 MB/s]
26%|██▌ | 2931/11337 [00:48<06:05, 23.01 MB/s]
26%|██▌ | 2934/11337 [00:48<06:05, 23.02 MB/s]
26%|██▌ | 2938/11337 [00:48<05:40, 24.63 MB/s]
26%|██▌ | 2941/11337 [00:48<05:51, 23.88 MB/s]
26%|██▌ | 2944/11337 [00:48<05:55, 23.60 MB/s]
26%|██▌ | 2948/11337 [00:49<05:34, 25.09 MB/s]
26%|██▌ | 2952/11337 [00:49<05:18, 26.36 MB/s]
26%|██▌ | 2955/11337 [00:49<05:30, 25.37 MB/s]
26%|██▌ | 2959/11337 [00:49<05:18, 26.31 MB/s]
26%|██▌ | 2963/11337 [00:49<05:07, 27.26 MB/s]
26%|██▌ | 2966/11337 [00:49<06:59, 19.95 MB/s]
26%|██▌ | 2972/11337 [00:50<05:20, 26.08 MB/s]
26%|██▌ | 2975/11337 [00:50<05:35, 24.91 MB/s]
26%|██▋ | 2978/11337 [00:50<05:46, 24.15 MB/s]
26%|██▋ | 2981/11337 [00:50<06:23, 21.79 MB/s]
26%|██▋ | 2984/11337 [00:50<06:20, 21.94 MB/s]
26%|██▋ | 2987/11337 [00:50<07:00, 19.86 MB/s]
26%|██▋ | 2990/11337 [00:50<07:25, 18.74 MB/s]
26%|██▋ | 2992/11337 [00:51<07:49, 17.78 MB/s]
26%|██▋ | 2995/11337 [00:51<07:20, 18.93 MB/s]
26%|██▋ | 2997/11337 [00:51<07:49, 17.77 MB/s]
26%|██▋ | 3000/11337 [00:51<07:19, 18.99 MB/s]
26%|██▋ | 3002/11337 [00:51<07:49, 17.77 MB/s]
27%|██▋ | 3005/11337 [00:51<07:18, 19.01 MB/s]
27%|██▋ | 3007/11337 [00:51<07:48, 17.77 MB/s]
27%|██▋ | 3010/11337 [00:52<07:17, 19.03 MB/s]
27%|██▋ | 3012/11337 [00:52<07:48, 17.76 MB/s]
27%|██▋ | 3015/11337 [00:52<07:17, 19.03 MB/s]
27%|██▋ | 3018/11337 [00:52<06:57, 19.92 MB/s]
27%|██▋ | 3021/11337 [00:52<06:44, 20.57 MB/s]
27%|██▋ | 3024/11337 [00:52<07:55, 17.48 MB/s]
27%|██▋ | 3027/11337 [00:52<07:24, 18.69 MB/s]
27%|██▋ | 3029/11337 [00:53<07:51, 17.61 MB/s]
27%|██▋ | 3032/11337 [00:53<08:00, 17.28 MB/s]
27%|██▋ | 3034/11337 [00:53<08:16, 16.72 MB/s]
27%|██▋ | 3037/11337 [00:53<07:39, 18.06 MB/s]
27%|██▋ | 3039/11337 [00:53<08:00, 17.27 MB/s]
27%|██▋ | 3042/11337 [00:53<07:28, 18.50 MB/s]
27%|██▋ | 3045/11337 [00:54<07:39, 18.05 MB/s]
27%|██▋ | 3048/11337 [00:54<07:12, 19.15 MB/s]
27%|██▋ | 3051/11337 [00:54<06:54, 19.97 MB/s]
27%|██▋ | 3054/11337 [00:54<06:42, 20.56 MB/s]
27%|██▋ | 3057/11337 [00:54<06:34, 20.99 MB/s]
27%|██▋ | 3060/11337 [00:54<06:28, 21.32 MB/s]
27%|██▋ | 3063/11337 [00:54<06:24, 21.53 MB/s]
27%|██▋ | 3066/11337 [00:54<06:21, 21.70 MB/s]
27%|██▋ | 3069/11337 [00:55<06:18, 21.82 MB/s]
27%|██▋ | 3072/11337 [00:55<06:23, 21.55 MB/s]
27%|██▋ | 3075/11337 [00:55<06:57, 19.78 MB/s]
27%|██▋ | 3078/11337 [00:55<06:44, 20.42 MB/s]
27%|██▋ | 3081/11337 [00:55<07:07, 19.31 MB/s]
27%|██▋ | 3084/11337 [00:55<06:51, 20.07 MB/s]
27%|██▋ | 3087/11337 [00:56<06:42, 20.51 MB/s]
27%|██▋ | 3090/11337 [00:56<06:33, 20.96 MB/s]
27%|██▋ | 3093/11337 [00:56<06:24, 21.42 MB/s]
27%|██▋ | 3096/11337 [00:56<06:21, 21.62 MB/s]
27%|██▋ | 3100/11337 [00:56<06:18, 21.78 MB/s]
27%|██▋ | 3103/11337 [00:56<06:16, 21.87 MB/s]
27%|██▋ | 3107/11337 [00:56<05:42, 24.00 MB/s]
27%|██▋ | 3110/11337 [00:56<05:50, 23.45 MB/s]
27%|██▋ | 3113/11337 [00:57<05:56, 23.06 MB/s]
27%|██▋ | 3116/11337 [00:57<05:59, 22.86 MB/s]
28%|██▊ | 3120/11337 [00:57<05:32, 24.70 MB/s]
28%|██▊ | 3123/11337 [00:57<05:42, 23.97 MB/s]
28%|██▊ | 3127/11337 [00:57<05:21, 25.57 MB/s]
28%|██▊ | 3130/11337 [00:57<05:34, 24.57 MB/s]
28%|██▊ | 3134/11337 [00:57<05:15, 26.01 MB/s]
28%|██▊ | 3137/11337 [00:58<05:29, 24.91 MB/s]
28%|██▊ | 3141/11337 [00:58<05:12, 26.22 MB/s]
28%|██▊ | 3145/11337 [00:58<05:01, 27.17 MB/s]
28%|██▊ | 3149/11337 [00:58<04:54, 27.83 MB/s]
28%|██▊ | 3152/11337 [00:58<05:12, 26.19 MB/s]
28%|██▊ | 3156/11337 [00:58<05:01, 27.17 MB/s]
28%|██▊ | 3159/11337 [00:58<05:55, 22.98 MB/s]
28%|██▊ | 3164/11337 [00:59<05:02, 26.99 MB/s]
28%|██▊ | 3167/11337 [00:59<05:19, 25.59 MB/s]
28%|██▊ | 3170/11337 [00:59<05:32, 24.58 MB/s]
28%|██▊ | 3173/11337 [00:59<05:42, 23.84 MB/s]
28%|██▊ | 3176/11337 [00:59<05:49, 23.32 MB/s]
28%|██▊ | 3180/11337 [00:59<05:24, 25.12 MB/s]
28%|██▊ | 3183/11337 [00:59<05:36, 24.24 MB/s]
28%|██▊ | 3187/11337 [01:00<05:16, 25.77 MB/s]
28%|██▊ | 3190/11337 [01:00<05:29, 24.69 MB/s]
28%|██▊ | 3194/11337 [01:00<05:11, 26.11 MB/s]
28%|██▊ | 3198/11337 [01:00<05:00, 27.10 MB/s]
28%|██▊ | 3201/11337 [01:00<05:17, 25.61 MB/s]
28%|██▊ | 3205/11337 [01:00<05:03, 26.76 MB/s]
28%|██▊ | 3209/11337 [01:00<04:55, 27.54 MB/s]
28%|██▊ | 3213/11337 [01:00<04:50, 28.01 MB/s]
28%|██▊ | 3217/11337 [01:01<04:45, 28.42 MB/s]
28%|██▊ | 3221/11337 [01:01<04:42, 28.74 MB/s]
28%|██▊ | 3224/11337 [01:01<05:03, 26.74 MB/s]
28%|██▊ | 3228/11337 [01:01<04:54, 27.55 MB/s]
29%|██▊ | 3232/11337 [01:01<04:48, 28.12 MB/s]
29%|██▊ | 3236/11337 [01:01<04:44, 28.52 MB/s]
29%|██▊ | 3240/11337 [01:01<04:41, 28.80 MB/s]
29%|██▊ | 3244/11337 [01:02<04:39, 28.97 MB/s]
29%|██▊ | 3248/11337 [01:02<04:37, 29.12 MB/s]
29%|██▊ | 3252/11337 [01:02<04:36, 29.20 MB/s]
29%|██▊ | 3256/11337 [01:02<04:36, 29.28 MB/s]
29%|██▉ | 3260/11337 [01:02<04:35, 29.31 MB/s]
29%|██▉ | 3264/11337 [01:02<04:34, 29.36 MB/s]
29%|██▉ | 3267/11337 [01:02<05:24, 24.85 MB/s]
29%|██▉ | 3272/11337 [01:03<04:45, 28.22 MB/s]
29%|██▉ | 3275/11337 [01:03<05:04, 26.46 MB/s]
29%|██▉ | 3278/11337 [01:03<05:19, 25.19 MB/s]
29%|██▉ | 3281/11337 [01:03<05:31, 24.28 MB/s]
29%|██▉ | 3284/11337 [01:03<05:40, 23.63 MB/s]
29%|██▉ | 3287/11337 [01:03<05:47, 23.18 MB/s]
29%|██▉ | 3290/11337 [01:03<05:52, 22.85 MB/s]
29%|██▉ | 3293/11337 [01:04<05:55, 22.63 MB/s]
29%|██▉ | 3296/11337 [01:04<06:31, 20.54 MB/s]
29%|██▉ | 3299/11337 [01:04<07:05, 18.91 MB/s]
29%|██▉ | 3302/11337 [01:04<06:46, 19.76 MB/s]
29%|██▉ | 3305/11337 [01:04<06:34, 20.38 MB/s]
29%|██▉ | 3308/11337 [01:04<06:24, 20.86 MB/s]
29%|██▉ | 3311/11337 [01:04<06:18, 21.21 MB/s]
29%|██▉ | 3314/11337 [01:05<06:14, 21.45 MB/s]
29%|██▉ | 3317/11337 [01:05<06:10, 21.64 MB/s]
29%|██▉ | 3320/11337 [01:05<06:08, 21.77 MB/s]
29%|██▉ | 3323/11337 [01:05<06:06, 21.85 MB/s]
29%|██▉ | 3326/11337 [01:05<06:05, 21.93 MB/s]
29%|██▉ | 3329/11337 [01:05<06:36, 20.21 MB/s]
29%|██▉ | 3332/11337 [01:05<06:25, 20.74 MB/s]
29%|██▉ | 3335/11337 [01:06<06:18, 21.13 MB/s]
29%|██▉ | 3338/11337 [01:06<06:13, 21.41 MB/s]
29%|██▉ | 3341/11337 [01:06<06:10, 21.60 MB/s]
30%|██▉ | 3345/11337 [01:06<06:03, 21.99 MB/s]
30%|██▉ | 3348/11337 [01:06<07:14, 18.40 MB/s]
30%|██▉ | 3353/11337 [01:06<05:47, 22.99 MB/s]
30%|██▉ | 3356/11337 [01:07<06:19, 21.01 MB/s]
30%|██▉ | 3359/11337 [01:07<06:14, 21.29 MB/s]
30%|██▉ | 3362/11337 [01:07<06:49, 19.46 MB/s]
30%|██▉ | 3365/11337 [01:07<06:35, 20.14 MB/s]
30%|██▉ | 3368/11337 [01:07<06:25, 20.66 MB/s]
30%|██▉ | 3371/11337 [01:07<06:18, 21.04 MB/s]
30%|██▉ | 3374/11337 [01:07<06:12, 21.36 MB/s]
30%|██▉ | 3377/11337 [01:08<06:09, 21.57 MB/s]
30%|██▉ | 3380/11337 [01:08<06:06, 21.72 MB/s]
30%|██▉ | 3383/11337 [01:08<05:56, 22.31 MB/s]
30%|██▉ | 3386/11337 [01:08<05:58, 22.20 MB/s]
30%|██▉ | 3390/11337 [01:08<05:32, 23.88 MB/s]
30%|██▉ | 3393/11337 [01:08<05:40, 23.35 MB/s]
30%|██▉ | 3396/11337 [01:08<05:45, 22.99 MB/s]
30%|██▉ | 3399/11337 [01:08<05:42, 23.18 MB/s]
30%|███ | 3403/11337 [01:09<05:23, 24.56 MB/s]
30%|███ | 3406/11337 [01:09<05:32, 23.83 MB/s]
30%|███ | 3409/11337 [01:09<05:33, 23.80 MB/s]
30%|███ | 3413/11337 [01:09<05:17, 24.97 MB/s]
30%|███ | 3416/11337 [01:09<05:57, 22.19 MB/s]
30%|███ | 3419/11337 [01:09<06:29, 20.35 MB/s]
30%|███ | 3422/11337 [01:10<06:20, 20.80 MB/s]
30%|███ | 3425/11337 [01:10<06:47, 19.40 MB/s]
30%|███ | 3428/11337 [01:10<06:40, 19.76 MB/s]
30%|███ | 3431/11337 [01:10<06:27, 20.38 MB/s]
30%|███ | 3434/11337 [01:10<06:19, 20.85 MB/s]
30%|███ | 3437/11337 [01:10<06:12, 21.20 MB/s]
30%|███ | 3440/11337 [01:10<06:07, 21.46 MB/s]
30%|███ | 3443/11337 [01:11<06:04, 21.65 MB/s]
30%|███ | 3446/11337 [01:11<06:02, 21.79 MB/s]
30%|███ | 3449/11337 [01:11<06:01, 21.81 MB/s]
30%|███ | 3452/11337 [01:11<06:00, 21.90 MB/s]
30%|███ | 3455/11337 [01:11<05:50, 22.47 MB/s]
31%|███ | 3459/11337 [01:11<05:28, 24.01 MB/s]
31%|███ | 3462/11337 [01:11<05:35, 23.44 MB/s]
31%|███ | 3465/11337 [01:11<05:33, 23.59 MB/s]
31%|███ | 3468/11337 [01:12<05:40, 23.13 MB/s]
31%|███ | 3472/11337 [01:12<05:21, 24.46 MB/s]
31%|███ | 3475/11337 [01:12<05:30, 23.77 MB/s]
31%|███ | 3478/11337 [01:12<05:37, 23.27 MB/s]
31%|███ | 3481/11337 [01:12<05:35, 23.42 MB/s]
31%|███ | 3485/11337 [01:12<05:18, 24.69 MB/s]
31%|███ | 3488/11337 [01:12<05:28, 23.92 MB/s]
31%|███ | 3491/11337 [01:13<05:35, 23.39 MB/s]
31%|███ | 3494/11337 [01:13<05:33, 23.50 MB/s]
31%|███ | 3498/11337 [01:13<05:16, 24.75 MB/s]
31%|███ | 3501/11337 [01:13<05:26, 23.99 MB/s]
31%|███ | 3505/11337 [01:13<05:06, 25.57 MB/s]
31%|███ | 3508/11337 [01:13<05:18, 24.56 MB/s]
31%|███ | 3512/11337 [01:13<05:01, 25.99 MB/s]
31%|███ | 3515/11337 [01:14<05:07, 25.40 MB/s]
31%|███ | 3519/11337 [01:14<05:00, 26.04 MB/s]
31%|███ | 3522/11337 [01:14<05:07, 25.42 MB/s]
31%|███ | 3526/11337 [01:14<04:59, 26.09 MB/s]
31%|███ | 3530/11337 [01:14<04:48, 27.07 MB/s]
31%|███ | 3534/11337 [01:14<04:41, 27.76 MB/s]
31%|███ | 3537/11337 [01:14<04:52, 26.66 MB/s]
31%|███ | 3541/11337 [01:14<04:43, 27.49 MB/s]
31%|███▏ | 3545/11337 [01:15<04:37, 28.09 MB/s]
31%|███▏ | 3549/11337 [01:15<04:33, 28.48 MB/s]
31%|███▏ | 3553/11337 [01:15<04:30, 28.80 MB/s]
31%|███▏ | 3557/11337 [01:15<04:28, 29.00 MB/s]
31%|███▏ | 3561/11337 [01:15<04:26, 29.14 MB/s]
31%|███▏ | 3566/11337 [01:15<04:12, 30.79 MB/s]
31%|███▏ | 3570/11337 [01:15<04:37, 28.02 MB/s]
32%|███▏ | 3574/11337 [01:16<04:33, 28.42 MB/s]
32%|███▏ | 3577/11337 [01:16<04:51, 26.61 MB/s]
32%|███▏ | 3580/11337 [01:16<05:06, 25.27 MB/s]
32%|███▏ | 3583/11337 [01:16<05:19, 24.29 MB/s]
32%|███▏ | 3586/11337 [01:16<06:30, 19.84 MB/s]
32%|███▏ | 3589/11337 [01:16<06:53, 18.75 MB/s]
32%|███▏ | 3592/11337 [01:17<06:35, 19.59 MB/s]
32%|███▏ | 3595/11337 [01:17<06:22, 20.24 MB/s]
32%|███▏ | 3598/11337 [01:17<06:13, 20.74 MB/s]
32%|███▏ | 3601/11337 [01:17<06:06, 21.10 MB/s]
32%|███▏ | 3604/11337 [01:17<06:01, 21.37 MB/s]
32%|███▏ | 3607/11337 [01:17<05:58, 21.58 MB/s]
32%|███▏ | 3610/11337 [01:17<07:03, 18.27 MB/s]
32%|███▏ | 3613/11337 [01:18<06:44, 19.10 MB/s]
32%|███▏ | 3616/11337 [01:18<06:31, 19.74 MB/s]
32%|███▏ | 3619/11337 [01:18<06:47, 18.93 MB/s]
32%|███▏ | 3622/11337 [01:18<06:30, 19.76 MB/s]
32%|███▏ | 3625/11337 [01:18<06:17, 20.40 MB/s]
32%|███▏ | 3628/11337 [01:18<06:09, 20.88 MB/s]
32%|███▏ | 3631/11337 [01:18<06:03, 21.23 MB/s]
32%|███▏ | 3634/11337 [01:19<05:58, 21.48 MB/s]
32%|███▏ | 3637/11337 [01:19<05:55, 21.66 MB/s]
32%|███▏ | 3640/11337 [01:19<05:53, 21.78 MB/s]
32%|███▏ | 3644/11337 [01:19<05:20, 24.04 MB/s]
32%|███▏ | 3647/11337 [01:19<05:27, 23.46 MB/s]
32%|███▏ | 3650/11337 [01:19<05:33, 23.06 MB/s]
32%|███▏ | 3653/11337 [01:19<05:37, 22.77 MB/s]
32%|███▏ | 3657/11337 [01:20<05:10, 24.75 MB/s]
32%|███▏ | 3660/11337 [01:20<05:20, 23.97 MB/s]
32%|███▏ | 3663/11337 [01:20<05:27, 23.40 MB/s]
32%|███▏ | 3667/11337 [01:20<05:04, 25.19 MB/s]
32%|███▏ | 3670/11337 [01:20<05:15, 24.27 MB/s]
32%|███▏ | 3674/11337 [01:20<04:56, 25.80 MB/s]
32%|███▏ | 3677/11337 [01:20<04:46, 26.72 MB/s]
32%|███▏ | 3680/11337 [01:20<04:57, 25.75 MB/s]
32%|███▏ | 3684/11337 [01:21<04:44, 26.89 MB/s]
33%|███▎ | 3688/11337 [01:21<04:36, 27.66 MB/s]
33%|███▎ | 3692/11337 [01:21<04:35, 27.74 MB/s]
33%|███▎ | 3696/11337 [01:21<04:52, 26.16 MB/s]
33%|███▎ | 3700/11337 [01:21<04:41, 27.09 MB/s]
33%|███▎ | 3704/11337 [01:21<04:34, 27.77 MB/s]
33%|███▎ | 3708/11337 [01:21<04:29, 28.26 MB/s]
33%|███▎ | 3712/11337 [01:22<04:27, 28.47 MB/s]
33%|███▎ | 3716/11337 [01:22<04:24, 28.76 MB/s]
33%|███▎ | 3721/11337 [01:22<04:04, 31.12 MB/s]
33%|███▎ | 3725/11337 [01:22<04:08, 30.63 MB/s]
33%|███▎ | 3729/11337 [01:22<04:38, 27.33 MB/s]
33%|███▎ | 3735/11337 [01:22<03:57, 32.01 MB/s]
33%|███▎ | 3739/11337 [01:22<04:23, 28.81 MB/s]
33%|███▎ | 3743/11337 [01:23<04:25, 28.55 MB/s]
33%|███▎ | 3746/11337 [01:23<04:39, 27.18 MB/s]
33%|███▎ | 3750/11337 [01:23<05:31, 22.89 MB/s]
33%|███▎ | 3756/11337 [01:23<04:25, 28.58 MB/s]
33%|███▎ | 3760/11337 [01:23<04:44, 26.66 MB/s]
33%|███▎ | 3763/11337 [01:23<04:57, 25.47 MB/s]
33%|███▎ | 3766/11337 [01:24<05:08, 24.55 MB/s]
33%|███▎ | 3769/11337 [01:24<05:16, 23.92 MB/s]
33%|███▎ | 3772/11337 [01:24<05:23, 23.39 MB/s]
33%|███▎ | 3776/11337 [01:24<05:31, 22.82 MB/s]
33%|███▎ | 3780/11337 [01:24<05:07, 24.61 MB/s]
33%|███▎ | 3783/11337 [01:24<05:15, 23.91 MB/s]
33%|███▎ | 3786/11337 [01:24<05:22, 23.40 MB/s]
33%|███▎ | 3790/11337 [01:25<05:00, 25.14 MB/s]
33%|███▎ | 3793/11337 [01:25<05:11, 24.25 MB/s]
33%|███▎ | 3797/11337 [01:25<04:52, 25.76 MB/s]
34%|███▎ | 3800/11337 [01:25<05:05, 24.68 MB/s]
34%|███▎ | 3803/11337 [01:25<05:14, 23.94 MB/s]
34%|███▎ | 3807/11337 [01:25<04:57, 25.29 MB/s]
34%|███▎ | 3810/11337 [01:25<05:05, 24.62 MB/s]
34%|███▎ | 3814/11337 [01:26<04:52, 25.76 MB/s]
34%|███▎ | 3817/11337 [01:26<05:01, 24.96 MB/s]
34%|███▎ | 3821/11337 [01:26<04:50, 25.85 MB/s]
34%|███▎ | 3824/11337 [01:26<04:58, 25.17 MB/s]
34%|███▍ | 3828/11337 [01:26<04:43, 26.46 MB/s]
34%|███▍ | 3832/11337 [01:26<04:39, 26.89 MB/s]
34%|███▍ | 3836/11337 [01:26<04:31, 27.63 MB/s]
34%|███▍ | 3839/11337 [01:26<04:44, 26.36 MB/s]
34%|███▍ | 3843/11337 [01:27<04:34, 27.30 MB/s]
34%|███▍ | 3847/11337 [01:27<04:27, 27.95 MB/s]
34%|███▍ | 3851/11337 [01:27<04:23, 28.38 MB/s]
34%|███▍ | 3855/11337 [01:27<04:20, 28.70 MB/s]
34%|███▍ | 3859/11337 [01:27<04:18, 28.93 MB/s]
34%|███▍ | 3863/11337 [01:27<04:16, 29.10 MB/s]
34%|███▍ | 3867/11337 [01:27<04:15, 29.21 MB/s]
34%|███▍ | 3871/11337 [01:28<04:14, 29.28 MB/s]
34%|███▍ | 3876/11337 [01:28<04:00, 31.06 MB/s]
34%|███▍ | 3880/11337 [01:28<04:00, 31.02 MB/s]
34%|███▍ | 3884/11337 [01:28<04:03, 30.56 MB/s]
34%|███▍ | 3889/11337 [01:28<03:53, 31.92 MB/s]
34%|███▍ | 3893/11337 [01:28<03:55, 31.67 MB/s]
34%|███▍ | 3897/11337 [01:28<03:59, 31.05 MB/s]
34%|███▍ | 3902/11337 [01:29<03:47, 32.75 MB/s]
34%|███▍ | 3907/11337 [01:29<03:42, 33.45 MB/s]
34%|███▍ | 3911/11337 [01:29<03:47, 32.70 MB/s]
35%|███▍ | 3916/11337 [01:29<03:38, 33.94 MB/s]
35%|███▍ | 3921/11337 [01:29<03:35, 34.33 MB/s]
35%|███▍ | 3926/11337 [01:29<03:31, 35.05 MB/s]
35%|███▍ | 3930/11337 [01:29<03:38, 33.87 MB/s]
35%|███▍ | 3936/11337 [01:29<03:23, 36.45 MB/s]
35%|███▍ | 3941/11337 [01:30<03:19, 37.07 MB/s]
35%|███▍ | 3947/11337 [01:30<03:10, 38.70 MB/s]
35%|███▍ | 3952/11337 [01:30<03:11, 38.65 MB/s]
35%|███▍ | 3958/11337 [01:30<03:03, 40.31 MB/s]
35%|███▍ | 3965/11337 [01:30<02:48, 43.66 MB/s]
35%|███▌ | 3971/11337 [01:30<02:47, 43.85 MB/s]
35%|███▌ | 3978/11337 [01:30<02:39, 46.15 MB/s]
35%|███▌ | 3986/11337 [01:31<02:27, 49.93 MB/s]
35%|███▌ | 3993/11337 [01:31<02:25, 50.47 MB/s]
35%|███▌ | 4001/11337 [01:31<02:18, 52.99 MB/s]
35%|███▌ | 4010/11337 [01:31<02:08, 56.93 MB/s]
35%|███▌ | 4018/11337 [01:31<02:07, 57.57 MB/s]
36%|███▌ | 4028/11337 [01:31<01:57, 62.31 MB/s]
36%|███▌ | 4037/11337 [01:31<01:54, 63.51 MB/s]
36%|███▌ | 4047/11337 [01:32<01:49, 66.55 MB/s]
36%|███▌ | 4058/11337 [01:32<01:42, 70.82 MB/s]
36%|███▌ | 4069/11337 [01:32<01:38, 73.88 MB/s]
36%|███▌ | 4080/11337 [01:32<01:34, 76.83 MB/s]
36%|███▌ | 4092/11337 [01:32<01:30, 80.32 MB/s]
36%|███▌ | 4101/11337 [01:32<01:45, 68.37 MB/s]
36%|███▋ | 4118/11337 [01:32<01:25, 84.24 MB/s]
36%|███▋ | 4127/11337 [01:33<01:31, 79.14 MB/s]
36%|███▋ | 4137/11337 [01:33<01:32, 77.47 MB/s]
37%|███▋ | 4147/11337 [01:33<01:34, 76.29 MB/s]
37%|███▋ | 4157/11337 [01:33<01:35, 75.56 MB/s]
37%|███▋ | 4168/11337 [01:33<01:33, 77.06 MB/s]
37%|███▋ | 4179/11337 [01:33<01:31, 78.22 MB/s]
37%|███▋ | 4189/11337 [01:33<01:32, 76.96 MB/s]
37%|███▋ | 4201/11337 [01:33<01:28, 80.27 MB/s]
37%|███▋ | 4210/11337 [01:34<01:33, 75.92 MB/s]
37%|███▋ | 4220/11337 [01:34<02:02, 57.95 MB/s]
37%|███▋ | 4233/11337 [01:34<01:45, 67.29 MB/s]
37%|███▋ | 4241/11337 [01:34<01:58, 59.84 MB/s]
37%|███▋ | 4248/11337 [01:34<02:12, 53.47 MB/s]
38%|███▊ | 4254/11337 [01:35<02:18, 51.12 MB/s]
38%|███▊ | 4261/11337 [01:35<02:19, 50.78 MB/s]
38%|███▊ | 4267/11337 [01:35<02:23, 49.21 MB/s]
38%|███▊ | 4273/11337 [01:35<02:27, 47.99 MB/s]
38%|███▊ | 4280/11337 [01:35<02:24, 48.77 MB/s]
38%|███▊ | 4286/11337 [01:35<02:27, 47.70 MB/s]
38%|███▊ | 4291/11337 [01:35<02:54, 40.29 MB/s]
38%|███▊ | 4301/11337 [01:36<02:22, 49.43 MB/s]
38%|███▊ | 4307/11337 [01:36<02:53, 40.50 MB/s]
38%|███▊ | 4312/11337 [01:36<02:57, 39.53 MB/s]
38%|███▊ | 4317/11337 [01:36<03:00, 38.81 MB/s]
38%|███▊ | 4322/11337 [01:36<03:03, 38.28 MB/s]
38%|███▊ | 4327/11337 [01:36<03:05, 37.87 MB/s]
38%|███▊ | 4333/11337 [01:36<02:58, 39.35 MB/s]
38%|███▊ | 4338/11337 [01:37<03:01, 38.61 MB/s]
38%|███▊ | 4344/11337 [01:37<02:54, 40.02 MB/s]
38%|███▊ | 4349/11337 [01:37<02:56, 39.65 MB/s]
38%|███▊ | 4355/11337 [01:37<02:51, 40.61 MB/s]
38%|███▊ | 4360/11337 [01:37<02:55, 39.85 MB/s]
39%|███▊ | 4366/11337 [01:37<02:50, 40.77 MB/s]
39%|███▊ | 4371/11337 [01:37<02:54, 39.95 MB/s]
39%|███▊ | 4377/11337 [01:37<02:48, 41.21 MB/s]
39%|███▊ | 4383/11337 [01:38<02:46, 41.73 MB/s]
39%|███▊ | 4388/11337 [01:38<02:51, 40.62 MB/s]
39%|███▉ | 4394/11337 [01:38<02:47, 41.36 MB/s]
39%|███▉ | 4400/11337 [01:38<02:44, 42.17 MB/s]
39%|███▉ | 4405/11337 [01:38<02:49, 40.91 MB/s]
39%|███▉ | 4411/11337 [01:38<02:46, 41.54 MB/s]
39%|███▉ | 4416/11337 [01:38<02:51, 40.47 MB/s]
39%|███▉ | 4422/11337 [01:39<02:46, 41.55 MB/s]
39%|███▉ | 4428/11337 [01:39<02:44, 42.02 MB/s]
39%|███▉ | 4433/11337 [01:39<02:49, 40.79 MB/s]
39%|███▉ | 4439/11337 [01:39<02:45, 41.77 MB/s]
39%|███▉ | 4445/11337 [01:39<02:43, 42.20 MB/s]
39%|███▉ | 4450/11337 [01:39<02:48, 40.96 MB/s]
39%|███▉ | 4456/11337 [01:39<02:44, 41.86 MB/s]
39%|███▉ | 4462/11337 [01:40<02:41, 42.56 MB/s]
39%|███▉ | 4468/11337 [01:40<02:39, 43.03 MB/s]
39%|███▉ | 4474/11337 [01:40<02:38, 43.37 MB/s]
40%|███▉ | 4480/11337 [01:40<02:38, 43.37 MB/s]
40%|███▉ | 4486/11337 [01:40<02:37, 43.61 MB/s]
40%|███▉ | 4492/11337 [01:40<02:36, 43.77 MB/s]
40%|███▉ | 4499/11337 [01:40<02:28, 46.01 MB/s]
40%|███▉ | 4504/11337 [01:40<02:39, 42.84 MB/s]
40%|███▉ | 4510/11337 [01:41<02:37, 43.26 MB/s]
40%|███▉ | 4515/11337 [01:41<02:45, 41.30 MB/s]
40%|███▉ | 4520/11337 [01:41<02:50, 39.96 MB/s]
40%|███▉ | 4524/11337 [01:41<03:04, 36.86 MB/s]
40%|███▉ | 4529/11337 [01:41<03:03, 37.08 MB/s]
40%|███▉ | 4534/11337 [01:41<03:03, 37.06 MB/s]
40%|████ | 4539/11337 [01:41<03:03, 36.98 MB/s]
40%|████ | 4545/11337 [01:42<02:54, 38.85 MB/s]
40%|████ | 4550/11337 [01:42<02:56, 38.53 MB/s]
40%|████ | 4556/11337 [01:42<02:48, 40.17 MB/s]
40%|████ | 4562/11337 [01:42<02:44, 41.13 MB/s]
40%|████ | 4568/11337 [01:42<02:41, 42.01 MB/s]
40%|████ | 4574/11337 [01:42<03:25, 32.83 MB/s]
40%|████ | 4584/11337 [01:43<02:37, 42.94 MB/s]
40%|████ | 4589/11337 [01:43<02:43, 41.23 MB/s]
41%|████ | 4594/11337 [01:43<03:02, 36.88 MB/s]
41%|████ | 4599/11337 [01:43<03:02, 36.86 MB/s]
41%|████ | 4603/11337 [01:43<03:13, 34.84 MB/s]
41%|████ | 4608/11337 [01:43<03:10, 35.36 MB/s]
41%|████ | 4613/11337 [01:43<03:08, 35.74 MB/s]
41%|████ | 4618/11337 [01:44<03:06, 36.06 MB/s]
41%|████ | 4623/11337 [01:44<03:05, 36.28 MB/s]
41%|████ | 4628/11337 [01:44<03:04, 36.44 MB/s]
41%|████ | 4633/11337 [01:44<03:03, 36.59 MB/s]
41%|████ | 4638/11337 [01:44<03:02, 36.66 MB/s]
41%|████ | 4643/11337 [01:44<03:02, 36.72 MB/s]
41%|████ | 4648/11337 [01:44<03:02, 36.75 MB/s]
41%|████ | 4654/11337 [01:44<02:51, 38.89 MB/s]
41%|████ | 4659/11337 [01:45<02:54, 38.28 MB/s]
41%|████ | 4664/11337 [01:45<02:56, 37.84 MB/s]
41%|████ | 4669/11337 [01:45<02:57, 37.54 MB/s]
41%|████ | 4674/11337 [01:45<02:58, 37.36 MB/s]
41%|████▏ | 4679/11337 [01:45<02:59, 37.20 MB/s]
41%|████▏ | 4684/11337 [01:45<02:59, 37.09 MB/s]
41%|████▏ | 4689/11337 [01:45<02:59, 37.02 MB/s]
41%|████▏ | 4695/11337 [01:46<02:49, 39.10 MB/s]
41%|████▏ | 4700/11337 [01:46<02:52, 38.44 MB/s]
42%|████▏ | 4705/11337 [01:46<02:54, 37.98 MB/s]
42%|████▏ | 4711/11337 [01:46<02:46, 39.79 MB/s]
42%|████▏ | 4716/11337 [01:46<02:50, 38.92 MB/s]
42%|████▏ | 4722/11337 [01:46<02:44, 40.20 MB/s]
42%|████▏ | 4727/11337 [01:46<02:48, 39.17 MB/s]
42%|████▏ | 4733/11337 [01:47<02:42, 40.63 MB/s]
42%|████▏ | 4738/11337 [01:47<02:45, 39.85 MB/s]
42%|████▏ | 4744/11337 [01:47<02:41, 40.82 MB/s]
42%|████▏ | 4749/11337 [01:47<03:18, 33.21 MB/s]
42%|████▏ | 4757/11337 [01:47<02:44, 39.99 MB/s]
42%|████▏ | 4762/11337 [01:47<03:19, 32.97 MB/s]
42%|████▏ | 4767/11337 [01:48<03:13, 33.93 MB/s]
42%|████▏ | 4771/11337 [01:48<03:37, 30.17 MB/s]
42%|████▏ | 4775/11337 [01:48<03:57, 27.59 MB/s]
42%|████▏ | 4779/11337 [01:48<03:57, 27.66 MB/s]
42%|████▏ | 4782/11337 [01:48<04:06, 26.59 MB/s]
42%|████▏ | 4786/11337 [01:48<04:02, 26.97 MB/s]
42%|████▏ | 4789/11337 [01:48<04:12, 25.92 MB/s]
42%|████▏ | 4793/11337 [01:49<04:06, 26.59 MB/s]
42%|████▏ | 4796/11337 [01:49<04:15, 25.63 MB/s]
42%|████▏ | 4800/11337 [01:49<04:04, 26.75 MB/s]
42%|████▏ | 4803/11337 [01:49<04:17, 25.37 MB/s]
42%|████▏ | 4807/11337 [01:49<04:05, 26.56 MB/s]
42%|████▏ | 4811/11337 [01:49<03:57, 27.43 MB/s]
42%|████▏ | 4814/11337 [01:49<04:12, 25.84 MB/s]
42%|████▏ | 4818/11337 [01:50<04:02, 26.89 MB/s]
43%|████▎ | 4822/11337 [01:50<03:58, 27.34 MB/s]
43%|████▎ | 4825/11337 [01:50<04:09, 26.11 MB/s]
43%|████▎ | 4829/11337 [01:50<04:00, 27.08 MB/s]
43%|████▎ | 4833/11337 [01:50<03:54, 27.77 MB/s]
43%|████▎ | 4837/11337 [01:50<03:49, 28.28 MB/s]
43%|████▎ | 4841/11337 [01:50<03:46, 28.63 MB/s]
43%|████▎ | 4845/11337 [01:50<03:47, 28.57 MB/s]
43%|████▎ | 4848/11337 [01:51<04:00, 26.97 MB/s]
43%|████▎ | 4853/11337 [01:51<03:39, 29.55 MB/s]
43%|████▎ | 4857/11337 [01:51<03:36, 29.87 MB/s]
43%|████▎ | 4861/11337 [01:51<03:37, 29.74 MB/s]
43%|████▎ | 4864/11337 [01:51<03:58, 27.11 MB/s]
43%|████▎ | 4868/11337 [01:51<03:50, 28.09 MB/s]
43%|████▎ | 4871/11337 [01:51<04:05, 26.29 MB/s]
43%|████▎ | 4874/11337 [01:52<04:18, 25.03 MB/s]
43%|████▎ | 4877/11337 [01:52<04:27, 24.14 MB/s]
43%|████▎ | 4880/11337 [01:52<04:34, 23.53 MB/s]
43%|████▎ | 4884/11337 [01:52<04:15, 25.28 MB/s]
43%|████▎ | 4888/11337 [01:52<04:03, 26.51 MB/s]
43%|████▎ | 4891/11337 [01:52<04:15, 25.23 MB/s]
43%|████▎ | 4895/11337 [01:52<04:03, 26.47 MB/s]
43%|████▎ | 4899/11337 [01:52<03:55, 27.34 MB/s]
43%|████▎ | 4902/11337 [01:53<04:09, 25.76 MB/s]
43%|████▎ | 4906/11337 [01:53<03:59, 26.82 MB/s]
43%|████▎ | 4909/11337 [01:53<04:14, 25.22 MB/s]
43%|████▎ | 4912/11337 [01:53<04:24, 24.29 MB/s]
43%|████▎ | 4915/11337 [01:53<04:31, 23.64 MB/s]
43%|████▎ | 4918/11337 [01:53<04:36, 23.17 MB/s]
43%|████▎ | 4921/11337 [01:53<04:40, 22.91 MB/s]
43%|████▎ | 4924/11337 [01:54<04:41, 22.75 MB/s]
43%|████▎ | 4927/11337 [01:54<04:44, 22.56 MB/s]
43%|████▎ | 4930/11337 [01:54<04:45, 22.41 MB/s]
44%|████▎ | 4934/11337 [01:54<04:21, 24.51 MB/s]
44%|████▎ | 4937/11337 [01:54<04:29, 23.78 MB/s]
44%|████▎ | 4940/11337 [01:54<04:34, 23.29 MB/s]
44%|████▎ | 4944/11337 [01:54<04:14, 25.12 MB/s]
44%|████▎ | 4947/11337 [01:55<04:23, 24.23 MB/s]
44%|████▎ | 4950/11337 [01:55<05:27, 19.53 MB/s]
44%|████▎ | 4955/11337 [01:55<04:25, 24.05 MB/s]
44%|████▎ | 4958/11337 [01:55<04:31, 23.50 MB/s]
44%|████▍ | 4961/11337 [01:55<05:00, 21.25 MB/s]
44%|████▍ | 4964/11337 [01:55<04:57, 21.46 MB/s]
44%|████▍ | 4967/11337 [01:55<04:54, 21.63 MB/s]
44%|████▍ | 4970/11337 [01:56<04:52, 21.76 MB/s]
44%|████▍ | 4973/11337 [01:56<04:51, 21.86 MB/s]
44%|████▍ | 4976/11337 [01:56<04:50, 21.93 MB/s]
44%|████▍ | 4979/11337 [01:56<04:49, 21.97 MB/s]
44%|████▍ | 4982/11337 [01:56<04:48, 22.00 MB/s]
44%|████▍ | 4985/11337 [01:56<04:48, 22.03 MB/s]
44%|████▍ | 4989/11337 [01:56<04:22, 24.21 MB/s]
44%|████▍ | 4992/11337 [01:57<05:24, 19.58 MB/s]
44%|████▍ | 4996/11337 [01:57<04:46, 22.16 MB/s]
44%|████▍ | 4999/11337 [01:57<04:46, 22.12 MB/s]
44%|████▍ | 5002/11337 [01:57<05:11, 20.34 MB/s]
44%|████▍ | 5005/11337 [01:57<05:04, 20.81 MB/s]
44%|████▍ | 5008/11337 [01:57<04:59, 21.15 MB/s]
44%|████▍ | 5011/11337 [01:58<04:55, 21.42 MB/s]
44%|████▍ | 5014/11337 [01:58<04:52, 21.61 MB/s]
44%|████▍ | 5017/11337 [01:58<04:50, 21.75 MB/s]
44%|████▍ | 5020/11337 [01:58<04:49, 21.85 MB/s]
44%|████▍ | 5024/11337 [01:58<04:48, 21.92 MB/s]
44%|████▍ | 5028/11337 [01:58<04:48, 21.87 MB/s]
44%|████▍ | 5031/11337 [01:58<05:11, 20.23 MB/s]
44%|████▍ | 5036/11337 [01:59<04:39, 22.53 MB/s]
44%|████▍ | 5039/11337 [01:59<04:41, 22.41 MB/s]
44%|████▍ | 5042/11337 [01:59<05:08, 20.43 MB/s]
45%|████▍ | 5045/11337 [01:59<05:01, 20.84 MB/s]
45%|████▍ | 5048/11337 [01:59<04:56, 21.18 MB/s]
45%|████▍ | 5051/11337 [01:59<04:53, 21.43 MB/s]
45%|████▍ | 5054/11337 [02:00<04:50, 21.62 MB/s]
45%|████▍ | 5057/11337 [02:00<04:48, 21.76 MB/s]
45%|████▍ | 5060/11337 [02:00<04:47, 21.86 MB/s]
45%|████▍ | 5063/11337 [02:00<04:46, 21.93 MB/s]
45%|████▍ | 5067/11337 [02:00<04:19, 24.12 MB/s]
45%|████▍ | 5070/11337 [02:00<04:26, 23.52 MB/s]
45%|████▍ | 5073/11337 [02:00<04:30, 23.12 MB/s]
45%|████▍ | 5077/11337 [02:00<04:10, 24.97 MB/s]
45%|████▍ | 5080/11337 [02:01<05:09, 20.21 MB/s]
45%|████▍ | 5083/11337 [02:01<05:30, 18.92 MB/s]
45%|████▍ | 5087/11337 [02:01<05:12, 20.00 MB/s]
45%|████▍ | 5090/11337 [02:01<06:21, 16.38 MB/s]
45%|████▍ | 5092/11337 [02:01<06:29, 16.01 MB/s]
45%|████▍ | 5094/11337 [02:02<06:37, 15.69 MB/s]
45%|████▍ | 5096/11337 [02:02<07:18, 14.23 MB/s]
45%|████▍ | 5098/11337 [02:02<07:14, 14.35 MB/s]
45%|████▍ | 5100/11337 [02:02<07:11, 14.45 MB/s]
45%|████▌ | 5102/11337 [02:02<07:09, 14.52 MB/s]
45%|████▌ | 5104/11337 [02:02<07:07, 14.57 MB/s]
45%|████▌ | 5106/11337 [02:02<07:06, 14.61 MB/s]
45%|████▌ | 5108/11337 [02:03<07:05, 14.63 MB/s]
45%|████▌ | 5110/11337 [02:03<07:04, 14.68 MB/s]
45%|████▌ | 5112/11337 [02:03<07:03, 14.70 MB/s]
45%|████▌ | 5114/11337 [02:03<07:03, 14.71 MB/s]
45%|████▌ | 5116/11337 [02:03<07:02, 14.71 MB/s]
45%|████▌ | 5119/11337 [02:03<06:46, 15.30 MB/s]
45%|████▌ | 5122/11337 [02:04<06:33, 15.81 MB/s]
45%|████▌ | 5125/11337 [02:04<05:55, 17.49 MB/s]
45%|████▌ | 5127/11337 [02:04<06:11, 16.72 MB/s]
45%|████▌ | 5130/11337 [02:04<06:14, 16.56 MB/s]
45%|████▌ | 5133/11337 [02:04<05:43, 18.04 MB/s]
45%|████▌ | 5135/11337 [02:04<06:02, 17.12 MB/s]
45%|████▌ | 5138/11337 [02:04<05:34, 18.53 MB/s]
45%|████▌ | 5141/11337 [02:05<05:46, 17.87 MB/s]
45%|████▌ | 5144/11337 [02:05<05:27, 18.91 MB/s]
45%|████▌ | 5147/11337 [02:05<05:12, 19.80 MB/s]
45%|████▌ | 5150/11337 [02:05<05:27, 18.87 MB/s]
45%|████▌ | 5153/11337 [02:05<05:13, 19.74 MB/s]
45%|████▌ | 5156/11337 [02:05<05:03, 20.38 MB/s]
46%|████▌ | 5159/11337 [02:05<04:55, 20.88 MB/s]
46%|████▌ | 5162/11337 [02:06<04:50, 21.22 MB/s]
46%|████▌ | 5165/11337 [02:06<04:47, 21.48 MB/s]
46%|████▌ | 5168/11337 [02:06<04:44, 21.66 MB/s]
46%|████▌ | 5171/11337 [02:06<04:43, 21.78 MB/s]
46%|████▌ | 5174/11337 [02:06<04:41, 21.89 MB/s]
46%|████▌ | 5178/11337 [02:06<04:15, 24.11 MB/s]
46%|████▌ | 5181/11337 [02:06<04:21, 23.53 MB/s]
46%|████▌ | 5184/11337 [02:06<04:26, 23.10 MB/s]
46%|████▌ | 5188/11337 [02:07<04:06, 24.98 MB/s]
46%|████▌ | 5191/11337 [02:07<04:14, 24.14 MB/s]
46%|████▌ | 5195/11337 [02:07<03:58, 25.70 MB/s]
46%|████▌ | 5199/11337 [02:07<03:48, 26.83 MB/s]
46%|████▌ | 5203/11337 [02:07<03:42, 27.61 MB/s]
46%|████▌ | 5207/11337 [02:07<03:37, 28.19 MB/s]
46%|████▌ | 5212/11337 [02:07<03:19, 30.76 MB/s]
46%|████▌ | 5217/11337 [02:08<03:07, 32.58 MB/s]
46%|████▌ | 5222/11337 [02:08<03:00, 33.85 MB/s]
46%|████▌ | 5227/11337 [02:08<02:55, 34.75 MB/s]
46%|████▌ | 5233/11337 [02:08<02:42, 37.55 MB/s]
46%|████▌ | 5239/11337 [02:08<02:34, 39.54 MB/s]
46%|████▋ | 5246/11337 [02:08<02:21, 43.10 MB/s]
46%|████▋ | 5252/11337 [02:08<02:19, 43.49 MB/s]
46%|████▋ | 5258/11337 [02:08<02:08, 47.44 MB/s]
46%|████▋ | 5264/11337 [02:09<02:10, 46.42 MB/s]
47%|████▋ | 5272/11337 [02:09<02:00, 50.33 MB/s]
47%|████▋ | 5280/11337 [02:09<01:54, 52.97 MB/s]
47%|████▋ | 5289/11337 [02:09<01:46, 57.05 MB/s]
47%|████▋ | 5298/11337 [02:09<01:40, 59.85 MB/s]
47%|████▋ | 5308/11337 [02:09<01:34, 63.98 MB/s]
47%|████▋ | 5319/11337 [02:09<01:27, 69.04 MB/s]
47%|████▋ | 5330/11337 [02:10<01:22, 72.66 MB/s]
47%|████▋ | 5341/11337 [02:10<01:19, 75.21 MB/s]
47%|████▋ | 5353/11337 [02:10<01:15, 79.22 MB/s]
47%|████▋ | 5366/11337 [02:10<01:10, 84.15 MB/s]
47%|████▋ | 5380/11337 [02:10<01:06, 89.74 MB/s]
48%|████▊ | 5394/11337 [02:10<01:03, 93.78 MB/s]
48%|████▊ | 5409/11337 [02:10<01:00, 98.79 MB/s]
48%|████▊ | 5425/11337 [02:11<00:56, 104.41 MB/s]
48%|████▊ | 5441/11337 [02:11<00:54, 108.58 MB/s]
48%|████▊ | 5458/11337 [02:11<00:51, 113.55 MB/s]
48%|████▊ | 5470/11337 [02:11<00:55, 105.50 MB/s]
48%|████▊ | 5489/11337 [02:11<00:50, 115.99 MB/s]
49%|████▊ | 5502/11337 [02:11<00:53, 109.93 MB/s]
49%|████▊ | 5516/11337 [02:11<00:54, 107.78 MB/s]
49%|████▉ | 5530/11337 [02:12<01:10, 81.86 MB/s]
49%|████▉ | 5554/11337 [02:12<00:54, 105.38 MB/s]
49%|████▉ | 5566/11337 [02:12<00:57, 100.60 MB/s]
49%|████▉ | 5577/11337 [02:12<01:00, 95.21 MB/s]
49%|████▉ | 5587/11337 [02:12<01:04, 89.26 MB/s]
49%|████▉ | 5597/11337 [02:12<01:07, 84.84 MB/s]
49%|████▉ | 5607/11337 [02:12<01:10, 81.78 MB/s]
50%|████▉ | 5618/11337 [02:13<01:10, 81.58 MB/s]
50%|████▉ | 5629/11337 [02:13<01:10, 81.48 MB/s]
50%|████▉ | 5641/11337 [02:13<01:08, 83.38 MB/s]
50%|████▉ | 5652/11337 [02:13<01:08, 82.81 MB/s]
50%|████▉ | 5664/11337 [02:13<01:07, 84.34 MB/s]
50%|█████ | 5673/11337 [02:13<01:18, 72.51 MB/s]
50%|█████ | 5689/11337 [02:13<01:06, 85.28 MB/s]
50%|█████ | 5698/11337 [02:14<01:10, 79.76 MB/s]
50%|█████ | 5707/11337 [02:14<01:14, 75.79 MB/s]
50%|█████ | 5715/11337 [02:14<01:19, 70.88 MB/s]
50%|█████ | 5724/11337 [02:14<01:20, 69.53 MB/s]
51%|█████ | 5733/11337 [02:14<01:21, 68.55 MB/s]
51%|█████ | 5742/11337 [02:14<01:22, 67.85 MB/s]
51%|█████ | 5751/11337 [02:14<01:22, 67.39 MB/s]
51%|█████ | 5760/11337 [02:15<01:23, 67.08 MB/s]
51%|█████ | 5769/11337 [02:15<01:23, 66.82 MB/s]
51%|█████ | 5779/11337 [02:15<01:20, 68.86 MB/s]
51%|█████ | 5789/11337 [02:15<01:19, 70.18 MB/s]
51%|█████ | 5798/11337 [02:15<01:20, 69.10 MB/s]
51%|█████ | 5808/11337 [02:15<01:18, 70.46 MB/s]
51%|█████▏ | 5818/11337 [02:15<01:17, 71.35 MB/s]
51%|█████▏ | 5826/11337 [02:16<01:38, 55.75 MB/s]
52%|█████▏ | 5841/11337 [02:16<01:18, 69.90 MB/s]
52%|█████▏ | 5849/11337 [02:16<01:22, 66.87 MB/s]
52%|█████▏ | 5857/11337 [02:16<01:24, 64.61 MB/s]
52%|█████▏ | 5864/11337 [02:16<01:29, 60.92 MB/s]
52%|█████▏ | 5871/11337 [02:16<01:33, 58.22 MB/s]
52%|█████▏ | 5877/11337 [02:16<01:40, 54.26 MB/s]
52%|█████▏ | 5885/11337 [02:17<01:37, 55.63 MB/s]
52%|█████▏ | 5893/11337 [02:17<01:36, 56.50 MB/s]
52%|█████▏ | 5901/11337 [02:17<01:35, 57.22 MB/s]
52%|█████▏ | 5909/11337 [02:17<01:34, 57.72 MB/s]
52%|█████▏ | 5917/11337 [02:17<01:33, 58.08 MB/s]
52%|█████▏ | 5925/11337 [02:17<01:32, 58.32 MB/s]
52%|█████▏ | 5933/11337 [02:17<01:32, 58.52 MB/s]
52%|█████▏ | 5941/11337 [02:17<01:32, 58.61 MB/s]
52%|█████▏ | 5950/11337 [02:18<01:28, 60.82 MB/s]
53%|█████▎ | 5958/11337 [02:18<01:29, 59.80 MB/s]
53%|█████▎ | 5966/11337 [02:18<01:30, 59.52 MB/s]
53%|█████▎ | 5972/11337 [02:18<01:45, 50.85 MB/s]
53%|█████▎ | 5980/11337 [02:18<01:33, 57.37 MB/s]
53%|█████▎ | 5987/11337 [02:18<01:36, 55.48 MB/s]
53%|█████▎ | 5993/11337 [02:18<01:42, 52.06 MB/s]
53%|█████▎ | 5999/11337 [02:19<01:47, 49.58 MB/s]
53%|█████▎ | 6005/11337 [02:19<01:50, 48.06 MB/s]
53%|█████▎ | 6012/11337 [02:19<01:48, 49.10 MB/s]
53%|█████▎ | 6019/11337 [02:19<01:46, 49.82 MB/s]
53%|█████▎ | 6026/11337 [02:19<01:45, 50.34 MB/s]
53%|█████▎ | 6034/11337 [02:19<01:40, 52.85 MB/s]
53%|█████▎ | 6041/11337 [02:19<01:40, 52.50 MB/s]
53%|█████▎ | 6048/11337 [02:20<02:00, 43.96 MB/s]
53%|█████▎ | 6060/11337 [02:20<01:33, 56.51 MB/s]
54%|█████▎ | 6067/11337 [02:20<01:47, 49.19 MB/s]
54%|█████▎ | 6073/11337 [02:20<01:50, 47.72 MB/s]
54%|█████▎ | 6079/11337 [02:20<01:52, 46.73 MB/s]
54%|█████▎ | 6084/11337 [02:20<01:59, 44.13 MB/s]
54%|█████▎ | 6090/11337 [02:20<01:58, 44.14 MB/s]
54%|█████▍ | 6096/11337 [02:21<01:58, 44.15 MB/s]
54%|█████▍ | 6102/11337 [02:21<01:58, 44.15 MB/s]
54%|█████▍ | 6108/11337 [02:21<01:58, 44.16 MB/s]
54%|█████▍ | 6114/11337 [02:21<01:58, 44.15 MB/s]
54%|█████▍ | 6119/11337 [02:21<02:04, 41.82 MB/s]
54%|█████▍ | 6125/11337 [02:21<02:02, 42.56 MB/s]
54%|█████▍ | 6130/11337 [02:21<02:07, 40.81 MB/s]
54%|█████▍ | 6135/11337 [02:22<02:33, 33.85 MB/s]
54%|█████▍ | 6139/11337 [02:22<02:57, 29.30 MB/s]
54%|█████▍ | 6143/11337 [02:22<03:23, 25.57 MB/s]
54%|█████▍ | 6146/11337 [02:22<03:32, 24.46 MB/s]
54%|█████▍ | 6149/11337 [02:22<03:58, 21.78 MB/s]
54%|█████▍ | 6152/11337 [02:22<03:57, 21.85 MB/s]
54%|█████▍ | 6155/11337 [02:23<03:56, 21.90 MB/s]
54%|█████▍ | 6158/11337 [02:23<04:12, 20.48 MB/s]
54%|█████▍ | 6161/11337 [02:23<04:07, 20.91 MB/s]
54%|█████▍ | 6164/11337 [02:23<04:03, 21.22 MB/s]
54%|█████▍ | 6167/11337 [02:23<04:00, 21.47 MB/s]
54%|█████▍ | 6170/11337 [02:23<04:20, 19.87 MB/s]
54%|█████▍ | 6173/11337 [02:24<04:12, 20.47 MB/s]
54%|█████▍ | 6176/11337 [02:24<04:06, 20.91 MB/s]
55%|█████▍ | 6179/11337 [02:24<04:02, 21.25 MB/s]
55%|█████▍ | 6182/11337 [02:24<03:59, 21.49 MB/s]
55%|█████▍ | 6185/11337 [02:24<03:57, 21.67 MB/s]
55%|█████▍ | 6188/11337 [02:24<03:56, 21.80 MB/s]
55%|█████▍ | 6191/11337 [02:24<03:55, 21.89 MB/s]
55%|█████▍ | 6194/11337 [02:24<03:54, 21.95 MB/s]
55%|█████▍ | 6198/11337 [02:25<03:32, 24.15 MB/s]
55%|█████▍ | 6201/11337 [02:25<03:38, 23.55 MB/s]
55%|█████▍ | 6204/11337 [02:25<03:41, 23.13 MB/s]
55%|█████▍ | 6208/11337 [02:25<03:25, 24.99 MB/s]
55%|█████▍ | 6211/11337 [02:25<03:32, 24.14 MB/s]
55%|█████▍ | 6214/11337 [02:25<03:37, 23.59 MB/s]
55%|█████▍ | 6218/11337 [02:25<03:22, 25.29 MB/s]
55%|█████▍ | 6222/11337 [02:26<03:13, 26.49 MB/s]
55%|█████▍ | 6225/11337 [02:26<03:22, 25.22 MB/s]
55%|█████▍ | 6229/11337 [02:26<03:13, 26.46 MB/s]
55%|█████▍ | 6232/11337 [02:26<03:22, 25.22 MB/s]
55%|█████▌ | 6236/11337 [02:26<03:12, 26.47 MB/s]
55%|█████▌ | 6240/11337 [02:26<03:06, 27.32 MB/s]
55%|█████▌ | 6244/11337 [02:26<03:02, 27.92 MB/s]
55%|█████▌ | 6248/11337 [02:27<02:59, 28.36 MB/s]
55%|█████▌ | 6252/11337 [02:27<02:57, 28.69 MB/s]
55%|█████▌ | 6255/11337 [02:27<03:09, 26.83 MB/s]
55%|█████▌ | 6259/11337 [02:27<03:03, 27.62 MB/s]
55%|█████▌ | 6263/11337 [02:27<03:00, 28.16 MB/s]
55%|█████▌ | 6268/11337 [02:27<02:45, 30.66 MB/s]
55%|█████▌ | 6272/11337 [02:27<02:47, 30.31 MB/s]
55%|█████▌ | 6276/11337 [02:27<02:48, 30.10 MB/s]
55%|█████▌ | 6280/11337 [02:28<02:48, 29.93 MB/s]
55%|█████▌ | 6285/11337 [02:28<02:38, 31.91 MB/s]
55%|█████▌ | 6289/11337 [02:28<02:41, 31.24 MB/s]
56%|█████▌ | 6293/11337 [02:28<02:44, 30.72 MB/s]
56%|█████▌ | 6298/11337 [02:28<02:34, 32.53 MB/s]
56%|█████▌ | 6303/11337 [02:28<02:28, 33.81 MB/s]
56%|█████▌ | 6308/11337 [02:28<02:24, 34.74 MB/s]
56%|█████▌ | 6313/11337 [02:29<02:22, 35.36 MB/s]
56%|█████▌ | 6319/11337 [02:29<02:12, 37.97 MB/s]
56%|█████▌ | 6325/11337 [02:29<02:05, 39.84 MB/s]
56%|█████▌ | 6331/11337 [02:29<02:01, 41.16 MB/s]
56%|█████▌ | 6338/11337 [02:29<01:53, 44.23 MB/s]
56%|█████▌ | 6344/11337 [02:29<01:52, 44.26 MB/s]
56%|█████▌ | 6352/11337 [02:29<01:42, 48.60 MB/s]
56%|█████▌ | 6359/11337 [02:29<01:40, 49.49 MB/s]
56%|█████▌ | 6367/11337 [02:30<01:35, 52.31 MB/s]
56%|█████▌ | 6375/11337 [02:30<01:31, 54.30 MB/s]
56%|█████▋ | 6384/11337 [02:30<01:25, 57.84 MB/s]
56%|█████▋ | 6393/11337 [02:30<01:21, 60.37 MB/s]
56%|█████▋ | 6402/11337 [02:30<01:19, 62.20 MB/s]
57%|█████▋ | 6412/11337 [02:30<01:15, 65.61 MB/s]
57%|█████▋ | 6423/11337 [02:30<01:09, 70.21 MB/s]
57%|█████▋ | 6434/11337 [02:31<01:06, 73.44 MB/s]
57%|█████▋ | 6446/11337 [02:31<01:02, 77.91 MB/s]
57%|█████▋ | 6458/11337 [02:31<01:00, 81.02 MB/s]
57%|█████▋ | 6471/11337 [02:31<00:56, 85.43 MB/s]
57%|█████▋ | 6480/11337 [02:31<01:09, 70.11 MB/s]
57%|█████▋ | 6500/11337 [02:31<00:53, 91.26 MB/s]
57%|█████▋ | 6510/11337 [02:31<00:55, 86.29 MB/s]
58%|█████▊ | 6521/11337 [02:32<00:56, 84.59 MB/s]
58%|█████▊ | 6531/11337 [02:32<01:16, 63.20 MB/s]
58%|█████▊ | 6550/11337 [02:32<00:58, 81.57 MB/s]
58%|█████▊ | 6560/11337 [02:32<01:09, 68.99 MB/s]
58%|█████▊ | 6568/11337 [02:33<01:36, 49.52 MB/s]
58%|█████▊ | 6575/11337 [02:33<01:46, 44.58 MB/s]
58%|█████▊ | 6581/11337 [02:33<02:09, 36.86 MB/s]
58%|█████▊ | 6586/11337 [02:33<02:34, 30.80 MB/s]
58%|█████▊ | 6590/11337 [02:33<02:35, 30.52 MB/s]
58%|█████▊ | 6594/11337 [02:34<02:36, 30.28 MB/s]
58%|█████▊ | 6598/11337 [02:34<03:01, 26.08 MB/s]
58%|█████▊ | 6601/11337 [02:34<02:57, 26.64 MB/s]
58%|█████▊ | 6604/11337 [02:34<03:05, 25.49 MB/s]
58%|█████▊ | 6608/11337 [02:34<03:09, 24.91 MB/s]
58%|█████▊ | 6611/11337 [02:34<03:15, 24.17 MB/s]
58%|█████▊ | 6614/11337 [02:35<03:38, 21.61 MB/s]
58%|█████▊ | 6617/11337 [02:35<03:37, 21.74 MB/s]
58%|█████▊ | 6620/11337 [02:35<03:38, 21.60 MB/s]
58%|█████▊ | 6623/11337 [02:35<03:37, 21.72 MB/s]
58%|█████▊ | 6626/11337 [02:35<03:59, 19.68 MB/s]
58%|█████▊ | 6629/11337 [02:35<04:07, 19.02 MB/s]
58%|█████▊ | 6632/11337 [02:35<03:57, 19.83 MB/s]
59%|█████▊ | 6635/11337 [02:36<03:49, 20.45 MB/s]
59%|█████▊ | 6638/11337 [02:36<03:44, 20.90 MB/s]
59%|█████▊ | 6641/11337 [02:36<03:41, 21.25 MB/s]
59%|█████▊ | 6644/11337 [02:36<03:22, 23.21 MB/s]
59%|█████▊ | 6647/11337 [02:36<03:25, 22.87 MB/s]
59%|█████▊ | 6650/11337 [02:36<03:21, 23.24 MB/s]
59%|█████▊ | 6654/11337 [02:36<03:25, 22.75 MB/s]
59%|█████▊ | 6657/11337 [02:36<03:13, 24.23 MB/s]
59%|█████▊ | 6660/11337 [02:37<03:18, 23.59 MB/s]
59%|█████▉ | 6663/11337 [02:37<03:15, 23.85 MB/s]
59%|█████▉ | 6667/11337 [02:37<03:21, 23.14 MB/s]
59%|█████▉ | 6670/11337 [02:37<03:10, 24.52 MB/s]
59%|█████▉ | 6673/11337 [02:37<03:16, 23.79 MB/s]
59%|█████▉ | 6676/11337 [02:37<03:14, 23.99 MB/s]
59%|█████▉ | 6680/11337 [02:37<03:20, 23.23 MB/s]
59%|█████▉ | 6683/11337 [02:38<03:09, 24.60 MB/s]
59%|█████▉ | 6686/11337 [02:38<03:15, 23.85 MB/s]
59%|█████▉ | 6689/11337 [02:38<03:13, 24.03 MB/s]
59%|█████▉ | 6693/11337 [02:38<03:19, 23.24 MB/s]
59%|█████▉ | 6696/11337 [02:38<03:08, 24.61 MB/s]
59%|█████▉ | 6699/11337 [02:38<03:08, 24.59 MB/s]
59%|█████▉ | 6703/11337 [02:38<03:16, 23.60 MB/s]
59%|█████▉ | 6706/11337 [02:39<03:05, 24.91 MB/s]
59%|█████▉ | 6709/11337 [02:39<03:06, 24.77 MB/s]
59%|█████▉ | 6713/11337 [02:39<02:56, 26.20 MB/s]
59%|█████▉ | 6717/11337 [02:39<02:54, 26.43 MB/s]
59%|█████▉ | 6720/11337 [02:39<02:58, 25.87 MB/s]
59%|█████▉ | 6724/11337 [02:39<02:51, 26.94 MB/s]
59%|█████▉ | 6728/11337 [02:39<02:51, 26.95 MB/s]
59%|█████▉ | 6731/11337 [02:39<02:55, 26.24 MB/s]
59%|█████▉ | 6735/11337 [02:40<02:49, 27.20 MB/s]
59%|█████▉ | 6739/11337 [02:40<02:45, 27.86 MB/s]
59%|█████▉ | 6743/11337 [02:40<02:42, 28.34 MB/s]
60%|█████▉ | 6747/11337 [02:40<02:44, 27.92 MB/s]
60%|█████▉ | 6751/11337 [02:40<02:37, 29.14 MB/s]
60%|█████▉ | 6755/11337 [02:40<02:36, 29.24 MB/s]
60%|█████▉ | 6759/11337 [02:40<02:36, 29.32 MB/s]
60%|█████▉ | 6763/11337 [02:41<02:35, 29.36 MB/s]
60%|█████▉ | 6767/11337 [02:41<02:35, 29.38 MB/s]
60%|█████▉ | 6772/11337 [02:41<02:28, 30.76 MB/s]
60%|█████▉ | 6776/11337 [02:41<02:26, 31.19 MB/s]
60%|█████▉ | 6781/11337 [02:41<02:22, 32.03 MB/s]
60%|█████▉ | 6785/11337 [02:41<02:21, 32.14 MB/s]
60%|█████▉ | 6790/11337 [02:41<02:15, 33.55 MB/s]
60%|█████▉ | 6795/11337 [02:42<02:11, 34.52 MB/s]
60%|█████▉ | 6800/11337 [02:42<02:08, 35.23 MB/s]
60%|██████ | 6806/11337 [02:42<01:59, 37.89 MB/s]
60%|██████ | 6811/11337 [02:42<02:00, 37.60 MB/s]
60%|██████ | 6817/11337 [02:42<01:54, 39.58 MB/s]
60%|██████ | 6824/11337 [02:42<01:44, 43.13 MB/s]
60%|██████ | 6830/11337 [02:42<01:43, 43.48 MB/s]
60%|██████ | 6837/11337 [02:42<01:38, 45.85 MB/s]
60%|██████ | 6844/11337 [02:43<01:34, 47.61 MB/s]
60%|██████ | 6849/11337 [02:43<01:41, 44.25 MB/s]
60%|██████ | 6857/11337 [02:43<01:32, 48.65 MB/s]
61%|██████ | 6862/11337 [02:43<01:39, 45.11 MB/s]
61%|██████ | 6868/11337 [02:43<01:39, 44.80 MB/s]
61%|██████ | 6874/11337 [02:43<01:40, 44.61 MB/s]
61%|██████ | 6880/11337 [02:43<01:40, 44.49 MB/s]
61%|██████ | 6886/11337 [02:44<01:40, 44.41 MB/s]
61%|██████ | 6893/11337 [02:44<01:35, 46.49 MB/s]
61%|██████ | 6899/11337 [02:44<01:36, 45.85 MB/s]
61%|██████ | 6906/11337 [02:44<01:33, 47.51 MB/s]
61%|██████ | 6912/11337 [02:44<01:35, 46.55 MB/s]
61%|██████ | 6919/11337 [02:44<01:31, 48.04 MB/s]
61%|██████ | 6926/11337 [02:44<01:29, 49.04 MB/s]
61%|██████ | 6933/11337 [02:44<01:28, 49.82 MB/s]
61%|██████ | 6940/11337 [02:45<01:27, 50.32 MB/s]
61%|██████▏ | 6947/11337 [02:45<01:26, 50.70 MB/s]
61%|██████▏ | 6955/11337 [02:45<01:22, 53.09 MB/s]
61%|██████▏ | 6962/11337 [02:45<01:23, 52.66 MB/s]
61%|██████▏ | 6969/11337 [02:45<01:23, 52.35 MB/s]
62%|██████▏ | 6977/11337 [02:45<01:20, 54.26 MB/s]
62%|██████▏ | 6985/11337 [02:45<01:18, 55.58 MB/s]
62%|██████▏ | 6992/11337 [02:46<01:19, 54.45 MB/s]
62%|██████▏ | 7000/11337 [02:46<01:17, 55.72 MB/s]
62%|██████▏ | 7007/11337 [02:46<01:19, 54.55 MB/s]
62%|██████▏ | 7015/11337 [02:46<01:17, 55.78 MB/s]
62%|██████▏ | 7022/11337 [02:46<01:19, 54.57 MB/s]
62%|██████▏ | 7030/11337 [02:46<01:17, 55.82 MB/s]
62%|██████▏ | 7037/11337 [02:46<01:18, 54.58 MB/s]
62%|██████▏ | 7045/11337 [02:47<01:16, 55.82 MB/s]
62%|██████▏ | 7051/11337 [02:47<01:30, 47.53 MB/s]
62%|██████▏ | 7060/11337 [02:47<01:21, 52.36 MB/s]
62%|██████▏ | 7066/11337 [02:47<01:33, 45.60 MB/s]
62%|██████▏ | 7072/11337 [02:47<01:34, 45.17 MB/s]
62%|██████▏ | 7078/11337 [02:47<01:34, 44.90 MB/s]
62%|██████▏ | 7084/11337 [02:47<01:35, 44.74 MB/s]
63%|██████▎ | 7090/11337 [02:48<01:35, 44.58 MB/s]
63%|██████▎ | 7096/11337 [02:48<01:35, 44.46 MB/s]
63%|██████▎ | 7103/11337 [02:48<01:31, 46.51 MB/s]
63%|██████▎ | 7110/11337 [02:48<01:28, 47.96 MB/s]
63%|██████▎ | 7117/11337 [02:48<01:26, 48.97 MB/s]
63%|██████▎ | 7123/11337 [02:48<01:28, 47.66 MB/s]
63%|██████▎ | 7130/11337 [02:48<01:26, 48.76 MB/s]
63%|██████▎ | 7138/11337 [02:49<01:21, 51.74 MB/s]
63%|██████▎ | 7145/11337 [02:49<01:21, 51.68 MB/s]
63%|██████▎ | 7152/11337 [02:49<01:21, 51.65 MB/s]
63%|██████▎ | 7159/11337 [02:49<01:20, 51.65 MB/s]
63%|██████▎ | 7167/11337 [02:49<01:17, 53.79 MB/s]
63%|██████▎ | 7174/11337 [02:49<01:18, 53.14 MB/s]
63%|██████▎ | 7182/11337 [02:49<01:15, 54.82 MB/s]
63%|██████▎ | 7189/11337 [02:49<01:16, 53.87 MB/s]
63%|██████▎ | 7197/11337 [02:50<01:14, 55.32 MB/s]
64%|██████▎ | 7204/11337 [02:50<01:16, 54.23 MB/s]
64%|██████▎ | 7212/11337 [02:50<01:14, 55.58 MB/s]
64%|██████▎ | 7219/11337 [02:50<01:15, 54.43 MB/s]
64%|██████▎ | 7227/11337 [02:50<01:13, 55.71 MB/s]
64%|██████▍ | 7234/11337 [02:50<01:15, 54.50 MB/s]
64%|██████▍ | 7242/11337 [02:50<01:13, 55.76 MB/s]
64%|██████▍ | 7248/11337 [02:51<01:25, 47.79 MB/s]
64%|██████▍ | 7257/11337 [02:51<01:17, 52.98 MB/s]
64%|██████▍ | 7263/11337 [02:51<01:20, 50.42 MB/s]
64%|██████▍ | 7269/11337 [02:51<01:23, 48.55 MB/s]
64%|██████▍ | 7274/11337 [02:51<01:29, 45.19 MB/s]
64%|██████▍ | 7280/11337 [02:51<01:30, 44.89 MB/s]
64%|██████▍ | 7286/11337 [02:51<01:30, 44.67 MB/s]
64%|██████▍ | 7293/11337 [02:52<01:26, 46.65 MB/s]
64%|██████▍ | 7299/11337 [02:52<01:27, 45.97 MB/s]
64%|██████▍ | 7306/11337 [02:52<01:24, 47.59 MB/s]
65%|██████▍ | 7313/11337 [02:52<01:22, 48.78 MB/s]
65%|██████▍ | 7319/11337 [02:52<01:24, 47.43 MB/s]
65%|██████▍ | 7326/11337 [02:52<01:22, 48.64 MB/s]
65%|██████▍ | 7334/11337 [02:52<01:17, 51.38 MB/s]
65%|██████▍ | 7341/11337 [02:53<01:17, 51.42 MB/s]
65%|██████▍ | 7348/11337 [02:53<01:17, 51.45 MB/s]
65%|██████▍ | 7355/11337 [02:53<01:17, 51.48 MB/s]
65%|██████▍ | 7363/11337 [02:53<01:14, 53.65 MB/s]
65%|██████▌ | 7370/11337 [02:53<01:14, 53.06 MB/s]
65%|██████▌ | 7378/11337 [02:53<01:12, 54.77 MB/s]
65%|██████▌ | 7385/11337 [02:53<01:13, 53.84 MB/s]
65%|██████▌ | 7391/11337 [02:54<01:26, 45.84 MB/s]
65%|██████▌ | 7401/11337 [02:54<01:12, 54.38 MB/s]
65%|██████▌ | 7407/11337 [02:54<01:16, 51.39 MB/s]
65%|██████▌ | 7413/11337 [02:54<01:19, 49.25 MB/s]
65%|██████▌ | 7419/11337 [02:54<01:22, 47.55 MB/s]
65%|██████▌ | 7424/11337 [02:54<01:27, 44.67 MB/s]
66%|██████▌ | 7430/11337 [02:54<01:27, 44.52 MB/s]
66%|██████▌ | 7437/11337 [02:54<01:23, 46.56 MB/s]
66%|██████▌ | 7443/11337 [02:55<01:24, 45.91 MB/s]
66%|██████▌ | 7450/11337 [02:55<01:21, 47.55 MB/s]
66%|██████▌ | 7457/11337 [02:55<01:19, 48.71 MB/s]
66%|██████▌ | 7464/11337 [02:55<01:18, 49.55 MB/s]
66%|██████▌ | 7471/11337 [02:55<01:17, 50.16 MB/s]
66%|██████▌ | 7478/11337 [02:55<01:16, 50.62 MB/s]
66%|██████▌ | 7485/11337 [02:55<01:15, 50.90 MB/s]
66%|██████▌ | 7492/11337 [02:56<01:15, 51.09 MB/s]
66%|██████▌ | 7499/11337 [02:56<01:14, 51.22 MB/s]
66%|██████▌ | 7507/11337 [02:56<01:11, 53.46 MB/s]
66%|██████▋ | 7514/11337 [02:56<01:12, 52.90 MB/s]
66%|██████▋ | 7522/11337 [02:56<01:09, 54.63 MB/s]
66%|██████▋ | 7529/11337 [02:56<01:10, 53.79 MB/s]
66%|██████▋ | 7537/11337 [02:56<01:08, 55.25 MB/s]
67%|██████▋ | 7544/11337 [02:57<01:09, 54.21 MB/s]
67%|██████▋ | 7552/11337 [02:57<01:08, 55.53 MB/s]
67%|██████▋ | 7559/11337 [02:57<01:09, 54.43 MB/s]
67%|██████▋ | 7567/11337 [02:57<01:07, 55.70 MB/s]
67%|██████▋ | 7574/11337 [02:57<01:09, 54.28 MB/s]
67%|██████▋ | 7582/11337 [02:57<01:07, 55.61 MB/s]
67%|██████▋ | 7589/11337 [02:57<01:08, 54.43 MB/s]
67%|██████▋ | 7597/11337 [02:57<01:07, 55.73 MB/s]
67%|██████▋ | 7604/11337 [02:58<01:08, 54.51 MB/s]
67%|██████▋ | 7610/11337 [02:58<01:27, 42.59 MB/s]
67%|██████▋ | 7622/11337 [02:58<01:08, 54.57 MB/s]
67%|██████▋ | 7628/11337 [02:58<01:11, 51.71 MB/s]
67%|██████▋ | 7634/11337 [02:58<01:14, 49.52 MB/s]
67%|██████▋ | 7640/11337 [02:58<01:17, 48.00 MB/s]
67%|██████▋ | 7645/11337 [02:59<01:22, 44.75 MB/s]
67%|██████▋ | 7652/11337 [02:59<01:18, 46.71 MB/s]
68%|██████▊ | 7658/11337 [02:59<01:20, 45.98 MB/s]
68%|██████▊ | 7664/11337 [02:59<01:20, 45.45 MB/s]
68%|██████▊ | 7671/11337 [02:59<01:17, 47.23 MB/s]
68%|██████▊ | 7678/11337 [02:59<01:15, 48.52 MB/s]
68%|██████▊ | 7685/11337 [02:59<01:13, 49.42 MB/s]
68%|██████▊ | 7692/11337 [02:59<01:12, 50.06 MB/s]
68%|██████▊ | 7699/11337 [03:00<01:12, 50.51 MB/s]
68%|██████▊ | 7706/11337 [03:00<01:11, 50.80 MB/s]
68%|██████▊ | 7713/11337 [03:00<01:11, 51.02 MB/s]
68%|██████▊ | 7720/11337 [03:00<01:10, 51.17 MB/s]
68%|██████▊ | 7726/11337 [03:00<01:27, 41.08 MB/s]
68%|██████▊ | 7737/11337 [03:00<01:09, 51.61 MB/s]
68%|██████▊ | 7743/11337 [03:00<01:13, 49.14 MB/s]
68%|██████▊ | 7749/11337 [03:01<01:29, 40.31 MB/s]
68%|██████▊ | 7755/11337 [03:01<01:26, 41.30 MB/s]
68%|██████▊ | 7760/11337 [03:01<01:29, 40.03 MB/s]
68%|██████▊ | 7765/11337 [03:01<01:38, 36.09 MB/s]
69%|██████▊ | 7769/11337 [03:01<01:43, 34.33 MB/s]
69%|██████▊ | 7773/11337 [03:01<01:47, 33.01 MB/s]
69%|██████▊ | 7778/11337 [03:02<01:44, 34.04 MB/s]
69%|██████▊ | 7782/11337 [03:02<01:48, 32.74 MB/s]
69%|██████▊ | 7787/11337 [03:02<01:44, 33.90 MB/s]
69%|██████▊ | 7791/11337 [03:02<01:48, 32.63 MB/s]
69%|██████▉ | 7796/11337 [03:02<01:44, 33.84 MB/s]
69%|██████▉ | 7801/11337 [03:02<01:41, 34.69 MB/s]
69%|██████▉ | 7806/11337 [03:02<01:40, 35.30 MB/s]
69%|██████▉ | 7810/11337 [03:03<01:44, 33.64 MB/s]
69%|██████▉ | 7815/11337 [03:03<01:41, 34.56 MB/s]
69%|██████▉ | 7820/11337 [03:03<01:39, 35.20 MB/s]
69%|██████▉ | 7825/11337 [03:03<01:38, 35.66 MB/s]
69%|██████▉ | 7829/11337 [03:03<01:43, 33.86 MB/s]
69%|██████▉ | 7834/11337 [03:03<01:40, 34.71 MB/s]
69%|██████▉ | 7839/11337 [03:03<01:38, 35.34 MB/s]
69%|██████▉ | 7844/11337 [03:03<01:37, 35.71 MB/s]
69%|██████▉ | 7849/11337 [03:04<01:37, 35.75 MB/s]
69%|██████▉ | 7853/11337 [03:04<01:41, 34.26 MB/s]
69%|██████▉ | 7858/11337 [03:04<01:39, 35.00 MB/s]
69%|██████▉ | 7863/11337 [03:04<01:37, 35.51 MB/s]
69%|██████▉ | 7868/11337 [03:04<01:36, 35.91 MB/s]
69%|██████▉ | 7873/11337 [03:04<01:35, 36.19 MB/s]
69%|██████▉ | 7878/11337 [03:04<01:35, 36.38 MB/s]
70%|██████▉ | 7883/11337 [03:05<01:34, 36.54 MB/s]
70%|██████▉ | 7888/11337 [03:05<01:34, 36.61 MB/s]
70%|██████▉ | 7893/11337 [03:05<01:33, 36.67 MB/s]
70%|██████▉ | 7899/11337 [03:05<01:54, 29.93 MB/s]
70%|██████▉ | 7907/11337 [03:05<01:32, 37.12 MB/s]
70%|██████▉ | 7912/11337 [03:05<01:41, 33.71 MB/s]
70%|██████▉ | 7916/11337 [03:06<01:44, 32.63 MB/s]
70%|██████▉ | 7921/11337 [03:06<01:49, 31.07 MB/s]
70%|██████▉ | 7926/11337 [03:06<01:44, 32.54 MB/s]
70%|██████▉ | 7930/11337 [03:06<01:47, 31.72 MB/s]
70%|██████▉ | 7935/11337 [03:06<01:42, 33.11 MB/s]
70%|███████ | 7939/11337 [03:06<01:45, 32.09 MB/s]
70%|███████ | 7944/11337 [03:06<01:41, 33.42 MB/s]
70%|███████ | 7949/11337 [03:07<01:38, 34.42 MB/s]
70%|███████ | 7954/11337 [03:07<01:36, 35.13 MB/s]
70%|███████ | 7959/11337 [03:07<01:34, 35.63 MB/s]
70%|███████ | 7964/11337 [03:07<01:33, 35.98 MB/s]
70%|███████ | 7969/11337 [03:07<01:32, 36.22 MB/s]
70%|███████ | 7974/11337 [03:07<01:32, 36.39 MB/s]
70%|███████ | 7979/11337 [03:07<01:41, 32.94 MB/s]
70%|███████ | 7986/11337 [03:08<01:26, 38.58 MB/s]
70%|███████ | 7990/11337 [03:08<01:33, 35.93 MB/s]
71%|███████ | 7994/11337 [03:08<01:38, 34.02 MB/s]
71%|███████ | 7998/11337 [03:08<01:42, 32.68 MB/s]
71%|███████ | 8002/11337 [03:08<01:44, 31.77 MB/s]
71%|███████ | 8006/11337 [03:08<02:00, 27.53 MB/s]
71%|███████ | 8012/11337 [03:08<01:43, 32.08 MB/s]
71%|███████ | 8016/11337 [03:09<02:03, 26.99 MB/s]
71%|███████ | 8020/11337 [03:09<02:00, 27.60 MB/s]
71%|███████ | 8023/11337 [03:09<02:06, 26.14 MB/s]
71%|███████ | 8027/11337 [03:09<02:02, 27.03 MB/s]
71%|███████ | 8030/11337 [03:09<02:08, 25.65 MB/s]
71%|███████ | 8034/11337 [03:09<02:03, 26.72 MB/s]
71%|███████ | 8037/11337 [03:09<02:10, 25.38 MB/s]
71%|███████ | 8041/11337 [03:10<02:04, 26.55 MB/s]
71%|███████ | 8045/11337 [03:10<02:00, 27.38 MB/s]
71%|███████ | 8049/11337 [03:10<01:57, 28.00 MB/s]
71%|███████ | 8052/11337 [03:10<02:04, 26.29 MB/s]
71%|███████ | 8056/11337 [03:10<02:00, 27.21 MB/s]
71%|███████ | 8060/11337 [03:10<01:57, 27.85 MB/s]
71%|███████ | 8064/11337 [03:10<01:55, 28.31 MB/s]
71%|███████ | 8067/11337 [03:11<02:03, 26.51 MB/s]
71%|███████ | 8071/11337 [03:11<01:59, 27.38 MB/s]
71%|███████ | 8075/11337 [03:11<01:56, 27.98 MB/s]
71%|███████▏ | 8079/11337 [03:11<01:54, 28.43 MB/s]
71%|███████▏ | 8083/11337 [03:11<01:53, 28.70 MB/s]
71%|███████▏ | 8087/11337 [03:11<01:52, 28.90 MB/s]
71%|███████▏ | 8091/11337 [03:11<01:51, 29.13 MB/s]
71%|███████▏ | 8094/11337 [03:12<02:12, 24.39 MB/s]
71%|███████▏ | 8100/11337 [03:12<01:58, 27.40 MB/s]
71%|███████▏ | 8103/11337 [03:12<02:04, 25.98 MB/s]
72%|███████▏ | 8107/11337 [03:12<02:10, 24.75 MB/s]
72%|███████▏ | 8110/11337 [03:12<02:28, 21.77 MB/s]
72%|███████▏ | 8115/11337 [03:12<02:25, 22.18 MB/s]
72%|███████▏ | 8118/11337 [03:13<02:25, 22.05 MB/s]
72%|███████▏ | 8121/11337 [03:13<02:25, 22.04 MB/s]
72%|███████▏ | 8124/11337 [03:13<02:26, 21.95 MB/s]
72%|███████▏ | 8127/11337 [03:13<02:26, 21.98 MB/s]
72%|███████▏ | 8130/11337 [03:13<02:38, 20.17 MB/s]
72%|███████▏ | 8133/11337 [03:13<02:47, 19.11 MB/s]
72%|███████▏ | 8136/11337 [03:13<02:41, 19.88 MB/s]
72%|███████▏ | 8139/11337 [03:14<02:36, 20.48 MB/s]
72%|███████▏ | 8142/11337 [03:14<02:32, 20.93 MB/s]
72%|███████▏ | 8145/11337 [03:14<02:30, 21.27 MB/s]
72%|███████▏ | 8148/11337 [03:14<02:42, 19.64 MB/s]
72%|███████▏ | 8151/11337 [03:14<02:36, 20.31 MB/s]
72%|███████▏ | 8154/11337 [03:14<02:33, 20.79 MB/s]
72%|███████▏ | 8157/11337 [03:14<02:30, 21.16 MB/s]
72%|███████▏ | 8160/11337 [03:15<02:28, 21.45 MB/s]
72%|███████▏ | 8163/11337 [03:15<02:26, 21.64 MB/s]
72%|███████▏ | 8166/11337 [03:15<02:25, 21.77 MB/s]
72%|███████▏ | 8169/11337 [03:15<02:24, 21.86 MB/s]
72%|███████▏ | 8172/11337 [03:15<02:24, 21.93 MB/s]
72%|███████▏ | 8176/11337 [03:15<02:10, 24.15 MB/s]
72%|███████▏ | 8179/11337 [03:16<02:43, 19.27 MB/s]
72%|███████▏ | 8184/11337 [03:16<02:10, 24.10 MB/s]
72%|███████▏ | 8187/11337 [03:16<02:25, 21.71 MB/s]
72%|███████▏ | 8190/11337 [03:16<02:24, 21.75 MB/s]
72%|███████▏ | 8193/11337 [03:16<02:24, 21.83 MB/s]
72%|███████▏ | 8196/11337 [03:16<02:23, 21.88 MB/s]
72%|███████▏ | 8199/11337 [03:16<02:23, 21.94 MB/s]
72%|███████▏ | 8202/11337 [03:17<02:22, 21.98 MB/s]
72%|███████▏ | 8205/11337 [03:17<02:22, 22.00 MB/s]
72%|███████▏ | 8208/11337 [03:17<02:22, 22.03 MB/s]
72%|███████▏ | 8211/11337 [03:17<02:22, 21.91 MB/s]
72%|███████▏ | 8214/11337 [03:17<02:22, 21.94 MB/s]
72%|███████▏ | 8217/11337 [03:17<02:21, 21.98 MB/s]
73%|███████▎ | 8221/11337 [03:17<02:08, 24.18 MB/s]
73%|███████▎ | 8224/11337 [03:17<02:12, 23.56 MB/s]
73%|███████▎ | 8228/11337 [03:18<02:02, 25.29 MB/s]
73%|███████▎ | 8231/11337 [03:18<02:07, 24.34 MB/s]
73%|███████▎ | 8234/11337 [03:18<02:10, 23.71 MB/s]
73%|███████▎ | 8237/11337 [03:18<02:39, 19.41 MB/s]
73%|███████▎ | 8242/11337 [03:18<02:08, 24.00 MB/s]
73%|███████▎ | 8245/11337 [03:18<02:11, 23.46 MB/s]
73%|███████▎ | 8248/11337 [03:19<02:14, 23.04 MB/s]
73%|███████▎ | 8251/11337 [03:19<02:28, 20.72 MB/s]
73%|███████▎ | 8254/11337 [03:19<02:26, 21.08 MB/s]
73%|███████▎ | 8257/11337 [03:19<02:24, 21.36 MB/s]
73%|███████▎ | 8260/11337 [03:19<02:22, 21.57 MB/s]
73%|███████▎ | 8263/11337 [03:19<02:21, 21.72 MB/s]
73%|███████▎ | 8267/11337 [03:19<02:08, 23.94 MB/s]
73%|███████▎ | 8270/11337 [03:20<02:11, 23.40 MB/s]
73%|███████▎ | 8273/11337 [03:20<02:13, 23.02 MB/s]
73%|███████▎ | 8276/11337 [03:20<02:14, 22.74 MB/s]
73%|███████▎ | 8280/11337 [03:20<02:03, 24.71 MB/s]
73%|███████▎ | 8283/11337 [03:20<02:07, 23.93 MB/s]
73%|███████▎ | 8287/11337 [03:20<01:59, 25.56 MB/s]
73%|███████▎ | 8290/11337 [03:20<02:04, 24.52 MB/s]
73%|███████▎ | 8293/11337 [03:20<02:07, 23.82 MB/s]
73%|███████▎ | 8297/11337 [03:21<01:59, 25.43 MB/s]
73%|███████▎ | 8300/11337 [03:21<02:03, 24.51 MB/s]
73%|███████▎ | 8304/11337 [03:21<01:57, 25.90 MB/s]
73%|███████▎ | 8307/11337 [03:21<02:02, 24.77 MB/s]
73%|███████▎ | 8310/11337 [03:21<02:05, 24.04 MB/s]
73%|███████▎ | 8314/11337 [03:21<01:58, 25.59 MB/s]
73%|███████▎ | 8317/11337 [03:22<02:26, 20.60 MB/s]
73%|███████▎ | 8321/11337 [03:22<02:23, 21.07 MB/s]
73%|███████▎ | 8324/11337 [03:22<02:22, 21.21 MB/s]
73%|███████▎ | 8327/11337 [03:22<02:20, 21.38 MB/s]
73%|███████▎ | 8330/11337 [03:22<02:19, 21.57 MB/s]
74%|███████▎ | 8333/11337 [03:22<02:18, 21.72 MB/s]
74%|███████▎ | 8336/11337 [03:22<02:19, 21.50 MB/s]
74%|███████▎ | 8339/11337 [03:23<02:16, 22.01 MB/s]
74%|███████▎ | 8342/11337 [03:23<02:15, 22.03 MB/s]
74%|███████▎ | 8345/11337 [03:23<02:15, 22.05 MB/s]
74%|███████▎ | 8348/11337 [03:23<02:15, 22.07 MB/s]
74%|███████▎ | 8351/11337 [03:23<02:14, 22.14 MB/s]
74%|███████▎ | 8354/11337 [03:23<02:14, 22.24 MB/s]
74%|███████▎ | 8358/11337 [03:23<02:03, 24.20 MB/s]
74%|███████▎ | 8361/11337 [03:23<02:05, 23.65 MB/s]
74%|███████▍ | 8365/11337 [03:24<01:57, 25.29 MB/s]
74%|███████▍ | 8368/11337 [03:24<02:01, 24.38 MB/s]
74%|███████▍ | 8371/11337 [03:24<02:05, 23.68 MB/s]
74%|███████▍ | 8375/11337 [03:24<01:56, 25.38 MB/s]
74%|███████▍ | 8378/11337 [03:24<02:01, 24.42 MB/s]
74%|███████▍ | 8382/11337 [03:24<01:54, 25.89 MB/s]
74%|███████▍ | 8385/11337 [03:24<01:59, 24.78 MB/s]
74%|███████▍ | 8388/11337 [03:25<02:02, 23.98 MB/s]
74%|███████▍ | 8392/11337 [03:25<01:55, 25.60 MB/s]
74%|███████▍ | 8395/11337 [03:25<01:59, 24.58 MB/s]
74%|███████▍ | 8398/11337 [03:25<02:02, 24.01 MB/s]
74%|███████▍ | 8402/11337 [03:25<01:55, 25.44 MB/s]
74%|███████▍ | 8405/11337 [03:25<01:59, 24.46 MB/s]
74%|███████▍ | 8409/11337 [03:25<01:52, 25.94 MB/s]
74%|███████▍ | 8412/11337 [03:26<01:57, 24.81 MB/s]
74%|███████▍ | 8416/11337 [03:26<01:51, 26.18 MB/s]
74%|███████▍ | 8419/11337 [03:26<01:56, 25.14 MB/s]
74%|███████▍ | 8423/11337 [03:26<01:51, 26.25 MB/s]
74%|███████▍ | 8427/11337 [03:26<01:47, 27.18 MB/s]
74%|███████▍ | 8430/11337 [03:26<02:15, 21.38 MB/s]
74%|███████▍ | 8435/11337 [03:26<01:54, 25.43 MB/s]
74%|███████▍ | 8438/11337 [03:27<01:58, 24.52 MB/s]
74%|███████▍ | 8441/11337 [03:27<02:01, 23.83 MB/s]
74%|███████▍ | 8444/11337 [03:27<02:03, 23.34 MB/s]
75%|███████▍ | 8447/11337 [03:27<02:05, 22.97 MB/s]
75%|███████▍ | 8450/11337 [03:27<02:07, 22.71 MB/s]
75%|███████▍ | 8453/11337 [03:27<02:08, 22.53 MB/s]
75%|███████▍ | 8457/11337 [03:27<01:57, 24.56 MB/s]
75%|███████▍ | 8460/11337 [03:27<02:00, 23.85 MB/s]
75%|███████▍ | 8463/11337 [03:28<02:03, 23.29 MB/s]
75%|███████▍ | 8466/11337 [03:28<02:05, 22.91 MB/s]
75%|███████▍ | 8469/11337 [03:28<02:06, 22.65 MB/s]
75%|███████▍ | 8472/11337 [03:28<02:07, 22.47 MB/s]
75%|███████▍ | 8475/11337 [03:28<02:20, 20.41 MB/s]
75%|███████▍ | 8478/11337 [03:28<02:16, 20.88 MB/s]
75%|███████▍ | 8481/11337 [03:28<02:14, 21.23 MB/s]
75%|███████▍ | 8484/11337 [03:29<02:13, 21.34 MB/s]
75%|███████▍ | 8487/11337 [03:29<02:11, 21.70 MB/s]
75%|███████▍ | 8490/11337 [03:29<02:11, 21.67 MB/s]
75%|███████▍ | 8493/11337 [03:29<02:09, 21.94 MB/s]
75%|███████▍ | 8496/11337 [03:29<02:09, 21.97 MB/s]
75%|███████▍ | 8499/11337 [03:29<02:08, 22.01 MB/s]
75%|███████▍ | 8502/11337 [03:29<02:08, 22.03 MB/s]
75%|███████▌ | 8505/11337 [03:30<02:08, 22.05 MB/s]
75%|███████▌ | 8508/11337 [03:30<02:08, 22.06 MB/s]
75%|███████▌ | 8511/11337 [03:30<02:08, 22.07 MB/s]
75%|███████▌ | 8515/11337 [03:30<01:56, 24.15 MB/s]
75%|███████▌ | 8518/11337 [03:30<02:23, 19.65 MB/s]
75%|███████▌ | 8522/11337 [03:30<02:06, 22.23 MB/s]
75%|███████▌ | 8525/11337 [03:31<02:18, 20.34 MB/s]
75%|███████▌ | 8528/11337 [03:31<02:15, 20.79 MB/s]
75%|███████▌ | 8531/11337 [03:31<02:26, 19.14 MB/s]
75%|███████▌ | 8534/11337 [03:31<02:20, 19.91 MB/s]
75%|███████▌ | 8537/11337 [03:31<02:16, 20.50 MB/s]
75%|███████▌ | 8540/11337 [03:31<02:13, 20.94 MB/s]
75%|███████▌ | 8543/11337 [03:31<02:11, 21.27 MB/s]
75%|███████▌ | 8546/11337 [03:32<02:09, 21.50 MB/s]
75%|███████▌ | 8549/11337 [03:32<02:08, 21.67 MB/s]
75%|███████▌ | 8553/11337 [03:32<01:56, 23.93 MB/s]
75%|███████▌ | 8556/11337 [03:32<01:58, 23.40 MB/s]
75%|███████▌ | 8559/11337 [03:32<02:00, 23.01 MB/s]
76%|███████▌ | 8562/11337 [03:32<02:02, 22.74 MB/s]
76%|███████▌ | 8566/11337 [03:32<01:52, 24.72 MB/s]
76%|███████▌ | 8569/11337 [03:32<01:55, 23.94 MB/s]
76%|███████▌ | 8572/11337 [03:33<01:58, 23.39 MB/s]
76%|███████▌ | 8575/11337 [03:33<02:00, 23.00 MB/s]
76%|███████▌ | 8579/11337 [03:33<01:50, 24.91 MB/s]
76%|███████▌ | 8582/11337 [03:33<01:54, 24.07 MB/s]
76%|███████▌ | 8585/11337 [03:33<01:57, 23.47 MB/s]
76%|███████▌ | 8588/11337 [03:33<01:59, 23.07 MB/s]
76%|███████▌ | 8592/11337 [03:33<01:50, 24.95 MB/s]
76%|███████▌ | 8595/11337 [03:34<01:53, 24.10 MB/s]
76%|███████▌ | 8598/11337 [03:34<01:56, 23.50 MB/s]
76%|███████▌ | 8601/11337 [03:34<01:58, 23.12 MB/s]
76%|███████▌ | 8605/11337 [03:34<01:49, 24.96 MB/s]
76%|███████▌ | 8608/11337 [03:34<01:53, 24.13 MB/s]
76%|███████▌ | 8612/11337 [03:34<01:46, 25.70 MB/s]
76%|███████▌ | 8615/11337 [03:34<01:50, 24.64 MB/s]
76%|███████▌ | 8619/11337 [03:35<01:44, 26.07 MB/s]
76%|███████▌ | 8622/11337 [03:35<01:49, 24.85 MB/s]
76%|███████▌ | 8626/11337 [03:35<01:43, 26.23 MB/s]
76%|███████▌ | 8630/11337 [03:35<01:39, 27.17 MB/s]
76%|███████▌ | 8633/11337 [03:35<01:45, 25.67 MB/s]
76%|███████▌ | 8637/11337 [03:35<01:40, 26.80 MB/s]
76%|███████▌ | 8640/11337 [03:35<01:55, 23.44 MB/s]
76%|███████▋ | 8645/11337 [03:36<01:38, 27.23 MB/s]
76%|███████▋ | 8648/11337 [03:36<01:54, 23.54 MB/s]
76%|███████▋ | 8651/11337 [03:36<01:56, 23.14 MB/s]
76%|███████▋ | 8655/11337 [03:36<01:59, 22.36 MB/s]
76%|███████▋ | 8659/11337 [03:36<01:50, 24.21 MB/s]
76%|███████▋ | 8662/11337 [03:36<01:53, 23.65 MB/s]
76%|███████▋ | 8666/11337 [03:36<01:45, 25.25 MB/s]
76%|███████▋ | 8669/11337 [03:37<01:49, 24.37 MB/s]
77%|███████▋ | 8673/11337 [03:37<01:43, 25.82 MB/s]
77%|███████▋ | 8676/11337 [03:37<01:47, 24.73 MB/s]
77%|███████▋ | 8680/11337 [03:37<01:41, 26.14 MB/s]
77%|███████▋ | 8684/11337 [03:37<01:37, 27.09 MB/s]
77%|███████▋ | 8688/11337 [03:37<01:35, 27.77 MB/s]
77%|███████▋ | 8691/11337 [03:37<01:40, 26.45 MB/s]
77%|███████▋ | 8695/11337 [03:38<01:37, 27.01 MB/s]
77%|███████▋ | 8699/11337 [03:38<01:35, 27.66 MB/s]
77%|███████▋ | 8703/11337 [03:38<01:33, 28.11 MB/s]
77%|███████▋ | 8707/11337 [03:38<01:32, 28.51 MB/s]
77%|███████▋ | 8711/11337 [03:38<01:31, 28.79 MB/s]
77%|███████▋ | 8715/11337 [03:38<01:30, 28.99 MB/s]
77%|███████▋ | 8719/11337 [03:38<01:29, 29.13 MB/s]
77%|███████▋ | 8723/11337 [03:38<01:29, 29.19 MB/s]
77%|███████▋ | 8727/11337 [03:39<01:29, 29.27 MB/s]
77%|███████▋ | 8731/11337 [03:39<01:28, 29.33 MB/s]
77%|███████▋ | 8735/11337 [03:39<01:28, 29.36 MB/s]
77%|███████▋ | 8739/11337 [03:39<01:28, 29.39 MB/s]
77%|███████▋ | 8742/11337 [03:39<01:35, 27.21 MB/s]
77%|███████▋ | 8746/11337 [03:39<01:33, 27.86 MB/s]
77%|███████▋ | 8750/11337 [03:39<01:31, 28.34 MB/s]
77%|███████▋ | 8754/11337 [03:40<01:30, 28.67 MB/s]
77%|███████▋ | 8758/11337 [03:40<01:29, 28.88 MB/s]
77%|███████▋ | 8762/11337 [03:40<01:28, 29.08 MB/s]
77%|███████▋ | 8766/11337 [03:40<01:28, 29.19 MB/s]
77%|███████▋ | 8771/11337 [03:40<01:21, 31.43 MB/s]
77%|███████▋ | 8775/11337 [03:40<01:23, 30.86 MB/s]
77%|███████▋ | 8779/11337 [03:40<01:24, 30.44 MB/s]
77%|███████▋ | 8783/11337 [03:41<01:24, 30.15 MB/s]
78%|███████▊ | 8788/11337 [03:41<01:19, 32.12 MB/s]
78%|███████▊ | 8792/11337 [03:41<01:21, 31.33 MB/s]
78%|███████▊ | 8796/11337 [03:41<01:22, 30.79 MB/s]
78%|███████▊ | 8800/11337 [03:41<01:29, 28.30 MB/s]
78%|███████▊ | 8804/11337 [03:41<01:22, 30.70 MB/s]
78%|███████▊ | 8808/11337 [03:41<01:23, 30.30 MB/s]
78%|███████▊ | 8812/11337 [03:41<01:29, 28.07 MB/s]
78%|███████▊ | 8815/11337 [03:42<01:29, 28.24 MB/s]
78%|███████▊ | 8818/11337 [03:42<01:35, 26.36 MB/s]
78%|███████▊ | 8821/11337 [03:42<01:40, 25.06 MB/s]
78%|███████▊ | 8825/11337 [03:42<01:35, 26.39 MB/s]
78%|███████▊ | 8829/11337 [03:42<01:31, 27.31 MB/s]
78%|███████▊ | 8833/11337 [03:42<01:29, 27.96 MB/s]
78%|███████▊ | 8837/11337 [03:42<01:28, 28.40 MB/s]
78%|███████▊ | 8842/11337 [03:43<01:20, 30.90 MB/s]
78%|███████▊ | 8846/11337 [03:43<01:21, 30.47 MB/s]
78%|███████▊ | 8850/11337 [03:43<01:22, 30.16 MB/s]
78%|███████▊ | 8855/11337 [03:43<01:17, 32.12 MB/s]
78%|███████▊ | 8859/11337 [03:43<01:19, 31.35 MB/s]
78%|███████▊ | 8864/11337 [03:43<01:15, 32.96 MB/s]
78%|███████▊ | 8868/11337 [03:43<01:17, 31.93 MB/s]
78%|███████▊ | 8873/11337 [03:43<01:13, 33.36 MB/s]
78%|███████▊ | 8877/11337 [03:44<01:16, 32.22 MB/s]
78%|███████▊ | 8882/11337 [03:44<01:13, 33.57 MB/s]
78%|███████▊ | 8886/11337 [03:44<01:15, 32.36 MB/s]
78%|███████▊ | 8890/11337 [03:44<01:17, 31.49 MB/s]
78%|███████▊ | 8895/11337 [03:44<01:13, 33.06 MB/s]
78%|███████▊ | 8899/11337 [03:44<01:16, 31.98 MB/s]
79%|███████▊ | 8904/11337 [03:44<01:12, 33.41 MB/s]
79%|███████▊ | 8908/11337 [03:45<01:15, 32.24 MB/s]
79%|███████▊ | 8913/11337 [03:45<01:12, 33.58 MB/s]
79%|███████▊ | 8917/11337 [03:45<01:14, 32.37 MB/s]
79%|███████▊ | 8922/11337 [03:45<01:11, 33.68 MB/s]
79%|███████▊ | 8926/11337 [03:45<01:14, 32.42 MB/s]
79%|███████▉ | 8931/11337 [03:45<01:11, 33.72 MB/s]
79%|███████▉ | 8935/11337 [03:45<01:20, 29.77 MB/s]
79%|███████▉ | 8940/11337 [03:46<01:14, 32.10 MB/s]
79%|███████▉ | 8944/11337 [03:46<01:16, 31.31 MB/s]
79%|███████▉ | 8948/11337 [03:46<01:23, 28.46 MB/s]
79%|███████▉ | 8952/11337 [03:46<01:24, 28.16 MB/s]
79%|███████▉ | 8956/11337 [03:46<01:32, 25.69 MB/s]
79%|███████▉ | 8960/11337 [03:46<01:29, 26.68 MB/s]
79%|███████▉ | 8964/11337 [03:46<01:26, 27.44 MB/s]
79%|███████▉ | 8968/11337 [03:47<01:24, 28.01 MB/s]
79%|███████▉ | 8973/11337 [03:47<01:17, 30.51 MB/s]
79%|███████▉ | 8977/11337 [03:47<01:18, 30.20 MB/s]
79%|███████▉ | 8981/11337 [03:47<01:24, 27.89 MB/s]
79%|███████▉ | 8984/11337 [03:47<01:23, 28.25 MB/s]
79%|███████▉ | 8987/11337 [03:47<01:29, 26.39 MB/s]
79%|███████▉ | 8990/11337 [03:47<01:33, 25.09 MB/s]
79%|███████▉ | 8994/11337 [03:48<01:28, 26.39 MB/s]
79%|███████▉ | 8997/11337 [03:48<01:33, 25.08 MB/s]
79%|███████▉ | 9001/11337 [03:48<01:28, 26.37 MB/s]
79%|███████▉ | 9004/11337 [03:48<01:32, 25.09 MB/s]
79%|███████▉ | 9008/11337 [03:48<01:28, 26.37 MB/s]
79%|███████▉ | 9011/11337 [03:48<01:32, 25.12 MB/s]
80%|███████▉ | 9015/11337 [03:48<01:27, 26.40 MB/s]
80%|███████▉ | 9018/11337 [03:49<01:32, 25.12 MB/s]
80%|███████▉ | 9022/11337 [03:49<01:27, 26.40 MB/s]
80%|███████▉ | 9025/11337 [03:49<01:32, 25.12 MB/s]
80%|███████▉ | 9029/11337 [03:49<01:27, 26.40 MB/s]
80%|███████▉ | 9033/11337 [03:49<01:24, 27.30 MB/s]
80%|███████▉ | 9036/11337 [03:49<01:29, 25.77 MB/s]
80%|███████▉ | 9040/11337 [03:49<01:25, 26.86 MB/s]
80%|███████▉ | 9044/11337 [03:49<01:23, 27.62 MB/s]
80%|███████▉ | 9047/11337 [03:50<01:28, 25.99 MB/s]
80%|███████▉ | 9051/11337 [03:50<01:24, 27.03 MB/s]
80%|███████▉ | 9055/11337 [03:50<01:22, 27.76 MB/s]
80%|███████▉ | 9059/11337 [03:50<01:20, 28.24 MB/s]
80%|███████▉ | 9063/11337 [03:50<01:19, 28.61 MB/s]
80%|███████▉ | 9067/11337 [03:50<01:18, 28.83 MB/s]
80%|████████ | 9071/11337 [03:50<01:18, 29.05 MB/s]
80%|████████ | 9075/11337 [03:51<01:17, 29.17 MB/s]
80%|████████ | 9079/11337 [03:51<01:17, 29.27 MB/s]
80%|████████ | 9083/11337 [03:51<01:16, 29.32 MB/s]
80%|████████ | 9087/11337 [03:51<01:16, 29.36 MB/s]
80%|████████ | 9092/11337 [03:51<01:11, 31.54 MB/s]
80%|████████ | 9096/11337 [03:51<01:12, 30.94 MB/s]
80%|████████ | 9100/11337 [03:51<01:13, 30.51 MB/s]
80%|████████ | 9105/11337 [03:52<01:08, 32.37 MB/s]
80%|████████ | 9109/11337 [03:52<01:10, 31.52 MB/s]
80%|████████ | 9114/11337 [03:52<01:07, 33.06 MB/s]
80%|████████ | 9118/11337 [03:52<01:09, 32.00 MB/s]
80%|████████ | 9123/11337 [03:52<01:06, 33.41 MB/s]
81%|████████ | 9127/11337 [03:52<01:08, 32.27 MB/s]
81%|████████ | 9132/11337 [03:52<01:05, 33.63 MB/s]
81%|████████ | 9137/11337 [03:52<01:03, 34.54 MB/s]
81%|████████ | 9142/11337 [03:53<01:02, 35.19 MB/s]
81%|████████ | 9147/11337 [03:53<01:01, 35.67 MB/s]
81%|████████ | 9151/11337 [03:53<01:04, 33.86 MB/s]
81%|████████ | 9156/11337 [03:53<01:02, 34.75 MB/s]
81%|████████ | 9161/11337 [03:53<01:01, 35.36 MB/s]
81%|████████ | 9166/11337 [03:53<01:00, 35.80 MB/s]
81%|████████ | 9172/11337 [03:53<00:56, 38.28 MB/s]
81%|████████ | 9177/11337 [03:54<00:57, 37.84 MB/s]
81%|████████ | 9183/11337 [03:54<00:54, 39.70 MB/s]
81%|████████ | 9187/11337 [03:54<01:08, 31.40 MB/s]
81%|████████ | 9196/11337 [03:54<00:52, 40.70 MB/s]
81%|████████ | 9201/11337 [03:54<00:54, 38.99 MB/s]
81%|████████ | 9206/11337 [03:54<00:55, 38.37 MB/s]
81%|████████ | 9210/11337 [03:54<00:59, 35.83 MB/s]
81%|████████▏ | 9215/11337 [03:55<00:58, 36.11 MB/s]
81%|████████▏ | 9219/11337 [03:55<01:13, 28.86 MB/s]
81%|████████▏ | 9225/11337 [03:55<01:00, 34.91 MB/s]
81%|████████▏ | 9229/11337 [03:55<01:03, 33.36 MB/s]
81%|████████▏ | 9233/11337 [03:55<01:05, 32.22 MB/s]
81%|████████▏ | 9237/11337 [03:55<01:06, 31.39 MB/s]
82%|████████▏ | 9241/11337 [03:55<01:07, 30.83 MB/s]
82%|████████▏ | 9245/11337 [03:56<01:08, 30.43 MB/s]
82%|████████▏ | 9249/11337 [03:56<01:09, 30.14 MB/s]
82%|████████▏ | 9253/11337 [03:56<01:09, 29.94 MB/s]
82%|████████▏ | 9257/11337 [03:56<01:09, 29.79 MB/s]
82%|████████▏ | 9261/11337 [03:56<01:09, 29.69 MB/s]
82%|████████▏ | 9265/11337 [03:56<01:09, 29.62 MB/s]
82%|████████▏ | 9269/11337 [03:56<01:09, 29.57 MB/s]
82%|████████▏ | 9273/11337 [03:57<01:08, 30.31 MB/s]
82%|████████▏ | 9278/11337 [03:57<01:05, 31.44 MB/s]
82%|████████▏ | 9282/11337 [03:57<01:06, 30.86 MB/s]
82%|████████▏ | 9286/11337 [03:57<01:07, 30.44 MB/s]
82%|████████▏ | 9291/11337 [03:57<01:03, 32.32 MB/s]
82%|████████▏ | 9295/11337 [03:57<01:04, 31.46 MB/s]
82%|████████▏ | 9299/11337 [03:57<01:04, 31.52 MB/s]
82%|████████▏ | 9303/11337 [03:57<01:05, 30.90 MB/s]
82%|████████▏ | 9308/11337 [03:58<01:03, 32.01 MB/s]
82%|████████▏ | 9312/11337 [03:58<01:03, 31.91 MB/s]
82%|████████▏ | 9317/11337 [03:58<01:01, 32.71 MB/s]
82%|████████▏ | 9321/11337 [03:58<01:02, 32.38 MB/s]
82%|████████▏ | 9326/11337 [03:58<01:00, 33.06 MB/s]
82%|████████▏ | 9330/11337 [03:58<01:01, 32.65 MB/s]
82%|████████▏ | 9335/11337 [03:58<00:59, 33.88 MB/s]
82%|████████▏ | 9340/11337 [03:59<00:58, 34.10 MB/s]
82%|████████▏ | 9344/11337 [03:59<00:59, 33.38 MB/s]
82%|████████▏ | 9349/11337 [03:59<00:57, 34.39 MB/s]
83%|████████▎ | 9354/11337 [03:59<00:56, 35.10 MB/s]
83%|████████▎ | 9359/11337 [03:59<00:56, 35.02 MB/s]
83%|████████▎ | 9364/11337 [03:59<00:55, 35.55 MB/s]
83%|████████▎ | 9369/11337 [03:59<00:54, 35.93 MB/s]
83%|████████▎ | 9374/11337 [04:00<00:54, 36.19 MB/s]
83%|████████▎ | 9379/11337 [04:00<00:53, 36.38 MB/s]
83%|████████▎ | 9384/11337 [04:00<00:52, 37.17 MB/s]
83%|████████▎ | 9389/11337 [04:00<00:52, 37.09 MB/s]
83%|████████▎ | 9394/11337 [04:00<01:02, 30.95 MB/s]
83%|████████▎ | 9401/11337 [04:00<00:53, 36.41 MB/s]
83%|████████▎ | 9405/11337 [04:00<00:56, 34.47 MB/s]
83%|████████▎ | 9409/11337 [04:01<00:58, 33.06 MB/s]
83%|████████▎ | 9413/11337 [04:01<01:00, 32.03 MB/s]
83%|████████▎ | 9417/11337 [04:01<01:01, 31.29 MB/s]
83%|████████▎ | 9422/11337 [04:01<00:58, 32.89 MB/s]
83%|████████▎ | 9426/11337 [04:01<00:59, 31.89 MB/s]
83%|████████▎ | 9431/11337 [04:01<00:57, 33.09 MB/s]
83%|████████▎ | 9435/11337 [04:01<00:59, 32.00 MB/s]
83%|████████▎ | 9439/11337 [04:02<01:00, 31.25 MB/s]
83%|████████▎ | 9443/11337 [04:02<01:01, 30.65 MB/s]
83%|████████▎ | 9447/11337 [04:02<01:02, 30.28 MB/s]
83%|████████▎ | 9451/11337 [04:02<01:02, 30.01 MB/s]
83%|████████▎ | 9455/11337 [04:02<01:09, 27.15 MB/s]
83%|████████▎ | 9459/11337 [04:02<01:07, 27.79 MB/s]
83%|████████▎ | 9463/11337 [04:02<01:08, 27.37 MB/s]
84%|████████▎ | 9467/11337 [04:03<01:06, 27.94 MB/s]
84%|████████▎ | 9471/11337 [04:03<01:05, 28.38 MB/s]
84%|████████▎ | 9475/11337 [04:03<01:08, 27.10 MB/s]
84%|████████▎ | 9479/11337 [04:03<01:06, 27.74 MB/s]
84%|████████▎ | 9483/11337 [04:03<01:05, 28.23 MB/s]
84%|████████▎ | 9487/11337 [04:03<01:04, 28.58 MB/s]
84%|████████▎ | 9491/11337 [04:03<01:04, 28.81 MB/s]
84%|████████▍ | 9495/11337 [04:04<01:03, 29.00 MB/s]
84%|████████▍ | 9499/11337 [04:04<01:03, 29.14 MB/s]
84%|████████▍ | 9503/11337 [04:04<01:02, 29.23 MB/s]
84%|████████▍ | 9507/11337 [04:04<01:02, 29.29 MB/s]
84%|████████▍ | 9511/11337 [04:04<01:02, 29.34 MB/s]
84%|████████▍ | 9515/11337 [04:04<01:02, 29.30 MB/s]
84%|████████▍ | 9519/11337 [04:04<01:20, 22.59 MB/s]
84%|████████▍ | 9526/11337 [04:05<01:00, 29.73 MB/s]
84%|████████▍ | 9530/11337 [04:05<01:05, 27.46 MB/s]
84%|████████▍ | 9533/11337 [04:05<01:09, 26.08 MB/s]
84%|████████▍ | 9537/11337 [04:05<01:07, 26.83 MB/s]
84%|████████▍ | 9540/11337 [04:05<01:09, 25.67 MB/s]
84%|████████▍ | 9544/11337 [04:05<01:26, 20.82 MB/s]
84%|████████▍ | 9550/11337 [04:06<01:13, 24.24 MB/s]
84%|████████▍ | 9553/11337 [04:06<01:15, 23.70 MB/s]
84%|████████▍ | 9556/11337 [04:06<01:16, 23.30 MB/s]
84%|████████▍ | 9559/11337 [04:06<01:17, 22.98 MB/s]
84%|████████▍ | 9562/11337 [04:06<01:18, 22.74 MB/s]
84%|████████▍ | 9565/11337 [04:06<01:18, 22.55 MB/s]
84%|████████▍ | 9568/11337 [04:06<01:18, 22.42 MB/s]
84%|████████▍ | 9571/11337 [04:07<01:19, 22.31 MB/s]
84%|████████▍ | 9574/11337 [04:07<01:19, 22.26 MB/s]
84%|████████▍ | 9577/11337 [04:07<01:19, 22.21 MB/s]
85%|████████▍ | 9580/11337 [04:07<01:19, 22.18 MB/s]
85%|████████▍ | 9583/11337 [04:07<01:19, 22.15 MB/s]
85%|████████▍ | 9586/11337 [04:07<01:19, 22.13 MB/s]
85%|████████▍ | 9589/11337 [04:07<01:19, 22.12 MB/s]
85%|████████▍ | 9593/11337 [04:08<01:11, 24.29 MB/s]
85%|████████▍ | 9596/11337 [04:08<01:13, 23.64 MB/s]
85%|████████▍ | 9599/11337 [04:08<01:14, 23.18 MB/s]
85%|████████▍ | 9602/11337 [04:08<01:15, 22.86 MB/s]
85%|████████▍ | 9606/11337 [04:08<01:09, 24.80 MB/s]
85%|████████▍ | 9609/11337 [04:08<01:11, 24.00 MB/s]
85%|████████▍ | 9612/11337 [04:08<01:13, 23.44 MB/s]
85%|████████▍ | 9616/11337 [04:08<01:08, 25.22 MB/s]
85%|████████▍ | 9619/11337 [04:09<01:10, 24.30 MB/s]
85%|████████▍ | 9623/11337 [04:09<01:06, 25.82 MB/s]
85%|████████▍ | 9627/11337 [04:09<01:03, 26.80 MB/s]
85%|████████▍ | 9630/11337 [04:09<01:06, 25.52 MB/s]
85%|████████▍ | 9634/11337 [04:09<01:04, 26.57 MB/s]
85%|████████▌ | 9638/11337 [04:09<01:01, 27.43 MB/s]
85%|████████▌ | 9642/11337 [04:09<01:00, 28.01 MB/s]
85%|████████▌ | 9645/11337 [04:10<01:03, 26.81 MB/s]
85%|████████▌ | 9649/11337 [04:10<01:02, 27.19 MB/s]
85%|████████▌ | 9653/11337 [04:10<01:00, 27.86 MB/s]
85%|████████▌ | 9656/11337 [04:10<01:11, 23.46 MB/s]
85%|████████▌ | 9662/11337 [04:10<00:56, 29.56 MB/s]
85%|████████▌ | 9666/11337 [04:10<01:01, 27.26 MB/s]
85%|████████▌ | 9669/11337 [04:10<01:04, 25.87 MB/s]
85%|████████▌ | 9673/11337 [04:11<01:08, 24.25 MB/s]
85%|████████▌ | 9677/11337 [04:11<01:05, 25.25 MB/s]
85%|████████▌ | 9680/11337 [04:11<01:07, 24.69 MB/s]
85%|████████▌ | 9684/11337 [04:11<01:03, 26.02 MB/s]
85%|████████▌ | 9687/11337 [04:11<01:06, 24.99 MB/s]
85%|████████▌ | 9691/11337 [04:11<01:02, 26.29 MB/s]
86%|████████▌ | 9695/11337 [04:11<01:00, 27.14 MB/s]
86%|████████▌ | 9699/11337 [04:12<00:58, 27.83 MB/s]
86%|████████▌ | 9702/11337 [04:12<01:02, 26.19 MB/s]
86%|████████▌ | 9706/11337 [04:12<01:00, 27.16 MB/s]
86%|████████▌ | 9710/11337 [04:12<00:58, 27.82 MB/s]
86%|████████▌ | 9714/11337 [04:12<00:57, 28.24 MB/s]
86%|████████▌ | 9719/11337 [04:12<00:52, 30.78 MB/s]
86%|████████▌ | 9723/11337 [04:12<00:53, 30.38 MB/s]
86%|████████▌ | 9727/11337 [04:13<00:53, 30.11 MB/s]
86%|████████▌ | 9731/11337 [04:13<00:53, 29.92 MB/s]
86%|████████▌ | 9735/11337 [04:13<00:53, 29.75 MB/s]
86%|████████▌ | 9739/11337 [04:13<00:53, 29.68 MB/s]
86%|████████▌ | 9743/11337 [04:13<00:53, 29.61 MB/s]
86%|████████▌ | 9747/11337 [04:13<00:53, 29.56 MB/s]
86%|████████▌ | 9751/11337 [04:13<00:53, 29.53 MB/s]
86%|████████▌ | 9755/11337 [04:14<00:53, 29.50 MB/s]
86%|████████▌ | 9759/11337 [04:14<00:53, 29.49 MB/s]
86%|████████▌ | 9763/11337 [04:14<00:53, 29.54 MB/s]
86%|████████▌ | 9767/11337 [04:14<00:53, 29.51 MB/s]
86%|████████▌ | 9772/11337 [04:14<00:49, 31.61 MB/s]
86%|████████▌ | 9776/11337 [04:14<00:50, 30.97 MB/s]
86%|████████▋ | 9780/11337 [04:14<00:51, 30.51 MB/s]
86%|████████▋ | 9784/11337 [04:14<00:51, 30.20 MB/s]
86%|████████▋ | 9788/11337 [04:15<00:51, 29.98 MB/s]
86%|████████▋ | 9792/11337 [04:15<00:51, 29.86 MB/s]
86%|████████▋ | 9797/11337 [04:15<00:48, 31.89 MB/s]
86%|████████▋ | 9801/11337 [04:15<00:49, 31.16 MB/s]
86%|████████▋ | 9805/11337 [04:15<00:49, 30.68 MB/s]
87%|████████▋ | 9810/11337 [04:15<00:51, 29.67 MB/s]
87%|████████▋ | 9815/11337 [04:15<00:48, 31.66 MB/s]
87%|████████▋ | 9819/11337 [04:16<00:48, 31.05 MB/s]
87%|████████▋ | 9824/11337 [04:16<00:46, 32.69 MB/s]
87%|████████▋ | 9828/11337 [04:16<00:47, 31.77 MB/s]
87%|████████▋ | 9833/11337 [04:16<00:45, 33.22 MB/s]
87%|████████▋ | 9838/11337 [04:16<00:43, 34.28 MB/s]
87%|████████▋ | 9842/11337 [04:16<00:45, 32.77 MB/s]
87%|████████▋ | 9846/11337 [04:16<00:46, 31.81 MB/s]
87%|████████▋ | 9850/11337 [04:17<00:47, 31.09 MB/s]
87%|████████▋ | 9854/11337 [04:17<00:48, 30.58 MB/s]
87%|████████▋ | 9858/11337 [04:17<00:48, 30.24 MB/s]
87%|████████▋ | 9862/11337 [04:17<00:49, 30.01 MB/s]
87%|████████▋ | 9866/11337 [04:17<00:49, 29.85 MB/s]
87%|████████▋ | 9869/11337 [04:17<00:53, 27.53 MB/s]
87%|████████▋ | 9873/11337 [04:17<00:52, 28.10 MB/s]
87%|████████▋ | 9878/11337 [04:18<00:47, 30.69 MB/s]
87%|████████▋ | 9882/11337 [04:18<00:47, 30.34 MB/s]
87%|████████▋ | 9887/11337 [04:18<00:44, 32.26 MB/s]
87%|████████▋ | 9892/11337 [04:18<00:43, 33.60 MB/s]
87%|████████▋ | 9896/11337 [04:18<00:44, 32.40 MB/s]
87%|████████▋ | 9901/11337 [04:18<00:42, 33.69 MB/s]
87%|████████▋ | 9906/11337 [04:18<00:41, 34.37 MB/s]
87%|████████▋ | 9911/11337 [04:18<00:40, 35.09 MB/s]
87%|████████▋ | 9915/11337 [04:19<00:42, 33.42 MB/s]
88%|████████▊ | 9920/11337 [04:19<00:41, 34.41 MB/s]
88%|████████▊ | 9925/11337 [04:19<00:40, 35.13 MB/s]
88%|████████▊ | 9930/11337 [04:19<00:39, 35.61 MB/s]
88%|████████▊ | 9935/11337 [04:19<00:39, 35.95 MB/s]
88%|████████▊ | 9939/11337 [04:19<00:41, 34.06 MB/s]
88%|████████▊ | 9944/11337 [04:19<00:39, 34.85 MB/s]
88%|████████▊ | 9949/11337 [04:20<00:39, 35.41 MB/s]
88%|████████▊ | 9954/11337 [04:20<00:38, 35.80 MB/s]
88%|████████▊ | 9959/11337 [04:20<00:38, 36.10 MB/s]
88%|████████▊ | 9964/11337 [04:20<00:37, 36.26 MB/s]
88%|████████▊ | 9968/11337 [04:20<00:39, 34.31 MB/s]
88%|████████▊ | 9973/11337 [04:20<00:38, 35.06 MB/s]
88%|████████▊ | 9978/11337 [04:20<00:38, 35.56 MB/s]
88%|████████▊ | 9982/11337 [04:21<00:44, 30.66 MB/s]
88%|████████▊ | 9989/11337 [04:21<00:36, 36.52 MB/s]
88%|████████▊ | 9993/11337 [04:21<00:39, 34.46 MB/s]
88%|████████▊ | 9997/11337 [04:21<00:44, 30.13 MB/s]
88%|████████▊ | 10001/11337 [04:21<00:44, 29.95 MB/s]
88%|████████▊ | 10005/11337 [04:21<00:44, 29.80 MB/s]
88%|████████▊ | 10009/11337 [04:21<00:44, 29.66 MB/s]
88%|████████▊ | 10014/11337 [04:22<00:45, 28.88 MB/s]
88%|████████▊ | 10019/11337 [04:22<00:42, 30.77 MB/s]
88%|████████▊ | 10023/11337 [04:22<00:42, 30.67 MB/s]
88%|████████▊ | 10027/11337 [04:22<00:43, 30.34 MB/s]
88%|████████▊ | 10032/11337 [04:22<00:40, 32.22 MB/s]
89%|████████▊ | 10037/11337 [04:22<00:38, 33.53 MB/s]
89%|████████▊ | 10041/11337 [04:22<00:40, 32.20 MB/s]
89%|████████▊ | 10046/11337 [04:23<00:38, 33.56 MB/s]
89%|████████▊ | 10051/11337 [04:23<00:37, 34.53 MB/s]
89%|████████▊ | 10056/11337 [04:23<00:36, 35.17 MB/s]
89%|████████▊ | 10060/11337 [04:23<00:37, 33.88 MB/s]
89%|████████▉ | 10065/11337 [04:23<00:36, 34.71 MB/s]
89%|████████▉ | 10070/11337 [04:23<00:36, 35.00 MB/s]
89%|████████▉ | 10075/11337 [04:23<00:35, 35.51 MB/s]
89%|████████▉ | 10080/11337 [04:23<00:35, 35.90 MB/s]
89%|████████▉ | 10085/11337 [04:24<00:34, 36.14 MB/s]
89%|████████▉ | 10089/11337 [04:24<00:36, 34.52 MB/s]
89%|████████▉ | 10094/11337 [04:24<00:35, 35.21 MB/s]
89%|████████▉ | 10099/11337 [04:24<00:35, 35.28 MB/s]
89%|████████▉ | 10104/11337 [04:24<00:34, 35.74 MB/s]
89%|████████▉ | 10109/11337 [04:24<00:34, 36.06 MB/s]
89%|████████▉ | 10113/11337 [04:24<00:35, 34.38 MB/s]
89%|████████▉ | 10118/11337 [04:25<00:34, 35.12 MB/s]
89%|████████▉ | 10123/11337 [04:25<00:34, 35.28 MB/s]
89%|████████▉ | 10127/11337 [04:25<00:36, 33.11 MB/s]
89%|████████▉ | 10131/11337 [04:25<00:36, 32.68 MB/s]
89%|████████▉ | 10135/11337 [04:25<00:38, 31.39 MB/s]
89%|████████▉ | 10139/11337 [04:25<00:38, 30.79 MB/s]
89%|████████▉ | 10143/11337 [04:25<00:39, 30.07 MB/s]
90%|████████▉ | 10147/11337 [04:26<00:39, 29.89 MB/s]
90%|████████▉ | 10150/11337 [04:26<00:42, 28.14 MB/s]
90%|████████▉ | 10154/11337 [04:26<00:41, 28.53 MB/s]
90%|████████▉ | 10159/11337 [04:26<00:38, 30.74 MB/s]
90%|████████▉ | 10163/11337 [04:26<00:38, 30.63 MB/s]
90%|████████▉ | 10168/11337 [04:26<00:36, 32.21 MB/s]
90%|████████▉ | 10172/11337 [04:26<00:37, 30.77 MB/s]
90%|████████▉ | 10176/11337 [04:26<00:37, 30.92 MB/s]
90%|████████▉ | 10180/11337 [04:27<00:38, 29.95 MB/s]
90%|████████▉ | 10183/11337 [04:27<00:41, 28.09 MB/s]
90%|████████▉ | 10186/11337 [04:27<00:43, 26.30 MB/s]
90%|████████▉ | 10189/11337 [04:27<00:45, 25.03 MB/s]
90%|████████▉ | 10193/11337 [04:27<00:43, 26.34 MB/s]
90%|████████▉ | 10196/11337 [04:27<00:45, 25.28 MB/s]
90%|████████▉ | 10200/11337 [04:27<00:43, 26.33 MB/s]
90%|█████████ | 10204/11337 [04:28<00:41, 27.25 MB/s]
90%|█████████ | 10208/11337 [04:28<00:40, 27.91 MB/s]
90%|█████████ | 10211/11337 [04:28<00:42, 26.38 MB/s]
90%|█████████ | 10215/11337 [04:28<00:41, 27.30 MB/s]
90%|█████████ | 10219/11337 [04:28<00:40, 27.95 MB/s]
90%|█████████ | 10223/11337 [04:28<00:39, 28.39 MB/s]
90%|█████████ | 10227/11337 [04:28<00:38, 28.71 MB/s]
90%|█████████ | 10231/11337 [04:29<00:38, 28.55 MB/s]
90%|█████████ | 10235/11337 [04:29<00:38, 28.82 MB/s]
90%|█████████ | 10239/11337 [04:29<00:37, 29.01 MB/s]
90%|█████████ | 10243/11337 [04:29<00:37, 29.14 MB/s]
90%|█████████ | 10247/11337 [04:29<00:37, 29.21 MB/s]
90%|█████████ | 10251/11337 [04:29<00:37, 29.29 MB/s]
90%|█████████ | 10255/11337 [04:29<00:36, 29.34 MB/s]
90%|█████████ | 10259/11337 [04:29<00:36, 29.38 MB/s]
91%|█████████ | 10263/11337 [04:30<00:36, 29.78 MB/s]
91%|█████████ | 10267/11337 [04:30<00:36, 29.68 MB/s]
91%|█████████ | 10272/11337 [04:30<00:33, 31.41 MB/s]
91%|█████████ | 10276/11337 [04:30<00:34, 30.84 MB/s]
91%|█████████ | 10280/11337 [04:30<00:34, 30.81 MB/s]
91%|█████████ | 10285/11337 [04:30<00:32, 32.22 MB/s]
91%|█████████ | 10289/11337 [04:30<00:32, 31.76 MB/s]
91%|█████████ | 10294/11337 [04:31<00:31, 32.88 MB/s]
91%|█████████ | 10298/11337 [04:31<00:32, 32.25 MB/s]
91%|█████████ | 10303/11337 [04:31<00:31, 33.23 MB/s]
91%|█████████ | 10307/11337 [04:31<00:31, 32.50 MB/s]
91%|█████████ | 10312/11337 [04:31<00:30, 33.39 MB/s]
91%|█████████ | 10317/11337 [04:31<00:29, 34.15 MB/s]
91%|█████████ | 10322/11337 [04:31<00:29, 34.93 MB/s]
91%|█████████ | 10326/11337 [04:32<00:29, 33.91 MB/s]
91%|█████████ | 10331/11337 [04:32<00:28, 34.79 MB/s]
91%|█████████ | 10336/11337 [04:32<00:28, 34.53 MB/s]
91%|█████████ | 10341/11337 [04:32<00:28, 35.20 MB/s]
91%|█████████▏| 10346/11337 [04:32<00:27, 35.68 MB/s]
91%|█████████▏| 10351/11337 [04:32<00:27, 36.02 MB/s]
91%|█████████▏| 10356/11337 [04:32<00:26, 37.14 MB/s]
91%|█████████▏| 10361/11337 [04:32<00:26, 36.66 MB/s]
91%|█████████▏| 10367/11337 [04:33<00:25, 38.37 MB/s]
91%|█████████▏| 10372/11337 [04:33<00:25, 37.92 MB/s]
92%|█████████▏| 10378/11337 [04:33<00:24, 39.75 MB/s]
92%|█████████▏| 10383/11337 [04:33<00:24, 39.45 MB/s]
92%|█████████▏| 10389/11337 [04:33<00:23, 40.87 MB/s]
92%|█████████▏| 10395/11337 [04:33<00:22, 41.86 MB/s]
92%|█████████▏| 10402/11337 [04:33<00:21, 44.18 MB/s]
92%|█████████▏| 10408/11337 [04:34<00:20, 44.77 MB/s]
92%|█████████▏| 10415/11337 [04:34<00:19, 46.81 MB/s]
92%|█████████▏| 10423/11337 [04:34<00:18, 49.74 MB/s]
92%|█████████▏| 10430/11337 [04:34<00:17, 50.96 MB/s]
92%|█████████▏| 10438/11337 [04:34<00:16, 53.35 MB/s]
92%|█████████▏| 10446/11337 [04:34<00:16, 55.03 MB/s]
92%|█████████▏| 10455/11337 [04:34<00:15, 58.36 MB/s]
92%|█████████▏| 10461/11337 [04:35<00:16, 53.26 MB/s]
92%|█████████▏| 10470/11337 [04:35<00:14, 57.92 MB/s]
92%|█████████▏| 10477/11337 [04:35<00:15, 55.25 MB/s]
92%|█████████▏| 10483/11337 [04:35<00:16, 52.63 MB/s]
93%|█████████▎| 10490/11337 [04:35<00:16, 52.29 MB/s]
93%|█████████▎| 10498/11337 [04:35<00:15, 54.20 MB/s]
93%|█████████▎| 10505/11337 [04:35<00:15, 53.44 MB/s]
93%|█████████▎| 10513/11337 [04:35<00:14, 55.04 MB/s]
93%|█████████▎| 10521/11337 [04:36<00:14, 56.20 MB/s]
93%|█████████▎| 10529/11337 [04:36<00:14, 57.01 MB/s]
93%|█████████▎| 10537/11337 [04:36<00:13, 57.59 MB/s]
93%|█████████▎| 10545/11337 [04:36<00:13, 58.04 MB/s]
93%|█████████▎| 10553/11337 [04:36<00:13, 58.29 MB/s]
93%|█████████▎| 10562/11337 [04:36<00:12, 60.60 MB/s]
93%|█████████▎| 10570/11337 [04:36<00:12, 60.17 MB/s]
93%|█████████▎| 10579/11337 [04:37<00:12, 61.94 MB/s]
93%|█████████▎| 10588/11337 [04:37<00:11, 63.19 MB/s]
93%|█████████▎| 10597/11337 [04:37<00:11, 64.06 MB/s]
94%|█████████▎| 10604/11337 [04:37<00:13, 55.27 MB/s]
94%|█████████▎| 10613/11337 [04:37<00:11, 62.86 MB/s]
94%|█████████▎| 10620/11337 [04:37<00:12, 59.39 MB/s]
94%|█████████▎| 10627/11337 [04:37<00:12, 56.98 MB/s]
94%|█████████▍| 10633/11337 [04:37<00:13, 53.18 MB/s]
94%|█████████▍| 10639/11337 [04:38<00:13, 50.52 MB/s]
94%|█████████▍| 10645/11337 [04:38<00:14, 49.28 MB/s]
94%|█████████▍| 10652/11337 [04:38<00:13, 49.97 MB/s]
94%|█████████▍| 10658/11337 [04:38<00:15, 44.17 MB/s]
94%|█████████▍| 10667/11337 [04:38<00:12, 54.14 MB/s]
94%|█████████▍| 10673/11337 [04:38<00:12, 51.09 MB/s]
94%|█████████▍| 10679/11337 [04:38<00:14, 45.69 MB/s]
94%|█████████▍| 10684/11337 [04:39<00:14, 46.31 MB/s]
94%|█████████▍| 10689/11337 [04:39<00:14, 43.44 MB/s]
94%|█████████▍| 10694/11337 [04:39<00:15, 41.46 MB/s]
94%|█████████▍| 10699/11337 [04:39<00:15, 40.12 MB/s]
94%|█████████▍| 10704/11337 [04:39<00:16, 39.13 MB/s]
94%|█████████▍| 10709/11337 [04:39<00:16, 38.92 MB/s]
95%|█████████▍| 10714/11337 [04:39<00:16, 38.26 MB/s]
95%|█████████▍| 10720/11337 [04:40<00:15, 40.00 MB/s]
95%|█████████▍| 10726/11337 [04:40<00:14, 41.27 MB/s]
95%|█████████▍| 10732/11337 [04:40<00:14, 42.15 MB/s]
95%|█████████▍| 10738/11337 [04:40<00:14, 42.76 MB/s]
95%|█████████▍| 10744/11337 [04:40<00:13, 43.19 MB/s]
95%|█████████▍| 10750/11337 [04:40<00:13, 43.49 MB/s]
95%|█████████▍| 10756/11337 [04:40<00:13, 43.70 MB/s]
95%|█████████▍| 10762/11337 [04:40<00:13, 43.84 MB/s]
95%|█████████▍| 10768/11337 [04:41<00:12, 43.90 MB/s]
95%|█████████▌| 10774/11337 [04:41<00:12, 43.95 MB/s]
95%|█████████▌| 10780/11337 [04:41<00:12, 44.02 MB/s]
95%|█████████▌| 10786/11337 [04:41<00:12, 44.07 MB/s]
95%|█████████▌| 10791/11337 [04:41<00:14, 38.35 MB/s]
95%|█████████▌| 10799/11337 [04:41<00:11, 47.62 MB/s]
95%|█████████▌| 10805/11337 [04:41<00:12, 43.18 MB/s]
95%|█████████▌| 10810/11337 [04:42<00:14, 37.10 MB/s]
95%|█████████▌| 10815/11337 [04:42<00:14, 37.03 MB/s]
95%|█████████▌| 10820/11337 [04:42<00:15, 33.86 MB/s]
95%|█████████▌| 10825/11337 [04:42<00:14, 34.64 MB/s]
96%|█████████▌| 10831/11337 [04:42<00:13, 37.21 MB/s]
96%|█████████▌| 10836/11337 [04:42<00:13, 37.12 MB/s]
96%|█████████▌| 10841/11337 [04:43<00:13, 37.06 MB/s]
96%|█████████▌| 10847/11337 [04:43<00:12, 39.10 MB/s]
96%|█████████▌| 10852/11337 [04:43<00:12, 38.45 MB/s]
96%|█████████▌| 10858/11337 [04:43<00:11, 40.11 MB/s]
96%|█████████▌| 10864/11337 [04:43<00:11, 41.29 MB/s]
96%|█████████▌| 10870/11337 [04:43<00:11, 42.14 MB/s]
96%|█████████▌| 10875/11337 [04:43<00:11, 40.61 MB/s]
96%|█████████▌| 10881/11337 [04:43<00:10, 41.64 MB/s]
96%|█████████▌| 10887/11337 [04:44<00:10, 42.39 MB/s]
96%|█████████▌| 10892/11337 [04:44<00:10, 40.65 MB/s]
96%|█████████▌| 10897/11337 [04:44<00:11, 39.51 MB/s]
96%|█████████▌| 10902/11337 [04:44<00:11, 38.66 MB/s]
96%|█████████▌| 10906/11337 [04:44<00:12, 35.89 MB/s]
96%|█████████▌| 10911/11337 [04:44<00:11, 36.15 MB/s]
96%|█████████▋| 10916/11337 [04:44<00:11, 36.35 MB/s]
96%|█████████▋| 10921/11337 [04:45<00:11, 36.49 MB/s]
96%|█████████▋| 10926/11337 [04:45<00:11, 36.58 MB/s]
96%|█████████▋| 10931/11337 [04:45<00:11, 36.65 MB/s]
96%|█████████▋| 10936/11337 [04:45<00:10, 36.70 MB/s]
97%|█████████▋| 10942/11337 [04:45<00:10, 38.91 MB/s]
97%|█████████▋| 10947/11337 [04:45<00:10, 38.30 MB/s]
97%|█████████▋| 10953/11337 [04:45<00:09, 40.03 MB/s]
97%|█████████▋| 10959/11337 [04:46<00:09, 41.24 MB/s]
97%|█████████▋| 10964/11337 [04:46<00:09, 39.98 MB/s]
97%|█████████▋| 10970/11337 [04:46<00:08, 41.23 MB/s]
97%|█████████▋| 10976/11337 [04:46<00:08, 42.11 MB/s]
97%|█████████▋| 10982/11337 [04:46<00:08, 42.69 MB/s]
97%|█████████▋| 10988/11337 [04:46<00:08, 43.10 MB/s]
97%|█████████▋| 10994/11337 [04:46<00:07, 43.47 MB/s]
97%|█████████▋| 11000/11337 [04:46<00:07, 43.64 MB/s]
97%|█████████▋| 11006/11337 [04:47<00:07, 43.80 MB/s]
97%|█████████▋| 11012/11337 [04:47<00:07, 43.92 MB/s]
97%|█████████▋| 11018/11337 [04:47<00:07, 43.99 MB/s]
97%|█████████▋| 11024/11337 [04:47<00:07, 44.05 MB/s]
97%|█████████▋| 11029/11337 [04:47<00:07, 42.51 MB/s]
97%|█████████▋| 11035/11337 [04:47<00:07, 43.00 MB/s]
97%|█████████▋| 11041/11337 [04:47<00:06, 43.37 MB/s]
97%|█████████▋| 11047/11337 [04:48<00:06, 43.62 MB/s]
97%|█████████▋| 11053/11337 [04:48<00:06, 43.79 MB/s]
98%|█████████▊| 11059/11337 [04:48<00:06, 43.91 MB/s]
98%|█████████▊| 11064/11337 [04:48<00:06, 41.05 MB/s]
98%|█████████▊| 11070/11337 [04:48<00:06, 42.28 MB/s]
98%|█████████▊| 11075/11337 [04:48<00:06, 40.37 MB/s]
98%|█████████▊| 11080/11337 [04:48<00:06, 39.28 MB/s]
98%|█████████▊| 11084/11337 [04:49<00:06, 36.37 MB/s]
98%|█████████▊| 11088/11337 [04:49<00:07, 35.07 MB/s]
98%|█████████▊| 11093/11337 [04:49<00:06, 35.59 MB/s]
98%|█████████▊| 11098/11337 [04:49<00:06, 35.96 MB/s]
98%|█████████▊| 11104/11337 [04:49<00:06, 37.88 MB/s]
98%|█████████▊| 11109/11337 [04:49<00:05, 38.10 MB/s]
98%|█████████▊| 11114/11337 [04:49<00:05, 37.71 MB/s]
98%|█████████▊| 11120/11337 [04:49<00:05, 39.57 MB/s]
98%|█████████▊| 11126/11337 [04:50<00:05, 40.46 MB/s]
98%|█████████▊| 11131/11337 [04:50<00:05, 39.83 MB/s]
98%|█████████▊| 11137/11337 [04:50<00:04, 41.14 MB/s]
98%|█████████▊| 11143/11337 [04:50<00:04, 42.02 MB/s]
98%|█████████▊| 11149/11337 [04:50<00:04, 42.23 MB/s]
98%|█████████▊| 11155/11337 [04:50<00:04, 42.78 MB/s]
98%|█████████▊| 11161/11337 [04:50<00:04, 43.20 MB/s]
99%|█████████▊| 11167/11337 [04:51<00:03, 43.49 MB/s]
99%|█████████▊| 11173/11337 [04:51<00:03, 43.70 MB/s]
99%|█████████▊| 11179/11337 [04:51<00:03, 43.85 MB/s]
99%|█████████▊| 11185/11337 [04:51<00:03, 43.90 MB/s]
99%|█████████▊| 11190/11337 [04:51<00:03, 42.53 MB/s]
99%|█████████▉| 11196/11337 [04:51<00:03, 43.02 MB/s]
99%|█████████▉| 11202/11337 [04:51<00:03, 43.37 MB/s]
99%|█████████▉| 11208/11337 [04:51<00:02, 43.61 MB/s]
99%|█████████▉| 11214/11337 [04:52<00:02, 43.77 MB/s]
99%|█████████▉| 11220/11337 [04:52<00:02, 43.44 MB/s]
99%|█████████▉| 11226/11337 [04:52<00:02, 43.65 MB/s]
99%|█████████▉| 11232/11337 [04:52<00:02, 43.80 MB/s]
99%|█████████▉| 11238/11337 [04:52<00:02, 43.92 MB/s]
99%|█████████▉| 11244/11337 [04:52<00:02, 43.97 MB/s]
99%|█████████▉| 11250/11337 [04:52<00:01, 44.05 MB/s]
99%|█████████▉| 11256/11337 [04:53<00:01, 44.10 MB/s]
99%|█████████▉| 11262/11337 [04:53<00:01, 44.11 MB/s]
99%|█████████▉| 11268/11337 [04:53<00:01, 36.46 MB/s]
99%|█████████▉| 11277/11337 [04:53<00:01, 44.57 MB/s]
100%|█████████▉| 11282/11337 [04:53<00:01, 42.43 MB/s]
100%|█████████▉| 11287/11337 [04:53<00:01, 37.34 MB/s]
100%|█████████▉| 11292/11337 [04:54<00:01, 37.12 MB/s]
100%|█████████▉| 11297/11337 [04:54<00:01, 36.76 MB/s]
100%|█████████▉| 11302/11337 [04:54<00:00, 37.07 MB/s]
100%|█████████▉| 11307/11337 [04:54<00:00, 37.07 MB/s]
100%|█████████▉| 11312/11337 [04:54<00:00, 37.45 MB/s]
100%|█████████▉| 11318/11337 [04:54<00:00, 38.58 MB/s]
100%|█████████▉| 11323/11337 [04:54<00:00, 38.45 MB/s]
100%|█████████▉| 11329/11337 [04:54<00:00, 39.75 MB/s]
100%|█████████▉| 11334/11337 [04:55<00:00, 39.75 MB/s]
100%|██████████| 11337/11337 [04:55<00:00, 38.41 MB/s]
0%| | 0/14 [00:00<?, ? MB/s]
14%|█▍ | 2/14 [00:00<00:00, 14.69 MB/s]
36%|███▌ | 5/14 [00:00<00:00, 18.94 MB/s]
64%|██████▍ | 9/14 [00:00<00:00, 23.65 MB/s]
100%|██████████| 14/14 [00:00<00:00, 34.08 MB/s]
0%| | 0/1037 [00:00<?, ? MB/s]
0%| | 1/1037 [00:00<02:19, 7.41 MB/s]
0%| | 4/1037 [00:00<01:04, 16.08 MB/s]
1%| | 6/1037 [00:00<01:02, 16.42 MB/s]
1%|▏ | 14/1037 [00:00<00:30, 33.81 MB/s]
3%|▎ | 28/1037 [00:00<00:16, 59.46 MB/s]
5%|▌ | 57/1037 [00:00<00:08, 112.69 MB/s]
11%|█ | 116/1037 [00:00<00:04, 219.18 MB/s]
22%|██▏ | 233/1037 [00:01<00:01, 425.01 MB/s]
40%|████ | 419/1037 [00:01<00:00, 722.41 MB/s]
58%|█████▊ | 603/1037 [00:01<00:00, 918.75 MB/s]
76%|███████▋ | 791/1037 [00:01<00:00, 1062.28 MB/s]
94%|█████████▍| 974/1037 [00:01<00:00, 1149.43 MB/s]
100%|██████████| 1037/1037 [00:01<00:00, 635.99 MB/s]
After we do that, our dataset folder should look like this:
To explore the layout of these derivatives, we will initialize a
BIDSLayout
class instance to help us see what is in this dataset
layout = bids.BIDSLayout(bids_path, derivatives=True)
Because there is no raw data in this BIDS layout (only derivatives), pybids will report that there are no subjects and sessions:
print(layout)
BIDS Layout: ...runner/AFQ_data/stanford_hardi | Subjects: 0 | Sessions: 0 | Runs: 0
But a query on the derivatives will reveal the different derivatives that are stored here:
print(layout.derivatives)
{'derivatives/vistasoft': BIDS Layout: ...rd_hardi/derivatives/vistasoft | Subjects: 1 | Sessions: 1 | Runs: 0, 'derivatives/freesurfer': BIDS Layout: ...d_hardi/derivatives/freesurfer | Subjects: 1 | Sessions: 1 | Runs: 0, 'derivatives/my_tractography': BIDS Layout: ...di/derivatives/my_tractography | Subjects: 1 | Sessions: 1 | Runs: 0, 'derivatives/recobundles': BIDS Layout: ..._hardi/derivatives/recobundles | Subjects: 1 | Sessions: 1 | Runs: 0}
We can use a bids.BIDSValidator
object to make sure that the
files within our data set are BIDS-compliant. For example, we can
extract the tractography derivatives part of our layout using:
my_tractography = layout.derivatives["my_tractography"]
This variable is also a BIDS layout object. This object has a get
method, which allows us to query and find specific items within the
layout. For example, we can ask for files that have a suffix consistent
with tractography results:
tractography_files = my_tractography.get(suffix='tractography')
Or ask for files that have a .trk
extension:
tractography_files = my_tractography.get(extension='.trk')
In this case, both of these would produce the same result.
tractography_file = tractography_files[0]
print(tractography_file)
<BIDSFile filename='/home/runner/AFQ_data/stanford_hardi/derivatives/my_tractography/sub-01/ses-01/dwi/sub-01_ses-01-dwi_tractography.trk'>
We can also get some more structured information about this file:
print(tractography_file.get_entities())
{'datatype': 'dwi', 'extension': '.trk', 'session': '01', 'subject': '01', 'suffix': 'tractography'}
We can use a bids.BIDSValidator
class instance to validate that
this file is compliant with the specification. Note that the validator
requires that the filename be provided relative to the root of the BIDS
dataset, so we have to split the string that contains the full path
of the tractography to extract only the part that is relative to the
root of the entire BIDS layout
object:
tractography_full_path = tractography_file.path
tractography_relative_path = tractography_full_path.split(layout.root)[-1]
validator = bids.BIDSValidator()
print(validator.is_bids(tractography_relative_path))
True
Next, we specify the information we need to define the bundles that we are interested in segmenting. In this case, we are going to use a list of bundle names for the bundle info. These names refer to bundles for which we already have clear definitions of the information needed to segment them (e.g., waypoint ROIs and probability maps). For an example that includes custom definition of bundle info, see the plot_callosal_tract_profile example.
bundle_info = abd.default18_bd()[
"Left Superior Longitudinal",
"Right Superior Longitudinal",
"Left Arcuate",
"Right Arcuate",
"Left Corticospinal",
"Right Corticospinal",
"Forceps Minor"]
Now, we can define our GroupAFQ object, pointing to the derivatives of the ‘my_tractography’ pipeline as inputs. This is done by setting the import_tract key-word argument. We pass the bundle_info defined above. We also point to the preprocessed data that is in a ‘dmriprep’ pipeline. Note that the pipeline name is not necessarily the name of the folder it is in; the pipeline name is defined in each pipeline’s dataset_description.json. These data were preprocessed with ‘vistasoft’, so this is the pipeline we’ll point to If we were using ‘qsiprep’, this is where we would pass that string instead. If we did that, AFQ would look for a derivatives folder called ‘stanford_hardi/derivatives/qsiprep’ and find the preprocessed DWI data within it. Finally, to speed things up a bit, we also sub-sample the provided tractography. This is done by defining the segmentation_params dictionary input. To sub-sample to 10,000 streamlines, we define ‘nb_streamlines’ = 10000.
my_afq = GroupAFQ(
bids_path,
preproc_pipeline='vistasoft',
bundle_info=bundle_info,
import_tract={
"suffix": "tractography",
"scope": "my_tractography"
},
segmentation_params={'nb_streamlines': 10000})
Finally, to run the segmentation and extract tract profiles, we call The export_all method. This creates all of the derivative outputs of AFQ within the ‘stanford_hardi/derivatives/afq’ folder.
my_afq.export_all()
0%| | 0/179864.0 [00:00<?, ?it/s]
0%| | 297/179864.0 [00:00<01:00, 2967.64it/s]
0%| | 702/179864.0 [00:00<00:49, 3604.03it/s]
1%| | 1117/179864.0 [00:00<00:46, 3850.77it/s]
1%| | 1511/179864.0 [00:00<00:45, 3883.42it/s]
1%| | 1921/179864.0 [00:00<00:44, 3958.69it/s]
1%|▏ | 2333/179864.0 [00:00<00:44, 4012.33it/s]
2%|▏ | 2753/179864.0 [00:00<00:43, 4073.16it/s]
2%|▏ | 3169/179864.0 [00:00<00:43, 4100.22it/s]
2%|▏ | 3600/179864.0 [00:00<00:42, 4165.14it/s]
2%|▏ | 4022/179864.0 [00:01<00:42, 4179.33it/s]
2%|▏ | 4446/179864.0 [00:01<00:41, 4196.27it/s]
3%|▎ | 4887/179864.0 [00:01<00:41, 4259.58it/s]
3%|▎ | 5316/179864.0 [00:01<00:40, 4267.66it/s]
3%|▎ | 5743/179864.0 [00:01<00:41, 4217.39it/s]
3%|▎ | 6166/179864.0 [00:01<00:41, 4219.10it/s]
4%|▎ | 6599/179864.0 [00:01<00:40, 4251.80it/s]
4%|▍ | 7027/179864.0 [00:01<00:40, 4259.19it/s]
4%|▍ | 7453/179864.0 [00:01<00:40, 4242.56it/s]
4%|▍ | 7900/179864.0 [00:01<00:39, 4310.50it/s]
5%|▍ | 8343/179864.0 [00:02<00:39, 4345.38it/s]
5%|▍ | 8778/179864.0 [00:02<00:39, 4301.35it/s]
5%|▌ | 9209/179864.0 [00:02<00:39, 4299.75it/s]
5%|▌ | 9650/179864.0 [00:02<00:39, 4331.02it/s]
6%|▌ | 10093/179864.0 [00:02<00:38, 4360.26it/s]
6%|▌ | 10530/179864.0 [00:02<00:38, 4349.30it/s]
6%|▌ | 10965/179864.0 [00:02<00:39, 4270.58it/s]
6%|▋ | 11411/179864.0 [00:02<00:38, 4323.41it/s]
7%|▋ | 11854/179864.0 [00:02<00:38, 4352.62it/s]
7%|▋ | 12298/179864.0 [00:02<00:38, 4378.16it/s]
7%|▋ | 12737/179864.0 [00:03<00:38, 4359.88it/s]
7%|▋ | 13174/179864.0 [00:03<00:38, 4303.20it/s]
8%|▊ | 13617/179864.0 [00:03<00:38, 4340.23it/s]
8%|▊ | 14059/179864.0 [00:03<00:37, 4363.67it/s]
8%|▊ | 14506/179864.0 [00:03<00:37, 4393.50it/s]
8%|▊ | 14954/179864.0 [00:03<00:37, 4417.60it/s]
9%|▊ | 15396/179864.0 [00:03<00:37, 4348.27it/s]
9%|▉ | 15832/179864.0 [00:03<00:37, 4339.18it/s]
9%|▉ | 16293/179864.0 [00:03<00:37, 4416.79it/s]
9%|▉ | 16751/179864.0 [00:03<00:36, 4462.96it/s]
10%|▉ | 17203/179864.0 [00:04<00:36, 4478.72it/s]
10%|▉ | 17652/179864.0 [00:04<00:36, 4427.11it/s]
10%|█ | 18095/179864.0 [00:04<00:36, 4382.92it/s]
10%|█ | 18541/179864.0 [00:04<00:36, 4403.68it/s]
11%|█ | 18991/179864.0 [00:04<00:36, 4430.45it/s]
11%|█ | 19447/179864.0 [00:04<00:35, 4467.12it/s]
11%|█ | 19900/179864.0 [00:04<00:35, 4484.30it/s]
11%|█▏ | 20349/179864.0 [00:04<00:35, 4460.48it/s]
12%|█▏ | 20796/179864.0 [00:04<00:36, 4410.00it/s]
12%|█▏ | 21249/179864.0 [00:04<00:35, 4444.24it/s]
12%|█▏ | 21706/179864.0 [00:05<00:35, 4479.95it/s]
12%|█▏ | 22161/179864.0 [00:05<00:35, 4500.16it/s]
13%|█▎ | 22618/179864.0 [00:05<00:34, 4516.96it/s]
13%|█▎ | 23070/179864.0 [00:05<00:34, 4504.21it/s]
13%|█▎ | 23521/179864.0 [00:05<00:35, 4434.53it/s]
13%|█▎ | 23967/179864.0 [00:05<00:35, 4438.63it/s]
14%|█▎ | 24412/179864.0 [00:05<00:35, 4415.51it/s]
14%|█▍ | 24877/179864.0 [00:05<00:34, 4482.08it/s]
14%|█▍ | 25333/179864.0 [00:05<00:34, 4504.09it/s]
14%|█▍ | 25785/179864.0 [00:05<00:34, 4508.27it/s]
15%|█▍ | 26236/179864.0 [00:06<00:34, 4425.06it/s]
15%|█▍ | 26700/179864.0 [00:06<00:34, 4486.43it/s]
15%|█▌ | 27168/179864.0 [00:06<00:33, 4542.08it/s]
15%|█▌ | 27642/179864.0 [00:06<00:33, 4598.39it/s]
16%|█▌ | 28104/179864.0 [00:06<00:32, 4602.86it/s]
16%|█▌ | 28565/179864.0 [00:06<00:32, 4588.64it/s]
16%|█▌ | 29024/179864.0 [00:06<00:33, 4495.33it/s]
16%|█▋ | 29475/179864.0 [00:06<00:33, 4448.07it/s]
17%|█▋ | 29934/179864.0 [00:06<00:33, 4489.15it/s]
17%|█▋ | 30393/179864.0 [00:06<00:33, 4518.55it/s]
17%|█▋ | 30861/179864.0 [00:07<00:32, 4565.44it/s]
17%|█▋ | 31318/179864.0 [00:07<00:32, 4525.64it/s]
18%|█▊ | 31771/179864.0 [00:07<00:32, 4519.75it/s]
18%|█▊ | 32224/179864.0 [00:07<00:32, 4517.84it/s]
18%|█▊ | 32676/179864.0 [00:07<00:33, 4456.78it/s]
18%|█▊ | 33122/179864.0 [00:07<00:32, 4452.33it/s]
19%|█▊ | 33586/179864.0 [00:07<00:32, 4507.94it/s]
19%|█▉ | 34045/179864.0 [00:07<00:32, 4531.44it/s]
19%|█▉ | 34500/179864.0 [00:07<00:32, 4536.39it/s]
19%|█▉ | 34959/179864.0 [00:07<00:31, 4551.78it/s]
20%|█▉ | 35415/179864.0 [00:08<00:31, 4547.98it/s]
20%|█▉ | 35870/179864.0 [00:08<00:31, 4501.71it/s]
20%|██ | 36321/179864.0 [00:08<00:31, 4491.45it/s]
20%|██ | 36800/179864.0 [00:08<00:31, 4578.95it/s]
21%|██ | 37278/179864.0 [00:08<00:30, 4638.81it/s]
21%|██ | 37756/179864.0 [00:08<00:30, 4680.15it/s]
21%|██▏ | 38225/179864.0 [00:08<00:30, 4602.33it/s]
22%|██▏ | 38686/179864.0 [00:08<00:31, 4485.53it/s]
22%|██▏ | 39136/179864.0 [00:08<00:31, 4418.54it/s]
22%|██▏ | 39579/179864.0 [00:09<00:31, 4390.61it/s]
22%|██▏ | 40036/179864.0 [00:09<00:31, 4440.77it/s]
23%|██▎ | 40515/179864.0 [00:09<00:30, 4542.47it/s]
23%|██▎ | 40986/179864.0 [00:09<00:30, 4590.08it/s]
23%|██▎ | 41446/179864.0 [00:09<00:30, 4588.93it/s]
23%|██▎ | 41906/179864.0 [00:09<00:30, 4561.48it/s]
24%|██▎ | 42363/179864.0 [00:09<00:30, 4491.64it/s]
24%|██▍ | 42818/179864.0 [00:09<00:30, 4506.64it/s]
24%|██▍ | 43269/179864.0 [00:09<00:31, 4268.62it/s]
24%|██▍ | 43754/179864.0 [00:09<00:30, 4432.71it/s]
25%|██▍ | 44242/179864.0 [00:10<00:29, 4561.94it/s]
25%|██▍ | 44701/179864.0 [00:10<00:29, 4556.30it/s]
25%|██▌ | 45165/179864.0 [00:10<00:29, 4579.70it/s]
25%|██▌ | 45625/179864.0 [00:10<00:30, 4469.23it/s]
26%|██▌ | 46074/179864.0 [00:10<01:08, 1950.85it/s]
26%|██▌ | 46524/179864.0 [00:10<00:56, 2342.31it/s]
26%|██▌ | 46993/179864.0 [00:11<00:48, 2764.14it/s]
26%|██▋ | 47477/179864.0 [00:11<00:41, 3187.85it/s]
27%|██▋ | 47923/179864.0 [00:11<00:37, 3475.26it/s]
27%|██▋ | 48361/179864.0 [00:11<00:35, 3695.75it/s]
27%|██▋ | 48797/179864.0 [00:11<00:33, 3866.42it/s]
27%|██▋ | 49232/179864.0 [00:11<00:32, 3979.28it/s]
28%|██▊ | 49665/179864.0 [00:11<00:31, 4073.15it/s]
28%|██▊ | 50130/179864.0 [00:11<00:30, 4235.33it/s]
28%|██▊ | 50572/179864.0 [00:11<00:31, 4104.36it/s]
28%|██▊ | 51039/179864.0 [00:12<00:30, 4260.45it/s]
29%|██▊ | 51483/179864.0 [00:12<00:29, 4311.18it/s]
29%|██▉ | 51939/179864.0 [00:12<00:29, 4381.23it/s]
29%|██▉ | 52383/179864.0 [00:12<00:29, 4392.95it/s]
29%|██▉ | 52827/179864.0 [00:12<00:28, 4397.86it/s]
30%|██▉ | 53270/179864.0 [00:12<00:28, 4395.20it/s]
30%|██▉ | 53753/179864.0 [00:12<00:27, 4522.18it/s]
30%|███ | 54235/179864.0 [00:12<00:27, 4607.80it/s]
30%|███ | 54702/179864.0 [00:12<00:27, 4624.85it/s]
31%|███ | 55167/179864.0 [00:12<00:26, 4630.07it/s]
31%|███ | 55631/179864.0 [00:13<00:26, 4625.29it/s]
31%|███ | 56094/179864.0 [00:13<00:27, 4566.81it/s]
31%|███▏ | 56552/179864.0 [00:13<00:27, 4512.53it/s]
32%|███▏ | 57014/179864.0 [00:13<00:27, 4543.44it/s]
32%|███▏ | 57504/179864.0 [00:13<00:26, 4648.20it/s]
32%|███▏ | 57991/179864.0 [00:13<00:25, 4711.85it/s]
33%|███▎ | 58480/179864.0 [00:13<00:25, 4764.73it/s]
33%|███▎ | 58957/179864.0 [00:13<00:25, 4755.04it/s]
33%|███▎ | 59433/179864.0 [00:13<00:25, 4726.62it/s]
33%|███▎ | 59906/179864.0 [00:13<00:25, 4634.17it/s]
34%|███▎ | 60370/179864.0 [00:14<00:26, 4572.70it/s]
34%|███▍ | 60862/179864.0 [00:14<00:25, 4671.69it/s]
34%|███▍ | 61354/179864.0 [00:14<00:24, 4743.37it/s]
34%|███▍ | 61847/179864.0 [00:14<00:24, 4798.24it/s]
35%|███▍ | 62328/179864.0 [00:14<00:24, 4725.62it/s]
35%|███▍ | 62813/179864.0 [00:14<00:24, 4759.19it/s]
35%|███▌ | 63290/179864.0 [00:14<00:25, 4640.13it/s]
35%|███▌ | 63755/179864.0 [00:14<00:25, 4589.67it/s]
36%|███▌ | 64244/179864.0 [00:14<00:24, 4677.03it/s]
36%|███▌ | 64722/179864.0 [00:14<00:24, 4704.94it/s]
36%|███▋ | 65205/179864.0 [00:15<00:24, 4738.15it/s]
37%|███▋ | 65680/179864.0 [00:15<00:24, 4721.70it/s]
37%|███▋ | 66163/179864.0 [00:15<00:23, 4752.62it/s]
37%|███▋ | 66639/179864.0 [00:15<00:24, 4614.45it/s]
37%|███▋ | 67102/179864.0 [00:15<00:24, 4527.24it/s]
38%|███▊ | 67556/179864.0 [00:15<00:24, 4518.26it/s]
38%|███▊ | 68028/179864.0 [00:15<00:24, 4576.42it/s]
38%|███▊ | 68496/179864.0 [00:15<00:24, 4605.01it/s]
38%|███▊ | 68972/179864.0 [00:15<00:23, 4648.78it/s]
39%|███▊ | 69447/179864.0 [00:15<00:23, 4676.75it/s]
39%|███▉ | 69915/179864.0 [00:16<00:25, 4355.07it/s]
39%|███▉ | 70359/179864.0 [00:16<00:25, 4377.87it/s]
39%|███▉ | 70824/179864.0 [00:16<00:24, 4455.77it/s]
40%|███▉ | 71291/179864.0 [00:16<00:24, 4516.50it/s]
40%|███▉ | 71767/179864.0 [00:16<00:23, 4585.51it/s]
40%|████ | 72238/179864.0 [00:16<00:23, 4620.11it/s]
40%|████ | 72707/179864.0 [00:16<00:23, 4638.96it/s]
41%|████ | 73172/179864.0 [00:16<00:23, 4611.57it/s]
41%|████ | 73634/179864.0 [00:16<00:23, 4542.50it/s]
41%|████ | 74089/179864.0 [00:17<00:23, 4482.29it/s]
41%|████▏ | 74539/179864.0 [00:17<00:23, 4486.41it/s]
42%|████▏ | 74991/179864.0 [00:17<00:23, 4494.55it/s]
42%|████▏ | 75457/179864.0 [00:17<00:22, 4541.33it/s]
42%|████▏ | 75930/179864.0 [00:17<00:22, 4594.56it/s]
42%|████▏ | 76394/179864.0 [00:17<00:22, 4608.05it/s]
43%|████▎ | 76855/179864.0 [00:17<00:22, 4565.27it/s]
43%|████▎ | 77312/179864.0 [00:17<00:22, 4470.82it/s]
43%|████▎ | 77760/179864.0 [00:17<00:22, 4440.80it/s]
44%|████▎ | 78244/179864.0 [00:17<00:22, 4557.78it/s]
44%|████▍ | 78710/179864.0 [00:18<00:22, 4587.23it/s]
44%|████▍ | 79173/179864.0 [00:18<00:21, 4599.48it/s]
44%|████▍ | 79634/179864.0 [00:18<00:22, 4360.03it/s]
45%|████▍ | 80073/179864.0 [00:18<00:23, 4336.30it/s]
45%|████▍ | 80509/179864.0 [00:18<00:23, 4317.24it/s]
45%|████▌ | 80942/179864.0 [00:18<00:23, 4253.32it/s]
45%|████▌ | 81381/179864.0 [00:18<00:22, 4290.18it/s]
45%|████▌ | 81828/179864.0 [00:18<00:22, 4340.99it/s]
46%|████▌ | 82277/179864.0 [00:18<00:22, 4384.21it/s]
46%|████▌ | 82722/179864.0 [00:18<00:22, 4403.63it/s]
46%|████▌ | 83163/179864.0 [00:19<00:22, 4385.22it/s]
46%|████▋ | 83602/179864.0 [00:19<00:22, 4293.65it/s]
47%|████▋ | 84056/179864.0 [00:19<00:21, 4363.68it/s]
47%|████▋ | 84500/179864.0 [00:19<00:21, 4383.71it/s]
47%|████▋ | 84948/179864.0 [00:19<00:21, 4412.23it/s]
47%|████▋ | 85410/179864.0 [00:19<00:21, 4473.08it/s]
48%|████▊ | 85861/179864.0 [00:19<00:20, 4480.73it/s]
48%|████▊ | 86310/179864.0 [00:19<00:20, 4478.72it/s]
48%|████▊ | 86759/179864.0 [00:19<00:21, 4387.75it/s]
48%|████▊ | 87199/179864.0 [00:19<00:21, 4350.61it/s]
49%|████▊ | 87637/179864.0 [00:20<00:21, 4354.61it/s]
49%|████▉ | 88073/179864.0 [00:20<00:21, 4348.02it/s]
49%|████▉ | 88508/179864.0 [00:20<00:21, 4323.22it/s]
49%|████▉ | 88987/179864.0 [00:20<00:20, 4459.59it/s]
50%|████▉ | 89468/179864.0 [00:20<00:19, 4562.03it/s]
50%|█████ | 89937/179864.0 [00:20<00:19, 4597.57it/s]
50%|█████ | 90397/179864.0 [00:20<00:19, 4512.52it/s]
51%|█████ | 90849/179864.0 [00:20<00:19, 4489.59it/s]
51%|█████ | 91299/179864.0 [00:20<00:20, 4417.64it/s]
51%|█████ | 91742/179864.0 [00:21<00:20, 4382.02it/s]
51%|█████▏ | 92208/179864.0 [00:21<00:19, 4463.28it/s]
52%|█████▏ | 92679/179864.0 [00:21<00:19, 4534.09it/s]
52%|█████▏ | 93133/179864.0 [00:21<00:19, 4525.99it/s]
52%|█████▏ | 93591/179864.0 [00:21<00:18, 4540.97it/s]
52%|█████▏ | 94046/179864.0 [00:21<00:18, 4536.37it/s]
53%|█████▎ | 94500/179864.0 [00:21<00:18, 4532.90it/s]
53%|█████▎ | 94954/179864.0 [00:21<00:18, 4472.82it/s]
53%|█████▎ | 95402/179864.0 [00:21<00:18, 4462.54it/s]
53%|█████▎ | 95868/179864.0 [00:21<00:18, 4519.75it/s]
54%|█████▎ | 96322/179864.0 [00:22<00:18, 4524.27it/s]
54%|█████▍ | 96775/179864.0 [00:22<00:18, 4505.22it/s]
54%|█████▍ | 97226/179864.0 [00:22<00:18, 4458.44it/s]
54%|█████▍ | 97672/179864.0 [00:22<00:18, 4377.46it/s]
55%|█████▍ | 98111/179864.0 [00:22<00:18, 4302.90it/s]
55%|█████▍ | 98542/179864.0 [00:22<00:18, 4298.71it/s]
55%|█████▌ | 98988/179864.0 [00:22<00:18, 4345.67it/s]
55%|█████▌ | 99453/179864.0 [00:22<00:18, 4434.36it/s]
56%|█████▌ | 99912/179864.0 [00:22<00:17, 4480.38it/s]
56%|█████▌ | 100363/179864.0 [00:22<00:17, 4487.00it/s]
56%|█████▌ | 100812/179864.0 [00:23<00:17, 4452.27it/s]
56%|█████▋ | 101258/179864.0 [00:23<00:18, 4332.43it/s]
57%|█████▋ | 101705/179864.0 [00:23<00:17, 4370.48it/s]
57%|█████▋ | 102148/179864.0 [00:23<00:17, 4385.40it/s]
57%|█████▋ | 102612/179864.0 [00:23<00:17, 4457.80it/s]
57%|█████▋ | 103090/179864.0 [00:23<00:16, 4550.86it/s]
58%|█████▊ | 103554/179864.0 [00:23<00:16, 4574.25it/s]
58%|█████▊ | 104019/179864.0 [00:23<00:16, 4595.88it/s]
58%|█████▊ | 104479/179864.0 [00:23<00:16, 4557.10it/s]
58%|█████▊ | 104935/179864.0 [00:23<00:16, 4465.39it/s]
59%|█████▊ | 105383/179864.0 [00:24<00:16, 4457.53it/s]
59%|█████▉ | 105843/179864.0 [00:24<00:16, 4498.31it/s]
59%|█████▉ | 106314/179864.0 [00:24<00:16, 4559.47it/s]
59%|█████▉ | 106785/179864.0 [00:24<00:15, 4603.38it/s]
60%|█████▉ | 107246/179864.0 [00:24<00:15, 4592.11it/s]
60%|█████▉ | 107707/179864.0 [00:24<00:15, 4597.07it/s]
60%|██████ | 108167/179864.0 [00:24<00:15, 4541.80it/s]
60%|██████ | 108622/179864.0 [00:24<00:15, 4498.23it/s]
61%|██████ | 109078/179864.0 [00:24<00:15, 4515.79it/s]
61%|██████ | 109543/179864.0 [00:24<00:15, 4553.57it/s]
61%|██████ | 110022/179864.0 [00:25<00:15, 4621.81it/s]
61%|██████▏ | 110498/179864.0 [00:25<00:14, 4660.55it/s]
62%|██████▏ | 110966/179864.0 [00:25<00:14, 4666.12it/s]
62%|██████▏ | 111446/179864.0 [00:25<00:14, 4703.88it/s]
62%|██████▏ | 111917/179864.0 [00:25<00:14, 4602.60it/s]
62%|██████▏ | 112378/179864.0 [00:25<00:14, 4546.46it/s]
63%|██████▎ | 112840/179864.0 [00:25<00:14, 4566.67it/s]
63%|██████▎ | 113317/179864.0 [00:25<00:14, 4622.53it/s]
63%|██████▎ | 113788/179864.0 [00:25<00:14, 4647.07it/s]
64%|██████▎ | 114275/179864.0 [00:25<00:13, 4711.93it/s]
64%|██████▍ | 114747/179864.0 [00:26<00:13, 4681.41it/s]
64%|██████▍ | 115216/179864.0 [00:26<00:13, 4668.40it/s]
64%|██████▍ | 115683/179864.0 [00:26<00:13, 4644.38it/s]
65%|██████▍ | 116151/179864.0 [00:26<00:13, 4653.32it/s]
65%|██████▍ | 116636/179864.0 [00:26<00:13, 4710.02it/s]
65%|██████▌ | 117108/179864.0 [00:26<00:13, 4586.31it/s]
65%|██████▌ | 117583/179864.0 [00:26<00:13, 4633.10it/s]
66%|██████▌ | 118061/179864.0 [00:26<00:13, 4676.04it/s]
66%|██████▌ | 118548/179864.0 [00:26<00:12, 4731.50it/s]
66%|██████▌ | 119022/179864.0 [00:26<00:13, 4663.62it/s]
66%|██████▋ | 119489/179864.0 [00:27<00:13, 4641.59it/s]
67%|██████▋ | 119967/179864.0 [00:27<00:12, 4682.08it/s]
67%|██████▋ | 120456/179864.0 [00:27<00:12, 4741.63it/s]
67%|██████▋ | 120931/179864.0 [00:27<00:12, 4734.55it/s]
67%|██████▋ | 121405/179864.0 [00:27<00:12, 4725.60it/s]
68%|██████▊ | 121878/179864.0 [00:27<00:12, 4561.58it/s]
68%|██████▊ | 122336/179864.0 [00:27<00:12, 4531.64it/s]
68%|██████▊ | 122799/179864.0 [00:27<00:12, 4559.93it/s]
69%|██████▊ | 123268/179864.0 [00:27<00:12, 4598.00it/s]
69%|██████▉ | 123754/179864.0 [00:28<00:12, 4673.28it/s]
69%|██████▉ | 124237/179864.0 [00:28<00:11, 4716.99it/s]
69%|██████▉ | 124710/179864.0 [00:28<00:11, 4719.52it/s]
70%|██████▉ | 125197/179864.0 [00:28<00:11, 4761.11it/s]
70%|██████▉ | 125674/179864.0 [00:28<00:11, 4685.15it/s]
70%|███████ | 126143/179864.0 [00:28<00:11, 4657.76it/s]
70%|███████ | 126619/179864.0 [00:28<00:11, 4687.61it/s]
71%|███████ | 127109/179864.0 [00:28<00:11, 4747.60it/s]
71%|███████ | 127601/179864.0 [00:28<00:10, 4797.23it/s]
71%|███████ | 128081/179864.0 [00:28<00:10, 4737.87it/s]
71%|███████▏ | 128556/179864.0 [00:29<00:10, 4718.62it/s]
72%|███████▏ | 129029/179864.0 [00:29<00:10, 4657.58it/s]
72%|███████▏ | 129496/179864.0 [00:29<00:10, 4608.36it/s]
72%|███████▏ | 129962/179864.0 [00:29<00:10, 4623.52it/s]
73%|███████▎ | 130440/179864.0 [00:29<00:10, 4667.23it/s]
73%|███████▎ | 130925/179864.0 [00:29<00:10, 4720.86it/s]
73%|███████▎ | 131398/179864.0 [00:29<00:10, 4713.82it/s]
73%|███████▎ | 131870/179864.0 [00:29<00:10, 4678.76it/s]
74%|███████▎ | 132339/179864.0 [00:29<00:10, 4617.14it/s]
74%|███████▍ | 132801/179864.0 [00:29<00:10, 4497.30it/s]
74%|███████▍ | 133252/179864.0 [00:30<00:10, 4488.49it/s]
74%|███████▍ | 133714/179864.0 [00:30<00:10, 4524.83it/s]
75%|███████▍ | 134181/179864.0 [00:30<00:10, 4567.08it/s]
75%|███████▍ | 134641/179864.0 [00:30<00:09, 4575.23it/s]
75%|███████▌ | 135104/179864.0 [00:30<00:09, 4589.24it/s]
75%|███████▌ | 135567/179864.0 [00:30<00:09, 4600.92it/s]
76%|███████▌ | 136028/179864.0 [00:30<00:09, 4476.60it/s]
76%|███████▌ | 136477/179864.0 [00:30<00:10, 4197.07it/s]
76%|███████▌ | 136941/179864.0 [00:30<00:09, 4320.18it/s]
76%|███████▋ | 137423/179864.0 [00:30<00:09, 4460.09it/s]
77%|███████▋ | 137883/179864.0 [00:31<00:09, 4500.19it/s]
77%|███████▋ | 138348/179864.0 [00:31<00:09, 4543.81it/s]
77%|███████▋ | 138805/179864.0 [00:31<00:09, 4526.28it/s]
77%|███████▋ | 139259/179864.0 [00:31<00:09, 4434.29it/s]
78%|███████▊ | 139704/179864.0 [00:31<00:09, 4380.01it/s]
78%|███████▊ | 140174/179864.0 [00:31<00:08, 4470.64it/s]
78%|███████▊ | 140651/179864.0 [00:31<00:08, 4557.36it/s]
78%|███████▊ | 141108/179864.0 [00:31<00:08, 4525.09it/s]
79%|███████▊ | 141568/179864.0 [00:31<00:08, 4546.05it/s]
79%|███████▉ | 142027/179864.0 [00:32<00:08, 4554.62it/s]
79%|███████▉ | 142483/179864.0 [00:32<00:08, 4429.80it/s]
79%|███████▉ | 142927/179864.0 [00:32<00:08, 4430.62it/s]
80%|███████▉ | 143395/179864.0 [00:32<00:08, 4501.91it/s]
80%|███████▉ | 143856/179864.0 [00:32<00:07, 4531.18it/s]
80%|████████ | 144344/179864.0 [00:32<00:07, 4631.11it/s]
81%|████████ | 144816/179864.0 [00:32<00:07, 4655.05it/s]
81%|████████ | 145282/179864.0 [00:32<00:07, 4606.15it/s]
81%|████████ | 145743/179864.0 [00:32<00:07, 4525.69it/s]
81%|████████▏ | 146225/179864.0 [00:32<00:07, 4608.29it/s]
82%|████████▏ | 146687/179864.0 [00:33<00:07, 4610.78it/s]
82%|████████▏ | 147150/179864.0 [00:33<00:07, 4615.09it/s]
82%|████████▏ | 147633/179864.0 [00:33<00:06, 4677.41it/s]
82%|████████▏ | 148101/179864.0 [00:33<00:06, 4622.13it/s]
83%|████████▎ | 148564/179864.0 [00:33<00:06, 4563.37it/s]
83%|████████▎ | 149021/179864.0 [00:33<00:06, 4545.10it/s]
83%|████████▎ | 149492/179864.0 [00:33<00:06, 4593.43it/s]
83%|████████▎ | 149957/179864.0 [00:33<00:06, 4609.85it/s]
84%|████████▎ | 150426/179864.0 [00:33<00:06, 4631.77it/s]
84%|████████▍ | 150890/179864.0 [00:33<00:06, 4565.72it/s]
84%|████████▍ | 151347/179864.0 [00:34<00:06, 4531.70it/s]
84%|████████▍ | 151801/179864.0 [00:34<00:06, 4485.16it/s]
85%|████████▍ | 152261/179864.0 [00:34<00:06, 4516.08it/s]
85%|████████▍ | 152716/179864.0 [00:34<00:06, 4524.03it/s]
85%|████████▌ | 153178/179864.0 [00:34<00:05, 4550.17it/s]
85%|████████▌ | 153634/179864.0 [00:34<00:05, 4537.47it/s]
86%|████████▌ | 154088/179864.0 [00:34<00:05, 4515.58it/s]
86%|████████▌ | 154540/179864.0 [00:34<00:05, 4421.59it/s]
86%|████████▌ | 154983/179864.0 [00:34<00:05, 4409.53it/s]
86%|████████▋ | 155425/179864.0 [00:34<00:05, 4334.79it/s]
87%|████████▋ | 155878/179864.0 [00:35<00:05, 4390.14it/s]
87%|████████▋ | 156318/179864.0 [00:35<00:05, 4389.44it/s]
87%|████████▋ | 156772/179864.0 [00:35<00:05, 4433.60it/s]
87%|████████▋ | 157216/179864.0 [00:35<00:05, 4369.82it/s]
88%|████████▊ | 157654/179864.0 [00:35<00:05, 4347.41it/s]
88%|████████▊ | 158111/179864.0 [00:35<00:04, 4410.52it/s]
88%|████████▊ | 158572/179864.0 [00:35<00:04, 4467.71it/s]
88%|████████▊ | 159037/179864.0 [00:35<00:04, 4519.96it/s]
89%|████████▊ | 159490/179864.0 [00:35<00:04, 4471.74it/s]
89%|████████▉ | 159938/179864.0 [00:36<00:09, 2160.42it/s]
89%|████████▉ | 160364/179864.0 [00:36<00:07, 2516.34it/s]
89%|████████▉ | 160811/179864.0 [00:36<00:06, 2896.74it/s]
90%|████████▉ | 161270/179864.0 [00:36<00:05, 3265.01it/s]
90%|████████▉ | 161719/179864.0 [00:36<00:05, 3553.42it/s]
90%|█████████ | 162159/179864.0 [00:36<00:04, 3765.98it/s]
90%|█████████ | 162587/179864.0 [00:36<00:04, 3861.30it/s]
91%|█████████ | 163010/179864.0 [00:37<00:04, 3952.08it/s]
91%|█████████ | 163453/179864.0 [00:37<00:04, 4084.53it/s]
91%|█████████ | 163901/179864.0 [00:37<00:03, 4193.46it/s]
91%|█████████▏| 164335/179864.0 [00:37<00:03, 4203.31it/s]
92%|█████████▏| 164766/179864.0 [00:37<00:03, 4178.02it/s]
92%|█████████▏| 165213/179864.0 [00:37<00:03, 4261.23it/s]
92%|█████████▏| 165660/179864.0 [00:37<00:03, 4320.70it/s]
92%|█████████▏| 166114/179864.0 [00:37<00:03, 4381.56it/s]
93%|█████████▎| 166555/179864.0 [00:37<00:03, 4368.80it/s]
93%|█████████▎| 166994/179864.0 [00:37<00:02, 4309.80it/s]
93%|█████████▎| 167428/179864.0 [00:38<00:02, 4317.73it/s]
93%|█████████▎| 167873/179864.0 [00:38<00:02, 4354.17it/s]
94%|█████████▎| 168325/179864.0 [00:38<00:02, 4401.24it/s]
94%|█████████▍| 168766/179864.0 [00:38<00:02, 4344.34it/s]
94%|█████████▍| 169201/179864.0 [00:38<00:02, 4301.04it/s]
94%|█████████▍| 169632/179864.0 [00:38<00:02, 4303.52it/s]
95%|█████████▍| 170079/179864.0 [00:38<00:02, 4352.79it/s]
95%|█████████▍| 170526/179864.0 [00:38<00:02, 4385.02it/s]
95%|█████████▌| 170965/179864.0 [00:38<00:02, 4341.36it/s]
95%|█████████▌| 171400/179864.0 [00:38<00:01, 4309.44it/s]
96%|█████████▌| 171832/179864.0 [00:39<00:01, 4161.05it/s]
96%|█████████▌| 172250/179864.0 [00:39<00:01, 4095.49it/s]
96%|█████████▌| 172685/179864.0 [00:39<00:01, 4167.20it/s]
96%|█████████▌| 173103/179864.0 [00:39<00:01, 4168.56it/s]
96%|█████████▋| 173536/179864.0 [00:39<00:01, 4214.48it/s]
97%|█████████▋| 173976/179864.0 [00:39<00:01, 4266.42it/s]
97%|█████████▋| 174408/179864.0 [00:39<00:01, 4279.92it/s]
97%|█████████▋| 174845/179864.0 [00:39<00:01, 4305.08it/s]
97%|█████████▋| 175290/179864.0 [00:39<00:01, 4347.20it/s]
98%|█████████▊| 175731/179864.0 [00:39<00:00, 4364.71it/s]
98%|█████████▊| 176168/179864.0 [00:40<00:00, 4307.66it/s]
98%|█████████▊| 176600/179864.0 [00:40<00:00, 4199.64it/s]
98%|█████████▊| 177040/179864.0 [00:40<00:00, 4256.99it/s]
99%|█████████▊| 177467/179864.0 [00:40<00:00, 4230.12it/s]
99%|█████████▉| 177921/179864.0 [00:40<00:00, 4321.16it/s]
99%|█████████▉| 178354/179864.0 [00:40<00:00, 4290.27it/s]
99%|█████████▉| 178818/179864.0 [00:40<00:00, 4390.08it/s]
100%|█████████▉| 179276/179864.0 [00:40<00:00, 4444.50it/s]
100%|█████████▉| 179763/179864.0 [00:40<00:00, 4569.53it/s]
100%|██████████| 179864/179864.0 [00:40<00:00, 4392.82it/s]
Optimizing level 2 [max iter: 10000]
Optimizing level 1 [max iter: 1000]
Optimizing level 0 [max iter: 100]
Optimizing level 2 [max iter: 10000]
Optimizing level 1 [max iter: 1000]
Optimizing level 0 [max iter: 100]
Optimizing level 2 [max iter: 10000]
Optimizing level 1 [max iter: 1000]
Optimizing level 0 [max iter: 100]
0%| | 0/7 [00:00<?, ?it/s]
57%|█████▋ | 4/7 [00:00<00:00, 33.71it/s]
100%|██████████| 7/7 [00:00<00:00, 36.35it/s]
0%| | 0/7 [00:00<?, ?it/s]
57%|█████▋ | 4/7 [00:00<00:00, 35.31it/s]
100%|██████████| 7/7 [00:00<00:00, 39.20it/s]
A few common issues that can hinder BIDS from working properly are:
Faulty dataset_description.json file. You need to make sure that the file contains the right names for the pipeline. See above for an example of that.
File naming convention doesn’t uniquely identify file with bids filters.
The outputs of AFQ are also BIDS compatible. However, we use some custom entities, which need to be loaded. Here we demonstrate how to load the afq entities with get_afq_bids_entities_fname() and then show all files with the key-value pair recogmethod-AFQ
['/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/bundles/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-ForcepsMinor_tractography.json', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/bundles/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-ForcepsMinor_tractography.trk', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/bundles/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-LeftArcuate_tractography.json', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/bundles/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-LeftArcuate_tractography.trk', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/bundles/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-LeftCorticospinal_tractography.json', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/bundles/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-LeftCorticospinal_tractography.trk', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/bundles/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-LeftSuperiorLongitudinal_tractography.json', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/bundles/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-LeftSuperiorLongitudinal_tractography.trk', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/bundles/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-RightArcuate_tractography.json', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/bundles/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-RightArcuate_tractography.trk', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/bundles/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-RightCorticospinal_tractography.json', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/bundles/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-RightCorticospinal_tractography.trk', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/bundles/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-RightSuperiorLongitudinal_tractography.json', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/bundles/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-RightSuperiorLongitudinal_tractography.trk', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-ForcepsMinorviz_dwi', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-medianBundleLengths_dwi.csv', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-medianBundleLengths_dwi.json', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-profiles_dwi.csv', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-profiles_dwi.json', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-slCount_dwi.csv', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-slCount_dwi.json', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-viz_dwi.html', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-viz_dwi.json', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_tractography.json', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_tractography.trk', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/tract_profile_plots/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_model-dtifa_desc-vizprofile_dwi.json', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/tract_profile_plots/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_model-dtifa_desc-vizprofile_dwi.png', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/tract_profile_plots/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_model-dtifa_desc-vizprofile_dwi.svg', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/tract_profile_plots/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_model-dtimd_desc-vizprofile_dwi.json', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/tract_profile_plots/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_model-dtimd_desc-vizprofile_dwi.png', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/tract_profile_plots/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_model-dtimd_desc-vizprofile_dwi.svg', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/viz_bundles/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-ForcepsMinorviz_dwi.html', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/viz_bundles/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-LeftArcuateviz_dwi.html', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/viz_bundles/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-LeftCorticospinalviz_dwi.html', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/viz_bundles/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-LeftSuperiorLongitudinalviz_dwi.html', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/viz_bundles/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-RightArcuateviz_dwi.html', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/viz_bundles/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-RightCorticospinalviz_dwi.html', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/viz_bundles/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-RightSuperiorLongitudinalviz_dwi.html', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/viz_core_bundles/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-ForcepsMinorviz_dwi.html', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/viz_core_bundles/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-LeftArcuateviz_dwi.html', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/viz_core_bundles/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-LeftCorticospinalviz_dwi.html', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/viz_core_bundles/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-LeftSuperiorLongitudinalviz_dwi.html', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/viz_core_bundles/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-RightArcuateviz_dwi.html', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/viz_core_bundles/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-RightCorticospinalviz_dwi.html', '/home/runner/AFQ_data/stanford_hardi/derivatives/afq/sub-01/ses-01/viz_core_bundles/sub-01_ses-01_coordsys-RASMM_trkmethod-probCSD_recogmethod-AFQ_desc-RightSuperiorLongitudinalviz_dwi.html']
Total running time of the script: (21 minutes 24.524 seconds)
Estimated memory usage: 1457 MB