
    Rh                     8   d Z ddlZddlmZ ddgZdNdZi dddd	d
dddddddddddddddddddddd d!d"d#d$d%d&d'i d(d)d*d+d,d-d.d/d0d1d2d3d4d5d6d7d8d9d:d;d<d=d>d?d@dAdBdCdDdEdFdGdHdIZh dJZ	dK Z
 ej                  dL      ZdM Zy)Oz*
General functions for HTML manipulation.
    N)html5escapeunescapec                     | j                  dd      } | j                  dd      } | j                  dd      } |r$| j                  dd      } | j                  d	d
      } | S )z
    Replace special characters "&", "<" and ">" to HTML-safe sequences.
    If the optional flag quote is true (the default), the quotation mark
    characters, both double quote (") and single quote (') characters are also
    translated.
    &z&amp;<z&lt;>z&gt;"z&quot;'z&#x27;)replace)squotes     $/usr/lib/python3.12/html/__init__.pyr   r      s\     	
		#wA			#vA			#vAIIc8$IIdH%H       �      u   €         u   ‚   u   ƒ   u   „   u   …   u   †   u   ‡   u   ˆ   u   ‰   u   Š   u   ‹   u   Œ         u   Ž               u   ‘   u   ’   u   “   u   ”   u   •   u   –   u   —   u   ˜   u   ™   u   š   u   ›   u   œ         u   ž   u   Ÿ>~                                                                             	 
                 	 
                                                                                          r   r   r   r   r   r   r   r   r   r   r   r    r!   r"   r$   r%   r'   r)   r*   r+   r,   r-   r.   r/   r0   r1   r2   r3   r4   r5   r7   r8    c                    | j                  d      } | d   dk(  r{| d   dv rt        | dd  j                  d      d      }nt        | dd  j                  d            }|t        v r	t        |   S d|cxk  rd	k  sn |d
kD  ry|t        v ryt        |      S | t        v r	t        |    S t        t        |       dz
  dd      D ]!  }| d | t        v st        | d |    | |d  z   c S  d| z   S )Nrz   r   #xXr{   ;r   i   i  r   r    r   )	groupintrstrip_invalid_charrefs_invalid_codepointschr_html5rangelen)r   numxs      r   _replace_charrefr   [   s    	
Ats{Q44<aell3',Caell3'(C##$S))S"F"cHn%%3x ;!9s1vaxB' 	A!uae}qu,,	 7Nr   z7&(#[0-9]+;?|#[xX][0-9a-fA-F]+;?|[^\t\n\f <&#;]{1,32};?)c                 B    d| vr| S t         j                  t        |       S )a^  
    Convert all named and numeric character references (e.g. &gt;, &#62;,
    &x3e;) in the string s to the corresponding unicode characters.
    This function uses the rules defined by the HTML 5 standard
    for both valid and invalid character references, and the list of
    HTML 5 named character references defined in html.entities.html5.
    r   )_charrefsubr   )r   s    r   r   r   z   s"     !|<<(!,,r   )T)__doc__re_rehtml.entitiesr   r   __all__r   r   r   r   compiler   r    r   r   <module>r      s    ) Z
 $#(#$# 	(# 	&	#
 	(# 	(# 	(# 	(# 	(# 	(# 	(# 	(# 	(# 	(# 	(#  	&!#" 	(##$ 	&%#& 	&'#( 	()#* 	(+#, 	(-#. 	(/#0 	(1#2 	(3#4 	(5#6 	(7#8 	(9#: 	(;#< 	(=#> 	(?#@ 	&A#B 	(C#D 	(E# J 06 3;; 3 4
-r   