AlkantarClanX12

Your IP : 3.15.203.246


Current Path : /opt/imunify360/venv/lib/python3.11/site-packages/jinja2/__pycache__/
Upload File :
Current File : //opt/imunify360/venv/lib/python3.11/site-packages/jinja2/__pycache__/utils.cpython-311.pyc

�

l��f�W���ddlZddlZddlZddlZddlmZddlmZddlmZddl	m
Z
ddlmZddlm
Z
dd	lmZdd
lmZddlmZddlmZejd
��Zejdd�eejd�����dd�eejd�����d���Zejd��Zejd��Zejd��ZdZdZedddd�i����Ze��Z djZ!dej"d��vZ#d �Z$d!�Z%d"�Z&d#�Z'd$�Z(d%�Z)d&�Z*dBd(�Z+dCd*�Z,d+�Z-dBd,�Z.dDd-�Z/dEd2�Z0dFd4�Z1Gd5�d6e2��Z3ej4�5e3��				dGd8�Z6dHd9�Z7Gd:�d;e2��Z8Gd<�d=e2��Z9Gd>�d?e2��Z:	e;d@��d/Z<n
#e=$rd'Z<YnwxYwdA�Z>dS)I�N)�deque)�choice)�	randrange)�Lock��escape)�Markup�)�abc)�string_types)�	text_type)�	url_quotez(\s+)z
^(?P<lead>(?:�|)�(�<z&lt;z)*)(?P<middle>.*?)(?P<trail>(?:)�.�,�)�>�
z&gt;z)*)$z&^\S+@[a-zA-Z0-9._-]+\.[a-zA-Z0-9._-]+$z(<!--.*?-->|<[^>]*>)z	&([^;]+);�4abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ�
0123456789�MissingType��__repr__c��dS)N�missingr)�xs �l/builddir/build/BUILD/imunify360-venv-2.3.5/opt/imunify360/venv/lib/python3.11/site-packages/jinja2/utils.py�<lambda>r "s�����z\/�/c��d|_|S)a+This decorator can be used to mark a function or method context callable.
    A context callable is passed the active :class:`Context` as first argument when
    called from the template.  This is useful if a function wants to get access
    to the context or functions provided on the context object.  For example
    a function that returns a sorted list of template variables the current
    template exports could look like this::

        @contextfunction
        def get_exported_names(context):
            return sorted(context.exported_vars)
    T)�contextfunction��fs rr%r%,s���A���Hr!c��d|_|S)aGThis decorator can be used to mark a function or method as an eval
    context callable.  This is similar to the :func:`contextfunction`
    but instead of passing the context, an evaluation context object is
    passed.  For more information about the eval context, see
    :ref:`eval-context`.

    .. versionadded:: 2.4
    T)�evalcontextfunctionr&s rr)r)<s��!�A���Hr!c��d|_|S)z�This decorator can be used to mark a function or method as environment
    callable.  This decorator works exactly like the :func:`contextfunction`
    decorator just that the first argument is the active :class:`Environment`
    and not context.
    T)�environmentfunctionr&s rr+r+Is��!�A���Hr!c�D�t�|j��|S)z%Marks the function as internally used)�
