<!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>
ó
{fc           @   sn   d  Z  d d d d g Z d d l Z d d l m Z d   Z d	   Z d
   Z d   Z	 d   Z
 d   Z d S(   s    Encodings and related functions.t   encode_7or8bitt   encode_base64t   encode_noopt   encode_quoprii˙˙˙˙N(   t   encodestringc         C   s"   t  |  d t } | j d d  S(   Nt	   quotetabst    s   =20(   t   _encodestringt   Truet   replace(   t   st   enc(    (    s&   /usr/lib64/python2.7/email/encoders.pyt   _qencode   s    c         C   sL   |  s
 |  S|  d d k } t  j |   } | rH | d d k rH | d  S| S(   Ni˙˙˙˙s   
(   t   base64R   (   R
   t
   hasnewlinet   value(    (    s&   /usr/lib64/python2.7/email/encoders.pyt   _bencode   s    c         C   s3   |  j    } t |  } |  j |  d |  d <d S(   sl   Encode the message's payload in Base64.

    Also, add an appropriate Content-Transfer-Encoding header.
    R   s   Content-Transfer-EncodingN(   t   get_payloadR   t   set_payload(   t   msgt   origt   encdata(    (    s&   /usr/lib64/python2.7/email/encoders.pyR   '   s    c         C   s3   |  j    } t |  } |  j |  d |  d <d S(   sv   Encode the message's payload in quoted-printable.

    Also, add an appropriate Content-Transfer-Encoding header.
    s   quoted-printables   Content-Transfer-EncodingN(   R   R   R   (   R   R   R   (    (    s&   /usr/lib64/python2.7/email/encoders.pyR   3   s    c         C   sc   |  j    } | d k r& d |  d <d Sy | j d  Wn t k
 rT d |  d <n Xd |  d <d S(   s9   Set the Content-Transfer-Encoding header to 7bit or 8bit.t   7bits   Content-Transfer-EncodingNt   asciit   8bit(   R   t   Nonet   encodet   UnicodeError(   R   R   (    (    s&   /usr/lib64/python2.7/email/encoders.pyR    ?   s    
c         C   s   d S(   s   Do nothing.N(    (   R   (    (    s&   /usr/lib64/python2.7/email/encoders.pyR   Q   t    (   t   __doc__t   __all__R   t   quopriR   R   R   R   R   R   R    R   (    (    (    s&   /usr/lib64/python2.7/email/encoders.pyt   <module>   s   						