Investigation of an Arrhenius relationship#

In addition to being able to determine the mean-squared displacement and diffusion coefficient from a given simulation, kinisi also includes tools to investigate Arrhenius relationships. In this tutorial, we will look at how we can take advantage of these tools to study short, approximately 50 ps, simulations of lithium lanthanum zirconium oxide (LLZO).

Warning

The warnings that are being ignored are related to the parsing of the files by MDAnalysis and lead to unnecessary print out to the screen that we want to avoid in the web documentation.

[1]:
import numpy as np
import MDAnalysis as mda
import matplotlib.pyplot as plt
from kinisi.analyze import DiffusionAnalyzer
from kinisi.arrhenius import StandardArrhenius
import warnings
np.random.seed(42)
warnings.filterwarnings("ignore", category=UserWarning)
/home/docs/checkouts/readthedocs.org/user_builds/kinisi/envs/latest/lib/python3.9/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html
  from .autonotebook import tqdm as notebook_tqdm
Matplotlib is building the font cache; this may take a moment.

To investigate this we will loop through a series of four temperatures and append each diffusion coefficient to a list.

[2]:
temperatures = np.array([500, 600, 700, 800])
D = []
analyzers = []

To read these simulations we will use MDAnalysis (however, it is also possible to use data from a VASP simulation). The parser, bootstrap, and diffusion parameters are all defined for all simulations, here we only consider the diffusive regime to begin after 5 ps. Additionally, we include in the p_params a sub_sample_atoms key, this defines the sampling frequency of atoms to be used in the analysis and the sub_sample_traj key, which defined the sampling frequency for the trajectory. This facility can be particularly useful for large simulations where kinisi might encounter issues related to out-of-memory problems.

[3]:
p_params = {'specie': 'LI',
            'time_step': 5.079648e-4,
            'step_skip': 100,
            'min_dt': 0.001,
            'sub_sample_atoms': 2,
            'sub_sample_traj': 2,
            'progress': False}
d_params = {'progress': False}

File parsing and diffusion determination is then performed in a loop here.

[4]:
for t in temperatures:
    u = mda.Universe(f'_static/traj_{t}.gro', f'_static/traj_{t}.xtc')
    d = DiffusionAnalyzer.from_universe(u, p_params)
    d.diffusion(10, d_params)
    D.append(d.D)
    analyzers.append(d)
Finding Means and Variances: 0%| | 0/100 [00:00<?, ?it/s]

</pre>

Finding Means and Variances: 0%| | 0/100 [00:00<?, ?it/s]

end{sphinxVerbatim}

Finding Means and Variances: 0%| | 0/100 [00:00<?, ?it/s]

Finding Means and Variances: 10%|█ | 10/100 [00:00&lt;00:00, 97.31it/s]

</pre>

Finding Means and Variances: 10%|█ | 10/100 [00:00<00:00, 97.31it/s]

end{sphinxVerbatim}

Finding Means and Variances: 10%|█ | 10/100 [00:00<00:00, 97.31it/s]

Finding Means and Variances: 20%|██ | 20/100 [00:00&lt;00:00, 95.15it/s]

</pre>

Finding Means and Variances: 20%|██ | 20/100 [00:00<00:00, 95.15it/s]

end{sphinxVerbatim}

Finding Means and Variances: 20%|██ | 20/100 [00:00<00:00, 95.15it/s]

Finding Means and Variances: 30%|███ | 30/100 [00:00&lt;00:00, 94.80it/s]

</pre>

Finding Means and Variances: 30%|███ | 30/100 [00:00<00:00, 94.80it/s]

end{sphinxVerbatim}

Finding Means and Variances: 30%|███ | 30/100 [00:00<00:00, 94.80it/s]

Finding Means and Variances: 41%|████ | 41/100 [00:00&lt;00:00, 98.91it/s]

</pre>

Finding Means and Variances: 41%|████ | 41/100 [00:00<00:00, 98.91it/s]

end{sphinxVerbatim}

Finding Means and Variances: 41%|████ | 41/100 [00:00<00:00, 98.91it/s]

Finding Means and Variances: 53%|█████▎ | 53/100 [00:00&lt;00:00, 105.89it/s]

</pre>

Finding Means and Variances: 53%|█████▎ | 53/100 [00:00<00:00, 105.89it/s]

end{sphinxVerbatim}

Finding Means and Variances: 53%|█████▎ | 53/100 [00:00<00:00, 105.89it/s]

Finding Means and Variances: 68%|██████▊ | 68/100 [00:00&lt;00:00, 118.54it/s]

</pre>

Finding Means and Variances: 68%|██████▊ | 68/100 [00:00<00:00, 118.54it/s]

end{sphinxVerbatim}

Finding Means and Variances: 68%|██████▊ | 68/100 [00:00<00:00, 118.54it/s]

Finding Means and Variances: 86%|████████▌ | 86/100 [00:00&lt;00:00, 136.37it/s]

</pre>

Finding Means and Variances: 86%|████████▌ | 86/100 [00:00<00:00, 136.37it/s]

end{sphinxVerbatim}

Finding Means and Variances: 86%|████████▌ | 86/100 [00:00<00:00, 136.37it/s]

Finding Means and Variances: 100%|██████████| 100/100 [00:00&lt;00:00, 125.40it/s]

</pre>

Finding Means and Variances: 100%|██████████| 100/100 [00:00<00:00, 125.40it/s]

end{sphinxVerbatim}

Finding Means and Variances: 100%|██████████| 100/100 [00:00<00:00, 125.40it/s]


Finding Means and Variances: 0%| | 0/100 [00:00&lt;?, ?it/s]

</pre>

Finding Means and Variances: 0%| | 0/100 [00:00<?, ?it/s]

end{sphinxVerbatim}

Finding Means and Variances: 0%| | 0/100 [00:00<?, ?it/s]

Finding Means and Variances: 10%|█ | 10/100 [00:00&lt;00:00, 98.97it/s]

</pre>

Finding Means and Variances: 10%|█ | 10/100 [00:00<00:00, 98.97it/s]

end{sphinxVerbatim}

Finding Means and Variances: 10%|█ | 10/100 [00:00<00:00, 98.97it/s]

Finding Means and Variances: 20%|██ | 20/100 [00:00&lt;00:00, 97.24it/s]

</pre>

Finding Means and Variances: 20%|██ | 20/100 [00:00<00:00, 97.24it/s]

end{sphinxVerbatim}

Finding Means and Variances: 20%|██ | 20/100 [00:00<00:00, 97.24it/s]

Finding Means and Variances: 30%|███ | 30/100 [00:00&lt;00:00, 98.29it/s]

</pre>

Finding Means and Variances: 30%|███ | 30/100 [00:00<00:00, 98.29it/s]

end{sphinxVerbatim}

Finding Means and Variances: 30%|███ | 30/100 [00:00<00:00, 98.29it/s]

Finding Means and Variances: 41%|████ | 41/100 [00:00&lt;00:00, 102.49it/s]

</pre>

Finding Means and Variances: 41%|████ | 41/100 [00:00<00:00, 102.49it/s]

end{sphinxVerbatim}

Finding Means and Variances: 41%|████ | 41/100 [00:00<00:00, 102.49it/s]

Finding Means and Variances: 54%|█████▍ | 54/100 [00:00&lt;00:00, 110.20it/s]

</pre>

Finding Means and Variances: 54%|█████▍ | 54/100 [00:00<00:00, 110.20it/s]

end{sphinxVerbatim}

Finding Means and Variances: 54%|█████▍ | 54/100 [00:00<00:00, 110.20it/s]

Finding Means and Variances: 68%|██████▊ | 68/100 [00:00&lt;00:00, 119.43it/s]

</pre>

Finding Means and Variances: 68%|██████▊ | 68/100 [00:00<00:00, 119.43it/s]

end{sphinxVerbatim}

Finding Means and Variances: 68%|██████▊ | 68/100 [00:00<00:00, 119.43it/s]

Finding Means and Variances: 86%|████████▌ | 86/100 [00:00&lt;00:00, 138.77it/s]

</pre>

Finding Means and Variances: 86%|████████▌ | 86/100 [00:00<00:00, 138.77it/s]

end{sphinxVerbatim}

Finding Means and Variances: 86%|████████▌ | 86/100 [00:00<00:00, 138.77it/s]

Finding Means and Variances: 100%|██████████| 100/100 [00:00&lt;00:00, 129.22it/s]

</pre>

Finding Means and Variances: 100%|██████████| 100/100 [00:00<00:00, 129.22it/s]

end{sphinxVerbatim}

Finding Means and Variances: 100%|██████████| 100/100 [00:00<00:00, 129.22it/s]


Finding Means and Variances: 0%| | 0/100 [00:00&lt;?, ?it/s]

</pre>

Finding Means and Variances: 0%| | 0/100 [00:00<?, ?it/s]

end{sphinxVerbatim}

Finding Means and Variances: 0%| | 0/100 [00:00<?, ?it/s]

Finding Means and Variances: 10%|█ | 10/100 [00:00&lt;00:00, 98.63it/s]

</pre>

Finding Means and Variances: 10%|█ | 10/100 [00:00<00:00, 98.63it/s]

end{sphinxVerbatim}

Finding Means and Variances: 10%|█ | 10/100 [00:00<00:00, 98.63it/s]

Finding Means and Variances: 20%|██ | 20/100 [00:00&lt;00:00, 95.91it/s]

</pre>

Finding Means and Variances: 20%|██ | 20/100 [00:00<00:00, 95.91it/s]

end{sphinxVerbatim}

Finding Means and Variances: 20%|██ | 20/100 [00:00<00:00, 95.91it/s]

Finding Means and Variances: 30%|███ | 30/100 [00:00&lt;00:00, 96.39it/s]

</pre>

Finding Means and Variances: 30%|███ | 30/100 [00:00<00:00, 96.39it/s]

end{sphinxVerbatim}

Finding Means and Variances: 30%|███ | 30/100 [00:00<00:00, 96.39it/s]

Finding Means and Variances: 41%|████ | 41/100 [00:00&lt;00:00, 99.97it/s]

</pre>

Finding Means and Variances: 41%|████ | 41/100 [00:00<00:00, 99.97it/s]

end{sphinxVerbatim}

Finding Means and Variances: 41%|████ | 41/100 [00:00<00:00, 99.97it/s]

Finding Means and Variances: 53%|█████▎ | 53/100 [00:00&lt;00:00, 106.30it/s]

</pre>

Finding Means and Variances: 53%|█████▎ | 53/100 [00:00<00:00, 106.30it/s]

end{sphinxVerbatim}

Finding Means and Variances: 53%|█████▎ | 53/100 [00:00<00:00, 106.30it/s]

Finding Means and Variances: 67%|██████▋ | 67/100 [00:00&lt;00:00, 116.68it/s]

</pre>

Finding Means and Variances: 67%|██████▋ | 67/100 [00:00<00:00, 116.68it/s]

end{sphinxVerbatim}

Finding Means and Variances: 67%|██████▋ | 67/100 [00:00<00:00, 116.68it/s]

Finding Means and Variances: 85%|████████▌ | 85/100 [00:00&lt;00:00, 135.07it/s]

</pre>

Finding Means and Variances: 85%|████████▌ | 85/100 [00:00<00:00, 135.07it/s]

end{sphinxVerbatim}

Finding Means and Variances: 85%|████████▌ | 85/100 [00:00<00:00, 135.07it/s]

Finding Means and Variances: 100%|██████████| 100/100 [00:00&lt;00:00, 126.38it/s]

</pre>

Finding Means and Variances: 100%|██████████| 100/100 [00:00<00:00, 126.38it/s]

end{sphinxVerbatim}

Finding Means and Variances: 100%|██████████| 100/100 [00:00<00:00, 126.38it/s]


Finding Means and Variances: 0%| | 0/100 [00:00&lt;?, ?it/s]

</pre>

Finding Means and Variances: 0%| | 0/100 [00:00<?, ?it/s]

end{sphinxVerbatim}

Finding Means and Variances: 0%| | 0/100 [00:00<?, ?it/s]

Finding Means and Variances: 10%|█ | 10/100 [00:00&lt;00:00, 98.35it/s]

</pre>

Finding Means and Variances: 10%|█ | 10/100 [00:00<00:00, 98.35it/s]

end{sphinxVerbatim}

Finding Means and Variances: 10%|█ | 10/100 [00:00<00:00, 98.35it/s]

Finding Means and Variances: 20%|██ | 20/100 [00:00&lt;00:00, 95.61it/s]

</pre>

Finding Means and Variances: 20%|██ | 20/100 [00:00<00:00, 95.61it/s]

end{sphinxVerbatim}

Finding Means and Variances: 20%|██ | 20/100 [00:00<00:00, 95.61it/s]

Finding Means and Variances: 30%|███ | 30/100 [00:00&lt;00:00, 97.56it/s]

</pre>

Finding Means and Variances: 30%|███ | 30/100 [00:00<00:00, 97.56it/s]

end{sphinxVerbatim}

Finding Means and Variances: 30%|███ | 30/100 [00:00<00:00, 97.56it/s]

Finding Means and Variances: 41%|████ | 41/100 [00:00&lt;00:00, 99.28it/s]

</pre>

Finding Means and Variances: 41%|████ | 41/100 [00:00<00:00, 99.28it/s]

end{sphinxVerbatim}

Finding Means and Variances: 41%|████ | 41/100 [00:00<00:00, 99.28it/s]

Finding Means and Variances: 54%|█████▍ | 54/100 [00:00&lt;00:00, 107.41it/s]

</pre>

Finding Means and Variances: 54%|█████▍ | 54/100 [00:00<00:00, 107.41it/s]

end{sphinxVerbatim}

Finding Means and Variances: 54%|█████▍ | 54/100 [00:00<00:00, 107.41it/s]

Finding Means and Variances: 69%|██████▉ | 69/100 [00:00&lt;00:00, 119.58it/s]

</pre>

Finding Means and Variances: 69%|██████▉ | 69/100 [00:00<00:00, 119.58it/s]

end{sphinxVerbatim}

Finding Means and Variances: 69%|██████▉ | 69/100 [00:00<00:00, 119.58it/s]

Finding Means and Variances: 88%|████████▊ | 88/100 [00:00&lt;00:00, 140.05it/s]

</pre>

Finding Means and Variances: 88%|████████▊ | 88/100 [00:00<00:00, 140.05it/s]

end{sphinxVerbatim}

Finding Means and Variances: 88%|████████▊ | 88/100 [00:00<00:00, 140.05it/s]

Finding Means and Variances: 100%|██████████| 100/100 [00:00&lt;00:00, 127.57it/s]

</pre>

Finding Means and Variances: 100%|██████████| 100/100 [00:00<00:00, 127.57it/s]

end{sphinxVerbatim}

Finding Means and Variances: 100%|██████████| 100/100 [00:00<00:00, 127.57it/s]


/home/docs/checkouts/readthedocs.org/user_builds/kinisi/envs/latest/lib/python3.9/site-packages/scipy/optimize/_numdiff.py:590: RuntimeWarning: invalid value encountered in subtract
  df = fun(x) - f0

The list of diffusion coefficient objects (which are uravu.distribution.Distribution type objects) and array of temperatures can then be passed to the kinisi.arrhenius.StandardArrhenius class, where we use the bounds keyword argument to give a minimum and maximum value for the activation energy and preexponential factor.

[5]:
s = StandardArrhenius(temperatures, D, bounds=((0.01, 0.2), (1e-5, 1e-1)))

Having created the object, we can determine the maximum likelihood values for the parameters of activation energy and the preexponential factor.

[6]:
s.max_likelihood('mini')

After determining the maximum likelihood values, we can use Markov chain Monte Carlo (MCMC) to sample the probability distributions for these.

[7]:
s.mcmc()
more-to-come:

class:

stderr

0%| | 0/1000 [00:00&lt;?, ?it/s]

</pre>

0%| | 0/1000 [00:00<?, ?it/s]

end{sphinxVerbatim}

0%| | 0/1000 [00:00<?, ?it/s]

more-to-come:

class:

stderr

0%| | 2/1000 [00:00&lt;00:57, 17.22it/s]

</pre>

0%| | 2/1000 [00:00<00:57, 17.22it/s]

end{sphinxVerbatim}

0%| | 2/1000 [00:00<00:57, 17.22it/s]

more-to-come:

class:

stderr

0%| | 4/1000 [00:00&lt;00:58, 17.16it/s]

</pre>

0%| | 4/1000 [00:00<00:58, 17.16it/s]

end{sphinxVerbatim}

0%| | 4/1000 [00:00<00:58, 17.16it/s]

more-to-come:

class:

stderr

1%| | 6/1000 [00:00&lt;00:57, 17.20it/s]

</pre>

1%| | 6/1000 [00:00<00:57, 17.20it/s]

end{sphinxVerbatim}

1%| | 6/1000 [00:00<00:57, 17.20it/s]

more-to-come:

class:

stderr

1%| | 8/1000 [00:00&lt;00:58, 17.08it/s]

</pre>

1%| | 8/1000 [00:00<00:58, 17.08it/s]

end{sphinxVerbatim}

1%| | 8/1000 [00:00<00:58, 17.08it/s]

more-to-come:

class:

stderr

1%| | 10/1000 [00:00&lt;00:57, 17.17it/s]

</pre>

1%| | 10/1000 [00:00<00:57, 17.17it/s]

end{sphinxVerbatim}

1%| | 10/1000 [00:00<00:57, 17.17it/s]

more-to-come:

class:

stderr

1%| | 12/1000 [00:00&lt;00:57, 17.21it/s]

</pre>

1%| | 12/1000 [00:00<00:57, 17.21it/s]

end{sphinxVerbatim}

1%| | 12/1000 [00:00<00:57, 17.21it/s]

more-to-come:

class:

stderr

1%|▏ | 14/1000 [00:00&lt;00:57, 17.20it/s]

</pre>

1%|▏ | 14/1000 [00:00<00:57, 17.20it/s]

end{sphinxVerbatim}

1%|▏ | 14/1000 [00:00<00:57, 17.20it/s]

more-to-come:

class:

stderr

2%|▏ | 16/1000 [00:00&lt;00:57, 17.12it/s]

</pre>

2%|▏ | 16/1000 [00:00<00:57, 17.12it/s]

end{sphinxVerbatim}

2%|▏ | 16/1000 [00:00<00:57, 17.12it/s]

more-to-come:

class:

stderr

2%|▏ | 18/1000 [00:01&lt;00:57, 17.21it/s]

</pre>

2%|▏ | 18/1000 [00:01<00:57, 17.21it/s]

end{sphinxVerbatim}

2%|▏ | 18/1000 [00:01<00:57, 17.21it/s]

more-to-come:

class:

stderr

2%|▏ | 20/1000 [00:01&lt;00:56, 17.29it/s]

</pre>

2%|▏ | 20/1000 [00:01<00:56, 17.29it/s]

end{sphinxVerbatim}

2%|▏ | 20/1000 [00:01<00:56, 17.29it/s]

more-to-come:

class:

stderr

2%|▏ | 22/1000 [00:01&lt;00:56, 17.33it/s]

</pre>

2%|▏ | 22/1000 [00:01<00:56, 17.33it/s]

end{sphinxVerbatim}

2%|▏ | 22/1000 [00:01<00:56, 17.33it/s]

more-to-come:

class:

stderr

2%|▏ | 24/1000 [00:01&lt;00:56, 17.37it/s]

</pre>

2%|▏ | 24/1000 [00:01<00:56, 17.37it/s]

end{sphinxVerbatim}

2%|▏ | 24/1000 [00:01<00:56, 17.37it/s]

more-to-come:

class:

stderr

3%|▎ | 26/1000 [00:01&lt;00:55, 17.44it/s]

</pre>

3%|▎ | 26/1000 [00:01<00:55, 17.44it/s]

end{sphinxVerbatim}

3%|▎ | 26/1000 [00:01<00:55, 17.44it/s]

more-to-come:

class:

stderr

3%|▎ | 28/1000 [00:01&lt;00:55, 17.46it/s]

</pre>

3%|▎ | 28/1000 [00:01<00:55, 17.46it/s]

end{sphinxVerbatim}

3%|▎ | 28/1000 [00:01<00:55, 17.46it/s]

more-to-come:

class:

stderr

3%|▎ | 30/1000 [00:01&lt;00:55, 17.45it/s]

</pre>

3%|▎ | 30/1000 [00:01<00:55, 17.45it/s]

end{sphinxVerbatim}

3%|▎ | 30/1000 [00:01<00:55, 17.45it/s]

more-to-come:

class:

stderr

3%|▎ | 32/1000 [00:01&lt;00:55, 17.47it/s]

</pre>

3%|▎ | 32/1000 [00:01<00:55, 17.47it/s]

end{sphinxVerbatim}

3%|▎ | 32/1000 [00:01<00:55, 17.47it/s]

more-to-come:

class:

stderr

3%|▎ | 34/1000 [00:01&lt;00:55, 17.42it/s]

</pre>

3%|▎ | 34/1000 [00:01<00:55, 17.42it/s]

end{sphinxVerbatim}

3%|▎ | 34/1000 [00:01<00:55, 17.42it/s]

more-to-come:

class:

stderr

4%|▎ | 36/1000 [00:02&lt;00:55, 17.43it/s]

</pre>

4%|▎ | 36/1000 [00:02<00:55, 17.43it/s]

end{sphinxVerbatim}

4%|▎ | 36/1000 [00:02<00:55, 17.43it/s]

more-to-come:

class:

stderr

4%|▍ | 38/1000 [00:02&lt;00:55, 17.42it/s]

</pre>

4%|▍ | 38/1000 [00:02<00:55, 17.42it/s]

end{sphinxVerbatim}

4%|▍ | 38/1000 [00:02<00:55, 17.42it/s]

more-to-come:

class:

stderr

4%|▍ | 40/1000 [00:02&lt;00:54, 17.46it/s]

</pre>

4%|▍ | 40/1000 [00:02<00:54, 17.46it/s]

end{sphinxVerbatim}

4%|▍ | 40/1000 [00:02<00:54, 17.46it/s]

more-to-come:

class:

stderr

4%|▍ | 42/1000 [00:02&lt;00:55, 17.40it/s]

</pre>

