[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.145.72.240: ~ $
U

��,a
��@sndZddddddddd	d
ddd
ddddgZddlZddlZddlZddlmZddlmZddl	m
Z
ddlmZm
Z
ddlmZmZmZmZmZmZmZmZddlmZddlmZGdd�de�Zdddd�Zdd�Zd d!�Zd"d#�Zd$d%�Z d&d'�Z!d(d)�Z"ded+d,�Z#d-d�Z$d.d�Z%d/d�Z&d0d�Z'd1d�Z(d2d
�Z)d3d	�Z*dfd5d�Z+d6d�Z,d7d�Z-d8d9d:�d;d�Z.dgd<d=�Z/dhd>d�Z0did?d�Z1djd@d�Z2dkdAd
�Z3dBdC�Z4GdDd�d�Z5zddEl6m4Z4Wne7k
�r�YnXe8dFk�rjddGlm9Z9ddHlm:Z:m;Z;m<Z<m=Z=ddIl	m>Z>ddl?Z?e5dJdK�Z@e5dLdM�ZAdNZBe@�CeB�ZDeA�CeB�ZEe:e;fD]<ZFeGdOeFj8�dP��eGeFe@eA��eGe5�HeIeFeDeE����qRdQZJe:e;e<e=fD]@ZFeGdOeFj8�dR��eGeFe@eJ��eGe5�HeIeFeDe>eJ�����q�dSZJe:e;e<fD]@ZFeGdTeFj8�dU��eGeFeJe@��eGe5�HeIeFe>eJ�eD����q�dVdW�ZKe5dXdY�ZLe5dZd[�ZMd\ZNdNZBe5�Hd]d^�eL�CeB�D��ZOeKeLeNeO�e5�Hd_d^�eL�CeB�D��ZOeKeLeNeO�e5�Hd`d^�eL�CeB�D��ZOeKeLeNeO�e5�Hdad^�eL�CeB�D��ZOeKeLeNeO�e5�Hdbd^�ePeL�CeB�eM�CeB��D��ZOeKeLeMeO�e5�Hdcd^�ePeL�CeB�eM�CeB��D��ZOeKeLeMeO�eGe?�Q��dS)lam

Basic statistics module.

This module provides functions for calculating statistics of data, including
averages, variance, and standard deviation.

Calculating averages
--------------------

==================  ==================================================
Function            Description
==================  ==================================================
mean                Arithmetic mean (average) of data.
fmean               Fast, floating point arithmetic mean.
geometric_mean      Geometric mean of data.
harmonic_mean       Harmonic mean of data.
median              Median (middle value) of data.
median_low          Low median of data.
median_high         High median of data.
median_grouped      Median, or 50th percentile, of grouped data.
mode                Mode (most common value) of data.
multimode           List of modes (most common values of data).
quantiles           Divide data into intervals with equal probability.
==================  ==================================================

Calculate the arithmetic mean ("the average") of data:

>>> mean([-1.0, 2.5, 3.25, 5.75])
2.625


Calculate the standard median of discrete data:

>>> median([2, 3, 4, 5])
3.5


Calculate the median, or 50th percentile, of data grouped into class intervals
centred on the data values provided. E.g. if your data points are rounded to
the nearest whole number:

>>> median_grouped([2, 2, 3, 3, 3, 4])  #doctest: +ELLIPSIS
2.8333333333...

This should be interpreted in this way: you have two data points in the class
interval 1.5-2.5, three data points in the class interval 2.5-3.5, and one in
the class interval 3.5-4.5. The median of these data points is 2.8333...


Calculating variability or spread
---------------------------------

==================  =============================================
Function            Description
==================  =============================================
pvariance           Population variance of data.
variance            Sample variance of data.
pstdev              Population standard deviation of data.
stdev               Sample standard deviation of data.
==================  =============================================

Calculate the standard deviation of sample data:

>>> stdev([2.5, 3.25, 5.5, 11.25, 11.75])  #doctest: +ELLIPSIS
4.38961843444...

If you have previously calculated the mean, you can pass it as the optional
second argument to the four "spread" functions to avoid recalculating it:

>>> data = [1, 2, 2, 4, 4, 4, 5, 6]
>>> mu = mean(data)
>>> pvariance(data, mu)
2.5


Exceptions
----------

A single exception is defined: StatisticsError is a subclass of ValueError.

�
NormalDist�StatisticsError�fmean�geometric_mean�
harmonic_mean�mean�median�median_grouped�median_high�
median_low�mode�	multimode�pstdev�	pvariance�	quantiles�stdev�variance�N��Fraction)�Decimal)�groupby)�bisect_left�bisect_right)�hypot�sqrt�fabs�exp�erf�tau�log�fsum)�
itemgetter)�Counterc@seZdZdS)rN)�__name__�
__module__�__qualname__�r&r&�//opt/alt/python38/lib64/python3.8/statistics.pyruscCs�d}t|�\}}||i}|j}ttt|��}t|t�D]@\}}	t||�}tt|	�D]"\}}|d7}||d�|||<qRq6d|kr�|d}
ntdd�t|�	��D��}
||
|fS)aC_sum(data [, start]) -> (type, sum, count)

    Return a high-precision sum of the given numeric data as a fraction,
    together with the type to be converted to and the count of items.

    If optional argument ``start`` is given, it is added to the total.
    If ``data`` is empty, ``start`` (defaulting to 0) is returned.


    Examples
    --------

    >>> _sum([3, 2.25, 4.5, -0.5, 1.0], 0.75)
    (<class 'float'>, Fraction(11, 1), 5)

    Some sources of round-off error will be avoided:

    # Built-in sum returns zero.
    >>> _sum([1e50, 1, -1e50] * 1000)
    (<class 'float'>, Fraction(1000, 1), 3000)

    Fractions and Decimals are also supported:

    >>> from fractions import Fraction as F
    >>> _sum([F(2, 3), F(7, 5), F(1, 4), F(5, 6)])
    (<class 'fractions.Fraction'>, Fraction(63, 20), 4)

    >>> from decimal import Decimal as D
    >>> data = [D("0.1375"), D("0.2108"), D("0.3061"), D("0.0419")]
    >>> _sum(data)
    (<class 'decimal.Decimal'>, Fraction(6963, 10000), 4)

    Mixed types are currently treated as an error, except that int is
    allowed.
    r�Ncss|]\}}t||�VqdS�Nr)�.0�d�nr&r&r'�	<genexpr>�sz_sum.<locals>.<genexpr>)
�_exact_ratio�get�_coerce�int�typer�map�sum�sorted�items)�data�start�countr,r+ZpartialsZpartials_get�T�typ�values�totalr&r&r'�_sum{s$
r>cCs.z
|��WStk
r(t�|�YSXdSr))Z	is_finite�AttributeError�mathZisfinite)�xr&r&r'�	_isfinite�s
rBcCs�||kr|S|tks|tkr |S|tkr,|St||�r:|St||�rH|St|t�rV|St|t�rd|St|t�r|t|t�r||St|t�r�t|t�r�|Sd}t||j|jf��dS)z�Coerce types T and S to a common type, or raise TypeError.

    Coercion rules are currently an implementation detail. See the CoerceTest
    test class in test_statistics for details.
    z"don't know how to coerce %s and %sN)r1�bool�
issubclassr�float�	TypeErrorr#)r:�S�msgr&r&r'r0�s(



r0cCs�zrt|�tkst|�tkr$|��WSz|j|jfWWStk
rnz|��WYWStk
rhYnXYnXWn ttfk
r�|dfYSXd}t	|�
t|�j���dS)z�Return Real number x to exact (numerator, denominator) pair.

    >>> _exact_ratio(0.25)
    (1, 4)

    x is expected to be an int, Fraction, Decimal or float.
    Nz0can't convert type '{}' to numerator/denominator)r2rEr�as_integer_ratio�	numerator�denominatorr?�
OverflowError�
ValueErrorrF�formatr#)rArHr&r&r'r.�s
r.cCspt|�|kr|St|t�r(|jdkr(t}z
||�WStk
rjt|t�rd||j�||j�YS�YnXdS)z&Convert value to given numeric type T.r(N)r2rDr1rKrErFrrJ)�valuer:r&r&r'�_convert�s

rPcCs.t||�}|t|�kr&|||kr&|St�dS)z,Locate the leftmost value exactly equal to xN)r�lenrM)�arA�ir&r&r'�
_find_lteq
s
rTcCs>t|||d�}|t|�dkr6||d|kr6|dSt�dS)z-Locate the rightmost value exactly equal to x)�lor(N)rrQrM)rR�lrArSr&r&r'�
_find_rteqs rW�negative valueccs$|D]}|dkrt|��|VqdS)z7Iterate over values, failing if any are less than zero.rN)r)r<�errmsgrAr&r&r'�	_fail_negsrZcCsHt|�|krt|�}t|�}|dkr,td��t|�\}}}t|||�S)a�Return the sample arithmetic mean of data.

    >>> mean([1, 2, 3, 4, 4])
    2.8

    >>> from fractions import Fraction as F
    >>> mean([F(3, 7), F(1, 21), F(5, 3), F(1, 3)])
    Fraction(13, 21)

    >>> from decimal import Decimal as D
    >>> mean([D("0.5"), D("0.75"), D("0.625"), D("0.375")])
    Decimal('0.5625')

    If ``data`` is empty, StatisticsError will be raised.
    r(z%mean requires at least one data point)�iter�listrQrr>rP)r7r,r:r=r9r&r&r'r'scstzt|��Wn0tk
r<d��fdd�}t||��}Yn
Xt|�}z
|�WStk
rntd�d�YnXdS)z�Convert data to floats and compute the arithmetic mean.

    This runs faster than the mean() function and it always returns a float.
    If the input dataset is empty, it raises a StatisticsError.

    >>> fmean([3.5, 4.0, 5.25])
    4.25
    rc3s t|dd�D]\�}|VqdS)Nr()r8)�	enumerate)�iterablerA�r,r&r'r9Oszfmean.<locals>.countz&fmean requires at least one data pointN)rQrFr �ZeroDivisionErrorr)r7r9r=r&r_r'rAs	
cCs8ztttt|���WStk
r2td�d�YnXdS)aYConvert data to floats and compute the geometric mean.

    Raises a StatisticsError if the input dataset is empty,
    if it contains a zero, or if it contains a negative value.

    No special efforts are made to achieve exact results.
    (However, this may change in the future.)

    >>> round(geometric_mean([54, 24, 36]), 9)
    36.0
    zHgeometric mean requires a non-empty dataset  containing positive numbersN)rrr3rrMr)r7r&r&r'r\s�cCs�t|�|krt|�}d}t|�}|dkr2td��n<|dkrn|d}t|tjtf�rf|dkrbt|��|Std��z"t	dd�t
||�D��\}}}Wntk
r�YdSXt|||�S)aReturn the harmonic mean of data.

    The harmonic mean, sometimes called the subcontrary mean, is the
    reciprocal of the arithmetic mean of the reciprocals of the data,
    and is often appropriate when averaging quantities which are rates
    or ratios, for example speeds. Example:

    Suppose an investor purchases an equal value of shares in each of
    three companies, with P/E (price/earning) ratios of 2.5, 3 and 10.
    What is the average P/E ratio for the investor's portfolio?

    >>> harmonic_mean([2.5, 3, 10])  # For an equal investment portfolio.
    3.6

    Using the arithmetic mean would give an average of about 5.167, which
    is too high.

    If ``data`` is empty, or any element is less than zero,
    ``harmonic_mean`` will raise ``StatisticsError``.
    z.harmonic mean does not support negative valuesr(z.harmonic_mean requires at least one data pointrzunsupported typecss|]}d|VqdS)r(Nr&�r*rAr&r&r'r-�sz harmonic_mean.<locals>.<genexpr>)
r[r\rQr�
isinstance�numbersZRealrrFr>rZr`rP)r7rYr,rAr:r=r9r&r&r'ros$
"cCs\t|�}t|�}|dkr td��|ddkr8||dS|d}||d||dSdS)aBReturn the median (middle value) of numeric data.

    When the number of data points is odd, return the middle data point.
    When the number of data points is even, the median is interpolated by
    taking the average of the two middle values:

    >>> median([1, 3, 5])
    3
    >>> median([1, 3, 5, 7])
    4.0

    r�no median for empty data�r(N�r5rQr)r7r,rSr&r&r'r�s
