<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
        integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
        integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
        crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
</html>
ó
ïRec           @   sÆ   d  d l  Z  d  d l Z d  d l Z d d l m Z m Z m Z m Z d d l m	 Z	 m
 Z
 m Z d d l m Z m Z d Z e d k	 r– e	 ƒ  Z n  d e f d „  ƒ  YZ d e f d	 „  ƒ  YZ d S(
   iÿÿÿÿNi   (   t   AnsiForet   AnsiBackt	   AnsiStylet   Style(   t   WinTermt   WinColort   WinStyle(   t   windllt   winapi_testt   StreamWrapperc           B   sS   e  Z d  Z d „  Z d „  Z d „  Z d „  Z d „  Z d „  Z e	 d „  ƒ Z
 RS(   s´   
    Wraps a stream (such as stdout), acting as a transparent proxy for all
    attribute access apart from method 'write()', which is delegated to our
    Converter instance.
    c         C   s   | |  _  | |  _ d  S(   N(   t   _StreamWrapper__wrappedt   _StreamWrapper__convertor(   t   selft   wrappedt	   converter(    (    s   /builddir/build/BUILDROOT/alt-python27-pip-20.2.4-5.el8.x86_64/opt/alt/python27/lib/python2.7/site-packages/pip/_vendor/colorama/ansitowin32.pyt   __init__   s    	c         C   s   t  |  j | ƒ S(   N(   t   getattrR
   (   R   t   name(    (    s   /builddir/build/BUILDROOT/alt-python27-pip-20.2.4-5.el8.x86_64/opt/alt/python27/lib/python2.7/site-packages/pip/_vendor/colorama/ansitowin32.pyt   __getattr__   s    c         O   s   |  j  j | | Ž  S(   N(   R
   t	   __enter__(   R   t   argst   kwargs(    (    s   /builddir/build/BUILDROOT/alt-python27-pip-20.2.4-5.el8.x86_64/opt/alt/python27/lib/python2.7/site-packages/pip/_vendor/colorama/ansitowin32.pyR      s    c         O   s   |  j  j | | Ž  S(   N(   R
   t   __exit__(   R   R   R   (    (    s   /builddir/build/BUILDROOT/alt-python27-pip-20.2.4-5.el8.x86_64/opt/alt/python27/lib/python2.7/site-packages/pip/_vendor/colorama/ansitowin32.pyR   %   s    c         C   s   |  j  j | ƒ d  S(   N(   R   t   write(   R   t   text(    (    s   /builddir/build/BUILDROOT/alt-python27-pip-20.2.4-5.el8.x86_64/opt/alt/python27/lib/python2.7/site-packages/pip/_vendor/colorama/ansitowin32.pyR   (   s    c         C   sv   |  j  } d t j k rI | d  k	 rI | t j k sB | t j k rI t Sn  y | j } Wn t	 k
 rj t
 SX| ƒ  Sd  S(   Nt   PYCHARM_HOSTED(   R
   t   ost   environt   Nonet   syst
   __stdout__t
   __stderr__t   Truet   isattyt   AttributeErrort   False(   R   t   streamt   stream_isatty(    (    s   /builddir/build/BUILDROOT/alt-python27-pip-20.2.4-5.el8.x86_64/opt/alt/python27/lib/python2.7/site-packages/pip/_vendor/colorama/ansitowin32.pyR!   +   s    	*c         C   s-   |  j  } y | j SWn t k
 r( t SXd  S(   N(   R
   t   closedR"   R    (   R   R$   (    (    s   /builddir/build/BUILDROOT/alt-python27-pip-20.2.4-5.el8.x86_64/opt/alt/python27/lib/python2.7/site-packages/pip/_vendor/colorama/ansitowin32.pyR&   7   s
    	(   t   __name__t
   __module__t   __doc__R   R   R   R   R   R!   t   propertyR&   (    (    (    s   /builddir/build/BUILDROOT/alt-python27-pip-20.2.4-5.el8.x86_64/opt/alt/python27/lib/python2.7/site-packages/pip/_vendor/colorama/ansitowin32.pyR	      s   						t   AnsiToWin32c           B   s˜   e  Z d  Z e j d ƒ Z e j d ƒ Z d d e d „ Z	 d „  Z
 d „  Z d „  Z d „  Z d „  Z d	 „  Z d
 „  Z d „  Z d „  Z d „  Z RS(   s¾   
    Implements a 'write()' method which, on Windows, will strip ANSI character
    sequences from the text, and if outputting to a tty, will convert them into
    win32 function calls.
    s   ?\[((?:\d|;)*)([a-zA-Z])?s   ?\]((?:.|;)*?)()?c         C   sß   | |  _  | |  _ t | |  ƒ |  _ t j d k } | o? t ƒ  } | d  k rt | pn |  j j on |  j j	 ƒ  } n  | |  _
 | d  k r® | o¨ |  j j o¨ |  j j	 ƒ  } n  | |  _ |  j ƒ  |  _ |  j  t j k |  _ d  S(   Nt   nt(   R   t	   autoresetR	   R$   R   R   R   R   R&   R!   t   stript   convertt   get_win32_callst   win32_callsR   t   stderrt	   on_stderr(   R   R   R/   R.   R-   t
   on_windowst   conversion_supported(    (    s   /builddir/build/BUILDROOT/alt-python27-pip-20.2.4-5.el8.x86_64/opt/alt/python27/lib/python2.7/site-packages/pip/_vendor/colorama/ansitowin32.pyR   I   s    		&	%	c         C   s   |  j  p |  j p |  j S(   sj  
        True if this class is actually needed. If false, then the output
        stream will not be affected, nor will win32 calls be issued, so
        wrapping stdout is not actually required. This will generally be
        False on non-Windows platforms, unless optional functionality like
        autoreset has been requested using kwargs to init()
        (   R/   R.   R-   (   R   (    (    s   /builddir/build/BUILDROOT/alt-python27-pip-20.2.4-5.el8.x86_64/opt/alt/python27/lib/python2.7/site-packages/pip/_vendor/colorama/ansitowin32.pyt   should_wrapj   s    c         C   s|  |  j  rut rui& t j f t j 6t j t j f t j 6t j t j f t j	 6t j t j f t j 6t j
 t j f t j 6t j
 t j f t j 6t j
 t j f t j 6t j
 t j f t j 6t j
 t j f t j 6t j
 t j f t j 6t j
 t j f t j 6t j
 t j f t j 6t j
 f t j 6t j
 t j t f t j 6t j
 t j t f t j 6t j
 t j t f t j 6t j
 t j t f t j 6t j
 t j t f t j 6t j
 t j t f t j 6t j
 t j t f t j 6t j
 t j t f t j 6t j  t j f t! j 6t j  t j f t! j 6t j  t j f t! j 6t j  t j f t! j 6t j  t j f t! j 6t j  t j f t! j 6t j  t j f t! j 6t j  t j f t! j 6t j  f t! j 6t j  t j t f t! j 6t j  t j t f t! j 6t j  t j t f t! j 6t j  t j t f t! j 6t j  t j t f t! j 6t j  t j t f t! j 6t j  t j t f t! j 6t j  t j t f t! j 6St" ƒ  S(   N(#   R/   t   wintermt	   reset_allR   t	   RESET_ALLt   styleR   t   BRIGHTt   NORMALt   DIMt   foreR   t   BLACKR    t   REDt   GREENt   YELLOWt   BLUEt   MAGENTAt   CYANt   GREYt   WHITEt   RESETR    t   LIGHTBLACK_EXt   LIGHTRED_EXt   LIGHTGREEN_EXt   LIGHTYELLOW_EXt   LIGHTBLUE_EXt   LIGHTMAGENTA_EXt   LIGHTCYAN_EXt   LIGHTWHITE_EXt   backR   t   dict(   R   (    (    s   /builddir/build/BUILDROOT/alt-python27-pip-20.2.4-5.el8.x86_64/opt/alt/python27/lib/python2.7/site-packages/pip/_vendor/colorama/ansitowin32.pyR0   t   sR    c         C   sY   |  j  s |  j r" |  j | ƒ n |  j j | ƒ |  j j ƒ  |  j rU |  j ƒ  n  d  S(   N(   R.   R/   t   write_and_convertR   R   t   flushR-   R8   (   R   R   (    (    s   /builddir/build/BUILDROOT/alt-python27-pip-20.2.4-5.el8.x86_64/opt/alt/python27/lib/python2.7/site-packages/pip/_vendor/colorama/ansitowin32.pyR       s    	c         C   sM   |  j  r |  j d d ƒ n- |  j rI |  j j rI |  j j t j ƒ n  d  S(   Nt   mi    (   i    (	   R/   t
   call_win32R.   R$   R&   R   R   R   R9   (   R   (    (    s   /builddir/build/BUILDROOT/alt-python27-pip-20.2.4-5.el8.x86_64/opt/alt/python27/lib/python2.7/site-packages/pip/_vendor/colorama/ansitowin32.pyR8   ª   s    	c         C   s   d } |  j  | ƒ } xX |  j j | ƒ D]D } | j ƒ  \ } } |  j | | | ƒ |  j | j ƒ  Œ  | } q( W|  j | | t | ƒ ƒ d S(   sª   
        Write the given text to our wrapped stream, stripping any ANSI
        sequences from the text, and optionally converting them into win32
        calls.
        i    N(   t   convert_osct   ANSI_CSI_REt   finditert   spant   write_plain_textt   convert_ansit   groupst   len(   R   R   t   cursort   matcht   startt   end(    (    s   /builddir/build/BUILDROOT/alt-python27-pip-20.2.4-5.el8.x86_64/opt/alt/python27/lib/python2.7/site-packages/pip/_vendor/colorama/ansitowin32.pyRS   ±   s    
c         C   s7   | | k  r3 |  j  j | | | !ƒ |  j  j ƒ  n  d  S(   N(   R   R   RT   (   R   R   Ra   Rb   (    (    s   /builddir/build/BUILDROOT/alt-python27-pip-20.2.4-5.el8.x86_64/opt/alt/python27/lib/python2.7/site-packages/pip/_vendor/colorama/ansitowin32.pyR[   Á   s    c         C   s2   |  j  r. |  j | | ƒ } |  j | | ƒ n  d  S(   N(   R/   t   extract_paramsRV   (   R   t   paramstringt   commandt   params(    (    s   /builddir/build/BUILDROOT/alt-python27-pip-20.2.4-5.el8.x86_64/opt/alt/python27/lib/python2.7/site-packages/pip/_vendor/colorama/ansitowin32.pyR\   Ç   s    	c         C   s³   | d k rQ t  d „  | j d ƒ Dƒ ƒ } x t | ƒ d k  rM | d
 } q. Wn^ t  d „  | j d ƒ Dƒ ƒ } t | ƒ d k r¯ | d k r— d } q¯ | d	 k r¯ d } q¯ n  | S(   Nt   Hfc         s   s3   |  ]) } t  | ƒ d  k r' t | ƒ n d Vq d S(   i    i   N(   R^   t   int(   t   .0t   p(    (    s   /builddir/build/BUILDROOT/alt-python27-pip-20.2.4-5.el8.x86_64/opt/alt/python27/lib/python2.7/site-packages/pip/_vendor/colorama/ansitowin32.pys	   <genexpr>Ï   s    t   ;i   i   c         s   s-   |  ]# } t  | ƒ d  k r t | ƒ Vq d S(   i    N(   R^   Rh   (   Ri   Rj   (    (    s   /builddir/build/BUILDROOT/alt-python27-pip-20.2.4-5.el8.x86_64/opt/alt/python27/lib/python2.7/site-packages/pip/_vendor/colorama/ansitowin32.pys	   <genexpr>Ô   s    i    t   JKmt   ABCD(   i   (   i    (   i   (   t   tuplet   splitR^   (   R   Re   Rd   Rf   (    (    s   /builddir/build/BUILDROOT/alt-python27-pip-20.2.4-5.el8.x86_64/opt/alt/python27/lib/python2.7/site-packages/pip/_vendor/colorama/ansitowin32.pyRc   Í   s    	c         C   se  | d k rr xR| D]X } | |  j  k r |  j  | } | d } | d } t d |  j ƒ } | | | Ž  q q Wnï | d k r› t j | d d |  j ƒnÆ | d k rÄ t j | d d |  j ƒn | d k ré t j | d |  j ƒnx | d k ra| d } i d | f d	 6d | f d
 6| d f d 6| d f d 6| \ }	 }
 t j |	 |
 d |  j ƒn  d  S(   NRU   i    i   R3   t   Jt   KRg   Rm   t   At   Bt   Ct   D(   R1   RR   R3   R7   t   erase_screent
   erase_linet   set_cursor_positiont   cursor_adjust(   R   Re   Rf   t   paramt	   func_argst   funcR   R   t   nt   xt   y(    (    s   /builddir/build/BUILDROOT/alt-python27-pip-20.2.4-5.el8.x86_64/opt/alt/python27/lib/python2.7/site-packages/pip/_vendor/colorama/ansitowin32.pyRV   ß   s$    


Fc         C   s™   x’ |  j  j | ƒ D]~ } | j ƒ  \ } } | |  | | } | j ƒ  \ } } | d k r | j d ƒ } | d d k r‘ t j | d ƒ q‘ q q W| S(   Ns   Rk   i    t   02i   (   t   ANSI_OSC_RERY   RZ   R]   Ro   R7   t	   set_title(   R   R   R`   Ra   Rb   Rd   Re   Rf   (    (    s   /builddir/build/BUILDROOT/alt-python27-pip-20.2.4-5.el8.x86_64/opt/alt/python27/lib/python2.7/site-packages/pip/_vendor/colorama/ansitowin32.pyRW   õ   s    N(   R'   R(   R)   t   ret   compileRX   R   R   R#   R   R6   R0   R   R8   RS   R[   R\   Rc   RV   RW   (    (    (    s   /builddir/build/BUILDROOT/alt-python27-pip-20.2.4-5.el8.x86_64/opt/alt/python27/lib/python2.7/site-packages/pip/_vendor/colorama/ansitowin32.pyR+   @   s   !	
	,	
						(   Rƒ   R   R   t   ansiR    R   R   R   R7   R   R   R   t   win32R   R   R   t   objectR	   R+   (    (    (    s   /builddir/build/BUILDROOT/alt-python27-pip-20.2.4-5.el8.x86_64/opt/alt/python27/lib/python2.7/site-packages/pip/_vendor/colorama/ansitowin32.pyt   <module>   s   "0