4%|▍ | 42/1000 [00:02<00:55, 17.40it/s]

end{sphinxVerbatim}

4%|▍ | 42/1000 [00:02<00:55, 17.40it/s]

more-to-come:

class:

stderr

4%|▍ | 44/1000 [00:02&lt;00:54, 17.43it/s]

</pre>

4%|▍ | 44/1000 [00:02<00:54, 17.43it/s]

end{sphinxVerbatim}

4%|▍ | 44/1000 [00:02<00:54, 17.43it/s]

more-to-come:

class:

stderr

5%|▍ | 46/1000 [00:02&lt;00:54, 17.46it/s]

</pre>

5%|▍ | 46/1000 [00:02<00:54, 17.46it/s]

end{sphinxVerbatim}

5%|▍ | 46/1000 [00:02<00:54, 17.46it/s]

more-to-come:

class:

stderr

5%|▍ | 48/1000 [00:02&lt;00:54, 17.45it/s]

</pre>

5%|▍ | 48/1000 [00:02<00:54, 17.45it/s]

end{sphinxVerbatim}

5%|▍ | 48/1000 [00:02<00:54, 17.45it/s]

more-to-come:

class:

stderr

5%|▌ | 50/1000 [00:02&lt;00:54, 17.31it/s]

</pre>

5%|▌ | 50/1000 [00:02<00:54, 17.31it/s]

end{sphinxVerbatim}

5%|▌ | 50/1000 [00:02<00:54, 17.31it/s]

more-to-come:

class:

stderr

5%|▌ | 52/1000 [00:02&lt;00:54, 17.32it/s]

</pre>

5%|▌ | 52/1000 [00:02<00:54, 17.32it/s]

end{sphinxVerbatim}

5%|▌ | 52/1000 [00:02<00:54, 17.32it/s]

more-to-come:

class:

stderr

5%|▌ | 54/1000 [00:03&lt;00:54, 17.27it/s]

</pre>

5%|▌ | 54/1000 [00:03<00:54, 17.27it/s]

end{sphinxVerbatim}

5%|▌ | 54/1000 [00:03<00:54, 17.27it/s]

more-to-come:

class:

stderr

6%|▌ | 56/1000 [00:03&lt;00:54, 17.35it/s]

</pre>

6%|▌ | 56/1000 [00:03<00:54, 17.35it/s]

end{sphinxVerbatim}

6%|▌ | 56/1000 [00:03<00:54, 17.35it/s]

more-to-come:

class:

stderr

6%|▌ | 58/1000 [00:03&lt;00:54, 17.41it/s]

</pre>

6%|▌ | 58/1000 [00:03<00:54, 17.41it/s]

end{sphinxVerbatim}

6%|▌ | 58/1000 [00:03<00:54, 17.41it/s]

more-to-come:

class:

stderr

6%|▌ | 60/1000 [00:03&lt;00:53, 17.45it/s]

</pre>

6%|▌ | 60/1000 [00:03<00:53, 17.45it/s]

end{sphinxVerbatim}

6%|▌ | 60/1000 [00:03<00:53, 17.45it/s]

more-to-come:

class:

stderr

6%|▌ | 62/1000 [00:03&lt;00:53, 17.47it/s]

</pre>

6%|▌ | 62/1000 [00:03<00:53, 17.47it/s]

end{sphinxVerbatim}

6%|▌ | 62/1000 [00:03<00:53, 17.47it/s]

more-to-come:

class:

stderr

6%|▋ | 64/1000 [00:03&lt;00:53, 17.49it/s]

</pre>

6%|▋ | 64/1000 [00:03<00:53, 17.49it/s]

end{sphinxVerbatim}

6%|▋ | 64/1000 [00:03<00:53, 17.49it/s]

more-to-come:

class:

stderr

7%|▋ | 66/1000 [00:03&lt;00:53, 17.51it/s]

</pre>

7%|▋ | 66/1000 [00:03<00:53, 17.51it/s]

end{sphinxVerbatim}

7%|▋ | 66/1000 [00:03<00:53, 17.51it/s]

more-to-come:

class:

stderr

7%|▋ | 68/1000 [00:03&lt;00:57, 16.32it/s]

</pre>

7%|▋ | 68/1000 [00:03<00:57, 16.32it/s]

end{sphinxVerbatim}

7%|▋ | 68/1000 [00:03<00:57, 16.32it/s]

more-to-come:

class:

stderr

7%|▋ | 70/1000 [00:04&lt;01:05, 14.27it/s]

</pre>

7%|▋ | 70/1000 [00:04<01:05, 14.27it/s]

end{sphinxVerbatim}

7%|▋ | 70/1000 [00:04<01:05, 14.27it/s]

more-to-come:

class:

stderr

7%|▋ | 72/1000 [00:04&lt;01:03, 14.73it/s]

</pre>

7%|▋ | 72/1000 [00:04<01:03, 14.73it/s]

end{sphinxVerbatim}

7%|▋ | 72/1000 [00:04<01:03, 14.73it/s]

more-to-come:

class:

stderr

7%|▋ | 74/1000 [00:04&lt;00:59, 15.45it/s]

</pre>

7%|▋ | 74/1000 [00:04<00:59, 15.45it/s]

end{sphinxVerbatim}

7%|▋ | 74/1000 [00:04<00:59, 15.45it/s]

more-to-come:

class:

stderr

8%|▊ | 76/1000 [00:04&lt;00:57, 15.94it/s]

</pre>

8%|▊ | 76/1000 [00:04<00:57, 15.94it/s]

end{sphinxVerbatim}

8%|▊ | 76/1000 [00:04<00:57, 15.94it/s]

more-to-come:

class:

stderr

8%|▊ | 78/1000 [00:04&lt;00:56, 16.37it/s]

</pre>

8%|▊ | 78/1000 [00:04<00:56, 16.37it/s]

end{sphinxVerbatim}

8%|▊ | 78/1000 [00:04<00:56, 16.37it/s]

more-to-come:

class:

stderr

8%|▊ | 80/1000 [00:04&lt;00:55, 16.72it/s]

</pre>

8%|▊ | 80/1000 [00:04<00:55, 16.72it/s]

end{sphinxVerbatim}

8%|▊ | 80/1000 [00:04<00:55, 16.72it/s]

more-to-come:

class:

stderr

8%|▊ | 82/1000 [00:04&lt;00:54, 16.77it/s]

</pre>

8%|▊ | 82/1000 [00:04<00:54, 16.77it/s]

end{sphinxVerbatim}

8%|▊ | 82/1000 [00:04<00:54, 16.77it/s]

more-to-come:

class:

stderr

8%|▊ | 84/1000 [00:04&lt;00:54, 16.92it/s]

</pre>

8%|▊ | 84/1000 [00:04<00:54, 16.92it/s]

end{sphinxVerbatim}

8%|▊ | 84/1000 [00:04<00:54, 16.92it/s]

more-to-come:

class:

stderr

9%|▊ | 86/1000 [00:05&lt;00:53, 17.09it/s]

</pre>

9%|▊ | 86/1000 [00:05<00:53, 17.09it/s]

end{sphinxVerbatim}

9%|▊ | 86/1000 [00:05<00:53, 17.09it/s]

more-to-come:

class:

stderr

9%|▉ | 88/1000 [00:05&lt;00:52, 17.23it/s]

</pre>

9%|▉ | 88/1000 [00:05<00:52, 17.23it/s]

end{sphinxVerbatim}

9%|▉ | 88/1000 [00:05<00:52, 17.23it/s]

more-to-come:

class:

stderr

9%|▉ | 90/1000 [00:05&lt;00:52, 17.32it/s]

</pre>

9%|▉ | 90/1000 [00:05<00:52, 17.32it/s]

end{sphinxVerbatim}

9%|▉ | 90/1000 [00:05<00:52, 17.32it/s]

more-to-come:

class:

stderr

9%|▉ | 92/1000 [00:05&lt;00:52, 17.39it/s]

</pre>

9%|▉ | 92/1000 [00:05<00:52, 17.39it/s]

end{sphinxVerbatim}

9%|▉ | 92/1000 [00:05<00:52, 17.39it/s]

more-to-come:

class:

stderr

9%|▉ | 94/1000 [00:05&lt;00:52, 17.42it/s]

</pre>

9%|▉ | 94/1000 [00:05<00:52, 17.42it/s]

end{sphinxVerbatim}

9%|▉ | 94/1000 [00:05<00:52, 17.42it/s]

more-to-come:

class:

stderr

10%|▉ | 96/1000 [00:05&lt;00:51, 17.41it/s]

</pre>

10%|▉ | 96/1000 [00:05<00:51, 17.41it/s]

end{sphinxVerbatim}

10%|▉ | 96/1000 [00:05<00:51, 17.41it/s]

more-to-come:

class:

stderr

10%|▉ | 98/1000 [00:05&lt;00:51, 17.45it/s]

</pre>

10%|▉ | 98/1000 [00:05<00:51, 17.45it/s]

end{sphinxVerbatim}

10%|▉ | 98/1000 [00:05<00:51, 17.45it/s]

more-to-come:

class:

stderr

10%|█ | 100/1000 [00:05&lt;00:51, 17.48it/s]

</pre>

10%|█ | 100/1000 [00:05<00:51, 17.48it/s]

end{sphinxVerbatim}

10%|█ | 100/1000 [00:05<00:51, 17.48it/s]

more-to-come:

class:

stderr

10%|█ | 102/1000 [00:05&lt;00:51, 17.35it/s]

</pre>

10%|█ | 102/1000 [00:05<00:51, 17.35it/s]

end{sphinxVerbatim}

10%|█ | 102/1000 [00:05<00:51, 17.35it/s]

more-to-come:

class:

stderr

10%|█ | 104/1000 [00:06&lt;00:51, 17.35it/s]

</pre>

10%|█ | 104/1000 [00:06<00:51, 17.35it/s]

end{sphinxVerbatim}

10%|█ | 104/1000 [00:06<00:51, 17.35it/s]

more-to-come:

class:

stderr

11%|█ | 106/1000 [00:06&lt;00:51, 17.32it/s]

</pre>

11%|█ | 106/1000 [00:06<00:51, 17.32it/s]

end{sphinxVerbatim}

11%|█ | 106/1000 [00:06<00:51, 17.32it/s]

more-to-come:

class:

stderr

11%|█ | 108/1000 [00:06&lt;00:51, 17.34it/s]

</pre>

11%|█ | 108/1000 [00:06<00:51, 17.34it/s]

end{sphinxVerbatim}

11%|█ | 108/1000 [00:06<00:51, 17.34it/s]

more-to-come:

class:

stderr

11%|█ | 110/1000 [00:06&lt;00:51, 17.18it/s]

</pre>

11%|█ | 110/1000 [00:06<00:51, 17.18it/s]

end{sphinxVerbatim}

11%|█ | 110/1000 [00:06<00:51, 17.18it/s]

more-to-come:

class:

stderr

11%|█ | 112/1000 [00:06&lt;00:51, 17.28it/s]

</pre>

11%|█ | 112/1000 [00:06<00:51, 17.28it/s]

end{sphinxVerbatim}

11%|█ | 112/1000 [00:06<00:51, 17.28it/s]

more-to-come:

class:

stderr

11%|█▏ | 114/1000 [00:06&lt;00:51, 17.36it/s]

</pre>

11%|█▏ | 114/1000 [00:06<00:51, 17.36it/s]

end{sphinxVerbatim}

11%|█▏ | 114/1000 [00:06<00:51, 17.36it/s]

more-to-come:

class:

stderr

12%|█▏ | 116/1000 [00:06&lt;00:50, 17.38it/s]

</pre>

12%|█▏ | 116/1000 [00:06<00:50, 17.38it/s]

end{sphinxVerbatim}

12%|█▏ | 116/1000 [00:06<00:50, 17.38it/s]

more-to-come:

class:

stderr

12%|█▏ | 118/1000 [00:06&lt;00:50, 17.33it/s]

</pre>

12%|█▏ | 118/1000 [00:06<00:50, 17.33it/s]

end{sphinxVerbatim}

12%|█▏ | 118/1000 [00:06<00:50, 17.33it/s]

more-to-come:

class:

stderr

12%|█▏ | 120/1000 [00:07&lt;00:50, 17.31it/s]

</pre>

12%|█▏ | 120/1000 [00:07<00:50, 17.31it/s]

end{sphinxVerbatim}

12%|█▏ | 120/1000 [00:07<00:50, 17.31it/s]

more-to-come:

class:

stderr

12%|█▏ | 122/1000 [00:07&lt;00:50, 17.39it/s]

</pre>

12%|█▏ | 122/1000 [00:07<00:50, 17.39it/s]

end{sphinxVerbatim}

12%|█▏ | 122/1000 [00:07<00:50, 17.39it/s]

more-to-come:

class:

stderr

12%|█▏ | 124/1000 [00:07&lt;00:50, 17.44it/s]

</pre>

12%|█▏ | 124/1000 [00:07<00:50, 17.44it/s]

end{sphinxVerbatim}

12%|█▏ | 124/1000 [00:07<00:50, 17.44it/s]

more-to-come:

class:

stderr

13%|█▎ | 126/1000 [00:07&lt;00:50, 17.47it/s]

</pre>

13%|█▎ | 126/1000 [00:07<00:50, 17.47it/s]

end{sphinxVerbatim}

13%|█▎ | 126/1000 [00:07<00:50, 17.47it/s]

more-to-come:

class:

stderr

13%|█▎ | 128/1000 [00:07&lt;00:49, 17.52it/s]

</pre>

13%|█▎ | 128/1000 [00:07<00:49, 17.52it/s]

end{sphinxVerbatim}

13%|█▎ | 128/1000 [00:07<00:49, 17.52it/s]

more-to-come:

class:

stderr

13%|█▎ | 130/1000 [00:07&lt;00:49, 17.52it/s]

</pre>

13%|█▎ | 130/1000 [00:07<00:49, 17.52it/s]

end{sphinxVerbatim}

13%|█▎ | 130/1000 [00:07<00:49, 17.52it/s]

more-to-come:

class:

stderr

13%|█▎ | 132/1000 [00:07&lt;00:49, 17.54it/s]

</pre>

13%|█▎ | 132/1000 [00:07<00:49, 17.54it/s]

end{sphinxVerbatim}

13%|█▎ | 132/1000 [00:07<00:49, 17.54it/s]

more-to-come:

class:

stderr

13%|█▎ | 134/1000 [00:07&lt;00:49, 17.54it/s]

</pre>

13%|█▎ | 134/1000 [00:07<00:49, 17.54it/s]

end{sphinxVerbatim}

13%|█▎ | 134/1000 [00:07<00:49, 17.54it/s]

more-to-come:

class:

stderr

14%|█▎ | 136/1000 [00:07&lt;00:49, 17.49it/s]

</pre>

14%|█▎ | 136/1000 [00:07<00:49, 17.49it/s]

end{sphinxVerbatim}

14%|█▎ | 136/1000 [00:07<00:49, 17.49it/s]

more-to-come:

class:

stderr

14%|█▍ | 138/1000 [00:08&lt;00:49, 17.35it/s]

</pre>

14%|█▍ | 138/1000 [00:08<00:49, 17.35it/s]

end{sphinxVerbatim}

14%|█▍ | 138/1000 [00:08<00:49, 17.35it/s]

more-to-come:

class:

stderr

14%|█▍ | 140/1000 [00:08&lt;00:49, 17.28it/s]

</pre>

14%|█▍ | 140/1000 [00:08<00:49, 17.28it/s]

end{sphinxVerbatim}

14%|█▍ | 140/1000 [00:08<00:49, 17.28it/s]

more-to-come:

class:

stderr

14%|█▍ | 142/1000 [00:08&lt;00:49, 17.35it/s]

</pre>

14%|█▍ | 142/1000 [00:08<00:49, 17.35it/s]

end{sphinxVerbatim}

14%|█▍ | 142/1000 [00:08<00:49, 17.35it/s]

more-to-come:

class:

stderr

14%|█▍ | 144/1000 [00:08&lt;00:49, 17.34it/s]

</pre>

14%|█▍ | 144/1000 [00:08<00:49, 17.34it/s]

end{sphinxVerbatim}

14%|█▍ | 144/1000 [00:08<00:49, 17.34it/s]

more-to-come:

class:

stderr

15%|█▍ | 146/1000 [00:08&lt;00:49, 17.30it/s]

</pre>

15%|█▍ | 146/1000 [00:08<00:49, 17.30it/s]

end{sphinxVerbatim}

15%|█▍ | 146/1000 [00:08<00:49, 17.30it/s]

more-to-come:

class:

stderr

15%|█▍ | 148/1000 [00:08&lt;00:49, 17.36it/s]

</pre>

15%|█▍ | 148/1000 [00:08<00:49, 17.36it/s]

end{sphinxVerbatim}

15%|█▍ | 148/1000 [00:08<00:49, 17.36it/s]

more-to-come:

class:

stderr

15%|█▌ | 150/1000 [00:08&lt;00:48, 17.43it/s]

</pre>

15%|█▌ | 150/1000 [00:08<00:48, 17.43it/s]

end{sphinxVerbatim}

15%|█▌ | 150/1000 [00:08<00:48, 17.43it/s]

more-to-come:

class:

stderr

15%|█▌ | 152/1000 [00:08&lt;00:48, 17.32it/s]

</pre>

15%|█▌ | 152/1000 [00:08<00:48, 17.32it/s]

end{sphinxVerbatim}

15%|█▌ | 152/1000 [00:08<00:48, 17.32it/s]

more-to-come:

class:

stderr

15%|█▌ | 154/1000 [00:08&lt;00:48, 17.27it/s]

</pre>

15%|█▌ | 154/1000 [00:08<00:48, 17.27it/s]

end{sphinxVerbatim}

15%|█▌ | 154/1000 [00:08<00:48, 17.27it/s]

more-to-come:

class:

stderr

16%|█▌ | 156/1000 [00:09&lt;00:48, 17.32it/s]

</pre>

16%|█▌ | 156/1000 [00:09<00:48, 17.32it/s]

end{sphinxVerbatim}

16%|█▌ | 156/1000 [00:09<00:48, 17.32it/s]

more-to-come:

class:

stderr

16%|█▌ | 158/1000 [00:09&lt;00:48, 17.38it/s]

</pre>

16%|█▌ | 158/1000 [00:09<00:48, 17.38it/s]

end{sphinxVerbatim}

16%|█▌ | 158/1000 [00:09<00:48, 17.38it/s]

more-to-come:

class:

stderr

16%|█▌ | 160/1000 [00:09&lt;00:49, 17.12it/s]

</pre>

16%|█▌ | 160/1000 [00:09<00:49, 17.12it/s]

end{sphinxVerbatim}

16%|█▌ | 160/1000 [00:09<00:49, 17.12it/s]

more-to-come:

class:

stderr

16%|█▌ | 162/1000 [00:09&lt;00:50, 16.47it/s]

</pre>

16%|█▌ | 162/1000 [00:09<00:50, 16.47it/s]

end{sphinxVerbatim}

16%|█▌ | 162/1000 [00:09<00:50, 16.47it/s]

more-to-come:

class:

stderr

16%|█▋ | 164/1000 [00:09&lt;00:51, 16.35it/s]

</pre>

16%|█▋ | 164/1000 [00:09<00:51, 16.35it/s]

end{sphinxVerbatim}

16%|█▋ | 164/1000 [00:09<00:51, 16.35it/s]

more-to-come:

class:

stderr

17%|█▋ | 166/1000 [00:09&lt;00:50, 16.65it/s]

</pre>

17%|█▋ | 166/1000 [00:09<00:50, 16.65it/s]

end{sphinxVerbatim}

17%|█▋ | 166/1000 [00:09<00:50, 16.65it/s]

more-to-come:

class:

stderr

17%|█▋ | 168/1000 [00:09&lt;00:49, 16.91it/s]

</pre>

17%|█▋ | 168/1000 [00:09<00:49, 16.91it/s]

end{sphinxVerbatim}

17%|█▋ | 168/1000 [00:09<00:49, 16.91it/s]

more-to-come:

class:

stderr

17%|█▋ | 170/1000 [00:09&lt;00:48, 17.11it/s]

</pre>

17%|█▋ | 170/1000 [00:09<00:48, 17.11it/s]

end{sphinxVerbatim}

17%|█▋ | 170/1000 [00:09<00:48, 17.11it/s]

more-to-come:

class:

stderr

17%|█▋ | 172/1000 [00:10&lt;00:48, 17.10it/s]

</pre>

17%|█▋ | 172/1000 [00:10<00:48, 17.10it/s]

end{sphinxVerbatim}

17%|█▋ | 172/1000 [00:10<00:48, 17.10it/s]

more-to-come:

class:

stderr

17%|█▋ | 174/1000 [00:10&lt;00:47, 17.22it/s]

</pre>

17%|█▋ | 174/1000 [00:10<00:47, 17.22it/s]

end{sphinxVerbatim}

17%|█▋ | 174/1000 [00:10<00:47, 17.22it/s]

more-to-come:

class:

stderr

18%|█▊ | 176/1000 [00:10&lt;00:48, 17.15it/s]

</pre>

18%|█▊ | 176/1000 [00:10<00:48, 17.15it/s]

end{sphinxVerbatim}

18%|█▊ | 176/1000 [00:10<00:48, 17.15it/s]

more-to-come:

class:

stderr

18%|█▊ | 178/1000 [00:10&lt;00:47, 17.24it/s]

</pre>

18%|█▊ | 178/1000 [00:10<00:47, 17.24it/s]

end{sphinxVerbatim}

18%|█▊ | 178/1000 [00:10<00:47, 17.24it/s]

more-to-come:

class:

stderr

18%|█▊ | 180/1000 [00:10&lt;00:47, 17.23it/s]

</pre>

18%|█▊ | 180/1000 [00:10<00:47, 17.23it/s]

end{sphinxVerbatim}

18%|█▊ | 180/1000 [00:10<00:47, 17.23it/s]

more-to-come:

class:

stderr

18%|█▊ | 182/1000 [00:10&lt;00:47, 17.28it/s]

</pre>

18%|█▊ | 182/1000 [00:10<00:47, 17.28it/s]

end{sphinxVerbatim}