internal_code�add�__code__r&s r�internalcoder0Ss�����a�j�!�!�!��Hr!c�.�ddlm}t||��S)a�Check if the object passed is undefined.  This does nothing more than
    performing an instance check against :class:`Undefined` but looks nicer.
    This can be used for custom filters or tests that want to react to
    undefined variables.  For example a custom default filter can look like
    this::

        def default(var, default=''):
            if is_undefined(var):
                return default
            return var
    r
)�	Undefined)�runtimer2�
isinstance)�objr2s  r�is_undefinedr6Ys&��#�"�"�"�"�"��c�9�%�%�%r!c��|D]}�dS)z4Consumes an iterable without doing anything with it.Nr)�iterable�_s  r�consumer:js��
�
�
���
�
r!c�n�ddlm}ddlm}|���|���dS)a Jinja keeps internal caches for environments and lexers.  These are
    used so that Jinja doesn't have to recreate environments and lexers all
    the time.  Normally you don't have to care about that but if you are
    measuring memory consumption you may want to clean the caches.
    r
)�_spontaneous_environments)�_lexer_cacheN)�environmentr<�lexerr=�clear)r<r=s  r�clear_cachesrApsR��7�6�6�6�6�6�#�#�#�#�#�#��#�#�%�%�%��������r!Fc��	d|vr|�dd��\}}n-d|vr|�d��\}}}nt|��Stt|dd|g��|��S#tt
f$r|s�YdSwxYw)a�Imports an object based on a string.  This is useful if you want to
    use import paths as endpoints or something similar.  An import path can
    be specified either in dotted notation (``xml.sax.saxutils.escape``)
    or with a colon as object delimiter (``xml.sax.saxutils:escape``).

    If the `silent` is True the return value will be `None` if the import
    fails.

    :return: imported object
    �:r
rN)�split�
rpartition�
__import__�getattr�ImportError�AttributeError)�import_name�silent�moduler5r9s     r�
import_stringrM}s���
��+���%�+�+�C��3�3�K�F�C�C�
�K�
�
�(�3�3�C�8�8�N�F�A�s�s��k�*�*�*��z�&�$��s�e�<�<�c�B�B�B����(�����	��	�	�	����s�A
A.�
 A.�.B�B�rbc�d�tj�|��sdSt||��S)z\Returns a file descriptor for the filename if that file exists,
    otherwise ``None``.
    N)�os�path�isfile�open)�filename�modes  r�open_if_existsrV�s/���7�>�>�(�#�#���t���$���r!c��|�dS|turdSt|��}|jdvr|j}n|jdz|jz}d|zS)z�Returns the name of the object's type.  For some recognized
    singletons the name of the object is returned instead. (For
    example for `None` and `Ellipsis`).
    N�None�Ellipsis)�__builtin__�builtinsrz	%s object)rY�type�
__module__�__name__)r5�cls�names   r�object_type_reprra�s^��
�{��v�	�����z�
�s�)�)�C��~�4�4�4��|����~��#�c�l�2�����r!c�l�	ddlm}|||���S#t$rddlm}||��cYSwxYw)zYPrettyprint an object.  Either use the `pretty` library or the
    builtin `pprint`.
    r)�pretty)�verbose)�pformat)rcrH�pprintre)r5rdrcres    rrere�so���!�!�!�!�!�!��v�c�7�+�+�+�+������"�"�"�"�"�"��w�s�|�|�������s��3�3c
�^�|fd�}t�tt|������}|rdtt|����zpd}|rdt|��zpd}t	|��D�]�\}}	t
�|	��}
|
�rs|
���\}}}
|�d��s�d|vr�|�d��s�|�d��s�t|��d	krm|d	ttzvrV|�d
��s*|�d��s|�d��rd
|�d|�|�d||���d�}|�d��s|�d��rd|�d|�|�d||���d�}d|vr<|�d��s'd|vr#t�|��r	d|�d|�d�}||z|
z|	kr||z|
z||<���d�|��S)aConverts any URLs in text into clickable links. Works on http://,
    https:// and www. links. Links can have trailing punctuation (periods,
    commas, close-parens) and leading punctuation (opening parens) and
    it'll still do the right thing.

    If trim_url_limit is not None, the URLs in link text will be limited
    to trim_url_limit characters.

    If nofollow is True, the URLs in link text will get a rel="nofollow"
    attribute.

    If target is not None, a target attribute will be added to the link.
    c�R�|dur"|d|�t|��|krdpdzp|S)Nz...r")�len)r�limits  rr zurlize.<locals>.<lambda>�s?���T�(9�)<�
