
    Yir                     4   S r SSKJrJrJrJr  SSKJr  SSKJ	r	J
r
  SSKJr  SSKJrJr  SSKJr  SSKJr  SS	KJr  SS
KJr  SSKJr  SSKJrJr  SSKJr  SSKJ r   SSK!J"r"  SSK#J$r$J%r%  SSK&J'r'  SSK(J)r)  SSK*J+r+  \(       a
  SSKJ,r,J-r-J.r.   " S S\'5      r/g)zAThis module contains an object that represents a Telegram Update.    )TYPE_CHECKINGFinalOptionalUnion)	constants)BusinessConnectionBusinessMessagesDeleted)CallbackQuery)ChatBoostRemovedChatBoostUpdated)ChatJoinRequest)ChatMemberUpdated)ChosenInlineResult)InlineQuery)Message)MessageReactionCountUpdatedMessageReactionUpdated)PaidMediaPurchased)PreCheckoutQuery)ShippingQuery)Poll
PollAnswer)TelegramObject)JSONDict)warn)BotChatUserc            5         ^  \ rS rSr% SrSr\R                  R                  r\	\
   \S'    \R                  R                  r\	\
   \S'    \R                  R                  r\	\
   \S'    \R                  R                  r\	\
   \S'    \R                  R                  r\	\
   \S'    \R                  R                   r\	\
   \S	'    \R                  R"                  r\	\
   \S
'    \R                  R$                  r\	\
   \S'    \R                  R&                  r\	\
   \S'    \R                  R(                  r\	\
   \S'    \R                  R*                  r\	\
   \S'    \R                  R,                  r\	\
   \S'    \R                  R.                  r\	\
   \S'    \R                  R0                  r\	\
   \S'    \R                  R2                  r\	\
   \S'    \R                  R4                  r\	\
   \S'    \R                  R6                  r\	\
   \S'    \R                  R8                  r\	\
   \S'    \R                  R:                  r\	\
   \S'    \R                  R<                  r\	\
   \S'    \R                  R>                  r\	\
   \S'    \R                  R@                  r \	\
   \S'    \R                  RB                  r!\	\
   \S'    \"" \R                  5      r#\	\"\
      \S'                           SESS.S\$S\%\&   S \%\&   S!\%\&   S"\%\&   S#\%\'   S$\%\(   S%\%\)   S&\%\*   S'\%\+   S(\%\,   S)\%\-   S*\%\.   S+\%\.   S,\%\/   S-\%\0   S.\%\1   S/\%\2   S0\%\3   S1\%\4   S2\%\&   S3\%\&   S4\%\5   S5\%\6   S6\%\7   42U 4S7 jjjjr8\9S8\%S9   4S: j5       r:\9S8\%\;S;      4S< j5       r<\9S8\%S=   4S> j5       r=\9S8\%\&   4S? j5       r>\?SFS@\%\7   SA\%SB   S8\%S    4U 4SC jjj5       r@SDrAU =rB$ )GUpdate-   a1  This object represents an incoming update.

Objects of this class are comparable in terms of equality. Two objects of this class are
considered equal, if their :attr:`update_id` is equal.

Note:
    At most one of the optional parameters can be present in any given update.

.. seealso:: :wiki:`Your First Bot <Extensions---Your-first-Bot>`