18%|█▊ | 182/1000 [00:10<00:47, 17.28it/s]

more-to-come:

class:

stderr

18%|█▊ | 184/1000 [00:10&lt;00:47, 17.30it/s]

</pre>

18%|█▊ | 184/1000 [00:10<00:47, 17.30it/s]

end{sphinxVerbatim}

18%|█▊ | 184/1000 [00:10<00:47, 17.30it/s]

more-to-come:

class:

stderr

19%|█▊ | 186/1000 [00:10&lt;00:47, 17.18it/s]

</pre>

19%|█▊ | 186/1000 [00:10<00:47, 17.18it/s]

end{sphinxVerbatim}

19%|█▊ | 186/1000 [00:10<00:47, 17.18it/s]

more-to-come:

class:

stderr

19%|█▉ | 188/1000 [00:10&lt;00:47, 17.20it/s]

</pre>

19%|█▉ | 188/1000 [00:10<00:47, 17.20it/s]

end{sphinxVerbatim}

19%|█▉ | 188/1000 [00:10<00:47, 17.20it/s]

more-to-come:

class:

stderr

19%|█▉ | 190/1000 [00:11&lt;00:46, 17.29it/s]

</pre>

19%|█▉ | 190/1000 [00:11<00:46, 17.29it/s]

end{sphinxVerbatim}

19%|█▉ | 190/1000 [00:11<00:46, 17.29it/s]

more-to-come:

class:

stderr

19%|█▉ | 192/1000 [00:11&lt;00:46, 17.35it/s]

</pre>

19%|█▉ | 192/1000 [00:11<00:46, 17.35it/s]

end{sphinxVerbatim}

19%|█▉ | 192/1000 [00:11<00:46, 17.35it/s]

more-to-come:

class:

stderr

19%|█▉ | 194/1000 [00:11&lt;00:46, 17.40it/s]

</pre>

19%|█▉ | 194/1000 [00:11<00:46, 17.40it/s]

end{sphinxVerbatim}

19%|█▉ | 194/1000 [00:11<00:46, 17.40it/s]

more-to-come:

class:

stderr

20%|█▉ | 196/1000 [00:11&lt;00:46, 17.45it/s]

</pre>

20%|█▉ | 196/1000 [00:11<00:46, 17.45it/s]

end{sphinxVerbatim}

20%|█▉ | 196/1000 [00:11<00:46, 17.45it/s]

more-to-come:

class:

stderr

20%|█▉ | 198/1000 [00:11&lt;00:45, 17.45it/s]

</pre>

20%|█▉ | 198/1000 [00:11<00:45, 17.45it/s]

end{sphinxVerbatim}

20%|█▉ | 198/1000 [00:11<00:45, 17.45it/s]

more-to-come:

class:

stderr

20%|██ | 200/1000 [00:11&lt;00:45, 17.51it/s]

</pre>

20%|██ | 200/1000 [00:11<00:45, 17.51it/s]

end{sphinxVerbatim}

20%|██ | 200/1000 [00:11<00:45, 17.51it/s]

more-to-come:

class:

stderr

20%|██ | 202/1000 [00:11&lt;00:45, 17.55it/s]

</pre>

20%|██ | 202/1000 [00:11<00:45, 17.55it/s]

end{sphinxVerbatim}

20%|██ | 202/1000 [00:11<00:45, 17.55it/s]

more-to-come:

class:

stderr

20%|██ | 204/1000 [00:11&lt;00:45, 17.60it/s]

</pre>

20%|██ | 204/1000 [00:11<00:45, 17.60it/s]

end{sphinxVerbatim}

20%|██ | 204/1000 [00:11<00:45, 17.60it/s]

more-to-come:

class:

stderr

21%|██ | 206/1000 [00:11&lt;00:45, 17.51it/s]

</pre>

21%|██ | 206/1000 [00:11<00:45, 17.51it/s]

end{sphinxVerbatim}

21%|██ | 206/1000 [00:11<00:45, 17.51it/s]

more-to-come:

class:

stderr

21%|██ | 208/1000 [00:12&lt;00:45, 17.56it/s]

</pre>

21%|██ | 208/1000 [00:12<00:45, 17.56it/s]

end{sphinxVerbatim}

21%|██ | 208/1000 [00:12<00:45, 17.56it/s]

more-to-come:

class:

stderr

21%|██ | 210/1000 [00:12&lt;00:44, 17.60it/s]

</pre>

21%|██ | 210/1000 [00:12<00:44, 17.60it/s]

end{sphinxVerbatim}

21%|██ | 210/1000 [00:12<00:44, 17.60it/s]

more-to-come:

class:

stderr

21%|██ | 212/1000 [00:12&lt;00:44, 17.66it/s]

</pre>

21%|██ | 212/1000 [00:12<00:44, 17.66it/s]

end{sphinxVerbatim}

21%|██ | 212/1000 [00:12<00:44, 17.66it/s]

more-to-come:

class:

stderr

21%|██▏ | 214/1000 [00:12&lt;00:44, 17.54it/s]

</pre>

21%|██▏ | 214/1000 [00:12<00:44, 17.54it/s]

end{sphinxVerbatim}

21%|██▏ | 214/1000 [00:12<00:44, 17.54it/s]

more-to-come:

class:

stderr

22%|██▏ | 216/1000 [00:12&lt;00:44, 17.57it/s]

</pre>

22%|██▏ | 216/1000 [00:12<00:44, 17.57it/s]

end{sphinxVerbatim}

22%|██▏ | 216/1000 [00:12<00:44, 17.57it/s]

more-to-come:

class:

stderr

22%|██▏ | 218/1000 [00:12&lt;00:44, 17.61it/s]

</pre>

22%|██▏ | 218/1000 [00:12<00:44, 17.61it/s]

end{sphinxVerbatim}

22%|██▏ | 218/1000 [00:12<00:44, 17.61it/s]

more-to-come:

class:

stderr

22%|██▏ | 220/1000 [00:12&lt;00:44, 17.61it/s]

</pre>

22%|██▏ | 220/1000 [00:12<00:44, 17.61it/s]

end{sphinxVerbatim}

22%|██▏ | 220/1000 [00:12<00:44, 17.61it/s]

more-to-come:

class:

stderr

22%|██▏ | 222/1000 [00:12&lt;00:44, 17.62it/s]

</pre>

22%|██▏ | 222/1000 [00:12<00:44, 17.62it/s]

end{sphinxVerbatim}

22%|██▏ | 222/1000 [00:12<00:44, 17.62it/s]

more-to-come:

class:

stderr

22%|██▏ | 224/1000 [00:13&lt;00:44, 17.59it/s]

</pre>

22%|██▏ | 224/1000 [00:13<00:44, 17.59it/s]

end{sphinxVerbatim}

22%|██▏ | 224/1000 [00:13<00:44, 17.59it/s]

more-to-come:

class:

stderr

23%|██▎ | 226/1000 [00:13&lt;00:44, 17.43it/s]

</pre>

23%|██▎ | 226/1000 [00:13<00:44, 17.43it/s]

end{sphinxVerbatim}

23%|██▎ | 226/1000 [00:13<00:44, 17.43it/s]

more-to-come:

class:

stderr

23%|██▎ | 228/1000 [00:13&lt;00:44, 17.51it/s]

</pre>

23%|██▎ | 228/1000 [00:13<00:44, 17.51it/s]

end{sphinxVerbatim}

23%|██▎ | 228/1000 [00:13<00:44, 17.51it/s]

more-to-come:

class:

stderr

23%|██▎ | 230/1000 [00:13&lt;00:43, 17.57it/s]

</pre>

23%|██▎ | 230/1000 [00:13<00:43, 17.57it/s]

end{sphinxVerbatim}

23%|██▎ | 230/1000 [00:13<00:43, 17.57it/s]

more-to-come:

class:

stderr

23%|██▎ | 232/1000 [00:13&lt;00:43, 17.60it/s]

</pre>

23%|██▎ | 232/1000 [00:13<00:43, 17.60it/s]

end{sphinxVerbatim}

23%|██▎ | 232/1000 [00:13<00:43, 17.60it/s]

more-to-come:

class:

stderr

23%|██▎ | 234/1000 [00:13&lt;00:43, 17.65it/s]

</pre>

23%|██▎ | 234/1000 [00:13<00:43, 17.65it/s]

end{sphinxVerbatim}

23%|██▎ | 234/1000 [00:13<00:43, 17.65it/s]

more-to-come:

class:

stderr

24%|██▎ | 236/1000 [00:13&lt;00:43, 17.68it/s]

</pre>

24%|██▎ | 236/1000 [00:13<00:43, 17.68it/s]

end{sphinxVerbatim}

24%|██▎ | 236/1000 [00:13<00:43, 17.68it/s]

more-to-come:

class:

stderr

24%|██▍ | 238/1000 [00:13&lt;00:42, 17.72it/s]

</pre>

24%|██▍ | 238/1000 [00:13<00:42, 17.72it/s]

end{sphinxVerbatim}

24%|██▍ | 238/1000 [00:13<00:42, 17.72it/s]

more-to-come:

class:

stderr

24%|██▍ | 240/1000 [00:13&lt;00:42, 17.72it/s]

</pre>

24%|██▍ | 240/1000 [00:13<00:42, 17.72it/s]

end{sphinxVerbatim}

24%|██▍ | 240/1000 [00:13<00:42, 17.72it/s]

more-to-come:

class:

stderr

24%|██▍ | 242/1000 [00:14&lt;00:43, 17.61it/s]

</pre>

24%|██▍ | 242/1000 [00:14<00:43, 17.61it/s]

end{sphinxVerbatim}

24%|██▍ | 242/1000 [00:14<00:43, 17.61it/s]

more-to-come:

class:

stderr

24%|██▍ | 244/1000 [00:14&lt;00:42, 17.65it/s]

</pre>

24%|██▍ | 244/1000 [00:14<00:42, 17.65it/s]

end{sphinxVerbatim}

24%|██▍ | 244/1000 [00:14<00:42, 17.65it/s]

more-to-come:

class:

stderr

25%|██▍ | 246/1000 [00:14&lt;00:42, 17.65it/s]

</pre>

25%|██▍ | 246/1000 [00:14<00:42, 17.65it/s]

end{sphinxVerbatim}

25%|██▍ | 246/1000 [00:14<00:42, 17.65it/s]

more-to-come:

class:

stderr

25%|██▍ | 248/1000 [00:14&lt;00:42, 17.70it/s]

</pre>

25%|██▍ | 248/1000 [00:14<00:42, 17.70it/s]

end{sphinxVerbatim}

25%|██▍ | 248/1000 [00:14<00:42, 17.70it/s]

more-to-come:

class:

stderr

25%|██▌ | 250/1000 [00:14&lt;00:42, 17.60it/s]

</pre>

25%|██▌ | 250/1000 [00:14<00:42, 17.60it/s]

end{sphinxVerbatim}

25%|██▌ | 250/1000 [00:14<00:42, 17.60it/s]

more-to-come:

class:

stderr

25%|██▌ | 252/1000 [00:14&lt;00:42, 17.65it/s]

</pre>

25%|██▌ | 252/1000 [00:14<00:42, 17.65it/s]

end{sphinxVerbatim}

25%|██▌ | 252/1000 [00:14<00:42, 17.65it/s]

more-to-come:

class:

stderr

25%|██▌ | 254/1000 [00:14&lt;00:42, 17.55it/s]

</pre>

25%|██▌ | 254/1000 [00:14<00:42, 17.55it/s]

end{sphinxVerbatim}

25%|██▌ | 254/1000 [00:14<00:42, 17.55it/s]

more-to-come:

class:

stderr

26%|██▌ | 256/1000 [00:14&lt;00:42, 17.56it/s]

</pre>

26%|██▌ | 256/1000 [00:14<00:42, 17.56it/s]

end{sphinxVerbatim}

26%|██▌ | 256/1000 [00:14<00:42, 17.56it/s]

more-to-come:

class:

stderr

26%|██▌ | 258/1000 [00:14&lt;00:42, 17.47it/s]

</pre>

26%|██▌ | 258/1000 [00:14<00:42, 17.47it/s]

end{sphinxVerbatim}

26%|██▌ | 258/1000 [00:14<00:42, 17.47it/s]

more-to-come:

class:

stderr

26%|██▌ | 260/1000 [00:15&lt;00:42, 17.54it/s]

</pre>

26%|██▌ | 260/1000 [00:15<00:42, 17.54it/s]

end{sphinxVerbatim}

26%|██▌ | 260/1000 [00:15<00:42, 17.54it/s]

more-to-come:

class:

stderr

26%|██▌ | 262/1000 [00:15&lt;00:41, 17.69it/s]

</pre>

26%|██▌ | 262/1000 [00:15<00:41, 17.69it/s]

end{sphinxVerbatim}

26%|██▌ | 262/1000 [00:15<00:41, 17.69it/s]

more-to-come:

class:

stderr

26%|██▋ | 264/1000 [00:15&lt;00:41, 17.69it/s]

</pre>

26%|██▋ | 264/1000 [00:15<00:41, 17.69it/s]

end{sphinxVerbatim}

26%|██▋ | 264/1000 [00:15<00:41, 17.69it/s]

more-to-come:

class:

stderr

27%|██▋ | 266/1000 [00:15&lt;00:41, 17.70it/s]

</pre>

27%|██▋ | 266/1000 [00:15<00:41, 17.70it/s]

end{sphinxVerbatim}

27%|██▋ | 266/1000 [00:15<00:41, 17.70it/s]

more-to-come:

class:

stderr

27%|██▋ | 268/1000 [00:15&lt;00:41, 17.70it/s]

</pre>

27%|██▋ | 268/1000 [00:15<00:41, 17.70it/s]

end{sphinxVerbatim}

27%|██▋ | 268/1000 [00:15<00:41, 17.70it/s]

more-to-come:

class:

stderr

27%|██▋ | 270/1000 [00:15&lt;00:41, 17.68it/s]

</pre>

27%|██▋ | 270/1000 [00:15<00:41, 17.68it/s]

end{sphinxVerbatim}

27%|██▋ | 270/1000 [00:15<00:41, 17.68it/s]

more-to-come:

class:

stderr

27%|██▋ | 272/1000 [00:15&lt;00:41, 17.67it/s]

</pre>

27%|██▋ | 272/1000 [00:15<00:41, 17.67it/s]

end{sphinxVerbatim}

27%|██▋ | 272/1000 [00:15<00:41, 17.67it/s]

more-to-come:

class:

stderr

27%|██▋ | 274/1000 [00:15&lt;00:41, 17.67it/s]

</pre>

27%|██▋ | 274/1000 [00:15<00:41, 17.67it/s]

end{sphinxVerbatim}

27%|██▋ | 274/1000 [00:15<00:41, 17.67it/s]

more-to-come:

class:

stderr

28%|██▊ | 276/1000 [00:15&lt;00:41, 17.65it/s]

</pre>

28%|██▊ | 276/1000 [00:15<00:41, 17.65it/s]

end{sphinxVerbatim}

28%|██▊ | 276/1000 [00:15<00:41, 17.65it/s]

more-to-come:

class:

stderr

28%|██▊ | 278/1000 [00:16&lt;00:41, 17.52it/s]

</pre>

28%|██▊ | 278/1000 [00:16<00:41, 17.52it/s]

end{sphinxVerbatim}

28%|██▊ | 278/1000 [00:16<00:41, 17.52it/s]

more-to-come:

class:

stderr

28%|██▊ | 280/1000 [00:16&lt;00:41, 17.54it/s]

</pre>

28%|██▊ | 280/1000 [00:16<00:41, 17.54it/s]

end{sphinxVerbatim}

28%|██▊ | 280/1000 [00:16<00:41, 17.54it/s]

more-to-come:

class:

stderr

28%|██▊ | 282/1000 [00:16&lt;00:40, 17.56it/s]

</pre>

28%|██▊ | 282/1000 [00:16<00:40, 17.56it/s]

end{sphinxVerbatim}

28%|██▊ | 282/1000 [00:16<00:40, 17.56it/s]

more-to-come:

class:

stderr

28%|██▊ | 284/1000 [00:16&lt;00:40, 17.52it/s]

</pre>

28%|██▊ | 284/1000 [00:16<00:40, 17.52it/s]

end{sphinxVerbatim}

28%|██▊ | 284/1000 [00:16<00:40, 17.52it/s]

more-to-come:

class:

stderr

29%|██▊ | 286/1000 [00:16&lt;00:40, 17.51it/s]

</pre>

29%|██▊ | 286/1000 [00:16<00:40, 17.51it/s]

end{sphinxVerbatim}

29%|██▊ | 286/1000 [00:16<00:40, 17.51it/s]

more-to-come:

class:

stderr

29%|██▉ | 288/1000 [00:16&lt;00:40, 17.55it/s]

</pre>

29%|██▉ | 288/1000 [00:16<00:40, 17.55it/s]

end{sphinxVerbatim}

29%|██▉ | 288/1000 [00:16<00:40, 17.55it/s]

more-to-come:

class:

stderr

29%|██▉ | 290/1000 [00:16&lt;00:40, 17.56it/s]

</pre>

29%|██▉ | 290/1000 [00:16<00:40, 17.56it/s]

end{sphinxVerbatim}

29%|██▉ | 290/1000 [00:16<00:40, 17.56it/s]

more-to-come:

class:

stderr

29%|██▉ | 292/1000 [00:16&lt;00:40, 17.50it/s]

</pre>

29%|██▉ | 292/1000 [00:16<00:40, 17.50it/s]

end{sphinxVerbatim}

29%|██▉ | 292/1000 [00:16<00:40, 17.50it/s]

more-to-come:

class:

stderr

29%|██▉ | 294/1000 [00:16&lt;00:40, 17.46it/s]

</pre>

29%|██▉ | 294/1000 [00:16<00:40, 17.46it/s]

end{sphinxVerbatim}

29%|██▉ | 294/1000 [00:16<00:40, 17.46it/s]

more-to-come:

class:

stderr

30%|██▉ | 296/1000 [00:17&lt;00:40, 17.54it/s]

</pre>

30%|██▉ | 296/1000 [00:17<00:40, 17.54it/s]

end{sphinxVerbatim}

30%|██▉ | 296/1000 [00:17<00:40, 17.54it/s]

more-to-come:

class:

stderr

30%|██▉ | 298/1000 [00:17&lt;00:39, 17.59it/s]

</pre>

30%|██▉ | 298/1000 [00:17<00:39, 17.59it/s]

end{sphinxVerbatim}

30%|██▉ | 298/1000 [00:17<00:39, 17.59it/s]

more-to-come:

class:

stderr

30%|███ | 300/1000 [00:17&lt;00:39, 17.63it/s]

</pre>

30%|███ | 300/1000 [00:17<00:39, 17.63it/s]

end{sphinxVerbatim}

30%|███ | 300/1000 [00:17<00:39, 17.63it/s]

more-to-come:

class:

stderr

30%|███ | 302/1000 [00:17&lt;00:39, 17.66it/s]

</pre>

30%|███ | 302/1000 [00:17<00:39, 17.66it/s]

end{sphinxVerbatim}

30%|███ | 302/1000 [00:17<00:39, 17.66it/s]

more-to-come:

class:

stderr

30%|███ | 304/1000 [00:17&lt;00:39, 17.67it/s]

</pre>

30%|███ | 304/1000 [00:17<00:39, 17.67it/s]

end{sphinxVerbatim}

30%|███ | 304/1000 [00:17<00:39, 17.67it/s]

more-to-come:

class:

stderr

31%|███ | 306/1000 [00:17&lt;00:39, 17.68it/s]

</pre>

31%|███ | 306/1000 [00:17<00:39, 17.68it/s]

end{sphinxVerbatim}

31%|███ | 306/1000 [00:17<00:39, 17.68it/s]

more-to-come:

class:

stderr

31%|███ | 308/1000 [00:17&lt;00:39, 17.70it/s]

</pre>

31%|███ | 308/1000 [00:17<00:39, 17.70it/s]

end{sphinxVerbatim}

31%|███ | 308/1000 [00:17<00:39, 17.70it/s]

more-to-come:

class:

stderr

31%|███ | 310/1000 [00:17&lt;00:40, 17.22it/s]

</pre>

31%|███ | 310/1000 [00:17<00:40, 17.22it/s]

end{sphinxVerbatim}

31%|███ | 310/1000 [00:17<00:40, 17.22it/s]

more-to-come:

class:

stderr

31%|███ | 312/1000 [00:18&lt;00:39, 17.24it/s]

</pre>

31%|███ | 312/1000 [00:18<00:39, 17.24it/s]

end{sphinxVerbatim}

31%|███ | 312/1000 [00:18<00:39, 17.24it/s]

more-to-come:

class:

stderr

31%|███▏ | 314/1000 [00:18&lt;00:39, 17.33it/s]

</pre>

31%|███▏ | 314/1000 [00:18<00:39, 17.33it/s]

end{sphinxVerbatim}

31%|███▏ | 314/1000 [00:18<00:39, 17.33it/s]

more-to-come:

class:

stderr

32%|███▏ | 316/1000 [00:18&lt;00:39, 17.42it/s]

</pre>

32%|███▏ | 316/1000 [00:18<00:39, 17.42it/s]

end{sphinxVerbatim}

32%|███▏ | 316/1000 [00:18<00:39, 17.42it/s]

more-to-come:

class:

stderr

32%|███▏ | 318/1000 [00:18&lt;00:38, 17.50it/s]

</pre>

32%|███▏ | 318/1000 [00:18<00:38, 17.50it/s]

end{sphinxVerbatim}

32%|███▏ | 318/1000 [00:18<00:38, 17.50it/s]

more-to-come:

class:

stderr

32%|███▏ | 320/1000 [00:18&lt;00:38, 17.45it/s]

</pre>

32%|███▏ | 320/1000 [00:18<00:38, 17.45it/s]

end{sphinxVerbatim}

32%|███▏ | 320/1000 [00:18<00:38, 17.45it/s]

more-to-come:

class:

stderr

32%|███▏ | 322/1000 [00:18&lt;00:38, 17.52it/s]

</pre>

32%|███▏ | 322/1000 [00:18<00:38, 17.52it/s]

end{sphinxVerbatim}