cCsLt|�}t|�}|dkr td��|ddkr8||dS||ddSdS)a	Return the low median of numeric data.

    When the number of data points is odd, the middle value is returned.
    When it is even, the smaller of the two middle values is returned.

    >>> median_low([1, 3, 5])
    3
    >>> median_low([1, 3, 5, 7])
    3

    rrdrer(Nrf�r7r,r&r&r'r
�scCs,t|�}t|�}|dkr td��||dS)aReturn the high median of data.

    When the number of data points is odd, the middle value is returned.
    When it is even, the larger of the two middle values is returned.

    >>> median_high([1, 3, 5])
    3
    >>> median_high([1, 3, 5, 7])
    5

    rrdrerfrgr&r&r'r	�s
r(c
Cs�t|�}t|�}|dkr"td��n|dkr2|dS||d}||fD]}t|ttf�rFtd|��qFz||d}Wn(tk
r�t|�t|�d}YnXt||�}t	|||�}|}||d}	|||d||	S)a�Return the 50th percentile (median) of grouped continuous data.

    >>> median_grouped([1, 2, 2, 3, 4, 4, 4, 4, 4, 5])
    3.7
    >>> median_grouped([52, 52, 53, 54])
    52.5

    This calculates the median as the 50th percentile, and should be
    used when your data is continuous and grouped. In the above example,
    the values 1, 2, 3, etc. actually represent the midpoint of classes
    0.5-1.5, 1.5-2.5, 2.5-3.5, etc. The middle value falls somewhere in
    class 3.5-4.5, and interpolation is used to estimate it.

    Optional argument ``interval`` represents the class interval, and
    defaults to 1. Changing the class interval naturally will change the
    interpolated 50th percentile value:

    >>> median_grouped([1, 3, 3, 5, 7], interval=1)
    3.25
    >>> median_grouped([1, 3, 3, 5, 7], interval=2)
    3.5

    This function does not check whether the data points are at least
    ``interval`` apart.
    rrdr(rezexpected number but got %r)
r5rQrrb�str�bytesrFrErTrW)
r7Zintervalr,rA�obj�L�l1�l2Zcf�fr&r&r'r�s&

cCsHt|�}t|��d�}z|ddWStk
rBtd�d�YnXdS)axReturn the most common data point from discrete or nominal data.

    ``mode`` assumes discrete data, and returns a single value. This is the
    standard treatment of the mode as commonly taught in schools:

        >>> mode([1, 1, 2, 3, 3, 3, 3, 4])
        3

    This also works with nominal (non-numeric) data:

        >>> mode(["red", "blue", "blue", "red", "green", "red", "red"])
        'red'

    If there are multiple modes with same frequency, return the first one
    encountered:

        >>> mode(['red', 'red', 'green', 'blue', 'blue'])
        'red'

    If *data* is empty, ``mode``, raises StatisticsError.

    r(rzno mode for empty dataN)r[r"�most_common�
IndexErrorr)r7Zpairsr&r&r'rscCs@tt|����}tt|td�d�dgf�\}}tttd�|��S)a.Return a list of the most frequently occurring values.

    Will return more than one result if there are multiple modes
    or an empty list if *data* is empty.

    >>> multimode('aabbbbbbbbcc')
    ['b']
    >>> multimode('aabbbbccddddeeffffgg')
    ['b', 'd', 'f']
    >>> multimode('')
    []
    r()�keyr)r"r[ro�nextrr!r\r3)r7ZcountsZmaxcountZ
