✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ server366.web-hosting.com ​🇻​♯➤ 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2025

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 67.223.118.204 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.36
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /lib64/python3.8/email/__pycache__//_encoded_words.cpython-38.opt-1.pyc
U

e5dL!�@s�dZddlZddlZddlZddlZddlmZmZddlm	Z	ddddd	d
ddgZ
e�e�d
�j
dd��Zdd�ZGdd�de�Ze�Zdeed�<dd�Zdd	�Zdd�Zdd�Zdd
�Zeed�Zdd�Zeed�Zeed�Zddd�ZdS) z� Routines for manipulating RFC2047 encoded words.

This is currently a package-private API, but will be considered for promotion
to a public API if there is demand.

�N)�
ascii_letters�digits)�errors�decode_q�encode_q�decode_b�encode_b�len_q�len_b�decode�encodes=([a-fA-F0-9]{2})cCst�|�d����S)N�)�bytes�fromhex�groupr)�m�r�,/usr/lib64/python3.8/email/_encoded_words.py�<lambda>A�rcCs|�dd�}t|�gfS)N�_� )�replace�_q_byte_subber)�encodedrrrrCsc@s,eZdZde�d�e�d�Zdd�ZdS)�	_QByteMaps-!*+/�asciicCs.||jkrt|�||<nd�|�||<||S)Nz={:02X})�safe�chr�format)�self�keyrrr�__missing__Ms
z_QByteMap.__missing__N)�__name__�
__module__�__qualname__rrrrr"rrrrrIsr�_� cCsd�dd�|D��S)N�css|]}t|VqdS�N)�_q_byte_map��.0�xrrr�	<genexpr>Zszencode_q.<locals>.<genexpr>)�join��bstringrrrrYscCstdd�|D��S)Ncss|]}tt|�VqdSr))�lenr*r+rrrr.]szlen_q.<locals>.<genexpr>)�sumr0rrrr	\scCs�t|�d}|r ddd|�nd}z&tj||dd�|rDt��gngfWStjk
�r�ztj|dd�t��gfWYStjk
r�z,tj|ddd�t��t��gfWYYStjk
r�|t��gfYYYSXYnXYnXdS)N�s===rT)ZvalidateFs==)	r2�base64Z	b64decoderZInvalidBase64PaddingDefect�binascii�ErrorZInvalidBase64CharactersDefectZInvalidBase64LengthDefect)rZpad_errZmissing_paddingrrrrds(��
��cCst�|��d�S)Nr)r5Z	b64encoderr0rrrr�scCs&tt|�d�\}}|d|r dndS)N�r4r)�divmodr2)r1Zgroups_of_3Zleftoverrrrr
�s)�q�bc	
Cs�|�d�\}}}}}|�d�\}}}|��}|�dd�}t||�\}}z|�|�}Wnvtk
r�|�t�	d�
|���|�|d�}YnBtk
r�|�dd�}|��dkr�|�t�d�
|���YnX||||fS)a�Decode encoded word and return (string, charset, lang, defects) tuple.

    An RFC 2047/2243 encoded word has the form:

        =?charset*lang?cte?encoded_string?=

    where '*lang' may be omitted but the other parts may not be.

    This function expects exactly such a string (that is, it does not check the
    syntax and may raise errors if the string is not well formed), and returns
    the encoded_string decoded first from its Content Transfer Encoding and
    then from the resulting bytes into unicode using the specified charset.  If
    the cte-decoded string does not successfully decode using the specified
    character set, a defect is added to the defects list and the unknown octets
    are replaced by the unicode 'unknown' character \uFDFF.

    The specified charset and language are returned.  The default for language,
    which is rarely if ever encountered, is the empty string.

    �?�*r�surrogateescapez:Encoded word contains bytes not decodable using {} charset�unknown-8bitz<Unknown charset {} in encoded word; decoded as unknown bytes)