32%|███▏ | 322/1000 [00:18<00:38, 17.52it/s]

more-to-come:

class:

stderr

32%|███▏ | 324/1000 [00:18&lt;00:38, 17.61it/s]

</pre>

32%|███▏ | 324/1000 [00:18<00:38, 17.61it/s]

end{sphinxVerbatim}

32%|███▏ | 324/1000 [00:18<00:38, 17.61it/s]

more-to-come:

class:

stderr

33%|███▎ | 326/1000 [00:18&lt;00:39, 17.16it/s]

</pre>

33%|███▎ | 326/1000 [00:18<00:39, 17.16it/s]

end{sphinxVerbatim}

33%|███▎ | 326/1000 [00:18<00:39, 17.16it/s]

more-to-come:

class:

stderr

33%|███▎ | 328/1000 [00:18&lt;00:38, 17.29it/s]

</pre>

33%|███▎ | 328/1000 [00:18<00:38, 17.29it/s]

end{sphinxVerbatim}

33%|███▎ | 328/1000 [00:18<00:38, 17.29it/s]

more-to-come:

class:

stderr

33%|███▎ | 330/1000 [00:19&lt;00:38, 17.38it/s]

</pre>

33%|███▎ | 330/1000 [00:19<00:38, 17.38it/s]

end{sphinxVerbatim}

33%|███▎ | 330/1000 [00:19<00:38, 17.38it/s]

more-to-come:

class:

stderr

33%|███▎ | 332/1000 [00:19&lt;00:38, 17.48it/s]

</pre>

33%|███▎ | 332/1000 [00:19<00:38, 17.48it/s]

end{sphinxVerbatim}

33%|███▎ | 332/1000 [00:19<00:38, 17.48it/s]

more-to-come:

class:

stderr

33%|███▎ | 334/1000 [00:19&lt;00:38, 17.50it/s]

</pre>

33%|███▎ | 334/1000 [00:19<00:38, 17.50it/s]

end{sphinxVerbatim}

33%|███▎ | 334/1000 [00:19<00:38, 17.50it/s]

more-to-come:

class:

stderr

34%|███▎ | 336/1000 [00:19&lt;00:37, 17.55it/s]

</pre>

34%|███▎ | 336/1000 [00:19<00:37, 17.55it/s]

end{sphinxVerbatim}

34%|███▎ | 336/1000 [00:19<00:37, 17.55it/s]

more-to-come:

class:

stderr

34%|███▍ | 338/1000 [00:19&lt;00:37, 17.62it/s]

</pre>

34%|███▍ | 338/1000 [00:19<00:37, 17.62it/s]

end{sphinxVerbatim}

34%|███▍ | 338/1000 [00:19<00:37, 17.62it/s]

more-to-come:

class:

stderr

34%|███▍ | 340/1000 [00:19&lt;00:37, 17.63it/s]

</pre>

34%|███▍ | 340/1000 [00:19<00:37, 17.63it/s]

end{sphinxVerbatim}

34%|███▍ | 340/1000 [00:19<00:37, 17.63it/s]

more-to-come:

class:

stderr

34%|███▍ | 342/1000 [00:19&lt;00:37, 17.68it/s]

</pre>

34%|███▍ | 342/1000 [00:19<00:37, 17.68it/s]

end{sphinxVerbatim}

34%|███▍ | 342/1000 [00:19<00:37, 17.68it/s]

more-to-come:

class:

stderr

34%|███▍ | 344/1000 [00:19&lt;00:37, 17.58it/s]

</pre>

34%|███▍ | 344/1000 [00:19<00:37, 17.58it/s]

end{sphinxVerbatim}

34%|███▍ | 344/1000 [00:19<00:37, 17.58it/s]

more-to-come:

class:

stderr

35%|███▍ | 346/1000 [00:19&lt;00:37, 17.57it/s]

</pre>

35%|███▍ | 346/1000 [00:19<00:37, 17.57it/s]

end{sphinxVerbatim}

35%|███▍ | 346/1000 [00:19<00:37, 17.57it/s]

more-to-come:

class:

stderr

35%|███▍ | 348/1000 [00:20&lt;00:37, 17.54it/s]

</pre>

35%|███▍ | 348/1000 [00:20<00:37, 17.54it/s]

end{sphinxVerbatim}

35%|███▍ | 348/1000 [00:20<00:37, 17.54it/s]

more-to-come:

class:

stderr

35%|███▌ | 350/1000 [00:20&lt;00:36, 17.59it/s]

</pre>

35%|███▌ | 350/1000 [00:20<00:36, 17.59it/s]

end{sphinxVerbatim}

35%|███▌ | 350/1000 [00:20<00:36, 17.59it/s]

more-to-come:

class:

stderr

35%|███▌ | 352/1000 [00:20&lt;00:36, 17.63it/s]

</pre>

35%|███▌ | 352/1000 [00:20<00:36, 17.63it/s]

end{sphinxVerbatim}

35%|███▌ | 352/1000 [00:20<00:36, 17.63it/s]

more-to-come:

class:

stderr

35%|███▌ | 354/1000 [00:20&lt;00:36, 17.57it/s]

</pre>

35%|███▌ | 354/1000 [00:20<00:36, 17.57it/s]

end{sphinxVerbatim}

35%|███▌ | 354/1000 [00:20<00:36, 17.57it/s]

more-to-come:

class:

stderr

36%|███▌ | 356/1000 [00:20&lt;00:36, 17.51it/s]

</pre>

36%|███▌ | 356/1000 [00:20<00:36, 17.51it/s]

end{sphinxVerbatim}

36%|███▌ | 356/1000 [00:20<00:36, 17.51it/s]

more-to-come:

class:

stderr

36%|███▌ | 358/1000 [00:20&lt;00:36, 17.52it/s]

</pre>

36%|███▌ | 358/1000 [00:20<00:36, 17.52it/s]

end{sphinxVerbatim}

36%|███▌ | 358/1000 [00:20<00:36, 17.52it/s]

more-to-come:

class:

stderr

36%|███▌ | 360/1000 [00:20&lt;00:36, 17.56it/s]

</pre>

36%|███▌ | 360/1000 [00:20<00:36, 17.56it/s]

end{sphinxVerbatim}

36%|███▌ | 360/1000 [00:20<00:36, 17.56it/s]

more-to-come:

class:

stderr

36%|███▌ | 362/1000 [00:20&lt;00:36, 17.47it/s]

</pre>

36%|███▌ | 362/1000 [00:20<00:36, 17.47it/s]

end{sphinxVerbatim}

36%|███▌ | 362/1000 [00:20<00:36, 17.47it/s]

more-to-come:

class:

stderr

36%|███▋ | 364/1000 [00:20&lt;00:36, 17.44it/s]

</pre>

36%|███▋ | 364/1000 [00:20<00:36, 17.44it/s]

end{sphinxVerbatim}

36%|███▋ | 364/1000 [00:20<00:36, 17.44it/s]

more-to-come:

class:

stderr

37%|███▋ | 366/1000 [00:21&lt;00:36, 17.54it/s]

</pre>

37%|███▋ | 366/1000 [00:21<00:36, 17.54it/s]

end{sphinxVerbatim}

37%|███▋ | 366/1000 [00:21<00:36, 17.54it/s]

more-to-come:

class:

stderr

37%|███▋ | 368/1000 [00:21&lt;00:35, 17.61it/s]

</pre>

37%|███▋ | 368/1000 [00:21<00:35, 17.61it/s]

end{sphinxVerbatim}

37%|███▋ | 368/1000 [00:21<00:35, 17.61it/s]

more-to-come:

class:

stderr

37%|███▋ | 370/1000 [00:21&lt;00:35, 17.65it/s]

</pre>

37%|███▋ | 370/1000 [00:21<00:35, 17.65it/s]

end{sphinxVerbatim}

37%|███▋ | 370/1000 [00:21<00:35, 17.65it/s]

more-to-come:

class:

stderr

37%|███▋ | 372/1000 [00:21&lt;00:35, 17.69it/s]

</pre>

37%|███▋ | 372/1000 [00:21<00:35, 17.69it/s]

end{sphinxVerbatim}

37%|███▋ | 372/1000 [00:21<00:35, 17.69it/s]

more-to-come:

class:

stderr

37%|███▋ | 374/1000 [00:21&lt;00:35, 17.72it/s]

</pre>

37%|███▋ | 374/1000 [00:21<00:35, 17.72it/s]

end{sphinxVerbatim}

37%|███▋ | 374/1000 [00:21<00:35, 17.72it/s]

more-to-come:

class:

stderr

38%|███▊ | 376/1000 [00:21&lt;00:35, 17.71it/s]

</pre>

38%|███▊ | 376/1000 [00:21<00:35, 17.71it/s]

end{sphinxVerbatim}

38%|███▊ | 376/1000 [00:21<00:35, 17.71it/s]

more-to-come:

class:

stderr

38%|███▊ | 378/1000 [00:21&lt;00:35, 17.69it/s]

</pre>

38%|███▊ | 378/1000 [00:21<00:35, 17.69it/s]

end{sphinxVerbatim}

38%|███▊ | 378/1000 [00:21<00:35, 17.69it/s]

more-to-come:

class:

stderr

38%|███▊ | 380/1000 [00:21&lt;00:35, 17.68it/s]

</pre>

38%|███▊ | 380/1000 [00:21<00:35, 17.68it/s]

end{sphinxVerbatim}

38%|███▊ | 380/1000 [00:21<00:35, 17.68it/s]

more-to-come:

class:

stderr

38%|███▊ | 382/1000 [00:22&lt;00:35, 17.62it/s]

</pre>

38%|███▊ | 382/1000 [00:22<00:35, 17.62it/s]

end{sphinxVerbatim}

38%|███▊ | 382/1000 [00:22<00:35, 17.62it/s]

more-to-come:

class:

stderr

38%|███▊ | 384/1000 [00:22&lt;00:34, 17.61it/s]

</pre>

38%|███▊ | 384/1000 [00:22<00:34, 17.61it/s]

end{sphinxVerbatim}

38%|███▊ | 384/1000 [00:22<00:34, 17.61it/s]

more-to-come:

class:

stderr

39%|███▊ | 386/1000 [00:22&lt;00:34, 17.64it/s]

</pre>

39%|███▊ | 386/1000 [00:22<00:34, 17.64it/s]

end{sphinxVerbatim}

39%|███▊ | 386/1000 [00:22<00:34, 17.64it/s]

more-to-come:

class:

stderr

39%|███▉ | 388/1000 [00:22&lt;00:34, 17.71it/s]

</pre>

39%|███▉ | 388/1000 [00:22<00:34, 17.71it/s]

end{sphinxVerbatim}

39%|███▉ | 388/1000 [00:22<00:34, 17.71it/s]

more-to-come:

class:

stderr

39%|███▉ | 390/1000 [00:22&lt;00:34, 17.53it/s]

</pre>

39%|███▉ | 390/1000 [00:22<00:34, 17.53it/s]

end{sphinxVerbatim}

39%|███▉ | 390/1000 [00:22<00:34, 17.53it/s]

more-to-come:

class:

stderr

39%|███▉ | 392/1000 [00:22&lt;00:34, 17.60it/s]

</pre>

39%|███▉ | 392/1000 [00:22<00:34, 17.60it/s]

end{sphinxVerbatim}

39%|███▉ | 392/1000 [00:22<00:34, 17.60it/s]

more-to-come:

class:

stderr

39%|███▉ | 394/1000 [00:22&lt;00:34, 17.66it/s]

</pre>

39%|███▉ | 394/1000 [00:22<00:34, 17.66it/s]

end{sphinxVerbatim}

39%|███▉ | 394/1000 [00:22<00:34, 17.66it/s]

more-to-come:

class:

stderr

40%|███▉ | 396/1000 [00:22&lt;00:34, 17.67it/s]

</pre>

40%|███▉ | 396/1000 [00:22<00:34, 17.67it/s]

end{sphinxVerbatim}

40%|███▉ | 396/1000 [00:22<00:34, 17.67it/s]

more-to-come:

class:

stderr

40%|███▉ | 398/1000 [00:22&lt;00:34, 17.54it/s]

</pre>

40%|███▉ | 398/1000 [00:22<00:34, 17.54it/s]

end{sphinxVerbatim}

40%|███▉ | 398/1000 [00:22<00:34, 17.54it/s]

more-to-come:

class:

stderr

40%|████ | 400/1000 [00:23&lt;00:34, 17.52it/s]

</pre>

40%|████ | 400/1000 [00:23<00:34, 17.52it/s]

end{sphinxVerbatim}

40%|████ | 400/1000 [00:23<00:34, 17.52it/s]

more-to-come:

class:

stderr

40%|████ | 402/1000 [00:23&lt;00:33, 17.61it/s]

</pre>

40%|████ | 402/1000 [00:23<00:33, 17.61it/s]

end{sphinxVerbatim}

40%|████ | 402/1000 [00:23<00:33, 17.61it/s]

more-to-come:

class:

stderr

40%|████ | 404/1000 [00:23&lt;00:33, 17.69it/s]

</pre>

40%|████ | 404/1000 [00:23<00:33, 17.69it/s]

end{sphinxVerbatim}

40%|████ | 404/1000 [00:23<00:33, 17.69it/s]

more-to-come:

class:

stderr

41%|████ | 406/1000 [00:23&lt;00:33, 17.72it/s]

</pre>

41%|████ | 406/1000 [00:23<00:33, 17.72it/s]

end{sphinxVerbatim}

41%|████ | 406/1000 [00:23<00:33, 17.72it/s]

more-to-come:

class:

stderr

41%|████ | 408/1000 [00:23&lt;00:33, 17.75it/s]

</pre>

41%|████ | 408/1000 [00:23<00:33, 17.75it/s]

end{sphinxVerbatim}

41%|████ | 408/1000 [00:23<00:33, 17.75it/s]

more-to-come:

class:

stderr

41%|████ | 410/1000 [00:23&lt;00:33, 17.78it/s]

</pre>

41%|████ | 410/1000 [00:23<00:33, 17.78it/s]

end{sphinxVerbatim}

41%|████ | 410/1000 [00:23<00:33, 17.78it/s]

more-to-come:

class:

stderr

41%|████ | 412/1000 [00:23&lt;00:33, 17.81it/s]

</pre>

41%|████ | 412/1000 [00:23<00:33, 17.81it/s]

end{sphinxVerbatim}

41%|████ | 412/1000 [00:23<00:33, 17.81it/s]

more-to-come:

class:

stderr

41%|████▏ | 414/1000 [00:23&lt;00:32, 17.80it/s]

</pre>

41%|████▏ | 414/1000 [00:23<00:32, 17.80it/s]

end{sphinxVerbatim}

41%|████▏ | 414/1000 [00:23<00:32, 17.80it/s]

more-to-come:

class:

stderr

42%|████▏ | 416/1000 [00:23&lt;00:32, 17.79it/s]

</pre>

42%|████▏ | 416/1000 [00:23<00:32, 17.79it/s]

end{sphinxVerbatim}

42%|████▏ | 416/1000 [00:23<00:32, 17.79it/s]

more-to-come:

class:

stderr

42%|████▏ | 418/1000 [00:24&lt;00:32, 17.72it/s]

</pre>

42%|████▏ | 418/1000 [00:24<00:32, 17.72it/s]

end{sphinxVerbatim}

42%|████▏ | 418/1000 [00:24<00:32, 17.72it/s]

more-to-come:

class:

stderr

42%|████▏ | 420/1000 [00:24&lt;00:32, 17.74it/s]

</pre>

42%|████▏ | 420/1000 [00:24<00:32, 17.74it/s]

end{sphinxVerbatim}

42%|████▏ | 420/1000 [00:24<00:32, 17.74it/s]

more-to-come:

class:

stderr

42%|████▏ | 422/1000 [00:24&lt;00:32, 17.61it/s]

</pre>

42%|████▏ | 422/1000 [00:24<00:32, 17.61it/s]

end{sphinxVerbatim}

42%|████▏ | 422/1000 [00:24<00:32, 17.61it/s]

more-to-come:

class:

stderr

42%|████▏ | 424/1000 [00:24&lt;00:32, 17.63it/s]

</pre>

42%|████▏ | 424/1000 [00:24<00:32, 17.63it/s]

end{sphinxVerbatim}

42%|████▏ | 424/1000 [00:24<00:32, 17.63it/s]

more-to-come:

class:

stderr

43%|████▎ | 426/1000 [00:24&lt;00:32, 17.55it/s]

</pre>

43%|████▎ | 426/1000 [00:24<00:32, 17.55it/s]

end{sphinxVerbatim}

43%|████▎ | 426/1000 [00:24<00:32, 17.55it/s]

more-to-come:

class:

stderr

43%|████▎ | 428/1000 [00:24&lt;00:32, 17.57it/s]

</pre>

43%|████▎ | 428/1000 [00:24<00:32, 17.57it/s]

end{sphinxVerbatim}

43%|████▎ | 428/1000 [00:24<00:32, 17.57it/s]

more-to-come:

class:

stderr

43%|████▎ | 430/1000 [00:24&lt;00:32, 17.63it/s]

</pre>

43%|████▎ | 430/1000 [00:24<00:32, 17.63it/s]

end{sphinxVerbatim}

43%|████▎ | 430/1000 [00:24<00:32, 17.63it/s]

more-to-come:

class:

stderr

43%|████▎ | 432/1000 [00:24&lt;00:32, 17.60it/s]

</pre>

43%|████▎ | 432/1000 [00:24<00:32, 17.60it/s]

end{sphinxVerbatim}

43%|████▎ | 432/1000 [00:24<00:32, 17.60it/s]

more-to-come:

class:

stderr

43%|████▎ | 434/1000 [00:24&lt;00:32, 17.51it/s]

</pre>

43%|████▎ | 434/1000 [00:24<00:32, 17.51it/s]

end{sphinxVerbatim}

43%|████▎ | 434/1000 [00:24<00:32, 17.51it/s]

more-to-come:

class:

stderr

44%|████▎ | 436/1000 [00:25&lt;00:32, 17.58it/s]

</pre>

44%|████▎ | 436/1000 [00:25<00:32, 17.58it/s]

end{sphinxVerbatim}

44%|████▎ | 436/1000 [00:25<00:32, 17.58it/s]

more-to-come:

class:

stderr

44%|████▍ | 438/1000 [00:25&lt;00:31, 17.63it/s]

</pre>

44%|████▍ | 438/1000 [00:25<00:31, 17.63it/s]

end{sphinxVerbatim}

44%|████▍ | 438/1000 [00:25<00:31, 17.63it/s]

more-to-come:

class:

stderr

44%|████▍ | 440/1000 [00:25&lt;00:31, 17.68it/s]

</pre>

44%|████▍ | 440/1000 [00:25<00:31, 17.68it/s]

end{sphinxVerbatim}

44%|████▍ | 440/1000 [00:25<00:31, 17.68it/s]

more-to-come:

class:

stderr

44%|████▍ | 442/1000 [00:25&lt;00:31, 17.71it/s]

</pre>

44%|████▍ | 442/1000 [00:25<00:31, 17.71it/s]

end{sphinxVerbatim}

44%|████▍ | 442/1000 [00:25<00:31, 17.71it/s]

more-to-come:

class:

stderr

44%|████▍ | 444/1000 [00:25&lt;00:31, 17.75it/s]

</pre>

44%|████▍ | 444/1000 [00:25<00:31, 17.75it/s]

end{sphinxVerbatim}

44%|████▍ | 444/1000 [00:25<00:31, 17.75it/s]

more-to-come:

class:

stderr

45%|████▍ | 446/1000 [00:25&lt;00:31, 17.74it/s]

</pre>

45%|████▍ | 446/1000 [00:25<00:31, 17.74it/s]

end{sphinxVerbatim}

45%|████▍ | 446/1000 [00:25<00:31, 17.74it/s]

more-to-come:

class:

stderr

45%|████▍ | 448/1000 [00:25&lt;00:31, 17.75it/s]

</pre>

45%|████▍ | 448/1000 [00:25<00:31, 17.75it/s]

end{sphinxVerbatim}

45%|████▍ | 448/1000 [00:25<00:31, 17.75it/s]

more-to-come:

class:

stderr

45%|████▌ | 450/1000 [00:25&lt;00:30, 17.77it/s]

</pre>

45%|████▌ | 450/1000 [00:25<00:30, 17.77it/s]

end{sphinxVerbatim}

45%|████▌ | 450/1000 [00:25<00:30, 17.77it/s]

more-to-come:

class:

stderr

45%|████▌ | 452/1000 [00:25&lt;00:30, 17.72it/s]

</pre>

45%|████▌ | 452/1000 [00:25<00:30, 17.72it/s]

end{sphinxVerbatim}

45%|████▌ | 452/1000 [00:25<00:30, 17.72it/s]

more-to-come:

class:

stderr

45%|████▌ | 454/1000 [00:26&lt;00:30, 17.63it/s]

</pre>

45%|████▌ | 454/1000 [00:26<00:30, 17.63it/s]

end{sphinxVerbatim}

45%|████▌ | 454/1000 [00:26<00:30, 17.63it/s]

more-to-come:

class:

stderr

46%|████▌ | 456/1000 [00:26&lt;00:30, 17.62it/s]

</pre>

46%|████▌ | 456/1000 [00:26<00:30, 17.62it/s]

end{sphinxVerbatim}

46%|████▌ | 456/1000 [00:26<00:30, 17.62it/s]

more-to-come:

class:

stderr

46%|████▌ | 458/1000 [00:26&lt;00:30, 17.60it/s]

</pre>

46%|████▌ | 458/1000 [00:26<00:30, 17.60it/s]

end{sphinxVerbatim}

46%|████▌ | 458/1000 [00:26<00:30, 17.60it/s]

more-to-come:

class:

stderr

46%|████▌ | 460/1000 [00:26&lt;00:30, 17.56it/s]

</pre>

46%|████▌ | 460/1000 [00:26<00:30, 17.56it/s]

end{sphinxVerbatim}

46%|████▌ | 460/1000 [00:26<00:30, 17.56it/s]

more-to-come:

class:

stderr

46%|████▌ | 462/1000 [00:26&lt;00:30, 17.59it/s]

</pre>

46%|████▌ | 462/1000 [00:26<00:30, 17.59it/s]

end{sphinxVerbatim}

46%|████▌ | 462/1000 [00:26<00:30, 17.59it/s]

more-to-come:

class:

stderr

46%|████▋ | 464/1000 [00:26&lt;00:30, 17.65it/s]

</pre>

46%|████▋ | 464/1000 [00:26<00:30, 17.65it/s]

end{sphinxVerbatim}

46%|████▋ | 464/1000 [00:26<00:30, 17.65it/s]

more-to-come:

class:

stderr

47%|████▋ | 466/1000 [00:26&lt;00:30, 17.68it/s]

</pre>

47%|████▋ | 466/1000 [00:26<00:30, 17.68it/s]

end{sphinxVerbatim}

47%|████▋ | 466/1000 [00:26<00:30, 17.68it/s]

more-to-come:

class:

stderr

47%|████▋ | 468/1000 [00:26&lt;00:30, 17.57it/s]

</pre>

47%|████▋ | 468/1000 [00:26<00:30, 17.57it/s]

end{sphinxVerbatim}

47%|████▋ | 468/1000 [00:26<00:30, 17.57it/s]

more-to-come:

class:

stderr

47%|████▋ | 470/1000 [00:26&lt;00:30, 17.47it/s]

</pre>

47%|████▋ | 470/1000 [00:26<00:30, 17.47it/s]

end{sphinxVerbatim}

47%|████▋ | 470/1000 [00:26<00:30, 17.47it/s]

more-to-come:

class:

stderr

47%|████▋ | 472/1000 [00:27&lt;00:30, 17.51it/s]

</pre>

47%|████▋ | 472/1000 [00:27<00:30, 17.51it/s]

end{sphinxVerbatim}

47%|████▋ | 472/1000 [00:27<00:30, 17.51it/s]

more-to-come:

class:

stderr

47%|████▋ | 474/1000 [00:27&lt;00:29, 17.57it/s]

</pre>

47%|████▋ | 474/1000 [00:27<00:29, 17.57it/s]

end{sphinxVerbatim}

47%|████▋ | 474/1000 [00:27<00:29, 17.57it/s]

more-to-come:

class:

stderr

48%|████▊ | 476/1000 [00:27&lt;00:29, 17.62it/s]

</pre>

48%|████▊ | 476/1000 [00:27<00:29, 17.62it/s]

end{sphinxVerbatim}

48%|████▊ | 476/1000 [00:27<00:29, 17.62it/s]

more-to-come:

class:

stderr

48%|████▊ | 478/1000 [00:27&lt;00:29, 17.63it/s]

</pre>

48%|████▊ | 478/1000 [00:27<00:29, 17.63it/s]

end{sphinxVerbatim}

48%|████▊ | 478/1000 [00:27<00:29, 17.63it/s]

more-to-come:

class:

stderr

48%|████▊ | 480/1000 [00:27&lt;00:29, 17.67it/s]

</pre>

48%|████▊ | 480/1000 [00:27<00:29, 17.67it/s]

end{sphinxVerbatim}

48%|████▊ | 480/1000 [00:27<00:29, 17.67it/s]

more-to-come:

class:

stderr

48%|████▊ | 482/1000 [00:27&lt;00:29, 17.70it/s]

</pre>

48%|████▊ | 482/1000 [00:27<00:29, 17.70it/s]

end{sphinxVerbatim}

48%|████▊ | 482/1000 [00:27<00:29, 17.70it/s]

more-to-come:

class:

stderr

48%|████▊ | 484/1000 [00:27&lt;00:29, 17.73it/s]

</pre>

48%|████▊ | 484/1000 [00:27<00:29, 17.73it/s]

end{sphinxVerbatim}

48%|████▊ | 484/1000 [00:27<00:29, 17.73it/s]

more-to-come:

class:

stderr

49%|████▊ | 486/1000 [00:27&lt;00:29, 17.71it/s]

</pre>

49%|████▊ | 486/1000 [00:27<00:29, 17.71it/s]

end{sphinxVerbatim}

49%|████▊ | 486/1000 [00:27<00:29, 17.71it/s]

more-to-come:

class:

stderr

49%|████▉ | 488/1000 [00:28&lt;00:29, 17.63it/s]

</pre>

49%|████▉ | 488/1000 [00:28<00:29, 17.63it/s]

end{sphinxVerbatim}

49%|████▉ | 488/1000 [00:28<00:29, 17.63it/s]

more-to-come:

class:

stderr

49%|████▉ | 490/1000 [00:28&lt;00:28, 17.64it/s]

</pre>

49%|████▉ | 490/1000 [00:28<00:28, 17.64it/s]

end{sphinxVerbatim}

49%|████▉ | 490/1000 [00:28<00:28, 17.64it/s]

more-to-come:

class:

stderr

49%|████▉ | 492/1000 [00:28&lt;00:29, 17.17it/s]

</pre>

49%|████▉ | 492/1000 [00:28<00:29, 17.17it/s]

end{sphinxVerbatim}

49%|████▉ | 492/1000 [00:28<00:29, 17.17it/s]

more-to-come:

class:

stderr

49%|████▉ | 494/1000 [00:28&lt;00:29, 17.33it/s]

</pre>

49%|████▉ | 494/1000 [00:28<00:29, 17.33it/s]

end{sphinxVerbatim}

49%|████▉ | 494/1000 [00:28<00:29, 17.33it/s]

more-to-come:

class:

stderr

50%|████▉ | 496/1000 [00:28&lt;00:29, 17.26it/s]

</pre>

50%|████▉ | 496/1000 [00:28<00:29, 17.26it/s]

end{sphinxVerbatim}

50%|████▉ | 496/1000 [00:28<00:29, 17.26it/s]

more-to-come:

class:

stderr

50%|████▉ | 498/1000 [00:28&lt;00:28, 17.38it/s]

</pre>

50%|████▉ | 498/1000 [00:28<00:28, 17.38it/s]

end{sphinxVerbatim}

50%|████▉ | 498/1000 [00:28<00:28, 17.38it/s]

more-to-come:

class:

stderr

50%|█████ | 500/1000 [00:28&lt;00:28, 17.53it/s]

</pre>

50%|█████ | 500/1000 [00:28<00:28, 17.53it/s]

end{sphinxVerbatim}

50%|█████ | 500/1000 [00:28<00:28, 17.53it/s]

more-to-come:

class:

stderr

50%|█████ | 502/1000 [00:28&lt;00:28, 17.53it/s]

</pre>

50%|█████ | 502/1000 [00:28<00:28, 17.53it/s]

end{sphinxVerbatim}

50%|█████ | 502/1000 [00:28<00:28, 17.53it/s]

more-to-come:

class:

stderr

50%|█████ | 504/1000 [00:28&lt;00:28, 17.46it/s]

</pre>

50%|█████ | 504/1000 [00:28<00:28, 17.46it/s]

end{sphinxVerbatim}

50%|█████ | 504/1000 [00:28<00:28, 17.46it/s]

more-to-come:

class:

stderr

51%|█████ | 506/1000 [00:29&lt;00:28, 17.54it/s]

</pre>

51%|█████ | 506/1000 [00:29<00:28, 17.54it/s]

end{sphinxVerbatim}

51%|█████ | 506/1000 [00:29<00:28, 17.54it/s]

more-to-come:

class:

stderr

51%|█████ | 508/1000 [00:29&lt;00:27, 17.60it/s]

</pre>

51%|█████ | 508/1000 [00:29<00:27, 17.60it/s]

end{sphinxVerbatim}

51%|█████ | 508/1000 [00:29<00:27, 17.60it/s]

more-to-come:

class:

stderr

51%|█████ | 510/1000 [00:29&lt;00:27, 17.59it/s]

</pre>

51%|█████ | 510/1000 [00:29<00:27, 17.59it/s]

end{sphinxVerbatim}

51%|█████ | 510/1000 [00:29<00:27, 17.59it/s]

more-to-come:

class:

stderr

51%|█████ | 512/1000 [00:29&lt;00:27, 17.62it/s]

</pre>

51%|█████ | 512/1000 [00:29<00:27, 17.62it/s]

end{sphinxVerbatim}

51%|█████ | 512/1000 [00:29<00:27, 17.62it/s]

more-to-come:

class:

stderr

51%|█████▏ | 514/1000 [00:29&lt;00:27, 17.64it/s]

</pre>

51%|█████▏ | 514/1000 [00:29<00:27, 17.64it/s]

end{sphinxVerbatim}

51%|█████▏ | 514/1000 [00:29<00:27, 17.64it/s]

more-to-come:

class:

stderr

52%|█████▏ | 516/1000 [00:29&lt;00:27, 17.67it/s]

</pre>

52%|█████▏ | 516/1000 [00:29<00:27, 17.67it/s]

end{sphinxVerbatim}

52%|█████▏ | 516/1000 [00:29<00:27, 17.67it/s]

more-to-come:

class:

stderr

52%|█████▏ | 518/1000 [00:29&lt;00:27, 17.70it/s]

</pre>

52%|█████▏ | 518/1000 [00:29<00:27, 17.70it/s]

end{sphinxVerbatim}

52%|█████▏ | 518/1000 [00:29<00:27, 17.70it/s]

more-to-come:

class:

stderr

52%|█████▏ | 520/1000 [00:29&lt;00:27, 17.68it/s]

</pre>

52%|█████▏ | 520/1000 [00:29<00:27, 17.68it/s]

end{sphinxVerbatim}

52%|█████▏ | 520/1000 [00:29<00:27, 17.68it/s]

more-to-come:

class:

stderr

52%|█████▏ | 522/1000 [00:29&lt;00:27, 17.66it/s]

</pre>

52%|█████▏ | 522/1000 [00:29<00:27, 17.66it/s]

end{sphinxVerbatim}

52%|█████▏ | 522/1000 [00:29<00:27, 17.66it/s]

more-to-come:

class:

stderr

52%|█████▏ | 524/1000 [00:30&lt;00:27, 17.47it/s]

</pre>

52%|█████▏ | 524/1000 [00:30<00:27, 17.47it/s]

end{sphinxVerbatim}

52%|█████▏ | 524/1000 [00:30<00:27, 17.47it/s]

more-to-come:

class:

stderr

53%|█████▎ | 526/1000 [00:30&lt;00:27, 17.55it/s]

</pre>

53%|█████▎ | 526/1000 [00:30<00:27, 17.55it/s]

end{sphinxVerbatim}

53%|█████▎ | 526/1000 [00:30<00:27, 17.55it/s]

more-to-come:

class:

stderr

53%|█████▎ | 528/1000 [00:30&lt;00:26, 17.60it/s]

</pre>

53%|█████▎ | 528/1000 [00:30<00:26, 17.60it/s]

end{sphinxVerbatim}

53%|█████▎ | 528/1000 [00:30<00:26, 17.60it/s]

more-to-come:

class:

stderr

53%|█████▎ | 530/1000 [00:30&lt;00:26, 17.56it/s]

</pre>

53%|█████▎ | 530/1000 [00:30<00:26, 17.56it/s]

end{sphinxVerbatim}

53%|█████▎ | 530/1000 [00:30<00:26, 17.56it/s]

more-to-come:

class:

stderr

53%|█████▎ | 532/1000 [00:30&lt;00:27, 17.33it/s]

</pre>

53%|█████▎ | 532/1000 [00:30<00:27, 17.33it/s]

end{sphinxVerbatim}

53%|█████▎ | 532/1000 [00:30<00:27, 17.33it/s]

more-to-come:

class:

stderr

53%|█████▎ | 534/1000 [00:30&lt;00:26, 17.35it/s]

</pre>

53%|█████▎ | 534/1000 [00:30<00:26, 17.35it/s]

end{sphinxVerbatim}

53%|█████▎ | 534/1000 [00:30<00:26, 17.35it/s]

more-to-come:

class:

stderr

54%|█████▎ | 536/1000 [00:30&lt;00:26, 17.47it/s]

</pre>

54%|█████▎ | 536/1000 [00:30<00:26, 17.47it/s]

end{sphinxVerbatim}

54%|█████▎ | 536/1000 [00:30<00:26, 17.47it/s]

more-to-come:

class:

stderr

54%|█████▍ | 538/1000 [00:30&lt;00:26, 17.41it/s]

</pre>

54%|█████▍ | 538/1000 [00:30<00:26, 17.41it/s]

end{sphinxVerbatim}

54%|█████▍ | 538/1000 [00:30<00:26, 17.41it/s]

more-to-come:

class:

stderr

54%|█████▍ | 540/1000 [00:30&lt;00:26, 17.41it/s]

</pre>

54%|█████▍ | 540/1000 [00:30<00:26, 17.41it/s]

end{sphinxVerbatim}

54%|█████▍ | 540/1000 [00:30<00:26, 17.41it/s]

more-to-come:

class:

stderr

54%|█████▍ | 542/1000 [00:31&lt;00:26, 17.51it/s]

</pre>

54%|█████▍ | 542/1000 [00:31<00:26, 17.51it/s]

end{sphinxVerbatim}

54%|█████▍ | 542/1000 [00:31<00:26, 17.51it/s]

more-to-come:

class:

stderr

54%|█████▍ | 544/1000 [00:31&lt;00:25, 17.59it/s]

</pre>

54%|█████▍ | 544/1000 [00:31<00:25, 17.59it/s]

end{sphinxVerbatim}

54%|█████▍ | 544/1000 [00:31<00:25, 17.59it/s]

more-to-come:

class:

stderr

55%|█████▍ | 546/1000 [00:31&lt;00:25, 17.64it/s]

</pre>

55%|█████▍ | 546/1000 [00:31<00:25, 17.64it/s]

end{sphinxVerbatim}

55%|█████▍ | 546/1000 [00:31<00:25, 17.64it/s]

more-to-come:

class:

stderr

55%|█████▍ | 548/1000 [00:31&lt;00:25, 17.69it/s]

</pre>

55%|█████▍ | 548/1000 [00:31<00:25, 17.69it/s]

end{sphinxVerbatim}

55%|█████▍ | 548/1000 [00:31<00:25, 17.69it/s]

more-to-come:

class:

stderr

55%|█████▌ | 550/1000 [00:31&lt;00:25, 17.70it/s]

</pre>

55%|█████▌ | 550/1000 [00:31<00:25, 17.70it/s]

end{sphinxVerbatim}

55%|█████▌ | 550/1000 [00:31<00:25, 17.70it/s]

more-to-come:

class:

stderr

55%|█████▌ | 552/1000 [00:31&lt;00:25, 17.68it/s]

</pre>

55%|█████▌ | 552/1000 [00:31<00:25, 17.68it/s]

end{sphinxVerbatim}

55%|█████▌ | 552/1000 [00:31<00:25, 17.68it/s]

more-to-come:

class:

stderr

55%|█████▌ | 554/1000 [00:31&lt;00:25, 17.66it/s]

</pre>

55%|█████▌ | 554/1000 [00:31<00:25, 17.66it/s]

end{sphinxVerbatim}

55%|█████▌ | 554/1000 [00:31<00:25, 17.66it/s]

more-to-come:

class:

stderr

56%|█████▌ | 556/1000 [00:31&lt;00:25, 17.67it/s]

</pre>

56%|█████▌ | 556/1000 [00:31<00:25, 17.67it/s]

end{sphinxVerbatim}

56%|█████▌ | 556/1000 [00:31<00:25, 17.67it/s]

more-to-come:

class:

stderr

56%|█████▌ | 558/1000 [00:31&lt;00:25, 17.62it/s]

</pre>

56%|█████▌ | 558/1000 [00:31<00:25, 17.62it/s]

end{sphinxVerbatim}

56%|█████▌ | 558/1000 [00:31<00:25, 17.62it/s]

more-to-come:

class:

stderr

56%|█████▌ | 560/1000 [00:32&lt;00:25, 17.60it/s]

</pre>

56%|█████▌ | 560/1000 [00:32<00:25, 17.60it/s]

end{sphinxVerbatim}

56%|█████▌ | 560/1000 [00:32<00:25, 17.60it/s]

more-to-come:

class:

stderr

56%|█████▌ | 562/1000 [00:32&lt;00:24, 17.63it/s]

</pre>

56%|█████▌ | 562/1000 [00:32<00:24, 17.63it/s]

end{sphinxVerbatim}

56%|█████▌ | 562/1000 [00:32<00:24, 17.63it/s]

more-to-come:

class:

stderr

56%|█████▋ | 564/1000 [00:32&lt;00:24, 17.66it/s]

</pre>

56%|█████▋ | 564/1000 [00:32<00:24, 17.66it/s]

end{sphinxVerbatim}

56%|█████▋ | 564/1000 [00:32<00:24, 17.66it/s]

more-to-come:

class:

stderr

57%|█████▋ | 566/1000 [00:32&lt;00:24, 17.46it/s]

</pre>

57%|█████▋ | 566/1000 [00:32<00:24, 17.46it/s]

end{sphinxVerbatim}

57%|█████▋ | 566/1000 [00:32<00:24, 17.46it/s]

more-to-come:

class:

stderr

57%|█████▋ | 568/1000 [00:32&lt;00:24, 17.50it/s]

</pre>

57%|█████▋ | 568/1000 [00:32<00:24, 17.50it/s]

end{sphinxVerbatim}

57%|█████▋ | 568/1000 [00:32<00:24, 17.50it/s]

more-to-come:

class:

stderr

57%|█████▋ | 570/1000 [00:32&lt;00:24, 17.59it/s]

</pre>

57%|█████▋ | 570/1000 [00:32<00:24, 17.59it/s]

end{sphinxVerbatim}

57%|█████▋ | 570/1000 [00:32<00:24, 17.59it/s]

more-to-come:

class:

stderr

57%|█████▋ | 572/1000 [00:32&lt;00:24, 17.59it/s]

</pre>

57%|█████▋ | 572/1000 [00:32<00:24, 17.59it/s]

end{sphinxVerbatim}

57%|█████▋ | 572/1000 [00:32<00:24, 17.59it/s]

more-to-come:

class:

stderr

57%|█████▋ | 574/1000 [00:32&lt;00:24, 17.49it/s]

</pre>

57%|█████▋ | 574/1000 [00:32<00:24, 17.49it/s]

end{sphinxVerbatim}

57%|█████▋ | 574/1000 [00:32<00:24, 17.49it/s]

more-to-come:

class:

stderr

58%|█████▊ | 576/1000 [00:33&lt;00:24, 17.55it/s]

</pre>

58%|█████▊ | 576/1000 [00:33<00:24, 17.55it/s]

end{sphinxVerbatim}

58%|█████▊ | 576/1000 [00:33<00:24, 17.55it/s]

more-to-come:

class:

stderr

58%|█████▊ | 578/1000 [00:33&lt;00:23, 17.61it/s]

</pre>

58%|█████▊ | 578/1000 [00:33<00:23, 17.61it/s]

end{sphinxVerbatim}

58%|█████▊ | 578/1000 [00:33<00:23, 17.61it/s]

more-to-come:

class:

stderr

58%|█████▊ | 580/1000 [00:33&lt;00:23, 17.65it/s]

</pre>

58%|█████▊ | 580/1000 [00:33<00:23, 17.65it/s]

end{sphinxVerbatim}

58%|█████▊ | 580/1000 [00:33<00:23, 17.65it/s]

more-to-come:

class:

stderr

58%|█████▊ | 582/1000 [00:33&lt;00:23, 17.70it/s]

</pre>

58%|█████▊ | 582/1000 [00:33<00:23, 17.70it/s]

end{sphinxVerbatim}

58%|█████▊ | 582/1000 [00:33<00:23, 17.70it/s]

more-to-come:

class:

stderr

58%|█████▊ | 584/1000 [00:33&lt;00:23, 17.73it/s]

</pre>

58%|█████▊ | 584/1000 [00:33<00:23, 17.73it/s]

end{sphinxVerbatim}

58%|█████▊ | 584/1000 [00:33<00:23, 17.73it/s]

more-to-come:

class:

stderr

59%|█████▊ | 586/1000 [00:33&lt;00:23, 17.74it/s]

</pre>

59%|█████▊ | 586/1000 [00:33<00:23, 17.74it/s]

end{sphinxVerbatim}

59%|█████▊ | 586/1000 [00:33<00:23, 17.74it/s]

more-to-come:

class:

stderr

59%|█████▉ | 588/1000 [00:33&lt;00:23, 17.75it/s]

</pre>

59%|█████▉ | 588/1000 [00:33<00:23, 17.75it/s]

end{sphinxVerbatim}

59%|█████▉ | 588/1000 [00:33<00:23, 17.75it/s]

more-to-come:

class:

stderr

59%|█████▉ | 590/1000 [00:33&lt;00:23, 17.74it/s]

</pre>

59%|█████▉ | 590/1000 [00:33<00:23, 17.74it/s]

end{sphinxVerbatim}

59%|█████▉ | 590/1000 [00:33<00:23, 17.74it/s]

more-to-come:

class:

stderr

59%|█████▉ | 592/1000 [00:33&lt;00:22, 17.74it/s]

</pre>

59%|█████▉ | 592/1000 [00:33<00:22, 17.74it/s]

end{sphinxVerbatim}

59%|█████▉ | 592/1000 [00:33<00:22, 17.74it/s]

more-to-come:

class:

stderr

59%|█████▉ | 594/1000 [00:34&lt;00:22, 17.67it/s]

</pre>

59%|█████▉ | 594/1000 [00:34<00:22, 17.67it/s]

end{sphinxVerbatim}

59%|█████▉ | 594/1000 [00:34<00:22, 17.67it/s]

more-to-come:

class:

stderr

60%|█████▉ | 596/1000 [00:34&lt;00:22, 17.68it/s]

</pre>

60%|█████▉ | 596/1000 [00:34<00:22, 17.68it/s]

end{sphinxVerbatim}

60%|█████▉ | 596/1000 [00:34<00:22, 17.68it/s]

more-to-come:

class:

stderr

60%|█████▉ | 598/1000 [00:34&lt;00:22, 17.70it/s]

</pre>

60%|█████▉ | 598/1000 [00:34<00:22, 17.70it/s]

end{sphinxVerbatim}

60%|█████▉ | 598/1000 [00:34<00:22, 17.70it/s]

more-to-come:

class:

stderr

60%|██████ | 600/1000 [00:34&lt;00:22, 17.72it/s]

</pre>

60%|██████ | 600/1000 [00:34<00:22, 17.72it/s]

end{sphinxVerbatim}

60%|██████ | 600/1000 [00:34<00:22, 17.72it/s]

more-to-come:

class:

stderr

60%|██████ | 602/1000 [00:34&lt;00:22, 17.55it/s]

</pre>

60%|██████ | 602/1000 [00:34<00:22, 17.55it/s]

end{sphinxVerbatim}

60%|██████ | 602/1000 [00:34<00:22, 17.55it/s]

more-to-come:

class:

stderr

60%|██████ | 604/1000 [00:34&lt;00:22, 17.48it/s]

</pre>

60%|██████ | 604/1000 [00:34<00:22, 17.48it/s]

end{sphinxVerbatim}

60%|██████ | 604/1000 [00:34<00:22, 17.48it/s]

more-to-come:

class:

stderr

61%|██████ | 606/1000 [00:34&lt;00:22, 17.58it/s]

</pre>

61%|██████ | 606/1000 [00:34<00:22, 17.58it/s]

end{sphinxVerbatim}

61%|██████ | 606/1000 [00:34<00:22, 17.58it/s]

more-to-come:

class:

stderr

61%|██████ | 608/1000 [00:34&lt;00:22, 17.54it/s]

</pre>

61%|██████ | 608/1000 [00:34<00:22, 17.54it/s]

end{sphinxVerbatim}

61%|██████ | 608/1000 [00:34<00:22, 17.54it/s]

more-to-come:

class:

stderr

61%|██████ | 610/1000 [00:34&lt;00:22, 17.45it/s]

</pre>

61%|██████ | 610/1000 [00:34<00:22, 17.45it/s]

end{sphinxVerbatim}

61%|██████ | 610/1000 [00:34<00:22, 17.45it/s]

more-to-come:

class:

stderr

61%|██████ | 612/1000 [00:35&lt;00:22, 17.51it/s]

</pre>

61%|██████ | 612/1000 [00:35<00:22, 17.51it/s]

end{sphinxVerbatim}

61%|██████ | 612/1000 [00:35<00:22, 17.51it/s]

more-to-come:

class:

stderr

61%|██████▏ | 614/1000 [00:35&lt;00:21, 17.59it/s]

</pre>

61%|██████▏ | 614/1000 [00:35<00:21, 17.59it/s]

end{sphinxVerbatim}

61%|██████▏ | 614/1000 [00:35<00:21, 17.59it/s]

more-to-come:

class:

stderr

62%|██████▏ | 616/1000 [00:35&lt;00:21, 17.66it/s]

</pre>

62%|██████▏ | 616/1000 [00:35<00:21, 17.66it/s]

end{sphinxVerbatim}

62%|██████▏ | 616/1000 [00:35<00:21, 17.66it/s]

more-to-come:

class:

stderr

62%|██████▏ | 618/1000 [00:35&lt;00:21, 17.68it/s]

</pre>

62%|██████▏ | 618/1000 [00:35<00:21, 17.68it/s]

end{sphinxVerbatim}

62%|██████▏ | 618/1000 [00:35<00:21, 17.68it/s]

more-to-come:

class:

stderr

62%|██████▏ | 620/1000 [00:35&lt;00:21, 17.68it/s]

</pre>

62%|██████▏ | 620/1000 [00:35<00:21, 17.68it/s]

end{sphinxVerbatim}

62%|██████▏ | 620/1000 [00:35<00:21, 17.68it/s]

more-to-come:

class:

stderr

62%|██████▏ | 622/1000 [00:35&lt;00:21, 17.67it/s]

</pre>

62%|██████▏ | 622/1000 [00:35<00:21, 17.67it/s]

end{sphinxVerbatim}

62%|██████▏ | 622/1000 [00:35<00:21, 17.67it/s]

more-to-come:

class:

stderr

62%|██████▏ | 624/1000 [00:35&lt;00:21, 17.67it/s]

</pre>

62%|██████▏ | 624/1000 [00:35<00:21, 17.67it/s]

end{sphinxVerbatim}

62%|██████▏ | 624/1000 [00:35<00:21, 17.67it/s]

more-to-come:

class:

stderr

63%|██████▎ | 626/1000 [00:35&lt;00:21, 17.68it/s]

</pre>

63%|██████▎ | 626/1000 [00:35<00:21, 17.68it/s]

end{sphinxVerbatim}

63%|██████▎ | 626/1000 [00:35<00:21, 17.68it/s]

more-to-come:

class:

stderr

63%|██████▎ | 628/1000 [00:35&lt;00:21, 17.59it/s]

</pre>

63%|██████▎ | 628/1000 [00:35<00:21, 17.59it/s]

end{sphinxVerbatim}

63%|██████▎ | 628/1000 [00:35<00:21, 17.59it/s]

more-to-come:

class:

stderr

63%|██████▎ | 630/1000 [00:36&lt;00:21, 17.52it/s]

</pre>

63%|██████▎ | 630/1000 [00:36<00:21, 17.52it/s]

end{sphinxVerbatim}

63%|██████▎ | 630/1000 [00:36<00:21, 17.52it/s]

more-to-come:

class:

stderr

63%|██████▎ | 632/1000 [00:36&lt;00:21, 17.49it/s]

</pre>

63%|██████▎ | 632/1000 [00:36<00:21, 17.49it/s]

end{sphinxVerbatim}

63%|██████▎ | 632/1000 [00:36<00:21, 17.49it/s]

more-to-come:

class:

stderr

63%|██████▎ | 634/1000 [00:36&lt;00:20, 17.52it/s]

</pre>

63%|██████▎ | 634/1000 [00:36<00:20, 17.52it/s]

end{sphinxVerbatim}

63%|██████▎ | 634/1000 [00:36<00:20, 17.52it/s]

more-to-come:

class:

stderr

64%|██████▎ | 636/1000 [00:36&lt;00:20, 17.47it/s]

</pre>

64%|██████▎ | 636/1000 [00:36<00:20, 17.47it/s]

end{sphinxVerbatim}

64%|██████▎ | 636/1000 [00:36<00:20, 17.47it/s]

more-to-come:

class:

stderr

64%|██████▍ | 638/1000 [00:36&lt;00:20, 17.31it/s]

</pre>

64%|██████▍ | 638/1000 [00:36<00:20, 17.31it/s]

end{sphinxVerbatim}

64%|██████▍ | 638/1000 [00:36<00:20, 17.31it/s]

more-to-come:

class:

stderr

64%|██████▍ | 640/1000 [00:36&lt;00:20, 17.29it/s]

</pre>

64%|██████▍ | 640/1000 [00:36<00:20, 17.29it/s]

end{sphinxVerbatim}

64%|██████▍ | 640/1000 [00:36<00:20, 17.29it/s]

more-to-come:

class:

stderr

64%|██████▍ | 642/1000 [00:36&lt;00:20, 17.39it/s]

</pre>

64%|██████▍ | 642/1000 [00:36<00:20, 17.39it/s]

end{sphinxVerbatim}

64%|██████▍ | 642/1000 [00:36<00:20, 17.39it/s]

more-to-come:

class:

stderr

64%|██████▍ | 644/1000 [00:36&lt;00:20, 17.33it/s]

</pre>

64%|██████▍ | 644/1000 [00:36<00:20, 17.33it/s]

end{sphinxVerbatim}

64%|██████▍ | 644/1000 [00:36<00:20, 17.33it/s]

more-to-come:

class:

stderr

65%|██████▍ | 646/1000 [00:37&lt;00:20, 17.38it/s]

</pre>

65%|██████▍ | 646/1000 [00:37<00:20, 17.38it/s]

end{sphinxVerbatim}

65%|██████▍ | 646/1000 [00:37<00:20, 17.38it/s]

more-to-come:

class:

stderr

65%|██████▍ | 648/1000 [00:37&lt;00:20, 17.47it/s]

</pre>

65%|██████▍ | 648/1000 [00:37<00:20, 17.47it/s]

end{sphinxVerbatim}

65%|██████▍ | 648/1000 [00:37<00:20, 17.47it/s]

more-to-come:

class:

stderr

65%|██████▌ | 650/1000 [00:37&lt;00:19, 17.55it/s]

</pre>

65%|██████▌ | 650/1000 [00:37<00:19, 17.55it/s]

end{sphinxVerbatim}

65%|██████▌ | 650/1000 [00:37<00:19, 17.55it/s]

more-to-come:

class:

stderr

65%|██████▌ | 652/1000 [00:37&lt;00:19, 17.60it/s]

</pre>

65%|██████▌ | 652/1000 [00:37<00:19, 17.60it/s]

end{sphinxVerbatim}

65%|██████▌ | 652/1000 [00:37<00:19, 17.60it/s]

more-to-come:

class:

stderr

65%|██████▌ | 654/1000 [00:37&lt;00:19, 17.64it/s]

</pre>

65%|██████▌ | 654/1000 [00:37<00:19, 17.64it/s]

end{sphinxVerbatim}

65%|██████▌ | 654/1000 [00:37<00:19, 17.64it/s]

more-to-come:

class:

stderr

66%|██████▌ | 656/1000 [00:37&lt;00:19, 17.65it/s]

</pre>

66%|██████▌ | 656/1000 [00:37<00:19, 17.65it/s]

end{sphinxVerbatim}

66%|██████▌ | 656/1000 [00:37<00:19, 17.65it/s]

more-to-come:

class:

stderr

66%|██████▌ | 658/1000 [00:37&lt;00:19, 17.68it/s]

</pre>

66%|██████▌ | 658/1000 [00:37<00:19, 17.68it/s]

end{sphinxVerbatim}

66%|██████▌ | 658/1000 [00:37<00:19, 17.68it/s]

more-to-come:

class:

stderr

66%|██████▌ | 660/1000 [00:37&lt;00:19, 17.70it/s]

</pre>

66%|██████▌ | 660/1000 [00:37<00:19, 17.70it/s]

end{sphinxVerbatim}

66%|██████▌ | 660/1000 [00:37<00:19, 17.70it/s]

more-to-come:

class:

stderr

66%|██████▌ | 662/1000 [00:37&lt;00:19, 17.71it/s]

</pre>

66%|██████▌ | 662/1000 [00:37<00:19, 17.71it/s]

end{sphinxVerbatim}

66%|██████▌ | 662/1000 [00:37<00:19, 17.71it/s]

more-to-come:

class:

stderr

66%|██████▋ | 664/1000 [00:38&lt;00:19, 17.56it/s]

</pre>

66%|██████▋ | 664/1000 [00:38<00:19, 17.56it/s]

end{sphinxVerbatim}

66%|██████▋ | 664/1000 [00:38<00:19, 17.56it/s]

more-to-come:

class:

stderr

67%|██████▋ | 666/1000 [00:38&lt;00:19, 17.54it/s]

</pre>

67%|██████▋ | 666/1000 [00:38<00:19, 17.54it/s]

end{sphinxVerbatim}

67%|██████▋ | 666/1000 [00:38<00:19, 17.54it/s]

more-to-come:

class:

stderr

67%|██████▋ | 668/1000 [00:38&lt;00:18, 17.58it/s]

</pre>

67%|██████▋ | 668/1000 [00:38<00:18, 17.58it/s]

end{sphinxVerbatim}

67%|██████▋ | 668/1000 [00:38<00:18, 17.58it/s]

more-to-come:

class:

stderr

67%|██████▋ | 670/1000 [00:38&lt;00:18, 17.62it/s]

</pre>

67%|██████▋ | 670/1000 [00:38<00:18, 17.62it/s]

end{sphinxVerbatim}

67%|██████▋ | 670/1000 [00:38<00:18, 17.62it/s]

more-to-come:

class:

stderr

67%|██████▋ | 672/1000 [00:38&lt;00:18, 17.50it/s]

</pre>

67%|██████▋ | 672/1000 [00:38<00:18, 17.50it/s]

end{sphinxVerbatim}

67%|██████▋ | 672/1000 [00:38<00:18, 17.50it/s]

more-to-come:

class:

stderr

67%|██████▋ | 674/1000 [00:38&lt;00:18, 17.51it/s]

</pre>

67%|██████▋ | 674/1000 [00:38<00:18, 17.51it/s]

end{sphinxVerbatim}

67%|██████▋ | 674/1000 [00:38<00:18, 17.51it/s]

more-to-come:

class:

stderr

68%|██████▊ | 676/1000 [00:38&lt;00:18, 17.57it/s]

</pre>

68%|██████▊ | 676/1000 [00:38<00:18, 17.57it/s]

end{sphinxVerbatim}

68%|██████▊ | 676/1000 [00:38<00:18, 17.57it/s]

more-to-come:

class:

stderr

68%|██████▊ | 678/1000 [00:38&lt;00:18, 17.52it/s]

</pre>

68%|██████▊ | 678/1000 [00:38<00:18, 17.52it/s]

end{sphinxVerbatim}

68%|██████▊ | 678/1000 [00:38<00:18, 17.52it/s]

more-to-come:

class:

stderr

68%|██████▊ | 680/1000 [00:38&lt;00:18, 17.42it/s]

</pre>

68%|██████▊ | 680/1000 [00:38<00:18, 17.42it/s]

end{sphinxVerbatim}

68%|██████▊ | 680/1000 [00:38<00:18, 17.42it/s]

more-to-come:

class:

stderr

68%|██████▊ | 682/1000 [00:39&lt;00:18, 17.48it/s]

</pre>

68%|██████▊ | 682/1000 [00:39<00:18, 17.48it/s]

end{sphinxVerbatim}

68%|██████▊ | 682/1000 [00:39<00:18, 17.48it/s]

more-to-come:

class:

stderr

68%|██████▊ | 684/1000 [00:39&lt;00:18, 17.53it/s]

</pre>

68%|██████▊ | 684/1000 [00:39<00:18, 17.53it/s]

end{sphinxVerbatim}

68%|██████▊ | 684/1000 [00:39<00:18, 17.53it/s]

more-to-come:

class:

stderr

69%|██████▊ | 686/1000 [00:39&lt;00:17, 17.54it/s]

</pre>

69%|██████▊ | 686/1000 [00:39<00:17, 17.54it/s]

end{sphinxVerbatim}

69%|██████▊ | 686/1000 [00:39<00:17, 17.54it/s]

more-to-come:

class:

stderr

69%|██████▉ | 688/1000 [00:39&lt;00:17, 17.56it/s]

</pre>

69%|██████▉ | 688/1000 [00:39<00:17, 17.56it/s]

end{sphinxVerbatim}

69%|██████▉ | 688/1000 [00:39<00:17, 17.56it/s]

more-to-come:

class:

stderr

69%|██████▉ | 690/1000 [00:39&lt;00:17, 17.57it/s]

</pre>

69%|██████▉ | 690/1000 [00:39<00:17, 17.57it/s]

end{sphinxVerbatim}

69%|██████▉ | 690/1000 [00:39<00:17, 17.57it/s]

more-to-come:

class:

stderr

69%|██████▉ | 692/1000 [00:39&lt;00:17, 17.56it/s]

</pre>

69%|██████▉ | 692/1000 [00:39<00:17, 17.56it/s]

end{sphinxVerbatim}

69%|██████▉ | 692/1000 [00:39<00:17, 17.56it/s]

more-to-come:

class:

stderr

69%|██████▉ | 694/1000 [00:39&lt;00:17, 17.57it/s]

</pre>

69%|██████▉ | 694/1000 [00:39<00:17, 17.57it/s]

end{sphinxVerbatim}

69%|██████▉ | 694/1000 [00:39<00:17, 17.57it/s]

more-to-come:

class:

stderr

70%|██████▉ | 696/1000 [00:39&lt;00:17, 17.55it/s]

</pre>

70%|██████▉ | 696/1000 [00:39<00:17, 17.55it/s]

end{sphinxVerbatim}

70%|██████▉ | 696/1000 [00:39<00:17, 17.55it/s]

more-to-come:

class:

stderr

70%|██████▉ | 698/1000 [00:39&lt;00:17, 17.54it/s]

</pre>

70%|██████▉ | 698/1000 [00:39<00:17, 17.54it/s]

end{sphinxVerbatim}

70%|██████▉ | 698/1000 [00:39<00:17, 17.54it/s]

more-to-come:

class:

stderr

70%|███████ | 700/1000 [00:40&lt;00:17, 17.43it/s]

</pre>

70%|███████ | 700/1000 [00:40<00:17, 17.43it/s]

end{sphinxVerbatim}

70%|███████ | 700/1000 [00:40<00:17, 17.43it/s]

more-to-come:

class:

stderr

70%|███████ | 702/1000 [00:40&lt;00:17, 17.52it/s]

</pre>

70%|███████ | 702/1000 [00:40<00:17, 17.52it/s]

end{sphinxVerbatim}

70%|███████ | 702/1000 [00:40<00:17, 17.52it/s]

more-to-come:

class:

stderr

70%|███████ | 704/1000 [00:40&lt;00:17, 17.20it/s]

</pre>

70%|███████ | 704/1000 [00:40<00:17, 17.20it/s]

end{sphinxVerbatim}

70%|███████ | 704/1000 [00:40<00:17, 17.20it/s]

more-to-come:

class:

stderr

71%|███████ | 706/1000 [00:40&lt;00:16, 17.34it/s]

</pre>

71%|███████ | 706/1000 [00:40<00:16, 17.34it/s]

end{sphinxVerbatim}

71%|███████ | 706/1000 [00:40<00:16, 17.34it/s]

more-to-come:

class:

stderr

71%|███████ | 708/1000 [00:40&lt;00:16, 17.28it/s]

</pre>

71%|███████ | 708/1000 [00:40<00:16, 17.28it/s]

end{sphinxVerbatim}

71%|███████ | 708/1000 [00:40<00:16, 17.28it/s]

more-to-come:

class:

stderr

71%|███████ | 710/1000 [00:40&lt;00:16, 17.38it/s]

</pre>

71%|███████ | 710/1000 [00:40<00:16, 17.38it/s]

end{sphinxVerbatim}

71%|███████ | 710/1000 [00:40<00:16, 17.38it/s]

more-to-come:

class:

stderr

71%|███████ | 712/1000 [00:40&lt;00:16, 17.47it/s]

</pre>

71%|███████ | 712/1000 [00:40<00:16, 17.47it/s]

end{sphinxVerbatim}

71%|███████ | 712/1000 [00:40<00:16, 17.47it/s]

more-to-come:

class:

stderr

71%|███████▏ | 714/1000 [00:40&lt;00:16, 17.46it/s]

</pre>

71%|███████▏ | 714/1000 [00:40<00:16, 17.46it/s]

end{sphinxVerbatim}

71%|███████▏ | 714/1000 [00:40<00:16, 17.46it/s]

more-to-come:

class:

stderr

72%|███████▏ | 716/1000 [00:41&lt;00:16, 17.46it/s]

</pre>

72%|███████▏ | 716/1000 [00:41<00:16, 17.46it/s]

end{sphinxVerbatim}

72%|███████▏ | 716/1000 [00:41<00:16, 17.46it/s]

more-to-come:

class:

stderr

72%|███████▏ | 718/1000 [00:41&lt;00:16, 17.54it/s]

</pre>

72%|███████▏ | 718/1000 [00:41<00:16, 17.54it/s]

end{sphinxVerbatim}

72%|███████▏ | 718/1000 [00:41<00:16, 17.54it/s]

more-to-come:

class:

stderr

72%|███████▏ | 720/1000 [00:41&lt;00:15, 17.60it/s]

</pre>

72%|███████▏ | 720/1000 [00:41<00:15, 17.60it/s]

end{sphinxVerbatim}

72%|███████▏ | 720/1000 [00:41<00:15, 17.60it/s]

more-to-come:

class:

stderr

72%|███████▏ | 722/1000 [00:41&lt;00:15, 17.63it/s]

</pre>

72%|███████▏ | 722/1000 [00:41<00:15, 17.63it/s]

end{sphinxVerbatim}

72%|███████▏ | 722/1000 [00:41<00:15, 17.63it/s]

more-to-come:

class:

stderr

72%|███████▏ | 724/1000 [00:41&lt;00:15, 17.66it/s]

</pre>

72%|███████▏ | 724/1000 [00:41<00:15, 17.66it/s]

end{sphinxVerbatim}

72%|███████▏ | 724/1000 [00:41<00:15, 17.66it/s]

more-to-come:

class:

stderr

73%|███████▎ | 726/1000 [00:41&lt;00:15, 17.69it/s]

</pre>

73%|███████▎ | 726/1000 [00:41<00:15, 17.69it/s]

end{sphinxVerbatim}

73%|███████▎ | 726/1000 [00:41<00:15, 17.69it/s]

more-to-come:

class:

stderr

73%|███████▎ | 728/1000 [00:41&lt;00:15, 17.71it/s]

</pre>

73%|███████▎ | 728/1000 [00:41<00:15, 17.71it/s]

end{sphinxVerbatim}

73%|███████▎ | 728/1000 [00:41<00:15, 17.71it/s]

more-to-come:

class:

stderr

73%|███████▎ | 730/1000 [00:41&lt;00:15, 17.72it/s]

</pre>

73%|███████▎ | 730/1000 [00:41<00:15, 17.72it/s]

end{sphinxVerbatim}

73%|███████▎ | 730/1000 [00:41<00:15, 17.72it/s]

more-to-come:

class:

stderr

73%|███████▎ | 732/1000 [00:41&lt;00:15, 17.72it/s]

</pre>

73%|███████▎ | 732/1000 [00:41<00:15, 17.72it/s]

end{sphinxVerbatim}

73%|███████▎ | 732/1000 [00:41<00:15, 17.72it/s]

more-to-come:

class:

stderr

73%|███████▎ | 734/1000 [00:42&lt;00:15, 17.65it/s]

</pre>

73%|███████▎ | 734/1000 [00:42<00:15, 17.65it/s]

end{sphinxVerbatim}

73%|███████▎ | 734/1000 [00:42<00:15, 17.65it/s]

more-to-come:

class:

stderr

74%|███████▎ | 736/1000 [00:42&lt;00:14, 17.61it/s]

</pre>

74%|███████▎ | 736/1000 [00:42<00:14, 17.61it/s]

end{sphinxVerbatim}

74%|███████▎ | 736/1000 [00:42<00:14, 17.61it/s]

more-to-come:

class:

stderr

74%|███████▍ | 738/1000 [00:42&lt;00:14, 17.62it/s]

</pre>

74%|███████▍ | 738/1000 [00:42<00:14, 17.62it/s]

end{sphinxVerbatim}

74%|███████▍ | 738/1000 [00:42<00:14, 17.62it/s]

more-to-come:

class:

stderr

74%|███████▍ | 740/1000 [00:42&lt;00:14, 17.68it/s]

</pre>

74%|███████▍ | 740/1000 [00:42<00:14, 17.68it/s]

end{sphinxVerbatim}

74%|███████▍ | 740/1000 [00:42<00:14, 17.68it/s]

more-to-come:

class:

stderr

74%|███████▍ | 742/1000 [00:42&lt;00:14, 17.52it/s]

</pre>

74%|███████▍ | 742/1000 [00:42<00:14, 17.52it/s]

end{sphinxVerbatim}

74%|███████▍ | 742/1000 [00:42<00:14, 17.52it/s]

more-to-come:

class:

stderr

74%|███████▍ | 744/1000 [00:42&lt;00:14, 17.56it/s]

</pre>

74%|███████▍ | 744/1000 [00:42<00:14, 17.56it/s]

end{sphinxVerbatim}

74%|███████▍ | 744/1000 [00:42<00:14, 17.56it/s]

more-to-come:

class:

stderr

75%|███████▍ | 746/1000 [00:42&lt;00:14, 17.63it/s]

</pre>

75%|███████▍ | 746/1000 [00:42<00:14, 17.63it/s]

end{sphinxVerbatim}

75%|███████▍ | 746/1000 [00:42<00:14, 17.63it/s]

more-to-come:

class:

stderr

75%|███████▍ | 748/1000 [00:42&lt;00:14, 17.63it/s]

</pre>

75%|███████▍ | 748/1000 [00:42<00:14, 17.63it/s]

end{sphinxVerbatim}

75%|███████▍ | 748/1000 [00:42<00:14, 17.63it/s]

more-to-come:

class:

stderr

75%|███████▌ | 750/1000 [00:42&lt;00:14, 17.59it/s]

</pre>

75%|███████▌ | 750/1000 [00:42<00:14, 17.59it/s]

end{sphinxVerbatim}

75%|███████▌ | 750/1000 [00:42<00:14, 17.59it/s]

more-to-come:

class:

stderr

75%|███████▌ | 752/1000 [00:43&lt;00:14, 17.59it/s]

</pre>

75%|███████▌ | 752/1000 [00:43<00:14, 17.59it/s]

end{sphinxVerbatim}

75%|███████▌ | 752/1000 [00:43<00:14, 17.59it/s]

more-to-come:

class:

stderr

75%|███████▌ | 754/1000 [00:43&lt;00:13, 17.65it/s]

</pre>

75%|███████▌ | 754/1000 [00:43<00:13, 17.65it/s]

end{sphinxVerbatim}

75%|███████▌ | 754/1000 [00:43<00:13, 17.65it/s]

more-to-come:

class:

stderr

76%|███████▌ | 756/1000 [00:43&lt;00:13, 17.68it/s]

</pre>

76%|███████▌ | 756/1000 [00:43<00:13, 17.68it/s]

end{sphinxVerbatim}

76%|███████▌ | 756/1000 [00:43<00:13, 17.68it/s]

more-to-come:

class:

stderr

76%|███████▌ | 758/1000 [00:43&lt;00:13, 17.68it/s]

</pre>

76%|███████▌ | 758/1000 [00:43<00:13, 17.68it/s]

end{sphinxVerbatim}

76%|███████▌ | 758/1000 [00:43<00:13, 17.68it/s]

more-to-come:

class:

stderr

76%|███████▌ | 760/1000 [00:43&lt;00:13, 17.68it/s]

</pre>

76%|███████▌ | 760/1000 [00:43<00:13, 17.68it/s]

end{sphinxVerbatim}

76%|███████▌ | 760/1000 [00:43<00:13, 17.68it/s]

more-to-come:

class:

stderr

76%|███████▌ | 762/1000 [00:43&lt;00:13, 17.69it/s]

</pre>

76%|███████▌ | 762/1000 [00:43<00:13, 17.69it/s]

end{sphinxVerbatim}

76%|███████▌ | 762/1000 [00:43<00:13, 17.69it/s]

more-to-come:

class:

stderr

76%|███████▋ | 764/1000 [00:43&lt;00:13, 17.71it/s]

</pre>

76%|███████▋ | 764/1000 [00:43<00:13, 17.71it/s]

end{sphinxVerbatim}

76%|███████▋ | 764/1000 [00:43<00:13, 17.71it/s]

more-to-come:

class:

stderr

77%|███████▋ | 766/1000 [00:43&lt;00:13, 17.71it/s]

</pre>

77%|███████▋ | 766/1000 [00:43<00:13, 17.71it/s]

end{sphinxVerbatim}

77%|███████▋ | 766/1000 [00:43<00:13, 17.71it/s]

more-to-come:

class:

stderr

77%|███████▋ | 768/1000 [00:43&lt;00:13, 17.75it/s]

</pre>

77%|███████▋ | 768/1000 [00:43<00:13, 17.75it/s]

end{sphinxVerbatim}

77%|███████▋ | 768/1000 [00:43<00:13, 17.75it/s]

more-to-come:

class:

stderr

77%|███████▋ | 770/1000 [00:44&lt;00:13, 17.59it/s]

</pre>

77%|███████▋ | 770/1000 [00:44<00:13, 17.59it/s]

end{sphinxVerbatim}

77%|███████▋ | 770/1000 [00:44<00:13, 17.59it/s]

more-to-come:

class:

stderr

77%|███████▋ | 772/1000 [00:44&lt;00:12, 17.64it/s]

</pre>

77%|███████▋ | 772/1000 [00:44<00:12, 17.64it/s]

end{sphinxVerbatim}

77%|███████▋ | 772/1000 [00:44<00:12, 17.64it/s]

more-to-come:

class:

stderr

77%|███████▋ | 774/1000 [00:44&lt;00:12, 17.66it/s]

</pre>

77%|███████▋ | 774/1000 [00:44<00:12, 17.66it/s]

end{sphinxVerbatim}

77%|███████▋ | 774/1000 [00:44<00:12, 17.66it/s]

more-to-come:

class:

stderr

78%|███████▊ | 776/1000 [00:44&lt;00:12, 17.68it/s]

</pre>

78%|███████▊ | 776/1000 [00:44<00:12, 17.68it/s]

end{sphinxVerbatim}

78%|███████▊ | 776/1000 [00:44<00:12, 17.68it/s]

more-to-come:

class:

stderr

78%|███████▊ | 778/1000 [00:44&lt;00:12, 17.43it/s]

</pre>

78%|███████▊ | 778/1000 [00:44<00:12, 17.43it/s]

end{sphinxVerbatim}

78%|███████▊ | 778/1000 [00:44<00:12, 17.43it/s]

more-to-come:

class:

stderr

78%|███████▊ | 780/1000 [00:44&lt;00:12, 17.52it/s]

</pre>

78%|███████▊ | 780/1000 [00:44<00:12, 17.52it/s]

end{sphinxVerbatim}

78%|███████▊ | 780/1000 [00:44<00:12, 17.52it/s]

more-to-come:

class:

stderr

78%|███████▊ | 782/1000 [00:44&lt;00:12, 17.60it/s]

</pre>

78%|███████▊ | 782/1000 [00:44<00:12, 17.60it/s]

end{sphinxVerbatim}

78%|███████▊ | 782/1000 [00:44<00:12, 17.60it/s]

more-to-come:

class:

stderr

78%|███████▊ | 784/1000 [00:44&lt;00:12, 17.61it/s]

</pre>

78%|███████▊ | 784/1000 [00:44<00:12, 17.61it/s]

end{sphinxVerbatim}

78%|███████▊ | 784/1000 [00:44<00:12, 17.61it/s]

more-to-come:

class:

stderr

79%|███████▊ | 786/1000 [00:44&lt;00:12, 17.53it/s]

</pre>

79%|███████▊ | 786/1000 [00:44<00:12, 17.53it/s]

end{sphinxVerbatim}

79%|███████▊ | 786/1000 [00:44<00:12, 17.53it/s]

more-to-come:

class:

stderr

79%|███████▉ | 788/1000 [00:45&lt;00:12, 17.60it/s]

</pre>

79%|███████▉ | 788/1000 [00:45<00:12, 17.60it/s]

end{sphinxVerbatim}

79%|███████▉ | 788/1000 [00:45<00:12, 17.60it/s]

more-to-come:

class:

stderr

79%|███████▉ | 790/1000 [00:45&lt;00:11, 17.66it/s]

</pre>

79%|███████▉ | 790/1000 [00:45<00:11, 17.66it/s]

end{sphinxVerbatim}

79%|███████▉ | 790/1000 [00:45<00:11, 17.66it/s]

more-to-come:

class:

stderr

79%|███████▉ | 792/1000 [00:45&lt;00:11, 17.68it/s]

</pre>

79%|███████▉ | 792/1000 [00:45<00:11, 17.68it/s]

end{sphinxVerbatim}

79%|███████▉ | 792/1000 [00:45<00:11, 17.68it/s]

more-to-come:

class:

stderr

79%|███████▉ | 794/1000 [00:45&lt;00:11, 17.72it/s]

</pre>

79%|███████▉ | 794/1000 [00:45<00:11, 17.72it/s]

end{sphinxVerbatim}

79%|███████▉ | 794/1000 [00:45<00:11, 17.72it/s]

more-to-come:

class:

stderr

80%|███████▉ | 796/1000 [00:45&lt;00:11, 17.72it/s]

</pre>

80%|███████▉ | 796/1000 [00:45<00:11, 17.72it/s]

end{sphinxVerbatim}

80%|███████▉ | 796/1000 [00:45<00:11, 17.72it/s]

more-to-come:

class:

stderr

80%|███████▉ | 798/1000 [00:45&lt;00:11, 17.72it/s]

</pre>

80%|███████▉ | 798/1000 [00:45<00:11, 17.72it/s]

end{sphinxVerbatim}

80%|███████▉ | 798/1000 [00:45<00:11, 17.72it/s]

more-to-come:

class:

stderr

80%|████████ | 800/1000 [00:45&lt;00:11, 17.73it/s]

</pre>

80%|████████ | 800/1000 [00:45<00:11, 17.73it/s]

end{sphinxVerbatim}

80%|████████ | 800/1000 [00:45<00:11, 17.73it/s]

more-to-come:

class:

stderr

80%|████████ | 802/1000 [00:45&lt;00:11, 17.73it/s]

</pre>

80%|████████ | 802/1000 [00:45<00:11, 17.73it/s]

end{sphinxVerbatim}

80%|████████ | 802/1000 [00:45<00:11, 17.73it/s]

more-to-come:

class:

stderr

80%|████████ | 804/1000 [00:45&lt;00:11, 17.69it/s]

</pre>

80%|████████ | 804/1000 [00:45<00:11, 17.69it/s]

end{sphinxVerbatim}

80%|████████ | 804/1000 [00:45<00:11, 17.69it/s]

more-to-come:

class:

stderr

81%|████████ | 806/1000 [00:46&lt;00:11, 17.57it/s]

</pre>

81%|████████ | 806/1000 [00:46<00:11, 17.57it/s]

end{sphinxVerbatim}

81%|████████ | 806/1000 [00:46<00:11, 17.57it/s]

more-to-come:

class:

stderr

81%|████████ | 808/1000 [00:46&lt;00:10, 17.52it/s]

</pre>

81%|████████ | 808/1000 [00:46<00:10, 17.52it/s]

end{sphinxVerbatim}

81%|████████ | 808/1000 [00:46<00:10, 17.52it/s]

more-to-come:

class:

stderr

81%|████████ | 810/1000 [00:46&lt;00:10, 17.55it/s]

</pre>

81%|████████ | 810/1000 [00:46<00:10, 17.55it/s]

end{sphinxVerbatim}

81%|████████ | 810/1000 [00:46<00:10, 17.55it/s]

more-to-come:

class:

stderr

81%|████████ | 812/1000 [00:46&lt;00:10, 17.53it/s]

</pre>

81%|████████ | 812/1000 [00:46<00:10, 17.53it/s]

end{sphinxVerbatim}

81%|████████ | 812/1000 [00:46<00:10, 17.53it/s]

more-to-come:

class:

stderr

81%|████████▏ | 814/1000 [00:46&lt;00:10, 17.44it/s]

</pre>

81%|████████▏ | 814/1000 [00:46<00:10, 17.44it/s]

end{sphinxVerbatim}

81%|████████▏ | 814/1000 [00:46<00:10, 17.44it/s]

more-to-come:

class:

stderr

82%|████████▏ | 816/1000 [00:46&lt;00:10, 17.52it/s]

</pre>

82%|████████▏ | 816/1000 [00:46<00:10, 17.52it/s]

end{sphinxVerbatim}

82%|████████▏ | 816/1000 [00:46<00:10, 17.52it/s]

more-to-come:

class:

stderr

82%|████████▏ | 818/1000 [00:46&lt;00:10, 17.61it/s]

</pre>

82%|████████▏ | 818/1000 [00:46<00:10, 17.61it/s]

end{sphinxVerbatim}

82%|████████▏ | 818/1000 [00:46<00:10, 17.61it/s]

more-to-come:

class:

stderr

82%|████████▏ | 820/1000 [00:46&lt;00:10, 17.55it/s]

</pre>

82%|████████▏ | 820/1000 [00:46<00:10, 17.55it/s]

end{sphinxVerbatim}

82%|████████▏ | 820/1000 [00:46<00:10, 17.55it/s]

more-to-come:

class:

stderr

82%|████████▏ | 822/1000 [00:47&lt;00:10, 17.55it/s]

</pre>

82%|████████▏ | 822/1000 [00:47<00:10, 17.55it/s]

end{sphinxVerbatim}

82%|████████▏ | 822/1000 [00:47<00:10, 17.55it/s]

more-to-come:

class:

stderr

82%|████████▏ | 824/1000 [00:47&lt;00:10, 17.59it/s]

</pre>

82%|████████▏ | 824/1000 [00:47<00:10, 17.59it/s]

end{sphinxVerbatim}

82%|████████▏ | 824/1000 [00:47<00:10, 17.59it/s]

more-to-come:

class:

stderr

83%|████████▎ | 826/1000 [00:47&lt;00:09, 17.62it/s]

</pre>

83%|████████▎ | 826/1000 [00:47<00:09, 17.62it/s]

end{sphinxVerbatim}

83%|████████▎ | 826/1000 [00:47<00:09, 17.62it/s]

more-to-come:

class:

stderr

83%|████████▎ | 828/1000 [00:47&lt;00:09, 17.67it/s]

</pre>

83%|████████▎ | 828/1000 [00:47<00:09, 17.67it/s]

end{sphinxVerbatim}

83%|████████▎ | 828/1000 [00:47<00:09, 17.67it/s]

more-to-come:

class:

stderr

83%|████████▎ | 830/1000 [00:47&lt;00:09, 17.70it/s]

</pre>

83%|████████▎ | 830/1000 [00:47<00:09, 17.70it/s]

end{sphinxVerbatim}

83%|████████▎ | 830/1000 [00:47<00:09, 17.70it/s]

more-to-come:

class:

stderr

83%|████████▎ | 832/1000 [00:47&lt;00:09, 17.71it/s]

</pre>

83%|████████▎ | 832/1000 [00:47<00:09, 17.71it/s]

end{sphinxVerbatim}

83%|████████▎ | 832/1000 [00:47<00:09, 17.71it/s]

more-to-come:

class:

stderr

83%|████████▎ | 834/1000 [00:47&lt;00:09, 17.74it/s]

</pre>

83%|████████▎ | 834/1000 [00:47<00:09, 17.74it/s]

end{sphinxVerbatim}

83%|████████▎ | 834/1000 [00:47<00:09, 17.74it/s]

more-to-come:

class:

stderr

84%|████████▎ | 836/1000 [00:47&lt;00:09, 17.75it/s]

</pre>

84%|████████▎ | 836/1000 [00:47<00:09, 17.75it/s]

end{sphinxVerbatim}

84%|████████▎ | 836/1000 [00:47<00:09, 17.75it/s]

more-to-come:

class:

stderr

84%|████████▍ | 838/1000 [00:47&lt;00:09, 17.77it/s]

</pre>

84%|████████▍ | 838/1000 [00:47<00:09, 17.77it/s]

end{sphinxVerbatim}

84%|████████▍ | 838/1000 [00:47<00:09, 17.77it/s]

more-to-come:

class:

stderr

84%|████████▍ | 840/1000 [00:48&lt;00:09, 17.61it/s]

</pre>

84%|████████▍ | 840/1000 [00:48<00:09, 17.61it/s]

end{sphinxVerbatim}

84%|████████▍ | 840/1000 [00:48<00:09, 17.61it/s]

more-to-come:

class:

stderr

84%|████████▍ | 842/1000 [00:48&lt;00:08, 17.59it/s]

</pre>

84%|████████▍ | 842/1000 [00:48<00:08, 17.59it/s]

end{sphinxVerbatim}

84%|████████▍ | 842/1000 [00:48<00:08, 17.59it/s]

more-to-come:

class:

stderr

84%|████████▍ | 844/1000 [00:48&lt;00:08, 17.58it/s]

</pre>

84%|████████▍ | 844/1000 [00:48<00:08, 17.58it/s]

end{sphinxVerbatim}

84%|████████▍ | 844/1000 [00:48<00:08, 17.58it/s]

more-to-come:

class:

stderr

85%|████████▍ | 846/1000 [00:48&lt;00:08, 17.64it/s]

</pre>

85%|████████▍ | 846/1000 [00:48<00:08, 17.64it/s]

end{sphinxVerbatim}

85%|████████▍ | 846/1000 [00:48<00:08, 17.64it/s]

more-to-come:

class:

stderr

85%|████████▍ | 848/1000 [00:48&lt;00:08, 17.48it/s]

</pre>

85%|████████▍ | 848/1000 [00:48<00:08, 17.48it/s]

end{sphinxVerbatim}

85%|████████▍ | 848/1000 [00:48<00:08, 17.48it/s]

more-to-come:

class:

stderr

85%|████████▌ | 850/1000 [00:48&lt;00:08, 17.54it/s]

</pre>

85%|████████▌ | 850/1000 [00:48<00:08, 17.54it/s]

end{sphinxVerbatim}

85%|████████▌ | 850/1000 [00:48<00:08, 17.54it/s]

more-to-come:

class:

stderr

85%|████████▌ | 852/1000 [00:48&lt;00:08, 17.60it/s]

</pre>

85%|████████▌ | 852/1000 [00:48<00:08, 17.60it/s]

end{sphinxVerbatim}

85%|████████▌ | 852/1000 [00:48<00:08, 17.60it/s]

more-to-come:

class:

stderr

85%|████████▌ | 854/1000 [00:48&lt;00:08, 17.59it/s]

</pre>

85%|████████▌ | 854/1000 [00:48<00:08, 17.59it/s]

end{sphinxVerbatim}

85%|████████▌ | 854/1000 [00:48<00:08, 17.59it/s]

more-to-come:

class:

stderr

86%|████████▌ | 856/1000 [00:48&lt;00:08, 17.53it/s]

</pre>

86%|████████▌ | 856/1000 [00:48<00:08, 17.53it/s]

end{sphinxVerbatim}

86%|████████▌ | 856/1000 [00:48<00:08, 17.53it/s]

more-to-come:

class:

stderr

86%|████████▌ | 858/1000 [00:49&lt;00:08, 17.49it/s]

</pre>

86%|████████▌ | 858/1000 [00:49<00:08, 17.49it/s]

end{sphinxVerbatim}

86%|████████▌ | 858/1000 [00:49<00:08, 17.49it/s]

more-to-come:

class:

stderr

86%|████████▌ | 860/1000 [00:49&lt;00:07, 17.57it/s]

</pre>

86%|████████▌ | 860/1000 [00:49<00:07, 17.57it/s]

end{sphinxVerbatim}

86%|████████▌ | 860/1000 [00:49<00:07, 17.57it/s]

more-to-come:

class:

stderr

86%|████████▌ | 862/1000 [00:49&lt;00:07, 17.58it/s]

</pre>

86%|████████▌ | 862/1000 [00:49<00:07, 17.58it/s]

end{sphinxVerbatim}

86%|████████▌ | 862/1000 [00:49<00:07, 17.58it/s]

more-to-come:

class:

stderr

86%|████████▋ | 864/1000 [00:49&lt;00:07, 17.61it/s]

</pre>

86%|████████▋ | 864/1000 [00:49<00:07, 17.61it/s]

end{sphinxVerbatim}

86%|████████▋ | 864/1000 [00:49<00:07, 17.61it/s]

more-to-come:

class:

stderr

87%|████████▋ | 866/1000 [00:49&lt;00:07, 17.62it/s]

</pre>

87%|████████▋ | 866/1000 [00:49<00:07, 17.62it/s]

end{sphinxVerbatim}

87%|████████▋ | 866/1000 [00:49<00:07, 17.62it/s]

more-to-come:

class:

stderr

87%|████████▋ | 868/1000 [00:49&lt;00:07, 17.63it/s]

</pre>

87%|████████▋ | 868/1000 [00:49<00:07, 17.63it/s]

end{sphinxVerbatim}

87%|████████▋ | 868/1000 [00:49<00:07, 17.63it/s]

more-to-come:

class:

stderr

87%|████████▋ | 870/1000 [00:49&lt;00:07, 17.67it/s]

</pre>

87%|████████▋ | 870/1000 [00:49<00:07, 17.67it/s]

end{sphinxVerbatim}

87%|████████▋ | 870/1000 [00:49<00:07, 17.67it/s]

more-to-come:

class:

stderr

87%|████████▋ | 872/1000 [00:49&lt;00:07, 17.68it/s]

</pre>

87%|████████▋ | 872/1000 [00:49<00:07, 17.68it/s]