mode_itemsr&r&r'r5s
��	exclusive)r,�methodc
CsL|dkrtd��t|�}t|�}|dkr0td��|dkr�|d}g}td|�D]N}|||}||||}||||||d||}	|�|	�qN|S|dk�r:|d}g}td|�D]r}|||}|dkr�dn||dkr�|dn|}||||}||d||||||}	|�|	�q�|Std|����dS)	a�Divide *data* into *n* continuous intervals with equal probability.

    Returns a list of (n - 1) cut points separating the intervals.

    Set *n* to 4 for quartiles (the default).  Set *n* to 10 for deciles.
    Set *n* to 100 for percentiles which gives the 99 cuts points that
    separate *data* in to 100 equal sized groups.

    The *data* can be any iterable containing sample.
    The cut points are linearly interpolated between data points.

    If *method* is set to *inclusive*, *data* is treated as population
    data.  The minimum value is treated as the 0th percentile and the
    maximum value is treated as the 100th percentile.
    r(zn must be at least 1rez"must have at least two data pointsZ	inclusivertzUnknown method: N)rr5rQ�range�appendrM)
r7r,ruZld�m�resultrS�jZdeltaZinterpolatedr&r&r'rls4$
$$cs��dk	r,t�fdd�|D��\}}}||fSt|��t�fdd�|D��\}}}t�fdd�|D��\}}}||dt|�8}||fS)a;Return sum of square deviations of sequence data.

    If ``c`` is None, the mean is calculated in one pass, and the deviations
    from the mean are calculated in a second pass. Otherwise, deviations are
    calculated from ``c`` as given. Use the second case with care, as it can
    lead to garbage results.
    Nc3s|]}|�dVqdS�reNr&ra��cr&r'r-�sz_ss.<locals>.<genexpr>c3s|]}|�dVqdSr{r&rar|r&r'r-�sc3s|]}|�VqdSr)r&rar|r&r'r-�sre)r>rrQ)r7r}r:r=r9�UZtotal2Zcount2r&r|r'�_ss�srcCsLt|�|krt|�}t|�}|dkr,td��t||�\}}t||d|�S)a�Return the sample variance of data.

    data should be an iterable of Real-valued numbers, with at least two
    values. The optional argument xbar, if given, should be the mean of
    the data. If it is missing or None, the mean is automatically calculated.

    Use this function when your data is a sample from a population. To
    calculate the variance from the entire population, see ``pvariance``.

    Examples:

    >>> data = [2.75, 1.75, 1.25, 0.25, 0.5, 1.25, 3.5]
    >>> variance(data)
    1.3720238095238095

    If you have already calculated the mean of your data, you can pass it as
    the optional second argument ``xbar`` to avoid recalculating it:

    >>> m = mean(data)
    >>> variance(data, m)
    1.3720238095238095

    This function does not check that ``xbar`` is actually the mean of
    ``data``. Giving arbitrary values for ``xbar`` may lead to invalid or
    impossible results.

    Decimals and Fractions are supported:

    >>> from decimal import Decimal as D
    >>> variance([D("27.5"), D("30.25"), D("30.25"), D("34.5"), D("41.75")])
    Decimal('31.01875')

    >>> from fractions import Fraction as F
    >>> variance([F(1, 6), F(1, 2), F(5, 3)])
    Fraction(67, 108)

    rez*variance requires at least two data pointsr(�r[r\rQrrrP)r7�xbarr,r:�ssr&r&r'r�s&cCsHt|�|krt|�}t|�}|dkr,td��t||�\}}t|||�S)a,Return the population variance of ``data``.

    data should be a sequence or iterable of Real-valued numbers, with at least one
    value. The optional argument mu, if given, should be the mean of
    the data. If it is missing or None, the mean is automatically calculated.

    Use this function to calculate the variance from the entire population.
    To estimate the variance from a sample, the ``variance`` function is
    usually a better choice.

    Examples:

    >>> data = [0.0, 0.25, 0.25, 1.25, 1.5, 1.75, 2.75, 3.25]
    >>> pvariance(data)
    1.25

    If you have already calculated the mean of the data, you can pass it as
    the optional second argument to avoid recalculating it:

    >>> mu = mean(data)
    >>> pvariance(data, mu)
    1.25

    Decimals and Fractions are supported:

    >>> from decimal import Decimal as D
    >>> pvariance([D("27.5"), D("30.25"), D("30.25"), D("34.5"), D("41.75")])
    Decimal('24.815')

    >>> from fractions import Fraction as F
    >>> pvariance([F(1, 4), F(5, 4), F(1, 2)])
    Fraction(13, 72)

    r(z*pvariance requires at least one data pointr�)r7�mur,r:r�r&r&r'r�s#cCs8t||�}z
|��WStk
r2t�|�YSXdS)z�Return the square root of the sample variance.

    See ``variance`` for arguments and other details.

    >>> stdev([1.5, 2.5, 2.5, 2.75, 3.25, 4.75])
    1.0810874155219827

    N)rrr?r@)r7r��varr&r&r'rs
	

cCs8t||�}z
|��WStk
r2t�|�YSXdS)z�Return the square root of the population variance.

    See ``pvariance`` for arguments and other details.

    >>> pstdev([1.5, 2.5, 2.5, 2.75, 3.25, 4.75])
    0.986893273527251

    N)rrr?r@)r7r�r�r&r&r'r
&s
	