�v��v�Y�#�a�&�&�E�/�3�e�9�r�
:�)
��r!z	 rel="%s"r"z target="%s"zwww.�@zhttp://zhttps://rz.orgz.netz.comz<a href="http://�"rz</a>z	<a href="rCz<a href="mailto:z">)�_word_split_rerDr
r�	enumerate�_punctuation_re�match�groups�
startswithri�_letters�_digits�endswith�_simple_email_re�join)�text�trim_url_limit�rel�target�trim_url�words�rel_attr�target_attr�i�wordrp�lead�middle�trails              r�urlizer��s���'�	
�	
�	
�
�

� � ��6�$�<�<�!8�!8�9�9�E��;�{�Y�v�c�{�{�%;�%;�;�A�r�H��<�^�f�V�n�n�<�B��K��U�#�#�%1�%1���4��%�%�d�+�+���#	1�"'�,�,�.�.��D�&�%�� � ��(�(�
��6�!�!��)�)�)�4�4�"��)�)�*�5�5�"���K�K�!�O�O��1�I��G�!3�3�3��O�O�F�+�+�4����v�.�.�4����v�.�.�	4���F�F��H��K�K��H�V�$�$�$�$�	��� � ��+�+�
�v�/@�/@��/L�/L�
���F�F��H��K�K��H�V�$�$�$�$�	���v�
�
��)�)�&�1�1���v�%�%�$�*�*�6�2�2�&�%�:@������H���f�}�u�$��,�,��&�=�5�0��a����8�8�E�?�?�r!�T��dc	�F�ddlm}|���}g}t|��D�]2}d}dx}	}
d}d}g}
t	tt||������D]�\}}	t
|��}||kr|}n�|r|���}d}|tdd��z
|	kr|}	|
d	z
}
|d
z
}|tdd��z
|
kr|x}	}
|d
z
}d}|
�|����d�	|
��}
|
�
d
��r|
dd�d
z}
n|
�
d
��s|
d
z
}
|�|
����4|sd�	|��Std�	d�|D������S)z+Generate some lorem ipsum for the template.r
)�LOREM_IPSUM_WORDSTrNF���r�
r�r� ���z

rc3�:K�|]}dt|��zV��dS)z	<p>%s</p>Nr��.0rs  r�	<genexpr>z'generate_lorem_ipsum.<locals>.<genexpr>0s-����F�F�!�\�F�1�I�I�5�F�F�F�F�F�Fr!)�	constantsr�rD�rangernrr�
capitalize�appendrwrur	)�n�html�min�maxr�r}�resultr9�next_capitalized�
last_comma�
last_fullstopr��last�p�idxs               r�generate_lorem_ipsumr�s���,�,�,�,�,�,��#�#�%�%�E�
�F�
�1�X�X�#�#����%&�&�
�]������� ��i��S�&9�&9� :� :�;�;�	�	�F�C��
��e�}�}���4�<�<��D��	
�
 �
)����(�(��#(� ��Y�q�!�_�_�$�z�1�1� �
���"�
������Y�r�2�&�&�&��6�6�-0�0�
�]�����#'� �
�H�H�T�N�N�N�N�
�I�I�a�L�L���:�:�c�?�?�	��#�2�#����A�A����C���	�
��H�A��
�
�a������$��|�|�F�#�#�#��%�*�*�F�F�v�F�F�F�F�F�G�G�Gr!�utf-8c�R�t|t��st|��}t|t��r|�|��}|rdnd}t	||��}t|t��s|�d��}|r|�dd��}|S)a�Quote a string for use in a URL using the given charset.

    This function is misnamed, it is a wrapper around
    :func:`urllib.parse.quote`.

    :param obj: String or bytes to quote. Other types are converted to
        string then encoded to bytes using the given charset.
    :param charset: Encode text to bytes using this charset.
    :param for_qs: Quote "/" and use "+" for spaces.
    r!�/r�z%20�+)r4rr