end{sphinxVerbatim}

87%|████████▋ | 872/1000 [00:49<00:07, 17.68it/s]

more-to-come:

class:

stderr

87%|████████▋ | 874/1000 [00:49&lt;00:07, 17.70it/s]

</pre>

87%|████████▋ | 874/1000 [00:49<00:07, 17.70it/s]

end{sphinxVerbatim}

87%|████████▋ | 874/1000 [00:49<00:07, 17.70it/s]

more-to-come:

class:

stderr

88%|████████▊ | 876/1000 [00:50&lt;00:07, 17.53it/s]

</pre>

88%|████████▊ | 876/1000 [00:50<00:07, 17.53it/s]

end{sphinxVerbatim}

88%|████████▊ | 876/1000 [00:50<00:07, 17.53it/s]

more-to-come:

class:

stderr

88%|████████▊ | 878/1000 [00:50&lt;00:06, 17.58it/s]

</pre>

88%|████████▊ | 878/1000 [00:50<00:06, 17.58it/s]

end{sphinxVerbatim}

88%|████████▊ | 878/1000 [00:50<00:06, 17.58it/s]

more-to-come:

class:

stderr

88%|████████▊ | 880/1000 [00:50&lt;00:06, 17.55it/s]

</pre>

88%|████████▊ | 880/1000 [00:50<00:06, 17.55it/s]

end{sphinxVerbatim}

88%|████████▊ | 880/1000 [00:50<00:06, 17.55it/s]

more-to-come:

class:

stderr

88%|████████▊ | 882/1000 [00:50&lt;00:06, 17.50it/s]

</pre>

88%|████████▊ | 882/1000 [00:50<00:06, 17.50it/s]

end{sphinxVerbatim}

88%|████████▊ | 882/1000 [00:50<00:06, 17.50it/s]

more-to-come:

class:

stderr

88%|████████▊ | 884/1000 [00:50&lt;00:06, 17.18it/s]

</pre>

88%|████████▊ | 884/1000 [00:50<00:06, 17.18it/s]

end{sphinxVerbatim}

88%|████████▊ | 884/1000 [00:50<00:06, 17.18it/s]

more-to-come:

class:

stderr

89%|████████▊ | 886/1000 [00:50&lt;00:06, 17.28it/s]

</pre>

89%|████████▊ | 886/1000 [00:50<00:06, 17.28it/s]

end{sphinxVerbatim}

89%|████████▊ | 886/1000 [00:50<00:06, 17.28it/s]

more-to-come:

class:

stderr

89%|████████▉ | 888/1000 [00:50&lt;00:06, 17.41it/s]

</pre>

89%|████████▉ | 888/1000 [00:50<00:06, 17.41it/s]

end{sphinxVerbatim}

89%|████████▉ | 888/1000 [00:50<00:06, 17.41it/s]

more-to-come:

class:

stderr

89%|████████▉ | 890/1000 [00:50&lt;00:06, 17.46it/s]

</pre>

89%|████████▉ | 890/1000 [00:50<00:06, 17.46it/s]

end{sphinxVerbatim}

89%|████████▉ | 890/1000 [00:50<00:06, 17.46it/s]

more-to-come:

class:

stderr

89%|████████▉ | 892/1000 [00:51&lt;00:08, 13.47it/s]

</pre>

89%|████████▉ | 892/1000 [00:51<00:08, 13.47it/s]

end{sphinxVerbatim}

89%|████████▉ | 892/1000 [00:51<00:08, 13.47it/s]

more-to-come:

class:

stderr

89%|████████▉ | 894/1000 [00:51&lt;00:08, 13.10it/s]

</pre>

89%|████████▉ | 894/1000 [00:51<00:08, 13.10it/s]

end{sphinxVerbatim}

89%|████████▉ | 894/1000 [00:51<00:08, 13.10it/s]

more-to-come:

class:

stderr

90%|████████▉ | 896/1000 [00:51&lt;00:07, 14.20it/s]

</pre>

90%|████████▉ | 896/1000 [00:51<00:07, 14.20it/s]

end{sphinxVerbatim}

90%|████████▉ | 896/1000 [00:51<00:07, 14.20it/s]

more-to-come:

class:

stderr

90%|████████▉ | 898/1000 [00:51&lt;00:06, 15.10it/s]

</pre>

90%|████████▉ | 898/1000 [00:51<00:06, 15.10it/s]

end{sphinxVerbatim}

90%|████████▉ | 898/1000 [00:51<00:06, 15.10it/s]

more-to-come:

class:

stderr

90%|█████████ | 900/1000 [00:51&lt;00:06, 15.81it/s]

</pre>

90%|█████████ | 900/1000 [00:51<00:06, 15.81it/s]

end{sphinxVerbatim}

90%|█████████ | 900/1000 [00:51<00:06, 15.81it/s]

more-to-come:

class:

stderr

90%|█████████ | 902/1000 [00:51&lt;00:06, 16.33it/s]

</pre>

90%|█████████ | 902/1000 [00:51<00:06, 16.33it/s]

end{sphinxVerbatim}

90%|█████████ | 902/1000 [00:51<00:06, 16.33it/s]

more-to-come:

class:

stderr

90%|█████████ | 904/1000 [00:51&lt;00:05, 16.68it/s]

</pre>

90%|█████████ | 904/1000 [00:51<00:05, 16.68it/s]

end{sphinxVerbatim}

90%|█████████ | 904/1000 [00:51<00:05, 16.68it/s]

more-to-come:

class:

stderr

91%|█████████ | 906/1000 [00:51&lt;00:05, 16.97it/s]

</pre>

91%|█████████ | 906/1000 [00:51<00:05, 16.97it/s]

end{sphinxVerbatim}

91%|█████████ | 906/1000 [00:51<00:05, 16.97it/s]

more-to-come:

class:

stderr

91%|█████████ | 908/1000 [00:52&lt;00:05, 17.09it/s]

</pre>

91%|█████████ | 908/1000 [00:52<00:05, 17.09it/s]

end{sphinxVerbatim}

91%|█████████ | 908/1000 [00:52<00:05, 17.09it/s]

more-to-come:

class:

stderr

91%|█████████ | 910/1000 [00:52&lt;00:05, 17.27it/s]

</pre>

91%|█████████ | 910/1000 [00:52<00:05, 17.27it/s]

end{sphinxVerbatim}

91%|█████████ | 910/1000 [00:52<00:05, 17.27it/s]

more-to-come:

class:

stderr

91%|█████████ | 912/1000 [00:52&lt;00:05, 17.40it/s]

</pre>

91%|█████████ | 912/1000 [00:52<00:05, 17.40it/s]

end{sphinxVerbatim}

91%|█████████ | 912/1000 [00:52<00:05, 17.40it/s]

more-to-come:

class:

stderr

91%|█████████▏| 914/1000 [00:52&lt;00:04, 17.51it/s]

</pre>

91%|█████████▏| 914/1000 [00:52<00:04, 17.51it/s]

end{sphinxVerbatim}

91%|█████████▏| 914/1000 [00:52<00:04, 17.51it/s]

more-to-come:

class:

stderr

92%|█████████▏| 916/1000 [00:52&lt;00:04, 17.35it/s]

</pre>

92%|█████████▏| 916/1000 [00:52<00:04, 17.35it/s]

end{sphinxVerbatim}

92%|█████████▏| 916/1000 [00:52<00:04, 17.35it/s]

more-to-come:

class:

stderr

92%|█████████▏| 918/1000 [00:52&lt;00:04, 17.45it/s]

</pre>

92%|█████████▏| 918/1000 [00:52<00:04, 17.45it/s]

end{sphinxVerbatim}

92%|█████████▏| 918/1000 [00:52<00:04, 17.45it/s]

more-to-come:

class:

stderr

92%|█████████▏| 920/1000 [00:52&lt;00:04, 17.55it/s]

</pre>

92%|█████████▏| 920/1000 [00:52<00:04, 17.55it/s]

end{sphinxVerbatim}

92%|█████████▏| 920/1000 [00:52<00:04, 17.55it/s]

more-to-come:

class:

stderr

92%|█████████▏| 922/1000 [00:52&lt;00:04, 17.57it/s]

</pre>

92%|█████████▏| 922/1000 [00:52<00:04, 17.57it/s]

end{sphinxVerbatim}

92%|█████████▏| 922/1000 [00:52<00:04, 17.57it/s]

more-to-come:

class:

stderr

92%|█████████▏| 924/1000 [00:52&lt;00:04, 17.51it/s]

</pre>

92%|█████████▏| 924/1000 [00:52<00:04, 17.51it/s]

end{sphinxVerbatim}

92%|█████████▏| 924/1000 [00:52<00:04, 17.51it/s]

more-to-come:

class:

stderr

93%|█████████▎| 926/1000 [00:53&lt;00:04, 17.58it/s]

</pre>

93%|█████████▎| 926/1000 [00:53<00:04, 17.58it/s]

end{sphinxVerbatim}

93%|█████████▎| 926/1000 [00:53<00:04, 17.58it/s]

more-to-come:

class:

stderr

93%|█████████▎| 928/1000 [00:53&lt;00:04, 17.64it/s]

</pre>

93%|█████████▎| 928/1000 [00:53<00:04, 17.64it/s]

end{sphinxVerbatim}

93%|█████████▎| 928/1000 [00:53<00:04, 17.64it/s]

more-to-come:

class:

stderr

93%|█████████▎| 930/1000 [00:53&lt;00:03, 17.68it/s]

</pre>

93%|█████████▎| 930/1000 [00:53<00:03, 17.68it/s]

end{sphinxVerbatim}

93%|█████████▎| 930/1000 [00:53<00:03, 17.68it/s]

more-to-come:

class:

stderr

93%|█████████▎| 932/1000 [00:53&lt;00:03, 17.69it/s]

</pre>

93%|█████████▎| 932/1000 [00:53<00:03, 17.69it/s]

end{sphinxVerbatim}

93%|█████████▎| 932/1000 [00:53<00:03, 17.69it/s]

more-to-come:

class:

stderr

93%|█████████▎| 934/1000 [00:53&lt;00:03, 17.72it/s]

</pre>

93%|█████████▎| 934/1000 [00:53<00:03, 17.72it/s]

end{sphinxVerbatim}

93%|█████████▎| 934/1000 [00:53<00:03, 17.72it/s]

more-to-come:

class:

stderr

94%|█████████▎| 936/1000 [00:53&lt;00:03, 17.72it/s]

</pre>

94%|█████████▎| 936/1000 [00:53<00:03, 17.72it/s]

end{sphinxVerbatim}

94%|█████████▎| 936/1000 [00:53<00:03, 17.72it/s]

more-to-come:

class:

stderr

94%|█████████▍| 938/1000 [00:53&lt;00:03, 17.71it/s]

</pre>

94%|█████████▍| 938/1000 [00:53<00:03, 17.71it/s]

end{sphinxVerbatim}

94%|█████████▍| 938/1000 [00:53<00:03, 17.71it/s]

more-to-come:

class:

stderr

94%|█████████▍| 940/1000 [00:53&lt;00:03, 17.73it/s]

</pre>

94%|█████████▍| 940/1000 [00:53<00:03, 17.73it/s]

end{sphinxVerbatim}

94%|█████████▍| 940/1000 [00:53<00:03, 17.73it/s]

more-to-come:

class:

stderr

94%|█████████▍| 942/1000 [00:53&lt;00:03, 17.69it/s]

</pre>

94%|█████████▍| 942/1000 [00:53<00:03, 17.69it/s]

end{sphinxVerbatim}

94%|█████████▍| 942/1000 [00:53<00:03, 17.69it/s]

more-to-come:

class:

stderr

94%|█████████▍| 944/1000 [00:54&lt;00:03, 17.54it/s]

</pre>

94%|█████████▍| 944/1000 [00:54<00:03, 17.54it/s]

end{sphinxVerbatim}

94%|█████████▍| 944/1000 [00:54<00:03, 17.54it/s]

more-to-come:

class:

stderr

95%|█████████▍| 946/1000 [00:54&lt;00:03, 17.57it/s]

</pre>

95%|█████████▍| 946/1000 [00:54<00:03, 17.57it/s]

end{sphinxVerbatim}

95%|█████████▍| 946/1000 [00:54<00:03, 17.57it/s]

more-to-come:

class:

stderr

95%|█████████▍| 948/1000 [00:54&lt;00:02, 17.60it/s]

</pre>

95%|█████████▍| 948/1000 [00:54<00:02, 17.60it/s]

end{sphinxVerbatim}

95%|█████████▍| 948/1000 [00:54<00:02, 17.60it/s]

more-to-come:

class:

stderr

95%|█████████▌| 950/1000 [00:54&lt;00:02, 17.64it/s]

</pre>

95%|█████████▌| 950/1000 [00:54<00:02, 17.64it/s]

end{sphinxVerbatim}

95%|█████████▌| 950/1000 [00:54<00:02, 17.64it/s]

more-to-come:

class:

stderr

95%|█████████▌| 952/1000 [00:54&lt;00:02, 17.52it/s]

</pre>

95%|█████████▌| 952/1000 [00:54<00:02, 17.52it/s]

end{sphinxVerbatim}

95%|█████████▌| 952/1000 [00:54<00:02, 17.52it/s]

more-to-come:

class:

stderr

95%|█████████▌| 954/1000 [00:54&lt;00:02, 17.59it/s]

</pre>

95%|█████████▌| 954/1000 [00:54<00:02, 17.59it/s]

end{sphinxVerbatim}

95%|█████████▌| 954/1000 [00:54<00:02, 17.59it/s]

more-to-come:

class:

stderr

96%|█████████▌| 956/1000 [00:54&lt;00:02, 17.64it/s]

</pre>

96%|█████████▌| 956/1000 [00:54<00:02, 17.64it/s]

end{sphinxVerbatim}

96%|█████████▌| 956/1000 [00:54<00:02, 17.64it/s]

more-to-come:

class:

stderr

96%|█████████▌| 958/1000 [00:54&lt;00:02, 17.54it/s]

</pre>

96%|█████████▌| 958/1000 [00:54<00:02, 17.54it/s]

end{sphinxVerbatim}

96%|█████████▌| 958/1000 [00:54<00:02, 17.54it/s]

more-to-come:

class:

stderr

96%|█████████▌| 960/1000 [00:55&lt;00:02, 17.51it/s]

</pre>

96%|█████████▌| 960/1000 [00:55<00:02, 17.51it/s]

end{sphinxVerbatim}

96%|█████████▌| 960/1000 [00:55<00:02, 17.51it/s]

more-to-come:

class:

stderr

96%|█████████▌| 962/1000 [00:55&lt;00:02, 17.58it/s]

</pre>

96%|█████████▌| 962/1000 [00:55<00:02, 17.58it/s]

end{sphinxVerbatim}

96%|█████████▌| 962/1000 [00:55<00:02, 17.58it/s]

more-to-come:

class:

stderr

96%|█████████▋| 964/1000 [00:55&lt;00:02, 17.63it/s]

</pre>

96%|█████████▋| 964/1000 [00:55<00:02, 17.63it/s]

end{sphinxVerbatim}

96%|█████████▋| 964/1000 [00:55<00:02, 17.63it/s]

more-to-come:

class:

stderr

97%|█████████▋| 966/1000 [00:55&lt;00:01, 17.65it/s]

</pre>

97%|█████████▋| 966/1000 [00:55<00:01, 17.65it/s]

end{sphinxVerbatim}

97%|█████████▋| 966/1000 [00:55<00:01, 17.65it/s]

more-to-come:

class:

stderr

97%|█████████▋| 968/1000 [00:55&lt;00:01, 17.68it/s]

</pre>

97%|█████████▋| 968/1000 [00:55<00:01, 17.68it/s]

end{sphinxVerbatim}

97%|█████████▋| 968/1000 [00:55<00:01, 17.68it/s]

more-to-come:

class:

stderr

97%|█████████▋| 970/1000 [00:55&lt;00:01, 17.69it/s]

</pre>

97%|█████████▋| 970/1000 [00:55<00:01, 17.69it/s]

end{sphinxVerbatim}

97%|█████████▋| 970/1000 [00:55<00:01, 17.69it/s]

more-to-come:

class:

stderr

97%|█████████▋| 972/1000 [00:55&lt;00:01, 17.68it/s]

</pre>

97%|█████████▋| 972/1000 [00:55<00:01, 17.68it/s]

end{sphinxVerbatim}

97%|█████████▋| 972/1000 [00:55<00:01, 17.68it/s]

more-to-come:

class:

stderr

97%|█████████▋| 974/1000 [00:55&lt;00:01, 17.68it/s]

</pre>

97%|█████████▋| 974/1000 [00:55<00:01, 17.68it/s]

end{sphinxVerbatim}

97%|█████████▋| 974/1000 [00:55<00:01, 17.68it/s]

more-to-come:

class:

stderr

98%|█████████▊| 976/1000 [00:55&lt;00:01, 17.69it/s]

</pre>

98%|█████████▊| 976/1000 [00:55<00:01, 17.69it/s]

end{sphinxVerbatim}

98%|█████████▊| 976/1000 [00:55<00:01, 17.69it/s]

more-to-come:

class:

stderr

98%|█████████▊| 978/1000 [00:56&lt;00:01, 17.65it/s]

</pre>

98%|█████████▊| 978/1000 [00:56<00:01, 17.65it/s]

end{sphinxVerbatim}

98%|█████████▊| 978/1000 [00:56<00:01, 17.65it/s]

more-to-come:

class:

stderr

98%|█████████▊| 980/1000 [00:56&lt;00:01, 17.59it/s]

</pre>

98%|█████████▊| 980/1000 [00:56<00:01, 17.59it/s]

end{sphinxVerbatim}

98%|█████████▊| 980/1000 [00:56<00:01, 17.59it/s]

more-to-come:

class:

stderr

98%|█████████▊| 982/1000 [00:56&lt;00:01, 17.55it/s]

</pre>

98%|█████████▊| 982/1000 [00:56<00:01, 17.55it/s]

end{sphinxVerbatim}

98%|█████████▊| 982/1000 [00:56<00:01, 17.55it/s]

more-to-come:

class:

stderr

98%|█████████▊| 984/1000 [00:56&lt;00:00, 17.58it/s]

</pre>

98%|█████████▊| 984/1000 [00:56<00:00, 17.58it/s]

end{sphinxVerbatim}

98%|█████████▊| 984/1000 [00:56<00:00, 17.58it/s]

more-to-come:

class:

stderr

99%|█████████▊| 986/1000 [00:56&lt;00:00, 17.36it/s]

</pre>

99%|█████████▊| 986/1000 [00:56<00:00, 17.36it/s]

end{sphinxVerbatim}

99%|█████████▊| 986/1000 [00:56<00:00, 17.36it/s]

more-to-come:

class:

stderr

99%|█████████▉| 988/1000 [00:56&lt;00:00, 17.42it/s]

</pre>

99%|█████████▉| 988/1000 [00:56<00:00, 17.42it/s]

end{sphinxVerbatim}

99%|█████████▉| 988/1000 [00:56<00:00, 17.42it/s]

more-to-come:

class:

stderr

99%|█████████▉| 990/1000 [00:56&lt;00:00, 17.52it/s]

</pre>

99%|█████████▉| 990/1000 [00:56<00:00, 17.52it/s]

end{sphinxVerbatim}

99%|█████████▉| 990/1000 [00:56<00:00, 17.52it/s]

more-to-come:

class:

stderr

99%|█████████▉| 992/1000 [00:56&lt;00:00, 17.55it/s]

</pre>

99%|█████████▉| 992/1000 [00:56<00:00, 17.55it/s]

end{sphinxVerbatim}

99%|█████████▉| 992/1000 [00:56<00:00, 17.55it/s]

more-to-come:

class:

stderr

99%|█████████▉| 994/1000 [00:56&lt;00:00, 17.46it/s]

</pre>

99%|█████████▉| 994/1000 [00:56<00:00, 17.46it/s]

end{sphinxVerbatim}

99%|█████████▉| 994/1000 [00:56<00:00, 17.46it/s]

100%|█████████▉| 996/1000 [00:57&lt;00:00, 17.45it/s]

</pre>

100%|█████████▉| 996/1000 [00:57<00:00, 17.45it/s]

end{sphinxVerbatim}

100%|█████████▉| 996/1000 [00:57<00:00, 17.45it/s]

100%|█████████▉| 998/1000 [00:57&lt;00:00, 17.52it/s]

</pre>

100%|█████████▉| 998/1000 [00:57<00:00, 17.52it/s]

end{sphinxVerbatim}

100%|█████████▉| 998/1000 [00:57<00:00, 17.52it/s]

100%|██████████| 1000/1000 [00:57&lt;00:00, 17.57it/s]

</pre>

100%|██████████| 1000/1000 [00:57<00:00, 17.57it/s]

end{sphinxVerbatim}

100%|██████████| 1000/1000 [00:57<00:00, 17.57it/s]

100%|██████████| 1000/1000 [00:57&lt;00:00, 17.45it/s]

</pre>

100%|██████████| 1000/1000 [00:57<00:00, 17.45it/s]

end{sphinxVerbatim}

100%|██████████| 1000/1000 [00:57<00:00, 17.45it/s]


We can then visualise the probability distributions for the parameters as histograms.

[8]:
from corner import corner
[9]:
corner(s.flatchain, labels=['$E_a$/eV', '$A$/eV'])
plt.show()
_images/arrhenius_t_16_0.png

It is also possible to plot these probability distributions as Arrhenius relations on the data measured values.

[10]:
credible_intervals = [[16, 84], [2.5, 97.5], [0.15, 99.85]]
alpha = [0.6, 0.4, 0.2]

plt.errorbar(1000/s.x, s.y.n, s.y.ci(), marker='o', ls='', color='k', zorder=10)
for i, ci in enumerate(credible_intervals):
    plt.fill_between(1000/s.x,
                     *np.percentile(s.distribution, ci, axis=1),
                     alpha=alpha[i],
                     color='#0173B2',
                     lw=0)
plt.yscale('log')
plt.xlabel('$1000T^{-1}$/K$^{-1}$')
plt.ylabel('$D$/cm$^2$s$^{-1}$')
plt.show()
_images/arrhenius_t_18_0.png