Args:
    update_id (:obj:`int`): The update's unique identifier. Update identifiers start from a
        certain positive number and increase sequentially. This ID becomes especially handy if
        you're using Webhooks, since it allows you to ignore repeated updates or to restore the
        correct update sequence, should they get out of order. If there are no new updates for
        at least a week, then identifier of the next update will be chosen randomly instead of
        sequentially.
    message (:class:`telegram.Message`, optional): New incoming message of any kind - text,
        photo, sticker, etc.
    edited_message (:class:`telegram.Message`, optional): New version of a message that is
        known to the bot and was edited. This update may at times be triggered by changes to
        message fields that are either unavailable or not actively used by your bot.
    channel_post (:class:`telegram.Message`, optional): New incoming channel post of any kind
        - text, photo, sticker, etc.
    edited_channel_post (:class:`telegram.Message`, optional): New version of a channel post
        that is known to the bot and was edited. This update may at times be triggered by
        changes to message fields that are either unavailable or not actively used by your bot.
    inline_query (:class:`telegram.InlineQuery`, optional): New incoming inline query.
    chosen_inline_result (:class:`telegram.ChosenInlineResult`, optional): The result of an
        inline query that was chosen by a user and sent to their chat partner.
    callback_query (:class:`telegram.CallbackQuery`, optional): New incoming callback query.
    shipping_query (:class:`telegram.ShippingQuery`, optional): New incoming shipping query.
        Only for invoices with flexible price.
    pre_checkout_query (:class:`telegram.PreCheckoutQuery`, optional): New incoming
        pre-checkout query. Contains full information about checkout.
    poll (:class:`telegram.Poll`, optional): New poll state. Bots receive only updates about
        manually stopped polls and polls, which are sent by the bot.
    poll_answer (:class:`telegram.PollAnswer`, optional): A user changed their answer
        in a non-anonymous poll. Bots receive new votes only in polls that were sent
        by the bot itself.
    my_chat_member (:class:`telegram.ChatMemberUpdated`, optional): The bot's chat member
        status was updated in a chat. For private chats, this update is received only when the
        bot is blocked or unblocked by the user.

        .. versionadded:: 13.4
    chat_member (:class:`telegram.ChatMemberUpdated`, optional): A chat member's status was
        updated in a chat. The bot must be an administrator in the chat and must explicitly
        specify :attr:`CHAT_MEMBER` in the list of
        :paramref:`telegram.ext.Application.run_polling.allowed_updates` to receive these
        updates (see :meth:`telegram.Bot.get_updates`, :meth:`telegram.Bot.set_webhook`,
        :meth:`telegram.ext.Application.run_polling` and
        :meth:`telegram.ext.Application.run_webhook`).

        .. versionadded:: 13.4
    chat_join_request (:class:`telegram.ChatJoinRequest`, optional): A request to join the
        chat has been sent. The bot must have the
        :attr:`telegram.ChatPermissions.can_invite_users` administrator right in the chat to
        receive these updates.

        .. versionadded:: 13.8

    chat_boost (:class:`telegram.ChatBoostUpdated`, optional): A chat boost was added or
        changed. The bot must be an administrator in the chat to receive these updates.

        .. versionadded:: 20.8

    removed_chat_boost (:class:`telegram.ChatBoostRemoved`, optional): A boost was removed from
        a chat. The bot must be an administrator in the chat to receive these updates.

        .. versionadded:: 20.8

    message_reaction (:class:`telegram.MessageReactionUpdated`, optional): A reaction to a
        message was changed by a user. The bot must be an administrator in the chat and must
        explicitly specify :attr:`MESSAGE_REACTION` in the list of
        :paramref:`telegram.ext.Application.run_polling.allowed_updates` to receive these
        updates (see :meth:`telegram.Bot.get_updates`, :meth:`telegram.Bot.set_webhook`,
        :meth:`telegram.ext.Application.run_polling` and
        :meth:`telegram.ext.Application.run_webhook`). The update isn't received for reactions
        set by bots.

        .. versionadded:: 20.8

    message_reaction_count (:class:`telegram.MessageReactionCountUpdated`, optional): Reactions
        to a message with anonymous reactions were changed. The bot must be an administrator in
        the chat and must explicitly specify :attr:`MESSAGE_REACTION_COUNT` in the list of
        :paramref:`telegram.ext.Application.run_polling.allowed_updates` to receive these
        updates (see :meth:`telegram.Bot.get_updates`, :meth:`telegram.Bot.set_webhook`,
        :meth:`telegram.ext.Application.run_polling` and
        :meth:`telegram.ext.Application.run_webhook`). The updates are grouped and can be sent
        with delay up to a few minutes.

        .. versionadded:: 20.8

    business_connection (:class:`telegram.BusinessConnection`, optional): The bot was connected
        to or disconnected from a business account, or a user edited an existing connection
        with the bot.

        .. versionadded:: 21.1

    business_message (:class:`telegram.Message`, optional): New message from a connected
        business account.

        .. versionadded:: 21.1

    edited_business_message (:class:`telegram.Message`, optional): New version of a message
        from a connected business account.

        .. versionadded:: 21.1

    deleted_business_messages (:class:`telegram.BusinessMessagesDeleted`, optional): Messages
        were deleted from a connected business account.

        .. versionadded:: 21.1

    purchased_paid_media (:class:`telegram.PaidMediaPurchased`, optional): A user purchased
        paid media with a non-empty payload sent by the bot in a non-channel chat.

        .. versionadded:: 21.6