�encoder�decode�replace)r5�charset�for_qs�safe�rvs     r�unicode_urlencoder�3s����c�<�(�(����n�n���#�y�!�!�"��j�j��!�!���"�3�3�d�D�	�3��	�	�B��b�)�$�$� �
�Y�Y�w�
�
��
�$�
�Z�Z��s�
#�
#��
�Ir!c��eZdZdZd�Zd�Zd�Zd�Zd�Zd�Z	dd	�Z
dd
�Zd�Zd�Z
d
�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Ze	ZdS)�LRUCachez"A simple LRU Cache implementation.c�p�||_i|_t��|_|���dS�N)�capacity�_mappingr�_queue�	_postinit)�selfr�s  r�__init__zLRUCache.__init__Ws1�� ��
���
��g�g����������r!c��|jj|_|jj|_|jj|_t��|_|jj	|_
dSr�)r��popleft�_popleft�pop�_pop�remove�_remover�_wlockr��_append�r�s rr�zLRUCache._postinit]s@����+��
��K�O��	��{�)����f�f����{�)����r!c�,�|j|j|jd�S)N�r�r�r�r�r�s r�__getstate__zLRUCache.__getstate__es ���
��
��k�
�
�	
r!c�b�|j�|��|���dSr�)�__dict__�updater�)r��ds  r�__setstate__zLRUCache.__setstate__ls.���
���Q�����������r!c��|jfSr�)r�r�s r�__getnewargs__zLRUCache.__getnewargs__ps
���
��r!c��|�|j��}|j�|j��|j�|j��|S)z&Return a shallow copy of the instance.)�	__class__r�r�r�r��extend�r�r�s  r�copyz
LRUCache.copyssJ��
�^�^�D�M�
*�
*��
����4�=�)�)�)�
�	�����%�%�%��	r!Nc�8�	||S#t$r|cYSwxYw)z/Return an item from the cache dict or `default`��KeyError�r��key�defaults   r�getzLRUCache.getzs5��	���9����	�	�	��N�N�N�	���s�
��c�B�	||S#t$r
|||<|cYSwxYw)zvSet `default` if the key is not in the cache otherwise
        leave unchanged. Return the value of this key.
        r�r�s   r�
setdefaultzLRUCache.setdefault�s>��	���9����	�	�	��D��I��N�N�N�	���s�
��c��|j���	|j���|j���|j���dS#|j���wxYw)zClear the cache.N)r��acquirer�r@r��releaser�s rr@zLRUCache.clear�sw���������	"��M���!�!�!��K�������K���!�!�!�!�!��D�K���!�!�!�!���s�2A(�(Bc��||jvS)z$Check if a key exists in this cache.�r��r�r�s  r�__contains__zLRUCache.__contains__�s���d�m�#�#r!c�*�t|j��S)z%Return the current size of the cache.)rir�r�s r�__len__zLRUCache.__len__�s���4�=�!�!�!r!c�2�d|jj�d|j�d�S)Nrr�r)r�r^r�r�s rrzLRUCache.__repr__�s ��� �N�3�3�3�T�]�]�]�C�Cr!c�\�|j���	|j|}|jd|kr<	|�|��n#t
$rYnwxYw|�|��||j���S#|j���wxYw)z�Get an item from the cache. Moves the item up so that it has the
        highest priority then.

        Raise a `KeyError` if it does not exist.
        r�)r�r�r�r�r��
ValueErrorr�r�)r�r�r�s   r�__getitem__zLRUCache.__getitem__�s���	
�������
	"���s�#�B��{�2��#�%�%���L�L��%�%�%�%��!�����D�	����
���S�!�!�!���K���!�!�!�!��D�K���!�!�!�!���s.�B�A�B�
A�B�A�B�B+c��|j���	||jvr|�|��n7t	|j��|jkr|j|���=|�|��||j|<|j���dS#|j���wxYw)zhSets the value for an item. Moves the item up so that it
        has the highest priority then.
        N)	r�r�r�r�rir�r�r�r�)r�r��values   r�__setitem__zLRUCache.__setitem__�s���	
�������	"��d�m�#�#����S�!�!�!�!��T�]�#�#�t�}�4�4��M�$�-�-�/�/�2��L�L�����!&�D�M�#���K���!�!�!�!�!��D�K���!�!�!�!���s�A5B+�+Cc��|j���	|j|=	|�|��n#t$rYnwxYw|j���dS#|j���wxYw)z]Remove an item from the cache dict.
        Raise a `KeyError` if it does not exist.
        N)r�r�r�r�r�r�r�s  r�__delitem__zLRUCache.__delitem__�s���	