cCs|d}t|�dkr�d||}d|d|d|d|d|d	|d
|d|}d|d
|d|d|d|d|d|d}||}|||S|dkr�|nd|}tt|��}|dk�r^|d}d|d|d|d|d|d|d|d}d|d |d!|d"|d#|d$|d%|d}n�|d}d&|d'|d(|d)|d*|d+|d,|d-}d.|d/|d0|d1|d2|d3|d4|d}||}|dk�r�|}|||S)5N��?g333333�?g��Q��?g^�}o)��@g�E.k�R�@g ��Ul�@g*u��>l�@g�N����@g�"]Ξ@gnC���`@gu��@giK��~j�@gv��|E�@g��d�|1�@gfR��r��@g��u.2�@g���~y�@g�n8(E@��?�g@g�������?g鬷�ZaI?gg�El�D�?g7\�����?g�uS�S�?g�=�.
@gj%b�@g���Hw�@gjR�e�?g�9dh?
>g('߿��A?g��~z �?g@�3��?gɅ3��?g3fR�x�?gI�F��l@g����t��>g*�Y��n�>gESB\T?g�N;A+�?g�UR1��?gE�F���?gP�n��@g&�>���@g����i�<g�@�F�>g�tcI,\�>g�ŝ���I?g*F2�v�?g�C4�?g��O�1�?)rrr)�pr��sigma�q�rZnumZdenrAr&r&r'�_normal_dist_inv_cdf9sd���������������������������
��������������������������	��������������������������
r�c@s�eZdZdZddd�Zd8dd�Zed	d
��Zdd�d
d�Zdd�Z	dd�Z
dd�Zd9dd�Zdd�Z
edd��Zedd��Zedd��Zed d!��Zed"d#��Zd$d%�Zd&d'�Zd(d)�Zd*d+�Zd,d-�Zd.d/�ZeZd0d1�ZeZd2d3�Zd4d5�Zd6d7�ZdS):rz(Normal distribution of a random variablez(Arithmetic mean of a normal distributionz+Standard deviation of a normal distribution)�_mu�_sigmar�r�cCs(|dkrtd��t|�|_t|�|_dS)zDNormalDist where mu is the mean and sigma is the standard deviation.r�zsigma must be non-negativeN)rrEr�r�)�selfr�r�r&r&r'�__init__�s
zNormalDist.__init__cCs.t|ttf�st|�}t|�}||t||��S)z5Make a normal distribution instance from sample data.)rbr\�tuplerr)�clsr7r�r&r&r'�from_samples�szNormalDist.from_samplesN)�seedcsB|dkrtjn
t�|�j�|j|j�����fdd�t|�D�S)z=Generate *n* samples for a given mean and standard deviation.Ncsg|]}�����qSr&r&�r*rS��gaussr�r�r&r'�
<listcomp>�sz&NormalDist.samples.<locals>.<listcomp>)�randomr�ZRandomr�r�rv)r�r,r�r&r�r'�samples�szNormalDist.samplescCs<|jd}|std��t||jdd|�tt|�S)z4Probability density function.  P(x <= X < x+dx) / dx�@z$pdf() not defined when sigma is zerog�)r�rrr�rr)r�rArr&r&r'�pdf�s
zNormalDist.pdfcCs2|jstd��ddt||j|jtd��S)z,Cumulative distribution function.  P(X <= x)z$cdf() not defined when sigma is zeror�r�r�)r�rrr�r)r�rAr&r&r'�cdf�szNormalDist.cdfcCs:|dks|dkrtd��|jdkr*td��t||j|j�S)aSInverse cumulative distribution function.  x : P(X <= x) = p

        Finds the value of the random variable such that the probability of
        the variable being less than or equal to that value equals the given
        probability.

        This function is also called the percent point function or quantile
        function.
        r�r�z$p must be in the range 0.0 < p < 1.0z-cdf() not defined when sigma at or below zero)rr�r�r�)r�r�r&r&r'�inv_cdf�s


zNormalDist.inv_cdfrscs��fdd�td��D�S)anDivide into *n* continuous intervals with equal probability.

        Returns a list of (n - 1) cut points separating the intervals.

        Set *n* to 4 for quartiles (the default).  Set *n* to 10 for deciles.
        Set *n* to 100 for percentiles which gives the 99 cuts points that
        separate the normal distribution in to 100 equal sized groups.
        csg|]}��|���qSr&)r�r��r,r�r&r'r��sz(NormalDist.quantiles.<locals>.<listcomp>r()rv)r�r,r&r�r'r�s	zNormalDist.quantilescCst|t�std��||}}|j|jf|j|jfkr>||}}|j|j}}|rT|s\td��||}t|j|j�}|s�dt|d|jt	d��S|j||j|}|j|jt	|d|t
||��}	||	|}
||	|}dt|�|
�|�|
��t|�|�|�|��S)a�Compute the overlapping coefficient (OVL) between two normal distributions.

        Measures the agreement between two normal probability distributions.
        Returns a value between 0.0 and 1.0 giving the overlapping area in
        the two underlying probability density functions.

            >>> N1 = NormalDist(2.4, 1.6)
            >>> N2 = NormalDist(3.2, 2.0)
            >>> N1.overlap(N2)
            0.8035050657330205
        z$Expected another NormalDist instancez(overlap() not defined when sigma is zeror�r�)rbrrFr�r�rrrrrrr�)r��other�X�YZX_varZY_varZdvZdmrR�b�x1�x2r&r&r'�overlap�s"


(zNormalDist.overlapcCs|jS)z+Arithmetic mean of the normal distribution.�r��r�r&r&r'r�szNormalDist.meancCs|jS)z,Return the median of the normal distributionr�r�r&r&r'r�szNormalDist.mediancCs|jS)z�Return the mode of the normal distribution

        The mode is the value x where which the probability density
        function (pdf) takes its maximum value.
        r�r�r&r&r'r�szNormalDist.modecCs|jS)z.Standard deviation of the normal distribution.�r�r�r&r&r'r�szNormalDist.stdevcCs
|jdS)z!Square of the standard deviation.r�r�r�r&r&r'rszNormalDist.variancecCs8t|t�r&t|j|jt|j|j��St|j||j�S)ajAdd a constant or another NormalDist instance.

        If *other* is a constant, translate mu by the constant,
        leaving sigma unchanged.

        If *other* is a NormalDist, add both the means and the variances.
        Mathematically, this works only if the two distributions are
        independent or if they are jointly normally distributed.
        �rbrr�rr��r�r�r&r&r'�__add__	s

zNormalDist.__add__cCs8t|t�r&t|j|jt|j|j��St|j||j�S)asSubtract a constant or another NormalDist instance.

        If *other* is a constant, translate by the constant mu,
        leaving sigma unchanged.

        If *other* is a NormalDist, subtract the means and add the variances.
        Mathematically, this works only if the two distributions are
        independent or if they are jointly normally distributed.
        r�r�r&r&r'�__sub__s

zNormalDist.__sub__cCst|j||jt|��S)z�Multiply both mu and sigma by a constant.

        Used for rescaling, perhaps to change measurement units.
        Sigma is scaled with the absolute value of the constant.
        �rr�r�rr�r&r&r'�__mul__%szNormalDist.__mul__cCst|j||jt|��S)z�Divide both mu and sigma by a constant.

        Used for rescaling, perhaps to change measurement units.
        Sigma is scaled with the absolute value of the constant.
        r�r�r&r&r'�__truediv__-szNormalDist.__truediv__cCst|j|j�S)zReturn a copy of the instance.�rr�r��r�r&r&r'�__pos__5szNormalDist.__pos__cCst|j|j�S)z(Negates mu while keeping sigma the same.r�r�r&r&r'�__neg__9szNormalDist.__neg__cCs
||S)z<Subtract a NormalDist from a constant or another NormalDist.r&r�r&r&r'�__rsub__?szNormalDist.__rsub__cCs&t|t�stS|j|jko$|j|jkS)zFTwo NormalDist objects are equal if their mu and sigma are both equal.)rbr�NotImplementedr�r�r�r&r&r'�__eq__Es
zNormalDist.__eq__cCst|j|jf�S)zCNormalDist objects hash equal if their mu and sigma are both equal.)�hashr�r�r�r&r&r'�__hash__KszNormalDist.__hash__cCs t|�j�d|j�d|j�d�S)Nz(mu=z, sigma=�))r2r#r�r�r�r&r&r'�__repr__OszNormalDist.__repr__)r�r�)rs) r#r$r%�__doc__�	__slots__r��classmethodr�r�r�r�r�rr��propertyrrrrrr�r�r�r�r�r��__radd__r��__rmul__r�r�r�r&r&r&r'r�sF�


"




)r��__main__)�isclose)�add�sub�mul�truediv)�repeat�
�����i��z
Test z with another NormalDist:�z with a constant:�z
Test constant with �:cCsdSr)r&)�G1�G2r&r&r'�assert_closesr�i�����I��/g`@@cCsg|]}|t�qSr&��srar&r&r'r��sr�cCsg|]}|t�qSr&r�rar&r&r'r��scCsg|]}|t�qSr&r�rar&r&r'r��scCsg|]}|t�qSr&r�rar&r&r'r��scCsg|]\}}||�qSr&r&�r*rA�yr&r&r'r��scCsg|]\}}||�qSr&r&r�r&r&r'r��s)r)rX)r()N)N)N)N)N)Rr��__all__r@rcr�Z	fractionsr�decimalr�	itertoolsrZbisectrrrrrrrrrr �operatorr!�collectionsr"rMrr>rBr0r.rPrTrWrZrrrrrr
r	rrrrrrrrr
r�rZ_statistics�ImportErrorr#r�r�r�r�r�r�ZdoctestZg1Zg2r,r�r�r��func�printr�r3Zconstr�r�r�r�rG�zipZtestmodr&r&r&r'�<module>s�S�(
: 

/
779

/
,

JQ






�
�


Filemanager