Attributes:
    update_id (:obj:`int`): The update's unique identifier. Update identifiers start from a
        certain positive number and increase sequentially. This ID becomes especially handy if
        you're using Webhooks, since it allows you to ignore repeated updates or to restore the
        correct update sequence, should they get out of order. If there are no new updates for
        at least a week, then identifier of the next update will be chosen randomly instead of
        sequentially.
    message (:class:`telegram.Message`): Optional. New incoming message of any kind - text,
        photo, sticker, etc.
    edited_message (:class:`telegram.Message`): Optional. New version of a message that is
        known to the bot and was edited. This update may at times be triggered by changes to
        message fields that are either unavailable or not actively used by your bot.
    channel_post (:class:`telegram.Message`): Optional. New incoming channel post of any kind
        - text, photo, sticker, etc.
    edited_channel_post (:class:`telegram.Message`): Optional. New version of a channel post
        that is known to the bot and was edited. This update may at times be triggered by
        changes to message fields that are either unavailable or not actively used by your bot.
    inline_query (:class:`telegram.InlineQuery`): Optional. New incoming inline query.
    chosen_inline_result (:class:`telegram.ChosenInlineResult`): Optional. The result of an
        inline query that was chosen by a user and sent to their chat partner.
    callback_query (:class:`telegram.CallbackQuery`): Optional. New incoming callback query.

        Examples:
            :any:`Arbitrary Callback Data Bot <examples.arbitrarycallbackdatabot>`
    shipping_query (:class:`telegram.ShippingQuery`): Optional. New incoming shipping query.
        Only for invoices with flexible price.
    pre_checkout_query (:class:`telegram.PreCheckoutQuery`): Optional. New incoming
        pre-checkout query. Contains full information about checkout.
    poll (:class:`telegram.Poll`): Optional. New poll state. Bots receive only updates about
        manually stopped polls and polls, which are sent by the bot.
    poll_answer (:class:`telegram.PollAnswer`): Optional. A user changed their answer
        in a non-anonymous poll. Bots receive new votes only in polls that were sent
        by the bot itself.
    my_chat_member (:class:`telegram.ChatMemberUpdated`): Optional. The bot's chat member
        status was updated in a chat. For private chats, this update is received only when the
        bot is blocked or unblocked by the user.

        .. versionadded:: 13.4
    chat_member (:class:`telegram.ChatMemberUpdated`): Optional. A chat member's status was
        updated in a chat. The bot must be an administrator in the chat and must explicitly
        specify :attr:`CHAT_MEMBER` in the list of
        :paramref:`telegram.ext.Application.run_polling.allowed_updates` to receive these
        updates (see :meth:`telegram.Bot.get_updates`, :meth:`telegram.Bot.set_webhook`,
        :meth:`telegram.ext.Application.run_polling` and
        :meth:`telegram.ext.Application.run_webhook`).

        .. versionadded:: 13.4
    chat_join_request (:class:`telegram.ChatJoinRequest`): Optional. A request to join the
        chat has been sent. The bot must have the
        :attr:`telegram.ChatPermissions.can_invite_users` administrator right in the chat to
        receive these updates.

        .. versionadded:: 13.8

    chat_boost (:class:`telegram.ChatBoostUpdated`): Optional. A chat boost was added or
        changed. The bot must be an administrator in the chat to receive these updates.

        .. versionadded:: 20.8

    removed_chat_boost (:class:`telegram.ChatBoostRemoved`): Optional. A boost was removed from
        a chat. The bot must be an administrator in the chat to receive these updates.

        .. versionadded:: 20.8

    message_reaction (:class:`telegram.MessageReactionUpdated`): Optional. A reaction to a
        message was changed by a user. The bot must be an administrator in the chat and must
        explicitly specify :attr:`MESSAGE_REACTION` in the list of
        :paramref:`telegram.ext.Application.run_polling.allowed_updates` to receive these
        updates (see :meth:`telegram.Bot.get_updates`, :meth:`telegram.Bot.set_webhook`,
        :meth:`telegram.ext.Application.run_polling` and
        :meth:`telegram.ext.Application.run_webhook`). The update isn't received for reactions
        set by bots.

        .. versionadded:: 20.8

    message_reaction_count (:class:`telegram.MessageReactionCountUpdated`): Optional. Reactions
        to a message with anonymous reactions were changed. The bot must be an administrator in
        the chat and must explicitly specify :attr:`MESSAGE_REACTION_COUNT` in the list of
        :paramref:`telegram.ext.Application.run_polling.allowed_updates` to receive these
        updates (see :meth:`telegram.Bot.get_updates`, :meth:`telegram.Bot.set_webhook`,
        :meth:`telegram.ext.Application.run_polling` and
        :meth:`telegram.ext.Application.run_webhook`). The updates are grouped and can be sent
        with delay up to a few minutes.

        .. versionadded:: 20.8

    business_connection (:class:`telegram.BusinessConnection`): Optional. The bot was connected
        to or disconnected from a business account, or a user edited an existing connection
        with the bot.

        .. versionadded:: 21.1

    business_message (:class:`telegram.Message`): Optional. New message from a connected
        business account.

        .. versionadded:: 21.1

    edited_business_message (:class:`telegram.Message`): Optional. New version of a message
        from a connected business account.

        .. versionadded:: 21.1

    deleted_business_messages (:class:`telegram.BusinessMessagesDeleted`): Optional. Messages
        were deleted from a connected business account.

        .. versionadded:: 21.1

    purchased_paid_media (:class:`telegram.PaidMediaPurchased`): Optional. A user purchased
        paid media with a non-empty payload sent by the bot in a non-channel chat.

        .. versionadded:: 21.6
)_effective_chat_effective_message_effective_sender_effective_userbusiness_connectionbusiness_messagecallback_querychannel_post
chat_boostchat_join_requestchat_memberchosen_inline_resultdeleted_business_messagesedited_business_messageedited_channel_postedited_messageinline_querymessagemessage_reactionmessage_reaction_countmy_chat_memberpollpoll_answerpre_checkout_querypurchased_paid_mediaremoved_chat_boostshipping_query	update_idMESSAGEEDITED_MESSAGECHANNEL_POSTEDITED_CHANNEL_POSTINLINE_QUERYCHOSEN_INLINE_RESULTCALLBACK_QUERYSHIPPING_QUERYPRE_CHECKOUT_QUERYPOLLPOLL_ANSWERMY_CHAT_MEMBERCHAT_MEMBERCHAT_JOIN_REQUEST
CHAT_BOOSTREMOVED_CHAT_BOOSTMESSAGE_REACTIONMESSAGE_REACTION_COUNTBUSINESS_CONNECTIONBUSINESS_MESSAGEEDITED_BUSINESS_MESSAGEDELETED_BUSINESS_MESSAGESPURCHASED_PAID_MEDIA	ALL_TYPESN
api_kwargsr=   r3   r1   r)   r0   r2   r-   r(   r<   r9   r7   r8   r6   r,   r+   r*   r;   r4   r5   r&   r'   r/   r.   r:   rW   c                  > [         TU ]  US9  Xl        X l        X0l        X`l        Xpl        Xl        Xl        Xl	        X@l
        XPl        Xl        Xl        Xl        Xl        Xl        UU l        UU l        UU l        UU l        UU l        UU l        UU l        UU l        UU l        S U l        S U l        S U l        S U l        U R                  4U l        U R?                  5         g )NrV   ) super__init__r=   r3   r1   r2   r-   r(   r<   r9   r)   r0   r7   r8   r6   r,   r+   r*   r;   r4   r5   r&   r'   r/   r.   r:   r%   r$   r"   r#   	_id_attrs_freeze)selfr=   r3   r1   r)   r0   r2   r-   r(   r<   r9   r7   r8   r6   r,   r+   r*   r;   r4   r5   r&   r'   r/   r.   r:   rW   	__class__s                             ;/app/.venv/lib/python3.13/site-packages/telegram/_update.pyrZ   Update.__init__  s    : 	J/'*11?3?BV!7E7E>P/;6I $(	1<;I8C<M6@>PBRMc#AT 3C:Q$% 	& CW!/3>B/359..*    returnr   c                 `   U R                   (       a  U R                   $ SnU R                  (       a  U R                  R                  nGO_U R                  (       a  U R                  R                  nGO6U R                  (       a  U R                  R                  nGOU R
                  (       a  U R
                  R                  nGOU R                  (       a  U R                  R                  nGOU R                  (       a  U R                  R                  nGOU R                  (       a  U R                  R                  nGOiU R                  (       a  U R                  R                  nGO@U R                  (       a  U R                  R                  nGOU R                  (       a  U R                  R                  nOU R                  (       a  U R                  R                  nOU R                  (       a  U R                  R                  nOU R                  (       a  U R                  R                  nOwU R                   (       a  U R                   R                  nOOU R"                  (       a  U R"                  R                  nO'U R$                  (       a  U R$                  R                  nXl         U$ )aE  
:class:`telegram.User`: The user that sent this update, no matter what kind of update this
is. If no user is associated with this update, this gives :obj:`None`. This is the case
if any of

* :attr:`channel_post`
* :attr:`edited_channel_post`
* :attr:`poll`
* :attr:`chat_boost`
* :attr:`removed_chat_boost`
* :attr:`message_reaction_count`
* :attr:`deleted_business_messages`

is present.

.. versionchanged:: 21.1
    This property now also considers :attr:`business_connection`, :attr:`business_message`
    and :attr:`edited_business_message`.

.. versionchanged:: 21.6
    This property now also considers :attr:`purchased_paid_media`.

Example:
    * If :attr:`message` is present, this will give
      :attr:`telegram.Message.from_user`.
    * If :attr:`poll_answer` is present, this will give :attr:`telegram.PollAnswer.user`.

N)r%   r3   	from_userr1   r2   r-   r(   r<   r9   r8   userr6   r,   r+   r4   r'   r/   r&   r:   )r]   re   s     r_   effective_userUpdate.effective_user  s   < '''<<<<))D  &&00D$$..D&&,,66D  &&00D  &&00D$$**44D##((D  &&00D##--D##))33D""((--D""((22D))//99D%%++00D&&,,66D#ra   )r   r   c                 
   U R                   (       a  U R                   $ SnU R                  =(       dX    U R                  =(       dE    U R                  =(       d2    U R                  =(       d    U R
                  =(       d    U R                  =n(       a  UR                  nOOU R                  (       a  U R                  R                  nO'U R                  (       a  U R                  R                  nUc  U R                  nXl         U$ )a  
:class:`telegram.User` or :class:`telegram.Chat`: The user or chat that sent this update,
no matter what kind of update this is.

Note:
    * Depending on the type of update and the user's 'Remain anonymous' setting, this
      could either be :class:`telegram.User`, :class:`telegram.Chat` or :obj:`None`.

If no user whatsoever is associated with this update, this gives :obj:`None`. This
is the case if any of

* :attr:`poll`
* :attr:`chat_boost`
* :attr:`removed_chat_boost`
* :attr:`message_reaction_count`
* :attr:`deleted_business_messages`

is present.

Example:
    * If :attr:`message` is present, this will give either
      :attr:`telegram.Message.from_user` or :attr:`telegram.Message.sender_chat`.
    * If :attr:`poll_answer` is present, this will give either
      :attr:`telegram.PollAnswer.user` or :attr:`telegram.PollAnswer.voter_chat`.
    * If :attr:`channel_post` is present, this will give
      :attr:`telegram.Message.sender_chat`.

.. versionadded:: 21.1
N)r$   r3   r1   r)   r0   r'   r/   sender_chatr8   
voter_chatr4   
actor_chatrf   )r]   senderr3   s      r_   effective_senderUpdate.effective_sender4  s    > !!))).2 LL ,"",  , '', $$	,
 ++
7 
 ((F%%00F""**55F>((F!'ra   r   c                 X   U R                   (       a  U R                   $ SnU R                  (       a  U R                  R                  nGO[U R                  (       a  U R                  R                  nGO2U R                  (       a=  U R                  R                  (       a"  U R                  R                  R                  nGOU R
                  (       a  U R
                  R                  nGOU R                  (       a  U R                  R                  nGOU R                  (       a  U R                  R                  nGOiU R                  (       a  U R                  R                  nGO@U R                  (       a  U R                  R                  nGOU R                  (       a  U R                  R                  nOU R                  (       a  U R                  R                  nOU R                  (       a  U R                  R                  nOU R                  (       a  U R                  R                  nOwU R                  (       a  U R                  R                  nOOU R                  (       a  U R                  R                  nO'U R                   (       a  U R                   R                  nXl         U$ )a  
:class:`telegram.Chat`: The chat that this update was sent in, no matter what kind of
update this is.
If no chat is associated with this update, this gives :obj:`None`.
This is the case, if :attr:`inline_query`,
:attr:`chosen_inline_result`, :attr:`callback_query` from inline messages,
:attr:`shipping_query`, :attr:`pre_checkout_query`, :attr:`poll`,
:attr:`poll_answer`, :attr:`business_connection`, or :attr:`purchased_paid_media`
is present.

.. versionchanged:: 21.1
    This property now also considers :attr:`business_message`,
    :attr:`edited_business_message`, and :attr:`deleted_business_messages`.

Example:
    If :attr:`message` is present, this will give :attr:`telegram.Message.chat`.

N)r"   r3   chatr1   r(   r)   r0   r6   r,   r+   r*   r;   r4   r5   r'   r/   r.   )r]   rp   s     r_   effective_chatUpdate.effective_chatn  s   ( '''<<<<$$D  &&++D  T%8%8%@%@&&..33D$$))D%%++00D  &&++D##((D##))..D__??''D$$**//D""((--D((..33D""((--D))//44D++1166D#ra   c                    U R                   (       a  U R                   $ SnU R                  (       a  U R                  nOU R                  (       a  U R                  nOU R                  (       aT  [	        U R                  R                  =n[
        5      (       d  Uc  UnO[        SUR                  R                   S3SS9  OwU R                  (       a  U R                  nOYU R                  (       a  U R                  nO;U R                  (       a  U R                  nOU R                  (       a  U R                  nXl         U$ )a  
:class:`telegram.Message`: The message included in this update, no matter what kind of
    update this is. More precisely, this will be the message contained in :attr:`message`,
    :attr:`edited_message`, :attr:`channel_post`, :attr:`edited_channel_post` or
    :attr:`callback_query` (i.e. :attr:`telegram.CallbackQuery.message`) or :obj:`None`, if
    none of those are present.

.. versionchanged:: 21.1
    This property now also considers :attr:`business_message`, and
    :attr:`edited_business_message`.

Tip:
    This property will only ever return objects of type :class:`telegram.Message` or
    :obj:`None`, never :class:`telegram.MaybeInaccessibleMessage` or
    :class:`telegram.InaccessibleMessage`.
    Currently, this is only relevant for :attr:`callback_query`, as
    :attr:`telegram.CallbackQuery.message` is the only attribute considered by this
    property that can be an object of these types.
Nz4`update.callback_query` is not `None`, but of type `zl`. This is not considered by `Update.effective_message`. Please manually access this attribute if necessary.   )
stacklevel)r#   r3   r1   r(   
isinstancer   r   r^   __name__r)   r0   r'   r/   )r]   r3   cbq_messages      r_   effective_messageUpdate.effective_message  s    * ""***%)<<llG  ))G  $*=*=*E*EE;wOO&%'11::; <((
  ! ''G%%..G""++G))22G")ra   databotr   c                   > U R                  U5      nU(       d  g[        R                  " UR                  S5      U5      US'   [        R                  " UR                  S5      U5      US'   [        R                  " UR                  S5      U5      US'   [
        R                  " UR                  S5      U5      US'   [        R                  " UR                  S5      U5      US'   [        R                  " UR                  S5      U5      US'   [        R                  " UR                  S5      U5      US'   [        R                  " UR                  S	5      U5      US	'   [        R                  " UR                  S
5      U5      US
'   [        R                  " UR                  S5      U5      US'   [        R                  " UR                  S5      U5      US'   [        R                  " UR                  S5      U5      US'   [        R                  " UR                  S5      U5      US'   [        R                  " UR                  S5      U5      US'   [        R                  " UR                  S5      U5      US'   [        R                  " UR                  S5      U5      US'   [        R                  " UR                  S5      U5      US'   [         R                  " UR                  S5      U5      US'   ["        R                  " UR                  S5      U5      US'   [        R                  " UR                  S5      U5      US'   [        R                  " UR                  S5      U5      US'   [$        R                  " UR                  S5      U5      US'   [&        R                  " UR                  S5      U5      US'   [(        TU ]	  XS9$ )z,See :meth:`telegram.TelegramObject.de_json`.Nr3   r1   r2   r-   r(   r<   r9   r)   r0   r7   r8   r6   r,   r+   r*   r;   r4   r5   r&   r'   r/   r.   r:   )r{   r|   )_parse_datar   de_jsongetr   r   r
   r   r   r   r   r   r   r   r   r   r   r   r	   r   rY   )clsr{   r|   r^   s      r_   r   Update.de_json  sC    t$!//$((9*=sCY!(:J1KS!Q*22488N3KSQ^'9'A'AHH+,c(
#$ "/!6!6txx@P7QSV!W!.!6!6txx@P7QSV!W%5%=%=dhhG[>\^a%b!"&txx/GM^&-oodhh?T6UWZ&["#||DHHV$4c:V(00-1H#N]!2!:!:488DT;UWZ![/778OQTU]$3$;$;DHHEX<Y[^$_ !-55dhh|6LcR\%5%=%=dhhG[>\^a%b!"#9#A#AHH'(#$
  *E)L)LHH-.*
%& '9&@&@HH*+S'
"# $+??488<N3OQT#U *1//$((C\:]_b*c&',C,K,KHH013-
() (:'A'AHH+,c(
#$ wD22ra   )r"   r#   r$   r%   r[   r&   r'   r(   r)   r*   r+   r,   r-   r.   r/   r0   r1   r2   r3   r4   r5   r6   r7   r8   r9   r:   r;   r<   r=   )NNNNNNNNNNNNNNNNNNNNNNN)N)Crw   
__module____qualname____firstlineno____doc__	__slots__r   
UpdateTyper>   r   str__annotations__r?   r@   rA   rB   rC   rD   rE   rF   rG   rH   rI   rJ   rK   rL   rM   rN   rO   rP   rQ   rR   rS   rT   listrU   intr   r   r   r   r
   r   r   r   r   r   r   r   r   r   r   r   r	   r   r   rZ   propertyrf   r   rm   rq   ry   classmethodr   __static_attributes____classcell__)r^   s   @r_   r    r    -   s   gRI> $..66GU3Z6 "+!5!5!D!DNE#JD  )33@@L%*@ '0&:&:&N&NsN  )33@@L%*@ (1';';'P'P%*P "+!5!5!D!DNE#JD "+!5!5!D!DNE#JD &/%9%9%L%Lc
L !++00D%*0 (22>>Ks> "+!5!5!D!DNE#JD (22>>Ks> %.$8$8$J$JuSzJ '11<<Jc
< &/%9%9%L%Lc
L $-#7#7#H#HeCjH *3)=)=)T)TE#JT '0&:&:&N&NsN $-#7#7#H#HeCjH +4*>*>*V*VU3ZV -6,@,@,Z,ZuSzZ (1';';'P'P%*P
 #'y';';"<IuT#Y< &*,0*.15.2=A26269=#,06:377;159==AHL<@.259GK=A3B6 *.7BB '"B !)	B
 w'B &g.B {+B ''9:B !/B !/B %%56B tnB j)B !!23B /0B  $O4!B" -.#B$ %%56%B& ##9:'B( !))D E)B* &&89+B, #7+-B. "*'!2/B0 $,,C#D1B2 ''9:3B6 X&7B BH S 0 S Sj 7(5+@"A 7 7r F 0 F FP =8G#4 = =~ +38H- +3HUO +3xX`Oa +3 +3ra   r    N)0r   typingr   r   r   r   telegramr   telegram._businessr   r	   telegram._callbackqueryr
   telegram._chatboostr   r   telegram._chatjoinrequestr   telegram._chatmemberupdatedr   telegram._choseninlineresultr   telegram._inline.inlinequeryr   telegram._messager    telegram._messagereactionupdatedr   r   telegram._paidmediar   "telegram._payment.precheckoutqueryr   telegram._payment.shippingqueryr   telegram._pollr   r   telegram._telegramobjectr   telegram._utils.typesr   telegram._utils.warningsr   r   r   r   r     ra   r_   <module>r      s[   & H 8 8  J 1 B 5 9 ; 4 % ` 2 ? 9 + 3 * )((v3^ v3ra   