�������	"��
�c�"�
����S�!�!�!�!���
�
�
���
����
�K���!�!�!�!�!��D�K���!�!�!�!���s+�A%�:�A%�
A�A%�A�A%�%Bc�p���fd�t�j��D��}|���|S)zReturn a list of items.c�.��g|]}|�j|f��Srr�)r�r�r�s  �r�
<listcomp>z"LRUCache.items.<locals>.<listcomp>�s%���I�I�I��3��
�c�*�+�I�I�Ir!)�listr��reverse)r�r�s` r�itemszLRUCache.items�s;���I�I�I�I�t�D�K�7H�7H�I�I�I���������
r!c�|�tjdtd���t|�����S)zIterate over all items.zP'iteritems()' will be removed in version 3.0. Use 'iter(cache.items())' instead.r���
stacklevel)�warnings�warn�DeprecationWarning�iterr�r�s r�	iteritemszLRUCache.iteritems�s>���
�
.���		
�	
�	
�	
��D�J�J�L�L�!�!�!r!c�>�d�|���D��S)zReturn a list of all values.c��g|]
}|d��S)r
rr�s  rr�z#LRUCache.values.<locals>.<listcomp>�s��+�+�+���!��+�+�+r!)r�r�s r�valueszLRUCache.values�s��+�+�d�j�j�l�l�+�+�+�+r!c�|�tjdtd���t|�����S)�Iterate over all values.zQ'itervalue()' will be removed in version 3.0. Use 'iter(cache.values())' instead.r�r��r�r�r�r�r�r�s r�	itervaluezLRUCache.itervalue��>���
�
/���		
�	
�	
�	
��D�K�K�M�M�"�"�"r!c�|�tjdtd���t|�����S)rzR'itervalues()' will be removed in version 3.0. Use 'iter(cache.values())' instead.r�r�rr�s r�
itervalueszLRUCache.itervalues�rr!c� �t|��S)z7Return a list of all keys ordered by most recent usage.)r�r�s r�keysz
LRUCache.keys�s���D�z�z�r!c�X�tjdtd���t|��S)z[Iterate over all keys in the cache dict, ordered by
        the most recent usage.
        zN'iterkeys()' will be removed in version 3.0. Use 'iter(cache.keys())' instead.r�r�)r�r�r�r�r�s r�iterkeyszLRUCache.iterkeys�s6��	�
�
-���		
�	
�	
�	
��D�z�z�r!c�D�tt|j����Sr�)�reversed�tupler�r�s r�__iter__zLRUCache.__iter__
s����d�k�*�*�+�+�+r!c�D�tt|j����S)zTIterate over the keys in the cache dict, oldest items
        coming first.
        )r�r
r�r�s r�__reversed__zLRUCache.__reversed__
s���E�$�+�&�&�'�'�'r!r�)r^r]�__qualname__�__doc__r�r�r�r�r�r�r�r�r@r�r�rr�r�r�r�r�r�rrrr
rr�__copy__rr!rr�r�Ps�������,�,����*�*�*�
�
�
���� � � ������������"�"�"�$�$�$�"�"�"�D�D�D�"�"�"�,
"�
"�
"�"�"�"����"�"�"�,�,�,�#�#�#�#�#�#����
�
�
�,�,�,�(�(�(��H�H�Hr!r��r��htm�xmlc������td�|D�����td�|D���������fd�}|S)acIntelligently sets the initial value of autoescaping based on the
    filename of the template.  This is the recommended way to configure
    autoescaping if you do not want to write a custom function yourself.

    If you want to enable it for all templates created from strings or
    for all templates with `.html` and `.xml` extensions::

        from jinja2 import Environment, select_autoescape
        env = Environment(autoescape=select_autoescape(
            enabled_extensions=('html', 'xml'),
            default_for_string=True,
        ))

    Example configuration to turn it on at all times except if the template
    ends with `.txt`::

        from jinja2 import Environment, select_autoescape
        env = Environment(autoescape=select_autoescape(
            disabled_extensions=('txt',),
            default_for_string=True,
            default=True,
        ))

    The `enabled_extensions` is an iterable of all the extensions that
    autoescaping should be enabled for.  Likewise `disabled_extensions` is
    a list of all templates it should be disabled for.  If a template is
    loaded from a string then the default from `default_for_string` is used.
    If nothing matches then the initial value of autoescaping is set to the
    value of `default`.

    For security reasons this function operates case insensitive.

    .. versionadded:: 2.9
    c3�jK�|].}d|�d�����zV��/dS�rN��lstrip�lowerr�s  rr�z$select_autoescape.<locals>.<genexpr>As=����U�U�Q�S�1�8�8�C�=�=�#6�#6�#8�#8�8�U�U�U�U�U�Ur!c3�jK�|].}d|�d�����zV��/dSrrr�s  rr�z$select_autoescape.<locals>.<genexpr>Bs=����W�W�a�c�A�H�H�S�M�M�$7�$7�$9�$9�9�W�W�W�W�W�Wr!c���|��S|���}|����rdS|����rdS�S)NTF)rru)�
template_namer��default_for_string�disabled_patterns�enabled_patternss ����r�
autoescapez%select_autoescape.<locals>.autoescapeDs]���� �%�%�%�+�+�-�-�
��!�!�"2�3�3�	��4��!�!�"3�4�4�	��5��r!)r
)�enabled_extensions�disabled_extensionsr r�r#r!r"s  `` @@r�select_autoescaper&su������P�U�U�BT�U�U�U�U�U���W�W�CV�W�W�W�W�W�����������r!c���|�tj}||fi|���dd���dd���dd���dd	��}t|��S)
a�Works exactly like :func:`dumps` but is safe for use in ``<script>``
    tags.  It accepts the same arguments and returns a JSON string.  Note that
    this is available in templates through the ``|tojson`` filter which will
    also mark the result as safe.  Due to how this function escapes certain
    characters this is safe even if used outside of ``<script>`` tags.

    The following characters are escaped in strings:

    -   ``<``
    -   ``>``
    -   ``&``
    -   ``'``

    This makes it safe to embed such strings in any place in HTML with the
    notable exception of double quoted attributes.  In that case single
    quote your attributes or HTML escape it in addition.
    Nrz\u003crz\u003e�&z\u0026�'z\u0027)�json�dumpsr�r	)r5�dumper�kwargsr�s    r�htmlsafe_json_dumpsr.Qst��$�~������s���f���	���z�	"�	"�	���z�	"�	"�	���z�	"�	"�	���z�	"�	"���"�:�:�r!c�>�eZdZdZd�Zd�Zed���Zd�ZeZ	dS)�CycleraDCycle through values by yield them one at a time, then restarting
    once the end is reached. Available as ``cycler`` in templates.

    Similar to ``loop.cycle``, but can be used outside loops or across
    multiple loops. For example, render a list of folders and files in a
    list, alternating giving them "odd" and "even" classes.

    .. code-block:: html+jinja

        {% set row_class = cycler("odd", "even") %}
        <ul class="browser">
        {% for folder in folders %}
          <li class="folder {{ row_class.next() }}">{{ folder }}
        {% endfor %}
        {% for file in files %}
          <li class="file {{ row_class.next() }}">{{ file }}
        {% endfor %}
        </ul>

    :param items: Each positional argument will be yielded in the order
        given for each cycle.

    .. versionadded:: 2.1
    c�D�|std���||_d|_dS)Nz$at least one item has to be providedr)�RuntimeErrorr��pos)r�r�s  rr�zCycler.__init__�s,���	G��E�F�F�F���
�����r!c��d|_dS)z*Resets the current item to the first item.rN)r3r�s r�resetzCycler.reset�s
������r!c�&�|j|jS)zxReturn the current item. Equivalent to the item that will be
        returned next time :meth:`next` is called.
        )r�r3r�s r�currentzCycler.current�s��
�z�$�(�#�#r!c�\�|j}|jdzt|j��z|_|S)zXReturn the current item, then advance :attr:`current` to the
        next item.
        r
)r7r3rir�r�s  r�nextzCycler.next�s*���\���H�q�L�C��
�O�O�3����	r!N)
r^r]rrr�r5�propertyr7r9�__next__rr!rr0r0osg��������2�������$�$��X�$�����H�H�Hr!r0c� �eZdZdZdd�Zd�ZdS)�JoinerzA joining helper for templates.�, c�"�||_d|_dS)NF)�sep�used)r�r@s  rr�zJoiner.__init__�s�������	�	�	r!c�0�|js	d|_dS|jS)NTr")rAr@r�s r�__call__zJoiner.__call__�s���y�	��D�I��3��x�r!N)r>)r^r]rrr�rCrr!rr=r=�s=������)�)���������r!r=c�*�eZdZdZd�Zd�Zd�Zd�ZdS)�	Namespacez~A namespace object that can hold arbitrary attributes.  It may be
    initialized from a dictionary or with keyword arguments.c�L�|d|dd�}}t|i|��|_dS)Nrr
)�dict�_Namespace__attrs)�argsr-r�s   rr�zNamespace.__init__�s/���!�W�d�1�2�2�h�d���T�,�V�,�,����r!c��|dvrt�||��S	|j|S#t$rt	|���wxYw)N>r�rH)�object�__getattribute__rHr�rI)r�r`s  rrLzNamespace.__getattribute__�s_���5�5�5��*�*�4��6�6�6�	'��<��%�%���	'�	'�	'� ��&�&�&�	'���s	�.�Ac��||j|<dSr��rH)r�r`r�s   rr�zNamespace.__setitem__�s��"���T���r!c��d|jzS)Nz<Namespace %r>rNr�s rrzNamespace.__repr__�s���$�,�.�.r!N)r^r]rrr�rLr�rrr!rrErE�s\������@�@�-�-�-�'�'�'�#�#�#�/�/�/�/�/r!rEz,async def _():
 async for _ in ():
  yield _c�\�ddlm}tjdtd���||��S)Nr)�soft_unicodezb'jinja2.utils.soft_unicode' will be removed in version 3.0. Use 'markupsafe.soft_unicode' instead.r�r�)�
markupsaferQr�r�r�)�srQs  rrQrQ�sH��'�'�'�'�'�'��M�	2���	�����<��?�?�r!)F)rN)NNN)r�Tr�r�)r�F)rrTFr�)?r*rP�rer��collectionsr�randomrr�	threadingrrRrr	�_compatrrr
r�compilermrw�maprorv�
_striptags_re�
_entity_rersrtr\r�setr-�concatr+�
_slash_escaper%r)r+r0r6r:rArMrVrarer�r�r�rKr��MutableMapping�registerr&r.r0r=rE�exec�have_async_gen�SyntaxErrorrQrr!r�<module>res5������	�	�	�	�	�	�	�	�����������������������������������������������!�!�!�!�!�!����������������H�%�%���"�*�*�	�����R�Y� 2�3�3�4�4�4�4������R�Y� B�C�C�D�D�D�D������2�:�G�H�H����
�2�3�3�
�
�R�Z��
%�
%�
�A��
��E�$�$�}�b�:�/B�/B�"C�
D�
D�
F�
F������
�	����Z�T�Z��_�_�,�
�

�

�

� 

�

�

�
�
�
�
�
�
�&�&�&�"
�
�
�
�
�
�����0 � � � ����*����=�=�=�=�@.H�.H�.H�.H�b����:C�C�C�C�C�v�C�C�C�L����H�%�%�%�.����	5�5�5�5�p����<3�3�3�3�3�V�3�3�3�l�����V����/�/�/�/�/��/�/�/�2��D�	9�:�:�:��N�N�������N�N�N�����	�	�	�	�	s�6
G�G�
G