Name Type Size Permission Actions
__future__.cpython-38.opt-1.pyc File 4.08 KB 0644
__future__.cpython-38.opt-2.pyc File 2.15 KB 0644
__future__.cpython-38.pyc File 4.08 KB 0644
__phello__.foo.cpython-38.opt-1.pyc File 142 B 0644
__phello__.foo.cpython-38.opt-2.pyc File 142 B 0644
__phello__.foo.cpython-38.pyc File 142 B 0644
_bootlocale.cpython-38.opt-1.pyc File 1.2 KB 0644
_bootlocale.cpython-38.opt-2.pyc File 1007 B 0644
_bootlocale.cpython-38.pyc File 1.23 KB 0644
_collections_abc.cpython-38.opt-1.pyc File 28.08 KB 0644
_collections_abc.cpython-38.opt-2.pyc File 23.14 KB 0644
_collections_abc.cpython-38.pyc File 28.08 KB 0644
_compat_pickle.cpython-38.opt-1.pyc File 5.33 KB 0644
_compat_pickle.cpython-38.opt-2.pyc File 5.33 KB 0644
_compat_pickle.cpython-38.pyc File 5.39 KB 0644
_compression.cpython-38.opt-1.pyc File 4.06 KB 0644
_compression.cpython-38.opt-2.pyc File 3.85 KB 0644
_compression.cpython-38.pyc File 4.06 KB 0644
_dummy_thread.cpython-38.opt-1.pyc File 5.91 KB 0644
_dummy_thread.cpython-38.opt-2.pyc File 3.33 KB 0644
_dummy_thread.cpython-38.pyc File 5.91 KB 0644
_markupbase.cpython-38.opt-1.pyc File 7.45 KB 0644
_markupbase.cpython-38.opt-2.pyc File 7.08 KB 0644
_markupbase.cpython-38.pyc File 7.62 KB 0644
_osx_support.cpython-38.opt-1.pyc File 11.34 KB 0644
_osx_support.cpython-38.opt-2.pyc File 8.71 KB 0644
_osx_support.cpython-38.pyc File 11.34 KB 0644
_py_abc.cpython-38.opt-1.pyc File 4.54 KB 0644
_py_abc.cpython-38.opt-2.pyc File 3.35 KB 0644
_py_abc.cpython-38.pyc File 4.58 KB 0644
_pydecimal.cpython-38.opt-1.pyc File 156.98 KB 0644
_pydecimal.cpython-38.opt-2.pyc File 77.28 KB 0644
_pydecimal.cpython-38.pyc File 156.98 KB 0644
_pyio.cpython-38.opt-1.pyc File 72.34 KB 0644
_pyio.cpython-38.opt-2.pyc File 49.98 KB 0644
_pyio.cpython-38.pyc File 72.36 KB 0644
_sitebuiltins.cpython-38.opt-1.pyc File 3.41 KB 0644
_sitebuiltins.cpython-38.opt-2.pyc File 2.9 KB 0644
_sitebuiltins.cpython-38.pyc File 3.41 KB 0644
_strptime.cpython-38.opt-1.pyc File 15.68 KB 0644
_strptime.cpython-38.opt-2.pyc File 12.04 KB 0644
_strptime.cpython-38.pyc File 15.68 KB 0644
_sysconfigdata__linux_x86_64-linux-gnu.cpython-38.opt-1.pyc File 28 KB 0644
_sysconfigdata__linux_x86_64-linux-gnu.cpython-38.opt-2.pyc File 28 KB 0644
_sysconfigdata__linux_x86_64-linux-gnu.cpython-38.pyc File 28 KB 0644
_sysconfigdata_d_linux_x86_64-linux-gnu.cpython-38.opt-1.pyc File 27.87 KB 0644
_sysconfigdata_d_linux_x86_64-linux-gnu.cpython-38.opt-2.pyc File 27.87 KB 0644
_sysconfigdata_d_linux_x86_64-linux-gnu.cpython-38.pyc File 27.87 KB 0644
_threading_local.cpython-38.opt-1.pyc File 6.31 KB 0644
_threading_local.cpython-38.opt-2.pyc File 3.07 KB 0644
_threading_local.cpython-38.pyc File 6.31 KB 0644
_weakrefset.cpython-38.opt-1.pyc File 7.44 KB 0644
_weakrefset.cpython-38.opt-2.pyc File 7.44 KB 0644
_weakrefset.cpython-38.pyc File 7.44 KB 0644
abc.cpython-38.opt-1.pyc File 5.22 KB 0644
abc.cpython-38.opt-2.pyc File 3.15 KB 0644
abc.cpython-38.pyc File 5.22 KB 0644
aifc.cpython-38.opt-1.pyc File 24.89 KB 0644
aifc.cpython-38.opt-2.pyc File 19.81 KB 0644
aifc.cpython-38.pyc File 24.89 KB 0644
antigravity.cpython-38.opt-1.pyc File 812 B 0644
antigravity.cpython-38.opt-2.pyc File 668 B 0644
antigravity.cpython-38.pyc File 812 B 0644
argparse.cpython-38.opt-1.pyc File 60.69 KB 0644
argparse.cpython-38.opt-2.pyc File 51.66 KB 0644
argparse.cpython-38.pyc File 60.83 KB 0644
ast.cpython-38.opt-1.pyc File 16.35 KB 0644
ast.cpython-38.opt-2.pyc File 10.11 KB 0644
ast.cpython-38.pyc File 16.38 KB 0644
asynchat.cpython-38.opt-1.pyc File 6.71 KB 0644
asynchat.cpython-38.opt-2.pyc File 5.36 KB 0644
asynchat.cpython-38.pyc File 6.71 KB 0644
asyncore.cpython-38.opt-1.pyc File 15.67 KB 0644
asyncore.cpython-38.opt-2.pyc File 14.49 KB 0644
asyncore.cpython-38.pyc File 15.67 KB 0644
base64.cpython-38.opt-1.pyc File 16.53 KB 0644
base64.cpython-38.opt-2.pyc File 11.07 KB 0644
base64.cpython-38.pyc File 16.69 KB 0644
bdb.cpython-38.opt-1.pyc File 24.35 KB 0644
bdb.cpython-38.opt-2.pyc File 15.53 KB 0644
bdb.cpython-38.pyc File 24.35 KB 0644
binhex.cpython-38.opt-1.pyc File 11.86 KB 0644
binhex.cpython-38.opt-2.pyc File 11.34 KB 0644
binhex.cpython-38.pyc File 11.86 KB 0644
bisect.cpython-38.opt-1.pyc File 2.31 KB 0644
bisect.cpython-38.opt-2.pyc File 1.03 KB 0644
bisect.cpython-38.pyc File 2.31 KB 0644
bz2.cpython-38.opt-1.pyc File 11.19 KB 0644
bz2.cpython-38.opt-2.pyc File 6.25 KB 0644
bz2.cpython-38.pyc File 11.19 KB 0644
cProfile.cpython-38.opt-1.pyc File 5.37 KB 0644
cProfile.cpython-38.opt-2.pyc File 4.92 KB 0644
cProfile.cpython-38.pyc File 5.37 KB 0644
calendar.cpython-38.opt-1.pyc File 26.44 KB 0644
calendar.cpython-38.opt-2.pyc File 21.96 KB 0644
calendar.cpython-38.pyc File 26.44 KB 0644
cgi.cpython-38.opt-1.pyc File 25.94 KB 0644
cgi.cpython-38.opt-2.pyc File 17.71 KB 0644
cgi.cpython-38.pyc File 25.94 KB 0644
cgitb.cpython-38.opt-1.pyc File 9.93 KB 0644
cgitb.cpython-38.opt-2.pyc File 8.37 KB 0644
cgitb.cpython-38.pyc File 9.93 KB 0644
chunk.cpython-38.opt-1.pyc File 4.74 KB 0644
chunk.cpython-38.opt-2.pyc File 2.65 KB 0644
chunk.cpython-38.pyc File 4.74 KB 0644
cmd.cpython-38.opt-1.pyc File 12.34 KB 0644
cmd.cpython-38.opt-2.pyc File 7.05 KB 0644
cmd.cpython-38.pyc File 12.34 KB 0644
code.cpython-38.opt-1.pyc File 9.7 KB 0644
code.cpython-38.opt-2.pyc File 4.55 KB 0644
code.cpython-38.pyc File 9.7 KB 0644
codecs.cpython-38.opt-1.pyc File 33.17 KB 0644
codecs.cpython-38.opt-2.pyc File 17.97 KB 0644
codecs.cpython-38.pyc File 33.17 KB 0644
codeop.cpython-38.opt-1.pyc File 6.28 KB 0644
codeop.cpython-38.opt-2.pyc File 2.32 KB 0644
codeop.cpython-38.pyc File 6.28 KB 0644
colorsys.cpython-38.opt-1.pyc File 3.18 KB 0644
colorsys.cpython-38.opt-2.pyc File 2.59 KB 0644
colorsys.cpython-38.pyc File 3.18 KB 0644
compileall.cpython-38.opt-1.pyc File 9.2 KB 0644
compileall.cpython-38.opt-2.pyc File 6.88 KB 0644
compileall.cpython-38.pyc File 9.2 KB 0644
configparser.cpython-38.opt-1.pyc File 44.66 KB 0644
configparser.cpython-38.opt-2.pyc File 30.08 KB 0644
configparser.cpython-38.pyc File 44.66 KB 0644
contextlib.cpython-38.opt-1.pyc File 19.72 KB 0644
contextlib.cpython-38.opt-2.pyc File 14.27 KB 0644
contextlib.cpython-38.pyc File 19.77 KB 0644
contextvars.cpython-38.opt-1.pyc File 258 B 0644
contextvars.cpython-38.opt-2.pyc File 258 B 0644
contextvars.cpython-38.pyc File 258 B 0644
copy.cpython-38.opt-1.pyc File 6.84 KB 0644
copy.cpython-38.opt-2.pyc File 4.58 KB 0644
copy.cpython-38.pyc File 6.84 KB 0644
copyreg.cpython-38.opt-1.pyc File 4.2 KB 0644
copyreg.cpython-38.opt-2.pyc File 3.41 KB 0644
copyreg.cpython-38.pyc File 4.23 KB 0644
crypt.cpython-38.opt-1.pyc File 3.32 KB 0644
crypt.cpython-38.opt-2.pyc File 2.68 KB 0644
crypt.cpython-38.pyc File 3.32 KB 0644
csv.cpython-38.opt-1.pyc File 11.65 KB 0644
csv.cpython-38.opt-2.pyc File 9.65 KB 0644
csv.cpython-38.pyc File 11.65 KB 0644
dataclasses.cpython-38.opt-1.pyc File 23.11 KB 0644
dataclasses.cpython-38.opt-2.pyc File 19.75 KB 0644
dataclasses.cpython-38.pyc File 23.11 KB 0644
datetime.cpython-38.opt-1.pyc File 54.64 KB 0644
datetime.cpython-38.opt-2.pyc File 46.4 KB 0644
datetime.cpython-38.pyc File 55.85 KB 0644
decimal.cpython-38.opt-1.pyc File 374 B 0644
decimal.cpython-38.opt-2.pyc File 374 B 0644
decimal.cpython-38.pyc File 374 B 0644
difflib.cpython-38.opt-1.pyc File 58.02 KB 0644
difflib.cpython-38.opt-2.pyc File 24.35 KB 0644
difflib.cpython-38.pyc File 58.06 KB 0644
dis.cpython-38.opt-1.pyc File 15.45 KB 0644
dis.cpython-38.opt-2.pyc File 11.73 KB 0644
dis.cpython-38.pyc File 15.45 KB 0644
doctest.cpython-38.opt-1.pyc File 73.97 KB 0644
doctest.cpython-38.opt-2.pyc File 39.49 KB 0644
doctest.cpython-38.pyc File 74.21 KB 0644
dummy_threading.cpython-38.opt-1.pyc File 1.1 KB 0644
dummy_threading.cpython-38.opt-2.pyc File 752 B 0644
dummy_threading.cpython-38.pyc File 1.1 KB 0644
enum.cpython-38.opt-1.pyc File 25.37 KB 0644
enum.cpython-38.opt-2.pyc File 20.56 KB 0644
enum.cpython-38.pyc File 25.37 KB 0644
filecmp.cpython-38.opt-1.pyc File 8.24 KB 0644
filecmp.cpython-38.opt-2.pyc File 5.89 KB 0644
filecmp.cpython-38.pyc File 8.24 KB 0644
fileinput.cpython-38.opt-1.pyc File 13.07 KB 0644
fileinput.cpython-38.opt-2.pyc File 7.6 KB 0644
fileinput.cpython-38.pyc File 13.07 KB 0644
fnmatch.cpython-38.opt-1.pyc File 3.29 KB 0644
fnmatch.cpython-38.opt-2.pyc File 2.11 KB 0644
fnmatch.cpython-38.pyc File 3.29 KB 0644
formatter.cpython-38.opt-1.pyc File 17.15 KB 0644
formatter.cpython-38.opt-2.pyc File 14.77 KB 0644
formatter.cpython-38.pyc File 17.15 KB 0644
fractions.cpython-38.opt-1.pyc File 18.31 KB 0644
fractions.cpython-38.opt-2.pyc File 11.1 KB 0644
fractions.cpython-38.pyc File 18.31 KB 0644
ftplib.cpython-38.opt-1.pyc File 27.37 KB 0644
ftplib.cpython-38.opt-2.pyc File 17.8 KB 0644
ftplib.cpython-38.pyc File 27.37 KB 0644
functools.cpython-38.opt-1.pyc File 27.26 KB 0644
functools.cpython-38.opt-2.pyc File 20.76 KB 0644
functools.cpython-38.pyc File 27.26 KB 0644
genericpath.cpython-38.opt-1.pyc File 3.92 KB 0644
genericpath.cpython-38.opt-2.pyc File 2.81 KB 0644
genericpath.cpython-38.pyc File 3.92 KB 0644
getopt.cpython-38.opt-1.pyc File 6.11 KB 0644
getopt.cpython-38.opt-2.pyc File 3.61 KB 0644
getopt.cpython-38.pyc File 6.14 KB 0644
getpass.cpython-38.opt-1.pyc File 4.09 KB 0644
getpass.cpython-38.opt-2.pyc File 2.94 KB 0644
getpass.cpython-38.pyc File 4.09 KB 0644
gettext.cpython-38.opt-1.pyc File 17.48 KB 0644
gettext.cpython-38.opt-2.pyc File 16.8 KB 0644
gettext.cpython-38.pyc File 17.48 KB 0644
glob.cpython-38.opt-1.pyc File 4.19 KB 0644
glob.cpython-38.opt-2.pyc File 3.35 KB 0644
glob.cpython-38.pyc File 4.26 KB 0644
gzip.cpython-38.opt-1.pyc File 17.77 KB 0644
gzip.cpython-38.opt-2.pyc File 14 KB 0644
gzip.cpython-38.pyc File 17.77 KB 0644
hashlib.cpython-38.opt-1.pyc File 6.58 KB 0644
hashlib.cpython-38.opt-2.pyc File 6.03 KB 0644
hashlib.cpython-38.pyc File 6.58 KB 0644
heapq.cpython-38.opt-1.pyc File 13.75 KB 0644
heapq.cpython-38.opt-2.pyc File 10.81 KB 0644
heapq.cpython-38.pyc File 13.75 KB 0644
hmac.cpython-38.opt-1.pyc File 6.25 KB 0644
hmac.cpython-38.opt-2.pyc File 3.79 KB 0644
hmac.cpython-38.pyc File 6.25 KB 0644
imaplib.cpython-38.opt-1.pyc File 38.26 KB 0644
imaplib.cpython-38.opt-2.pyc File 26.56 KB 0644
imaplib.cpython-38.pyc File 40.39 KB 0644
imghdr.cpython-38.opt-1.pyc File 4.04 KB 0644
imghdr.cpython-38.opt-2.pyc File 3.73 KB 0644
imghdr.cpython-38.pyc File 4.04 KB 0644
imp.cpython-38.opt-1.pyc File 9.59 KB 0644
imp.cpython-38.opt-2.pyc File 7.28 KB 0644
imp.cpython-38.pyc File 9.59 KB 0644
inspect.cpython-38.opt-1.pyc File 78.44 KB 0644
inspect.cpython-38.opt-2.pyc File 53.92 KB 0644
inspect.cpython-38.pyc File 78.72 KB 0644
io.cpython-38.opt-1.pyc File 3.39 KB 0644
io.cpython-38.opt-2.pyc File 1.93 KB 0644
io.cpython-38.pyc File 3.39 KB 0644
ipaddress.cpython-38.opt-1.pyc File 58.59 KB 0644
ipaddress.cpython-38.opt-2.pyc File 35.3 KB 0644
ipaddress.cpython-38.pyc File 58.59 KB 0644
keyword.cpython-38.opt-1.pyc File 1013 B 0644
keyword.cpython-38.opt-2.pyc File 586 B 0644
keyword.cpython-38.pyc File 1013 B 0644
linecache.cpython-38.opt-1.pyc File 3.79 KB 0644
linecache.cpython-38.opt-2.pyc File 2.71 KB 0644
linecache.cpython-38.pyc File 3.79 KB 0644
locale.cpython-38.opt-1.pyc File 33.89 KB 0644
locale.cpython-38.opt-2.pyc File 29.38 KB 0644
locale.cpython-38.pyc File 33.89 KB 0644
lzma.cpython-38.opt-1.pyc File 11.75 KB 0644
lzma.cpython-38.opt-2.pyc File 5.73 KB 0644
lzma.cpython-38.pyc File 11.75 KB 0644
mailbox.cpython-38.opt-1.pyc File 58.79 KB 0644
mailbox.cpython-38.opt-2.pyc File 52.34 KB 0644
mailbox.cpython-38.pyc File 58.87 KB 0644
mailcap.cpython-38.opt-1.pyc File 6.34 KB 0644
mailcap.cpython-38.opt-2.pyc File 4.86 KB 0644
mailcap.cpython-38.pyc File 6.34 KB 0644
mimetypes.cpython-38.opt-1.pyc File 15.67 KB 0644
mimetypes.cpython-38.opt-2.pyc File 9.8 KB 0644
mimetypes.cpython-38.pyc File 15.67 KB 0644
modulefinder.cpython-38.opt-1.pyc File 15.69 KB 0644
modulefinder.cpython-38.opt-2.pyc File 14.8 KB 0644
modulefinder.cpython-38.pyc File 15.75 KB 0644
netrc.cpython-38.opt-1.pyc File 3.7 KB 0644
netrc.cpython-38.opt-2.pyc File 3.47 KB 0644
netrc.cpython-38.pyc File 3.7 KB 0644
nntplib.cpython-38.opt-1.pyc File 33.19 KB 0644
nntplib.cpython-38.opt-2.pyc File 20.98 KB 0644
nntplib.cpython-38.pyc File 33.19 KB 0644
ntpath.cpython-38.opt-1.pyc File 14.33 KB 0644
ntpath.cpython-38.opt-2.pyc File 12.33 KB 0644
ntpath.cpython-38.pyc File 14.33 KB 0644
nturl2path.cpython-38.opt-1.pyc File 1.72 KB 0644
nturl2path.cpython-38.opt-2.pyc File 1.31 KB 0644
nturl2path.cpython-38.pyc File 1.72 KB 0644
numbers.cpython-38.opt-1.pyc File 11.93 KB 0644
numbers.cpython-38.opt-2.pyc File 8.16 KB 0644
numbers.cpython-38.pyc File 11.93 KB 0644
opcode.cpython-38.opt-1.pyc File 5.31 KB 0644
opcode.cpython-38.opt-2.pyc File 5.17 KB 0644
opcode.cpython-38.pyc File 5.31 KB 0644
operator.cpython-38.opt-1.pyc File 13.38 KB 0644
operator.cpython-38.opt-2.pyc File 11.07 KB 0644
operator.cpython-38.pyc File 13.38 KB 0644
optparse.cpython-38.opt-1.pyc File 46.86 KB 0644
optparse.cpython-38.opt-2.pyc File 34.84 KB 0644
optparse.cpython-38.pyc File 46.95 KB 0644
os.cpython-38.opt-1.pyc File 30.64 KB 0644
os.cpython-38.opt-2.pyc File 18.74 KB 0644
os.cpython-38.pyc File 30.68 KB 0644
pathlib.cpython-38.opt-1.pyc File 43.19 KB 0644
pathlib.cpython-38.opt-2.pyc File 34.71 KB 0644
pathlib.cpython-38.pyc File 43.19 KB 0644
pdb.cpython-38.opt-1.pyc File 46.08 KB 0644
pdb.cpython-38.opt-2.pyc File 32.34 KB 0644
pdb.cpython-38.pyc File 46.13 KB 0644
pickle.cpython-38.opt-1.pyc File 45.71 KB 0644
pickle.cpython-38.opt-2.pyc File 39.97 KB 0644
pickle.cpython-38.pyc File 45.82 KB 0644
pickletools.cpython-38.opt-1.pyc File 64.77 KB 0644
pickletools.cpython-38.opt-2.pyc File 55.89 KB 0644
pickletools.cpython-38.pyc File 65.64 KB 0644
pipes.cpython-38.opt-1.pyc File 7.63 KB 0644
pipes.cpython-38.opt-2.pyc File 4.83 KB 0644
pipes.cpython-38.pyc File 7.63 KB 0644
pkgutil.cpython-38.opt-1.pyc File 15.97 KB 0644
pkgutil.cpython-38.opt-2.pyc File 10.83 KB 0644
pkgutil.cpython-38.pyc File 15.97 KB 0644
platform.cpython-38.opt-1.pyc File 23.77 KB 0644
platform.cpython-38.opt-2.pyc File 16.08 KB 0644
platform.cpython-38.pyc File 23.77 KB 0644
plistlib.cpython-38.opt-1.pyc File 26.48 KB 0644
plistlib.cpython-38.opt-2.pyc File 23.5 KB 0644
plistlib.cpython-38.pyc File 26.54 KB 0644
poplib.cpython-38.opt-1.pyc File 13.16 KB 0644
poplib.cpython-38.opt-2.pyc File 8.34 KB 0644
poplib.cpython-38.pyc File 13.16 KB 0644
posixpath.cpython-38.opt-1.pyc File 10.2 KB 0644
posixpath.cpython-38.opt-2.pyc File 8.52 KB 0644
posixpath.cpython-38.pyc File 10.2 KB 0644
pprint.cpython-38.opt-1.pyc File 15.87 KB 0644
pprint.cpython-38.opt-2.pyc File 13.76 KB 0644
pprint.cpython-38.pyc File 15.91 KB 0644
profile.cpython-38.opt-1.pyc File 14.22 KB 0644
profile.cpython-38.opt-2.pyc File 11.31 KB 0644
profile.cpython-38.pyc File 14.43 KB 0644
pstats.cpython-38.opt-1.pyc File 21.56 KB 0644
pstats.cpython-38.opt-2.pyc File 19.1 KB 0644
pstats.cpython-38.pyc File 21.56 KB 0644
pty.cpython-38.opt-1.pyc File 3.88 KB 0644
pty.cpython-38.opt-2.pyc File 3.05 KB 0644
pty.cpython-38.pyc File 3.88 KB 0644
py_compile.cpython-38.opt-1.pyc File 7.23 KB 0644
py_compile.cpython-38.opt-2.pyc File 3.58 KB 0644
py_compile.cpython-38.pyc File 7.23 KB 0644
pyclbr.cpython-38.opt-1.pyc File 10.22 KB 0644
pyclbr.cpython-38.opt-2.pyc File 6.7 KB 0644
pyclbr.cpython-38.pyc File 10.22 KB 0644
pydoc.cpython-38.opt-1.pyc File 81.49 KB 0644
pydoc.cpython-38.opt-2.pyc File 72.17 KB 0644
pydoc.cpython-38.pyc File 81.54 KB 0644
queue.cpython-38.opt-1.pyc File 10.39 KB 0644
queue.cpython-38.opt-2.pyc File 6.16 KB 0644
queue.cpython-38.pyc File 10.39 KB 0644
quopri.cpython-38.opt-1.pyc File 5.46 KB 0644
quopri.cpython-38.opt-2.pyc File 4.45 KB 0644
quopri.cpython-38.pyc File 5.63 KB 0644
random.cpython-38.opt-1.pyc File 19.65 KB 0644
random.cpython-38.opt-2.pyc File 12.84 KB 0644
random.cpython-38.pyc File 19.65 KB 0644
re.cpython-38.opt-1.pyc File 14.1 KB 0644
re.cpython-38.opt-2.pyc File 5.96 KB 0644
re.cpython-38.pyc File 14.1 KB 0644
reprlib.cpython-38.opt-1.pyc File 5.19 KB 0644
reprlib.cpython-38.opt-2.pyc File 5.04 KB 0644
reprlib.cpython-38.pyc File 5.19 KB 0644
rlcompleter.cpython-38.opt-1.pyc File 5.63 KB 0644
rlcompleter.cpython-38.opt-2.pyc File 3.03 KB 0644
rlcompleter.cpython-38.pyc File 5.63 KB 0644
runpy.cpython-38.opt-1.pyc File 8 KB 0644
runpy.cpython-38.opt-2.pyc File 6.47 KB 0644
runpy.cpython-38.pyc File 8 KB 0644
sched.cpython-38.opt-1.pyc File 6.39 KB 0644
sched.cpython-38.opt-2.pyc File 3.44 KB 0644
sched.cpython-38.pyc File 6.39 KB 0644
secrets.cpython-38.opt-1.pyc File 2.15 KB 0644
secrets.cpython-38.opt-2.pyc File 1.12 KB 0644
secrets.cpython-38.pyc File 2.15 KB 0644
selectors.cpython-38.opt-1.pyc File 16.55 KB 0644
selectors.cpython-38.opt-2.pyc File 12.61 KB 0644
selectors.cpython-38.pyc File 16.55 KB 0644
shelve.cpython-38.opt-1.pyc File 9.28 KB 0644
shelve.cpython-38.opt-2.pyc File 5.23 KB 0644
shelve.cpython-38.pyc File 9.28 KB 0644
shlex.cpython-38.opt-1.pyc File 7.37 KB 0644
shlex.cpython-38.opt-2.pyc File 6.83 KB 0644
shlex.cpython-38.pyc File 7.37 KB 0644
shutil.cpython-38.opt-1.pyc File 36.36 KB 0644
shutil.cpython-38.opt-2.pyc File 25.17 KB 0644
shutil.cpython-38.pyc File 36.36 KB 0644
signal.cpython-38.opt-1.pyc File 2.79 KB 0644
signal.cpython-38.opt-2.pyc File 2.57 KB 0644
signal.cpython-38.pyc File 2.79 KB 0644
site.cpython-38.opt-1.pyc File 16.38 KB 0644
site.cpython-38.opt-2.pyc File 10.97 KB 0644
site.cpython-38.pyc File 16.38 KB 0644
smtpd.cpython-38.opt-1.pyc File 25.86 KB 0644
smtpd.cpython-38.opt-2.pyc File 23.3 KB 0644
smtpd.cpython-38.pyc File 25.86 KB 0644
smtplib.cpython-38.opt-1.pyc File 34.79 KB 0644
smtplib.cpython-38.opt-2.pyc File 18.81 KB 0644
smtplib.cpython-38.pyc File 34.85 KB 0644
sndhdr.cpython-38.opt-1.pyc File 6.84 KB 0644
sndhdr.cpython-38.opt-2.pyc File 5.59 KB 0644
sndhdr.cpython-38.pyc File 6.84 KB 0644
socket.cpython-38.opt-1.pyc File 27.11 KB 0644
socket.cpython-38.opt-2.pyc File 18.98 KB 0644
socket.cpython-38.pyc File 27.15 KB 0644
socketserver.cpython-38.opt-1.pyc File 24.78 KB 0644
socketserver.cpython-38.opt-2.pyc File 14.32 KB 0644
socketserver.cpython-38.pyc File 24.78 KB 0644
sre_compile.cpython-38.opt-1.pyc File 14.58 KB 0644
sre_compile.cpython-38.opt-2.pyc File 14.18 KB 0644
sre_compile.cpython-38.pyc File 14.8 KB 0644
sre_constants.cpython-38.opt-1.pyc File 6.22 KB 0644
sre_constants.cpython-38.opt-2.pyc File 5.81 KB 0644
sre_constants.cpython-38.pyc File 6.22 KB 0644
sre_parse.cpython-38.opt-1.pyc File 21.11 KB 0644
sre_parse.cpython-38.opt-2.pyc File 21.06 KB 0644
sre_parse.cpython-38.pyc File 21.15 KB 0644
ssl.cpython-38.opt-1.pyc File 43.57 KB 0644
ssl.cpython-38.opt-2.pyc File 32.84 KB 0644
ssl.cpython-38.pyc File 43.57 KB 0644
stat.cpython-38.opt-1.pyc File 4.28 KB 0644
stat.cpython-38.opt-2.pyc File 3.52 KB 0644
stat.cpython-38.pyc File 4.28 KB 0644
statistics.cpython-38.opt-1.pyc File 32.49 KB 0644
statistics.cpython-38.opt-2.pyc File 17.17 KB 0644
statistics.cpython-38.pyc File 32.88 KB 0644
string.cpython-38.opt-1.pyc File 7.14 KB 0644
string.cpython-38.opt-2.pyc File 6.06 KB 0644
string.cpython-38.pyc File 7.14 KB 0644
stringprep.cpython-38.opt-1.pyc File 10.72 KB 0644
stringprep.cpython-38.opt-2.pyc File 10.5 KB 0644
stringprep.cpython-38.pyc File 10.77 KB 0644
struct.cpython-38.opt-1.pyc File 345 B 0644
struct.cpython-38.opt-2.pyc File 345 B 0644
struct.cpython-38.pyc File 345 B 0644
subprocess.cpython-38.opt-1.pyc File 40.9 KB 0644
subprocess.cpython-38.opt-2.pyc File 29.25 KB 0644
subprocess.cpython-38.pyc File 41 KB 0644
sunau.cpython-38.opt-1.pyc File 16.69 KB 0644
sunau.cpython-38.opt-2.pyc File 12.21 KB 0644
sunau.cpython-38.pyc File 16.69 KB 0644
symbol.cpython-38.opt-1.pyc File 2.36 KB 0644
symbol.cpython-38.opt-2.pyc File 2.29 KB 0644
symbol.cpython-38.pyc File 2.36 KB 0644
symtable.cpython-38.opt-1.pyc File 10.98 KB 0644
symtable.cpython-38.opt-2.pyc File 10.21 KB 0644
symtable.cpython-38.pyc File 11.07 KB 0644
sysconfig.cpython-38.opt-1.pyc File 15.49 KB 0644
sysconfig.cpython-38.opt-2.pyc File 13.17 KB 0644
sysconfig.cpython-38.pyc File 15.49 KB 0644
tabnanny.cpython-38.opt-1.pyc File 6.88 KB 0644
tabnanny.cpython-38.opt-2.pyc File 5.97 KB 0644
tabnanny.cpython-38.pyc File 6.88 KB 0644
tarfile.cpython-38.opt-1.pyc File 61.18 KB 0644
tarfile.cpython-38.opt-2.pyc File 47.61 KB 0644
tarfile.cpython-38.pyc File 61.21 KB 0644
telnetlib.cpython-38.opt-1.pyc File 17.82 KB 0644
telnetlib.cpython-38.opt-2.pyc File 10.5 KB 0644
telnetlib.cpython-38.pyc File 17.82 KB 0644
tempfile.cpython-38.opt-1.pyc File 22.86 KB 0644
tempfile.cpython-38.opt-2.pyc File 16.49 KB 0644
tempfile.cpython-38.pyc File 22.86 KB 0644
textwrap.cpython-38.opt-1.pyc File 13.14 KB 0644
textwrap.cpython-38.opt-2.pyc File 6.1 KB 0644
textwrap.cpython-38.pyc File 13.22 KB 0644
this.cpython-38.opt-1.pyc File 1.25 KB 0644
this.cpython-38.opt-2.pyc File 1.25 KB 0644
this.cpython-38.pyc File 1.25 KB 0644
threading.cpython-38.opt-1.pyc File 38.52 KB 0644
threading.cpython-38.opt-2.pyc File 22.33 KB 0644
threading.cpython-38.pyc File 39.05 KB 0644
timeit.cpython-38.opt-1.pyc File 11.52 KB 0644
timeit.cpython-38.opt-2.pyc File 5.8 KB 0644
timeit.cpython-38.pyc File 11.52 KB 0644
token.cpython-38.opt-1.pyc File 2.44 KB 0644
token.cpython-38.opt-2.pyc File 2.41 KB 0644
token.cpython-38.pyc File 2.44 KB 0644
tokenize.cpython-38.opt-1.pyc File 16.73 KB 0644
tokenize.cpython-38.opt-2.pyc File 13.05 KB 0644
tokenize.cpython-38.pyc File 16.77 KB 0644
trace.cpython-38.opt-1.pyc File 19.57 KB 0644
trace.cpython-38.opt-2.pyc File 16.63 KB 0644
trace.cpython-38.pyc File 19.57 KB 0644
traceback.cpython-38.opt-1.pyc File 19.49 KB 0644
traceback.cpython-38.opt-2.pyc File 10.79 KB 0644
traceback.cpython-38.pyc File 19.49 KB 0644
tracemalloc.cpython-38.opt-1.pyc File 16.97 KB 0644
tracemalloc.cpython-38.opt-2.pyc File 15.59 KB 0644
tracemalloc.cpython-38.pyc File 16.97 KB 0644
tty.cpython-38.opt-1.pyc File 1.07 KB 0644
tty.cpython-38.opt-2.pyc File 982 B 0644
tty.cpython-38.pyc File 1.07 KB 0644
types.cpython-38.opt-1.pyc File 8.98 KB 0644
types.cpython-38.opt-2.pyc File 7.78 KB 0644
types.cpython-38.pyc File 8.98 KB 0644
typing.cpython-38.opt-1.pyc File 60.92 KB 0644
typing.cpython-38.opt-2.pyc File 44.57 KB 0644
typing.cpython-38.pyc File 60.97 KB 0644
uu.cpython-38.opt-1.pyc File 3.54 KB 0644
uu.cpython-38.opt-2.pyc File 3.3 KB 0644
uu.cpython-38.pyc File 3.54 KB 0644
uuid.cpython-38.opt-1.pyc File 23.01 KB 0644
uuid.cpython-38.opt-2.pyc File 16.02 KB 0644
uuid.cpython-38.pyc File 23.14 KB 0644
warnings.cpython-38.opt-1.pyc File 12.9 KB 0644
warnings.cpython-38.opt-2.pyc File 10.68 KB 0644
warnings.cpython-38.pyc File 13.35 KB 0644
wave.cpython-38.opt-1.pyc File 17.69 KB 0644
wave.cpython-38.opt-2.pyc File 11.84 KB 0644
wave.cpython-38.pyc File 17.74 KB 0644
weakref.cpython-38.opt-1.pyc File 19.05 KB 0644
weakref.cpython-38.opt-2.pyc File 15.84 KB 0644
weakref.cpython-38.pyc File 19.08 KB 0644
webbrowser.cpython-38.opt-1.pyc File 16.7 KB 0644
webbrowser.cpython-38.opt-2.pyc File 14.35 KB 0644
webbrowser.cpython-38.pyc File 16.73 KB 0644
xdrlib.cpython-38.opt-1.pyc File 8.04 KB 0644
xdrlib.cpython-38.opt-2.pyc File 7.57 KB 0644
xdrlib.cpython-38.pyc File 8.04 KB 0644
zipapp.cpython-38.opt-1.pyc File 5.73 KB 0644
zipapp.cpython-38.opt-2.pyc File 4.58 KB 0644
zipapp.cpython-38.pyc File 5.73 KB 0644
zipfile.cpython-38.opt-1.pyc File 57.12 KB 0644
zipfile.cpython-38.opt-2.pyc File 48.64 KB 0644
zipfile.cpython-38.pyc File 57.16 KB 0644
zipimport.cpython-38.opt-1.pyc File 16.78 KB 0644
zipimport.cpython-38.opt-2.pyc File 13.35 KB 0644
zipimport.cpython-38.pyc File 16.88 KB 0644