� J�gxy����dZ ddlmZn#e$r ddlmZYnwxYwddlZddlZddlZddlZddl Z ddl m Z ddl m Z ddl m Z ddl mZddlZ ddlmZn #e$rdZYnwxYwd Zd Zd e jiZed g��Ze� ejed <dd �Zd�Zd�Zd�Zdd�Zdd�ZGd�dej j!j"ej j!j#��Z$Gd�dej j!j"ej j!j#��Z%dS)a�JSON Web Tokens Provides support for creating (encoding) and verifying (decoding) JWTs, especially JWTs generated and consumed by Google infrastructure. See `rfc7519`_ for more details on JWTs. To encode a JWT use :func:`encode`:: from google.auth import crypt from google.auth import jwt signer = crypt.Signer(private_key) payload = {'some': 'payload'} encoded = jwt.encode(signer, payload) To decode a JWT and verify claims use :func:`decode`:: claims = jwt.decode(encoded, certs=public_certs) You can also skip verification:: claims = jwt.decode(encoded, verify=False) .. _rfc7519: https://tools.ietf.org/html/rfc7519 �)�MappingN)�_helpers)�_service_account_info)�crypt)� exceptions)�es256i� �RS256�ES256c��|�i}|�|j}|�ddi��d|vrPt�2t|tj��r|�ddi��n|�ddi��|�||d<t jtj|��� d����t jtj|��� d����g}d � |��}|� |��}|� t j|����d � |��S) a�Make a signed JWT. Args: signer (google.auth.crypt.Signer): The signer used to sign the JWT. payload (Mapping[str, str]): The JWT payload. header (Mapping[str, str]): Additional JWT header payload. key_id (str): The key id to add to the JWT header. If the signer has a key id it will be used as the default. If this is specified it will override the signer's key id. Returns: bytes: The encoded JWT. N�typ�JWT�algr r �kid�utf-8�.) �key_id�updater� isinstance� ES256Signerr�unpadded_urlsafe_b64encode�json�dumps�encode�join�sign�append)�signer�payload�headerr�segments� signing_input� signatures �_/home/asafur/pinokio/api/open-webui.git/app/env/lib/python3.11/site-packages/google/auth/jwt.pyrrKs;���~��� �~���� �M�M�5�%�.�!�!�!� �F��� � ��F�E�4E�!F�!F� � �M�M�5�'�*� +� +� +� +� �M�M�5�'�*� +� +� +� ����u� � �+�D�J�v�,>�,>�,E�,E�g�,N�,N�O�O��+�D�J�w�,?�,?�,F�,F�w�,O�,O�P�P��H� �I�I�h�'�'�M�� � �M�*�*�I� �O�O�H�7� �B�B�C�C�C� �9�9�X� � ��c���tj|��} tj|�d����S#t $r/}t jd�|����}||�d}~wwxYw)zDecodes a single JWT segment.rzCan't parse segment: {0}N) r�padded_urlsafe_b64decoder�loads�decode� ValueErrorr�MalformedError�format)�encoded_section� section_bytes� caught_exc�new_excs r$�_decode_jwt_segmentr1vs����5�o�F�F�M�&��z�-�.�.�w�7�7�8�8�8�� �&�&�&��+� &� -� -�m� <� <� � ���:�%����� &���s�&=� A6�*A1�1A6c�L�tj|��}|�d��dkr'tjd�|�����|�d��\}}}|dz|z}tj|��}t|��}t|��}t|t��s'tjd�|�����t|t��s'tjd�|�����||||fS)awDecodes a token and does no verification. Args: token (Union[str, bytes]): The encoded JWT. Returns: Tuple[Mapping, Mapping, str, str]: header, payload, signed_section, and signature. Raises: google.auth.exceptions.MalformedError: if there are an incorrect amount of segments in the token or segments of the wrong type. r�z&Wrong number of segments in token: {0}z+Header segment should be a JSON object: {0}z,Payload segment should be a JSON object: {0}) r�to_bytes�countrr+r,�splitr'r1rr)�token�encoded_header�encoded_payloadr#�signed_sectionr rs r$�_unverified_decoder;�s)�� � �e� $� $�E� �{�{�4���A����'� 4� ;� ;�E� B� B� � � �27���T�1B�1B�.�N�O�Y�#�d�*�_�<�N��1�)�<�<�I�!�� 0� 0�F�!�/�2�2�G� �f�g� &� &� ��'� 9� @� @�� P� P� � � � �g�w� '� '� ��'� :� A� A�/� R� R� � � � �7�N�I� 5�5r%c�.�t|��\}}}}|S)a@Return the decoded header of a token. No verification is done. This is useful to extract the key id from the header in order to acquire the appropriate certificate to verify the token. Args: token (Union[str, bytes]): the encoded JWT. Returns: Mapping: The decoded JWT header. )r;)r7r �_s r$� decode_headerr>�s��)��/�/�O�F�A�q�!� �Mr%c��tjtj����}dD]-}||vr'tjd�|������.|d}||z }||kr(tjd�||�����|d}||z}||kr(tjd�||�����dS)a�Verifies the ``iat`` (Issued At) and ``exp`` (Expires) claims in a token payload. Args: payload (Mapping[str, str]): The JWT payload. clock_skew_in_seconds (int): The clock skew used for `iat` and `exp` validation. Raises: google.auth.exceptions.InvalidValue: if value validation failed. google.auth.exceptions.MalformedError: if schema validation failed. )�iat�expz(Token does not contain required claim {}r@zQToken used too early, {} < {}. Check that your computer's clock is set correctly.rAzToken expired, {} < {}N)r�datetime_to_secs�utcnowrr+r,� InvalidValue)r�clock_skew_in_seconds�now�keyr@�earliestrA�latests r$�_verify_iat_and_exprJ�s��� � #�H�O�$5�$5� 6� 6�C����� �g� � ��+�:�A�A�#�F�F��� � � �%�.�C��*�*�H� �X�~�~��%� _� f� f��S� � � � � � �%�.�C��(� (�F� ��|�|��%�&>�&E�&E�f�c�&R�&R�S�S�S��|r%Tc�p�t|��\}}}}|s|S|�d��} |�d��} t| } nk#t$r^} | tvr(t jd�| ����| �t jd�| ����| �d} ~ wwxYwt|t��rL| r5| |vr't j d�| �����|| g} n|� ��} n|} tj ||| | ��st j d���t||��|�Y|�d��}t|t��r|g}||vr(t jd �||�����|S) a�Decode and verify a JWT. Args: token (str): The encoded JWT. certs (Union[str, bytes, Mapping[str, Union[str, bytes]]]): The certificate used to validate the JWT signature. If bytes or string, it must the the public key certificate in PEM format. If a mapping, it must be a mapping of key IDs to public key certificates in PEM format. The mapping must contain the same key ID that's specified in the token's header. verify (bool): Whether to perform signature and claim validation. Verification is done by default. audience (str or list): The audience claim, 'aud', that this JWT should contain. Or a list of audience claims. If None then the JWT's 'aud' parameter is not verified. clock_skew_in_seconds (int): The clock skew used for `iat` and `exp` validation. Returns: Mapping[str, str]: The deserialized JSON payload in the JWT. Raises: google.auth.exceptions.InvalidValue: if value validation failed. google.auth.exceptions.MalformedError: if schema validation failed. rrzGThe key algorithm {} requires the cryptography package to be installed.z"Unsupported signature algorithm {}Nz$Certificate for key id {} not found.z!Could not verify token signature.�audz/Token has wrong audience {}, expected one of {})r;�get�_ALGORITHM_TO_VERIFIER_CLASS�KeyError�_CRYPTOGRAPHY_BASED_ALGORITHMSrrDr,rrr+�valuesr�verify_signaturerJ�str)r7�certs�verify�audiencerEr rr:r#�key_algr� verifier_cls�exc�certs_to_check�claim_audiences r$r)r)�s��42D�E�1J�1J�.�F�G�^�Y� �����j�j����G� �Z�Z�� � �F� �3�G�<� � �� � � � � �4� 4� 4��)�Y�`�`�������  � �)�4�;�;�G�D�D���� ����� �����%��!�!� � � ,��U�"�"� �/�:�A�A�&�I�I����$�F�m�_�N�N�#�\�\�^�^�N�N��� � !�� �>�<� � �M��'�(K�L�L�L���!6�7�7�7��� ���U�+�+�� �h�� $� $� "� �z�H� �� )� )��)�A�H�H�"�H����� � �Ns� A� B:�AB5�5B:c���eZdZdZdedf�fd� Zed���Zed���Zed���Z ed���Z dd�Z e j ejjj��d ���Zd �Zd �Ze j ejjj��d ���Zee j ejjj��d �����Zee j ejjj��d�����Zed���Z�xZS)� Credentialsa.Credentials that use a JWT as the bearer token. These credentials require an "audience" claim. This claim identifies the intended recipient of the bearer token. The constructor arguments determine the claims for the JWT that is sent with requests. Usually, you'll construct these credentials with one of the helper constructors as shown in the next section. To create JWT credentials using a Google service account private key JSON file:: audience = 'https://pubsub.googleapis.com/google.pubsub.v1.Publisher' credentials = jwt.Credentials.from_service_account_file( 'service-account.json', audience=audience) If you already have the service account file loaded and parsed:: service_account_info = json.load(open('service_account.json')) credentials = jwt.Credentials.from_service_account_info( service_account_info, audience=audience) Both helper methods pass on arguments to the constructor, so you can specify the JWT claims:: credentials = jwt.Credentials.from_service_account_file( 'service-account.json', audience=audience, additional_claims={'meta': 'data'}) You can also construct the credentials directly if you have a :class:`~google.auth.crypt.Signer` instance:: credentials = jwt.Credentials( signer, issuer='your-issuer', subject='your-subject', audience=audience) The claims are considered immutable. If you want to modify the claims, you can easily create another instance using :meth:`with_claims`:: new_audience = ( 'https://pubsub.googleapis.com/google.pubsub.v1.Subscriber') new_credentials = credentials.with_claims(audience=new_audience) Nc����tt|�����||_||_||_||_||_||_|�i}||_ dS)a| Args: signer (google.auth.crypt.Signer): The signer used to sign JWTs. issuer (str): The `iss` claim. subject (str): The `sub` claim. audience (str): the `aud` claim. The intended audience for the credentials. additional_claims (Mapping[str, str]): Any additional claims for the JWT payload. token_lifetime (int): The amount of time in seconds for which the token is valid. Defaults to 1 hour. quota_project_id (Optional[str]): The project ID used for quota and billing. N) �superr]�__init__�_signer�_issuer�_subject� _audience�_token_lifetime�_quota_project_id�_additional_claims) �selfr�issuer�subjectrV�additional_claims�token_lifetime�quota_project_id� __class__s �r$r`zCredentials.__init__ssg���0 �k�4� � �)�)�+�+�+��� ��� ��� �!���-���!1��� � $� "� �"3����r%c ��|�d|d��|�d|d��||fi|��S)a�Creates a Credentials instance from a signer and service account info. Args: signer (google.auth.crypt.Signer): The signer used to sign JWTs. info (Mapping[str, str]): The service account info. kwargs: Additional arguments to pass to the constructor. Returns: google.auth.jwt.Credentials: The constructed credentials. Raises: google.auth.exceptions.MalformedError: If the info is not in the expected format. rj� client_emailri�� setdefault��clsr�info�kwargss r$�_from_signer_and_infoz!Credentials._from_signer_and_info��R�� ���)�T�.�%9�:�:�:����(�D��$8�9�9�9��s�6�$�$�V�$�$�$r%c �N�tj|dg���}|j||fi|��S)a�Creates an Credentials instance from a dictionary. Args: info (Mapping[str, str]): The service account info in Google format. kwargs: Additional arguments to pass to the constructor. Returns: google.auth.jwt.Credentials: The constructed credentials. Raises: google.auth.exceptions.MalformedError: If the info is not in the expected format. rp��require�r� from_dictrw�rtrurvrs r$�from_service_account_infoz%Credentials.from_service_account_info��9��'�0���?O�P�P�P��(�s�(���@�@��@�@�@r%c �T�tj|dg���\}}|j||fi|��S)aWCreates a Credentials instance from a service account .json file in Google format. Args: filename (str): The path to the service account .json file. kwargs: Additional arguments to pass to the constructor. Returns: google.auth.jwt.Credentials: The constructed credentials. rprz�r� from_filenamerw�rt�filenamervrurs r$�from_service_account_filez%Credentials.from_service_account_file��F��-�:� �~�.� � � � ��f�)�s�(���@�@��@�@�@r%c ��|�d|j��|�d|j��||jfd|i|��S)a;Creates a new :class:`google.auth.jwt.Credentials` instance from an existing :class:`google.auth.credentials.Signing` instance. The new instance will use the same signer as the existing instance and will use the existing instance's signer email as the issuer and subject by default. Example:: svc_creds = service_account.Credentials.from_service_account_file( 'service_account.json') audience = ( 'https://pubsub.googleapis.com/google.pubsub.v1.Publisher') jwt_creds = jwt.Credentials.from_signing_credentials( svc_creds, audience=audience) Args: credentials (google.auth.credentials.Signing): The credentials to use to construct the new credentials. audience (str): the `aud` claim. The intended audience for the credentials. kwargs: Additional arguments to pass to the constructor. Returns: google.auth.jwt.Credentials: A new Credentials instance. rirjrV�rr� signer_emailr)rt� credentialsrVrvs r$�from_signing_credentialsz$Credentials.from_signing_credentials�sV��8 ���(�K�$<�=�=�=����)�[�%=�>�>�>��s�;�%�C�C��C�F�C�C�Cr%c���tj|j��}|�|pi��|�|j|�|n|j|�|n|j|�|n|j||j ���S)a�Returns a copy of these credentials with modified claims. Args: issuer (str): The `iss` claim. If unspecified the current issuer claim will be used. subject (str): The `sub` claim. If unspecified the current subject claim will be used. audience (str): the `aud` claim. If unspecified the current audience claim will be used. additional_claims (Mapping[str, str]): Any additional claims for the JWT payload. This will be merged with the current additional claims. Returns: google.auth.jwt.Credentials: A new credentials instance. N�rirjrVrkrm) �copy�deepcopyrgrrnrarbrcrdrf)rhrirjrVrk�new_additional_claimss r$� with_claimszCredentials.with_claims�s���&!%� �d�.E� F� F���$�$�%6�%<�"�=�=�=��~�~� �L�#�/�6�6�T�\�&�2�G�G�� �!)�!5�X�X�4�>�3�!�3� � � � r%c�j�|�|j|j|j|j|j|���S)Nr�)rnrarbrcrdrg�rhrms r$�with_quota_projectzCredentials.with_quota_projects:���~�~� �L��<��M��^�"�5�-� � � � r%c�X�tj��}tj|j���}||z}|j|jtj|��tj|��d�}|jr |j|d<|� |j ��t|j |��}||fS)zuMake a signed JWT. Returns: Tuple[bytes, datetime]: The encoded JWT and the expiration. ��seconds)�iss�subr@rArL) rrC�datetime� timedeltarerbrcrBrdrrgrra)rhrF�lifetime�expiryr�jwts r$� _make_jwtzCredentials._make_jwts��� �o�����%�d�.B�C�C�C���x����<��=��,�S�1�1��,�V�4�4�  � �� �>� ,�!�^�G�E�N����t�.�/�/�/��T�\�7�+�+���F�{�r%c�H�|���\|_|_dS)zVRefreshes the access token. Args: request (Any): Unused. N)r�r7r��rh�requests r$�refreshzCredentials.refresh2s ��#'�.�.�"2�"2��� �D�K�K�Kr%c�6�|j�|��S�N�rar�rh�messages r$� sign_byteszCredentials.sign_bytes<����|� � ��)�)�)r%c��|jSr��rb�rhs r$r�zCredentials.signer_email@� ���|�r%c��|jSr��rar�s r$rzCredentials.signerEr�r%c��|jS)z3 Additional claims the JWT object was created with.)rgr�s r$rkzCredentials.additional_claimsJs ���&�&r%)NNNN)�__name__� __module__� __qualname__�__doc__�_DEFAULT_TOKEN_LIFETIME_SECSr`� classmethodrwrr�r�r�r�copy_docstring�google�authr��CredentialsWithQuotaProjectr�r�r��Signingr��propertyr�rrk� __classcell__�rns@r$r]r]?s��������/�/�n�3��#4�#4�#4�#4�#4�#4�J�%�%��[�%�&�A�A��[�A�"�A�A��[�A� �D�D��[�D�@KO� � � � �>�X��V�[�4�P�Q�Q� � �R�Q� ����23�3�3��X��V�[�4�<�=�=�*�*�>�=�*���X��V�[�4�<�=�=���>�=��X����X��V�[�4�<�=�=���>�=��X���'�'��X�'�'�'�'�'r%r]c���eZdZdZdeedf�fd� Zed���Zed���Z ed���Z ed���Z dd�Z e jejjj��d ���Zed ���Zd �Zd �Zd �Zd�Ze jejjj��d���Zee jejjj��d�����Zee jejjj��d�����Z�xZS)�OnDemandCredentialsaOn-demand JWT credentials. Like :class:`Credentials`, this class uses a JWT as the bearer token for authentication. However, this class does not require the audience at construction time. Instead, it will generate a new token on-demand for each request using the request URI as the audience. It caches tokens so that multiple requests to the same URI do not incur the overhead of generating a new token every time. This behavior is especially useful for `gRPC`_ clients. A gRPC service may have multiple audience and gRPC clients may not know all of the audiences required for accessing a particular service. With these credentials, no knowledge of the audiences is required ahead of time. .. _grpc: http://www.grpc.io/ Nc����tt|�����||_||_||_||_||_|�i}||_tj |���|_ dS)a� Args: signer (google.auth.crypt.Signer): The signer used to sign JWTs. issuer (str): The `iss` claim. subject (str): The `sub` claim. additional_claims (Mapping[str, str]): Any additional claims for the JWT payload. token_lifetime (int): The amount of time in seconds for which the token is valid. Defaults to 1 hour. max_cache_size (int): The maximum number of JWT tokens to keep in cache. Tokens are cached using :class:`cachetools.LRUCache`. quota_project_id (Optional[str]): The project ID used for quota and billing. N)�maxsize) r_r�r`rarbrcrerfrg� cachetools�LRUCache�_cache) rhrrirjrkrl�max_cache_sizermrns �r$r`zOnDemandCredentials.__init__dst���2 �!�4�(�(�1�1�3�3�3��� ��� ��� �-���!1��� � $� "� �"3��� �)�.�A�A�A�� � � r%c ��|�d|d��|�d|d��||fi|��S)aCreates an OnDemandCredentials instance from a signer and service account info. Args: signer (google.auth.crypt.Signer): The signer used to sign JWTs. info (Mapping[str, str]): The service account info. kwargs: Additional arguments to pass to the constructor. Returns: google.auth.jwt.OnDemandCredentials: The constructed credentials. Raises: google.auth.exceptions.MalformedError: If the info is not in the expected format. rjrprirqrss r$rwz)OnDemandCredentials._from_signer_and_info�rxr%c �N�tj|dg���}|j||fi|��S)a�Creates an OnDemandCredentials instance from a dictionary. Args: info (Mapping[str, str]): The service account info in Google format. kwargs: Additional arguments to pass to the constructor. Returns: google.auth.jwt.OnDemandCredentials: The constructed credentials. Raises: google.auth.exceptions.MalformedError: If the info is not in the expected format. rprzr|r~s r$rz-OnDemandCredentials.from_service_account_info�r�r%c �T�tj|dg���\}}|j||fi|��S)ahCreates an OnDemandCredentials instance from a service account .json file in Google format. Args: filename (str): The path to the service account .json file. kwargs: Additional arguments to pass to the constructor. Returns: google.auth.jwt.OnDemandCredentials: The constructed credentials. rprzr�r�s r$r�z-OnDemandCredentials.from_service_account_file�r�r%c ��|�d|j��|�d|j��||jfi|��S)akCreates a new :class:`google.auth.jwt.OnDemandCredentials` instance from an existing :class:`google.auth.credentials.Signing` instance. The new instance will use the same signer as the existing instance and will use the existing instance's signer email as the issuer and subject by default. Example:: svc_creds = service_account.Credentials.from_service_account_file( 'service_account.json') jwt_creds = jwt.OnDemandCredentials.from_signing_credentials( svc_creds) Args: credentials (google.auth.credentials.Signing): The credentials to use to construct the new credentials. kwargs: Additional arguments to pass to the constructor. Returns: google.auth.jwt.Credentials: A new Credentials instance. rirjr�)rtr�rvs r$r�z,OnDemandCredentials.from_signing_credentials�sQ��0 ���(�K�$<�=�=�=����)�[�%=�>�>�>��s�;�%�0�0��0�0�0r%c���tj|j��}|�|pi��|�|j|�|n|j|�|n|j||jj |j ���S)aJReturns a copy of these credentials with modified claims. Args: issuer (str): The `iss` claim. If unspecified the current issuer claim will be used. subject (str): The `sub` claim. If unspecified the current subject claim will be used. additional_claims (Mapping[str, str]): Any additional claims for the JWT payload. This will be merged with the current additional claims. Returns: google.auth.jwt.OnDemandCredentials: A new credentials instance. N�rirjrkr�rm) r�r�rgrrnrarbrcr�r�rf)rhrirjrkr�s r$r�zOnDemandCredentials.with_claims�s~��!%� �d�.E� F� F���$�$�%6�%<�"�=�=�=��~�~� �L�#�/�6�6�T�\�&�2�G�G�� �3��;�.�!�3� � � � r%c�t�|�|j|j|j|j|jj|���S)Nr�)rnrarbrcrgr�r�r�s r$r�z&OnDemandCredentials.with_quota_project�s?���~�~� �L��<��M�"�5��;�.�-� � � � r%c��dS)z�Checks the validity of the credentials. These credentials are always valid because it generates tokens on demand. T�r�s r$�validzOnDemandCredentials.valids ���tr%c�8�tj��}tj|j���}||z}|j|jtj|��tj|��|d�}|�|j ��t|j |��}||fS)z�Make a new JWT for the given audience. Args: audience (str): The intended audience. Returns: Tuple[bytes, datetime]: The encoded JWT and the expiration. r�)r�r�r@rArL) rrCr�r�rerbrcrBrrgrra)rhrVrFr�r�rr�s r$�_make_jwt_for_audiencez*OnDemandCredentials._make_jwt_for_audience s����o�����%�d�.B�C�C�C���x����<��=��,�S�1�1��,�V�4�4��  � �� ���t�.�/�/�/��T�\�7�+�+���F�{�r%c��|j�|d��\}}|�|tj��kr$|�|��\}}||f|j|<|S)aGGet a JWT For a given audience. If there is already an existing, non-expired token in the cache for the audience, that token is used. Otherwise, a new token will be created. Args: audience (str): The intended audience. Returns: bytes: The encoded JWT. �NN)r�rMrrCr�)rhrVr7r�s r$�_get_jwt_for_audiencez)OnDemandCredentials._get_jwt_for_audience(s`��� ����,�?�?� ��v� �=�F�X�_�%6�%6�6�6� �7�7��A�A�M�E�6�$)�6�M�D�K�� !�� r%c�*�tjd���)z�Raises an exception, these credentials can not be directly refreshed. Args: request (Any): Unused. Raises: google.auth.RefreshError z2OnDemandCredentials can not be directly refreshed.)r� RefreshErrorr�s r$r�zOnDemandCredentials.refresh=s���%� @� � � r%c��tj�|��}tj�|j|j|jddf��}|�|��}|�||���dS)a�Performs credential-specific before request logic. Args: request (Any): Unused. JWT credentials do not need to make an HTTP request to refresh. method (str): The request's HTTP method. url (str): The request's URI. This is used as the audience claim when generating the JWT. headers (Mapping): The request's headers. �)r7N) �urllib�parse�urlsplit� urlunsplit�scheme�netloc�pathr��apply)rhr��method�url�headers�partsrVr7s r$�before_requestz"OnDemandCredentials.before_requestMsu��� �%�%�c�*�*���<�*�*� �\�5�<���R�� <� � ���*�*�8�4�4�� � � �7�%� �(�(�(�(�(r%c�6�|j�|��Sr�r�r�s r$r�zOnDemandCredentials.sign_bytesbr�r%c��|jSr�r�r�s r$r�z OnDemandCredentials.signer_emailfr�r%c��|jSr�r�r�s r$rzOnDemandCredentials.signerkr�r%)NNN)r�r�r�r�r��_DEFAULT_MAX_CACHE_SIZEr`r�rwrr�r�r�rr�r�r�r�r�r�r�r�r�r�r�r�r�r�r�rr�r�s@r$r�r�Ps���������,�3�.��$B�$B�$B�$B�$B�$B�L�%�%��[�%�&�A�A��[�A�"�A�A��[�A� �1�1��[�1�6 � � � �6�X��V�[�4�P�Q�Q�  �  �R�Q�  �����X�����6���* � � � )�)�)�*�X��V�[�4�<�=�=�*�*�>�=�*���X��V�[�4�<�=�=���>�=��X����X��V�[�4�<�=�=���>�=��X�����r%r�r�)r)NTNr)&r��collections.abcr� ImportError� collectionsr�r�rr�r�� google.authrrrr�google.auth.credentialsr��google.auth.cryptrr�r�� RSAVerifierrN� frozensetrP� ES256Verifierrr1r;r>rJr)r�r�r�r�r]r�r�r%r$�<module>r�sl����8$�'�'�'�'�'�'�'���$�$�$�#�#�#�#�#�#�#�#�$���� � � � ����� � � � � � � � ����� � � � � � �-�-�-�-�-�-�������"�"�"�"�"�"������'�'�'�'�'�'�'������ �E�E�E����� $���� '��):�;��!*��G�9�!5�!5����,1�,?� ��)�(�(�(�(�V &� &� &�&6�&6�&6�R���"(T�(T�(T�(T�VU�U�U�U�pN'�N'�N'�N'�N'� �K��#�V�[�%<�%X�N'�N'�N'�b^�^�^�^�^� �K��#�V�[�%<�%X�^�^�^�^�^s� � �� A�A�A
Memory