�split�	partition�lowerr�
_cte_decodersr�UnicodeError�appendrZUndecodableBytesDefectr�LookupErrorZCharsetError)	Zewr&�charsetZcteZ
cte_string�langr1Zdefects�stringrrrr�s&���utf-8r(cCs||dkr|�dd�}n
|�|�}|dkrTtd|�}td|�}||dkrPdnd}t||�}|rld|}d	�||||�S)
aEncode string using the CTE encoding that produces the shorter result.

    Produces an RFC 2047/2243 encoded word of the form:

        =?charset*lang?cte?encoded_string?=

    where '*lang' is omitted unless the 'lang' parameter is given a value.
    Optional argument charset (defaults to utf-8) specifies the charset to use
    to encode the string to binary before CTE encoding it.  Optional argument
    'encoding' is the cte specifier for the encoding that should be used ('q'
    or 'b'); if it is None (the default) the encoding which produces the
    shortest encoded sequence is used, except that 'q' is preferred if it is up
    to five characters longer.  Optional argument 'lang' (default '') gives the
    RFC 2243 language string to specify in the encoded word.

    r?rr>Nr:r;�r=z=?{}{}?{}?{}?=)r�_cte_encode_length�
_cte_encodersr)rIrG�encodingrHr1ZqlenZblenrrrrr�s
)rJNr()�__doc__�rer5r6�	functoolsrIrrZemailr�__all__�partial�compile�subrr�dictrr*�ordrr	rrr
rCrrMrLrrrrr�<module>sL)��&�+��


Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
1 May 2025 1.02 PM
root / root
0755
__init__.cpython-38.opt-1.pyc
1.653 KB
17 Oct 2023 6.13 PM
root / root
0644
__init__.cpython-38.opt-2.pyc
1.043 KB
17 Oct 2023 6.13 PM
root / root
0644
__init__.cpython-38.pyc
1.653 KB
17 Oct 2023 6.13 PM
root / root
0644
_encoded_words.cpython-38.opt-1.pyc
5.555 KB
17 Oct 2023 6.13 PM
root / root
0644
_encoded_words.cpython-38.opt-2.pyc
3.713 KB
17 Oct 2023 6.13 PM
root / root
0644
_encoded_words.cpython-38.pyc
5.555 KB
17 Oct 2023 6.13 PM
root / root
0644
_header_value_parser.cpython-38.opt-1.pyc
78.015 KB
17 Oct 2023 6.13 PM
root / root
0644
_header_value_parser.cpython-38.opt-2.pyc
61.538 KB
17 Oct 2023 6.13 PM
root / root
0644
_header_value_parser.cpython-38.pyc
78.062 KB
17 Oct 2023 6.13 PM
root / root
0644
_parseaddr.cpython-38.opt-1.pyc
12.178 KB
17 Oct 2023 6.13 PM
root / root
0644
_parseaddr.cpython-38.opt-2.pyc
9.287 KB
17 Oct 2023 6.13 PM
root / root
0644
_parseaddr.cpython-38.pyc
12.178 KB
17 Oct 2023 6.13 PM
root / root
0644
_policybase.cpython-38.opt-1.pyc
14.465 KB
17 Oct 2023 6.13 PM
root / root
0644
_policybase.cpython-38.opt-2.pyc
5.844 KB
17 Oct 2023 6.13 PM
root / root
0644
_policybase.cpython-38.pyc
14.465 KB
17 Oct 2023 6.13 PM
root / root
0644
base64mime.cpython-38.opt-1.pyc
3.161 KB
17 Oct 2023 6.13 PM
root / root
0644
base64mime.cpython-38.opt-2.pyc
1.426 KB
17 Oct 2023 6.13 PM
root / root
0644
base64mime.cpython-38.pyc
3.161 KB
17 Oct 2023 6.13 PM
root / root
0644
charset.cpython-38.opt-1.pyc
11.156 KB
17 Oct 2023 6.13 PM
root / root
0644
charset.cpython-38.opt-2.pyc
4.976 KB
17 Oct 2023 6.13 PM
root / root
0644
charset.cpython-38.pyc
11.192 KB
17 Oct 2023 6.13 PM
root / root
0644
contentmanager.cpython-38.opt-1.pyc
7.19 KB
17 Oct 2023 6.13 PM
root / root
0644
contentmanager.cpython-38.opt-2.pyc
7.19 KB
17 Oct 2023 6.13 PM
root / root
0644
contentmanager.cpython-38.pyc
7.19 KB
17 Oct 2023 6.13 PM
root / root
0644
encoders.cpython-38.opt-1.pyc
1.576 KB
17 Oct 2023 6.13 PM
root / root
0644
encoders.cpython-38.opt-2.pyc
1.233 KB
17 Oct 2023 6.13 PM
root / root
0644
encoders.cpython-38.pyc
1.576 KB
17 Oct 2023 6.13 PM
root / root
0644
errors.cpython-38.opt-1.pyc
5.769 KB
17 Oct 2023 6.13 PM
root / root
0644
errors.cpython-38.opt-2.pyc
4.37 KB
17 Oct 2023 6.13 PM
root / root
0644
errors.cpython-38.pyc
5.769 KB
17 Oct 2023 6.13 PM
root / root
0644
feedparser.cpython-38.opt-1.pyc
10.246 KB
17 Oct 2023 6.13 PM
root / root
0644
feedparser.cpython-38.opt-2.pyc
8.622 KB
17 Oct 2023 6.13 PM
root / root
0644
feedparser.cpython-38.pyc
10.395 KB
17 Oct 2023 6.13 PM
root / root
0644
generator.cpython-38.opt-1.pyc
12.232 KB
17 Oct 2023 6.13 PM
root / root
0644
generator.cpython-38.opt-2.pyc
8.62 KB
17 Oct 2023 6.13 PM
root / root
0644
generator.cpython-38.pyc
12.232 KB
17 Oct 2023 6.13 PM
root / root
0644
header.cpython-38.opt-1.pyc
16.056 KB
17 Oct 2023 6.13 PM
root / root
0644
header.cpython-38.opt-2.pyc
10.563 KB
17 Oct 2023 6.13 PM
root / root
0644
header.cpython-38.pyc
16.056 KB
17 Oct 2023 6.13 PM
root / root
0644
headerregistry.cpython-38.opt-1.pyc
21.479 KB
17 Oct 2023 6.13 PM
root / root
0644
headerregistry.cpython-38.opt-2.pyc
15.851 KB
17 Oct 2023 6.13 PM
root / root
0644
headerregistry.cpython-38.pyc
21.529 KB
17 Oct 2023 6.13 PM
root / root
0644
iterators.cpython-38.opt-1.pyc
1.877 KB
17 Oct 2023 6.13 PM
root / root
0644
iterators.cpython-38.opt-2.pyc
1.271 KB
17 Oct 2023 6.13 PM
root / root
0644
iterators.cpython-38.pyc
1.877 KB
17 Oct 2023 6.13 PM
root / root
0644
message.cpython-38.opt-1.pyc
36.992 KB
17 Oct 2023 6.13 PM
root / root
0644
message.cpython-38.opt-2.pyc
20.818 KB
17 Oct 2023 6.13 PM
root / root
0644
message.cpython-38.pyc
36.992 KB
17 Oct 2023 6.13 PM
root / root
0644
parser.cpython-38.opt-1.pyc
5.59 KB
17 Oct 2023 6.13 PM
root / root
0644
parser.cpython-38.opt-2.pyc
2.643 KB
17 Oct 2023 6.13 PM
root / root
0644
parser.cpython-38.pyc
5.59 KB
17 Oct 2023 6.13 PM
root / root
0644
policy.cpython-38.opt-1.pyc
9.434 KB
17 Oct 2023 6.13 PM
root / root
0644
policy.cpython-38.opt-2.pyc
3.364 KB
17 Oct 2023 6.13 PM
root / root
0644
policy.cpython-38.pyc
9.434 KB
17 Oct 2023 6.13 PM
root / root
0644
quoprimime.cpython-38.opt-1.pyc
7.5 KB
17 Oct 2023 6.13 PM
root / root
0644
quoprimime.cpython-38.opt-2.pyc
4.108 KB
17 Oct 2023 6.13 PM
root / root
0644
quoprimime.cpython-38.pyc
7.5 KB
17 Oct 2023 6.13 PM
root / root
0644
utils.cpython-38.opt-1.pyc
9.32 KB
17 Oct 2023 6.13 PM
root / root
0644
utils.cpython-38.opt-2.pyc
6.074 KB
17 Oct 2023 6.13 PM
root / root
0644
utils.cpython-38.pyc
9.32 KB
17 Oct 2023 6.13 PM
root / root
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF