xn-pyrogram 2.2.23__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pyrogram/__init__.py +38 -0
- pyrogram/client.py +1554 -0
- pyrogram/connection/__init__.py +19 -0
- pyrogram/connection/connection.py +92 -0
- pyrogram/connection/transport/__init__.py +19 -0
- pyrogram/connection/transport/tcp/__init__.py +24 -0
- pyrogram/connection/transport/tcp/tcp.py +248 -0
- pyrogram/connection/transport/tcp/tcp_abridged.py +66 -0
- pyrogram/connection/transport/tcp/tcp_abridged_o.py +106 -0
- pyrogram/connection/transport/tcp/tcp_full.py +73 -0
- pyrogram/connection/transport/tcp/tcp_intermediate.py +54 -0
- pyrogram/connection/transport/tcp/tcp_intermediate_o.py +88 -0
- pyrogram/crypto/__init__.py +17 -0
- pyrogram/crypto/aes.py +130 -0
- pyrogram/crypto/mtproto.py +100 -0
- pyrogram/crypto/prime.py +82 -0
- pyrogram/crypto/rsa.py +259 -0
- pyrogram/dispatcher.py +514 -0
- pyrogram/enums/__init__.py +107 -0
- pyrogram/enums/auto_name.py +27 -0
- pyrogram/enums/block_list.py +31 -0
- pyrogram/enums/business_schedule.py +34 -0
- pyrogram/enums/button_style.py +37 -0
- pyrogram/enums/chat_action.py +72 -0
- pyrogram/enums/chat_event_action.py +140 -0
- pyrogram/enums/chat_join_request_query_result.py +34 -0
- pyrogram/enums/chat_join_type.py +34 -0
- pyrogram/enums/chat_member_status.py +43 -0
- pyrogram/enums/chat_members_filter.py +42 -0
- pyrogram/enums/chat_type.py +46 -0
- pyrogram/enums/client_platform.py +49 -0
- pyrogram/enums/folder_color.py +47 -0
- pyrogram/enums/gift_attribute_type.py +36 -0
- pyrogram/enums/gift_for_resale_order.py +34 -0
- pyrogram/enums/gift_purchase_offer_state.py +34 -0
- pyrogram/enums/gift_type.py +31 -0
- pyrogram/enums/mask_point_type.py +35 -0
- pyrogram/enums/media_area_type.py +46 -0
- pyrogram/enums/message_entity_type.py +87 -0
- pyrogram/enums/message_media_type.py +94 -0
- pyrogram/enums/message_origin_type.py +40 -0
- pyrogram/enums/message_service_type.py +235 -0
- pyrogram/enums/messages_filter.py +78 -0
- pyrogram/enums/next_code_type.py +39 -0
- pyrogram/enums/paid_reaction_privacy.py +35 -0
- pyrogram/enums/parse_mode.py +37 -0
- pyrogram/enums/payment_form_type.py +34 -0
- pyrogram/enums/phone_call_discard_reason.py +40 -0
- pyrogram/enums/phone_number_code_type.py +34 -0
- pyrogram/enums/poll_type.py +31 -0
- pyrogram/enums/privacy_key.py +66 -0
- pyrogram/enums/privacy_rule_type.py +61 -0
- pyrogram/enums/profile_color.py +71 -0
- pyrogram/enums/profile_tab.py +48 -0
- pyrogram/enums/reply_color.py +94 -0
- pyrogram/enums/sent_code_type.py +57 -0
- pyrogram/enums/sticker_type.py +34 -0
- pyrogram/enums/stories_privacy_rules.py +36 -0
- pyrogram/enums/suggested_post_refund_reason.py +31 -0
- pyrogram/enums/suggested_post_state.py +34 -0
- pyrogram/enums/top_chat_category.py +54 -0
- pyrogram/enums/upgraded_gift_origin.py +46 -0
- pyrogram/enums/user_status.py +43 -0
- pyrogram/errors/__init__.py +65 -0
- pyrogram/errors/exceptions/__init__.py +26 -0
- pyrogram/errors/exceptions/all.py +937 -0
- pyrogram/errors/exceptions/bad_request_400.py +4970 -0
- pyrogram/errors/exceptions/flood_420.py +98 -0
- pyrogram/errors/exceptions/forbidden_403.py +469 -0
- pyrogram/errors/exceptions/internal_server_error_500.py +420 -0
- pyrogram/errors/exceptions/not_acceptable_406.py +301 -0
- pyrogram/errors/exceptions/see_other_303.py +63 -0
- pyrogram/errors/exceptions/service_unavailable_503.py +49 -0
- pyrogram/errors/exceptions/unauthorized_401.py +91 -0
- pyrogram/errors/rpc_error.py +103 -0
- pyrogram/file_id.py +486 -0
- pyrogram/filters.py +1255 -0
- pyrogram/handlers/__init__.py +48 -0
- pyrogram/handlers/business_connection_handler.py +56 -0
- pyrogram/handlers/business_message_handler.py +56 -0
- pyrogram/handlers/callback_query_handler.py +55 -0
- pyrogram/handlers/chat_boost_handler.py +55 -0
- pyrogram/handlers/chat_join_request_handler.py +55 -0
- pyrogram/handlers/chat_member_updated_handler.py +55 -0
- pyrogram/handlers/chosen_inline_result_handler.py +58 -0
- pyrogram/handlers/connect_handler.py +50 -0
- pyrogram/handlers/deleted_business_messages_handler.py +69 -0
- pyrogram/handlers/deleted_messages_handler.py +68 -0
- pyrogram/handlers/disconnect_handler.py +50 -0
- pyrogram/handlers/edited_business_message_handler.py +56 -0
- pyrogram/handlers/edited_message_handler.py +55 -0
- pyrogram/handlers/error_handler.py +98 -0
- pyrogram/handlers/guest_message_handler.py +55 -0
- pyrogram/handlers/handler.py +41 -0
- pyrogram/handlers/inline_query_handler.py +55 -0
- pyrogram/handlers/managed_bot_updated_handler.py +53 -0
- pyrogram/handlers/message_handler.py +55 -0
- pyrogram/handlers/message_reaction_count_handler.py +59 -0
- pyrogram/handlers/message_reaction_handler.py +59 -0
- pyrogram/handlers/poll_handler.py +54 -0
- pyrogram/handlers/pre_checkout_query_handler.py +55 -0
- pyrogram/handlers/purchased_paid_media_handler.py +57 -0
- pyrogram/handlers/raw_update_handler.py +87 -0
- pyrogram/handlers/shipping_query_handler.py +56 -0
- pyrogram/handlers/start_handler.py +46 -0
- pyrogram/handlers/stop_handler.py +47 -0
- pyrogram/handlers/story_handler.py +53 -0
- pyrogram/handlers/user_status_handler.py +51 -0
- pyrogram/methods/__init__.py +59 -0
- pyrogram/methods/account/__init__.py +42 -0
- pyrogram/methods/account/add_profile_audio.py +151 -0
- pyrogram/methods/account/get_account_ttl.py +44 -0
- pyrogram/methods/account/get_global_privacy_settings.py +39 -0
- pyrogram/methods/account/get_privacy.py +55 -0
- pyrogram/methods/account/remove_profile_audio.py +50 -0
- pyrogram/methods/account/set_account_ttl.py +55 -0
- pyrogram/methods/account/set_global_privacy_settings.py +124 -0
- pyrogram/methods/account/set_inactive_session_ttl.py +51 -0
- pyrogram/methods/account/set_privacy.py +76 -0
- pyrogram/methods/account/set_profile_audio_position.py +63 -0
- pyrogram/methods/advanced/__init__.py +31 -0
- pyrogram/methods/advanced/invoke.py +118 -0
- pyrogram/methods/advanced/recover_gaps.py +184 -0
- pyrogram/methods/advanced/resolve_peer.py +153 -0
- pyrogram/methods/advanced/save_file.py +225 -0
- pyrogram/methods/auth/__init__.py +61 -0
- pyrogram/methods/auth/accept_terms_of_service.py +44 -0
- pyrogram/methods/auth/change_phone_number.py +59 -0
- pyrogram/methods/auth/check_password.py +60 -0
- pyrogram/methods/auth/connect.py +56 -0
- pyrogram/methods/auth/disconnect.py +41 -0
- pyrogram/methods/auth/get_active_sessions.py +39 -0
- pyrogram/methods/auth/get_password_hint.py +38 -0
- pyrogram/methods/auth/initialize.py +50 -0
- pyrogram/methods/auth/log_out.py +51 -0
- pyrogram/methods/auth/recover_password.py +57 -0
- pyrogram/methods/auth/resend_phone_number_code.py +63 -0
- pyrogram/methods/auth/reset_session.py +44 -0
- pyrogram/methods/auth/reset_sessions.py +39 -0
- pyrogram/methods/auth/send_phone_number_code.py +187 -0
- pyrogram/methods/auth/send_recovery_code.py +43 -0
- pyrogram/methods/auth/sign_in.py +81 -0
- pyrogram/methods/auth/sign_in_bot.py +78 -0
- pyrogram/methods/auth/sign_up.py +73 -0
- pyrogram/methods/auth/terminate.py +67 -0
- pyrogram/methods/bots/__init__.py +99 -0
- pyrogram/methods/bots/answer_callback_query.py +81 -0
- pyrogram/methods/bots/answer_chat_join_request_query.py +47 -0
- pyrogram/methods/bots/answer_guest_query.py +61 -0
- pyrogram/methods/bots/answer_inline_query.py +112 -0
- pyrogram/methods/bots/answer_pre_checkout_query.py +66 -0
- pyrogram/methods/bots/answer_shipping_query.py +81 -0
- pyrogram/methods/bots/answer_web_app_query.py +53 -0
- pyrogram/methods/bots/check_bot_username.py +39 -0
- pyrogram/methods/bots/create_bot.py +64 -0
- pyrogram/methods/bots/create_invoice_link.py +167 -0
- pyrogram/methods/bots/delete_bot_commands.py +62 -0
- pyrogram/methods/bots/edit_user_star_subscription.py +56 -0
- pyrogram/methods/bots/get_bot_commands.py +67 -0
- pyrogram/methods/bots/get_bot_default_privileges.py +59 -0
- pyrogram/methods/bots/get_bot_info_description.py +63 -0
- pyrogram/methods/bots/get_bot_info_short_description.py +63 -0
- pyrogram/methods/bots/get_bot_name.py +62 -0
- pyrogram/methods/bots/get_chat_menu_button.py +66 -0
- pyrogram/methods/bots/get_game_high_scores.py +72 -0
- pyrogram/methods/bots/get_inline_bot_results.py +92 -0
- pyrogram/methods/bots/get_managed_bot_access_settings.py +47 -0
- pyrogram/methods/bots/get_managed_bot_token.py +48 -0
- pyrogram/methods/bots/get_owned_bots.py +44 -0
- pyrogram/methods/bots/refund_star_payment.py +54 -0
- pyrogram/methods/bots/replace_managed_bot_token.py +48 -0
- pyrogram/methods/bots/request_callback_answer.py +91 -0
- pyrogram/methods/bots/send_chat_join_request_web_app.py +49 -0
- pyrogram/methods/bots/send_game.py +139 -0
- pyrogram/methods/bots/send_inline_bot_result.py +171 -0
- pyrogram/methods/bots/send_invoice.py +268 -0
- pyrogram/methods/bots/set_bot_commands.py +73 -0
- pyrogram/methods/bots/set_bot_default_privileges.py +81 -0
- pyrogram/methods/bots/set_bot_info_description.py +66 -0
- pyrogram/methods/bots/set_bot_info_short_description.py +66 -0
- pyrogram/methods/bots/set_bot_name.py +66 -0
- pyrogram/methods/bots/set_chat_menu_button.py +56 -0
- pyrogram/methods/bots/set_game_score.py +100 -0
- pyrogram/methods/bots/set_managed_bot_access_settings.py +60 -0
- pyrogram/methods/business/__init__.py +33 -0
- pyrogram/methods/business/delete_business_messages.py +70 -0
- pyrogram/methods/business/get_business_account_gifts.py +151 -0
- pyrogram/methods/business/get_business_account_star_balance.py +60 -0
- pyrogram/methods/business/get_business_connection.py +53 -0
- pyrogram/methods/business/transfer_business_account_stars.py +72 -0
- pyrogram/methods/chats/__init__.py +181 -0
- pyrogram/methods/chats/add_chat_members.py +97 -0
- pyrogram/methods/chats/archive_chats.py +71 -0
- pyrogram/methods/chats/ban_chat_member.py +124 -0
- pyrogram/methods/chats/close_forum_topic.py +58 -0
- pyrogram/methods/chats/create_channel.py +56 -0
- pyrogram/methods/chats/create_folder.py +179 -0
- pyrogram/methods/chats/create_folder_invite_link.py +67 -0
- pyrogram/methods/chats/create_forum_topic.py +68 -0
- pyrogram/methods/chats/create_group.py +67 -0
- pyrogram/methods/chats/create_supergroup.py +78 -0
- pyrogram/methods/chats/delete_all_message_reactions.py +74 -0
- pyrogram/methods/chats/delete_channel.py +52 -0
- pyrogram/methods/chats/delete_chat_photo.py +70 -0
- pyrogram/methods/chats/delete_folder.py +51 -0
- pyrogram/methods/chats/delete_folder_invite_link.py +70 -0
- pyrogram/methods/chats/delete_forum_topic.py +57 -0
- pyrogram/methods/chats/delete_message_reaction.py +81 -0
- pyrogram/methods/chats/delete_supergroup.py +52 -0
- pyrogram/methods/chats/delete_user_history.py +55 -0
- pyrogram/methods/chats/edit_folder.py +186 -0
- pyrogram/methods/chats/edit_folder_invite_link.py +85 -0
- pyrogram/methods/chats/edit_forum_topic.py +77 -0
- pyrogram/methods/chats/get_chat.py +105 -0
- pyrogram/methods/chats/get_chat_event_log.py +109 -0
- pyrogram/methods/chats/get_chat_member.py +92 -0
- pyrogram/methods/chats/get_chat_members.py +158 -0
- pyrogram/methods/chats/get_chat_members_count.py +69 -0
- pyrogram/methods/chats/get_chat_online_count.py +51 -0
- pyrogram/methods/chats/get_chat_settings.py +61 -0
- pyrogram/methods/chats/get_chats_for_folder_invite_link.py +78 -0
- pyrogram/methods/chats/get_dialogs.py +133 -0
- pyrogram/methods/chats/get_dialogs_count.py +76 -0
- pyrogram/methods/chats/get_direct_messages_topics.py +109 -0
- pyrogram/methods/chats/get_direct_messages_topics_by_id.py +77 -0
- pyrogram/methods/chats/get_folder_invite_links.py +52 -0
- pyrogram/methods/chats/get_folders.py +76 -0
- pyrogram/methods/chats/get_forum_topics.py +103 -0
- pyrogram/methods/chats/get_forum_topics_by_id.py +80 -0
- pyrogram/methods/chats/get_personal_channels.py +48 -0
- pyrogram/methods/chats/get_send_as_chats.py +69 -0
- pyrogram/methods/chats/get_similar_channels.py +59 -0
- pyrogram/methods/chats/get_suitable_discussion_chats.py +47 -0
- pyrogram/methods/chats/get_top_chats.py +104 -0
- pyrogram/methods/chats/join_chat.py +65 -0
- pyrogram/methods/chats/join_folder.py +79 -0
- pyrogram/methods/chats/leave_chat.py +77 -0
- pyrogram/methods/chats/leave_folder.py +83 -0
- pyrogram/methods/chats/mark_chat_unread.py +47 -0
- pyrogram/methods/chats/pin_chat_message.py +77 -0
- pyrogram/methods/chats/pin_forum_topic.py +57 -0
- pyrogram/methods/chats/process_chat_has_protected_content_disable_request.py +57 -0
- pyrogram/methods/chats/promote_chat_member.py +106 -0
- pyrogram/methods/chats/reorder_folders.py +61 -0
- pyrogram/methods/chats/restrict_chat_member.py +85 -0
- pyrogram/methods/chats/set_administrator_title.py +85 -0
- pyrogram/methods/chats/set_chat_description.py +66 -0
- pyrogram/methods/chats/set_chat_direct_messages_group.py +67 -0
- pyrogram/methods/chats/set_chat_discussion_group.py +91 -0
- pyrogram/methods/chats/set_chat_member_tag.py +68 -0
- pyrogram/methods/chats/set_chat_permissions.py +76 -0
- pyrogram/methods/chats/set_chat_photo.py +124 -0
- pyrogram/methods/chats/set_chat_protected_content.py +51 -0
- pyrogram/methods/chats/set_chat_title.py +69 -0
- pyrogram/methods/chats/set_chat_ttl.py +67 -0
- pyrogram/methods/chats/set_chat_username.py +68 -0
- pyrogram/methods/chats/set_main_profile_tab.py +71 -0
- pyrogram/methods/chats/set_send_as_chat.py +57 -0
- pyrogram/methods/chats/set_slow_mode.py +63 -0
- pyrogram/methods/chats/set_upgraded_gift_colors.py +47 -0
- pyrogram/methods/chats/toggle_folder_tags.py +51 -0
- pyrogram/methods/chats/toggle_forum_topics.py +72 -0
- pyrogram/methods/chats/toggle_join_to_send.py +65 -0
- pyrogram/methods/chats/transfer_chat_ownership.py +84 -0
- pyrogram/methods/chats/unarchive_chats.py +71 -0
- pyrogram/methods/chats/unban_chat_member.py +64 -0
- pyrogram/methods/chats/unpin_all_chat_messages.py +55 -0
- pyrogram/methods/chats/unpin_chat_message.py +61 -0
- pyrogram/methods/chats/unpin_forum_topic.py +58 -0
- pyrogram/methods/chats/update_chat_notifications.py +92 -0
- pyrogram/methods/chats/update_color.py +78 -0
- pyrogram/methods/contacts/__init__.py +39 -0
- pyrogram/methods/contacts/add_contact.py +85 -0
- pyrogram/methods/contacts/delete_contacts.py +66 -0
- pyrogram/methods/contacts/get_blocked_message_senders.py +85 -0
- pyrogram/methods/contacts/get_contacts.py +47 -0
- pyrogram/methods/contacts/get_contacts_count.py +41 -0
- pyrogram/methods/contacts/import_contacts.py +58 -0
- pyrogram/methods/contacts/search_contacts.py +59 -0
- pyrogram/methods/contacts/set_contact_note.py +62 -0
- pyrogram/methods/decorators/__init__.py +81 -0
- pyrogram/methods/decorators/on_business_connection.py +63 -0
- pyrogram/methods/decorators/on_business_message.py +63 -0
- pyrogram/methods/decorators/on_callback_query.py +63 -0
- pyrogram/methods/decorators/on_chat_boost.py +64 -0
- pyrogram/methods/decorators/on_chat_join_request.py +62 -0
- pyrogram/methods/decorators/on_chat_member_updated.py +62 -0
- pyrogram/methods/decorators/on_chosen_inline_result.py +63 -0
- pyrogram/methods/decorators/on_connect.py +45 -0
- pyrogram/methods/decorators/on_deleted_business_messages.py +63 -0
- pyrogram/methods/decorators/on_deleted_messages.py +63 -0
- pyrogram/methods/decorators/on_disconnect.py +45 -0
- pyrogram/methods/decorators/on_edited_business_message.py +63 -0
- pyrogram/methods/decorators/on_edited_message.py +63 -0
- pyrogram/methods/decorators/on_error.py +65 -0
- pyrogram/methods/decorators/on_guest_message.py +63 -0
- pyrogram/methods/decorators/on_inline_query.py +63 -0
- pyrogram/methods/decorators/on_managed_bot.py +63 -0
- pyrogram/methods/decorators/on_message.py +63 -0
- pyrogram/methods/decorators/on_message_reaction.py +62 -0
- pyrogram/methods/decorators/on_message_reaction_count.py +62 -0
- pyrogram/methods/decorators/on_poll.py +63 -0
- pyrogram/methods/decorators/on_pre_checkout_query.py +63 -0
- pyrogram/methods/decorators/on_purchased_paid_media.py +62 -0
- pyrogram/methods/decorators/on_raw_update.py +63 -0
- pyrogram/methods/decorators/on_shipping_query.py +64 -0
- pyrogram/methods/decorators/on_start.py +45 -0
- pyrogram/methods/decorators/on_stop.py +45 -0
- pyrogram/methods/decorators/on_story.py +63 -0
- pyrogram/methods/decorators/on_user_status.py +61 -0
- pyrogram/methods/folders/__init__.py +25 -0
- pyrogram/methods/folders/check_chat_folder_invite_link.py +55 -0
- pyrogram/methods/invite_links/__init__.py +58 -0
- pyrogram/methods/invite_links/approve_all_chat_join_requests.py +55 -0
- pyrogram/methods/invite_links/approve_chat_join_request.py +57 -0
- pyrogram/methods/invite_links/create_chat_invite_link.py +87 -0
- pyrogram/methods/invite_links/decline_all_chat_join_requests.py +55 -0
- pyrogram/methods/invite_links/decline_chat_join_request.py +57 -0
- pyrogram/methods/invite_links/delete_chat_admin_invite_links.py +54 -0
- pyrogram/methods/invite_links/delete_chat_invite_link.py +52 -0
- pyrogram/methods/invite_links/edit_chat_invite_link.py +92 -0
- pyrogram/methods/invite_links/export_chat_invite_link.py +66 -0
- pyrogram/methods/invite_links/get_chat_admin_invite_links.py +100 -0
- pyrogram/methods/invite_links/get_chat_admin_invite_links_count.py +62 -0
- pyrogram/methods/invite_links/get_chat_admins_with_invite_links.py +56 -0
- pyrogram/methods/invite_links/get_chat_invite_link.py +54 -0
- pyrogram/methods/invite_links/get_chat_invite_link_joiners.py +87 -0
- pyrogram/methods/invite_links/get_chat_invite_link_joiners_count.py +56 -0
- pyrogram/methods/invite_links/get_chat_join_requests.py +88 -0
- pyrogram/methods/invite_links/revoke_chat_invite_link.py +68 -0
- pyrogram/methods/messages/__init__.py +199 -0
- pyrogram/methods/messages/add_checklist_tasks.py +73 -0
- pyrogram/methods/messages/add_poll_option.py +76 -0
- pyrogram/methods/messages/add_to_gifs.py +60 -0
- pyrogram/methods/messages/approve_suggested_post.py +66 -0
- pyrogram/methods/messages/compose_text_with_ai.py +80 -0
- pyrogram/methods/messages/copy_media_group.py +238 -0
- pyrogram/methods/messages/copy_message.py +168 -0
- pyrogram/methods/messages/decline_suggested_post.py +62 -0
- pyrogram/methods/messages/delete_chat_history.py +101 -0
- pyrogram/methods/messages/delete_direct_messages_chat_topic_history.py +74 -0
- pyrogram/methods/messages/delete_messages.py +110 -0
- pyrogram/methods/messages/delete_poll_option.py +69 -0
- pyrogram/methods/messages/download_media.py +371 -0
- pyrogram/methods/messages/edit_inline_caption.py +65 -0
- pyrogram/methods/messages/edit_inline_media.py +244 -0
- pyrogram/methods/messages/edit_inline_reply_markup.py +68 -0
- pyrogram/methods/messages/edit_inline_text.py +122 -0
- pyrogram/methods/messages/edit_message_caption.py +98 -0
- pyrogram/methods/messages/edit_message_checklist.py +106 -0
- pyrogram/methods/messages/edit_message_media.py +137 -0
- pyrogram/methods/messages/edit_message_reply_markup.py +84 -0
- pyrogram/methods/messages/edit_message_text.py +165 -0
- pyrogram/methods/messages/fix_text_with_ai.py +57 -0
- pyrogram/methods/messages/forward_media_group.py +124 -0
- pyrogram/methods/messages/forward_messages.py +142 -0
- pyrogram/methods/messages/get_available_effects.py +59 -0
- pyrogram/methods/messages/get_chat_history.py +175 -0
- pyrogram/methods/messages/get_chat_history_count.py +83 -0
- pyrogram/methods/messages/get_custom_emoji_stickers.py +54 -0
- pyrogram/methods/messages/get_direct_messages_chat_topic_history.py +151 -0
- pyrogram/methods/messages/get_discussion_message.py +65 -0
- pyrogram/methods/messages/get_discussion_replies.py +86 -0
- pyrogram/methods/messages/get_discussion_replies_count.py +62 -0
- pyrogram/methods/messages/get_main_web_app.py +71 -0
- pyrogram/methods/messages/get_media_group.py +72 -0
- pyrogram/methods/messages/get_messages.py +236 -0
- pyrogram/methods/messages/get_scheduled_messages.py +61 -0
- pyrogram/methods/messages/get_stickers.py +66 -0
- pyrogram/methods/messages/get_user_personal_chat_messages.py +92 -0
- pyrogram/methods/messages/get_web_app_link_url.py +83 -0
- pyrogram/methods/messages/get_web_app_url.py +70 -0
- pyrogram/methods/messages/mark_checklist_tasks_as_done.py +74 -0
- pyrogram/methods/messages/open_web_app.py +92 -0
- pyrogram/methods/messages/read_chat_history.py +73 -0
- pyrogram/methods/messages/read_mentions.py +64 -0
- pyrogram/methods/messages/read_reactions.py +64 -0
- pyrogram/methods/messages/retract_vote.py +64 -0
- pyrogram/methods/messages/search_global.py +132 -0
- pyrogram/methods/messages/search_global_count.py +79 -0
- pyrogram/methods/messages/search_messages.py +190 -0
- pyrogram/methods/messages/search_messages_count.py +98 -0
- pyrogram/methods/messages/search_posts.py +96 -0
- pyrogram/methods/messages/search_posts_count.py +54 -0
- pyrogram/methods/messages/send_animation.py +379 -0
- pyrogram/methods/messages/send_audio.py +347 -0
- pyrogram/methods/messages/send_cached_media.py +226 -0
- pyrogram/methods/messages/send_chat_action.py +85 -0
- pyrogram/methods/messages/send_checklist.py +153 -0
- pyrogram/methods/messages/send_contact.py +216 -0
- pyrogram/methods/messages/send_dice.py +217 -0
- pyrogram/methods/messages/send_document.py +319 -0
- pyrogram/methods/messages/send_live_photo.py +244 -0
- pyrogram/methods/messages/send_location.py +242 -0
- pyrogram/methods/messages/send_media_group.py +525 -0
- pyrogram/methods/messages/send_message.py +352 -0
- pyrogram/methods/messages/send_message_draft.py +105 -0
- pyrogram/methods/messages/send_paid_media.py +385 -0
- pyrogram/methods/messages/send_paid_reaction.py +79 -0
- pyrogram/methods/messages/send_photo.py +317 -0
- pyrogram/methods/messages/send_poll.py +316 -0
- pyrogram/methods/messages/send_reaction.py +111 -0
- pyrogram/methods/messages/send_rich_message.py +156 -0
- pyrogram/methods/messages/send_rich_message_draft.py +93 -0
- pyrogram/methods/messages/send_screenshot_notification.py +57 -0
- pyrogram/methods/messages/send_sticker.py +303 -0
- pyrogram/methods/messages/send_venue.py +231 -0
- pyrogram/methods/messages/send_video.py +448 -0
- pyrogram/methods/messages/send_video_note.py +336 -0
- pyrogram/methods/messages/send_voice.py +325 -0
- pyrogram/methods/messages/send_web_page.py +195 -0
- pyrogram/methods/messages/set_direct_messages_chat_topic_is_marked_as_unread.py +66 -0
- pyrogram/methods/messages/start_bot.py +77 -0
- pyrogram/methods/messages/stop_poll.py +81 -0
- pyrogram/methods/messages/stream_media.py +106 -0
- pyrogram/methods/messages/summarize_message.py +81 -0
- pyrogram/methods/messages/translate_message_text.py +77 -0
- pyrogram/methods/messages/translate_text.py +73 -0
- pyrogram/methods/messages/view_messages.py +61 -0
- pyrogram/methods/messages/vote_poll.py +71 -0
- pyrogram/methods/password/__init__.py +29 -0
- pyrogram/methods/password/change_cloud_password.py +82 -0
- pyrogram/methods/password/enable_cloud_password.py +88 -0
- pyrogram/methods/password/remove_cloud_password.py +64 -0
- pyrogram/methods/payments/__init__.py +111 -0
- pyrogram/methods/payments/add_collection_gifts.py +71 -0
- pyrogram/methods/payments/apply_gift_code.py +64 -0
- pyrogram/methods/payments/buy_gift_upgrade.py +76 -0
- pyrogram/methods/payments/check_gift_code.py +67 -0
- pyrogram/methods/payments/convert_gift_to_stars.py +61 -0
- pyrogram/methods/payments/craft_gift.py +67 -0
- pyrogram/methods/payments/create_gift_collection.py +63 -0
- pyrogram/methods/payments/delete_gift_collection.py +58 -0
- pyrogram/methods/payments/drop_gift_original_details.py +74 -0
- pyrogram/methods/payments/edit_star_subscription.py +47 -0
- pyrogram/methods/payments/get_available_gifts.py +47 -0
- pyrogram/methods/payments/get_chat_gifts.py +150 -0
- pyrogram/methods/payments/get_chat_gifts_count.py +63 -0
- pyrogram/methods/payments/get_gift_auction_state.py +64 -0
- pyrogram/methods/payments/get_gift_collections.py +53 -0
- pyrogram/methods/payments/get_gift_upgrade_preview.py +50 -0
- pyrogram/methods/payments/get_gift_upgrade_variants.py +45 -0
- pyrogram/methods/payments/get_gifts_for_crafting.py +86 -0
- pyrogram/methods/payments/get_payment_form.py +66 -0
- pyrogram/methods/payments/get_stars_balance.py +64 -0
- pyrogram/methods/payments/get_ton_balance.py +54 -0
- pyrogram/methods/payments/get_upgraded_gift.py +66 -0
- pyrogram/methods/payments/get_upgraded_gift_value_info.py +63 -0
- pyrogram/methods/payments/gift_premium_with_stars.py +97 -0
- pyrogram/methods/payments/hide_gift.py +62 -0
- pyrogram/methods/payments/increase_gift_auction_bid.py +68 -0
- pyrogram/methods/payments/place_gift_auction_bid.py +111 -0
- pyrogram/methods/payments/process_gift_purchase_offer.py +51 -0
- pyrogram/methods/payments/remove_collection_gifts.py +68 -0
- pyrogram/methods/payments/reorder_collection_gifts.py +69 -0
- pyrogram/methods/payments/reorder_gift_collections.py +57 -0
- pyrogram/methods/payments/reuse_star_subscription.py +41 -0
- pyrogram/methods/payments/search_gifts_for_resale.py +119 -0
- pyrogram/methods/payments/send_gift.py +99 -0
- pyrogram/methods/payments/send_gift_purchase_offer.py +76 -0
- pyrogram/methods/payments/send_payment_form.py +96 -0
- pyrogram/methods/payments/send_resold_gift.py +123 -0
- pyrogram/methods/payments/set_gift_collection_name.py +62 -0
- pyrogram/methods/payments/set_gift_resale_price.py +72 -0
- pyrogram/methods/payments/set_pinned_gifts.py +67 -0
- pyrogram/methods/payments/show_gift.py +62 -0
- pyrogram/methods/payments/suggest_birthday.py +59 -0
- pyrogram/methods/payments/transfer_gift.py +103 -0
- pyrogram/methods/payments/upgrade_gift.py +114 -0
- pyrogram/methods/phone/__init__.py +25 -0
- pyrogram/methods/phone/get_call_members.py +103 -0
- pyrogram/methods/premium/__init__.py +28 -0
- pyrogram/methods/premium/apply_boost.py +59 -0
- pyrogram/methods/premium/get_boosts.py +57 -0
- pyrogram/methods/premium/get_boosts_status.py +45 -0
- pyrogram/methods/stories/__init__.py +64 -0
- pyrogram/methods/stories/can_post_stories.py +53 -0
- pyrogram/methods/stories/copy_story.py +116 -0
- pyrogram/methods/stories/delete_stories.py +66 -0
- pyrogram/methods/stories/edit_story_caption.py +83 -0
- pyrogram/methods/stories/edit_story_media.py +174 -0
- pyrogram/methods/stories/edit_story_privacy.py +130 -0
- pyrogram/methods/stories/enable_stealth_mode.py +67 -0
- pyrogram/methods/stories/forward_story.py +135 -0
- pyrogram/methods/stories/get_all_stories.py +81 -0
- pyrogram/methods/stories/get_archived_stories.py +95 -0
- pyrogram/methods/stories/get_chat_stories.py +72 -0
- pyrogram/methods/stories/get_pinned_stories.py +102 -0
- pyrogram/methods/stories/get_stories.py +104 -0
- pyrogram/methods/stories/get_story_views.py +120 -0
- pyrogram/methods/stories/hide_chat_stories.py +56 -0
- pyrogram/methods/stories/pin_chat_stories.py +65 -0
- pyrogram/methods/stories/read_chat_stories.py +64 -0
- pyrogram/methods/stories/send_story.py +274 -0
- pyrogram/methods/stories/show_chat_stories.py +56 -0
- pyrogram/methods/stories/unpin_chat_stories.py +65 -0
- pyrogram/methods/stories/view_stories.py +61 -0
- pyrogram/methods/users/__init__.py +61 -0
- pyrogram/methods/users/block_user.py +54 -0
- pyrogram/methods/users/check_username.py +66 -0
- pyrogram/methods/users/delete_profile_photos.py +63 -0
- pyrogram/methods/users/get_chat_audios.py +103 -0
- pyrogram/methods/users/get_chat_audios_count.py +61 -0
- pyrogram/methods/users/get_chat_photos.py +159 -0
- pyrogram/methods/users/get_chat_photos_count.py +74 -0
- pyrogram/methods/users/get_common_chats.py +67 -0
- pyrogram/methods/users/get_default_emoji_statuses.py +47 -0
- pyrogram/methods/users/get_me.py +50 -0
- pyrogram/methods/users/get_users.py +71 -0
- pyrogram/methods/users/set_emoji_status.py +92 -0
- pyrogram/methods/users/set_personal_channel.py +67 -0
- pyrogram/methods/users/set_profile_photo.py +153 -0
- pyrogram/methods/users/set_username.py +57 -0
- pyrogram/methods/users/unblock_user.py +54 -0
- pyrogram/methods/users/update_birthday.py +67 -0
- pyrogram/methods/users/update_profile.py +72 -0
- pyrogram/methods/users/update_status.py +54 -0
- pyrogram/methods/utilities/__init__.py +39 -0
- pyrogram/methods/utilities/add_handler.py +73 -0
- pyrogram/methods/utilities/compose.py +78 -0
- pyrogram/methods/utilities/export_session_string.py +40 -0
- pyrogram/methods/utilities/idle.py +88 -0
- pyrogram/methods/utilities/remove_handler.py +69 -0
- pyrogram/methods/utilities/restart.py +78 -0
- pyrogram/methods/utilities/run.py +70 -0
- pyrogram/methods/utilities/start.py +103 -0
- pyrogram/methods/utilities/stop.py +76 -0
- pyrogram/methods/utilities/stop_transmission.py +43 -0
- pyrogram/mime_types.py +1881 -0
- pyrogram/parser/__init__.py +19 -0
- pyrogram/parser/html.py +293 -0
- pyrogram/parser/markdown.py +325 -0
- pyrogram/parser/parser.py +61 -0
- pyrogram/parser/utils.py +41 -0
- pyrogram/py.typed +0 -0
- pyrogram/qrlogin.py +111 -0
- pyrogram/raw/__init__.py +26 -0
- pyrogram/raw/all.py +2491 -0
- pyrogram/raw/base/__init__.py +430 -0
- pyrogram/raw/base/access_point_rule.py +56 -0
- pyrogram/raw/base/account/__init__.py +53 -0
- pyrogram/raw/base/account/authorization_form.py +66 -0
- pyrogram/raw/base/account/authorizations.py +66 -0
- pyrogram/raw/base/account/auto_download_settings.py +66 -0
- pyrogram/raw/base/account/auto_save_settings.py +66 -0
- pyrogram/raw/base/account/business_chat_links.py +66 -0
- pyrogram/raw/base/account/chat_themes.py +67 -0
- pyrogram/raw/base/account/connected_bots.py +66 -0
- pyrogram/raw/base/account/content_settings.py +66 -0
- pyrogram/raw/base/account/email_verified.py +67 -0
- pyrogram/raw/base/account/emoji_statuses.py +70 -0
- pyrogram/raw/base/account/paid_messages_revenue.py +66 -0
- pyrogram/raw/base/account/passkey_registration_options.py +66 -0
- pyrogram/raw/base/account/passkeys.py +66 -0
- pyrogram/raw/base/account/password.py +66 -0
- pyrogram/raw/base/account/password_input_settings.py +56 -0
- pyrogram/raw/base/account/password_settings.py +66 -0
- pyrogram/raw/base/account/privacy_rules.py +67 -0
- pyrogram/raw/base/account/reset_password_result.py +68 -0
- pyrogram/raw/base/account/resolved_business_chat_links.py +66 -0
- pyrogram/raw/base/account/saved_music_ids.py +67 -0
- pyrogram/raw/base/account/saved_ringtone.py +67 -0
- pyrogram/raw/base/account/saved_ringtones.py +67 -0
- pyrogram/raw/base/account/sent_email_code.py +66 -0
- pyrogram/raw/base/account/takeout.py +66 -0
- pyrogram/raw/base/account/themes.py +68 -0
- pyrogram/raw/base/account/tmp_password.py +66 -0
- pyrogram/raw/base/account/wall_papers.py +67 -0
- pyrogram/raw/base/account/web_authorizations.py +66 -0
- pyrogram/raw/base/account/web_browser_settings.py +69 -0
- pyrogram/raw/base/account_days_ttl.py +66 -0
- pyrogram/raw/base/ai_compose_tone.py +68 -0
- pyrogram/raw/base/ai_compose_tone_example.py +66 -0
- pyrogram/raw/base/aicompose/__init__.py +25 -0
- pyrogram/raw/base/aicompose/tones.py +68 -0
- pyrogram/raw/base/attach_menu_bot.py +56 -0
- pyrogram/raw/base/attach_menu_bot_icon.py +56 -0
- pyrogram/raw/base/attach_menu_bot_icon_color.py +56 -0
- pyrogram/raw/base/attach_menu_bots.py +67 -0
- pyrogram/raw/base/attach_menu_bots_bot.py +66 -0
- pyrogram/raw/base/attach_menu_peer_type.py +60 -0
- pyrogram/raw/base/auction_bid_level.py +56 -0
- pyrogram/raw/base/auth/__init__.py +33 -0
- pyrogram/raw/base/auth/authorization.py +74 -0
- pyrogram/raw/base/auth/code_type.py +60 -0
- pyrogram/raw/base/auth/exported_authorization.py +66 -0
- pyrogram/raw/base/auth/logged_out.py +66 -0
- pyrogram/raw/base/auth/login_token.py +69 -0
- pyrogram/raw/base/auth/passkey_login_options.py +66 -0
- pyrogram/raw/base/auth/password_recovery.py +66 -0
- pyrogram/raw/base/auth/sent_code.py +74 -0
- pyrogram/raw/base/auth/sent_code_type.py +66 -0
- pyrogram/raw/base/authorization.py +66 -0
- pyrogram/raw/base/auto_download_settings.py +56 -0
- pyrogram/raw/base/auto_save_exception.py +56 -0
- pyrogram/raw/base/auto_save_settings.py +56 -0
- pyrogram/raw/base/available_effect.py +56 -0
- pyrogram/raw/base/available_reaction.py +56 -0
- pyrogram/raw/base/bad_msg_notification.py +57 -0
- pyrogram/raw/base/bank_card_open_url.py +56 -0
- pyrogram/raw/base/base_theme.py +60 -0
- pyrogram/raw/base/bind_auth_key_inner.py +56 -0
- pyrogram/raw/base/birthday.py +56 -0
- pyrogram/raw/base/boost.py +56 -0
- pyrogram/raw/base/bot_app.py +57 -0
- pyrogram/raw/base/bot_app_settings.py +56 -0
- pyrogram/raw/base/bot_business_connection.py +56 -0
- pyrogram/raw/base/bot_command.py +66 -0
- pyrogram/raw/base/bot_command_scope.py +62 -0
- pyrogram/raw/base/bot_info.py +56 -0
- pyrogram/raw/base/bot_inline_message.py +63 -0
- pyrogram/raw/base/bot_inline_result.py +57 -0
- pyrogram/raw/base/bot_menu_button.py +68 -0
- pyrogram/raw/base/bot_preview_media.py +68 -0
- pyrogram/raw/base/bot_verification.py +56 -0
- pyrogram/raw/base/bot_verifier_settings.py +56 -0
- pyrogram/raw/base/bots/__init__.py +30 -0
- pyrogram/raw/base/bots/access_settings.py +66 -0
- pyrogram/raw/base/bots/bot_info.py +66 -0
- pyrogram/raw/base/bots/exported_bot_token.py +66 -0
- pyrogram/raw/base/bots/popular_app_bots.py +66 -0
- pyrogram/raw/base/bots/preview_info.py +66 -0
- pyrogram/raw/base/bots/requested_button.py +66 -0
- pyrogram/raw/base/business_away_message.py +56 -0
- pyrogram/raw/base/business_away_message_schedule.py +58 -0
- pyrogram/raw/base/business_bot_recipients.py +56 -0
- pyrogram/raw/base/business_bot_rights.py +56 -0
- pyrogram/raw/base/business_chat_link.py +67 -0
- pyrogram/raw/base/business_greeting_message.py +56 -0
- pyrogram/raw/base/business_intro.py +56 -0
- pyrogram/raw/base/business_location.py +56 -0
- pyrogram/raw/base/business_recipients.py +56 -0
- pyrogram/raw/base/business_weekly_open.py +56 -0
- pyrogram/raw/base/business_work_hours.py +56 -0
- pyrogram/raw/base/cdn_config.py +66 -0
- pyrogram/raw/base/cdn_public_key.py +56 -0
- pyrogram/raw/base/channel_admin_log_event.py +56 -0
- pyrogram/raw/base/channel_admin_log_event_action.py +107 -0
- pyrogram/raw/base/channel_admin_log_events_filter.py +56 -0
- pyrogram/raw/base/channel_location.py +57 -0
- pyrogram/raw/base/channel_messages_filter.py +57 -0
- pyrogram/raw/base/channel_participant.py +61 -0
- pyrogram/raw/base/channel_participants_filter.py +63 -0
- pyrogram/raw/base/channels/__init__.py +29 -0
- pyrogram/raw/base/channels/admin_log_results.py +66 -0
- pyrogram/raw/base/channels/channel_participant.py +66 -0
- pyrogram/raw/base/channels/channel_participants.py +67 -0
- pyrogram/raw/base/channels/send_as_peers.py +66 -0
- pyrogram/raw/base/channels/sponsored_message_report_result.py +68 -0
- pyrogram/raw/base/chat.py +60 -0
- pyrogram/raw/base/chat_admin_rights.py +56 -0
- pyrogram/raw/base/chat_admin_with_invites.py +56 -0
- pyrogram/raw/base/chat_banned_rights.py +56 -0
- pyrogram/raw/base/chat_full.py +57 -0
- pyrogram/raw/base/chat_invite.py +68 -0
- pyrogram/raw/base/chat_invite_importer.py +56 -0
- pyrogram/raw/base/chat_onlines.py +66 -0
- pyrogram/raw/base/chat_participant.py +58 -0
- pyrogram/raw/base/chat_participants.py +57 -0
- pyrogram/raw/base/chat_photo.py +57 -0
- pyrogram/raw/base/chat_reactions.py +58 -0
- pyrogram/raw/base/chat_theme.py +57 -0
- pyrogram/raw/base/chatlists/__init__.py +28 -0
- pyrogram/raw/base/chatlists/chatlist_invite.py +67 -0
- pyrogram/raw/base/chatlists/chatlist_updates.py +66 -0
- pyrogram/raw/base/chatlists/exported_chatlist_invite.py +66 -0
- pyrogram/raw/base/chatlists/exported_invites.py +66 -0
- pyrogram/raw/base/client_dh_inner_data.py +56 -0
- pyrogram/raw/base/code_settings.py +56 -0
- pyrogram/raw/base/config.py +66 -0
- pyrogram/raw/base/connected_bot.py +56 -0
- pyrogram/raw/base/connected_bot_star_ref.py +56 -0
- pyrogram/raw/base/contact.py +56 -0
- pyrogram/raw/base/contact_birthday.py +56 -0
- pyrogram/raw/base/contact_status.py +66 -0
- pyrogram/raw/base/contacts/__init__.py +32 -0
- pyrogram/raw/base/contacts/blocked.py +67 -0
- pyrogram/raw/base/contacts/contact_birthdays.py +66 -0
- pyrogram/raw/base/contacts/contacts.py +67 -0
- pyrogram/raw/base/contacts/found.py +66 -0
- pyrogram/raw/base/contacts/imported_contacts.py +66 -0
- pyrogram/raw/base/contacts/resolved_peer.py +67 -0
- pyrogram/raw/base/contacts/sponsored_peers.py +67 -0
- pyrogram/raw/base/contacts/top_peers.py +68 -0
- pyrogram/raw/base/data_json.py +68 -0
- pyrogram/raw/base/dc_option.py +56 -0
- pyrogram/raw/base/default_history_ttl.py +66 -0
- pyrogram/raw/base/destroy_auth_key_res.py +68 -0
- pyrogram/raw/base/destroy_session_res.py +67 -0
- pyrogram/raw/base/dialog.py +57 -0
- pyrogram/raw/base/dialog_filter.py +58 -0
- pyrogram/raw/base/dialog_filter_suggested.py +66 -0
- pyrogram/raw/base/dialog_peer.py +67 -0
- pyrogram/raw/base/disallowed_gifts_settings.py +56 -0
- pyrogram/raw/base/document.py +70 -0
- pyrogram/raw/base/document_attribute.py +63 -0
- pyrogram/raw/base/draft_message.py +57 -0
- pyrogram/raw/base/email_verification.py +58 -0
- pyrogram/raw/base/email_verify_purpose.py +58 -0
- pyrogram/raw/base/emoji_group.py +58 -0
- pyrogram/raw/base/emoji_keyword.py +57 -0
- pyrogram/raw/base/emoji_keywords_difference.py +67 -0
- pyrogram/raw/base/emoji_language.py +66 -0
- pyrogram/raw/base/emoji_list.py +71 -0
- pyrogram/raw/base/emoji_status.py +59 -0
- pyrogram/raw/base/emoji_url.py +66 -0
- pyrogram/raw/base/encrypted_chat.py +71 -0
- pyrogram/raw/base/encrypted_file.py +67 -0
- pyrogram/raw/base/encrypted_message.py +57 -0
- pyrogram/raw/base/exported_chat_invite.py +67 -0
- pyrogram/raw/base/exported_chatlist_invite.py +66 -0
- pyrogram/raw/base/exported_contact_token.py +66 -0
- pyrogram/raw/base/exported_message_link.py +66 -0
- pyrogram/raw/base/exported_story_link.py +66 -0
- pyrogram/raw/base/fact_check.py +66 -0
- pyrogram/raw/base/file_hash.py +68 -0
- pyrogram/raw/base/folder.py +56 -0
- pyrogram/raw/base/folder_peer.py +56 -0
- pyrogram/raw/base/forum_topic.py +57 -0
- pyrogram/raw/base/found_story.py +56 -0
- pyrogram/raw/base/fragment/__init__.py +25 -0
- pyrogram/raw/base/fragment/collectible_info.py +66 -0
- pyrogram/raw/base/game.py +56 -0
- pyrogram/raw/base/geo_point.py +57 -0
- pyrogram/raw/base/geo_point_address.py +56 -0
- pyrogram/raw/base/global_privacy_settings.py +67 -0
- pyrogram/raw/base/group_call.py +57 -0
- pyrogram/raw/base/group_call_donor.py +56 -0
- pyrogram/raw/base/group_call_message.py +56 -0
- pyrogram/raw/base/group_call_participant.py +56 -0
- pyrogram/raw/base/group_call_participant_video.py +56 -0
- pyrogram/raw/base/group_call_participant_video_source_group.py +56 -0
- pyrogram/raw/base/group_call_stream_channel.py +56 -0
- pyrogram/raw/base/help/__init__.py +45 -0
- pyrogram/raw/base/help/app_config.py +67 -0
- pyrogram/raw/base/help/app_update.py +67 -0
- pyrogram/raw/base/help/config_simple.py +56 -0
- pyrogram/raw/base/help/countries_list.py +67 -0
- pyrogram/raw/base/help/country.py +56 -0
- pyrogram/raw/base/help/country_code.py +56 -0
- pyrogram/raw/base/help/deep_link_info.py +67 -0
- pyrogram/raw/base/help/invite_text.py +66 -0
- pyrogram/raw/base/help/passport_config.py +67 -0
- pyrogram/raw/base/help/peer_color_option.py +56 -0
- pyrogram/raw/base/help/peer_color_set.py +57 -0
- pyrogram/raw/base/help/peer_colors.py +68 -0
- pyrogram/raw/base/help/premium_promo.py +66 -0
- pyrogram/raw/base/help/promo_data.py +67 -0
- pyrogram/raw/base/help/recent_me_urls.py +66 -0
- pyrogram/raw/base/help/support.py +66 -0
- pyrogram/raw/base/help/support_name.py +66 -0
- pyrogram/raw/base/help/terms_of_service.py +56 -0
- pyrogram/raw/base/help/terms_of_service_update.py +67 -0
- pyrogram/raw/base/help/timezones_list.py +67 -0
- pyrogram/raw/base/help/user_info.py +68 -0
- pyrogram/raw/base/high_score.py +56 -0
- pyrogram/raw/base/http_wait.py +56 -0
- pyrogram/raw/base/imported_contact.py +56 -0
- pyrogram/raw/base/inline_bot_switch_pm.py +56 -0
- pyrogram/raw/base/inline_bot_web_view.py +56 -0
- pyrogram/raw/base/inline_query_peer_type.py +61 -0
- pyrogram/raw/base/input_ai_compose_tone.py +58 -0
- pyrogram/raw/base/input_app_event.py +56 -0
- pyrogram/raw/base/input_bot_app.py +57 -0
- pyrogram/raw/base/input_bot_inline_message.py +64 -0
- pyrogram/raw/base/input_bot_inline_message_id.py +67 -0
- pyrogram/raw/base/input_bot_inline_result.py +59 -0
- pyrogram/raw/base/input_business_away_message.py +56 -0
- pyrogram/raw/base/input_business_bot_recipients.py +56 -0
- pyrogram/raw/base/input_business_chat_link.py +56 -0
- pyrogram/raw/base/input_business_greeting_message.py +56 -0
- pyrogram/raw/base/input_business_intro.py +56 -0
- pyrogram/raw/base/input_business_recipients.py +56 -0
- pyrogram/raw/base/input_channel.py +58 -0
- pyrogram/raw/base/input_chat_photo.py +58 -0
- pyrogram/raw/base/input_chat_theme.py +58 -0
- pyrogram/raw/base/input_chatlist.py +56 -0
- pyrogram/raw/base/input_check_password_srp.py +57 -0
- pyrogram/raw/base/input_client_proxy.py +56 -0
- pyrogram/raw/base/input_collectible.py +57 -0
- pyrogram/raw/base/input_contact.py +56 -0
- pyrogram/raw/base/input_dialog_peer.py +57 -0
- pyrogram/raw/base/input_document.py +57 -0
- pyrogram/raw/base/input_encrypted_chat.py +56 -0
- pyrogram/raw/base/input_encrypted_file.py +59 -0
- pyrogram/raw/base/input_file.py +58 -0
- pyrogram/raw/base/input_file_location.py +65 -0
- pyrogram/raw/base/input_folder_peer.py +56 -0
- pyrogram/raw/base/input_game.py +57 -0
- pyrogram/raw/base/input_geo_point.py +57 -0
- pyrogram/raw/base/input_group_call.py +58 -0
- pyrogram/raw/base/input_invoice.py +70 -0
- pyrogram/raw/base/input_media.py +75 -0
- pyrogram/raw/base/input_message.py +59 -0
- pyrogram/raw/base/input_message_read_metric.py +56 -0
- pyrogram/raw/base/input_notify_peer.py +60 -0
- pyrogram/raw/base/input_passkey_credential.py +57 -0
- pyrogram/raw/base/input_passkey_response.py +57 -0
- pyrogram/raw/base/input_payment_credentials.py +59 -0
- pyrogram/raw/base/input_peer.py +62 -0
- pyrogram/raw/base/input_peer_notify_settings.py +56 -0
- pyrogram/raw/base/input_phone_call.py +56 -0
- pyrogram/raw/base/input_photo.py +57 -0
- pyrogram/raw/base/input_privacy_key.py +69 -0
- pyrogram/raw/base/input_privacy_rule.py +67 -0
- pyrogram/raw/base/input_quick_reply_shortcut.py +57 -0
- pyrogram/raw/base/input_reply_to.py +58 -0
- pyrogram/raw/base/input_rich_file.py +57 -0
- pyrogram/raw/base/input_rich_message.py +58 -0
- pyrogram/raw/base/input_saved_star_gift.py +58 -0
- pyrogram/raw/base/input_secure_file.py +57 -0
- pyrogram/raw/base/input_secure_value.py +56 -0
- pyrogram/raw/base/input_single_media.py +56 -0
- pyrogram/raw/base/input_star_gift_auction.py +57 -0
- pyrogram/raw/base/input_stars_transaction.py +56 -0
- pyrogram/raw/base/input_sticker_set.py +67 -0
- pyrogram/raw/base/input_sticker_set_item.py +56 -0
- pyrogram/raw/base/input_stickered_media.py +57 -0
- pyrogram/raw/base/input_store_payment_purpose.py +63 -0
- pyrogram/raw/base/input_theme.py +57 -0
- pyrogram/raw/base/input_theme_settings.py +56 -0
- pyrogram/raw/base/input_user.py +59 -0
- pyrogram/raw/base/input_wall_paper.py +58 -0
- pyrogram/raw/base/input_web_document.py +56 -0
- pyrogram/raw/base/input_web_file_location.py +58 -0
- pyrogram/raw/base/invoice.py +56 -0
- pyrogram/raw/base/ip_port.py +57 -0
- pyrogram/raw/base/join_chat_bot_result.py +59 -0
- pyrogram/raw/base/json_object_value.py +56 -0
- pyrogram/raw/base/json_value.py +61 -0
- pyrogram/raw/base/keyboard_button.py +83 -0
- pyrogram/raw/base/keyboard_button_row.py +56 -0
- pyrogram/raw/base/keyboard_button_style.py +56 -0
- pyrogram/raw/base/labeled_price.py +56 -0
- pyrogram/raw/base/lang_pack_difference.py +67 -0
- pyrogram/raw/base/lang_pack_language.py +67 -0
- pyrogram/raw/base/lang_pack_string.py +68 -0
- pyrogram/raw/base/mask_coords.py +56 -0
- pyrogram/raw/base/media_area.py +64 -0
- pyrogram/raw/base/media_area_coordinates.py +56 -0
- pyrogram/raw/base/message.py +58 -0
- pyrogram/raw/base/message_action.py +122 -0
- pyrogram/raw/base/message_entity.py +80 -0
- pyrogram/raw/base/message_extended_media.py +57 -0
- pyrogram/raw/base/message_fwd_header.py +56 -0
- pyrogram/raw/base/message_media.py +85 -0
- pyrogram/raw/base/message_peer_reaction.py +56 -0
- pyrogram/raw/base/message_peer_vote.py +58 -0
- pyrogram/raw/base/message_range.py +66 -0
- pyrogram/raw/base/message_reactions.py +56 -0
- pyrogram/raw/base/message_reactor.py +56 -0
- pyrogram/raw/base/message_replies.py +56 -0
- pyrogram/raw/base/message_reply_header.py +57 -0
- pyrogram/raw/base/message_report_option.py +56 -0
- pyrogram/raw/base/message_views.py +56 -0
- pyrogram/raw/base/messages/__init__.py +88 -0
- pyrogram/raw/base/messages/affected_found_messages.py +66 -0
- pyrogram/raw/base/messages/affected_history.py +73 -0
- pyrogram/raw/base/messages/affected_messages.py +69 -0
- pyrogram/raw/base/messages/all_stickers.py +69 -0
- pyrogram/raw/base/messages/archived_stickers.py +66 -0
- pyrogram/raw/base/messages/available_effects.py +67 -0
- pyrogram/raw/base/messages/available_reactions.py +67 -0
- pyrogram/raw/base/messages/bot_app.py +66 -0
- pyrogram/raw/base/messages/bot_callback_answer.py +66 -0
- pyrogram/raw/base/messages/bot_prepared_inline_message.py +66 -0
- pyrogram/raw/base/messages/bot_results.py +66 -0
- pyrogram/raw/base/messages/chat_admins_with_invites.py +66 -0
- pyrogram/raw/base/messages/chat_full.py +67 -0
- pyrogram/raw/base/messages/chat_invite_importers.py +66 -0
- pyrogram/raw/base/messages/chat_invite_join_result.py +68 -0
- pyrogram/raw/base/messages/chats.py +74 -0
- pyrogram/raw/base/messages/checked_history_import_peer.py +66 -0
- pyrogram/raw/base/messages/composed_message_with_ai.py +66 -0
- pyrogram/raw/base/messages/dh_config.py +67 -0
- pyrogram/raw/base/messages/dialog_filters.py +66 -0
- pyrogram/raw/base/messages/dialogs.py +68 -0
- pyrogram/raw/base/messages/discussion_message.py +66 -0
- pyrogram/raw/base/messages/emoji_game_info.py +67 -0
- pyrogram/raw/base/messages/emoji_game_outcome.py +56 -0
- pyrogram/raw/base/messages/emoji_groups.py +70 -0
- pyrogram/raw/base/messages/exported_chat_invite.py +68 -0
- pyrogram/raw/base/messages/exported_chat_invites.py +66 -0
- pyrogram/raw/base/messages/faved_stickers.py +67 -0
- pyrogram/raw/base/messages/featured_stickers.py +69 -0
- pyrogram/raw/base/messages/forum_topics.py +67 -0
- pyrogram/raw/base/messages/found_sticker_sets.py +68 -0
- pyrogram/raw/base/messages/found_stickers.py +67 -0
- pyrogram/raw/base/messages/high_scores.py +67 -0
- pyrogram/raw/base/messages/history_import.py +66 -0
- pyrogram/raw/base/messages/history_import_parsed.py +66 -0
- pyrogram/raw/base/messages/inactive_chats.py +66 -0
- pyrogram/raw/base/messages/invited_users.py +68 -0
- pyrogram/raw/base/messages/message_edit_data.py +66 -0
- pyrogram/raw/base/messages/message_reactions_list.py +66 -0
- pyrogram/raw/base/messages/message_views.py +66 -0
- pyrogram/raw/base/messages/messages.py +86 -0
- pyrogram/raw/base/messages/my_stickers.py +66 -0
- pyrogram/raw/base/messages/peer_dialogs.py +67 -0
- pyrogram/raw/base/messages/peer_settings.py +66 -0
- pyrogram/raw/base/messages/prepared_inline_message.py +66 -0
- pyrogram/raw/base/messages/quick_replies.py +67 -0
- pyrogram/raw/base/messages/reactions.py +69 -0
- pyrogram/raw/base/messages/recent_stickers.py +67 -0
- pyrogram/raw/base/messages/saved_dialogs.py +70 -0
- pyrogram/raw/base/messages/saved_gifs.py +67 -0
- pyrogram/raw/base/messages/saved_reaction_tags.py +67 -0
- pyrogram/raw/base/messages/search_counter.py +66 -0
- pyrogram/raw/base/messages/search_results_calendar.py +66 -0
- pyrogram/raw/base/messages/search_results_positions.py +66 -0
- pyrogram/raw/base/messages/sent_encrypted_message.py +69 -0
- pyrogram/raw/base/messages/sponsored_messages.py +67 -0
- pyrogram/raw/base/messages/sticker_set.py +75 -0
- pyrogram/raw/base/messages/sticker_set_install_result.py +67 -0
- pyrogram/raw/base/messages/stickers.py +67 -0
- pyrogram/raw/base/messages/transcribed_audio.py +66 -0
- pyrogram/raw/base/messages/translated_text.py +66 -0
- pyrogram/raw/base/messages/votes_list.py +66 -0
- pyrogram/raw/base/messages/web_page.py +66 -0
- pyrogram/raw/base/messages/web_page_preview.py +66 -0
- pyrogram/raw/base/messages_filter.py +73 -0
- pyrogram/raw/base/missing_invitee.py +56 -0
- pyrogram/raw/base/msg_detailed_info.py +57 -0
- pyrogram/raw/base/msg_resend_req.py +57 -0
- pyrogram/raw/base/msgs_ack.py +56 -0
- pyrogram/raw/base/msgs_all_info.py +56 -0
- pyrogram/raw/base/msgs_state_info.py +56 -0
- pyrogram/raw/base/msgs_state_req.py +56 -0
- pyrogram/raw/base/my_boost.py +56 -0
- pyrogram/raw/base/nearest_dc.py +66 -0
- pyrogram/raw/base/new_session.py +56 -0
- pyrogram/raw/base/notification_sound.py +59 -0
- pyrogram/raw/base/notify_peer.py +60 -0
- pyrogram/raw/base/outbox_read_date.py +66 -0
- pyrogram/raw/base/page.py +56 -0
- pyrogram/raw/base/page_block.py +94 -0
- pyrogram/raw/base/page_caption.py +56 -0
- pyrogram/raw/base/page_list_item.py +57 -0
- pyrogram/raw/base/page_list_ordered_item.py +57 -0
- pyrogram/raw/base/page_related_article.py +56 -0
- pyrogram/raw/base/page_table_cell.py +56 -0
- pyrogram/raw/base/page_table_row.py +56 -0
- pyrogram/raw/base/paid_reaction_privacy.py +58 -0
- pyrogram/raw/base/passkey.py +66 -0
- pyrogram/raw/base/password_kdf_algo.py +57 -0
- pyrogram/raw/base/payment_charge.py +56 -0
- pyrogram/raw/base/payment_form_method.py +56 -0
- pyrogram/raw/base/payment_requested_info.py +56 -0
- pyrogram/raw/base/payment_saved_credentials.py +56 -0
- pyrogram/raw/base/payments/__init__.py +52 -0
- pyrogram/raw/base/payments/bank_card_data.py +66 -0
- pyrogram/raw/base/payments/check_can_send_gift_result.py +67 -0
- pyrogram/raw/base/payments/checked_gift_code.py +66 -0
- pyrogram/raw/base/payments/connected_star_ref_bots.py +69 -0
- pyrogram/raw/base/payments/exported_invoice.py +66 -0
- pyrogram/raw/base/payments/giveaway_info.py +67 -0
- pyrogram/raw/base/payments/payment_form.py +68 -0
- pyrogram/raw/base/payments/payment_receipt.py +67 -0
- pyrogram/raw/base/payments/payment_result.py +68 -0
- pyrogram/raw/base/payments/resale_star_gifts.py +66 -0
- pyrogram/raw/base/payments/saved_info.py +66 -0
- pyrogram/raw/base/payments/saved_star_gifts.py +68 -0
- pyrogram/raw/base/payments/star_gift_active_auctions.py +67 -0
- pyrogram/raw/base/payments/star_gift_auction_acquired_gifts.py +66 -0
- pyrogram/raw/base/payments/star_gift_auction_state.py +66 -0
- pyrogram/raw/base/payments/star_gift_collections.py +67 -0
- pyrogram/raw/base/payments/star_gift_upgrade_attributes.py +66 -0
- pyrogram/raw/base/payments/star_gift_upgrade_preview.py +66 -0
- pyrogram/raw/base/payments/star_gift_withdrawal_url.py +66 -0
- pyrogram/raw/base/payments/star_gifts.py +67 -0
- pyrogram/raw/base/payments/stars_revenue_ads_account_url.py +66 -0
- pyrogram/raw/base/payments/stars_revenue_stats.py +66 -0
- pyrogram/raw/base/payments/stars_revenue_withdrawal_url.py +66 -0
- pyrogram/raw/base/payments/stars_status.py +69 -0
- pyrogram/raw/base/payments/suggested_star_ref_bots.py +66 -0
- pyrogram/raw/base/payments/unique_star_gift.py +66 -0
- pyrogram/raw/base/payments/unique_star_gift_value_info.py +66 -0
- pyrogram/raw/base/payments/validated_requested_info.py +66 -0
- pyrogram/raw/base/peer.py +68 -0
- pyrogram/raw/base/peer_blocked.py +56 -0
- pyrogram/raw/base/peer_color.py +58 -0
- pyrogram/raw/base/peer_located.py +57 -0
- pyrogram/raw/base/peer_notify_settings.py +66 -0
- pyrogram/raw/base/peer_settings.py +56 -0
- pyrogram/raw/base/peer_stories.py +56 -0
- pyrogram/raw/base/pending_suggestion.py +56 -0
- pyrogram/raw/base/phone/__init__.py +32 -0
- pyrogram/raw/base/phone/exported_group_call_invite.py +66 -0
- pyrogram/raw/base/phone/group_call.py +66 -0
- pyrogram/raw/base/phone/group_call_stars.py +66 -0
- pyrogram/raw/base/phone/group_call_stream_channels.py +66 -0
- pyrogram/raw/base/phone/group_call_stream_rtmp_url.py +66 -0
- pyrogram/raw/base/phone/group_participants.py +66 -0
- pyrogram/raw/base/phone/join_as_peers.py +66 -0
- pyrogram/raw/base/phone/phone_call.py +68 -0
- pyrogram/raw/base/phone_call.py +61 -0
- pyrogram/raw/base/phone_call_discard_reason.py +60 -0
- pyrogram/raw/base/phone_call_protocol.py +56 -0
- pyrogram/raw/base/phone_connection.py +57 -0
- pyrogram/raw/base/photo.py +57 -0
- pyrogram/raw/base/photo_size.py +61 -0
- pyrogram/raw/base/photos/__init__.py +26 -0
- pyrogram/raw/base/photos/photo.py +68 -0
- pyrogram/raw/base/photos/photos.py +67 -0
- pyrogram/raw/base/poll.py +56 -0
- pyrogram/raw/base/poll_answer.py +57 -0
- pyrogram/raw/base/poll_answer_voters.py +56 -0
- pyrogram/raw/base/poll_results.py +56 -0
- pyrogram/raw/base/pong.py +67 -0
- pyrogram/raw/base/popular_contact.py +56 -0
- pyrogram/raw/base/post_address.py +56 -0
- pyrogram/raw/base/post_interaction_counters.py +57 -0
- pyrogram/raw/base/pq_inner_data.py +59 -0
- pyrogram/raw/base/premium/__init__.py +27 -0
- pyrogram/raw/base/premium/boosts_list.py +67 -0
- pyrogram/raw/base/premium/boosts_status.py +66 -0
- pyrogram/raw/base/premium/my_boosts.py +67 -0
- pyrogram/raw/base/premium_gift_code_option.py +66 -0
- pyrogram/raw/base/premium_subscription_option.py +56 -0
- pyrogram/raw/base/prepaid_giveaway.py +57 -0
- pyrogram/raw/base/privacy_key.py +69 -0
- pyrogram/raw/base/privacy_rule.py +67 -0
- pyrogram/raw/base/profile_tab.py +63 -0
- pyrogram/raw/base/public_forward.py +57 -0
- pyrogram/raw/base/quick_reply.py +56 -0
- pyrogram/raw/base/reaction.py +59 -0
- pyrogram/raw/base/reaction_count.py +56 -0
- pyrogram/raw/base/reaction_notifications_from.py +57 -0
- pyrogram/raw/base/reactions_notify_settings.py +67 -0
- pyrogram/raw/base/read_participant_date.py +66 -0
- pyrogram/raw/base/received_notify_message.py +66 -0
- pyrogram/raw/base/recent_me_url.py +60 -0
- pyrogram/raw/base/recent_story.py +66 -0
- pyrogram/raw/base/reply_markup.py +59 -0
- pyrogram/raw/base/report_reason.py +65 -0
- pyrogram/raw/base/report_result.py +69 -0
- pyrogram/raw/base/request_peer_type.py +59 -0
- pyrogram/raw/base/requested_peer.py +58 -0
- pyrogram/raw/base/requirement_to_contact.py +68 -0
- pyrogram/raw/base/res_pq.py +67 -0
- pyrogram/raw/base/restriction_reason.py +56 -0
- pyrogram/raw/base/rich_message.py +56 -0
- pyrogram/raw/base/rich_text.py +84 -0
- pyrogram/raw/base/rpc_drop_answer.py +68 -0
- pyrogram/raw/base/rpc_error.py +56 -0
- pyrogram/raw/base/rpc_result.py +56 -0
- pyrogram/raw/base/saved_contact.py +66 -0
- pyrogram/raw/base/saved_dialog.py +57 -0
- pyrogram/raw/base/saved_reaction_tag.py +56 -0
- pyrogram/raw/base/saved_star_gift.py +56 -0
- pyrogram/raw/base/search_posts_flood.py +66 -0
- pyrogram/raw/base/search_results_calendar_period.py +56 -0
- pyrogram/raw/base/search_results_position.py +56 -0
- pyrogram/raw/base/secure_credentials_encrypted.py +56 -0
- pyrogram/raw/base/secure_data.py +56 -0
- pyrogram/raw/base/secure_file.py +57 -0
- pyrogram/raw/base/secure_password_kdf_algo.py +58 -0
- pyrogram/raw/base/secure_plain_data.py +57 -0
- pyrogram/raw/base/secure_required_type.py +57 -0
- pyrogram/raw/base/secure_secret_settings.py +56 -0
- pyrogram/raw/base/secure_value.py +68 -0
- pyrogram/raw/base/secure_value_error.py +64 -0
- pyrogram/raw/base/secure_value_hash.py +56 -0
- pyrogram/raw/base/secure_value_type.py +68 -0
- pyrogram/raw/base/send_as_peer.py +56 -0
- pyrogram/raw/base/send_message_action.py +76 -0
- pyrogram/raw/base/server_dh_inner_data.py +56 -0
- pyrogram/raw/base/server_dh_params.py +67 -0
- pyrogram/raw/base/set_client_dh_params_answer.py +68 -0
- pyrogram/raw/base/shipping_option.py +56 -0
- pyrogram/raw/base/sms_job.py +66 -0
- pyrogram/raw/base/smsjobs/__init__.py +26 -0
- pyrogram/raw/base/smsjobs/eligibility_to_join.py +66 -0
- pyrogram/raw/base/smsjobs/status.py +66 -0
- pyrogram/raw/base/sponsored_message.py +56 -0
- pyrogram/raw/base/sponsored_message_report_option.py +56 -0
- pyrogram/raw/base/sponsored_peer.py +56 -0
- pyrogram/raw/base/star_gift.py +57 -0
- pyrogram/raw/base/star_gift_active_auction_state.py +56 -0
- pyrogram/raw/base/star_gift_attribute.py +59 -0
- pyrogram/raw/base/star_gift_attribute_counter.py +56 -0
- pyrogram/raw/base/star_gift_attribute_id.py +58 -0
- pyrogram/raw/base/star_gift_attribute_rarity.py +60 -0
- pyrogram/raw/base/star_gift_auction_acquired_gift.py +56 -0
- pyrogram/raw/base/star_gift_auction_round.py +57 -0
- pyrogram/raw/base/star_gift_auction_state.py +58 -0
- pyrogram/raw/base/star_gift_auction_user_state.py +56 -0
- pyrogram/raw/base/star_gift_background.py +56 -0
- pyrogram/raw/base/star_gift_collection.py +67 -0
- pyrogram/raw/base/star_gift_upgrade_price.py +56 -0
- pyrogram/raw/base/star_ref_program.py +66 -0
- pyrogram/raw/base/stars_amount.py +57 -0
- pyrogram/raw/base/stars_gift_option.py +66 -0
- pyrogram/raw/base/stars_giveaway_option.py +66 -0
- pyrogram/raw/base/stars_giveaway_winners_option.py +56 -0
- pyrogram/raw/base/stars_rating.py +56 -0
- pyrogram/raw/base/stars_revenue_status.py +56 -0
- pyrogram/raw/base/stars_subscription.py +56 -0
- pyrogram/raw/base/stars_subscription_pricing.py +56 -0
- pyrogram/raw/base/stars_topup_option.py +66 -0
- pyrogram/raw/base/stars_transaction.py +56 -0
- pyrogram/raw/base/stars_transaction_peer.py +63 -0
- pyrogram/raw/base/stats/__init__.py +30 -0
- pyrogram/raw/base/stats/broadcast_stats.py +66 -0
- pyrogram/raw/base/stats/megagroup_stats.py +66 -0
- pyrogram/raw/base/stats/message_stats.py +66 -0
- pyrogram/raw/base/stats/poll_stats.py +66 -0
- pyrogram/raw/base/stats/public_forwards.py +67 -0
- pyrogram/raw/base/stats/story_stats.py +66 -0
- pyrogram/raw/base/stats_abs_value_and_prev.py +56 -0
- pyrogram/raw/base/stats_date_range_days.py +56 -0
- pyrogram/raw/base/stats_graph.py +68 -0
- pyrogram/raw/base/stats_group_top_admin.py +56 -0
- pyrogram/raw/base/stats_group_top_inviter.py +56 -0
- pyrogram/raw/base/stats_group_top_poster.py +56 -0
- pyrogram/raw/base/stats_percent_value.py +56 -0
- pyrogram/raw/base/stats_url.py +56 -0
- pyrogram/raw/base/sticker_keyword.py +56 -0
- pyrogram/raw/base/sticker_pack.py +56 -0
- pyrogram/raw/base/sticker_set.py +56 -0
- pyrogram/raw/base/sticker_set_covered.py +69 -0
- pyrogram/raw/base/stickers/__init__.py +25 -0
- pyrogram/raw/base/stickers/suggested_short_name.py +66 -0
- pyrogram/raw/base/storage/__init__.py +25 -0
- pyrogram/raw/base/storage/file_type.py +65 -0
- pyrogram/raw/base/stories/__init__.py +33 -0
- pyrogram/raw/base/stories/albums.py +67 -0
- pyrogram/raw/base/stories/all_stories.py +67 -0
- pyrogram/raw/base/stories/can_send_story_count.py +66 -0
- pyrogram/raw/base/stories/found_stories.py +66 -0
- pyrogram/raw/base/stories/peer_stories.py +66 -0
- pyrogram/raw/base/stories/stories.py +69 -0
- pyrogram/raw/base/stories/story_reactions_list.py +66 -0
- pyrogram/raw/base/stories/story_views.py +66 -0
- pyrogram/raw/base/stories/story_views_list.py +66 -0
- pyrogram/raw/base/stories_stealth_mode.py +56 -0
- pyrogram/raw/base/story_album.py +67 -0
- pyrogram/raw/base/story_fwd_header.py +56 -0
- pyrogram/raw/base/story_item.py +58 -0
- pyrogram/raw/base/story_reaction.py +58 -0
- pyrogram/raw/base/story_view.py +58 -0
- pyrogram/raw/base/story_views.py +56 -0
- pyrogram/raw/base/suggested_post.py +56 -0
- pyrogram/raw/base/text_with_entities.py +66 -0
- pyrogram/raw/base/theme.py +68 -0
- pyrogram/raw/base/theme_settings.py +56 -0
- pyrogram/raw/base/timezone.py +56 -0
- pyrogram/raw/base/todo_completion.py +56 -0
- pyrogram/raw/base/todo_item.py +56 -0
- pyrogram/raw/base/todo_list.py +56 -0
- pyrogram/raw/base/top_peer.py +56 -0
- pyrogram/raw/base/top_peer_category.py +65 -0
- pyrogram/raw/base/top_peer_category_peers.py +56 -0
- pyrogram/raw/base/update.py +215 -0
- pyrogram/raw/base/updates/__init__.py +27 -0
- pyrogram/raw/base/updates/channel_difference.py +68 -0
- pyrogram/raw/base/updates/difference.py +69 -0
- pyrogram/raw/base/updates/state.py +66 -0
- pyrogram/raw/base/updates_t.py +201 -0
- pyrogram/raw/base/upload/__init__.py +27 -0
- pyrogram/raw/base/upload/cdn_file.py +67 -0
- pyrogram/raw/base/upload/file.py +67 -0
- pyrogram/raw/base/upload/web_file.py +66 -0
- pyrogram/raw/base/url_auth_result.py +69 -0
- pyrogram/raw/base/user.py +75 -0
- pyrogram/raw/base/user_full.py +56 -0
- pyrogram/raw/base/user_profile_photo.py +57 -0
- pyrogram/raw/base/user_status.py +61 -0
- pyrogram/raw/base/username.py +56 -0
- pyrogram/raw/base/users/__init__.py +27 -0
- pyrogram/raw/base/users/saved_music.py +68 -0
- pyrogram/raw/base/users/user_full.py +66 -0
- pyrogram/raw/base/users/users.py +67 -0
- pyrogram/raw/base/video_size.py +58 -0
- pyrogram/raw/base/wall_paper.py +69 -0
- pyrogram/raw/base/wall_paper_settings.py +56 -0
- pyrogram/raw/base/web_authorization.py +56 -0
- pyrogram/raw/base/web_document.py +57 -0
- pyrogram/raw/base/web_domain_exception.py +56 -0
- pyrogram/raw/base/web_page.py +59 -0
- pyrogram/raw/base/web_page_attribute.py +62 -0
- pyrogram/raw/base/web_view_message_sent.py +66 -0
- pyrogram/raw/base/web_view_result.py +69 -0
- pyrogram/raw/core/__init__.py +32 -0
- pyrogram/raw/core/base_type_meta.py +26 -0
- pyrogram/raw/core/future_salt.py +53 -0
- pyrogram/raw/core/future_salts.py +63 -0
- pyrogram/raw/core/gzip_packed.py +62 -0
- pyrogram/raw/core/list.py +26 -0
- pyrogram/raw/core/message.py +56 -0
- pyrogram/raw/core/msg_container.py +53 -0
- pyrogram/raw/core/primitives/__init__.py +24 -0
- pyrogram/raw/core/primitives/bool.py +48 -0
- pyrogram/raw/core/primitives/bytes.py +55 -0
- pyrogram/raw/core/primitives/double.py +32 -0
- pyrogram/raw/core/primitives/int.py +45 -0
- pyrogram/raw/core/primitives/string.py +31 -0
- pyrogram/raw/core/primitives/vector.py +66 -0
- pyrogram/raw/core/tl_object.py +84 -0
- pyrogram/raw/functions/__init__.py +46 -0
- pyrogram/raw/functions/account/__init__.py +152 -0
- pyrogram/raw/functions/account/accept_authorization.py +106 -0
- pyrogram/raw/functions/account/cancel_password_email.py +69 -0
- pyrogram/raw/functions/account/change_authorization_settings.py +100 -0
- pyrogram/raw/functions/account/change_phone.py +90 -0
- pyrogram/raw/functions/account/check_username.py +74 -0
- pyrogram/raw/functions/account/clear_recent_emoji_statuses.py +69 -0
- pyrogram/raw/functions/account/confirm_bot_connection.py +74 -0
- pyrogram/raw/functions/account/confirm_password_email.py +74 -0
- pyrogram/raw/functions/account/confirm_phone.py +82 -0
- pyrogram/raw/functions/account/create_business_chat_link.py +74 -0
- pyrogram/raw/functions/account/create_theme.py +104 -0
- pyrogram/raw/functions/account/decline_password_reset.py +69 -0
- pyrogram/raw/functions/account/delete_account.py +86 -0
- pyrogram/raw/functions/account/delete_auto_save_exceptions.py +69 -0
- pyrogram/raw/functions/account/delete_business_chat_link.py +74 -0
- pyrogram/raw/functions/account/delete_passkey.py +74 -0
- pyrogram/raw/functions/account/delete_secure_value.py +74 -0
- pyrogram/raw/functions/account/delete_web_browser_settings_exceptions.py +69 -0
- pyrogram/raw/functions/account/disable_peer_connected_bot.py +74 -0
- pyrogram/raw/functions/account/edit_business_chat_link.py +82 -0
- pyrogram/raw/functions/account/finish_takeout_session.py +74 -0
- pyrogram/raw/functions/account/get_account_ttl.py +69 -0
- pyrogram/raw/functions/account/get_all_secure_values.py +69 -0
- pyrogram/raw/functions/account/get_authorization_form.py +90 -0
- pyrogram/raw/functions/account/get_authorizations.py +69 -0
- pyrogram/raw/functions/account/get_auto_download_settings.py +69 -0
- pyrogram/raw/functions/account/get_auto_save_settings.py +69 -0
- pyrogram/raw/functions/account/get_bot_business_connection.py +74 -0
- pyrogram/raw/functions/account/get_business_chat_links.py +69 -0
- pyrogram/raw/functions/account/get_channel_default_emoji_statuses.py +74 -0
- pyrogram/raw/functions/account/get_channel_restricted_status_emojis.py +74 -0
- pyrogram/raw/functions/account/get_chat_themes.py +74 -0
- pyrogram/raw/functions/account/get_collectible_emoji_statuses.py +74 -0
- pyrogram/raw/functions/account/get_connected_bots.py +69 -0
- pyrogram/raw/functions/account/get_contact_sign_up_notification.py +69 -0
- pyrogram/raw/functions/account/get_content_settings.py +69 -0
- pyrogram/raw/functions/account/get_default_background_emojis.py +74 -0
- pyrogram/raw/functions/account/get_default_emoji_statuses.py +74 -0
- pyrogram/raw/functions/account/get_default_group_photo_emojis.py +74 -0
- pyrogram/raw/functions/account/get_default_profile_photo_emojis.py +74 -0
- pyrogram/raw/functions/account/get_global_privacy_settings.py +69 -0
- pyrogram/raw/functions/account/get_multi_wall_papers.py +74 -0
- pyrogram/raw/functions/account/get_notify_exceptions.py +90 -0
- pyrogram/raw/functions/account/get_notify_settings.py +74 -0
- pyrogram/raw/functions/account/get_paid_messages_revenue.py +86 -0
- pyrogram/raw/functions/account/get_passkeys.py +69 -0
- pyrogram/raw/functions/account/get_password.py +69 -0
- pyrogram/raw/functions/account/get_password_settings.py +74 -0
- pyrogram/raw/functions/account/get_privacy.py +74 -0
- pyrogram/raw/functions/account/get_reactions_notify_settings.py +69 -0
- pyrogram/raw/functions/account/get_recent_emoji_statuses.py +74 -0
- pyrogram/raw/functions/account/get_saved_music_ids.py +74 -0
- pyrogram/raw/functions/account/get_saved_ringtones.py +74 -0
- pyrogram/raw/functions/account/get_secure_value.py +74 -0
- pyrogram/raw/functions/account/get_theme.py +82 -0
- pyrogram/raw/functions/account/get_themes.py +82 -0
- pyrogram/raw/functions/account/get_tmp_password.py +82 -0
- pyrogram/raw/functions/account/get_unique_gift_chat_themes.py +90 -0
- pyrogram/raw/functions/account/get_wall_paper.py +74 -0
- pyrogram/raw/functions/account/get_wall_papers.py +74 -0
- pyrogram/raw/functions/account/get_web_authorizations.py +69 -0
- pyrogram/raw/functions/account/get_web_browser_settings.py +74 -0
- pyrogram/raw/functions/account/init_passkey_registration.py +69 -0
- pyrogram/raw/functions/account/init_takeout_session.py +113 -0
- pyrogram/raw/functions/account/install_theme.py +103 -0
- pyrogram/raw/functions/account/install_wall_paper.py +82 -0
- pyrogram/raw/functions/account/invalidate_sign_in_codes.py +74 -0
- pyrogram/raw/functions/account/register_device.py +114 -0
- pyrogram/raw/functions/account/register_passkey.py +74 -0
- pyrogram/raw/functions/account/reorder_usernames.py +74 -0
- pyrogram/raw/functions/account/report_peer.py +90 -0
- pyrogram/raw/functions/account/report_profile_photo.py +98 -0
- pyrogram/raw/functions/account/resend_password_email.py +69 -0
- pyrogram/raw/functions/account/reset_authorization.py +74 -0
- pyrogram/raw/functions/account/reset_notify_settings.py +69 -0
- pyrogram/raw/functions/account/reset_password.py +69 -0
- pyrogram/raw/functions/account/reset_wall_papers.py +69 -0
- pyrogram/raw/functions/account/reset_web_authorization.py +74 -0
- pyrogram/raw/functions/account/reset_web_authorizations.py +69 -0
- pyrogram/raw/functions/account/resolve_business_chat_link.py +74 -0
- pyrogram/raw/functions/account/save_auto_download_settings.py +88 -0
- pyrogram/raw/functions/account/save_auto_save_settings.py +104 -0
- pyrogram/raw/functions/account/save_music.py +92 -0
- pyrogram/raw/functions/account/save_ringtone.py +82 -0
- pyrogram/raw/functions/account/save_secure_value.py +82 -0
- pyrogram/raw/functions/account/save_theme.py +82 -0
- pyrogram/raw/functions/account/save_wall_paper.py +90 -0
- pyrogram/raw/functions/account/send_change_phone_code.py +82 -0
- pyrogram/raw/functions/account/send_confirm_phone_code.py +82 -0
- pyrogram/raw/functions/account/send_verify_email_code.py +82 -0
- pyrogram/raw/functions/account/send_verify_phone_code.py +82 -0
- pyrogram/raw/functions/account/set_account_ttl.py +74 -0
- pyrogram/raw/functions/account/set_authorization_ttl.py +74 -0
- pyrogram/raw/functions/account/set_contact_sign_up_notification.py +74 -0
- pyrogram/raw/functions/account/set_content_settings.py +74 -0
- pyrogram/raw/functions/account/set_global_privacy_settings.py +74 -0
- pyrogram/raw/functions/account/set_main_profile_tab.py +74 -0
- pyrogram/raw/functions/account/set_privacy.py +82 -0
- pyrogram/raw/functions/account/set_reactions_notify_settings.py +74 -0
- pyrogram/raw/functions/account/toggle_connected_bot_paused.py +82 -0
- pyrogram/raw/functions/account/toggle_no_paid_messages_exception.py +98 -0
- pyrogram/raw/functions/account/toggle_sponsored_messages.py +74 -0
- pyrogram/raw/functions/account/toggle_username.py +82 -0
- pyrogram/raw/functions/account/toggle_web_browser_settings_exception.py +91 -0
- pyrogram/raw/functions/account/unregister_device.py +90 -0
- pyrogram/raw/functions/account/update_birthday.py +78 -0
- pyrogram/raw/functions/account/update_business_away_message.py +78 -0
- pyrogram/raw/functions/account/update_business_greeting_message.py +78 -0
- pyrogram/raw/functions/account/update_business_intro.py +78 -0
- pyrogram/raw/functions/account/update_business_location.py +87 -0
- pyrogram/raw/functions/account/update_business_work_hours.py +78 -0
- pyrogram/raw/functions/account/update_color.py +84 -0
- pyrogram/raw/functions/account/update_connected_bot.py +100 -0
- pyrogram/raw/functions/account/update_device_locked.py +74 -0
- pyrogram/raw/functions/account/update_emoji_status.py +74 -0
- pyrogram/raw/functions/account/update_notify_settings.py +82 -0
- pyrogram/raw/functions/account/update_password_settings.py +82 -0
- pyrogram/raw/functions/account/update_personal_channel.py +74 -0
- pyrogram/raw/functions/account/update_profile.py +95 -0
- pyrogram/raw/functions/account/update_status.py +74 -0
- pyrogram/raw/functions/account/update_theme.py +122 -0
- pyrogram/raw/functions/account/update_username.py +74 -0
- pyrogram/raw/functions/account/update_web_browser_settings.py +80 -0
- pyrogram/raw/functions/account/upload_ringtone.py +90 -0
- pyrogram/raw/functions/account/upload_theme.py +102 -0
- pyrogram/raw/functions/account/upload_wall_paper.py +98 -0
- pyrogram/raw/functions/account/verify_email.py +82 -0
- pyrogram/raw/functions/account/verify_phone.py +90 -0
- pyrogram/raw/functions/aicompose/__init__.py +31 -0
- pyrogram/raw/functions/aicompose/create_tone.py +98 -0
- pyrogram/raw/functions/aicompose/delete_tone.py +74 -0
- pyrogram/raw/functions/aicompose/get_tone.py +74 -0
- pyrogram/raw/functions/aicompose/get_tone_example.py +82 -0
- pyrogram/raw/functions/aicompose/get_tones.py +74 -0
- pyrogram/raw/functions/aicompose/save_tone.py +82 -0
- pyrogram/raw/functions/aicompose/update_tone.py +112 -0
- pyrogram/raw/functions/auth/__init__.py +50 -0
- pyrogram/raw/functions/auth/accept_login_token.py +74 -0
- pyrogram/raw/functions/auth/bind_temp_auth_key.py +98 -0
- pyrogram/raw/functions/auth/cancel_code.py +82 -0
- pyrogram/raw/functions/auth/check_paid_auth.py +90 -0
- pyrogram/raw/functions/auth/check_password.py +74 -0
- pyrogram/raw/functions/auth/check_recovery_password.py +74 -0
- pyrogram/raw/functions/auth/drop_temp_auth_keys.py +74 -0
- pyrogram/raw/functions/auth/export_authorization.py +74 -0
- pyrogram/raw/functions/auth/export_login_token.py +90 -0
- pyrogram/raw/functions/auth/finish_passkey_login.py +94 -0
- pyrogram/raw/functions/auth/import_authorization.py +82 -0
- pyrogram/raw/functions/auth/import_bot_authorization.py +98 -0
- pyrogram/raw/functions/auth/import_login_token.py +74 -0
- pyrogram/raw/functions/auth/import_web_token_authorization.py +90 -0
- pyrogram/raw/functions/auth/init_passkey_login.py +82 -0
- pyrogram/raw/functions/auth/log_out.py +69 -0
- pyrogram/raw/functions/auth/recover_password.py +86 -0
- pyrogram/raw/functions/auth/report_missing_code.py +90 -0
- pyrogram/raw/functions/auth/request_firebase_sms.py +111 -0
- pyrogram/raw/functions/auth/request_password_recovery.py +69 -0
- pyrogram/raw/functions/auth/resend_code.py +93 -0
- pyrogram/raw/functions/auth/reset_authorizations.py +69 -0
- pyrogram/raw/functions/auth/reset_login_email.py +82 -0
- pyrogram/raw/functions/auth/send_code.py +98 -0
- pyrogram/raw/functions/auth/sign_in.py +103 -0
- pyrogram/raw/functions/auth/sign_up.py +106 -0
- pyrogram/raw/functions/bots/__init__.py +62 -0
- pyrogram/raw/functions/bots/add_preview_media.py +90 -0
- pyrogram/raw/functions/bots/allow_send_message.py +74 -0
- pyrogram/raw/functions/bots/answer_webhook_json_query.py +82 -0
- pyrogram/raw/functions/bots/can_send_message.py +74 -0
- pyrogram/raw/functions/bots/check_download_file_params.py +90 -0
- pyrogram/raw/functions/bots/check_username.py +74 -0
- pyrogram/raw/functions/bots/create_bot.py +98 -0
- pyrogram/raw/functions/bots/delete_preview_media.py +90 -0
- pyrogram/raw/functions/bots/edit_access_settings.py +92 -0
- pyrogram/raw/functions/bots/edit_preview_media.py +98 -0
- pyrogram/raw/functions/bots/export_bot_token.py +82 -0
- pyrogram/raw/functions/bots/get_access_settings.py +74 -0
- pyrogram/raw/functions/bots/get_admined_bots.py +69 -0
- pyrogram/raw/functions/bots/get_bot_commands.py +82 -0
- pyrogram/raw/functions/bots/get_bot_info.py +86 -0
- pyrogram/raw/functions/bots/get_bot_menu_button.py +74 -0
- pyrogram/raw/functions/bots/get_bot_recommendations.py +74 -0
- pyrogram/raw/functions/bots/get_popular_app_bots.py +82 -0
- pyrogram/raw/functions/bots/get_preview_info.py +82 -0
- pyrogram/raw/functions/bots/get_preview_medias.py +74 -0
- pyrogram/raw/functions/bots/get_requested_web_view_button.py +82 -0
- pyrogram/raw/functions/bots/invoke_web_view_custom_method.py +90 -0
- pyrogram/raw/functions/bots/reorder_preview_medias.py +90 -0
- pyrogram/raw/functions/bots/reorder_usernames.py +82 -0
- pyrogram/raw/functions/bots/request_web_view_button.py +82 -0
- pyrogram/raw/functions/bots/reset_bot_commands.py +82 -0
- pyrogram/raw/functions/bots/send_custom_request.py +82 -0
- pyrogram/raw/functions/bots/set_bot_broadcast_default_admin_rights.py +74 -0
- pyrogram/raw/functions/bots/set_bot_commands.py +90 -0
- pyrogram/raw/functions/bots/set_bot_group_default_admin_rights.py +74 -0
- pyrogram/raw/functions/bots/set_bot_info.py +113 -0
- pyrogram/raw/functions/bots/set_bot_menu_button.py +82 -0
- pyrogram/raw/functions/bots/set_custom_verification.py +101 -0
- pyrogram/raw/functions/bots/set_join_chat_results.py +82 -0
- pyrogram/raw/functions/bots/toggle_user_emoji_status_permission.py +82 -0
- pyrogram/raw/functions/bots/toggle_username.py +90 -0
- pyrogram/raw/functions/bots/update_star_ref_program.py +93 -0
- pyrogram/raw/functions/bots/update_user_emoji_status.py +82 -0
- pyrogram/raw/functions/channels/__init__.py +82 -0
- pyrogram/raw/functions/channels/check_search_posts_flood.py +77 -0
- pyrogram/raw/functions/channels/check_username.py +82 -0
- pyrogram/raw/functions/channels/convert_to_gigagroup.py +74 -0
- pyrogram/raw/functions/channels/create_channel.py +136 -0
- pyrogram/raw/functions/channels/deactivate_all_usernames.py +74 -0
- pyrogram/raw/functions/channels/delete_channel.py +74 -0
- pyrogram/raw/functions/channels/delete_history.py +90 -0
- pyrogram/raw/functions/channels/delete_messages.py +82 -0
- pyrogram/raw/functions/channels/delete_participant_history.py +82 -0
- pyrogram/raw/functions/channels/edit_admin.py +101 -0
- pyrogram/raw/functions/channels/edit_banned.py +90 -0
- pyrogram/raw/functions/channels/edit_location.py +90 -0
- pyrogram/raw/functions/channels/edit_photo.py +82 -0
- pyrogram/raw/functions/channels/edit_title.py +82 -0
- pyrogram/raw/functions/channels/export_message_link.py +96 -0
- pyrogram/raw/functions/channels/get_admin_log.py +128 -0
- pyrogram/raw/functions/channels/get_admined_public_channels.py +86 -0
- pyrogram/raw/functions/channels/get_channel_recommendations.py +78 -0
- pyrogram/raw/functions/channels/get_channels.py +74 -0
- pyrogram/raw/functions/channels/get_full_channel.py +74 -0
- pyrogram/raw/functions/channels/get_groups_for_discussion.py +69 -0
- pyrogram/raw/functions/channels/get_inactive_channels.py +69 -0
- pyrogram/raw/functions/channels/get_left_channels.py +74 -0
- pyrogram/raw/functions/channels/get_message_author.py +82 -0
- pyrogram/raw/functions/channels/get_messages.py +82 -0
- pyrogram/raw/functions/channels/get_participant.py +82 -0
- pyrogram/raw/functions/channels/get_participants.py +106 -0
- pyrogram/raw/functions/channels/get_send_as.py +88 -0
- pyrogram/raw/functions/channels/invite_to_channel.py +82 -0
- pyrogram/raw/functions/channels/join_channel.py +74 -0
- pyrogram/raw/functions/channels/leave_channel.py +74 -0
- pyrogram/raw/functions/channels/read_history.py +82 -0
- pyrogram/raw/functions/channels/read_message_contents.py +82 -0
- pyrogram/raw/functions/channels/reorder_usernames.py +82 -0
- pyrogram/raw/functions/channels/report_anti_spam_false_positive.py +82 -0
- pyrogram/raw/functions/channels/report_spam.py +90 -0
- pyrogram/raw/functions/channels/restrict_sponsored_messages.py +82 -0
- pyrogram/raw/functions/channels/search_posts.py +127 -0
- pyrogram/raw/functions/channels/set_boosts_to_unblock_restrictions.py +82 -0
- pyrogram/raw/functions/channels/set_discussion_group.py +82 -0
- pyrogram/raw/functions/channels/set_emoji_stickers.py +82 -0
- pyrogram/raw/functions/channels/set_main_profile_tab.py +82 -0
- pyrogram/raw/functions/channels/set_stickers.py +82 -0
- pyrogram/raw/functions/channels/toggle_anti_spam.py +82 -0
- pyrogram/raw/functions/channels/toggle_autotranslation.py +82 -0
- pyrogram/raw/functions/channels/toggle_forum.py +90 -0
- pyrogram/raw/functions/channels/toggle_join_request.py +100 -0
- pyrogram/raw/functions/channels/toggle_join_to_send.py +82 -0
- pyrogram/raw/functions/channels/toggle_participants_hidden.py +82 -0
- pyrogram/raw/functions/channels/toggle_pre_history_hidden.py +82 -0
- pyrogram/raw/functions/channels/toggle_signatures.py +88 -0
- pyrogram/raw/functions/channels/toggle_slow_mode.py +82 -0
- pyrogram/raw/functions/channels/toggle_username.py +90 -0
- pyrogram/raw/functions/channels/toggle_view_forum_as_messages.py +82 -0
- pyrogram/raw/functions/channels/update_color.py +100 -0
- pyrogram/raw/functions/channels/update_emoji_status.py +82 -0
- pyrogram/raw/functions/channels/update_paid_messages_price.py +90 -0
- pyrogram/raw/functions/channels/update_username.py +82 -0
- pyrogram/raw/functions/chatlists/__init__.py +35 -0
- pyrogram/raw/functions/chatlists/check_chatlist_invite.py +74 -0
- pyrogram/raw/functions/chatlists/delete_exported_invite.py +82 -0
- pyrogram/raw/functions/chatlists/edit_exported_invite.py +103 -0
- pyrogram/raw/functions/chatlists/export_chatlist_invite.py +90 -0
- pyrogram/raw/functions/chatlists/get_chatlist_updates.py +74 -0
- pyrogram/raw/functions/chatlists/get_exported_invites.py +74 -0
- pyrogram/raw/functions/chatlists/get_leave_chatlist_suggestions.py +74 -0
- pyrogram/raw/functions/chatlists/hide_chatlist_updates.py +74 -0
- pyrogram/raw/functions/chatlists/join_chatlist_invite.py +82 -0
- pyrogram/raw/functions/chatlists/join_chatlist_updates.py +82 -0
- pyrogram/raw/functions/chatlists/leave_chatlist.py +82 -0
- pyrogram/raw/functions/contacts/__init__.py +52 -0
- pyrogram/raw/functions/contacts/accept_contact.py +74 -0
- pyrogram/raw/functions/contacts/add_contact.py +116 -0
- pyrogram/raw/functions/contacts/block.py +82 -0
- pyrogram/raw/functions/contacts/block_from_replies.py +94 -0
- pyrogram/raw/functions/contacts/delete_by_phones.py +74 -0
- pyrogram/raw/functions/contacts/delete_contacts.py +74 -0
- pyrogram/raw/functions/contacts/edit_close_friends.py +74 -0
- pyrogram/raw/functions/contacts/export_contact_token.py +69 -0
- pyrogram/raw/functions/contacts/get_birthdays.py +69 -0
- pyrogram/raw/functions/contacts/get_blocked.py +90 -0
- pyrogram/raw/functions/contacts/get_contact_i_ds.py +74 -0
- pyrogram/raw/functions/contacts/get_contacts.py +74 -0
- pyrogram/raw/functions/contacts/get_located.py +91 -0
- pyrogram/raw/functions/contacts/get_saved.py +69 -0
- pyrogram/raw/functions/contacts/get_sponsored_peers.py +74 -0
- pyrogram/raw/functions/contacts/get_statuses.py +69 -0
- pyrogram/raw/functions/contacts/get_top_peers.py +152 -0
- pyrogram/raw/functions/contacts/import_contact_token.py +74 -0
- pyrogram/raw/functions/contacts/import_contacts.py +74 -0
- pyrogram/raw/functions/contacts/reset_saved.py +69 -0
- pyrogram/raw/functions/contacts/reset_top_peer_rating.py +82 -0
- pyrogram/raw/functions/contacts/resolve_phone.py +74 -0
- pyrogram/raw/functions/contacts/resolve_username.py +85 -0
- pyrogram/raw/functions/contacts/search.py +96 -0
- pyrogram/raw/functions/contacts/set_blocked.py +90 -0
- pyrogram/raw/functions/contacts/toggle_top_peers.py +74 -0
- pyrogram/raw/functions/contacts/unblock.py +82 -0
- pyrogram/raw/functions/contacts/update_contact_note.py +82 -0
- pyrogram/raw/functions/contest/__init__.py +25 -0
- pyrogram/raw/functions/contest/save_developer_info.py +106 -0
- pyrogram/raw/functions/destroy_auth_key.py +69 -0
- pyrogram/raw/functions/destroy_session.py +74 -0
- pyrogram/raw/functions/folders/__init__.py +25 -0
- pyrogram/raw/functions/folders/edit_peer_folders.py +74 -0
- pyrogram/raw/functions/fragment/__init__.py +25 -0
- pyrogram/raw/functions/fragment/get_collectible_info.py +74 -0
- pyrogram/raw/functions/get_future_salts.py +74 -0
- pyrogram/raw/functions/help/__init__.py +49 -0
- pyrogram/raw/functions/help/accept_terms_of_service.py +74 -0
- pyrogram/raw/functions/help/dismiss_suggestion.py +82 -0
- pyrogram/raw/functions/help/edit_user_info.py +90 -0
- pyrogram/raw/functions/help/get_app_config.py +74 -0
- pyrogram/raw/functions/help/get_app_update.py +74 -0
- pyrogram/raw/functions/help/get_cdn_config.py +69 -0
- pyrogram/raw/functions/help/get_config.py +69 -0
- pyrogram/raw/functions/help/get_countries_list.py +82 -0
- pyrogram/raw/functions/help/get_deep_link_info.py +74 -0
- pyrogram/raw/functions/help/get_invite_text.py +69 -0
- pyrogram/raw/functions/help/get_nearest_dc.py +69 -0
- pyrogram/raw/functions/help/get_passport_config.py +74 -0
- pyrogram/raw/functions/help/get_peer_colors.py +74 -0
- pyrogram/raw/functions/help/get_peer_profile_colors.py +74 -0
- pyrogram/raw/functions/help/get_premium_promo.py +69 -0
- pyrogram/raw/functions/help/get_promo_data.py +69 -0
- pyrogram/raw/functions/help/get_recent_me_urls.py +74 -0
- pyrogram/raw/functions/help/get_support.py +69 -0
- pyrogram/raw/functions/help/get_support_name.py +69 -0
- pyrogram/raw/functions/help/get_terms_of_service_update.py +69 -0
- pyrogram/raw/functions/help/get_timezones_list.py +74 -0
- pyrogram/raw/functions/help/get_user_info.py +74 -0
- pyrogram/raw/functions/help/hide_promo_data.py +74 -0
- pyrogram/raw/functions/help/save_app_log.py +74 -0
- pyrogram/raw/functions/help/set_bot_updates_status.py +82 -0
- pyrogram/raw/functions/init_connection.py +152 -0
- pyrogram/raw/functions/invoke_after_msg.py +82 -0
- pyrogram/raw/functions/invoke_after_msgs.py +82 -0
- pyrogram/raw/functions/invoke_with_apns_secret.py +90 -0
- pyrogram/raw/functions/invoke_with_business_connection.py +82 -0
- pyrogram/raw/functions/invoke_with_google_play_integrity.py +90 -0
- pyrogram/raw/functions/invoke_with_layer.py +82 -0
- pyrogram/raw/functions/invoke_with_messages_range.py +82 -0
- pyrogram/raw/functions/invoke_with_re_captcha.py +82 -0
- pyrogram/raw/functions/invoke_with_takeout.py +82 -0
- pyrogram/raw/functions/invoke_without_updates.py +74 -0
- pyrogram/raw/functions/langpack/__init__.py +29 -0
- pyrogram/raw/functions/langpack/get_difference.py +90 -0
- pyrogram/raw/functions/langpack/get_lang_pack.py +82 -0
- pyrogram/raw/functions/langpack/get_language.py +82 -0
- pyrogram/raw/functions/langpack/get_languages.py +74 -0
- pyrogram/raw/functions/langpack/get_strings.py +90 -0
- pyrogram/raw/functions/messages/__init__.py +280 -0
- pyrogram/raw/functions/messages/accept_encryption.py +90 -0
- pyrogram/raw/functions/messages/accept_url_auth.py +126 -0
- pyrogram/raw/functions/messages/add_chat_user.py +90 -0
- pyrogram/raw/functions/messages/add_poll_answer.py +90 -0
- pyrogram/raw/functions/messages/append_todo_list.py +90 -0
- pyrogram/raw/functions/messages/check_chat_invite.py +74 -0
- pyrogram/raw/functions/messages/check_history_import.py +74 -0
- pyrogram/raw/functions/messages/check_history_import_peer.py +74 -0
- pyrogram/raw/functions/messages/check_quick_reply_shortcut.py +74 -0
- pyrogram/raw/functions/messages/check_url_auth_match_code.py +82 -0
- pyrogram/raw/functions/messages/clear_all_drafts.py +69 -0
- pyrogram/raw/functions/messages/clear_recent_reactions.py +69 -0
- pyrogram/raw/functions/messages/clear_recent_stickers.py +74 -0
- pyrogram/raw/functions/messages/click_sponsored_message.py +88 -0
- pyrogram/raw/functions/messages/compose_message_with_ai.py +107 -0
- pyrogram/raw/functions/messages/create_chat.py +93 -0
- pyrogram/raw/functions/messages/create_forum_topic.py +126 -0
- pyrogram/raw/functions/messages/decline_url_auth.py +74 -0
- pyrogram/raw/functions/messages/delete_chat.py +74 -0
- pyrogram/raw/functions/messages/delete_chat_user.py +90 -0
- pyrogram/raw/functions/messages/delete_exported_chat_invite.py +82 -0
- pyrogram/raw/functions/messages/delete_fact_check.py +82 -0
- pyrogram/raw/functions/messages/delete_history.py +114 -0
- pyrogram/raw/functions/messages/delete_messages.py +82 -0
- pyrogram/raw/functions/messages/delete_participant_reaction.py +90 -0
- pyrogram/raw/functions/messages/delete_participant_reactions.py +82 -0
- pyrogram/raw/functions/messages/delete_phone_call_history.py +74 -0
- pyrogram/raw/functions/messages/delete_poll_answer.py +90 -0
- pyrogram/raw/functions/messages/delete_quick_reply_messages.py +82 -0
- pyrogram/raw/functions/messages/delete_quick_reply_shortcut.py +74 -0
- pyrogram/raw/functions/messages/delete_revoked_exported_chat_invites.py +82 -0
- pyrogram/raw/functions/messages/delete_saved_history.py +112 -0
- pyrogram/raw/functions/messages/delete_scheduled_messages.py +82 -0
- pyrogram/raw/functions/messages/delete_topic_history.py +82 -0
- pyrogram/raw/functions/messages/discard_encryption.py +82 -0
- pyrogram/raw/functions/messages/edit_chat_about.py +82 -0
- pyrogram/raw/functions/messages/edit_chat_admin.py +90 -0
- pyrogram/raw/functions/messages/edit_chat_creator.py +90 -0
- pyrogram/raw/functions/messages/edit_chat_default_banned_rights.py +82 -0
- pyrogram/raw/functions/messages/edit_chat_participant_rank.py +90 -0
- pyrogram/raw/functions/messages/edit_chat_photo.py +82 -0
- pyrogram/raw/functions/messages/edit_chat_title.py +82 -0
- pyrogram/raw/functions/messages/edit_exported_chat_invite.py +126 -0
- pyrogram/raw/functions/messages/edit_fact_check.py +90 -0
- pyrogram/raw/functions/messages/edit_forum_topic.py +120 -0
- pyrogram/raw/functions/messages/edit_inline_bot_message.py +137 -0
- pyrogram/raw/functions/messages/edit_message.py +172 -0
- pyrogram/raw/functions/messages/edit_quick_reply_shortcut.py +82 -0
- pyrogram/raw/functions/messages/export_chat_invite.py +125 -0
- pyrogram/raw/functions/messages/fave_sticker.py +82 -0
- pyrogram/raw/functions/messages/forward_messages.py +236 -0
- pyrogram/raw/functions/messages/get_admins_with_invites.py +74 -0
- pyrogram/raw/functions/messages/get_all_drafts.py +69 -0
- pyrogram/raw/functions/messages/get_all_stickers.py +74 -0
- pyrogram/raw/functions/messages/get_archived_stickers.py +96 -0
- pyrogram/raw/functions/messages/get_attach_menu_bot.py +74 -0
- pyrogram/raw/functions/messages/get_attach_menu_bots.py +74 -0
- pyrogram/raw/functions/messages/get_attached_stickers.py +74 -0
- pyrogram/raw/functions/messages/get_available_effects.py +74 -0
- pyrogram/raw/functions/messages/get_available_reactions.py +74 -0
- pyrogram/raw/functions/messages/get_bot_app.py +82 -0
- pyrogram/raw/functions/messages/get_bot_callback_answer.py +109 -0
- pyrogram/raw/functions/messages/get_chat_invite_importers.py +130 -0
- pyrogram/raw/functions/messages/get_chats.py +74 -0
- pyrogram/raw/functions/messages/get_common_chats.py +90 -0
- pyrogram/raw/functions/messages/get_custom_emoji_documents.py +74 -0
- pyrogram/raw/functions/messages/get_default_history_ttl.py +69 -0
- pyrogram/raw/functions/messages/get_default_tag_reactions.py +74 -0
- pyrogram/raw/functions/messages/get_dh_config.py +82 -0
- pyrogram/raw/functions/messages/get_dialog_filters.py +69 -0
- pyrogram/raw/functions/messages/get_dialog_unread_marks.py +78 -0
- pyrogram/raw/functions/messages/get_dialogs.py +123 -0
- pyrogram/raw/functions/messages/get_discussion_message.py +82 -0
- pyrogram/raw/functions/messages/get_document_by_hash.py +90 -0
- pyrogram/raw/functions/messages/get_emoji_game_info.py +69 -0
- pyrogram/raw/functions/messages/get_emoji_groups.py +74 -0
- pyrogram/raw/functions/messages/get_emoji_keywords.py +74 -0
- pyrogram/raw/functions/messages/get_emoji_keywords_difference.py +82 -0
- pyrogram/raw/functions/messages/get_emoji_keywords_languages.py +74 -0
- pyrogram/raw/functions/messages/get_emoji_profile_photo_groups.py +74 -0
- pyrogram/raw/functions/messages/get_emoji_status_groups.py +74 -0
- pyrogram/raw/functions/messages/get_emoji_sticker_groups.py +74 -0
- pyrogram/raw/functions/messages/get_emoji_stickers.py +74 -0
- pyrogram/raw/functions/messages/get_emoji_url.py +74 -0
- pyrogram/raw/functions/messages/get_exported_chat_invite.py +82 -0
- pyrogram/raw/functions/messages/get_exported_chat_invites.py +116 -0
- pyrogram/raw/functions/messages/get_extended_media.py +82 -0
- pyrogram/raw/functions/messages/get_fact_check.py +82 -0
- pyrogram/raw/functions/messages/get_faved_stickers.py +74 -0
- pyrogram/raw/functions/messages/get_featured_emoji_stickers.py +74 -0
- pyrogram/raw/functions/messages/get_featured_stickers.py +74 -0
- pyrogram/raw/functions/messages/get_forum_topics.py +117 -0
- pyrogram/raw/functions/messages/get_forum_topics_by_id.py +82 -0
- pyrogram/raw/functions/messages/get_full_chat.py +74 -0
- pyrogram/raw/functions/messages/get_future_chat_creator_after_leave.py +74 -0
- pyrogram/raw/functions/messages/get_game_high_scores.py +90 -0
- pyrogram/raw/functions/messages/get_history.py +130 -0
- pyrogram/raw/functions/messages/get_inline_bot_results.py +110 -0
- pyrogram/raw/functions/messages/get_inline_game_high_scores.py +82 -0
- pyrogram/raw/functions/messages/get_mask_stickers.py +74 -0
- pyrogram/raw/functions/messages/get_message_edit_data.py +82 -0
- pyrogram/raw/functions/messages/get_message_reactions_list.py +111 -0
- pyrogram/raw/functions/messages/get_message_read_participants.py +82 -0
- pyrogram/raw/functions/messages/get_messages.py +74 -0
- pyrogram/raw/functions/messages/get_messages_reactions.py +82 -0
- pyrogram/raw/functions/messages/get_messages_views.py +90 -0
- pyrogram/raw/functions/messages/get_my_stickers.py +82 -0
- pyrogram/raw/functions/messages/get_old_featured_stickers.py +90 -0
- pyrogram/raw/functions/messages/get_onlines.py +74 -0
- pyrogram/raw/functions/messages/get_outbox_read_date.py +82 -0
- pyrogram/raw/functions/messages/get_paid_reaction_privacy.py +69 -0
- pyrogram/raw/functions/messages/get_peer_dialogs.py +74 -0
- pyrogram/raw/functions/messages/get_peer_settings.py +74 -0
- pyrogram/raw/functions/messages/get_personal_channel_history.py +106 -0
- pyrogram/raw/functions/messages/get_pinned_dialogs.py +74 -0
- pyrogram/raw/functions/messages/get_pinned_saved_dialogs.py +69 -0
- pyrogram/raw/functions/messages/get_poll_results.py +90 -0
- pyrogram/raw/functions/messages/get_poll_votes.py +110 -0
- pyrogram/raw/functions/messages/get_prepared_inline_message.py +82 -0
- pyrogram/raw/functions/messages/get_quick_replies.py +74 -0
- pyrogram/raw/functions/messages/get_quick_reply_messages.py +94 -0
- pyrogram/raw/functions/messages/get_recent_locations.py +90 -0
- pyrogram/raw/functions/messages/get_recent_reactions.py +82 -0
- pyrogram/raw/functions/messages/get_recent_stickers.py +82 -0
- pyrogram/raw/functions/messages/get_replies.py +138 -0
- pyrogram/raw/functions/messages/get_rich_message.py +82 -0
- pyrogram/raw/functions/messages/get_saved_dialogs.py +124 -0
- pyrogram/raw/functions/messages/get_saved_dialogs_by_id.py +86 -0
- pyrogram/raw/functions/messages/get_saved_gifs.py +74 -0
- pyrogram/raw/functions/messages/get_saved_history.py +142 -0
- pyrogram/raw/functions/messages/get_saved_reaction_tags.py +86 -0
- pyrogram/raw/functions/messages/get_scheduled_history.py +82 -0
- pyrogram/raw/functions/messages/get_scheduled_messages.py +82 -0
- pyrogram/raw/functions/messages/get_search_counters.py +103 -0
- pyrogram/raw/functions/messages/get_search_results_calendar.py +110 -0
- pyrogram/raw/functions/messages/get_search_results_positions.py +110 -0
- pyrogram/raw/functions/messages/get_split_ranges.py +69 -0
- pyrogram/raw/functions/messages/get_sponsored_messages.py +85 -0
- pyrogram/raw/functions/messages/get_sticker_set.py +82 -0
- pyrogram/raw/functions/messages/get_stickers.py +82 -0
- pyrogram/raw/functions/messages/get_suggested_dialog_filters.py +69 -0
- pyrogram/raw/functions/messages/get_top_reactions.py +82 -0
- pyrogram/raw/functions/messages/get_unread_mentions.py +125 -0
- pyrogram/raw/functions/messages/get_unread_poll_votes.py +125 -0
- pyrogram/raw/functions/messages/get_unread_reactions.py +135 -0
- pyrogram/raw/functions/messages/get_web_page.py +82 -0
- pyrogram/raw/functions/messages/get_web_page_preview.py +86 -0
- pyrogram/raw/functions/messages/hide_all_chat_join_requests.py +91 -0
- pyrogram/raw/functions/messages/hide_chat_join_request.py +90 -0
- pyrogram/raw/functions/messages/hide_peer_settings_bar.py +74 -0
- pyrogram/raw/functions/messages/import_chat_invite.py +74 -0
- pyrogram/raw/functions/messages/init_history_import.py +90 -0
- pyrogram/raw/functions/messages/install_sticker_set.py +82 -0
- pyrogram/raw/functions/messages/mark_dialog_unread.py +92 -0
- pyrogram/raw/functions/messages/migrate_chat.py +74 -0
- pyrogram/raw/functions/messages/prolong_web_view.py +118 -0
- pyrogram/raw/functions/messages/rate_transcribed_audio.py +98 -0
- pyrogram/raw/functions/messages/read_discussion.py +90 -0
- pyrogram/raw/functions/messages/read_encrypted_history.py +82 -0
- pyrogram/raw/functions/messages/read_featured_stickers.py +74 -0
- pyrogram/raw/functions/messages/read_history.py +82 -0
- pyrogram/raw/functions/messages/read_mentions.py +85 -0
- pyrogram/raw/functions/messages/read_message_contents.py +74 -0
- pyrogram/raw/functions/messages/read_poll_votes.py +85 -0
- pyrogram/raw/functions/messages/read_reactions.py +95 -0
- pyrogram/raw/functions/messages/read_saved_history.py +90 -0
- pyrogram/raw/functions/messages/received_messages.py +74 -0
- pyrogram/raw/functions/messages/received_queue.py +74 -0
- pyrogram/raw/functions/messages/reorder_pinned_dialogs.py +90 -0
- pyrogram/raw/functions/messages/reorder_pinned_forum_topics.py +90 -0
- pyrogram/raw/functions/messages/reorder_pinned_saved_dialogs.py +82 -0
- pyrogram/raw/functions/messages/reorder_quick_replies.py +74 -0
- pyrogram/raw/functions/messages/reorder_sticker_sets.py +88 -0
- pyrogram/raw/functions/messages/report.py +98 -0
- pyrogram/raw/functions/messages/report_encrypted_spam.py +74 -0
- pyrogram/raw/functions/messages/report_messages_delivery.py +90 -0
- pyrogram/raw/functions/messages/report_music_listen.py +82 -0
- pyrogram/raw/functions/messages/report_reaction.py +90 -0
- pyrogram/raw/functions/messages/report_read_metrics.py +82 -0
- pyrogram/raw/functions/messages/report_spam.py +74 -0
- pyrogram/raw/functions/messages/report_sponsored_message.py +82 -0
- pyrogram/raw/functions/messages/request_app_web_view.py +129 -0
- pyrogram/raw/functions/messages/request_encryption.py +90 -0
- pyrogram/raw/functions/messages/request_main_web_view.py +123 -0
- pyrogram/raw/functions/messages/request_simple_web_view.py +136 -0
- pyrogram/raw/functions/messages/request_url_auth.py +114 -0
- pyrogram/raw/functions/messages/request_web_view.py +164 -0
- pyrogram/raw/functions/messages/save_default_send_as.py +82 -0
- pyrogram/raw/functions/messages/save_draft.py +155 -0
- pyrogram/raw/functions/messages/save_gif.py +82 -0
- pyrogram/raw/functions/messages/save_prepared_inline_message.py +94 -0
- pyrogram/raw/functions/messages/save_recent_sticker.py +90 -0
- pyrogram/raw/functions/messages/search.py +195 -0
- pyrogram/raw/functions/messages/search_custom_emoji.py +82 -0
- pyrogram/raw/functions/messages/search_emoji_sticker_sets.py +90 -0
- pyrogram/raw/functions/messages/search_global.py +159 -0
- pyrogram/raw/functions/messages/search_sent_media.py +90 -0
- pyrogram/raw/functions/messages/search_sticker_sets.py +90 -0
- pyrogram/raw/functions/messages/search_stickers.py +122 -0
- pyrogram/raw/functions/messages/send_bot_requested_peer.py +110 -0
- pyrogram/raw/functions/messages/send_encrypted.py +98 -0
- pyrogram/raw/functions/messages/send_encrypted_file.py +106 -0
- pyrogram/raw/functions/messages/send_encrypted_service.py +90 -0
- pyrogram/raw/functions/messages/send_inline_bot_result.py +172 -0
- pyrogram/raw/functions/messages/send_media.py +238 -0
- pyrogram/raw/functions/messages/send_message.py +246 -0
- pyrogram/raw/functions/messages/send_multi_media.py +183 -0
- pyrogram/raw/functions/messages/send_paid_reaction.py +110 -0
- pyrogram/raw/functions/messages/send_quick_reply_messages.py +98 -0
- pyrogram/raw/functions/messages/send_reaction.py +106 -0
- pyrogram/raw/functions/messages/send_scheduled_messages.py +82 -0
- pyrogram/raw/functions/messages/send_screenshot_notification.py +90 -0
- pyrogram/raw/functions/messages/send_vote.py +90 -0
- pyrogram/raw/functions/messages/send_web_view_data.py +98 -0
- pyrogram/raw/functions/messages/send_web_view_result_message.py +82 -0
- pyrogram/raw/functions/messages/set_bot_callback_answer.py +108 -0
- pyrogram/raw/functions/messages/set_bot_guest_chat_result.py +82 -0
- pyrogram/raw/functions/messages/set_bot_precheckout_results.py +91 -0
- pyrogram/raw/functions/messages/set_bot_shipping_results.py +95 -0
- pyrogram/raw/functions/messages/set_chat_available_reactions.py +102 -0
- pyrogram/raw/functions/messages/set_chat_theme.py +82 -0
- pyrogram/raw/functions/messages/set_chat_wall_paper.py +117 -0
- pyrogram/raw/functions/messages/set_default_history_ttl.py +74 -0
- pyrogram/raw/functions/messages/set_default_reaction.py +74 -0
- pyrogram/raw/functions/messages/set_encrypted_typing.py +82 -0
- pyrogram/raw/functions/messages/set_game_score.py +112 -0
- pyrogram/raw/functions/messages/set_history_ttl.py +82 -0
- pyrogram/raw/functions/messages/set_inline_bot_results.py +133 -0
- pyrogram/raw/functions/messages/set_inline_game_score.py +104 -0
- pyrogram/raw/functions/messages/set_typing.py +93 -0
- pyrogram/raw/functions/messages/start_bot.py +98 -0
- pyrogram/raw/functions/messages/start_history_import.py +82 -0
- pyrogram/raw/functions/messages/summarize_text.py +102 -0
- pyrogram/raw/functions/messages/toggle_bot_in_attach_menu.py +90 -0
- pyrogram/raw/functions/messages/toggle_dialog_filter_tags.py +74 -0
- pyrogram/raw/functions/messages/toggle_dialog_pin.py +82 -0
- pyrogram/raw/functions/messages/toggle_no_forwards.py +93 -0
- pyrogram/raw/functions/messages/toggle_paid_reaction_privacy.py +90 -0
- pyrogram/raw/functions/messages/toggle_peer_translations.py +82 -0
- pyrogram/raw/functions/messages/toggle_saved_dialog_pin.py +82 -0
- pyrogram/raw/functions/messages/toggle_sticker_sets.py +94 -0
- pyrogram/raw/functions/messages/toggle_suggested_post_approval.py +108 -0
- pyrogram/raw/functions/messages/toggle_todo_completed.py +98 -0
- pyrogram/raw/functions/messages/transcribe_audio.py +82 -0
- pyrogram/raw/functions/messages/translate_text.py +115 -0
- pyrogram/raw/functions/messages/uninstall_sticker_set.py +74 -0
- pyrogram/raw/functions/messages/unpin_all_messages.py +95 -0
- pyrogram/raw/functions/messages/update_dialog_filter.py +86 -0
- pyrogram/raw/functions/messages/update_dialog_filters_order.py +74 -0
- pyrogram/raw/functions/messages/update_pinned_forum_topic.py +90 -0
- pyrogram/raw/functions/messages/update_pinned_message.py +102 -0
- pyrogram/raw/functions/messages/update_saved_reaction_tag.py +85 -0
- pyrogram/raw/functions/messages/upload_encrypted_file.py +82 -0
- pyrogram/raw/functions/messages/upload_imported_media.py +98 -0
- pyrogram/raw/functions/messages/upload_media.py +93 -0
- pyrogram/raw/functions/messages/view_sponsored_message.py +74 -0
- pyrogram/raw/functions/payments/__init__.py +89 -0
- pyrogram/raw/functions/payments/apply_gift_code.py +74 -0
- pyrogram/raw/functions/payments/assign_app_store_transaction.py +82 -0
- pyrogram/raw/functions/payments/assign_play_market_transaction.py +82 -0
- pyrogram/raw/functions/payments/bot_cancel_stars_subscription.py +90 -0
- pyrogram/raw/functions/payments/can_purchase_store.py +74 -0
- pyrogram/raw/functions/payments/change_stars_subscription.py +93 -0
- pyrogram/raw/functions/payments/check_can_send_gift.py +74 -0
- pyrogram/raw/functions/payments/check_gift_code.py +74 -0
- pyrogram/raw/functions/payments/clear_saved_info.py +80 -0
- pyrogram/raw/functions/payments/connect_star_ref_bot.py +82 -0
- pyrogram/raw/functions/payments/convert_star_gift.py +74 -0
- pyrogram/raw/functions/payments/craft_star_gift.py +74 -0
- pyrogram/raw/functions/payments/create_star_gift_collection.py +90 -0
- pyrogram/raw/functions/payments/delete_star_gift_collection.py +82 -0
- pyrogram/raw/functions/payments/edit_connected_star_ref_bot.py +90 -0
- pyrogram/raw/functions/payments/export_invoice.py +74 -0
- pyrogram/raw/functions/payments/fulfill_stars_subscription.py +82 -0
- pyrogram/raw/functions/payments/get_bank_card_data.py +74 -0
- pyrogram/raw/functions/payments/get_connected_star_ref_bot.py +82 -0
- pyrogram/raw/functions/payments/get_connected_star_ref_bots.py +102 -0
- pyrogram/raw/functions/payments/get_craft_star_gifts.py +90 -0
- pyrogram/raw/functions/payments/get_giveaway_info.py +82 -0
- pyrogram/raw/functions/payments/get_payment_form.py +86 -0
- pyrogram/raw/functions/payments/get_payment_receipt.py +82 -0
- pyrogram/raw/functions/payments/get_premium_gift_code_options.py +78 -0
- pyrogram/raw/functions/payments/get_resale_star_gifts.py +135 -0
- pyrogram/raw/functions/payments/get_saved_info.py +69 -0
- pyrogram/raw/functions/payments/get_saved_star_gift.py +74 -0
- pyrogram/raw/functions/payments/get_saved_star_gifts.py +155 -0
- pyrogram/raw/functions/payments/get_star_gift_active_auctions.py +74 -0
- pyrogram/raw/functions/payments/get_star_gift_auction_acquired_gifts.py +74 -0
- pyrogram/raw/functions/payments/get_star_gift_auction_state.py +82 -0
- pyrogram/raw/functions/payments/get_star_gift_collections.py +82 -0
- pyrogram/raw/functions/payments/get_star_gift_upgrade_attributes.py +74 -0
- pyrogram/raw/functions/payments/get_star_gift_upgrade_preview.py +74 -0
- pyrogram/raw/functions/payments/get_star_gift_withdrawal_url.py +82 -0
- pyrogram/raw/functions/payments/get_star_gifts.py +74 -0
- pyrogram/raw/functions/payments/get_stars_gift_options.py +78 -0
- pyrogram/raw/functions/payments/get_stars_giveaway_options.py +69 -0
- pyrogram/raw/functions/payments/get_stars_revenue_ads_account_url.py +74 -0
- pyrogram/raw/functions/payments/get_stars_revenue_stats.py +88 -0
- pyrogram/raw/functions/payments/get_stars_revenue_withdrawal_url.py +99 -0
- pyrogram/raw/functions/payments/get_stars_status.py +82 -0
- pyrogram/raw/functions/payments/get_stars_subscriptions.py +90 -0
- pyrogram/raw/functions/payments/get_stars_topup_options.py +69 -0
- pyrogram/raw/functions/payments/get_stars_transactions.py +125 -0
- pyrogram/raw/functions/payments/get_stars_transactions_by_id.py +90 -0
- pyrogram/raw/functions/payments/get_suggested_star_ref_bots.py +104 -0
- pyrogram/raw/functions/payments/get_unique_star_gift.py +74 -0
- pyrogram/raw/functions/payments/get_unique_star_gift_value_info.py +74 -0
- pyrogram/raw/functions/payments/launch_prepaid_giveaway.py +90 -0
- pyrogram/raw/functions/payments/refund_stars_charge.py +82 -0
- pyrogram/raw/functions/payments/reorder_star_gift_collections.py +82 -0
- pyrogram/raw/functions/payments/resolve_star_gift_offer.py +82 -0
- pyrogram/raw/functions/payments/save_star_gift.py +82 -0
- pyrogram/raw/functions/payments/send_payment_form.py +119 -0
- pyrogram/raw/functions/payments/send_star_gift_offer.py +117 -0
- pyrogram/raw/functions/payments/send_stars_form.py +82 -0
- pyrogram/raw/functions/payments/toggle_chat_star_gift_notifications.py +82 -0
- pyrogram/raw/functions/payments/toggle_star_gifts_pinned_to_top.py +82 -0
- pyrogram/raw/functions/payments/transfer_star_gift.py +82 -0
- pyrogram/raw/functions/payments/update_star_gift_collection.py +123 -0
- pyrogram/raw/functions/payments/update_star_gift_price.py +82 -0
- pyrogram/raw/functions/payments/upgrade_star_gift.py +82 -0
- pyrogram/raw/functions/payments/validate_requested_info.py +90 -0
- pyrogram/raw/functions/phone/__init__.py +67 -0
- pyrogram/raw/functions/phone/accept_call.py +90 -0
- pyrogram/raw/functions/phone/check_group_call.py +82 -0
- pyrogram/raw/functions/phone/confirm_call.py +98 -0
- pyrogram/raw/functions/phone/create_conference_call.py +122 -0
- pyrogram/raw/functions/phone/create_group_call.py +108 -0
- pyrogram/raw/functions/phone/decline_conference_call_invite.py +74 -0
- pyrogram/raw/functions/phone/delete_conference_call_participants.py +104 -0
- pyrogram/raw/functions/phone/delete_group_call_messages.py +90 -0
- pyrogram/raw/functions/phone/delete_group_call_participant_messages.py +90 -0
- pyrogram/raw/functions/phone/discard_call.py +106 -0
- pyrogram/raw/functions/phone/discard_group_call.py +74 -0
- pyrogram/raw/functions/phone/edit_group_call_participant.py +138 -0
- pyrogram/raw/functions/phone/edit_group_call_title.py +82 -0
- pyrogram/raw/functions/phone/export_group_call_invite.py +82 -0
- pyrogram/raw/functions/phone/get_call_config.py +69 -0
- pyrogram/raw/functions/phone/get_group_call.py +82 -0
- pyrogram/raw/functions/phone/get_group_call_chain_blocks.py +98 -0
- pyrogram/raw/functions/phone/get_group_call_join_as.py +74 -0
- pyrogram/raw/functions/phone/get_group_call_stars.py +74 -0
- pyrogram/raw/functions/phone/get_group_call_stream_channels.py +74 -0
- pyrogram/raw/functions/phone/get_group_call_stream_rtmp_url.py +90 -0
- pyrogram/raw/functions/phone/get_group_participants.py +106 -0
- pyrogram/raw/functions/phone/invite_conference_call_participant.py +90 -0
- pyrogram/raw/functions/phone/invite_to_group_call.py +82 -0
- pyrogram/raw/functions/phone/join_group_call.py +131 -0
- pyrogram/raw/functions/phone/join_group_call_presentation.py +82 -0
- pyrogram/raw/functions/phone/leave_group_call.py +82 -0
- pyrogram/raw/functions/phone/leave_group_call_presentation.py +74 -0
- pyrogram/raw/functions/phone/received_call.py +74 -0
- pyrogram/raw/functions/phone/request_call.py +106 -0
- pyrogram/raw/functions/phone/save_call_debug.py +82 -0
- pyrogram/raw/functions/phone/save_call_log.py +82 -0
- pyrogram/raw/functions/phone/save_default_group_call_join_as.py +82 -0
- pyrogram/raw/functions/phone/save_default_send_as.py +82 -0
- pyrogram/raw/functions/phone/send_conference_call_broadcast.py +82 -0
- pyrogram/raw/functions/phone/send_group_call_encrypted_message.py +82 -0
- pyrogram/raw/functions/phone/send_group_call_message.py +111 -0
- pyrogram/raw/functions/phone/send_signaling_data.py +82 -0
- pyrogram/raw/functions/phone/set_call_rating.py +98 -0
- pyrogram/raw/functions/phone/start_scheduled_group_call.py +74 -0
- pyrogram/raw/functions/phone/toggle_group_call_record.py +106 -0
- pyrogram/raw/functions/phone/toggle_group_call_settings.py +109 -0
- pyrogram/raw/functions/phone/toggle_group_call_start_subscription.py +82 -0
- pyrogram/raw/functions/photos/__init__.py +29 -0
- pyrogram/raw/functions/photos/delete_photos.py +74 -0
- pyrogram/raw/functions/photos/get_user_photos.py +98 -0
- pyrogram/raw/functions/photos/update_profile_photo.py +92 -0
- pyrogram/raw/functions/photos/upload_contact_profile_photo.py +127 -0
- pyrogram/raw/functions/photos/upload_profile_photo.py +123 -0
- pyrogram/raw/functions/ping.py +74 -0
- pyrogram/raw/functions/ping_delay_disconnect.py +82 -0
- pyrogram/raw/functions/premium/__init__.py +29 -0
- pyrogram/raw/functions/premium/apply_boost.py +86 -0
- pyrogram/raw/functions/premium/get_boosts_list.py +98 -0
- pyrogram/raw/functions/premium/get_boosts_status.py +74 -0
- pyrogram/raw/functions/premium/get_my_boosts.py +69 -0
- pyrogram/raw/functions/premium/get_user_boosts.py +82 -0
- pyrogram/raw/functions/req_dh_params.py +114 -0
- pyrogram/raw/functions/req_pq.py +74 -0
- pyrogram/raw/functions/req_pq_multi.py +74 -0
- pyrogram/raw/functions/rpc_drop_answer.py +74 -0
- pyrogram/raw/functions/set_client_dh_params.py +90 -0
- pyrogram/raw/functions/smsjobs/__init__.py +31 -0
- pyrogram/raw/functions/smsjobs/finish_job.py +85 -0
- pyrogram/raw/functions/smsjobs/get_sms_job.py +74 -0
- pyrogram/raw/functions/smsjobs/get_status.py +69 -0
- pyrogram/raw/functions/smsjobs/is_eligible_to_join.py +69 -0
- pyrogram/raw/functions/smsjobs/join.py +69 -0
- pyrogram/raw/functions/smsjobs/leave.py +69 -0
- pyrogram/raw/functions/smsjobs/update_settings.py +74 -0
- pyrogram/raw/functions/stats/__init__.py +32 -0
- pyrogram/raw/functions/stats/get_broadcast_stats.py +82 -0
- pyrogram/raw/functions/stats/get_megagroup_stats.py +82 -0
- pyrogram/raw/functions/stats/get_message_public_forwards.py +98 -0
- pyrogram/raw/functions/stats/get_message_stats.py +90 -0
- pyrogram/raw/functions/stats/get_poll_stats.py +90 -0
- pyrogram/raw/functions/stats/get_story_public_forwards.py +98 -0
- pyrogram/raw/functions/stats/get_story_stats.py +90 -0
- pyrogram/raw/functions/stats/load_async_graph.py +85 -0
- pyrogram/raw/functions/stickers/__init__.py +35 -0
- pyrogram/raw/functions/stickers/add_sticker_to_set.py +82 -0
- pyrogram/raw/functions/stickers/change_sticker.py +104 -0
- pyrogram/raw/functions/stickers/change_sticker_position.py +82 -0
- pyrogram/raw/functions/stickers/check_short_name.py +74 -0
- pyrogram/raw/functions/stickers/create_sticker_set.py +137 -0
- pyrogram/raw/functions/stickers/delete_sticker_set.py +74 -0
- pyrogram/raw/functions/stickers/remove_sticker_from_set.py +74 -0
- pyrogram/raw/functions/stickers/rename_sticker_set.py +82 -0
- pyrogram/raw/functions/stickers/replace_sticker.py +82 -0
- pyrogram/raw/functions/stickers/set_sticker_set_thumb.py +95 -0
- pyrogram/raw/functions/stickers/suggest_short_name.py +74 -0
- pyrogram/raw/functions/stories/__init__.py +57 -0
- pyrogram/raw/functions/stories/activate_stealth_mode.py +80 -0
- pyrogram/raw/functions/stories/can_send_story.py +74 -0
- pyrogram/raw/functions/stories/create_album.py +90 -0
- pyrogram/raw/functions/stories/delete_album.py +82 -0
- pyrogram/raw/functions/stories/delete_stories.py +82 -0
- pyrogram/raw/functions/stories/edit_story.py +143 -0
- pyrogram/raw/functions/stories/export_story_link.py +82 -0
- pyrogram/raw/functions/stories/get_album_stories.py +98 -0
- pyrogram/raw/functions/stories/get_albums.py +82 -0
- pyrogram/raw/functions/stories/get_all_read_peer_stories.py +69 -0
- pyrogram/raw/functions/stories/get_all_stories.py +89 -0
- pyrogram/raw/functions/stories/get_chats_to_send.py +69 -0
- pyrogram/raw/functions/stories/get_peer_max_i_ds.py +74 -0
- pyrogram/raw/functions/stories/get_peer_stories.py +74 -0
- pyrogram/raw/functions/stories/get_pinned_stories.py +90 -0
- pyrogram/raw/functions/stories/get_stories_archive.py +90 -0
- pyrogram/raw/functions/stories/get_stories_by_id.py +82 -0
- pyrogram/raw/functions/stories/get_stories_views.py +82 -0
- pyrogram/raw/functions/stories/get_story_reactions_list.py +117 -0
- pyrogram/raw/functions/stories/get_story_views_list.py +127 -0
- pyrogram/raw/functions/stories/increment_story_views.py +82 -0
- pyrogram/raw/functions/stories/read_stories.py +82 -0
- pyrogram/raw/functions/stories/reorder_albums.py +82 -0
- pyrogram/raw/functions/stories/report.py +98 -0
- pyrogram/raw/functions/stories/search_posts.py +113 -0
- pyrogram/raw/functions/stories/send_reaction.py +98 -0
- pyrogram/raw/functions/stories/send_story.py +195 -0
- pyrogram/raw/functions/stories/start_live.py +147 -0
- pyrogram/raw/functions/stories/toggle_all_stories_hidden.py +74 -0
- pyrogram/raw/functions/stories/toggle_peer_stories_hidden.py +82 -0
- pyrogram/raw/functions/stories/toggle_pinned.py +90 -0
- pyrogram/raw/functions/stories/toggle_pinned_to_top.py +82 -0
- pyrogram/raw/functions/stories/update_album.py +123 -0
- pyrogram/raw/functions/updates/__init__.py +27 -0
- pyrogram/raw/functions/updates/get_channel_difference.py +106 -0
- pyrogram/raw/functions/updates/get_difference.py +119 -0
- pyrogram/raw/functions/updates/get_state.py +69 -0
- pyrogram/raw/functions/upload/__init__.py +32 -0
- pyrogram/raw/functions/upload/get_cdn_file.py +90 -0
- pyrogram/raw/functions/upload/get_cdn_file_hashes.py +82 -0
- pyrogram/raw/functions/upload/get_file.py +104 -0
- pyrogram/raw/functions/upload/get_file_hashes.py +82 -0
- pyrogram/raw/functions/upload/get_web_file.py +90 -0
- pyrogram/raw/functions/upload/reupload_cdn_file.py +82 -0
- pyrogram/raw/functions/upload/save_big_file_part.py +98 -0
- pyrogram/raw/functions/upload/save_file_part.py +90 -0
- pyrogram/raw/functions/users/__init__.py +31 -0
- pyrogram/raw/functions/users/get_full_user.py +74 -0
- pyrogram/raw/functions/users/get_requirements_to_contact.py +74 -0
- pyrogram/raw/functions/users/get_saved_music.py +98 -0
- pyrogram/raw/functions/users/get_saved_music_by_id.py +82 -0
- pyrogram/raw/functions/users/get_users.py +74 -0
- pyrogram/raw/functions/users/set_secure_value_errors.py +82 -0
- pyrogram/raw/functions/users/suggest_birthday.py +82 -0
- pyrogram/raw/types/__init__.py +1351 -0
- pyrogram/raw/types/access_point_rule.py +90 -0
- pyrogram/raw/types/account/__init__.py +64 -0
- pyrogram/raw/types/account/authorization_form.py +118 -0
- pyrogram/raw/types/account/authorizations.py +91 -0
- pyrogram/raw/types/account/auto_download_settings.py +99 -0
- pyrogram/raw/types/account/auto_save_settings.py +123 -0
- pyrogram/raw/types/account/business_chat_links.py +99 -0
- pyrogram/raw/types/account/chat_themes.py +118 -0
- pyrogram/raw/types/account/chat_themes_not_modified.py +78 -0
- pyrogram/raw/types/account/connected_bots.py +91 -0
- pyrogram/raw/types/account/content_settings.py +89 -0
- pyrogram/raw/types/account/email_verified.py +83 -0
- pyrogram/raw/types/account/email_verified_login.py +91 -0
- pyrogram/raw/types/account/emoji_statuses.py +94 -0
- pyrogram/raw/types/account/emoji_statuses_not_modified.py +81 -0
- pyrogram/raw/types/account/paid_messages_revenue.py +83 -0
- pyrogram/raw/types/account/passkey_registration_options.py +83 -0
- pyrogram/raw/types/account/passkeys.py +83 -0
- pyrogram/raw/types/account/password.py +183 -0
- pyrogram/raw/types/account/password_input_settings.py +115 -0
- pyrogram/raw/types/account/password_settings.py +96 -0
- pyrogram/raw/types/account/privacy_rules.py +100 -0
- pyrogram/raw/types/account/reset_password_failed_wait.py +83 -0
- pyrogram/raw/types/account/reset_password_ok.py +78 -0
- pyrogram/raw/types/account/reset_password_requested_wait.py +83 -0
- pyrogram/raw/types/account/resolved_business_chat_links.py +119 -0
- pyrogram/raw/types/account/saved_music_ids.py +83 -0
- pyrogram/raw/types/account/saved_music_ids_not_modified.py +78 -0
- pyrogram/raw/types/account/saved_ringtone.py +78 -0
- pyrogram/raw/types/account/saved_ringtone_converted.py +83 -0
- pyrogram/raw/types/account/saved_ringtones.py +91 -0
- pyrogram/raw/types/account/saved_ringtones_not_modified.py +78 -0
- pyrogram/raw/types/account/sent_email_code.py +91 -0
- pyrogram/raw/types/account/takeout.py +83 -0
- pyrogram/raw/types/account/themes.py +92 -0
- pyrogram/raw/types/account/themes_not_modified.py +79 -0
- pyrogram/raw/types/account/tmp_password.py +91 -0
- pyrogram/raw/types/account/wall_papers.py +91 -0
- pyrogram/raw/types/account/wall_papers_not_modified.py +78 -0
- pyrogram/raw/types/account/web_authorizations.py +91 -0
- pyrogram/raw/types/account/web_browser_settings.py +115 -0
- pyrogram/raw/types/account/web_browser_settings_not_modified.py +80 -0
- pyrogram/raw/types/account_days_ttl.py +83 -0
- pyrogram/raw/types/ai_compose_tone.py +162 -0
- pyrogram/raw/types/ai_compose_tone_default.py +100 -0
- pyrogram/raw/types/ai_compose_tone_example.py +91 -0
- pyrogram/raw/types/aicompose/__init__.py +26 -0
- pyrogram/raw/types/aicompose/tones.py +100 -0
- pyrogram/raw/types/aicompose/tones_not_modified.py +79 -0
- pyrogram/raw/types/attach_menu_bot.py +138 -0
- pyrogram/raw/types/attach_menu_bot_icon.py +94 -0
- pyrogram/raw/types/attach_menu_bot_icon_color.py +82 -0
- pyrogram/raw/types/attach_menu_bots.py +99 -0
- pyrogram/raw/types/attach_menu_bots_bot.py +91 -0
- pyrogram/raw/types/attach_menu_bots_not_modified.py +78 -0
- pyrogram/raw/types/attach_menu_peer_type_bot_pm.py +69 -0
- pyrogram/raw/types/attach_menu_peer_type_broadcast.py +69 -0
- pyrogram/raw/types/attach_menu_peer_type_chat.py +69 -0
- pyrogram/raw/types/attach_menu_peer_type_pm.py +69 -0
- pyrogram/raw/types/attach_menu_peer_type_same_bot_pm.py +69 -0
- pyrogram/raw/types/auction_bid_level.py +90 -0
- pyrogram/raw/types/auth/__init__.py +52 -0
- pyrogram/raw/types/auth/authorization.py +125 -0
- pyrogram/raw/types/auth/authorization_sign_up_required.py +94 -0
- pyrogram/raw/types/auth/code_type_call.py +69 -0
- pyrogram/raw/types/auth/code_type_flash_call.py +69 -0
- pyrogram/raw/types/auth/code_type_fragment_sms.py +69 -0
- pyrogram/raw/types/auth/code_type_missed_call.py +69 -0
- pyrogram/raw/types/auth/code_type_sms.py +69 -0
- pyrogram/raw/types/auth/exported_authorization.py +91 -0
- pyrogram/raw/types/auth/logged_out.py +86 -0
- pyrogram/raw/types/auth/login_token.py +92 -0
- pyrogram/raw/types/auth/login_token_migrate_to.py +92 -0
- pyrogram/raw/types/auth/login_token_success.py +84 -0
- pyrogram/raw/types/auth/passkey_login_options.py +83 -0
- pyrogram/raw/types/auth/password_recovery.py +83 -0
- pyrogram/raw/types/auth/sent_code.py +118 -0
- pyrogram/raw/types/auth/sent_code_payment_required.py +137 -0
- pyrogram/raw/types/auth/sent_code_success.py +89 -0
- pyrogram/raw/types/auth/sent_code_type_app.py +74 -0
- pyrogram/raw/types/auth/sent_code_type_call.py +74 -0
- pyrogram/raw/types/auth/sent_code_type_email_code.py +114 -0
- pyrogram/raw/types/auth/sent_code_type_firebase_sms.py +121 -0
- pyrogram/raw/types/auth/sent_code_type_flash_call.py +74 -0
- pyrogram/raw/types/auth/sent_code_type_fragment_sms.py +82 -0
- pyrogram/raw/types/auth/sent_code_type_missed_call.py +82 -0
- pyrogram/raw/types/auth/sent_code_type_set_up_email_required.py +80 -0
- pyrogram/raw/types/auth/sent_code_type_sms.py +74 -0
- pyrogram/raw/types/auth/sent_code_type_sms_phrase.py +77 -0
- pyrogram/raw/types/auth/sent_code_type_sms_word.py +77 -0
- pyrogram/raw/types/authorization.py +209 -0
- pyrogram/raw/types/auto_download_settings.py +146 -0
- pyrogram/raw/types/auto_save_exception.py +82 -0
- pyrogram/raw/types/auto_save_settings.py +89 -0
- pyrogram/raw/types/available_effect.py +116 -0
- pyrogram/raw/types/available_reaction.py +156 -0
- pyrogram/raw/types/bad_msg_notification.py +90 -0
- pyrogram/raw/types/bad_server_salt.py +98 -0
- pyrogram/raw/types/bank_card_open_url.py +82 -0
- pyrogram/raw/types/base_theme_arctic.py +69 -0
- pyrogram/raw/types/base_theme_classic.py +69 -0
- pyrogram/raw/types/base_theme_day.py +69 -0
- pyrogram/raw/types/base_theme_night.py +69 -0
- pyrogram/raw/types/base_theme_tinted.py +69 -0
- pyrogram/raw/types/bind_auth_key_inner.py +106 -0
- pyrogram/raw/types/birthday.py +93 -0
- pyrogram/raw/types/boost.py +155 -0
- pyrogram/raw/types/bot_app.py +134 -0
- pyrogram/raw/types/bot_app_not_modified.py +69 -0
- pyrogram/raw/types/bot_app_settings.py +113 -0
- pyrogram/raw/types/bot_business_connection.py +116 -0
- pyrogram/raw/types/bot_command.py +91 -0
- pyrogram/raw/types/bot_command_scope_chat_admins.py +69 -0
- pyrogram/raw/types/bot_command_scope_chats.py +69 -0
- pyrogram/raw/types/bot_command_scope_default.py +69 -0
- pyrogram/raw/types/bot_command_scope_peer.py +74 -0
- pyrogram/raw/types/bot_command_scope_peer_admins.py +74 -0
- pyrogram/raw/types/bot_command_scope_peer_user.py +82 -0
- pyrogram/raw/types/bot_command_scope_users.py +69 -0
- pyrogram/raw/types/bot_info.py +161 -0
- pyrogram/raw/types/bot_inline_media_result.py +130 -0
- pyrogram/raw/types/bot_inline_message_media_auto.py +102 -0
- pyrogram/raw/types/bot_inline_message_media_contact.py +110 -0
- pyrogram/raw/types/bot_inline_message_media_geo.py +113 -0
- pyrogram/raw/types/bot_inline_message_media_invoice.py +132 -0
- pyrogram/raw/types/bot_inline_message_media_venue.py +126 -0
- pyrogram/raw/types/bot_inline_message_media_web_page.py +134 -0
- pyrogram/raw/types/bot_inline_message_rich_message.py +86 -0
- pyrogram/raw/types/bot_inline_message_text.py +108 -0
- pyrogram/raw/types/bot_inline_result.py +139 -0
- pyrogram/raw/types/bot_menu_button.py +91 -0
- pyrogram/raw/types/bot_menu_button_commands.py +78 -0
- pyrogram/raw/types/bot_menu_button_default.py +78 -0
- pyrogram/raw/types/bot_preview_media.py +93 -0
- pyrogram/raw/types/bot_verification.py +90 -0
- pyrogram/raw/types/bot_verifier_settings.py +99 -0
- pyrogram/raw/types/bots/__init__.py +30 -0
- pyrogram/raw/types/bots/access_settings.py +93 -0
- pyrogram/raw/types/bots/bot_info.py +99 -0
- pyrogram/raw/types/bots/exported_bot_token.py +83 -0
- pyrogram/raw/types/bots/popular_app_bots.py +94 -0
- pyrogram/raw/types/bots/preview_info.py +91 -0
- pyrogram/raw/types/bots/requested_button.py +83 -0
- pyrogram/raw/types/business_away_message.py +98 -0
- pyrogram/raw/types/business_away_message_schedule_always.py +69 -0
- pyrogram/raw/types/business_away_message_schedule_custom.py +82 -0
- pyrogram/raw/types/business_away_message_schedule_outside_work_hours.py +69 -0
- pyrogram/raw/types/business_bot_recipients.py +118 -0
- pyrogram/raw/types/business_bot_rights.py +152 -0
- pyrogram/raw/types/business_chat_link.py +121 -0
- pyrogram/raw/types/business_greeting_message.py +90 -0
- pyrogram/raw/types/business_intro.py +94 -0
- pyrogram/raw/types/business_location.py +86 -0
- pyrogram/raw/types/business_recipients.py +108 -0
- pyrogram/raw/types/business_weekly_open.py +82 -0
- pyrogram/raw/types/business_work_hours.py +90 -0
- pyrogram/raw/types/cdn_config.py +83 -0
- pyrogram/raw/types/cdn_public_key.py +82 -0
- pyrogram/raw/types/channel.py +434 -0
- pyrogram/raw/types/channel_admin_log_event.py +98 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_about.py +82 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_available_reactions.py +82 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_emoji_status.py +82 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_emoji_sticker_set.py +82 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_history_ttl.py +82 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_linked_chat.py +82 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_location.py +82 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_peer_color.py +82 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_photo.py +82 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_profile_peer_color.py +82 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_sticker_set.py +82 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_title.py +82 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_username.py +82 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_usernames.py +82 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_wallpaper.py +82 -0
- pyrogram/raw/types/channel_admin_log_event_action_create_topic.py +74 -0
- pyrogram/raw/types/channel_admin_log_event_action_default_banned_rights.py +82 -0
- pyrogram/raw/types/channel_admin_log_event_action_delete_message.py +74 -0
- pyrogram/raw/types/channel_admin_log_event_action_delete_topic.py +74 -0
- pyrogram/raw/types/channel_admin_log_event_action_discard_group_call.py +74 -0
- pyrogram/raw/types/channel_admin_log_event_action_edit_message.py +82 -0
- pyrogram/raw/types/channel_admin_log_event_action_edit_topic.py +82 -0
- pyrogram/raw/types/channel_admin_log_event_action_exported_invite_delete.py +74 -0
- pyrogram/raw/types/channel_admin_log_event_action_exported_invite_edit.py +82 -0
- pyrogram/raw/types/channel_admin_log_event_action_exported_invite_revoke.py +74 -0
- pyrogram/raw/types/channel_admin_log_event_action_participant_edit_rank.py +90 -0
- pyrogram/raw/types/channel_admin_log_event_action_participant_invite.py +74 -0
- pyrogram/raw/types/channel_admin_log_event_action_participant_join.py +69 -0
- pyrogram/raw/types/channel_admin_log_event_action_participant_join_by_invite.py +82 -0
- pyrogram/raw/types/channel_admin_log_event_action_participant_join_by_request.py +82 -0
- pyrogram/raw/types/channel_admin_log_event_action_participant_leave.py +69 -0
- pyrogram/raw/types/channel_admin_log_event_action_participant_mute.py +74 -0
- pyrogram/raw/types/channel_admin_log_event_action_participant_sub_extend.py +82 -0
- pyrogram/raw/types/channel_admin_log_event_action_participant_toggle_admin.py +82 -0
- pyrogram/raw/types/channel_admin_log_event_action_participant_toggle_ban.py +82 -0
- pyrogram/raw/types/channel_admin_log_event_action_participant_unmute.py +74 -0
- pyrogram/raw/types/channel_admin_log_event_action_participant_volume.py +74 -0
- pyrogram/raw/types/channel_admin_log_event_action_pin_topic.py +88 -0
- pyrogram/raw/types/channel_admin_log_event_action_send_message.py +74 -0
- pyrogram/raw/types/channel_admin_log_event_action_start_group_call.py +74 -0
- pyrogram/raw/types/channel_admin_log_event_action_stop_poll.py +74 -0
- pyrogram/raw/types/channel_admin_log_event_action_toggle_anti_spam.py +74 -0
- pyrogram/raw/types/channel_admin_log_event_action_toggle_autotranslation.py +74 -0
- pyrogram/raw/types/channel_admin_log_event_action_toggle_forum.py +74 -0
- pyrogram/raw/types/channel_admin_log_event_action_toggle_group_call_setting.py +74 -0
- pyrogram/raw/types/channel_admin_log_event_action_toggle_invites.py +74 -0
- pyrogram/raw/types/channel_admin_log_event_action_toggle_no_forwards.py +74 -0
- pyrogram/raw/types/channel_admin_log_event_action_toggle_pre_history_hidden.py +74 -0
- pyrogram/raw/types/channel_admin_log_event_action_toggle_signature_profiles.py +74 -0
- pyrogram/raw/types/channel_admin_log_event_action_toggle_signatures.py +74 -0
- pyrogram/raw/types/channel_admin_log_event_action_toggle_slow_mode.py +82 -0
- pyrogram/raw/types/channel_admin_log_event_action_update_pinned.py +74 -0
- pyrogram/raw/types/channel_admin_log_events_filter.py +188 -0
- pyrogram/raw/types/channel_forbidden.py +119 -0
- pyrogram/raw/types/channel_full.py +617 -0
- pyrogram/raw/types/channel_location.py +82 -0
- pyrogram/raw/types/channel_location_empty.py +69 -0
- pyrogram/raw/types/channel_messages_filter.py +82 -0
- pyrogram/raw/types/channel_messages_filter_empty.py +69 -0
- pyrogram/raw/types/channel_participant.py +102 -0
- pyrogram/raw/types/channel_participant_admin.py +130 -0
- pyrogram/raw/types/channel_participant_banned.py +115 -0
- pyrogram/raw/types/channel_participant_creator.py +93 -0
- pyrogram/raw/types/channel_participant_left.py +74 -0
- pyrogram/raw/types/channel_participant_self.py +116 -0
- pyrogram/raw/types/channel_participants_admins.py +69 -0
- pyrogram/raw/types/channel_participants_banned.py +74 -0
- pyrogram/raw/types/channel_participants_bots.py +69 -0
- pyrogram/raw/types/channel_participants_contacts.py +74 -0
- pyrogram/raw/types/channel_participants_kicked.py +74 -0
- pyrogram/raw/types/channel_participants_mentions.py +86 -0
- pyrogram/raw/types/channel_participants_recent.py +69 -0
- pyrogram/raw/types/channel_participants_search.py +74 -0
- pyrogram/raw/types/channels/__init__.py +32 -0
- pyrogram/raw/types/channels/admin_log_results.py +99 -0
- pyrogram/raw/types/channels/channel_participant.py +99 -0
- pyrogram/raw/types/channels/channel_participants.py +107 -0
- pyrogram/raw/types/channels/channel_participants_not_modified.py +78 -0
- pyrogram/raw/types/channels/send_as_peers.py +99 -0
- pyrogram/raw/types/channels/sponsored_message_report_result_ads_hidden.py +78 -0
- pyrogram/raw/types/channels/sponsored_message_report_result_choose_option.py +91 -0
- pyrogram/raw/types/channels/sponsored_message_report_result_reported.py +78 -0
- pyrogram/raw/types/chat.py +182 -0
- pyrogram/raw/types/chat_admin_rights.py +170 -0
- pyrogram/raw/types/chat_admin_with_invites.py +90 -0
- pyrogram/raw/types/chat_banned_rights.py +208 -0
- pyrogram/raw/types/chat_empty.py +74 -0
- pyrogram/raw/types/chat_forbidden.py +82 -0
- pyrogram/raw/types/chat_full.py +242 -0
- pyrogram/raw/types/chat_invite.py +211 -0
- pyrogram/raw/types/chat_invite_already.py +83 -0
- pyrogram/raw/types/chat_invite_exported.py +192 -0
- pyrogram/raw/types/chat_invite_importer.py +114 -0
- pyrogram/raw/types/chat_invite_peek.py +91 -0
- pyrogram/raw/types/chat_invite_public_join_requests.py +78 -0
- pyrogram/raw/types/chat_onlines.py +83 -0
- pyrogram/raw/types/chat_participant.py +101 -0
- pyrogram/raw/types/chat_participant_admin.py +101 -0
- pyrogram/raw/types/chat_participant_creator.py +85 -0
- pyrogram/raw/types/chat_participants.py +90 -0
- pyrogram/raw/types/chat_participants_forbidden.py +86 -0
- pyrogram/raw/types/chat_photo.py +99 -0
- pyrogram/raw/types/chat_photo_empty.py +69 -0
- pyrogram/raw/types/chat_reactions_all.py +74 -0
- pyrogram/raw/types/chat_reactions_none.py +69 -0
- pyrogram/raw/types/chat_reactions_some.py +74 -0
- pyrogram/raw/types/chat_theme.py +74 -0
- pyrogram/raw/types/chat_theme_unique_gift.py +82 -0
- pyrogram/raw/types/chatlists/__init__.py +29 -0
- pyrogram/raw/types/chatlists/chatlist_invite.py +124 -0
- pyrogram/raw/types/chatlists/chatlist_invite_already.py +115 -0
- pyrogram/raw/types/chatlists/chatlist_updates.py +99 -0
- pyrogram/raw/types/chatlists/exported_chatlist_invite.py +91 -0
- pyrogram/raw/types/chatlists/exported_invites.py +99 -0
- pyrogram/raw/types/client_dh_inner_data.py +98 -0
- pyrogram/raw/types/code_settings.py +132 -0
- pyrogram/raw/types/config.py +455 -0
- pyrogram/raw/types/connected_bot.py +119 -0
- pyrogram/raw/types/connected_bot_star_ref.py +131 -0
- pyrogram/raw/types/contact.py +82 -0
- pyrogram/raw/types/contact_birthday.py +82 -0
- pyrogram/raw/types/contact_status.py +91 -0
- pyrogram/raw/types/contacts/__init__.py +37 -0
- pyrogram/raw/types/contacts/blocked.py +99 -0
- pyrogram/raw/types/contacts/blocked_slice.py +107 -0
- pyrogram/raw/types/contacts/contact_birthdays.py +91 -0
- pyrogram/raw/types/contacts/contacts.py +99 -0
- pyrogram/raw/types/contacts/contacts_not_modified.py +78 -0
- pyrogram/raw/types/contacts/found.py +107 -0
- pyrogram/raw/types/contacts/imported_contacts.py +107 -0
- pyrogram/raw/types/contacts/resolved_peer.py +100 -0
- pyrogram/raw/types/contacts/sponsored_peers.py +99 -0
- pyrogram/raw/types/contacts/sponsored_peers_empty.py +78 -0
- pyrogram/raw/types/contacts/top_peers.py +99 -0
- pyrogram/raw/types/contacts/top_peers_disabled.py +78 -0
- pyrogram/raw/types/contacts/top_peers_not_modified.py +78 -0
- pyrogram/raw/types/data_json.py +85 -0
- pyrogram/raw/types/dc_option.py +137 -0
- pyrogram/raw/types/default_history_ttl.py +83 -0
- pyrogram/raw/types/destroy_auth_key_fail.py +78 -0
- pyrogram/raw/types/destroy_auth_key_none.py +78 -0
- pyrogram/raw/types/destroy_auth_key_ok.py +78 -0
- pyrogram/raw/types/destroy_session_none.py +83 -0
- pyrogram/raw/types/destroy_session_ok.py +83 -0
- pyrogram/raw/types/dh_gen_fail.py +99 -0
- pyrogram/raw/types/dh_gen_ok.py +99 -0
- pyrogram/raw/types/dh_gen_retry.py +99 -0
- pyrogram/raw/types/dialog.py +195 -0
- pyrogram/raw/types/dialog_filter.py +180 -0
- pyrogram/raw/types/dialog_filter_chatlist.py +130 -0
- pyrogram/raw/types/dialog_filter_default.py +69 -0
- pyrogram/raw/types/dialog_filter_suggested.py +91 -0
- pyrogram/raw/types/dialog_folder.py +130 -0
- pyrogram/raw/types/dialog_peer.py +83 -0
- pyrogram/raw/types/dialog_peer_folder.py +83 -0
- pyrogram/raw/types/disallowed_gifts_settings.py +98 -0
- pyrogram/raw/types/document.py +164 -0
- pyrogram/raw/types/document_attribute_animated.py +69 -0
- pyrogram/raw/types/document_attribute_audio.py +109 -0
- pyrogram/raw/types/document_attribute_custom_emoji.py +96 -0
- pyrogram/raw/types/document_attribute_filename.py +74 -0
- pyrogram/raw/types/document_attribute_has_stickers.py +69 -0
- pyrogram/raw/types/document_attribute_image_size.py +82 -0
- pyrogram/raw/types/document_attribute_sticker.py +100 -0
- pyrogram/raw/types/document_attribute_video.py +137 -0
- pyrogram/raw/types/document_empty.py +86 -0
- pyrogram/raw/types/draft_message.py +155 -0
- pyrogram/raw/types/draft_message_empty.py +77 -0
- pyrogram/raw/types/email_verification_apple.py +74 -0
- pyrogram/raw/types/email_verification_code.py +74 -0
- pyrogram/raw/types/email_verification_google.py +74 -0
- pyrogram/raw/types/email_verify_purpose_login_change.py +69 -0
- pyrogram/raw/types/email_verify_purpose_login_setup.py +82 -0
- pyrogram/raw/types/email_verify_purpose_passport.py +69 -0
- pyrogram/raw/types/emoji_group.py +90 -0
- pyrogram/raw/types/emoji_group_greeting.py +90 -0
- pyrogram/raw/types/emoji_group_premium.py +82 -0
- pyrogram/raw/types/emoji_keyword.py +82 -0
- pyrogram/raw/types/emoji_keyword_deleted.py +82 -0
- pyrogram/raw/types/emoji_keywords_difference.py +108 -0
- pyrogram/raw/types/emoji_language.py +83 -0
- pyrogram/raw/types/emoji_list.py +95 -0
- pyrogram/raw/types/emoji_list_not_modified.py +82 -0
- pyrogram/raw/types/emoji_status.py +85 -0
- pyrogram/raw/types/emoji_status_collectible.py +149 -0
- pyrogram/raw/types/emoji_status_empty.py +69 -0
- pyrogram/raw/types/emoji_url.py +83 -0
- pyrogram/raw/types/encrypted_chat.py +132 -0
- pyrogram/raw/types/encrypted_chat_discarded.py +92 -0
- pyrogram/raw/types/encrypted_chat_empty.py +84 -0
- pyrogram/raw/types/encrypted_chat_requested.py +135 -0
- pyrogram/raw/types/encrypted_chat_waiting.py +116 -0
- pyrogram/raw/types/encrypted_file.py +115 -0
- pyrogram/raw/types/encrypted_file_empty.py +78 -0
- pyrogram/raw/types/encrypted_message.py +106 -0
- pyrogram/raw/types/encrypted_message_service.py +98 -0
- pyrogram/raw/types/exported_chatlist_invite.py +102 -0
- pyrogram/raw/types/exported_contact_token.py +91 -0
- pyrogram/raw/types/exported_message_link.py +91 -0
- pyrogram/raw/types/exported_story_link.py +83 -0
- pyrogram/raw/types/fact_check.py +110 -0
- pyrogram/raw/types/file_hash.py +101 -0
- pyrogram/raw/types/folder.py +112 -0
- pyrogram/raw/types/folder_peer.py +82 -0
- pyrogram/raw/types/forum_topic.py +235 -0
- pyrogram/raw/types/forum_topic_deleted.py +74 -0
- pyrogram/raw/types/found_story.py +82 -0
- pyrogram/raw/types/fragment/__init__.py +25 -0
- pyrogram/raw/types/fragment/collectible_info.py +123 -0
- pyrogram/raw/types/game.py +126 -0
- pyrogram/raw/types/geo_point.py +101 -0
- pyrogram/raw/types/geo_point_address.py +103 -0
- pyrogram/raw/types/geo_point_empty.py +69 -0
- pyrogram/raw/types/global_privacy_settings.py +133 -0
- pyrogram/raw/types/group_call.py +259 -0
- pyrogram/raw/types/group_call_discarded.py +90 -0
- pyrogram/raw/types/group_call_donor.py +98 -0
- pyrogram/raw/types/group_call_message.py +115 -0
- pyrogram/raw/types/group_call_participant.py +217 -0
- pyrogram/raw/types/group_call_participant_video.py +99 -0
- pyrogram/raw/types/group_call_participant_video_source_group.py +82 -0
- pyrogram/raw/types/group_call_stream_channel.py +90 -0
- pyrogram/raw/types/help/__init__.py +56 -0
- pyrogram/raw/types/help/app_config.py +91 -0
- pyrogram/raw/types/help/app_config_not_modified.py +78 -0
- pyrogram/raw/types/help/app_update.py +144 -0
- pyrogram/raw/types/help/config_simple.py +90 -0
- pyrogram/raw/types/help/countries_list.py +91 -0
- pyrogram/raw/types/help/countries_list_not_modified.py +78 -0
- pyrogram/raw/types/help/country.py +107 -0
- pyrogram/raw/types/help/country_code.py +96 -0
- pyrogram/raw/types/help/deep_link_info.py +101 -0
- pyrogram/raw/types/help/deep_link_info_empty.py +78 -0
- pyrogram/raw/types/help/invite_text.py +83 -0
- pyrogram/raw/types/help/no_app_update.py +78 -0
- pyrogram/raw/types/help/passport_config.py +91 -0
- pyrogram/raw/types/help/passport_config_not_modified.py +78 -0
- pyrogram/raw/types/help/peer_color_option.py +120 -0
- pyrogram/raw/types/help/peer_color_profile_set.py +90 -0
- pyrogram/raw/types/help/peer_color_set.py +74 -0
- pyrogram/raw/types/help/peer_colors.py +92 -0
- pyrogram/raw/types/help/peer_colors_not_modified.py +79 -0
- pyrogram/raw/types/help/premium_promo.py +123 -0
- pyrogram/raw/types/help/promo_data.py +161 -0
- pyrogram/raw/types/help/promo_data_empty.py +83 -0
- pyrogram/raw/types/help/recent_me_urls.py +99 -0
- pyrogram/raw/types/help/support.py +91 -0
- pyrogram/raw/types/help/support_name.py +83 -0
- pyrogram/raw/types/help/terms_of_service.py +107 -0
- pyrogram/raw/types/help/terms_of_service_update.py +91 -0
- pyrogram/raw/types/help/terms_of_service_update_empty.py +83 -0
- pyrogram/raw/types/help/timezones_list.py +91 -0
- pyrogram/raw/types/help/timezones_list_not_modified.py +78 -0
- pyrogram/raw/types/help/user_info.py +108 -0
- pyrogram/raw/types/help/user_info_empty.py +79 -0
- pyrogram/raw/types/high_score.py +90 -0
- pyrogram/raw/types/http_wait.py +90 -0
- pyrogram/raw/types/imported_contact.py +82 -0
- pyrogram/raw/types/inline_bot_switch_pm.py +82 -0
- pyrogram/raw/types/inline_bot_web_view.py +82 -0
- pyrogram/raw/types/inline_query_peer_type_bot_pm.py +69 -0
- pyrogram/raw/types/inline_query_peer_type_broadcast.py +69 -0
- pyrogram/raw/types/inline_query_peer_type_chat.py +69 -0
- pyrogram/raw/types/inline_query_peer_type_megagroup.py +69 -0
- pyrogram/raw/types/inline_query_peer_type_pm.py +69 -0
- pyrogram/raw/types/inline_query_peer_type_same_bot_pm.py +69 -0
- pyrogram/raw/types/input_ai_compose_tone_default.py +74 -0
- pyrogram/raw/types/input_ai_compose_tone_id.py +82 -0
- pyrogram/raw/types/input_ai_compose_tone_slug.py +74 -0
- pyrogram/raw/types/input_app_event.py +98 -0
- pyrogram/raw/types/input_bot_app_id.py +82 -0
- pyrogram/raw/types/input_bot_app_short_name.py +82 -0
- pyrogram/raw/types/input_bot_inline_message_game.py +78 -0
- pyrogram/raw/types/input_bot_inline_message_id.py +99 -0
- pyrogram/raw/types/input_bot_inline_message_id64.py +107 -0
- pyrogram/raw/types/input_bot_inline_message_media_auto.py +102 -0
- pyrogram/raw/types/input_bot_inline_message_media_contact.py +110 -0
- pyrogram/raw/types/input_bot_inline_message_media_geo.py +113 -0
- pyrogram/raw/types/input_bot_inline_message_media_invoice.py +136 -0
- pyrogram/raw/types/input_bot_inline_message_media_venue.py +126 -0
- pyrogram/raw/types/input_bot_inline_message_media_web_page.py +128 -0
- pyrogram/raw/types/input_bot_inline_message_rich_message.py +86 -0
- pyrogram/raw/types/input_bot_inline_message_text.py +108 -0
- pyrogram/raw/types/input_bot_inline_result.py +139 -0
- pyrogram/raw/types/input_bot_inline_result_document.py +118 -0
- pyrogram/raw/types/input_bot_inline_result_game.py +90 -0
- pyrogram/raw/types/input_bot_inline_result_photo.py +98 -0
- pyrogram/raw/types/input_business_away_message.py +98 -0
- pyrogram/raw/types/input_business_bot_recipients.py +118 -0
- pyrogram/raw/types/input_business_chat_link.py +95 -0
- pyrogram/raw/types/input_business_greeting_message.py +90 -0
- pyrogram/raw/types/input_business_intro.py +94 -0
- pyrogram/raw/types/input_business_recipients.py +108 -0
- pyrogram/raw/types/input_channel.py +82 -0
- pyrogram/raw/types/input_channel_empty.py +69 -0
- pyrogram/raw/types/input_channel_from_message.py +90 -0
- pyrogram/raw/types/input_chat_photo.py +74 -0
- pyrogram/raw/types/input_chat_photo_empty.py +69 -0
- pyrogram/raw/types/input_chat_theme.py +74 -0
- pyrogram/raw/types/input_chat_theme_empty.py +69 -0
- pyrogram/raw/types/input_chat_theme_unique_gift.py +74 -0
- pyrogram/raw/types/input_chat_uploaded_photo.py +107 -0
- pyrogram/raw/types/input_chatlist_dialog_filter.py +74 -0
- pyrogram/raw/types/input_check_password_empty.py +69 -0
- pyrogram/raw/types/input_check_password_srp.py +90 -0
- pyrogram/raw/types/input_client_proxy.py +82 -0
- pyrogram/raw/types/input_collectible_phone.py +74 -0
- pyrogram/raw/types/input_collectible_username.py +74 -0
- pyrogram/raw/types/input_dialog_peer.py +74 -0
- pyrogram/raw/types/input_dialog_peer_folder.py +74 -0
- pyrogram/raw/types/input_document.py +90 -0
- pyrogram/raw/types/input_document_empty.py +69 -0
- pyrogram/raw/types/input_document_file_location.py +98 -0
- pyrogram/raw/types/input_emoji_status_collectible.py +85 -0
- pyrogram/raw/types/input_encrypted_chat.py +82 -0
- pyrogram/raw/types/input_encrypted_file.py +82 -0
- pyrogram/raw/types/input_encrypted_file_big_uploaded.py +90 -0
- pyrogram/raw/types/input_encrypted_file_empty.py +69 -0
- pyrogram/raw/types/input_encrypted_file_location.py +82 -0
- pyrogram/raw/types/input_encrypted_file_uploaded.py +98 -0
- pyrogram/raw/types/input_file.py +98 -0
- pyrogram/raw/types/input_file_big.py +90 -0
- pyrogram/raw/types/input_file_location.py +98 -0
- pyrogram/raw/types/input_file_story_document.py +74 -0
- pyrogram/raw/types/input_folder_peer.py +82 -0
- pyrogram/raw/types/input_game_id.py +82 -0
- pyrogram/raw/types/input_game_short_name.py +82 -0
- pyrogram/raw/types/input_geo_point.py +93 -0
- pyrogram/raw/types/input_geo_point_empty.py +69 -0
- pyrogram/raw/types/input_group_call.py +82 -0
- pyrogram/raw/types/input_group_call_invite_message.py +74 -0
- pyrogram/raw/types/input_group_call_slug.py +74 -0
- pyrogram/raw/types/input_group_call_stream.py +110 -0
- pyrogram/raw/types/input_invoice_business_bot_transfer_stars.py +82 -0
- pyrogram/raw/types/input_invoice_chat_invite_subscription.py +74 -0
- pyrogram/raw/types/input_invoice_message.py +82 -0
- pyrogram/raw/types/input_invoice_premium_auth_code.py +74 -0
- pyrogram/raw/types/input_invoice_premium_gift_code.py +82 -0
- pyrogram/raw/types/input_invoice_premium_gift_stars.py +94 -0
- pyrogram/raw/types/input_invoice_slug.py +74 -0
- pyrogram/raw/types/input_invoice_star_gift.py +106 -0
- pyrogram/raw/types/input_invoice_star_gift_auction_bid.py +116 -0
- pyrogram/raw/types/input_invoice_star_gift_drop_original_details.py +74 -0
- pyrogram/raw/types/input_invoice_star_gift_prepaid_upgrade.py +82 -0
- pyrogram/raw/types/input_invoice_star_gift_resale.py +90 -0
- pyrogram/raw/types/input_invoice_star_gift_transfer.py +82 -0
- pyrogram/raw/types/input_invoice_star_gift_upgrade.py +82 -0
- pyrogram/raw/types/input_invoice_stars.py +74 -0
- pyrogram/raw/types/input_keyboard_button_request_peer.py +137 -0
- pyrogram/raw/types/input_keyboard_button_url_auth.py +126 -0
- pyrogram/raw/types/input_keyboard_button_user_profile.py +103 -0
- pyrogram/raw/types/input_media_area_channel_post.py +90 -0
- pyrogram/raw/types/input_media_area_venue.py +90 -0
- pyrogram/raw/types/input_media_contact.py +98 -0
- pyrogram/raw/types/input_media_dice.py +74 -0
- pyrogram/raw/types/input_media_document.py +119 -0
- pyrogram/raw/types/input_media_document_external.py +110 -0
- pyrogram/raw/types/input_media_empty.py +69 -0
- pyrogram/raw/types/input_media_game.py +74 -0
- pyrogram/raw/types/input_media_geo_live.py +109 -0
- pyrogram/raw/types/input_media_geo_point.py +74 -0
- pyrogram/raw/types/input_media_invoice.py +146 -0
- pyrogram/raw/types/input_media_paid_media.py +93 -0
- pyrogram/raw/types/input_media_photo.py +107 -0
- pyrogram/raw/types/input_media_photo_external.py +91 -0
- pyrogram/raw/types/input_media_poll.py +125 -0
- pyrogram/raw/types/input_media_stake_dice.py +90 -0
- pyrogram/raw/types/input_media_story.py +82 -0
- pyrogram/raw/types/input_media_todo.py +74 -0
- pyrogram/raw/types/input_media_uploaded_document.py +158 -0
- pyrogram/raw/types/input_media_uploaded_photo.py +117 -0
- pyrogram/raw/types/input_media_venue.py +114 -0
- pyrogram/raw/types/input_media_web_page.py +94 -0
- pyrogram/raw/types/input_message_callback_query.py +82 -0
- pyrogram/raw/types/input_message_entity_mention_name.py +90 -0
- pyrogram/raw/types/input_message_id.py +74 -0
- pyrogram/raw/types/input_message_pinned.py +69 -0
- pyrogram/raw/types/input_message_read_metric.py +114 -0
- pyrogram/raw/types/input_message_reply_to.py +74 -0
- pyrogram/raw/types/input_messages_filter_chat_photos.py +69 -0
- pyrogram/raw/types/input_messages_filter_contacts.py +69 -0
- pyrogram/raw/types/input_messages_filter_document.py +69 -0
- pyrogram/raw/types/input_messages_filter_empty.py +69 -0
- pyrogram/raw/types/input_messages_filter_geo.py +69 -0
- pyrogram/raw/types/input_messages_filter_gif.py +69 -0
- pyrogram/raw/types/input_messages_filter_music.py +69 -0
- pyrogram/raw/types/input_messages_filter_my_mentions.py +69 -0
- pyrogram/raw/types/input_messages_filter_phone_calls.py +74 -0
- pyrogram/raw/types/input_messages_filter_photo_video.py +69 -0
- pyrogram/raw/types/input_messages_filter_photos.py +69 -0
- pyrogram/raw/types/input_messages_filter_pinned.py +69 -0
- pyrogram/raw/types/input_messages_filter_poll.py +69 -0
- pyrogram/raw/types/input_messages_filter_round_video.py +69 -0
- pyrogram/raw/types/input_messages_filter_round_voice.py +69 -0
- pyrogram/raw/types/input_messages_filter_url.py +69 -0
- pyrogram/raw/types/input_messages_filter_video.py +69 -0
- pyrogram/raw/types/input_messages_filter_voice.py +69 -0
- pyrogram/raw/types/input_notify_broadcasts.py +69 -0
- pyrogram/raw/types/input_notify_chats.py +69 -0
- pyrogram/raw/types/input_notify_forum_topic.py +82 -0
- pyrogram/raw/types/input_notify_peer.py +74 -0
- pyrogram/raw/types/input_notify_users.py +69 -0
- pyrogram/raw/types/input_page_block_map.py +106 -0
- pyrogram/raw/types/input_passkey_credential_firebase_pnv.py +74 -0
- pyrogram/raw/types/input_passkey_credential_public_key.py +90 -0
- pyrogram/raw/types/input_passkey_response_login.py +98 -0
- pyrogram/raw/types/input_passkey_response_register.py +82 -0
- pyrogram/raw/types/input_payment_credentials.py +82 -0
- pyrogram/raw/types/input_payment_credentials_apple_pay.py +74 -0
- pyrogram/raw/types/input_payment_credentials_google_pay.py +74 -0
- pyrogram/raw/types/input_payment_credentials_saved.py +82 -0
- pyrogram/raw/types/input_peer_channel.py +82 -0
- pyrogram/raw/types/input_peer_channel_from_message.py +90 -0
- pyrogram/raw/types/input_peer_chat.py +74 -0
- pyrogram/raw/types/input_peer_color_collectible.py +74 -0
- pyrogram/raw/types/input_peer_empty.py +69 -0
- pyrogram/raw/types/input_peer_notify_settings.py +133 -0
- pyrogram/raw/types/input_peer_photo_file_location.py +90 -0
- pyrogram/raw/types/input_peer_self.py +69 -0
- pyrogram/raw/types/input_peer_user.py +82 -0
- pyrogram/raw/types/input_peer_user_from_message.py +90 -0
- pyrogram/raw/types/input_phone_call.py +82 -0
- pyrogram/raw/types/input_phone_contact.py +110 -0
- pyrogram/raw/types/input_photo.py +90 -0
- pyrogram/raw/types/input_photo_empty.py +69 -0
- pyrogram/raw/types/input_photo_file_location.py +98 -0
- pyrogram/raw/types/input_photo_legacy_file_location.py +114 -0
- pyrogram/raw/types/input_poll_answer.py +86 -0
- pyrogram/raw/types/input_privacy_key_about.py +69 -0
- pyrogram/raw/types/input_privacy_key_added_by_phone.py +69 -0
- pyrogram/raw/types/input_privacy_key_birthday.py +69 -0
- pyrogram/raw/types/input_privacy_key_chat_invite.py +69 -0
- pyrogram/raw/types/input_privacy_key_forwards.py +69 -0
- pyrogram/raw/types/input_privacy_key_no_paid_messages.py +69 -0
- pyrogram/raw/types/input_privacy_key_phone_call.py +69 -0
- pyrogram/raw/types/input_privacy_key_phone_number.py +69 -0
- pyrogram/raw/types/input_privacy_key_phone_p2_p.py +69 -0
- pyrogram/raw/types/input_privacy_key_profile_photo.py +69 -0
- pyrogram/raw/types/input_privacy_key_saved_music.py +69 -0
- pyrogram/raw/types/input_privacy_key_star_gifts_auto_save.py +69 -0
- pyrogram/raw/types/input_privacy_key_status_timestamp.py +69 -0
- pyrogram/raw/types/input_privacy_key_voice_messages.py +69 -0
- pyrogram/raw/types/input_privacy_value_allow_all.py +69 -0
- pyrogram/raw/types/input_privacy_value_allow_bots.py +69 -0
- pyrogram/raw/types/input_privacy_value_allow_chat_participants.py +74 -0
- pyrogram/raw/types/input_privacy_value_allow_close_friends.py +69 -0
- pyrogram/raw/types/input_privacy_value_allow_contacts.py +69 -0
- pyrogram/raw/types/input_privacy_value_allow_premium.py +69 -0
- pyrogram/raw/types/input_privacy_value_allow_users.py +74 -0
- pyrogram/raw/types/input_privacy_value_disallow_all.py +69 -0
- pyrogram/raw/types/input_privacy_value_disallow_bots.py +69 -0
- pyrogram/raw/types/input_privacy_value_disallow_chat_participants.py +74 -0
- pyrogram/raw/types/input_privacy_value_disallow_contacts.py +69 -0
- pyrogram/raw/types/input_privacy_value_disallow_users.py +74 -0
- pyrogram/raw/types/input_quick_reply_shortcut.py +74 -0
- pyrogram/raw/types/input_quick_reply_shortcut_id.py +74 -0
- pyrogram/raw/types/input_reply_to_message.py +151 -0
- pyrogram/raw/types/input_reply_to_mono_forum.py +74 -0
- pyrogram/raw/types/input_reply_to_story.py +82 -0
- pyrogram/raw/types/input_report_reason_child_abuse.py +69 -0
- pyrogram/raw/types/input_report_reason_copyright.py +69 -0
- pyrogram/raw/types/input_report_reason_fake.py +69 -0
- pyrogram/raw/types/input_report_reason_geo_irrelevant.py +69 -0
- pyrogram/raw/types/input_report_reason_illegal_drugs.py +69 -0
- pyrogram/raw/types/input_report_reason_other.py +69 -0
- pyrogram/raw/types/input_report_reason_personal_details.py +69 -0
- pyrogram/raw/types/input_report_reason_pornography.py +69 -0
- pyrogram/raw/types/input_report_reason_spam.py +69 -0
- pyrogram/raw/types/input_report_reason_violence.py +69 -0
- pyrogram/raw/types/input_rich_file_document.py +82 -0
- pyrogram/raw/types/input_rich_file_photo.py +82 -0
- pyrogram/raw/types/input_rich_message.py +118 -0
- pyrogram/raw/types/input_rich_message_html.py +98 -0
- pyrogram/raw/types/input_rich_message_markdown.py +98 -0
- pyrogram/raw/types/input_saved_star_gift_chat.py +82 -0
- pyrogram/raw/types/input_saved_star_gift_slug.py +74 -0
- pyrogram/raw/types/input_saved_star_gift_user.py +74 -0
- pyrogram/raw/types/input_secure_file.py +82 -0
- pyrogram/raw/types/input_secure_file_location.py +82 -0
- pyrogram/raw/types/input_secure_file_uploaded.py +106 -0
- pyrogram/raw/types/input_secure_value.py +146 -0
- pyrogram/raw/types/input_send_message_rich_message_draft_action.py +82 -0
- pyrogram/raw/types/input_single_media.py +102 -0
- pyrogram/raw/types/input_star_gift_auction.py +74 -0
- pyrogram/raw/types/input_star_gift_auction_slug.py +74 -0
- pyrogram/raw/types/input_stars_transaction.py +82 -0
- pyrogram/raw/types/input_sticker_set_animated_emoji.py +69 -0
- pyrogram/raw/types/input_sticker_set_animated_emoji_animations.py +69 -0
- pyrogram/raw/types/input_sticker_set_dice.py +74 -0
- pyrogram/raw/types/input_sticker_set_emoji_channel_default_statuses.py +69 -0
- pyrogram/raw/types/input_sticker_set_emoji_default_statuses.py +69 -0
- pyrogram/raw/types/input_sticker_set_emoji_default_topic_icons.py +69 -0
- pyrogram/raw/types/input_sticker_set_emoji_generic_animations.py +69 -0
- pyrogram/raw/types/input_sticker_set_empty.py +69 -0
- pyrogram/raw/types/input_sticker_set_id.py +82 -0
- pyrogram/raw/types/input_sticker_set_item.py +103 -0
- pyrogram/raw/types/input_sticker_set_premium_gifts.py +69 -0
- pyrogram/raw/types/input_sticker_set_short_name.py +74 -0
- pyrogram/raw/types/input_sticker_set_thumb.py +82 -0
- pyrogram/raw/types/input_sticker_set_ton_gifts.py +69 -0
- pyrogram/raw/types/input_stickered_media_document.py +74 -0
- pyrogram/raw/types/input_stickered_media_photo.py +74 -0
- pyrogram/raw/types/input_store_payment_auth_code.py +114 -0
- pyrogram/raw/types/input_store_payment_gift_premium.py +90 -0
- pyrogram/raw/types/input_store_payment_premium_gift_code.py +112 -0
- pyrogram/raw/types/input_store_payment_premium_giveaway.py +149 -0
- pyrogram/raw/types/input_store_payment_premium_subscription.py +80 -0
- pyrogram/raw/types/input_store_payment_stars_gift.py +98 -0
- pyrogram/raw/types/input_store_payment_stars_giveaway.py +165 -0
- pyrogram/raw/types/input_store_payment_stars_topup.py +102 -0
- pyrogram/raw/types/input_takeout_file_location.py +69 -0
- pyrogram/raw/types/input_theme.py +82 -0
- pyrogram/raw/types/input_theme_settings.py +129 -0
- pyrogram/raw/types/input_theme_slug.py +74 -0
- pyrogram/raw/types/input_user.py +82 -0
- pyrogram/raw/types/input_user_empty.py +69 -0
- pyrogram/raw/types/input_user_from_message.py +90 -0
- pyrogram/raw/types/input_user_self.py +69 -0
- pyrogram/raw/types/input_wall_paper.py +82 -0
- pyrogram/raw/types/input_wall_paper_no_file.py +74 -0
- pyrogram/raw/types/input_wall_paper_slug.py +74 -0
- pyrogram/raw/types/input_web_document.py +98 -0
- pyrogram/raw/types/input_web_file_audio_album_thumb_location.py +102 -0
- pyrogram/raw/types/input_web_file_geo_point_location.py +114 -0
- pyrogram/raw/types/input_web_file_location.py +82 -0
- pyrogram/raw/types/invoice.py +175 -0
- pyrogram/raw/types/ip_port.py +82 -0
- pyrogram/raw/types/ip_port_secret.py +90 -0
- pyrogram/raw/types/join_chat_bot_result_approved.py +69 -0
- pyrogram/raw/types/join_chat_bot_result_declined.py +69 -0
- pyrogram/raw/types/join_chat_bot_result_queued.py +69 -0
- pyrogram/raw/types/join_chat_bot_result_web_view.py +74 -0
- pyrogram/raw/types/json_array.py +74 -0
- pyrogram/raw/types/json_bool.py +74 -0
- pyrogram/raw/types/json_null.py +69 -0
- pyrogram/raw/types/json_number.py +74 -0
- pyrogram/raw/types/json_object.py +74 -0
- pyrogram/raw/types/json_object_value.py +82 -0
- pyrogram/raw/types/json_string.py +74 -0
- pyrogram/raw/types/keyboard_button.py +95 -0
- pyrogram/raw/types/keyboard_button_buy.py +95 -0
- pyrogram/raw/types/keyboard_button_callback.py +109 -0
- pyrogram/raw/types/keyboard_button_copy.py +103 -0
- pyrogram/raw/types/keyboard_button_game.py +95 -0
- pyrogram/raw/types/keyboard_button_request_geo_location.py +95 -0
- pyrogram/raw/types/keyboard_button_request_peer.py +119 -0
- pyrogram/raw/types/keyboard_button_request_phone.py +95 -0
- pyrogram/raw/types/keyboard_button_request_poll.py +104 -0
- pyrogram/raw/types/keyboard_button_row.py +74 -0
- pyrogram/raw/types/keyboard_button_simple_web_view.py +103 -0
- pyrogram/raw/types/keyboard_button_style.py +95 -0
- pyrogram/raw/types/keyboard_button_switch_inline.py +119 -0
- pyrogram/raw/types/keyboard_button_url.py +103 -0
- pyrogram/raw/types/keyboard_button_url_auth.py +120 -0
- pyrogram/raw/types/keyboard_button_user_profile.py +103 -0
- pyrogram/raw/types/keyboard_button_web_view.py +103 -0
- pyrogram/raw/types/labeled_price.py +82 -0
- pyrogram/raw/types/lang_pack_difference.py +108 -0
- pyrogram/raw/types/lang_pack_language.py +161 -0
- pyrogram/raw/types/lang_pack_string.py +91 -0
- pyrogram/raw/types/lang_pack_string_deleted.py +83 -0
- pyrogram/raw/types/lang_pack_string_pluralized.py +138 -0
- pyrogram/raw/types/mask_coords.py +98 -0
- pyrogram/raw/types/media_area_channel_post.py +90 -0
- pyrogram/raw/types/media_area_coordinates.py +117 -0
- pyrogram/raw/types/media_area_geo_point.py +94 -0
- pyrogram/raw/types/media_area_star_gift.py +82 -0
- pyrogram/raw/types/media_area_suggested_reaction.py +96 -0
- pyrogram/raw/types/media_area_url.py +82 -0
- pyrogram/raw/types/media_area_venue.py +122 -0
- pyrogram/raw/types/media_area_weather.py +98 -0
- pyrogram/raw/types/message.py +478 -0
- pyrogram/raw/types/message_action_boost_apply.py +74 -0
- pyrogram/raw/types/message_action_bot_allowed.py +99 -0
- pyrogram/raw/types/message_action_change_creator.py +74 -0
- pyrogram/raw/types/message_action_channel_create.py +74 -0
- pyrogram/raw/types/message_action_channel_migrate_from.py +82 -0
- pyrogram/raw/types/message_action_chat_add_user.py +74 -0
- pyrogram/raw/types/message_action_chat_create.py +82 -0
- pyrogram/raw/types/message_action_chat_delete_photo.py +69 -0
- pyrogram/raw/types/message_action_chat_delete_user.py +74 -0
- pyrogram/raw/types/message_action_chat_edit_photo.py +74 -0
- pyrogram/raw/types/message_action_chat_edit_title.py +74 -0
- pyrogram/raw/types/message_action_chat_joined_by_link.py +74 -0
- pyrogram/raw/types/message_action_chat_joined_by_request.py +69 -0
- pyrogram/raw/types/message_action_chat_migrate_to.py +74 -0
- pyrogram/raw/types/message_action_conference_call.py +113 -0
- pyrogram/raw/types/message_action_contact_sign_up.py +69 -0
- pyrogram/raw/types/message_action_custom_action.py +74 -0
- pyrogram/raw/types/message_action_empty.py +69 -0
- pyrogram/raw/types/message_action_game_score.py +82 -0
- pyrogram/raw/types/message_action_geo_proximity_reached.py +90 -0
- pyrogram/raw/types/message_action_gift_code.py +152 -0
- pyrogram/raw/types/message_action_gift_premium.py +120 -0
- pyrogram/raw/types/message_action_gift_stars.py +119 -0
- pyrogram/raw/types/message_action_gift_ton.py +109 -0
- pyrogram/raw/types/message_action_giveaway_launch.py +77 -0
- pyrogram/raw/types/message_action_giveaway_results.py +90 -0
- pyrogram/raw/types/message_action_group_call.py +85 -0
- pyrogram/raw/types/message_action_group_call_scheduled.py +82 -0
- pyrogram/raw/types/message_action_history_clear.py +69 -0
- pyrogram/raw/types/message_action_invite_to_group_call.py +82 -0
- pyrogram/raw/types/message_action_managed_bot_created.py +74 -0
- pyrogram/raw/types/message_action_new_creator_pending.py +74 -0
- pyrogram/raw/types/message_action_no_forwards_request.py +90 -0
- pyrogram/raw/types/message_action_no_forwards_toggle.py +82 -0
- pyrogram/raw/types/message_action_paid_messages_price.py +82 -0
- pyrogram/raw/types/message_action_paid_messages_refunded.py +82 -0
- pyrogram/raw/types/message_action_payment_refunded.py +109 -0
- pyrogram/raw/types/message_action_payment_sent.py +114 -0
- pyrogram/raw/types/message_action_payment_sent_me.py +140 -0
- pyrogram/raw/types/message_action_phone_call.py +101 -0
- pyrogram/raw/types/message_action_pin_message.py +69 -0
- pyrogram/raw/types/message_action_poll_append_answer.py +74 -0
- pyrogram/raw/types/message_action_poll_delete_answer.py +74 -0
- pyrogram/raw/types/message_action_prize_stars.py +106 -0
- pyrogram/raw/types/message_action_requested_peer.py +82 -0
- pyrogram/raw/types/message_action_requested_peer_sent_me.py +82 -0
- pyrogram/raw/types/message_action_screenshot_taken.py +69 -0
- pyrogram/raw/types/message_action_secure_values_sent.py +74 -0
- pyrogram/raw/types/message_action_secure_values_sent_me.py +82 -0
- pyrogram/raw/types/message_action_set_chat_theme.py +74 -0
- pyrogram/raw/types/message_action_set_chat_wall_paper.py +88 -0
- pyrogram/raw/types/message_action_set_messages_ttl.py +85 -0
- pyrogram/raw/types/message_action_star_gift.py +233 -0
- pyrogram/raw/types/message_action_star_gift_purchase_offer.py +104 -0
- pyrogram/raw/types/message_action_star_gift_purchase_offer_declined.py +90 -0
- pyrogram/raw/types/message_action_star_gift_unique.py +217 -0
- pyrogram/raw/types/message_action_suggest_birthday.py +74 -0
- pyrogram/raw/types/message_action_suggest_profile_photo.py +74 -0
- pyrogram/raw/types/message_action_suggested_post_approval.py +108 -0
- pyrogram/raw/types/message_action_suggested_post_refund.py +74 -0
- pyrogram/raw/types/message_action_suggested_post_success.py +74 -0
- pyrogram/raw/types/message_action_todo_append_tasks.py +74 -0
- pyrogram/raw/types/message_action_todo_completions.py +82 -0
- pyrogram/raw/types/message_action_topic_create.py +99 -0
- pyrogram/raw/types/message_action_topic_edit.py +104 -0
- pyrogram/raw/types/message_action_web_view_data_sent.py +74 -0
- pyrogram/raw/types/message_action_web_view_data_sent_me.py +82 -0
- pyrogram/raw/types/message_empty.py +86 -0
- pyrogram/raw/types/message_entity_bank_card.py +82 -0
- pyrogram/raw/types/message_entity_blockquote.py +90 -0
- pyrogram/raw/types/message_entity_bold.py +82 -0
- pyrogram/raw/types/message_entity_bot_command.py +82 -0
- pyrogram/raw/types/message_entity_cashtag.py +82 -0
- pyrogram/raw/types/message_entity_code.py +82 -0
- pyrogram/raw/types/message_entity_custom_emoji.py +90 -0
- pyrogram/raw/types/message_entity_diff_delete.py +82 -0
- pyrogram/raw/types/message_entity_diff_insert.py +82 -0
- pyrogram/raw/types/message_entity_diff_replace.py +90 -0
- pyrogram/raw/types/message_entity_email.py +82 -0
- pyrogram/raw/types/message_entity_formatted_date.py +128 -0
- pyrogram/raw/types/message_entity_hashtag.py +82 -0
- pyrogram/raw/types/message_entity_italic.py +82 -0
- pyrogram/raw/types/message_entity_mention.py +82 -0
- pyrogram/raw/types/message_entity_mention_name.py +90 -0
- pyrogram/raw/types/message_entity_phone.py +82 -0
- pyrogram/raw/types/message_entity_pre.py +90 -0
- pyrogram/raw/types/message_entity_spoiler.py +82 -0
- pyrogram/raw/types/message_entity_strike.py +82 -0
- pyrogram/raw/types/message_entity_text_url.py +90 -0
- pyrogram/raw/types/message_entity_underline.py +82 -0
- pyrogram/raw/types/message_entity_unknown.py +82 -0
- pyrogram/raw/types/message_entity_url.py +82 -0
- pyrogram/raw/types/message_extended_media.py +74 -0
- pyrogram/raw/types/message_extended_media_preview.py +105 -0
- pyrogram/raw/types/message_fwd_header.py +181 -0
- pyrogram/raw/types/message_media_contact.py +116 -0
- pyrogram/raw/types/message_media_dice.py +104 -0
- pyrogram/raw/types/message_media_document.py +156 -0
- pyrogram/raw/types/message_media_empty.py +79 -0
- pyrogram/raw/types/message_media_game.py +84 -0
- pyrogram/raw/types/message_media_geo.py +84 -0
- pyrogram/raw/types/message_media_geo_live.py +112 -0
- pyrogram/raw/types/message_media_giveaway.py +151 -0
- pyrogram/raw/types/message_media_giveaway_results.py +174 -0
- pyrogram/raw/types/message_media_invoice.py +159 -0
- pyrogram/raw/types/message_media_paid_media.py +92 -0
- pyrogram/raw/types/message_media_photo.py +119 -0
- pyrogram/raw/types/message_media_poll.py +104 -0
- pyrogram/raw/types/message_media_story.py +110 -0
- pyrogram/raw/types/message_media_to_do.py +96 -0
- pyrogram/raw/types/message_media_unsupported.py +79 -0
- pyrogram/raw/types/message_media_venue.py +124 -0
- pyrogram/raw/types/message_media_video_stream.py +92 -0
- pyrogram/raw/types/message_media_web_page.py +110 -0
- pyrogram/raw/types/message_peer_reaction.py +110 -0
- pyrogram/raw/types/message_peer_vote.py +90 -0
- pyrogram/raw/types/message_peer_vote_input_option.py +82 -0
- pyrogram/raw/types/message_peer_vote_multiple.py +90 -0
- pyrogram/raw/types/message_range.py +91 -0
- pyrogram/raw/types/message_reactions.py +114 -0
- pyrogram/raw/types/message_reactor.py +104 -0
- pyrogram/raw/types/message_replies.py +127 -0
- pyrogram/raw/types/message_reply_header.py +186 -0
- pyrogram/raw/types/message_reply_story_header.py +82 -0
- pyrogram/raw/types/message_report_option.py +82 -0
- pyrogram/raw/types/message_service.py +191 -0
- pyrogram/raw/types/message_views.py +96 -0
- pyrogram/raw/types/messages/__init__.py +118 -0
- pyrogram/raw/types/messages/affected_found_messages.py +107 -0
- pyrogram/raw/types/messages/affected_history.py +106 -0
- pyrogram/raw/types/messages/affected_messages.py +94 -0
- pyrogram/raw/types/messages/all_stickers.py +93 -0
- pyrogram/raw/types/messages/all_stickers_not_modified.py +80 -0
- pyrogram/raw/types/messages/archived_stickers.py +91 -0
- pyrogram/raw/types/messages/available_effects.py +99 -0
- pyrogram/raw/types/messages/available_effects_not_modified.py +78 -0
- pyrogram/raw/types/messages/available_reactions.py +91 -0
- pyrogram/raw/types/messages/available_reactions_not_modified.py +78 -0
- pyrogram/raw/types/messages/bot_app.py +103 -0
- pyrogram/raw/types/messages/bot_callback_answer.py +121 -0
- pyrogram/raw/types/messages/bot_prepared_inline_message.py +91 -0
- pyrogram/raw/types/messages/bot_results.py +144 -0
- pyrogram/raw/types/messages/channel_messages.py +157 -0
- pyrogram/raw/types/messages/chat_admins_with_invites.py +91 -0
- pyrogram/raw/types/messages/chat_full.py +100 -0
- pyrogram/raw/types/messages/chat_invite_importers.py +99 -0
- pyrogram/raw/types/messages/chat_invite_join_result_ok.py +84 -0
- pyrogram/raw/types/messages/chat_invite_join_result_web_view.py +100 -0
- pyrogram/raw/types/messages/chats.py +90 -0
- pyrogram/raw/types/messages/chats_slice.py +98 -0
- pyrogram/raw/types/messages/checked_history_import_peer.py +83 -0
- pyrogram/raw/types/messages/composed_message_with_ai.py +95 -0
- pyrogram/raw/types/messages/dh_config.py +107 -0
- pyrogram/raw/types/messages/dh_config_not_modified.py +83 -0
- pyrogram/raw/types/messages/dialog_filters.py +91 -0
- pyrogram/raw/types/messages/dialogs.py +107 -0
- pyrogram/raw/types/messages/dialogs_not_modified.py +83 -0
- pyrogram/raw/types/messages/dialogs_slice.py +115 -0
- pyrogram/raw/types/messages/discussion_message.py +136 -0
- pyrogram/raw/types/messages/emoji_game_dice_info.py +118 -0
- pyrogram/raw/types/messages/emoji_game_outcome.py +90 -0
- pyrogram/raw/types/messages/emoji_game_unavailable.py +78 -0
- pyrogram/raw/types/messages/emoji_groups.py +94 -0
- pyrogram/raw/types/messages/emoji_groups_not_modified.py +81 -0
- pyrogram/raw/types/messages/exported_chat_invite.py +92 -0
- pyrogram/raw/types/messages/exported_chat_invite_replaced.py +100 -0
- pyrogram/raw/types/messages/exported_chat_invites.py +99 -0
- pyrogram/raw/types/messages/faved_stickers.py +99 -0
- pyrogram/raw/types/messages/faved_stickers_not_modified.py +78 -0
- pyrogram/raw/types/messages/featured_stickers.py +117 -0
- pyrogram/raw/types/messages/featured_stickers_not_modified.py +85 -0
- pyrogram/raw/types/messages/forum_topics.py +132 -0
- pyrogram/raw/types/messages/found_sticker_sets.py +92 -0
- pyrogram/raw/types/messages/found_sticker_sets_not_modified.py +79 -0
- pyrogram/raw/types/messages/found_stickers.py +102 -0
- pyrogram/raw/types/messages/found_stickers_not_modified.py +86 -0
- pyrogram/raw/types/messages/high_scores.py +92 -0
- pyrogram/raw/types/messages/history_import.py +83 -0
- pyrogram/raw/types/messages/history_import_parsed.py +98 -0
- pyrogram/raw/types/messages/inactive_chats.py +99 -0
- pyrogram/raw/types/messages/invited_users.py +93 -0
- pyrogram/raw/types/messages/message_edit_data.py +83 -0
- pyrogram/raw/types/messages/message_reactions_list.py +118 -0
- pyrogram/raw/types/messages/message_views.py +99 -0
- pyrogram/raw/types/messages/messages.py +124 -0
- pyrogram/raw/types/messages/messages_not_modified.py +100 -0
- pyrogram/raw/types/messages/messages_slice.py +168 -0
- pyrogram/raw/types/messages/my_stickers.py +91 -0
- pyrogram/raw/types/messages/peer_dialogs.py +116 -0
- pyrogram/raw/types/messages/peer_settings.py +99 -0
- pyrogram/raw/types/messages/prepared_inline_message.py +115 -0
- pyrogram/raw/types/messages/quick_replies.py +107 -0
- pyrogram/raw/types/messages/quick_replies_not_modified.py +78 -0
- pyrogram/raw/types/messages/reactions.py +93 -0
- pyrogram/raw/types/messages/reactions_not_modified.py +80 -0
- pyrogram/raw/types/messages/recent_stickers.py +107 -0
- pyrogram/raw/types/messages/recent_stickers_not_modified.py +78 -0
- pyrogram/raw/types/messages/saved_dialogs.py +109 -0
- pyrogram/raw/types/messages/saved_dialogs_not_modified.py +85 -0
- pyrogram/raw/types/messages/saved_dialogs_slice.py +117 -0
- pyrogram/raw/types/messages/saved_gifs.py +91 -0
- pyrogram/raw/types/messages/saved_gifs_not_modified.py +78 -0
- pyrogram/raw/types/messages/saved_reaction_tags.py +91 -0
- pyrogram/raw/types/messages/saved_reaction_tags_not_modified.py +78 -0
- pyrogram/raw/types/messages/search_counter.py +99 -0
- pyrogram/raw/types/messages/search_results_calendar.py +148 -0
- pyrogram/raw/types/messages/search_results_positions.py +91 -0
- pyrogram/raw/types/messages/sent_encrypted_file.py +93 -0
- pyrogram/raw/types/messages/sent_encrypted_message.py +85 -0
- pyrogram/raw/types/messages/sponsored_messages.py +128 -0
- pyrogram/raw/types/messages/sponsored_messages_empty.py +78 -0
- pyrogram/raw/types/messages/sticker_set.py +115 -0
- pyrogram/raw/types/messages/sticker_set_install_result_archive.py +83 -0
- pyrogram/raw/types/messages/sticker_set_install_result_success.py +78 -0
- pyrogram/raw/types/messages/sticker_set_not_modified.py +86 -0
- pyrogram/raw/types/messages/stickers.py +91 -0
- pyrogram/raw/types/messages/stickers_not_modified.py +78 -0
- pyrogram/raw/types/messages/transcribed_audio.py +117 -0
- pyrogram/raw/types/messages/translate_result.py +83 -0
- pyrogram/raw/types/messages/votes_list.py +118 -0
- pyrogram/raw/types/messages/web_page.py +99 -0
- pyrogram/raw/types/messages/web_page_preview.py +99 -0
- pyrogram/raw/types/missing_invitee.py +88 -0
- pyrogram/raw/types/mono_forum_dialog.py +138 -0
- pyrogram/raw/types/msg_detailed_info.py +98 -0
- pyrogram/raw/types/msg_new_detailed_info.py +90 -0
- pyrogram/raw/types/msg_resend_ans_req.py +74 -0
- pyrogram/raw/types/msg_resend_req.py +74 -0
- pyrogram/raw/types/msgs_ack.py +74 -0
- pyrogram/raw/types/msgs_all_info.py +82 -0
- pyrogram/raw/types/msgs_state_info.py +82 -0
- pyrogram/raw/types/msgs_state_req.py +74 -0
- pyrogram/raw/types/my_boost.py +111 -0
- pyrogram/raw/types/nearest_dc.py +99 -0
- pyrogram/raw/types/new_session_created.py +90 -0
- pyrogram/raw/types/notification_sound_default.py +69 -0
- pyrogram/raw/types/notification_sound_local.py +82 -0
- pyrogram/raw/types/notification_sound_none.py +69 -0
- pyrogram/raw/types/notification_sound_ringtone.py +74 -0
- pyrogram/raw/types/notify_broadcasts.py +69 -0
- pyrogram/raw/types/notify_chats.py +69 -0
- pyrogram/raw/types/notify_forum_topic.py +82 -0
- pyrogram/raw/types/notify_peer.py +74 -0
- pyrogram/raw/types/notify_users.py +69 -0
- pyrogram/raw/types/outbox_read_date.py +83 -0
- pyrogram/raw/types/page.py +127 -0
- pyrogram/raw/types/page_block_anchor.py +74 -0
- pyrogram/raw/types/page_block_audio.py +82 -0
- pyrogram/raw/types/page_block_author_date.py +82 -0
- pyrogram/raw/types/page_block_blockquote.py +82 -0
- pyrogram/raw/types/page_block_blockquote_blocks.py +82 -0
- pyrogram/raw/types/page_block_channel.py +74 -0
- pyrogram/raw/types/page_block_collage.py +82 -0
- pyrogram/raw/types/page_block_cover.py +74 -0
- pyrogram/raw/types/page_block_details.py +90 -0
- pyrogram/raw/types/page_block_divider.py +69 -0
- pyrogram/raw/types/page_block_embed.py +133 -0
- pyrogram/raw/types/page_block_embed_post.py +122 -0
- pyrogram/raw/types/page_block_footer.py +74 -0
- pyrogram/raw/types/page_block_header.py +74 -0
- pyrogram/raw/types/page_block_heading1.py +74 -0
- pyrogram/raw/types/page_block_heading2.py +74 -0
- pyrogram/raw/types/page_block_heading3.py +74 -0
- pyrogram/raw/types/page_block_heading4.py +74 -0
- pyrogram/raw/types/page_block_heading5.py +74 -0
- pyrogram/raw/types/page_block_heading6.py +74 -0
- pyrogram/raw/types/page_block_kicker.py +74 -0
- pyrogram/raw/types/page_block_list.py +74 -0
- pyrogram/raw/types/page_block_map.py +106 -0
- pyrogram/raw/types/page_block_math.py +74 -0
- pyrogram/raw/types/page_block_ordered_list.py +100 -0
- pyrogram/raw/types/page_block_paragraph.py +74 -0
- pyrogram/raw/types/page_block_photo.py +108 -0
- pyrogram/raw/types/page_block_preformatted.py +82 -0
- pyrogram/raw/types/page_block_pullquote.py +82 -0
- pyrogram/raw/types/page_block_related_articles.py +82 -0
- pyrogram/raw/types/page_block_slideshow.py +82 -0
- pyrogram/raw/types/page_block_subheader.py +74 -0
- pyrogram/raw/types/page_block_subtitle.py +74 -0
- pyrogram/raw/types/page_block_table.py +96 -0
- pyrogram/raw/types/page_block_thinking.py +74 -0
- pyrogram/raw/types/page_block_title.py +74 -0
- pyrogram/raw/types/page_block_unsupported.py +69 -0
- pyrogram/raw/types/page_block_video.py +102 -0
- pyrogram/raw/types/page_caption.py +82 -0
- pyrogram/raw/types/page_list_item_blocks.py +88 -0
- pyrogram/raw/types/page_list_item_text.py +88 -0
- pyrogram/raw/types/page_list_ordered_item_blocks.py +115 -0
- pyrogram/raw/types/page_list_ordered_item_text.py +115 -0
- pyrogram/raw/types/page_related_article.py +129 -0
- pyrogram/raw/types/page_table_cell.py +126 -0
- pyrogram/raw/types/page_table_row.py +74 -0
- pyrogram/raw/types/paid_reaction_privacy_anonymous.py +69 -0
- pyrogram/raw/types/paid_reaction_privacy_default.py +69 -0
- pyrogram/raw/types/paid_reaction_privacy_peer.py +74 -0
- pyrogram/raw/types/passkey.py +119 -0
- pyrogram/raw/types/password_kdf_algo_sha256_sha256_pbkdf2_hmacsha512iter100000_sha256_mod_pow.py +98 -0
- pyrogram/raw/types/password_kdf_algo_unknown.py +69 -0
- pyrogram/raw/types/payment_charge.py +82 -0
- pyrogram/raw/types/payment_form_method.py +82 -0
- pyrogram/raw/types/payment_requested_info.py +105 -0
- pyrogram/raw/types/payment_saved_credentials_card.py +82 -0
- pyrogram/raw/types/payments/__init__.py +61 -0
- pyrogram/raw/types/payments/bank_card_data.py +91 -0
- pyrogram/raw/types/payments/check_can_send_gift_result_fail.py +83 -0
- pyrogram/raw/types/payments/check_can_send_gift_result_ok.py +78 -0
- pyrogram/raw/types/payments/checked_gift_code.py +152 -0
- pyrogram/raw/types/payments/connected_star_ref_bots.py +102 -0
- pyrogram/raw/types/payments/exported_invoice.py +83 -0
- pyrogram/raw/types/payments/giveaway_info.py +124 -0
- pyrogram/raw/types/payments/giveaway_info_results.py +140 -0
- pyrogram/raw/types/payments/payment_form.py +212 -0
- pyrogram/raw/types/payments/payment_form_star_gift.py +91 -0
- pyrogram/raw/types/payments/payment_form_stars.py +135 -0
- pyrogram/raw/types/payments/payment_receipt.py +196 -0
- pyrogram/raw/types/payments/payment_receipt_stars.py +159 -0
- pyrogram/raw/types/payments/payment_result.py +84 -0
- pyrogram/raw/types/payments/payment_verification_needed.py +84 -0
- pyrogram/raw/types/payments/resale_star_gifts.py +147 -0
- pyrogram/raw/types/payments/saved_info.py +93 -0
- pyrogram/raw/types/payments/saved_star_gifts.py +129 -0
- pyrogram/raw/types/payments/star_gift_active_auctions.py +99 -0
- pyrogram/raw/types/payments/star_gift_active_auctions_not_modified.py +78 -0
- pyrogram/raw/types/payments/star_gift_auction_acquired_gifts.py +99 -0
- pyrogram/raw/types/payments/star_gift_auction_state.py +123 -0
- pyrogram/raw/types/payments/star_gift_collections.py +83 -0
- pyrogram/raw/types/payments/star_gift_collections_not_modified.py +78 -0
- pyrogram/raw/types/payments/star_gift_upgrade_attributes.py +83 -0
- pyrogram/raw/types/payments/star_gift_upgrade_preview.py +99 -0
- pyrogram/raw/types/payments/star_gift_withdrawal_url.py +83 -0
- pyrogram/raw/types/payments/star_gifts.py +107 -0
- pyrogram/raw/types/payments/star_gifts_not_modified.py +78 -0
- pyrogram/raw/types/payments/stars_revenue_ads_account_url.py +83 -0
- pyrogram/raw/types/payments/stars_revenue_stats.py +111 -0
- pyrogram/raw/types/payments/stars_revenue_withdrawal_url.py +83 -0
- pyrogram/raw/types/payments/stars_status.py +151 -0
- pyrogram/raw/types/payments/suggested_star_ref_bots.py +110 -0
- pyrogram/raw/types/payments/unique_star_gift.py +99 -0
- pyrogram/raw/types/payments/unique_star_gift_value_info.py +192 -0
- pyrogram/raw/types/payments/validated_requested_info.py +96 -0
- pyrogram/raw/types/peer_blocked.py +82 -0
- pyrogram/raw/types/peer_channel.py +83 -0
- pyrogram/raw/types/peer_chat.py +83 -0
- pyrogram/raw/types/peer_color.py +86 -0
- pyrogram/raw/types/peer_color_collectible.py +127 -0
- pyrogram/raw/types/peer_located.py +90 -0
- pyrogram/raw/types/peer_notify_settings.py +182 -0
- pyrogram/raw/types/peer_self_located.py +74 -0
- pyrogram/raw/types/peer_settings.py +224 -0
- pyrogram/raw/types/peer_stories.py +93 -0
- pyrogram/raw/types/peer_user.py +83 -0
- pyrogram/raw/types/pending_suggestion.py +98 -0
- pyrogram/raw/types/phone/__init__.py +32 -0
- pyrogram/raw/types/phone/exported_group_call_invite.py +83 -0
- pyrogram/raw/types/phone/group_call.py +115 -0
- pyrogram/raw/types/phone/group_call_stars.py +107 -0
- pyrogram/raw/types/phone/group_call_stream_channels.py +83 -0
- pyrogram/raw/types/phone/group_call_stream_rtmp_url.py +91 -0
- pyrogram/raw/types/phone/group_participants.py +123 -0
- pyrogram/raw/types/phone/join_as_peers.py +99 -0
- pyrogram/raw/types/phone/phone_call.py +93 -0
- pyrogram/raw/types/phone_call.py +176 -0
- pyrogram/raw/types/phone_call_accepted.py +130 -0
- pyrogram/raw/types/phone_call_discard_reason_busy.py +69 -0
- pyrogram/raw/types/phone_call_discard_reason_disconnect.py +69 -0
- pyrogram/raw/types/phone_call_discard_reason_hangup.py +69 -0
- pyrogram/raw/types/phone_call_discard_reason_migrate_conference_call.py +74 -0
- pyrogram/raw/types/phone_call_discard_reason_missed.py +69 -0
- pyrogram/raw/types/phone_call_discarded.py +113 -0
- pyrogram/raw/types/phone_call_empty.py +74 -0
- pyrogram/raw/types/phone_call_protocol.py +104 -0
- pyrogram/raw/types/phone_call_requested.py +130 -0
- pyrogram/raw/types/phone_call_waiting.py +131 -0
- pyrogram/raw/types/phone_connection.py +114 -0
- pyrogram/raw/types/phone_connection_webrtc.py +128 -0
- pyrogram/raw/types/photo.py +132 -0
- pyrogram/raw/types/photo_cached_size.py +98 -0
- pyrogram/raw/types/photo_empty.py +74 -0
- pyrogram/raw/types/photo_path_size.py +82 -0
- pyrogram/raw/types/photo_size.py +98 -0
- pyrogram/raw/types/photo_size_empty.py +74 -0
- pyrogram/raw/types/photo_size_progressive.py +98 -0
- pyrogram/raw/types/photo_stripped_size.py +82 -0
- pyrogram/raw/types/photos/__init__.py +27 -0
- pyrogram/raw/types/photos/photo.py +93 -0
- pyrogram/raw/types/photos/photos.py +91 -0
- pyrogram/raw/types/photos/photos_slice.py +99 -0
- pyrogram/raw/types/poll.py +188 -0
- pyrogram/raw/types/poll_answer.py +113 -0
- pyrogram/raw/types/poll_answer_voters.py +107 -0
- pyrogram/raw/types/poll_results.py +144 -0
- pyrogram/raw/types/pong.py +92 -0
- pyrogram/raw/types/popular_contact.py +82 -0
- pyrogram/raw/types/post_address.py +114 -0
- pyrogram/raw/types/post_interaction_counters_message.py +98 -0
- pyrogram/raw/types/post_interaction_counters_story.py +98 -0
- pyrogram/raw/types/pq_inner_data.py +114 -0
- pyrogram/raw/types/pq_inner_data_dc.py +122 -0
- pyrogram/raw/types/pq_inner_data_temp.py +122 -0
- pyrogram/raw/types/pq_inner_data_temp_dc.py +130 -0
- pyrogram/raw/types/premium/__init__.py +27 -0
- pyrogram/raw/types/premium/boosts_list.py +111 -0
- pyrogram/raw/types/premium/boosts_status.py +163 -0
- pyrogram/raw/types/premium/my_boosts.py +100 -0
- pyrogram/raw/types/premium_gift_code_option.py +127 -0
- pyrogram/raw/types/premium_subscription_option.py +130 -0
- pyrogram/raw/types/prepaid_giveaway.py +98 -0
- pyrogram/raw/types/prepaid_stars_giveaway.py +106 -0
- pyrogram/raw/types/privacy_key_about.py +69 -0
- pyrogram/raw/types/privacy_key_added_by_phone.py +69 -0
- pyrogram/raw/types/privacy_key_birthday.py +69 -0
- pyrogram/raw/types/privacy_key_chat_invite.py +69 -0
- pyrogram/raw/types/privacy_key_forwards.py +69 -0
- pyrogram/raw/types/privacy_key_no_paid_messages.py +69 -0
- pyrogram/raw/types/privacy_key_phone_call.py +69 -0
- pyrogram/raw/types/privacy_key_phone_number.py +69 -0
- pyrogram/raw/types/privacy_key_phone_p2_p.py +69 -0
- pyrogram/raw/types/privacy_key_profile_photo.py +69 -0
- pyrogram/raw/types/privacy_key_saved_music.py +69 -0
- pyrogram/raw/types/privacy_key_star_gifts_auto_save.py +69 -0
- pyrogram/raw/types/privacy_key_status_timestamp.py +69 -0
- pyrogram/raw/types/privacy_key_voice_messages.py +69 -0
- pyrogram/raw/types/privacy_value_allow_all.py +69 -0
- pyrogram/raw/types/privacy_value_allow_bots.py +69 -0
- pyrogram/raw/types/privacy_value_allow_chat_participants.py +74 -0
- pyrogram/raw/types/privacy_value_allow_close_friends.py +69 -0
- pyrogram/raw/types/privacy_value_allow_contacts.py +69 -0
- pyrogram/raw/types/privacy_value_allow_premium.py +69 -0
- pyrogram/raw/types/privacy_value_allow_users.py +74 -0
- pyrogram/raw/types/privacy_value_disallow_all.py +69 -0
- pyrogram/raw/types/privacy_value_disallow_bots.py +69 -0
- pyrogram/raw/types/privacy_value_disallow_chat_participants.py +74 -0
- pyrogram/raw/types/privacy_value_disallow_contacts.py +69 -0
- pyrogram/raw/types/privacy_value_disallow_users.py +74 -0
- pyrogram/raw/types/profile_tab_files.py +69 -0
- pyrogram/raw/types/profile_tab_gifs.py +69 -0
- pyrogram/raw/types/profile_tab_gifts.py +69 -0
- pyrogram/raw/types/profile_tab_links.py +69 -0
- pyrogram/raw/types/profile_tab_media.py +69 -0
- pyrogram/raw/types/profile_tab_music.py +69 -0
- pyrogram/raw/types/profile_tab_posts.py +69 -0
- pyrogram/raw/types/profile_tab_voice.py +69 -0
- pyrogram/raw/types/public_forward_message.py +74 -0
- pyrogram/raw/types/public_forward_story.py +82 -0
- pyrogram/raw/types/quick_reply.py +98 -0
- pyrogram/raw/types/reaction_count.py +93 -0
- pyrogram/raw/types/reaction_custom_emoji.py +74 -0
- pyrogram/raw/types/reaction_emoji.py +74 -0
- pyrogram/raw/types/reaction_empty.py +69 -0
- pyrogram/raw/types/reaction_notifications_from_all.py +69 -0
- pyrogram/raw/types/reaction_notifications_from_contacts.py +69 -0
- pyrogram/raw/types/reaction_paid.py +69 -0
- pyrogram/raw/types/reactions_notify_settings.py +124 -0
- pyrogram/raw/types/read_participant_date.py +91 -0
- pyrogram/raw/types/received_notify_message.py +91 -0
- pyrogram/raw/types/recent_me_url_chat.py +82 -0
- pyrogram/raw/types/recent_me_url_chat_invite.py +82 -0
- pyrogram/raw/types/recent_me_url_sticker_set.py +82 -0
- pyrogram/raw/types/recent_me_url_unknown.py +74 -0
- pyrogram/raw/types/recent_me_url_user.py +82 -0
- pyrogram/raw/types/recent_story.py +92 -0
- pyrogram/raw/types/reply_inline_markup.py +74 -0
- pyrogram/raw/types/reply_keyboard_force_reply.py +89 -0
- pyrogram/raw/types/reply_keyboard_hide.py +74 -0
- pyrogram/raw/types/reply_keyboard_markup.py +109 -0
- pyrogram/raw/types/report_result_add_comment.py +92 -0
- pyrogram/raw/types/report_result_choose_option.py +92 -0
- pyrogram/raw/types/report_result_reported.py +79 -0
- pyrogram/raw/types/request_peer_type_broadcast.py +103 -0
- pyrogram/raw/types/request_peer_type_chat.py +118 -0
- pyrogram/raw/types/request_peer_type_create_bot.py +92 -0
- pyrogram/raw/types/request_peer_type_user.py +86 -0
- pyrogram/raw/types/requested_peer_channel.py +104 -0
- pyrogram/raw/types/requested_peer_chat.py +95 -0
- pyrogram/raw/types/requested_peer_user.py +113 -0
- pyrogram/raw/types/requirement_to_contact_empty.py +78 -0
- pyrogram/raw/types/requirement_to_contact_paid_messages.py +83 -0
- pyrogram/raw/types/requirement_to_contact_premium.py +78 -0
- pyrogram/raw/types/res_pq.py +108 -0
- pyrogram/raw/types/restriction_reason.py +90 -0
- pyrogram/raw/types/rich_message.py +104 -0
- pyrogram/raw/types/rpc_answer_dropped.py +99 -0
- pyrogram/raw/types/rpc_answer_dropped_running.py +78 -0
- pyrogram/raw/types/rpc_answer_unknown.py +78 -0
- pyrogram/raw/types/rpc_error.py +82 -0
- pyrogram/raw/types/rpc_result.py +82 -0
- pyrogram/raw/types/saved_dialog.py +90 -0
- pyrogram/raw/types/saved_phone_contact.py +107 -0
- pyrogram/raw/types/saved_reaction_tag.py +93 -0
- pyrogram/raw/types/saved_star_gift.py +258 -0
- pyrogram/raw/types/search_posts_flood.py +116 -0
- pyrogram/raw/types/search_result_position.py +90 -0
- pyrogram/raw/types/search_results_calendar_period.py +98 -0
- pyrogram/raw/types/secure_credentials_encrypted.py +90 -0
- pyrogram/raw/types/secure_data.py +90 -0
- pyrogram/raw/types/secure_file.py +122 -0
- pyrogram/raw/types/secure_file_empty.py +69 -0
- pyrogram/raw/types/secure_password_kdf_algo_pbkdf2_hmacsha512iter100000.py +74 -0
- pyrogram/raw/types/secure_password_kdf_algo_sha512.py +74 -0
- pyrogram/raw/types/secure_password_kdf_algo_unknown.py +69 -0
- pyrogram/raw/types/secure_plain_email.py +74 -0
- pyrogram/raw/types/secure_plain_phone.py +74 -0
- pyrogram/raw/types/secure_required_type.py +94 -0
- pyrogram/raw/types/secure_required_type_one_of.py +74 -0
- pyrogram/raw/types/secure_secret_settings.py +90 -0
- pyrogram/raw/types/secure_value.py +165 -0
- pyrogram/raw/types/secure_value_error.py +90 -0
- pyrogram/raw/types/secure_value_error_data.py +98 -0
- pyrogram/raw/types/secure_value_error_file.py +90 -0
- pyrogram/raw/types/secure_value_error_files.py +90 -0
- pyrogram/raw/types/secure_value_error_front_side.py +90 -0
- pyrogram/raw/types/secure_value_error_reverse_side.py +90 -0
- pyrogram/raw/types/secure_value_error_selfie.py +90 -0
- pyrogram/raw/types/secure_value_error_translation_file.py +90 -0
- pyrogram/raw/types/secure_value_error_translation_files.py +90 -0
- pyrogram/raw/types/secure_value_hash.py +82 -0
- pyrogram/raw/types/secure_value_type_address.py +69 -0
- pyrogram/raw/types/secure_value_type_bank_statement.py +69 -0
- pyrogram/raw/types/secure_value_type_driver_license.py +69 -0
- pyrogram/raw/types/secure_value_type_email.py +69 -0
- pyrogram/raw/types/secure_value_type_identity_card.py +69 -0
- pyrogram/raw/types/secure_value_type_internal_passport.py +69 -0
- pyrogram/raw/types/secure_value_type_passport.py +69 -0
- pyrogram/raw/types/secure_value_type_passport_registration.py +69 -0
- pyrogram/raw/types/secure_value_type_personal_details.py +69 -0
- pyrogram/raw/types/secure_value_type_phone.py +69 -0
- pyrogram/raw/types/secure_value_type_rental_agreement.py +69 -0
- pyrogram/raw/types/secure_value_type_temporary_registration.py +69 -0
- pyrogram/raw/types/secure_value_type_utility_bill.py +69 -0
- pyrogram/raw/types/send_as_peer.py +82 -0
- pyrogram/raw/types/send_message_cancel_action.py +69 -0
- pyrogram/raw/types/send_message_choose_contact_action.py +69 -0
- pyrogram/raw/types/send_message_choose_sticker_action.py +69 -0
- pyrogram/raw/types/send_message_emoji_interaction.py +90 -0
- pyrogram/raw/types/send_message_emoji_interaction_seen.py +74 -0
- pyrogram/raw/types/send_message_game_play_action.py +69 -0
- pyrogram/raw/types/send_message_geo_location_action.py +69 -0
- pyrogram/raw/types/send_message_history_import_action.py +74 -0
- pyrogram/raw/types/send_message_record_audio_action.py +69 -0
- pyrogram/raw/types/send_message_record_round_action.py +69 -0
- pyrogram/raw/types/send_message_record_video_action.py +69 -0
- pyrogram/raw/types/send_message_rich_message_draft_action.py +82 -0
- pyrogram/raw/types/send_message_text_draft_action.py +82 -0
- pyrogram/raw/types/send_message_typing_action.py +69 -0
- pyrogram/raw/types/send_message_upload_audio_action.py +74 -0
- pyrogram/raw/types/send_message_upload_document_action.py +74 -0
- pyrogram/raw/types/send_message_upload_photo_action.py +74 -0
- pyrogram/raw/types/send_message_upload_round_action.py +74 -0
- pyrogram/raw/types/send_message_upload_video_action.py +74 -0
- pyrogram/raw/types/server_dh_inner_data.py +114 -0
- pyrogram/raw/types/server_dh_params_fail.py +99 -0
- pyrogram/raw/types/server_dh_params_ok.py +99 -0
- pyrogram/raw/types/shipping_option.py +90 -0
- pyrogram/raw/types/sms_job.py +99 -0
- pyrogram/raw/types/smsjobs/__init__.py +26 -0
- pyrogram/raw/types/smsjobs/eligible_to_join.py +91 -0
- pyrogram/raw/types/smsjobs/status.py +140 -0
- pyrogram/raw/types/speaking_in_group_call_action.py +69 -0
- pyrogram/raw/types/sponsored_message.py +196 -0
- pyrogram/raw/types/sponsored_message_report_option.py +82 -0
- pyrogram/raw/types/sponsored_peer.py +102 -0
- pyrogram/raw/types/star_gift.py +297 -0
- pyrogram/raw/types/star_gift_active_auction_state.py +90 -0
- pyrogram/raw/types/star_gift_attribute_backdrop.py +122 -0
- pyrogram/raw/types/star_gift_attribute_counter.py +82 -0
- pyrogram/raw/types/star_gift_attribute_id_backdrop.py +74 -0
- pyrogram/raw/types/star_gift_attribute_id_model.py +74 -0
- pyrogram/raw/types/star_gift_attribute_id_pattern.py +74 -0
- pyrogram/raw/types/star_gift_attribute_model.py +98 -0
- pyrogram/raw/types/star_gift_attribute_original_details.py +104 -0
- pyrogram/raw/types/star_gift_attribute_pattern.py +90 -0
- pyrogram/raw/types/star_gift_attribute_rarity.py +74 -0
- pyrogram/raw/types/star_gift_attribute_rarity_epic.py +69 -0
- pyrogram/raw/types/star_gift_attribute_rarity_legendary.py +69 -0
- pyrogram/raw/types/star_gift_attribute_rarity_rare.py +69 -0
- pyrogram/raw/types/star_gift_attribute_rarity_uncommon.py +69 -0
- pyrogram/raw/types/star_gift_auction_acquired_gift.py +133 -0
- pyrogram/raw/types/star_gift_auction_round.py +82 -0
- pyrogram/raw/types/star_gift_auction_round_extendable.py +98 -0
- pyrogram/raw/types/star_gift_auction_state.py +162 -0
- pyrogram/raw/types/star_gift_auction_state_finished.py +119 -0
- pyrogram/raw/types/star_gift_auction_state_not_modified.py +69 -0
- pyrogram/raw/types/star_gift_auction_user_state.py +119 -0
- pyrogram/raw/types/star_gift_background.py +90 -0
- pyrogram/raw/types/star_gift_collection.py +120 -0
- pyrogram/raw/types/star_gift_unique.py +294 -0
- pyrogram/raw/types/star_gift_upgrade_price.py +82 -0
- pyrogram/raw/types/star_ref_program.py +121 -0
- pyrogram/raw/types/stars_amount.py +82 -0
- pyrogram/raw/types/stars_gift_option.py +116 -0
- pyrogram/raw/types/stars_giveaway_option.py +138 -0
- pyrogram/raw/types/stars_giveaway_winners_option.py +90 -0
- pyrogram/raw/types/stars_rating.py +101 -0
- pyrogram/raw/types/stars_revenue_status.py +107 -0
- pyrogram/raw/types/stars_subscription.py +161 -0
- pyrogram/raw/types/stars_subscription_pricing.py +82 -0
- pyrogram/raw/types/stars_ton_amount.py +74 -0
- pyrogram/raw/types/stars_topup_option.py +116 -0
- pyrogram/raw/types/stars_transaction.py +360 -0
- pyrogram/raw/types/stars_transaction_peer.py +74 -0
- pyrogram/raw/types/stars_transaction_peer_ads.py +69 -0
- pyrogram/raw/types/stars_transaction_peer_api.py +69 -0
- pyrogram/raw/types/stars_transaction_peer_app_store.py +69 -0
- pyrogram/raw/types/stars_transaction_peer_fragment.py +69 -0
- pyrogram/raw/types/stars_transaction_peer_play_market.py +69 -0
- pyrogram/raw/types/stars_transaction_peer_premium_bot.py +69 -0
- pyrogram/raw/types/stars_transaction_peer_unsupported.py +69 -0
- pyrogram/raw/types/stats/__init__.py +30 -0
- pyrogram/raw/types/stats/broadcast_stats.py +251 -0
- pyrogram/raw/types/stats/megagroup_stats.py +211 -0
- pyrogram/raw/types/stats/message_stats.py +91 -0
- pyrogram/raw/types/stats/poll_stats.py +83 -0
- pyrogram/raw/types/stats/public_forwards.py +119 -0
- pyrogram/raw/types/stats/story_stats.py +91 -0
- pyrogram/raw/types/stats_abs_value_and_prev.py +82 -0
- pyrogram/raw/types/stats_date_range_days.py +82 -0
- pyrogram/raw/types/stats_graph.py +94 -0
- pyrogram/raw/types/stats_graph_async.py +83 -0
- pyrogram/raw/types/stats_graph_error.py +83 -0
- pyrogram/raw/types/stats_group_top_admin.py +98 -0
- pyrogram/raw/types/stats_group_top_inviter.py +82 -0
- pyrogram/raw/types/stats_group_top_poster.py +90 -0
- pyrogram/raw/types/stats_percent_value.py +82 -0
- pyrogram/raw/types/stats_url.py +74 -0
- pyrogram/raw/types/sticker_keyword.py +82 -0
- pyrogram/raw/types/sticker_pack.py +82 -0
- pyrogram/raw/types/sticker_set.py +204 -0
- pyrogram/raw/types/sticker_set_covered.py +91 -0
- pyrogram/raw/types/sticker_set_full_covered.py +107 -0
- pyrogram/raw/types/sticker_set_multi_covered.py +91 -0
- pyrogram/raw/types/sticker_set_no_covered.py +83 -0
- pyrogram/raw/types/stickers/__init__.py +25 -0
- pyrogram/raw/types/stickers/suggested_short_name.py +83 -0
- pyrogram/raw/types/storage/__init__.py +34 -0
- pyrogram/raw/types/storage/file_gif.py +69 -0
- pyrogram/raw/types/storage/file_jpeg.py +69 -0
- pyrogram/raw/types/storage/file_mov.py +69 -0
- pyrogram/raw/types/storage/file_mp3.py +69 -0
- pyrogram/raw/types/storage/file_mp4.py +69 -0
- pyrogram/raw/types/storage/file_partial.py +69 -0
- pyrogram/raw/types/storage/file_pdf.py +69 -0
- pyrogram/raw/types/storage/file_png.py +69 -0
- pyrogram/raw/types/storage/file_unknown.py +69 -0
- pyrogram/raw/types/storage/file_webp.py +69 -0
- pyrogram/raw/types/stories/__init__.py +35 -0
- pyrogram/raw/types/stories/albums.py +91 -0
- pyrogram/raw/types/stories/albums_not_modified.py +78 -0
- pyrogram/raw/types/stories/all_stories.py +131 -0
- pyrogram/raw/types/stories/all_stories_not_modified.py +94 -0
- pyrogram/raw/types/stories/can_send_story_count.py +83 -0
- pyrogram/raw/types/stories/found_stories.py +118 -0
- pyrogram/raw/types/stories/peer_stories.py +99 -0
- pyrogram/raw/types/stories/stories.py +122 -0
- pyrogram/raw/types/stories/story_reactions_list.py +118 -0
- pyrogram/raw/types/stories/story_views.py +91 -0
- pyrogram/raw/types/stories/story_views_list.py +142 -0
- pyrogram/raw/types/stories_stealth_mode.py +86 -0
- pyrogram/raw/types/story_album.py +114 -0
- pyrogram/raw/types/story_fwd_header.py +102 -0
- pyrogram/raw/types/story_item.py +253 -0
- pyrogram/raw/types/story_item_deleted.py +74 -0
- pyrogram/raw/types/story_item_skipped.py +104 -0
- pyrogram/raw/types/story_reaction.py +90 -0
- pyrogram/raw/types/story_reaction_public_forward.py +74 -0
- pyrogram/raw/types/story_reaction_public_repost.py +82 -0
- pyrogram/raw/types/story_view.py +106 -0
- pyrogram/raw/types/story_view_public_forward.py +88 -0
- pyrogram/raw/types/story_view_public_repost.py +96 -0
- pyrogram/raw/types/story_views.py +120 -0
- pyrogram/raw/types/suggested_post.py +99 -0
- pyrogram/raw/types/text_anchor.py +82 -0
- pyrogram/raw/types/text_auto_email.py +74 -0
- pyrogram/raw/types/text_auto_phone.py +74 -0
- pyrogram/raw/types/text_auto_url.py +74 -0
- pyrogram/raw/types/text_bank_card.py +74 -0
- pyrogram/raw/types/text_bold.py +74 -0
- pyrogram/raw/types/text_bot_command.py +74 -0
- pyrogram/raw/types/text_cashtag.py +74 -0
- pyrogram/raw/types/text_concat.py +74 -0
- pyrogram/raw/types/text_custom_emoji.py +82 -0
- pyrogram/raw/types/text_date.py +120 -0
- pyrogram/raw/types/text_email.py +82 -0
- pyrogram/raw/types/text_empty.py +69 -0
- pyrogram/raw/types/text_fixed.py +74 -0
- pyrogram/raw/types/text_hashtag.py +74 -0
- pyrogram/raw/types/text_image.py +90 -0
- pyrogram/raw/types/text_italic.py +74 -0
- pyrogram/raw/types/text_marked.py +74 -0
- pyrogram/raw/types/text_math.py +74 -0
- pyrogram/raw/types/text_mention.py +74 -0
- pyrogram/raw/types/text_mention_name.py +82 -0
- pyrogram/raw/types/text_phone.py +82 -0
- pyrogram/raw/types/text_plain.py +74 -0
- pyrogram/raw/types/text_spoiler.py +74 -0
- pyrogram/raw/types/text_strike.py +74 -0
- pyrogram/raw/types/text_subscript.py +74 -0
- pyrogram/raw/types/text_superscript.py +74 -0
- pyrogram/raw/types/text_underline.py +74 -0
- pyrogram/raw/types/text_url.py +90 -0
- pyrogram/raw/types/text_with_entities.py +91 -0
- pyrogram/raw/types/theme.py +167 -0
- pyrogram/raw/types/theme_settings.py +119 -0
- pyrogram/raw/types/timezone.py +90 -0
- pyrogram/raw/types/todo_completion.py +90 -0
- pyrogram/raw/types/todo_item.py +82 -0
- pyrogram/raw/types/todo_list.py +96 -0
- pyrogram/raw/types/top_peer.py +82 -0
- pyrogram/raw/types/top_peer_category_bots_app.py +69 -0
- pyrogram/raw/types/top_peer_category_bots_guest_chat.py +69 -0
- pyrogram/raw/types/top_peer_category_bots_inline.py +69 -0
- pyrogram/raw/types/top_peer_category_bots_pm.py +69 -0
- pyrogram/raw/types/top_peer_category_channels.py +69 -0
- pyrogram/raw/types/top_peer_category_correspondents.py +69 -0
- pyrogram/raw/types/top_peer_category_forward_chats.py +69 -0
- pyrogram/raw/types/top_peer_category_forward_users.py +69 -0
- pyrogram/raw/types/top_peer_category_groups.py +69 -0
- pyrogram/raw/types/top_peer_category_peers.py +90 -0
- pyrogram/raw/types/top_peer_category_phone_calls.py +69 -0
- pyrogram/raw/types/update_ai_compose_tones.py +69 -0
- pyrogram/raw/types/update_attach_menu_bots.py +69 -0
- pyrogram/raw/types/update_auto_save_settings.py +69 -0
- pyrogram/raw/types/update_bot_business_connect.py +82 -0
- pyrogram/raw/types/update_bot_callback_query.py +126 -0
- pyrogram/raw/types/update_bot_chat_boost.py +90 -0
- pyrogram/raw/types/update_bot_chat_invite_requester.py +125 -0
- pyrogram/raw/types/update_bot_commands.py +90 -0
- pyrogram/raw/types/update_bot_delete_business_message.py +98 -0
- pyrogram/raw/types/update_bot_edit_business_message.py +102 -0
- pyrogram/raw/types/update_bot_guest_chat_query.py +102 -0
- pyrogram/raw/types/update_bot_inline_query.py +120 -0
- pyrogram/raw/types/update_bot_inline_send.py +112 -0
- pyrogram/raw/types/update_bot_menu_button.py +82 -0
- pyrogram/raw/types/update_bot_message_reaction.py +122 -0
- pyrogram/raw/types/update_bot_message_reactions.py +106 -0
- pyrogram/raw/types/update_bot_new_business_message.py +102 -0
- pyrogram/raw/types/update_bot_precheckout_query.py +127 -0
- pyrogram/raw/types/update_bot_purchased_paid_media.py +90 -0
- pyrogram/raw/types/update_bot_shipping_query.py +98 -0
- pyrogram/raw/types/update_bot_stopped.py +98 -0
- pyrogram/raw/types/update_bot_webhook_json.py +74 -0
- pyrogram/raw/types/update_bot_webhook_json_query.py +90 -0
- pyrogram/raw/types/update_business_bot_callback_query.py +127 -0
- pyrogram/raw/types/update_channel.py +74 -0
- pyrogram/raw/types/update_channel_available_messages.py +82 -0
- pyrogram/raw/types/update_channel_message_forwards.py +90 -0
- pyrogram/raw/types/update_channel_message_views.py +90 -0
- pyrogram/raw/types/update_channel_participant.py +144 -0
- pyrogram/raw/types/update_channel_read_messages_contents.py +103 -0
- pyrogram/raw/types/update_channel_too_long.py +85 -0
- pyrogram/raw/types/update_channel_user_typing.py +101 -0
- pyrogram/raw/types/update_channel_view_forum_as_messages.py +82 -0
- pyrogram/raw/types/update_channel_web_page.py +98 -0
- pyrogram/raw/types/update_chat.py +74 -0
- pyrogram/raw/types/update_chat_default_banned_rights.py +90 -0
- pyrogram/raw/types/update_chat_participant.py +138 -0
- pyrogram/raw/types/update_chat_participant_add.py +106 -0
- pyrogram/raw/types/update_chat_participant_admin.py +98 -0
- pyrogram/raw/types/update_chat_participant_delete.py +90 -0
- pyrogram/raw/types/update_chat_participant_rank.py +98 -0
- pyrogram/raw/types/update_chat_participants.py +74 -0
- pyrogram/raw/types/update_chat_user_typing.py +90 -0
- pyrogram/raw/types/update_config.py +69 -0
- pyrogram/raw/types/update_contacts_reset.py +69 -0
- pyrogram/raw/types/update_dc_options.py +74 -0
- pyrogram/raw/types/update_delete_channel_messages.py +98 -0
- pyrogram/raw/types/update_delete_group_call_messages.py +82 -0
- pyrogram/raw/types/update_delete_messages.py +90 -0
- pyrogram/raw/types/update_delete_quick_reply.py +74 -0
- pyrogram/raw/types/update_delete_quick_reply_messages.py +82 -0
- pyrogram/raw/types/update_delete_scheduled_messages.py +94 -0
- pyrogram/raw/types/update_dialog_filter.py +86 -0
- pyrogram/raw/types/update_dialog_filter_order.py +74 -0
- pyrogram/raw/types/update_dialog_filters.py +69 -0
- pyrogram/raw/types/update_dialog_pinned.py +91 -0
- pyrogram/raw/types/update_dialog_unread_mark.py +92 -0
- pyrogram/raw/types/update_draft_message.py +103 -0
- pyrogram/raw/types/update_edit_channel_message.py +90 -0
- pyrogram/raw/types/update_edit_message.py +90 -0
- pyrogram/raw/types/update_emoji_game_info.py +74 -0
- pyrogram/raw/types/update_encrypted_chat_typing.py +74 -0
- pyrogram/raw/types/update_encrypted_messages_read.py +90 -0
- pyrogram/raw/types/update_encryption.py +82 -0
- pyrogram/raw/types/update_faved_stickers.py +69 -0
- pyrogram/raw/types/update_folder_peers.py +90 -0
- pyrogram/raw/types/update_geo_live_viewed.py +82 -0
- pyrogram/raw/types/update_group_call.py +92 -0
- pyrogram/raw/types/update_group_call_chain_blocks.py +98 -0
- pyrogram/raw/types/update_group_call_connection.py +82 -0
- pyrogram/raw/types/update_group_call_encrypted_message.py +90 -0
- pyrogram/raw/types/update_group_call_message.py +82 -0
- pyrogram/raw/types/update_group_call_participants.py +90 -0
- pyrogram/raw/types/update_inline_bot_callback_query.py +118 -0
- pyrogram/raw/types/update_join_chat_web_view_decision.py +90 -0
- pyrogram/raw/types/update_lang_pack.py +74 -0
- pyrogram/raw/types/update_lang_pack_too_long.py +74 -0
- pyrogram/raw/types/update_login_token.py +69 -0
- pyrogram/raw/types/update_managed_bot.py +90 -0
- pyrogram/raw/types/update_message_extended_media.py +90 -0
- pyrogram/raw/types/update_message_id.py +82 -0
- pyrogram/raw/types/update_message_poll.py +122 -0
- pyrogram/raw/types/update_message_poll_vote.py +106 -0
- pyrogram/raw/types/update_message_reactions.py +111 -0
- pyrogram/raw/types/update_mono_forum_no_paid_exception.py +90 -0
- pyrogram/raw/types/update_move_sticker_set_to_top.py +88 -0
- pyrogram/raw/types/update_new_authorization.py +109 -0
- pyrogram/raw/types/update_new_bot_connection.py +109 -0
- pyrogram/raw/types/update_new_channel_message.py +90 -0
- pyrogram/raw/types/update_new_encrypted_message.py +82 -0
- pyrogram/raw/types/update_new_message.py +90 -0
- pyrogram/raw/types/update_new_quick_reply.py +74 -0
- pyrogram/raw/types/update_new_scheduled_message.py +74 -0
- pyrogram/raw/types/update_new_sticker_set.py +74 -0
- pyrogram/raw/types/update_new_story_reaction.py +90 -0
- pyrogram/raw/types/update_notify_settings.py +82 -0
- pyrogram/raw/types/update_paid_reaction_privacy.py +74 -0
- pyrogram/raw/types/update_peer_blocked.py +88 -0
- pyrogram/raw/types/update_peer_history_ttl.py +85 -0
- pyrogram/raw/types/update_peer_located.py +74 -0
- pyrogram/raw/types/update_peer_settings.py +82 -0
- pyrogram/raw/types/update_peer_wallpaper.py +92 -0
- pyrogram/raw/types/update_pending_join_requests.py +90 -0
- pyrogram/raw/types/update_phone_call.py +74 -0
- pyrogram/raw/types/update_phone_call_signaling_data.py +82 -0
- pyrogram/raw/types/update_pinned_channel_messages.py +106 -0
- pyrogram/raw/types/update_pinned_dialogs.py +87 -0
- pyrogram/raw/types/update_pinned_forum_topic.py +90 -0
- pyrogram/raw/types/update_pinned_forum_topics.py +86 -0
- pyrogram/raw/types/update_pinned_messages.py +106 -0
- pyrogram/raw/types/update_pinned_saved_dialogs.py +78 -0
- pyrogram/raw/types/update_privacy.py +82 -0
- pyrogram/raw/types/update_pts_changed.py +69 -0
- pyrogram/raw/types/update_quick_replies.py +74 -0
- pyrogram/raw/types/update_quick_reply_message.py +74 -0
- pyrogram/raw/types/update_read_channel_discussion_inbox.py +110 -0
- pyrogram/raw/types/update_read_channel_discussion_outbox.py +90 -0
- pyrogram/raw/types/update_read_channel_inbox.py +109 -0
- pyrogram/raw/types/update_read_channel_outbox.py +82 -0
- pyrogram/raw/types/update_read_featured_emoji_stickers.py +69 -0
- pyrogram/raw/types/update_read_featured_stickers.py +69 -0
- pyrogram/raw/types/update_read_history_inbox.py +126 -0
- pyrogram/raw/types/update_read_history_outbox.py +98 -0
- pyrogram/raw/types/update_read_messages_contents.py +101 -0
- pyrogram/raw/types/update_read_mono_forum_inbox.py +90 -0
- pyrogram/raw/types/update_read_mono_forum_outbox.py +90 -0
- pyrogram/raw/types/update_read_stories.py +82 -0
- pyrogram/raw/types/update_recent_emoji_statuses.py +69 -0
- pyrogram/raw/types/update_recent_reactions.py +69 -0
- pyrogram/raw/types/update_recent_stickers.py +69 -0
- pyrogram/raw/types/update_saved_dialog_pinned.py +82 -0
- pyrogram/raw/types/update_saved_gifs.py +69 -0
- pyrogram/raw/types/update_saved_reaction_tags.py +69 -0
- pyrogram/raw/types/update_saved_ringtones.py +69 -0
- pyrogram/raw/types/update_sent_phone_code.py +74 -0
- pyrogram/raw/types/update_sent_story_reaction.py +90 -0
- pyrogram/raw/types/update_service_notification.py +121 -0
- pyrogram/raw/types/update_short.py +220 -0
- pyrogram/raw/types/update_short_chat_message.py +334 -0
- pyrogram/raw/types/update_short_message.py +326 -0
- pyrogram/raw/types/update_short_sent_message.py +273 -0
- pyrogram/raw/types/update_sms_job.py +74 -0
- pyrogram/raw/types/update_star_gift_auction_state.py +82 -0
- pyrogram/raw/types/update_star_gift_auction_user_state.py +82 -0
- pyrogram/raw/types/update_star_gift_craft_fail.py +69 -0
- pyrogram/raw/types/update_stars_balance.py +74 -0
- pyrogram/raw/types/update_stars_revenue_status.py +82 -0
- pyrogram/raw/types/update_sticker_sets.py +80 -0
- pyrogram/raw/types/update_sticker_sets_order.py +88 -0
- pyrogram/raw/types/update_stories_stealth_mode.py +74 -0
- pyrogram/raw/types/update_story.py +82 -0
- pyrogram/raw/types/update_story_id.py +82 -0
- pyrogram/raw/types/update_theme.py +74 -0
- pyrogram/raw/types/update_transcribed_audio.py +106 -0
- pyrogram/raw/types/update_user.py +74 -0
- pyrogram/raw/types/update_user_emoji_status.py +82 -0
- pyrogram/raw/types/update_user_name.py +98 -0
- pyrogram/raw/types/update_user_phone.py +82 -0
- pyrogram/raw/types/update_user_status.py +82 -0
- pyrogram/raw/types/update_user_typing.py +93 -0
- pyrogram/raw/types/update_web_browser_exception.py +91 -0
- pyrogram/raw/types/update_web_browser_settings.py +80 -0
- pyrogram/raw/types/update_web_page.py +90 -0
- pyrogram/raw/types/update_web_view_result_sent.py +74 -0
- pyrogram/raw/types/updates/__init__.py +32 -0
- pyrogram/raw/types/updates/channel_difference.py +132 -0
- pyrogram/raw/types/updates/channel_difference_empty.py +100 -0
- pyrogram/raw/types/updates/channel_difference_too_long.py +124 -0
- pyrogram/raw/types/updates/difference.py +123 -0
- pyrogram/raw/types/updates/difference_empty.py +91 -0
- pyrogram/raw/types/updates/difference_slice.py +123 -0
- pyrogram/raw/types/updates/difference_too_long.py +83 -0
- pyrogram/raw/types/updates/state.py +115 -0
- pyrogram/raw/types/updates_combined.py +252 -0
- pyrogram/raw/types/updates_t.py +244 -0
- pyrogram/raw/types/updates_too_long.py +207 -0
- pyrogram/raw/types/upload/__init__.py +29 -0
- pyrogram/raw/types/upload/cdn_file.py +83 -0
- pyrogram/raw/types/upload/cdn_file_reupload_needed.py +83 -0
- pyrogram/raw/types/upload/file.py +99 -0
- pyrogram/raw/types/upload/file_cdn_redirect.py +115 -0
- pyrogram/raw/types/upload/web_file.py +115 -0
- pyrogram/raw/types/url_auth_result_accepted.py +87 -0
- pyrogram/raw/types/url_auth_result_default.py +79 -0
- pyrogram/raw/types/url_auth_result_request.py +182 -0
- pyrogram/raw/types/user.py +456 -0
- pyrogram/raw/types/user_empty.py +91 -0
- pyrogram/raw/types/user_full.py +553 -0
- pyrogram/raw/types/user_profile_photo.py +105 -0
- pyrogram/raw/types/user_profile_photo_empty.py +69 -0
- pyrogram/raw/types/user_status_empty.py +69 -0
- pyrogram/raw/types/user_status_last_month.py +74 -0
- pyrogram/raw/types/user_status_last_week.py +74 -0
- pyrogram/raw/types/user_status_offline.py +74 -0
- pyrogram/raw/types/user_status_online.py +74 -0
- pyrogram/raw/types/user_status_recently.py +74 -0
- pyrogram/raw/types/username.py +88 -0
- pyrogram/raw/types/users/__init__.py +29 -0
- pyrogram/raw/types/users/saved_music.py +92 -0
- pyrogram/raw/types/users/saved_music_not_modified.py +84 -0
- pyrogram/raw/types/users/user_full.py +99 -0
- pyrogram/raw/types/users/users.py +83 -0
- pyrogram/raw/types/users/users_slice.py +91 -0
- pyrogram/raw/types/video_size.py +109 -0
- pyrogram/raw/types/video_size_emoji_markup.py +82 -0
- pyrogram/raw/types/video_size_sticker_markup.py +90 -0
- pyrogram/raw/types/wall_paper.py +145 -0
- pyrogram/raw/types/wall_paper_no_file.py +109 -0
- pyrogram/raw/types/wall_paper_settings.py +143 -0
- pyrogram/raw/types/web_authorization.py +138 -0
- pyrogram/raw/types/web_document.py +106 -0
- pyrogram/raw/types/web_document_no_proxy.py +98 -0
- pyrogram/raw/types/web_domain_exception.py +101 -0
- pyrogram/raw/types/web_page.py +242 -0
- pyrogram/raw/types/web_page_attribute_ai_compose_tone.py +74 -0
- pyrogram/raw/types/web_page_attribute_star_gift_auction.py +82 -0
- pyrogram/raw/types/web_page_attribute_star_gift_collection.py +74 -0
- pyrogram/raw/types/web_page_attribute_sticker_set.py +88 -0
- pyrogram/raw/types/web_page_attribute_story.py +94 -0
- pyrogram/raw/types/web_page_attribute_theme.py +88 -0
- pyrogram/raw/types/web_page_attribute_unique_star_gift.py +74 -0
- pyrogram/raw/types/web_page_empty.py +85 -0
- pyrogram/raw/types/web_page_not_modified.py +77 -0
- pyrogram/raw/types/web_page_pending.py +93 -0
- pyrogram/raw/types/web_view_message_sent.py +87 -0
- pyrogram/raw/types/web_view_result_url.py +115 -0
- pyrogram/session/__init__.py +20 -0
- pyrogram/session/auth.py +306 -0
- pyrogram/session/internals/__init__.py +20 -0
- pyrogram/session/internals/msg_factory.py +65 -0
- pyrogram/session/internals/msg_id.py +37 -0
- pyrogram/session/session.py +576 -0
- pyrogram/storage/__init__.py +20 -0
- pyrogram/storage/sqlite_storage.py +432 -0
- pyrogram/storage/storage.py +248 -0
- pyrogram/sync.py +109 -0
- pyrogram/types/__init__.py +27 -0
- pyrogram/types/authorization/__init__.py +39 -0
- pyrogram/types/authorization/active_session.py +179 -0
- pyrogram/types/authorization/active_sessions.py +56 -0
- pyrogram/types/authorization/firebase_authentication_settings.py +57 -0
- pyrogram/types/authorization/phone_number_authentication_settings.py +89 -0
- pyrogram/types/authorization/sent_code.py +62 -0
- pyrogram/types/authorization/terms_of_service.py +56 -0
- pyrogram/types/bots_and_keyboards/__init__.py +109 -0
- pyrogram/types/bots_and_keyboards/bot_access_settings.py +54 -0
- pyrogram/types/bots_and_keyboards/bot_command.py +53 -0
- pyrogram/types/bots_and_keyboards/bot_command_scope.py +73 -0
- pyrogram/types/bots_and_keyboards/bot_command_scope_all_chat_administrators.py +32 -0
- pyrogram/types/bots_and_keyboards/bot_command_scope_all_group_chats.py +32 -0
- pyrogram/types/bots_and_keyboards/bot_command_scope_all_private_chats.py +32 -0
- pyrogram/types/bots_and_keyboards/bot_command_scope_chat.py +43 -0
- pyrogram/types/bots_and_keyboards/bot_command_scope_chat_administrators.py +43 -0
- pyrogram/types/bots_and_keyboards/bot_command_scope_chat_member.py +48 -0
- pyrogram/types/bots_and_keyboards/bot_command_scope_default.py +33 -0
- pyrogram/types/bots_and_keyboards/callback_game.py +29 -0
- pyrogram/types/bots_and_keyboards/callback_query.py +350 -0
- pyrogram/types/bots_and_keyboards/chat_boost_updated.py +62 -0
- pyrogram/types/bots_and_keyboards/chat_shared.py +97 -0
- pyrogram/types/bots_and_keyboards/force_reply.py +66 -0
- pyrogram/types/bots_and_keyboards/game_high_score.py +70 -0
- pyrogram/types/bots_and_keyboards/inline_keyboard_button.py +321 -0
- pyrogram/types/bots_and_keyboards/inline_keyboard_markup.py +76 -0
- pyrogram/types/bots_and_keyboards/keyboard_button.py +328 -0
- pyrogram/types/bots_and_keyboards/keyboard_button_poll_type.py +36 -0
- pyrogram/types/bots_and_keyboards/keyboard_button_request_chat.py +97 -0
- pyrogram/types/bots_and_keyboards/keyboard_button_request_managed_bot.py +46 -0
- pyrogram/types/bots_and_keyboards/keyboard_button_request_users.py +73 -0
- pyrogram/types/bots_and_keyboards/labeled_price.py +58 -0
- pyrogram/types/bots_and_keyboards/login_url.py +91 -0
- pyrogram/types/bots_and_keyboards/managed_bot_updated.py +62 -0
- pyrogram/types/bots_and_keyboards/menu_button.py +44 -0
- pyrogram/types/bots_and_keyboards/menu_button_commands.py +32 -0
- pyrogram/types/bots_and_keyboards/menu_button_default.py +32 -0
- pyrogram/types/bots_and_keyboards/menu_button_web_app.py +51 -0
- pyrogram/types/bots_and_keyboards/message_reaction_count_updated.py +89 -0
- pyrogram/types/bots_and_keyboards/message_reaction_updated.py +125 -0
- pyrogram/types/bots_and_keyboards/order_info.py +57 -0
- pyrogram/types/bots_and_keyboards/pre_checkout_query.py +137 -0
- pyrogram/types/bots_and_keyboards/purchased_paid_media.py +50 -0
- pyrogram/types/bots_and_keyboards/reply_keyboard_markup.py +112 -0
- pyrogram/types/bots_and_keyboards/reply_keyboard_remove.py +58 -0
- pyrogram/types/bots_and_keyboards/sent_guest_message.py +45 -0
- pyrogram/types/bots_and_keyboards/sent_web_app_message.py +42 -0
- pyrogram/types/bots_and_keyboards/shipping_address.py +82 -0
- pyrogram/types/bots_and_keyboards/shipping_option.py +73 -0
- pyrogram/types/bots_and_keyboards/shipping_query.py +121 -0
- pyrogram/types/bots_and_keyboards/users_shared.py +83 -0
- pyrogram/types/bots_and_keyboards/web_app_info.py +37 -0
- pyrogram/types/inline_mode/__init__.py +47 -0
- pyrogram/types/inline_mode/chosen_inline_result.py +94 -0
- pyrogram/types/inline_mode/inline_query.py +181 -0
- pyrogram/types/inline_mode/inline_query_result.py +63 -0
- pyrogram/types/inline_mode/inline_query_result_animation.py +156 -0
- pyrogram/types/inline_mode/inline_query_result_article.py +99 -0
- pyrogram/types/inline_mode/inline_query_result_audio.py +120 -0
- pyrogram/types/inline_mode/inline_query_result_cached_animation.py +108 -0
- pyrogram/types/inline_mode/inline_query_result_cached_audio.py +101 -0
- pyrogram/types/inline_mode/inline_query_result_cached_document.py +113 -0
- pyrogram/types/inline_mode/inline_query_result_cached_photo.py +111 -0
- pyrogram/types/inline_mode/inline_query_result_cached_sticker.py +78 -0
- pyrogram/types/inline_mode/inline_query_result_cached_video.py +114 -0
- pyrogram/types/inline_mode/inline_query_result_cached_voice.py +108 -0
- pyrogram/types/inline_mode/inline_query_result_contact.py +114 -0
- pyrogram/types/inline_mode/inline_query_result_document.py +145 -0
- pyrogram/types/inline_mode/inline_query_result_location.py +122 -0
- pyrogram/types/inline_mode/inline_query_result_photo.py +147 -0
- pyrogram/types/inline_mode/inline_query_result_venue.py +131 -0
- pyrogram/types/inline_mode/inline_query_result_video.py +151 -0
- pyrogram/types/inline_mode/inline_query_result_voice.py +114 -0
- pyrogram/types/input_content/__init__.py +121 -0
- pyrogram/types/input_content/input_chat_photo.py +113 -0
- pyrogram/types/input_content/input_checklist.py +65 -0
- pyrogram/types/input_content/input_contact_message_content.py +68 -0
- pyrogram/types/input_content/input_credentials.py +38 -0
- pyrogram/types/input_content/input_credentials_apple_pay.py +43 -0
- pyrogram/types/input_content/input_credentials_google_pay.py +43 -0
- pyrogram/types/input_content/input_credentials_new.py +50 -0
- pyrogram/types/input_content/input_credentials_saved.py +59 -0
- pyrogram/types/input_content/input_invoice.py +36 -0
- pyrogram/types/input_content/input_invoice_message.py +51 -0
- pyrogram/types/input_content/input_invoice_message_content.py +176 -0
- pyrogram/types/input_content/input_invoice_name.py +52 -0
- pyrogram/types/input_content/input_location_message_content.py +85 -0
- pyrogram/types/input_content/input_media.py +56 -0
- pyrogram/types/input_content/input_media_animation.py +160 -0
- pyrogram/types/input_content/input_media_audio.py +157 -0
- pyrogram/types/input_content/input_media_document.py +127 -0
- pyrogram/types/input_content/input_media_link.py +52 -0
- pyrogram/types/input_content/input_media_live_photo.py +162 -0
- pyrogram/types/input_content/input_media_location.py +93 -0
- pyrogram/types/input_content/input_media_photo.py +123 -0
- pyrogram/types/input_content/input_media_sticker.py +104 -0
- pyrogram/types/input_content/input_media_venue.py +114 -0
- pyrogram/types/input_content/input_media_video.py +238 -0
- pyrogram/types/input_content/input_message_content.py +41 -0
- pyrogram/types/input_content/input_phone_contact.py +51 -0
- pyrogram/types/input_content/input_poll_media.py +58 -0
- pyrogram/types/input_content/input_poll_option.py +57 -0
- pyrogram/types/input_content/input_poll_option_media.py +57 -0
- pyrogram/types/input_content/input_privacy_rule.py +44 -0
- pyrogram/types/input_content/input_privacy_rule_allow_all.py +33 -0
- pyrogram/types/input_content/input_privacy_rule_allow_bots.py +33 -0
- pyrogram/types/input_content/input_privacy_rule_allow_chats.py +49 -0
- pyrogram/types/input_content/input_privacy_rule_allow_close_friends.py +33 -0
- pyrogram/types/input_content/input_privacy_rule_allow_contacts.py +33 -0
- pyrogram/types/input_content/input_privacy_rule_allow_premium.py +33 -0
- pyrogram/types/input_content/input_privacy_rule_allow_users.py +47 -0
- pyrogram/types/input_content/input_privacy_rule_disallow_all.py +33 -0
- pyrogram/types/input_content/input_privacy_rule_disallow_bots.py +33 -0
- pyrogram/types/input_content/input_privacy_rule_disallow_chats.py +49 -0
- pyrogram/types/input_content/input_privacy_rule_disallow_contacts.py +33 -0
- pyrogram/types/input_content/input_privacy_rule_disallow_users.py +47 -0
- pyrogram/types/input_content/input_rich_message.py +76 -0
- pyrogram/types/input_content/input_rich_message_content.py +50 -0
- pyrogram/types/input_content/input_text_message_content.py +97 -0
- pyrogram/types/input_content/input_venue_message_content.py +88 -0
- pyrogram/types/list.py +30 -0
- pyrogram/types/messages_and_media/__init__.py +411 -0
- pyrogram/types/messages_and_media/animation.py +191 -0
- pyrogram/types/messages_and_media/auction_bid.py +53 -0
- pyrogram/types/messages_and_media/auction_round.py +70 -0
- pyrogram/types/messages_and_media/auction_state.py +172 -0
- pyrogram/types/messages_and_media/audio.py +121 -0
- pyrogram/types/messages_and_media/available_effect.py +88 -0
- pyrogram/types/messages_and_media/boosts_status.py +89 -0
- pyrogram/types/messages_and_media/business_message.py +106 -0
- pyrogram/types/messages_and_media/chat_background.py +167 -0
- pyrogram/types/messages_and_media/chat_boost.py +108 -0
- pyrogram/types/messages_and_media/chat_has_protected_content_disable_requested.py +45 -0
- pyrogram/types/messages_and_media/chat_has_protected_content_toggled.py +64 -0
- pyrogram/types/messages_and_media/chat_owner_changed.py +49 -0
- pyrogram/types/messages_and_media/chat_owner_left.py +49 -0
- pyrogram/types/messages_and_media/chat_theme.py +51 -0
- pyrogram/types/messages_and_media/checked_gift_code.py +98 -0
- pyrogram/types/messages_and_media/checklist.py +111 -0
- pyrogram/types/messages_and_media/checklist_task.py +88 -0
- pyrogram/types/messages_and_media/checklist_tasks_added.py +63 -0
- pyrogram/types/messages_and_media/checklist_tasks_done.py +63 -0
- pyrogram/types/messages_and_media/contact.py +71 -0
- pyrogram/types/messages_and_media/contact_registered.py +29 -0
- pyrogram/types/messages_and_media/craft_gift_result.py +58 -0
- pyrogram/types/messages_and_media/dice.py +47 -0
- pyrogram/types/messages_and_media/direct_message_price_changed.py +56 -0
- pyrogram/types/messages_and_media/direct_messages_topic.py +105 -0
- pyrogram/types/messages_and_media/document.py +98 -0
- pyrogram/types/messages_and_media/external_reply_info.py +334 -0
- pyrogram/types/messages_and_media/fact_check.py +72 -0
- pyrogram/types/messages_and_media/formatted_text.py +80 -0
- pyrogram/types/messages_and_media/forum_topic.py +161 -0
- pyrogram/types/messages_and_media/forum_topic_closed.py +29 -0
- pyrogram/types/messages_and_media/forum_topic_created.py +64 -0
- pyrogram/types/messages_and_media/forum_topic_edited.py +70 -0
- pyrogram/types/messages_and_media/forum_topic_reopened.py +29 -0
- pyrogram/types/messages_and_media/game.py +98 -0
- pyrogram/types/messages_and_media/general_forum_topic_hidden.py +29 -0
- pyrogram/types/messages_and_media/general_forum_topic_unhidden.py +29 -0
- pyrogram/types/messages_and_media/gift.py +1044 -0
- pyrogram/types/messages_and_media/gift_attribute.py +175 -0
- pyrogram/types/messages_and_media/gift_auction.py +55 -0
- pyrogram/types/messages_and_media/gift_auction_state.py +69 -0
- pyrogram/types/messages_and_media/gift_collection.py +73 -0
- pyrogram/types/messages_and_media/gift_purchase_limit.py +52 -0
- pyrogram/types/messages_and_media/gift_resale_parameters.py +69 -0
- pyrogram/types/messages_and_media/gift_resale_price.py +83 -0
- pyrogram/types/messages_and_media/gift_upgrade_preview.py +84 -0
- pyrogram/types/messages_and_media/gift_upgrade_price.py +53 -0
- pyrogram/types/messages_and_media/gift_upgrade_variants.py +72 -0
- pyrogram/types/messages_and_media/gifted_premium.py +135 -0
- pyrogram/types/messages_and_media/gifted_stars.py +120 -0
- pyrogram/types/messages_and_media/gifted_ton.py +96 -0
- pyrogram/types/messages_and_media/giveaway.py +106 -0
- pyrogram/types/messages_and_media/giveaway_completed.py +95 -0
- pyrogram/types/messages_and_media/giveaway_created.py +57 -0
- pyrogram/types/messages_and_media/giveaway_prize_stars.py +119 -0
- pyrogram/types/messages_and_media/giveaway_winners.py +150 -0
- pyrogram/types/messages_and_media/input_checklist_task.py +72 -0
- pyrogram/types/messages_and_media/invoice.py +162 -0
- pyrogram/types/messages_and_media/link_preview_options.py +87 -0
- pyrogram/types/messages_and_media/live_photo.py +102 -0
- pyrogram/types/messages_and_media/location.py +131 -0
- pyrogram/types/messages_and_media/managed_bot_created.py +56 -0
- pyrogram/types/messages_and_media/mask_position.py +70 -0
- pyrogram/types/messages_and_media/media_area.py +287 -0
- pyrogram/types/messages_and_media/message.py +9572 -0
- pyrogram/types/messages_and_media/message_content.py +306 -0
- pyrogram/types/messages_and_media/message_entity.py +205 -0
- pyrogram/types/messages_and_media/message_origin.py +94 -0
- pyrogram/types/messages_and_media/message_origin_channel.py +61 -0
- pyrogram/types/messages_and_media/message_origin_chat.py +56 -0
- pyrogram/types/messages_and_media/message_origin_hidden_user.py +51 -0
- pyrogram/types/messages_and_media/message_origin_import.py +50 -0
- pyrogram/types/messages_and_media/message_origin_user.py +51 -0
- pyrogram/types/messages_and_media/message_reactions.py +90 -0
- pyrogram/types/messages_and_media/my_boost.py +79 -0
- pyrogram/types/messages_and_media/paid_media_info.py +93 -0
- pyrogram/types/messages_and_media/paid_media_preview.py +55 -0
- pyrogram/types/messages_and_media/paid_messages_price_changed.py +48 -0
- pyrogram/types/messages_and_media/paid_messages_refunded.py +54 -0
- pyrogram/types/messages_and_media/paid_reactor.py +86 -0
- pyrogram/types/messages_and_media/payment_form.py +169 -0
- pyrogram/types/messages_and_media/payment_option.py +50 -0
- pyrogram/types/messages_and_media/payment_result.py +66 -0
- pyrogram/types/messages_and_media/photo.py +130 -0
- pyrogram/types/messages_and_media/poll.py +372 -0
- pyrogram/types/messages_and_media/poll_option.py +91 -0
- pyrogram/types/messages_and_media/poll_option_added.py +69 -0
- pyrogram/types/messages_and_media/poll_option_deleted.py +69 -0
- pyrogram/types/messages_and_media/premium_gift_code.py +141 -0
- pyrogram/types/messages_and_media/proximity_alert_triggered.py +65 -0
- pyrogram/types/messages_and_media/reaction.py +97 -0
- pyrogram/types/messages_and_media/refunded_payment.py +81 -0
- pyrogram/types/messages_and_media/reply_parameters.py +88 -0
- pyrogram/types/messages_and_media/restriction_reason.py +62 -0
- pyrogram/types/messages_and_media/rich_block.py +999 -0
- pyrogram/types/messages_and_media/rich_message.py +71 -0
- pyrogram/types/messages_and_media/rich_text.py +692 -0
- pyrogram/types/messages_and_media/saved_credentials.py +50 -0
- pyrogram/types/messages_and_media/screenshot_taken.py +29 -0
- pyrogram/types/messages_and_media/star_amount.py +54 -0
- pyrogram/types/messages_and_media/sticker.py +287 -0
- pyrogram/types/messages_and_media/story.py +2183 -0
- pyrogram/types/messages_and_media/story_view.py +75 -0
- pyrogram/types/messages_and_media/stripped_thumbnail.py +47 -0
- pyrogram/types/messages_and_media/successful_payment.py +141 -0
- pyrogram/types/messages_and_media/suggested_post_approval_failed.py +88 -0
- pyrogram/types/messages_and_media/suggested_post_approved.py +93 -0
- pyrogram/types/messages_and_media/suggested_post_declined.py +86 -0
- pyrogram/types/messages_and_media/suggested_post_info.py +73 -0
- pyrogram/types/messages_and_media/suggested_post_paid.py +101 -0
- pyrogram/types/messages_and_media/suggested_post_parameters.py +53 -0
- pyrogram/types/messages_and_media/suggested_post_price.py +106 -0
- pyrogram/types/messages_and_media/suggested_post_refunded.py +92 -0
- pyrogram/types/messages_and_media/text_quote.py +83 -0
- pyrogram/types/messages_and_media/thumbnail.py +111 -0
- pyrogram/types/messages_and_media/upgraded_gift_attribute_id.py +58 -0
- pyrogram/types/messages_and_media/upgraded_gift_attribute_id_backdrop.py +41 -0
- pyrogram/types/messages_and_media/upgraded_gift_attribute_id_model.py +41 -0
- pyrogram/types/messages_and_media/upgraded_gift_attribute_id_symbol.py +41 -0
- pyrogram/types/messages_and_media/upgraded_gift_attribute_rarity.py +131 -0
- pyrogram/types/messages_and_media/upgraded_gift_original_details.py +74 -0
- pyrogram/types/messages_and_media/upgraded_gift_purchase_offer.py +138 -0
- pyrogram/types/messages_and_media/upgraded_gift_value_info.py +124 -0
- pyrogram/types/messages_and_media/venue.py +76 -0
- pyrogram/types/messages_and_media/video.py +174 -0
- pyrogram/types/messages_and_media/video_note.py +115 -0
- pyrogram/types/messages_and_media/voice.py +102 -0
- pyrogram/types/messages_and_media/web_app_data.py +53 -0
- pyrogram/types/messages_and_media/web_page.py +262 -0
- pyrogram/types/messages_and_media/write_access_allowed.py +57 -0
- pyrogram/types/object.py +127 -0
- pyrogram/types/update.py +27 -0
- pyrogram/types/user_and_chats/__init__.py +124 -0
- pyrogram/types/user_and_chats/accepted_gift_types.py +85 -0
- pyrogram/types/user_and_chats/birthday.py +69 -0
- pyrogram/types/user_and_chats/bot_verification.py +63 -0
- pyrogram/types/user_and_chats/business_bot_rights.py +125 -0
- pyrogram/types/user_and_chats/business_connection.py +85 -0
- pyrogram/types/user_and_chats/business_intro.py +74 -0
- pyrogram/types/user_and_chats/business_recipients.py +78 -0
- pyrogram/types/user_and_chats/business_weekly_open.py +49 -0
- pyrogram/types/user_and_chats/business_working_hours.py +62 -0
- pyrogram/types/user_and_chats/chat.py +1972 -0
- pyrogram/types/user_and_chats/chat_admin_with_invite_links.py +63 -0
- pyrogram/types/user_and_chats/chat_administrator_rights.py +160 -0
- pyrogram/types/user_and_chats/chat_color.py +64 -0
- pyrogram/types/user_and_chats/chat_event.py +536 -0
- pyrogram/types/user_and_chats/chat_event_filter.py +175 -0
- pyrogram/types/user_and_chats/chat_folder_invite_link_info.py +96 -0
- pyrogram/types/user_and_chats/chat_invite_link.py +130 -0
- pyrogram/types/user_and_chats/chat_join_request.py +146 -0
- pyrogram/types/user_and_chats/chat_join_result.py +117 -0
- pyrogram/types/user_and_chats/chat_joiner.py +82 -0
- pyrogram/types/user_and_chats/chat_member.py +247 -0
- pyrogram/types/user_and_chats/chat_member_updated.py +112 -0
- pyrogram/types/user_and_chats/chat_permissions.py +213 -0
- pyrogram/types/user_and_chats/chat_photo.py +125 -0
- pyrogram/types/user_and_chats/chat_reactions.py +69 -0
- pyrogram/types/user_and_chats/chat_settings.py +174 -0
- pyrogram/types/user_and_chats/dialog.py +121 -0
- pyrogram/types/user_and_chats/emoji_status.py +127 -0
- pyrogram/types/user_and_chats/failed_to_add_member.py +55 -0
- pyrogram/types/user_and_chats/folder.py +507 -0
- pyrogram/types/user_and_chats/folder_invite_link.py +57 -0
- pyrogram/types/user_and_chats/found_contacts.py +74 -0
- pyrogram/types/user_and_chats/global_privacy_settings.py +115 -0
- pyrogram/types/user_and_chats/group_call_member.py +149 -0
- pyrogram/types/user_and_chats/history_cleared.py +29 -0
- pyrogram/types/user_and_chats/invite_link_importer.py +61 -0
- pyrogram/types/user_and_chats/phone_call_ended.py +63 -0
- pyrogram/types/user_and_chats/phone_call_started.py +49 -0
- pyrogram/types/user_and_chats/privacy_rule.py +58 -0
- pyrogram/types/user_and_chats/restriction.py +50 -0
- pyrogram/types/user_and_chats/stories_stealth_mode.py +47 -0
- pyrogram/types/user_and_chats/user.py +960 -0
- pyrogram/types/user_and_chats/user_rating.py +72 -0
- pyrogram/types/user_and_chats/username.py +50 -0
- pyrogram/types/user_and_chats/verification_status.py +75 -0
- pyrogram/types/user_and_chats/video_chat_ended.py +41 -0
- pyrogram/types/user_and_chats/video_chat_members_invited.py +50 -0
- pyrogram/types/user_and_chats/video_chat_scheduled.py +43 -0
- pyrogram/types/user_and_chats/video_chat_started.py +29 -0
- pyrogram/utils.py +783 -0
- xn_pyrogram-2.2.23.dist-info/METADATA +159 -0
- xn_pyrogram-2.2.23.dist-info/RECORD +4024 -0
- xn_pyrogram-2.2.23.dist-info/WHEEL +4 -0
- xn_pyrogram-2.2.23.dist-info/licenses/COPYING +674 -0
- xn_pyrogram-2.2.23.dist-info/licenses/COPYING.lesser +165 -0
|
@@ -0,0 +1,4024 @@
|
|
|
1
|
+
pyrogram/__init__.py,sha256=4DuyobOUwKgbRT_mU2x00tRIMYJgeUpPtcU3MGJdq-s,1259
|
|
2
|
+
pyrogram/client.py,sha256=Qc0_ZlHqlWMYAW3hx7IaBk5OWfsMur6UPXbZnZ_G20E,61831
|
|
3
|
+
pyrogram/dispatcher.py,sha256=w1-O9OJ0tY-A02daTcGBDyMFBlU-49hbg-MG-6SQJao,20030
|
|
4
|
+
pyrogram/file_id.py,sha256=EnbVEuEuaMft2XLNvDxW9iMCUhhJPybMcvN7pQ5btvg,15421
|
|
5
|
+
pyrogram/filters.py,sha256=P0VyuPT-vYTnpSkI6jIkjBZED1kSJXvsfG2aHQ3UbAM,33526
|
|
6
|
+
pyrogram/mime_types.py,sha256=JbYF6B-JrxZQNga8dPz2C8Dwp8-2pOrE1uv3KIBbjA0,61915
|
|
7
|
+
pyrogram/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
+
pyrogram/qrlogin.py,sha256=5jMcnQkK2VW25-h_z4LDihQv1_-e5JKvh35uU6eUVrg,3906
|
|
9
|
+
pyrogram/sync.py,sha256=GV4cgtABQ1bOplXZ-jQ3qLDSd9GCC7sFfCxMjcppHIM,3611
|
|
10
|
+
pyrogram/utils.py,sha256=bUzeXK8kcDKvcpwKOgvXQn78CouAiAC7a7ySjmyyt1k,26259
|
|
11
|
+
pyrogram/connection/__init__.py,sha256=q7KiWEV6VNDQGoj5s13GPyhRRlafXVPvX1h1VpAsVf8,854
|
|
12
|
+
pyrogram/connection/connection.py,sha256=FN3JKr6wxqhk81kRvBhJxPUnz2h0C7ZHMiI3Zc_sok8,3236
|
|
13
|
+
pyrogram/connection/transport/__init__.py,sha256=nRpFdumPinBtuLOZkR8hH_vXlN7ChzW1oyJ6na4a8qw,838
|
|
14
|
+
pyrogram/connection/transport/tcp/__init__.py,sha256=6sFklTq6LnO4okTYFX6aDRcQ04GseJApxroEY3zJgpE,1051
|
|
15
|
+
pyrogram/connection/transport/tcp/tcp.py,sha256=mjgLEia1bVDqEKLJCW8250gslufyitBGHaZolMYa1eg,8770
|
|
16
|
+
pyrogram/connection/transport/tcp/tcp_abridged.py,sha256=9F0ouHg63ze-UOxHKPY3SZawu14wgWvXZ59lNX2Zlbk,2135
|
|
17
|
+
pyrogram/connection/transport/tcp/tcp_abridged_o.py,sha256=_vOZUwOPn3XwpqCK-oUXhwo9xufM1HdH1j_URUIjeZE,3308
|
|
18
|
+
pyrogram/connection/transport/tcp/tcp_full.py,sha256=4Xhsg6vSrgh48qE3JA_jHj6E4KlQa7huHu9sW8svEC4,2263
|
|
19
|
+
pyrogram/connection/transport/tcp/tcp_intermediate.py,sha256=8lCAX7-LRRn2KZREsxE5zJP3qE335WqL0tNw5iCx6kk,1866
|
|
20
|
+
pyrogram/connection/transport/tcp/tcp_intermediate_o.py,sha256=G27m3so-LlB16W0tAjKNWGPCrjpmGeVNvBmr0NWdMSQ,2805
|
|
21
|
+
pyrogram/crypto/__init__.py,sha256=zIKDctQwf1s97ZK7RwwCKOTR05C1JVR2ACY2-GbZlZk,818
|
|
22
|
+
pyrogram/crypto/aes.py,sha256=AS5me5W2ksoJ1i13JBcoMaO4MlpVxt04y5PCZRrT8W4,4013
|
|
23
|
+
pyrogram/crypto/mtproto.py,sha256=qwoXwETZzjzFDA-mRvdYL2kel0IToELLOdfE9Lhr0Gk,4018
|
|
24
|
+
pyrogram/crypto/prime.py,sha256=hZe9xlM_nfOonL53emLn9zjmT79SHC5yFgDElZ-II40,2446
|
|
25
|
+
pyrogram/crypto/rsa.py,sha256=5A89QWIwKz1JB-Ng3N7r_ONJSzXL-t8lWKGy585W06I,13437
|
|
26
|
+
pyrogram/enums/__init__.py,sha256=MFXptb8fwujQTxcQsPjAbnH4L7Aeb-ZHVIsd_3Rl3_8,3779
|
|
27
|
+
pyrogram/enums/auto_name.py,sha256=YEFxmS8URqR1SLHqtSwDry_t48158GS-nHq7uMtwITw,1002
|
|
28
|
+
pyrogram/enums/block_list.py,sha256=m1ouS9heW6MggzosCchGVQ21hEbp-_VOHT6UPmsAp8A,1208
|
|
29
|
+
pyrogram/enums/business_schedule.py,sha256=HoubYxCwJNs61FmZWchHMfRpk-VrjVfv97kLcY3ROdQ,1265
|
|
30
|
+
pyrogram/enums/button_style.py,sha256=BfppvYEXixzvZnqTpmOl9KG6_FPeyY5qZUPzxFS18S8,1263
|
|
31
|
+
pyrogram/enums/chat_action.py,sha256=htJ7CyLxKF5g8kmuSQlZw1G_xzHJ0G7ipIrte5UpTLw,2307
|
|
32
|
+
pyrogram/enums/chat_event_action.py,sha256=ksa5ReXrYrmtv7SI6OfBZNMwtFe1c04WbUwcbtSsHdk,4703
|
|
33
|
+
pyrogram/enums/chat_join_request_query_result.py,sha256=hahZ5QW5-da0j39clqC_-_zqqznwVzxh7FsAsrEASiU,1306
|
|
34
|
+
pyrogram/enums/chat_join_type.py,sha256=CuTNAhGR97TU4UP30ORZBu7EKGyN2H7JOyNBH9vUZBI,1281
|
|
35
|
+
pyrogram/enums/chat_member_status.py,sha256=R52wBlniGyVz1STL_xbY8Q8qNRdiUuf926MEKpGb2ww,1265
|
|
36
|
+
pyrogram/enums/chat_members_filter.py,sha256=elc_gNvVeE0jY0O8ecoJPJ9sX7jXpbvnLTGDRNu1_l0,1446
|
|
37
|
+
pyrogram/enums/chat_type.py,sha256=gueGnJBbLviD1oMUE-k7jzgX0GJkOIJ8Z4kxcEQ5Vgs,1339
|
|
38
|
+
pyrogram/enums/client_platform.py,sha256=dlKlBEnP4RwuuS1Y66McySOQCgfUdRdLo46EBGtz6i4,1233
|
|
39
|
+
pyrogram/enums/folder_color.py,sha256=uga4ERTfE_vkH_nuQmLJJBYwINGGZElDvMT-JnIfv6Q,1225
|
|
40
|
+
pyrogram/enums/gift_attribute_type.py,sha256=p1y9_I144Z6-3xKqBsk4415FYmGji9V54W1lYU4crwI,1323
|
|
41
|
+
pyrogram/enums/gift_for_resale_order.py,sha256=WltOCVHaf4QgxYdYZHY-0ufc1XL9XEpE7eStdVg1G0k,1378
|
|
42
|
+
pyrogram/enums/gift_purchase_offer_state.py,sha256=hiz3OHL0-fKaoMm9PRL9WXEJpFo2gbJd_iOpvTydtIQ,1205
|
|
43
|
+
pyrogram/enums/gift_type.py,sha256=MglG9wjFc9zmyqWXRJ3LBnolrFrQFgpyYItDoA_IuOE,1076
|
|
44
|
+
pyrogram/enums/mask_point_type.py,sha256=Q2jVqKs__JNv4uZINPRhlqzErRBX0MzL0htYBU34LSE,1189
|
|
45
|
+
pyrogram/enums/media_area_type.py,sha256=izY-fKkAVSEQcliWKiqVb96317K6iehQKLGMOK-dnAE,1387
|
|
46
|
+
pyrogram/enums/message_entity_type.py,sha256=6WRrRBKV8z3QwU_yfb--vwF87YJnzgF-nWZVTLICtr0,2580
|
|
47
|
+
pyrogram/enums/message_media_type.py,sha256=jOgtH96vDkmZzve7MA67VHW_j25Q1bTpl2xcSegACzg,2029
|
|
48
|
+
pyrogram/enums/message_origin_type.py,sha256=Gfw_3hWMgMletfecvmGzDyhlyVp4wSgWiRp_Fsh6bLE,1421
|
|
49
|
+
pyrogram/enums/message_service_type.py,sha256=fN5UghCzgNz-l6uvIHSq3fb0bNL9E1lNa6AcKCMEMso,5379
|
|
50
|
+
pyrogram/enums/messages_filter.py,sha256=13wC0UK0Z9KuEEq0Y-mSL2tNlY-n73OlINOlAJlFL5c,2472
|
|
51
|
+
pyrogram/enums/next_code_type.py,sha256=GMofmZCvqJxjn_2bXWjQ7T06AiI584UlWlfZYtBnVS0,1521
|
|
52
|
+
pyrogram/enums/paid_reaction_privacy.py,sha256=dG8XJC2wJq8tRDZHzalF-AWvMazcRmybYMbDI7oZNFg,1363
|
|
53
|
+
pyrogram/enums/parse_mode.py,sha256=9xKPMEZf1hIYsCHWWcemCFyo3U5xnaQ05pYiaxvXezk,1188
|
|
54
|
+
pyrogram/enums/payment_form_type.py,sha256=UJvtGukwOr6wNNAPGVydrh0v2p8ybLxPNW3uSCEqWGY,1206
|
|
55
|
+
pyrogram/enums/phone_call_discard_reason.py,sha256=-H5hG_Cijs4MkI2i5_b5FWb4xZEKTob4HdTzYKybAeM,1763
|
|
56
|
+
pyrogram/enums/phone_number_code_type.py,sha256=fnBpSZp74d3eiZnIqJurkEvyOzC7g_WoEu9ZZKLbbkY,1336
|
|
57
|
+
pyrogram/enums/poll_type.py,sha256=C2MDTqWrRBT24qnkuosxIA5E8vDeGYDpAPep7o6HIgE,1047
|
|
58
|
+
pyrogram/enums/privacy_key.py,sha256=eL8e1tvqGsMS1TbqazSdFQqUekVC3CW1ScvCGYxI3Fs,2606
|
|
59
|
+
pyrogram/enums/privacy_rule_type.py,sha256=SkauCedCaoox8PFqvi7jtjxf1QPBqyMB9_f8DVVC9aI,2177
|
|
60
|
+
pyrogram/enums/profile_color.py,sha256=rtHeDTxne-sTzl7ewwdkmcM7R91XNjtKYIFTQdWJlsw,1829
|
|
61
|
+
pyrogram/enums/profile_tab.py,sha256=WSaoYd9gywM8F-U04F4gNr3IZXd2xrZbopaVbenghvY,1774
|
|
62
|
+
pyrogram/enums/reply_color.py,sha256=WI8qCIxtOpiONafjdNwSw7CYE6uxoZ_rCA3RBMZYXuw,2397
|
|
63
|
+
pyrogram/enums/sent_code_type.py,sha256=pICJEMk_6eVh8ZVjDIjPfsR5YvLLMemLLy64rwzfG-A,2198
|
|
64
|
+
pyrogram/enums/sticker_type.py,sha256=T3pqOx9cLPKMUreo7P2Fb75_W1ykAbf5LM2OOsey9WM,1244
|
|
65
|
+
pyrogram/enums/stories_privacy_rules.py,sha256=28__QA0xwKwj5nK3W9cKVBZrwzIj7BHDahPtrO1QE9A,1213
|
|
66
|
+
pyrogram/enums/suggested_post_refund_reason.py,sha256=crz-QNrhmKOGNnPjJUUKsO_jkhQGUzmoaztsa6EwbT8,1281
|
|
67
|
+
pyrogram/enums/suggested_post_state.py,sha256=b0oBrVCBPZ5qXqanRSbIlhhDB4erLVaXHCyhS508mGI,1186
|
|
68
|
+
pyrogram/enums/top_chat_category.py,sha256=DEzf6kVsD2-RlWLOGAXmWdU86C0ehAsYX65w7gFsOvo,1979
|
|
69
|
+
pyrogram/enums/upgraded_gift_origin.py,sha256=sbtntHFZQ7irFZ7sv-j7DZ_GZVdIy0Fwvw8tJCCglPM,1677
|
|
70
|
+
pyrogram/enums/user_status.py,sha256=0WEpJJmjfGsJ3CVEhItO3Zc1VP9CBjgZBpxWUOzoFFg,1299
|
|
71
|
+
pyrogram/errors/__init__.py,sha256=Td5_TRqn2Ht6R3ZTxrLJaL_HoaugITxNCsiYEfueqCw,2605
|
|
72
|
+
pyrogram/errors/rpc_error.py,sha256=18YbiYLQ-wKBZJ389SfPpl0pwQMHn4Xzh0leuZ-vuNU,3315
|
|
73
|
+
pyrogram/errors/exceptions/__init__.py,sha256=hqOGC1owpX2WBON9RduRJcSXKc3Kf73tgnlHKGg-mjc,1066
|
|
74
|
+
pyrogram/errors/exceptions/all.py,sha256=rf9tOzAHwJxS6svZbV9m9D6W-V7jdB5N5s3mr-RGTYg,48795
|
|
75
|
+
pyrogram/errors/exceptions/bad_request_400.py,sha256=wEKuxUP3f2vVIdkH5t9jEtE7o7xm-XaX5aLLeWK00zs,136349
|
|
76
|
+
pyrogram/errors/exceptions/flood_420.py,sha256=21SMKxYV7WjGyDv4E1lI5r1Di1z2lnZ3jmAFracvNfY,3226
|
|
77
|
+
pyrogram/errors/exceptions/forbidden_403.py,sha256=6VFFnQWhWN1UfrbZO1DvAdZGwi_E6X4K7UKneBBaCTQ,13876
|
|
78
|
+
pyrogram/errors/exceptions/internal_server_error_500.py,sha256=8EAVzFtZO7qhqeJ8q7iJsKOCV1Vz6tSImYvK7h27k9w,12912
|
|
79
|
+
pyrogram/errors/exceptions/not_acceptable_406.py,sha256=YUDCCJiAV42qIlULgRoqNW4wa4yuc4riCCGDqGh8LQE,10006
|
|
80
|
+
pyrogram/errors/exceptions/see_other_303.py,sha256=UFDDOdEY6OeCVU_sZTd2tCiVbfFW-5pXAmUHyyMtgV4,1957
|
|
81
|
+
pyrogram/errors/exceptions/service_unavailable_503.py,sha256=nGlK_dCJKwW3adMSWp2dV8cfo5b7SytlNlAyNBYYtp8,1535
|
|
82
|
+
pyrogram/errors/exceptions/unauthorized_401.py,sha256=R1P7neXqyFEutsELFTmbdZyu_AabGJ8cwX94BNVtzYM,2826
|
|
83
|
+
pyrogram/handlers/__init__.py,sha256=pnWmxicqv7tirhU1vrwbUV41Wgu8VTZnkikUGkMttbk,2478
|
|
84
|
+
pyrogram/handlers/business_connection_handler.py,sha256=Q22t-ouIvj5Cze0x76LhyTp1pHzhLZidROC3rq0OFFs,2175
|
|
85
|
+
pyrogram/handlers/business_message_handler.py,sha256=Q-58frCwctX33_5cimfDFGxP7zxqcps5f5Y6VOM1Ye4,2117
|
|
86
|
+
pyrogram/handlers/callback_query_handler.py,sha256=lLf4axaIx1JI4gamR9C3dM2l8Jh6x_dtYdsEWm8TN64,2179
|
|
87
|
+
pyrogram/handlers/chat_boost_handler.py,sha256=OiE2KEMpm757q8FvkJ2k9beDyhOUA5yeRAjNcj3j6Qk,2087
|
|
88
|
+
pyrogram/handlers/chat_join_request_handler.py,sha256=pleqwb3vI91M4SSef64Lj2yP7wYSbVmbteH_bjd9LFo,2166
|
|
89
|
+
pyrogram/handlers/chat_member_updated_handler.py,sha256=xta2SLI1f7jXvW-AA83xLCi-F3t0NGDJ0prE2_6xEeg,2203
|
|
90
|
+
pyrogram/handlers/chosen_inline_result_handler.py,sha256=3oVEX6T7OEqfmg_DANp2QCPoArLJW3yHFYw0jYMMSIw,2276
|
|
91
|
+
pyrogram/handlers/connect_handler.py,sha256=e8IyYWtpqmab43cwU8GGqZmk8KSrFvr3VKDSoTptU8Y,1930
|
|
92
|
+
pyrogram/handlers/deleted_business_messages_handler.py,sha256=AOe8uesnaYxHj8hFl9KFOA_IDqgJn80OQhu10Aq8Foo,2683
|
|
93
|
+
pyrogram/handlers/deleted_messages_handler.py,sha256=ACEf76YVkU4Ar7UdZ1XYQCmXNgkJrgKGqbztW1uCvpU,2671
|
|
94
|
+
pyrogram/handlers/disconnect_handler.py,sha256=9t1-cHWN9hu0sSjUGXRIgoLIBaeMAxWIFC-vZ-PphR8,1945
|
|
95
|
+
pyrogram/handlers/edited_business_message_handler.py,sha256=0QaWYD1wdzltOriMTWUUGH2BhfZfZXQjbgEr-5a2zWo,2160
|
|
96
|
+
pyrogram/handlers/edited_message_handler.py,sha256=kfY7bKOdEOexYnu4_zrDnMm8podEJCJny5I3tw12dxo,2126
|
|
97
|
+
pyrogram/handlers/error_handler.py,sha256=CnRzEzdvru1bJD91ZPoMkLKGaxBkW1OGIh3KqxhiSMY,3876
|
|
98
|
+
pyrogram/handlers/guest_message_handler.py,sha256=ak3X3QEKcZV6nMXv0drpEARAMzAsEKepoY5iQM5N09k,2107
|
|
99
|
+
pyrogram/handlers/handler.py,sha256=jztwzl76e7BxnISO53--ZCvrXAm5UolLdCdA4fbEzMU,1530
|
|
100
|
+
pyrogram/handlers/inline_query_handler.py,sha256=15Z9Hh5AlliuHpxDlBu8bekEIcqDcJS0m_dSGGAT9-8,2135
|
|
101
|
+
pyrogram/handlers/managed_bot_updated_handler.py,sha256=m1H8r5yWOs7WT--TBWXrnHhJo1A5woVQDBlMuuYZOug,2220
|
|
102
|
+
pyrogram/handlers/message_handler.py,sha256=aZRJLyEMnWm3YlpA2dXOJnqxP4M_dvZgqTAGn_xeK2c,2082
|
|
103
|
+
pyrogram/handlers/message_reaction_count_handler.py,sha256=w25ey0rMb-hEVE822FulARAAeLjQFGPbMrswEMLiIh0,2256
|
|
104
|
+
pyrogram/handlers/message_reaction_handler.py,sha256=Hk4hSAvYb5MpaWvn3YqFRbgrJ3-djvHBKrdZx5Psv5M,2209
|
|
105
|
+
pyrogram/handlers/poll_handler.py,sha256=RAvXMcptCesQYxjAZyuGBsouRBjOwGKXLGAc_uHBaRU,2044
|
|
106
|
+
pyrogram/handlers/pre_checkout_query_handler.py,sha256=F2r67PmOMIbCXa-RudugvUeIy-JyW_1WfBPoX5WhZLE,2214
|
|
107
|
+
pyrogram/handlers/purchased_paid_media_handler.py,sha256=9IA0FOQAp744eO0RP0OIN8z67tB_05l6PxFHGrphvCQ,2174
|
|
108
|
+
pyrogram/handlers/raw_update_handler.py,sha256=8Uf6OVUwYnOiG6Fv5zg_eQu7CiGCPFYU06r2LRi-u80,3445
|
|
109
|
+
pyrogram/handlers/shipping_query_handler.py,sha256=JQVaPGBLRs8g8ZWvBXTQnxZJ_Eps6aIx2Lb-kmRI4Po,2244
|
|
110
|
+
pyrogram/handlers/start_handler.py,sha256=hXwDM3hm-8AjP23tRBJ-aU03AeDMPy9kYkmd7Mjzs08,1763
|
|
111
|
+
pyrogram/handlers/stop_handler.py,sha256=V9k3TgAaA1fdNR1bh54nqBeJHly5d1915KprjIL5rzc,1789
|
|
112
|
+
pyrogram/handlers/story_handler.py,sha256=j4lubFimd2stlF7yShKO9ncuRHWd75BwjA4PvqeT004,2048
|
|
113
|
+
pyrogram/handlers/user_status_handler.py,sha256=JHqq5ZK2v6D2bEUwczqQSGIuJzt2rAKQ6MbxW71sl9o,2119
|
|
114
|
+
pyrogram/methods/__init__.py,sha256=l38hSOjA-qY72uyRT4CMp6Y6Ou7k2d62-eBusgoRcBY,1614
|
|
115
|
+
pyrogram/methods/account/__init__.py,sha256=w6cDm2m-ihsxaZ8Ajkt3f3UjTEm3rcnBJrKK9Eep5a8,1591
|
|
116
|
+
pyrogram/methods/account/add_profile_audio.py,sha256=BI1qZ_k7vWFY3EAE5OTbnmLtD5qSeJmrX6IvonzwuPE,6538
|
|
117
|
+
pyrogram/methods/account/get_account_ttl.py,sha256=vW1Z7uEFKrLrgBqBP1e_lmGlWcCZiDNSSKt0azLZWoU,1389
|
|
118
|
+
pyrogram/methods/account/get_global_privacy_settings.py,sha256=iiiV5lAfaOsqbcDTx0DmVCDQmLLIdqWOBAPHZ3nR-t0,1488
|
|
119
|
+
pyrogram/methods/account/get_privacy.py,sha256=_V-zT32Ib46xmdat8acXX62e_RsmvSC60c68qaQoSik,1810
|
|
120
|
+
pyrogram/methods/account/remove_profile_audio.py,sha256=FCu16i8JHFmDiT2hGEp97Kkbrwd6RtuTS-3U43geQgI,1728
|
|
121
|
+
pyrogram/methods/account/set_account_ttl.py,sha256=mGr6GtrIrrXzBfNtozmMHa1y8MMos6vInALEx2kJwAM,1620
|
|
122
|
+
pyrogram/methods/account/set_global_privacy_settings.py,sha256=KbdJ0MaxPzck3Mq-_RMr49ese5etVGWlWNOi7s4xKG8,5511
|
|
123
|
+
pyrogram/methods/account/set_inactive_session_ttl.py,sha256=0NdRhM8ob5ouLN5yK0hYG3bOORxi0wbrBn2AwAMybYE,1781
|
|
124
|
+
pyrogram/methods/account/set_privacy.py,sha256=6MQl6lZ0AjAbpUyW0zNHS6vYZkLPwNzC6lkVZgTV_do,2771
|
|
125
|
+
pyrogram/methods/account/set_profile_audio_position.py,sha256=qr9KdSFvBBrbW8Xea2y81QxPWSLaHjYsXHMUkBTitDA,2352
|
|
126
|
+
pyrogram/methods/advanced/__init__.py,sha256=W4W-MTb9BntvkrPeRa-LXCjTtZHtHk1Wp_jKk4gEM_k,1043
|
|
127
|
+
pyrogram/methods/advanced/invoke.py,sha256=ogNq0O2AthMNZVcl5NFCqZ147N7e4Gs49zjP7LGE35U,4209
|
|
128
|
+
pyrogram/methods/advanced/recover_gaps.py,sha256=_vx0SPl3gJTvxLojM73tT_2RcD8DFhSnrTAw5cVDyD0,7090
|
|
129
|
+
pyrogram/methods/advanced/resolve_peer.py,sha256=MJAyRgsHkoPVrH0gcND9q6oOhFjfeF8jQWKU9iwoajU,5838
|
|
130
|
+
pyrogram/methods/advanced/save_file.py,sha256=Fk249039H7vxTo-A7Hn_CTL2gMlGL-9TRTLqb1sSk54,8352
|
|
131
|
+
pyrogram/methods/auth/__init__.py,sha256=IvIWBDV4rtTsxx1DRNSCpeBluWhSeHAN0nfDMYghIZY,1992
|
|
132
|
+
pyrogram/methods/auth/accept_terms_of_service.py,sha256=qegqafaxszNcOgYCWxTRssXpXJzfKVKexwbqJaEbM1M,1468
|
|
133
|
+
pyrogram/methods/auth/change_phone_number.py,sha256=A9unBJ_HfXImMmhHtzWB_JWW1PjrFwowMJSnCdF6V6s,2114
|
|
134
|
+
pyrogram/methods/auth/check_password.py,sha256=5w01ommIRhnbNlQVUeRWJVl3Cp27I4EVI_SvMh2YQIE,1942
|
|
135
|
+
pyrogram/methods/auth/connect.py,sha256=i3FYzECWTZYEbOzsKtlgamQRHk9ae1ehx4jiPYmVpdw,1989
|
|
136
|
+
pyrogram/methods/auth/disconnect.py,sha256=VWNvb0rOUm9TUaQzTGk7pY9xyU1Kdg9-RnySY_qu2tY,1532
|
|
137
|
+
pyrogram/methods/auth/get_active_sessions.py,sha256=-Zrh3_yA7h6boTUP-g5XeS2zZwkOQ_mszua4qg46X6c,1400
|
|
138
|
+
pyrogram/methods/auth/get_password_hint.py,sha256=tAXJFt_ywvIZ5_KdmyJQow-xdxvqMSnr22ywqoxuKlg,1307
|
|
139
|
+
pyrogram/methods/auth/initialize.py,sha256=EV-NQoB4Q6CXVib4ljbdCHxXXUaP7EscFZo6DTe9pgI,1735
|
|
140
|
+
pyrogram/methods/auth/log_out.py,sha256=wWKkjVOBagFf8eRc5SzZKGQDVsF9ihI_eN7U0Cnp9j0,1632
|
|
141
|
+
pyrogram/methods/auth/recover_password.py,sha256=nn3dcGvJA99l8E6A2fJNyGdRp7m7saUP0qVuHV4nlEk,1831
|
|
142
|
+
pyrogram/methods/auth/resend_phone_number_code.py,sha256=A8vFYnovXS5QhF-k7LmuFZywXTDJNBvdCZG1NmprW5M,2196
|
|
143
|
+
pyrogram/methods/auth/reset_session.py,sha256=6gl2bb0Rss4M2cc6S8opMMFjk0HxA5bFG0hB5VGD7xI,1443
|
|
144
|
+
pyrogram/methods/auth/reset_sessions.py,sha256=qqGdI42v9dJTvNJV-1L2iEglA6UrHYit_hHmIY-PudQ,1355
|
|
145
|
+
pyrogram/methods/auth/send_phone_number_code.py,sha256=L6r9gRbIvPYTRrch9T-sKNspQc1okirFCYm2pqimFXs,7460
|
|
146
|
+
pyrogram/methods/auth/send_recovery_code.py,sha256=5s21Op59kO-NjGNkSy7ull2Gjas-iy0eT0T4lAVuVdI,1473
|
|
147
|
+
pyrogram/methods/auth/sign_in.py,sha256=kDB1dnTGbCeK3nPXVa_ZhDsLeBkMWBUvxgFcqrcFZVU,3115
|
|
148
|
+
pyrogram/methods/auth/sign_in_bot.py,sha256=UFKbhWrYRsXIOfJttHMZJASb_mmltg3mJ0gxI_N-yhE,2766
|
|
149
|
+
pyrogram/methods/auth/sign_up.py,sha256=Z6uM9aSDsOR5kPXJuueYDSzkUr857nSjCVtO9dbUd7w,2368
|
|
150
|
+
pyrogram/methods/auth/terminate.py,sha256=7j5PSBF6LiwiGsrt_owOJphxzT_NrFK1fbiFF3c2C0A,2287
|
|
151
|
+
pyrogram/methods/bots/__init__.py,sha256=gbR2MJ8d0oG0EkwWUvjCguxro2X2kCT0HlIk6FkoeSE,3830
|
|
152
|
+
pyrogram/methods/bots/answer_callback_query.py,sha256=jfmLjr8Q_VWLC2lpmWPe7bEFiQlID29-FPbTisjY7Ds,3311
|
|
153
|
+
pyrogram/methods/bots/answer_chat_join_request_query.py,sha256=0MC6GhkHhytkevQ0VJLC3soBZf3T0dXepS87X0jPI_s,1728
|
|
154
|
+
pyrogram/methods/bots/answer_guest_query.py,sha256=B737pPFzLwIBa4-PA95Gg9x0v_EHVB72sNH9tWp9PJg,2210
|
|
155
|
+
pyrogram/methods/bots/answer_inline_query.py,sha256=6JOB0lszuWJ-9jNXDif1l1JK2O1cE3m8mgXsxVYoWEA,4990
|
|
156
|
+
pyrogram/methods/bots/answer_pre_checkout_query.py,sha256=S664PHhZtOjd9Cv0Bexf8YyB_UUaV8CRfcGAi7pb96A,2434
|
|
157
|
+
pyrogram/methods/bots/answer_shipping_query.py,sha256=VkM0XrsdOs-NVbwHRhXhTQ_0hrI8LUZQbZ20AvyiSG0,3230
|
|
158
|
+
pyrogram/methods/bots/answer_web_app_query.py,sha256=IPqGvFu7rouC51EhMmrcax4rgzFw52qaZJPldpbXMvw,1989
|
|
159
|
+
pyrogram/methods/bots/check_bot_username.py,sha256=9vaFpdsoX6uRGXJGi812dgHwYtgRGatjT7IhXD4WNI0,1383
|
|
160
|
+
pyrogram/methods/bots/create_bot.py,sha256=U3hlqD0JdjLBsCMPxmrkVRGBMGtKNUYH8M-BMtbujTA,2242
|
|
161
|
+
pyrogram/methods/bots/create_invoice_link.py,sha256=ki91LestZghall3dr_mORxQIVvR7CVA6fRQaI1dnmuo,9054
|
|
162
|
+
pyrogram/methods/bots/delete_bot_commands.py,sha256=KBSL9gg4iHhsxX1X13yyOvu8yqOd_OmVgeH-giq9mPc,2360
|
|
163
|
+
pyrogram/methods/bots/edit_user_star_subscription.py,sha256=jZM4e7VKzbEsupoJUOvBRwtJTYidfzxWmh3DHtt_gpc,1995
|
|
164
|
+
pyrogram/methods/bots/get_bot_commands.py,sha256=dnZz6JI7EKkDvAkiWVb2ijuZfmmnFpGkEqrD_tugKdQ,2573
|
|
165
|
+
pyrogram/methods/bots/get_bot_default_privileges.py,sha256=qcnIrF7IgFoYX8xuE1Sa6uMUTmv8EabExXqLG89emyI,2069
|
|
166
|
+
pyrogram/methods/bots/get_bot_info_description.py,sha256=hYcMWPDtWYIDwufT0NTRmRpxusrva63OGnUWeHYSlUo,2355
|
|
167
|
+
pyrogram/methods/bots/get_bot_info_short_description.py,sha256=8QdHxgZAxHUT9dGfHmD07iI58nkZOV-W1F5sGXEaBmA,2415
|
|
168
|
+
pyrogram/methods/bots/get_bot_name.py,sha256=mIgoSIWmgGM-FjCfRRGHDQENoJmKQKHWmZCe3C1_aLY,2257
|
|
169
|
+
pyrogram/methods/bots/get_chat_menu_button.py,sha256=cOek_NoNG_LOs1tUaqc2UqXh3elKzdUEoNQd3lI0DpQ,2319
|
|
170
|
+
pyrogram/methods/bots/get_game_high_scores.py,sha256=ais2gK7YfKhwDo_WhyOdi9WYj4kXmSPq8U9KKnMV3ps,2798
|
|
171
|
+
pyrogram/methods/bots/get_inline_bot_results.py,sha256=bnV9ayI6t3w7bZf2GqVuwo-sS6KvjsNmcCK81C0WNv8,3365
|
|
172
|
+
pyrogram/methods/bots/get_managed_bot_access_settings.py,sha256=sT57vFYm_DA6yCxCz_VMRDC24HrJvuZBWwrPrVH6vpo,1723
|
|
173
|
+
pyrogram/methods/bots/get_managed_bot_token.py,sha256=3wiDImcAJn2n6kKrdDS-_Xa5aw-ogar7xhENE8ohT7U,1610
|
|
174
|
+
pyrogram/methods/bots/get_owned_bots.py,sha256=Cxr51wQrM6pCYF7alTDUFz9f3pOTcXXRHNFEwi0QX8U,1463
|
|
175
|
+
pyrogram/methods/bots/refund_star_payment.py,sha256=ReKlma7_cOfyQ9NlExnxWEC5A55O5wFVQCudV79rOWg,1800
|
|
176
|
+
pyrogram/methods/bots/replace_managed_bot_token.py,sha256=duUu2GsyVqlBEsgdFLSJMtTWvq2rIWRbi7cVU3arGKk,1655
|
|
177
|
+
pyrogram/methods/bots/request_callback_answer.py,sha256=MqYIjfdl_JVS2SQi2ICw7kjHjwt5MlO_zKEogsCGHpw,3649
|
|
178
|
+
pyrogram/methods/bots/send_chat_join_request_web_app.py,sha256=EWraYs6Xbohd_-DSZRmlQkE-d7ajC3cFlRhS6v0abiU,1949
|
|
179
|
+
pyrogram/methods/bots/send_game.py,sha256=om-yZKYEBzJJTLdC_jBkBfMVV4G_VCvts_JYVPwqoBQ,5599
|
|
180
|
+
pyrogram/methods/bots/send_inline_bot_result.py,sha256=6LIhc6IPvhjgyf2XwlgbbUA3ZhjEozl8JOZxxJiFL3I,6907
|
|
181
|
+
pyrogram/methods/bots/send_invoice.py,sha256=GyBnfhnZ_0YdFHUw8Wv9eJiPY0V80VKF6TnE7UPBqis,13578
|
|
182
|
+
pyrogram/methods/bots/set_bot_commands.py,sha256=LbMSB3RLHNRPcmX6Azakt289JRyx5Y82ksSde8t9gj4,2710
|
|
183
|
+
pyrogram/methods/bots/set_bot_default_privileges.py,sha256=dqI43M0LrsIAaY1QyccTlYWKIyJOlvvhnEb-wRGouw8,3222
|
|
184
|
+
pyrogram/methods/bots/set_bot_info_description.py,sha256=l4Hq3qXjrygZGk52wVqD_MH6pWslByz312vDfptzXQo,2469
|
|
185
|
+
pyrogram/methods/bots/set_bot_info_short_description.py,sha256=-Y-hpGwEuZQ0yzvanvS5AzoIZPtygF3VWzl8bV0kS7Y,2572
|
|
186
|
+
pyrogram/methods/bots/set_bot_name.py,sha256=nr35O72ZB0h7ff7kWWVD1v6uaQN66i9tC_pR2eduDy8,2386
|
|
187
|
+
pyrogram/methods/bots/set_chat_menu_button.py,sha256=jNzIy93GcYPqyg9FhvvN-NeBznstgDmQIJU-OVfSIi8,2048
|
|
188
|
+
pyrogram/methods/bots/set_game_score.py,sha256=5tpnHs16tgOfz2gEJKkgoh40N64Qzg_NVsaEGvw-Rj8,3946
|
|
189
|
+
pyrogram/methods/bots/set_managed_bot_access_settings.py,sha256=20TU4Ia6UYA0gVUfGeDf2SSSMhNfCpjUtOKJRrmugzw,2376
|
|
190
|
+
pyrogram/methods/business/__init__.py,sha256=2yr-IjFZbC3aQJYEgphqD6ebWphLk8leHWYeXfllmEc,1337
|
|
191
|
+
pyrogram/methods/business/delete_business_messages.py,sha256=sQoU-NPj6NHl9XwZJ1dulakV4DMJzDCrFFcuYW0P8gE,2543
|
|
192
|
+
pyrogram/methods/business/get_business_account_gifts.py,sha256=vrxVwgdHO8zAz5TzPaa40pnmxZW0FZR3vpB-55bcE0A,5796
|
|
193
|
+
pyrogram/methods/business/get_business_account_star_balance.py,sha256=1md59uLK7EK2iLPTUVNCoQhUD8vU7CLYYvqqQN6HN9U,2084
|
|
194
|
+
pyrogram/methods/business/get_business_connection.py,sha256=eunZfG2mzaHlm3eSzn6NrqaAiX7SFYoYMV56wxOo9k8,1894
|
|
195
|
+
pyrogram/methods/business/transfer_business_account_stars.py,sha256=qsrX-atKUzATEBTMw838Cz9jUtFvrv95QUBeMZnozhA,2459
|
|
196
|
+
pyrogram/methods/chats/__init__.py,sha256=mT_VhOXjaYLAQAgk9VjA6Ae5Zz0jFpQ-MGJBNuETUGM,6542
|
|
197
|
+
pyrogram/methods/chats/add_chat_members.py,sha256=48VcDKON9_DaDP_f90NI1wlfC3_w5uD3xQo162-Obqk,3869
|
|
198
|
+
pyrogram/methods/chats/archive_chats.py,sha256=d2cHk63K_5gc1s_9zJdQibBH8xYRC4iYWd3l_yJs7Ac,2216
|
|
199
|
+
pyrogram/methods/chats/ban_chat_member.py,sha256=LmPrE7kwQk_zaAypQq3sEykMgMnyzlmyg4EEUfqwSVI,5217
|
|
200
|
+
pyrogram/methods/chats/close_forum_topic.py,sha256=ILZKIG2SOerCy3iQ0WTPvt1eVgyVYnc_YKIRYoQsxiQ,1818
|
|
201
|
+
pyrogram/methods/chats/create_channel.py,sha256=Vaur4qzd9wD-VQDXT1_OewDhwxCasx7RdGmXgJSkCN0,1817
|
|
202
|
+
pyrogram/methods/chats/create_folder.py,sha256=zuVuWhPW3ZTWk6Cj7VKMuXI8T0kwTX3OaGwb4gJ45Rc,7788
|
|
203
|
+
pyrogram/methods/chats/create_folder_invite_link.py,sha256=ztvIU355VeHvhU3MG66uyul6E7Pg94IxL_R4QTXRn-0,2481
|
|
204
|
+
pyrogram/methods/chats/create_forum_topic.py,sha256=4q7VyoOmQRw21McPcPlLiPADX7kSOnlvkGnsqn9AdPY,2328
|
|
205
|
+
pyrogram/methods/chats/create_group.py,sha256=d2onegp0om1LO4wBeuE6nPyIsiYcMW2xqUferKdzDxk,2289
|
|
206
|
+
pyrogram/methods/chats/create_supergroup.py,sha256=CC6SYeGuGxhoOcRUz6t6h-FoGOCtcGFcOXcdl8BcBEY,2708
|
|
207
|
+
pyrogram/methods/chats/delete_all_message_reactions.py,sha256=NUIv0fW8Gr0tLHNKyMec1MTfk0wVCxdupVDi4I31B_Y,2803
|
|
208
|
+
pyrogram/methods/chats/delete_channel.py,sha256=gj8HqiKl3TaZh948R30nkyeZsB5akyDhpCuT0SqPnRU,1585
|
|
209
|
+
pyrogram/methods/chats/delete_chat_photo.py,sha256=cBjrrl9V2ASYrNGAgFGUfGuGYBEtIMDHIBrGBZIopps,2307
|
|
210
|
+
pyrogram/methods/chats/delete_folder.py,sha256=ZeM-2PUZn4k6vJr6kNoFAbxtH5VfzJXaaTTlkdCqArA,1550
|
|
211
|
+
pyrogram/methods/chats/delete_folder_invite_link.py,sha256=4GQaXBBXqZ04_jzRPX8rCb1sjubi3jkQ4NInIS720Ho,2274
|
|
212
|
+
pyrogram/methods/chats/delete_forum_topic.py,sha256=OnBtjPs5Fgp6WNKfaPBhWbf0WdtniJXslr-w0jnurmo,1799
|
|
213
|
+
pyrogram/methods/chats/delete_message_reaction.py,sha256=hPsGQVIsfqmskx0CrNg3iqDyLv5ew-qZjlRUF_5N6go,2922
|
|
214
|
+
pyrogram/methods/chats/delete_supergroup.py,sha256=5kn1O2mE7jOERzB9J-mirvK0cnvMtIgrsqhsb94B304,1603
|
|
215
|
+
pyrogram/methods/chats/delete_user_history.py,sha256=VUCMtrKZtj1abOsYGcdTcdw4YrcLMzMcfOHIV81EYoI,1969
|
|
216
|
+
pyrogram/methods/chats/edit_folder.py,sha256=necs70E4q2xscEB3LoIc8aJHZ8w8npAxIHk9RUlkVB0,7978
|
|
217
|
+
pyrogram/methods/chats/edit_folder_invite_link.py,sha256=lnGB_5ifui31rBidIEGIEsK3z0z6vVtDfqYReh-OG4c,3163
|
|
218
|
+
pyrogram/methods/chats/edit_forum_topic.py,sha256=kRgg7Pg_XJYA4YVwuR71dbWYdKxv6n7cyQcYVoAD-aE,2425
|
|
219
|
+
pyrogram/methods/chats/get_chat.py,sha256=MBYN2zdXxj0CNbU8jFnQFvyrySAps-hON1Lrpu_u_ps,4056
|
|
220
|
+
pyrogram/methods/chats/get_chat_event_log.py,sha256=hGnHZSW0YH4RXFutl-uyOB3p9wp_fIVWf-3OG216tgE,4022
|
|
221
|
+
pyrogram/methods/chats/get_chat_member.py,sha256=XxYcNFMV6_CSBE0uWVWHE71Nzd_mRBitXJMNTDWmzqo,3337
|
|
222
|
+
pyrogram/methods/chats/get_chat_members.py,sha256=ILPruzPipYQoj7znT9C3w5L5YHaa4Ihh73V-k3paYoQ,5272
|
|
223
|
+
pyrogram/methods/chats/get_chat_members_count.py,sha256=HGp5AxViuUkQP8xI6DW0r36gdncn5h0ikZtU1wViXR8,2264
|
|
224
|
+
pyrogram/methods/chats/get_chat_online_count.py,sha256=jjz86ljyBDVcSxA3IqLpvmY8t6kX1GzMJ-IGBsywfYc,1723
|
|
225
|
+
pyrogram/methods/chats/get_chat_settings.py,sha256=4wfh1NKHVWyh8i8y1Eg5xQgBQyqKv-_8GDv8OsXLKrU,2192
|
|
226
|
+
pyrogram/methods/chats/get_chats_for_folder_invite_link.py,sha256=aMmUlHJc9VG8L2CHwihLpQp2GcJTX1OL1YAAyTz7rjI,2639
|
|
227
|
+
pyrogram/methods/chats/get_dialogs.py,sha256=WMkwk2qaqNWap1ImodCvh5srSEj5I5WNmJr-ak0e8oI,4501
|
|
228
|
+
pyrogram/methods/chats/get_dialogs_count.py,sha256=jKZyseU8sTYDhhflyw9paalsdXyXkqorQ63_ljxn8vE,2491
|
|
229
|
+
pyrogram/methods/chats/get_direct_messages_topics.py,sha256=MFWUJDC_4OetFF5giusHkINCvZPv2qZ0zh0ItExyVlo,3679
|
|
230
|
+
pyrogram/methods/chats/get_direct_messages_topics_by_id.py,sha256=4AwqHRtLSI_4Rz9WxNOqm1ZuLQd20z4U5YmgW-_UMMg,2977
|
|
231
|
+
pyrogram/methods/chats/get_folder_invite_links.py,sha256=VP9Bg9PVZXLLGNt4NOQcZekF2REAER4b66pw1tmVGqI,1910
|
|
232
|
+
pyrogram/methods/chats/get_folders.py,sha256=iE4hNv3sq-nhlz1QoUZjOtm_7Ia0LPmw-q3xvEirZ4M,2558
|
|
233
|
+
pyrogram/methods/chats/get_forum_topics.py,sha256=LkOCYYVVKtxjfoCTkvbY-tEO5vTYTb7__9Lor21Nu-s,3281
|
|
234
|
+
pyrogram/methods/chats/get_forum_topics_by_id.py,sha256=71ynR3M7HVAS8wfDMBtZAHVBZvbaSlExO8DcjKrbjlY,2892
|
|
235
|
+
pyrogram/methods/chats/get_personal_channels.py,sha256=_2PqL64zXjR9DgzajeStIWkrgyS7lEdJjQwoLSvySUk,1653
|
|
236
|
+
pyrogram/methods/chats/get_send_as_chats.py,sha256=wAKjkhEXQ60xppPg1f7Yyg8JSGpHtEXCk50aaS-EBGw,2392
|
|
237
|
+
pyrogram/methods/chats/get_similar_channels.py,sha256=99BNdyr-XbcRUviGXSbjIBJq1vU7hZq9g5vs-JIJt64,2076
|
|
238
|
+
pyrogram/methods/chats/get_suitable_discussion_chats.py,sha256=5kBe0pytc_XszQbSsXGeDxPf07nWa-c98LJxIeUq3UA,1738
|
|
239
|
+
pyrogram/methods/chats/get_top_chats.py,sha256=0Mbrz9p5PfhLT72Z48HAUeheig77Z5ObeDmb-D_4_lY,3735
|
|
240
|
+
pyrogram/methods/chats/join_chat.py,sha256=lg0N55Odrbl3j2mDoI2f92d9gF_VR-lMy76EED1hZh4,2483
|
|
241
|
+
pyrogram/methods/chats/join_folder.py,sha256=Ulff7WPvO05prey-95qloR0gkA3Q4-n-wHhIDgALIX0,2446
|
|
242
|
+
pyrogram/methods/chats/leave_chat.py,sha256=ZzX4K2BYcxo3ufJ4o9ePyjuiRnT5OQglKB7EC9K9ZQA,2605
|
|
243
|
+
pyrogram/methods/chats/leave_folder.py,sha256=3a6bPcS2s2xkDlrDdt86AvKQe4NBEtolD3qFbBFVneU,2730
|
|
244
|
+
pyrogram/methods/chats/mark_chat_unread.py,sha256=sBpqKV4IqtbBxIlOta__qQg4vlvIdFqX1sQTZsX9_XA,1528
|
|
245
|
+
pyrogram/methods/chats/pin_chat_message.py,sha256=jEoLkmFUfeOVY4lHX1vpkk7bS_xCW_zZ-Vw8qc0xXNc,2984
|
|
246
|
+
pyrogram/methods/chats/pin_forum_topic.py,sha256=Uiz0mF9CPI_Wd-qEWiuJy4yRH4lHhuMik31T5JAmo3Y,1815
|
|
247
|
+
pyrogram/methods/chats/process_chat_has_protected_content_disable_request.py,sha256=yc5Qnb588Ebj657Wbdhhj7ZYw8cVPZCXas-Li7GjBro,2324
|
|
248
|
+
pyrogram/methods/chats/promote_chat_member.py,sha256=Gkil83y9jlogF0v-uTKMyM3C-Y-8fsOQhHjb9EGhFfI,4212
|
|
249
|
+
pyrogram/methods/chats/reorder_folders.py,sha256=UI8jF8jhCOnSs6q6l05tjKjqZKbwvQbeY5rGt00FBI8,1956
|
|
250
|
+
pyrogram/methods/chats/restrict_chat_member.py,sha256=VOtmLvROzlMwdHP0RhdWosQ49GPAQOHnx_fm9HFMQtI,3380
|
|
251
|
+
pyrogram/methods/chats/set_administrator_title.py,sha256=c4qhSRHl1cLf8ymYIXTtGe7uu2LONq6WnVWHwG81EJA,3136
|
|
252
|
+
pyrogram/methods/chats/set_chat_description.py,sha256=DQNYi2YqmFpylqMFWJV6yzF14M5sGbf8jszYAoj1QYk,2247
|
|
253
|
+
pyrogram/methods/chats/set_chat_direct_messages_group.py,sha256=TARQ-L4a-eCa-gVSDeDff_FzeJw0QS1YXb792Jpr5C4,2513
|
|
254
|
+
pyrogram/methods/chats/set_chat_discussion_group.py,sha256=Y28e0Pm3mY4afPnjd8uXN6U7W4PonZIL_Iu7f3KHWrg,3746
|
|
255
|
+
pyrogram/methods/chats/set_chat_member_tag.py,sha256=WGCleb6_gYJTsIfr4Rnk7Kk4-ujvFh2FRbyEF56qUc8,2396
|
|
256
|
+
pyrogram/methods/chats/set_chat_permissions.py,sha256=Oi1mmadWRqFr0bqFJCnFY5w1cRcsg_DWXbi_QcbLGuY,2639
|
|
257
|
+
pyrogram/methods/chats/set_chat_photo.py,sha256=eM3B-jXpoN9_TxXu44eMoE6vzKn_zE4DIs6BQyghKNE,4803
|
|
258
|
+
pyrogram/methods/chats/set_chat_protected_content.py,sha256=SXdJ0lMUSRhHjSuHKlPAZUzleUFjFtYQaKJAFp9oE1U,1959
|
|
259
|
+
pyrogram/methods/chats/set_chat_title.py,sha256=MchThJnmr812_oLyd6aCaUVURBi_2AB7m_QR9UYTa8o,2479
|
|
260
|
+
pyrogram/methods/chats/set_chat_ttl.py,sha256=Hnnf33zzIcPMlrXc_SAOokedrdICQooE9v3z-7aJHxc,2212
|
|
261
|
+
pyrogram/methods/chats/set_chat_username.py,sha256=EYlxEi8ovCWKZdocIyI_mphbXLZt1w74r0B7U_69zDQ,2296
|
|
262
|
+
pyrogram/methods/chats/set_main_profile_tab.py,sha256=TxNBKuT0bIHCB26yJ483LM2JVOePcpaW0vDH6RQ20S0,2520
|
|
263
|
+
pyrogram/methods/chats/set_send_as_chat.py,sha256=QsipC3pmXirw4ukjo4k4tNzQlAgEaQ0UtIxh3j_D524,1982
|
|
264
|
+
pyrogram/methods/chats/set_slow_mode.py,sha256=nS88kDeqtjwszUFUDKMLhlOE6Eqhl_GNQLQ0lB52gY8,2081
|
|
265
|
+
pyrogram/methods/chats/set_upgraded_gift_colors.py,sha256=5NWbbj3g-zVCVK1aP2KsrdDJLfh6Pnb3jZk2_lqcfMs,1628
|
|
266
|
+
pyrogram/methods/chats/toggle_folder_tags.py,sha256=8_EYle6ihhYDkW-FC0IYb-8aytSH5FpTjSCu4s_ad70,1624
|
|
267
|
+
pyrogram/methods/chats/toggle_forum_topics.py,sha256=Mqd631kxbqynsBxrwCbyNAx-WMyFGzZO1TJmbu1ggVk,2384
|
|
268
|
+
pyrogram/methods/chats/toggle_join_to_send.py,sha256=xM8e8yKNz3ENlDYiODqbrJRojmbNj6dOHjFMOiNTH8s,2188
|
|
269
|
+
pyrogram/methods/chats/transfer_chat_ownership.py,sha256=MaBFDoNP1oEQOEODYZJqTSZaiwLHkmyHBpQqUJ64J_E,3010
|
|
270
|
+
pyrogram/methods/chats/unarchive_chats.py,sha256=eDZ4gm-JmIH893MEwksxm4OuqW2e5a-E-PTfaFDSpl8,2230
|
|
271
|
+
pyrogram/methods/chats/unban_chat_member.py,sha256=lhCvAW_Qxua1bgJdYjNTedBVtKopFHsPP6ojDNXdkRQ,2305
|
|
272
|
+
pyrogram/methods/chats/unpin_all_chat_messages.py,sha256=-in6YiGk2VALHo64mEB_kslx45HbG1Q-k2Cn0smfQYI,1940
|
|
273
|
+
pyrogram/methods/chats/unpin_chat_message.py,sha256=34cQTFacTwmk9eFPoZbjhyZqor8TRXiUkhUP6kdx-P0,2139
|
|
274
|
+
pyrogram/methods/chats/unpin_forum_topic.py,sha256=ZtUrjZB5HR3LXcVSIQ0dPw4Dv5Ms3crWdftOa7YIyyQ,1822
|
|
275
|
+
pyrogram/methods/chats/update_chat_notifications.py,sha256=jPdAhZkrYHWzb81Els0ToiwVkdk7W124M6TzeMeGjHY,3289
|
|
276
|
+
pyrogram/methods/chats/update_color.py,sha256=e7f9DUOWljCIJ0D1qvJdDCUssghtBkMfrXBf1apuO_k,2764
|
|
277
|
+
pyrogram/methods/contacts/__init__.py,sha256=76cdAi1PqmURpfeVQdmKh3ccFVR5f4SIahsbTGcMAZg,1380
|
|
278
|
+
pyrogram/methods/contacts/add_contact.py,sha256=ijTmg4QOPbxYbMwSiZoP3QoasZqp9LLp_FB7UfeAUDk,2888
|
|
279
|
+
pyrogram/methods/contacts/delete_contacts.py,sha256=o16G0xjhW0s9U23OOVf95UojcCDWEEtjIktCUDpFq8w,2448
|
|
280
|
+
pyrogram/methods/contacts/get_blocked_message_senders.py,sha256=gIKbjOQ8acgrAhYoo9Qwk-QUUXUCICRmVbuJEXXJVUM,2855
|
|
281
|
+
pyrogram/methods/contacts/get_contacts.py,sha256=x51h5r61JtOJvg_7kbdxCQ3vfJj0BHG7TnS3l-lp_Tk,1605
|
|
282
|
+
pyrogram/methods/contacts/get_contacts_count.py,sha256=p2xPnjRSTQKwU7cLYDr4V_owhR7uaiFnfM5sdBHfHfE,1422
|
|
283
|
+
pyrogram/methods/contacts/import_contacts.py,sha256=SavyyDMF_B3-2tlzjXu6S7V7wKSNuoBAYZcVh5DReJY,1934
|
|
284
|
+
pyrogram/methods/contacts/search_contacts.py,sha256=pIREal0I9U4r3s36Fxf0OBDTqESFIVWUg-IuJPjKloY,1845
|
|
285
|
+
pyrogram/methods/contacts/set_contact_note.py,sha256=7rHGxNVmm8wsJ83v84B-yccR2AOVqw0Xw0DrfNoX8Ag,2109
|
|
286
|
+
pyrogram/methods/decorators/__init__.py,sha256=B6RxwrvaCFPYlT40oZ3zxHDbZ0BwWLvmrzq5kxw2Nv0,2766
|
|
287
|
+
pyrogram/methods/decorators/on_business_connection.py,sha256=TxTwNWcUSjTVvri4RVE_zWaSljP6hh2bUxH-Q8rZ0K0,2348
|
|
288
|
+
pyrogram/methods/decorators/on_business_message.py,sha256=W38h2SKUEl1jbXB1ci6QZKK8zOMDZcOJlxstZacXwQQ,2338
|
|
289
|
+
pyrogram/methods/decorators/on_callback_query.py,sha256=HX7dP07gtv7cz0sPLVN--LGZvxw5-Yv3GZS3ecKuqqI,2313
|
|
290
|
+
pyrogram/methods/decorators/on_chat_boost.py,sha256=O4qE9Lw6zVP96nAceJeF2R5jKNMLTEVxE6ehVHToDNA,2226
|
|
291
|
+
pyrogram/methods/decorators/on_chat_join_request.py,sha256=h76GyiUD2o9GyxmySbKoH2VUCEum7MEKUfhexnsFtyk,2303
|
|
292
|
+
pyrogram/methods/decorators/on_chat_member_updated.py,sha256=4ekIZIBRgo1QEVk-pKrhV1Bn1OVTfmdbFypdLsuhHqs,2326
|
|
293
|
+
pyrogram/methods/decorators/on_chosen_inline_result.py,sha256=VLlerETC4w7_8nIxphTrnXRHepHKkjl34mmIka4-6U4,2354
|
|
294
|
+
pyrogram/methods/decorators/on_connect.py,sha256=5lpgGuyM1UYuyTe3pnqKdHXwsnKZtQpgCOjqv81lRfw,1628
|
|
295
|
+
pyrogram/methods/decorators/on_deleted_business_messages.py,sha256=wRuTmQ2rmFilbkznsdiK9XuJVkDamAAz92F1eXTmfi4,2391
|
|
296
|
+
pyrogram/methods/decorators/on_deleted_messages.py,sha256=QEQD3P0iAvMy2-uWPDV9Q24ziGkVlAunUOFAFHE7QHg,2323
|
|
297
|
+
pyrogram/methods/decorators/on_disconnect.py,sha256=zowpkUNeplO1JlVOJKAAl0zcAX5V7YkN2_9pccok0Kc,1649
|
|
298
|
+
pyrogram/methods/decorators/on_edited_business_message.py,sha256=lPDgxNPRsGLSSvJ6teu4-DNds_7sgJON8rCVK0rYNyA,2378
|
|
299
|
+
pyrogram/methods/decorators/on_edited_message.py,sha256=i0SJY4R_rAa3HtjKztUXsaaPUCf-xhSknAQr-IWp3ZM,2310
|
|
300
|
+
pyrogram/methods/decorators/on_error.py,sha256=UT_8ylfg3cE4bDWgIt_1e9T-jgt9SYXQIV76QFHQu_g,2513
|
|
301
|
+
pyrogram/methods/decorators/on_guest_message.py,sha256=AusEqEQbRvUmEgD-2JYumWkaJce82cFn1YZ8jHWo4Fo,2301
|
|
302
|
+
pyrogram/methods/decorators/on_inline_query.py,sha256=UQ5CohXLrHxkwuOoSHXz8Wm0hpG5-b1O-KyN_VFL2j0,2297
|
|
303
|
+
pyrogram/methods/decorators/on_managed_bot.py,sha256=Ce9cl1ipOo3hOc4BvUdX6i_OEUIYoLjSJLbDWw7sk2g,2323
|
|
304
|
+
pyrogram/methods/decorators/on_message.py,sha256=Q2VvJZyKkYLcaG8zKuXevWXy1ORjwCRWN3p4hlKHyPI,2270
|
|
305
|
+
pyrogram/methods/decorators/on_message_reaction.py,sha256=vPwjY_kF42nvRdgsg17AX1RuT0Td09NPW28PV4EKXK4,2230
|
|
306
|
+
pyrogram/methods/decorators/on_message_reaction_count.py,sha256=qdfrFDLNLd3wq4hMYB3KbfKAd_IcSdFDLUR6pEoMgno,2266
|
|
307
|
+
pyrogram/methods/decorators/on_poll.py,sha256=iiGAQ41USBRoEowr8Y8qMB46d6k00lFk1vreOvFqpYw,2243
|
|
308
|
+
pyrogram/methods/decorators/on_pre_checkout_query.py,sha256=pkYdUq5q-Sv1DODWd_-627rJVHVCcsUrg59C79BNswQ,2336
|
|
309
|
+
pyrogram/methods/decorators/on_purchased_paid_media.py,sha256=v8wO011BLs0FFw2C1xw25kDNpLkM3o0qCC4vHI6LSFI,2238
|
|
310
|
+
pyrogram/methods/decorators/on_raw_update.py,sha256=loByJ4D7cZkrwQ04KTfUFjS4gSOHyphVl0hArWFkNOU,2243
|
|
311
|
+
pyrogram/methods/decorators/on_shipping_query.py,sha256=FSXOhUU7ZNVQk3KJFXx_jZPGggduQQ86oV8_33e6TPk,2235
|
|
312
|
+
pyrogram/methods/decorators/on_start.py,sha256=yVcpHJxBjWJydo1D__kwFz52xrn_tU-oFeerLq24f0I,1617
|
|
313
|
+
pyrogram/methods/decorators/on_stop.py,sha256=sapAtFmn_UJiS5NVYtXgLspfnAI3CsaLY2taq1bUlsc,1610
|
|
314
|
+
pyrogram/methods/decorators/on_story.py,sha256=vSf2gE-ocuInctURDxo_C6MQdixThPAayHhcPoAe4CE,2251
|
|
315
|
+
pyrogram/methods/decorators/on_user_status.py,sha256=MnwL4h7kIHSPCqJnyyYXBBdIC2CYxE0HrxcQXCD1alg,2284
|
|
316
|
+
pyrogram/methods/folders/__init__.py,sha256=QvoT2wny_edvfGHD8IjfmelTCPdujgbmqJgc_k-ViaA,947
|
|
317
|
+
pyrogram/methods/folders/check_chat_folder_invite_link.py,sha256=xoKNuAWMM5OTfVqcLUbNJRFQpsa0Rn2gcVl7YkTYvOA,2031
|
|
318
|
+
pyrogram/methods/invite_links/__init__.py,sha256=jJAxU6EIgqJ8_NjLiI5fHJdczFed98Y-5cNJKfG8jGs,2435
|
|
319
|
+
pyrogram/methods/invite_links/approve_all_chat_join_requests.py,sha256=Y8ls46X7Hx0mSAbhQEmTIZaqSeUIT0_4etVw2rmO0DQ,1894
|
|
320
|
+
pyrogram/methods/invite_links/approve_chat_join_request.py,sha256=aKt3uVOdYzmSjlR17Thdt17iihAGSj4i0Ib4wszvQhI,1924
|
|
321
|
+
pyrogram/methods/invite_links/create_chat_invite_link.py,sha256=fKeu5Xa2_Ho4XIoDoIPFRely1fvfXFTH5uA9qUBAVRY,3369
|
|
322
|
+
pyrogram/methods/invite_links/decline_all_chat_join_requests.py,sha256=J6tym1uAViGJJBpj7jmKCB-gRfRuSF6P9b8orywCdg4,1895
|
|
323
|
+
pyrogram/methods/invite_links/decline_chat_join_request.py,sha256=MK7-OBbbiQVzVHZXSufHvNjZj2nDqg_CbbSCIFHARiE,1925
|
|
324
|
+
pyrogram/methods/invite_links/delete_chat_admin_invite_links.py,sha256=d68Q_qjmAavM6-vl6xxiFHANlXRn8qXNxu_Gzq-su54,2031
|
|
325
|
+
pyrogram/methods/invite_links/delete_chat_invite_link.py,sha256=bsfuBTZmQl8dE7OXk-54W11s8Cc1_gIORkzyZR839Ss,1751
|
|
326
|
+
pyrogram/methods/invite_links/edit_chat_invite_link.py,sha256=ZNogt99XP9ggAG3DFsSRjTFb3BxfTHM1vAAUyzu_eDs,3533
|
|
327
|
+
pyrogram/methods/invite_links/export_chat_invite_link.py,sha256=ImYN53L07fcK2igJsEQELwVJ0dRuayOraVM8ye3L8Z8,2582
|
|
328
|
+
pyrogram/methods/invite_links/get_chat_admin_invite_links.py,sha256=Qrk3GKlk4Oy5t1grU_6Eq1IgJBzhSYLWt75-Fw3QkcI,3556
|
|
329
|
+
pyrogram/methods/invite_links/get_chat_admin_invite_links_count.py,sha256=zoZdXvgRRrw75wV0x6eQEHLpAdUF1KzJKJoz5JPtlW8,2335
|
|
330
|
+
pyrogram/methods/invite_links/get_chat_admins_with_invite_links.py,sha256=j4acqHoph85S3d_ztZP0QgIKAgMwX1h5aEtmTp0vhWg,1997
|
|
331
|
+
pyrogram/methods/invite_links/get_chat_invite_link.py,sha256=9QIlxjB3XpjnPId9cflSY49idtPHwlJOSBJqMZS_AHg,1884
|
|
332
|
+
pyrogram/methods/invite_links/get_chat_invite_link_joiners.py,sha256=ssIsQ3LKh0ZhlcwkI0OYIBM55LepRrFv5QeeQ5jusEk,2918
|
|
333
|
+
pyrogram/methods/invite_links/get_chat_invite_link_joiners_count.py,sha256=H-uRoL2JRlrZbXxwbVdb0VqxQsijDX6DTfEaDXljk1g,1929
|
|
334
|
+
pyrogram/methods/invite_links/get_chat_join_requests.py,sha256=iw5TbuS81IxRWssB_f0nUPZUVgJjUbAnz5QTLkXl3CU,2937
|
|
335
|
+
pyrogram/methods/invite_links/revoke_chat_invite_link.py,sha256=zY_-XAQYXb6B0C1-7Zl6AoYpkMPKjrVhC6MTfaVZMLQ,2329
|
|
336
|
+
pyrogram/methods/messages/__init__.py,sha256=QgJJTDWf-xsRNXFFESzZVjM-xqB3_3saoNf2O6s2T5E,6934
|
|
337
|
+
pyrogram/methods/messages/add_checklist_tasks.py,sha256=_IQXSo3mxT2EwuGAzYCLXJbdXPdhkKxtK0Oz_cy_uK0,2529
|
|
338
|
+
pyrogram/methods/messages/add_poll_option.py,sha256=lvLpzcfcFVhG-Extmqo1K8_tzDqfGNQCe8_49bDNIMo,2659
|
|
339
|
+
pyrogram/methods/messages/add_to_gifs.py,sha256=xieHTcAFDkxNdFdcnqy39Sj3R7Ok8q021uJmd6-jxd8,1989
|
|
340
|
+
pyrogram/methods/messages/approve_suggested_post.py,sha256=2V18lOWfDTrmpfG6KosA6AhZqYsgNq_SRESXVty7PXM,2400
|
|
341
|
+
pyrogram/methods/messages/compose_text_with_ai.py,sha256=cA8IumgTrarrWJxC0P2SbteHFdQQixyxL6S1__r6UNo,3581
|
|
342
|
+
pyrogram/methods/messages/copy_media_group.py,sha256=Nh2kzdJ25zm9wJX46vgBY75mL825gQyEZgObnaOGqvQ,10120
|
|
343
|
+
pyrogram/methods/messages/copy_message.py,sha256=RlAo5AsJtN0lbJt3cPc8uVIJr1-bO9-YagnxtL-deJ8,7561
|
|
344
|
+
pyrogram/methods/messages/decline_suggested_post.py,sha256=dlU_ZTE-MLRSQy43mjbORwuA7B4ITHGrRbsvRUvbVFg,2114
|
|
345
|
+
pyrogram/methods/messages/delete_chat_history.py,sha256=Bj0ViIZXLHsZPV25Im2IOz93eI2xGPbS_SmVqiwb8Bs,3581
|
|
346
|
+
pyrogram/methods/messages/delete_direct_messages_chat_topic_history.py,sha256=gSTLvDD_maXbPlsnFuTO1UJhYjt4764revtnklLECbU,2659
|
|
347
|
+
pyrogram/methods/messages/delete_messages.py,sha256=g0e7xK7DXzNSoO8KDwUL-nzhgAp0rmRwScsVnz3yDEU,4645
|
|
348
|
+
pyrogram/methods/messages/delete_poll_option.py,sha256=iPy4ZjAtxIu-ZhgCzPtaVSrKjZ0y6rcwFGCI4avKI5E,2447
|
|
349
|
+
pyrogram/methods/messages/download_media.py,sha256=T_X5IJL_ppb7WU53DmTVOIdBBku5Rkyrgjrz0mtsuHQ,14031
|
|
350
|
+
pyrogram/methods/messages/edit_inline_caption.py,sha256=dmr8PNbsk1J_N5PPsHowfiAQqeVkUA-JfOOWZlgw_Ho,2271
|
|
351
|
+
pyrogram/methods/messages/edit_inline_media.py,sha256=1SSgwlMaF3DB3XtJ2dC4Oz1U56PdnQgqPpsBiG9g_kI,10465
|
|
352
|
+
pyrogram/methods/messages/edit_inline_reply_markup.py,sha256=4Do9yWPoNQyrcR_AgRdqFH-Kt0UANCcWjDKg85-6cyw,2438
|
|
353
|
+
pyrogram/methods/messages/edit_inline_text.py,sha256=dTCEliylhxHJepXpufmw-w7ULRoswDDLS0uaSalw318,4754
|
|
354
|
+
pyrogram/methods/messages/edit_message_caption.py,sha256=WOjOLeOqismZycOjrGcotelN2e8ImxzEodmnT0UceXk,4022
|
|
355
|
+
pyrogram/methods/messages/edit_message_checklist.py,sha256=gVBTRmHAKot5Q6oEsD4r6CPZKc5ZFoMpzfZlFpEsIKM,4317
|
|
356
|
+
pyrogram/methods/messages/edit_message_media.py,sha256=ZyQDT3SQngF_Htevfhxa2B9SPcncWqRoCSD2Rs-yKaw,5722
|
|
357
|
+
pyrogram/methods/messages/edit_message_reply_markup.py,sha256=LhV84o737Kn_fj_Oq_y7AT1w_bpp12Gz_H7-aZVmpYA,3284
|
|
358
|
+
pyrogram/methods/messages/edit_message_text.py,sha256=wmS4ik2ntrVsxicUq_GPvBr09sYLsqe-zGAEsVqHUUA,6963
|
|
359
|
+
pyrogram/methods/messages/fix_text_with_ai.py,sha256=X6t6BHiJpcAr_Cv5WFIexCGEw5eMiZgxCcyasnxsO6A,1939
|
|
360
|
+
pyrogram/methods/messages/forward_media_group.py,sha256=rppX7zvGfIYD9dMlIBEAfjIDXJEk1jRiicgoyKWhAHA,5393
|
|
361
|
+
pyrogram/methods/messages/forward_messages.py,sha256=_68Ga67DayxyHKW5i1M7tqGKp2fUY6amT9q4_Zk7TdE,6250
|
|
362
|
+
pyrogram/methods/messages/get_available_effects.py,sha256=RToVz6DmVHsqsRG9iC_LHKKeFMon6nXfvTqYIP8K7VM,1874
|
|
363
|
+
pyrogram/methods/messages/get_chat_history.py,sha256=mY1d6H8ZehGo3Jh2d_IYJQBCHivlMeRt42qPDYlVowM,6073
|
|
364
|
+
pyrogram/methods/messages/get_chat_history_count.py,sha256=9n-fiMIzKwx4BV--1a8yZNzy8NpPNPbHR-GsULeF5mQ,2832
|
|
365
|
+
pyrogram/methods/messages/get_custom_emoji_stickers.py,sha256=I7YB2ciFiQdRMZjlGGLp-mfBnj84rRqJ2I7OZScQPYw,1973
|
|
366
|
+
pyrogram/methods/messages/get_direct_messages_chat_topic_history.py,sha256=DQwNar69oTB2LHpVa56_xikWi4bXifrLAlhQExXsOTQ,5131
|
|
367
|
+
pyrogram/methods/messages/get_discussion_message.py,sha256=EDksLjNnqbAZrgUFbtGGaimXmdNHgaAnqQ9tMC9NHfI,2229
|
|
368
|
+
pyrogram/methods/messages/get_discussion_replies.py,sha256=L1rh-Nky5Xtw22rCqH7W1ZOmJAK2NM0Ef8Lm30WjF74,2798
|
|
369
|
+
pyrogram/methods/messages/get_discussion_replies_count.py,sha256=3lMJGwc16XR36An0MqsnrccT6PKhy_eSVuUD2Cwuvro,1950
|
|
370
|
+
pyrogram/methods/messages/get_main_web_app.py,sha256=HZpmAo3wJjW59HJMkte3gx9gQ1Mw8qzGQ072Hm0D1bA,2387
|
|
371
|
+
pyrogram/methods/messages/get_media_group.py,sha256=QrSXEjUasdgjv0iNEnQXqdKU6-wXFXwsTtCHNuUSsdU,2783
|
|
372
|
+
pyrogram/methods/messages/get_messages.py,sha256=Vy-1AuPSfSln9quqUSgudQNWKgsNeIPz8v2FtpJR3Qw,8778
|
|
373
|
+
pyrogram/methods/messages/get_scheduled_messages.py,sha256=L2GY2FQh1sUQDBz4QV3WwGHJPkrQMvlolMzuYizKJhs,2159
|
|
374
|
+
pyrogram/methods/messages/get_stickers.py,sha256=1GwCPRpdfgL20XSn35Cn86c-Ngs3naBGWkgpN8mPmxw,2132
|
|
375
|
+
pyrogram/methods/messages/get_user_personal_chat_messages.py,sha256=vVrnm38dBGnoSEbGoCR2Fow4yD0dprbMoLRmi7-nb_g,3304
|
|
376
|
+
pyrogram/methods/messages/get_web_app_link_url.py,sha256=8uWA_garPTTnwkJSu7ZifU9imK2t8U6jrWgghdPvm3o,2878
|
|
377
|
+
pyrogram/methods/messages/get_web_app_url.py,sha256=RpBXOse92A06DBVtVDHqo2lvY4DWd71FPsu2aIv6xBY,2569
|
|
378
|
+
pyrogram/methods/messages/mark_checklist_tasks_as_done.py,sha256=iWpB5Unc1OrLfrMNgsU7Qy3Ro1onLbwpnlYPjCiMzUA,2668
|
|
379
|
+
pyrogram/methods/messages/open_web_app.py,sha256=5n9IwDVaIbKIV6rsF_h5GbRat0Gs2IYQr4kLi4zj59Q,3632
|
|
380
|
+
pyrogram/methods/messages/read_chat_history.py,sha256=zbpkJ4PLWS34mLWx-GTC5Li2gNciprCdpT41jTvv3UY,2527
|
|
381
|
+
pyrogram/methods/messages/read_mentions.py,sha256=AT47L0G6dXu53nw_yxGuCt9ZRqCtXo6fPww7PqEXnyE,2283
|
|
382
|
+
pyrogram/methods/messages/read_reactions.py,sha256=NqQsjUKivsDPg8FM29w_3rw-Jg7LToXL9sy3cvs6q6A,2294
|
|
383
|
+
pyrogram/methods/messages/retract_vote.py,sha256=hQaqP3J8L_iW30F3tdy1ja2_q7XibxdS5JzhADzLDLk,2249
|
|
384
|
+
pyrogram/methods/messages/search_global.py,sha256=csZn_PRX_7o_wuECoLFLYTrJ6A_KCeTPJ4Xy65c03jw,4727
|
|
385
|
+
pyrogram/methods/messages/search_global_count.py,sha256=1YbF7lip7W_hWIempISG57nkqque2nA0mSLh-UdzMKI,2750
|
|
386
|
+
pyrogram/methods/messages/search_messages.py,sha256=iqkgmXkudwSxm9SkqHLkfGDkvWVASn7tlyBn85RXG58,7176
|
|
387
|
+
pyrogram/methods/messages/search_messages_count.py,sha256=e40OUZtm8fyMJchbk0cxccf4VRzP_l3M81dOg9z2AiA,3940
|
|
388
|
+
pyrogram/methods/messages/search_posts.py,sha256=wEqSI2lr48EJzapvm01JAjbpMoL7WxYEMwCJBhADRtQ,3069
|
|
389
|
+
pyrogram/methods/messages/search_posts_count.py,sha256=NV2VGlYIDo3nad94flMFdGkeMXjcAAAQUxUi3Oqccc4,1767
|
|
390
|
+
pyrogram/methods/messages/send_animation.py,sha256=KfTMvQkU-24MG6s86YC8tmf_yn5ondeQMIRZeGGq3sI,17683
|
|
391
|
+
pyrogram/methods/messages/send_audio.py,sha256=gPqsNFGvfORI-9EgSduwt0Z4TwnnP9FH0b_AuBGRJqQ,15725
|
|
392
|
+
pyrogram/methods/messages/send_cached_media.py,sha256=KD0GLshyE_GaWZlSicsCWhVVK6PAPQFfs5AWIXblcGA,9971
|
|
393
|
+
pyrogram/methods/messages/send_chat_action.py,sha256=1W6IGnya1QzeUWEPFewfzWapmiOCZPcMq7SDKn3faRE,3085
|
|
394
|
+
pyrogram/methods/messages/send_checklist.py,sha256=t0s_G9EAzeLfCfaSUSbb8_vR0ag6avtvymv5Wu1uY_E,6478
|
|
395
|
+
pyrogram/methods/messages/send_contact.py,sha256=pvn8Z2ul08SjsttOR5QAONmPatV0fdwq9hRF7h-V0SM,8938
|
|
396
|
+
pyrogram/methods/messages/send_dice.py,sha256=xjjtJhFa_bYDk7GxZ1z_irEei7lRq3FG2csl6-mmmU8,9256
|
|
397
|
+
pyrogram/methods/messages/send_document.py,sha256=E1h5yYtf8vjLdDFcn_ETLiaKJmm6s2RHnk3rxGHVM3k,14807
|
|
398
|
+
pyrogram/methods/messages/send_live_photo.py,sha256=Dp4L-e7kuT9TdhFt7Wbg32qlB9yP6sCbqpgf3riviTc,11856
|
|
399
|
+
pyrogram/methods/messages/send_location.py,sha256=Af8I9hvAE6nlFCD3uMaBzI0j8VS7T-VlwBC9-8htzDo,10216
|
|
400
|
+
pyrogram/methods/messages/send_media_group.py,sha256=XkFZHm75z_gKur8Xilai6igkMe1cSaUA7cmcEuHTILA,25304
|
|
401
|
+
pyrogram/methods/messages/send_message.py,sha256=bGPWN7gHDk7r9dJHAeVOt9CRyxAsGbANL5GOiX5C7e0,15017
|
|
402
|
+
pyrogram/methods/messages/send_message_draft.py,sha256=bEUNtkv_5ttSJLiuZDgcr7Frh8AjlyKDkDtvNHIvVyg,4006
|
|
403
|
+
pyrogram/methods/messages/send_paid_media.py,sha256=MVFXWB0MLQYFg8ZdK-rKEw-fUFhoptxHs5uca9wLMzA,17536
|
|
404
|
+
pyrogram/methods/messages/send_paid_reaction.py,sha256=bx9CSieJo76tzdp8lL4CafHjeENfp6_8MhKFwdHwdZ8,2684
|
|
405
|
+
pyrogram/methods/messages/send_photo.py,sha256=qXe3PqcB3G_KeSln_DYaZybHiS9P5LvR9HhZB5Nk6fA,14510
|
|
406
|
+
pyrogram/methods/messages/send_poll.py,sha256=0hGAnMNSDh5Efk7QiJJikiyAUp-Sh1sq2ngZ0iLXefk,14652
|
|
407
|
+
pyrogram/methods/messages/send_reaction.py,sha256=ViJW-0ubPgEp69pyX1AENImxIptN1taWc9X9B19QC9E,4098
|
|
408
|
+
pyrogram/methods/messages/send_rich_message.py,sha256=J5wq0NnHN9qKFClnF3kWoBwF3gVKvHBv2uwJ2fjb10c,6791
|
|
409
|
+
pyrogram/methods/messages/send_rich_message_draft.py,sha256=hb0QJ7472il-RUCsNZbDyKOZcVuqsscCR220Sk-CFMs,3410
|
|
410
|
+
pyrogram/methods/messages/send_screenshot_notification.py,sha256=umNrPhYFAW4SHwAv5oDmCLfLSxPndI-QFdjyhbpZBSk,2386
|
|
411
|
+
pyrogram/methods/messages/send_sticker.py,sha256=5nAddgNHFvPLQiOIf83-uq7ATHX1IbtNKU_sE9ho1Sc,13937
|
|
412
|
+
pyrogram/methods/messages/send_venue.py,sha256=VluRsRlXa5V9I3C14dGdpP-kKb3WH9dfdvAtdPVbtbE,9485
|
|
413
|
+
pyrogram/methods/messages/send_video.py,sha256=CandWsx_cBh5zOSmZr-6xJOrr8urQ823sfNhjVOqBKc,20788
|
|
414
|
+
pyrogram/methods/messages/send_video_note.py,sha256=D_VbPD-8qfPlEAeSUrttt4qaOUDB17mR3c3qrhNeMZw,15236
|
|
415
|
+
pyrogram/methods/messages/send_voice.py,sha256=GE-J2Zf3weFdluJCNC-SUTUKyJ0ZRPuAgzf_LmPOioE,14740
|
|
416
|
+
pyrogram/methods/messages/send_web_page.py,sha256=gwWUDI4f0nM33xQ1_Rz6YdkqBNC3OvYeML6cb4ePTiw,8305
|
|
417
|
+
pyrogram/methods/messages/set_direct_messages_chat_topic_is_marked_as_unread.py,sha256=mMZ1JGIRzzyWiwrZydk43dvXRztiyCA6VQpfUrCmCPA,2358
|
|
418
|
+
pyrogram/methods/messages/start_bot.py,sha256=FLsh9vDZtDxnGjqpdLQS2IHJ6qY_rwDyIQ4iZYruN6k,2501
|
|
419
|
+
pyrogram/methods/messages/stop_poll.py,sha256=oGASdQ98ky1HeF2vlCMFPtPyoCdg-I80OPfx08eDjxc,3044
|
|
420
|
+
pyrogram/methods/messages/stream_media.py,sha256=3zGibhZmLYZhTuusLyFdZZ9zqLLt7F9dJKMdbysnUIo,3937
|
|
421
|
+
pyrogram/methods/messages/summarize_message.py,sha256=0vkgIV1FzpkZplNFaskwKk7cSfjvNKOBZvH2jCzdyIw,3622
|
|
422
|
+
pyrogram/methods/messages/translate_message_text.py,sha256=9jpmmcpYzP0Dc1FFdLJHyE58B4oan6kjcsJKrhESWPE,3549
|
|
423
|
+
pyrogram/methods/messages/translate_text.py,sha256=27u5oQ5Bdn-KOmwmNtunOBUvTUcW_fnwIWgjg_aZG8g,3234
|
|
424
|
+
pyrogram/methods/messages/view_messages.py,sha256=togU0S6k3tNKVxe7NT-hWBWVOpEjiZtGr99wLF_3A70,1991
|
|
425
|
+
pyrogram/methods/messages/vote_poll.py,sha256=VwN6D6Zb2uHDdpm_hq2D6HZQn_8-0K1Ol-HwPnmxbNU,2649
|
|
426
|
+
pyrogram/methods/password/__init__.py,sha256=Ok9BhMf3Z96wqF3US1qqjGT67z5mylwQdDCcnt7i-L8,1088
|
|
427
|
+
pyrogram/methods/password/change_cloud_password.py,sha256=UYwjT1MsALY49cixsm-XY-Kw9IuoeDESecAyVVoBnec,2797
|
|
428
|
+
pyrogram/methods/password/enable_cloud_password.py,sha256=W5tVXfwoGCgfvBM7EDlx976Hazl21lVKjbpK8Rc-iFQ,3006
|
|
429
|
+
pyrogram/methods/password/remove_cloud_password.py,sha256=JidQpLomzEs6teTcF3zNcthYrapIvCfhBfgaBptcyyM,2143
|
|
430
|
+
pyrogram/methods/payments/__init__.py,sha256=HNpFQZYD_IqHNw4Q4-1vVQV8jJS1HKgdo56GLayYAU4,4120
|
|
431
|
+
pyrogram/methods/payments/add_collection_gifts.py,sha256=_yDJn2etqdPTUtHKcFw-F2kkBRjBW3QQquiqR1NMPyQ,2499
|
|
432
|
+
pyrogram/methods/payments/apply_gift_code.py,sha256=acytpp37NOYm7OuWE0utuhWCE7Z6AVpbRIbkXTaAMrw,1935
|
|
433
|
+
pyrogram/methods/payments/buy_gift_upgrade.py,sha256=1BLHi3P-MuZRRiMyxdmx2Y4oGvAeFYmXptzjnX5weLM,2623
|
|
434
|
+
pyrogram/methods/payments/check_gift_code.py,sha256=jmUbB9OIqkwUlT8veF1lWP1Bgav75YHRq3Hp6SIDqfM,2176
|
|
435
|
+
pyrogram/methods/payments/convert_gift_to_stars.py,sha256=PkPZDx-GYuzBQBxnBnOUfo22MF7iB6G18OfOgFxnIDg,2062
|
|
436
|
+
pyrogram/methods/payments/craft_gift.py,sha256=6fW8d_HfFZF6DEc8AeAiUycFFQ3YU3Lhx4fEqt9PXj4,2417
|
|
437
|
+
pyrogram/methods/payments/create_gift_collection.py,sha256=MvtF-EOYzDycc_5gxb_7XnaQ5plkftjp95nMgkuhlw4,2352
|
|
438
|
+
pyrogram/methods/payments/delete_gift_collection.py,sha256=lK43HXmdB7UArT0ifFoOmMazu5bfqrh0jFso3cTcV8A,1932
|
|
439
|
+
pyrogram/methods/payments/drop_gift_original_details.py,sha256=kRzdvnjJviE3is1iZ9J8UJ8j3rishsxknG5LLgIhfnY,2484
|
|
440
|
+
pyrogram/methods/payments/edit_star_subscription.py,sha256=aDkPmN99h2DS2jr7TZ6eIEUK-brw6Fd0LHsf5ZEgbho,1662
|
|
441
|
+
pyrogram/methods/payments/get_available_gifts.py,sha256=2O1iVfsXX0fR7qNSihbidlOV5JYtwgxe3XJB2m54sDQ,1677
|
|
442
|
+
pyrogram/methods/payments/get_chat_gifts.py,sha256=Vg1dGaq9E9tGO9BEUj9XGdrnm6BnD3oA3LVxTK_JRwo,5866
|
|
443
|
+
pyrogram/methods/payments/get_chat_gifts_count.py,sha256=BJrxbnfHtPE88qhYMClX-IUs2NJY6RXg1aag-x24CJA,2057
|
|
444
|
+
pyrogram/methods/payments/get_gift_auction_state.py,sha256=aVl22GWYv6MAlqHevDplFI1JzLpwmY-yv_xfHwisOYw,2236
|
|
445
|
+
pyrogram/methods/payments/get_gift_collections.py,sha256=8OAQndng4pA2uZiTdJdNu8qBpswzyx4giaKSdYueB0g,1938
|
|
446
|
+
pyrogram/methods/payments/get_gift_upgrade_preview.py,sha256=PmnyB59AytJrLCWYBd_sJ07E7nxi4oXU64ZKcLdcRcg,1783
|
|
447
|
+
pyrogram/methods/payments/get_gift_upgrade_variants.py,sha256=1Rk__YnSBtbLt0h4jyYVdfyeqYlm8Q2lUNyCfZTb4Y4,1646
|
|
448
|
+
pyrogram/methods/payments/get_gifts_for_crafting.py,sha256=mgCtA6zNxQH7FQXqPJDAgZ_B8tyGGteOLDTxqmreagw,2723
|
|
449
|
+
pyrogram/methods/payments/get_payment_form.py,sha256=toDJ0B1ULX00fvDn4yV4yU3ASN4iwMY3Grf7WQixHkA,2318
|
|
450
|
+
pyrogram/methods/payments/get_stars_balance.py,sha256=QH9Q1z47UhS7Bf2Tp4UtSY0_yIOBxM8BbTZ6ka4MZfk,2189
|
|
451
|
+
pyrogram/methods/payments/get_ton_balance.py,sha256=0deQP3dFx4ILlqtMphsGs_cqbcPajcyK94IS3nXkPI0,1756
|
|
452
|
+
pyrogram/methods/payments/get_upgraded_gift.py,sha256=T2OkNCah-brDCPU4f8njtbI8PMKXt4h32ceEgHOZpuY,2198
|
|
453
|
+
pyrogram/methods/payments/get_upgraded_gift_value_info.py,sha256=WxdAy8PkloQB--XP2ufPrYGA1prpsR0Z2hr3vTjM5Fg,2211
|
|
454
|
+
pyrogram/methods/payments/gift_premium_with_stars.py,sha256=GtAy9tlgRtocgWHk5x2cqzfTDm3LgtX4JkRkeNwWqbE,3577
|
|
455
|
+
pyrogram/methods/payments/hide_gift.py,sha256=RLflz1HrYgNqmT8meU7p7YUCLw6KVg5KqFzU61mEErk,2181
|
|
456
|
+
pyrogram/methods/payments/increase_gift_auction_bid.py,sha256=mFxSYSshpM1yoBg1egxMydSNM3Qp1cLHJhNctOP5WEo,2227
|
|
457
|
+
pyrogram/methods/payments/place_gift_auction_bid.py,sha256=E5s1bDOS7HJqbP7gwNLlfbJFg4S3HtxLA-E2SSnCRBg,4037
|
|
458
|
+
pyrogram/methods/payments/process_gift_purchase_offer.py,sha256=JP_V-EivwhdCu3UATWPiAKwRxMME7aIY6s_CGna51RU,1798
|
|
459
|
+
pyrogram/methods/payments/remove_collection_gifts.py,sha256=gl8g87X8sDWSAaoUXPf0DAbEbS8qQf_DJlHbR0alBU8,2390
|
|
460
|
+
pyrogram/methods/payments/reorder_collection_gifts.py,sha256=fH-xWj474O3r5e0Eh3AFkEtM_fBNqgN3gUIlGHvzRB8,2528
|
|
461
|
+
pyrogram/methods/payments/reorder_gift_collections.py,sha256=dTiPZHxwzNM_HVnM5LrpRTow157JXq7PYIc2UhOreIk,1959
|
|
462
|
+
pyrogram/methods/payments/reuse_star_subscription.py,sha256=TnYi5b1kqJHQMCd-jh6XRgWPytCw-Zw-prDNEqlLmH0,1543
|
|
463
|
+
pyrogram/methods/payments/search_gifts_for_resale.py,sha256=k1fMCP-gkmI_-NE_qdPDblOG6UwVgpvNSSE_FoL3bak,4442
|
|
464
|
+
pyrogram/methods/payments/send_gift.py,sha256=sF_tXac-LL61EfrQVK63pi4Kj_KyUMn_53aYdvMKz58,4062
|
|
465
|
+
pyrogram/methods/payments/send_gift_purchase_offer.py,sha256=YKL_HxMkKekQcTxygscLJ0IP3UvmkLOAkU5XCUiaV9g,2971
|
|
466
|
+
pyrogram/methods/payments/send_payment_form.py,sha256=r_2yEJwSczJvuodxfnoBeI5lrbrG0kJf7VREcv2llhU,3502
|
|
467
|
+
pyrogram/methods/payments/send_resold_gift.py,sha256=aoOrt1HUmmjKkSNWKU0WLBE7XVYWPGMd15kdQu56Zq8,4340
|
|
468
|
+
pyrogram/methods/payments/set_gift_collection_name.py,sha256=ZJNRiRfv_twU93tpEieZ5CvzhhiDKumDmalHjt7rcos,2181
|
|
469
|
+
pyrogram/methods/payments/set_gift_resale_price.py,sha256=1qNN5K2gThb6syySLqggSZVWfeUccb803l1rqCiL2ME,2834
|
|
470
|
+
pyrogram/methods/payments/set_pinned_gifts.py,sha256=EoXqByN05ANy6DauFZXqowGju0ZaB9IfuXQPafbBtOQ,2703
|
|
471
|
+
pyrogram/methods/payments/show_gift.py,sha256=Jl7mDVfoxAz5752gZJTs2LqDcVZIuYN1sSJD2lxDHY8,2185
|
|
472
|
+
pyrogram/methods/payments/suggest_birthday.py,sha256=ze9MV1ufS0eUfDfz4e6W37I3S1bJgq65z479MQ6JqLU,2026
|
|
473
|
+
pyrogram/methods/payments/transfer_gift.py,sha256=SFyPZyplMQMJPDJbKHqZ3E9eYBwJo5LB_dUjErIEcrM,4005
|
|
474
|
+
pyrogram/methods/payments/upgrade_gift.py,sha256=y-0kxb-nGLCxSmFmtUgtvMnXzkismq5w-l0Oz44-WDQ,4336
|
|
475
|
+
pyrogram/methods/phone/__init__.py,sha256=Kuxdwyhpl5vODJbXfLCdU1wdOaqlulpUFWiggl4W9yg,910
|
|
476
|
+
pyrogram/methods/phone/get_call_members.py,sha256=RDwBQnQUubUH5sthNsATn8y2zgqdMlqbKOWm3RmJPfw,3409
|
|
477
|
+
pyrogram/methods/premium/__init__.py,sha256=ctfEOOfgWNN7JV3OQWShdNyPCSJtOM7kq3H2CtuC2RQ,1015
|
|
478
|
+
pyrogram/methods/premium/apply_boost.py,sha256=uEMkpWDb30ruPJQpZI120vDWi4aFcS0QWS8aSxji06c,1843
|
|
479
|
+
pyrogram/methods/premium/get_boosts.py,sha256=h6dxFK_-8I-rKDGj7Xug0hVY_XKlZ2_J67dJzx-cmvw,1690
|
|
480
|
+
pyrogram/methods/premium/get_boosts_status.py,sha256=FMoPnOuSHxTBna2OSetEK0jOH6hROFtbC4QXHVCqvro,1547
|
|
481
|
+
pyrogram/methods/stories/__init__.py,sha256=Onmb-mxhvsQgvCYWNnVcS-hYIgK08WtaoCKcInY5s5A,2194
|
|
482
|
+
pyrogram/methods/stories/can_post_stories.py,sha256=Zs93fO8XzP_WicVcJtsy8-yByldydn3r8uSkg_1Ux4A,1759
|
|
483
|
+
pyrogram/methods/stories/copy_story.py,sha256=bHxqXWzHu8LIzcBxrJWnNNkzq0EB8BuTUETS96XGML4,4878
|
|
484
|
+
pyrogram/methods/stories/delete_stories.py,sha256=qZ4FezuA_pwiNClsv_FsskcHssoI66uDfno7pEzdPmo,2274
|
|
485
|
+
pyrogram/methods/stories/edit_story_caption.py,sha256=hmlWrpawt7y61GXj-vBGOkFIt2sM2MUS1_lf8BvZs6Y,3085
|
|
486
|
+
pyrogram/methods/stories/edit_story_media.py,sha256=q469htjP-Khl34zZWBCdlTqKODUuCSrHM0OuHZhyfLE,7719
|
|
487
|
+
pyrogram/methods/stories/edit_story_privacy.py,sha256=dTlWE9V-4RkiuIpHhMCSID77fobpIjq2aHWV5hdSfdI,5792
|
|
488
|
+
pyrogram/methods/stories/enable_stealth_mode.py,sha256=ec8Ntx2x2Co2fbJKuGDGWcK8YfGQry2JtPaZRJxhU_Q,2668
|
|
489
|
+
pyrogram/methods/stories/forward_story.py,sha256=-Hwm1bnxI8zXxaX56C40G-n8HHyqrr2DQ2QHopFT-AQ,5831
|
|
490
|
+
pyrogram/methods/stories/get_all_stories.py,sha256=Byjwgqwlds453f05zcC4TTIkPN4RezZRs9Zx7x75t5M,3038
|
|
491
|
+
pyrogram/methods/stories/get_archived_stories.py,sha256=3LxMxfVMcTxT7iFK1-deHok6pWXWPcxG6q51btdYXdg,3182
|
|
492
|
+
pyrogram/methods/stories/get_chat_stories.py,sha256=Y-I7ZcWjN_SnQ4BQtutwRC0Zi9aOR_2ZrLf9VFmXmb0,2467
|
|
493
|
+
pyrogram/methods/stories/get_pinned_stories.py,sha256=ls1bjMYeUolpQFBa6ekc8L69zdhiUaFl4CTzOWPQu1E,3414
|
|
494
|
+
pyrogram/methods/stories/get_stories.py,sha256=Opa5lMSNwxti1UW5-mEGQhUowL6P8myNNzTzmDDqWFo,3804
|
|
495
|
+
pyrogram/methods/stories/get_story_views.py,sha256=GFiwy9BiAUwKQFimUX8VVU7y5EsUx7juZ0CBk80L0Ys,3972
|
|
496
|
+
pyrogram/methods/stories/hide_chat_stories.py,sha256=iB8tUReFRRvtljDsPJMq9EulQQkmqUeuLjGL3mCTm-U,1995
|
|
497
|
+
pyrogram/methods/stories/pin_chat_stories.py,sha256=gfdTmnGj1ZzpFZR7eRsXM6hjqrPkoBGECLTx2-O88zY,2234
|
|
498
|
+
pyrogram/methods/stories/read_chat_stories.py,sha256=oCfnpp2xF8isLv-d7Ou-qWZ7PFsnC52xZcbNi6g-7z4,2320
|
|
499
|
+
pyrogram/methods/stories/send_story.py,sha256=5oZV_qssl6sOBey5Uba56dbujPw7Y07GIpMr7bPoAGQ,12970
|
|
500
|
+
pyrogram/methods/stories/show_chat_stories.py,sha256=bOx4UGtSDJeCa3rR6QypxHOldosgRBbyFR3GJNeZFd0,1975
|
|
501
|
+
pyrogram/methods/stories/unpin_chat_stories.py,sha256=coiLXu9kAjwu21lmBKMjrrZeDUosRwwyQk5Hvkog8qU,2254
|
|
502
|
+
pyrogram/methods/stories/view_stories.py,sha256=1baVWJB0jmDFQ0MnnOls7T5BweKstyDHp1tqpSn0ABE,2034
|
|
503
|
+
pyrogram/methods/users/__init__.py,sha256=ckmgBSOuZrDsBTQmnwoZK1dldsVdZEOEFKXN8nWoatA,2059
|
|
504
|
+
pyrogram/methods/users/block_user.py,sha256=Kt3v03odPUpkD494X0kmF-kqeCN5arqSrERk0ocsxxo,1770
|
|
505
|
+
pyrogram/methods/users/check_username.py,sha256=HO0E79nen8JZNIUBxzddKzWxaWXyhNKlsZUm6WYD1rQ,2026
|
|
506
|
+
pyrogram/methods/users/delete_profile_photos.py,sha256=XraLg8Oo33UzUZN_7lBitl8scCTwgpaFnjjWJC2GGJw,2242
|
|
507
|
+
pyrogram/methods/users/get_chat_audios.py,sha256=1LGCdp22lQ_1be5bIOmVX73Z5qXv6jD0zytf7SSkSZM,3412
|
|
508
|
+
pyrogram/methods/users/get_chat_audios_count.py,sha256=G54EFce85TSzPCIWxZUpc6oDsVoeLh_ujb6BG-ehCQQ,2009
|
|
509
|
+
pyrogram/methods/users/get_chat_photos.py,sha256=FI47E1p_rHwDtHEXcCt4Nughf_hhI72uWnxB9CVKYMs,5305
|
|
510
|
+
pyrogram/methods/users/get_chat_photos_count.py,sha256=vYmpEokrlTrMs20ltV5bWwO-r07UIy96kMpGfzuX2I4,2509
|
|
511
|
+
pyrogram/methods/users/get_common_chats.py,sha256=soBBRyz8MnSFuE8RYaO1k3lLPyawtCyKGPTeTmA7jkg,2359
|
|
512
|
+
pyrogram/methods/users/get_default_emoji_statuses.py,sha256=Dd-aJ2BFixwg7aNCtW25LUpTV81Zd77C6UIoo9zJvC4,1664
|
|
513
|
+
pyrogram/methods/users/get_me.py,sha256=AmqmzvW7__4sQ5wl727i9etKTUOJq3rlGtZ4xMistKo,1623
|
|
514
|
+
pyrogram/methods/users/get_users.py,sha256=ktcg8-Wsba3pv8NK6tks-nHLdaZcc9fZk5KEFcs0q0Q,2562
|
|
515
|
+
pyrogram/methods/users/set_emoji_status.py,sha256=deXt590I3EgQ2LqnND6Y3e0hiOFD7Vl676pCKFkqBKE,3109
|
|
516
|
+
pyrogram/methods/users/set_personal_channel.py,sha256=2CHiYCtvzn3hRLEWyjyalOqP-zyCvBc-15PAJJf4ZH4,2181
|
|
517
|
+
pyrogram/methods/users/set_profile_photo.py,sha256=S5GZ9Xw-ibqDOJs2EKO8XM1YSLl42kG-ynUi-OWAi6k,6016
|
|
518
|
+
pyrogram/methods/users/set_username.py,sha256=N12t7V2GSXzfQB8MpRfi928gNTyq92AlmG_TdoejBiA,1876
|
|
519
|
+
pyrogram/methods/users/unblock_user.py,sha256=t-TMSJ3ZMzFwCKQjg0cNzQ9Km9GQk4QJgxMBQMooowY,1780
|
|
520
|
+
pyrogram/methods/users/update_birthday.py,sha256=9YRlsXwW77pBhb9JdvB6c65T_WOX10FksKYssK1uu0U,2013
|
|
521
|
+
pyrogram/methods/users/update_profile.py,sha256=FcLw9B1NeOGGFBLF8UZSSr8uhiTYUgpV5YiBAbr53iE,2376
|
|
522
|
+
pyrogram/methods/users/update_status.py,sha256=E-DK_kGGmJU5MiCDn6HHmQBhpTNWXkAdAAtTcSJgfN4,1659
|
|
523
|
+
pyrogram/methods/utilities/__init__.py,sha256=wvcEsNaEbrabTtawjhz8Bo2cnHYZYhvCTtqS4hirRZ0,1253
|
|
524
|
+
pyrogram/methods/utilities/add_handler.py,sha256=3fC7cCBOjvTT1NH3H3scqza6XYcUG1mPVjKhrwZ5ZUw,2685
|
|
525
|
+
pyrogram/methods/utilities/compose.py,sha256=q3oGzYOLpHoANag_uXWGkkLe73vZo0weLqQsYMglNus,2232
|
|
526
|
+
pyrogram/methods/utilities/export_session_string.py,sha256=fDfJQK_IEcR715JuX9gN53UcKKJCDNY5yM3kf9Y2geM,1557
|
|
527
|
+
pyrogram/methods/utilities/idle.py,sha256=IbZwyixa6VRp-I5vGHqGeGBb92asPUW9KN48d6DyOog,2825
|
|
528
|
+
pyrogram/methods/utilities/remove_handler.py,sha256=gPGaFbN25jD7R95yGozX3jiFU0foVq3rhgJK4P1ILcU,2513
|
|
529
|
+
pyrogram/methods/utilities/restart.py,sha256=JKfP7fRub0K0x6FCWHDou8OE0nq4E8JTA20KiwNKpYY,2561
|
|
530
|
+
pyrogram/methods/utilities/run.py,sha256=rcwDJMkVSH8-WK87n_k25ImDaf2LKz2FmOJOwdxEd5g,2514
|
|
531
|
+
pyrogram/methods/utilities/start.py,sha256=tJoeNvDWJPenJyjyY5aAuGIEVAa0rY0PRbcA9DMf_bE,3398
|
|
532
|
+
pyrogram/methods/utilities/stop.py,sha256=KuW1TxeNS2JvmSUz1Fe9URA1WIWxOKqWoQKosiTj7ak,2380
|
|
533
|
+
pyrogram/methods/utilities/stop_transmission.py,sha256=iClg-dNY526ZX51KIAnej6UFQ8xzbfVvyp0QW2uaYRQ,1710
|
|
534
|
+
pyrogram/parser/__init__.py,sha256=_edKp9rOvapFltGr6u-SLH62298yqBdKLe128f04GyI,846
|
|
535
|
+
pyrogram/parser/html.py,sha256=5G3LitOkG98sJ2CcPJ8oy0tlUlgJJT094RxhJDp3Pv8,11002
|
|
536
|
+
pyrogram/parser/markdown.py,sha256=meIc-N47aQ9eqgb4c6GpaDoO-vBTNlbhLzLTwovpK28,12233
|
|
537
|
+
pyrogram/parser/parser.py,sha256=I9uhE5bVkfOFUjQELG8_lY2tFKfj98bawa9QJ5O0uis,2082
|
|
538
|
+
pyrogram/parser/utils.py,sha256=l7kAvlllLyEFqkmPqC_TiAFWf04ORlBCUgiUZK-ludg,1569
|
|
539
|
+
pyrogram/raw/__init__.py,sha256=kJ96Z7VBF3hQvwLWrnHWMWC6LZQCvLb3cTFr1zVgZv4,1040
|
|
540
|
+
pyrogram/raw/all.py,sha256=RrV-C4ZPPCDYBrDSpNYzGrfiI75n2lS0RhDlb1v92YI,155879
|
|
541
|
+
pyrogram/raw/base/__init__.py,sha256=DrokjhtRF-1_huTXUOuQwRx2Z29tTzDp5YWSXqpfSGQ,19965
|
|
542
|
+
pyrogram/raw/base/access_point_rule.py,sha256=GxkVmfMVvzo5k8NjmdrdPn7SNuVy1i8QqCfUfbrtB1U,2104
|
|
543
|
+
pyrogram/raw/base/account_days_ttl.py,sha256=qF9qYInToMoxCxBvKEpnmOVnedyx4r-znou---QjNt4,2303
|
|
544
|
+
pyrogram/raw/base/ai_compose_tone.py,sha256=fK4PUVv9xX0u5EiZduNRK3Lfv1X8iEXKP4bjF1wMJI8,2427
|
|
545
|
+
pyrogram/raw/base/ai_compose_tone_example.py,sha256=J0xed7bYplItCiOUyjkD0U3cNoQ9WTczszy-FTlVy30,2349
|
|
546
|
+
pyrogram/raw/base/attach_menu_bot.py,sha256=ngS0LTx1w5hy64dOja-X17n41e-vf2tXL3pW0F0aqBM,2090
|
|
547
|
+
pyrogram/raw/base/attach_menu_bot_icon.py,sha256=PIz0QHe5VzCCIZW9pJcN5lTwwbgtBMI1zq3i-1-G_2k,2119
|
|
548
|
+
pyrogram/raw/base/attach_menu_bot_icon_color.py,sha256=RQzOWwgpGB8sX3qZzGw7uF0Tg1g748gJE8evRTFBCIc,2155
|
|
549
|
+
pyrogram/raw/base/attach_menu_bots.py,sha256=ploDlrDlN0UrGQeJKyL4C_4OCBV5LnePLBYFsyZMH8E,2421
|
|
550
|
+
pyrogram/raw/base/attach_menu_bots_bot.py,sha256=8mtbr61Dftzy-JPePAz2KtcpyYds6VFWXz9JJAMgGTs,2329
|
|
551
|
+
pyrogram/raw/base/attach_menu_peer_type.py,sha256=fsFhvx8j9oc1tpFVkoegBbASCNQDuUMDpEqlCFBThx8,2578
|
|
552
|
+
pyrogram/raw/base/auction_bid_level.py,sha256=kl30MjR3qoPFh_cJMzVlWeFf0oqJo4rM2PRApodLXNY,2104
|
|
553
|
+
pyrogram/raw/base/authorization.py,sha256=AqXEK60afZDQ9oQ_nzCfrIY2bXD8YzMVsvgsrKHJEoI,2294
|
|
554
|
+
pyrogram/raw/base/auto_download_settings.py,sha256=hfPdELdIyTFFg7QwJbs835YmRjt5UlnY7gql-_SehC0,2139
|
|
555
|
+
pyrogram/raw/base/auto_save_exception.py,sha256=Q4PRPXBSi2-O7vwmo8X9KLA3wPTcqaU7M5NK2XCuThM,2118
|
|
556
|
+
pyrogram/raw/base/auto_save_settings.py,sha256=_s43zZmoMoGgLMy4PB-omMaS_Th_cJelPpKtod9L5vs,2111
|
|
557
|
+
pyrogram/raw/base/available_effect.py,sha256=LeBToncrbBGt_GrULXzY9hkW4o8_SjIkayAJg1L1JdM,2103
|
|
558
|
+
pyrogram/raw/base/available_reaction.py,sha256=XTcDRzJSzfx1zUFKC-sdFVic9cPXaAfHIJMGYuotkeA,2117
|
|
559
|
+
pyrogram/raw/base/bad_msg_notification.py,sha256=I6CeOJ8-gy_F8w1t2IN3NpdcRBs4ebIhPR-K1IT9mr4,2202
|
|
560
|
+
pyrogram/raw/base/bank_card_open_url.py,sha256=m6z5hWl48iX_Psnz71K4wUcPsJ7AYpjLxWetfdczhDw,2105
|
|
561
|
+
pyrogram/raw/base/base_theme.py,sha256=4l85GFb9Ipss4zYv2wVZFgj6Lxaugvo6pm60wUskBn0,2399
|
|
562
|
+
pyrogram/raw/base/bind_auth_key_inner.py,sha256=BBjP0NxFiLuxbE4zcE9JCeNKv2JlXSEjhrmuxLkDcGI,2112
|
|
563
|
+
pyrogram/raw/base/birthday.py,sha256=Z5dbBkPZrkEsjlwZLLzAZbXmJYR391z56rCFQVikRaQ,2053
|
|
564
|
+
pyrogram/raw/base/boost.py,sha256=h9lgKilJ3ZOOHMwJn1v2aEWtGpID5TdEiJkLK5TUe7k,2032
|
|
565
|
+
pyrogram/raw/base/bot_app.py,sha256=HOhXjEXp25pH0Nxp45UQsIEVCPPDRGodeTLZ7RcqR_8,2129
|
|
566
|
+
pyrogram/raw/base/bot_app_settings.py,sha256=lKfbkv3MVtkENna-uffvfTQgkAXptqrTCxIwgJ6yJZk,2097
|
|
567
|
+
pyrogram/raw/base/bot_business_connection.py,sha256=NSzBRljcQDBeHR8M8jBlSGFFGJIa5my6X3BjrcwyUlk,2146
|
|
568
|
+
pyrogram/raw/base/bot_command.py,sha256=YXuyge7AtT4bJpP79Ipu6M_g2UBt3SPBH_ozxdWdh7w,2272
|
|
569
|
+
pyrogram/raw/base/bot_command_scope.py,sha256=hsdVh1w7RbhwcvemdwwMe_8C5-k0EVrGPku_1BJymXQ,2744
|
|
570
|
+
pyrogram/raw/base/bot_info.py,sha256=-FzD6F4VvaVIc_fW6l8fUZ49cWAH-jG3kNvpeqkmGTI,2047
|
|
571
|
+
pyrogram/raw/base/bot_inline_message.py,sha256=X1Tt7XSZvqLFsR3B-XI1n3zvmQFnhXb0nhNASWBP-TQ,2941
|
|
572
|
+
pyrogram/raw/base/bot_inline_result.py,sha256=iodcu7vWOFqW6hdEls6hB9rn3DG3-5gzypqPaVgKSqg,2202
|
|
573
|
+
pyrogram/raw/base/bot_menu_button.py,sha256=e0GuqcpKKlbzsQZcZqQpJTACM0Epy6vVNdllq1ADBrk,2494
|
|
574
|
+
pyrogram/raw/base/bot_preview_media.py,sha256=Ki3AhR5VJiL_FzVSR3ASb63SOtRsmBm3JOCZvINfsC4,2378
|
|
575
|
+
pyrogram/raw/base/bot_verification.py,sha256=0f_Pfe_BLjpjMIjPlzaKU5pQ8B6ErrCqz37vFztVZuk,2103
|
|
576
|
+
pyrogram/raw/base/bot_verifier_settings.py,sha256=uHVlEdaw5hn2qCI5kHQ6yurUmJvJ45bOM8Okrjr1qME,2132
|
|
577
|
+
pyrogram/raw/base/business_away_message.py,sha256=_8sGwAJJfJwWnwakQoVKpubpkMSA0icn9Jdhj4J4WgU,2132
|
|
578
|
+
pyrogram/raw/base/business_away_message_schedule.py,sha256=sKYYBPvkqfq5SvYBwV0lNl0nMmkgknNmUgtqlK6M6I4,2510
|
|
579
|
+
pyrogram/raw/base/business_bot_recipients.py,sha256=Hf1TBXDEe2hXS0Q0-gSjTzEYwMmEwdXGjT3XBLgzpJ4,2146
|
|
580
|
+
pyrogram/raw/base/business_bot_rights.py,sha256=Eazxq3Zev1S-pSvAhEFMwa7ydsGPL7c55ZwoJHei7z4,2118
|
|
581
|
+
pyrogram/raw/base/business_chat_link.py,sha256=SE25_9fKI-iV-ad36IgN1-Cb4KbgLd2dL3M4W-C9-RA,2368
|
|
582
|
+
pyrogram/raw/base/business_greeting_message.py,sha256=ximPtjLXt88P3IK93_xYJkJ3zBC9-yYCsy8zHfSPBVM,2160
|
|
583
|
+
pyrogram/raw/base/business_intro.py,sha256=U5U8bGQoVDxTeaHMCMIiKqQ1gakcqBv-giVa4X8fyzM,2089
|
|
584
|
+
pyrogram/raw/base/business_location.py,sha256=0xZKd-g385qUw03LkJKaBMlSelLtqqoLjzFjfHpNXMg,2110
|
|
585
|
+
pyrogram/raw/base/business_recipients.py,sha256=eto2pDWJmpyh4DBfJnm1SEZsZtgiTH1TMI_FXX7KQVU,2124
|
|
586
|
+
pyrogram/raw/base/business_weekly_open.py,sha256=UJ5D5Zo6KEoVB1lQwYGOt9CgnTvrcsr_vGJVMOwkgwU,2125
|
|
587
|
+
pyrogram/raw/base/business_work_hours.py,sha256=fF4P3q1s6YqGjN1Me9kiFrR6tH__S43l61qP0m60Qbk,2118
|
|
588
|
+
pyrogram/raw/base/cdn_config.py,sha256=q5YD0pgqW0ZN3ghHM1fnSl8cn4v5VWvGHttKK2XSQwc,2263
|
|
589
|
+
pyrogram/raw/base/cdn_public_key.py,sha256=Yv4fqYLrKuT6jqvIYgmMszCee0BSQ8kw19oXrWYK0QA,2083
|
|
590
|
+
pyrogram/raw/base/channel_admin_log_event.py,sha256=SAuP2_XcaKkw_txJ_nFPccWQkuk5B991coF0pwjryaA,2140
|
|
591
|
+
pyrogram/raw/base/channel_admin_log_event_action.py,sha256=2NQrsnJvJSK6BxtU5Fq3q9BPAuv4_3hnbNeS-luZNgA,10558
|
|
592
|
+
pyrogram/raw/base/channel_admin_log_events_filter.py,sha256=XJzfi5roZ_X5LNMriMFG9phhjUnArV7jTAN95g7YSfo,2190
|
|
593
|
+
pyrogram/raw/base/channel_location.py,sha256=6guBHK-j8yWK7Ga68KU7FCX8jC625otrcjRwuR3rTbU,2201
|
|
594
|
+
pyrogram/raw/base/channel_messages_filter.py,sha256=JpYt9XlAK-XgdviPAHi8vYRSsjV61737UwFwmbzIuFU,2262
|
|
595
|
+
pyrogram/raw/base/channel_participant.py,sha256=AiWO3YN3bVnAWyQ_vcxETEhh21ZzjLHBZHqmTqDYDHQ,2658
|
|
596
|
+
pyrogram/raw/base/channel_participants_filter.py,sha256=HIoCSW1y_VnquQsWtTKPkQDZR9Dk35GmlcThjP2vNoI,2965
|
|
597
|
+
pyrogram/raw/base/chat.py,sha256=Y6aeOrofF1WFZGlrtM5fL7vyIPhhgIFcNJk6yr9ypVg,2309
|
|
598
|
+
pyrogram/raw/base/chat_admin_rights.py,sha256=QfgG47ZtEioYZobIupNsI-k2iAzdYh-kp6Id-q1vRZs,2104
|
|
599
|
+
pyrogram/raw/base/chat_admin_with_invites.py,sha256=Jpamw6zovzH9UKnQNbBu_XxZ0e-eCl61AFoU220jVkQ,2140
|
|
600
|
+
pyrogram/raw/base/chat_banned_rights.py,sha256=uDsFph2nzRNY4xpmlNb-nNUrbxfTBzTRf1hI0Q8DfAY,2111
|
|
601
|
+
pyrogram/raw/base/chat_full.py,sha256=9qk7A9ckRlyZRCjhj-zno5kRDN1Sh7_vWwMO4hgqz0E,2125
|
|
602
|
+
pyrogram/raw/base/chat_invite.py,sha256=kiqDY6XfkwYQ9qtvEmEj_UWuvF6JxX1bC5YJnOSgIXs,2445
|
|
603
|
+
pyrogram/raw/base/chat_invite_importer.py,sha256=3ZjZL09G9oPmI1LLlGCM3uiGrppLnrH5mZ7jwWKOJUg,2125
|
|
604
|
+
pyrogram/raw/base/chat_onlines.py,sha256=BsATWNMJJOI8Eed9yVd6b3IfYOlKV9-mvBQGY0L49Pc,2279
|
|
605
|
+
pyrogram/raw/base/chat_participant.py,sha256=Ug9FgzUb88qkXkbhwdEw8fK0J1HIhAQAwQOlDtkArz4,2304
|
|
606
|
+
pyrogram/raw/base/chat_participants.py,sha256=dLkj8X5gp5V_XjNgNa3YHq8n8kvGsnT7nyPMFMLjGm4,2223
|
|
607
|
+
pyrogram/raw/base/chat_photo.py,sha256=yLEa71elWPqNdKYb33cCHELpD44idHliR9pY_s6WnHs,2141
|
|
608
|
+
pyrogram/raw/base/chat_reactions.py,sha256=S8X0kJNEo8QtpgzMOfkGDv9s4I0AxCLdtkrqyMWLhco,2275
|
|
609
|
+
pyrogram/raw/base/chat_theme.py,sha256=mD02WzgHOHz8ZQr8tMjEmIpnt3m51HczJB1yLfJfdv4,2156
|
|
610
|
+
pyrogram/raw/base/client_dh_inner_data.py,sha256=brC2NYd7wJpsJY_r2aPLSB7QwzQv1a-0ZwswDb1DPmk,2119
|
|
611
|
+
pyrogram/raw/base/code_settings.py,sha256=Rj7KFYk9lrJZM_sw7cOTRQ9LS8LWg-tNrLh0VNuhJsA,2082
|
|
612
|
+
pyrogram/raw/base/config.py,sha256=omYRSty4bJ-xc0bu1tt782IScTgTT9LvoYqO1wgY5yE,2238
|
|
613
|
+
pyrogram/raw/base/connected_bot.py,sha256=JumdeFOLrpMZIrv7EsawVd6YO68sr6G1J0EfqNrQJJM,2082
|
|
614
|
+
pyrogram/raw/base/connected_bot_star_ref.py,sha256=j94U5dpJa6cdlu9X_A1YYMuuIbp_H_TJkGjW3xVDpH0,2133
|
|
615
|
+
pyrogram/raw/base/contact.py,sha256=YwwClAsCVVx98CeTRpwGgM19AKs0hxCVOITyOOD3_lo,2046
|
|
616
|
+
pyrogram/raw/base/contact_birthday.py,sha256=NQCnVF9Yj5IuVQJkVhN2snRU4fsuLT4NdHkXB17prOA,2103
|
|
617
|
+
pyrogram/raw/base/contact_status.py,sha256=P9Vfsr4JiGCqDwZ45kqXSY5BXs-Gp8xX51xfZM4nctc,2294
|
|
618
|
+
pyrogram/raw/base/data_json.py,sha256=Zu9RhX0gfyU4wxCtF49D0x0oVVsaRgqeezjljs-dGVU,2337
|
|
619
|
+
pyrogram/raw/base/dc_option.py,sha256=rEHRzXx3H5ECsxY7DRQOKooqvlZDkzLOFbAIE5CpyVs,2054
|
|
620
|
+
pyrogram/raw/base/default_history_ttl.py,sha256=S6ij3N1WFgPwNpoteCX1XzxGMV_PoXU3fTja_2jBti0,2332
|
|
621
|
+
pyrogram/raw/base/destroy_auth_key_res.py,sha256=P0FgWOn2Pf0XflQUpfsoK5YpVZWWOTGgSdnrVfhWm5g,2498
|
|
622
|
+
pyrogram/raw/base/destroy_session_res.py,sha256=RM7JkTemd2gj9735DOtIsa4k8r_GI14_Wi59Y4jRV4E,2406
|
|
623
|
+
pyrogram/raw/base/dialog.py,sha256=v3eNxJlt54nReiiEBocx0LXlcMO861UPiWixpS_OS08,2113
|
|
624
|
+
pyrogram/raw/base/dialog_filter.py,sha256=iBWrzqL3uodFavvjtTcrRAN-9vaH_zo1ZCv8cuHSpuQ,2274
|
|
625
|
+
pyrogram/raw/base/dialog_filter_suggested.py,sha256=_hU-JJQTe6i_hAej19wYYjRkKy82cKADsY1ZdQy5Hg8,2365
|
|
626
|
+
pyrogram/raw/base/dialog_peer.py,sha256=MYn_RWcda2G1Nowbxq0HnLAno72nO8KvdxOJVF3WrW4,2368
|
|
627
|
+
pyrogram/raw/base/disallowed_gifts_settings.py,sha256=gXpXPjclJ0CE9fEmKOb2cOXhAz-oJ0qX4MxZF-IN0Fg,2160
|
|
628
|
+
pyrogram/raw/base/document.py,sha256=B_TGX7Qo8j-4PdGDQoIrfCMaSDlh0I5mx-TToMi9cho,2454
|
|
629
|
+
pyrogram/raw/base/document_attribute.py,sha256=_f_IvpifQ1OzZofhWz69x7Z8o5jpmLNeXeP-KSLQxQE,2926
|
|
630
|
+
pyrogram/raw/base/draft_message.py,sha256=gAy3KSLj8oqnBOD9VA3e092WFo4ji1gS0a1GuOsT0w8,2171
|
|
631
|
+
pyrogram/raw/base/email_verification.py,sha256=JQ-owUBhjeimQSYhQUDpYQd7uLEAsUArB7AOFpnuEoM,2339
|
|
632
|
+
pyrogram/raw/base/email_verify_purpose.py,sha256=I-MMppdUlvzaS3vYTzBCQRj93OrBzSSnQvtP8qNEUoI,2395
|
|
633
|
+
pyrogram/raw/base/emoji_group.py,sha256=5Dg1q5QcPGVvA_rmdzlGIVVAVZU-SfnLz-kZ_YENLVg,2248
|
|
634
|
+
pyrogram/raw/base/emoji_keyword.py,sha256=5Jc6SJFWbQ3TQke2KbCfh92Trk4rTjXHLnjeMg3Pjsw,2177
|
|
635
|
+
pyrogram/raw/base/emoji_keywords_difference.py,sha256=nAR-o9pev32JmxRfTrJdT4ijXEte1Vr1OFpUqVhRt9w,2419
|
|
636
|
+
pyrogram/raw/base/emoji_language.py,sha256=2WUVvLVDVoL35ZSNuFiiu3dbAXNh0jndTHEfe8rHkw4,2308
|
|
637
|
+
pyrogram/raw/base/emoji_list.py,sha256=ecyXUHW8h_Nrje1McBaKCUjXh-eFSPmmzYwxf1aEFMQ,2567
|
|
638
|
+
pyrogram/raw/base/emoji_status.py,sha256=tXJQag37bn58M4bC1IVj2nPplq0KjaA5giA7HZyC7EM,2382
|
|
639
|
+
pyrogram/raw/base/emoji_url.py,sha256=FiB-HAa7JmfGN91N4513GbfRT7kqZQzR2mnBbx4Y6xs,2259
|
|
640
|
+
pyrogram/raw/base/encrypted_chat.py,sha256=-ielj70JFJ-_voNf6WuY76SWKeUu177MNKgS8Zv6Z8A,2734
|
|
641
|
+
pyrogram/raw/base/encrypted_file.py,sha256=bnsgiuZgBm8phkjIPETP0lnZzoSlwY14CUCIpmf4OLE,2394
|
|
642
|
+
pyrogram/raw/base/encrypted_message.py,sha256=3UW6SJS8mM9wEERcWmhuuntVEqcfue59tBiHe56Q13g,2217
|
|
643
|
+
pyrogram/raw/base/exported_chat_invite.py,sha256=goN0k71XgAM9OFcbFotgtV84ILbsEBoQ661YEbW5rI8,2457
|
|
644
|
+
pyrogram/raw/base/exported_chatlist_invite.py,sha256=3BpRnrdGeylgTCKf-shEyYsLDYhg_LcU1Bw1IrBsjKE,2366
|
|
645
|
+
pyrogram/raw/base/exported_contact_token.py,sha256=N1y8Jv5Dq0uU0_-zyW_zIgvBgW17ExjjL1sV9HE_mVg,2351
|
|
646
|
+
pyrogram/raw/base/exported_message_link.py,sha256=3FSJbjNige_z1v2QIdj-6S_2rdjNScf5_9QHPufJXSY,2343
|
|
647
|
+
pyrogram/raw/base/exported_story_link.py,sha256=fVMI3GTIz43axWB5SfOvkDdJ5ErJcKKppr9cK26JJJ8,2326
|
|
648
|
+
pyrogram/raw/base/fact_check.py,sha256=17T9JWUh8YCoa65o5jQAEKwphoxcPDYuvBpUpQeecF0,2267
|
|
649
|
+
pyrogram/raw/base/file_hash.py,sha256=Atbo_FQeu46hTUItgT0ICjvJMhlXH02mNIQNrJYiJbg,2331
|
|
650
|
+
pyrogram/raw/base/folder.py,sha256=HLjXghbxMFTtb1esujznXyP2SNot45RQYymDkvwTbAw,2039
|
|
651
|
+
pyrogram/raw/base/folder_peer.py,sha256=vQhZ0UUTEH8nBQnUnJ0O6TGk2vLBuPTCieiB_gmMmMY,2068
|
|
652
|
+
pyrogram/raw/base/forum_topic.py,sha256=nukR5lc41kxAFenzxJ1Mq-KZ6w8XI2e7Lm8nY2FAv8A,2157
|
|
653
|
+
pyrogram/raw/base/found_story.py,sha256=brGQ5dRuSYzGyxk4gtNJSEuBlBAQ27sayet5-OHEa1A,2068
|
|
654
|
+
pyrogram/raw/base/game.py,sha256=CEJU5BlYOxqZVVqkQIjiRryQNYpISCYzD3raM9p3Yg0,2025
|
|
655
|
+
pyrogram/raw/base/geo_point.py,sha256=w3xaPWT6RH8sLTRjyHzE9oCL9a9hZwQaaxExjWFL2Ic,2131
|
|
656
|
+
pyrogram/raw/base/geo_point_address.py,sha256=es8Qg5aST4asA4p0nfpXsbb_W36Mr9-skJAXfPkBGtQ,2104
|
|
657
|
+
pyrogram/raw/base/global_privacy_settings.py,sha256=G2LiqCyvJIrnRvHdxcDR4DuswbYmGcsD7Cd_ydhr5gk,2409
|
|
658
|
+
pyrogram/raw/base/group_call.py,sha256=Oc84ny7guuqX0FHzx6SUxFx-yqg3Ax5gNu5EilvK7XQ,2153
|
|
659
|
+
pyrogram/raw/base/group_call_donor.py,sha256=y7YBqAlg2-MEs5pAiVv1SbfmqZjw0EXl31SkGjoKPIU,2097
|
|
660
|
+
pyrogram/raw/base/group_call_message.py,sha256=NBC_UBEx1d76KWdVIqOvVo9KdzGDYaCig0C0_yOdszs,2111
|
|
661
|
+
pyrogram/raw/base/group_call_participant.py,sha256=aee8SFF51NTmVyfjUKPW-4x6JNm2qYenr0RodkYDuLE,2139
|
|
662
|
+
pyrogram/raw/base/group_call_participant_video.py,sha256=y76I1rX6ahlMVy_JMkVKathkcCeaVGESswtVbSVGVnI,2175
|
|
663
|
+
pyrogram/raw/base/group_call_participant_video_source_group.py,sha256=oPO1lbgJrJRcKiE08fFvHQOPP4ShFgiWgbidNtmZMFg,2254
|
|
664
|
+
pyrogram/raw/base/group_call_stream_channel.py,sha256=a-qYDOvqqHParhHt6ZWSfnHIxAoI9VGXDB__kSykPIk,2154
|
|
665
|
+
pyrogram/raw/base/high_score.py,sha256=3f1McQV_SyYMzljt1m24m7m7oZmU-kADITwAs2cOPtc,2061
|
|
666
|
+
pyrogram/raw/base/http_wait.py,sha256=Myw6sow9AL10ascpDZPvDv_3ecwyICTtJgd1Fx_zKkY,2054
|
|
667
|
+
pyrogram/raw/base/imported_contact.py,sha256=9mCst7Tq7hs3KQ0PSNxrKN6i7lNbYKb6rZCcOvju4ws,2103
|
|
668
|
+
pyrogram/raw/base/inline_bot_switch_pm.py,sha256=K00LnkOYF4FQbjHRaUs7ZMTztwHkbv8rHFP5NlJyeMY,2119
|
|
669
|
+
pyrogram/raw/base/inline_bot_web_view.py,sha256=jnOcgOQ4vHY3D-zcZmwUrwlGHro6KWf1E_csiwtKUXA,2112
|
|
670
|
+
pyrogram/raw/base/inline_query_peer_type.py,sha256=lPNoOOBJ4jMSzeU6D6DWkXNeL3zFrl0qmkSJa6sHNiY,2718
|
|
671
|
+
pyrogram/raw/base/input_ai_compose_tone.py,sha256=Kux-WXHG3VXRjz6NbbcQIw0-tfjUosz2xTE13z_L0Cc,2348
|
|
672
|
+
pyrogram/raw/base/input_app_event.py,sha256=u0j2KWFaPHiLSzByEDjQ3eRayMj7mWNnekjWjCpTEPA,2090
|
|
673
|
+
pyrogram/raw/base/input_bot_app.py,sha256=y4bzWiqrcGzBE9mhbl-T1xB2ubUu4eVf_hp_yvQIGbg,2180
|
|
674
|
+
pyrogram/raw/base/input_bot_inline_message.py,sha256=8O9DGYMjcVxXLWYoafWO4rD_UYl34KEEPc3djVmshd0,3194
|
|
675
|
+
pyrogram/raw/base/input_bot_inline_message_id.py,sha256=hwQEOHR7DMFPsKLLdS_H7sTDK_0J3KGg4FNfD3VP4Eo,2490
|
|
676
|
+
pyrogram/raw/base/input_bot_inline_result.py,sha256=Ae3sLDnMzLQ86UcjRyGR5pUgXRX0hHskNVKUd8HzbeI,2483
|
|
677
|
+
pyrogram/raw/base/input_business_away_message.py,sha256=bMQJ3LYy4uREdtVixNxdwa_dwFnMGFalGNCyJ_3TLcg,2168
|
|
678
|
+
pyrogram/raw/base/input_business_bot_recipients.py,sha256=P3M_xI6JlYgfYPqhrRD8ApPqw0RCJk0cDPWU0LGRZuU,2182
|
|
679
|
+
pyrogram/raw/base/input_business_chat_link.py,sha256=0ulqcsPLAQCVq1D44P_zk8-kbChlE2cUiyaOaBuufLo,2147
|
|
680
|
+
pyrogram/raw/base/input_business_greeting_message.py,sha256=-X8G7Qlky1wdGjOhWd-dta1q_LPSeQ8CkpzUBch3RPU,2196
|
|
681
|
+
pyrogram/raw/base/input_business_intro.py,sha256=lQFPhMyzN7J_0hMFLTPWhADaj-SA7sRkXXIkg-ESBso,2125
|
|
682
|
+
pyrogram/raw/base/input_business_recipients.py,sha256=CLxO1Y0L8u2ldXeCx4-8RDnft6LYd27k5o4zb_xC-hw,2160
|
|
683
|
+
pyrogram/raw/base/input_channel.py,sha256=xeM8R4C7T-VpG2-vRvzumWHxZTqP2O3wTVoBOlpgFbg,2277
|
|
684
|
+
pyrogram/raw/base/input_chat_photo.py,sha256=ypJdZpT24FhwynjnHkrMV8kT7mxd-bIVczS6ESiJjXE,2295
|
|
685
|
+
pyrogram/raw/base/input_chat_theme.py,sha256=DZ4UfiYBpMdhzvBSeg1Cb8fCeoGpC61S_vynL8nG90w,2301
|
|
686
|
+
pyrogram/raw/base/input_chatlist.py,sha256=PsLNQpMHjl2swsBH4iWAoxJlz7sFID1h8f7ckXloKDk,2125
|
|
687
|
+
pyrogram/raw/base/input_check_password_srp.py,sha256=N4uUCPgPC6OezjEumqyrPNUf5bbmPIYzUlCsalIwIww,2254
|
|
688
|
+
pyrogram/raw/base/input_client_proxy.py,sha256=eRS83LbOklWYWi15hfOeibND2SXOlaURw9BQ1S-hiaU,2111
|
|
689
|
+
pyrogram/raw/base/input_collectible.py,sha256=RrKWEkrmuvrG2fsUSReRLVuZWzuRDHUOpqUkkYQ7mNI,2235
|
|
690
|
+
pyrogram/raw/base/input_contact.py,sha256=pJW8n7-QsBLmqmNmwyM8BEem8eh-1Y9KlBgtkHblIoU,2097
|
|
691
|
+
pyrogram/raw/base/input_dialog_peer.py,sha256=UN-P5LJl9z0_8dfTaJzP9-iXcqpT9A666dEC9famQp8,2205
|
|
692
|
+
pyrogram/raw/base/input_document.py,sha256=9cNEfnS_YyJlq6V_ID9yyhf_Woj2O2RyfE-v5BOcUec,2181
|
|
693
|
+
pyrogram/raw/base/input_encrypted_chat.py,sha256=K1ZeVvuxCDde2YDX8G-JJqRIsuIIJ1fkhs9rbm2hIRc,2125
|
|
694
|
+
pyrogram/raw/base/input_encrypted_file.py,sha256=c_nMLVh9oLhNxQ3sPcAztz3wnsu3fohh7wZ8JXEP9cc,2471
|
|
695
|
+
pyrogram/raw/base/input_file.py,sha256=DwePYhqVawmW1Yq4ExCe4jCTEfJkKibrFtKmCH3D724,2238
|
|
696
|
+
pyrogram/raw/base/input_file_location.py,sha256=vEg6q_-YPcaKYndzIsiHNndglCaRUNqfKTBfwO8RnSQ,3095
|
|
697
|
+
pyrogram/raw/base/input_folder_peer.py,sha256=cjeofGchCQmH1ym1AMDddNTFV97BnbeYueYtI3A-2Yc,2104
|
|
698
|
+
pyrogram/raw/base/input_game.py,sha256=qQyyMd9IE_ZoZMgMh2U8o_IoaiSkcGUrZ0_QTfObEzA,2159
|
|
699
|
+
pyrogram/raw/base/input_geo_point.py,sha256=VZxnY6mcMmKiMOJ5ZGDOEcIN7e0N0LATIXtG0aL0ym8,2182
|
|
700
|
+
pyrogram/raw/base/input_group_call.py,sha256=TmgUJzSO9qFqc2m8A4xne4rmGr1usQsc9c7yH7YfVFk,2307
|
|
701
|
+
pyrogram/raw/base/input_invoice.py,sha256=di2h8oZQE-QeVVbt841t_8MfVWfodlt_jTPS3hCejQU,3790
|
|
702
|
+
pyrogram/raw/base/input_media.py,sha256=_IW1PrVaIxl9zninbVt6YxL3n07jMY-MSFT7W7VptfQ,3811
|
|
703
|
+
pyrogram/raw/base/input_message.py,sha256=zenTHAyUQs6MscOlDfhdnhoeLP8TUBJwKg3yzlmY7cM,2386
|
|
704
|
+
pyrogram/raw/base/input_message_read_metric.py,sha256=Csq9KZlyc1yDOTlmszJJ6KHEz7t5yGvpt6ja-Ncse-I,2154
|
|
705
|
+
pyrogram/raw/base/input_notify_peer.py,sha256=e5GDYukpXsLTmgeMOR8h_Fyhyet-1IOv1JUj-ZGmDsE,2475
|
|
706
|
+
pyrogram/raw/base/input_passkey_credential.py,sha256=w4R8bB1N9Q104UwDzEizdMzmTKxllcKnY1Tr1yMO1jU,2317
|
|
707
|
+
pyrogram/raw/base/input_passkey_response.py,sha256=-JQTvznw1ncEYGxsuRj40_Dud16fKwJXynMIfB-InVg,2276
|
|
708
|
+
pyrogram/raw/base/input_payment_credentials.py,sha256=HfZ-3kFOV8pTDhpRSOQMSfI_Tqr7mCXuBJbPuwBu4aw,2545
|
|
709
|
+
pyrogram/raw/base/input_peer.py,sha256=XbsgUFjj66v6gd-t7Prw_BYKNtG0tCdY-bByIJkifPU,2617
|
|
710
|
+
pyrogram/raw/base/input_peer_notify_settings.py,sha256=EJRBSC7cPflVL-FLAY5LOP7zwUJQB3j5KyQnSAdPWLE,2161
|
|
711
|
+
pyrogram/raw/base/input_phone_call.py,sha256=hWyb27j5mmENJnsTdLshxv2mBOjot5ES49efgPjMcJk,2097
|
|
712
|
+
pyrogram/raw/base/input_photo.py,sha256=AuzDXdaxjDuHc7lEDPVuMktPfuhVt4-tQedZVnFH-Oc,2151
|
|
713
|
+
pyrogram/raw/base/input_privacy_key.py,sha256=H86sOztmF5lggKtJ9MlydQdgQk3QCKReK_MdlY4kjfw,3628
|
|
714
|
+
pyrogram/raw/base/input_privacy_rule.py,sha256=4Gy7K9xiZ0QjGwoXaukSATm-M6bc8s46kDfUlk0eVHw,3582
|
|
715
|
+
pyrogram/raw/base/input_quick_reply_shortcut.py,sha256=QNne-rgou63sVID0vYLNVQtuxw5v5kD-61wHK3jHXek,2274
|
|
716
|
+
pyrogram/raw/base/input_reply_to.py,sha256=tVmCEMqv7T_MoqYdSc1lBKBChAEIgF6PySYjRiCRGvc,2293
|
|
717
|
+
pyrogram/raw/base/input_rich_file.py,sha256=sx-vH9xVMYv99Oa2MmWYxahenZrsKKXOxTNbueYrzuQ,2206
|
|
718
|
+
pyrogram/raw/base/input_rich_message.py,sha256=AJRQs3Tmis5nb3Qy_yG0D7OvvVbl-uciiJDliYSc6S8,2318
|
|
719
|
+
pyrogram/raw/base/input_saved_star_gift.py,sha256=3i6psji8LNBnhJMQt16KXnQB7uH83ulcwY-5l3ItdWY,2345
|
|
720
|
+
pyrogram/raw/base/input_secure_file.py,sha256=wRmVqx533qy3PbW6AOVLghTXOTMbNZcxdPsPl_mhFbg,2211
|
|
721
|
+
pyrogram/raw/base/input_secure_value.py,sha256=lTWXkAPBmJljHVBF07H7ZenhdQf2e-jSvEbUE8BAHU0,2111
|
|
722
|
+
pyrogram/raw/base/input_single_media.py,sha256=-KkaPTwJ9fpS9XtOyu-SZIDtAUYCD4nZQy0QeJs45ZE,2111
|
|
723
|
+
pyrogram/raw/base/input_star_gift_auction.py,sha256=wD61YVUX4BlDNye6IKIG2IUhUwb34xAHviXYeLVU5ZY,2250
|
|
724
|
+
pyrogram/raw/base/input_stars_transaction.py,sha256=OQNqxt4Z5Y7yTjAEjrXGVI2zZ_5t3H2nvuahxZanV00,2146
|
|
725
|
+
pyrogram/raw/base/input_sticker_set.py,sha256=ZVtWATnBpe_pLL1erc2k7x9OFYOxUD86_zCPQUCWDGk,3509
|
|
726
|
+
pyrogram/raw/base/input_sticker_set_item.py,sha256=ec_atBpIwudWuJhvlPU_7K6UxhAkC3c-rgDQWwDLWqk,2133
|
|
727
|
+
pyrogram/raw/base/input_stickered_media.py,sha256=gpI0S4Kya-_AHzjcE9zq1IpXVuArX59RmW3VYjBXVXw,2266
|
|
728
|
+
pyrogram/raw/base/input_store_payment_purpose.py,sha256=BdU_WjnXxMK5EAQ458zNQ5qnU7auSyny4r4_hkXJ2pk,3064
|
|
729
|
+
pyrogram/raw/base/input_theme.py,sha256=b-D7HjXOOFLkCUKBntsDCrblwQoJzaBE4M6sSSUNmrg,2148
|
|
730
|
+
pyrogram/raw/base/input_theme_settings.py,sha256=JT1AReqw093zNqwIQp_4R1bxjBz53Y0BMLmQrSl3YtY,2125
|
|
731
|
+
pyrogram/raw/base/input_user.py,sha256=frNnFofVlNLUJ2ZLH9ONXqwvOQfek6ARevsATcB0ph0,2314
|
|
732
|
+
pyrogram/raw/base/input_wall_paper.py,sha256=Oep9qtwrsFxKKYJu4qfkoVpEmHz3xcuOIXogVFWheAM,2286
|
|
733
|
+
pyrogram/raw/base/input_web_document.py,sha256=uNl8Q54DsFk7MOTD-qzg5lDzDWTXYtwSnqS1HULLLsA,2111
|
|
734
|
+
pyrogram/raw/base/input_web_file_location.py,sha256=P2qkHn20HiYOOsFDgZDcwfi7mXde54Yz_oH2dDhEhB0,2404
|
|
735
|
+
pyrogram/raw/base/invoice.py,sha256=BU1MB2tvypGe_18oiJT3zuETjxgm4V4nNYJJkD2sHRo,2046
|
|
736
|
+
pyrogram/raw/base/ip_port.py,sha256=Vz_6ouEGfBONIZfRWDG0fCvCPRM3SbPp1X-RIk-jeyY,2114
|
|
737
|
+
pyrogram/raw/base/join_chat_bot_result.py,sha256=vmpnzT0MDYSyhnn2NhAmpYgJhbcZEKAKp44i7cc2-KI,2471
|
|
738
|
+
pyrogram/raw/base/json_object_value.py,sha256=kcQezUfYEpVEtbrWo-MO3k8bCwPUA3upb4rf7i8ErFU,2104
|
|
739
|
+
pyrogram/raw/base/json_value.py,sha256=77vJJGxmvUe6oZylrc0N14dYQ483KoqvqCTgY2IvZxM,2385
|
|
740
|
+
pyrogram/raw/base/keyboard_button.py,sha256=0Q9NYk80Sxov5eIXtRjvHccxEQxEFTEWk9EOYf1-muU,4160
|
|
741
|
+
pyrogram/raw/base/keyboard_button_row.py,sha256=YBZMmtGv7L8D-I5a7MoFPh34Shol2xbWw-xSopoymZw,2118
|
|
742
|
+
pyrogram/raw/base/keyboard_button_style.py,sha256=xmXPxTLRXDxQGdWylaMN3lZFecQtXeGVkl5Bat_5CW0,2132
|
|
743
|
+
pyrogram/raw/base/labeled_price.py,sha256=vZEJV7Y1YmnVKGu546QbcW8iEXeiJ87xgtKcFuPJB3g,2082
|
|
744
|
+
pyrogram/raw/base/lang_pack_difference.py,sha256=RekNA_rH-ojH9OPRHg7hNuN0iehF2gRtKIrSXgVE8W8,2366
|
|
745
|
+
pyrogram/raw/base/lang_pack_language.py,sha256=cViyyQyhX5tZQw-jJAPbSs1JXDC7XKoq4tH7nrjzGrY,2351
|
|
746
|
+
pyrogram/raw/base/lang_pack_string.py,sha256=FMo_0eeJLLJHRqV6uDVDlsAMIfCKAf_U48fw3XB7FZU,2511
|
|
747
|
+
pyrogram/raw/base/mask_coords.py,sha256=boy6uZfWIPvyU2YX4f-dfRxFJUujEdIiwPD7C5WAvQ8,2068
|
|
748
|
+
pyrogram/raw/base/media_area.py,sha256=SFDw1ZsFGaXQBDDnqk0Ex6HyxBazsGa6cCOJDCxUE2M,2829
|
|
749
|
+
pyrogram/raw/base/media_area_coordinates.py,sha256=ntUnYnWPSi1Wj4TakK7Iv5jTS8BHViLGI3K2PrHxRHI,2139
|
|
750
|
+
pyrogram/raw/base/message.py,sha256=EWC0rBjASB4Kux0xAbnxHDYxhdMfpMowJTHT0oV-6MM,2199
|
|
751
|
+
pyrogram/raw/base/message_action.py,sha256=QtGUctVTYYvByJ1d4IYe2UFVzJOGpqv2wo9HweWlfLI,9972
|
|
752
|
+
pyrogram/raw/base/message_entity.py,sha256=1sfVHDVbliN4raGBU4ThaYHsJNjFTtT6odykUSCVti4,4506
|
|
753
|
+
pyrogram/raw/base/message_extended_media.py,sha256=nUeHL8SPFtwXpWTi1HWGop5q0cQCLvKRAwZfEv891zM,2258
|
|
754
|
+
pyrogram/raw/base/message_fwd_header.py,sha256=a42cZ-I1JLj8KOI4EwhpidQF64C5zhMnuFEwEP0emlk,2111
|
|
755
|
+
pyrogram/raw/base/message_media.py,sha256=qRobJqgiAf_1LMD3A5EqwXnzblll9yFw5YkqRNefhTM,4032
|
|
756
|
+
pyrogram/raw/base/message_peer_reaction.py,sha256=XAbKpVbG-1BYgSWQVaq_Z2uSIR-r8RhlCpPEn148G0A,2132
|
|
757
|
+
pyrogram/raw/base/message_peer_vote.py,sha256=Lcv6lRd4MKVjWraC4ESkM8Sy5U6lwlmYkVfNKwXGaHk,2326
|
|
758
|
+
pyrogram/raw/base/message_range.py,sha256=BDLxzlV3s1sRi6rzdmBXXqTh58-3wapFtoHYxnYo8No,2290
|
|
759
|
+
pyrogram/raw/base/message_reactions.py,sha256=axIpCPO_Ymrv9sYqqHFE4ae1k-Da6hTG0OKHWtNvLeI,2110
|
|
760
|
+
pyrogram/raw/base/message_reactor.py,sha256=AXf5zBMFQQ5UXWkPQYbh5W0p7-rneIYs4CiviVU-1Sk,2096
|
|
761
|
+
pyrogram/raw/base/message_replies.py,sha256=S0DXLh-9iocQGzSfvpG4m3Utf5sCwCtZAripil-G2KQ,2096
|
|
762
|
+
pyrogram/raw/base/message_reply_header.py,sha256=pbdQcN8mXMZtIVxdytkZ13Eg0-UXs2cY7QzRz0d8VbU,2232
|
|
763
|
+
pyrogram/raw/base/message_report_option.py,sha256=Y5mNuqYLjSNCwJ7vdF7dTruoXtJ5EzPfTIDq4Ob043E,2132
|
|
764
|
+
pyrogram/raw/base/message_views.py,sha256=4nbWZP53GnFaoOb8PPzi-ZVoD-EFAJKw3netyKM_Zb4,2082
|
|
765
|
+
pyrogram/raw/base/messages_filter.py,sha256=kAq_O5upG2VYhtaAQs4CWgn4CQNQTuwDycIfvrvjtZI,4074
|
|
766
|
+
pyrogram/raw/base/missing_invitee.py,sha256=-dE-rxZLoQ6jL_AGY-lcPSpsN3dhGqxaS5o9JheF6D8,2096
|
|
767
|
+
pyrogram/raw/base/msg_detailed_info.py,sha256=AsXozVoU1fAqdczdPhyz6qSP_ivymSQB9jFSSTM01W0,2196
|
|
768
|
+
pyrogram/raw/base/msg_resend_req.py,sha256=LBXBoZjK_Pmd473Q8ogKZvTueDTImMMC0aP5A1USPrc,2166
|
|
769
|
+
pyrogram/raw/base/msgs_ack.py,sha256=DamroY1Mzf6ZMwderDns0KitPaJ3gtTZX8ML2pfzTXA,2047
|
|
770
|
+
pyrogram/raw/base/msgs_all_info.py,sha256=cH9684DRjCxD1gWsCvaYuU_8euN6893Ww4JKJrGGymc,2076
|
|
771
|
+
pyrogram/raw/base/msgs_state_info.py,sha256=ZK9qnTzgdDp_xocPmCHHXkoujDwBOjKSDNleR0iNHX4,2090
|
|
772
|
+
pyrogram/raw/base/msgs_state_req.py,sha256=4cZOTNonCoRejcbMK4y57MYLvf8nMwqepoAqEka0J-c,2083
|
|
773
|
+
pyrogram/raw/base/my_boost.py,sha256=6NdhIikxkeHfYtQ3kXAgX1HMUx_l_UtrjMd_DwYds0g,2047
|
|
774
|
+
pyrogram/raw/base/nearest_dc.py,sha256=kcA8-06SaaM4T0iGGn_BB4I9qEH7yGorCgnFPrrNus4,2263
|
|
775
|
+
pyrogram/raw/base/new_session.py,sha256=LINro6ohe-cu9u-yKYcSXxyzpptgcw584x68uDwbaFU,2089
|
|
776
|
+
pyrogram/raw/base/notification_sound.py,sha256=8dChcHRC0wk0iOgq1-rC531ne2bi8CLLwvta3CHmeCk,2454
|
|
777
|
+
pyrogram/raw/base/notify_peer.py,sha256=BEdzIHlFSJTwZVEdCdGJZ2IVihyBF3pFcIBBFqoS7I8,2379
|
|
778
|
+
pyrogram/raw/base/outbox_read_date.py,sha256=CKdQ9eY3aPVe5Uspdh-fxCrT-Yc87U0do9hQcyQVuSk,2308
|
|
779
|
+
pyrogram/raw/base/page.py,sha256=Mtbu4Lx75DOaogt54wVgrDMgPRDoq8iZzDlKWJ5qL6w,2025
|
|
780
|
+
pyrogram/raw/base/page_block.py,sha256=JwUqkldUNT_4ZKbIu57Xm85W-6fFLOT7p9HhAP_hXn4,5395
|
|
781
|
+
pyrogram/raw/base/page_caption.py,sha256=8hQeBVc2839EexMg8KuiIs05CfT8FaVKnwpJPlO9krw,2075
|
|
782
|
+
pyrogram/raw/base/page_list_item.py,sha256=mdQiu8Keweyz6Qddw3Nin6GK1lqzJ2No9Ts95buTVCY,2187
|
|
783
|
+
pyrogram/raw/base/page_list_ordered_item.py,sha256=8xQDSpoZptcHBprxq_Tb1NKRaskrAlUawq0jx4Tondo,2258
|
|
784
|
+
pyrogram/raw/base/page_related_article.py,sha256=EwSiWoL3poueHo5YzoKbQfC8DB_ASA7EcmISam94kQ8,2125
|
|
785
|
+
pyrogram/raw/base/page_table_cell.py,sha256=JumvPU00lVPFagAZ7T8ttawcxrguNN5LqTeinPJwsNo,2090
|
|
786
|
+
pyrogram/raw/base/page_table_row.py,sha256=ngLbhLJMTNmdYHkctEXqIrBuGFgqgetnoCkW4kcipJA,2083
|
|
787
|
+
pyrogram/raw/base/paid_reaction_privacy.py,sha256=yOyRWGWKe7f32GGiZivO5uh2ixAgGQhVw3eY3fp12Qs,2381
|
|
788
|
+
pyrogram/raw/base/passkey.py,sha256=UfIWWREJv9A4vV6orPpWl2dwXiQbBtsof_7dR2YU7jk,2254
|
|
789
|
+
pyrogram/raw/base/password_kdf_algo.py,sha256=-xvNrwGC-cnmezYuH38Pz0QQ9K8NCRKlQynkKiiTOPQ,2358
|
|
790
|
+
pyrogram/raw/base/payment_charge.py,sha256=YiBYL-D0d7EZl53ERTfmmx1uRZKJvqSRxjITqlZHf2M,2089
|
|
791
|
+
pyrogram/raw/base/payment_form_method.py,sha256=d3-Ha6LT8KaJnsvgQSImRNeBgNflrAOg9YBAUxNYE2M,2118
|
|
792
|
+
pyrogram/raw/base/payment_requested_info.py,sha256=drmvtexbsBoGY6yNbZH2Fkvv19itx84Wk6Br1Gco9DY,2139
|
|
793
|
+
pyrogram/raw/base/payment_saved_credentials.py,sha256=KN94JHNcSnRh62VYwHj6spQxS4vRz1qHE-sVsoysA6k,2172
|
|
794
|
+
pyrogram/raw/base/peer.py,sha256=zjaBPFzv9PEFGEGiFpMlneSVcdeapmIwaWkRiTLHUCA,2391
|
|
795
|
+
pyrogram/raw/base/peer_blocked.py,sha256=GnyhKIzjqWFNusn8PCA8Ogbc_zEP3hLc9mVl2ZaUOf4,2075
|
|
796
|
+
pyrogram/raw/base/peer_color.py,sha256=slQaZ3HJCXdYuMVeMJEzSrs85DRXtib59JD3qaI9bVc,2271
|
|
797
|
+
pyrogram/raw/base/peer_located.py,sha256=CG4vI-KjxVAboXIAbXWPhg8YbkGbNyp4i9G1jH5bwO4,2158
|
|
798
|
+
pyrogram/raw/base/peer_notify_settings.py,sha256=KkLWZ5NcH1BbhdbGM_mXZvlFNauDH0s3wvhgzxeoHIk,2335
|
|
799
|
+
pyrogram/raw/base/peer_settings.py,sha256=TMMgeTgb5uyJxukRM2RyP7BuiIj8umY52nvsYRRDaGI,2082
|
|
800
|
+
pyrogram/raw/base/peer_stories.py,sha256=rO2T_Ox7gGE45_2Z99onFpnDaPPaUApkyLnn4uisdN4,2075
|
|
801
|
+
pyrogram/raw/base/pending_suggestion.py,sha256=32Apa4Jqe1ga7y92BPHHvkZjBQEvinLLxvqhfsxgLqQ,2117
|
|
802
|
+
pyrogram/raw/base/phone_call.py,sha256=o8BmypV_QoiwCrEe1zRtfONKuUhonadd3KF-q49v8zY,2496
|
|
803
|
+
pyrogram/raw/base/phone_call_discard_reason.py,sha256=i0QZ3MP1TLEcp1cgkhr5l79Y5m2utKtfACW36ca857A,2708
|
|
804
|
+
pyrogram/raw/base/phone_call_protocol.py,sha256=b12Ydf0wNctF-d1PizFYZi56J2nYVOPWmB4nM4Dts0U,2118
|
|
805
|
+
pyrogram/raw/base/phone_connection.py,sha256=_uxVFZ7iguJPEHhVyfmRtUpaqbhkrmeMMGHTgl0QpEs,2204
|
|
806
|
+
pyrogram/raw/base/photo.py,sha256=LkUkUdzZe8BTUW4ZFnz2ByshLl0nx2gx-xD0aGi1wt8,2100
|
|
807
|
+
pyrogram/raw/base/photo_size.py,sha256=Gt4azdPI5XJWhhQ6owizS71GWrByW3VloLB68rHpzVc,2484
|
|
808
|
+
pyrogram/raw/base/poll.py,sha256=9pfisOiHow5jyeuhzw29bAIHVbxC42vSyZNSJKz3cl0,2025
|
|
809
|
+
pyrogram/raw/base/poll_answer.py,sha256=0F5DHVZBbvDgpo6kuffqtSz0lV8dJBIGYpry-HjWTyw,2151
|
|
810
|
+
pyrogram/raw/base/poll_answer_voters.py,sha256=dtPef9CCDtSM7DoaRSdC9LJ2gPgLuUgVsa-h0Gys0A4,2111
|
|
811
|
+
pyrogram/raw/base/poll_results.py,sha256=gji1BIdOn0lY2YqAnQFX4l33b4CqU4eRfK6_w2hgSTE,2075
|
|
812
|
+
pyrogram/raw/base/pong.py,sha256=t5EP0s8TMMnc9dXlRr2vrZg36IZ98fRmLPfVlayZ0jE,2247
|
|
813
|
+
pyrogram/raw/base/popular_contact.py,sha256=Dl6o3vFfGUGexj0cBBRbDqf9z1vMbTw1om5iAWawRXE,2096
|
|
814
|
+
pyrogram/raw/base/post_address.py,sha256=JHCw5SD1iKJ6aMXCY1XOkMLTCPon9PQUDghR_5ig7aU,2075
|
|
815
|
+
pyrogram/raw/base/post_interaction_counters.py,sha256=MKPyeQ-B8lkiIvA1L_dRtnHGJHAhIBedjgf3Eh5I7Vs,2303
|
|
816
|
+
pyrogram/raw/base/pq_inner_data.py,sha256=z4xPLlXnN5rPFVTksy_4TbdBa7i5mlKmEjURx8ZyPmo,2323
|
|
817
|
+
pyrogram/raw/base/premium_gift_code_option.py,sha256=-j-BMBN7L_ZC4nF0wQf5QIH6FndWbmaxd3LurlY1Fq0,2366
|
|
818
|
+
pyrogram/raw/base/premium_subscription_option.py,sha256=wlb64ZsmXiwurHCzII7EMm3b3e35q30VD3ZIcg2YjzI,2174
|
|
819
|
+
pyrogram/raw/base/prepaid_giveaway.py,sha256=fSkR0I-UJ8Lf0a4Ge1AZB4MLlbqzretdrfTZAZTY3Vk,2201
|
|
820
|
+
pyrogram/raw/base/privacy_key.py,sha256=FtwdrC0nr1H013QrgC9IP9_xjk3QXA3-aOkEl-vmcjI,3397
|
|
821
|
+
pyrogram/raw/base/privacy_rule.py,sha256=xYvIVeEqq8mAb7nD_w4xZoJek5XCw8EHROIi8ZY4CXo,3381
|
|
822
|
+
pyrogram/raw/base/profile_tab.py,sha256=C50upXR4yUiYulw3AFzNzQ9xKOtNmyljP0lZ8hfdQRw,2655
|
|
823
|
+
pyrogram/raw/base/public_forward.py,sha256=wsIpxEbQCYvOEWbdWmaEcEqKYG4gClKYsWNRf5JVIX0,2202
|
|
824
|
+
pyrogram/raw/base/quick_reply.py,sha256=Gur_aBau9Z0juygtD3htPqz-L9VzOSQQs4NicCAL8uk,2068
|
|
825
|
+
pyrogram/raw/base/reaction.py,sha256=44OT3g5Z9xCHGVsngiS8cWAzxYa1NYp-3agBqch0dLg,2312
|
|
826
|
+
pyrogram/raw/base/reaction_count.py,sha256=w-potpLvSTV6pwyACo9dt1_5QP9EzJAD4vlogV3hKN4,2089
|
|
827
|
+
pyrogram/raw/base/reaction_notifications_from.py,sha256=dvYGzlYtDQa0bFAmoCALtv7E2LPj9aM-P_99lFIWTQ0,2320
|
|
828
|
+
pyrogram/raw/base/reactions_notify_settings.py,sha256=R8Fgw3wCQsjdCnHyOd6iycGptbFkjSMhzy8FTm770SE,2427
|
|
829
|
+
pyrogram/raw/base/read_participant_date.py,sha256=QA0Pbn9g7FUGep97cokZ4RYp9CvjyYihN4HMa3UA1jc,2352
|
|
830
|
+
pyrogram/raw/base/received_notify_message.py,sha256=yTlQCGX1MOtTfUNkznY65AgHtU4T7Chpq5Yv_dq70Wg,2356
|
|
831
|
+
pyrogram/raw/base/recent_me_url.py,sha256=hAkQMEgJpSDZ9X13PFCZf_Vmha_LeWGfryLh-RjxqpE,2462
|
|
832
|
+
pyrogram/raw/base/recent_story.py,sha256=5aH1ASBF8Z-TMYaOl_5ov90kD-ueQrhODiU8ae8K_-A,2281
|
|
833
|
+
pyrogram/raw/base/reply_markup.py,sha256=b1CpfVjeYS6Bg5dmB2vEegB_WRTe8EAT5EJQc5YT2XY,2382
|
|
834
|
+
pyrogram/raw/base/report_reason.py,sha256=CHnqQNptsvEQ15QBIpiOMx_3ZToc1oxxIx8EzmLy4pA,3164
|
|
835
|
+
pyrogram/raw/base/report_result.py,sha256=Awl58QiH3A3Y_c1Hz9ft4oYB2bTveDf0EUbrsHLbgrY,2547
|
|
836
|
+
pyrogram/raw/base/request_peer_type.py,sha256=tUIdyrGqLr2mf3_IDj-KMYdMbvYKyhEsybCCUYr0mV0,2429
|
|
837
|
+
pyrogram/raw/base/requested_peer.py,sha256=1DIUa-stsTOUamJylXkjnDTQn_CJs3kUqVU6Ywn56uI,2287
|
|
838
|
+
pyrogram/raw/base/requirement_to_contact.py,sha256=ID7JYJUKNwO7kZaGtd30y1TolwiLF64MwYyeSrS9bCY,2621
|
|
839
|
+
pyrogram/raw/base/res_pq.py,sha256=HiO34Dlbmg4QeBg67LT9Utjz-8AMLngWsLqcgEBSIQQ,2247
|
|
840
|
+
pyrogram/raw/base/restriction_reason.py,sha256=8PjPM9eCcLa0p4f-EXFaS1dJGnfWS2DzcgsbqTYA3aA,2117
|
|
841
|
+
pyrogram/raw/base/rich_message.py,sha256=nF3noKV4pNVUs6-kHNecqTGU47GH3fP74BsYjEzvZZI,2075
|
|
842
|
+
pyrogram/raw/base/rich_text.py,sha256=O-QzZY1Z0cJjZTWFho52sjtxXbKAXcO7uuOpffJiRCI,4007
|
|
843
|
+
pyrogram/raw/base/rpc_drop_answer.py,sha256=Nznsvt6oIW3I1fdk2wvxQBsunNgrFAT-qz7M371yzog,2489
|
|
844
|
+
pyrogram/raw/base/rpc_error.py,sha256=C1PTUiItoZrU-H5_hGUTTaNsQDx56K7FtjMbHlE6MaI,2054
|
|
845
|
+
pyrogram/raw/base/rpc_result.py,sha256=gaVzcnBRo0JS15Q0264zxrDa2QJGFe5IwzdifQIKeHs,2061
|
|
846
|
+
pyrogram/raw/base/saved_contact.py,sha256=094tqmSmv66KGQzHKvD8LSBytF24Mm7if_xty869Enw,2299
|
|
847
|
+
pyrogram/raw/base/saved_dialog.py,sha256=rnnqRB39r4wDKurhpmZGtjS1m3U1IalWj5XfnloVV8U,2158
|
|
848
|
+
pyrogram/raw/base/saved_reaction_tag.py,sha256=Hsqev9MqNzShABdlSQhoF59KfTxJCNwkDdX5zkV4vOg,2111
|
|
849
|
+
pyrogram/raw/base/saved_star_gift.py,sha256=OorZTWERND1MwaH4S9HUf9ZQEnqEVyoSwABNxGvd4AE,2090
|
|
850
|
+
pyrogram/raw/base/search_posts_flood.py,sha256=-9LCXCp7rr8MR7M5TC1yhLiPsdQu__XrrWV4GMkH0Js,2326
|
|
851
|
+
pyrogram/raw/base/search_results_calendar_period.py,sha256=6umeXa_1BHanE07ttGd0ofsn3sbLnpznBJOksTRjQRM,2189
|
|
852
|
+
pyrogram/raw/base/search_results_position.py,sha256=A8WmIJ2wAjWuoq03lqdY5YER1uM24DXUpyh5zscGqGg,2143
|
|
853
|
+
pyrogram/raw/base/secure_credentials_encrypted.py,sha256=eSTnooa9XX4Yh5wlQuZXhvS-ffAaUTpm58eEwbE4mrA,2181
|
|
854
|
+
pyrogram/raw/base/secure_data.py,sha256=krmay235WXeonnFj0mG64KZdCIhejHooAg6xF_ITH-A,2068
|
|
855
|
+
pyrogram/raw/base/secure_file.py,sha256=QjZV40R8FGBUrYuV-3mEuHlGa2J2lwSAlc7J1Sleer8,2151
|
|
856
|
+
pyrogram/raw/base/secure_password_kdf_algo.py,sha256=MMYYbnf9sX8C17pTB5m1cff7XWQgj0KdYEeH0lA1m1g,2465
|
|
857
|
+
pyrogram/raw/base/secure_plain_data.py,sha256=axqXY8oI0Ur5WaSDQWPyqb_N5tAkgpS6Y-eVMtK_3ws,2193
|
|
858
|
+
pyrogram/raw/base/secure_required_type.py,sha256=fLon3Erj-e4pMtOD_JJg25_H425Pl3JFqny5XKZKPTs,2232
|
|
859
|
+
pyrogram/raw/base/secure_secret_settings.py,sha256=1E-eX-C2LZf9-r-lG8g3T8GUuDdLlzIWdR3lOe8EQjI,2139
|
|
860
|
+
pyrogram/raw/base/secure_value.py,sha256=64FjfOb-WBnJ4Jq7BQHvNJw-0V7hve2oWyTLmmKru24,2358
|
|
861
|
+
pyrogram/raw/base/secure_value_error.py,sha256=6vqNd-lt8oUStKIYgztjGws_O5YDVPaHOKGL10ZJYww,3002
|
|
862
|
+
pyrogram/raw/base/secure_value_hash.py,sha256=qEAtICE8ZkFMeeAVfs3yinDt1bjOPqha6WmlQP3QcR4,2104
|
|
863
|
+
pyrogram/raw/base/secure_value_type.py,sha256=TA_Agy46i8-jb897bXvZa6Jl6817gS6tCiS-6ltW9jA,3573
|
|
864
|
+
pyrogram/raw/base/send_as_peer.py,sha256=Iel3x3pCtkL7EQ1D7Rzdqwbe_VsxeUR7m38lbuSdJH0,2069
|
|
865
|
+
pyrogram/raw/base/send_message_action.py,sha256=BKhlZcWTYb9op_TEkm__Qx73OTY1Mk1tyH5OVkKoR4M,4597
|
|
866
|
+
pyrogram/raw/base/server_dh_inner_data.py,sha256=_RG98kqIAsVfq0pT1cVL-hc8QGOTT6k2_n7TB1aUv7Y,2119
|
|
867
|
+
pyrogram/raw/base/server_dh_params.py,sha256=_46SvVz5hAFzym_wyOOE6dBtvzPMfu_X6_46ZNWbd6c,2391
|
|
868
|
+
pyrogram/raw/base/set_client_dh_params_answer.py,sha256=7taP5rIjd1IcUyGW4rrEntHvGHwtmwdW--C4BtXeXOI,2448
|
|
869
|
+
pyrogram/raw/base/shipping_option.py,sha256=6uhXTXZKGoREJC1d7_F2XiXYd25eSXKRHjBsi0ZDsVg,2096
|
|
870
|
+
pyrogram/raw/base/sms_job.py,sha256=EEt_1xkJIE8WicoKSFjTYuO1Js0HniiKYWMRM4HQai0,2242
|
|
871
|
+
pyrogram/raw/base/sponsored_message.py,sha256=Wu2DhD2YSA3-NhDBcmI1vZrK8MR7OVIvIvPkBnP_8jY,2110
|
|
872
|
+
pyrogram/raw/base/sponsored_message_report_option.py,sha256=h93VdCZN0njlQv4fWa5ZBohh6jvnz13Qx0saeuc2l-I,2196
|
|
873
|
+
pyrogram/raw/base/sponsored_peer.py,sha256=9Tdgys1m4pSEN4hYcoQldBD_tEDb3NDsI-D0s1Me_KI,2089
|
|
874
|
+
pyrogram/raw/base/star_gift.py,sha256=JQAK1sdtdw96yBRVmZQOmgPyV68Zr--UN0oBh-1n3hE,2134
|
|
875
|
+
pyrogram/raw/base/star_gift_active_auction_state.py,sha256=WWhFl6eq7ZhP9FYbas6JDyZTogaYuIIk8IieLsO8PDg,2183
|
|
876
|
+
pyrogram/raw/base/star_gift_attribute.py,sha256=Vg2vFVGmnkf7FRjoMH2aShnHpb6_GV3IykCaUuVGcKw,2488
|
|
877
|
+
pyrogram/raw/base/star_gift_attribute_counter.py,sha256=T6z_idXgun6EryLcnwJqiJ_3ZpTCloeFlFMiMHr51E0,2168
|
|
878
|
+
pyrogram/raw/base/star_gift_attribute_id.py,sha256=49bfJUP-ByYzSRV6eNYzhRBaRY8HQFCmdPY_U7cVv94,2382
|
|
879
|
+
pyrogram/raw/base/star_gift_attribute_rarity.py,sha256=YpTIHD9SLfE7eoWPujFOv1XGIMek-7hYrdCXsVPX5ww,2661
|
|
880
|
+
pyrogram/raw/base/star_gift_auction_acquired_gift.py,sha256=q7l1h9EhaYqZj_V-AQdBtxgAoyLIVMopdjKyWS0ad64,2190
|
|
881
|
+
pyrogram/raw/base/star_gift_auction_round.py,sha256=atxt_bOVHbQU-44d2wIBA2H832zgkv6krfJouQUobjE,2268
|
|
882
|
+
pyrogram/raw/base/star_gift_auction_state.py,sha256=4nE2r9lFT01ks2A_8yF8zMQsBQo3_AnKbaF2rakjQgg,2392
|
|
883
|
+
pyrogram/raw/base/star_gift_auction_user_state.py,sha256=1QoITHjkZncjqE4eM8aSLm11Yhn7MKac8sq3zi11X38,2169
|
|
884
|
+
pyrogram/raw/base/star_gift_background.py,sha256=P-NPhtc7c1uw6dU_g2hUqDrLLfv8sfJRHd45nhnOaDU,2125
|
|
885
|
+
pyrogram/raw/base/star_gift_collection.py,sha256=NXPZ5JurMrN8tq_7lEvf6JDHtpfUguVfLByKZ-6PDME,2390
|
|
886
|
+
pyrogram/raw/base/star_gift_upgrade_price.py,sha256=p0CXA1urv_fg5udTiXjHde1RW82RixIT6pY8l8XLMIA,2140
|
|
887
|
+
pyrogram/raw/base/star_ref_program.py,sha256=KbtLrpllIkfz0SWoWGGzOy2jMvB12yoUDgzaUmDVCq4,2307
|
|
888
|
+
pyrogram/raw/base/stars_amount.py,sha256=wYq0ZTAsIStPvkdlbpKfpxjp-PMS8vMo90EK-Oh6gss,2155
|
|
889
|
+
pyrogram/raw/base/stars_gift_option.py,sha256=G3J2Mxs02pMrJSawamWMlt4xDnEf3yQVJv2nOYf4s0U,2317
|
|
890
|
+
pyrogram/raw/base/stars_giveaway_option.py,sha256=_rJNdqWFkemyutBpxTIVUYXXfy3FShjMIQQyNAZ3iD4,2349
|
|
891
|
+
pyrogram/raw/base/stars_giveaway_winners_option.py,sha256=8sjJmisemZhmHB4yi6BjEZQFXQYvEBCP8tF4qjk8yHI,2182
|
|
892
|
+
pyrogram/raw/base/stars_rating.py,sha256=D9vnfoUCZ3pUeuzkIdk6fkJVLsO89zYadMEjVT_7sH8,2075
|
|
893
|
+
pyrogram/raw/base/stars_revenue_status.py,sha256=HYotDeqmubW17n7NyHz5f56TVCf1-6MNUa_5vTKhab0,2125
|
|
894
|
+
pyrogram/raw/base/stars_subscription.py,sha256=JUiXvh35XQNjzviBXmnERZyQM5NwgwySPFAugohuQok,2117
|
|
895
|
+
pyrogram/raw/base/stars_subscription_pricing.py,sha256=xjVbka-xU5BCjxTAKXrqFB9sWWgxnnSMWUoMZfupvkc,2167
|
|
896
|
+
pyrogram/raw/base/stars_topup_option.py,sha256=mGHByyUCccnjNJdcKNmVXhjqw2S2s18VcD4UeWye_rE,2325
|
|
897
|
+
pyrogram/raw/base/stars_transaction.py,sha256=GJCpVo-16_mO_K7DYfUHesScl1NVv03A-OlSEW6tVBk,2110
|
|
898
|
+
pyrogram/raw/base/stars_transaction_peer.py,sha256=Xh1BmtsnOHfbtP01lgaVvObKrVzPM2ItHj4sXF05mDQ,2978
|
|
899
|
+
pyrogram/raw/base/stats_abs_value_and_prev.py,sha256=DUEXRmdM8H5nqa1fafQwxxTFPOCbhJcusth65bsr7PI,2141
|
|
900
|
+
pyrogram/raw/base/stats_date_range_days.py,sha256=wnnNE5R9GsIvbM8xoYyYznx1VfIQLK7_xpYRXBwD5Kk,2126
|
|
901
|
+
pyrogram/raw/base/stats_graph.py,sha256=4LnnWPiIzpRt3hXg-m-nW1UoL4z-tlwF-KzlEcJwzkM,2438
|
|
902
|
+
pyrogram/raw/base/stats_group_top_admin.py,sha256=ss9u2zV2jqEz1Y5JzjjwgyCDx53iQWdQifhzCao00Ho,2126
|
|
903
|
+
pyrogram/raw/base/stats_group_top_inviter.py,sha256=f_GiUC_6VoWcKSLgd_za2gu4NYMzpxbaEg8JzNr4syY,2140
|
|
904
|
+
pyrogram/raw/base/stats_group_top_poster.py,sha256=sI5X9yIh4BYVP0_c663qwMlO0UyIrppi0JlK3a_XpFw,2133
|
|
905
|
+
pyrogram/raw/base/stats_percent_value.py,sha256=Pp75_LxO1MEcidLq3Yec02LDBXv5M-Mt2EiZXNlgrzU,2118
|
|
906
|
+
pyrogram/raw/base/stats_url.py,sha256=ApNKtIiJwHpJuRjOrrq8qkjdbsaOpP77gxG6294EEvQ,2054
|
|
907
|
+
pyrogram/raw/base/sticker_keyword.py,sha256=hyHAASlkM3FHe-0J8Geq53kezBdQlzAedDKoJ_nVBAw,2096
|
|
908
|
+
pyrogram/raw/base/sticker_pack.py,sha256=NEMweu5pdU_-kKdUerOrHBNINMr39vOzfQs39CORThI,2075
|
|
909
|
+
pyrogram/raw/base/sticker_set.py,sha256=_9JCvlKvr3Z5fuJhVBpASsSni5WopU9LiEJP2DKeiVU,2068
|
|
910
|
+
pyrogram/raw/base/sticker_set_covered.py,sha256=TJKd9JUmQlOgpH_5ZtA8PCGKZKbZL1GrAtcW-LKDy0A,2629
|
|
911
|
+
pyrogram/raw/base/stories_stealth_mode.py,sha256=Wug2MQtS0lxbKgZixrDhm-easwvKnATQBSde3Gc0a4o,2125
|
|
912
|
+
pyrogram/raw/base/story_album.py,sha256=a_5ldIY0M8VMESI4bvMvUr2bDhA9OmuyE-RSfxiKNYo,2305
|
|
913
|
+
pyrogram/raw/base/story_fwd_header.py,sha256=gFZkTacVSRtjWSTXZlmqurf6JahQPZ7Mupa7uTxD90Y,2097
|
|
914
|
+
pyrogram/raw/base/story_item.py,sha256=orh7CdMXF-froI3gTFW_IlaHVD2K-c5tk38hze9YuFY,2232
|
|
915
|
+
pyrogram/raw/base/story_reaction.py,sha256=dnbenHCBdWFW374t002nQf55hck2CT1ysAw8Gd5ETwQ,2317
|
|
916
|
+
pyrogram/raw/base/story_view.py,sha256=VKcVC-7mCBsl0BZnG-bprKU6KlaAKzfxwVq2GjiQdvM,2265
|
|
917
|
+
pyrogram/raw/base/story_views.py,sha256=L_dmO_Pezw2DiZvXsTapFjyttPa48YpnEiuntAv9ELM,2068
|
|
918
|
+
pyrogram/raw/base/suggested_post.py,sha256=6RTsIFnXqhmxRAnHdjRxdidvTZJUctD-lYizFFzJhHM,2089
|
|
919
|
+
pyrogram/raw/base/text_with_entities.py,sha256=4QFy6ylORk0wTjPYNhZ-ji4JxldCRoQ4zKnoy3ktfVg,2318
|
|
920
|
+
pyrogram/raw/base/theme.py,sha256=9y8HXd5xSVN01vObAKFlIZLI68CqUHG9W7d1_3ZwbkU,2298
|
|
921
|
+
pyrogram/raw/base/theme_settings.py,sha256=_fswRU9ReZ--H3X9oGkJ5ZQA_R9kZ2GdE4GCN_8fvJU,2089
|
|
922
|
+
pyrogram/raw/base/timezone.py,sha256=FQBiie35CvIspcyaaY8S1erlCNJEQI9Lqng3rXHugsg,2053
|
|
923
|
+
pyrogram/raw/base/todo_completion.py,sha256=BVnPTWIjKVr4iXEHAUOkAkwCjr3w3igWNc_ko45yu5M,2096
|
|
924
|
+
pyrogram/raw/base/todo_item.py,sha256=fIN6qQdR2hHs3C7hUCNuZu4gHmyGybggg9yiriGqAYU,2054
|
|
925
|
+
pyrogram/raw/base/todo_list.py,sha256=owCy4fi6U1AymHfirAGjC6RiCsEkfZE4p6mKG0i63_Y,2054
|
|
926
|
+
pyrogram/raw/base/top_peer.py,sha256=VJgwK7YsCx22bwlkxxvlSP1ay28kiKlWkFk7L6sddeE,2047
|
|
927
|
+
pyrogram/raw/base/top_peer_category.py,sha256=seGbzSTrZJW2vyS2BGmkIpfY_DxT8ELVwd5w8jPfS6E,3138
|
|
928
|
+
pyrogram/raw/base/top_peer_category_peers.py,sha256=E1I5DwSP1PEM8CUYueHFZFPYbBjWZGGx-YFdmMsYR-4,2140
|
|
929
|
+
pyrogram/raw/base/update.py,sha256=i5vYGsLLeoGAnY6JLUH8ieYOns1Bkhkv2gH1Tyrdga0,18356
|
|
930
|
+
pyrogram/raw/base/updates_t.py,sha256=6hTxU_w4ZKrFoZgmBRLXP6SQON7Nbn6AJlCE9-NC3sc,7825
|
|
931
|
+
pyrogram/raw/base/url_auth_result.py,sha256=j-ao_ocgctC5JZMyfwl8yihkqBPUOFTnrL2PAzH1j-o,2553
|
|
932
|
+
pyrogram/raw/base/user.py,sha256=53IoExhK37NXHmhUJRcfQhAcAA34GwF2q2G9SVrO_10,2580
|
|
933
|
+
pyrogram/raw/base/user_full.py,sha256=FcW7Vq4BDjuHiMFD-urXDqGXBvBBE1nqERXw6YRyWkg,2054
|
|
934
|
+
pyrogram/raw/base/user_profile_photo.py,sha256=UwDdZbrUHiSUwDbTil1pLcfNc6Db1HTXg4moUlo8drA,2212
|
|
935
|
+
pyrogram/raw/base/user_status.py,sha256=dNc0WhSfPLilIfSUrDT34DLPdyjYPongNqGIi1rYoS4,2533
|
|
936
|
+
pyrogram/raw/base/username.py,sha256=rWnKZ0Ar1YLoxF9edl46iHxzFRQnbsjmhwCGg_BwiiQ,2053
|
|
937
|
+
pyrogram/raw/base/video_size.py,sha256=KPQgpRfLuz-dJJp7NGCeVw01rXzuxkdaxWfjrHE6-ik,2262
|
|
938
|
+
pyrogram/raw/base/wall_paper.py,sha256=ZhTGGWw_f8UtHLj5XWyXv7tc8lPlJldXVLtHvmqQ008,2425
|
|
939
|
+
pyrogram/raw/base/wall_paper_settings.py,sha256=UaSPMp_OL1eaFNju6NkL5XM4xVOMQSFVRcTjsx-6sBs,2118
|
|
940
|
+
pyrogram/raw/base/web_authorization.py,sha256=FvtSmj3Cm8RhmMyHQ3OJWwGTapnhL2RT4VI11br70Po,2110
|
|
941
|
+
pyrogram/raw/base/web_document.py,sha256=OOdE0DDMYABhdm5q8jKJUH8lNvX4jm2X4niSvTVHRqM,2167
|
|
942
|
+
pyrogram/raw/base/web_domain_exception.py,sha256=s8XCnqlKqaNHFGWjfjWvFGS1f89nbYf-kVHH8hIo1fw,2125
|
|
943
|
+
pyrogram/raw/base/web_page.py,sha256=juaHXq1kvqdMNkhz717kU1tmqqXuulbHn9lYt8JkYI8,2291
|
|
944
|
+
pyrogram/raw/base/web_page_attribute.py,sha256=droyBM7wOJ_ESxLQU4WUy48FQpdyvjkMh5GDEtYiAAE,2862
|
|
945
|
+
pyrogram/raw/base/web_view_message_sent.py,sha256=8lAmtUrbKTbbTfAAXotYegMCERYIyXqELUEZgemFGFo,2344
|
|
946
|
+
pyrogram/raw/base/web_view_result.py,sha256=hMV1BAonQEIbs4QFyL8hViHebgAfEOedDb6Gd8Pq7EI,2429
|
|
947
|
+
pyrogram/raw/base/account/__init__.py,sha256=o9Jh-2Zg9HKSzo1v3Rc7wctil9B3fiduauk2nkqHqVI,2379
|
|
948
|
+
pyrogram/raw/base/account/authorization_form.py,sha256=RYjLxOpRt5A3tCBuvM5M6W694a9yr2G_R-MZHWyJ2RE,2362
|
|
949
|
+
pyrogram/raw/base/account/authorizations.py,sha256=P7U56J1PsK4Yckyzy3j0ChWd2jQtH0CoPqhhzBvPy1I,2337
|
|
950
|
+
pyrogram/raw/base/account/auto_download_settings.py,sha256=g1PiTV-jHYPAwhNpv7z5veBGKyLLARrA42ezeyGK92I,2387
|
|
951
|
+
pyrogram/raw/base/account/auto_save_settings.py,sha256=lvXfxdjJHnFub2xo8mRXluSLF-qdV-a7ffCakbhO2R0,2355
|
|
952
|
+
pyrogram/raw/base/account/business_chat_links.py,sha256=lGCn0fgzekZOZJFFSBTCKrq93d6cse8mNjrjewUvQVk,2363
|
|
953
|
+
pyrogram/raw/base/account/chat_themes.py,sha256=O09RzmznWY3HMdwAXTNiNT9MtA7Mym5Od24TDTkKhXY,2441
|
|
954
|
+
pyrogram/raw/base/account/connected_bots.py,sha256=qC3DeAhfvT8G09S1_mtQXgV1t6DsQrNWR4Cth187HB0,2330
|
|
955
|
+
pyrogram/raw/base/account/content_settings.py,sha256=TPThictalUv8Qe3BxwqR--LYKpZrjZ_hvTdFJbEVako,2346
|
|
956
|
+
pyrogram/raw/base/account/email_verified.py,sha256=yss2GvvsuxCJurFM8dVJnwK6plVYk7_cm9snxx_KeY0,2441
|
|
957
|
+
pyrogram/raw/base/account/emoji_statuses.py,sha256=6Dy7mZa0A8ELGlDXXtGkuY2aQ8xyK8IX_IQrJ-XepvQ,2614
|
|
958
|
+
pyrogram/raw/base/account/paid_messages_revenue.py,sha256=FbGmMlwjsQDsB03N1GHbL9mIqKV4fm7QfeWru_a7Tsc,2379
|
|
959
|
+
pyrogram/raw/base/account/passkey_registration_options.py,sha256=nfNRsRj1HTIBJ9QlaGkUzkMWzdNf4mdWuYvzjQcACxk,2429
|
|
960
|
+
pyrogram/raw/base/account/passkeys.py,sha256=msOoL4l2KK7f4xn1RnSOwFUHkF6Q_aXNoq4uo1uBbW4,2289
|
|
961
|
+
pyrogram/raw/base/account/password.py,sha256=SYHflkFKpbxEZ3cDDoy1ztOstN_Z-gjN5ci5oiCcN04,2289
|
|
962
|
+
pyrogram/raw/base/account/password_input_settings.py,sha256=I5YQYPb05DV-u04r_cQfkKuMfYwkTzlptEFS4w_jl2w,2178
|
|
963
|
+
pyrogram/raw/base/account/password_settings.py,sha256=aeQY4FLdQaGhDwTTxQSt1jXyXSE87V6Izcmnecu9wvA,2354
|
|
964
|
+
pyrogram/raw/base/account/privacy_rules.py,sha256=Ejs94DjGOvKoMYZUwCn2SFr3VSTtvkfkbKqR0tw9FwY,2349
|
|
965
|
+
pyrogram/raw/base/account/reset_password_result.py,sha256=I8LFU0lKQ_U-nA2lUc73v2k5KBQsZMTs3Fq9BGeUy-E,2628
|
|
966
|
+
pyrogram/raw/base/account/resolved_business_chat_links.py,sha256=r9wjrlANPtT23EQgc41BeuWkY3hMnfN5cLHm79wltQI,2423
|
|
967
|
+
pyrogram/raw/base/account/saved_music_ids.py,sha256=XENHyxXGyH96HUHPMs3cFNZn-4jiEfOFg4w9t1CUNVw,2465
|
|
968
|
+
pyrogram/raw/base/account/saved_ringtone.py,sha256=-Q639HgF0jVaw75Id84J9fQZl-bfRw2eB7DWE64Ivuo,2454
|
|
969
|
+
pyrogram/raw/base/account/saved_ringtones.py,sha256=a6boz1CvhfoNujeqsJtFN6OlSJvQ19na5Cd4jEitQB0,2475
|
|
970
|
+
pyrogram/raw/base/account/sent_email_code.py,sha256=9Oj05Xkjtsgx1h0R2ODqVSMjV1ZdoACy4poKstDWgLo,2334
|
|
971
|
+
pyrogram/raw/base/account/takeout.py,sha256=MzdyeFc1kfYGBPkPHFsDed-ULnQZBL-82lXe5SKHEH8,2289
|
|
972
|
+
pyrogram/raw/base/account/themes.py,sha256=5A-a3jx_cX7h93FsdAq6AJpHTG4EUYMerF1JWx9GPjg,2421
|
|
973
|
+
pyrogram/raw/base/account/tmp_password.py,sha256=29odZmZ_kE6cMZylC8Gh6quzOnY-76-3wkSrg0j8_dE,2314
|
|
974
|
+
pyrogram/raw/base/account/wall_papers.py,sha256=b1R6wIX5yall6YaGCpKQIx926Wvzn7aebgS8ZLG8Ak8,2431
|
|
975
|
+
pyrogram/raw/base/account/web_authorizations.py,sha256=0MPRzCmWfOAj9Rn7QEVAWjJulIhno_DC3nWSI16-P54,2362
|
|
976
|
+
pyrogram/raw/base/account/web_browser_settings.py,sha256=DdVPlCcWL8Kb1qGgUADoQ463LkMa1sSDODjDNZqg0vw,2621
|
|
977
|
+
pyrogram/raw/base/aicompose/__init__.py,sha256=wja4Q8K5ObH4HxUq6Yw6tsuBc2wb0grIhizg3jJawDQ,1085
|
|
978
|
+
pyrogram/raw/base/aicompose/tones.py,sha256=7SkgNeA4Qe-BdrjjJWtc5_k65bySlYhArD_7vORmRlk,2422
|
|
979
|
+
pyrogram/raw/base/auth/__init__.py,sha256=rrQfR-1U-rmNZQnFVgLB3ec9lKjPJlKRhcTvhP72kJM,1437
|
|
980
|
+
pyrogram/raw/base/auth/authorization.py,sha256=raqsqjMtG0QDQMkWhANe1XhPO9BGyqp3EBqzC49pQCs,2685
|
|
981
|
+
pyrogram/raw/base/auth/code_type.py,sha256=-tqbo9345hMOQVhXz7ovs0dfjSWYLBlqR2qlpJY-ziU,2490
|
|
982
|
+
pyrogram/raw/base/auth/exported_authorization.py,sha256=Z-QUi6CZBxkaAELAZ1dYZIPKvEsjyO7d2W5os1rXh7U,2374
|
|
983
|
+
pyrogram/raw/base/auth/logged_out.py,sha256=lmyLB9Jah6hjolE8FPq-UEPSAAr2-EvXCYnRVHjBzMI,2277
|
|
984
|
+
pyrogram/raw/base/auth/login_token.py,sha256=tK33K6xq3_qdQmIqsu7znxF4X_GZsJBWmHtbaCHzaic,2542
|
|
985
|
+
pyrogram/raw/base/auth/passkey_login_options.py,sha256=hGm0BGfOotEjXIM92gbdgkjjD8w4dD9-nybsPK4OkMc,2358
|
|
986
|
+
pyrogram/raw/base/auth/password_recovery.py,sha256=KOb9XUns2rCJjsHQopbj_PXSc3g_glssWrCqDVVMuQQ,2343
|
|
987
|
+
pyrogram/raw/base/auth/sent_code.py,sha256=NesLSHU7U18n0bZ99dlVHIg7dYEfMPWNdlwCdV6-W5U,2705
|
|
988
|
+
pyrogram/raw/base/auth/sent_code_type.py,sha256=_UHvDWys7r_7_SIuGSRCRiPRXbH9efKRk-si7B5ZX-Q,3267
|
|
989
|
+
pyrogram/raw/base/bots/__init__.py,sha256=svs05EiuMfdFGiqIF59pXO71KdilFbcaYltZnCyUfjQ,1312
|
|
990
|
+
pyrogram/raw/base/bots/access_settings.py,sha256=3CLqQ0GEZp0zKkljX9QgpYCN21BAkwVDdm7o5rYvIZI,2323
|
|
991
|
+
pyrogram/raw/base/bots/bot_info.py,sha256=SvIFWuDQy7HxOlBrAvZ2EzXDaugI3L8FsbHQHbOwOjg,2267
|
|
992
|
+
pyrogram/raw/base/bots/exported_bot_token.py,sha256=6sWrjdy_Heoy2L9ueoQ0bXLqIYeWkdqnR0DT0quaLyA,2335
|
|
993
|
+
pyrogram/raw/base/bots/popular_app_bots.py,sha256=TbNbJaElyEK6Ynha0KWj5U3ytsJCwlXBm-oe4-usPZc,2324
|
|
994
|
+
pyrogram/raw/base/bots/preview_info.py,sha256=tKrurpohaJhwVuph5OxgH9zBLaVoMSNocOmblKXj73Q,2299
|
|
995
|
+
pyrogram/raw/base/bots/requested_button.py,sha256=lPkP1uNS8eVbOiIiZSZvoZ-kw7KYH4cV5GqEBaYiRgw,2333
|
|
996
|
+
pyrogram/raw/base/channels/__init__.py,sha256=GrvT3LSj4F1mWhK2CXWP5OGq_OYi5GXlodzogPKwzcE,1326
|
|
997
|
+
pyrogram/raw/base/channels/admin_log_results.py,sha256=wppCPieiSjpY1xhlyycB6-TUNYHXNwpdSBh9EU2xVXc,2345
|
|
998
|
+
pyrogram/raw/base/channels/channel_participant.py,sha256=z8a1GVNFzqSvW7_DuKtOtptDWZ97Inqi51SOQ3VYi7c,2368
|
|
999
|
+
pyrogram/raw/base/channels/channel_participants.py,sha256=c-VlVRefDpYK8cmoq45k9vo1rS4O1inVEaGXQguZ01s,2531
|
|
1000
|
+
pyrogram/raw/base/channels/send_as_peers.py,sha256=z0-2BiJpMa_bcLSxxps9gbf0W7HBYl8aEiYn1z_EOOY,2315
|
|
1001
|
+
pyrogram/raw/base/channels/sponsored_message_report_result.py,sha256=E3lX8cXX8fPXW_bhAfjVeH5UKk9ZURjnexkehEeXv9s,2832
|
|
1002
|
+
pyrogram/raw/base/chatlists/__init__.py,sha256=QgypkMNIZRZIPHv1uPz5Mt_aNoju42c074-B0GduTpo,1257
|
|
1003
|
+
pyrogram/raw/base/chatlists/chatlist_invite.py,sha256=rb7yYJsPHTz_5YXWmhxZyZyLe7WOEEM95-QwldFSOXU,2481
|
|
1004
|
+
pyrogram/raw/base/chatlists/chatlist_updates.py,sha256=Be1B8kDKJ_zf-sKpwsaWGoyEt_haMlLRCZIW-_uNw-A,2356
|
|
1005
|
+
pyrogram/raw/base/chatlists/exported_chatlist_invite.py,sha256=Lgb2dicT5TQrtltSE1pu0IB44Tz9eEpN-JLUG4ro9Ow,2408
|
|
1006
|
+
pyrogram/raw/base/chatlists/exported_invites.py,sha256=7VcnDwQbFLWkuxHMKcaEPruh7kSnIZj2czNqSHefo-A,2356
|
|
1007
|
+
pyrogram/raw/base/contacts/__init__.py,sha256=LYZ82_innioPtGCPyCYmzUbMs0ovDWvby3xdq9VnwK8,1357
|
|
1008
|
+
pyrogram/raw/base/contacts/blocked.py,sha256=3U2sTNhR35Y9Ohwz5LwdoqOybKbm2Pt2zQ2kumNlFGQ,2387
|
|
1009
|
+
pyrogram/raw/base/contacts/contact_birthdays.py,sha256=pE8UPjdzFPcIxaDua9S0OtpAOv6qRtn3R3A3NVZGCfA,2352
|
|
1010
|
+
pyrogram/raw/base/contacts/contacts.py,sha256=SnWQG-sh9Zp5n8vsAWIato-z5ZVugoRl-xp1rtgpgyI,2416
|
|
1011
|
+
pyrogram/raw/base/contacts/found.py,sha256=z6Gzf-DHF61hP2VY9KeXI3qa63FkkEx0q0eEQnvZ_eA,2268
|
|
1012
|
+
pyrogram/raw/base/contacts/imported_contacts.py,sha256=vMxalFXVfa3Tv-CiMr7_fAkMQOISKUj_SXS2T85RPGU,2354
|
|
1013
|
+
pyrogram/raw/base/contacts/resolved_peer.py,sha256=WgAp6erTMlZNclZPK_TxI3ceEXNw8jQ2qkIPf5prhHE,2362
|
|
1014
|
+
pyrogram/raw/base/contacts/sponsored_peers.py,sha256=FB8yFhvbcPAPGXC-x5JxBgQVipb3_846mY73_lHgZEQ,2465
|
|
1015
|
+
pyrogram/raw/base/contacts/top_peers.py,sha256=2m0ZXb0vkmyroY8wtMfRfZSk2QmHTogkvou_0bmNDvQ,2529
|
|
1016
|
+
pyrogram/raw/base/fragment/__init__.py,sha256=72ZjZLSzdflvNqc5WoEG_SrNmux76DzjVr_75DI0vfg,1106
|
|
1017
|
+
pyrogram/raw/base/fragment/collectible_info.py,sha256=7hR5pdYlNqdfbysYD8pTarolnrzlkV7lWbTXytXf5LY,2351
|
|
1018
|
+
pyrogram/raw/base/help/__init__.py,sha256=lvP5sXQS29NGj9xyFkkKYBfr4FV5UIe3nS3V0ufnogA,1881
|
|
1019
|
+
pyrogram/raw/base/help/app_config.py,sha256=_SKa7_yh9vZ2MDpBdXut9gFa16GOdM2fzltonq81npc,2396
|
|
1020
|
+
pyrogram/raw/base/help/app_update.py,sha256=EVnnFTqyWBb-DuwBiHFHK72DyMR9jxg1QMh9e7i0Igc,2369
|
|
1021
|
+
pyrogram/raw/base/help/config_simple.py,sha256=whToe5TP-_KhBUUmtFbYoK8mfSHsnGnVfUhE_-h8IZg,2102
|
|
1022
|
+
pyrogram/raw/base/help/countries_list.py,sha256=r2Fd9Ehho8735XgQZYy6ZenoXEBhdQrzcgc2AQFCpfM,2440
|
|
1023
|
+
pyrogram/raw/base/help/country.py,sha256=34KqyofrzABqsiY3_bURduqCTZitRtZ2LELx-waimIo,2066
|
|
1024
|
+
pyrogram/raw/base/help/country_code.py,sha256=FCA51A107fZeoPsNHcGxc4xVv1P8q1LHZyZPpCfJ3w0,2095
|
|
1025
|
+
pyrogram/raw/base/help/deep_link_info.py,sha256=D73O9CCuQm89bH4U2OcAslzKhjDvlMvSY5qWPD-33AM,2412
|
|
1026
|
+
pyrogram/raw/base/help/invite_text.py,sha256=nqHUzqg7KRUg6GTih6ep6DqqSmEMju6onhqpgAavFNI,2291
|
|
1027
|
+
pyrogram/raw/base/help/passport_config.py,sha256=9HvEV3qsS1Cdp6bEinMcBctX-m3eG4dplhjBe8yM5Eo,2451
|
|
1028
|
+
pyrogram/raw/base/help/peer_color_option.py,sha256=JJ8INxyhQg8yeb00Ht8wU-IJynitj-JVDWCMbB3jMMU,2124
|
|
1029
|
+
pyrogram/raw/base/help/peer_color_set.py,sha256=YFntUi9IkKu7aC653P2jbAyqf8Ey2cIuZQ3z5efHhI0,2213
|
|
1030
|
+
pyrogram/raw/base/help/peer_colors.py,sha256=JNeULpFk2eTh47VxQrq8ShlGWag2DMQITaKg4vqCf6M,2446
|
|
1031
|
+
pyrogram/raw/base/help/premium_promo.py,sha256=ZZETLpYsUcKjZdvkJVLguZIRWHHSFZ40CPMpJK3zL5c,2307
|
|
1032
|
+
pyrogram/raw/base/help/promo_data.py,sha256=QYR8f95DkqYv-kQSGA5vvuAgQKJyPSLwgFKE4reC27s,2378
|
|
1033
|
+
pyrogram/raw/base/help/recent_me_urls.py,sha256=lsbwr8u_Gxcx4XGu43wV4xVpkonPcnsWIMzF8YPvvvg,2308
|
|
1034
|
+
pyrogram/raw/base/help/support.py,sha256=ctLGxg9qSlmJ-AynUJurdpVLjH5njZBqIyagfWbr90k,2266
|
|
1035
|
+
pyrogram/raw/base/help/support_name.py,sha256=CkI5PhuImigh2OkPv_Q0sR5FuR9xid3_TJdkflkGUqA,2299
|
|
1036
|
+
pyrogram/raw/base/help/terms_of_service.py,sha256=lIdn9Z9S_WUqAUCaRSj2bGzNRVFIrVkqrSxSy5a4-cI,2117
|
|
1037
|
+
pyrogram/raw/base/help/terms_of_service_update.py,sha256=d_Tq9eGHgn_LrxLwhS3mTvm5tzNBkQZuWog0r1fXf58,2501
|
|
1038
|
+
pyrogram/raw/base/help/timezones_list.py,sha256=mZ8yhbWubCDaSYk3HmSjzJbNYDL-ridznkIJBF42-78,2440
|
|
1039
|
+
pyrogram/raw/base/help/user_info.py,sha256=BM2LWviMoZjiJmMlXkpf5mqhS7rTJO_Ur-je1kuDJfI,2398
|
|
1040
|
+
pyrogram/raw/base/messages/__init__.py,sha256=7BL_ghbwq0v_ED0_nTe05hoktwuVftKzSx6_5TDxWAY,3952
|
|
1041
|
+
pyrogram/raw/base/messages/affected_found_messages.py,sha256=M7mEXKYv91rqu4PeD3Vtc4cFVxsdb-m1mtK55RVqmxk,2398
|
|
1042
|
+
pyrogram/raw/base/messages/affected_history.py,sha256=73T43oybHBbY3DDaie3UTE-CxoYRYdTdH1bD1k0eQSM,2615
|
|
1043
|
+
pyrogram/raw/base/messages/affected_messages.py,sha256=mCS_1lap8LuRnAbwPq6ykie9BTqt6gp1T4FkmLe2G3o,2465
|
|
1044
|
+
pyrogram/raw/base/messages/all_stickers.py,sha256=D6p_zR2eTZ6Qw50DwrbdzzxY7rbvhegJCU10N5Sl42Q,2526
|
|
1045
|
+
pyrogram/raw/base/messages/archived_stickers.py,sha256=pJiWPlwGIeYLdzmN5y7yHAsMTAWFYi3WbbhfTrmY1mA,2359
|
|
1046
|
+
pyrogram/raw/base/messages/available_effects.py,sha256=RmymvCKPEgy1PoaAVvp3MZ8Yk2GX1fOZE6TJxKJPN08,2505
|
|
1047
|
+
pyrogram/raw/base/messages/available_reactions.py,sha256=MPI5WCTJf3ZXYNXiUVQHyfNf79J0w3SA1mKX3Eu5RmI,2527
|
|
1048
|
+
pyrogram/raw/base/messages/bot_app.py,sha256=22hPH7bc1d-R6KRJhtWraw7S6W2KOTdpFvY8hkub_KU,2279
|
|
1049
|
+
pyrogram/raw/base/messages/bot_callback_answer.py,sha256=nQkOOOp8xrUEfZwPNCc75LD-rP4A1lLLH1WG-FuD404,2368
|
|
1050
|
+
pyrogram/raw/base/messages/bot_prepared_inline_message.py,sha256=t0ZTGtlvJ5ByrWslaK3phiqL1mxQBRyQGq9hRV2GwTs,2423
|
|
1051
|
+
pyrogram/raw/base/messages/bot_results.py,sha256=VoFSw4LSdEEt9CfPNCLPux0xfe9wPpfW66hgsGXbWXE,2317
|
|
1052
|
+
pyrogram/raw/base/messages/chat_admins_with_invites.py,sha256=197WRjc_2RcKAJiIGhRjjlgZ5vWHlU-C-3aZdwp-g3U,2397
|
|
1053
|
+
pyrogram/raw/base/messages/chat_full.py,sha256=yGRP0Pb2Ir-uxZEcMIpilVz7yC0B6P5bJCAkpYbXE1Y,2332
|
|
1054
|
+
pyrogram/raw/base/messages/chat_invite_importers.py,sha256=BMD8uSoDjvSx85XVRYwNqyWtmri2gUC50Nfvfpip28s,2384
|
|
1055
|
+
pyrogram/raw/base/messages/chat_invite_join_result.py,sha256=TAHzl9od5k-3mnpRn6cLqiSXVegrkGEVqyDoOtxMTFs,2572
|
|
1056
|
+
pyrogram/raw/base/messages/chats.py,sha256=G6MPOrUbTFRHIbIG-_vU0FvLTrjTr2_pVyfnYD_ZXD8,2644
|
|
1057
|
+
pyrogram/raw/base/messages/checked_history_import_peer.py,sha256=cIES6vipAGgDD3JAzXr8OS1Je5QkNafcO8fgDvCP8qg,2420
|
|
1058
|
+
pyrogram/raw/base/messages/composed_message_with_ai.py,sha256=i38Js4bBkU3oxAPNNsn-lg8hdCshTIvrEux3id5wmlk,2397
|
|
1059
|
+
pyrogram/raw/base/messages/dh_config.py,sha256=FKwvOVkNzIXA3fECd7lljpneomkQGa26dfb5y1k41QM,2417
|
|
1060
|
+
pyrogram/raw/base/messages/dialog_filters.py,sha256=HT-gO31PbC0WYW4ASkMvk2E03ii3jldQ2QPKVzQMOTY,2335
|
|
1061
|
+
pyrogram/raw/base/messages/dialogs.py,sha256=K7xG5q8TTUOvTzstaSPcWGdllWsWiJgdyhiQZYSmY0Y,2505
|
|
1062
|
+
pyrogram/raw/base/messages/discussion_message.py,sha256=IcvFMqdUxmlit9D4Z30jiuRr5GPhgTy1MhS9fCWJbbM,2367
|
|
1063
|
+
pyrogram/raw/base/messages/emoji_game_info.py,sha256=mD44F3iIKzi1dIOtSmAa11FgSfg1M1eLR3DmRCNafk8,2473
|
|
1064
|
+
pyrogram/raw/base/messages/emoji_game_outcome.py,sha256=w7kqVKa3QOQZy4331TIM-AO93rSBMU1PUlZai2USW4Q,2147
|
|
1065
|
+
pyrogram/raw/base/messages/emoji_groups.py,sha256=uouMVNW85-LtXPwHizpuM4vrqBa0w76livV-yTJTRO0,2584
|
|
1066
|
+
pyrogram/raw/base/messages/exported_chat_invite.py,sha256=tkB-G-OrTBi04mWecCyktI6n46MfGjFVhl0ILwWVVtQ,2564
|
|
1067
|
+
pyrogram/raw/base/messages/exported_chat_invites.py,sha256=Ip5zP2eHlQW1wJf8xd8awPBF1VQIGHrY6_VS4B3o_Qc,2384
|
|
1068
|
+
pyrogram/raw/base/messages/faved_stickers.py,sha256=itgFA6Yd0_ggeozbduSgfZUlqC0xDw7IkvpHFiZzXx4,2472
|
|
1069
|
+
pyrogram/raw/base/messages/featured_stickers.py,sha256=wxLwAPrBxMQvebeYL-gd14xGU5hHzWHJ-led7XB8OQA,2596
|
|
1070
|
+
pyrogram/raw/base/messages/forum_topics.py,sha256=1ZI4npJji2cuFsgFnwrx9QQFZIlmOcvM7xPC5IusD2M,2360
|
|
1071
|
+
pyrogram/raw/base/messages/found_sticker_sets.py,sha256=_Iyts4UVsDQ1uVFCNZBXNgtnKDxOUhpvHKQYpymXt-0,2549
|
|
1072
|
+
pyrogram/raw/base/messages/found_stickers.py,sha256=sm8QG5F-bVPDXHlPSd3OzhSimRXkej0o4aBtzOwB9Zw,2470
|
|
1073
|
+
pyrogram/raw/base/messages/high_scores.py,sha256=L88z-OYUUGCQbYIA8LP2VAakboCHWqcqveHLrZkx8y4,2361
|
|
1074
|
+
pyrogram/raw/base/messages/history_import.py,sha256=3qbZ4enAZ40VlwO7uTNpdsIilIrCFSvIekij1nD2I2g,2336
|
|
1075
|
+
pyrogram/raw/base/messages/history_import_parsed.py,sha256=OKIUiB3db-mZnEVg2_mXeILzR8ZjYg3nwy-MG8r7Ve4,2380
|
|
1076
|
+
pyrogram/raw/base/messages/inactive_chats.py,sha256=ORssxBeTm3081zyLbByu5yGOy7EMdaM9yDTyTBYpC6o,2338
|
|
1077
|
+
pyrogram/raw/base/messages/invited_users.py,sha256=RJ6kvMWwq-SsmJhEd3yNkx8oFZIyu3CKAZPc_OwlDOI,2393
|
|
1078
|
+
pyrogram/raw/base/messages/message_edit_data.py,sha256=z-v315ABOKKbVYPeKDh1o_gwQKG34kwdGPOQ8HKQCLE,2352
|
|
1079
|
+
pyrogram/raw/base/messages/message_reactions_list.py,sha256=u6hAaWDXJcFBkiEUAa4AGmNP6InTOnnHKJM5ut2u27I,2392
|
|
1080
|
+
pyrogram/raw/base/messages/message_views.py,sha256=9f-n4wzFadng3Oo_o1buqFgccylKYHIseqYbJBvRhdM,2328
|
|
1081
|
+
pyrogram/raw/base/messages/messages.py,sha256=uilyfypFHWw0KziUKGpTR0fYVjhbdTJd7VN9I67Wy0Q,3264
|
|
1082
|
+
pyrogram/raw/base/messages/my_stickers.py,sha256=X7K1z4nGhPWxFvlyeV39bH5oV7fIC7KwLAqyx6xs2wM,2311
|
|
1083
|
+
pyrogram/raw/base/messages/peer_dialogs.py,sha256=cZQc2sJ_piFjfj0Kr7dXbg0ODuJUFLLZSTVWIzDEQZg,2358
|
|
1084
|
+
pyrogram/raw/base/messages/peer_settings.py,sha256=e_-EYsIdQXK8sGYLo2ZKdn5T1onBFxLviGUBDfsoYpQ,2327
|
|
1085
|
+
pyrogram/raw/base/messages/prepared_inline_message.py,sha256=YDXE7wct-md9Gy5mlxE8Bfeglk4_WrSC1B3N4Fe8glc,2400
|
|
1086
|
+
pyrogram/raw/base/messages/quick_replies.py,sha256=93fXlJNugAzxExBneqeXVETVYljSXyCutETWi9g3NW0,2461
|
|
1087
|
+
pyrogram/raw/base/messages/reactions.py,sha256=41De-e2r9rPAPp8GoQqeFaOISj78Ht3zsaP7Mhy3HpM,2515
|
|
1088
|
+
pyrogram/raw/base/messages/recent_stickers.py,sha256=aKrlv0RHbm3YYmd1IlHpvWdsfA9qlhbQY_eEDbHPMSo,2483
|
|
1089
|
+
pyrogram/raw/base/messages/saved_dialogs.py,sha256=R4pGM7GZZuF4lXzkX1EUlZHuOkIS3_h5NAepnWMuXIs,2661
|
|
1090
|
+
pyrogram/raw/base/messages/saved_gifs.py,sha256=vrJA-v3c-TT_1IlII_PrDqpBferVs04_RlUvlLkyNVM,2428
|
|
1091
|
+
pyrogram/raw/base/messages/saved_reaction_tags.py,sha256=wmxbZGkot1BZx8QulEyhHN9KEYqmDL2KjFIoKrMwwDE,2517
|
|
1092
|
+
pyrogram/raw/base/messages/search_counter.py,sha256=k2IEwiEy3CfBzy8E3FMDRdnmChlWv06WBeRopNYfq9U,2336
|
|
1093
|
+
pyrogram/raw/base/messages/search_results_calendar.py,sha256=gQHrDPrSsVxmhFQ6prC440zPf1JrDs50ULHvszAWDT0,2400
|
|
1094
|
+
pyrogram/raw/base/messages/search_results_positions.py,sha256=3jqjkTV4M011HeGqU3EfdNR7UD5De60rmpMjqG5w188,2408
|
|
1095
|
+
pyrogram/raw/base/messages/sent_encrypted_message.py,sha256=pNtozwvaCJY-MVC3Dp22aSLcU4fzH-Plu0Ir2uZcqrI,2580
|
|
1096
|
+
pyrogram/raw/base/messages/sponsored_messages.py,sha256=-B0tOe5NaSQcvos8qnqkuZMvxbGElgz-ClI6Hg4sxG0,2498
|
|
1097
|
+
pyrogram/raw/base/messages/sticker_set.py,sha256=kqYHBEjWwgHzNzMHnmwgshmRTboRvxjsfvZFnIZWYIY,2749
|
|
1098
|
+
pyrogram/raw/base/messages/sticker_set_install_result.py,sha256=aaUY712f36kPtF6HVti6Txqat8-v0gh7T4pE935J58Y,2584
|
|
1099
|
+
pyrogram/raw/base/messages/stickers.py,sha256=0bni_04m6Bn9_tFlV1SgOP_7mR0sFHI0RSoCn9Ldzzk,2416
|
|
1100
|
+
pyrogram/raw/base/messages/transcribed_audio.py,sha256=62WUMvNfWee9-zgTkzytZLoEfEg_nkVhF_Ijmn89oF4,2355
|
|
1101
|
+
pyrogram/raw/base/messages/translated_text.py,sha256=5TV8jFWobtVGCrlTPXDs533X9QUJTyUc3Yh-ZOAfTS4,2342
|
|
1102
|
+
pyrogram/raw/base/messages/votes_list.py,sha256=irOeAB7qWxV2xOJZiC9tQHAPyBl4PtSiVToSwF1jrvQ,2303
|
|
1103
|
+
pyrogram/raw/base/messages/web_page.py,sha256=BrXrchNegegagrBFEnjCfxPbpxGUjo2rFTdg4rXLYLk,2287
|
|
1104
|
+
pyrogram/raw/base/messages/web_page_preview.py,sha256=rh2ssQK6WXNL30oNJk20UMmdCjNWfI5zLKZGVxZnsPs,2344
|
|
1105
|
+
pyrogram/raw/base/payments/__init__.py,sha256=yvTE_-jTa8WNmyU4ShkiktFnvOiYYPhkGi70_bVEY1A,2534
|
|
1106
|
+
pyrogram/raw/base/payments/bank_card_data.py,sha256=kjKXoHH4ibbnsRZXlkb0WkkinlqGJCudUdpCAIqELY8,2328
|
|
1107
|
+
pyrogram/raw/base/payments/check_can_send_gift_result.py,sha256=p21Wws_cQfnS6Lmzks22JERjh9jukLgb-MiF5PN3TLQ,2550
|
|
1108
|
+
pyrogram/raw/base/payments/checked_gift_code.py,sha256=K2iWfbEEgP4-6RkbNFRVZae48QwKJ3G9T9OoYQOik1s,2347
|
|
1109
|
+
pyrogram/raw/base/payments/connected_star_ref_bots.py,sha256=U783r3KyA4fp0C5XB44fJlLFQJkcdGocYrel9WGWqhM,2522
|
|
1110
|
+
pyrogram/raw/base/payments/exported_invoice.py,sha256=MgNlIpAjBpOOlSGj5FKi10eXqEuJOxG3FPHhY6WAsR8,2346
|
|
1111
|
+
pyrogram/raw/base/payments/giveaway_info.py,sha256=rX33Twj20NMn9u5sk2e0iUxETTuIUJED7yow_7BwKQg,2449
|
|
1112
|
+
pyrogram/raw/base/payments/payment_form.py,sha256=evv7cUf6zlYH4mvgawEOS7-QIwAzJxaMq6dORbhzI8E,2553
|
|
1113
|
+
pyrogram/raw/base/payments/payment_receipt.py,sha256=kKr7Y_zCo9P-I6HxdtGb6iGdpXcjqR3gZYXYwM9a_30,2465
|
|
1114
|
+
pyrogram/raw/base/payments/payment_result.py,sha256=llf66YWuzb1UFuGEv6BvQTmmXq3C96QaJql_18qxLlc,2510
|
|
1115
|
+
pyrogram/raw/base/payments/resale_star_gifts.py,sha256=KH_4rHAKAuFAc_w_sGSaUaEBkWA4-9eSycFxEV0mfVc,2352
|
|
1116
|
+
pyrogram/raw/base/payments/saved_info.py,sha256=pkKJRzgrPio-GQJPLjWT0b9NcHLEkEvkaSvtBKJnJgc,2303
|
|
1117
|
+
pyrogram/raw/base/payments/saved_star_gifts.py,sha256=gHneZP-S-mL_UnZ9iVYalYvlh-z5-XxkfHU6krcVlko,2422
|
|
1118
|
+
pyrogram/raw/base/payments/star_gift_active_auctions.py,sha256=CQASSGySdc8-Hm0FrjPnz3bYIFd8nCEjkexO-yP8l84,2573
|
|
1119
|
+
pyrogram/raw/base/payments/star_gift_auction_acquired_gifts.py,sha256=v1J6mK0-ez7qOFVy6wSTVXC40v5qHL0mWEK3qDHww9w,2458
|
|
1120
|
+
pyrogram/raw/base/payments/star_gift_auction_state.py,sha256=b_wWBuCvE6-Ys98nAoaM0w10UwESp0jYGe6MKhzb7sE,2393
|
|
1121
|
+
pyrogram/raw/base/payments/star_gift_collections.py,sha256=6wJ78ZTGsqu2FLfPx0XWOBvRDDa9cRpRqwR5x1TmGR0,2539
|
|
1122
|
+
pyrogram/raw/base/payments/star_gift_upgrade_attributes.py,sha256=wn6BZAR1Z9W_4nVqWCultLCtlgsCfxt-n3lDt86qtss,2433
|
|
1123
|
+
pyrogram/raw/base/payments/star_gift_upgrade_preview.py,sha256=TFFyHx6nfWwtvi-67uF8_Tl-U1wQdkAcG2TxLB-Z4Vs,2409
|
|
1124
|
+
pyrogram/raw/base/payments/star_gift_withdrawal_url.py,sha256=q4Z-sMo6dIagk1JoIqovI9Jj5ibss9lmiwW_iEB2mTc,2401
|
|
1125
|
+
pyrogram/raw/base/payments/star_gifts.py,sha256=OxSnRZ7SGwjrgIN3ueuLuaL1XwnpvZXIJ-sR-YNu_FY,2428
|
|
1126
|
+
pyrogram/raw/base/payments/stars_revenue_ads_account_url.py,sha256=pBeOFDY8tk9YYRl-uwRKdoR-aVy2fcmN-5wJJyo9PB0,2434
|
|
1127
|
+
pyrogram/raw/base/payments/stars_revenue_stats.py,sha256=OIc9vFx5l3O5YCuqWA81YHSC3Lqf9F8QAJxunM-613k,2368
|
|
1128
|
+
pyrogram/raw/base/payments/stars_revenue_withdrawal_url.py,sha256=61B7hAw8JZ14PQf8EOCfNgzJ3jtjZJoIBhocq9sEZLk,2433
|
|
1129
|
+
pyrogram/raw/base/payments/stars_status.py,sha256=9GJJjVqfNpGkl-cvjb145PbOHxNNk4uxIS9av3Y57OQ,2451
|
|
1130
|
+
pyrogram/raw/base/payments/suggested_star_ref_bots.py,sha256=DKn7itc-BuNJP6mwucjXIZk5kJL5gCauF-CLyepn0uc,2393
|
|
1131
|
+
pyrogram/raw/base/payments/unique_star_gift.py,sha256=jJmMzBkQb8INGAtC62Jx-E_0sAMZeLp1RY2a_ELffmU,2344
|
|
1132
|
+
pyrogram/raw/base/payments/unique_star_gift_value_info.py,sha256=WbH1AtdfhAOExqbTGw-icNE_mkIL75SAhU31ijVk6ug,2418
|
|
1133
|
+
pyrogram/raw/base/payments/validated_requested_info.py,sha256=0Tzy-wdc7jrHFG7gUKV3QwcBkdXuJ-KGEuwzKVeAi1k,2404
|
|
1134
|
+
pyrogram/raw/base/phone/__init__.py,sha256=4DcFfrIQc0sD3UB3qao_KlHWnO53Iwer9RZevYEMM6c,1453
|
|
1135
|
+
pyrogram/raw/base/phone/exported_group_call_invite.py,sha256=wyA4LIpF78W2LqXGMSg_jiQ13jCHcH_v4XEff2vOhNs,2397
|
|
1136
|
+
pyrogram/raw/base/phone/group_call.py,sha256=ScSdtmSJjO2h9PW0U5z_iiqX8s11BrOqCJ-CITh8X4w,2288
|
|
1137
|
+
pyrogram/raw/base/phone/group_call_stars.py,sha256=abj6458MMvi-0HqALTqM33eeVl1wlj4aqG7l0pWf97Q,2329
|
|
1138
|
+
pyrogram/raw/base/phone/group_call_stream_channels.py,sha256=UyUt8Mh65Al18BHsg4E_x7gdfsTK6G4mvEGBulBVnGg,2402
|
|
1139
|
+
pyrogram/raw/base/phone/group_call_stream_rtmp_url.py,sha256=tMEg0UqMfeyPdtG04mdwIH8R8SaGpdjHisWJlppdrOo,2395
|
|
1140
|
+
pyrogram/raw/base/phone/group_participants.py,sha256=FRj0eXhqAk4rlox5aBBeXCEBLRlsm-0XLNq8v1xBcXY,2352
|
|
1141
|
+
pyrogram/raw/base/phone/join_as_peers.py,sha256=y-EI7UhGn-y1GIOLMYIWtvLf_-pLWlg_vUhKFiPzPGY,2309
|
|
1142
|
+
pyrogram/raw/base/phone/phone_call.py,sha256=VNJ9PK4L-pZ1Es_7w61_JBa-gd6R61bk1VdxZoBlubs,2347
|
|
1143
|
+
pyrogram/raw/base/photos/__init__.py,sha256=tIzwJhO9CoJpN5UWZdVNaNtXcyJfH89BiWpcTd6FVlE,1112
|
|
1144
|
+
pyrogram/raw/base/photos/photo.py,sha256=K7kgkxRJT1NhNwA3g4hxH5qHMv2YSWcqzhxv1cQ3QXk,2354
|
|
1145
|
+
pyrogram/raw/base/photos/photos.py,sha256=FlxeIu8UVZXs_MctiJj_iESoiAmmDq_L6cS4YAWOfgo,2364
|
|
1146
|
+
pyrogram/raw/base/premium/__init__.py,sha256=_rngV3gZsOuPlLiXEuf6DQmksYcSJIikeQ_QyFaWSqg,1168
|
|
1147
|
+
pyrogram/raw/base/premium/boosts_list.py,sha256=RXVDsF_b7O5QL5B6LoLA6wqnzd_u6NAH6gwcJVJfQb8,2341
|
|
1148
|
+
pyrogram/raw/base/premium/boosts_status.py,sha256=LmOT18JunqgV8NPFL-S7i4gtbJGio4RXaAJb4jzo8o8,2322
|
|
1149
|
+
pyrogram/raw/base/premium/my_boosts.py,sha256=lP1NCsTbHuB1KGptVfp3L4IPbiACYktp1ZmH1pvGfkM,2322
|
|
1150
|
+
pyrogram/raw/base/smsjobs/__init__.py,sha256=rysi4RBf4D9dMuiO8xlQGylWpc1v6cID4qOlMIOBFGA,1138
|
|
1151
|
+
pyrogram/raw/base/smsjobs/eligibility_to_join.py,sha256=xotWFSE8RApHukBZ5HmaawqtnaW3zsRCLnWgSRrGWVI,2350
|
|
1152
|
+
pyrogram/raw/base/smsjobs/status.py,sha256=ewx12NOqdWSRdDH2nJYtTEuxfVOhXlw4Zu-ULu9fKZY,2273
|
|
1153
|
+
pyrogram/raw/base/stats/__init__.py,sha256=Bx6GDXAPTn0621SqOfaurkuEYzWcKTVyBzzad2bncyc,1302
|
|
1154
|
+
pyrogram/raw/base/stats/broadcast_stats.py,sha256=FD92aF_COzfvWpddfD6tFnLrexJf5kNWVLREimQ4kn8,2328
|
|
1155
|
+
pyrogram/raw/base/stats/megagroup_stats.py,sha256=NIzfRMa0PPbZO8y5GjsaD5-0qAiL1qSrmRJZVOFT8Zc,2328
|
|
1156
|
+
pyrogram/raw/base/stats/message_stats.py,sha256=C39OX1kKr7YbrnxV4CxIUwgS8jt5a2JIIK_P9Gi2duI,2312
|
|
1157
|
+
pyrogram/raw/base/stats/poll_stats.py,sha256=6XtYpg0BqfBWiBnLQ4ODdTBAHLNoVP-LW_eEPvborGg,2288
|
|
1158
|
+
pyrogram/raw/base/stats/public_forwards.py,sha256=USdA1P5a0Zf8ilbpnhq2tOL9Tzry_ym-xDcujm5A7Ek,2377
|
|
1159
|
+
pyrogram/raw/base/stats/story_stats.py,sha256=Z8TamNCuFTfpbmq25DW8xZm0Bw-1_LnT2ffeZTmsETg,2296
|
|
1160
|
+
pyrogram/raw/base/stickers/__init__.py,sha256=rJAWW6hP7i77jeDfwwOYCJieasOL-AcZtrMu3RHlQQw,1113
|
|
1161
|
+
pyrogram/raw/base/stickers/suggested_short_name.py,sha256=wXl9nvD_L5ENmfbicqrCmQVNGfFALhubyIqxlhWmaa4,2371
|
|
1162
|
+
pyrogram/raw/base/storage/__init__.py,sha256=YL8lcLzHTDkq_iU9QClFNfngZsidnDGSrOyjIAJJTI0,1092
|
|
1163
|
+
pyrogram/raw/base/storage/file_type.py,sha256=UchsVTYSa3SQJDyipTI8rT-giA3Z8l2FJPPPeUwucpA,2853
|
|
1164
|
+
pyrogram/raw/base/stories/__init__.py,sha256=ECNwiRIvaov1axlPcfScWBEl_YH7a9zMfwAFlu-ccOE,1416
|
|
1165
|
+
pyrogram/raw/base/stories/albums.py,sha256=R7NrEj9hNWH_7fn9_ufe6h6QtmtiQfuLHR9EIN4jiys,2386
|
|
1166
|
+
pyrogram/raw/base/stories/all_stories.py,sha256=IqQ7CVyvWy23PwVAeVYeO1wgydoQoFA_Yy6M8_Ns4tM,2431
|
|
1167
|
+
pyrogram/raw/base/stories/can_send_story_count.py,sha256=nf-o9aZYwdU6XVPABmOKXuPcnyIpLjVdttUM__1Xsn4,2356
|
|
1168
|
+
pyrogram/raw/base/stories/found_stories.py,sha256=29wbS41llRkA4sFNsYo3wslbhv_9MHiK9UbNDxaEU9A,2318
|
|
1169
|
+
pyrogram/raw/base/stories/peer_stories.py,sha256=jWYwNCS0HhXuKrRtYqtcD2AphwvJrFqHYZvvwRskr3k,2314
|
|
1170
|
+
pyrogram/raw/base/stories/stories.py,sha256=v25HKEXZ6qBjdu0QKx_JQGztwhN51y1yDCl6m6dpnvk,2397
|
|
1171
|
+
pyrogram/raw/base/stories/story_reactions_list.py,sha256=6zvEVA99oezMVTf1_cTurxgpJqD-pLJIZnV7mmJfT9Y,2371
|
|
1172
|
+
pyrogram/raw/base/stories/story_views.py,sha256=81OntHejqc9sWiNnqJnVloUv7OGnLXqEJ3S5ZPr_O9I,2308
|
|
1173
|
+
pyrogram/raw/base/stories/story_views_list.py,sha256=6yJgTaVTAK_m0zyDDG5gFhMrp-SLuWsYFwpQGP_ketA,2339
|
|
1174
|
+
pyrogram/raw/base/updates/__init__.py,sha256=YVdRIBaksE0YA6PeYiBRNfWUDAw_f584-w1u8nQlBc8,1170
|
|
1175
|
+
pyrogram/raw/base/updates/channel_difference.py,sha256=kB2mR9TlxHbRGLs9kS1b0V6vcBCIeOgWxkqzHfz_GRc,2623
|
|
1176
|
+
pyrogram/raw/base/updates/difference.py,sha256=ICFSp90bJy3ngULTDf75WwqGbo0maB93MPBJz1mf1JY,2630
|
|
1177
|
+
pyrogram/raw/base/updates/state.py,sha256=6KU3faF6pbM1BqIOOVDHTxs_rJc5k_ASJTD2cD_IoWE,2265
|
|
1178
|
+
pyrogram/raw/base/upload/__init__.py,sha256=wKdR29fhiQhzlX4EG33309Jyf9FP_EAv9jx_D6Y9zbI,1143
|
|
1179
|
+
pyrogram/raw/base/upload/cdn_file.py,sha256=ZGe8xGBoqF5BvBof3i5L3oHNoQBN2BP0noHWhfDCHrw,2399
|
|
1180
|
+
pyrogram/raw/base/upload/file.py,sha256=0e1EIx786dBJ0PGjacupmX3drXg8_u7fQZY16tPJ-qQ,2356
|
|
1181
|
+
pyrogram/raw/base/upload/web_file.py,sha256=MsAbTagt3IGse8qpTOOJPyzXcLUG9ThfrHgSBh3yi3o,2277
|
|
1182
|
+
pyrogram/raw/base/users/__init__.py,sha256=_XnVhXBnk-PSc5uD9sK6kQuevJuJkHpHS7w5gXIBfWo,1153
|
|
1183
|
+
pyrogram/raw/base/users/saved_music.py,sha256=3c1OV-LMYZzSOjk6-zQ8rnhGyhp4IhF51-hS_uM--k0,2452
|
|
1184
|
+
pyrogram/raw/base/users/user_full.py,sha256=6ul3j8Vr6auUTZZlrD_Hs_9_vq8gdFGNh15mPamI-Tw,2280
|
|
1185
|
+
pyrogram/raw/base/users/users.py,sha256=pHgPM3YkJPs2boFKOkwrbrTKEdoavatNrfkmb7Ea554,2353
|
|
1186
|
+
pyrogram/raw/core/__init__.py,sha256=6A03B4tJ4pLpWQ0VKwTLCx26maZv_p5VP2K8OzDOur0,1353
|
|
1187
|
+
pyrogram/raw/core/base_type_meta.py,sha256=3m45R9cDWmzhTpx-pBraS-9gk5z0MsYqWr5Boj6eYxQ,1093
|
|
1188
|
+
pyrogram/raw/core/future_salt.py,sha256=CXmWMaMkMz5JBnDmcD26WudqWXKfAi_ynSg6s87A64g,1692
|
|
1189
|
+
pyrogram/raw/core/future_salts.py,sha256=19jYtwHnVy_STLZbDMOFz2dvzzZh8vud-nP0SKfESyA,1891
|
|
1190
|
+
pyrogram/raw/core/gzip_packed.py,sha256=DVzEFra8gpJ3OVbZmhTtGyfH_0neI5_mqpl5qZOk6vA,1814
|
|
1191
|
+
pyrogram/raw/core/list.py,sha256=oGkC0El2v4wWmzO5E7rOjYnAjRnXxljGHogGBzo7A8U,1048
|
|
1192
|
+
pyrogram/raw/core/message.py,sha256=OdadQYdzPL-nozw6F5lOH5pva8jzxmzvkJ5dOSqj8Z0,1851
|
|
1193
|
+
pyrogram/raw/core/msg_container.py,sha256=Zid716adIiFXsxjbXes_sjoWdtipnDsZ3Ojb4NsBWo4,1614
|
|
1194
|
+
pyrogram/raw/core/tl_object.py,sha256=j_ProPNolhalx-_TZQ1v52Kla9t-NHaqDRfkkhXFCTI,2577
|
|
1195
|
+
pyrogram/raw/core/primitives/__init__.py,sha256=YHD23FhbiuhRy2iSYKBVlJdOZXMRkbBoQWRnxNZ4RRs,1012
|
|
1196
|
+
pyrogram/raw/core/primitives/bool.py,sha256=-1bc7y7hrguxpZuAkQn-sAFgvFb_pGJI4T5c-8fHjKg,1497
|
|
1197
|
+
pyrogram/raw/core/primitives/bytes.py,sha256=-GAovTgmnQ207j1sbHksbee_uYGd-mgWhoZoHj6RYmg,1759
|
|
1198
|
+
pyrogram/raw/core/primitives/double.py,sha256=rJWraBxf6fEcSJi1OendWYzMyMW8Mfh13z4rX0dpSP4,1193
|
|
1199
|
+
pyrogram/raw/core/primitives/int.py,sha256=d7l4DYyyI4FIQwB77eniT_eN3-FVn7XACcc8g5zw8X8,1358
|
|
1200
|
+
pyrogram/raw/core/primitives/string.py,sha256=Uz8dAIbFE9R5DGkaXnx3c9tNT51a3beefZVrODo0rLE,1194
|
|
1201
|
+
pyrogram/raw/core/primitives/vector.py,sha256=d-hVa27XywAx_Dfh2WTTyTlElgUeRzhAs0Kxrq9hE_I,2231
|
|
1202
|
+
pyrogram/raw/functions/__init__.py,sha256=G_Aqp86tQOQY6DyhlWYKP-Kg0C3A4g7PuhiOW-lO5LA,2311
|
|
1203
|
+
pyrogram/raw/functions/destroy_auth_key.py,sha256=qK580PnA52x1nClp15MdxUl-Gh6Ig9RDVwOPuslfCvI,2062
|
|
1204
|
+
pyrogram/raw/functions/destroy_session.py,sha256=RlZnLcr1Ct4nW6iy52YMwv17hYquXMwL1VtW51nMQUs,2263
|
|
1205
|
+
pyrogram/raw/functions/get_future_salts.py,sha256=Xk4fvszHU5Pur3lAAzGLcMJ1sqZ7XL7v3_3kEONaRl8,2179
|
|
1206
|
+
pyrogram/raw/functions/init_connection.py,sha256=v6IghOdRXAt5l2p_hirdxmEG9IPLQZ7SO9GTgH4_ZZw,4899
|
|
1207
|
+
pyrogram/raw/functions/invoke_after_msg.py,sha256=eue0BN2Lwls6Cq0xJU2FtWHJCJrxVKaT7b-qOYMLu0A,2433
|
|
1208
|
+
pyrogram/raw/functions/invoke_after_msgs.py,sha256=2O7s3HsQweY0Fv7-FIQ6O8FunLPqFwyO0B6n4ohEVyU,2486
|
|
1209
|
+
pyrogram/raw/functions/invoke_with_apns_secret.py,sha256=1yWL_dZsIxq_5K9agHrpF4aDdSLBM86MHncn7UFryuQ,2650
|
|
1210
|
+
pyrogram/raw/functions/invoke_with_business_connection.py,sha256=SL1H9oo_bu-oDUL4wrp9_-WzNQsJAjkHHjto1DgBEMI,2547
|
|
1211
|
+
pyrogram/raw/functions/invoke_with_google_play_integrity.py,sha256=qdukF-rjEUH44eAM2cFFcyXY8TiYh6eU_7Ff4_Egnv4,2677
|
|
1212
|
+
pyrogram/raw/functions/invoke_with_layer.py,sha256=UU5THJ0IkNRS7q0ViZXP2qLlCDrWIEJSCEyGOVf6rfI,2425
|
|
1213
|
+
pyrogram/raw/functions/invoke_with_messages_range.py,sha256=tt59Zp5K1VuixGoHI1Lxc-psvx212N-TekR7t4479oA,2528
|
|
1214
|
+
pyrogram/raw/functions/invoke_with_re_captcha.py,sha256=pyE4R11vAl4R2eiTbSIttQie2i2jyr4Uqcx551fuOTg,2439
|
|
1215
|
+
pyrogram/raw/functions/invoke_with_takeout.py,sha256=lH3u4xWoZypU-hYmwYXIYmM9zCqHlJ0RzKN-ryimiio,2481
|
|
1216
|
+
pyrogram/raw/functions/invoke_without_updates.py,sha256=nEjzsLmyCUcQH6Lz6KMPTqSBwdw4iq3qXQQksCWk33U,2245
|
|
1217
|
+
pyrogram/raw/functions/ping.py,sha256=zlIjaAYqsLh9SCKANB6WnjB48w0nACWazA6P0mOb3OE,2157
|
|
1218
|
+
pyrogram/raw/functions/ping_delay_disconnect.py,sha256=08FERRhu9tEVDyumAk9Ngto8O3GVYmM50lEF8rcFPng,2516
|
|
1219
|
+
pyrogram/raw/functions/req_dh_params.py,sha256=op_aLId-1JTAwn5SdmtOAAkS-OotUS8ZqjvTKA27VV8,3439
|
|
1220
|
+
pyrogram/raw/functions/req_pq.py,sha256=NQFqV6fDmZz0mpx_-rlzB1guS5Jp40QcUs1KwoWPBe8,2153
|
|
1221
|
+
pyrogram/raw/functions/req_pq_multi.py,sha256=kZysGxw-w8HQXS_YyOXNaOXIRA81SVyN9thOC4zlKJI,2173
|
|
1222
|
+
pyrogram/raw/functions/rpc_drop_answer.py,sha256=UQFptBw3kDhsF7O-QGBUWtNnQuCPZ2Gg9AIh8Wk2RCw,2247
|
|
1223
|
+
pyrogram/raw/functions/set_client_dh_params.py,sha256=I00hoTqd2rgZW3GrqwP5SHT9837MpxIfdBj_DWAX2_g,2808
|
|
1224
|
+
pyrogram/raw/functions/account/__init__.py,sha256=fVyBhupH5h_kBfH9Be1_pbuvdut6NeEBshS5cc8HNn4,8001
|
|
1225
|
+
pyrogram/raw/functions/account/accept_authorization.py,sha256=Qq64P1h8c1r-gRrcQNpfZSPnDP7X9N5Ib6PQ4P5sVGE,3378
|
|
1226
|
+
pyrogram/raw/functions/account/cancel_password_email.py,sha256=SVuN24aYYzlHZhRPU4RuMFgqnSNT7LuEWcESS5vdAKg,2023
|
|
1227
|
+
pyrogram/raw/functions/account/change_authorization_settings.py,sha256=57ZwRJfbJXBlYN_TYtdmIJoQa1eGsQ9bvAirZR5ONuM,3661
|
|
1228
|
+
pyrogram/raw/functions/account/change_phone.py,sha256=txleJmJuvic-quYJswfatx1zwFKu42Krjy_SZ7mQjhI,2764
|
|
1229
|
+
pyrogram/raw/functions/account/check_username.py,sha256=qdMqnlhRQesPoZ8Kupz1PCzG1GuyHwo0hfOCpQIfGvg,2177
|
|
1230
|
+
pyrogram/raw/functions/account/clear_recent_emoji_statuses.py,sha256=2PV9nAv04yd7hWLFtjaFrwQGB-3Yt6hb3ugs4kJe5a0,2043
|
|
1231
|
+
pyrogram/raw/functions/account/confirm_bot_connection.py,sha256=dzCvWGebavOlQWPssces5BjQGN796kX7xslz4Lh_c1E,2248
|
|
1232
|
+
pyrogram/raw/functions/account/confirm_password_email.py,sha256=k-JmZnhLpZxX448mdATFIGunZ-PWzFTLy_S884zJrSM,2169
|
|
1233
|
+
pyrogram/raw/functions/account/confirm_phone.py,sha256=HKN_9JA75Xc1Aar_VQQOO6vRux1s4boLdU5ktDpIGtg,2479
|
|
1234
|
+
pyrogram/raw/functions/account/create_business_chat_link.py,sha256=Yh619lPAUudwurhA5aJWHbYObM4YlkUa6NoFYyDLY8w,2350
|
|
1235
|
+
pyrogram/raw/functions/account/create_theme.py,sha256=cJxTxxph-HXVkUBa5R4IqrFVf_txAx3cxfaoO3jCZNs,3371
|
|
1236
|
+
pyrogram/raw/functions/account/decline_password_reset.py,sha256=68BYRlzRsGgHgMaTImcUC3wRK1ODNItSQPnzpODD6Q8,2027
|
|
1237
|
+
pyrogram/raw/functions/account/delete_account.py,sha256=dFv0q6KlfdZDAFxMck4Wt4zZ6osq3UCP5luov2nxEfI,2699
|
|
1238
|
+
pyrogram/raw/functions/account/delete_auto_save_exceptions.py,sha256=yrPt769HAKevLSJuxpvO9OCUSBetXjZeMia7G6hR6Vw,2043
|
|
1239
|
+
pyrogram/raw/functions/account/delete_business_chat_link.py,sha256=JVA8FkngohVWcSCCYGUgt9mqsAOZbfHRZAKa1ud0pdA,2177
|
|
1240
|
+
pyrogram/raw/functions/account/delete_passkey.py,sha256=ehefdKuj7Wm8grGvBUzj0APt1kN8SzscTBobXwmn6l4,2123
|
|
1241
|
+
pyrogram/raw/functions/account/delete_secure_value.py,sha256=0Oav-Fn7_X3TjxPlXe5Lim9BDPZ-euBGBv6uGlJ_iXc,2273
|
|
1242
|
+
pyrogram/raw/functions/account/delete_web_browser_settings_exceptions.py,sha256=DF79DXZ8yh8KyGBfGoCY1iYfzxDtgMbMGL97uDH1vHU,2177
|
|
1243
|
+
pyrogram/raw/functions/account/disable_peer_connected_bot.py,sha256=KaT_e-W_HTz0TQifxbnWfQy4Q4mOhhG33xsPG6o_VP8,2242
|
|
1244
|
+
pyrogram/raw/functions/account/edit_business_chat_link.py,sha256=fu3KerrveYrbxCA4IuEZSF8bN5R3mfuBH0ZIooXzJvY,2531
|
|
1245
|
+
pyrogram/raw/functions/account/finish_takeout_session.py,sha256=MYggGzTIlktr69DynUZoPHwL2xKhBMNryQFXEnrogDE,2292
|
|
1246
|
+
pyrogram/raw/functions/account/get_account_ttl.py,sha256=cdJ4BfXhkL43vhg89TnsA0vEvfcef4CbNJ6vZzkEoEo,2055
|
|
1247
|
+
pyrogram/raw/functions/account/get_all_secure_values.py,sha256=Eh-rlTu5BaMiaDORZMhehvV_ml1Caql5Dmqznr1BVYo,2082
|
|
1248
|
+
pyrogram/raw/functions/account/get_authorization_form.py,sha256=oOFNTxt9QFDfdCq36Qx92WepqKt4HU3HRjsbeO3vqJ8,2724
|
|
1249
|
+
pyrogram/raw/functions/account/get_authorizations.py,sha256=iHgnyY_1UaFeZZGew3IGrhb-TYmWORLN0hZcU2_We94,2097
|
|
1250
|
+
pyrogram/raw/functions/account/get_auto_download_settings.py,sha256=R2KOxxOpd5UG1WmXkenYPkPv6O6Bj-1GanHxOYwlSqY,2139
|
|
1251
|
+
pyrogram/raw/functions/account/get_auto_save_settings.py,sha256=E0clRKWox-zfLBmlY1trLeyZtZ69RVEr6oFbCBjb1-g,2111
|
|
1252
|
+
pyrogram/raw/functions/account/get_bot_business_connection.py,sha256=9ojLcBh5FARFti5-d-oxtdBcVf2vMWLLOFXXi4MofXg,2303
|
|
1253
|
+
pyrogram/raw/functions/account/get_business_chat_links.py,sha256=90UprQjlcdVv7p0y8PfCbFylKLM8KJ9vHotc5UYwFkI,2118
|
|
1254
|
+
pyrogram/raw/functions/account/get_channel_default_emoji_statuses.py,sha256=jRqNdBxWNEMWqRmQnz_m6peKlmV8utkUfIUNYdy16mE,2293
|
|
1255
|
+
pyrogram/raw/functions/account/get_channel_restricted_status_emojis.py,sha256=NkOqF7TlIpgk1aIVhwba-rCFs0IbPHSG4wfBujPGTc8,2265
|
|
1256
|
+
pyrogram/raw/functions/account/get_chat_themes.py,sha256=_kKmvNSsYiRtbfaqWIMMss-To68rHP9n-V9wyH0YqnI,2204
|
|
1257
|
+
pyrogram/raw/functions/account/get_collectible_emoji_statuses.py,sha256=vkbfieHJmnA04IXI4Fkk2WBfVQL1YEMPwgsSMJzEJ0o,2281
|
|
1258
|
+
pyrogram/raw/functions/account/get_connected_bots.py,sha256=X_YIFxm4LrS7DQ1lwlboSCPKtbt9OMG65MuMIuc-EdQ,2090
|
|
1259
|
+
pyrogram/raw/functions/account/get_contact_sign_up_notification.py,sha256=HxqBqLfihDgHY8fKtD_pjpbLu1m43ZxTOhelbdnIxwI,2059
|
|
1260
|
+
pyrogram/raw/functions/account/get_content_settings.py,sha256=KSu0tiCdAQ4gSAM0MTchk337YKkM5uApI7Ch1INiBwo,2104
|
|
1261
|
+
pyrogram/raw/functions/account/get_default_background_emojis.py,sha256=K90VwC091Gk3buR9SXytIfy8mybkMk_mbEiTgotIuj4,2241
|
|
1262
|
+
pyrogram/raw/functions/account/get_default_emoji_statuses.py,sha256=_K1nFHKBvo9xnxf7Xkb-_wisAkicMmcPKys60-rQhLU,2265
|
|
1263
|
+
pyrogram/raw/functions/account/get_default_group_photo_emojis.py,sha256=s8R0kEDZ-53gaEFgqBxiUQj8ofQF3wDsMQt0PsBPKCA,2241
|
|
1264
|
+
pyrogram/raw/functions/account/get_default_profile_photo_emojis.py,sha256=5cBJbIGppCgjgZFnluyzKTFUfwuF1WoqhsRIcmUmeCw,2249
|
|
1265
|
+
pyrogram/raw/functions/account/get_global_privacy_settings.py,sha256=2CEHfRMbAlGO3DEc687yYc_gIt14qUXV1x9jA_zI2sY,2122
|
|
1266
|
+
pyrogram/raw/functions/account/get_multi_wall_papers.py,sha256=1P-yredcDxbNzOMiiRZWbvqHZeKo_dh6gnrwcdWvgZ4,2375
|
|
1267
|
+
pyrogram/raw/functions/account/get_notify_exceptions.py,sha256=X0zwALpN7Il3YqaeU_46U5kU9z9mjDq9WaExkvOzjMs,3145
|
|
1268
|
+
pyrogram/raw/functions/account/get_notify_settings.py,sha256=nSRtwci58kJ1c6hHee88wOpspcXXNb3tCQny5cpi2Cc,2312
|
|
1269
|
+
pyrogram/raw/functions/account/get_paid_messages_revenue.py,sha256=P4ChfF2lLSBFSRnoV83Ul9qYQHd5dJQCY1mTz3LRBgY,2887
|
|
1270
|
+
pyrogram/raw/functions/account/get_passkeys.py,sha256=Kc7l4ygDEE8zm66zN5egoDmGi_W6pZJZoSrG7pXvEck,2055
|
|
1271
|
+
pyrogram/raw/functions/account/get_password.py,sha256=MjzQ2poy23_oaRDHKcBS9tP9nd3f8KEnHYlyE4e8hHA,2055
|
|
1272
|
+
pyrogram/raw/functions/account/get_password_settings.py,sha256=i4El8CGxTaJI3993gkkSFrVBmeyGtJbgBfVE2n1wg1g,2398
|
|
1273
|
+
pyrogram/raw/functions/account/get_privacy.py,sha256=Y6v8rGbU1st2ecdxe2vpq5xxuAXavIqLRHPgU9eaS88,2281
|
|
1274
|
+
pyrogram/raw/functions/account/get_reactions_notify_settings.py,sha256=n3QCFFoh7V3QYGiHwI4aR2Pq9ZabDnRCOtUBarwt-VI,2134
|
|
1275
|
+
pyrogram/raw/functions/account/get_recent_emoji_statuses.py,sha256=h9dPbOjdaiI9C3KCQhJpo2TxOvnvDaeEtGHBeCU7sd8,2259
|
|
1276
|
+
pyrogram/raw/functions/account/get_saved_music_ids.py,sha256=Rk_QTbT31i4SPtgoRkKvdOCE9eUciRGRMGxzuI56Voc,2237
|
|
1277
|
+
pyrogram/raw/functions/account/get_saved_ringtones.py,sha256=kyPd8o0oMl5h-SYzlokup9NrgAC7_dxsySOiZnvnqXA,2244
|
|
1278
|
+
pyrogram/raw/functions/account/get_secure_value.py,sha256=mXgK6XrDO079r4iV541meLVNNY-I6TqJR4zznoYslPk,2324
|
|
1279
|
+
pyrogram/raw/functions/account/get_theme.py,sha256=FfPlEucdRI3znNS1JDmYs6ddFPVGrvcMM3F8Yy4T9Uo,2433
|
|
1280
|
+
pyrogram/raw/functions/account/get_themes.py,sha256=WqOHf-q39iIMSanY8eIPDF2EMKadgCeCe-oTtbnhbds,2395
|
|
1281
|
+
pyrogram/raw/functions/account/get_tmp_password.py,sha256=V7cgB1SsWoYM3Bf28AobQjyoOTA8jaqSetF0NzNYkFI,2572
|
|
1282
|
+
pyrogram/raw/functions/account/get_unique_gift_chat_themes.py,sha256=AqpfH3igigJYTT5rMTIMdqF_UegQKxNkAGmy0G1Asuc,2663
|
|
1283
|
+
pyrogram/raw/functions/account/get_wall_paper.py,sha256=EmQG_CGSzykQI8h-gzHfKfjhT8tNIHxt68aRWDdJGMw,2306
|
|
1284
|
+
pyrogram/raw/functions/account/get_wall_papers.py,sha256=8lGChtD94nVrCo5zUACnfowHgrxSJiNuSBlOjaE8mh4,2214
|
|
1285
|
+
pyrogram/raw/functions/account/get_web_authorizations.py,sha256=aB6QDruc2aMfgagofwQ3vf8IOsGFqKhZjzqAB09ngUM,2118
|
|
1286
|
+
pyrogram/raw/functions/account/get_web_browser_settings.py,sha256=NfcY6LU41_SWrObD3JW1tEhIDGbk9xSInZMv_e5CoZQ,2272
|
|
1287
|
+
pyrogram/raw/functions/account/init_passkey_registration.py,sha256=uXFtTxd-61qIqJZcS0VjYwRehqUs5tR6N6IsY_1fEAQ,2157
|
|
1288
|
+
pyrogram/raw/functions/account/init_takeout_session.py,sha256=PjPrqIaM9ULcKshhQUMBPyJpLbw7BHDkP1Z2z8qs1ew,4406
|
|
1289
|
+
pyrogram/raw/functions/account/install_theme.py,sha256=AnLTeU8ZGnDp8BzVaNFU11dJHej8G_w05ym8UEf8gBI,3485
|
|
1290
|
+
pyrogram/raw/functions/account/install_wall_paper.py,sha256=KX9DiKPrUEHMm5Pv9TJc8ebTB-pfpnHcrRUR-cKBJeM,2597
|
|
1291
|
+
pyrogram/raw/functions/account/invalidate_sign_in_codes.py,sha256=ROBsMAsw4FU5NLL0swIKsRNLejA1v94D99FVdI2E0nI,2222
|
|
1292
|
+
pyrogram/raw/functions/account/register_device.py,sha256=ltpR-QmY7NrT0FGBzsKisyWU4OwRQivC4-uZ0YJP7Gs,3464
|
|
1293
|
+
pyrogram/raw/functions/account/register_passkey.py,sha256=rXk3X_J3rHkujJFvQ6CJqTPHw4kyerq_LOKMCxGIW7c,2353
|
|
1294
|
+
pyrogram/raw/functions/account/reorder_usernames.py,sha256=rKnyf1c8LClY-pNM4KU0r5JXV5wFPDe_XgcqBD6ezQI,2202
|
|
1295
|
+
pyrogram/raw/functions/account/report_peer.py,sha256=9337vnD4KuDDIzEQe33nDzP_gcRsVyb6PhDW_Mv7CWk,2686
|
|
1296
|
+
pyrogram/raw/functions/account/report_profile_photo.py,sha256=CKbk5k1DQlEJqKZRHCJ3M0z6etCCDLgdpFvEP_307bw,3008
|
|
1297
|
+
pyrogram/raw/functions/account/resend_password_email.py,sha256=yOjjYkpXvWPXf6JjkBiCCfOfyxzlYMqRBm5HmC6pKls,2023
|
|
1298
|
+
pyrogram/raw/functions/account/reset_authorization.py,sha256=XepwMTN1zbvweQ4HzpUTvFipQpacPjfXm3HZFx9OHuE,2166
|
|
1299
|
+
pyrogram/raw/functions/account/reset_notify_settings.py,sha256=v24gSH0Qwp1h-4CIG66_ongA2INXtn1wL1DVLT14t3I,2023
|
|
1300
|
+
pyrogram/raw/functions/account/reset_password.py,sha256=oFPNzy8PAgpoDIfQBsX1pPbaMEdORLxMXAnla8V9OzY,2096
|
|
1301
|
+
pyrogram/raw/functions/account/reset_wall_papers.py,sha256=wgp_8Bt7S6tT3MNz0RUzRPWeF1u-cRYzIOsh94X9G4M,2007
|
|
1302
|
+
pyrogram/raw/functions/account/reset_web_authorization.py,sha256=FMT0dh44-q0rnjZyVqgx2LyzGfM88t9g-jteSDBpX5M,2178
|
|
1303
|
+
pyrogram/raw/functions/account/reset_web_authorizations.py,sha256=xQa4-MF9c-oKfM9q-YbSTrDghOo4rFh5f2aQaBBUj4g,2035
|
|
1304
|
+
pyrogram/raw/functions/account/resolve_business_chat_link.py,sha256=j2io8OOvyR0Napycevag7tibCDqvhG6cvXtn3_tPCtE,2296
|
|
1305
|
+
pyrogram/raw/functions/account/save_auto_download_settings.py,sha256=nvafVrwm3-i93V7cMsrcXNAdhCPz7TEyaEYO21ydDTs,2842
|
|
1306
|
+
pyrogram/raw/functions/account/save_auto_save_settings.py,sha256=Baj1LubhR-eua_KM7Lw9A9L4n-g-wsJIr2tdUyM41_E,3534
|
|
1307
|
+
pyrogram/raw/functions/account/save_music.py,sha256=1gp3qvu63TqquTC5G8DHh0kSV6XwgUAMZfcbo3Ivk3Q,2950
|
|
1308
|
+
pyrogram/raw/functions/account/save_ringtone.py,sha256=bFuLsDFPdAyos4Y-RVuC49gyvCX4q3MAgrkiNjKnbsM,2478
|
|
1309
|
+
pyrogram/raw/functions/account/save_secure_value.py,sha256=v19Udq_HcZl7raRuPo_SfWdmMqpUrxB6oyDoIuz_CQQ,2598
|
|
1310
|
+
pyrogram/raw/functions/account/save_theme.py,sha256=cUjXbiVxuEfGntXb-ZMoSqvY7M2T1gsA48YI44WRE78,2402
|
|
1311
|
+
pyrogram/raw/functions/account/save_wall_paper.py,sha256=emeaJB1ae-XSVecnK1dPHKjKX3tVJ1oUKMybiz6Soms,2788
|
|
1312
|
+
pyrogram/raw/functions/account/send_change_phone_code.py,sha256=QI-Npf0ExVytv3fylWR_l8FJdVos0mr4jMVKa2v5URI,2590
|
|
1313
|
+
pyrogram/raw/functions/account/send_confirm_phone_code.py,sha256=Mm0JgpxApolUG88NGEz3mkpoaw8PA4ewfYDyzV9kTII,2522
|
|
1314
|
+
pyrogram/raw/functions/account/send_verify_email_code.py,sha256=R_a5OTlgCgkJJdlqHB3h1nAoEpKjhDSvJ7aqLJzBcGs,2566
|
|
1315
|
+
pyrogram/raw/functions/account/send_verify_phone_code.py,sha256=gqRb868yVb2nLgnzRV57EdZDIJwCPkTMOyHR6Y5OWvE,2590
|
|
1316
|
+
pyrogram/raw/functions/account/set_account_ttl.py,sha256=kHlYIngevGxO7CAy_y5t6uD4OQf3kj91QOoUVeohMls,2213
|
|
1317
|
+
pyrogram/raw/functions/account/set_authorization_ttl.py,sha256=jSiL4yNxTgCRauXl5F21xRbmyr9FwJatvNa63uHFm8E,2329
|
|
1318
|
+
pyrogram/raw/functions/account/set_contact_sign_up_notification.py,sha256=ZPDiB98QI_27znWhUtFo1fUgnZhh8kgSABY6ULizk30,2215
|
|
1319
|
+
pyrogram/raw/functions/account/set_content_settings.py,sha256=kVJ_dtiwAifzzvds3jleKWyzIc6mUT2MfsDfB9kfckk,2374
|
|
1320
|
+
pyrogram/raw/functions/account/set_global_privacy_settings.py,sha256=PSs6-euGV5O2zXTIRHPomBWD6YJy4pKCt4C2ihz6I0Q,2409
|
|
1321
|
+
pyrogram/raw/functions/account/set_main_profile_tab.py,sha256=MPkZYlG-aqdJgsql6ZB3UEFU-JeulyMXEArUuIiiWec,2213
|
|
1322
|
+
pyrogram/raw/functions/account/set_privacy.py,sha256=PHovtpseQHHVvBbRt4fybXln2fVXMRsKZdvj7pdVl-o,2590
|
|
1323
|
+
pyrogram/raw/functions/account/set_reactions_notify_settings.py,sha256=-PI-pMym3C05tqmDLgZmZODof-i8QAysaSfBpZTtH7U,2431
|
|
1324
|
+
pyrogram/raw/functions/account/toggle_connected_bot_paused.py,sha256=TmEjQQlM50aHyWC0LC-Tvomqgij6Q4M68-qbRD8E7hY,2449
|
|
1325
|
+
pyrogram/raw/functions/account/toggle_no_paid_messages_exception.py,sha256=3O5zae2VR99bvfmY-DGwJ7yJfdAKzXcAl3i2YvSoXQ8,3487
|
|
1326
|
+
pyrogram/raw/functions/account/toggle_sponsored_messages.py,sha256=Y3qzQ6E3u0sxYQ9HTqJymtEnSH1SaFLEUFvtC__baXo,2204
|
|
1327
|
+
pyrogram/raw/functions/account/toggle_username.py,sha256=KYCRDMXtqmTxq6iobhkGzJg1HTZJh0NcekPAsA8n8rA,2384
|
|
1328
|
+
pyrogram/raw/functions/account/toggle_web_browser_settings_exception.py,sha256=MVXmkWL4Izc4ulaZ81YCiTUNhpBHWW8P-10D0sqpWV8,3078
|
|
1329
|
+
pyrogram/raw/functions/account/unregister_device.py,sha256=J2VuKuHiCGdfJsznX9SDku19WYe8SWHMNsc7MyrPmQM,2695
|
|
1330
|
+
pyrogram/raw/functions/account/update_birthday.py,sha256=2fJBlKmcGzsaO_vCFrSNoLUmB3VT3vwZ5wBX-KRgZvk,2444
|
|
1331
|
+
pyrogram/raw/functions/account/update_business_away_message.py,sha256=orS3aXs7C7hGeZQMLGYxGwQMipziCba2OimUvcbqZtA,2541
|
|
1332
|
+
pyrogram/raw/functions/account/update_business_greeting_message.py,sha256=acGSAxrNDllecCLo0KDpgoaO2RV1AQ4iN-6HAbts36c,2573
|
|
1333
|
+
pyrogram/raw/functions/account/update_business_intro.py,sha256=AYnqEa8qZHUHnr_tqqmB2JzWlY4xdMglOcVtC8HKBr0,2471
|
|
1334
|
+
pyrogram/raw/functions/account/update_business_location.py,sha256=qXSBZYGCq5eUdqHB4lScAYVynFXcORgloczEUeME0ok,2883
|
|
1335
|
+
pyrogram/raw/functions/account/update_business_work_hours.py,sha256=_2rwdX0vmFJX4rYBi3hDURC2xnHKGZ0Tlbrm1Dth49M,2637
|
|
1336
|
+
pyrogram/raw/functions/account/update_color.py,sha256=YvspBEOaG07EKZZalVUFumhiwU6hZYA9icvTpsHvals,2706
|
|
1337
|
+
pyrogram/raw/functions/account/update_connected_bot.py,sha256=iOhkPOS1WQjEk2KUu5NEV2NUw6uXt4DLWTYSDxgGFac,3391
|
|
1338
|
+
pyrogram/raw/functions/account/update_device_locked.py,sha256=Wx7FNh_pgT24PtTWYLghPagX1HgeV0LEZkTWEzUdrHg,2181
|
|
1339
|
+
pyrogram/raw/functions/account/update_emoji_status.py,sha256=-jz1vkQYJ5edzxVGHmVwsM63tbyISTMCE5P7M7Vfa4Y,2298
|
|
1340
|
+
pyrogram/raw/functions/account/update_notify_settings.py,sha256=qwhdVaUbfkwTgzrjBe2unMnRRIrxpO3FT8muxtQJQq0,2596
|
|
1341
|
+
pyrogram/raw/functions/account/update_password_settings.py,sha256=fv6buQBwfR73BNmSRiibn5u5a1N8ilKLFuoaFNQqb7Y,2724
|
|
1342
|
+
pyrogram/raw/functions/account/update_personal_channel.py,sha256=RZCDriTjnJ0UCCGM25u3DRtYjwMtEJJsA7Bt2naQjPI,2273
|
|
1343
|
+
pyrogram/raw/functions/account/update_profile.py,sha256=DoSf0R-tSvXxxc0MzmIdMPUDsNG43bbJj-7SJMz7woU,3186
|
|
1344
|
+
pyrogram/raw/functions/account/update_status.py,sha256=Huq87XajOBIZclB2pRQGodxrFbHPGFgaWACzbHjhdyA,2160
|
|
1345
|
+
pyrogram/raw/functions/account/update_theme.py,sha256=pDj192gu5wzTt0Ym_1uUH8ODQ_HAgO0MSzM154v-w_M,4151
|
|
1346
|
+
pyrogram/raw/functions/account/update_username.py,sha256=djdK1MRbgVaICAt2--fhhYrkJfsR2Ucl5qrgUkk4RAw,2209
|
|
1347
|
+
pyrogram/raw/functions/account/update_web_browser_settings.py,sha256=HxMQdz_br85YZ5aZlXqDzDghRkE_EKevo7NnjnknV1o,2912
|
|
1348
|
+
pyrogram/raw/functions/account/upload_ringtone.py,sha256=UshT4Jrby8HOFub3kKXLa5PV79uAw-vd6q7GIwENDtw,2714
|
|
1349
|
+
pyrogram/raw/functions/account/upload_theme.py,sha256=JjV0uxhrmsq5_Ne1Hdm1NlGAqpQjiJUBGW2MDKv1F-A,3161
|
|
1350
|
+
pyrogram/raw/functions/account/upload_wall_paper.py,sha256=dgtUo36sRFkCOYAXOFvvGOOsfgjLii9tPMD4E6GcOYA,3126
|
|
1351
|
+
pyrogram/raw/functions/account/verify_email.py,sha256=tes3wJbvaWYuPzIHlv2laPn9I4RfCr9ej_cEltP5Tc4,2688
|
|
1352
|
+
pyrogram/raw/functions/account/verify_phone.py,sha256=R91jUeWKsRkjgFkmSjGAYvCjzlxFGLXnjiIeIPM8-I4,2736
|
|
1353
|
+
pyrogram/raw/functions/aicompose/__init__.py,sha256=s5jwzrrTy01xTlpWMMOPiERIiAKzcZc2SUWm7XxKwKs,1307
|
|
1354
|
+
pyrogram/raw/functions/aicompose/create_tone.py,sha256=OJ7icJe7B5ZjEQTXqXlBZBGUH3Chec8G3mBHT3_80Jg,3007
|
|
1355
|
+
pyrogram/raw/functions/aicompose/delete_tone.py,sha256=jiQ-Gu_UmgHapsCDrR124p8R1dMzDDeenxpJTwtR-58,2228
|
|
1356
|
+
pyrogram/raw/functions/aicompose/get_tone.py,sha256=WaRUPEADRYGtP-Zeq-zK5COXXBnmdrqHg0h68dZQmdY,2277
|
|
1357
|
+
pyrogram/raw/functions/aicompose/get_tone_example.py,sha256=etqdRHcNwVU3lQo15TBQEkqAkOBG1bJq8P3uABV6x-0,2502
|
|
1358
|
+
pyrogram/raw/functions/aicompose/get_tones.py,sha256=z-zKJM6-xeG7gwQKVLcuNoKCM_g245FZJz6fnG6-lu4,2189
|
|
1359
|
+
pyrogram/raw/functions/aicompose/save_tone.py,sha256=R3tda5GBjCJEC9qWS5SQY0RpKAWR8fZcrpf5fQJUBmg,2423
|
|
1360
|
+
pyrogram/raw/functions/aicompose/update_tone.py,sha256=rHwLbBpK9iRgxcyqIItlqF245aleruhR2mx-thwd1yQ,3888
|
|
1361
|
+
pyrogram/raw/functions/auth/__init__.py,sha256=QJj4dueKDOtYFXe-xGFfP6jKi_umtyLDujb1ISKtpGY,2294
|
|
1362
|
+
pyrogram/raw/functions/auth/accept_login_token.py,sha256=3uGQhVCLk0aIfw5YLJ8R_mKQpyuAhPeTG7StUGEmCtU,2215
|
|
1363
|
+
pyrogram/raw/functions/auth/bind_temp_auth_key.py,sha256=4CNv9-iv_bWt_MHb0ZmczglnZhONLOHX3mCZZKvcwJs,3014
|
|
1364
|
+
pyrogram/raw/functions/auth/cancel_code.py,sha256=fa6uVjh37gVta9dS5nul1naBIHU1__8b7dJQ8H4fTKY,2486
|
|
1365
|
+
pyrogram/raw/functions/auth/check_paid_auth.py,sha256=YzD_UJV3vyaBsF7cNmXSjuaf9VaQ2Yc8gkLGEckgVF8,2774
|
|
1366
|
+
pyrogram/raw/functions/auth/check_password.py,sha256=fGFDq5bbJejroybdUUiOKqXRwXgFx2h1Ig-KowsuJFI,2353
|
|
1367
|
+
pyrogram/raw/functions/auth/check_recovery_password.py,sha256=1VFeiHkBaXt2q6spAUtmTEjlKRVtiFvJhAdv5Dr7Maw,2168
|
|
1368
|
+
pyrogram/raw/functions/auth/drop_temp_auth_keys.py,sha256=5lOaZqPvjfWJFyqcGJLqyavQVEQVkjKtonZJf9moalw,2303
|
|
1369
|
+
pyrogram/raw/functions/auth/export_authorization.py,sha256=riQ73hl3UrttTgYONAgpWe2hQihV3P4udvJutYd8AzE,2267
|
|
1370
|
+
pyrogram/raw/functions/auth/export_login_token.py,sha256=qZPapGnxWc7wu5QDQ2YMy6Iy5I0T1o6HQUFEzc0W-dA,2744
|
|
1371
|
+
pyrogram/raw/functions/auth/finish_passkey_login.py,sha256=rcbqoS30oZuyF0zhjYLwpYTxfFMA8YB64_0gl2_bIEQ,3331
|
|
1372
|
+
pyrogram/raw/functions/auth/import_authorization.py,sha256=gEEQ6Dy4JwOnXBmgkSiU-Cw-_bjOO5EOXw5lHonE0WA,2418
|
|
1373
|
+
pyrogram/raw/functions/auth/import_bot_authorization.py,sha256=2XybhR1Zy_ukV6uMlQ2QZRCL1gaXV8YHJKRhAYODhX4,2968
|
|
1374
|
+
pyrogram/raw/functions/auth/import_login_token.py,sha256=4_LjzXvSqHN3fuTHDGeQNexq08Q_htGwayJeXe9Xhjg,2221
|
|
1375
|
+
pyrogram/raw/functions/auth/import_web_token_authorization.py,sha256=rKNmo1HvKxGBzdAwPo5YpPNxK87xxqEE0XIaYMlvd5g,2788
|
|
1376
|
+
pyrogram/raw/functions/auth/init_passkey_login.py,sha256=7N3n-7TKd6nRGWyMC2TwVTL0vHwpKCafNGakroMMDaw,2483
|
|
1377
|
+
pyrogram/raw/functions/auth/log_out.py,sha256=1i9BYXBLH0QsL1ttYN1YdLwu_oR_YcS4Txe64X0wdIo,2026
|
|
1378
|
+
pyrogram/raw/functions/auth/recover_password.py,sha256=2n4lklOWs3CMy-xAv6k-bs7C9SnjERwAbvM08dPbd-s,2832
|
|
1379
|
+
pyrogram/raw/functions/auth/report_missing_code.py,sha256=SfQHdJujOFgd3kb5QYffgBr2eH8GNxrp19xHo_kTClw,2694
|
|
1380
|
+
pyrogram/raw/functions/auth/request_firebase_sms.py,sha256=9XkO_9x33Cf3r_M9PFBRz6EWDrOR9U-GQyKgjTK4vsI,4021
|
|
1381
|
+
pyrogram/raw/functions/auth/request_password_recovery.py,sha256=dHBhVYj3g3aCYaR1lu_s6gbsMclDzMa6Ekzpsj0b4fk,2115
|
|
1382
|
+
pyrogram/raw/functions/auth/resend_code.py,sha256=SUGGnrwkaGJfx2W9wVJf9YSQv01SGReWxwfTPEZaF8I,2951
|
|
1383
|
+
pyrogram/raw/functions/auth/reset_authorizations.py,sha256=-ZBXsUBKCtLo_wSuMdVX4WvlMFEQAWiwBPW3uuNFnQw,2020
|
|
1384
|
+
pyrogram/raw/functions/auth/reset_login_email.py,sha256=u2Y6VyHFm7SS3yNHLTV3SkrZAoMXG_3IxI5-xsldxAg,2561
|
|
1385
|
+
pyrogram/raw/functions/auth/send_code.py,sha256=KD7BInRSM8i8zJQe63xK02DTTq3RtHgQA5UPG-RdN64,2977
|
|
1386
|
+
pyrogram/raw/functions/auth/sign_in.py,sha256=DrJwKbhkz1Po6k_NBXwPdw3KGsnqnSL_nmJljXJSghE,3583
|
|
1387
|
+
pyrogram/raw/functions/auth/sign_up.py,sha256=e3xTcX0GDFICWLXCymoriKqvegIBcKkK_K1kNdX4akg,3473
|
|
1388
|
+
pyrogram/raw/functions/bots/__init__.py,sha256=AK0FlOBxJbFxNSuavSj-ZFwSWv3Moqtlc0DaNxwuc7Y,3089
|
|
1389
|
+
pyrogram/raw/functions/bots/add_preview_media.py,sha256=BwlCfaGhCT0YCGThTdwmO4RWJ7bE66wTpcSZkR-bQgc,2756
|
|
1390
|
+
pyrogram/raw/functions/bots/allow_send_message.py,sha256=4ILbjxjzpNG_oD2bfdo5Vd8QCpq0xC1eJfTu5JemD2s,2239
|
|
1391
|
+
pyrogram/raw/functions/bots/answer_webhook_json_query.py,sha256=_A29JZEyldkXOETm0P9SMRGejB9dyxgya9ZfSHoVq8I,2461
|
|
1392
|
+
pyrogram/raw/functions/bots/can_send_message.py,sha256=3L0-4D3G88l17pzx6unr8D9cSD6TSh646kv9U0szItE,2194
|
|
1393
|
+
pyrogram/raw/functions/bots/check_download_file_params.py,sha256=ENmYGgNIWRYtUsqJ-9YcZwZi1aiJgIW_0xQcvrOGYcY,2644
|
|
1394
|
+
pyrogram/raw/functions/bots/check_username.py,sha256=alPBsShetFbBlKQTRk5paah8NDfFM0yan4C3FC5_ms8,2174
|
|
1395
|
+
pyrogram/raw/functions/bots/create_bot.py,sha256=Zpjo8neMZ3fM57_QZZrSH65dAYOPgpG_902hUK_RRsQ,3036
|
|
1396
|
+
pyrogram/raw/functions/bots/delete_preview_media.py,sha256=7biR23oQRAb3ecp5Bo8eGEKbTrEOPzX_tV0-UwOiods,2729
|
|
1397
|
+
pyrogram/raw/functions/bots/edit_access_settings.py,sha256=dz1j0HmFlep8PfA9aIH3K806uPlytVcGD1YBx2LG-hY,3025
|
|
1398
|
+
pyrogram/raw/functions/bots/edit_preview_media.py,sha256=97H7wUoH8mOGNV7VL8RfXgSDqkpYdK6KQD1gm-HeVNA,3059
|
|
1399
|
+
pyrogram/raw/functions/bots/export_bot_token.py,sha256=yKWhIqmRHif7Bcb6Gtz7iWl3UTSigf8UTCeq7T3S29s,2476
|
|
1400
|
+
pyrogram/raw/functions/bots/get_access_settings.py,sha256=tV0cszTC3lopZr_Mv8yVNH5ijsReriWHCUwZimp2gAw,2279
|
|
1401
|
+
pyrogram/raw/functions/bots/get_admined_bots.py,sha256=nOQK9tvhvQxBudaW30yzniHiBhqN7b02mWv9V-Ok2-E,2042
|
|
1402
|
+
pyrogram/raw/functions/bots/get_bot_commands.py,sha256=_wgiz2C2bT77YNFj6mVtUwjtrxVdDF16YqpZZFlV85o,2530
|
|
1403
|
+
pyrogram/raw/functions/bots/get_bot_info.py,sha256=hjiY7FA4f_cdQ7FGl5H5xzHaStHg0cr0uE2kn6XBnLg,2660
|
|
1404
|
+
pyrogram/raw/functions/bots/get_bot_menu_button.py,sha256=DM1uglQ1gbOyMDI0Lns9_UPUglkKNxm-RPPWPSowQiY,2293
|
|
1405
|
+
pyrogram/raw/functions/bots/get_bot_recommendations.py,sha256=eupXOsFWm3VpR03CLCCSEWFqVrhxkUI5qw-mA8VNYTc,2271
|
|
1406
|
+
pyrogram/raw/functions/bots/get_popular_app_bots.py,sha256=rUxZwaUwELxzloHtXWL9OWBAKpFZJds4hBN9mydhgo0,2445
|
|
1407
|
+
pyrogram/raw/functions/bots/get_preview_info.py,sha256=gl5DWvJIk2Ayo11mUT3AFoeNj8tu0taVysJoWeHSHhc,2492
|
|
1408
|
+
pyrogram/raw/functions/bots/get_preview_medias.py,sha256=-il3aF-LEkssAz9c3DEQa8vNu5E4X2ZlAxHtzvYLg9M,2277
|
|
1409
|
+
pyrogram/raw/functions/bots/get_requested_web_view_button.py,sha256=J-8TR4lbXa2UbZeQG4AFy-lzK2UNcvSXHhkdEZEZ0pk,2566
|
|
1410
|
+
pyrogram/raw/functions/bots/invoke_web_view_custom_method.py,sha256=-HQFuEZDGwXuJ1raG2Y4tVcrsxkQFHwLdGuYx1WpeO8,2810
|
|
1411
|
+
pyrogram/raw/functions/bots/reorder_preview_medias.py,sha256=TP_LHexqRv8UVALdrl_Un2R-PdMhWGUotzaC6EJm-1A,2737
|
|
1412
|
+
pyrogram/raw/functions/bots/reorder_usernames.py,sha256=DAWhAeh9OOiwSzLeF8dbKyDp-EcIA2pPE6mTgJ5lC5c,2440
|
|
1413
|
+
pyrogram/raw/functions/bots/request_web_view_button.py,sha256=l-Zu-RKoLICCB1qSLtq62FPwU2gsgEtSt2PyYza519M,2618
|
|
1414
|
+
pyrogram/raw/functions/bots/reset_bot_commands.py,sha256=82LNPyQyCkXiG88edkNvlsEC1fJbDIbSNscw_wNdwKI,2478
|
|
1415
|
+
pyrogram/raw/functions/bots/send_custom_request.py,sha256=Lel01SSUxmM_lTAoL9MCY52mtzQ8yBFoC8BrTG7KVXY,2539
|
|
1416
|
+
pyrogram/raw/functions/bots/set_bot_broadcast_default_admin_rights.py,sha256=gJR9XaXYZl5Umta3exYunqd8aStXFW_Ibny_zJkR-8c,2375
|
|
1417
|
+
pyrogram/raw/functions/bots/set_bot_commands.py,sha256=1kQoBYkwtkHMb4SWtSgWvQ75NggKGYqGGyKaWSOwYZ4,2780
|
|
1418
|
+
pyrogram/raw/functions/bots/set_bot_group_default_admin_rights.py,sha256=Ee-BugZGr5ykcHwzhLQAELPq4IHPRhcnjyUYN9MaDao,2359
|
|
1419
|
+
pyrogram/raw/functions/bots/set_bot_info.py,sha256=EbpX4ZYtMEDyp7NiGuGpy122AtrQB5gqTzOQQWuwlvQ,3725
|
|
1420
|
+
pyrogram/raw/functions/bots/set_bot_menu_button.py,sha256=XbzhYtpaZ2EMy3G8jX864hF1wNfMXKUKQbNqfYC73tI,2522
|
|
1421
|
+
pyrogram/raw/functions/bots/set_custom_verification.py,sha256=EWLLMveI4eXI5VENrrYqRQY-UuAcqkiogZBoK-ANFIk,3432
|
|
1422
|
+
pyrogram/raw/functions/bots/set_join_chat_results.py,sha256=QMLQlKxfthHITYqOpgeBlSKzvOz_rZ0q8v4Os5DWNGg,2499
|
|
1423
|
+
pyrogram/raw/functions/bots/toggle_user_emoji_status_permission.py,sha256=3J96TnRV4j1-eAffr-Zorn-ZQ00HOLfhLJw9LbeIqqo,2472
|
|
1424
|
+
pyrogram/raw/functions/bots/toggle_username.py,sha256=_CdiqEREHx-GKrI_69A_1fd0DpR6p0zzAEQygVpvzAU,2620
|
|
1425
|
+
pyrogram/raw/functions/bots/update_star_ref_program.py,sha256=Yv6LJQI2PlMV1fh1Mz3Te0Z6QyWC6U-qUYx06EMQEbc,3113
|
|
1426
|
+
pyrogram/raw/functions/bots/update_user_emoji_status.py,sha256=kA4910LexhD8UDyY-plWjyY2QkfwaYuppbWxoFgU2Yc,2588
|
|
1427
|
+
pyrogram/raw/functions/channels/__init__.py,sha256=VxkL1lQL1VN306vq6Z6qZggjOC4X3eDmZpkO89Ldo78,3894
|
|
1428
|
+
pyrogram/raw/functions/channels/check_search_posts_flood.py,sha256=bHVAqE3HVj9n9r4mzxe3WOPqDJBE7CPeuXnjfXNq10Y,2448
|
|
1429
|
+
pyrogram/raw/functions/channels/check_username.py,sha256=4I18zg_3k77zCPvA_zkXqC3TNP0tvRZB8pV4TDGO4Io,2467
|
|
1430
|
+
pyrogram/raw/functions/channels/convert_to_gigagroup.py,sha256=soppz0ITwzynSkOXW9P30-C4NWEwTCbkdXZO2BK9P8Q,2297
|
|
1431
|
+
pyrogram/raw/functions/channels/create_channel.py,sha256=smvKfoIvqe7Hx5-JOO25t7Vsy5et82AmvH_W3I14Sh8,4805
|
|
1432
|
+
pyrogram/raw/functions/channels/deactivate_all_usernames.py,sha256=2yA9yVHPuHGcH1fFUS9S4_mAs619domFm5TkbG4URvw,2276
|
|
1433
|
+
pyrogram/raw/functions/channels/delete_channel.py,sha256=ztwU6U-dE76hk_KPpeiYiEt3hNEH9bMhvD885YNA0W8,2279
|
|
1434
|
+
pyrogram/raw/functions/channels/delete_history.py,sha256=lgxINVyX2ZgjTD7yMGMna7GdT0FpARwg12KT-Pk2AFs,2845
|
|
1435
|
+
pyrogram/raw/functions/channels/delete_messages.py,sha256=xms6GVNw1cO3ObVPx2EB6mrWxAaMEFzgdzTk5hqB_NQ,2550
|
|
1436
|
+
pyrogram/raw/functions/channels/delete_participant_history.py,sha256=rYumn_qPuuH0JDb28dRHuFqL4tin3G49hpbq37xZoMo,2687
|
|
1437
|
+
pyrogram/raw/functions/channels/edit_admin.py,sha256=KdskUwMV-pB7OvoBb2VJx68N3sCjU0V_pagr05I2AHo,3274
|
|
1438
|
+
pyrogram/raw/functions/channels/edit_banned.py,sha256=5f_vTX55lzEP3Vsoyb86so8qfu-5vGZTS8qMv2CpwPg,2939
|
|
1439
|
+
pyrogram/raw/functions/channels/edit_location.py,sha256=yJfJ3R55PWRzdoUmEqjP5rT-fSKJ426OiJkblcbnWPk,2765
|
|
1440
|
+
pyrogram/raw/functions/channels/edit_photo.py,sha256=hF4lZQJYSBL1KCz2N12tx0Uo292K3TGbRjQfb7IFw8c,2542
|
|
1441
|
+
pyrogram/raw/functions/channels/edit_title.py,sha256=gBRK6wnDLKCHM164UPoeiktddfzVemYzxCfn8qdYot4,2461
|
|
1442
|
+
pyrogram/raw/functions/channels/export_message_link.py,sha256=mK573hNA9z9c6332WQF672zr8HLwGI8yaVWEadV6Hy8,3074
|
|
1443
|
+
pyrogram/raw/functions/channels/get_admin_log.py,sha256=MouNLNSZf6XdbNA9a5cxiI97J1bq-W1g3jRbugGdy5M,4170
|
|
1444
|
+
pyrogram/raw/functions/channels/get_admined_public_channels.py,sha256=upZPmkb7TntEWEe5AqY_LmRZSVq8tgWAiMo-B1YrROg,3018
|
|
1445
|
+
pyrogram/raw/functions/channels/get_channel_recommendations.py,sha256=mOheee-s0mgcA0AhQrF52NibX3wdicU7cxyJ7F9aiS8,2552
|
|
1446
|
+
pyrogram/raw/functions/channels/get_channels.py,sha256=GfCq7J-ZBavtUW6gF6sMLe6qJ7GtQvUSxaG6cPRwVm4,2267
|
|
1447
|
+
pyrogram/raw/functions/channels/get_full_channel.py,sha256=uSMqSDhFnN-fUuoR7ROCKKEunrwGcnhcZaqwR4tRKEo,2311
|
|
1448
|
+
pyrogram/raw/functions/channels/get_groups_for_discussion.py,sha256=5sF3l3y03K6dkUlMhNmGUrla6_5AaYP4vJlS20WuBJA,2094
|
|
1449
|
+
pyrogram/raw/functions/channels/get_inactive_channels.py,sha256=PfzXPw64UVADVcnBLloZuDhBudhIdBcXn3H5VBO4ynw,2106
|
|
1450
|
+
pyrogram/raw/functions/channels/get_left_channels.py,sha256=uydXT9OvMr7JmgsWRNV38xGwpHTalgLaKIVeuOAupOk,2228
|
|
1451
|
+
pyrogram/raw/functions/channels/get_message_author.py,sha256=iKUVxos0Scl6EcaxyEjSR3VXqIuE6Br_x_1GXeHWbgY,2455
|
|
1452
|
+
pyrogram/raw/functions/channels/get_messages.py,sha256=wcZ_0MdrRaBjSO2VVzb_bbxywdIhQFndeF1Cy3UhD9k,2567
|
|
1453
|
+
pyrogram/raw/functions/channels/get_participant.py,sha256=YkCv6RAhAa0Yc7NFfetcedalSgeqt-sFq3X_KPHo2Dg,2656
|
|
1454
|
+
pyrogram/raw/functions/channels/get_participants.py,sha256=tj7JKKfZU0tjgnoXuqKrj43W9lyhZtEYGBi9KdhuF7k,3285
|
|
1455
|
+
pyrogram/raw/functions/channels/get_send_as.py,sha256=LV5lnWMIur7h1LR45a27dwK41XT5ihFj5sneCCt6FAI,3022
|
|
1456
|
+
pyrogram/raw/functions/channels/invite_to_channel.py,sha256=ZgnhW5aVmRd20gqYp4jaR_yGBgE4g-DjeZ-TO8HIemc,2610
|
|
1457
|
+
pyrogram/raw/functions/channels/join_channel.py,sha256=rgc0mQJmDUStwUQPCoEOIW49ybtqAvewBFy-pUsf9ws,2337
|
|
1458
|
+
pyrogram/raw/functions/channels/leave_channel.py,sha256=33UHJY9xhV-rYI7IScpXQYyXsy9v_b6AbxRxdAgbKlk,2275
|
|
1459
|
+
pyrogram/raw/functions/channels/read_history.py,sha256=6Gl60dID33DU2MJvcyPeiPimGFU0Y8XK1i-AdVZObJY,2443
|
|
1460
|
+
pyrogram/raw/functions/channels/read_message_contents.py,sha256=ObT_nfCzy7VQPWLKTTyN1HfhVZRP0VxVx92casNN7Ws,2479
|
|
1461
|
+
pyrogram/raw/functions/channels/reorder_usernames.py,sha256=qw6yDQU4mtje3OdXtpuZaeGcWcmyNgM8bbEaqI5NX-Q,2492
|
|
1462
|
+
pyrogram/raw/functions/channels/report_anti_spam_false_positive.py,sha256=iWGyJkL_BxU4UtFL9zkniMqFZ2vCitgX4QGROU8GPYU,2507
|
|
1463
|
+
pyrogram/raw/functions/channels/report_spam.py,sha256=vTz8YP2JQKnlQQiljT8Pv57e9xyzUWA5EqWPVeG5va0,2756
|
|
1464
|
+
pyrogram/raw/functions/channels/restrict_sponsored_messages.py,sha256=e8f_qM_3n7FRqD7A8coghm6x1niDt_LS8B_tzGl0lB8,2566
|
|
1465
|
+
pyrogram/raw/functions/channels/search_posts.py,sha256=s9GJ-ezcuNtTIxQq6vTaBcyahrO603zWOrUEsTrE-f4,4270
|
|
1466
|
+
pyrogram/raw/functions/channels/set_boosts_to_unblock_restrictions.py,sha256=Yx48cKfOmTotWXK0TB8JVwz5pK7AEZ_r_6a8yOzIr10,2556
|
|
1467
|
+
pyrogram/raw/functions/channels/set_discussion_group.py,sha256=sd_UFD7jcZlZ1SGzztuylYPuYUqZOb26Dr2KYaQmxh4,2551
|
|
1468
|
+
pyrogram/raw/functions/channels/set_emoji_stickers.py,sha256=yuvsiVuvmYkmlxMeUrKYHmqDPL5z0pYp6P0UuQPwxZ4,2582
|
|
1469
|
+
pyrogram/raw/functions/channels/set_main_profile_tab.py,sha256=Il4xRh5aqGpLYVVuJivKvYA0Tlw5a5Kf9QlZvHcU-gE,2503
|
|
1470
|
+
pyrogram/raw/functions/channels/set_stickers.py,sha256=WQWeDxNDY86BUrQM02e-G7nnp9AohaPxdQwfNH50XkE,2562
|
|
1471
|
+
pyrogram/raw/functions/channels/toggle_anti_spam.py,sha256=XveeSukoWh8eBefqH47mkzkNJDw0u5zaaUHhjeQS3Nc,2495
|
|
1472
|
+
pyrogram/raw/functions/channels/toggle_autotranslation.py,sha256=4Cj2R7p2vBgzYSd79JUOolZxQLXOwIxaCJDcbve-YZM,2523
|
|
1473
|
+
pyrogram/raw/functions/channels/toggle_forum.py,sha256=EfxzMvLTCuWfvjauIWPfL_s8UPdvcM4VeyCnRa9EdVo,2668
|
|
1474
|
+
pyrogram/raw/functions/channels/toggle_join_request.py,sha256=XXwQDTCk29ZJPpmsUma9KNhQXACpI_RMiRvFe4s1mJo,3356
|
|
1475
|
+
pyrogram/raw/functions/channels/toggle_join_to_send.py,sha256=q0gRWtmuCcJU9gUMBWpkUsQRVJKtT5pyJn3u7lZp96Q,2503
|
|
1476
|
+
pyrogram/raw/functions/channels/toggle_participants_hidden.py,sha256=gik42QymTp0rZ0MKE_88J0V4crZuI43rx-dhfYBXYvg,2535
|
|
1477
|
+
pyrogram/raw/functions/channels/toggle_pre_history_hidden.py,sha256=gcnR1TQ4Q2BvlV7BFvHkaFjn2RwR1uuThYrX7VlXtVU,2527
|
|
1478
|
+
pyrogram/raw/functions/channels/toggle_signatures.py,sha256=tJ-hb-aBNEbyapPu6Yu0jzOqN0oLMrd0c7W2fvVuTqY,3050
|
|
1479
|
+
pyrogram/raw/functions/channels/toggle_slow_mode.py,sha256=nlgT67NF3gO5xjxfhjTM8XYR_GwvrmYm5M_OdN22xCQ,2501
|
|
1480
|
+
pyrogram/raw/functions/channels/toggle_username.py,sha256=hoMVur3K2XVCCoHogz0SBSUQXvUMw413VwygCQ-Etlo,2674
|
|
1481
|
+
pyrogram/raw/functions/channels/toggle_view_forum_as_messages.py,sha256=qkQlTV9f62ng_da9b7azDGT10jayEuKV_Ho1KLx0hpE,2539
|
|
1482
|
+
pyrogram/raw/functions/channels/update_color.py,sha256=f-Air3___QBXS4bIxaYQo3r50IQtEO4YuhQmN5aGjQI,3488
|
|
1483
|
+
pyrogram/raw/functions/channels/update_emoji_status.py,sha256=Ww_nEAeu4DiOnSUHbAHe-6si3f6Ux9pmPJqWxeTisRA,2625
|
|
1484
|
+
pyrogram/raw/functions/channels/update_paid_messages_price.py,sha256=cFsAx2hghvfy7IKDJbu9HCKtb3tNevGQOIYIJFbuKxA,3176
|
|
1485
|
+
pyrogram/raw/functions/channels/update_username.py,sha256=1OAy3yvXPBDJ3AOnW8s8usyibIZEqqx0Ql-KL5bZf6w,2471
|
|
1486
|
+
pyrogram/raw/functions/chatlists/__init__.py,sha256=coaBPkgpiifURg3ntgctPBMk3NCQFJGiuEHgDhGLtd8,1665
|
|
1487
|
+
pyrogram/raw/functions/chatlists/check_chatlist_invite.py,sha256=9zcXS6bIo5lZKCNiqHCg0TCLGfQSljKfI3bb6QPi8X0,2255
|
|
1488
|
+
pyrogram/raw/functions/chatlists/delete_exported_invite.py,sha256=PRXWjNdvXT9XMORcCl5_da8Ix4EYFaapadFX9y3e2uo,2473
|
|
1489
|
+
pyrogram/raw/functions/chatlists/edit_exported_invite.py,sha256=ngghjqXjmxhNkkryL3ezKLAVtQbq6dihaEX4I5GabnQ,3378
|
|
1490
|
+
pyrogram/raw/functions/chatlists/export_chatlist_invite.py,sha256=K7ZL6ht-a9oo2ZOYsBLqMmpmTfQZK6ZWAWwHc35sei8,2875
|
|
1491
|
+
pyrogram/raw/functions/chatlists/get_chatlist_updates.py,sha256=iXc8OQF0JNzqVA9YTb1DtXFAPqoJ9PUzBJVqxOalDFI,2367
|
|
1492
|
+
pyrogram/raw/functions/chatlists/get_exported_invites.py,sha256=W73WNA4S6qX-v6L8rEaYvZevUJlxGUMqecgc8W8um88,2367
|
|
1493
|
+
pyrogram/raw/functions/chatlists/get_leave_chatlist_suggestions.py,sha256=Y9CjANoE0vIlIuXpFB_did8w_-TNpGqOMOHnHf_NmcQ,2354
|
|
1494
|
+
pyrogram/raw/functions/chatlists/hide_chatlist_updates.py,sha256=5yrhnmWtEvnXn8EDcEyCKRHl92EdlYxDn3Xtb-vCa5s,2280
|
|
1495
|
+
pyrogram/raw/functions/chatlists/join_chatlist_invite.py,sha256=bC7r28A_NT4faB2lSwN4RxlmrrW1twSoWNLp5uEpzPk,2481
|
|
1496
|
+
pyrogram/raw/functions/chatlists/join_chatlist_updates.py,sha256=24SkFe90Ej-B0NRbak_y_Osnh8JvHkJTzBJz7AKaAnA,2598
|
|
1497
|
+
pyrogram/raw/functions/chatlists/leave_chatlist.py,sha256=LetGtw1HY2dAifWYiIYrM7-WoCjlxyxfOKl-3FEFBzA,2574
|
|
1498
|
+
pyrogram/raw/functions/contacts/__init__.py,sha256=ugd_B6BpbrMfKEjKS-e-QGHeCPbP_LCDYHZDEvX9xSQ,2218
|
|
1499
|
+
pyrogram/raw/functions/contacts/accept_contact.py,sha256=2Y5bgbNhJTOxwxS-bhUITSFDg8REboSvyrRsVEQ3ukk,2222
|
|
1500
|
+
pyrogram/raw/functions/contacts/add_contact.py,sha256=IWqEdFU-_XseUuvi9Yg449zkXk1DG7-9cJM3tRPQfqc,3808
|
|
1501
|
+
pyrogram/raw/functions/contacts/block.py,sha256=ZJDHLxumtorVueSZZHSozDJWJH330uwF25g-Js1_9pM,2537
|
|
1502
|
+
pyrogram/raw/functions/contacts/block_from_replies.py,sha256=g5EvLSp6IQMS_pSjZWDX5brfpZsmOZmUcchrYsA-UQc,3219
|
|
1503
|
+
pyrogram/raw/functions/contacts/delete_by_phones.py,sha256=SgX-EV27CNveVEgTmYrHqp55mXxGDbCl7HJ51CqtU44,2204
|
|
1504
|
+
pyrogram/raw/functions/contacts/delete_contacts.py,sha256=3wOSHGwaVOmu7SVAYpF1tkakGdCv9LdO1UUNAzpjRKg,2246
|
|
1505
|
+
pyrogram/raw/functions/contacts/edit_close_friends.py,sha256=5WIpokdDW1V7_vAVn6oKLfo7w6z3VSXTE_1CRdE9Z1w,2181
|
|
1506
|
+
pyrogram/raw/functions/contacts/export_contact_token.py,sha256=BMlLztKUkOq06DUtLgFyH-rrjOVM_sRi2BTGmIhoHVA,2096
|
|
1507
|
+
pyrogram/raw/functions/contacts/get_birthdays.py,sha256=_NSTUBwdSI8SOq7eao9mt1IMj5GxSsSZHY3Rb56S3p4,2087
|
|
1508
|
+
pyrogram/raw/functions/contacts/get_blocked.py,sha256=G_NU_uy_yCViZYe972xwbY529acrn4xqqBVmTvvv5oM,2798
|
|
1509
|
+
pyrogram/raw/functions/contacts/get_contact_i_ds.py,sha256=AB0YEArOAdFQDTSBjRCGZK53xAFqSanrsVcKSp-wFjA,2170
|
|
1510
|
+
pyrogram/raw/functions/contacts/get_contacts.py,sha256=XogSeEV1nMxkE1JyQKnvQCvEH17uMOh_OcvbBSPUnOs,2206
|
|
1511
|
+
pyrogram/raw/functions/contacts/get_located.py,sha256=dxFaVW8mmsxji0HNYbc60toZrYQnDVpiptStw46g3F8,3061
|
|
1512
|
+
pyrogram/raw/functions/contacts/get_saved.py,sha256=wTEupTI9i5_ldcFkK0NCIEwLAf27fPg9Ow2wSurP1rE,2046
|
|
1513
|
+
pyrogram/raw/functions/contacts/get_sponsored_peers.py,sha256=Kja3lxQ-pwSSgix4Z10cX3GrKNEbry5Y_DsytXdcR3Q,2216
|
|
1514
|
+
pyrogram/raw/functions/contacts/get_statuses.py,sha256=OoIKC30CYVW51U9dHsuf6kJPfqGtT5uKr78mYsfrw6g,2061
|
|
1515
|
+
pyrogram/raw/functions/contacts/get_top_peers.py,sha256=QG0iW8yqlsi_AypAzVYAoK-nBtrQ8x8fZrR-XXsjA78,5657
|
|
1516
|
+
pyrogram/raw/functions/contacts/import_contact_token.py,sha256=xfXVejNh31MZBXgtr7uA0T_yK1x520lZ4qlQknlfP4M,2199
|
|
1517
|
+
pyrogram/raw/functions/contacts/import_contacts.py,sha256=65IYrrLrignKN6dP9WwqAflYFXkR1wljAViXxWKNybw,2368
|
|
1518
|
+
pyrogram/raw/functions/contacts/reset_saved.py,sha256=qpRSpjDN_wsEqmdDbx-NOQXDkhwTqYrMwYUHZqj0z_E,1988
|
|
1519
|
+
pyrogram/raw/functions/contacts/reset_top_peer_rating.py,sha256=FRQ_kMyOMhtIqL6XeaSIGqGh5_SSFVXm4j1B3PgbKOI,2533
|
|
1520
|
+
pyrogram/raw/functions/contacts/resolve_phone.py,sha256=ApFHORA2pTjgB5RRAB9mtgZUeNBBIcujEwfh1gVtJN8,2226
|
|
1521
|
+
pyrogram/raw/functions/contacts/resolve_username.py,sha256=M61brnJl7QNUJJNcHRFxrHpsGBEFBYSGju76Df4C1dM,2686
|
|
1522
|
+
pyrogram/raw/functions/contacts/search.py,sha256=DO3T2Ejb_REcnyqGIY3yYQh947fA2bEXkCed094Hteg,2922
|
|
1523
|
+
pyrogram/raw/functions/contacts/set_blocked.py,sha256=ZPs8xbN52VzHECA-Opzd7RpN0OxKnpMHyM33fsGorVw,2779
|
|
1524
|
+
pyrogram/raw/functions/contacts/toggle_top_peers.py,sha256=VJyI5GgASRgZOl8oxmCqcE0-wmLipa2vh01gc9WSDac,2169
|
|
1525
|
+
pyrogram/raw/functions/contacts/unblock.py,sha256=nCy7s2dp5WLJOt2GBjjyRHEBLVnAY2kCii0bjqEhmXw,2545
|
|
1526
|
+
pyrogram/raw/functions/contacts/update_contact_note.py,sha256=9_sDzg3eK3BmXnRjyC64EyA9BybG1EYyQpctjyou4GU,2479
|
|
1527
|
+
pyrogram/raw/functions/contest/__init__.py,sha256=MTINT54aO0XS-zrZ3PeZ0sX91ODJoDLXiiNOaukAtJA,1111
|
|
1528
|
+
pyrogram/raw/functions/contest/save_developer_info.py,sha256=JVDqCYtteK0CCOSlIGEljdmlf2jiIsc27kn0PprTTxA,2989
|
|
1529
|
+
pyrogram/raw/functions/folders/__init__.py,sha256=iRvg1YdG__N7NCJY3_07h0AM9W5BRK3sW_l8PEPhB6M,1107
|
|
1530
|
+
pyrogram/raw/functions/folders/edit_peer_folders.py,sha256=FM-Hjni5cHgPxU4EzsABczarZLx5nWohNiunpZ3UD0c,2365
|
|
1531
|
+
pyrogram/raw/functions/fragment/__init__.py,sha256=hhglNVaqk5_jz6abAfDXFfFSgOiUea0Zza7eOrG6R6I,1113
|
|
1532
|
+
pyrogram/raw/functions/fragment/get_collectible_info.py,sha256=Xz-HUaYAbwa3KlRkcOZvoUJMi8bg0xP0rTjUKF8Zj0k,2402
|
|
1533
|
+
pyrogram/raw/functions/help/__init__.py,sha256=CFCq5PzFCnEo-IKxx3vJgpWCbjgqt34e4ZP1en_QSVM,2205
|
|
1534
|
+
pyrogram/raw/functions/help/accept_terms_of_service.py,sha256=9Eks1HA1lLEm-tbGIvaGbckytUt8g8HzTXGsdujMiSI,2205
|
|
1535
|
+
pyrogram/raw/functions/help/dismiss_suggestion.py,sha256=YVlrI79M7mX0s6X_pz2mnMtCu7j5_4c4G8VXG07bsvA,2458
|
|
1536
|
+
pyrogram/raw/functions/help/edit_user_info.py,sha256=W7zjsuH85QBTI4BmZIX0_-5QytsNtmK3QJ4E0eRGPsE,2817
|
|
1537
|
+
pyrogram/raw/functions/help/get_app_config.py,sha256=Olx_AlJdYLYi8nsSxdA1_YZxYQEUZDAkSQ-v7LyknAw,2194
|
|
1538
|
+
pyrogram/raw/functions/help/get_app_update.py,sha256=nov2Ms3JkVZPrmP1Fy4ZPgB9P3WXS1TTmVm1jemJbD8,2210
|
|
1539
|
+
pyrogram/raw/functions/help/get_cdn_config.py,sha256=lkg5xgCYn_cNG_U4qAaABqi58NPLowkdEDBqJyHC-wA,2035
|
|
1540
|
+
pyrogram/raw/functions/help/get_config.py,sha256=5vfIa1rWvRPXr0Nm98XDRwHDSj53ntAsaXNZUxoCCMk,2014
|
|
1541
|
+
pyrogram/raw/functions/help/get_countries_list.py,sha256=WowYrrwdEVacxKvcyQOd57jJV-eXwZ1Y_rIXpWFu2Uw,2456
|
|
1542
|
+
pyrogram/raw/functions/help/get_deep_link_info.py,sha256=XQAwxzJEYgzaZA59mwW_IFJz65hZyEuC27mYAs2BWFo,2213
|
|
1543
|
+
pyrogram/raw/functions/help/get_invite_text.py,sha256=oiLk_c-vz7g6BgMLyxHfIy-ApaHWZ5thwqHN1QBrO2A,2057
|
|
1544
|
+
pyrogram/raw/functions/help/get_nearest_dc.py,sha256=uNwSO4ngETai8A2D6kGsB7ScNlNfrLBmX-4BybLOYkE,2035
|
|
1545
|
+
pyrogram/raw/functions/help/get_passport_config.py,sha256=9Su2G7xyKUVoUbRTp4RUuStTNdJOBH3b-nzek2iRcrc,2229
|
|
1546
|
+
pyrogram/raw/functions/help/get_peer_colors.py,sha256=amiS3Ik7S74CQfT4J0yWUOJu_MAvDkwqqslFHBXk7zs,2201
|
|
1547
|
+
pyrogram/raw/functions/help/get_peer_profile_colors.py,sha256=ijPSYQhXO2LZ62mSN5uKB6UkFuEzev-RtIh7f4nt-Ug,2229
|
|
1548
|
+
pyrogram/raw/functions/help/get_premium_promo.py,sha256=DlWCkOEjLeukhINuVnr7aWJiJYAAQNf121rf0zOcQD4,2071
|
|
1549
|
+
pyrogram/raw/functions/help/get_promo_data.py,sha256=7ZiURfMnjkt3xyCmSGVgqce9HfH29D6Dh7-6t4PDgTQ,2050
|
|
1550
|
+
pyrogram/raw/functions/help/get_recent_me_urls.py,sha256=IBQo1Oi57unpc5hUND0mq2FzMVPTMQMwjezyV83jpQk,2240
|
|
1551
|
+
pyrogram/raw/functions/help/get_support.py,sha256=_zktOVmiS2-UsoQIxWjKU-iCFWu0Bl7BsN-46TQmgSg,2036
|
|
1552
|
+
pyrogram/raw/functions/help/get_support_name.py,sha256=iYvVGdhW1GXSMqB11Ububzj8tM5QZ2t_fVpOnmxoe-4,2064
|
|
1553
|
+
pyrogram/raw/functions/help/get_terms_of_service_update.py,sha256=gEW7JMRXtz2HgbCnYLin7QSgypbNMFncmAZ2R7N4lcs,2127
|
|
1554
|
+
pyrogram/raw/functions/help/get_timezones_list.py,sha256=Spzs-2bGdCZn1VF3pdwnaRjegNrSNkj7OJkIo3U1daY,2222
|
|
1555
|
+
pyrogram/raw/functions/help/get_user_info.py,sha256=dXxGFnBS1VOCIh9JEc6x8L8XtPr2GuuExJkx_0bjShc,2271
|
|
1556
|
+
pyrogram/raw/functions/help/hide_promo_data.py,sha256=GBSB34LpLhaiDCZjchNDCiv7Y_-5BjjjeB-AM3MjtR8,2199
|
|
1557
|
+
pyrogram/raw/functions/help/save_app_log.py,sha256=FfVLwFPaoBD6QZhPQrzMzlmCAcSsiUv77yVHjlGUa1M,2243
|
|
1558
|
+
pyrogram/raw/functions/help/set_bot_updates_status.py,sha256=n-czGRkBbyalJSvLLmyycR7jIs_UgSu5Sc_CzwExaTw,2533
|
|
1559
|
+
pyrogram/raw/functions/langpack/__init__.py,sha256=H2OvrXxUbANxI8u4S-E-U1Prie8LXZ9u3xKfq4Wtfx8,1255
|
|
1560
|
+
pyrogram/raw/functions/langpack/get_difference.py,sha256=nbKyCzB_BaJgtu3JlZitqezRoqAPldAyEJ3Fb9ILGAI,2754
|
|
1561
|
+
pyrogram/raw/functions/langpack/get_lang_pack.py,sha256=0XOitLYxlNUUpwRurkDPjZuj1ccbYTnVKx0xYd9Zl-Y,2483
|
|
1562
|
+
pyrogram/raw/functions/langpack/get_language.py,sha256=pHg2YaL1mclLKG-DViZ7hxLn8tZzR5Kya9kOM1upvGA,2477
|
|
1563
|
+
pyrogram/raw/functions/langpack/get_languages.py,sha256=6S4QzaCgAiLTSlLSjLPU7xOPcCV-ABZ_JmKKtYlkWWo,2261
|
|
1564
|
+
pyrogram/raw/functions/langpack/get_strings.py,sha256=Cc3yVmF_hYsGAjc9bdHUlH2qHQbJkGeylsfXjSOk9Ug,2710
|
|
1565
|
+
pyrogram/raw/functions/messages/__init__.py,sha256=daPa0TVmB3T1lIQ8J_sNUmvS2QB0L2ZY9BWRCsFE-y4,14352
|
|
1566
|
+
pyrogram/raw/functions/messages/accept_encryption.py,sha256=cMmtGkicB3n_L9FvRg34fusEpep8AQwPwMCgoMCGsgY,2780
|
|
1567
|
+
pyrogram/raw/functions/messages/accept_url_auth.py,sha256=FvTvAOvXS429HRC0AAQFDP4gHbEmS-k-YAf5qFCJKxE,4651
|
|
1568
|
+
pyrogram/raw/functions/messages/add_chat_user.py,sha256=ox9Z1mncbFGfokwGOC2pxevAwhKSsUiCqPxN-kbVDI0,2758
|
|
1569
|
+
pyrogram/raw/functions/messages/add_poll_answer.py,sha256=q2Ih65-gxP3R-_ucCZ_aZrfjT0uxFPbKMQrAXcLr2jI,2721
|
|
1570
|
+
pyrogram/raw/functions/messages/append_todo_list.py,sha256=Y6tbki_1QNJl_imsQsWSwmtEkEiSrTmOklUvTMLDs5I,2721
|
|
1571
|
+
pyrogram/raw/functions/messages/check_chat_invite.py,sha256=SRJgS2K0WBmS1xcCw8xZiQBgLR8cvlxdFtl1JElg4gs,2196
|
|
1572
|
+
pyrogram/raw/functions/messages/check_history_import.py,sha256=krEPdVM1uAqawKy9U6Iv8dVTXAGbSrX9ADBrzQuW-vM,2325
|
|
1573
|
+
pyrogram/raw/functions/messages/check_history_import_peer.py,sha256=bps-E4U3IUm98a6ryI_UXMy0q6_CEuVc050gyNwY6nY,2354
|
|
1574
|
+
pyrogram/raw/functions/messages/check_quick_reply_shortcut.py,sha256=4ppObGJJh1dKY2lN_h4aa0kkN4PCl5oX7iiuGzq_58w,2218
|
|
1575
|
+
pyrogram/raw/functions/messages/check_url_auth_match_code.py,sha256=68GfNfqrdjxAwJem7Reb16Q7Qc4iqOFgMs6Vu70qg0M,2408
|
|
1576
|
+
pyrogram/raw/functions/messages/clear_all_drafts.py,sha256=S_uZ7vdgBF84g7RUkxFjzqrBzTHSJccz_boHpM797jM,2004
|
|
1577
|
+
pyrogram/raw/functions/messages/clear_recent_reactions.py,sha256=mSrFASzvf6sSrPTZET5DZ4hAfWfOISmopLEpmL3Ej8I,2028
|
|
1578
|
+
pyrogram/raw/functions/messages/clear_recent_stickers.py,sha256=xbFHt3F1FW_oBZHYt0604mJtELjTu8TwED6Z1D27rWU,2298
|
|
1579
|
+
pyrogram/raw/functions/messages/click_sponsored_message.py,sha256=ewiwVP4WPXt6O5lkOnrPB7ATNMejS9LwjMaHmezngok,2808
|
|
1580
|
+
pyrogram/raw/functions/messages/compose_message_with_ai.py,sha256=LkHjWsBooXBFCDy2uHlEUSmudVbOO8CagO6Tg5JOA_E,3887
|
|
1581
|
+
pyrogram/raw/functions/messages/create_chat.py,sha256=w9jfLnRFXqC66vacB6juJnk0-xW49PNFDCD-2zWrKmE,2955
|
|
1582
|
+
pyrogram/raw/functions/messages/create_forum_topic.py,sha256=eKyeJVpFAwi_VVCwe0QLSJQ0i0TnFnzGaL8Cvp9u8EU,4349
|
|
1583
|
+
pyrogram/raw/functions/messages/decline_url_auth.py,sha256=8aAVJDqg6GXvnQaj3dhgNQqr7PMnxK6rzM620gLNhSQ,2137
|
|
1584
|
+
pyrogram/raw/functions/messages/delete_chat.py,sha256=1rJK-1unf9fWOW5Y_FKjBskFqfIIWzodywWrLXIhobA,2162
|
|
1585
|
+
pyrogram/raw/functions/messages/delete_chat_user.py,sha256=orrmw_yxUvSel4FIDeOtpF_rucJKI2og8tVCI7FC5fc,2867
|
|
1586
|
+
pyrogram/raw/functions/messages/delete_exported_chat_invite.py,sha256=-E32ZNpLCNKSqeCdjVhXpgnThleyxj8-Hrtzj9Prx8I,2436
|
|
1587
|
+
pyrogram/raw/functions/messages/delete_fact_check.py,sha256=n8r7Bl5yEF5TTeA-dsotySmPY0rXdYLkfmM_nFie8wQ,2457
|
|
1588
|
+
pyrogram/raw/functions/messages/delete_history.py,sha256=0Lzdb_BPlJ4nCX2Q7HsOA7XQWLy99lNeRcbcsuJ8NDo,3875
|
|
1589
|
+
pyrogram/raw/functions/messages/delete_messages.py,sha256=r8wzG0m8SE9rhWK5iStNoITI6oTeHtpUsGkORL6BVRA,2564
|
|
1590
|
+
pyrogram/raw/functions/messages/delete_participant_reaction.py,sha256=onmBY4qCWYjoVQGdxjPQI_9Q8_nkENSaUI5lRMfXmKw,2810
|
|
1591
|
+
pyrogram/raw/functions/messages/delete_participant_reactions.py,sha256=3wtjHrwh5qkVkZKFbssDvk_RTAHpPmsOfEKtS1i7WcU,2568
|
|
1592
|
+
pyrogram/raw/functions/messages/delete_phone_call_history.py,sha256=lIEQKPWuSMzyszP9dhrKibEVSp4vZ1MijVgpbz9Wde8,2398
|
|
1593
|
+
pyrogram/raw/functions/messages/delete_poll_answer.py,sha256=Mj6ZjPLxv5PzGY_vtDYl24Va6Jh18P7xyrxJrBw_-Xs,2669
|
|
1594
|
+
pyrogram/raw/functions/messages/delete_quick_reply_messages.py,sha256=PDD_PznT2E96E_ACsX4K3x0rPJQxqBLved2kOsNlUFI,2501
|
|
1595
|
+
pyrogram/raw/functions/messages/delete_quick_reply_shortcut.py,sha256=jwfA2dngeWRGSpOvhSoYr044SIMqEVwmA_ffmCdHDi8,2251
|
|
1596
|
+
pyrogram/raw/functions/messages/delete_revoked_exported_chat_invites.py,sha256=IxekhPdK5B-TLzTo6NfgtLlMVZhseNItloUIW6mrMmg,2565
|
|
1597
|
+
pyrogram/raw/functions/messages/delete_saved_history.py,sha256=WLD5RGwGogEEN6NbtozWocBC-YM7dXhOj_AeDNTzP9E,3823
|
|
1598
|
+
pyrogram/raw/functions/messages/delete_scheduled_messages.py,sha256=3KoOZjrHzZ0eq-eR40HSSwNqyvAp4T1Ibl0TnbvNtio,2493
|
|
1599
|
+
pyrogram/raw/functions/messages/delete_topic_history.py,sha256=sVaTEEq9alt7D3-hcJaqOVNtkaqOUbEx8lALoO23sjs,2556
|
|
1600
|
+
pyrogram/raw/functions/messages/discard_encryption.py,sha256=qaZdFbyHYJ-H5JpqRyinhFPoYcpZ1d_2az1ztR3cc7E,2562
|
|
1601
|
+
pyrogram/raw/functions/messages/edit_chat_about.py,sha256=kFw4Nvm_fOqqt4Yp7t12ybGkAnMYtPz8QaXjvZODKx8,2401
|
|
1602
|
+
pyrogram/raw/functions/messages/edit_chat_admin.py,sha256=ouUrOuUmsUzL_Xa4YJ1Y0vYkNBUeCk8VUsrnTz13TZw,2672
|
|
1603
|
+
pyrogram/raw/functions/messages/edit_chat_creator.py,sha256=sXD2Y_lX5QLbMKpehVfLEku1JuXR3c49Tavm1cdBdCs,2859
|
|
1604
|
+
pyrogram/raw/functions/messages/edit_chat_default_banned_rights.py,sha256=TJYT0C9CLeBYE-SqJP6b4CZ2ueOqgzjBjn1hZffnArQ,2655
|
|
1605
|
+
pyrogram/raw/functions/messages/edit_chat_participant_rank.py,sha256=tdDWl0Gxg1kx_MeE1u4OtwAg4xY27ApbzN2uujErpM0,2782
|
|
1606
|
+
pyrogram/raw/functions/messages/edit_chat_photo.py,sha256=DoauyPZsYib5Y6Ei7vforw0m4ksWHE6AN3BAVwaFVUA,2490
|
|
1607
|
+
pyrogram/raw/functions/messages/edit_chat_title.py,sha256=-BlXhcCUIgCHMoJ3RI_I8s4BPlKiGYNTOVyn7T8IJVg,2409
|
|
1608
|
+
pyrogram/raw/functions/messages/edit_exported_chat_invite.py,sha256=8d_H7GyLmI-LQulVacE85eCy7QjMUyBZgsBOO5lvNlA,4484
|
|
1609
|
+
pyrogram/raw/functions/messages/edit_fact_check.py,sha256=TxkS8upW--0WWgUShzZ3HIkY2sg2NMJNk17qXiSJMgE,2725
|
|
1610
|
+
pyrogram/raw/functions/messages/edit_forum_topic.py,sha256=Od-7Tgh-L35865Eg_BUnSj0ha5LFIyEuF4BraVi9djI,4039
|
|
1611
|
+
pyrogram/raw/functions/messages/edit_inline_bot_message.py,sha256=VguYSof0d8HpN6ONQvV281Y1PHWgvsibZZzzmIfrKdo,5225
|
|
1612
|
+
pyrogram/raw/functions/messages/edit_message.py,sha256=G-z9HhsA6TSeBFKPHr9SUTW7lE-68LaL9ol84zo-dIc,6911
|
|
1613
|
+
pyrogram/raw/functions/messages/edit_quick_reply_shortcut.py,sha256=gH2N7E2xA2XzRFJszO1LL0nsRfVZOZ5KY7a__MaCCx8,2468
|
|
1614
|
+
pyrogram/raw/functions/messages/export_chat_invite.py,sha256=cVpqdsnXHspQleNpdJYNv2ze7f-hVa-mzj8m62_uadY,4908
|
|
1615
|
+
pyrogram/raw/functions/messages/fave_sticker.py,sha256=LtTNLJwMk9UT1P5BR9rf4rd1o_BpdzK85NApOgdo4Xc,2396
|
|
1616
|
+
pyrogram/raw/functions/messages/forward_messages.py,sha256=me8v-exia4iVQMhiaTAmD5VcSxr-lVuMKAi63iM2vVQ,10148
|
|
1617
|
+
pyrogram/raw/functions/messages/get_admins_with_invites.py,sha256=QOZlV4B6mYNiqpCt4LkJUF2aXQ6gpIlmgmpIV_lSp2k,2337
|
|
1618
|
+
pyrogram/raw/functions/messages/get_all_drafts.py,sha256=vaYCaFXuWFsKXdy_AA8owPABV1_vLH6aK3H7GMiKae4,2033
|
|
1619
|
+
pyrogram/raw/functions/messages/get_all_stickers.py,sha256=pPiY3velyDla4EbrS7nxHWK5VlGvIl9m1M4qo-tRjzI,2227
|
|
1620
|
+
pyrogram/raw/functions/messages/get_archived_stickers.py,sha256=ShajQN5QZuxS4rIl-ELCaJNHplBR_FoznLyzf7wyucw,3059
|
|
1621
|
+
pyrogram/raw/functions/messages/get_attach_menu_bot.py,sha256=pcMV-EBh7BS3FyLPTFStUHDEIXsCGJ-fZ6YyUyByfOk,2273
|
|
1622
|
+
pyrogram/raw/functions/messages/get_attach_menu_bots.py,sha256=R46QN271yvejEV_G_jJibJ49CVo9yT9Qw0tTq-qPfdI,2221
|
|
1623
|
+
pyrogram/raw/functions/messages/get_attached_stickers.py,sha256=o4zm-QoEzd9p9-9k12WeRXrDAd2qMgFJCCpgByOd96k,2357
|
|
1624
|
+
pyrogram/raw/functions/messages/get_available_effects.py,sha256=gT1ihWLOpfUX_5ih7hYzbbqVqOXawSG1ABHEESY_H14,2259
|
|
1625
|
+
pyrogram/raw/functions/messages/get_available_reactions.py,sha256=ZYKXG2_WviDkXnD840EncIcVpQvk8_2j_PRXYvTQjzM,2273
|
|
1626
|
+
pyrogram/raw/functions/messages/get_bot_app.py,sha256=us-Hba467zjGKlLnzzKfn58GwO4l8jyAPQrV-xIazAg,2441
|
|
1627
|
+
pyrogram/raw/functions/messages/get_bot_callback_answer.py,sha256=04KTvkdQBdS75ifosUA8_e-xSRjUAd7V_2r8qrIIIEw,3658
|
|
1628
|
+
pyrogram/raw/functions/messages/get_chat_invite_importers.py,sha256=wwLy8pHrJn5FsvkNrAjiyksSxavW2_JEzybfRHmEUpM,4473
|
|
1629
|
+
pyrogram/raw/functions/messages/get_chats.py,sha256=Zadh0236q4bEkD4xycO4LXs5KS36tud1e_o9mftGHps,2207
|
|
1630
|
+
pyrogram/raw/functions/messages/get_common_chats.py,sha256=Dw5cHFo49cfTmGGKt0v56WouBiQ0eiwA-GogbHJNlNA,2704
|
|
1631
|
+
pyrogram/raw/functions/messages/get_custom_emoji_documents.py,sha256=aTfAlzp8L9l3DgojILcZYNRD8Uj_WXAmRYBk_Q9DgUo,2344
|
|
1632
|
+
pyrogram/raw/functions/messages/get_default_history_ttl.py,sha256=s_l5zimHyHgeApObUMYi8aGJZWcwPzr2nRK-kKWTom0,2095
|
|
1633
|
+
pyrogram/raw/functions/messages/get_default_tag_reactions.py,sha256=rQ0HndLy2SA5J2Wvv1ZafNEEg88qsrvU-enMMKqVpWo,2253
|
|
1634
|
+
pyrogram/raw/functions/messages/get_dh_config.py,sha256=A4khsvSy8QzDF8c_64xK09JfA2XcksoZq5zcg1FA9Qw,2502
|
|
1635
|
+
pyrogram/raw/functions/messages/get_dialog_filters.py,sha256=N_4PUS2qFnxIPGElGgvyPSDUcSioSuYKwD-7bM7Q7xs,2094
|
|
1636
|
+
pyrogram/raw/functions/messages/get_dialog_unread_marks.py,sha256=XloQ0FMi25S83YTb-sv93O1cGSMYRBLCuQQP0vXpjiw,2566
|
|
1637
|
+
pyrogram/raw/functions/messages/get_dialogs.py,sha256=evvOqZbnAwcN-s1V9z9H-tQRE5xQWdm-aa8RT2L00vw,3977
|
|
1638
|
+
pyrogram/raw/functions/messages/get_discussion_message.py,sha256=5xqDgl1L0H_EacIQSPQF6SpCv6pVlEYDWTVRhgLv7gg,2534
|
|
1639
|
+
pyrogram/raw/functions/messages/get_document_by_hash.py,sha256=pY4N0gRXvlHNGfVP3PJFXxazrpBH4x8Ui13HT3lFEic,2645
|
|
1640
|
+
pyrogram/raw/functions/messages/get_emoji_game_info.py,sha256=DlFmZJigic5TH35w14ecEtTZaEz5O9gJ5wPpxvb2uA0,2094
|
|
1641
|
+
pyrogram/raw/functions/messages/get_emoji_groups.py,sha256=ahugxO-xw1BMH2S2S_Ibhx6BlCAVfPNRGLYTKNkGqCI,2224
|
|
1642
|
+
pyrogram/raw/functions/messages/get_emoji_keywords.py,sha256=UkyfzAOYlFGJ_dIAt6il4E6TmIiI5Nw7HYbqEZ_mPO0,2284
|
|
1643
|
+
pyrogram/raw/functions/messages/get_emoji_keywords_difference.py,sha256=n7VuhPhaIH5qY6zGBywYjMpYBYvO3MmFebaKZ6MbSQw,2587
|
|
1644
|
+
pyrogram/raw/functions/messages/get_emoji_keywords_languages.py,sha256=P9NalXrB0eo5nt_j9xDwtumS5mPA9rt89-xMZkh2kh0,2353
|
|
1645
|
+
pyrogram/raw/functions/messages/get_emoji_profile_photo_groups.py,sha256=nEPdY6e4ArDvHQJpVioxm_oxn1M1UAjUor2RxkRO6R0,2272
|
|
1646
|
+
pyrogram/raw/functions/messages/get_emoji_status_groups.py,sha256=KWyDcZxONj1CwPPRPYhLjsKxRzOK0IgiKWLtHq-xzJs,2248
|
|
1647
|
+
pyrogram/raw/functions/messages/get_emoji_sticker_groups.py,sha256=4019DxwCsGZbu-J9BL5y5l_DGT1xgrVDWCfmoWq8I0k,2252
|
|
1648
|
+
pyrogram/raw/functions/messages/get_emoji_stickers.py,sha256=3n7ESdIzBPIFeqpU-UyT4B8IwamZDNxwzrIdq_kgi4g,2235
|
|
1649
|
+
pyrogram/raw/functions/messages/get_emoji_url.py,sha256=5q41rO-mYZTkQhdyu0tFv-pIYmImh6niz-PouqhNIdA,2219
|
|
1650
|
+
pyrogram/raw/functions/messages/get_exported_chat_invite.py,sha256=4vAODe1_3oorIdZ2txJjk7AuTtJhcqMZKKWRi08uRhg,2521
|
|
1651
|
+
pyrogram/raw/functions/messages/get_exported_chat_invites.py,sha256=LJwoZguCY2CKbd3JMCRtkOR3xHeqFEw8AeckFpuXpXo,3979
|
|
1652
|
+
pyrogram/raw/functions/messages/get_extended_media.py,sha256=mq70tqborNU96rUtnbMq3zUJJEpRtxrd94R3fh4wDuU,2465
|
|
1653
|
+
pyrogram/raw/functions/messages/get_fact_check.py,sha256=y7DfV0QLDm0yH2bDADRcVcSZCUwvjjhN5lyJ4z5CG4w,2505
|
|
1654
|
+
pyrogram/raw/functions/messages/get_faved_stickers.py,sha256=Yf7d61z1rdH56MFAOhwAFuYqynMG-QI1Bs5P71d8lkM,2239
|
|
1655
|
+
pyrogram/raw/functions/messages/get_featured_emoji_stickers.py,sha256=Q6uiY4ajSBY3xsSqmzirlv40JDZSxyxT9pkqaWobh18,2280
|
|
1656
|
+
pyrogram/raw/functions/messages/get_featured_stickers.py,sha256=CP_kdy_FZaBCm4PcbqhUbuIJYFPamCmwXhjBWggD4OE,2262
|
|
1657
|
+
pyrogram/raw/functions/messages/get_forum_topics.py,sha256=hoOf_q8juG_b-xU3T0mESQv24evrsBg1gsn81F_H-oo,3591
|
|
1658
|
+
pyrogram/raw/functions/messages/get_forum_topics_by_id.py,sha256=7m0RyASp9llCnPkkq6ncwM_94GObWH1kt8-HW8mP8KY,2548
|
|
1659
|
+
pyrogram/raw/functions/messages/get_full_chat.py,sha256=-y40MKm5ONIwwsjaDzut3AlGTDwKXwvQbRjznz5JYK8,2233
|
|
1660
|
+
pyrogram/raw/functions/messages/get_future_chat_creator_after_leave.py,sha256=7hbZMZPWwuDSxxZLtijfac_WMae-mpLktrWm9acOxWU,2299
|
|
1661
|
+
pyrogram/raw/functions/messages/get_game_high_scores.py,sha256=KgQzjTuLIa3HYN5yjStFnTIAyAdb7kenOe5Bo83wKvo,2742
|
|
1662
|
+
pyrogram/raw/functions/messages/get_history.py,sha256=EEwhYyHNrlNcFTAHu2ZaqNg6FUETq4kfShP-mx4mQvQ,3805
|
|
1663
|
+
pyrogram/raw/functions/messages/get_inline_bot_results.py,sha256=HqR9frfXI4PYT3NF67xd1OVj6ek3mI-WhfeDsVH7NMw,3465
|
|
1664
|
+
pyrogram/raw/functions/messages/get_inline_game_high_scores.py,sha256=RF-X57faGPBBn6s8Of3rEVv3VUlBCDkCjwJPgF1owIQ,2629
|
|
1665
|
+
pyrogram/raw/functions/messages/get_mask_stickers.py,sha256=eQiRZ-xvZDPVGZKRyXJfhOIPNQ-23nFwVBi9uwNsWYY,2231
|
|
1666
|
+
pyrogram/raw/functions/messages/get_message_edit_data.py,sha256=_Ii0gbQrvKYXJPCYmD5_V58AL-MBebkM33AuImJvx_k,2484
|
|
1667
|
+
pyrogram/raw/functions/messages/get_message_reactions_list.py,sha256=eRfn40MC9aO1rGUTM6kjIqCZwyom8DJIi4cisb9-f8M,3572
|
|
1668
|
+
pyrogram/raw/functions/messages/get_message_read_participants.py,sha256=Lm9scXD5DXpaBz9ZWCNAG09LxeF4mw1P1MofJufynew,2551
|
|
1669
|
+
pyrogram/raw/functions/messages/get_messages.py,sha256=yxcBAGUNknnwWwMc_xOew6dg-ixLjbKX9x9iPfaQ87k,2278
|
|
1670
|
+
pyrogram/raw/functions/messages/get_messages_reactions.py,sha256=npYOVGCmuziepjJjlHK-13IXP1RkcYWz5qV1od_OwiY,2481
|
|
1671
|
+
pyrogram/raw/functions/messages/get_messages_views.py,sha256=5XXnvtbt0xLiZ1PKbV-xP6M5GrTPmdn1xaeRkr-to60,2737
|
|
1672
|
+
pyrogram/raw/functions/messages/get_my_stickers.py,sha256=SzPxbfX_fC3U4l_roCpLcnBu3bGE7v_keNmcxfpqX0I,2465
|
|
1673
|
+
pyrogram/raw/functions/messages/get_old_featured_stickers.py,sha256=x_qX0zPAilWa1H-nb8lFw8yupzJuVUx3lxfz__r9hGE,2683
|
|
1674
|
+
pyrogram/raw/functions/messages/get_onlines.py,sha256=sE1ikctHYA6TRga8TMB_vmcKQdy4GQw_nT3-sLviOlA,2240
|
|
1675
|
+
pyrogram/raw/functions/messages/get_outbox_read_date.py,sha256=pqh1dnHm78TAC_SJOCrSywrGgP9dmcRiellikIcLl5s,2486
|
|
1676
|
+
pyrogram/raw/functions/messages/get_paid_reaction_privacy.py,sha256=uoxvidXhQCG-di9Dd4IMGuvGpaosjNCOIPUuggl1BlU,2073
|
|
1677
|
+
pyrogram/raw/functions/messages/get_peer_dialogs.py,sha256=SoQvDzpjatjhUhCleOEdIoSMBWh56hlCPvRMdRZE8_8,2338
|
|
1678
|
+
pyrogram/raw/functions/messages/get_peer_settings.py,sha256=lrwwtBUlIWwwpB7P7ccAMEy5eURUavgevtiFxJT47AI,2290
|
|
1679
|
+
pyrogram/raw/functions/messages/get_personal_channel_history.py,sha256=fA8ON0Fmdc71dW9Ym_Z1P5XS85agdX-wA6Ephuya6xY,3157
|
|
1680
|
+
pyrogram/raw/functions/messages/get_pinned_dialogs.py,sha256=ky39Hg27vzVmsheurBEH24fI4dd7Uid2TtFPPsTHa3Y,2277
|
|
1681
|
+
pyrogram/raw/functions/messages/get_pinned_saved_dialogs.py,sha256=CvCSnhIoCPZOqpBCwqh-776zVTKoVu8iVOdI_TqvyH0,2111
|
|
1682
|
+
pyrogram/raw/functions/messages/get_poll_results.py,sha256=GJ-APL27u16jXYoBWPxUW5J0pO5ojm6OtgqEsqKCoi4,2692
|
|
1683
|
+
pyrogram/raw/functions/messages/get_poll_votes.py,sha256=s2Oz3nHfgklFQX0oLGZ4ZgXRA44WnvEnbskpPCb08zc,3418
|
|
1684
|
+
pyrogram/raw/functions/messages/get_prepared_inline_message.py,sha256=VV1_AAot2mjLL5edvHOykO2ehKJ7uVQRPrdYib1uI0k,2515
|
|
1685
|
+
pyrogram/raw/functions/messages/get_quick_replies.py,sha256=tSgBz8jPUUzNLfal4KlOLf9UdQOYmP6vJtI8bFfO7sg,2234
|
|
1686
|
+
pyrogram/raw/functions/messages/get_quick_reply_messages.py,sha256=evAh5PTqZTOVF9Ed5TGspGR7tconA3MvdBczXu9zZrE,2903
|
|
1687
|
+
pyrogram/raw/functions/messages/get_recent_locations.py,sha256=Bfyk_SP2Gybd1U6EZ-3-ix7tHuLYpt9ah-9tK1fDCAw,2684
|
|
1688
|
+
pyrogram/raw/functions/messages/get_recent_reactions.py,sha256=BTOE8JMMDvmhHaiBgO6JSfCQN_kF_t6wjhrxrdQo4Xc,2437
|
|
1689
|
+
pyrogram/raw/functions/messages/get_recent_stickers.py,sha256=FPcVspA0i828DgoW_RzyPYn6LxNRUoK3tI1FuQXRymk,2569
|
|
1690
|
+
pyrogram/raw/functions/messages/get_replies.py,sha256=PK2SqJqMpYnKGk1Ydv72bEWJkzrUqIoezAKkZuNpKtY,4014
|
|
1691
|
+
pyrogram/raw/functions/messages/get_rich_message.py,sha256=2u99HidH2ADbgY5E-wOnoyHjOKhczAGox5Or0OfVSZU,2447
|
|
1692
|
+
pyrogram/raw/functions/messages/get_saved_dialogs.py,sha256=WGwkZpkRvUhW2tR_zKC7lGxl6aVkVxGtVvJnh0dOaj4,4092
|
|
1693
|
+
pyrogram/raw/functions/messages/get_saved_dialogs_by_id.py,sha256=absUbeiPuP5D2KAbMdE-FN8_QpXPrk4A7MjZVpXgfb0,2844
|
|
1694
|
+
pyrogram/raw/functions/messages/get_saved_gifs.py,sha256=KYoJy9SQ_F5ZzyUDcBKNnzy8Hakk5kOfPPKk4phXKkg,2213
|
|
1695
|
+
pyrogram/raw/functions/messages/get_saved_history.py,sha256=Wzhsukz99HZoqSpJFj9gW4FlduFPDeJOyv_xwgHaTR4,4350
|
|
1696
|
+
pyrogram/raw/functions/messages/get_saved_reaction_tags.py,sha256=vdjJCaaVTF4Lu7A527iV6NPSHHJU3ME9UGMe5EfJRcM,2717
|
|
1697
|
+
pyrogram/raw/functions/messages/get_scheduled_history.py,sha256=zspvcxDt62pch_QeBobiQJf9M_nFb0no6L0csp2W6lE,2488
|
|
1698
|
+
pyrogram/raw/functions/messages/get_scheduled_messages.py,sha256=8J2RyBqHTUAv1gRs2jcrpNkZtRVuNPmkElJm1dCZ1kc,2511
|
|
1699
|
+
pyrogram/raw/functions/messages/get_search_counters.py,sha256=-pIKlR9DPKZT7sRFMg0APOzRjUeTKVNj8SQKd3UJ-nk,3592
|
|
1700
|
+
pyrogram/raw/functions/messages/get_search_results_calendar.py,sha256=Y7Er5_YYhwVokj9UYvHW3cV1Z3v9PclaLxLx15mZh1Q,3678
|
|
1701
|
+
pyrogram/raw/functions/messages/get_search_results_positions.py,sha256=GNMHZMUMj17mth_ozT6AlWVY9YWzB3FaFkwaHE1SZkQ,3631
|
|
1702
|
+
pyrogram/raw/functions/messages/get_split_ranges.py,sha256=y0T5E0ozRAWAI6hkuxvj9xGRsHtLfkj774290Z2VNrQ,2070
|
|
1703
|
+
pyrogram/raw/functions/messages/get_sponsored_messages.py,sha256=3tIUp5jjS0g5c0R3HYie6xaHMLyEXZXHGlEKNG5ELTk,2737
|
|
1704
|
+
pyrogram/raw/functions/messages/get_sticker_set.py,sha256=Nrj7LF-IROaYV32Dv5trCQ0mjqaE-VUa-FLWa1Rt090,2545
|
|
1705
|
+
pyrogram/raw/functions/messages/get_stickers.py,sha256=nPAx1pcopvQz0iZ892MZMHAbjtrrDcJwlw5NzkKK4IU,2431
|
|
1706
|
+
pyrogram/raw/functions/messages/get_suggested_dialog_filters.py,sha256=9Wigg7OM82PcFBacSAJhVsJBYA9-UhT_VrUvBLyJrTw,2141
|
|
1707
|
+
pyrogram/raw/functions/messages/get_top_reactions.py,sha256=UkYtnfINKORJ2ZxmOkWVr9aM2zju_UXWHijFPrMquxs,2425
|
|
1708
|
+
pyrogram/raw/functions/messages/get_unread_mentions.py,sha256=37Z49VOx91ppLj2I6vh1MbNOwK73Rrv5mAVwxPRD5pw,3841
|
|
1709
|
+
pyrogram/raw/functions/messages/get_unread_poll_votes.py,sha256=WsoV9uFUrkwd6uz6dGkV7SvzhdufAVvGiACrIuxm0oA,3845
|
|
1710
|
+
pyrogram/raw/functions/messages/get_unread_reactions.py,sha256=9MwfCsetMdhPCw50U4vvcQMWBmwYrijypdPYqXCDc9g,4347
|
|
1711
|
+
pyrogram/raw/functions/messages/get_web_page.py,sha256=n1fHU7BZSKDm_efceku5A_vJySzmDHAnHGwvGExCsNs,2376
|
|
1712
|
+
pyrogram/raw/functions/messages/get_web_page_preview.py,sha256=WWmSbwGozlGBfoBtV1jqkq6fenFlN1fowOKwRK5eNdo,2796
|
|
1713
|
+
pyrogram/raw/functions/messages/hide_all_chat_join_requests.py,sha256=uYQL_uYyly_DYuSqE7tdkyv2mRK1mltlVaPQcYiSfcY,2944
|
|
1714
|
+
pyrogram/raw/functions/messages/hide_chat_join_request.py,sha256=ygqozbWg7wQS4kmyoq1BObxoApWOiK0qWIq00rlCGRU,2862
|
|
1715
|
+
pyrogram/raw/functions/messages/hide_peer_settings_bar.py,sha256=mpUY9dJKSZ51ai4oj1Ra3DwV0FEF4qok_hBwYr0dAko,2227
|
|
1716
|
+
pyrogram/raw/functions/messages/import_chat_invite.py,sha256=WO1n9ZPO4mgiamOLhIHBrfWj0YIQ2iCHw6efsvkmPeU,2257
|
|
1717
|
+
pyrogram/raw/functions/messages/init_history_import.py,sha256=INf2rjncEEMLETqHwggjgvCNwcsw6zQg9W6VCUcJF5o,2805
|
|
1718
|
+
pyrogram/raw/functions/messages/install_sticker_set.py,sha256=B9dQ5N6i6VsK8OtUIPjrQm2SZiFGhl1Tlf0gO2MH0ho,2630
|
|
1719
|
+
pyrogram/raw/functions/messages/mark_dialog_unread.py,sha256=-A8SlKVFSaym6rITZFqrMYCP2Cw86YlG1aAYajskaY4,3022
|
|
1720
|
+
pyrogram/raw/functions/messages/migrate_chat.py,sha256=XR9tXv6LzQ7F6RevsfaHVCxDJ5bbD_JCfeWH63meL-I,2203
|
|
1721
|
+
pyrogram/raw/functions/messages/prolong_web_view.py,sha256=1QTV8B404iXKqqFMzZXb3E3VxfHp41Y9iRiMPcWVz-I,3879
|
|
1722
|
+
pyrogram/raw/functions/messages/rate_transcribed_audio.py,sha256=gTxinhG-Tdw2dPYx49JHVnXpAu4msl6jXVYaafiTYQY,2927
|
|
1723
|
+
pyrogram/raw/functions/messages/read_discussion.py,sha256=8L3iNy1quVgxkyZV0UpnnNShszd3AHnkUmhgoonO8-I,2670
|
|
1724
|
+
pyrogram/raw/functions/messages/read_encrypted_history.py,sha256=sF66oPDPboUjqJuFgZYJ8zq2S4bYRg3GYkLuG3PQcpg,2494
|
|
1725
|
+
pyrogram/raw/functions/messages/read_featured_stickers.py,sha256=SThmUqeMoijcceIg9YvzSRa21asbks9b_nryYzq4YTE,2197
|
|
1726
|
+
pyrogram/raw/functions/messages/read_history.py,sha256=F-cQGmR0fapGnZPc1SOnBudU8cYqrFd-p0jR-PQDnKc,2493
|
|
1727
|
+
pyrogram/raw/functions/messages/read_mentions.py,sha256=BjjXp3c-mpiyFVxt43Kr9A1noBfd3BS61VRIq_WXK1M,2743
|
|
1728
|
+
pyrogram/raw/functions/messages/read_message_contents.py,sha256=vRNDbdZgHkN1nOm6YfGaAoDvjNDMpYEOS43ZhzeNQlQ,2281
|
|
1729
|
+
pyrogram/raw/functions/messages/read_poll_votes.py,sha256=6Wz2BPGyZjCdynlO-1N8Os9tntCsScJAYDqLTfmpAWM,2747
|
|
1730
|
+
pyrogram/raw/functions/messages/read_reactions.py,sha256=lcKALj5oIM5inFfYPzadwHETZ8Ee0ot9cEyBaJFkYwU,3249
|
|
1731
|
+
pyrogram/raw/functions/messages/read_saved_history.py,sha256=S6bF0rFXhBBJLit3vPB6KPmGge4FLYCbxeIFi4HGVfY,2737
|
|
1732
|
+
pyrogram/raw/functions/messages/received_messages.py,sha256=I9MkGEyrAEWN8HKvMO8fBzf7gzrcM7UP1hNar_SxUd8,2265
|
|
1733
|
+
pyrogram/raw/functions/messages/received_queue.py,sha256=Dp3bFbWY60YDUDJZO3qolU8REF5XixDFDKwIrG3qIfE,2195
|
|
1734
|
+
pyrogram/raw/functions/messages/reorder_pinned_dialogs.py,sha256=4ZPz0ZnadfChCYED-xqasrxSqHV7Jdtkx6PJZbB1RsI,2816
|
|
1735
|
+
pyrogram/raw/functions/messages/reorder_pinned_forum_topics.py,sha256=IxOxdlDt36CxuJFr7ssxDgjhMFABq_gmo-WUiZmdtPw,2816
|
|
1736
|
+
pyrogram/raw/functions/messages/reorder_pinned_saved_dialogs.py,sha256=KMLeA6-htvQfSrcdxaN5laZ_I8MPtI2woFj9qrl-uOg,2600
|
|
1737
|
+
pyrogram/raw/functions/messages/reorder_quick_replies.py,sha256=-9LhVztWjC1D1OEZKDbe9TZ1AE40dJESPPhHDlQvo7U,2217
|
|
1738
|
+
pyrogram/raw/functions/messages/reorder_sticker_sets.py,sha256=xJc40cE0L5uCFsreeBixqKf1bU0Gb4hvQrmW2qGDaro,2768
|
|
1739
|
+
pyrogram/raw/functions/messages/report.py,sha256=d7wlzcur9Yn6nXvCsab0hmzG6CxtJYb9Gjd6ZupzYBk,2864
|
|
1740
|
+
pyrogram/raw/functions/messages/report_encrypted_spam.py,sha256=eLTXaSUJ_ezEgIM2nda1lmH110RdFCgqN1_qkD9P2D8,2263
|
|
1741
|
+
pyrogram/raw/functions/messages/report_messages_delivery.py,sha256=pQO2c7uX6YZJELPPOUeGQ2djiksgjIyyUrx61Ygz1Cg,2737
|
|
1742
|
+
pyrogram/raw/functions/messages/report_music_listen.py,sha256=0JE1Bo6m3uerrNCI7uVdUmuJ2dP7e3CWSYbftB_hma4,2525
|
|
1743
|
+
pyrogram/raw/functions/messages/report_reaction.py,sha256=AW_PzCRgygGdmmSuc-nNmGVtwiAD3lw2mK3nC2mV52s,2711
|
|
1744
|
+
pyrogram/raw/functions/messages/report_read_metrics.py,sha256=H4H4iQVsVxYVDF-wMYir4wQsJ-I5VSoQPBe1JEDaSCw,2570
|
|
1745
|
+
pyrogram/raw/functions/messages/report_spam.py,sha256=AonlSvwWtEIAsgZN48yDu1Sgi5KAQFX6fh4kUZIMBgc,2191
|
|
1746
|
+
pyrogram/raw/functions/messages/report_sponsored_message.py,sha256=b8MQXFvykStd10i4W6tEuqQwy_OV2iBTTc-CTYgtMQI,2559
|
|
1747
|
+
pyrogram/raw/functions/messages/request_app_web_view.py,sha256=DnHncq1roKm-lJspSvglP23yLoVkPQcJfwIF_DwSoX8,4582
|
|
1748
|
+
pyrogram/raw/functions/messages/request_encryption.py,sha256=EP3webCX1muneuhVfV7Fny9YPZg5OA5YXWKPmjGPZXQ,2718
|
|
1749
|
+
pyrogram/raw/functions/messages/request_main_web_view.py,sha256=AZYCz-MNFENqMhO0QUegSt7R8gI9CGD5U_2DlBkD0Rk,4257
|
|
1750
|
+
pyrogram/raw/functions/messages/request_simple_web_view.py,sha256=LRn0GYln3Ysl4evw7sGD5aWBh7-sp9VbOhhW9x2atAM,5052
|
|
1751
|
+
pyrogram/raw/functions/messages/request_url_auth.py,sha256=-2BWMtbDyEWiQ519PQ2_D8fut4KgeQu9IOgcNrvJdR4,4001
|
|
1752
|
+
pyrogram/raw/functions/messages/request_web_view.py,sha256=81km7J1XK-_OlAPcDRusrkp8-9GnFW8wVTr22zipShA,6050
|
|
1753
|
+
pyrogram/raw/functions/messages/save_default_send_as.py,sha256=yIs73-MkSW-IJgGV2EaD8jTt4q5F7uP3VkzAGAefon4,2496
|
|
1754
|
+
pyrogram/raw/functions/messages/save_draft.py,sha256=yNvTMjxDs8koNyHoh_g4owQs-e4OVPghPaAaFuSr6Q0,5830
|
|
1755
|
+
pyrogram/raw/functions/messages/save_gif.py,sha256=zI95r9mqvFGuoXLoni6IGb-xUbCkicTkIPAyRflyw9M,2380
|
|
1756
|
+
pyrogram/raw/functions/messages/save_prepared_inline_message.py,sha256=-zK6Pi6HnuOLqkdID__s-3NKDDvmo2NUTwOXopE_eEw,3277
|
|
1757
|
+
pyrogram/raw/functions/messages/save_recent_sticker.py,sha256=xa1aXMEXYbZVd9Jic0fqUpjSw42c3zJ70X4H62pVlh8,2741
|
|
1758
|
+
pyrogram/raw/functions/messages/search.py,sha256=kxahYfOUMMJxGmlBSQREL2KrfWVwOiQ8LWxQH4D1mTQ,6360
|
|
1759
|
+
pyrogram/raw/functions/messages/search_custom_emoji.py,sha256=CheIHGN2Q950NifNJ09sw7iCLHsL53LfaesHeb_nTVY,2431
|
|
1760
|
+
pyrogram/raw/functions/messages/search_emoji_sticker_sets.py,sha256=Q2lfZ20lBLiK71YajV78kFCKpWH3mi4imwAPI7R-BzY,2829
|
|
1761
|
+
pyrogram/raw/functions/messages/search_global.py,sha256=0oKDKjZMD7fMkQohralUqcqhPfzb7Sk73eCIuSDnxi0,5304
|
|
1762
|
+
pyrogram/raw/functions/messages/search_sent_media.py,sha256=8gL-nTQdVHtZ7L5OEzjUiOTIH3HslAmeGKYi0z51bg8,2678
|
|
1763
|
+
pyrogram/raw/functions/messages/search_sticker_sets.py,sha256=gsumUT6p-a9Rpptt37gsaz_Fm8q26Qz7bxywjX7HveI,2809
|
|
1764
|
+
pyrogram/raw/functions/messages/search_stickers.py,sha256=mUeoBPhEwwia8BdzbEMf9tMkAgQ12ydPpmHVzXlgAhc,3606
|
|
1765
|
+
pyrogram/raw/functions/messages/send_bot_requested_peer.py,sha256=OfT8epRVqRFYdQ8zEYgA2MfAUA62ODbemdKZ7387Sw8,3729
|
|
1766
|
+
pyrogram/raw/functions/messages/send_encrypted.py,sha256=eWKuMxyj8mwS_zfskv80-RpHD5tXmYXuGfts9asnFkI,3074
|
|
1767
|
+
pyrogram/raw/functions/messages/send_encrypted_file.py,sha256=cPuhZVGhXEfv-79Fg-FdWcvWkTSl_frDk1L3M4E0f-k,3376
|
|
1768
|
+
pyrogram/raw/functions/messages/send_encrypted_service.py,sha256=stntyRd2d9PNvUJmabrDeZVlTjZ0_S1ivDtjFg1aS5I,2799
|
|
1769
|
+
pyrogram/raw/functions/messages/send_inline_bot_result.py,sha256=DlpvZ4EC6Y9rAcqVmKM7z82OFhaTrwMSoKUBmARJp3o,6549
|
|
1770
|
+
pyrogram/raw/functions/messages/send_media.py,sha256=VZkBYYroD7-YGYjcw7Oa7MIwxO2c1J2fZKopNvIAiv8,10159
|
|
1771
|
+
pyrogram/raw/functions/messages/send_message.py,sha256=NvUVKA3IROCWE8j7oSi1C9xOwNupi6jHHXWDddF_TqE,10722
|
|
1772
|
+
pyrogram/raw/functions/messages/send_multi_media.py,sha256=SMTetCd5mGysDAdwzOcAHslaIdQTlXOKSWzAELY8PL4,7768
|
|
1773
|
+
pyrogram/raw/functions/messages/send_paid_reaction.py,sha256=wCPXtFnzpwPBt-jsXmyfJGb3vuAMA-_ydv6B83EFJnM,3421
|
|
1774
|
+
pyrogram/raw/functions/messages/send_quick_reply_messages.py,sha256=xbyxV2062TCbWdQSVuTBSClzF9eGv10RwWkXVt03yXM,3022
|
|
1775
|
+
pyrogram/raw/functions/messages/send_reaction.py,sha256=hbKKdc7V6fr6_MzTtpySa-c254HG_HDrEtcOFTXiw0Q,3503
|
|
1776
|
+
pyrogram/raw/functions/messages/send_scheduled_messages.py,sha256=jay2YjWvkayL1QNy3Ip3Jbm3C-TIqAQg88h6FKOnsnQ,2485
|
|
1777
|
+
pyrogram/raw/functions/messages/send_screenshot_notification.py,sha256=cNU8y_17m5WNDLR81J2Z8VwHzFhpbSAs7VpBA1xtwQg,2829
|
|
1778
|
+
pyrogram/raw/functions/messages/send_vote.py,sha256=Xusek6To5f7fXNXw1qXYmgwDlZ6iNgzEMO0UmvX0ajA,2686
|
|
1779
|
+
pyrogram/raw/functions/messages/send_web_view_data.py,sha256=1WGjdgChVty3EQUKhnX34ZBSOc5w4hlCqAykVr5AXm0,2919
|
|
1780
|
+
pyrogram/raw/functions/messages/send_web_view_result_message.py,sha256=Hbp8ro1JRl-o29rVlGquJgiyP7niV4zsYyoiq0F0zwI,2638
|
|
1781
|
+
pyrogram/raw/functions/messages/set_bot_callback_answer.py,sha256=SxCCw70zyPmhyVIwlTcClP-QPrddGfRnh_ZNC-YKTss,3458
|
|
1782
|
+
pyrogram/raw/functions/messages/set_bot_guest_chat_result.py,sha256=4X1eYcZjqHn9eB_jyqzJ-_zNa_gUAixSuiYsxL49Tk4,2612
|
|
1783
|
+
pyrogram/raw/functions/messages/set_bot_precheckout_results.py,sha256=Dm-PmjPT0otlQwl5A0TMBhLjfaHLpCDrwytFkAC1VIk,2891
|
|
1784
|
+
pyrogram/raw/functions/messages/set_bot_shipping_results.py,sha256=NaoXmmvuoyOjQ1I1a6gniWuZNputepTnvOdKPmfecwA,3187
|
|
1785
|
+
pyrogram/raw/functions/messages/set_chat_available_reactions.py,sha256=bIbNzVxbbmzx5jgcYeM9WhDtRWcy_Id3cJcqKTQJ3KA,3627
|
|
1786
|
+
pyrogram/raw/functions/messages/set_chat_theme.py,sha256=13DCu9VsBkYh-HrpYklGzniEKjxU5sqm4vrXEaBu7wM,2513
|
|
1787
|
+
pyrogram/raw/functions/messages/set_chat_wall_paper.py,sha256=ZAYVt_SFwwocLSc4PlsjUpP4nlV70qK8IGqdsxWfo7E,4111
|
|
1788
|
+
pyrogram/raw/functions/messages/set_default_history_ttl.py,sha256=ZQGtU5Va3IdXnRC78os40Vr1zig-4AO1B-ufUkqP8DM,2190
|
|
1789
|
+
pyrogram/raw/functions/messages/set_default_reaction.py,sha256=Z0iahe_3E-P6CJaLpxI57YW8RxuNJ_4KRpwhoIhtPOs,2255
|
|
1790
|
+
pyrogram/raw/functions/messages/set_encrypted_typing.py,sha256=WsnEdYe26FXBjWERPAkwc1VvZbv361XxBXs_roeMWww,2462
|
|
1791
|
+
pyrogram/raw/functions/messages/set_game_score.py,sha256=ess_0ZiOCmi_yYVcaxJVGbVzCvdw5I1pav3ZZuy5TRk,3492
|
|
1792
|
+
pyrogram/raw/functions/messages/set_history_ttl.py,sha256=WA7kDrCZzdYkJ2Ubjou7DyyEhq_e6OKvu0qD503Ao-Y,2449
|
|
1793
|
+
pyrogram/raw/functions/messages/set_inline_bot_results.py,sha256=hkIm8b8xZ5lcJXhng-Tk4diLiUl8GOHqddr-DbZfa38,4825
|
|
1794
|
+
pyrogram/raw/functions/messages/set_inline_game_score.py,sha256=soYScwxx2iRHeDqx103SVk1Li4TEKvXrUjJv6ZhQA-U,3344
|
|
1795
|
+
pyrogram/raw/functions/messages/set_typing.py,sha256=qkrTno-UnRUgGLMth2jGB9gt6pF2GSEkHqyDngiZDXc,2943
|
|
1796
|
+
pyrogram/raw/functions/messages/start_bot.py,sha256=jRH-edmBsdLN3knyzLcpGusSk1BXjTp1NPlYidhN2EU,2952
|
|
1797
|
+
pyrogram/raw/functions/messages/start_history_import.py,sha256=C2QC3m06UOxV7y9xHO8MgAYTFUXgtC9ZdQcdgFEj88M,2462
|
|
1798
|
+
pyrogram/raw/functions/messages/summarize_text.py,sha256=1M5MWvvnkGvA_OSzYlvY8s3lX57Rc4JJuI43pJub_Pw,3204
|
|
1799
|
+
pyrogram/raw/functions/messages/toggle_bot_in_attach_menu.py,sha256=TJAYfAEJ7VQH0EGmbN_eqtvXYziAHwYKFQ8TY8miiNQ,2804
|
|
1800
|
+
pyrogram/raw/functions/messages/toggle_dialog_filter_tags.py,sha256=SKcymyPBjosdTWkAvsATYbQMbtQ4sTEKsZ2oqm_8y8Q,2201
|
|
1801
|
+
pyrogram/raw/functions/messages/toggle_dialog_pin.py,sha256=OQYm0kuTegrE2am56GV-BcIIDuw-w4K-S32TDyRf5hQ,2538
|
|
1802
|
+
pyrogram/raw/functions/messages/toggle_no_forwards.py,sha256=vTTPH0rUMZBEOi6ss4dYzKcnBDMmNKIdHbYMBDLmSXw,2964
|
|
1803
|
+
pyrogram/raw/functions/messages/toggle_paid_reaction_privacy.py,sha256=_f1tRqvSl4yOkKFkUL7hhQdm-KNdb4pxHZzszEmcSKU,2777
|
|
1804
|
+
pyrogram/raw/functions/messages/toggle_peer_translations.py,sha256=ClhIEIGiYo7tUlrDNSNxuP2en5RNNamied0JkJu0mAE,2560
|
|
1805
|
+
pyrogram/raw/functions/messages/toggle_saved_dialog_pin.py,sha256=zf9VagvivQ2yofnrXQGlQPXqXFdyIKnjiPbLMMrHPHM,2558
|
|
1806
|
+
pyrogram/raw/functions/messages/toggle_sticker_sets.py,sha256=Hi85RcOYs_xKjesw8bqX4VUqOCIylA5lkw9LBENAB5o,3210
|
|
1807
|
+
pyrogram/raw/functions/messages/toggle_suggested_post_approval.py,sha256=k7yN-uSJicP6HAvQk6BUYegMYrQCyuESRDb0U4kHeRg,3705
|
|
1808
|
+
pyrogram/raw/functions/messages/toggle_todo_completed.py,sha256=0mbPFeD1kF8EKyydfVGTMmYu5xK_-dtAIyc4cItAINo,3043
|
|
1809
|
+
pyrogram/raw/functions/messages/transcribe_audio.py,sha256=khxaQULNyZnI78nYB-PBKcH-wDjHjvZ9Fqc1YW0qm1w,2511
|
|
1810
|
+
pyrogram/raw/functions/messages/translate_text.py,sha256=t6T8BNMAXUww5U6XM9P8qIaBt8FqpnyQx4xJIZjnWOU,3852
|
|
1811
|
+
pyrogram/raw/functions/messages/uninstall_sticker_set.py,sha256=EO_2FNVH_h2ioFMiZZeuLuK8fObpFzkG8pejDVojptk,2305
|
|
1812
|
+
pyrogram/raw/functions/messages/unpin_all_messages.py,sha256=c9xGJ1sUCmYhpskO-HBm_Cfud-5_xThs6yXcIX0OdJw,3259
|
|
1813
|
+
pyrogram/raw/functions/messages/update_dialog_filter.py,sha256=g8ufwmddEiq0ipstX6C7z9ag_NAEG-ssKPSiNFfLzUA,2628
|
|
1814
|
+
pyrogram/raw/functions/messages/update_dialog_filters_order.py,sha256=wR-opQ1APb67PSNcOU8ha9UTV-JqwDEd4nN8zhCxiiw,2237
|
|
1815
|
+
pyrogram/raw/functions/messages/update_pinned_forum_topic.py,sha256=6wjjkbvxA4MACY01GAg436j_3erIR9HMXPnnWn0FfBs,2706
|
|
1816
|
+
pyrogram/raw/functions/messages/update_pinned_message.py,sha256=jJhwZn9k8ZGIYRjPGUNGZbocgBJZOqxFPUf_zRbGRK8,3283
|
|
1817
|
+
pyrogram/raw/functions/messages/update_saved_reaction_tag.py,sha256=t4Aosj0UZMl3yD_p63F0MVfX9gvHGTMe96ifD2W9hpY,2670
|
|
1818
|
+
pyrogram/raw/functions/messages/upload_encrypted_file.py,sha256=N94r-O9dWanm237LJWRrVSVcdnDQ1VDOd78F_Caw0O8,2604
|
|
1819
|
+
pyrogram/raw/functions/messages/upload_imported_media.py,sha256=_2T3okpa27hACepfKXXPkKsOAkMvieSwTlXRrO3M49k,3015
|
|
1820
|
+
pyrogram/raw/functions/messages/upload_media.py,sha256=Aq5WCiH9m7iMOcpY1WC18Hnd3D8uK4_eUUVd8Mu-8lw,3096
|
|
1821
|
+
pyrogram/raw/functions/messages/view_sponsored_message.py,sha256=7LZWuzNjY0CvGPr9T6alOBpV8ZP0qRLMDVi5bZczbqk,2216
|
|
1822
|
+
pyrogram/raw/functions/payments/__init__.py,sha256=8PmMkcpHLbcicZPV1qDvNTV7LnhnnK96G3ccaQ2DFig,4831
|
|
1823
|
+
pyrogram/raw/functions/payments/apply_gift_code.py,sha256=ivZjSztZzIxHyOlmaZKFlIriHkcp-t-cd7enjyfkRr0,2179
|
|
1824
|
+
pyrogram/raw/functions/payments/assign_app_store_transaction.py,sha256=D3AsidHlM0hSlPW_433KxeUjgNOGW6DfyCbokO6ZfqQ,2592
|
|
1825
|
+
pyrogram/raw/functions/payments/assign_play_market_transaction.py,sha256=uJ2frZFbyCs7wfB3nB99qP9yUruvZ_CetAJUFp6ItAE,2656
|
|
1826
|
+
pyrogram/raw/functions/payments/bot_cancel_stars_subscription.py,sha256=yxhpWxPL-7EwzXPi8ocJ-rFc3OxVHlJVKyWwk7COFug,2828
|
|
1827
|
+
pyrogram/raw/functions/payments/can_purchase_store.py,sha256=tanvWdnXvCSgFann9GFTfYhUcppLGbpNyyrqZAYCqx4,2302
|
|
1828
|
+
pyrogram/raw/functions/payments/change_stars_subscription.py,sha256=k05MZTH-P3lJQ5XAC_wwGCTprh4YFO3pjTPuTvKPbiQ,2959
|
|
1829
|
+
pyrogram/raw/functions/payments/check_can_send_gift.py,sha256=N0M7Rscski8ik44GxLLKB5u4QH3MBeS2QLL9KRa0Q3I,2295
|
|
1830
|
+
pyrogram/raw/functions/payments/check_gift_code.py,sha256=-pm4KT3gpf38e91XIx9YhiNrbTfqB8DB9IBKzX9gH9Y,2230
|
|
1831
|
+
pyrogram/raw/functions/payments/clear_saved_info.py,sha256=RdLTjGZVVqxerqwioE2TYsNXnvGNg9EKNSReZnS6gmw,2545
|
|
1832
|
+
pyrogram/raw/functions/payments/connect_star_ref_bot.py,sha256=n1N0EbZSEF6RpZyeBQc9yKkOB28CllWQ6CWO8jbwAkE,2563
|
|
1833
|
+
pyrogram/raw/functions/payments/convert_star_gift.py,sha256=w-ee516Ax06H62hJ618vZ0o2miJJUYLvR1sTwmmj7tM,2283
|
|
1834
|
+
pyrogram/raw/functions/payments/craft_star_gift.py,sha256=6JYOM5vV5lu9NGTHwqbF_MhF5K3AReNTPYWiH4DOLnc,2334
|
|
1835
|
+
pyrogram/raw/functions/payments/create_star_gift_collection.py,sha256=iqSoI5HN5-Qz8FZuSk4GrKdSeNjOEl5veVyfnvoZKVg,2859
|
|
1836
|
+
pyrogram/raw/functions/payments/delete_star_gift_collection.py,sha256=v0h5pDjWIT0eHUBHiwLOiBjk7NibW3W8b5sTLkdDlXI,2519
|
|
1837
|
+
pyrogram/raw/functions/payments/edit_connected_star_ref_bot.py,sha256=Uw0NrMVQtBigK5trvq9aRETwGDS4UFb2j2Py4A9uKkg,2847
|
|
1838
|
+
pyrogram/raw/functions/payments/export_invoice.py,sha256=mifvoEjSF9u6IBTtqWSpTi1Taf57Df9TTQOAFKKfFoM,2374
|
|
1839
|
+
pyrogram/raw/functions/payments/fulfill_stars_subscription.py,sha256=H5jMkYTy5yHi0N5QRgu8eBworLzePxUNTngD9oYIRes,2535
|
|
1840
|
+
pyrogram/raw/functions/payments/get_bank_card_data.py,sha256=9FWJjJ29EusVbqPSxYzIJa9eIxCr51R7Nhk3OcNkLNY,2247
|
|
1841
|
+
pyrogram/raw/functions/payments/get_connected_star_ref_bot.py,sha256=HJuDARL5-qpvHJtMp7FyE7pejo5pyMQBnJ4xN_4ZdUM,2583
|
|
1842
|
+
pyrogram/raw/functions/payments/get_connected_star_ref_bots.py,sha256=Q4aoe3hnn-9AjwlJKepm3j68HNVVKetRzntRLgAjKjc,3433
|
|
1843
|
+
pyrogram/raw/functions/payments/get_craft_star_gifts.py,sha256=kdGUIFGBncRTAOPinRXWs_j_rXAULhA3fO4fdi9PzJk,2682
|
|
1844
|
+
pyrogram/raw/functions/payments/get_giveaway_info.py,sha256=uoz0rm_L82eKZd0-Ziq2aoLnnAOa-jiZXZf6c93VZpU,2499
|
|
1845
|
+
pyrogram/raw/functions/payments/get_payment_form.py,sha256=Ri4n6cafToFzvEsGWW9HUcC5t2xl1KhME0b1-6Lol5s,2854
|
|
1846
|
+
pyrogram/raw/functions/payments/get_payment_receipt.py,sha256=aDVdNkkZoCGhi96ZeJWyQXskAddd-e-e7_xF43sOtCk,2513
|
|
1847
|
+
pyrogram/raw/functions/payments/get_premium_gift_code_options.py,sha256=J3C8s94rH5lpNjm-5h7yeYpOTL0qSdtmqyCtouNo_V0,2608
|
|
1848
|
+
pyrogram/raw/functions/payments/get_resale_star_gifts.py,sha256=rEArqZDo024HSy1hSC1_KAp8xgmfkorKrlc94nmoq1A,4933
|
|
1849
|
+
pyrogram/raw/functions/payments/get_saved_info.py,sha256=JPJMBX14oDPOclPVWPKGIDgqNvdfUbEe4hhMMWfrMno,2066
|
|
1850
|
+
pyrogram/raw/functions/payments/get_saved_star_gift.py,sha256=qFW3hdo9WLd4WjPJ2cfJqiqLGRdHiBE14YhvQUkOWpw,2394
|
|
1851
|
+
pyrogram/raw/functions/payments/get_saved_star_gifts.py,sha256=WrjI6i2YPKHtqlCm12Mik5cmP8KolADCJmiaqeFHjZI,6335
|
|
1852
|
+
pyrogram/raw/functions/payments/get_star_gift_active_auctions.py,sha256=6O3fTOION0dkLzQCDu9DypFAEtNQTGJKYy5KVFVbt94,2304
|
|
1853
|
+
pyrogram/raw/functions/payments/get_star_gift_auction_acquired_gifts.py,sha256=f9DvUxJ0XPC9Fz9QdKxoHHMslaZHQfnic62QFS2PZTk,2373
|
|
1854
|
+
pyrogram/raw/functions/payments/get_star_gift_auction_state.py,sha256=pK1OPVdlKqqQppc6vJDupc5vvxZE5XE3CcgY1OGh4ns,2635
|
|
1855
|
+
pyrogram/raw/functions/payments/get_star_gift_collections.py,sha256=IWkih7QdXGgNJVHvg-R0ggR6VablcBGEHLQ0Rkxzioo,2533
|
|
1856
|
+
pyrogram/raw/functions/payments/get_star_gift_upgrade_attributes.py,sha256=9aPQ_-StB_jE-dvdQg1i_pAulmjfoyOFI9AlSz-iKfc,2352
|
|
1857
|
+
pyrogram/raw/functions/payments/get_star_gift_upgrade_preview.py,sha256=r9h11lyuXdScaw4FtKYRzD1YyVA-quz0bD_9dRsnOUc,2331
|
|
1858
|
+
pyrogram/raw/functions/payments/get_star_gift_withdrawal_url.py,sha256=fpWu8gpwD4pQAxWdcsX_Y1a6kaMeUj1q16DNs3nz_yw,2759
|
|
1859
|
+
pyrogram/raw/functions/payments/get_star_gifts.py,sha256=w-9JC-RTbXZNyyPg36gxeSxjigOnWIoGmH54vlgUzYs,2210
|
|
1860
|
+
pyrogram/raw/functions/payments/get_stars_gift_options.py,sha256=6o3pG1LixYvKKunxfh5j-W5FwJ7OzQdLSSkyDymxYO0,2533
|
|
1861
|
+
pyrogram/raw/functions/payments/get_stars_giveaway_options.py,sha256=i5uKBOMdnQrFCnHbMnGQclc5B9g1l2h69JkBujKhDqE,2127
|
|
1862
|
+
pyrogram/raw/functions/payments/get_stars_revenue_ads_account_url.py,sha256=U5UH-PPkhkOI-HazpecpRxlu6djlvTfijT_xd6kFekk,2381
|
|
1863
|
+
pyrogram/raw/functions/payments/get_stars_revenue_stats.py,sha256=4zt78SMuCPWTpM6vpI63taizlPbL6Oy-HvkaHF6ja6I,2841
|
|
1864
|
+
pyrogram/raw/functions/payments/get_stars_revenue_withdrawal_url.py,sha256=1Fgxj854uCnfhy6NFJCHNsOhnejgT34Y1Xp_guokMPs,3361
|
|
1865
|
+
pyrogram/raw/functions/payments/get_stars_status.py,sha256=iDLuf9lm6aJPxJcVJsRjAEz6p83Ck6jfxf924N00jq8,2559
|
|
1866
|
+
pyrogram/raw/functions/payments/get_stars_subscriptions.py,sha256=kZBL6HzZnDHA2jP5NWXYwhrv0ZNsk_n6hboi-T5__m8,2900
|
|
1867
|
+
pyrogram/raw/functions/payments/get_stars_topup_options.py,sha256=cX02eMq0yKZVxq7vzufM__K6JwSdOFTKl7i7ZuDM5bU,2106
|
|
1868
|
+
pyrogram/raw/functions/payments/get_stars_transactions.py,sha256=tt3yllLrROPSQW9ooMtQxUEz3seYsRV7JWFeAv_UPzU,4282
|
|
1869
|
+
pyrogram/raw/functions/payments/get_stars_transactions_by_id.py,sha256=Q6OxCTwawhoFWGkVpZCHktIPCqiZgxSVRAAhWYUDX04,2901
|
|
1870
|
+
pyrogram/raw/functions/payments/get_suggested_star_ref_bots.py,sha256=Cd01Kxnm9JTsgKRv3uWDxbyAgsjBhVljXruEeR7L0CU,3465
|
|
1871
|
+
pyrogram/raw/functions/payments/get_unique_star_gift.py,sha256=h5_f7Y2906OxrHRWhofegJYbO-zx2OuxD4o-k_9BEOA,2243
|
|
1872
|
+
pyrogram/raw/functions/payments/get_unique_star_gift_value_info.py,sha256=JuiY1PPyp2AqEBlkC9XFjVvfFmimA3DqNXThHsBMjrQ,2306
|
|
1873
|
+
pyrogram/raw/functions/payments/launch_prepaid_giveaway.py,sha256=xahVVWsMZT5f4nbrlrFGi_dfUVfnfU9OVINpqZ2KPu4,2866
|
|
1874
|
+
pyrogram/raw/functions/payments/refund_stars_charge.py,sha256=7FLzuUk6X1-QJ3snWhCsKE-_W47tg9PwXOuvaU5qQUs,2517
|
|
1875
|
+
pyrogram/raw/functions/payments/reorder_star_gift_collections.py,sha256=r5oGQcZPIKK9L85Dgf6C0cCVm1AzLh8f1VLn6yoRVTg,2495
|
|
1876
|
+
pyrogram/raw/functions/payments/resolve_star_gift_offer.py,sha256=cEays73aVQWQxAgTzCjmOWxiARN_xST2_VsCka3ihmY,2593
|
|
1877
|
+
pyrogram/raw/functions/payments/save_star_gift.py,sha256=3HkgwZkS00D33b6tDzfgCbDZtyfQNWfsRxkDFsQ3Wdo,2574
|
|
1878
|
+
pyrogram/raw/functions/payments/send_payment_form.py,sha256=8BkR3B9LnDjN5bhkCbSQr9OglzcjaplKKWMKPnTyIOE,4364
|
|
1879
|
+
pyrogram/raw/functions/payments/send_star_gift_offer.py,sha256=7oBSWKMuBIoFgVpedK7-lsQBOTcFLZq4zrZ4G4Ew8QE,3703
|
|
1880
|
+
pyrogram/raw/functions/payments/send_stars_form.py,sha256=PFRuNgRRg8xClDSao4HzU0tJF50ALdDCwvlm3ORTGDk,2545
|
|
1881
|
+
pyrogram/raw/functions/payments/toggle_chat_star_gift_notifications.py,sha256=NldPAvUPcNy495BeNiqIK3XQiJ6tvSeOley8pvvl4YM,2587
|
|
1882
|
+
pyrogram/raw/functions/payments/toggle_star_gifts_pinned_to_top.py,sha256=FO0XAqBAya3Apu280gfxN_xHEgZwCrwW0UZdnk-e93I,2599
|
|
1883
|
+
pyrogram/raw/functions/payments/transfer_star_gift.py,sha256=7bsohK_pfWP_D9kuKaJEVr8E6D1FtRCyo4gUXdXPDfc,2583
|
|
1884
|
+
pyrogram/raw/functions/payments/update_star_gift_collection.py,sha256=yptUAofD1r1a3Qatc64fru9gXQ04wF9LfUKESv0PQ0E,4579
|
|
1885
|
+
pyrogram/raw/functions/payments/update_star_gift_price.py,sha256=SWhWdYknZTVDzjP7PIPSfx3F2ca8K5pLw72oOZhWAJk,2675
|
|
1886
|
+
pyrogram/raw/functions/payments/upgrade_star_gift.py,sha256=KV_kne5WzIToTPW_6lsNyBTeI6mjj8vq1zzuPozPbdE,2758
|
|
1887
|
+
pyrogram/raw/functions/payments/validate_requested_info.py,sha256=hxTeWvg8TQBJxoU3-Col3PAWGrc7dgSIz6y4aqTDFU4,2962
|
|
1888
|
+
pyrogram/raw/functions/phone/__init__.py,sha256=4cfYIF0QylsbzhQ1-vOk8A3GGnCCXkULW-tvFtdlal4,3523
|
|
1889
|
+
pyrogram/raw/functions/phone/accept_call.py,sha256=AeKcWlfaD5r_s17UmzYIIidEKRrFHgh-X_O-0XsrIIM,2768
|
|
1890
|
+
pyrogram/raw/functions/phone/check_group_call.py,sha256=7JQwHybw_SRX2XutXLXnM5C6W8nev8JQ3odS3aNkYNs,2505
|
|
1891
|
+
pyrogram/raw/functions/phone/confirm_call.py,sha256=7vyngVYx_aTBxjv9Gbsqq3_Dk2yUWjX4A7NiEmT572Q,3065
|
|
1892
|
+
pyrogram/raw/functions/phone/create_conference_call.py,sha256=X0TzHNdHEM4HngTtl71ePimsijZ0uiiLJPfgR4PlYaM,4303
|
|
1893
|
+
pyrogram/raw/functions/phone/create_group_call.py,sha256=gozUVilwEnluDBJc2dMo1OnkCoSe8CdjEFYU3sagpa0,3627
|
|
1894
|
+
pyrogram/raw/functions/phone/decline_conference_call_invite.py,sha256=rUEctZEM3GtTHSQhBwsBp42mHV5ESqVSLFmFzi05ghg,2252
|
|
1895
|
+
pyrogram/raw/functions/phone/delete_conference_call_participants.py,sha256=wr-XEZGu6yeAeIK9CU7iHIZrDSqKXQZHjzzyZm5ObGM,3327
|
|
1896
|
+
pyrogram/raw/functions/phone/delete_group_call_messages.py,sha256=BuK1HEB69L0itlHjyIeQSDmvCrH-WUUg4ueGurDRl20,2912
|
|
1897
|
+
pyrogram/raw/functions/phone/delete_group_call_participant_messages.py,sha256=ZJ6Trd00X--j_fIJZAg91IsDJpnkGILfG_V1G2QtYsg,3002
|
|
1898
|
+
pyrogram/raw/functions/phone/discard_call.py,sha256=akOKmR1Xkx_Qa9aedGe8q9DKm-1XPReEoei8MNVWAYw,3365
|
|
1899
|
+
pyrogram/raw/functions/phone/discard_group_call.py,sha256=XZgEyuGLfmU6K-gkHOKjV8unjApjTpjps4ht24VAoIs,2269
|
|
1900
|
+
pyrogram/raw/functions/phone/edit_group_call_participant.py,sha256=ILdFfYB6ntbg1a1JnLZhl4NaL5A9EuHXvkFbWwQK2MM,5150
|
|
1901
|
+
pyrogram/raw/functions/phone/edit_group_call_title.py,sha256=ow1Oy9W7hZPRhZDrNjMGZzL01WfA8fEiVlGT7ayLGTM,2475
|
|
1902
|
+
pyrogram/raw/functions/phone/export_group_call_invite.py,sha256=Ws5iFk-kxxKE5GpabaXd4FAELBzjv4vWkUE6BEtNpgY,2739
|
|
1903
|
+
pyrogram/raw/functions/phone/get_call_config.py,sha256=efk8zNizJzqZ3K_FDoiNLaRHL9fUEjpixr9qCtuP9MQ,2037
|
|
1904
|
+
pyrogram/raw/functions/phone/get_group_call.py,sha256=aHIYFDwTT3gqyglmvSyoWS62pixDxW2HiSmXsARB3U0,2475
|
|
1905
|
+
pyrogram/raw/functions/phone/get_group_call_chain_blocks.py,sha256=aR0lbJckF4DB3iUnTDBX1bK18QmP5I3PQBzn9dt5ZZY,2969
|
|
1906
|
+
pyrogram/raw/functions/phone/get_group_call_join_as.py,sha256=OgQJWStHPOehAnX0XZHj6cq1lZx7qcV4LjVmjQNsCBM,2287
|
|
1907
|
+
pyrogram/raw/functions/phone/get_group_call_stars.py,sha256=fPV0Sd_XZzbyY6AiKZNoIpUMS104xk0nFwjxdb34xLo,2312
|
|
1908
|
+
pyrogram/raw/functions/phone/get_group_call_stream_channels.py,sha256=tzOIZbzyk_DfGQASwQ1K9ISrzhix9ZF29YotHvYQCXs,2375
|
|
1909
|
+
pyrogram/raw/functions/phone/get_group_call_stream_rtmp_url.py,sha256=EF6LgGPgharmvsL_lCj5F2tdzjfFRGZF_-w1KdB1tMo,2890
|
|
1910
|
+
pyrogram/raw/functions/phone/get_group_participants.py,sha256=8PqwrCuP8x_dgMD08DhcHuSzVl-729eyL-TdZ-9x3zI,3261
|
|
1911
|
+
pyrogram/raw/functions/phone/invite_conference_call_participant.py,sha256=PuGMjVyhdPn42qcpQs261zjvnV7IYS32as1HwrKkE0g,2900
|
|
1912
|
+
pyrogram/raw/functions/phone/invite_to_group_call.py,sha256=_njzMDyLT_uYT0m30qzkvzgt5SMolrRpxRHCMvXPy8M,2554
|
|
1913
|
+
pyrogram/raw/functions/phone/join_group_call.py,sha256=0LSrOqxl-k_iM_-OfcPvhTaetdRw87dJurYXfTl0St8,4609
|
|
1914
|
+
pyrogram/raw/functions/phone/join_group_call_presentation.py,sha256=r8iKfDly00QNL6j31aLO2LSwD2-HcOudsi50Ex0zPgA,2569
|
|
1915
|
+
pyrogram/raw/functions/phone/leave_group_call.py,sha256=mlGEWeGKuH7X8MBaYZjw6N9Iw0XBXvuKcFvLPIwZh7E,2470
|
|
1916
|
+
pyrogram/raw/functions/phone/leave_group_call_presentation.py,sha256=FK1Mx-YnfxLigTpjDmrLlVUM9re0PD2SCcO0-To9e5o,2309
|
|
1917
|
+
pyrogram/raw/functions/phone/received_call.py,sha256=-e11wgvaEyRozmZnn3j2xAyz199cunJ1MQmwJoEJr2g,2216
|
|
1918
|
+
pyrogram/raw/functions/phone/request_call.py,sha256=fYLEXWt17G0QGWN04GC41lWiAqiRgqJCa3ug9VLTtk8,3354
|
|
1919
|
+
pyrogram/raw/functions/phone/save_call_debug.py,sha256=aO74qDhdZOC69qDzDjSuoOnMJNZsc4zEkKZ7YCLFRDo,2475
|
|
1920
|
+
pyrogram/raw/functions/phone/save_call_log.py,sha256=7tcgm32B9W7FdvHLKZnFOuv0RNo7nBJPLR_vIPTrNm4,2462
|
|
1921
|
+
pyrogram/raw/functions/phone/save_default_group_call_join_as.py,sha256=9nU7dqn1FKjkVV9cLdutqDiapRELJL-SyPvD0f7HRHU,2529
|
|
1922
|
+
pyrogram/raw/functions/phone/save_default_send_as.py,sha256=zHcZ3lxtZjYuD9amrQEkIdpxfk7BBnUBVtCd-cczvjg,2513
|
|
1923
|
+
pyrogram/raw/functions/phone/send_conference_call_broadcast.py,sha256=nsxWjTR0FC7j8Wz2ckEyEmCC8P3SYI1xirAWiROfzMw,2512
|
|
1924
|
+
pyrogram/raw/functions/phone/send_group_call_encrypted_message.py,sha256=sRIgUYhDXVLhWZcxMKwrsVECqDbc5ksjwjbTEJfFggo,2591
|
|
1925
|
+
pyrogram/raw/functions/phone/send_group_call_message.py,sha256=w8KktD27suw9r4YwUmgCvkZVJmWpGmVa3qLaWgxqrSc,3790
|
|
1926
|
+
pyrogram/raw/functions/phone/send_signaling_data.py,sha256=6FANQZUopHKq21KFnFddwR02AlytJZL3BFvnuBaxVG0,2426
|
|
1927
|
+
pyrogram/raw/functions/phone/set_call_rating.py,sha256=YwyfRJIZYr7HjSkADWJfMNUFDXnTpVPXglR7S9hT5Mg,3066
|
|
1928
|
+
pyrogram/raw/functions/phone/start_scheduled_group_call.py,sha256=7brn8kTXPcIIBubqyrhHb1iERNdeELnAcXhSb3RC-30,2297
|
|
1929
|
+
pyrogram/raw/functions/phone/toggle_group_call_record.py,sha256=8UYKwAMlJKylegaYV_WeHcigDkTDCliIOopsVyrmlv0,3635
|
|
1930
|
+
pyrogram/raw/functions/phone/toggle_group_call_settings.py,sha256=tu6clk_f3sYp709cg4vaIokbSK30MbItN11GNUxF4jE,4143
|
|
1931
|
+
pyrogram/raw/functions/phone/toggle_group_call_start_subscription.py,sha256=_TkZDtIKAMho4uCb4U4PnLf0X5V3L-tH2dEPNoVXlZE,2572
|
|
1932
|
+
pyrogram/raw/functions/photos/__init__.py,sha256=-x5-BsFhrqY2MepxM3G466yT92hKkpcXHl58Nc8ZOZE,1317
|
|
1933
|
+
pyrogram/raw/functions/photos/delete_photos.py,sha256=tTPa9qYCHT7tQUdwJZ7jB0ZtXpw14TnvROIJtTWh2kE,2229
|
|
1934
|
+
pyrogram/raw/functions/photos/get_user_photos.py,sha256=6UOWhT9eAGefuypFmQtQr-yc6hZef7cFi67SPB22MxM,2904
|
|
1935
|
+
pyrogram/raw/functions/photos/update_profile_photo.py,sha256=96pYcNzjnte-NzOf9RvPNqsba42pYzV7o_5T8_yeGEU,2970
|
|
1936
|
+
pyrogram/raw/functions/photos/upload_contact_profile_photo.py,sha256=FLDlLSeSK9V5oSAy6hESQe9ruwjgPQjj3wlp3NhQVZ0,4722
|
|
1937
|
+
pyrogram/raw/functions/photos/upload_profile_photo.py,sha256=7wj-ia4Jq2b2h2d7vNPQk0FEv49FMQ_KVdquzgyXCJU,4576
|
|
1938
|
+
pyrogram/raw/functions/premium/__init__.py,sha256=HGhV5LnnY7HeCk45BQZN-LmYptDtLdRL_ArQLDknaKY,1268
|
|
1939
|
+
pyrogram/raw/functions/premium/apply_boost.py,sha256=eEZEL_t5oPjg30vgRZD4WZ3qHpJam_QtTFiPcKlAIfk,2690
|
|
1940
|
+
pyrogram/raw/functions/premium/get_boosts_list.py,sha256=VTbXgEZENWhReOBL0DCey-zyu40w7CLAds76CAtJ884,2973
|
|
1941
|
+
pyrogram/raw/functions/premium/get_boosts_status.py,sha256=Ld4Cb6x75RjVXvG4zRPM8doB22Ixjwp4nd9IEB5PE-U,2284
|
|
1942
|
+
pyrogram/raw/functions/premium/get_my_boosts.py,sha256=rW_WUOOcUWhW5ZwLWQYAnyOmAnzCPvl6DGIbwBeCwyg,2053
|
|
1943
|
+
pyrogram/raw/functions/premium/get_user_boosts.py,sha256=Sn84txbtenliSYlC0awIauOSADamwJ2YN0qfflwoYtQ,2549
|
|
1944
|
+
pyrogram/raw/functions/smsjobs/__init__.py,sha256=lej9b5G7qB4BS639w1M5GYJDmenLUDc4nKnw9DqnZyk,1305
|
|
1945
|
+
pyrogram/raw/functions/smsjobs/finish_job.py,sha256=nvpshBIXheLV79pzXwtNnbFV7dceEuOZKGwNe8pbG78,2542
|
|
1946
|
+
pyrogram/raw/functions/smsjobs/get_sms_job.py,sha256=I9rjhCe70YhVd73pqe_Fhs2Nx3TgvofUFSNkBbv22rA,2177
|
|
1947
|
+
pyrogram/raw/functions/smsjobs/get_status.py,sha256=_cx6AOGI_8ltJr12kjdJOyJM0kMSReM7sSPcxnBgCvY,2041
|
|
1948
|
+
pyrogram/raw/functions/smsjobs/is_eligible_to_join.py,sha256=uHkEY3jl8LUxLwplOEIM3mXSO-sp5Wsfl8xqjC5QqNg,2100
|
|
1949
|
+
pyrogram/raw/functions/smsjobs/join.py,sha256=j6jURvNyNhoRTP4W2yASFv7Dky4l9Gtdj28JvR4hl1c,1963
|
|
1950
|
+
pyrogram/raw/functions/smsjobs/leave.py,sha256=37D6n0ZSHuAC1zr5P4pe2z8hFhq8V_MvvAn9uXiIwN0,1967
|
|
1951
|
+
pyrogram/raw/functions/smsjobs/update_settings.py,sha256=L8bWCtf_RoZ0rGAQpRPl8ax83EaMAPHaOE56OBgjbjw,2374
|
|
1952
|
+
pyrogram/raw/functions/stats/__init__.py,sha256=FTW2jbNW3cYOwG_QmQkfjXpIuwgXEawxBzf5u-7ViFo,1466
|
|
1953
|
+
pyrogram/raw/functions/stats/get_broadcast_stats.py,sha256=jE0MuG9PyOML_SXR_XudSUhOq9z6vbXH2yt7Gz6nJIY,2616
|
|
1954
|
+
pyrogram/raw/functions/stats/get_megagroup_stats.py,sha256=4BsNSjdU7fQAhwD5XN7O7zi2TMzGnFtd354-PlRjx_c,2616
|
|
1955
|
+
pyrogram/raw/functions/stats/get_message_public_forwards.py,sha256=u8HZfSYbKA3VktYjpFmt-zYOVxqqY1hWE7kE_q-ZD0o,2975
|
|
1956
|
+
pyrogram/raw/functions/stats/get_message_stats.py,sha256=Ufb2sNce9dMfJztavremiK_vLiib1CxgVCL6iI6zoJI,2811
|
|
1957
|
+
pyrogram/raw/functions/stats/get_poll_stats.py,sha256=59nGhLUDv2eFzqLukJGzrJoKwXgbVBjVrKHE3o65TCk,2751
|
|
1958
|
+
pyrogram/raw/functions/stats/get_story_public_forwards.py,sha256=IV7k5NyID-BmjsIh5c8azNjazTXG9uPU1vz_SgdjI1A,2892
|
|
1959
|
+
pyrogram/raw/functions/stats/get_story_stats.py,sha256=4QFRJBTtpOx-aMd0SU143SmLjkrwORT3nk2EsWh-gaI,2722
|
|
1960
|
+
pyrogram/raw/functions/stats/load_async_graph.py,sha256=2i4EW4uDlBQnH88Y3YOe6y6bui6-JC8_H7dQS9ZfG_s,2558
|
|
1961
|
+
pyrogram/raw/functions/stickers/__init__.py,sha256=a-i7DY08ibmhgY4pTKKJq6PnqB8AcPhIgNlb-IHSsa8,1606
|
|
1962
|
+
pyrogram/raw/functions/stickers/add_sticker_to_set.py,sha256=J7Y_t4Ox8NBEsAjhEJiN_pc7-XcWdSpswgNkipBKbXg,2679
|
|
1963
|
+
pyrogram/raw/functions/stickers/change_sticker.py,sha256=dFp0hEt_QPSbDrbKK6L_5nUMzwKXiP8bU5OpiJDkDC0,3589
|
|
1964
|
+
pyrogram/raw/functions/stickers/change_sticker_position.py,sha256=wJr_o8bCbkTIDLjsMPgdtxhBDn_aJ84YOl8UQxwKczE,2578
|
|
1965
|
+
pyrogram/raw/functions/stickers/check_short_name.py,sha256=Gcl4aN5XsJO19wbfn5DrH2qGi-vRfjzS8h5DBM2e8NI,2200
|
|
1966
|
+
pyrogram/raw/functions/stickers/create_sticker_set.py,sha256=5Hw-2gJ6Y1sg9bPL6dFfn--bdracKF3N5hCfNGrEtg8,4767
|
|
1967
|
+
pyrogram/raw/functions/stickers/delete_sticker_set.py,sha256=QbkwQfN5933HhEElugOaDND88_8_hRAmogIlBbaWXvs,2293
|
|
1968
|
+
pyrogram/raw/functions/stickers/remove_sticker_from_set.py,sha256=pyPDHSIBYAi-R0aQ_MqaXLBKoyeJ-5yZFdN68wpnPZ0,2347
|
|
1969
|
+
pyrogram/raw/functions/stickers/rename_sticker_set.py,sha256=Aj-ijx-sDCLinYugF_LlSZpNgS8nbiyNsBBCRXut864,2564
|
|
1970
|
+
pyrogram/raw/functions/stickers/replace_sticker.py,sha256=vNlcfidv-jjkkv2JzfZA6o_OtT6GdVt35st8C5pk354,2676
|
|
1971
|
+
pyrogram/raw/functions/stickers/set_sticker_set_thumb.py,sha256=iTmqQ1TkF0Uzlc8De4uKRNI4WGZdCUbTnf4_pJu-NvI,3340
|
|
1972
|
+
pyrogram/raw/functions/stickers/suggest_short_name.py,sha256=H86BWL7u0NlOyHLSdY8aIKG7GjhJut3_A4o3cVUuedw,2260
|
|
1973
|
+
pyrogram/raw/functions/stories/__init__.py,sha256=lsQG99xnB0R5cyK1gsv2ikna0dch1-XlWuJb5WmR6B4,2545
|
|
1974
|
+
pyrogram/raw/functions/stories/activate_stealth_mode.py,sha256=0Fhw6bYrTJcvmKa5R4KN0uEMwGHJguj7-G3BL9sTITE,2556
|
|
1975
|
+
pyrogram/raw/functions/stories/can_send_story.py,sha256=nbDCz01qfMycL0dNhh7zXD_fu0VgzrXN53Rm0-GyOFk,2289
|
|
1976
|
+
pyrogram/raw/functions/stories/create_album.py,sha256=PyoEF3Gni7EvPG7qq-_7AgFHCo7MDNN2Dlx87Min4Co,2696
|
|
1977
|
+
pyrogram/raw/functions/stories/delete_album.py,sha256=ND89b9z2r2uWGEY_GL5emMHvh2o7861DHXjFGc1JVSQ,2421
|
|
1978
|
+
pyrogram/raw/functions/stories/delete_stories.py,sha256=XVBtvUfRX6mWKXWyG0V0T5uY3kP-rOO9oQKeZDAmoB0,2438
|
|
1979
|
+
pyrogram/raw/functions/stories/edit_story.py,sha256=SUzig9d0dYqpYtkRpNgI3RUIXCd9VUXKSKbssmOPiNg,5192
|
|
1980
|
+
pyrogram/raw/functions/stories/export_story_link.py,sha256=OPAvnaI43NHBZ9B5kj62e0uoum3IGDAmMCqr4hSksa0,2450
|
|
1981
|
+
pyrogram/raw/functions/stories/get_album_stories.py,sha256=wcpiVMaJ_CImukf35PQAdS-hSmTLUkXgqb4RLwZ7d3Q,2907
|
|
1982
|
+
pyrogram/raw/functions/stories/get_albums.py,sha256=zbmHBt2aI4lGyl3x-8zUvG3KtYgck6nfj-1msq5X_Zw,2438
|
|
1983
|
+
pyrogram/raw/functions/stories/get_all_read_peer_stories.py,sha256=gxF5ZYGI20NcC40L8WkLHF6SnvHNEUNXYEAuNOs-kNE,2068
|
|
1984
|
+
pyrogram/raw/functions/stories/get_all_stories.py,sha256=92316fhfL52y6AmZiZaFJbhjZlQhCR8LAVRs093Rrgk,2919
|
|
1985
|
+
pyrogram/raw/functions/stories/get_chats_to_send.py,sha256=wy8tOGAEnETG7cAanRdz3V3m7iI6EWDsKMje-Jtk-2A,2061
|
|
1986
|
+
pyrogram/raw/functions/stories/get_peer_max_i_ds.py,sha256=nc075LxVUYAH3H5TdlWs_9FjEBKdIHDKNHQOoLkUJe4,2269
|
|
1987
|
+
pyrogram/raw/functions/stories/get_peer_stories.py,sha256=izTCNNUNeLD1Gh24me0PdxEob4D4KGk0U7ZIrSTfbVY,2279
|
|
1988
|
+
pyrogram/raw/functions/stories/get_pinned_stories.py,sha256=HER1TZYmnxSjMrbSzzRTuaDQyqcrVs2awWJkvEoUOuE,2711
|
|
1989
|
+
pyrogram/raw/functions/stories/get_stories_archive.py,sha256=rr9j4l1z7HKwQNyyvT8Wr297S1C_9H6iNyI-hZySEDg,2715
|
|
1990
|
+
pyrogram/raw/functions/stories/get_stories_by_id.py,sha256=pNIJRTVyEeC7RcVgZ6mw5nzvqc8z0NsSe5YKVgHIkPY,2480
|
|
1991
|
+
pyrogram/raw/functions/stories/get_stories_views.py,sha256=O-RL-yEPCg3oBAyjZhR8z1Ph6AozruunvOpYcnBGuOk,2493
|
|
1992
|
+
pyrogram/raw/functions/stories/get_story_reactions_list.py,sha256=2K1b2C-CpaOWdd28AzXS6rinWlzF8W4N1P5x0ltR-88,3884
|
|
1993
|
+
pyrogram/raw/functions/stories/get_story_views_list.py,sha256=wFI6WBssZt8WnkE7J8Hr7ZzmQ4unT5MtpXb7MkPSPf0,4225
|
|
1994
|
+
pyrogram/raw/functions/stories/increment_story_views.py,sha256=C3tUXOPFIRWsXF4nCu3yKMRgMN8H0LqzksV0ckHRaTw,2439
|
|
1995
|
+
pyrogram/raw/functions/stories/read_stories.py,sha256=IJonsPgiNxuZM2K0Ahx1kbl06q80HWKt02SCJ41OeaU,2426
|
|
1996
|
+
pyrogram/raw/functions/stories/reorder_albums.py,sha256=K5slq6HLDD6H5Hq8chFg39C5cxxnJmItw08G3OWig7w,2442
|
|
1997
|
+
pyrogram/raw/functions/stories/report.py,sha256=3d8tt9xA04mqEkDNqDeG2UELS9YiF5yyc16RSrswJgE,2863
|
|
1998
|
+
pyrogram/raw/functions/stories/search_posts.py,sha256=gAjdIw-3Tm5V6zWm5OAwhODVX-j_x4Mfgc9xY5yWvCI,3654
|
|
1999
|
+
pyrogram/raw/functions/stories/send_reaction.py,sha256=fj1DbFU7wggAfAatgFJIprrr6Dw_ZNae8lOe4vQucsU,3110
|
|
2000
|
+
pyrogram/raw/functions/stories/send_story.py,sha256=uIhwl4W7tw8At7Z57eh_80FwrcENSRnBqULUoyUXhdQ,7504
|
|
2001
|
+
pyrogram/raw/functions/stories/start_live.py,sha256=yfusEpJprc9x9P7LRT32d2a8_H5yYWX98YvzedezHIw,5639
|
|
2002
|
+
pyrogram/raw/functions/stories/toggle_all_stories_hidden.py,sha256=Rw53FuTQVCd6G3fHxfkYVsN0MZxU6ORIrHfwp0nYDpg,2191
|
|
2003
|
+
pyrogram/raw/functions/stories/toggle_peer_stories_hidden.py,sha256=zqnRAPsRLukmilxYgVO3R_rOxEccWpcTxhb2EG4HMXE,2445
|
|
2004
|
+
pyrogram/raw/functions/stories/toggle_pinned.py,sha256=3ox_BJIgJj5TrMeqzNuNnlmRUF2zhoRouOcNEuvSBg0,2637
|
|
2005
|
+
pyrogram/raw/functions/stories/toggle_pinned_to_top.py,sha256=HDZ80jn91pV5RtF3iinPvwxD-kAsC8PzxKnKn9wKBDI,2429
|
|
2006
|
+
pyrogram/raw/functions/stories/update_album.py,sha256=9QCSDWRBLrB7loI73Jj6RtgHTeP8db0jAScA8YRgjYY,4204
|
|
2007
|
+
pyrogram/raw/functions/updates/__init__.py,sha256=-WBdfnQmtqi6uM_4PIRircq269Vm9NzcJPPEjQtpNJo,1191
|
|
2008
|
+
pyrogram/raw/functions/updates/get_channel_difference.py,sha256=aPPC_FTBQYkuhooarGZX1V0gfOXk-BWeB8NlvnEvotE,3350
|
|
2009
|
+
pyrogram/raw/functions/updates/get_difference.py,sha256=bmcjrCZVHKH61dCXC8zYh1qhmoEHxaqod3nb5R--0-U,3888
|
|
2010
|
+
pyrogram/raw/functions/updates/get_state.py,sha256=adKeMMNXwE0lZvFSAz5Aa7b90Spy6dixwz_kYa9Fnx0,2034
|
|
2011
|
+
pyrogram/raw/functions/upload/__init__.py,sha256=u7fpYVTtU57STIW5c4RBBhDw2ipiskwmrXQYKs7LMXQ,1393
|
|
2012
|
+
pyrogram/raw/functions/upload/get_cdn_file.py,sha256=owxeqquqmCJ1Vcy9TN-rmOq7kjDgTse0NVSvU9zhTJw,2653
|
|
2013
|
+
pyrogram/raw/functions/upload/get_cdn_file_hashes.py,sha256=zzDi5hGgNjGSq3GVOHvSWOljuOdrmO6AtAef1x9i9ds,2473
|
|
2014
|
+
pyrogram/raw/functions/upload/get_file.py,sha256=O99A4oVbsRFqiCeVGNrJXIvss_CRf8-FT18T476UpTI,3339
|
|
2015
|
+
pyrogram/raw/functions/upload/get_file_hashes.py,sha256=LTvQa4QW32msP_umzW2H7dfrxThTH4FfDFL7VdiAyyI,2535
|
|
2016
|
+
pyrogram/raw/functions/upload/get_web_file.py,sha256=lUJqvpv2HXyEaq5OaGukNNYuzYnmYbITX1zMT_U2ECM,2736
|
|
2017
|
+
pyrogram/raw/functions/upload/reupload_cdn_file.py,sha256=oITa1XRGJfpv5AvVfQ_iqH-OzPXsM-74LtBiC5sCqMM,2528
|
|
2018
|
+
pyrogram/raw/functions/upload/save_big_file_part.py,sha256=oKK9NAK07ESEr9WgdRs_2oo_ghHLl45zt9hx2NBHwvQ,2914
|
|
2019
|
+
pyrogram/raw/functions/upload/save_file_part.py,sha256=dsP-6RqHNMgDO2GnD0V9kuTIKp5EDbcFHuysxK6A6h4,2603
|
|
2020
|
+
pyrogram/raw/functions/users/__init__.py,sha256=B37atMOrkjUR8Ikulje66g51X9H7xCAbl3_yXcr0r6U,1397
|
|
2021
|
+
pyrogram/raw/functions/users/get_full_user.py,sha256=NPA_BlKsH0QAhQlaFeRb8u_K0NWByRsdmqZyb0kMGYM,2232
|
|
2022
|
+
pyrogram/raw/functions/users/get_requirements_to_contact.py,sha256=Z0Hb7SSyU7-CEnLqT3EWFq3Sdbm9pXJPpvgPfSzM9Qo,2338
|
|
2023
|
+
pyrogram/raw/functions/users/get_saved_music.py,sha256=X3ZmQ5PgdGaVv34ZAoBscUcbGJdcWXp1r0GHGs7-L6s,2849
|
|
2024
|
+
pyrogram/raw/functions/users/get_saved_music_by_id.py,sha256=R27bkc6qd5zFuvNGVwjH5TbBgpU6g-J-jR9CDsaiKXw,2595
|
|
2025
|
+
pyrogram/raw/functions/users/get_users.py,sha256=eLWnfgWsP3tS-SCZLNSQw-qh2_8fVTxT5XV5Tgbs0kc,2224
|
|
2026
|
+
pyrogram/raw/functions/users/set_secure_value_errors.py,sha256=ONqpTKB_i0MO-ZDffsIU5YTpf4qYDQMWqLpeWTma00A,2528
|
|
2027
|
+
pyrogram/raw/functions/users/suggest_birthday.py,sha256=EYQ_TrnNpCEgd8BJoTyJoFXllw0M9uawDPu096i2qsk,2509
|
|
2028
|
+
pyrogram/raw/types/__init__.py,sha256=aAh4TJa3MySO0lzGVxLAL-w0fQByTvmQN_w-oaMkB-I,80613
|
|
2029
|
+
pyrogram/raw/types/access_point_rule.py,sha256=sblxHjISD-A_AA-RN8sskxoucFzj4xgxwnSXTZdQsjg,2726
|
|
2030
|
+
pyrogram/raw/types/account_days_ttl.py,sha256=5dBqRQK5alf3QR3xJ8LoXiuV7J1VO0ao9W9WKyMuelI,2351
|
|
2031
|
+
pyrogram/raw/types/ai_compose_tone.py,sha256=LWWdpRze0p2MRd6YYcyDiGTqROuqmXO_VWj_zKrJGSs,5503
|
|
2032
|
+
pyrogram/raw/types/ai_compose_tone_default.py,sha256=CmtdUZhd-iIPZ1bTvQs8aE4NeUY8S8ZsuMP9VN_8OuA,2833
|
|
2033
|
+
pyrogram/raw/types/ai_compose_tone_example.py,sha256=U-UTcUzhL9WxyTcULuErH6QbJbgDerMIBzNoBGdddqI,2776
|
|
2034
|
+
pyrogram/raw/types/attach_menu_bot.py,sha256=By8h2SvpJNEETtPHGDlHPL9kHDLxMvOvn11ALiONG1g,5437
|
|
2035
|
+
pyrogram/raw/types/attach_menu_bot_icon.py,sha256=Uz74ZURoqRoxM5r6GxCEGU9McIflAq7EymrllejK-Bs,2945
|
|
2036
|
+
pyrogram/raw/types/attach_menu_bot_icon_color.py,sha256=ZPt4bLClgLBC1ihWjuMTZgv-g6weirQbPyIHg3DkpZw,2384
|
|
2037
|
+
pyrogram/raw/types/attach_menu_bots.py,sha256=X1Hstr_nF_GGYL4suYkZF9Lji-1c7j2RrfZ0bszZSc0,2908
|
|
2038
|
+
pyrogram/raw/types/attach_menu_bots_bot.py,sha256=MLZ0OWznyOwfL-1tyDjGRTJb1ZjEWAqQYCtNS_ED5V4,2697
|
|
2039
|
+
pyrogram/raw/types/attach_menu_bots_not_modified.py,sha256=dU65tBn_65Vn2-u8Z5zNjoFnEqQ4B3yrS-U1I2kuUkg,2256
|
|
2040
|
+
pyrogram/raw/types/attach_menu_peer_type_bot_pm.py,sha256=kiDoKIFsZabWLnakEKlwjbYYgiLSd1uZ_5UqqBqs0ak,2042
|
|
2041
|
+
pyrogram/raw/types/attach_menu_peer_type_broadcast.py,sha256=0M92Qfh0kC18Dal6RD2Ss8DVe9Jp90Fz8A1tlVM3X78,2058
|
|
2042
|
+
pyrogram/raw/types/attach_menu_peer_type_chat.py,sha256=FRyWuVONmvsCWi8BhYWKjVqw1-tedODucCxjGW4NlvA,2036
|
|
2043
|
+
pyrogram/raw/types/attach_menu_peer_type_pm.py,sha256=woqIrFEjzOwcplhk4rOroOlVdGrsh5c_i7iQtccgH3Q,2030
|
|
2044
|
+
pyrogram/raw/types/attach_menu_peer_type_same_bot_pm.py,sha256=z-JIfJlXsIgo6k603YU5GgTLAySPc7XVyWGXK7huQYk,2058
|
|
2045
|
+
pyrogram/raw/types/auction_bid_level.py,sha256=EULNxU996BNxsEbcStVYAEh4rTPg5JgzY90ir84G4Fk,2545
|
|
2046
|
+
pyrogram/raw/types/authorization.py,sha256=Aro2F6JSEeUXUfMGkrldfycp6NpFeLUyjIC56og6ysc,7035
|
|
2047
|
+
pyrogram/raw/types/auto_download_settings.py,sha256=wWu4QwR8E2qSW-PtmYIqxAOsVRBaRLFk4-_M69zWoF4,5876
|
|
2048
|
+
pyrogram/raw/types/auto_save_exception.py,sha256=BYOH3sNPLMj-cpVyM_UA8PO757cPpelRL4y1ESmV3w0,2514
|
|
2049
|
+
pyrogram/raw/types/auto_save_settings.py,sha256=A-_iLeIHq9PMivwtC7UvqrAnW71LXVc3LAqG-H5o_Y0,2984
|
|
2050
|
+
pyrogram/raw/types/available_effect.py,sha256=D3v0eYQPFvCD16dKGHxocN_5Bz7Ugtd_eMV2VcD676M,4036
|
|
2051
|
+
pyrogram/raw/types/available_reaction.py,sha256=_xthFnRRscvMcZnHIoMQyTPkjnVbCN2b8ka8VxbPJ9k,5731
|
|
2052
|
+
pyrogram/raw/types/bad_msg_notification.py,sha256=Ri2tpN2O9e44i0xWB-IHemaZP7BLdVUjlhInn668C4U,2740
|
|
2053
|
+
pyrogram/raw/types/bad_server_salt.py,sha256=8Dew5M687acpC017MtMq2c3LIDrxCaDJglhs690WdOw,3013
|
|
2054
|
+
pyrogram/raw/types/bank_card_open_url.py,sha256=AkWAw-CVgVBt099-SKysaRVT18txowIT2kJqwZIHPl0,2329
|
|
2055
|
+
pyrogram/raw/types/base_theme_arctic.py,sha256=QWIa9srwTpzWdC-2KrqGZPMAOxDFnz0-2LiNPA941E0,2001
|
|
2056
|
+
pyrogram/raw/types/base_theme_classic.py,sha256=PCs2TlJNP81VlzQMd1VOQOOxWi3xCw4UUAygEL6yQ0I,2005
|
|
2057
|
+
pyrogram/raw/types/base_theme_day.py,sha256=F_eT7ra24I6ts-61BAlC6ykCi-Q-aISnlY3IOLzWBqc,1989
|
|
2058
|
+
pyrogram/raw/types/base_theme_night.py,sha256=AZc4wmKF7GWls7JTZ1oDcv8b-ziYFUfAINg5cB6v4kc,1997
|
|
2059
|
+
pyrogram/raw/types/base_theme_tinted.py,sha256=PJ_CtZrmw7mpPs3Q3secapAAcojKpzs-JVxlNz5Lofk,2001
|
|
2060
|
+
pyrogram/raw/types/bind_auth_key_inner.py,sha256=m_2mvDfkEcq8u13EwIm0uKXDI54Nno5VRGuHGEToF5o,3310
|
|
2061
|
+
pyrogram/raw/types/birthday.py,sha256=UQtU8Rbk9yPPT40PSNXj6znhx0KeLvm4zeyzq73sfPk,2697
|
|
2062
|
+
pyrogram/raw/types/boost.py,sha256=8BscaBvO7XF5YinUTdAWn0K-W5NgtmI7Wk706RtEXl8,5406
|
|
2063
|
+
pyrogram/raw/types/bot_app.py,sha256=DAri5Acy2CmkfLC0TuHedqx6keu8mv75sIccdI6qy8E,3966
|
|
2064
|
+
pyrogram/raw/types/bot_app_not_modified.py,sha256=tZ-U0pnZUM-uN0itbVK1vWAMIH_LObscSzfBIfM66IQ,2006
|
|
2065
|
+
pyrogram/raw/types/bot_app_settings.py,sha256=QwuDXKHTU-DMbIcBg3AdCTTk3XOOb3fBCbPny2WSyEY,4406
|
|
2066
|
+
pyrogram/raw/types/bot_business_connection.py,sha256=xB8vT8XP3SByjFXMUo7hARZCAcI9Z58ScM44CwVJlpI,3650
|
|
2067
|
+
pyrogram/raw/types/bot_command.py,sha256=rk_nLCUF0jlRM-Bk_CCWTUKLAVz5pfyXEaaiQbQ_iw0,2606
|
|
2068
|
+
pyrogram/raw/types/bot_command_scope_chat_admins.py,sha256=JEw5x9aFcw9QlPVTEgnaCd103SHZWdJUcSpa-N9_Fas,2047
|
|
2069
|
+
pyrogram/raw/types/bot_command_scope_chats.py,sha256=W20A2DmlfwrmJ4sCwSHM9Qm11E8RjFswnAWMCDpH56o,2027
|
|
2070
|
+
pyrogram/raw/types/bot_command_scope_default.py,sha256=JkZiAQlE5JxXRm0tharx1CyaQs0SIwjW3eZlVLzO2fI,2035
|
|
2071
|
+
pyrogram/raw/types/bot_command_scope_peer.py,sha256=-d45xlzEHXsG4z53DSeacI2qi3KZlBf3dWppQ2N1FHo,2226
|
|
2072
|
+
pyrogram/raw/types/bot_command_scope_peer_admins.py,sha256=gpG1i-qoMKRoyW3XtzbItN4EWg9d7acGoztwmvQUKyY,2250
|
|
2073
|
+
pyrogram/raw/types/bot_command_scope_peer_user.py,sha256=XfYIymGRRBjBLGXae1u0xlGmWnCaMmrK1I7qxzEmN4I,2517
|
|
2074
|
+
pyrogram/raw/types/bot_command_scope_users.py,sha256=PKjsw5vTwcCFWkbs9NLj0cDPSQgokcO1offKre4PXv4,2027
|
|
2075
|
+
pyrogram/raw/types/bot_info.py,sha256=f6HhQEgcbSFJeUJCa8MmWR_a2xu7fHdjYlbYbZkw1dI,6796
|
|
2076
|
+
pyrogram/raw/types/bot_inline_media_result.py,sha256=F1gVQOImUReRwM4S9DWz9bnQxHB7v_DRzY1d6xtuD_w,4350
|
|
2077
|
+
pyrogram/raw/types/bot_inline_message_media_auto.py,sha256=fK0roVpU0Xbl6-fm-L1JN933zL2FAvt3Mp8qyn0ej2s,3554
|
|
2078
|
+
pyrogram/raw/types/bot_inline_message_media_contact.py,sha256=ryN4ZORGRjs9JLh2tjRq_sdpWpW4CibiMgnZ_-PeRdo,3493
|
|
2079
|
+
pyrogram/raw/types/bot_inline_message_media_geo.py,sha256=WW_mr7EN2Qjj176JgTwPulzegwxpPOYG51Ph25sQXBk,4141
|
|
2080
|
+
pyrogram/raw/types/bot_inline_message_media_invoice.py,sha256=T11JDDWr74WrPlyHIre938UIK6LUPp3IjMPBFtTSrfc,4598
|
|
2081
|
+
pyrogram/raw/types/bot_inline_message_media_venue.py,sha256=np48fUeklMemCFOsTDUjnetRekBnGHmrZws6BdQ4j2U,3893
|
|
2082
|
+
pyrogram/raw/types/bot_inline_message_media_web_page.py,sha256=pgl5wFsIE32u2zR2Hxf0mSxyE3EK8Bh5LEGG9oQeTG4,4958
|
|
2083
|
+
pyrogram/raw/types/bot_inline_message_rich_message.py,sha256=J11eo90b3B832ABb11ycXdO0SwDX_bFWMVwuNeUYWc0,2881
|
|
2084
|
+
pyrogram/raw/types/bot_inline_message_text.py,sha256=6cThPLL4iz5wZdBzXgFqjBqCIQ8akV-N1MptKYKNbIw,3828
|
|
2085
|
+
pyrogram/raw/types/bot_inline_result.py,sha256=PfrXEouztmC40E2j_z7FKl8IEoatMUM1D9jJjvpOFEg,4687
|
|
2086
|
+
pyrogram/raw/types/bot_menu_button.py,sha256=ap2DlRFK8skcfuGAkNUtDSo2QGF8s6eWL8SIcLLxQ_w,2524
|
|
2087
|
+
pyrogram/raw/types/bot_menu_button_commands.py,sha256=8UpRK8sF6iWnHj-p7GCnCQiB79UE7Nxp7xI0gHA0yUA,2234
|
|
2088
|
+
pyrogram/raw/types/bot_menu_button_default.py,sha256=_T5BV-_TQ-XvTnPtfFO4D4mQYaBQZpAS2fojhI_du68,2230
|
|
2089
|
+
pyrogram/raw/types/bot_preview_media.py,sha256=LiT73bi0pdgQ-5Tic3VUE-_oaPKvoZxaQBL2m65TD1U,2695
|
|
2090
|
+
pyrogram/raw/types/bot_verification.py,sha256=Vx7GEKd549ULyOcOpP-Mh_3eSQttggE5X0-tHd8qhbY,2618
|
|
2091
|
+
pyrogram/raw/types/bot_verifier_settings.py,sha256=drEaVITjl1NQCrkM-yHRLAASnMzMy-e7cY5J0yPouhs,3397
|
|
2092
|
+
pyrogram/raw/types/business_away_message.py,sha256=iwqK0dfwj9AuJNhRB9wAcul9J10VM2UxQ8FgkFKW5Uc,3289
|
|
2093
|
+
pyrogram/raw/types/business_away_message_schedule_always.py,sha256=d0kPI07Yj16D27OuiMjoUsEOEbWCFyxlhN7xPWkzKzs,2091
|
|
2094
|
+
pyrogram/raw/types/business_away_message_schedule_custom.py,sha256=A6A2J9FGsqp7rh4QMI0fLdeHWa-86c6Z1lPls_Q7s5Y,2516
|
|
2095
|
+
pyrogram/raw/types/business_away_message_schedule_outside_work_hours.py,sha256=oP-6wv3SFi0XDKgoxnoKjZiWenmiDMno0NV1wS-inSw,2131
|
|
2096
|
+
pyrogram/raw/types/business_bot_recipients.py,sha256=sAxXNNvCXlqAt715YDhvQzlH1U7FhFe_g0nxxjL0Gqk,4462
|
|
2097
|
+
pyrogram/raw/types/business_bot_rights.py,sha256=W-l1SvnVFy_6aeFYk5L_U3JZy1WNemYSUSeokFBMz6Y,6719
|
|
2098
|
+
pyrogram/raw/types/business_chat_link.py,sha256=fDgFi6ga0lSZiXxmTU2gIwhCgc7xaNpVn1LJMCaXyIY,3706
|
|
2099
|
+
pyrogram/raw/types/business_greeting_message.py,sha256=xvLvgB8bdM_CiB1m-OvizDd8qh7ns_pUSHtGa2-M4_8,2893
|
|
2100
|
+
pyrogram/raw/types/business_intro.py,sha256=fGLnxh_ZhRYybumLDkwfdxUlHubEgiWcAiO9EwZ8LZc,2877
|
|
2101
|
+
pyrogram/raw/types/business_location.py,sha256=ea4sMrHcPPwEnDQNxRtztalUoUcjQNMSvUpdPgmD6TY,2680
|
|
2102
|
+
pyrogram/raw/types/business_recipients.py,sha256=B3QpwcJjXepk5EIVZZwg3H2Qi0Iwh57IaTjwZ9NzM2k,3965
|
|
2103
|
+
pyrogram/raw/types/business_weekly_open.py,sha256=jqB4cOudyFgbCnA73n88FDZ_6656em3iSrbULsNfunk,2483
|
|
2104
|
+
pyrogram/raw/types/business_work_hours.py,sha256=bAO2gC1Li1V8WEhesz7GhoWpEB7BnAGEuOogbGa7riI,2914
|
|
2105
|
+
pyrogram/raw/types/cdn_config.py,sha256=kqYdXYl1BZjnoLemM9cXExV_Zhq4QOHQsq3M1H1EXBg,2478
|
|
2106
|
+
pyrogram/raw/types/cdn_public_key.py,sha256=GRj0OUoG7BVSaY0LTN_gRBCHDSTvM9ViZ-UvD6WoBBk,2388
|
|
2107
|
+
pyrogram/raw/types/channel.py,sha256=2jvWAY8JuQp4gU5UsDI0LT0NYnLroBn54a0p5Hyw0N0,19949
|
|
2108
|
+
pyrogram/raw/types/channel_admin_log_event.py,sha256=Hgmt90XdycWT6TGnIPOdWcbsXWR4N_unDlJm9p8ZtkM,2909
|
|
2109
|
+
pyrogram/raw/types/channel_admin_log_event_action_change_about.py,sha256=uQTK0cEl_ql6wn1foBk3jf9xEYQ-djNI-Ey_JE8hpNc,2536
|
|
2110
|
+
pyrogram/raw/types/channel_admin_log_event_action_change_available_reactions.py,sha256=-kYVSxdBSTcdPFoeoLsp1WB1vpq_vgzqtuiQTL4CwiQ,2742
|
|
2111
|
+
pyrogram/raw/types/channel_admin_log_event_action_change_emoji_status.py,sha256=ns_SOuFLzif91XWI1PGDsqmoxaIfEGBcsqShcywSw1E,2698
|
|
2112
|
+
pyrogram/raw/types/channel_admin_log_event_action_change_emoji_sticker_set.py,sha256=WWsw8S-6KCptGmGEBry6c5C5r0APOZFFWggX5Efa0gY,2836
|
|
2113
|
+
pyrogram/raw/types/channel_admin_log_event_action_change_history_ttl.py,sha256=BVZ_bAb7nz5GDoPdFnZnIBsJ3x-ChKiIymHdpwrZeOI,2560
|
|
2114
|
+
pyrogram/raw/types/channel_admin_log_event_action_change_linked_chat.py,sha256=oIbRDB-Gc0pgYhLudF-cOfQbEYAC0OluyrYHvGJUL3I,2564
|
|
2115
|
+
pyrogram/raw/types/channel_admin_log_event_action_change_location.py,sha256=92BRgWYhniZFS7YIkl5_BfOpmyWKwTXwU5mk_04j1HY,2716
|
|
2116
|
+
pyrogram/raw/types/channel_admin_log_event_action_change_peer_color.py,sha256=H2xM4h7WM_PWJXFAL-5mM6g1kzqy2GMf03ZhaaZa2Lw,2674
|
|
2117
|
+
pyrogram/raw/types/channel_admin_log_event_action_change_photo.py,sha256=lWBzI0BlNuGRVKAqTUqKhSKZWrcVPn5LPVp1A7_blKU,2626
|
|
2118
|
+
pyrogram/raw/types/channel_admin_log_event_action_change_profile_peer_color.py,sha256=K0jfRPo2LvuZjncjr-FdntEAkIhKl02ZaBximMOvx8c,2702
|
|
2119
|
+
pyrogram/raw/types/channel_admin_log_event_action_change_sticker_set.py,sha256=USbl3lph3cE4HcBto6xe2VHK-KbELpGU64dtbuE2120,2816
|
|
2120
|
+
pyrogram/raw/types/channel_admin_log_event_action_change_title.py,sha256=T-b1zk-krGl8F9OswCapy7HoaKgklc5S8DKSvxtYLoI,2536
|
|
2121
|
+
pyrogram/raw/types/channel_admin_log_event_action_change_username.py,sha256=ULmmwRifcoFpzsUC0j3cIvgOL-tiKOdqMoBUvQxUgLM,2548
|
|
2122
|
+
pyrogram/raw/types/channel_admin_log_event_action_change_usernames.py,sha256=M9n1xOzHz2KT2aZ_JzokCCRNmkUJUyUgijLGKKJPkso,2632
|
|
2123
|
+
pyrogram/raw/types/channel_admin_log_event_action_change_wallpaper.py,sha256=IAVvaMrMcAVZhkDrzVYpp7QPGMHV00--nRIP5hQCQ_g,2674
|
|
2124
|
+
pyrogram/raw/types/channel_admin_log_event_action_create_topic.py,sha256=KHj4noJcgVCYnMAMBRlKSN6LaSTFc4IQGQex8NfUx-U,2322
|
|
2125
|
+
pyrogram/raw/types/channel_admin_log_event_action_default_banned_rights.py,sha256=hG6kIXadQvcDPmFay4FZoT_4zTa7lh4Mp55NAM0CrGk,2890
|
|
2126
|
+
pyrogram/raw/types/channel_admin_log_event_action_delete_message.py,sha256=6l3yelGm9Sb8NSKjnrDRt6DTl9b4Ko5LT4wolaArY7Q,2336
|
|
2127
|
+
pyrogram/raw/types/channel_admin_log_event_action_delete_topic.py,sha256=BtI09JG1kwW1JOTndHENEIIbA0SN1o6R0Rd37FCfR4U,2322
|
|
2128
|
+
pyrogram/raw/types/channel_admin_log_event_action_discard_group_call.py,sha256=K_Cc9NyHS9n57gSSxAl1W0FW7kSpKTFb0tw0KROh56Q,2349
|
|
2129
|
+
pyrogram/raw/types/channel_admin_log_event_action_edit_message.py,sha256=lbnTBm_kxl-H01qJqsoo0vibGasXneLhshahFLdhJ_I,2678
|
|
2130
|
+
pyrogram/raw/types/channel_admin_log_event_action_edit_topic.py,sha256=0P8DpSondOopt0IWU2C955dgqESBcZq3l_TQtZ0Z3BY,2658
|
|
2131
|
+
pyrogram/raw/types/channel_admin_log_event_action_exported_invite_delete.py,sha256=s-UzKuck3LyKa-p60g_APURpuYVEEuB4U28hZYJr0yU,2399
|
|
2132
|
+
pyrogram/raw/types/channel_admin_log_event_action_exported_invite_edit.py,sha256=FHr_P_-rHPFysVv5uCdoILlRfwZfY7mvXLZLDQ90kxo,2776
|
|
2133
|
+
pyrogram/raw/types/channel_admin_log_event_action_exported_invite_revoke.py,sha256=g_WWu88-8_C1PlH-IW-LPQTIDxEaoAxzOMCJTJn8OdA,2399
|
|
2134
|
+
pyrogram/raw/types/channel_admin_log_event_action_participant_edit_rank.py,sha256=jv8nedjfXnsPZRdeTliGOLxjTtZpBfQ1C1_K78avVfI,2771
|
|
2135
|
+
pyrogram/raw/types/channel_admin_log_event_action_participant_invite.py,sha256=zvUA0ODG6bzBeh8RAQeSPwmt5Wxdbi2V2tqV-dCI95Q,2432
|
|
2136
|
+
pyrogram/raw/types/channel_admin_log_event_action_participant_join.py,sha256=M9qcpQUsk30UZpxZ7BCSbX-wGywQ6X175QF3zSh05Lk,2122
|
|
2137
|
+
pyrogram/raw/types/channel_admin_log_event_action_participant_join_by_invite.py,sha256=BNsPJ7J1qVOBg4AbCfKetQI9fekEYESUoUC1PI9TEAw,2768
|
|
2138
|
+
pyrogram/raw/types/channel_admin_log_event_action_participant_join_by_request.py,sha256=3DzFkvVNm9TiGbGETw8AOhDdRjZhvSOBp2ek4cVOPOg,2672
|
|
2139
|
+
pyrogram/raw/types/channel_admin_log_event_action_participant_leave.py,sha256=WUZo02bLI_RJFRqBw00rxa2jcqPONwmV7lh-Dt_SOAY,2126
|
|
2140
|
+
pyrogram/raw/types/channel_admin_log_event_action_participant_mute.py,sha256=aS_2cM5FHZ96-HJtQd7hjRgAI7bjFNB_J6PnrQ_Yaws,2432
|
|
2141
|
+
pyrogram/raw/types/channel_admin_log_event_action_participant_sub_extend.py,sha256=t5O-7AwXqPzsSUVrdf3prmjtpdcOpP_yN8CBztUOQRA,2874
|
|
2142
|
+
pyrogram/raw/types/channel_admin_log_event_action_participant_toggle_admin.py,sha256=qROQ8-GL2-QChdaZQqCIGdl7s8tBADslmX9WddOYAuk,2882
|
|
2143
|
+
pyrogram/raw/types/channel_admin_log_event_action_participant_toggle_ban.py,sha256=-Y42N43UWIn9qGdKBd3s0CS78zhTs95bUYhwMED53iQ,2874
|
|
2144
|
+
pyrogram/raw/types/channel_admin_log_event_action_participant_unmute.py,sha256=GOYrBG6YTp3GSPg6pnt_ktSxwAuU9eCWF5scoR1N6p8,2440
|
|
2145
|
+
pyrogram/raw/types/channel_admin_log_event_action_participant_volume.py,sha256=xQLqpZHyzsBnAVFkQhvCqPe6O25ktHpZuPrgq_byHGo,2440
|
|
2146
|
+
pyrogram/raw/types/channel_admin_log_event_action_pin_topic.py,sha256=xFky6P8u4eJltmLrD9e09HPJfa-p5zfSge91UMzPr3M,3027
|
|
2147
|
+
pyrogram/raw/types/channel_admin_log_event_action_send_message.py,sha256=MYAjo3dlsWxBwwpUZ8-r7t6NrJ5bYODdwm-tvJ7s4no,2328
|
|
2148
|
+
pyrogram/raw/types/channel_admin_log_event_action_start_group_call.py,sha256=2nxHLbisYXqmU3UHnGvF4BSmPWq2LIrD5g_yza8_vYc,2341
|
|
2149
|
+
pyrogram/raw/types/channel_admin_log_event_action_stop_poll.py,sha256=aWdXm_H1xe6HvL_OvVn-4KeofRBNlvAKA2ceVrFbYnk,2316
|
|
2150
|
+
pyrogram/raw/types/channel_admin_log_event_action_toggle_anti_spam.py,sha256=FE6vfixBakZuXngxju9lbnT6qOeytNDRnC16Vhh0uBs,2301
|
|
2151
|
+
pyrogram/raw/types/channel_admin_log_event_action_toggle_autotranslation.py,sha256=fYf3dXXJv3Wg6o8Il1NoBhFAA_jBTpVlbyi3MRxDmZs,2329
|
|
2152
|
+
pyrogram/raw/types/channel_admin_log_event_action_toggle_forum.py,sha256=krkidoo6Qg335lPLx5DK6u4Fti73fLyiAZYacNuRZNg,2287
|
|
2153
|
+
pyrogram/raw/types/channel_admin_log_event_action_toggle_group_call_setting.py,sha256=QYwtcHlZsUWmSLzeMn47t7ipkxzalNdwXhytfeaBwyg,2342
|
|
2154
|
+
pyrogram/raw/types/channel_admin_log_event_action_toggle_invites.py,sha256=1eoe4X277skcBCqYlazjjIDTOMI9eMpRqtzrqtSzY8U,2297
|
|
2155
|
+
pyrogram/raw/types/channel_admin_log_event_action_toggle_no_forwards.py,sha256=k_T3TZYJdN_quOKZ1quSV9kWs9ux7xPjX6a01Z2B5wY,2309
|
|
2156
|
+
pyrogram/raw/types/channel_admin_log_event_action_toggle_pre_history_hidden.py,sha256=-ei2JkpIdKudPV_34VMRVQ73kBx8R_qLYU2PDVI8Qj8,2333
|
|
2157
|
+
pyrogram/raw/types/channel_admin_log_event_action_toggle_signature_profiles.py,sha256=YcsOnxgc7dIjiis1GvUAF6FAM5esw2DPPP0avC-f5GQ,2337
|
|
2158
|
+
pyrogram/raw/types/channel_admin_log_event_action_toggle_signatures.py,sha256=DjLEfYcQ-MNlWLrFV2oHp9Bqr_bbqoyp6ucp0zN3cN0,2309
|
|
2159
|
+
pyrogram/raw/types/channel_admin_log_event_action_toggle_slow_mode.py,sha256=Yd0MsPdyazotsAPISF_xytAbgxGgGtb4FHSPYKlc-XA,2552
|
|
2160
|
+
pyrogram/raw/types/channel_admin_log_event_action_update_pinned.py,sha256=eltF8vkc-67NqukgSdysh883RiJED462AJU8zOyjPOM,2332
|
|
2161
|
+
pyrogram/raw/types/channel_admin_log_events_filter.py,sha256=dqLAxDsf8LmeUNJRIjHIGObdRjF66QnPSQdE52bvZU8,7255
|
|
2162
|
+
pyrogram/raw/types/channel_forbidden.py,sha256=vcP2g2yZDCnD-5bb8NYMDDbJwXWKXUX_mh7sxDd8EtI,3901
|
|
2163
|
+
pyrogram/raw/types/channel_full.py,sha256=uvOfw_GFGHrjIclURzDbcNf8gKGAv5sTeoMl4cymGZ8,30082
|
|
2164
|
+
pyrogram/raw/types/channel_location.py,sha256=2phhYxuLmYCGTMQuXjuXP_u_CNLhHD96zuqPbmUfjIw,2467
|
|
2165
|
+
pyrogram/raw/types/channel_location_empty.py,sha256=QlmMCw1tXQqTE6RUbIVM9vS_UgKlVwfPr7zM-xZ9GvE,2027
|
|
2166
|
+
pyrogram/raw/types/channel_messages_filter.py,sha256=Z0NG0PHwCQd-XM9K4dyGrNCIaq9PDAcAf0uGw2uC5QM,2721
|
|
2167
|
+
pyrogram/raw/types/channel_messages_filter_empty.py,sha256=ZazsBE_QziPY7BMMP8Q54Yxa2W4Lz2lkauAQICXi_U8,2057
|
|
2168
|
+
pyrogram/raw/types/channel_participant.py,sha256=5-Eg_S3TC3hg_Dm4HgWmT2gxcppsj-GzuGaNTHaU2ew,3329
|
|
2169
|
+
pyrogram/raw/types/channel_participant_admin.py,sha256=rUWBjZORa_uag2B8kwWBZkzO-O-p_PVcIGgP-3R_HJc,4355
|
|
2170
|
+
pyrogram/raw/types/channel_participant_banned.py,sha256=bdp0OEeQtB_GqV__qvVEqJrDUriXB03Fsq3skNBH2bY,3646
|
|
2171
|
+
pyrogram/raw/types/channel_participant_creator.py,sha256=Z0G9VrLBLlnQ2ZL1VZ2ya3eT1s7ZQUApyCWtXJfyoRc,2958
|
|
2172
|
+
pyrogram/raw/types/channel_participant_left.py,sha256=ZAoToV7j4LiUzaia5eG7UCe36r09Hf5pLytA4fGfILo,2221
|
|
2173
|
+
pyrogram/raw/types/channel_participant_self.py,sha256=mEq_SOkfbknD5sbTcl1VANQcpwk0ikjIpTXshYkfd5E,3896
|
|
2174
|
+
pyrogram/raw/types/channel_participants_admins.py,sha256=IykcWMeoGQkbZRxSA5eOVGn8lV8kn_XZjdXSjWk6NUg,2057
|
|
2175
|
+
pyrogram/raw/types/channel_participants_banned.py,sha256=ecuqha4D9xnNP6rwpzW_X7dKhuldpPrRs7HJroacmjY,2172
|
|
2176
|
+
pyrogram/raw/types/channel_participants_bots.py,sha256=6nLWkFyNwuNaZtts9qQvns9lMdzfUN1lL2NU8N4Dtfs,2049
|
|
2177
|
+
pyrogram/raw/types/channel_participants_contacts.py,sha256=1aKXasVPUGSgEfTY-XAeZYs8b5zIbNjkgE7qNMtUP3s,2180
|
|
2178
|
+
pyrogram/raw/types/channel_participants_kicked.py,sha256=cTbT2LaI4TAci-7o2OcdPYV4TeZtLpewpwCFpi3OddI,2172
|
|
2179
|
+
pyrogram/raw/types/channel_participants_mentions.py,sha256=QQJfI26BhqBOS_moYzeMByoECqhb3JV6W-qRR8TThIs,2784
|
|
2180
|
+
pyrogram/raw/types/channel_participants_recent.py,sha256=fq5_BJaaD3isi7L-YYnUWrhisFbKgkuAucriokzc58s,2057
|
|
2181
|
+
pyrogram/raw/types/channel_participants_search.py,sha256=tCagyYvRzqnTg6rETJbXhf71IxqAV54BKzma-IlpJ8s,2170
|
|
2182
|
+
pyrogram/raw/types/chat.py,sha256=J5a9OqCRtl7ea6iQSJIYZJT9x2wMejWjhUCY09DpWJc,6686
|
|
2183
|
+
pyrogram/raw/types/chat_admin_rights.py,sha256=gcAMANfr8zULXMMlMZ4z-n48BlbXXtt8GWm9WT4KSAk,7345
|
|
2184
|
+
pyrogram/raw/types/chat_admin_with_invites.py,sha256=69awX6p5yCyjGVzeN5GWA1nr1IDxlm44lxFcDbNnAQc,2831
|
|
2185
|
+
pyrogram/raw/types/chat_banned_rights.py,sha256=E6u3EtU3ohBvxeAdX3cPLEstnxBURTReLQAgMouqIPk,9032
|
|
2186
|
+
pyrogram/raw/types/chat_empty.py,sha256=ZhjsfO9xmBGAekassXHvTZRcbzSylJpnrN7B6PIWj1s,2101
|
|
2187
|
+
pyrogram/raw/types/chat_forbidden.py,sha256=tq3FFRBfgNt5986rDHxdDoxb3kuZNseyqayH2Qd3o24,2315
|
|
2188
|
+
pyrogram/raw/types/chat_full.py,sha256=FRDf9B2pdWG7yAFzm8sFysRF4AMEEv9b_q221sojWaI,10442
|
|
2189
|
+
pyrogram/raw/types/chat_invite.py,sha256=0jm3pQjIr504xMGhYcTDDNRx1FTkRCO_irh7oxZOj7U,8342
|
|
2190
|
+
pyrogram/raw/types/chat_invite_already.py,sha256=8E5SnZdZrrpTTu8QqvUmOWpKF26j2r72Uwu3enmnCPQ,2401
|
|
2191
|
+
pyrogram/raw/types/chat_invite_exported.py,sha256=xc2pbybjKMQso4z2Oo9xc_RZWRfmXD7nzCqBWUxRbDs,7249
|
|
2192
|
+
pyrogram/raw/types/chat_invite_importer.py,sha256=LSTOaqTa_yCn8FIZGs-msvQnWRJFSvG0sSn843RYMGw,3808
|
|
2193
|
+
pyrogram/raw/types/chat_invite_peek.py,sha256=-r4mWQxWI4_142JxtNjjH4VTt52FunHwy-0VwCIYqzo,2607
|
|
2194
|
+
pyrogram/raw/types/chat_invite_public_join_requests.py,sha256=CxKntjeH-o5YTnvjJyIBYSXQTt1BeNU4a0Kx861oTOE,2271
|
|
2195
|
+
pyrogram/raw/types/chat_onlines.py,sha256=9GqDgXV0SIERMl0bOn6GrBkehLKYq4bkYZehRzbc_kg,2361
|
|
2196
|
+
pyrogram/raw/types/chat_participant.py,sha256=XsvWy73ItC2H_6nn4FvbBaGiB_b_HETomBzlKr4d0nI,3008
|
|
2197
|
+
pyrogram/raw/types/chat_participant_admin.py,sha256=oiBD3k7QxH_jN1p4vKfVNdmcYCV4CNFX8dAXkiTFKJ0,3026
|
|
2198
|
+
pyrogram/raw/types/chat_participant_creator.py,sha256=rd65S6FutQB3VqLLY5SkX718ZEaNsBnbRNOI2cJF8c8,2597
|
|
2199
|
+
pyrogram/raw/types/chat_participants.py,sha256=JncdfLuXgwnMLCHyGYLdkq-kHbZj85pyuQTgoRLdohc,2772
|
|
2200
|
+
pyrogram/raw/types/chat_participants_forbidden.py,sha256=6kQgM4dl_qz_rkV1dcOQPFtp6c3R1kud2gAjUZHyZHs,2826
|
|
2201
|
+
pyrogram/raw/types/chat_photo.py,sha256=_02yIE7z7WgAAehHomeZPgl7TXDWQh88Sr0jdpl0AtA,3144
|
|
2202
|
+
pyrogram/raw/types/chat_photo_empty.py,sha256=ECMfxqWurkNdRLj-GAoOJ-2HqMMyqghepzb3wa4SImw,1997
|
|
2203
|
+
pyrogram/raw/types/chat_reactions_all.py,sha256=DoR-V1RqTpAnyXaMC5IRC5T3mhK1Mxgmi4HxRTAnzAw,2319
|
|
2204
|
+
pyrogram/raw/types/chat_reactions_none.py,sha256=UE_dTv-X9rKJB3wzx3LKsg3jHv_zQJv2h-18UPuTSgI,2013
|
|
2205
|
+
pyrogram/raw/types/chat_reactions_some.py,sha256=Lm0qOthnlYcuJDmwzz-tEoKjJcW5deuFJpIjFrX2CCU,2279
|
|
2206
|
+
pyrogram/raw/types/chat_theme.py,sha256=ZVTvlNhBhH6-3qQDGzxEe2zLeMgyiQDmub65mlGWvwc,2155
|
|
2207
|
+
pyrogram/raw/types/chat_theme_unique_gift.py,sha256=lHMTDmlHzXo-AoQGwnek6z8rodRMEn0rNnofqN9VcuU,2594
|
|
2208
|
+
pyrogram/raw/types/client_dh_inner_data.py,sha256=9QRErmpYlZ24gcMfGGSbwDDAQvNBrLpGvWRq8GIbFuE,2864
|
|
2209
|
+
pyrogram/raw/types/code_settings.py,sha256=Uf9EuxXMPF2HqJGrVjt6gMXojr2RBD9sxlpq5lW_9kE,5254
|
|
2210
|
+
pyrogram/raw/types/config.py,sha256=eOsZOyAafaVQ7o19578KUyej9R5UyvWGvZdkvBSFnMo,19257
|
|
2211
|
+
pyrogram/raw/types/connected_bot.py,sha256=sybua-hI91d3bGa9WXqpEv_cOKvxt6UMEWRPwIXf7Gc,3949
|
|
2212
|
+
pyrogram/raw/types/connected_bot_star_ref.py,sha256=p5VXUz_9KcGbr-ue5_g8myBv5w6x7xRrVlurZ4IRWqI,4154
|
|
2213
|
+
pyrogram/raw/types/contact.py,sha256=Mb2la4yghbc-xjcLZ6FiC02wuZSC0HSk8zoj8Odoptw,2344
|
|
2214
|
+
pyrogram/raw/types/contact_birthday.py,sha256=l2BiKpv6pVT7RXlNFVx9E1oIAdk3Ntht4r3B6NoBQB8,2490
|
|
2215
|
+
pyrogram/raw/types/contact_status.py,sha256=4XHSrYiQyGMNuVXM38y0bDoqFUsc1f7AUFNvRMjCFgY,2647
|
|
2216
|
+
pyrogram/raw/types/data_json.py,sha256=E1cmY4rwhkWk_p-S1TZslW4iGess2OEeskCIwHkzTng,2396
|
|
2217
|
+
pyrogram/raw/types/dc_option.py,sha256=TKakbA-nvlvqd_W3cEtkVsw4GOvdoY0JwNNUD5j1hQM,4584
|
|
2218
|
+
pyrogram/raw/types/default_history_ttl.py,sha256=1S4hHf4d6LVTcESXD6cdVP6Z1Z1ll5YHM-SgOCw4ui0,2392
|
|
2219
|
+
pyrogram/raw/types/destroy_auth_key_fail.py,sha256=eUsU20bjfloFJKu9yJgQ94E4UINzNOEptsJ-LN6HynI,2219
|
|
2220
|
+
pyrogram/raw/types/destroy_auth_key_none.py,sha256=GBv2Ja0d-_EhNr1Rf6yXW6YE6FscAk9S2X9fxSyP7wA,2219
|
|
2221
|
+
pyrogram/raw/types/destroy_auth_key_ok.py,sha256=XF_r7v-4m8OR3dxNoL88ROUpoLOcmlJjhfD6IYDN4e4,2211
|
|
2222
|
+
pyrogram/raw/types/destroy_session_none.py,sha256=4j-S2zd7u9GsJlJbHEo_AN2VpvvXsPFifTJmgNVyV3Y,2420
|
|
2223
|
+
pyrogram/raw/types/destroy_session_ok.py,sha256=Vrtn2BqIy8bf_B626r5NQJYdTJ7D_OO_hYMyV3WjdSw,2412
|
|
2224
|
+
pyrogram/raw/types/dh_gen_fail.py,sha256=1Gz5iSQ3FFUuNdNSMK-S-ut6KboZXQKUOM0NT2XTQbQ,2928
|
|
2225
|
+
pyrogram/raw/types/dh_gen_ok.py,sha256=6hBxkAnhppyHGJkKcNqEAIHuSKwrXDbM33SvTQ61j6s,2920
|
|
2226
|
+
pyrogram/raw/types/dh_gen_retry.py,sha256=Y863z09Xy8i1lQixScOfYACyhymhm6ogqO5E8CU0yYE,2932
|
|
2227
|
+
pyrogram/raw/types/dialog.py,sha256=OCkMY-LS1nryWV_ZZw4HK1CFLajbYThEVJB1D_6TnT0,7310
|
|
2228
|
+
pyrogram/raw/types/dialog_filter.py,sha256=K75P5zydYok1TseS53wirzG4w357R0O9A64SDNT71NY,6961
|
|
2229
|
+
pyrogram/raw/types/dialog_filter_chatlist.py,sha256=C1dz6Pi3YeCJW-pAhbBQFll-YLbg17pgxOWgQ2_TPsg,4603
|
|
2230
|
+
pyrogram/raw/types/dialog_filter_default.py,sha256=XS432Ij-ygY8LD4YAW9rh-PZmEVibIRKS9KyqLdQf40,2020
|
|
2231
|
+
pyrogram/raw/types/dialog_filter_suggested.py,sha256=4oCkYX1qpjh5pk9N4dXTwsw3ajCWy5L8R37zC5gJECI,2740
|
|
2232
|
+
pyrogram/raw/types/dialog_folder.py,sha256=BsGpFn8yeUqXx7WKm4a0V3b-Q44N6TJoR8vZrdx-cXk,4556
|
|
2233
|
+
pyrogram/raw/types/dialog_peer.py,sha256=B_ImUwRr1nxgKMrsAo7W1P6YFk2uVHXGJaaaT4tyu70,2378
|
|
2234
|
+
pyrogram/raw/types/dialog_peer_folder.py,sha256=aY25bCUHl2soghQ_0CCrZ2ar8pS6TAjuAKnoxMJSToQ,2408
|
|
2235
|
+
pyrogram/raw/types/disallowed_gifts_settings.py,sha256=bRMP3ktTC2hmNW8sT2JwMd3fTtwGpSB6rmKqTiQY8p8,4262
|
|
2236
|
+
pyrogram/raw/types/document.py,sha256=fnEcYcye5BziTW6ALNzHNtzSV3GVLTEBteK54eK8XtA,5135
|
|
2237
|
+
pyrogram/raw/types/document_attribute_animated.py,sha256=jnATPFOD-0saRdospwxzEAQoKz3gf9ZXqV4ZK9GWrg4,2049
|
|
2238
|
+
pyrogram/raw/types/document_attribute_audio.py,sha256=XJ_4_RZBCotekp8AxjD6ZrR1sbIZiKZHUHbzfBNpZqM,3654
|
|
2239
|
+
pyrogram/raw/types/document_attribute_custom_emoji.py,sha256=j_S_b9SZbEZ0Rx-71IRdyZ1cmemSlYOXz5wrROOGysc,3101
|
|
2240
|
+
pyrogram/raw/types/document_attribute_filename.py,sha256=HnrryrFa-nD7c75QVS-5LCQuM94uzv-Wh9xb3rIWEnY,2236
|
|
2241
|
+
pyrogram/raw/types/document_attribute_has_stickers.py,sha256=CwTwMtYzNpxNRVS1H2QkVgIRgFqgUyIwQ31dh_rCGns,2061
|
|
2242
|
+
pyrogram/raw/types/document_attribute_image_size.py,sha256=TX6Jgw6N-idV_h_i4-vROANaqRlebgYjXyg62DXtf6Y,2334
|
|
2243
|
+
pyrogram/raw/types/document_attribute_sticker.py,sha256=vl9yqg7rtw5ibyMpaBVcSonY1eDcMA8kNjlDq4BJd-E,3275
|
|
2244
|
+
pyrogram/raw/types/document_attribute_video.py,sha256=Tk2ejUYCjdpLOa389tjUFrReIkDKb0lW4NtAvVD_zIk,4955
|
|
2245
|
+
pyrogram/raw/types/document_empty.py,sha256=ovUpbGMU3yKV-gDG-yfJWAqPehdGRQUnaZG3O4CZlGA,2444
|
|
2246
|
+
pyrogram/raw/types/draft_message.py,sha256=ulnzYyNLARyAx1NDl4iu0sHybbVoDVMRWKU6_1yBTq8,5759
|
|
2247
|
+
pyrogram/raw/types/draft_message_empty.py,sha256=uxD2GYOQoKMN6KUAb0xyYOz2KLP1gWTy-3lZBpYxNxE,2355
|
|
2248
|
+
pyrogram/raw/types/email_verification_apple.py,sha256=uAMaR4JpGzMr88CVhSNkRONDMcZ_0uPxCkgON8tDlUY,2188
|
|
2249
|
+
pyrogram/raw/types/email_verification_code.py,sha256=srmYQ5jdudZEmKI7C2wXPCEV81YUwD5mJ1w3l5tWI5w,2175
|
|
2250
|
+
pyrogram/raw/types/email_verification_google.py,sha256=sCR0S6Q6GtYPB3vnhfbUdVld5127paCd9H6KXOZbKE4,2192
|
|
2251
|
+
pyrogram/raw/types/email_verify_purpose_login_change.py,sha256=lOA9L4TJhlJO0ThcjaZcpodnY-tlQCaZuBUPLuG5j-I,2066
|
|
2252
|
+
pyrogram/raw/types/email_verify_purpose_login_setup.py,sha256=dHzxy4Qa5xGF-mP922CSUwkudXduFZ42LBjVWMwlKLY,2564
|
|
2253
|
+
pyrogram/raw/types/email_verify_purpose_passport.py,sha256=YU689oi0RSinIX8cmXpCME_PHFxYWPLD5ZCl8eUFy-0,2054
|
|
2254
|
+
pyrogram/raw/types/emoji_group.py,sha256=WyagRpfhpJgGRhN7hQxKdKuMOhKpSX8NiYz4XDFse98,2682
|
|
2255
|
+
pyrogram/raw/types/emoji_group_greeting.py,sha256=uhk0r5tyFfajeWmmmjLlKW6FojJpBvy1iEjAXqMcknc,2714
|
|
2256
|
+
pyrogram/raw/types/emoji_group_premium.py,sha256=-iD5KjzGCwv5svRENavd2jid2TPLSv1T-FTamJlOL1w,2434
|
|
2257
|
+
pyrogram/raw/types/emoji_keyword.py,sha256=1wI6cfdcOu5tqHhpUQIBv99ES-j0zGWcvmYKVLzQQBU,2435
|
|
2258
|
+
pyrogram/raw/types/emoji_keyword_deleted.py,sha256=miCdTTE_2AkjPCKx9o1-l2pOKHT1bl94b9F8fNJiA7c,2463
|
|
2259
|
+
pyrogram/raw/types/emoji_keywords_difference.py,sha256=qiV5J-QRvtYI_kQ1SPSUyzjl7iLbOh2Pz16Rh0M-Q7o,3293
|
|
2260
|
+
pyrogram/raw/types/emoji_language.py,sha256=yzEsJdXmj0mE0J1ovjdlKA3X9tdp8naBaexnAvXvQ8A,2402
|
|
2261
|
+
pyrogram/raw/types/emoji_list.py,sha256=_zeKrfoeMwQBLNsVRIMuPRvIsGqHBTf0GmjuqkfW6j0,2828
|
|
2262
|
+
pyrogram/raw/types/emoji_list_not_modified.py,sha256=Sa3N1N7jHIoQ9zF9n6zYGU6Fy0DF5jC-x2RP0jS6lU0,2428
|
|
2263
|
+
pyrogram/raw/types/emoji_status.py,sha256=vOiL4DU3J_9SvEkXqFXGlxSqRivAdjZIS4JKUtggYYo,2598
|
|
2264
|
+
pyrogram/raw/types/emoji_status_collectible.py,sha256=W0THS9t2wknFPi9mOYyLzGZN4aXlDsLsMeD4ES_CZ8U,4667
|
|
2265
|
+
pyrogram/raw/types/emoji_status_empty.py,sha256=buA_LHD3lWeemYv28jYsaLTPmLFVwZC0k5iYFyHNYb0,2007
|
|
2266
|
+
pyrogram/raw/types/emoji_url.py,sha256=E-i9aNCBt4WNu7Juca14l5QgjEk8dC_Mk7KIHHZs0DQ,2309
|
|
2267
|
+
pyrogram/raw/types/encrypted_chat.py,sha256=7eBdzue3-0l0bv5iMoD94KENd-RsU9PHNfV9Mgt0EGw,3853
|
|
2268
|
+
pyrogram/raw/types/encrypted_chat_discarded.py,sha256=61zJIfEyuk-1SSe19CEJvcoi9DcNj-YWzhMPjSSE6yI,2792
|
|
2269
|
+
pyrogram/raw/types/encrypted_chat_empty.py,sha256=xcGJyatHUpbQMRhgtawttA1_iVnhcmrSqf6X00Pj3ss,2392
|
|
2270
|
+
pyrogram/raw/types/encrypted_chat_requested.py,sha256=fOri7Hv-gEyh8st26UqI_OGjEaScacyaMPkVlO9P0i4,3996
|
|
2271
|
+
pyrogram/raw/types/encrypted_chat_waiting.py,sha256=lNw06Wlf-jT5VJMBLAf-Y9BcgqcUX5MUfIZATE84pXE,3362
|
|
2272
|
+
pyrogram/raw/types/encrypted_file.py,sha256=Th65xhmE8ET50AL5546gyTsczsPeqG-lgDV3od1mrUg,3279
|
|
2273
|
+
pyrogram/raw/types/encrypted_file_empty.py,sha256=V62RxVqGtiHrT6cO4b-OTlMJyKs8L6bNlKQQGEffLRU,2229
|
|
2274
|
+
pyrogram/raw/types/encrypted_message.py,sha256=cHUuVontPzeLdFfnXSEVVUEtJWkh-1JaZNDSKmWUlrQ,3078
|
|
2275
|
+
pyrogram/raw/types/encrypted_message_service.py,sha256=980L2fOaJMLQbfUZdf6hPN-sqNalejVroEQMrRIXJi0,2840
|
|
2276
|
+
pyrogram/raw/types/exported_chatlist_invite.py,sha256=n6OPtwpyEPVGK9yExofztsXVAQykLY-6bdrbB7JuQjs,2898
|
|
2277
|
+
pyrogram/raw/types/exported_contact_token.py,sha256=6OX2_c6q4hzwKkV2wgCoEFOi73eqpV4akQoenLqmpz8,2594
|
|
2278
|
+
pyrogram/raw/types/exported_message_link.py,sha256=saK4cJU8dMQloPA7A47r_Iw-KqiX7d-NIXvsPPKJZHU,2568
|
|
2279
|
+
pyrogram/raw/types/exported_story_link.py,sha256=wk-jQc2cmdWOhpNLy3PFHxhlDpDo7UOV2_nm5LeDzao,2366
|
|
2280
|
+
pyrogram/raw/types/fact_check.py,sha256=YSLUG7KoSHcr9bnxwf6grOTjW_IACXtxP76qEhq86cY,3475
|
|
2281
|
+
pyrogram/raw/types/file_hash.py,sha256=LSsX8VJgvk0Iq3yoLtEOWF70O6xO-_S8xltCZkSQUPk,2803
|
|
2282
|
+
pyrogram/raw/types/folder.py,sha256=8xoBUsSwsGDX6whoUD87ISQTywGDt42PdVMJP53OSys,4005
|
|
2283
|
+
pyrogram/raw/types/folder_peer.py,sha256=-hUcgBx0_UgtddOvcNq5DySadGoqsMTwcdcuPga_Xpg,2401
|
|
2284
|
+
pyrogram/raw/types/forum_topic.py,sha256=rzL2dAVNViGoKGKgNKdbx2r9XimTbeqYnpMiGvzSO7M,8299
|
|
2285
|
+
pyrogram/raw/types/forum_topic_deleted.py,sha256=9O-CFo-DbwWbUvYa5ApqYrwbE_wXqvcR0UNtwSMiGB0,2134
|
|
2286
|
+
pyrogram/raw/types/found_story.py,sha256=Q7E5zI7J4hiDwSK_xN_B7j_9mPF_XRUdGcCa9i5m_-s,2424
|
|
2287
|
+
pyrogram/raw/types/game.py,sha256=dQyDVOgkEvww-tVlr9Eo-HB0hmuZeWi7SxALLP9QB6w,3762
|
|
2288
|
+
pyrogram/raw/types/geo_point.py,sha256=-W6YjSxDjyzQgPiu6I3bJAK3xPDi6eeSA0IxbtxT74c,3092
|
|
2289
|
+
pyrogram/raw/types/geo_point_address.py,sha256=Ccx5KcEalogKxS4K6srNu6svydrzjiF4i1SsNhTmKsY,3328
|
|
2290
|
+
pyrogram/raw/types/geo_point_empty.py,sha256=tnjCBXMVYV2ODi2UwxxrBHCFVUuCuq0oUPuVeIhzL8E,1992
|
|
2291
|
+
pyrogram/raw/types/global_privacy_settings.py,sha256=avbZeTcUtezKJK7fHwMPGEjV4SGi69H3qCZKJtAHkPs,6063
|
|
2292
|
+
pyrogram/raw/types/group_call.py,sha256=GPw4KoAIz5IEMfuYF9OqyP22Ata90wTAOBGHL0hyhUA,11415
|
|
2293
|
+
pyrogram/raw/types/group_call_discarded.py,sha256=o0Vf1ijnDnRnWgJjXr8LRGeozz1upwpPb00Nx3P3S6s,2626
|
|
2294
|
+
pyrogram/raw/types/group_call_donor.py,sha256=PrfamvgOf1oOgdc81oL_7IVvMiuHXDJOdb--aClltSE,3072
|
|
2295
|
+
pyrogram/raw/types/group_call_message.py,sha256=FqOkYRbAX8NBCc-zch9dQy-OZzFQF4CGppBM2qLXjp0,3732
|
|
2296
|
+
pyrogram/raw/types/group_call_participant.py,sha256=uBPsHRplMJ6DOn6bGsuOGEWmaBgYIBB6NikWQHxcejs,8705
|
|
2297
|
+
pyrogram/raw/types/group_call_participant_video.py,sha256=SreuZgwQjiyHckfjJ1nZfVQtpI9W2pqBqMslhawAhDU,3432
|
|
2298
|
+
pyrogram/raw/types/group_call_participant_video_source_group.py,sha256=UrhP6DPd4-n7izGU9eczMdT7klDhnFNWw2Lftct1C4I,2557
|
|
2299
|
+
pyrogram/raw/types/group_call_stream_channel.py,sha256=NCPchh2b2XdCWpXuxY5oq8MbJnbj752esCsTUmK8PqA,2724
|
|
2300
|
+
pyrogram/raw/types/high_score.py,sha256=s40VRexgbeOxQ3rc4cX0jWMmvKVLQ-2Dr7fmxNJieAw,2533
|
|
2301
|
+
pyrogram/raw/types/http_wait.py,sha256=24FO51WKAlcNCDiF6smJ2-MfPZT2d_JMrhDu0_zgVMs,2633
|
|
2302
|
+
pyrogram/raw/types/imported_contact.py,sha256=c8UYh1cXzUKjbFNrh5qfm4iRE-ukws6g2xSfgRBlHXk,2420
|
|
2303
|
+
pyrogram/raw/types/inline_bot_switch_pm.py,sha256=LG_ZNS-vYpFJEqFf46o1ewQ5dMgoYOudNh2F0-FRDkc,2411
|
|
2304
|
+
pyrogram/raw/types/inline_bot_web_view.py,sha256=JieQpeJjjxUtZbumrcMCAEfwgO0jPi_f2b4HKJetlSY,2334
|
|
2305
|
+
pyrogram/raw/types/inline_query_peer_type_bot_pm.py,sha256=BPKffY7W3WJ9KEUfjNSF4wrZ7i5b3gxYckQjJIdguZc,2045
|
|
2306
|
+
pyrogram/raw/types/inline_query_peer_type_broadcast.py,sha256=NeBOQcOvxTNqZOyc1Ylk2wEoWQcBQBr4fnOPPRD5mi4,2063
|
|
2307
|
+
pyrogram/raw/types/inline_query_peer_type_chat.py,sha256=JEyKt21shQWIrpPq0ynsDK34KN1I7vJAA9-eK091rGY,2043
|
|
2308
|
+
pyrogram/raw/types/inline_query_peer_type_megagroup.py,sha256=uqQk2dfQqKk0QZlgN7Y-pVe2hEGQ6uCLzvf5ONItS_s,2063
|
|
2309
|
+
pyrogram/raw/types/inline_query_peer_type_pm.py,sha256=RHc8JssEyDc4Y_zj9BE3sMPT-K2wj4Ynf5bH0itBK_c,2035
|
|
2310
|
+
pyrogram/raw/types/inline_query_peer_type_same_bot_pm.py,sha256=Vpw_uxQvruNnSqK-t3LXxb-bZ_uoYa_gS6HiIh5yj_M,2063
|
|
2311
|
+
pyrogram/raw/types/input_ai_compose_tone_default.py,sha256=K6scLAHBS1KJMrVE_OGAj1s8NkHpfW04MKfbwLwmvxM,2192
|
|
2312
|
+
pyrogram/raw/types/input_ai_compose_tone_id.py,sha256=DtdNoVMG90kSul2boa_mizgrFg3Z5gW1p0Ki2YdUNfA,2414
|
|
2313
|
+
pyrogram/raw/types/input_ai_compose_tone_slug.py,sha256=EgF-VFN353GjQOTVjNrf_FqAuSUbIbqo7wZPYrZDBDM,2180
|
|
2314
|
+
pyrogram/raw/types/input_app_event.py,sha256=38wzz-Zcca-h9ctIBDBjW3NEHVDJpiJIdzMlh3BAxiY,2787
|
|
2315
|
+
pyrogram/raw/types/input_bot_app_id.py,sha256=SMkLi-fU0kuEsUZw2Ol_IsrNeZZMnqWKwkSD0rff4jU,2381
|
|
2316
|
+
pyrogram/raw/types/input_bot_app_short_name.py,sha256=YdDhTPoNHirI5gt8DCix4uDPRPKZAdqD9jI9a3IPAUQ,2487
|
|
2317
|
+
pyrogram/raw/types/input_bot_inline_message_game.py,sha256=KPkZWJAF2B_s2q6GqM41OZUAmpVUhMj3URA2_mPtsm4,2550
|
|
2318
|
+
pyrogram/raw/types/input_bot_inline_message_id.py,sha256=TiMIBJMPSQ2nSzTM1t4rwP6U2HFUsWG8h9qlqj9EWAI,2847
|
|
2319
|
+
pyrogram/raw/types/input_bot_inline_message_id64.py,sha256=9hnFjjPt358sY_KK23dTh4jCXgy9OME3_xS-8ueYYHA,3082
|
|
2320
|
+
pyrogram/raw/types/input_bot_inline_message_media_auto.py,sha256=60eMjeKwwJuv4aW_bcWs4j7m2xYQjqpIc4JLltau1g0,3579
|
|
2321
|
+
pyrogram/raw/types/input_bot_inline_message_media_contact.py,sha256=HbLzRiQbyvlncJxnhj3mi0rq9SFBqJ78kzUX64TPdV0,3518
|
|
2322
|
+
pyrogram/raw/types/input_bot_inline_message_media_geo.py,sha256=jVQW_wKL4ys4hH4nGFE7md8X-1Elax_wVheRjp0X3wI,4242
|
|
2323
|
+
pyrogram/raw/types/input_bot_inline_message_media_invoice.py,sha256=8FjBK_KRBGI5d57HHa94a4cedwXf-BQKqv1wA7Gqi4I,4512
|
|
2324
|
+
pyrogram/raw/types/input_bot_inline_message_media_venue.py,sha256=mE9-mvRHuTnT5XbBxohcdJwD5psORHPywvABxfxApMI,3992
|
|
2325
|
+
pyrogram/raw/types/input_bot_inline_message_media_web_page.py,sha256=-kZgOyBaiDhmY_pvqVQGeEvN1m4G4nC8zd4AgnQ3tN0,4761
|
|
2326
|
+
pyrogram/raw/types/input_bot_inline_message_rich_message.py,sha256=kcy2tY3J3o1VtZNHXd6MpwopLzASZI6mcYy-Krg-fjo,2928
|
|
2327
|
+
pyrogram/raw/types/input_bot_inline_message_text.py,sha256=JJkxhbMZXGktL3FTeVSOWJVkEHfop7rAxT4qbkCORB0,3853
|
|
2328
|
+
pyrogram/raw/types/input_bot_inline_result.py,sha256=WoPjGlv35-a0xwSBCLTCVUgdhtnv_dAh1u15lv80FLM,4772
|
|
2329
|
+
pyrogram/raw/types/input_bot_inline_result_document.py,sha256=Mztx9-S4UMKn-TAwbBChcMHqwDHiPzP-_0Si8YIWfKk,3868
|
|
2330
|
+
pyrogram/raw/types/input_bot_inline_result_game.py,sha256=iRTKcSvkg40NSX_eAz4L5gFZBVA7R-NgJSiAgQMDEaE,2785
|
|
2331
|
+
pyrogram/raw/types/input_bot_inline_result_photo.py,sha256=sAGalBaR0DALK3Zdv0thUeqFqkjSZ97xvKXGxXbZdLk,2998
|
|
2332
|
+
pyrogram/raw/types/input_business_away_message.py,sha256=aPbvNnVGFv1aedEO0zFwoV_msFfKJ6J4SOgVzQqdHYQ,3334
|
|
2333
|
+
pyrogram/raw/types/input_business_bot_recipients.py,sha256=SA20qYSHvMJhA3bf7EbFSZ045YRFiQ0TWN8Kf7-0H58,4563
|
|
2334
|
+
pyrogram/raw/types/input_business_chat_link.py,sha256=_h_Rh9E3Rc5aimBawnbzs9QO1IXg-2Y94dAmP6htbII,3086
|
|
2335
|
+
pyrogram/raw/types/input_business_greeting_message.py,sha256=_sDiJi0_hkW8QcA1IjA3q-2Q8EB0hsPO6-BDcX5wdeU,2936
|
|
2336
|
+
pyrogram/raw/types/input_business_intro.py,sha256=E4U-tplqwwwChMk2WLQwcD3-RlRDsyYoDk3oDvXRorc,2920
|
|
2337
|
+
pyrogram/raw/types/input_business_recipients.py,sha256=xPb0ImZbk-PHaMA0S_fcFg7G23b-yF3fjrPrEmem2fs,4028
|
|
2338
|
+
pyrogram/raw/types/input_channel.py,sha256=f8qRRzFwJ2ljqcDZCuvs47eaN7Os_Vney4RxOl-v_0M,2450
|
|
2339
|
+
pyrogram/raw/types/input_channel_empty.py,sha256=mGrha7Be5cdH_veE5Uj9VTE_jR4Dl-2cFfKwMI1XcSs,2012
|
|
2340
|
+
pyrogram/raw/types/input_channel_from_message.py,sha256=FONegax3oqlwwPjR73gDGIX_8-BRjUEbYAJWtNKtp7g,2696
|
|
2341
|
+
pyrogram/raw/types/input_chat_photo.py,sha256=LQRW_ApizlS2bndOKUV-OXn-BkuuWD2sZBcjuDQ7uUU,2191
|
|
2342
|
+
pyrogram/raw/types/input_chat_photo_empty.py,sha256=L9eSsWqTXmE6QytSQRbZH2gFhE3yHrfBAO8rDoiaQYg,2022
|
|
2343
|
+
pyrogram/raw/types/input_chat_theme.py,sha256=g0Z1K_-EGxiKnXk1IJSQo0Jsmy62VBKOKJKMKqbivuo,2180
|
|
2344
|
+
pyrogram/raw/types/input_chat_theme_empty.py,sha256=lZPiZ95CxhSjxKwQwGXo3y2hXYiGTLFCdozmF7fy91k,2022
|
|
2345
|
+
pyrogram/raw/types/input_chat_theme_unique_gift.py,sha256=ZMEsv5EkYAKyjJvo0yUzBkF-d_AZOxkNFsZOPASaXSU,2184
|
|
2346
|
+
pyrogram/raw/types/input_chat_uploaded_photo.py,sha256=I-SlH49QZe7JV_gaKrVrhb_jxU1G_mVD8ZjBM4R9rw0,3874
|
|
2347
|
+
pyrogram/raw/types/input_chatlist_dialog_filter.py,sha256=wU6Ee0h3wI07X46gVaX8N4BejBzurbze4msf5uZ4TNk,2234
|
|
2348
|
+
pyrogram/raw/types/input_check_password_empty.py,sha256=yGGz-VAeuJcgDn22J7eF5rPIZh6a1W91U2OqNfA4Dtk,2045
|
|
2349
|
+
pyrogram/raw/types/input_check_password_srp.py,sha256=gfiSKgtWjb_WVVGhJnM1yOaeRgo_VdiDabzLDDflET8,2537
|
|
2350
|
+
pyrogram/raw/types/input_client_proxy.py,sha256=abH1MJ8comkrWOMUbSIq-NVXByNG3Fzr_ffanDddMT8,2372
|
|
2351
|
+
pyrogram/raw/types/input_collectible_phone.py,sha256=rkAPvHmQa6MvlGjEh7j9AlK9xBpVYNk_vYr35wMCnjE,2183
|
|
2352
|
+
pyrogram/raw/types/input_collectible_username.py,sha256=0HMr5hdO9H7okhQQ8dXExWW9Ihbo7a3jSrfhCYSseMM,2222
|
|
2353
|
+
pyrogram/raw/types/input_dialog_peer.py,sha256=OpDeT9YHWvIPrtXgujsVH1SxI70IaZhyt6hz5TvPlnw,2210
|
|
2354
|
+
pyrogram/raw/types/input_dialog_peer_folder.py,sha256=dJR8ZF765qqZ7nA6gmJZy1lcPs2LzOeGGeXqwwOBBpE,2220
|
|
2355
|
+
pyrogram/raw/types/input_document.py,sha256=WPR4pQP0ZgXC2HSK5z2aGxf49aCt1-1uwI-9ODPZiEc,2663
|
|
2356
|
+
pyrogram/raw/types/input_document_empty.py,sha256=ovYE1mAylLhOYmqB4scaGmzfo9o4z3jpEmh38FpC0Pg,2017
|
|
2357
|
+
pyrogram/raw/types/input_document_file_location.py,sha256=LkD7_fn6RLwIK8YWmnj5JAusAG472ornxStkvDGBOlY,2958
|
|
2358
|
+
pyrogram/raw/types/input_emoji_status_collectible.py,sha256=KAV5c4jMYHfiIVjSjpS47aX4WaiLMoCsOm-0n6D_dCI,2687
|
|
2359
|
+
pyrogram/raw/types/input_encrypted_chat.py,sha256=zZAs1XgnANccTm78AKKeF02nJGpsvUPbp9Y1GbYPRsw,2450
|
|
2360
|
+
pyrogram/raw/types/input_encrypted_file.py,sha256=qtWWMbsNUV39ECr9lU9lnBNSTIE9s5liwOIQeQZgNoo,2408
|
|
2361
|
+
pyrogram/raw/types/input_encrypted_file_big_uploaded.py,sha256=8L5-NQ61jSRFHwwhapGjpf6yhqiiD5nK2vNP15H_LHs,2685
|
|
2362
|
+
pyrogram/raw/types/input_encrypted_file_empty.py,sha256=d08eG72fqGWQ1BvsFvtPN5-oprbp4rdDBlH1Dm4MLh0,2042
|
|
2363
|
+
pyrogram/raw/types/input_encrypted_file_location.py,sha256=_Y7wjoVYpjvAGA3kcqNQG99ZF-q04dchkj3TpCFebuw,2439
|
|
2364
|
+
pyrogram/raw/types/input_encrypted_file_uploaded.py,sha256=egLpeGksSV7Iyg1Wh8HZVVRvS6HF3fzzl6WsCyfvJeU,2934
|
|
2365
|
+
pyrogram/raw/types/input_file.py,sha256=76QGiZHdA2Es7P0u-WpTY85guJ9Ca0dmJeNAirwebvs,2756
|
|
2366
|
+
pyrogram/raw/types/input_file_big.py,sha256=QLO-XGyPK3Tq0FgZCeclLrfAtfyKE9pVRUelNdwWYhk,2507
|
|
2367
|
+
pyrogram/raw/types/input_file_location.py,sha256=IIl2kn8q0I8D37LAWBpT4k385nhQvS7ibocfi5q8MX0,2928
|
|
2368
|
+
pyrogram/raw/types/input_file_story_document.py,sha256=6oKE3Ie6Pts_XherCxluV325cvU5rfSZ6Ehn_oxS2Vs,2230
|
|
2369
|
+
pyrogram/raw/types/input_folder_peer.py,sha256=wWO98xGQaekRB8IoAcIKLzmv5qavfVQZiH3InCvdyvk,2446
|
|
2370
|
+
pyrogram/raw/types/input_game_id.py,sha256=OJhQbO3xT6LhjNn4XMxVO3BEn8cbOi_WQB2PVkYaTGU,2369
|
|
2371
|
+
pyrogram/raw/types/input_game_short_name.py,sha256=EBE546YG4vRSScb0eNXvOz0AvDTmyL9Wo7NCtHAZzgM,2477
|
|
2372
|
+
pyrogram/raw/types/input_geo_point.py,sha256=D5swH3G963gjJMdAs6K1xhMZzNqbF448wJLUtnCa0II,2860
|
|
2373
|
+
pyrogram/raw/types/input_geo_point_empty.py,sha256=j68d0nzcM6IUb7LChHIYTcLBx4qxUGuGHMxewkpPFV4,2017
|
|
2374
|
+
pyrogram/raw/types/input_group_call.py,sha256=Gm6RMymQM-hbQK-xkq5d3Bw_8e3Z_L0xl-ykRrv4k04,2388
|
|
2375
|
+
pyrogram/raw/types/input_group_call_invite_message.py,sha256=U5DdNXeEe-yHlIq5jVXosrbRejjjOh_CCmhxL5Lra_o,2216
|
|
2376
|
+
pyrogram/raw/types/input_group_call_slug.py,sha256=PvCgoaV9lC667HIFh5F7toguctVagXh6OtpG__y528M,2160
|
|
2377
|
+
pyrogram/raw/types/input_group_call_stream.py,sha256=DN6OVTF8UmtuXtEsj9QeNfuo4EVXNAYKsDsxpH-UugE,3604
|
|
2378
|
+
pyrogram/raw/types/input_invoice_business_bot_transfer_stars.py,sha256=5bCnLmsvIEeb-6z4LyjhD0o2iQu0e6EpjDvP_u07kbk,2485
|
|
2379
|
+
pyrogram/raw/types/input_invoice_chat_invite_subscription.py,sha256=qBHQSU8t4T-Ds40k2qq0sf3vXCbTs4kg_SXr4RjKO4I,2222
|
|
2380
|
+
pyrogram/raw/types/input_invoice_message.py,sha256=YUZrKl9VgX0Y9rRG5TijpGbfrbzsKVHrUuMB1U6QMzs,2432
|
|
2381
|
+
pyrogram/raw/types/input_invoice_premium_auth_code.py,sha256=aiDGKX7MQdtqpdF6Ktpe8Bfg_f1N3GfeSxG04AC6gEA,2342
|
|
2382
|
+
pyrogram/raw/types/input_invoice_premium_gift_code.py,sha256=4f0Xo_-WjYSynScMBCYIj2RYJHw0E9rSIU6la69b5Jk,2658
|
|
2383
|
+
pyrogram/raw/types/input_invoice_premium_gift_stars.py,sha256=tyQ0bAsXOTUPV6_v6YI_KEkOF6w75I_4utv7KNI1poo,3004
|
|
2384
|
+
pyrogram/raw/types/input_invoice_slug.py,sha256=MEjCdJIOwuq7tIV8FK9I9iSmNJ0ewqtIE6LCmR9Ev2Q,2150
|
|
2385
|
+
pyrogram/raw/types/input_invoice_star_gift.py,sha256=BqLrDFvdOPa8eIBKfmt6STNpSW3yb-zQkQ3vAJJoNQk,3581
|
|
2386
|
+
pyrogram/raw/types/input_invoice_star_gift_auction_bid.py,sha256=L9OUhUrI2ZTxUvnh6I0m1Ad17RI2pb1tuk5QHlAwfwM,3977
|
|
2387
|
+
pyrogram/raw/types/input_invoice_star_gift_drop_original_details.py,sha256=yfAfti_0Y1LoyQgQxR_KvmMXWOey3cJuZeM00rV-uBU,2373
|
|
2388
|
+
pyrogram/raw/types/input_invoice_star_gift_prepaid_upgrade.py,sha256=5erMsgDmQtXhG4_455pSz0Dg1vo9hSs-Q29eI0DWrEw,2472
|
|
2389
|
+
pyrogram/raw/types/input_invoice_star_gift_resale.py,sha256=DznaKR-tCmiTJ4wZQNKVebAgG6v0lVEc5S3C-qSYwes,2725
|
|
2390
|
+
pyrogram/raw/types/input_invoice_star_gift_transfer.py,sha256=wsIV-e67XVIIhhF99WN2QDSkyRH4YZ3Hg7ymNdB3N1Y,2590
|
|
2391
|
+
pyrogram/raw/types/input_invoice_star_gift_upgrade.py,sha256=_mmFM07OpPiuwp9hcx5MDQOaAZdBviM9UXrrpE73FCA,2765
|
|
2392
|
+
pyrogram/raw/types/input_invoice_stars.py,sha256=HBt0jSXAXl0TuOhhoHVtXUlvNIFLVbtE-_swfcHqfPI,2302
|
|
2393
|
+
pyrogram/raw/types/input_keyboard_button_request_peer.py,sha256=6G-l2o2Thg4Pr7IKtSIlEGVT5ovA3sf35U7IpGXvHf8,4775
|
|
2394
|
+
pyrogram/raw/types/input_keyboard_button_url_auth.py,sha256=tujvtVB1A0LJYFfqGz_Ilm8mg26Cd_Ry66Cn17_1z9k,4100
|
|
2395
|
+
pyrogram/raw/types/input_keyboard_button_user_profile.py,sha256=i7PjNIXalwFVSSqDbvHKwqJWot7PfVP7CX0df1p9M3E,3201
|
|
2396
|
+
pyrogram/raw/types/input_media_area_channel_post.py,sha256=Rmj-x1ngyXt5JK1y-iVoGAl5Ne1MpRqNMvxqpwOaAU4,2849
|
|
2397
|
+
pyrogram/raw/types/input_media_area_venue.py,sha256=u_ClwKvFB-6uPINVnUykC_qqzTeNTcVQwhYQdGqU_LI,2791
|
|
2398
|
+
pyrogram/raw/types/input_media_contact.py,sha256=aO66XmwBvK_Zz4UXYi60ci6DQU1bTzEAqsq_ann7tNI,2899
|
|
2399
|
+
pyrogram/raw/types/input_media_dice.py,sha256=-aMzEbwhOG7KWEVc1uZ1wBo0K33_As-O_E220xkiUdg,2176
|
|
2400
|
+
pyrogram/raw/types/input_media_document.py,sha256=Jd1Y8Ay3hNapMeOmGp7oaz5LkpwLoCFdNbpapjZLykU,4253
|
|
2401
|
+
pyrogram/raw/types/input_media_document_external.py,sha256=RiC8TMu695yaIKzv5dOtaL41hQ90-e0wkBcRF-ioXxM,3863
|
|
2402
|
+
pyrogram/raw/types/input_media_empty.py,sha256=dxjbXvRZ-h_SmTOs2y3HJJGbASyUrwc54xHYEw-sOJk,2002
|
|
2403
|
+
pyrogram/raw/types/input_media_game.py,sha256=DdqyWE6yoaNZdGwD5hI6umjOB1GKbuoPEjizhjDQ1n8,2183
|
|
2404
|
+
pyrogram/raw/types/input_media_geo_live.py,sha256=IyT4mUwWGJwykoMXo3k3vvajMoypbIqtWmy-zON_t6U,3951
|
|
2405
|
+
pyrogram/raw/types/input_media_geo_point.py,sha256=W-OQ1MQBvF4ioYtm2Z5BKNqmcKp10Zdpa7573voO_aM,2278
|
|
2406
|
+
pyrogram/raw/types/input_media_invoice.py,sha256=6i0Ng2TT9UV8r5CvbETr_upOKbWO1XldO64kzG3Z-Lk,5037
|
|
2407
|
+
pyrogram/raw/types/input_media_paid_media.py,sha256=XGM6gUYFBhft_yvLsDtT4VWxbNi7p42zC9IzMAWud_Y,3024
|
|
2408
|
+
pyrogram/raw/types/input_media_photo.py,sha256=-qI3ot0jR2V7_SkKsXKPvEDhtWEBi6YGYxkzKt7cic4,3649
|
|
2409
|
+
pyrogram/raw/types/input_media_photo_external.py,sha256=zSSWxsF9f6ezgrvvbMQ1Bw-gqIgfWWclM79whzYAtoE,2901
|
|
2410
|
+
pyrogram/raw/types/input_media_poll.py,sha256=zzftMb6_srldNpHjltvAiOjEdraba-2AH8VsnyIAlv0,4728
|
|
2411
|
+
pyrogram/raw/types/input_media_stake_dice.py,sha256=hN1H66bW28l8mm3TR8dP__aKI6wKqwPbVeQpFj29nRE,2706
|
|
2412
|
+
pyrogram/raw/types/input_media_story.py,sha256=XL9PbcVYw79gzjgwxx4yNE5ynl0u-Y7Uw5iJDt67mIM,2378
|
|
2413
|
+
pyrogram/raw/types/input_media_todo.py,sha256=7xwq4OERrsURXtyujI86GokU9CQFI8GWw-gbICzs9x4,2197
|
|
2414
|
+
pyrogram/raw/types/input_media_uploaded_document.py,sha256=ZORULHeNA_61T1ivraBeEZSt0lAx9B7zMtuNdzphm7E,6033
|
|
2415
|
+
pyrogram/raw/types/input_media_uploaded_photo.py,sha256=hWkWyXDiLOsGq1ojgV5Brf3mBgLytHP85vMzNDYvoYQ,4176
|
|
2416
|
+
pyrogram/raw/types/input_media_venue.py,sha256=trt04IxSs6Top66THMjrdiSrLj1QCVik177-uGNlpRQ,3373
|
|
2417
|
+
pyrogram/raw/types/input_media_web_page.py,sha256=AoxXp2hUcCXosQwVjQ88F0D8zRV-ww-PAHf3kpnTKs4,3178
|
|
2418
|
+
pyrogram/raw/types/input_message_callback_query.py,sha256=WSiDY3ZzBxcnWZDb0aPwQZsHrIXfm1PRWMYqjWQ_AZE,2400
|
|
2419
|
+
pyrogram/raw/types/input_message_entity_mention_name.py,sha256=99pOW7gvIjDSAGID9I6GluVCbly8530xrVYq3njJGTg,2709
|
|
2420
|
+
pyrogram/raw/types/input_message_id.py,sha256=MjvVq80arAcMnIbCpGH8cjSID3sZlqG1aeYzG6Q1pEg,2126
|
|
2421
|
+
pyrogram/raw/types/input_message_pinned.py,sha256=VyYsgs5H_bVvJcQ5F9pwDqUuHIbxYmORMzAIAVUdFOc,2016
|
|
2422
|
+
pyrogram/raw/types/input_message_read_metric.py,sha256=VfJnPLrG4TDdfSNFhl4oVUvTQ8A9QO4goGxKK6emoMk,3900
|
|
2423
|
+
pyrogram/raw/types/input_message_reply_to.py,sha256=6iJKr7_5w5tVb9xxzR9cjZvV1j6WGRZ-7QW2rcSo81Y,2146
|
|
2424
|
+
pyrogram/raw/types/input_messages_filter_chat_photos.py,sha256=9TR1Crjf8jMZFdY5mA9UBxk_TPMatL_PYjrM4yeYit4,2062
|
|
2425
|
+
pyrogram/raw/types/input_messages_filter_contacts.py,sha256=BFC5H5XvLccGBSpTM8f9nUYsKB8p1IXG1Br7djVf3MI,2054
|
|
2426
|
+
pyrogram/raw/types/input_messages_filter_document.py,sha256=02-Z78tv4IcO9drEzi0ri0cwJqZEmnrVwehF9ZMiyq8,2054
|
|
2427
|
+
pyrogram/raw/types/input_messages_filter_empty.py,sha256=SmqFmAVDH1qjMzzDhjVEQxMCTr0wg1D1MorEdlz88SA,2042
|
|
2428
|
+
pyrogram/raw/types/input_messages_filter_geo.py,sha256=2Iaa2L1LFsv-3kjWAmIKdZM2kt-qJ2kBsb9l3r-sTzA,2034
|
|
2429
|
+
pyrogram/raw/types/input_messages_filter_gif.py,sha256=ajd806lT0LgiHUGSjAdtzuu8utUGbC1J5ZSIatwvCEQ,2034
|
|
2430
|
+
pyrogram/raw/types/input_messages_filter_music.py,sha256=s50MV1NXmvViNaG38gcEaG_3j90LSMHu_yNTnx9w1k0,2042
|
|
2431
|
+
pyrogram/raw/types/input_messages_filter_my_mentions.py,sha256=9wgFaM5k3ptxCJ5amaM5VqNhU96hjTJWhQJdcRKZlrM,2062
|
|
2432
|
+
pyrogram/raw/types/input_messages_filter_phone_calls.py,sha256=SeUvrH5ssSGdkKWth9VhPYMvh4w8xUCVv736HVJlgUA,2318
|
|
2433
|
+
pyrogram/raw/types/input_messages_filter_photo_video.py,sha256=P15v4FMESjat9TM_QctbFv9996MYvg0WECGMXR51iNQ,2062
|
|
2434
|
+
pyrogram/raw/types/input_messages_filter_photos.py,sha256=U2jzOuPCoyZdU3NoNnpeHU7z8yn5dZowEDCWn4kWkd4,2046
|
|
2435
|
+
pyrogram/raw/types/input_messages_filter_pinned.py,sha256=xexisft4NaU-v2TUZeuqgbIFKSejGTxgmtp_G4Bot68,2046
|
|
2436
|
+
pyrogram/raw/types/input_messages_filter_poll.py,sha256=3D6NRFoybywRTX1lhDiPFmloEMNA2fdBa8fPDb6eMcU,2038
|
|
2437
|
+
pyrogram/raw/types/input_messages_filter_round_video.py,sha256=_dY5cKogVGj3pgf8Ye31mqeCOFWxWCtCT7DNKuEjaAg,2062
|
|
2438
|
+
pyrogram/raw/types/input_messages_filter_round_voice.py,sha256=70QnwvNsmUzkvZMqJKnGoErtUUqhyVhqz2fAbJdTOVo,2062
|
|
2439
|
+
pyrogram/raw/types/input_messages_filter_url.py,sha256=cGlqYieq4ipOvliT0KmeQQEThFxSPSXmmgSKx1H8ZRQ,2034
|
|
2440
|
+
pyrogram/raw/types/input_messages_filter_video.py,sha256=pGsSt7mv2SP3unhSosxWQdajJxW0IR_YSUI0AsWEnak,2042
|
|
2441
|
+
pyrogram/raw/types/input_messages_filter_voice.py,sha256=K9G3tVB67ASzQoKm7SibgHtQkmSeclbGuUxaFNALJqQ,2042
|
|
2442
|
+
pyrogram/raw/types/input_notify_broadcasts.py,sha256=McmBkDaio2BT8r1Qd4h5hJZi03vSsjma9WP-h_avnC4,2031
|
|
2443
|
+
pyrogram/raw/types/input_notify_chats.py,sha256=XfGewSNMslzYLHW-W2HQLoAkdq5HJgwqulvtNOYiJL4,2011
|
|
2444
|
+
pyrogram/raw/types/input_notify_forum_topic.py,sha256=TUEtcy-SP4AvWyOHQ0Dz3_9Kx2sZClqfbFAJCh760dE,2479
|
|
2445
|
+
pyrogram/raw/types/input_notify_peer.py,sha256=V2WLI5Y0vIi4iTHo7uGNBInN9N8iEYmQuSOJCHvHF7k,2210
|
|
2446
|
+
pyrogram/raw/types/input_notify_users.py,sha256=uM-G8LjFsvxiAiTaJxDNLac5TK7J_Hlul0ZWb51225Q,2011
|
|
2447
|
+
pyrogram/raw/types/input_page_block_map.py,sha256=acihYP7qjGEoxB-zTdb-9NeYPDjuoEG7zraIgbzJx84,3023
|
|
2448
|
+
pyrogram/raw/types/input_passkey_credential_firebase_pnv.py,sha256=NJwmcrbekjfXmTYtRdLLqeRsxrto0eCVUhVEcSm8g3w,2273
|
|
2449
|
+
pyrogram/raw/types/input_passkey_credential_public_key.py,sha256=nO1QJEWC3bB6_w7M7DnBrrj9MNycxNY56iLO4G3zHb4,2739
|
|
2450
|
+
pyrogram/raw/types/input_passkey_response_login.py,sha256=_3TZsz-5zn2fP-2Q5RWWWb_6-rqQGjE6BWTATBEZr_Y,3117
|
|
2451
|
+
pyrogram/raw/types/input_passkey_response_register.py,sha256=irbPBMsUQV_BYUudPrAgYVZNQQf_cB_fHqmtmWOoHpc,2624
|
|
2452
|
+
pyrogram/raw/types/input_payment_credentials.py,sha256=ZB7Nii6nXZsxqKhbwRvMl_wx42drhusXH4NBFpI1Be8,2531
|
|
2453
|
+
pyrogram/raw/types/input_payment_credentials_apple_pay.py,sha256=I6aiqoomBf_UyhWXLTZhqAmmcfOK9KEVpB5_i9AoolQ,2348
|
|
2454
|
+
pyrogram/raw/types/input_payment_credentials_google_pay.py,sha256=TYoAYVp1YLbiSzuqVpKd4UrGQAVW-4OX-aa3nEqHveE,2363
|
|
2455
|
+
pyrogram/raw/types/input_payment_credentials_saved.py,sha256=T8tN941T7UqvS_XyyI3ZRWTLnnvYvjrTihb0brTtnMI,2453
|
|
2456
|
+
pyrogram/raw/types/input_peer_channel.py,sha256=bSkVKD-WEzLcoFefRqEXOkX-kOhUPgRZWow4S3NvTjk,2463
|
|
2457
|
+
pyrogram/raw/types/input_peer_channel_from_message.py,sha256=9xuOY3LBEwymhJjszGgj89VHtj4ZctdV8-yWnD9IJjo,2709
|
|
2458
|
+
pyrogram/raw/types/input_peer_chat.py,sha256=-qjTkiXHi_7Zkw3pixoQRWXGevuRfcd2LBQDgZYyLU0,2167
|
|
2459
|
+
pyrogram/raw/types/input_peer_color_collectible.py,sha256=EjARcg1Qx-ClEPJ7vZH9lGZDgT2dd4mzdOgxyK9ZKc0,2278
|
|
2460
|
+
pyrogram/raw/types/input_peer_empty.py,sha256=jiXcPeVXbRTUjPV97dIFxLRIfrW1ps_I6yicMQQEcrU,1997
|
|
2461
|
+
pyrogram/raw/types/input_peer_notify_settings.py,sha256=Qk4Jh_uJa73l_QiXejYkiG_dZ6o15peDPgByPjv2P8U,5177
|
|
2462
|
+
pyrogram/raw/types/input_peer_photo_file_location.py,sha256=0PokXbgbOdpOdd4IA2Mj9sxHh2RFXVfRRDjUsAmjSZ4,2762
|
|
2463
|
+
pyrogram/raw/types/input_peer_self.py,sha256=_46N54vZ4AIf3O557EeWFFEnVjGca7W-zhn882j_Qhw,1993
|
|
2464
|
+
pyrogram/raw/types/input_peer_user.py,sha256=esdtXSmIzLCMnTd0tl0gZDpxBLtchyPvxk7pA2S0450,2424
|
|
2465
|
+
pyrogram/raw/types/input_peer_user_from_message.py,sha256=aJ9ayjFgZ0yrP-_yFPSt50WcDYcFgOG2hCNC_LGwPss,2670
|
|
2466
|
+
pyrogram/raw/types/input_phone_call.py,sha256=h9iAj7ZGE_oOyLlPBLr5bfTaBugYpv-evQWOSp0Xi_s,2388
|
|
2467
|
+
pyrogram/raw/types/input_phone_contact.py,sha256=rDaO2jLF8juTRBaY-kM49TA17UD-_F-mm4V-bLdg8ec,3355
|
|
2468
|
+
pyrogram/raw/types/input_photo.py,sha256=Sc4yHEHnYGUXy7gbY1Erl8LjyH2qH_HhAUVlG_8ftqo,2648
|
|
2469
|
+
pyrogram/raw/types/input_photo_empty.py,sha256=CFLj0TVKU4xbSwgWwInQFVjOnXKbavIU2xdNB7bdVI8,2002
|
|
2470
|
+
pyrogram/raw/types/input_photo_file_location.py,sha256=y7BMewPrPohRegxsCHHvhn86nSZnS660_zjTg7jDWc0,2946
|
|
2471
|
+
pyrogram/raw/types/input_photo_legacy_file_location.py,sha256=rh1_egOC4yUTR9bHckd5ePO23qLdhQgEXzROStOIcpE,3405
|
|
2472
|
+
pyrogram/raw/types/input_poll_answer.py,sha256=6bhR5qj7zadoj85Pj8ZaWX0nBkaPJ_eTVYEiHxuF09U,2696
|
|
2473
|
+
pyrogram/raw/types/input_privacy_key_about.py,sha256=fcg44UaCVLYU1crkh5ZMYHWEnZnzHH3QgPN4sriK0a4,2027
|
|
2474
|
+
pyrogram/raw/types/input_privacy_key_added_by_phone.py,sha256=jeNBTSqJLOX8LKZkp2qNWp8DC-8uE4K-4bjvnDlC0pk,2055
|
|
2475
|
+
pyrogram/raw/types/input_privacy_key_birthday.py,sha256=R0a5xtmrv0Zi1lv8mCt-Onvo6nmxlVoBSOMMVY9TA3o,2039
|
|
2476
|
+
pyrogram/raw/types/input_privacy_key_chat_invite.py,sha256=XSfmsPgxHJHLL7dTY8F7UV2ehXeDDol96_JGPwdZ3n8,2047
|
|
2477
|
+
pyrogram/raw/types/input_privacy_key_forwards.py,sha256=vhWLRwgQr7YIz766iOQhOd_IFYAyGl4YwxDfHGnSDf0,2039
|
|
2478
|
+
pyrogram/raw/types/input_privacy_key_no_paid_messages.py,sha256=xGzBrD5ohdzGL0oWl9VWQowHxqzJhUmOKfcdtHOncJ8,2063
|
|
2479
|
+
pyrogram/raw/types/input_privacy_key_phone_call.py,sha256=-yRW37Ed17Sq-wGVP0SxJ5QwRjdcqcbuLllgxBXnDQ4,2043
|
|
2480
|
+
pyrogram/raw/types/input_privacy_key_phone_number.py,sha256=p5RcnApEzCjfBui_5CcWvFLfpvWiDTthn0wbU2QWbZg,2049
|
|
2481
|
+
pyrogram/raw/types/input_privacy_key_phone_p2_p.py,sha256=Ij1-RvwMN4ZzorFZvHHg4Iry7Kn-pgMbfq8Eqz67V7Q,2039
|
|
2482
|
+
pyrogram/raw/types/input_privacy_key_profile_photo.py,sha256=5pEmRKfO6TIK1jX6DBtTm9LXCZzwxJx6la1kiB_6YZc,2055
|
|
2483
|
+
pyrogram/raw/types/input_privacy_key_saved_music.py,sha256=IRWl1kqipGOLo7VAcUWXWIr5YCZXnFpmMzGnMKWtHtI,2047
|
|
2484
|
+
pyrogram/raw/types/input_privacy_key_star_gifts_auto_save.py,sha256=T4pN94BYTgFxAyv8WDI6GgakaLZf1fIyG85HTaNCdbc,2075
|
|
2485
|
+
pyrogram/raw/types/input_privacy_key_status_timestamp.py,sha256=cNZkQrvhZbyrD6PzjFhRLTy0PRIoSU5RI6vyzbW2kDI,2067
|
|
2486
|
+
pyrogram/raw/types/input_privacy_key_voice_messages.py,sha256=vGEvm77DCRhjlm_Kbliqf4I69yuDDHESED8NKHdXAIc,2059
|
|
2487
|
+
pyrogram/raw/types/input_privacy_value_allow_all.py,sha256=bqeTpodMKFB5J0IT7JwXg4NIOPXFHqGLJPoQxPouM4Y,2048
|
|
2488
|
+
pyrogram/raw/types/input_privacy_value_allow_bots.py,sha256=NlESu1IH9HQ58jgKEMcoEAKum1fRYg3oUKSehJeibqY,2052
|
|
2489
|
+
pyrogram/raw/types/input_privacy_value_allow_chat_participants.py,sha256=lFSS0BCbNbwbBluI_Dy1p9F3XecBqbBU88WbjD_gmrg,2296
|
|
2490
|
+
pyrogram/raw/types/input_privacy_value_allow_close_friends.py,sha256=dTS1Lia-tBeHql4Dy4cONQrpgpxVoeekaLaoO_rQP18,2084
|
|
2491
|
+
pyrogram/raw/types/input_privacy_value_allow_contacts.py,sha256=xsyAw-HmyQ5oFwtc1Ifj40wNjD_ppWSJUTMU8TqBn_I,2066
|
|
2492
|
+
pyrogram/raw/types/input_privacy_value_allow_premium.py,sha256=xTIgf03cnh-kYH0qJANOP2IZR_uXtTVTNU0NZD2948k,2064
|
|
2493
|
+
pyrogram/raw/types/input_privacy_value_allow_users.py,sha256=7KicwxYwz19eT2BEznmJsY3cjQUd221Ba3KcjXaKRiE,2290
|
|
2494
|
+
pyrogram/raw/types/input_privacy_value_disallow_all.py,sha256=qoFKMexuxA5DlSdJlLgi6LdmJYzMYiVEev506EHPSZo,2060
|
|
2495
|
+
pyrogram/raw/types/input_privacy_value_disallow_bots.py,sha256=Rm7_A1NRaWlEztHsgKt_hjPrH6gQUzfp-D0cXO87xrs,2064
|
|
2496
|
+
pyrogram/raw/types/input_privacy_value_disallow_chat_participants.py,sha256=4x8QI_J-9I77y1BbMm2Ot3qDDjk9j61xqKjWtDk8ARo,2308
|
|
2497
|
+
pyrogram/raw/types/input_privacy_value_disallow_contacts.py,sha256=a2fC6hC-OtIeX-PXjgulLuWWlO1mzSF2_9jFDWnXTdw,2078
|
|
2498
|
+
pyrogram/raw/types/input_privacy_value_disallow_users.py,sha256=vtHV93UIOefudqupfUbwoBfwtoY2bEQUvKgDiog_AU4,2302
|
|
2499
|
+
pyrogram/raw/types/input_quick_reply_shortcut.py,sha256=dX_pVK8HHSh1yEyfVUHdU3KQgZqcxNbzcPOPx_WWCpQ,2225
|
|
2500
|
+
pyrogram/raw/types/input_quick_reply_shortcut_id.py,sha256=PPs12y6KjnqQG6m_UJ3b1zPjeIqTJ7tx8_qRQM_qqsU,2260
|
|
2501
|
+
pyrogram/raw/types/input_reply_to_message.py,sha256=tYOthpvWt601p67a8_btyRCiMfLHMoDaXTX3KxJdwq4,6043
|
|
2502
|
+
pyrogram/raw/types/input_reply_to_mono_forum.py,sha256=wu0C5h8UUZdGTNJQdiGT9jQhTlJW7-81Ucms9t7AQ1o,2348
|
|
2503
|
+
pyrogram/raw/types/input_reply_to_story.py,sha256=suYrH33lFDfgfnFdhFMJQGpHXMQtIUslR5a4aKgkqIQ,2442
|
|
2504
|
+
pyrogram/raw/types/input_report_reason_child_abuse.py,sha256=gZvuH1y2mJlJZGx1GAFlhdomoJUNHeQylQx6W4NzcU0,2052
|
|
2505
|
+
pyrogram/raw/types/input_report_reason_copyright.py,sha256=ZtnbYb4SQ87wklUuozsuA9QIIBhQBZPp3_vtiKOrRmw,2048
|
|
2506
|
+
pyrogram/raw/types/input_report_reason_fake.py,sha256=EEuynCtjohSu-2G-14XduZU_txUxYtnH-vetpJ5nb1Q,2028
|
|
2507
|
+
pyrogram/raw/types/input_report_reason_geo_irrelevant.py,sha256=iP9gHYs3_RFhn1favkKGdGL9MYjhxO5vAxotUbXd89g,2064
|
|
2508
|
+
pyrogram/raw/types/input_report_reason_illegal_drugs.py,sha256=jtKtQXKkpA-Bq_nvbiZ_qitDY5ZD_GKkmB-rxLvWQGk,2058
|
|
2509
|
+
pyrogram/raw/types/input_report_reason_other.py,sha256=sa2aQgaM11LtUycUtZwHKpyvhavClbwaGcHGVU1ivCY,2032
|
|
2510
|
+
pyrogram/raw/types/input_report_reason_personal_details.py,sha256=OtQHEWK4GpeR6xCaBCPBV6XVn0fsXz6i01ZrOsrrv-8,2072
|
|
2511
|
+
pyrogram/raw/types/input_report_reason_pornography.py,sha256=rFWlZjgkWFiDK_IHHvuShtImObwdLsiPUFF-s4U8j04,2056
|
|
2512
|
+
pyrogram/raw/types/input_report_reason_spam.py,sha256=IJGguqLml5l1Xtblq8E7s-MhsVqX-dJ7FuzLewO_TLI,2028
|
|
2513
|
+
pyrogram/raw/types/input_report_reason_violence.py,sha256=ah22uZ40SZEf8zKqAA5W1BOBk6vVVz66qhWAx5Jbjjo,2044
|
|
2514
|
+
pyrogram/raw/types/input_rich_file_document.py,sha256=Rfz8HHoLIBj6v1R1Aq4bH3cinkWDLXWeDvLvWr8lUig,2455
|
|
2515
|
+
pyrogram/raw/types/input_rich_file_photo.py,sha256=c0dvEsv2Z2RHUP2fsL4wTJgC6zBty4yl9CgBaqkshrI,2404
|
|
2516
|
+
pyrogram/raw/types/input_rich_message.py,sha256=gqqx_2ZjavFBdiNE6aWF4dHvg-YPODN-6o-4Pw2rjok,4196
|
|
2517
|
+
pyrogram/raw/types/input_rich_message_html.py,sha256=MHpFBnik7KMz0iMUU2FFH-FQ7UpRRscXJE8kNf0LmRY,3188
|
|
2518
|
+
pyrogram/raw/types/input_rich_message_markdown.py,sha256=uIq_gs67eKU2w6HYOP30aHcIvd10jnu-ItFWYDR8rCo,3236
|
|
2519
|
+
pyrogram/raw/types/input_saved_star_gift_chat.py,sha256=krBXTXXeSDrsFBGXdKDdxdWl8jul3quQsv-jHFNsCPc,2471
|
|
2520
|
+
pyrogram/raw/types/input_saved_star_gift_slug.py,sha256=5WeD6ducQdiQdAIEYuDMmjiy2tAgkcUilG_4xkxzuVw,2180
|
|
2521
|
+
pyrogram/raw/types/input_saved_star_gift_user.py,sha256=WX5nS1nmFmfro3-2ewK4Uz5Q80gWMuTzimaGQxBIKw0,2200
|
|
2522
|
+
pyrogram/raw/types/input_secure_file.py,sha256=PF4DRtyBV-X2RvGvjEQbV5_bCoDmG8dur7MrjZXVT5Y,2393
|
|
2523
|
+
pyrogram/raw/types/input_secure_file_location.py,sha256=yQ5G0JdWuojXxacwgAu7tMED9Af_zJ4ehpH3SdGTc8U,2427
|
|
2524
|
+
pyrogram/raw/types/input_secure_file_uploaded.py,sha256=81p_Tnm8RvIWHFyS5pwsIBz4wz1y0ZBW-8a0fW8KuCw,3072
|
|
2525
|
+
pyrogram/raw/types/input_secure_value.py,sha256=WpAY37I05PAWAUIvV2ynynm4d4C37_nQiJ87EG4xT7E,5619
|
|
2526
|
+
pyrogram/raw/types/input_send_message_rich_message_draft_action.py,sha256=UBCFzS5hRXyS779a0BzlNg13HBkJ4qsqHnhUSbi92sM,2643
|
|
2527
|
+
pyrogram/raw/types/input_single_media.py,sha256=ehkvH8GRoKnuVbyOpEN0EN-Ny9Nbk6UMBdDXVZed8Xg,3209
|
|
2528
|
+
pyrogram/raw/types/input_star_gift_auction.py,sha256=mYq1P7OjluS0oqKHV2xErytXZ9y3SOjKnE1bv2QuT4M,2204
|
|
2529
|
+
pyrogram/raw/types/input_star_gift_auction_slug.py,sha256=2n47KX0jUbAfUt2WLmqglEVEHnEWEuA8cPv8nb0fWtQ,2190
|
|
2530
|
+
pyrogram/raw/types/input_stars_transaction.py,sha256=gfhSCvUkGvHJesAJnwfDGtsyvV5idfVIeAF6LAuLpFw,2464
|
|
2531
|
+
pyrogram/raw/types/input_sticker_set_animated_emoji.py,sha256=zNzUROERLK5joBA4KmUIKT0rKG1b6SbslWmnbwfezzA,2057
|
|
2532
|
+
pyrogram/raw/types/input_sticker_set_animated_emoji_animations.py,sha256=Xc_AZFzIUaMR1Jvt7hAr7w771NevD8Z8INjo0YJfNDo,2097
|
|
2533
|
+
pyrogram/raw/types/input_sticker_set_dice.py,sha256=QTGMldSz_Jw5iYazl72pVIjcq6hh2wG7Uky66DtKwcQ,2201
|
|
2534
|
+
pyrogram/raw/types/input_sticker_set_emoji_channel_default_statuses.py,sha256=Sx_grARcsDsG-OsxYrKSYb7mqQZd_bRrDsQ4fUsof4s,2115
|
|
2535
|
+
pyrogram/raw/types/input_sticker_set_emoji_default_statuses.py,sha256=HlffrDT7zHAR7l2PD9zMT9SDq0r6z8a38YGMTLY0Gys,2087
|
|
2536
|
+
pyrogram/raw/types/input_sticker_set_emoji_default_topic_icons.py,sha256=zDjnKaEYIrM1Genji6U6buvLjlu3vSuvbkhKUlhA4GI,2095
|
|
2537
|
+
pyrogram/raw/types/input_sticker_set_emoji_generic_animations.py,sha256=JeDEF-2hsYRHSiVQUdMXLrprcWlG4MWP_OPeptrlWjo,2093
|
|
2538
|
+
pyrogram/raw/types/input_sticker_set_empty.py,sha256=bX7R16TtyQ47F26vHENGubXAWuQVVvv7CorhZShtV-k,2027
|
|
2539
|
+
pyrogram/raw/types/input_sticker_set_id.py,sha256=R2VrqN_MZ2UudGoeY-uMa3XO3MmX22SKev3tFcehQUA,2401
|
|
2540
|
+
pyrogram/raw/types/input_sticker_set_item.py,sha256=Svmy1CgfAySulDgHhC2sYQkB5kdH7vLbVumpqLBYMLo,3396
|
|
2541
|
+
pyrogram/raw/types/input_sticker_set_premium_gifts.py,sha256=HYIh84b4epiNQTXR79v1VAsi5I5685pdK8mzhxSrOFw,2055
|
|
2542
|
+
pyrogram/raw/types/input_sticker_set_short_name.py,sha256=XkdAjETq3l3Xv4W1P2aYB-Gn3VzBJyLQ6P6I73XPoxE,2239
|
|
2543
|
+
pyrogram/raw/types/input_sticker_set_thumb.py,sha256=fEF7epZa-7rFuQamcqZeH4JncnT_uQaXD5OKijXBgfY,2582
|
|
2544
|
+
pyrogram/raw/types/input_sticker_set_ton_gifts.py,sha256=7xW-9feH6zhpXf4tUlV2FFM43M113_UlD3TVxfvkaMU,2039
|
|
2545
|
+
pyrogram/raw/types/input_stickered_media_document.py,sha256=X1fN1ZjcAp2Pyhz_Y1MvwdCyS20obacUMndZY7263Pg,2258
|
|
2546
|
+
pyrogram/raw/types/input_stickered_media_photo.py,sha256=8OZoNoJ0e916QPPR3fVDV2ACV0wtYhSpPd3TRKzvMBk,2236
|
|
2547
|
+
pyrogram/raw/types/input_store_payment_auth_code.py,sha256=b_iMHNNYW63WGFF2aHT0ITJ07Fnk-ZK6x2Sbkjuif-w,3570
|
|
2548
|
+
pyrogram/raw/types/input_store_payment_gift_premium.py,sha256=hfE19-QeSt_63EGFjeIndSFMfcWyRLqgfsagFAEyWOY,2735
|
|
2549
|
+
pyrogram/raw/types/input_store_payment_premium_gift_code.py,sha256=81wRhzxKRNmEW-fI_dueJsWLW2miMtDEfSpL6JhRY6E,3733
|
|
2550
|
+
pyrogram/raw/types/input_store_payment_premium_giveaway.py,sha256=nhpyI9TdT97mm__7OsyPzEsrPNHNXawN81TUIFz_bjA,5593
|
|
2551
|
+
pyrogram/raw/types/input_store_payment_premium_subscription.py,sha256=VbplhoUJnDJgwGDInKIgykcyc9WTum-vzg3fing_nqA,2632
|
|
2552
|
+
pyrogram/raw/types/input_store_payment_stars_gift.py,sha256=gKHRCZIw9yFHcmimkl9NpVoVs_sni0Fc7rez8MUqUto,2930
|
|
2553
|
+
pyrogram/raw/types/input_store_payment_stars_giveaway.py,sha256=feQt6RrvK7WWUyiSb_ruGK-ZW8CnaoMUHbkf2fMcChM,5988
|
|
2554
|
+
pyrogram/raw/types/input_store_payment_stars_topup.py,sha256=3Dr5XDbyVgtygTZBeyeexxcgEKzKdrh5EKTltL72roM,3259
|
|
2555
|
+
pyrogram/raw/types/input_takeout_file_location.py,sha256=RmJmVJ3h_80qKCO_Dttu9IA7BgfF8MaCAMUvylZNpd8,2045
|
|
2556
|
+
pyrogram/raw/types/input_theme.py,sha256=ga0Z0HXeKcErhCmtPL54OW5Yz7mxBPNab3Uj1akKQdg,2368
|
|
2557
|
+
pyrogram/raw/types/input_theme_settings.py,sha256=gTwv0NC8uW_8-eZjN6V1TYAGGX2x9v7e4YAi_M9yZJo,5065
|
|
2558
|
+
pyrogram/raw/types/input_theme_slug.py,sha256=OjigzIWAbYVU_zdM0rK5nJf38ChmKjBDWnEE6rSmxy8,2140
|
|
2559
|
+
pyrogram/raw/types/input_user.py,sha256=qpSY4_mNLH_aoy6i6y0l9vLVIF80VrxD3r2qGK-1WsU,2408
|
|
2560
|
+
pyrogram/raw/types/input_user_empty.py,sha256=IHYmsVcu37BcS3zwtma8cBTNdoTejyfydSMqHInt-Vo,1997
|
|
2561
|
+
pyrogram/raw/types/input_user_from_message.py,sha256=pxEstcXfWTpsqUUNGIUtJLVqHOIqdOiqYvH80dDNINo,2654
|
|
2562
|
+
pyrogram/raw/types/input_user_self.py,sha256=0o_dX2brz_JypcK3NMEMs2yYN3FAhFyVLlYtTUSoOck,1993
|
|
2563
|
+
pyrogram/raw/types/input_wall_paper.py,sha256=hBgieo_b62nt2p0_aXnP7Z0aji986_sljgnGf6RObaU,2388
|
|
2564
|
+
pyrogram/raw/types/input_wall_paper_no_file.py,sha256=sS0hCX-Jn1eL4JaquPt-v6GzKnT6tdN_3ECw_GJandg,2155
|
|
2565
|
+
pyrogram/raw/types/input_wall_paper_slug.py,sha256=_cs2IpzSkUfYtJxq5KM5L9VCz0PDB4K6IotbmML8kbE,2160
|
|
2566
|
+
pyrogram/raw/types/input_web_document.py,sha256=kK1BeD5rSVjQVPRHT9sFmnmGtmJUZeyVs2GvnBmFxAs,2928
|
|
2567
|
+
pyrogram/raw/types/input_web_file_audio_album_thumb_location.py,sha256=DTRPzPffeyHwDvGIi7OGMrx0jOs9aXeqR0t0QkHQbkg,3554
|
|
2568
|
+
pyrogram/raw/types/input_web_file_geo_point_location.py,sha256=Pn_O8raDHnzKmqvOzhmW0FDHUPeqNsA-QwA9w8NsGEY,3304
|
|
2569
|
+
pyrogram/raw/types/input_web_file_location.py,sha256=UeIEp--vXStdlBKYJfpTm3rpppy8Qw8W12IjSkvfMrs,2422
|
|
2570
|
+
pyrogram/raw/types/invoice.py,sha256=IGJSFcFrGYEXSbbGrLden4ajCMSjPvNxAsGM6tzK_Nc,7393
|
|
2571
|
+
pyrogram/raw/types/ip_port.py,sha256=hlIxs9LJkMEVbjBzjQC8Ky2MxZ-TWlcuyQ_czijwUoU,2297
|
|
2572
|
+
pyrogram/raw/types/ip_port_secret.py,sha256=4mie8B91sanHUi5kjI164_qgr6iHxcPEH5V6zce9cdE,2529
|
|
2573
|
+
pyrogram/raw/types/join_chat_bot_result_approved.py,sha256=FKryMTh_4T0xs4ZPP1DFuG4A_Jc7jcY-i2kJWuc3IYo,2049
|
|
2574
|
+
pyrogram/raw/types/join_chat_bot_result_declined.py,sha256=ih7DlDQUL86zQb8vGWCeItpPtcZ1G20p1f9hMJLTfbA,2047
|
|
2575
|
+
pyrogram/raw/types/join_chat_bot_result_queued.py,sha256=bFYiQaPdga8mPwQlrWsvFrI0WW1vXLrVEgv522ih--A,2041
|
|
2576
|
+
pyrogram/raw/types/join_chat_bot_result_web_view.py,sha256=bfLktJC04Q3UcXywmSb5qJiv2O7RkyoTtz5dpscCLrA,2178
|
|
2577
|
+
pyrogram/raw/types/json_array.py,sha256=eZJnEuV60qCKtr0uLZss-vck_xONQRzCOnTOJocc0bo,2211
|
|
2578
|
+
pyrogram/raw/types/json_bool.py,sha256=IGF--U0ndfXjYuwTMvvngmIi1JUwcZdlViihQZtSma0,2120
|
|
2579
|
+
pyrogram/raw/types/json_null.py,sha256=i0MT7FYioFU1svE1YfOc5_VFEa78DSujJ_idHJ6U_Ns,1973
|
|
2580
|
+
pyrogram/raw/types/json_number.py,sha256=g1xWRSXKJKeyn-RhugfLPMnpEGUMIF54DVQPwfPMRrw,2147
|
|
2581
|
+
pyrogram/raw/types/json_object.py,sha256=WPRmMyxLLFToIzAsWnKd6I-rdTdFKzi_VvQlM_fPWG0,2239
|
|
2582
|
+
pyrogram/raw/types/json_object_value.py,sha256=5KboSXNVpDS_ScMBH0CpqkccecVYmn1COqykLnVmtZ0,2399
|
|
2583
|
+
pyrogram/raw/types/json_string.py,sha256=PG0OhRDiOxuUA9IeofaD3FPQZsz6MkLpQ6zQWu4sToc,2132
|
|
2584
|
+
pyrogram/raw/types/keyboard_button.py,sha256=Si3CezqiazPlSLokCIwQoJJ7TP-i_9-ziwf401YwL-A,2860
|
|
2585
|
+
pyrogram/raw/types/keyboard_button_buy.py,sha256=VSAP6JxUWSzKffCuNoHzBsWvWBKp2OdIJh9Ofio20TA,2872
|
|
2586
|
+
pyrogram/raw/types/keyboard_button_callback.py,sha256=VvIAuBRAAP1wx8-9pm1UgS2S8h6rwMOGOnh0WjIIdpk,3439
|
|
2587
|
+
pyrogram/raw/types/keyboard_button_copy.py,sha256=bWKUIaLgqIqeIwhHENNPzqczH1Bzo15EjDgCwxrMnU8,3110
|
|
2588
|
+
pyrogram/raw/types/keyboard_button_game.py,sha256=mObEe1u77BGAQ_55naiwqzgb-IGRe88ozXBGH4gKHbc,2876
|
|
2589
|
+
pyrogram/raw/types/keyboard_button_request_geo_location.py,sha256=waR4oK7_ha1RRB9mHw-JFCWgikThVURyZiSjTkBWuDI,2932
|
|
2590
|
+
pyrogram/raw/types/keyboard_button_request_peer.py,sha256=k0J_-izNp4uWCN2AVV6LWY7UQdEvaNyOuNhLhWAUn7U,3722
|
|
2591
|
+
pyrogram/raw/types/keyboard_button_request_phone.py,sha256=7No-PUiVr4KONA-b5gxnwGz2LgbaRxMI-NFjkj7cO6k,2908
|
|
2592
|
+
pyrogram/raw/types/keyboard_button_request_poll.py,sha256=atiM_9WsmnZ07OiAL2z7aVvc-M9CHFTip9gCo_ZrT2A,3243
|
|
2593
|
+
pyrogram/raw/types/keyboard_button_row.py,sha256=w8LhcwTja-deklH-UbLhd0_usRWb12fOPJ3LwKX4ox0,2289
|
|
2594
|
+
pyrogram/raw/types/keyboard_button_simple_web_view.py,sha256=4K_iGqhks83rbyJ-HK3y4LnuCpaxLJbY54PvjeHEVrw,3092
|
|
2595
|
+
pyrogram/raw/types/keyboard_button_style.py,sha256=eh6BA-YHxeqKDxnbsEiqsV7XLxApyrAl8Stg3mxXyMI,3246
|
|
2596
|
+
pyrogram/raw/types/keyboard_button_switch_inline.py,sha256=01AmakJ2vjH3ymboHc2S84S8Ow4Dwq3g-TE3tFHQhag,3918
|
|
2597
|
+
pyrogram/raw/types/keyboard_button_url.py,sha256=6PFR1y_NTRuVYU-iX36hi31OCLKj9dn_nBY3s5NWres,3052
|
|
2598
|
+
pyrogram/raw/types/keyboard_button_url_auth.py,sha256=ksn2w7FePk2dZ1DrBs0pRn5EbgTo2dVbMQYIrq5C3-g,3691
|
|
2599
|
+
pyrogram/raw/types/keyboard_button_user_profile.py,sha256=-cHMGFYb10bU5jkS94MGFup1E7WaO-Z3a6_ohruZwxM,3125
|
|
2600
|
+
pyrogram/raw/types/keyboard_button_web_view.py,sha256=Hgv4An0WD8J2EYnA7_i_x8EOfQiPdZGtdPfT0_Jbo7A,3068
|
|
2601
|
+
pyrogram/raw/types/labeled_price.py,sha256=t5h_mvyKVoxbsLtm_p4WKH7HdpZE58fm-V7-EH52Lpg,2355
|
|
2602
|
+
pyrogram/raw/types/lang_pack_difference.py,sha256=ZNFBKs0I6fKi100DFmhiWq12UoS-mnejBC0aVKeINgY,3249
|
|
2603
|
+
pyrogram/raw/types/lang_pack_language.py,sha256=frl365Lnaw1qVkNGVu91fa8Vo7Rr6dm5PXMvZEw4Vwo,5244
|
|
2604
|
+
pyrogram/raw/types/lang_pack_string.py,sha256=cypaU6eitUsbpyB9u9jxLXe1ZrZ4U6wQcjW9tlDYrQw,2536
|
|
2605
|
+
pyrogram/raw/types/lang_pack_string_deleted.py,sha256=-wXaCAKkpQgZS2TImw619o03aiBWV97s9Abx0RdK9LI,2366
|
|
2606
|
+
pyrogram/raw/types/lang_pack_string_pluralized.py,sha256=FwwU9BwD3gGBW-TmQIrm6PADJlx2YQxLjewKzPZ-4tc,4687
|
|
2607
|
+
pyrogram/raw/types/mask_coords.py,sha256=5ayXCq9oWa2g0mToZwN2iKoD8MJ8Bfl9hfs19Vh2RR8,2657
|
|
2608
|
+
pyrogram/raw/types/media_area_channel_post.py,sha256=O_U0olbm-L8H4LyCmZKYmXCzDNK1OEq3Z518I5iUyCE,2788
|
|
2609
|
+
pyrogram/raw/types/media_area_coordinates.py,sha256=TKdlCchxGIdSh6itHR-GQ5asLUpO5t2YyPZhLzNb1n8,3358
|
|
2610
|
+
pyrogram/raw/types/media_area_geo_point.py,sha256=qZEJWP4U4Q92ri5mnMmk4UnkO00vyv65r6lr-_z28sE,3061
|
|
2611
|
+
pyrogram/raw/types/media_area_star_gift.py,sha256=RH5NFUpSfmHVnQ_4P9-9ZSbfs9B011sRROygCxilwRU,2508
|
|
2612
|
+
pyrogram/raw/types/media_area_suggested_reaction.py,sha256=hKiMq_EZBNCmWRdtQF4H4e29wdZZpyrhFTd0o7vJxAc,3189
|
|
2613
|
+
pyrogram/raw/types/media_area_url.py,sha256=29N1YHblGj6qgzyHJL3WiTi1FeVaH2Mwtw0twmM0Wdw,2479
|
|
2614
|
+
pyrogram/raw/types/media_area_venue.py,sha256=OHvG9V6WRab83C3ZlGsnbEVDN66TjjL9UWMNEA-Q7mo,3651
|
|
2615
|
+
pyrogram/raw/types/media_area_weather.py,sha256=3lGk3x-qhY_dvSZPrKrXOQCS-ZOfIkQ1y4auklnvjXo,2998
|
|
2616
|
+
pyrogram/raw/types/message.py,sha256=2hUehStOIn0rUyjvTIXHZrZwkAVYbKdkQCL3Elspgok,21746
|
|
2617
|
+
pyrogram/raw/types/message_action_boost_apply.py,sha256=ofWdSABmm9njbjbsOBSq_GEwZqGMW6vVMARtb1Dtzis,2199
|
|
2618
|
+
pyrogram/raw/types/message_action_bot_allowed.py,sha256=RbeRAfbmOyWkjkFT_7m3oujP0ysugjiiACuRlIpz-ZA,3395
|
|
2619
|
+
pyrogram/raw/types/message_action_change_creator.py,sha256=TzIFJABWOaZScw32RYmd5S-eAGJfQg95bg2rol6eGuc,2286
|
|
2620
|
+
pyrogram/raw/types/message_action_channel_create.py,sha256=YvVzX6EZ0v04jPCIBP4XhIQarXi5Y84w_ZUyAHtHNjM,2200
|
|
2621
|
+
pyrogram/raw/types/message_action_channel_migrate_from.py,sha256=-MVCVLNR2cW_WhGH4QtxFzXBhVRiNYL1B3aXImFQEKk,2441
|
|
2622
|
+
pyrogram/raw/types/message_action_chat_add_user.py,sha256=s0ZskRijplL1qVuTrBuUPeyghmLYGEpz6nU69v0YARc,2237
|
|
2623
|
+
pyrogram/raw/types/message_action_chat_create.py,sha256=4AwL_V67g4Ts2B2mcWjxUHOjYbJiR2dqQzV6jA0yVPM,2431
|
|
2624
|
+
pyrogram/raw/types/message_action_chat_delete_photo.py,sha256=wHhGvW7ZUzu-FbZwPp9oQOZen6mxhutJt1-xRuCn-8Y,2057
|
|
2625
|
+
pyrogram/raw/types/message_action_chat_delete_user.py,sha256=kNPuea6QRRC_87H_UKQseSSiD_8ALcZLqSrYP_Zcbsc,2227
|
|
2626
|
+
pyrogram/raw/types/message_action_chat_edit_photo.py,sha256=aueNBvVkUe3ey81wjI9cx-kEKPFR-1PneLohRubP2YM,2245
|
|
2627
|
+
pyrogram/raw/types/message_action_chat_edit_title.py,sha256=qzV2K4keswD6RACVpDMMm5xpDa6n1C1jmxLPkmynt5o,2200
|
|
2628
|
+
pyrogram/raw/types/message_action_chat_joined_by_link.py,sha256=aCXbrSLO8nj4oImxZhhBINQ0v9Da47I8FQEEpZmDf9w,2260
|
|
2629
|
+
pyrogram/raw/types/message_action_chat_joined_by_request.py,sha256=9eiqZ1YOctqTPACOvqmRBGgqzw2_u1X3YZGkMnHt9Ew,2073
|
|
2630
|
+
pyrogram/raw/types/message_action_chat_migrate_to.py,sha256=39VOuFI_8QlEOQOpIXikxmrjm4ufaZ3v8gnoVOSX17o,2250
|
|
2631
|
+
pyrogram/raw/types/message_action_conference_call.py,sha256=aJkzT-jlle0guGgO18nfFzuNK5JNdfOCjgC_VHFNMuI,3981
|
|
2632
|
+
pyrogram/raw/types/message_action_contact_sign_up.py,sha256=u5q5BuFn1HjkACzRtawMub_Kx581PuhbTVa3LSy7zVs,2049
|
|
2633
|
+
pyrogram/raw/types/message_action_custom_action.py,sha256=1_i299QWvvxsCYsFjMbHWAVeIHSRkqA-2SJzN5tTx54,2214
|
|
2634
|
+
pyrogram/raw/types/message_action_empty.py,sha256=AoPbZ5dFsuycRy_RNSE-KKVYKUQVYcLecOlt6nvceYI,2017
|
|
2635
|
+
pyrogram/raw/types/message_action_game_score.py,sha256=6wFCK39JWm_lCtUOJtAMoG--4l4GCFCei-jvJwUTqgk,2407
|
|
2636
|
+
pyrogram/raw/types/message_action_geo_proximity_reached.py,sha256=_XsLlDUZx2s8b9rKS1U51CA0nqfI-L948-_Os0xmEB0,2749
|
|
2637
|
+
pyrogram/raw/types/message_action_gift_code.py,sha256=gsLbauC4tP7kJEiWhspb5SPjhVjBdy_GL5Ut6v5pJnM,5585
|
|
2638
|
+
pyrogram/raw/types/message_action_gift_premium.py,sha256=uG4c252-3iK6iEmw1RQXBr51ls2pD8b9o2AvBgR0Kys,4042
|
|
2639
|
+
pyrogram/raw/types/message_action_gift_stars.py,sha256=u6oW2zhn9uRhen92O2Xb28PTeM9-FYtN7W61Qss-0w8,4035
|
|
2640
|
+
pyrogram/raw/types/message_action_gift_ton.py,sha256=B3p9khbJ-_Y0Y-hZXULLYM4m8J_iK4g_dz9E74VgQ3E,3476
|
|
2641
|
+
pyrogram/raw/types/message_action_giveaway_launch.py,sha256=FCX9BJAlTrX5wD7RNWo7akaBBGXPN5ibYm203hbnJkQ,2410
|
|
2642
|
+
pyrogram/raw/types/message_action_giveaway_results.py,sha256=J94Cv1zLwkVSeCEniwuRfeBkH7yjbkcm7F2Gddrki1Y,2866
|
|
2643
|
+
pyrogram/raw/types/message_action_group_call.py,sha256=xlb7xho966Q1aCfjwx33lckV76txNfQV1yR_6-vy-6g,2690
|
|
2644
|
+
pyrogram/raw/types/message_action_group_call_scheduled.py,sha256=5286hl6STCMAMGnooyV4hpS3WiQolpWx6DnHoCzw8Rk,2564
|
|
2645
|
+
pyrogram/raw/types/message_action_history_clear.py,sha256=ke-NTxPNxiKN0HXhOUyb3r2senENXjWdu-0ruKJOmSs,2045
|
|
2646
|
+
pyrogram/raw/types/message_action_invite_to_group_call.py,sha256=BPeDmS7ig4susN7wesbKdd1MP0c_IEqfM1SHpU7fe08,2531
|
|
2647
|
+
pyrogram/raw/types/message_action_managed_bot_created.py,sha256=iHCemqqXwFhNILsMzYq24y0meCCLsM3rQBUP9GwrxrM,2230
|
|
2648
|
+
pyrogram/raw/types/message_action_new_creator_pending.py,sha256=vo07JoTeyWbwkZ_rU-_z4tcwTa1NWYNbJEOkKTM1ma0,2302
|
|
2649
|
+
pyrogram/raw/types/message_action_no_forwards_request.py,sha256=D32BfCSDjOV9CUQclMQiytvbc3iTj6o9YLLnig7o_ps,2799
|
|
2650
|
+
pyrogram/raw/types/message_action_no_forwards_toggle.py,sha256=_NySBmsXxdj0__MGWCxcJbPK7EMP4cvZ297KvBcNRxk,2483
|
|
2651
|
+
pyrogram/raw/types/message_action_paid_messages_price.py,sha256=lSiIsVKjG3POHujqajvZJuSGPw4PSw86x_vYUD9YuV4,2704
|
|
2652
|
+
pyrogram/raw/types/message_action_paid_messages_refunded.py,sha256=rtcEQWulvs6WRGOHonSQpvaoaMrHBG3joAXjetx7q1o,2433
|
|
2653
|
+
pyrogram/raw/types/message_action_payment_refunded.py,sha256=vIzX2aPsvUVtIUU0VaxjCog7vHlBdleq87UYJonxJpk,3437
|
|
2654
|
+
pyrogram/raw/types/message_action_payment_sent.py,sha256=6lYxW52z6JVjj7Py7U25zbhDmlQJshDlnXxAf2lI11A,4175
|
|
2655
|
+
pyrogram/raw/types/message_action_payment_sent_me.py,sha256=3XDOTsJ4IEGs4qRCqweXRyXuGGMz63pCOuOmCkTMCBQ,5197
|
|
2656
|
+
pyrogram/raw/types/message_action_phone_call.py,sha256=yeReV-expe7MVs6h8RGMuHPWr0QT7999U4WFgmRZQ1M,3367
|
|
2657
|
+
pyrogram/raw/types/message_action_pin_message.py,sha256=_Ox_QcYxkABFerLYTLyt3ZMO1TDsjmItCCA3EoEz8PI,2037
|
|
2658
|
+
pyrogram/raw/types/message_action_poll_append_answer.py,sha256=Zq58DUCABJnxqekoLVtzLCUD_T_79feitjnc7HwaQP4,2286
|
|
2659
|
+
pyrogram/raw/types/message_action_poll_delete_answer.py,sha256=vzFMH9DEuD_V_rAtr1KklEMwYVJNR1VAArK2btE1UYk,2286
|
|
2660
|
+
pyrogram/raw/types/message_action_prize_stars.py,sha256=YIO1jz89dqEHxuQHy7-bB-L70GOIVaRMqNaStZ5VRTY,3376
|
|
2661
|
+
pyrogram/raw/types/message_action_requested_peer.py,sha256=OKlM22DWFRKkIg2-RK-NEDTHz1LhiNnJ0HFaX0q3E4c,2499
|
|
2662
|
+
pyrogram/raw/types/message_action_requested_peer_sent_me.py,sha256=6ur1iYPJs_kCLfP-kIIn2Wm3zmzjhfJS8JAqzDm21HM,2559
|
|
2663
|
+
pyrogram/raw/types/message_action_screenshot_taken.py,sha256=kWiGpbEv3yPE4NSSuFxnOtP9Io9WAjekL34b--DrnDQ,2057
|
|
2664
|
+
pyrogram/raw/types/message_action_secure_values_sent.py,sha256=mRAjx8etU5XW6T_SiQBJcYI6gXvikOhASYUg21D73rY,2319
|
|
2665
|
+
pyrogram/raw/types/message_action_secure_values_sent_me.py,sha256=UN_nXAisHYMmNTu00eP9ehbRfXySjxw-id2XgiwcPYU,2701
|
|
2666
|
+
pyrogram/raw/types/message_action_set_chat_theme.py,sha256=hkZOOL94rQ6VTaV69GlSVNNBye99Vq_hKQi7mF6G1e0,2257
|
|
2667
|
+
pyrogram/raw/types/message_action_set_chat_wall_paper.py,sha256=S2OhCcR0tncmtp64uMojKLYO8Wk_uAj0_LZgEWhc-Oc,2870
|
|
2668
|
+
pyrogram/raw/types/message_action_set_messages_ttl.py,sha256=oE34ktlE-3G_mTPl-Bzr0V2QwSiqAJ3WcueTZBC_RaY,2751
|
|
2669
|
+
pyrogram/raw/types/message_action_star_gift.py,sha256=CgcSq0HKhsGBsCeO9ThdZQdgD9tdrJo_qYMNe_2RJQ0,9761
|
|
2670
|
+
pyrogram/raw/types/message_action_star_gift_purchase_offer.py,sha256=Zg5xuywfbTe1z1vo3NOpVeNGvV8xNXp6CLz2Xn0cgf4,3389
|
|
2671
|
+
pyrogram/raw/types/message_action_star_gift_purchase_offer_declined.py,sha256=6doG7xvnhlSnmq_0V6rmLMHH-ZWk93sXW1KBEnm036c,2891
|
|
2672
|
+
pyrogram/raw/types/message_action_star_gift_unique.py,sha256=vtV2POy4SMRsEyoB0Jqtod5zsCcj7CvlojvFdp9t2fU,9118
|
|
2673
|
+
pyrogram/raw/types/message_action_suggest_birthday.py,sha256=FfBB5QfjeCCbCOePC3tTU7YS5PcFkxhLHj2U7uQwKcE,2292
|
|
2674
|
+
pyrogram/raw/types/message_action_suggest_profile_photo.py,sha256=p1bDUFluacxfVlTpKSXL_kkWCXT4-GobBU_VAfM1AEs,2269
|
|
2675
|
+
pyrogram/raw/types/message_action_suggested_post_approval.py,sha256=ubDtW8fFUWKAKOLanYO7gy3qjiPzCo2lCc2TAnMsHVM,4013
|
|
2676
|
+
pyrogram/raw/types/message_action_suggested_post_refund.py,sha256=8imI82CPxsUrTql4y_fydGCGodBWB3n5Rb8Slpq5L9c,2410
|
|
2677
|
+
pyrogram/raw/types/message_action_suggested_post_success.py,sha256=IJrN89HeQJSOzrauT025bCjDZ-Sehg957Ac4FAr15lw,2297
|
|
2678
|
+
pyrogram/raw/types/message_action_todo_append_tasks.py,sha256=8ATsUimj5s1B3xN2X0XBlHchxDhT64DOJ5enOOnO2Pk,2278
|
|
2679
|
+
pyrogram/raw/types/message_action_todo_completions.py,sha256=lSdfmFAFxzvQZATRDHKjxwe9sYtRO4JaKk8s3UlO_i0,2580
|
|
2680
|
+
pyrogram/raw/types/message_action_topic_create.py,sha256=zpn1-U3t75Q5_4sl0yErT4xVJH4OHLIeZB8vm6EZBAc,3248
|
|
2681
|
+
pyrogram/raw/types/message_action_topic_edit.py,sha256=cWFAaFZn_5LuvrKQOLvweMxB81xxrZ3ggWdG5ZYEYbI,3554
|
|
2682
|
+
pyrogram/raw/types/message_action_web_view_data_sent.py,sha256=3K3NwHQ3tQibtQL8ivLnB81xSH93_72J8qp0vL5m_5E,2199
|
|
2683
|
+
pyrogram/raw/types/message_action_web_view_data_sent_me.py,sha256=Rr2GUR_nUPkV7R2C32Z6qOr5BzWmWbNXO_ioB3wsDtg,2396
|
|
2684
|
+
pyrogram/raw/types/message_empty.py,sha256=SacWqBSM3K5zQdtEqqYqvO8cR_z2T5PfjkrOHO33WXg,2574
|
|
2685
|
+
pyrogram/raw/types/message_entity_bank_card.py,sha256=2KMimzTku_V1LqUccIfF8wSOHJ0oMf5lDQrPgLYJcIc,2400
|
|
2686
|
+
pyrogram/raw/types/message_entity_blockquote.py,sha256=MZBQrJ5ZVQwFiyekrnrWEmk0dPtLxaFiyxkFiKEI1T0,2738
|
|
2687
|
+
pyrogram/raw/types/message_entity_bold.py,sha256=3D9TC4BUNzeAypVQvKjieOHCJIGulU6RiKD00D8rOb8,2384
|
|
2688
|
+
pyrogram/raw/types/message_entity_bot_command.py,sha256=Nv_tS0GmqtdCFt_oLNzsNCzPaQ9jb2n6POHRV3LaCB4,2408
|
|
2689
|
+
pyrogram/raw/types/message_entity_cashtag.py,sha256=qxL_Oe7WEFZCR3gPJsNKUw75iShuwzgMCwu2Z0srVzc,2396
|
|
2690
|
+
pyrogram/raw/types/message_entity_code.py,sha256=V_apdVD8yokAjd8oZ6cM5q3Tnj9fKnw-KI71NkP-RY8,2384
|
|
2691
|
+
pyrogram/raw/types/message_entity_custom_emoji.py,sha256=EK6ws_2zcgEYMLV80d3Mhu4LibRqH4bfNqb5angwTXE,2669
|
|
2692
|
+
pyrogram/raw/types/message_entity_diff_delete.py,sha256=c1rfKUJlWwu2RqtLvNfO676NyXkRq9j2WaI7GfswXO4,2406
|
|
2693
|
+
pyrogram/raw/types/message_entity_diff_insert.py,sha256=Vvb5CZykhpBDamGDq6-KKPFqR1y1hbh0oc0V26E0jaQ,2408
|
|
2694
|
+
pyrogram/raw/types/message_entity_diff_replace.py,sha256=uuYPBKkTGto8irGWOd0bj5l9bnW53s7Kdpn6b0Krh7s,2637
|
|
2695
|
+
pyrogram/raw/types/message_entity_email.py,sha256=HWBIRX7MjHiMmm6n5jCZX4gLruumfVZBFMOhWeKsnDg,2388
|
|
2696
|
+
pyrogram/raw/types/message_entity_formatted_date.py,sha256=vf7G_ERzyGJy6oDcX_OuS7dfX3UfLxnFLqMLY0qKWho,4393
|
|
2697
|
+
pyrogram/raw/types/message_entity_hashtag.py,sha256=yVhjr9mNP3vGhwWE_QcWKJym-53PXerkqhfXmAKCS9U,2396
|
|
2698
|
+
pyrogram/raw/types/message_entity_italic.py,sha256=aY9tq1Dz0FV4PUqTPHQ77C8v6-6G6RsYs-9VwD-iSxw,2392
|
|
2699
|
+
pyrogram/raw/types/message_entity_mention.py,sha256=y5vSXDp4GY5ErM3oe6wBE4kMv7GK23nFUYR6kegOxDc,2396
|
|
2700
|
+
pyrogram/raw/types/message_entity_mention_name.py,sha256=wB08iOzcUFLVCdhrQKvSb0BUFwMeoIkNX8QxKgU08rs,2633
|
|
2701
|
+
pyrogram/raw/types/message_entity_phone.py,sha256=l-MvF1dOjwD1eONmPQxPeFKeSf019VQFmwughsWFqXI,2388
|
|
2702
|
+
pyrogram/raw/types/message_entity_pre.py,sha256=iPy1rGuOrRlmRohdKKXWCEfg-W0MrO62DHHTcgwEBVg,2605
|
|
2703
|
+
pyrogram/raw/types/message_entity_spoiler.py,sha256=9LRrXfgaE44KWv61iU4pcTzgmkhrkOV2et9dcezENFU,2396
|
|
2704
|
+
pyrogram/raw/types/message_entity_strike.py,sha256=JamIiln1r7VxJtA9AtitrEhMJPgt8iGxp1AiFF2u_7A,2392
|
|
2705
|
+
pyrogram/raw/types/message_entity_text_url.py,sha256=DolGdluLAFuK2-o0inb3soIvB6f-oJNVvGxubw4BiYU,2576
|
|
2706
|
+
pyrogram/raw/types/message_entity_underline.py,sha256=qFfHygmun06fs5S9sJtWeLC-aHNi2nYg_7I3peKSf4A,2404
|
|
2707
|
+
pyrogram/raw/types/message_entity_unknown.py,sha256=kGAC0eyU8v3My7gB_hRKIfnCpyoDtMDc5KHDlgNaiXI,2396
|
|
2708
|
+
pyrogram/raw/types/message_entity_url.py,sha256=iQLN8nrj95ve_Su4tATy9JmnDxxR09Ic1PfvM_CppRw,2380
|
|
2709
|
+
pyrogram/raw/types/message_extended_media.py,sha256=Gpy6KKXuFcAkRW0mCSucJyWq6czGaGjw0IOaHDmdXfA,2256
|
|
2710
|
+
pyrogram/raw/types/message_extended_media_preview.py,sha256=0UWmcBAnOpaI7lAgKztssrc7rpuB03DEwsKyi5d2qMQ,3551
|
|
2711
|
+
pyrogram/raw/types/message_fwd_header.py,sha256=G2WMzdNHR_Hd33Q9hcI17l-XwdM4EqGT_m-RXXoZDuo,7171
|
|
2712
|
+
pyrogram/raw/types/message_media_contact.py,sha256=tBEpJqLzwLyDSnuhTlA9uUu8HH-ZtMMQzR3DtasVggw,3376
|
|
2713
|
+
pyrogram/raw/types/message_media_dice.py,sha256=5GdtWGL0DKb5ffWiWb-oIUMF-b2kADKqTnw8ByxAups,3230
|
|
2714
|
+
pyrogram/raw/types/message_media_document.py,sha256=R7PsSYK7VlBlPzQ7vMa9B3Jp2QKlbWBJCsIOChPZOD0,5881
|
|
2715
|
+
pyrogram/raw/types/message_media_empty.py,sha256=3Emh8jF7ERe3y9_cTz4ELKhmM2QnNYTCPENqHmSogUE,2258
|
|
2716
|
+
pyrogram/raw/types/message_media_game.py,sha256=KDCjqY8laHON-K0SgAPlV_c7LZOVtGXaayABXpkmw0Q,2437
|
|
2717
|
+
pyrogram/raw/types/message_media_geo.py,sha256=RRuKRbRW67I-NL5riAK4Kq9MYUVRwbyO8804Rgup85M,2440
|
|
2718
|
+
pyrogram/raw/types/message_media_geo_live.py,sha256=RIH79R7-gc3EDgEhAdA_9OG566Hf0NB1xrgCPjFDxy8,3708
|
|
2719
|
+
pyrogram/raw/types/message_media_giveaway.py,sha256=95pv1N0ZF5aOHnfYDijYbCfDJqTmeABWCX8cd77PXkA,5469
|
|
2720
|
+
pyrogram/raw/types/message_media_giveaway_results.py,sha256=mgh4M_1TY79p0uaN_MYsolfOL6bmTEXawxHaYJCDr1k,6299
|
|
2721
|
+
pyrogram/raw/types/message_media_invoice.py,sha256=gNNh_JYqCQ8zhCpZbwSJRnrfal8klMa5MR-L_-PBZpw,5569
|
|
2722
|
+
pyrogram/raw/types/message_media_paid_media.py,sha256=Pgth3vZRKL3Z59LOf74Nnzk5nZCdPdaV097GzqycUMI,2899
|
|
2723
|
+
pyrogram/raw/types/message_media_photo.py,sha256=y0bwLJqgh_98vheU2EdKvY7PA-EAuY6EMcvS-CSqPoY,4047
|
|
2724
|
+
pyrogram/raw/types/message_media_poll.py,sha256=szDEPQa65qvi1ClRRicM6YL8L0tIcb4bmFLqPfWGXHs,3292
|
|
2725
|
+
pyrogram/raw/types/message_media_story.py,sha256=GVI2fLSbv6HQV55-7sOGny96kIy7QH-3YMEK8Y44qbw,3376
|
|
2726
|
+
pyrogram/raw/types/message_media_to_do.py,sha256=CqIYxVfk7nloExddfJ3LX_B4X9OfV2DOAnvsQUhPO9o,3016
|
|
2727
|
+
pyrogram/raw/types/message_media_unsupported.py,sha256=QkiBjEm7mRfw_vIo6cuTUV9IkmI7wcgv2UkRAUXEoWA,2282
|
|
2728
|
+
pyrogram/raw/types/message_media_venue.py,sha256=Hs_fw1R8HSFtR5SWWcRGlLLXNENH2wXADN6tfSEvQpI,3555
|
|
2729
|
+
pyrogram/raw/types/message_media_video_stream.py,sha256=wDnz6YwLLuDjL6jAx34pQS8wwqaAkxgfQdJV16lFAuQ,2853
|
|
2730
|
+
pyrogram/raw/types/message_media_web_page.py,sha256=h0EAu_cTsXVOQpxK8pW8JifTztFuwuH7iVK24ZeNuDU,3745
|
|
2731
|
+
pyrogram/raw/types/message_peer_reaction.py,sha256=PJvlmWuc3eOOE-xJZdbJJt_YP2JJNDG9qZCmzhBxmIY,3466
|
|
2732
|
+
pyrogram/raw/types/message_peer_vote.py,sha256=PcT4g7Eydn9n5gkdXwS8g1i3I2u-v6ouAOag4aV3L0s,2589
|
|
2733
|
+
pyrogram/raw/types/message_peer_vote_input_option.py,sha256=lp3uImySiulHGgbF51W4XwqRUVHOgiuRUgBn0VV_vj8,2425
|
|
2734
|
+
pyrogram/raw/types/message_peer_vote_multiple.py,sha256=2swlHK6pyIfy24A_GUTHfV-9DTFrkthRmW0udThosOE,2670
|
|
2735
|
+
pyrogram/raw/types/message_range.py,sha256=TeFR0g81gHUxurAUbOZmz0UydLk3Svoz7N_sR5AZkwM,2568
|
|
2736
|
+
pyrogram/raw/types/message_reactions.py,sha256=nI2W26G66jZTiOF6ISOO6S--r64uguH2feQC144aMJA,4345
|
|
2737
|
+
pyrogram/raw/types/message_reactor.py,sha256=-EokiNJp6wUcZ1fy8FXhYxSzmuX6ttj6Ph3EUYY0hIQ,3354
|
|
2738
|
+
pyrogram/raw/types/message_replies.py,sha256=reFzqH0iaoOlGTNJYniny6LzKvVGQdEUEvbJMyZsmrE,4473
|
|
2739
|
+
pyrogram/raw/types/message_reply_header.py,sha256=ZVeZ8LcO6DCg-cGgA4B-MvfhsdyeXYQ3OBrUlOFA2QI,7995
|
|
2740
|
+
pyrogram/raw/types/message_reply_story_header.py,sha256=zHy1DvyWSCZcj6t269wiKHZSfativopEvumCLQZJ7qE,2450
|
|
2741
|
+
pyrogram/raw/types/message_report_option.py,sha256=jainY4H5fbNJbDavG3N3aD3PFN4chEmh6HGoDe6N3Hk,2377
|
|
2742
|
+
pyrogram/raw/types/message_service.py,sha256=J8fjzzSlumOA3CVqQUo9IHel1Boaumrx8VfnNQoj1_k,7180
|
|
2743
|
+
pyrogram/raw/types/message_views.py,sha256=2Qb1oHyQFUPQNh45Xa7krsnZTlp22vnNTdOjWEv-lIM,3191
|
|
2744
|
+
pyrogram/raw/types/missing_invitee.py,sha256=Fzhc6Bas8slqyapgNvHiG7aqQ_m3KNWKZRqhzBzk0Mw,3070
|
|
2745
|
+
pyrogram/raw/types/mono_forum_dialog.py,sha256=ORAWbUKERbrqVQPYYkG57x0Z8r0y-Nr3gCNbbBWS_bk,4884
|
|
2746
|
+
pyrogram/raw/types/msg_detailed_info.py,sha256=MD8-X6ABAGwv_I5diHp5TKV_7_AUSr0FHya7W1dQU3s,2856
|
|
2747
|
+
pyrogram/raw/types/msg_new_detailed_info.py,sha256=s4vVcIinb8LWCPfPr8M219BxBq76AQNi0BYP6Kkrdbk,2656
|
|
2748
|
+
pyrogram/raw/types/msg_resend_ans_req.py,sha256=3Y8jAOeFlZ1vxGzWun_WsPMh3KelrjMSSHtuEkAw2Ro,2218
|
|
2749
|
+
pyrogram/raw/types/msg_resend_req.py,sha256=a9suESdxaTmqhcXzZL1oK-CbqxeUmQTZSwoOm4_yLxU,2206
|
|
2750
|
+
pyrogram/raw/types/msgs_ack.py,sha256=gPOImvJt5IAAlWYrnpSkmekbcyNuthtAKunHL8J4CCs,2181
|
|
2751
|
+
pyrogram/raw/types/msgs_all_info.py,sha256=3-sTb_cKnDFwKR0hhsYUZkTl_5ZfgdZeuWxMelaLoQg,2390
|
|
2752
|
+
pyrogram/raw/types/msgs_state_info.py,sha256=td8z_842TA7oA5VWwS8R039oA3OLrUYW-ggHTho_dsc,2387
|
|
2753
|
+
pyrogram/raw/types/msgs_state_req.py,sha256=LmTSK-dhs4Em4Q-SmoPJGxm_QoEZXYEImsFnsEnNl4I,2206
|
|
2754
|
+
pyrogram/raw/types/my_boost.py,sha256=FVl5z6mX9AuzrAMFjCYfUHaNgez4X61XoTfbbxcmQ74,3458
|
|
2755
|
+
pyrogram/raw/types/nearest_dc.py,sha256=z-I_np5-73FS_po0Jm5HzUyjX4ON7FygcKc63vXdOrs,2810
|
|
2756
|
+
pyrogram/raw/types/new_session_created.py,sha256=jrdB_lS6dKrWSe-Kwu6BN_v3kCjJlTG0wJ1TLFn_FVI,2725
|
|
2757
|
+
pyrogram/raw/types/notification_sound_default.py,sha256=Xh_ihoWZEKsU_Wzw5oHRM6mBPAhjydJvA9ZzdNULr1o,2045
|
|
2758
|
+
pyrogram/raw/types/notification_sound_local.py,sha256=seNJpgoK8Wv0kOQ73Lufqyu-vcjl0EvAYqS-Qq2jGP4,2377
|
|
2759
|
+
pyrogram/raw/types/notification_sound_none.py,sha256=tJZk4lmcVX2RZO5uXx2dKyhRPL4XZOgo9HefzgSy02Q,2033
|
|
2760
|
+
pyrogram/raw/types/notification_sound_ringtone.py,sha256=nWhERzqdahHDy1z9i5lKpPxOjcjGmBEmecPO7RrfQzo,2178
|
|
2761
|
+
pyrogram/raw/types/notify_broadcasts.py,sha256=b_2F3kPvDplmX9faer1RvfUrDYdXCuiIOz_3JSbK0Og,2006
|
|
2762
|
+
pyrogram/raw/types/notify_chats.py,sha256=D81rozjwo0ARs1Ga1MJcm4vRULok5NG04E2QrJzXYbA,1986
|
|
2763
|
+
pyrogram/raw/types/notify_forum_topic.py,sha256=VXFW5_t-qsHhqUcvLAnyU7OLLOGdZnIzs9ON4VaHVmc,2434
|
|
2764
|
+
pyrogram/raw/types/notify_peer.py,sha256=JBDA0LXeyyGw19poYaWQdQFU1vgCByqVTZwA1BaWvJs,2165
|
|
2765
|
+
pyrogram/raw/types/notify_users.py,sha256=xoAkTM_9gq4JNu7Bz_BUD4HOelcNwEIZhbDPYjQIQUA,1986
|
|
2766
|
+
pyrogram/raw/types/outbox_read_date.py,sha256=UfAmzSf_thVlM5rU-301pEzD_esjmAIi53T2OrHExWw,2356
|
|
2767
|
+
pyrogram/raw/types/page.py,sha256=yUTmcdH5Z6z8dbSeIWIX8t0UfQuGr60LrYRguQ2seeg,4056
|
|
2768
|
+
pyrogram/raw/types/page_block_anchor.py,sha256=79MXGny8pDPmLubVoxPV9AJT50NsbN-ByrYWmst8msc,2143
|
|
2769
|
+
pyrogram/raw/types/page_block_audio.py,sha256=12DdYlvTsQ-uIXNVdqy4ZbbFduEYDFIbaSlWQACZ4ts,2465
|
|
2770
|
+
pyrogram/raw/types/page_block_author_date.py,sha256=t6Jb8RBNbyeSr6CFdoNNqwU4e6spYG-O9sR4SJxG__Q,2515
|
|
2771
|
+
pyrogram/raw/types/page_block_blockquote.py,sha256=rmmERQzkXWvmfq-rmwkmc-rWHHTqLkWYX2Nf8ON13bA,2489
|
|
2772
|
+
pyrogram/raw/types/page_block_blockquote_blocks.py,sha256=tJ_mK8ehJOozRjkC1E3rkKM5qjqnTa0rcYaaFyGMdkk,2555
|
|
2773
|
+
pyrogram/raw/types/page_block_channel.py,sha256=DfmsmnkiWfF4wrtQpNXHKbDOwDyEh_SN_iWS8RKrt6s,2215
|
|
2774
|
+
pyrogram/raw/types/page_block_collage.py,sha256=K5j5aJ6oCBwEO3ZHHfX14G8gxAByy-5-FwgkfdqLZ38,2524
|
|
2775
|
+
pyrogram/raw/types/page_block_cover.py,sha256=31AEaEHcCIpoj1MyTwSG7sy_VMkj4vcW0Cnourx9tEE,2209
|
|
2776
|
+
pyrogram/raw/types/page_block_details.py,sha256=igZ2nmKb2wkpXlLrdaI_Hn7eNngK3umeJYu432Wj8oM,2788
|
|
2777
|
+
pyrogram/raw/types/page_block_divider.py,sha256=E0g3IjDHkxQX1mBamLPvP8L-Ol6F8EDmr7MMk2En2IM,2005
|
|
2778
|
+
pyrogram/raw/types/page_block_embed.py,sha256=vbqolqQfBTXdUSd69GozYjf13_G5w5LngfW7cWa2ZIM,4681
|
|
2779
|
+
pyrogram/raw/types/page_block_embed_post.py,sha256=nQ5hz5Hg45fHtzETYumUcEOSnHDwJGZJzjpvf3IOA2I,3660
|
|
2780
|
+
pyrogram/raw/types/page_block_footer.py,sha256=v0gct3XAr2yh6D7HVyiPGFBaYvz78Qr_QOOxFcVVqEE,2200
|
|
2781
|
+
pyrogram/raw/types/page_block_header.py,sha256=5O6P3qZwG1xYYLkYrFYSY6XTWPPKvGJNY4m77FmmqYk,2200
|
|
2782
|
+
pyrogram/raw/types/page_block_heading1.py,sha256=l5siI9QpoR0vmGNwy64VzLUPsXJuZdDhQwqy0Ht1kyQ,2208
|
|
2783
|
+
pyrogram/raw/types/page_block_heading2.py,sha256=47J1P3PCH_gYsRsqH4EgcmRfAghT_ozX5dP8MAKGFyQ,2206
|
|
2784
|
+
pyrogram/raw/types/page_block_heading3.py,sha256=nvWuPMFrUabadGJj48Y_LZd0F2NUZjeAOt__xjr9lX4,2208
|
|
2785
|
+
pyrogram/raw/types/page_block_heading4.py,sha256=bnj0MDe_hpo9d69kB4-rJsdQVkXv8k-Wes__nAs-Ecw,2208
|
|
2786
|
+
pyrogram/raw/types/page_block_heading5.py,sha256=xa2H3_vMgTnMuyVfRHH4AOyiAyNoi-E9cQsXkSWSTos,2208
|
|
2787
|
+
pyrogram/raw/types/page_block_heading6.py,sha256=4fTPDV4yNuR0vUbLH2yEYoDcluwacD075E08RfZpmr8,2208
|
|
2788
|
+
pyrogram/raw/types/page_block_kicker.py,sha256=3bCc_3p32VVQ4ubBkkqvLClEZhyik1_TxeMBG6-BuLs,2200
|
|
2789
|
+
pyrogram/raw/types/page_block_list.py,sha256=Md_JDL_Zz3puhSuhBEyC7uQ5XQ7k7j9zLSMNTf_c1NM,2239
|
|
2790
|
+
pyrogram/raw/types/page_block_map.py,sha256=VuOOf_NOro60WYpkuC1h6GHlYBttcM-gYemHfCESPRQ,2983
|
|
2791
|
+
pyrogram/raw/types/page_block_math.py,sha256=MaWPmRerkcUSmRKmxZ4a4JmYFRKCVcszaBitVjZhWac,2153
|
|
2792
|
+
pyrogram/raw/types/page_block_ordered_list.py,sha256=ET2hQlDVD6Cf-eiqW1AwqlsZZ3o2Izn_trLZyHaQ2TA,3315
|
|
2793
|
+
pyrogram/raw/types/page_block_paragraph.py,sha256=S_ztisaaqRu0tYxyzEK4Fp27szUNqw2UWuI--nQMjIY,2212
|
|
2794
|
+
pyrogram/raw/types/page_block_photo.py,sha256=TwsLM-HOPr6jyG3s3WwSKeJhjKLaZTPrvSb4ilJdD4g,3523
|
|
2795
|
+
pyrogram/raw/types/page_block_preformatted.py,sha256=_bP--M8rNjlpxupxFGsAZeLZrZVNrrDeF0x_Mv-f66s,2449
|
|
2796
|
+
pyrogram/raw/types/page_block_pullquote.py,sha256=1cb_pK8Px1jjGW8n4d_jukCRjs3HUW0AM6xDx_Y7Ips,2485
|
|
2797
|
+
pyrogram/raw/types/page_block_related_articles.py,sha256=vDlnDkE_rekLWV8E8KTunfl4Pos57VPK2VolkAVHRiE,2589
|
|
2798
|
+
pyrogram/raw/types/page_block_slideshow.py,sha256=__-ZiYfRVTrqygrzv1qMZTrrtH20bPUPXA6J2fOeQoU,2530
|
|
2799
|
+
pyrogram/raw/types/page_block_subheader.py,sha256=YcpKjSA7VyxFP3B4oCu1o81YorcyTPGLFyvsLGDJPMg,2212
|
|
2800
|
+
pyrogram/raw/types/page_block_subtitle.py,sha256=mfDd5FXmP_Nl9KRMVoldG0pzDFSa9_6CQMgAUy-XvNo,2208
|
|
2801
|
+
pyrogram/raw/types/page_block_table.py,sha256=IGAlX_6SEGeIrrdKLTdZLCeT3lBQtcXy2TvLSU-PtCI,3077
|
|
2802
|
+
pyrogram/raw/types/page_block_thinking.py,sha256=WgxvYvLkjd3fWkfJw1qBKHtBUafu1SccHkup6qfCegE,2208
|
|
2803
|
+
pyrogram/raw/types/page_block_title.py,sha256=I_S1Bvb_OSKrFQtOO109f5_xRKBP3y5I4BVwsulIWVg,2196
|
|
2804
|
+
pyrogram/raw/types/page_block_unsupported.py,sha256=u16zdUmZGsltivp-Kum9V4NWG1s0GGBe98wfHoASPzA,2021
|
|
2805
|
+
pyrogram/raw/types/page_block_video.py,sha256=YyRtlMht9_3q8OViQUatUZ-8A5k42AwnjrCSCrvi_WU,3293
|
|
2806
|
+
pyrogram/raw/types/page_caption.py,sha256=XcwHH6-mEE5raeL6P0DO1stqf_2srvD2Gf7Vq8eHsq8,2450
|
|
2807
|
+
pyrogram/raw/types/page_list_item_blocks.py,sha256=xax9fTRQnP9h05zdo4DqSEu53Tpf-CB9ixhgb-P-Pmo,2847
|
|
2808
|
+
pyrogram/raw/types/page_list_item_text.py,sha256=IVo23e3CEoi548SUrw09-QQpgQ9LoFwtBHRWL3eCxOc,2795
|
|
2809
|
+
pyrogram/raw/types/page_list_ordered_item_blocks.py,sha256=7n-Qj9GArSCDadq3DenOzjV3wsR61uNhuYzmQSdr9xE,3913
|
|
2810
|
+
pyrogram/raw/types/page_list_ordered_item_text.py,sha256=um1Vxwk7IqZV8uX4Kbxi0DgucDJS46ntSNgZtfTgdFw,3861
|
|
2811
|
+
pyrogram/raw/types/page_related_article.py,sha256=T9M3C2H83pZU4XQEX5u4EyOqcpoEPPGlcKxfV7RcRbA,4434
|
|
2812
|
+
pyrogram/raw/types/page_table_cell.py,sha256=G7Ve2-UP09D4LUwlHCyhRZDKG18NlWKqDelEqkaS_yE,4665
|
|
2813
|
+
pyrogram/raw/types/page_table_row.py,sha256=RxH5A1GfGqnlYbum286nDNGWJV7BXm_Zl2Q8ZhHtiZc,2242
|
|
2814
|
+
pyrogram/raw/types/paid_reaction_privacy_anonymous.py,sha256=DGsDxz25Hcvj3HHV3xE4EWN9v7UMmvBR9Lp4lmoyBP0,2063
|
|
2815
|
+
pyrogram/raw/types/paid_reaction_privacy_default.py,sha256=jldv_R5WD-85P8gM3Fcycu35hXSdSVxPSAfMSGn0f0c,2055
|
|
2816
|
+
pyrogram/raw/types/paid_reaction_privacy_peer.py,sha256=HrEBZVFF3-KEN7so892nwkdVPnus-8hg-cayYkR-JnY,2246
|
|
2817
|
+
pyrogram/raw/types/passkey.py,sha256=XnnAZpzibOt6k98Kdpr2oJKjuDbVrUtzizJElSk9qw4,3680
|
|
2818
|
+
pyrogram/raw/types/password_kdf_algo_sha256_sha256_pbkdf2_hmacsha512iter100000_sha256_mod_pow.py,sha256=Fw566uWkGpCOg4OCAvLYhTYWPkk85c_mab5z8PaAg3k,2885
|
|
2819
|
+
pyrogram/raw/types/password_kdf_algo_unknown.py,sha256=uke0RJdOnQjCraA8Xyl2b_VIUC2ASykY_0s0nleGTv4,2035
|
|
2820
|
+
pyrogram/raw/types/payment_charge.py,sha256=wE4474-yXrupl37UqSCQXXIbQLnQ-0MVsGUHEkZnyME,2436
|
|
2821
|
+
pyrogram/raw/types/payment_form_method.py,sha256=kdLGQ1D0UdtkXJKefNsp_65VmteS0BGnr_GJXHoBZRU,2348
|
|
2822
|
+
pyrogram/raw/types/payment_requested_info.py,sha256=-H9JkYCSe-wYQPG1Q_4Q5iKIUF9VgYFt6DWonBfvWHA,3624
|
|
2823
|
+
pyrogram/raw/types/payment_saved_credentials_card.py,sha256=HeDqf8pNQTKrFHcvLutlJExDKMcdByioHJpnqTYSSPw,2385
|
|
2824
|
+
pyrogram/raw/types/peer_blocked.py,sha256=huGL0isNnbGPREYjS9OL_qmnCV95bd1kZrQSGEyuj6E,2388
|
|
2825
|
+
pyrogram/raw/types/peer_channel.py,sha256=wMjbAtdcmlAjBhGNPifJynKzKT16OupYoslMZANZMwM,2402
|
|
2826
|
+
pyrogram/raw/types/peer_chat.py,sha256=GJst3FeIH47eIIbRib9fqi_sYMU_7l00GdDiMdfMhyk,2363
|
|
2827
|
+
pyrogram/raw/types/peer_color.py,sha256=VgBiylTwQ5ep12GCTt0ofUHDrgiro33J4y4EH7ZNoU4,2844
|
|
2828
|
+
pyrogram/raw/types/peer_color_collectible.py,sha256=MvWLm-0Ccwy00Ce-p3Y413tkgYds0BppEWUlXnYQJr4,4364
|
|
2829
|
+
pyrogram/raw/types/peer_located.py,sha256=B2fuA2CNlDODa8MAQEtFhKV9OMx2MPzzX5FdzbB6hho,2615
|
|
2830
|
+
pyrogram/raw/types/peer_notify_settings.py,sha256=P6z5ewu76-rVQ9fjGr1SlMrOWcP7Yo8I8u8VmahDvdA,7720
|
|
2831
|
+
pyrogram/raw/types/peer_self_located.py,sha256=Ir6_k3ROcZjksEiCBDcmbSPnoyCGArtaSYkejy1jUbY,2174
|
|
2832
|
+
pyrogram/raw/types/peer_settings.py,sha256=Nvc9BKJFmq11Siu3pvp90CJAMa8fUPjU8pjFBxO6h-U,10716
|
|
2833
|
+
pyrogram/raw/types/peer_stories.py,sha256=z_IvaIdSKBaLb-liYiL4MRSu0TqWg30ww-KtRIpMfy4,2936
|
|
2834
|
+
pyrogram/raw/types/peer_user.py,sha256=OKgtpcgDVGC-dYUG7ki7ktQjpGq9k-iDy3p7cc0dzbw,2363
|
|
2835
|
+
pyrogram/raw/types/pending_suggestion.py,sha256=7FjLpxPW31gNd2hC8FDJctfgFyQzHcvoUgoSp7wbM1I,3021
|
|
2836
|
+
pyrogram/raw/types/phone_call.py,sha256=NXDTgGqovP5GavzM882o5fiFFoT3QrwmQbZziUQZ1G8,6032
|
|
2837
|
+
pyrogram/raw/types/phone_call_accepted.py,sha256=7ehJEqGEDFHDlQujqzQkM9aYSH90jjsqyzZSudDdyys,3893
|
|
2838
|
+
pyrogram/raw/types/phone_call_discard_reason_busy.py,sha256=nwpQ4IrROJ3OuUDLhWHI0RJeY6FL2baxnxTsLSrskJc,2058
|
|
2839
|
+
pyrogram/raw/types/phone_call_discard_reason_disconnect.py,sha256=ceYys708iyGnY3eePBwRI73BzJIGiwJx5XRzSU8gPOs,2082
|
|
2840
|
+
pyrogram/raw/types/phone_call_discard_reason_hangup.py,sha256=rQlP-Af-xDNjM8mDq0FRmKwEX1fWS52VOeeauzfjAJw,2066
|
|
2841
|
+
pyrogram/raw/types/phone_call_discard_reason_migrate_conference_call.py,sha256=befJ5D6SJmZ8K1nuDY_I9bgZk4ee1m7Wnt25RPMFV4k,2268
|
|
2842
|
+
pyrogram/raw/types/phone_call_discard_reason_missed.py,sha256=BEZoBaeTuULeMblDMoEFiy1Zv6HbM5YvDBiS1KVM7BI,2066
|
|
2843
|
+
pyrogram/raw/types/phone_call_discarded.py,sha256=EHZqlrgavGadc-Ql0tyfgbV2WDxVVhd1nxPRcQdThtI,3899
|
|
2844
|
+
pyrogram/raw/types/phone_call_empty.py,sha256=ShKkoklpMVvNpfexHLgoRaqFjBo0D9utJdhcT_pD00g,2126
|
|
2845
|
+
pyrogram/raw/types/phone_call_protocol.py,sha256=gb4B29z5CrSISsEjuVaOGlA-VeP27lcodf2-Q9UlgLk,3412
|
|
2846
|
+
pyrogram/raw/types/phone_call_requested.py,sha256=LH4xp8ipwXdD3fWqQ7Qelp3B-oQVPMwxeuGy-zCTMxE,3942
|
|
2847
|
+
pyrogram/raw/types/phone_call_waiting.py,sha256=4E1u2x_hD3tr7nvHf_DQKjZ162dutkCF5rH5qeehkog,4141
|
|
2848
|
+
pyrogram/raw/types/phone_connection.py,sha256=WEWBbSZ1N41vV3_Ge-ColtzTLZCwYI5V9satFSokGQQ,3189
|
|
2849
|
+
pyrogram/raw/types/phone_connection_webrtc.py,sha256=AlwijL_SIaKIVHmjZM_mBs1afRMT5vJIJslv80vkNQI,3686
|
|
2850
|
+
pyrogram/raw/types/photo.py,sha256=kuKRRBIIdVQ5pMSoC559zjFh_n3bi57nndjGOtUkg_c,4150
|
|
2851
|
+
pyrogram/raw/types/photo_cached_size.py,sha256=RpFMQmug7Uv0Szu-Bke2BEXRHYm5bGu7yWGz-CURUr4,2668
|
|
2852
|
+
pyrogram/raw/types/photo_empty.py,sha256=gSSXBGbhNNp2UbUxDPW3bP_bOk9Ths2Y3yKUd1GB-z4,2106
|
|
2853
|
+
pyrogram/raw/types/photo_path_size.py,sha256=tdqEbvxR7io71DDrdpUGfPHwESP84faiqYd2YpsCHbE,2334
|
|
2854
|
+
pyrogram/raw/types/photo_size.py,sha256=2_x72d8q2zADe9e_RLEHJUb44i2CLKzmxtLM4JrUh6E,2638
|
|
2855
|
+
pyrogram/raw/types/photo_size_empty.py,sha256=YwfugAUPBtPddO4GuLog-S55i4u2t1PhIQNE7HZRMok,2137
|
|
2856
|
+
pyrogram/raw/types/photo_size_progressive.py,sha256=Sy8kCnynJNCiVIXKWMFOhwsOj_c_qDcnKZIIzrjUQZM,2731
|
|
2857
|
+
pyrogram/raw/types/photo_stripped_size.py,sha256=3-wbZXj8JwIX87ndf2M7Pc3GL7af3Gn1girYPKPOqFw,2350
|
|
2858
|
+
pyrogram/raw/types/poll.py,sha256=SU4mx0EYgX0-ZPtD6Z_TcJicchfyn5u3YHrp35EhVd0,7479
|
|
2859
|
+
pyrogram/raw/types/poll_answer.py,sha256=CpCx39IrNsb9nz7Y-FtqGwGNLOMVe8_dHMw5tvtO_R0,3664
|
|
2860
|
+
pyrogram/raw/types/poll_answer_voters.py,sha256=9UO_nTiXX7_qWjke4LeC7_OMo3YsyEa87uQy0YOnR-w,3610
|
|
2861
|
+
pyrogram/raw/types/poll_results.py,sha256=Myt5z1xhVxuwgrvDYOM1naKVeBrVMc4D1xFTxJZxWp0,5801
|
|
2862
|
+
pyrogram/raw/types/pong.py,sha256=KVmOSbwO0XecIF3A-D48gwvPgPtgA0xwEqZPKAyiefQ,2559
|
|
2863
|
+
pyrogram/raw/types/popular_contact.py,sha256=4ghPPnHClzJLcKM_jR2AA1JI8XzCoMDOgbFEXlmooqQ,2430
|
|
2864
|
+
pyrogram/raw/types/post_address.py,sha256=r7lGPe-gG8W15Bqo-o10NO_FPXIdVqtYEI0c3ytLDQQ,3344
|
|
2865
|
+
pyrogram/raw/types/post_interaction_counters_message.py,sha256=Rbf6dY_VkdfuLvxqNh9OHKqSG-aa_K-b-cL1VBsw5ak,2900
|
|
2866
|
+
pyrogram/raw/types/post_interaction_counters_story.py,sha256=tp1dwVVTO_4DpKJEPp9eqWGR4ojOBQbVxIxl7pcR8lM,2910
|
|
2867
|
+
pyrogram/raw/types/pq_inner_data.py,sha256=IgG38aTAHn4mrHdqPn_YNSgrs6ntKTWwX6ZhmCe-jZw,3167
|
|
2868
|
+
pyrogram/raw/types/pq_inner_data_dc.py,sha256=HsZuNKRY7rpBgBoGBLbZO0zkpJATzrdk3SEysOh1ubA,3348
|
|
2869
|
+
pyrogram/raw/types/pq_inner_data_temp.py,sha256=RTYDdHnnhcLrHGOetmfA4_tapPSSVJj4qTpukWlllXc,3428
|
|
2870
|
+
pyrogram/raw/types/pq_inner_data_temp_dc.py,sha256=gkBoxy52P8gAAL7UfMJOqPWbaJ6zkx4J9RFgAPFG_vI,3609
|
|
2871
|
+
pyrogram/raw/types/premium_gift_code_option.py,sha256=JtzKiTgeB3sywNIORFYqS89unkC5vajld6dPmMTI45I,3996
|
|
2872
|
+
pyrogram/raw/types/premium_subscription_option.py,sha256=cnZhvtYnhvuJvMjfMc23ub67K0lKMtwnIZS35Als6QI,4430
|
|
2873
|
+
pyrogram/raw/types/prepaid_giveaway.py,sha256=SB-8Zj9-cRbzSvka4ghTZ6DSwEPcyH9r37My-Uj9XqA,2763
|
|
2874
|
+
pyrogram/raw/types/prepaid_stars_giveaway.py,sha256=5khtDnj9uZrpfOnPpU1wrYvH5mGXftxfMnAdD1K5W18,2986
|
|
2875
|
+
pyrogram/raw/types/privacy_key_about.py,sha256=HLFbpcaE_IdW9uB63wRpim-mBi-T7JQviglH1reGpMk,2002
|
|
2876
|
+
pyrogram/raw/types/privacy_key_added_by_phone.py,sha256=Tx79sQJl1PJH13IjS1yK4z90O1DEYxxLhYSDvHzyGWs,2030
|
|
2877
|
+
pyrogram/raw/types/privacy_key_birthday.py,sha256=8jIc7KJtdxbaisZZsh55WR8FStkUsW7FfKLaPUZNxiw,2014
|
|
2878
|
+
pyrogram/raw/types/privacy_key_chat_invite.py,sha256=O5I_D1EAlNofWhmMaGOVfKDh_oPcf62f9axO580pc4Y,2022
|
|
2879
|
+
pyrogram/raw/types/privacy_key_forwards.py,sha256=ZIxLxG4RV5MO0Vm1EeCid6NLgcyTS5tFCMn4UOH5iUc,2014
|
|
2880
|
+
pyrogram/raw/types/privacy_key_no_paid_messages.py,sha256=4eSVD9H0YZ6Xchp59SpacIFwcb0qOsMJWWhjPHjY5Ts,2038
|
|
2881
|
+
pyrogram/raw/types/privacy_key_phone_call.py,sha256=9mLUjnXVmDcV25SAezvdIUPlti1PW7XdfW9RNscczfQ,2018
|
|
2882
|
+
pyrogram/raw/types/privacy_key_phone_number.py,sha256=6U0gjkRtNHcI6YoQt_oPUiLirukfMdCXujBmKHxNp_g,2026
|
|
2883
|
+
pyrogram/raw/types/privacy_key_phone_p2_p.py,sha256=DoVnAxCNaK4BzSKsTxp_ayC11ay8Ek5zWZolwY4rkTU,2014
|
|
2884
|
+
pyrogram/raw/types/privacy_key_profile_photo.py,sha256=4f8XbR1GglMT6xBNFOnHD-FbHylNPc2I27DUNESRl7o,2030
|
|
2885
|
+
pyrogram/raw/types/privacy_key_saved_music.py,sha256=YVTOZEGUZSuU8anmmwuuvaoTio8KoMuzIiJOt5V2vQI,2022
|
|
2886
|
+
pyrogram/raw/types/privacy_key_star_gifts_auto_save.py,sha256=0FAaWqZYJqqGleScCTjHmJKHCnRmtdHFybNhw8d48Ck,2050
|
|
2887
|
+
pyrogram/raw/types/privacy_key_status_timestamp.py,sha256=vojJusHa_MFgBgKbsxR2na75O65ak3q2xvyQ0waOLY0,2042
|
|
2888
|
+
pyrogram/raw/types/privacy_key_voice_messages.py,sha256=1cO-pzG0-paDowR6o8JQ3GRhget5FiDtoCamWWjtvSw,2032
|
|
2889
|
+
pyrogram/raw/types/privacy_value_allow_all.py,sha256=N8oXjE9aR74NK6zO1PeEO8hLKdt0dmbO5PA-4N-UBdc,2023
|
|
2890
|
+
pyrogram/raw/types/privacy_value_allow_bots.py,sha256=YDfnrS_GfbRucsKUuOc23uK0CP3JTykXSVI09MDyWRI,2027
|
|
2891
|
+
pyrogram/raw/types/privacy_value_allow_chat_participants.py,sha256=ZV6vjcco8u6F0f3Axb8ZlUmbNs5UfakS-HOnHDPsK0s,2271
|
|
2892
|
+
pyrogram/raw/types/privacy_value_allow_close_friends.py,sha256=KljTRavyZlX0L0F1QBfci-f-pCEp7BCPn_m7a-vE6cQ,2059
|
|
2893
|
+
pyrogram/raw/types/privacy_value_allow_contacts.py,sha256=DSXWrwGoMroOlC8PmCUsNGpXKruj6p2oLR0-OR0igAg,2043
|
|
2894
|
+
pyrogram/raw/types/privacy_value_allow_premium.py,sha256=FxGwtNoJRBjWeRNg_uyqmt_vfrcC3Zdm7OTGANOWcI0,2039
|
|
2895
|
+
pyrogram/raw/types/privacy_value_allow_users.py,sha256=-KFDHYxgMCQDs4m3PxsfWfngpt1RLeAWvMi1A_Rw2DM,2227
|
|
2896
|
+
pyrogram/raw/types/privacy_value_disallow_all.py,sha256=qCZcThqzubI1wiDom_lPXbV7ECOblSm5cBBbznL5Z3A,2035
|
|
2897
|
+
pyrogram/raw/types/privacy_value_disallow_bots.py,sha256=wDsuGrHnSCRtZOzQJgRYTL9d8R8tp9teTatgytGA6cg,2039
|
|
2898
|
+
pyrogram/raw/types/privacy_value_disallow_chat_participants.py,sha256=J8fi4nAB2v9Demg_n7WZzx1vlLDLdLWJcZb1qhiQP9k,2283
|
|
2899
|
+
pyrogram/raw/types/privacy_value_disallow_contacts.py,sha256=ECyXgTOPFvuhVUbnFN5qXyWhN9c7Zj0soi5F78o8hxg,2055
|
|
2900
|
+
pyrogram/raw/types/privacy_value_disallow_users.py,sha256=PWfJSStaS-5Eqf0tXmh9vgvYQzkbb32CrTVlVGpO_0M,2239
|
|
2901
|
+
pyrogram/raw/types/profile_tab_files.py,sha256=k4x7Uj9_V6qnIN5Ciaef30WruMaq5ugf4NhrXYeri9o,2002
|
|
2902
|
+
pyrogram/raw/types/profile_tab_gifs.py,sha256=mvTavw3walpT5Ha8qkEWewnVFKj9F5iYNu2nrBBglN8,1998
|
|
2903
|
+
pyrogram/raw/types/profile_tab_gifts.py,sha256=CgHS1p934O5Xd8T5qiCW6lI9KWxNKpMBAUPqzsM81K4,2002
|
|
2904
|
+
pyrogram/raw/types/profile_tab_links.py,sha256=0vqkyrf7KoXfKm4WWJ2U8H3rFB0D03k1jshYiN_ToF4,2002
|
|
2905
|
+
pyrogram/raw/types/profile_tab_media.py,sha256=Alctj3sDz3TSxTKRDM1nAsEY0zk8y4cg8Noe0QWYiGM,2002
|
|
2906
|
+
pyrogram/raw/types/profile_tab_music.py,sha256=8653-VLnPXwWBTj_zOogOca_I818-rWoVo81KXEy7gM,2002
|
|
2907
|
+
pyrogram/raw/types/profile_tab_posts.py,sha256=QlGFcSy3zZQ5KW9WCreYsN96W2cCRwA84jkrnaoJ1ak,2002
|
|
2908
|
+
pyrogram/raw/types/profile_tab_voice.py,sha256=nFj3EC3LWe6ML3zfgfJbNnnFV5JpSQWveTTudYCxE_M,2002
|
|
2909
|
+
pyrogram/raw/types/public_forward_message.py,sha256=250U3aVuAU2l7A76ryKRPQU4xI_HpU51oqn6wvtGIA4,2245
|
|
2910
|
+
pyrogram/raw/types/public_forward_story.py,sha256=fMp0O8VRkta7pwFERGHi9Z3ENMtgxlLtOw5ELe-gbR0,2459
|
|
2911
|
+
pyrogram/raw/types/quick_reply.py,sha256=gnkpseo1_NwIuSvWBNOIzN36nMlCvM9OQ0465s6xJjQ,2866
|
|
2912
|
+
pyrogram/raw/types/reaction_count.py,sha256=SZFecUnLyiHPn8FfRgK3CLKn6OTpCSCtkZ0PeRqp7Mc,2910
|
|
2913
|
+
pyrogram/raw/types/reaction_custom_emoji.py,sha256=SZWy2Zyr63bomXmrs5omy5PZ23SSioZOl3o0jQCKFHA,2226
|
|
2914
|
+
pyrogram/raw/types/reaction_emoji.py,sha256=mgS94HTjtlyONX1ARyTn5LjXClMSGxAkRZIAm6mvd3Q,2170
|
|
2915
|
+
pyrogram/raw/types/reaction_empty.py,sha256=Tb_Fp2mA3MuGtms89DfM8XwZ7NA9VJJpJsuOETa3Su8,1992
|
|
2916
|
+
pyrogram/raw/types/reaction_notifications_from_all.py,sha256=uR8IcykVlroWJvWx4c0Oj19PR9DCoTNyDLfYwibsKbg,2069
|
|
2917
|
+
pyrogram/raw/types/reaction_notifications_from_contacts.py,sha256=u9dVRgrjg_C1e7x1y-euwa_g5fvSmW_hTRRQ5jORpXg,2089
|
|
2918
|
+
pyrogram/raw/types/reaction_paid.py,sha256=YuONxzNeZVnv7LLUDmUaeeGz-C4OY7RfQ00x7Q3E_98,1988
|
|
2919
|
+
pyrogram/raw/types/reactions_notify_settings.py,sha256=AOtATjYW1TOUfEjqA5LNj4mkYVKmj-eEreFWSg-prGI,4808
|
|
2920
|
+
pyrogram/raw/types/read_participant_date.py,sha256=RLFAPWwLLbx1CchwA7a4-qOfiNVCLMoB5NIar70ydvo,2611
|
|
2921
|
+
pyrogram/raw/types/received_notify_message.py,sha256=JkyEqquI7TABZj4-HQqOOCmCBnyIEfcWBVMkFvx7844,2572
|
|
2922
|
+
pyrogram/raw/types/recent_me_url_chat.py,sha256=L6WwPzgr1KemzgQOAVQMMdXe1q2bUTMWQnW2IGQSMdE,2357
|
|
2923
|
+
pyrogram/raw/types/recent_me_url_chat_invite.py,sha256=nfaWmSI1Y60qQc9x1CCBzqmeuIPcLR0RMT_C0vGazjM,2477
|
|
2924
|
+
pyrogram/raw/types/recent_me_url_sticker_set.py,sha256=2YO_p4aGffZ9pEtX0t3w1MyqlolnLJV-2rwV_Fhs_s4,2433
|
|
2925
|
+
pyrogram/raw/types/recent_me_url_unknown.py,sha256=zUh_WsY9N-3Nh5Oi3ziJpe2oFR7aaF0rYMbH1Vpd4Bk,2148
|
|
2926
|
+
pyrogram/raw/types/recent_me_url_user.py,sha256=sk9TXoVGEGVAjfTuDn_5pEOTMbf0PQmQJ6kfKkCu474,2357
|
|
2927
|
+
pyrogram/raw/types/recent_story.py,sha256=ei6riWFrTVjgfucSXyH9RV9zy2Q9drXiU5txjstIW8c,2797
|
|
2928
|
+
pyrogram/raw/types/reply_inline_markup.py,sha256=FAeJxwL1VtgkVD2pBNiRs_M4skOKQQiKT8F6DHNIgnQ,2268
|
|
2929
|
+
pyrogram/raw/types/reply_keyboard_force_reply.py,sha256=2U0oeBiOkJrTVa-zPEVDADnNSAsBn0s5_RwLjRVMymg,3032
|
|
2930
|
+
pyrogram/raw/types/reply_keyboard_hide.py,sha256=D52rWwF-Qo-A07IuzyKFGwpVAbKo2buc8npbaEl_vE8,2294
|
|
2931
|
+
pyrogram/raw/types/reply_keyboard_markup.py,sha256=IRj3WVWd8ZL7h-e8apZgYjiZ8yq2yHlauAqGdqRRZhM,3872
|
|
2932
|
+
pyrogram/raw/types/report_result_add_comment.py,sha256=TNhmO7U-gaG8ZeVS5TGasbAFQlKnsf2V8e2xgQompNo,2741
|
|
2933
|
+
pyrogram/raw/types/report_result_choose_option.py,sha256=6W8IIcbQ9UDu_HKeU09qiqc9tNz736wC65TBuk01mDk,2757
|
|
2934
|
+
pyrogram/raw/types/report_result_reported.py,sha256=knOix9YsZdKxMJhYirt5DaSvYnuQl9Xe5Z2ELbNUm4g,2251
|
|
2935
|
+
pyrogram/raw/types/request_peer_type_broadcast.py,sha256=CznRxe9odITgVRBrBVTvIHDu3yn7csqVFha05ZAXp1I,3864
|
|
2936
|
+
pyrogram/raw/types/request_peer_type_chat.py,sha256=dt8dhcaf1wPi8h9w7yeiEgDCbnMTS8Zn4m2RJpSPkwE,4533
|
|
2937
|
+
pyrogram/raw/types/request_peer_type_create_bot.py,sha256=L3-lRKKSDsB--2YujO5U_p4whR_rOLzm65x8-TyRUUw,3294
|
|
2938
|
+
pyrogram/raw/types/request_peer_type_user.py,sha256=VesaDTWAo8SlEPYBpGXWgfXJa3-6S1FAV7tBGtdDrYk,2721
|
|
2939
|
+
pyrogram/raw/types/requested_peer_channel.py,sha256=VxSLlSDrWHZdzeNM1dIqQeMkDNTvjEEvfEMxuKCxMFM,3410
|
|
2940
|
+
pyrogram/raw/types/requested_peer_chat.py,sha256=kSypPDEtTat66mDgZyz9czoGZ7Sux2rPYAz3rGvwAYM,2984
|
|
2941
|
+
pyrogram/raw/types/requested_peer_user.py,sha256=2NV9fb7JRzQhD_e76KAq5lniRvyEiRREWQRwm3zGKE4,3824
|
|
2942
|
+
pyrogram/raw/types/requirement_to_contact_empty.py,sha256=1HdpFZbFLdgExWL0VjJnZWboRVK35mVGLj9JHpr-8Hc,2264
|
|
2943
|
+
pyrogram/raw/types/requirement_to_contact_paid_messages.py,sha256=jlrfOgAIOBLNKGaZO7g9oDjEe1fWRkJWTa0XGYt8qnY,2513
|
|
2944
|
+
pyrogram/raw/types/requirement_to_contact_premium.py,sha256=CVjA_5SxuQvQsPkV87b8_andg1ghLbEpR8equHwjW64,2274
|
|
2945
|
+
pyrogram/raw/types/res_pq.py,sha256=4utshidR6yznoz9pnLzo9xDlVkkxBcR7jkekCafaHf0,3246
|
|
2946
|
+
pyrogram/raw/types/restriction_reason.py,sha256=DuEvgbV0JtyctKYNlfVVkYXKO68olOFN-6teWlXGFE4,2591
|
|
2947
|
+
pyrogram/raw/types/rich_message.py,sha256=uQcFv-eWmS_Qy72Kf2IoJ_SVBxdhulbGfnYsDejnAbI,3333
|
|
2948
|
+
pyrogram/raw/types/rpc_answer_dropped.py,sha256=1YaOOj_u9Q6QqdUOnhkZ4ClBFquzDakU17hJ_Z7AnTc,2780
|
|
2949
|
+
pyrogram/raw/types/rpc_answer_dropped_running.py,sha256=_L3eQFtOTe4j751dNEgx8kdfOazh6TBzt0o73MoROy4,2234
|
|
2950
|
+
pyrogram/raw/types/rpc_answer_unknown.py,sha256=GXWghcE_3NzbK7GXyd-IXYcO75blhXkGbKiOhRHyLl0,2206
|
|
2951
|
+
pyrogram/raw/types/rpc_error.py,sha256=QUaPdiOkqC1b_6Lg9N5uppgUc0gj34Pd4hDCKTtaqKE,2440
|
|
2952
|
+
pyrogram/raw/types/rpc_result.py,sha256=U6bhEjaXHKmZESvy7NHpKhCIY-r8s2qLjiN4ijT8Y4o,2425
|
|
2953
|
+
pyrogram/raw/types/saved_dialog.py,sha256=USvovQH0jKvbGh2b0ILMky6Ax2keshwWcdQOUxft-HU,2727
|
|
2954
|
+
pyrogram/raw/types/saved_phone_contact.py,sha256=3gyhAh_heMvOQg_r0VPlldWV7qKAO-Vx5xDgeduBZzg,3032
|
|
2955
|
+
pyrogram/raw/types/saved_reaction_tag.py,sha256=DDPIjxM6sOzs8_aL7PgIc-UDg0han7kCs3GPmuAT82M,2846
|
|
2956
|
+
pyrogram/raw/types/saved_star_gift.py,sha256=IzkikDc0ZZcNfW_PjfRrElIr9pRPVjbl0NtJbrNcRXE,11049
|
|
2957
|
+
pyrogram/raw/types/search_posts_flood.py,sha256=4cYRTsGn0OsVEVeUmqwk2iAXGeuTwFAGw5jn4tCMAdA,3683
|
|
2958
|
+
pyrogram/raw/types/search_result_position.py,sha256=Q56l0vQOHi7VNsHasgkE9o4si6fb3oAeENwQE_Mdk_U,2595
|
|
2959
|
+
pyrogram/raw/types/search_results_calendar_period.py,sha256=MCFwkgVg6jhQ3uX-mSckiS7ZhCOLgctIN2_yYc6UoFI,2901
|
|
2960
|
+
pyrogram/raw/types/secure_credentials_encrypted.py,sha256=ptEsVeSrE2wjkeGSgZ5Mf2HTml4WX2dI0O00TyZ8DuE,2603
|
|
2961
|
+
pyrogram/raw/types/secure_data.py,sha256=sU1ReoF5C4d2mp1TU1IFO9pySgl7PhCAkqcgMccBstU,2568
|
|
2962
|
+
pyrogram/raw/types/secure_file.py,sha256=js4HRC35J8n_NKhYaoZF73zAfWLqR5TeGEwOpJWQsX0,3396
|
|
2963
|
+
pyrogram/raw/types/secure_file_empty.py,sha256=mVx9JqqHsS96S4zOKj2gVSPV9HD3s-NH3C8k1lHOyPU,2002
|
|
2964
|
+
pyrogram/raw/types/secure_password_kdf_algo_pbkdf2_hmacsha512iter100000.py,sha256=7tpanKD_mRNnChij9RPivwZhU15RUeJoA9qXkKR2LpE,2284
|
|
2965
|
+
pyrogram/raw/types/secure_password_kdf_algo_sha512.py,sha256=QjWH8YXci2bPx5BENGLWlBDRawj7hXxDnbF0yLMzjps,2204
|
|
2966
|
+
pyrogram/raw/types/secure_password_kdf_algo_unknown.py,sha256=w8BIj9JxidjU1-fZIy69_aGm00_iMVYLllUT6x2XIjQ,2061
|
|
2967
|
+
pyrogram/raw/types/secure_plain_email.py,sha256=ClIAWiutOuxOdoxd0xw6Z-tNat3BOI82ImjeIG8AZuM,2162
|
|
2968
|
+
pyrogram/raw/types/secure_plain_phone.py,sha256=08HGghArecmOpqghAG5VcVLr_ScT_kvYn6bIBSUdRm8,2162
|
|
2969
|
+
pyrogram/raw/types/secure_required_type.py,sha256=wmrHjdN0rjM4hj3H9V_rWE8fBwi9l6jcufTuyzg2v-w,3329
|
|
2970
|
+
pyrogram/raw/types/secure_required_type_one_of.py,sha256=KjhlksqwQDJweEfX3klF4L5k1zQCJkLDuq7mM6Si1Us,2310
|
|
2971
|
+
pyrogram/raw/types/secure_secret_settings.py,sha256=nIm0aTmho5NA8jzIzatswc6yLG4zAtbVTcnis_YPOnU,2919
|
|
2972
|
+
pyrogram/raw/types/secure_value.py,sha256=pV5p4hyEmIkS0zxmMBVZg26EPRZ-nxDieBURCxYNKkI,5966
|
|
2973
|
+
pyrogram/raw/types/secure_value_error.py,sha256=yoyRpb6K2d5LDjBCH3uIxNVThu3IEX1cJFlPPPmfTfs,2618
|
|
2974
|
+
pyrogram/raw/types/secure_value_error_data.py,sha256=03vqnimxxUXox3sj1tSrzuNMBZLaJXrMGw7B8DU1YPs,2877
|
|
2975
|
+
pyrogram/raw/types/secure_value_error_file.py,sha256=s6oyd1IeLrsaVM8sQ-Zax5ik399M3AeKaps2WMwHKcM,2679
|
|
2976
|
+
pyrogram/raw/types/secure_value_error_files.py,sha256=Yty8Ky5_ZAnjPhUMBW-LBi0R0XJikHPRsjrj2fxq06c,2723
|
|
2977
|
+
pyrogram/raw/types/secure_value_error_front_side.py,sha256=l2sQnC-ZLeIpCVDv1HIPMr3lNQK0CIyecDjFrEOwar4,2695
|
|
2978
|
+
pyrogram/raw/types/secure_value_error_reverse_side.py,sha256=4F0kMc6x1NYpUvIzUGejOcmtF2Jukiz8359mowd3ug0,2707
|
|
2979
|
+
pyrogram/raw/types/secure_value_error_selfie.py,sha256=Rzgce1_VWXGIGzFKaxLYfxrSFktFn_Ee5xankmNkFzs,2687
|
|
2980
|
+
pyrogram/raw/types/secure_value_error_translation_file.py,sha256=MyupN5rq4dTHXrxTsbUoh-NY0CfcQPKYvYYmjixU7b4,2723
|
|
2981
|
+
pyrogram/raw/types/secure_value_error_translation_files.py,sha256=CAvV98RleDtQzCOKc9TLaR_VJn6d3E-ZfTttHyxH7vE,2767
|
|
2982
|
+
pyrogram/raw/types/secure_value_hash.py,sha256=-3nPVWNsNm-pUBifxpehfQxmc0KWvcbHOIuiCdqdwIQ,2424
|
|
2983
|
+
pyrogram/raw/types/secure_value_type_address.py,sha256=WQEWnaeznd81tfenleQbVBCMUmu0laIeSkLTio3-pjs,2035
|
|
2984
|
+
pyrogram/raw/types/secure_value_type_bank_statement.py,sha256=922NMTLGgsdXBRZZTtwcoAB7xqPFfBatLroVCcY6--s,2059
|
|
2985
|
+
pyrogram/raw/types/secure_value_type_driver_license.py,sha256=0pQWzuizXLKWxKPx_Tv9rYSKh7K_701gVroMC-rqDBQ,2057
|
|
2986
|
+
pyrogram/raw/types/secure_value_type_email.py,sha256=Dryfp2ANkuYIJC1BEtdEYC7O2_pfeIunN87A4bMs4wE,2027
|
|
2987
|
+
pyrogram/raw/types/secure_value_type_identity_card.py,sha256=CDMYzEa5Qh-CZ75wi_XYkn9OWRFMMYcuKrqNhd3YSZU,2055
|
|
2988
|
+
pyrogram/raw/types/secure_value_type_internal_passport.py,sha256=rEn6olaf2S6cfPDc1RHaTJ_oNtFrn2GHlYTuu7gny78,2071
|
|
2989
|
+
pyrogram/raw/types/secure_value_type_passport.py,sha256=SrbdIkmVQlbOOkycXK_spdGJHbxno_zc9FGt4wGe7Qc,2039
|
|
2990
|
+
pyrogram/raw/types/secure_value_type_passport_registration.py,sha256=1rw54bF2Q6XBywXAuWbXvnyAZzgUa7l4SlTpgcarWUM,2087
|
|
2991
|
+
pyrogram/raw/types/secure_value_type_personal_details.py,sha256=rjruebGwwGtSShKJYHS3lBF1hu7XmF-O6KSSw8ZbJNY,2067
|
|
2992
|
+
pyrogram/raw/types/secure_value_type_phone.py,sha256=5J4pv7LqIcQ6OMe9sWM1RN5XO9AvydYecBWhwBdi-Ug,2027
|
|
2993
|
+
pyrogram/raw/types/secure_value_type_rental_agreement.py,sha256=CJP3oZYJyulxhWKtkJV55ASn20-6m1KiPMdC1hvnUdM,2067
|
|
2994
|
+
pyrogram/raw/types/secure_value_type_temporary_registration.py,sha256=vU7-XsX64yyF86L5h9spHctUTB9dYbxhpRii5vdwkG8,2091
|
|
2995
|
+
pyrogram/raw/types/secure_value_type_utility_bill.py,sha256=D1q27qdB2FnVfugTsXlwTx2v7nfD1GFX45Gp5rAV0fI,2051
|
|
2996
|
+
pyrogram/raw/types/send_as_peer.py,sha256=-SXiiiSKC51PN_91qp1EbZy73_BC7Ebe_RpKmF_1-lI,2558
|
|
2997
|
+
pyrogram/raw/types/send_message_cancel_action.py,sha256=lLEHxB37CBa9tbwwUsY0pLGtWNk0_Jn3OThGmKPZ-C8,2041
|
|
2998
|
+
pyrogram/raw/types/send_message_choose_contact_action.py,sha256=jchwiSMcxmQZJr8wIgn56b_T_8WZlpX0wqsy0yi09EY,2069
|
|
2999
|
+
pyrogram/raw/types/send_message_choose_sticker_action.py,sha256=by6cmn1yg8BvLJzqCHuiDLrsr9Wk9tne06zFbKfVA3A,2069
|
|
3000
|
+
pyrogram/raw/types/send_message_emoji_interaction.py,sha256=7OiD7GF2wKKCD1-K-I9Km43RAFNoA7UhpiEorqTzRu8,2753
|
|
3001
|
+
pyrogram/raw/types/send_message_emoji_interaction_seen.py,sha256=ZW4y4K8ZrZskE-W1spDwMwqyYVSMG27EzEO4BJFN0jc,2251
|
|
3002
|
+
pyrogram/raw/types/send_message_game_play_action.py,sha256=C1sRTFh5rgubWcUF6ltV1_27zHm2WsF8Cg3BVnzMRmk,2049
|
|
3003
|
+
pyrogram/raw/types/send_message_geo_location_action.py,sha256=lfKcVTKIccKHj180WliJxR3p-Vd_HBA0lp7a-xd6F-A,2061
|
|
3004
|
+
pyrogram/raw/types/send_message_history_import_action.py,sha256=9g6btiRb4Txsw_R4Sd1dy-jRhb_TWCeNdho4TmSzpps,2249
|
|
3005
|
+
pyrogram/raw/types/send_message_record_audio_action.py,sha256=mH9X5xHLeh-jESFUZNrX_LrAVfjfeWLKCH75qXFEewc,2061
|
|
3006
|
+
pyrogram/raw/types/send_message_record_round_action.py,sha256=wyvt8-nFAFHAaMvmnWGRskx6FQTdFuQFLPZNKDrxKLM,2061
|
|
3007
|
+
pyrogram/raw/types/send_message_record_video_action.py,sha256=CIPNkUgKN6Z549IsFIHg5QRS7X2WfxtfvoIzfVmwSug,2061
|
|
3008
|
+
pyrogram/raw/types/send_message_rich_message_draft_action.py,sha256=S_c_fzdC0eStOF266U1IjEIdyAzyKy_kyxp3wc2VVPI,2603
|
|
3009
|
+
pyrogram/raw/types/send_message_text_draft_action.py,sha256=OtQFabomFFhTufGPkTx5L_WWZzMvSC-z363PmsI2YnU,2523
|
|
3010
|
+
pyrogram/raw/types/send_message_typing_action.py,sha256=IimVUod5UismEK4yt2Z482l_wTQfWjd4NZRHTaRbubE,2041
|
|
3011
|
+
pyrogram/raw/types/send_message_upload_audio_action.py,sha256=k8EOW0Df8AlN3aidQsC5eV2gg0zB228f2ps6ILAVEwU,2241
|
|
3012
|
+
pyrogram/raw/types/send_message_upload_document_action.py,sha256=4VN7JycZNyPv6d7qBlahd9KKzAyni55phfe2H2LtNL8,2253
|
|
3013
|
+
pyrogram/raw/types/send_message_upload_photo_action.py,sha256=z-IoVoBAbxDKlt9YS-1BeKeAuMEG4h0uxUpoUaMj5uQ,2241
|
|
3014
|
+
pyrogram/raw/types/send_message_upload_round_action.py,sha256=YFzO6Wkb7H8SA2Woc9sS9iJFeDSP9f7rnv5rYBz4y-w,2241
|
|
3015
|
+
pyrogram/raw/types/send_message_upload_video_action.py,sha256=AthfEt_llnz2ITAQj7Mc8YECTXemediiXm6aa1HxT8k,2241
|
|
3016
|
+
pyrogram/raw/types/server_dh_inner_data.py,sha256=OgV7d3mR9vMrOSG1mYgj2zvhco_atUNja6YYQSl45tI,3278
|
|
3017
|
+
pyrogram/raw/types/server_dh_params_fail.py,sha256=yM15vNUlnoVDX7D3nRU1cqCCwjIdQgL7Jkikr40t5Dc,2940
|
|
3018
|
+
pyrogram/raw/types/server_dh_params_ok.py,sha256=zAex8nGhFpbfkethNZwdYkcNSUTMZRoogJVVmQPRbqQ,2939
|
|
3019
|
+
pyrogram/raw/types/shipping_option.py,sha256=BQbeeLCJvjafZVfRHptOdg1O8gMCBZJAcSBL3iZXgOM,2626
|
|
3020
|
+
pyrogram/raw/types/sms_job.py,sha256=Qs3tBtkT_1zXvav9brghvZ6yRJZyFn5jxqVndb_sgfQ,2773
|
|
3021
|
+
pyrogram/raw/types/speaking_in_group_call_action.py,sha256=31Q0F1PI2MN-zwnEn6f8I4VFwzZZI6wQS63qCwvdJKo,2049
|
|
3022
|
+
pyrogram/raw/types/sponsored_message.py,sha256=IWOky7GSi23ufH3iKQwNTDabUn3LgmcR1jr_UuYa5UA,7359
|
|
3023
|
+
pyrogram/raw/types/sponsored_message_report_option.py,sha256=CVz44efMBjQC3BQPFFCycFosVzsZWn-QZZmYrOKw1yY,2422
|
|
3024
|
+
pyrogram/raw/types/sponsored_peer.py,sha256=o2Xt6RcRvnZKL5Zx3aSbviJ0-frbSKVW-xEyZ6-jlcQ,3355
|
|
3025
|
+
pyrogram/raw/types/star_gift.py,sha256=U0BJzyd5NPYFSsoFtR6prhU0xkuyBDhRXp90B8Av4mY,13068
|
|
3026
|
+
pyrogram/raw/types/star_gift_active_auction_state.py,sha256=HWNfrg8R6iB1pYQyCyPq1sfT5yodGj5_wXwUtEIDwhI,2928
|
|
3027
|
+
pyrogram/raw/types/star_gift_attribute_backdrop.py,sha256=VSVYiqwPpPFcK9EMbsc5t8oxt-NaIVxZ-p9DBeEFZxo,3794
|
|
3028
|
+
pyrogram/raw/types/star_gift_attribute_counter.py,sha256=eZPrH9OrJAYHgINom5g3rp7wdzzM4LeVvMqUF9JNCSk,2540
|
|
3029
|
+
pyrogram/raw/types/star_gift_attribute_id_backdrop.py,sha256=8CLY0MeUXk9GHU2RMsULBtIpFFuXtdtw9SL7yBdCSQQ,2266
|
|
3030
|
+
pyrogram/raw/types/star_gift_attribute_id_model.py,sha256=Y9xxoMQConeYbRKe99k2MckyVL1hWoEkeng0hfmV0s4,2257
|
|
3031
|
+
pyrogram/raw/types/star_gift_attribute_id_pattern.py,sha256=X7W9lKw0XJHveyERDtlZN6cHmd-fI1FypFhJ7UFAZI8,2265
|
|
3032
|
+
pyrogram/raw/types/star_gift_attribute_model.py,sha256=OSer_LY-D7v3WFBZkUs3vCJqXqgqlg2sSA-XXtDS2MU,3097
|
|
3033
|
+
pyrogram/raw/types/star_gift_attribute_original_details.py,sha256=NDUp_diKbjSI4BPBlpx35nXmdxKrJRqfQ82rHdt1q7o,3470
|
|
3034
|
+
pyrogram/raw/types/star_gift_attribute_pattern.py,sha256=F3l3TnulGyipPsZSUD2SWzSoMzsV4Ii5bXomDOWG0TU,2793
|
|
3035
|
+
pyrogram/raw/types/star_gift_attribute_rarity.py,sha256=ZXBpl14q0hDNfNMhEOu1YWKJ0IZPYC1KygVefSsoRKw,2227
|
|
3036
|
+
pyrogram/raw/types/star_gift_attribute_rarity_epic.py,sha256=K3HCr3aZXCFW1LTHaVVnvD65QAlMG4PLuoKDex1YNAE,2063
|
|
3037
|
+
pyrogram/raw/types/star_gift_attribute_rarity_legendary.py,sha256=1j9Pk4-ftK3CkoxhRWJyByvY_iZueFqtS0GDYTh-S3I,2083
|
|
3038
|
+
pyrogram/raw/types/star_gift_attribute_rarity_rare.py,sha256=MNyvZoZiB9JhykVjxweJ_PVKuXhz9rEjK9GPGLL7H6U,2063
|
|
3039
|
+
pyrogram/raw/types/star_gift_attribute_rarity_uncommon.py,sha256=PDfdIg_ikwDzKmtPKdEFgeG00SEhtn42h4upc6Yjjrg,2079
|
|
3040
|
+
pyrogram/raw/types/star_gift_auction_acquired_gift.py,sha256=oyYbepAUvP7DfUfkIQP4SLRNLV_aR8Fw5DaTvE3IW48,4272
|
|
3041
|
+
pyrogram/raw/types/star_gift_auction_round.py,sha256=Nivmf_7k9Tq3_T8VvG3QnnQYwtqWp1a_CwHC5CvWDxM,2394
|
|
3042
|
+
pyrogram/raw/types/star_gift_auction_round_extendable.py,sha256=28aNf4ePOrY-esMs75n4xNcglANKNuYd1iScqmMjBhY,2949
|
|
3043
|
+
pyrogram/raw/types/star_gift_auction_state.py,sha256=fBIm57X6HgGbE5fkakEEuSbGLThSmOrZbt4wJ4vzyFo,5264
|
|
3044
|
+
pyrogram/raw/types/star_gift_auction_state_finished.py,sha256=GAAL6Tb1tSMrrjYnFEs5VU0PStZeOYZrHGqliqu7SdI,4282
|
|
3045
|
+
pyrogram/raw/types/star_gift_auction_state_not_modified.py,sha256=tHSIhUDqb5MR-6n2OpUKQxQTLKE2hCBkTfoMjjlX7js,2076
|
|
3046
|
+
pyrogram/raw/types/star_gift_auction_user_state.py,sha256=hrvXyuseJWlFdwj8C44Wk1pCD6c3NGS0Ia1W_bg7aHw,4295
|
|
3047
|
+
pyrogram/raw/types/star_gift_background.py,sha256=A9FEjMzu57Ls_EFqrB2KqLShiGEGsrnFyZ70KEfb5_k,2728
|
|
3048
|
+
pyrogram/raw/types/star_gift_collection.py,sha256=wrD9bvnK1n3m__u4wDTw3dl5StdXLBbKuld-w1pPY2s,3601
|
|
3049
|
+
pyrogram/raw/types/star_gift_unique.py,sha256=5QZrq76rU_iQoJQsQG7PO7w5bbzw42VHZ287JoJCnyo,11922
|
|
3050
|
+
pyrogram/raw/types/star_gift_upgrade_price.py,sha256=Yekw_MNvC132yumgHrNfO5B1Qc2H-gFNuhJOYwxvXTk,2451
|
|
3051
|
+
pyrogram/raw/types/star_ref_program.py,sha256=Sdv-nz4QzMuAM4CG6PFFZWcSnBXddWmLXTnzaeD4Dac,4211
|
|
3052
|
+
pyrogram/raw/types/stars_amount.py,sha256=7OSdEaVHLaOdutuMungRILYWW2yMmW7B0T0M1I9uAFo,2352
|
|
3053
|
+
pyrogram/raw/types/stars_gift_option.py,sha256=i8WKRLmJ0ACKUWQh8e4iyIxq7V_dEWY4ZAGh8-4H9CU,3575
|
|
3054
|
+
pyrogram/raw/types/stars_giveaway_option.py,sha256=R5apFedHc4_6-AZDpAav2TrtMkzDEFrfTtDd8RNBIxE,4505
|
|
3055
|
+
pyrogram/raw/types/stars_giveaway_winners_option.py,sha256=80nKAfXOis2GxVNawRVyntXMXASXVkwBtND717mJ-_A,2811
|
|
3056
|
+
pyrogram/raw/types/stars_rating.py,sha256=w1soOowAR6pIN8PzN3DsOz0p7hs5E5_9VcfUpRKR9p8,3197
|
|
3057
|
+
pyrogram/raw/types/stars_revenue_status.py,sha256=E4zR8jbNrN2icr3t8V-AQ1nRvHgWJI7hP2wvynJ2X48,3974
|
|
3058
|
+
pyrogram/raw/types/stars_subscription.py,sha256=OTnWn_hxtEVPz_lffhKoXjzl12rEFYSqoUeo4H204gg,5928
|
|
3059
|
+
pyrogram/raw/types/stars_subscription_pricing.py,sha256=jDFjr4oT6ZCPMmg4y8MJXalS3wFtVp0_xYaEV0LMSic,2424
|
|
3060
|
+
pyrogram/raw/types/stars_ton_amount.py,sha256=5klH4nXmQroZ1s-aHC0_dRopJKPd6uW6L85m3jjXI8E,2164
|
|
3061
|
+
pyrogram/raw/types/stars_topup_option.py,sha256=szTONkZo17xGckz-X2tK5E-qW8I3NgmfO7LmrZTVJNc,3579
|
|
3062
|
+
pyrogram/raw/types/stars_transaction.py,sha256=Q6uSrMMUVY61X4B7jwL4glL3bzFslsl6BCicgc_-5jU,16539
|
|
3063
|
+
pyrogram/raw/types/stars_transaction_peer.py,sha256=tufMkBZObLnG8iVg1JSBYdnazaC7EV3G9rTGYQCNeyM,2215
|
|
3064
|
+
pyrogram/raw/types/stars_transaction_peer_ads.py,sha256=_Wxx0g9nwXbw7Kf-dnlkW9HTSjHX3QGNw2L2Ex-WWwo,2044
|
|
3065
|
+
pyrogram/raw/types/stars_transaction_peer_api.py,sha256=qwkemhAXkWeAGTQWPvMajd0ZXhhHljJ6CimHW2dcVSM,2044
|
|
3066
|
+
pyrogram/raw/types/stars_transaction_peer_app_store.py,sha256=26XI9tVa6kZEKm0ehmZSTgnrIOENJB4t1-OcN_44hPs,2064
|
|
3067
|
+
pyrogram/raw/types/stars_transaction_peer_fragment.py,sha256=4WbBIobw6mnaSXLbbrq34pQk4gyCgtVx29poVfT5bqg,2064
|
|
3068
|
+
pyrogram/raw/types/stars_transaction_peer_play_market.py,sha256=K5NN0vcbm4cGH2ZYtWicGrV1FI5vVVexyBL9WFiY48I,2072
|
|
3069
|
+
pyrogram/raw/types/stars_transaction_peer_premium_bot.py,sha256=QRfDhM4V4ZX864IRoWQZwnJT1ITy1VLQeqzYx3je_ek,2072
|
|
3070
|
+
pyrogram/raw/types/stars_transaction_peer_unsupported.py,sha256=3k_NBUTMHay3Ml5Uuw0nb9knA_VzoDAYiwe0EhcB0hs,2076
|
|
3071
|
+
pyrogram/raw/types/stats_abs_value_and_prev.py,sha256=EJthc6ZFH0Lav9wP9p8v8AuRBpbtqU76RhzTDy3NSNg,2456
|
|
3072
|
+
pyrogram/raw/types/stats_date_range_days.py,sha256=088A85cR3sSYawCdmGRXmaBhEz6kJU8tWuvm5q-arSQ,2429
|
|
3073
|
+
pyrogram/raw/types/stats_graph.py,sha256=q7-EdtcNffIi8LVDnPuSAHfFPRcZodbhxQPFyzsLVyo,2839
|
|
3074
|
+
pyrogram/raw/types/stats_graph_async.py,sha256=gMdA4F8tGROTRQtv16gBje6Sw4vqEZ-dYGudj7HeWho,2357
|
|
3075
|
+
pyrogram/raw/types/stats_graph_error.py,sha256=Runa2JmsMBYIPpZnND9cw3mxc80_MXlywCVsm9NAZ_4,2357
|
|
3076
|
+
pyrogram/raw/types/stats_group_top_admin.py,sha256=ohktbfCUyVC6dBvsxxJyXxIki2TbfRsHCGoxvOxZGtA,2832
|
|
3077
|
+
pyrogram/raw/types/stats_group_top_inviter.py,sha256=OLbl2RFDgWVJhmDbBLfz7jRBHoT5JuagB_SA6NhB9FY,2460
|
|
3078
|
+
pyrogram/raw/types/stats_group_top_poster.py,sha256=-b3zbexcE34OLitQCGFcvIAG2UJDUgjQV7KvVvZd_g0,2664
|
|
3079
|
+
pyrogram/raw/types/stats_percent_value.py,sha256=cFPPvnCCNmPu4ugGxjte1BDNcWl1eMGycLERgXKTbN0,2387
|
|
3080
|
+
pyrogram/raw/types/stats_url.py,sha256=Z6T4wksBT3Y62CqGfXBG4NaqpmKh74TDMBCX4Y0BPCs,2105
|
|
3081
|
+
pyrogram/raw/types/sticker_keyword.py,sha256=ZMjd4FRBV-UHvDRP1LSpMxJre0lmzhBKFJVOnksbLWY,2468
|
|
3082
|
+
pyrogram/raw/types/sticker_pack.py,sha256=Ijbqr5LjqdEkBTbIJu9VNzeIrwu4dRqu1Zth-5n0_0Q,2444
|
|
3083
|
+
pyrogram/raw/types/sticker_set.py,sha256=OKaoVIpogicjyqDP7Qxwmn-pNb4ROR9_3ePBspHfujc,7510
|
|
3084
|
+
pyrogram/raw/types/sticker_set_covered.py,sha256=IDx9yGq4dZrVIDzq83EzF62mkR9j3UQ8leCnX10jTZI,2682
|
|
3085
|
+
pyrogram/raw/types/sticker_set_full_covered.py,sha256=rNb7kOd4iZcmoWT8V3jZGAbJpiRBZDPrOzjk8mIKouc,3373
|
|
3086
|
+
pyrogram/raw/types/sticker_set_multi_covered.py,sha256=bAKvU98-mbwDlsMMxwxn6cBOv5jJQqJWPAqPqeShgHI,2733
|
|
3087
|
+
pyrogram/raw/types/sticker_set_no_covered.py,sha256=LXr08wMxM1Q_UVEzYVwLvLJa5vePb9fmkVkjVSN40DQ,2435
|
|
3088
|
+
pyrogram/raw/types/stories_stealth_mode.py,sha256=DNm9Lk3ng-h25q53u8sgj8BZSiQqw4DbcTev6qt2yJg,3018
|
|
3089
|
+
pyrogram/raw/types/story_album.py,sha256=BLShsy0ECoN9czb-Rg4wmx454oWozG1nFMkwTf42mZM,3559
|
|
3090
|
+
pyrogram/raw/types/story_fwd_header.py,sha256=FmSPAdfLrPXci06PmAyXgeG36W8dYqx34XM46IkfI0Q,3501
|
|
3091
|
+
pyrogram/raw/types/story_item.py,sha256=p_5SAAY-LuqvznkAWc7rX5WzYyhdSL__24fiw8UbDeg,9809
|
|
3092
|
+
pyrogram/raw/types/story_item_deleted.py,sha256=UrUiZ74r1A3en4OwIY-rb5FcIs8NnyzmXAR5KeJtOkg,2131
|
|
3093
|
+
pyrogram/raw/types/story_item_skipped.py,sha256=gzA0D40AZoAhwQ8tDlWI9q6ZVxyNP0buFdmfOIK0o3A,3182
|
|
3094
|
+
pyrogram/raw/types/story_reaction.py,sha256=4Dag95M4396w7rMrhE0yLX15tx0umxMtG_5EcPJof9Q,2680
|
|
3095
|
+
pyrogram/raw/types/story_reaction_public_forward.py,sha256=tAGf1GHdOivCZFKgG_Vccru2j9spu08PgUOBli-ahIw,2271
|
|
3096
|
+
pyrogram/raw/types/story_reaction_public_repost.py,sha256=6kvVDoaDCA6hUhIQ2CmVtzmdSCmPTvBqLSGSh7lZIBQ,2514
|
|
3097
|
+
pyrogram/raw/types/story_view.py,sha256=s6Z4qbzDvXU0jAM2_QFSzIZsl0T6Pj8OlKsSUIvOzLg,3508
|
|
3098
|
+
pyrogram/raw/types/story_view_public_forward.py,sha256=KxC2R7QXS5alinWLShIQ6_mpxdKggg-VS2bZkXN2S5U,2974
|
|
3099
|
+
pyrogram/raw/types/story_view_public_repost.py,sha256=oL0AfUvdUGJ-zybN5ytHtkYxyHcPYKzYD1rJQ8-KcAM,3217
|
|
3100
|
+
pyrogram/raw/types/story_views.py,sha256=uGmPVggX94YjWJLuEiQ9WPOcQfMyshm4Pl2zMBzbbcU,4443
|
|
3101
|
+
pyrogram/raw/types/suggested_post.py,sha256=85BoJ8i5JOPo58bDf7bVNOAjZFUSvf1BrrTrdN1y-IE,3411
|
|
3102
|
+
pyrogram/raw/types/text_anchor.py,sha256=tr3cktTsaLv1vf0xGsl7SJsel_QtKINCET-c7-n1cfE,2368
|
|
3103
|
+
pyrogram/raw/types/text_auto_email.py,sha256=SSOWad9PnQaYzByc8QZ8A2Q6UUYbXGpoYbvcSpVKO68,2191
|
|
3104
|
+
pyrogram/raw/types/text_auto_phone.py,sha256=H9nrOAeikPaXFYWfeDnut4GoPlG1kAjysEn_vnPPOUs,2191
|
|
3105
|
+
pyrogram/raw/types/text_auto_url.py,sha256=nd7hjIanQjMUMnQiiCZmjHk6LPek4OeiTwl3WrqXSyw,2183
|
|
3106
|
+
pyrogram/raw/types/text_bank_card.py,sha256=X0MiRj8zM2golbw_wYqS6HTzMHiJZdiklBelLC5m0UQ,2187
|
|
3107
|
+
pyrogram/raw/types/text_bold.py,sha256=44osKkBfP7YRFj3vl8vOXFlPnjoKfOrWguJtdMbhpIQ,2171
|
|
3108
|
+
pyrogram/raw/types/text_bot_command.py,sha256=YMxRNLaHpwdGTvXPxBo0y-PnLai_WOyGCzKTRffIuUE,2193
|
|
3109
|
+
pyrogram/raw/types/text_cashtag.py,sha256=HiL8NjWJROQCAKy9VV_a-eC44CJ6gpXVpCNw1ntLUjI,2183
|
|
3110
|
+
pyrogram/raw/types/text_concat.py,sha256=xFZY5w5ScwPeJLtOPiukVgIe7swR_KLtwMCjhHoVdKk,2210
|
|
3111
|
+
pyrogram/raw/types/text_custom_emoji.py,sha256=nZauU669337OQY06gNKTacRt9f3_6lB0O_J-6O90OwI,2390
|
|
3112
|
+
pyrogram/raw/types/text_date.py,sha256=TOM5O6wUhuEdL4GXUp1N2F0q9FOoCgME6jo-rSZYw50,4144
|
|
3113
|
+
pyrogram/raw/types/text_email.py,sha256=dGD90mhYYmJpegnMvAUxgaXANh3U8kmuFu3zii6iaPs,2373
|
|
3114
|
+
pyrogram/raw/types/text_empty.py,sha256=VU3Uzd7P-O-A9mwGS0_rZS1XmOwm7Db5rC_3_0p1WOo,1976
|
|
3115
|
+
pyrogram/raw/types/text_fixed.py,sha256=g8qfAPO5q42Ci7dHr-sNUng0tdwP_pd28oxk8vao_CY,2175
|
|
3116
|
+
pyrogram/raw/types/text_hashtag.py,sha256=v8oEqfFwusVG-YWXNbzJ3_997trYYVmXCsgZhJX-qY0,2183
|
|
3117
|
+
pyrogram/raw/types/text_image.py,sha256=MEBhEuKtN7YbQGxp0ROMqxLu-HzGQdJMriqSXJxAvCA,2512
|
|
3118
|
+
pyrogram/raw/types/text_italic.py,sha256=c-k7J55XMajUa8heB5VwjY8D6_YGEnum1CQGRVccU_4,2179
|
|
3119
|
+
pyrogram/raw/types/text_marked.py,sha256=RuGbqtaXZOC08wTX6N1AdmBBA2bItxcg_WddBBXY9pU,2177
|
|
3120
|
+
pyrogram/raw/types/text_math.py,sha256=rVu0yF3KGdFVAj4aFTG6XzCinkIxXTO6AYDWeLGSecc,2132
|
|
3121
|
+
pyrogram/raw/types/text_mention.py,sha256=X7IEYGiehVttnPPAuoYSVMFTOHUY5oqoNeCyQkPGN-0,2183
|
|
3122
|
+
pyrogram/raw/types/text_mention_name.py,sha256=6o_InqzYc1CpF2x_OjnaP1V_GRHFgn-H-UfhhtO_t-c,2418
|
|
3123
|
+
pyrogram/raw/types/text_phone.py,sha256=g-EwkBtlsfEbi_TWVsM3wwAVBw1tfpj8d5cdDJou-Bs,2373
|
|
3124
|
+
pyrogram/raw/types/text_plain.py,sha256=1wKDU-Ufm9XQhao9IfQUbo3NEaR8Bw7EDd1DXD00IgE,2118
|
|
3125
|
+
pyrogram/raw/types/text_spoiler.py,sha256=HQ2Ri9MCe7-BRSkMKFSBzUOwsge-u7iBwhzXHp0HxIs,2183
|
|
3126
|
+
pyrogram/raw/types/text_strike.py,sha256=rALDk6bL9GCEHkZ59XYgCKWGujI3pMmdquYkBhSqluw,2179
|
|
3127
|
+
pyrogram/raw/types/text_subscript.py,sha256=oAL-833gFfLVftebAvIsIC2Wd8AdgxOdDdNaCGXsK0g,2191
|
|
3128
|
+
pyrogram/raw/types/text_superscript.py,sha256=CXYQI5LYxxttWiiz8rqcWURRtOjt24Wv09Tim0FpyKY,2199
|
|
3129
|
+
pyrogram/raw/types/text_underline.py,sha256=evP-HzqlZ8oEfwqTt5VnAFm59eoqKUpMbwqKJdTN7C0,2191
|
|
3130
|
+
pyrogram/raw/types/text_url.py,sha256=E04i4_uLjOwFrO8-_Nfg91ePp_CQbBs4vjZBMXcljm8,2595
|
|
3131
|
+
pyrogram/raw/types/text_with_entities.py,sha256=mNxZ3dOHNoLFh8sdfc6uio0MJguK3hqVVfAXW4M2S7Y,2684
|
|
3132
|
+
pyrogram/raw/types/theme.py,sha256=o9sg5ZmCCTjXPkABeweD3rEOiyZTB29IDOuAxog8XC8,5616
|
|
3133
|
+
pyrogram/raw/types/theme_settings.py,sha256=3ops1kMNI8Z65rBv5N9JDR3ob5Sy_y0x8RC-RpFKdqI,4431
|
|
3134
|
+
pyrogram/raw/types/timezone.py,sha256=KJNMXreOjOC6E2NO3Wq1wPSJqvU9h20RtXFzRm7-WRI,2530
|
|
3135
|
+
pyrogram/raw/types/todo_completion.py,sha256=kupmycvCu34nmGDXzD8-AYO08b-_vcB55NWhz9XL8D8,2621
|
|
3136
|
+
pyrogram/raw/types/todo_item.py,sha256=AyC88Ix8mYin5B16BtxY4hzDcvl70Ne7N6ZKZVIqVRA,2385
|
|
3137
|
+
pyrogram/raw/types/todo_list.py,sha256=nVxGWUGFqza_AwTK-osECChCHk5_gVYCJAYOngCenjE,3257
|
|
3138
|
+
pyrogram/raw/types/top_peer.py,sha256=e6lbCTJcFzfSTG1Vh83U7KUpDTw5KrDQc6zfjLvOWuU,2372
|
|
3139
|
+
pyrogram/raw/types/top_peer_category_bots_app.py,sha256=B6JJMFF973ZOBfFAvSyWPiSMk3VeeWtHhsxD1SG2drA,2035
|
|
3140
|
+
pyrogram/raw/types/top_peer_category_bots_guest_chat.py,sha256=zFChzyf-WC-rbUbvua24x6NSPT93_pg1G0wefAcU52g,2059
|
|
3141
|
+
pyrogram/raw/types/top_peer_category_bots_inline.py,sha256=Mx2CxeHqm5q_eFu94GsmbFoLcy6TGO9oog1enDFQb-w,2047
|
|
3142
|
+
pyrogram/raw/types/top_peer_category_bots_pm.py,sha256=HS9IRTLgf-xhIqsfO_P9je8dZ0rkXn8ubBUmM_q8834,2031
|
|
3143
|
+
pyrogram/raw/types/top_peer_category_channels.py,sha256=t4q6wMYSiyo54gDt7u7TMWf36J8VlPCpMBkQW2DPfNY,2039
|
|
3144
|
+
pyrogram/raw/types/top_peer_category_correspondents.py,sha256=hgKAJ2NBjuwYmK0sWV4rWalB9OPPIJrCxo6xVgR6Tp4,2061
|
|
3145
|
+
pyrogram/raw/types/top_peer_category_forward_chats.py,sha256=-GWjwwhDo-nxsCRZBQufBkDpbJDMJDvnwWct500K4tk,2055
|
|
3146
|
+
pyrogram/raw/types/top_peer_category_forward_users.py,sha256=7coEeXMoP3LKxvKAqyTD89Toe90bq_JoCMHauN0JPbA,2055
|
|
3147
|
+
pyrogram/raw/types/top_peer_category_groups.py,sha256=uB1JwzfZe1vAto8EHtOfEEmrvwYVALH4HTkdFW7jl78,2031
|
|
3148
|
+
pyrogram/raw/types/top_peer_category_peers.py,sha256=UHT8nUU3VoxSE6UrMTOUathlVSdaDUIX9RvNZPFt9dQ,2768
|
|
3149
|
+
pyrogram/raw/types/top_peer_category_phone_calls.py,sha256=CmuIBc7ZMebD9c61bsbXtBBOXoKo3hEcTAW9wuzCz8g,2047
|
|
3150
|
+
pyrogram/raw/types/update_ai_compose_tones.py,sha256=hooC_8v8ydN4OHjvQaUaw7AFgqknG0ARpGKThr97SMY,2018
|
|
3151
|
+
pyrogram/raw/types/update_attach_menu_bots.py,sha256=ztnUU1SK14ERMzoH6f8MxvV091hxJ-r-MNZBeXn0cpM,2018
|
|
3152
|
+
pyrogram/raw/types/update_auto_save_settings.py,sha256=GQvYFw3OIuJkq0wC3p5zaACgfU_OW3KapZz6ANrW7UE,2026
|
|
3153
|
+
pyrogram/raw/types/update_bot_business_connect.py,sha256=wt2e5tTTnX-nMy0TYK1Git6-gWZ4VRG2fGhZFah8P1o,2521
|
|
3154
|
+
pyrogram/raw/types/update_bot_callback_query.py,sha256=hUQgfBxi-3AnjeS8-qgk11Ou4aDTUyIGitmyFeIBaiE,3997
|
|
3155
|
+
pyrogram/raw/types/update_bot_chat_boost.py,sha256=WDrpMu34UksxKOE_aShQWeD-acPGyu8mO0-pd2HRjaM,2618
|
|
3156
|
+
pyrogram/raw/types/update_bot_chat_invite_requester.py,sha256=7ZMsm4vmp_WDcsuCy2XQviulXL7gIPTKcOvg4MhXLeI,3766
|
|
3157
|
+
pyrogram/raw/types/update_bot_commands.py,sha256=YmccUzwSLfqkAlvOAu9Efk4Xhp3EjmiyROW1nswi6dY,2713
|
|
3158
|
+
pyrogram/raw/types/update_bot_delete_business_message.py,sha256=vG_-pvHSw65hhuVzc8mowNyhhMfjrcLmDWKlxqd0oa4,2960
|
|
3159
|
+
pyrogram/raw/types/update_bot_edit_business_message.py,sha256=rHLlT42SQaKECI1NwyuqgP-o_tE2JEksBDhhKyIvSWs,3294
|
|
3160
|
+
pyrogram/raw/types/update_bot_guest_chat_query.py,sha256=ZI5v3N7EpCt-GLGoIEntnrLgUTl8r4KZEMeFF4Ztjnc,3276
|
|
3161
|
+
pyrogram/raw/types/update_bot_inline_query.py,sha256=7WqMBiVfB-tICe_j0Zy4EsVCFTQzxEipmsjuRcsw-Zo,3758
|
|
3162
|
+
pyrogram/raw/types/update_bot_inline_send.py,sha256=fySihK8wlGlK7HGQpvtZVsSp0GTB0FjxDgQFS_A9T6M,3471
|
|
3163
|
+
pyrogram/raw/types/update_bot_menu_button.py,sha256=nKncEUpHDCpJMLoRSkSk_wCn03QgXpuwmtfTmra5C_c,2463
|
|
3164
|
+
pyrogram/raw/types/update_bot_message_reaction.py,sha256=p8n8Z-jGpznZceTcd8zYX4mLYcbiJB54z-CIJOiSWZQ,3736
|
|
3165
|
+
pyrogram/raw/types/update_bot_message_reactions.py,sha256=3uvqnqM30LO3xoP37_rrEgq0k3d00aDjCoze_JUxHbU,3134
|
|
3166
|
+
pyrogram/raw/types/update_bot_new_business_message.py,sha256=sPeYqant6wPD5YjMrM7wiTuhV68_VNiKoG3qn9SOTeU,3292
|
|
3167
|
+
pyrogram/raw/types/update_bot_precheckout_query.py,sha256=jxgy_mNRn-wSAc_b5AMsObfaJKA0ziLnvLqhmW0BKfo,4139
|
|
3168
|
+
pyrogram/raw/types/update_bot_purchased_paid_media.py,sha256=VvSu1H1z-KNzjG2RmohsZ3t5Rzp_zjWhaOwJ12A3uyE,2618
|
|
3169
|
+
pyrogram/raw/types/update_bot_shipping_query.py,sha256=4grSP7w_UWP1nGDImJciSCnU_Vw7Zp7cO9mfPRkoSss,3013
|
|
3170
|
+
pyrogram/raw/types/update_bot_stopped.py,sha256=FLic1B4kSAVHoLhYKEpLgB7FbuYkavttPdtNR7kyhAU,2761
|
|
3171
|
+
pyrogram/raw/types/update_bot_webhook_json.py,sha256=iXrOn6NmnhtHMaXvbkxpiNK77kzw0JLpku_Jqi5S6F4,2217
|
|
3172
|
+
pyrogram/raw/types/update_bot_webhook_json_query.py,sha256=KItD7z8yAOQI-urmSrO45yNmD1BsNn-E5DKK4ob8tNU,2685
|
|
3173
|
+
pyrogram/raw/types/update_business_bot_callback_query.py,sha256=cAf7dCaCf_UNt6-knj71mg2Q26aKgAxtZVwaFf4GiDY,4192
|
|
3174
|
+
pyrogram/raw/types/update_channel.py,sha256=tAXbtSR25HzSPBJOChziytZ73d2QkmbiN53IknKMw5Q,2191
|
|
3175
|
+
pyrogram/raw/types/update_channel_available_messages.py,sha256=frQRBnl5Kjkd-TFK6ID6l-grTPuiJgT4ZkBTzTo97Bk,2558
|
|
3176
|
+
pyrogram/raw/types/update_channel_message_forwards.py,sha256=b7ow-AShRVW5QB4mYUGiUGqOHsPmhlSv3ACqUv9zGbI,2651
|
|
3177
|
+
pyrogram/raw/types/update_channel_message_views.py,sha256=lehuZqCtRciZnGG838f6g-y49HhKhKT69ANT1972dcI,2612
|
|
3178
|
+
pyrogram/raw/types/update_channel_participant.py,sha256=6oZzrk8ERqGRfvAaqnkKbdeOo-DP-1TWwePQYeXC-Ng,5008
|
|
3179
|
+
pyrogram/raw/types/update_channel_read_messages_contents.py,sha256=d3I83e0RoF3jgySajTPgXUfGACfRZKUcIgr9Ty_nELk,3476
|
|
3180
|
+
pyrogram/raw/types/update_channel_too_long.py,sha256=zM-4ZNN9jICtvZd7ZQtcbCYlckyaU6qy40JYlw_OvnY,2598
|
|
3181
|
+
pyrogram/raw/types/update_channel_user_typing.py,sha256=upujXfBKAvFLaXq0HnfWagK4JbH4fwQhMlEK0WBb1Io,3244
|
|
3182
|
+
pyrogram/raw/types/update_channel_view_forum_as_messages.py,sha256=uS-_YJ90vEm2J-SJClxWgQFpTIKK4H9vlCIMEv-5Xq4,2477
|
|
3183
|
+
pyrogram/raw/types/update_channel_web_page.py,sha256=ZKgEMOvgxYAjiQSVyiFzdTb-EZ4cQjygW2OY6Kducqo,2906
|
|
3184
|
+
pyrogram/raw/types/update_chat.py,sha256=5YHcK5q39eoBV1VHzxWoyoxvw7pyPmSufhTZTghFctQ,2152
|
|
3185
|
+
pyrogram/raw/types/update_chat_default_banned_rights.py,sha256=bLvt9ZPScXoUdMpZ1vPf-yN-OfkvKtny4snEMSBSNaE,2886
|
|
3186
|
+
pyrogram/raw/types/update_chat_participant.py,sha256=OLSBQgp2to81bEcQyWbGx3huiRNPrUF6GhMzwaMK3uc,4633
|
|
3187
|
+
pyrogram/raw/types/update_chat_participant_add.py,sha256=NJpknJuOXAWH_cECEwREHnXhp1r5IEEtHvGrquXKE8s,3086
|
|
3188
|
+
pyrogram/raw/types/update_chat_participant_admin.py,sha256=xsgzee9z3ovi3lLLkj0fqx2wD0U-CAVUM7btPMyZLnU,2876
|
|
3189
|
+
pyrogram/raw/types/update_chat_participant_delete.py,sha256=NFdZBdupe9PBH_BW6Q0P-fjtIyd0p152y62SX_Mgcj4,2659
|
|
3190
|
+
pyrogram/raw/types/update_chat_participant_rank.py,sha256=m2MSdt9hdnscIMGCOwIZdIMQiw4RiAlBjDQ00pSQCQE,2840
|
|
3191
|
+
pyrogram/raw/types/update_chat_participants.py,sha256=2hVxp5Rr4mmkHPqjlzx5aaims7rV4CJzJAIzqFq52CY,2327
|
|
3192
|
+
pyrogram/raw/types/update_chat_user_typing.py,sha256=uHKYx9Vdqpj7UYwHCOKR1ZUM89cCe31TIvH57bc_dLo,2749
|
|
3193
|
+
pyrogram/raw/types/update_config.py,sha256=eFj5ozbH9qo3Rhqu2ZAVFS_zlTEUuz7UgD6L2LxrbkE,1986
|
|
3194
|
+
pyrogram/raw/types/update_contacts_reset.py,sha256=Na1OX0fZGxcsfd9boa_H0OOzcKQS9yv_WgGg_HGTRCc,2014
|
|
3195
|
+
pyrogram/raw/types/update_dc_options.py,sha256=eSw7osmfQsmN-eztmnhiyFfu3gFdQhmlx2WldHJlG5A,2273
|
|
3196
|
+
pyrogram/raw/types/update_delete_channel_messages.py,sha256=hCsslVRprOAOZ6VKNVQiUj3qnaTql8S2kDzhmD2zkwc,2932
|
|
3197
|
+
pyrogram/raw/types/update_delete_group_call_messages.py,sha256=LBG4orAPXNn6TZ3uNTKptPf_bB-GLWSqbvK4Rm-5H_Q,2544
|
|
3198
|
+
pyrogram/raw/types/update_delete_messages.py,sha256=3Dm0sBsKn9BbXPg-36iv4cqtsjMti3lSw4L4Ll2qg3Q,2656
|
|
3199
|
+
pyrogram/raw/types/update_delete_quick_reply.py,sha256=2mTryuHvqHq5RlwrGO6gojpuyg71cY684hQsPmTsw4M,2233
|
|
3200
|
+
pyrogram/raw/types/update_delete_quick_reply_messages.py,sha256=W3t-J1SenKWqLSj4H7fTZu7CtwOT9_S7lO91LqHPiM8,2532
|
|
3201
|
+
pyrogram/raw/types/update_delete_scheduled_messages.py,sha256=2vwgshHyko4Godj0JFDWI1NuwyDZASbnNLL--9Ptlv4,3028
|
|
3202
|
+
pyrogram/raw/types/update_dialog_filter.py,sha256=FGIZw8aqHISzK8tJMLj2b519luaQpDZp41XNqNAXCXs,2618
|
|
3203
|
+
pyrogram/raw/types/update_dialog_filter_order.py,sha256=04zTshtHOp36BeOuzXRSNAV2vL82C2ci3jfKrf_bVZg,2223
|
|
3204
|
+
pyrogram/raw/types/update_dialog_filters.py,sha256=M2eBhJcS9fWVr7rfs5XCqunEsDFY6Rfup3t0mTEiL3E,2014
|
|
3205
|
+
pyrogram/raw/types/update_dialog_pinned.py,sha256=hiNfmnFaO9CQaggtCA6qC7q_Ey44qXhzBAIR2qq874Y,2920
|
|
3206
|
+
pyrogram/raw/types/update_dialog_unread_mark.py,sha256=a3MErF_MYQd2bWmTGxB7f0cSfCMbVsjlxQRF5c0fMkA,3018
|
|
3207
|
+
pyrogram/raw/types/update_draft_message.py,sha256=hfUenWP8oUrPTbFM81wxPZjiWGo1A47e4cryxUWgCKQ,3402
|
|
3208
|
+
pyrogram/raw/types/update_edit_channel_message.py,sha256=RCGwHYh0YdE7P0FutCf-JH2R5rvGYgn8HVo926qppNI,2674
|
|
3209
|
+
pyrogram/raw/types/update_edit_message.py,sha256=XCDyuNrraVCEyHe5xkyGxr8W82XX_md2h6XcdD-ajUc,2646
|
|
3210
|
+
pyrogram/raw/types/update_emoji_game_info.py,sha256=5cRkgK2NbnBtbEt_XOI54Hq-RAte3Q3_L6m3XxtK9d0,2269
|
|
3211
|
+
pyrogram/raw/types/update_encrypted_chat_typing.py,sha256=tmfV5rhsgJeMlWMuP4kP199jBYkUjpfq_sdxJr4sFi8,2209
|
|
3212
|
+
pyrogram/raw/types/update_encrypted_messages_read.py,sha256=EWLFVvlGIhGiVR2cHvcC0g61Hbzzm4rX5DhNYTL7beM,2635
|
|
3213
|
+
pyrogram/raw/types/update_encryption.py,sha256=phQz8_2maAzotct9dKta4OofcHviHQ-VntmBVjLYYks,2412
|
|
3214
|
+
pyrogram/raw/types/update_faved_stickers.py,sha256=AkeBfoEoIpcBFSZUfuZ-z9cu-worP-zpX9YEO-bd3JM,2014
|
|
3215
|
+
pyrogram/raw/types/update_folder_peers.py,sha256=RZ5BELe89CWIrM6NsVVkdNfqAzjVCn0XktPfzA5J9VY,2725
|
|
3216
|
+
pyrogram/raw/types/update_geo_live_viewed.py,sha256=IDhUbBB_r2XLY23ClG2X4oC7fOCIebwLiC0nO1BswFw,2406
|
|
3217
|
+
pyrogram/raw/types/update_group_call.py,sha256=JuJT6bue8y3NqBfsH-c0deULpR4GUFe-E_jZU-ZBDRc,2923
|
|
3218
|
+
pyrogram/raw/types/update_group_call_chain_blocks.py,sha256=kvuNVPX3d96QwXmGajiWqkag0E4cb2xbTpNMPmishM8,3030
|
|
3219
|
+
pyrogram/raw/types/update_group_call_connection.py,sha256=L1kieTRkeQaiZ7uHRW2lhKJgC7A_WiV2YfBEkF7W6GE,2610
|
|
3220
|
+
pyrogram/raw/types/update_group_call_encrypted_message.py,sha256=t-Q_gO3gcGRBWG-9VeHsKYQHYreQUYjvIoW9z1m4IO0,2849
|
|
3221
|
+
pyrogram/raw/types/update_group_call_message.py,sha256=KkeHmXpW5y3stZZ6JgSf8eZE-mPRMLTbUMXkBVZlNmk,2554
|
|
3222
|
+
pyrogram/raw/types/update_group_call_participants.py,sha256=gPFsffRKtILT2hHrKqk-Y5Ll8mp82EOinU9e_oQP_-Q,2875
|
|
3223
|
+
pyrogram/raw/types/update_inline_bot_callback_query.py,sha256=w-b1_ieWlVLTrbekpXJju0WQeen0TWvjWuk75GEC2NQ,3906
|
|
3224
|
+
pyrogram/raw/types/update_join_chat_web_view_decision.py,sha256=GUNlcA4FNkppPKzLCqp86NtpVaeM6pXaXYa6cJf_A9o,2767
|
|
3225
|
+
pyrogram/raw/types/update_lang_pack.py,sha256=nTuiIK4ZbM0ddtcJHnKZlPOe6qdDrqEv7tC4JlooISU,2287
|
|
3226
|
+
pyrogram/raw/types/update_lang_pack_too_long.py,sha256=ZZKGUzt57wDtIHwxf0pX5UQIKaJbQzpiz8JXIVJSvA0,2209
|
|
3227
|
+
pyrogram/raw/types/update_login_token.py,sha256=MeCFb0-7t_my4aGRQ066v3yp1nQJDA3xKtN4F9fJwK0,2002
|
|
3228
|
+
pyrogram/raw/types/update_managed_bot.py,sha256=Ev30F2mwQbfPH2WB6ZnheZqSWczxmST0R-RB0GH2ujw,2570
|
|
3229
|
+
pyrogram/raw/types/update_message_extended_media.py,sha256=0GMET9WG2IpfPIX76Z_JdYZz60ZDpXjvGKZadH65Zjg,2840
|
|
3230
|
+
pyrogram/raw/types/update_message_id.py,sha256=98qwP4Dm12T5aYGXQuDOdsr-X9FGZmB9nlq_EAreWRM,2363
|
|
3231
|
+
pyrogram/raw/types/update_message_poll.py,sha256=cfbxH-LFE4r3784u3BlUVIrvSXlfMSliBrwpRu6E2TI,4054
|
|
3232
|
+
pyrogram/raw/types/update_message_poll_vote.py,sha256=33a3LXv_Qg1uY-VwAUHuAydTJ3PIJntw-eK_v2W5YK0,3141
|
|
3233
|
+
pyrogram/raw/types/update_message_reactions.py,sha256=q994ZMELwJsSbAM9fCtk_y2HLfTO5ZjaM2Gsv11gCA0,3679
|
|
3234
|
+
pyrogram/raw/types/update_mono_forum_no_paid_exception.py,sha256=_7-1GuogPGnsfHBPENKoWad8ETMUWS8VfdzPCdBfhcw,2900
|
|
3235
|
+
pyrogram/raw/types/update_move_sticker_set_to_top.py,sha256=kluxZ5JvPMZNvBsaa-1KiZ3D3jjzRh155bTx8gec3kI,2791
|
|
3236
|
+
pyrogram/raw/types/update_new_authorization.py,sha256=-KGA1Gk-r0dYpXJj10BxRFGIcFaxZ2SkwZQlId3_a2c,3618
|
|
3237
|
+
pyrogram/raw/types/update_new_bot_connection.py,sha256=x-0Tnsbj1XWKpUvFHtumgrP6JPSp44mKlAqyDrqS97g,3618
|
|
3238
|
+
pyrogram/raw/types/update_new_channel_message.py,sha256=3phoLiuqjzKP8LdWDjduWCn-yIfOtEy9ijytKezoLAI,2670
|
|
3239
|
+
pyrogram/raw/types/update_new_encrypted_message.py,sha256=zCxXsw-o5ugzFSZmW0vQ8m5tCT6HEVHhINaub5VXmOU,2478
|
|
3240
|
+
pyrogram/raw/types/update_new_message.py,sha256=s8k_5Ksq-5XbA50anhWaLxgiLzNy1JerdA2i1X0KYS8,2642
|
|
3241
|
+
pyrogram/raw/types/update_new_quick_reply.py,sha256=ojkcmmqjMq5DxW2VgCVKyG1x_hEl9PF-NXqhvDWy2aA,2284
|
|
3242
|
+
pyrogram/raw/types/update_new_scheduled_message.py,sha256=AW5kZoy4YxlBDKjiF5Fx01FIFcSgZDGUti4r1yYhDec,2260
|
|
3243
|
+
pyrogram/raw/types/update_new_sticker_set.py,sha256=LgUWHd4FgQ0qftlbFFQcDK0GXSk6pMMZEXmMRTxvLB8,2311
|
|
3244
|
+
pyrogram/raw/types/update_new_story_reaction.py,sha256=wX4DK1AbvqWdOHGUYpJuXIiQqaNnJpoQOxokZ5T-HYE,2718
|
|
3245
|
+
pyrogram/raw/types/update_notify_settings.py,sha256=ux9-zxENSrHeHvJDe8q-52U_rYLTEmlrRwX6hrHszUw,2610
|
|
3246
|
+
pyrogram/raw/types/update_paid_reaction_privacy.py,sha256=03nCbaD1YJOjMRfI0T8sexG1SlkJmcb3iSLVRnVjpBU,2308
|
|
3247
|
+
pyrogram/raw/types/update_peer_blocked.py,sha256=9EzF3N7WSP8bsKJGzcMlsMR8QiYtsdBjMsbe5Rbz9z8,2939
|
|
3248
|
+
pyrogram/raw/types/update_peer_history_ttl.py,sha256=F7DrHQZLu2eqI9zz4OQsxqWMJ2EMFdJIOioOv_ox55M,2657
|
|
3249
|
+
pyrogram/raw/types/update_peer_located.py,sha256=OXTIdwNj9_FxdKQjv6Ta9lTGY3BpHIe0GJ8FwAHTm6c,2248
|
|
3250
|
+
pyrogram/raw/types/update_peer_settings.py,sha256=DVVZ9G9y9i-s8R-oy748NkJk1YV_zdi1s01wwsxGbEE,2491
|
|
3251
|
+
pyrogram/raw/types/update_peer_wallpaper.py,sha256=tfkZ-n3y7kMDWC18b6q9CtQPW_tVN2WYoMwFT4FiNXE,3084
|
|
3252
|
+
pyrogram/raw/types/update_pending_join_requests.py,sha256=jXUkFZ7LW_IUgkr7bXNPt__uvfU6HMRSjMFkOIbC5MQ,2871
|
|
3253
|
+
pyrogram/raw/types/update_phone_call.py,sha256=7kHq8HJLlrMSJEaPKc7rfLWyUtl1StDzLfRQ516vaqw,2255
|
|
3254
|
+
pyrogram/raw/types/update_phone_call_signaling_data.py,sha256=jwq1T5k-bFkkmrh7o1Ns9KHYTt4xz74yT-R8aiHJ190,2468
|
|
3255
|
+
pyrogram/raw/types/update_pinned_channel_messages.py,sha256=MImBzEWh98Zhd0ncnkgHoYrT6WdVH5MFiG1sFJe8Fnc,3235
|
|
3256
|
+
pyrogram/raw/types/update_pinned_dialogs.py,sha256=0SKZaZPnatC1LM9rWTiXZL9mWX_r2kjoRFzXOOg5R1U,2848
|
|
3257
|
+
pyrogram/raw/types/update_pinned_forum_topic.py,sha256=Tkqn3lA4FYKZXsbgCc7uiHVpnafuns-ISFqhtNxPcIc,2739
|
|
3258
|
+
pyrogram/raw/types/update_pinned_forum_topics.py,sha256=dumu4Y3EqCoPIpo9talKiyoK3cS_o4GIHdJcv7IGQz0,2649
|
|
3259
|
+
pyrogram/raw/types/update_pinned_messages.py,sha256=qQC4RwBe5p2FJbzm3eoHJLqPIssK5Qv3erhMA6lKarE,3189
|
|
3260
|
+
pyrogram/raw/types/update_pinned_saved_dialogs.py,sha256=Q0VOwa9Pvya6PDkEG2xOI-mpQRBN5G4ey2tGnTUgq-4,2468
|
|
3261
|
+
pyrogram/raw/types/update_privacy.py,sha256=uiZJXYqALMwQv3Uk3Ucp22aR1TULRzxZQvzvvjPN5tE,2477
|
|
3262
|
+
pyrogram/raw/types/update_pts_changed.py,sha256=GoF03QJih-XrngxTzxQJMbhGJ3oGOQLwGBkTCe47Uqk,2002
|
|
3263
|
+
pyrogram/raw/types/update_quick_replies.py,sha256=MZsEQhqtTzw5HYe1Oz9zH_MjYBF0Nrd2mxhAyQecJt4,2320
|
|
3264
|
+
pyrogram/raw/types/update_quick_reply_message.py,sha256=fh0zCjgwAuOxn2AiI6DF2rHi1BbNQPbW9ej3Vr_ymic,2252
|
|
3265
|
+
pyrogram/raw/types/update_read_channel_discussion_inbox.py,sha256=-5ugrzkCF3qAT9JbQ6Su5nOyGYlNzv-48lO8I1C7UJo,3702
|
|
3266
|
+
pyrogram/raw/types/update_read_channel_discussion_outbox.py,sha256=7LckpeWDAHbGOdVQ__A2TB4s9txee52Esnt1qnCHjBU,2770
|
|
3267
|
+
pyrogram/raw/types/update_read_channel_inbox.py,sha256=fUlJXI-YzgVEdZyF8_1LnIkwcVB20hSgGlL8cW3vlas,3380
|
|
3268
|
+
pyrogram/raw/types/update_read_channel_outbox.py,sha256=fcqylvEq-YBH4-X7E_sqAZqa_AyPV8KPgfPARB7KszM,2440
|
|
3269
|
+
pyrogram/raw/types/update_read_featured_emoji_stickers.py,sha256=dmk4vcKV8EGhCn6dBaxPjl7WzC0vUYT5_V15Eng6UfY,2062
|
|
3270
|
+
pyrogram/raw/types/update_read_featured_stickers.py,sha256=GT8pihPPwxuYmAhM-galTIuoIRJDdgr5HA3IUDigvB8,2042
|
|
3271
|
+
pyrogram/raw/types/update_read_history_inbox.py,sha256=osN93U__oGeYFasOzSg03Hxw14XiCMWbVKlecssepys,4009
|
|
3272
|
+
pyrogram/raw/types/update_read_history_outbox.py,sha256=W8swraup5b5zfUXTw2gTYgiOsXO0BRRzsktX5zDPe9o,2840
|
|
3273
|
+
pyrogram/raw/types/update_read_messages_contents.py,sha256=npsbmj_8Vxl7V9BmvRGav2Plo6ukGhwBaUvBI3ZS_ZM,3070
|
|
3274
|
+
pyrogram/raw/types/update_read_mono_forum_inbox.py,sha256=Win_LNSmS1g8g64uBgQG39a4ow75BytcJ0Y7_y9omk0,2800
|
|
3275
|
+
pyrogram/raw/types/update_read_mono_forum_outbox.py,sha256=8C4xF_AInU_vnyuKV--8rzDjeQgg5GSFMY26JfZZG5Y,2804
|
|
3276
|
+
pyrogram/raw/types/update_read_stories.py,sha256=81GbGST0NgLbSDzD82dzOC5J-Vv-4ee_8L2-O3leqOE,2398
|
|
3277
|
+
pyrogram/raw/types/update_recent_emoji_statuses.py,sha256=TfC02nJpV9nbODWLaGsJqbTFtqlI8OOlOvvK88rwCiI,2038
|
|
3278
|
+
pyrogram/raw/types/update_recent_reactions.py,sha256=xeBIbOMP5dctuCH-Ew28bb_iFMycAFMHcqc9uWSlKqI,2022
|
|
3279
|
+
pyrogram/raw/types/update_recent_stickers.py,sha256=YhHPlwHhh7LRy7LrhfjIM6X9FKSJ7xUJNR6th5wgpq4,2018
|
|
3280
|
+
pyrogram/raw/types/update_saved_dialog_pinned.py,sha256=tipE8JTWUzca989oZ4bFN3PRQ7l4ziCiqP0Gh3vK8eo,2540
|
|
3281
|
+
pyrogram/raw/types/update_saved_gifs.py,sha256=uhL_jF-Sbg-Rn3Ytm-E8NIKYF3-UHlnvyjAwwH-n87U,1998
|
|
3282
|
+
pyrogram/raw/types/update_saved_reaction_tags.py,sha256=sMsgRQHTspWIASlOnF1ePCxQe3esJEMAAG37S8-RsKU,2030
|
|
3283
|
+
pyrogram/raw/types/update_saved_ringtones.py,sha256=UVcF2O3g0k_sIknDc91Ai4zEhMwEkg06DByZ6sOmaGc,2018
|
|
3284
|
+
pyrogram/raw/types/update_sent_phone_code.py,sha256=CjKSXN51rrucrOA-475IpFMvVzObNM_V1qxc9tC4izY,2278
|
|
3285
|
+
pyrogram/raw/types/update_sent_story_reaction.py,sha256=ZHOvF53irow3A2Cr5bFtj_29LQMSsRqNjYMh0tZjNLU,2722
|
|
3286
|
+
pyrogram/raw/types/update_service_notification.py,sha256=YHysHl-Yd_F5kLJz7H0VpOhRgOxtzV8BM06IfIOwR0Q,4008
|
|
3287
|
+
pyrogram/raw/types/update_short.py,sha256=lnN5leLaOY_ZXesbWqiCw97RQKm6TqTIUmrq3HjdUh0,7632
|
|
3288
|
+
pyrogram/raw/types/update_short_chat_message.py,sha256=FArJYL9wAY2njJEkvh43mEqfTQwQd-i3MtLTgpTWX7w,12073
|
|
3289
|
+
pyrogram/raw/types/update_short_message.py,sha256=qYvg8nHgZZArZRHzfW3-7QfyZSlmPnOeZTX-ms6lnEY,11836
|
|
3290
|
+
pyrogram/raw/types/update_short_sent_message.py,sha256=9dedOBOLJrR09043scR4hmMZpypUVBTZ86oZiCpEFho,9608
|
|
3291
|
+
pyrogram/raw/types/update_sms_job.py,sha256=c2CLsLB6PXe23F5-AO0hDWLi-iqmFQUh1TkYHevOwUc,2146
|
|
3292
|
+
pyrogram/raw/types/update_star_gift_auction_state.py,sha256=ri9M47MJkZDnEzmZ_W5IknnILNfizYWS0NBmletIjjU,2519
|
|
3293
|
+
pyrogram/raw/types/update_star_gift_auction_user_state.py,sha256=kXu00tRejHBhKjCfHPYsFY0KN6dGj7ue44LFvCLipgI,2596
|
|
3294
|
+
pyrogram/raw/types/update_star_gift_craft_fail.py,sha256=6AyuDQHjenTH7OBw4dBbI5Su5PYG6K_a9GiTPfk5ZqA,2030
|
|
3295
|
+
pyrogram/raw/types/update_stars_balance.py,sha256=SpEYnxYnfRyzdy1SafsP-86GywBqkI1J2H6BpIQt6o8,2248
|
|
3296
|
+
pyrogram/raw/types/update_stars_revenue_status.py,sha256=r-wWC1pUNQyRkHI06hX-DSkTPrwOnFihHQL542Nrsys,2521
|
|
3297
|
+
pyrogram/raw/types/update_sticker_sets.py,sha256=ZIfydJKVodlKTE4RTt1oMGxaUcrFYs9M-ysAkYxNYcc,2511
|
|
3298
|
+
pyrogram/raw/types/update_sticker_sets_order.py,sha256=5gE8_AEdl1fcugb7EQ-JalhY98v2VTLeFSgj51nxZ9Q,2772
|
|
3299
|
+
pyrogram/raw/types/update_stories_stealth_mode.py,sha256=PVLcSarR32ecPSEwAa5j1POpUUxXl3TvSmK1E4CKux8,2345
|
|
3300
|
+
pyrogram/raw/types/update_story.py,sha256=0VgkBFI7g7bJmC4fn1w_7E8TXZwDLOYB3_Vfnu3vHWY,2424
|
|
3301
|
+
pyrogram/raw/types/update_story_id.py,sha256=uneBZ2UI4aPjruZtHdn1PS2fIOc6_DhFCv2-_sL4-_w,2355
|
|
3302
|
+
pyrogram/raw/types/update_theme.py,sha256=kqc5uyHoi08BCbFCuoY7EuMd1C9FULJSG9RQ7g7CvxQ,2178
|
|
3303
|
+
pyrogram/raw/types/update_transcribed_audio.py,sha256=QeTXVHaElZsrT1qIyj0BJxYuBQlEFBL4FmTUYNB_4x8,3217
|
|
3304
|
+
pyrogram/raw/types/update_user.py,sha256=_nNZg7xogZIZhkilwcKsoIX64_-w306cO4TA5QOWzpQ,2152
|
|
3305
|
+
pyrogram/raw/types/update_user_emoji_status.py,sha256=4fvZGNeuKfLrm6nIJ95p4Zl2UmJddP_zYZyemrekmwM,2526
|
|
3306
|
+
pyrogram/raw/types/update_user_name.py,sha256=-ka9ZWfqX3JGxdwyGo6B00uiAUSrTRGljnoXuv735jw,2958
|
|
3307
|
+
pyrogram/raw/types/update_user_phone.py,sha256=kw5ktTAAdFDXdN64IT5w7a3TQo2jus32J523AxqjL0w,2368
|
|
3308
|
+
pyrogram/raw/types/update_user_status.py,sha256=X_2sZ8ZTroXe_oDbR3aO_NH15ogHNYbNDKcXzVLS0-I,2448
|
|
3309
|
+
pyrogram/raw/types/update_user_typing.py,sha256=0-eX8qOtH-ytNpb3DAX8F-c-47WZVOkg8gJbfBTSddU,2932
|
|
3310
|
+
pyrogram/raw/types/update_web_browser_exception.py,sha256=9Sjhzd39bxMjPf3JvV1xpLw33EIP2mr2t4mPYKKRgd8,3151
|
|
3311
|
+
pyrogram/raw/types/update_web_browser_settings.py,sha256=I8V0KGigR8L8RmVk9_FVU4FQV94CaDINnlYFIsXzUw8,2809
|
|
3312
|
+
pyrogram/raw/types/update_web_page.py,sha256=bTz-4D3KcAbulzyIc0hpwycxstfmitM1ORsI5MrB3uo,2630
|
|
3313
|
+
pyrogram/raw/types/update_web_view_result_sent.py,sha256=Ququxv3ydCekZzBQNE4zp73bVJZzoMgXlHe_1-iVoaQ,2213
|
|
3314
|
+
pyrogram/raw/types/updates_combined.py,sha256=fYJQo4B_rwu_auppOeXoTTjmqycppMzq9GmYD6coRQ4,8619
|
|
3315
|
+
pyrogram/raw/types/updates_t.py,sha256=0N0jEo32h6YmRLcHVKUoGe6gJ13cKQeT1RbquKR_jsM,8351
|
|
3316
|
+
pyrogram/raw/types/updates_too_long.py,sha256=vFXZW-c9ZkYgWaEmoIGNcEcuvU1RfTnoPmIv6IKD3RY,7244
|
|
3317
|
+
pyrogram/raw/types/url_auth_result_accepted.py,sha256=6jeZ1L4dqalJ5pqFRsvgOdlc9dpEM55nfE-rw0uLUgc,2602
|
|
3318
|
+
pyrogram/raw/types/url_auth_result_default.py,sha256=W75a21Y3dEQSkF9RIdfV61480z_oT6_7x8JHUbOG4R8,2268
|
|
3319
|
+
pyrogram/raw/types/url_auth_result_request.py,sha256=TM3b8cTTq-L155Wu3YDSpSa1LOAx2s7qDx34gclvuXo,6903
|
|
3320
|
+
pyrogram/raw/types/user.py,sha256=nYLJlKiaHnWeLkcZDLevMaE235BnKozIpGcyzHY1Dtk,21084
|
|
3321
|
+
pyrogram/raw/types/user_empty.py,sha256=75ew4NFfh7x3QW88Fl1Zudt7DlaPrTIfwhcuCV2dL04,2590
|
|
3322
|
+
pyrogram/raw/types/user_full.py,sha256=45zzpspKm4_IdTVj38ikIExiwYIUNV1B8dK0lOu4l2w,28542
|
|
3323
|
+
pyrogram/raw/types/user_profile_photo.py,sha256=cUXnYoyCNrmVoHiwT6BAFH021TmHBzwjN3TunNNNjNM,3455
|
|
3324
|
+
pyrogram/raw/types/user_profile_photo_empty.py,sha256=mrRhFgQtlaT8TEJ3ModhnMvpzQUy6UzhPW0Aazg8ZJs,2032
|
|
3325
|
+
pyrogram/raw/types/user_status_empty.py,sha256=dRQZEdOJaBaEuXsQwN0VE1yJQELjFdAnwACg80wsASc,2000
|
|
3326
|
+
pyrogram/raw/types/user_status_last_month.py,sha256=EhZMzQNBVpiDeDCA70HOxvhOhWLyHL4t0uc49usSK9Q,2265
|
|
3327
|
+
pyrogram/raw/types/user_status_last_week.py,sha256=SqC_eU4eq85w7tyL8gsDiSih63g3NHVnmHoVm0bdEJI,2261
|
|
3328
|
+
pyrogram/raw/types/user_status_offline.py,sha256=jx9JkXfX37_b6hS0Qvg5zd06wYqxelvVeOqi0HF3JtY,2204
|
|
3329
|
+
pyrogram/raw/types/user_status_online.py,sha256=g5QxcQ4AcsRVuJgnob3ky7BaPmVfWOC6Es456dPOZpg,2177
|
|
3330
|
+
pyrogram/raw/types/user_status_recently.py,sha256=AmOrpfyqyqFZ1kzGBSDOiQ6bIpzZZx2mS-qY_tz166A,2261
|
|
3331
|
+
pyrogram/raw/types/username.py,sha256=e3JQoh_EkPxwS8qp_mv_FQGxLPgDeBRejtaF5UVGozw,2729
|
|
3332
|
+
pyrogram/raw/types/video_size.py,sha256=OuY-VcmEXRoMnrWT4zlRxN8Z4jmG2Im0lc18Vw5JKJk,3151
|
|
3333
|
+
pyrogram/raw/types/video_size_emoji_markup.py,sha256=cpWj1VVnwbQ9mkkEji1yIM1fVxNMIBTlqyDEhMpGyOg,2552
|
|
3334
|
+
pyrogram/raw/types/video_size_sticker_markup.py,sha256=28DHPTM442dm47rdeVtikU8k2DrlkfK2hzc2Bo2nHG4,2904
|
|
3335
|
+
pyrogram/raw/types/wall_paper.py,sha256=ofc43vi5nRf88Ti3Iz1m7cxQoO6ShGz8I9FEi8_b1O8,4679
|
|
3336
|
+
pyrogram/raw/types/wall_paper_no_file.py,sha256=fAPd9A2Jh6fU9tlvSgZQVi7vQruiaY-2CTTbf71X9XQ,3441
|
|
3337
|
+
pyrogram/raw/types/wall_paper_settings.py,sha256=P9bM09aK9iqg_UuuY6NbuCFeil-mBMAt2CELqtSxHv0,5817
|
|
3338
|
+
pyrogram/raw/types/web_authorization.py,sha256=k4L3Zz2B46h0noIJhuZxO6ztXjnPO5UDwy8C4jkte-c,3914
|
|
3339
|
+
pyrogram/raw/types/web_document.py,sha256=SD1S0tz1D2dr6oRpe5xWPW9iNnMgKbfLje9ViK4UfTg,3160
|
|
3340
|
+
pyrogram/raw/types/web_document_no_proxy.py,sha256=mFIqxQWvlBVuSgZApkXWCUNnpSu_N0x5hYtP725925I,2931
|
|
3341
|
+
pyrogram/raw/types/web_domain_exception.py,sha256=1LsPJjGTx-Q3we4dTHZjuXwZN63SexYdz098saCFE1s,2986
|
|
3342
|
+
pyrogram/raw/types/web_page.py,sha256=Vecx2cx8Ctp9I5HXHnBG73p4Bib4XwlHZzXZtu3DtHI,9219
|
|
3343
|
+
pyrogram/raw/types/web_page_attribute_ai_compose_tone.py,sha256=tzp3fFOcAxNk-Szt11rfvG0iwK0jkXqndUZ44b-g0yc,2247
|
|
3344
|
+
pyrogram/raw/types/web_page_attribute_star_gift_auction.py,sha256=fLWNNQUqSHfb0hD4oYfiC1e39gDA6lnvBoPx5xXmsQc,2496
|
|
3345
|
+
pyrogram/raw/types/web_page_attribute_star_gift_collection.py,sha256=nVH9SPpeT3w0EOWHt3-bKx6sBELJu34QdrdZ1mTIQVw,2314
|
|
3346
|
+
pyrogram/raw/types/web_page_attribute_sticker_set.py,sha256=IzWcMsNGLTvqsvE0VkGXe6hbJshvCU23BFuFMoAYUFg,2906
|
|
3347
|
+
pyrogram/raw/types/web_page_attribute_story.py,sha256=k1f82pIwgMgAH_VLF_aJ08uRUaZfoez7MzOHhoWdW_g,2847
|
|
3348
|
+
pyrogram/raw/types/web_page_attribute_theme.py,sha256=CnBQBwtYSmIvhSj21PKeQwmf7UZ0leb6dU_EW890BWc,2965
|
|
3349
|
+
pyrogram/raw/types/web_page_attribute_unique_star_gift.py,sha256=pWEajLUiDd0oFpPeeKMiOrD0mOq8Y5GXWLEowIDqkMc,2267
|
|
3350
|
+
pyrogram/raw/types/web_page_empty.py,sha256=Tf9Smb6kfNX5k4V8vzb633IvuSM_9Hl5K6wcHJn_av8,2493
|
|
3351
|
+
pyrogram/raw/types/web_page_not_modified.py,sha256=xl1ma0BibUCFLPphwGGiio1PqWwUf4pPAn2Q381ZiGA,2497
|
|
3352
|
+
pyrogram/raw/types/web_page_pending.py,sha256=BgilVjs5ubdnoMYTYeELNx8aXusd6lj1p3gmZ_jj0c4,2692
|
|
3353
|
+
pyrogram/raw/types/web_view_message_sent.py,sha256=YsMSWgSoBX9paWICpxI8tkV5hjBpLJLnZIhdT3SBvWY,2716
|
|
3354
|
+
pyrogram/raw/types/web_view_result_url.py,sha256=O-L1v5pM5c9nqyL4dTtmdCmpAmxytkPfbm_z8HXpUj0,3781
|
|
3355
|
+
pyrogram/raw/types/account/__init__.py,sha256=MarUIAtVdie8LsMO2AxTAWx779k14y8MrIwzNal452A,3068
|
|
3356
|
+
pyrogram/raw/types/account/authorization_form.py,sha256=x0wmtGkWMBOai7pYvGSGiBPCpPHGlpGZgT_cYDdtgB8,4015
|
|
3357
|
+
pyrogram/raw/types/account/authorizations.py,sha256=Z2T5ovhShIQrNSPg8iHZvIZXeSVVE2vSvcTl9ki180M,2911
|
|
3358
|
+
pyrogram/raw/types/account/auto_download_settings.py,sha256=5FXA7j9AjqC52GZfC26E36CCg-iUvjJnVYFApr_8sME,3107
|
|
3359
|
+
pyrogram/raw/types/account/auto_save_settings.py,sha256=0c0th-fmRWIXT1borL9H85ppSG7piu7sI0W6vzQnWY8,4221
|
|
3360
|
+
pyrogram/raw/types/account/business_chat_links.py,sha256=ifEv1hweGZ3iZGR8gUDeZcOpzCSWXIG9RgOTQTGF19k,3029
|
|
3361
|
+
pyrogram/raw/types/account/chat_themes.py,sha256=I7pzcoTuF56rWLWk_8kVr9leCXEXe6Gq17j67azKgYo,3637
|
|
3362
|
+
pyrogram/raw/types/account/chat_themes_not_modified.py,sha256=8xSKE8q9jCziscTKtu3VM4W6hIF5VKEA0JMyu_NPeO8,2257
|
|
3363
|
+
pyrogram/raw/types/account/connected_bots.py,sha256=Rw5x4e6cIfcuyu-aRjdrIiTOTX8IyLGU1H2ZuAMBezQ,2809
|
|
3364
|
+
pyrogram/raw/types/account/content_settings.py,sha256=Nz_pfDehNHTQJci_FoZHuXnaBX1Dvxd2DFE5GMJwzxw,2972
|
|
3365
|
+
pyrogram/raw/types/account/email_verified.py,sha256=IMKV-uN0UdgEnQX0oXOBnCLV8OlTd0f9_KAV6YvpMIA,2367
|
|
3366
|
+
pyrogram/raw/types/account/email_verified_login.py,sha256=1OMlKwBda6baX2CKq8hp1tFhijOIcbO0isyXseZ9GKM,2698
|
|
3367
|
+
pyrogram/raw/types/account/emoji_statuses.py,sha256=MHBbqpL4z56cgJue_tvbQEMZ0064Nndyl79sINA97KI,2834
|
|
3368
|
+
pyrogram/raw/types/account/emoji_statuses_not_modified.py,sha256=DBSH9CHtbl9I_93_eCisvYJO6__KpUXDt9bFemtFr4M,2415
|
|
3369
|
+
pyrogram/raw/types/account/paid_messages_revenue.py,sha256=5wU8BgZtSdQ_CYi0QiL4fpyjbOD9af5yCVeXauez1Vk,2476
|
|
3370
|
+
pyrogram/raw/types/account/passkey_registration_options.py,sha256=V_MSoVwnv_itZYGanLVRA0Q4toqXMV84-U3B18Sxar4,2519
|
|
3371
|
+
pyrogram/raw/types/account/passkeys.py,sha256=wYppFcT_FzI6ssXURtkZouuiOdwNbkl8pN1XzptDtyA,2444
|
|
3372
|
+
pyrogram/raw/types/account/password.py,sha256=fGaQd8F0s9mfkS9tGqVEz5CnlrZntc25GVbq-2N5Sss,7312
|
|
3373
|
+
pyrogram/raw/types/account/password_input_settings.py,sha256=UupKEJRkUxi7X5Ji8VjGVuhTzngdvBmGiuh6xGV8uLk,4318
|
|
3374
|
+
pyrogram/raw/types/account/password_settings.py,sha256=oBZeYD2Ra91M8ZVJrMy_urA8iy_J1Z0qys3dAampqQI,3159
|
|
3375
|
+
pyrogram/raw/types/account/privacy_rules.py,sha256=4AiXIy0vLpnvV-wuoJ8K6MwDW5GKYuKaazGlqDO4MVQ,3006
|
|
3376
|
+
pyrogram/raw/types/account/reset_password_failed_wait.py,sha256=ZSZz1aLU2071p3_jfY4WewsOhgNjWWl-NNBZ0ZRnlYI,2462
|
|
3377
|
+
pyrogram/raw/types/account/reset_password_ok.py,sha256=NyfMaiHrSGYBMC0jEREvkS3pZ2lLRjEqNi_M5OoD440,2232
|
|
3378
|
+
pyrogram/raw/types/account/reset_password_requested_wait.py,sha256=TI5YlvVlKS1DyHfVqdte6eU1XOgwsNx-V2Fb0Oq7nyk,2474
|
|
3379
|
+
pyrogram/raw/types/account/resolved_business_chat_links.py,sha256=RC-ZizxEs_hT-Na5sSxlJsrVNCs3vwoTlHVm-i5G_Qg,3735
|
|
3380
|
+
pyrogram/raw/types/account/saved_music_ids.py,sha256=WXKqamSdK-Y8Lr7qa92eUeQPYatYKXBlSo9Yn7jRA04,2399
|
|
3381
|
+
pyrogram/raw/types/account/saved_music_ids_not_modified.py,sha256=oqPl8aXGNHUGDmBuWmoZDbirl4Z2WGwwTjF_OZuBvBk,2265
|
|
3382
|
+
pyrogram/raw/types/account/saved_ringtone.py,sha256=V4R2unexTnf90B9EG4kzOzBiBlyE9gye1ifNLNbCIGc,2217
|
|
3383
|
+
pyrogram/raw/types/account/saved_ringtone_converted.py,sha256=vEZRI4jAe_yowvohcnKPu6q_uEkzizBgtTljoiLYizc,2488
|
|
3384
|
+
pyrogram/raw/types/account/saved_ringtones.py,sha256=OeUJ7uA430y7Eki6devyAC_eySM67HuvVXtHseP4K6g,2687
|
|
3385
|
+
pyrogram/raw/types/account/saved_ringtones_not_modified.py,sha256=AYA-d-yDj2uB1_4eTQubB5ysgIhdGMvl54brALJ7qqY,2271
|
|
3386
|
+
pyrogram/raw/types/account/sent_email_code.py,sha256=4DOBCfUJX7Q0R0PcgvxGrB5Yr1yRBsrR3JLW29MGpZ0,2656
|
|
3387
|
+
pyrogram/raw/types/account/takeout.py,sha256=nvStf0WSIt2j7xXk87k05zJtlZV9ZnQ2FGYpxDZTyuQ,2322
|
|
3388
|
+
pyrogram/raw/types/account/themes.py,sha256=4yjmLKiVrvWWjeebDVAdRSUUriIljCEmiQ58Qz3Dq5U,2635
|
|
3389
|
+
pyrogram/raw/types/account/themes_not_modified.py,sha256=OE5i8Gbk5mkZ8xSqCV6xgA8CTPWsV4vrGtg8SdtuEB8,2258
|
|
3390
|
+
pyrogram/raw/types/account/tmp_password.py,sha256=7dX0sdcx6uS5bUBhFGLj9lyVX2LE0cqRDyqSJ_x5tuQ,2678
|
|
3391
|
+
pyrogram/raw/types/account/wall_papers.py,sha256=D9C1IdEhQxM2GDm28ipef8BxgdtGLUB7F4NrGm1PQX4,2676
|
|
3392
|
+
pyrogram/raw/types/account/wall_papers_not_modified.py,sha256=9ewzoQFY9BcPKntPmqxccMjDerJ_Keu2yifIE3jWbPw,2247
|
|
3393
|
+
pyrogram/raw/types/account/web_authorizations.py,sha256=ia3uj50Bxe0duclRZYP1_o8m71fd9DSSR7VNyD1zKhk,2849
|
|
3394
|
+
pyrogram/raw/types/account/web_browser_settings.py,sha256=ZUHNM0y59reKNqdMnF9nihEwvz0xYS_rJoZm1IALuuE,4180
|
|
3395
|
+
pyrogram/raw/types/account/web_browser_settings_not_modified.py,sha256=JetKQEPVnCfSocNpg_z-e8NjqN5a7AOszFE6LeIql_0,2396
|
|
3396
|
+
pyrogram/raw/types/aicompose/__init__.py,sha256=ufHkrmSHppStHq7jiRCopKyQdEObXU-UF6H4QYpe0y0,1134
|
|
3397
|
+
pyrogram/raw/types/aicompose/tones.py,sha256=shI01a6zUvWoV9Dlro06P29WVXa61NXxhM0sZLA_0-g,2915
|
|
3398
|
+
pyrogram/raw/types/aicompose/tones_not_modified.py,sha256=BYN9TaXzyRW3RlTcOwx7wOIwbO9nB_f7bk0Xpv-dtpo,2254
|
|
3399
|
+
pyrogram/raw/types/auth/__init__.py,sha256=VVRGtTUZThN3GUJLFw_wj7yPBU2Raz3ynb3SREpme1M,2556
|
|
3400
|
+
pyrogram/raw/types/auth/authorization.py,sha256=uitB3uYQIPiOLv5zeyru74ikAEt6A0j8FNrmxDY32Us,4551
|
|
3401
|
+
pyrogram/raw/types/auth/authorization_sign_up_required.py,sha256=7eehKetSQcv3RoLMKAYiQJRXVDGXIFwfOmXo8dLfvV0,3078
|
|
3402
|
+
pyrogram/raw/types/auth/code_type_call.py,sha256=z4vFAd-z1bu4vU95c6OaDKAJKlPja_LqGA5m3sxj1zA,1998
|
|
3403
|
+
pyrogram/raw/types/auth/code_type_flash_call.py,sha256=zKZUT7w_SnhZ9Wfjqzn88cGTnzPH3RuLWrul7M8Sm68,2018
|
|
3404
|
+
pyrogram/raw/types/auth/code_type_fragment_sms.py,sha256=wE3iQcOg3W86kWjo5sg-KxSiOvjPrRSyKqP_Wn7OrcQ,2024
|
|
3405
|
+
pyrogram/raw/types/auth/code_type_missed_call.py,sha256=m_pd8VYYPy2lLSgERGd2tfmLFA8UVt_gKST7wMemEfE,2022
|
|
3406
|
+
pyrogram/raw/types/auth/code_type_sms.py,sha256=TlhTTqTJ9DB0TSMmuTSxCMBAZvnkeo5lo5gqasr3wWQ,1994
|
|
3407
|
+
pyrogram/raw/types/auth/exported_authorization.py,sha256=g5NKOcfgd33vg2litPvn0EXuVmFx8Eymzweyv9Xyd4g,2583
|
|
3408
|
+
pyrogram/raw/types/auth/logged_out.py,sha256=9MiyH2nHeG1eZYmgLDB1H0Zz-50jxVWVSMbAjLmh-Bg,2667
|
|
3409
|
+
pyrogram/raw/types/auth/login_token.py,sha256=PbDaqjmoeW7oZhRB1VRBDmq8qtQ3wx6JQah42mZYnEU,2602
|
|
3410
|
+
pyrogram/raw/types/auth/login_token_migrate_to.py,sha256=96nTYpAyntDUKBAnj0LHLoR_7IDrj4hTSjHA7gBpGQU,2618
|
|
3411
|
+
pyrogram/raw/types/auth/login_token_success.py,sha256=2RuKH6cEPH9y3lD91dN9ytIOI0uqGRzY74G7lqHTH94,2580
|
|
3412
|
+
pyrogram/raw/types/auth/passkey_login_options.py,sha256=NZQKMM4js0WlhCt8yfhgwobYD3GQZJVXRHMLcSgJ42Y,2468
|
|
3413
|
+
pyrogram/raw/types/auth/password_recovery.py,sha256=V-63b7_4yBop3eoZFPrRcIcg2TUIjg_YoFoIf0DxO-s,2457
|
|
3414
|
+
pyrogram/raw/types/auth/sent_code.py,sha256=Tjj6qBz-UNhGthpNwmL8gSXmBahuBj38gfce-1MKTdo,3813
|
|
3415
|
+
pyrogram/raw/types/auth/sent_code_payment_required.py,sha256=CaYainWnB5DCl_CTb50XLtgSv5d7E-X4Gsxj9_nLjlg,4348
|
|
3416
|
+
pyrogram/raw/types/auth/sent_code_success.py,sha256=Ptu640OgnuR1jnMyR4Ti1E5eXDyQkk3vZksVGpxbrP8,2741
|
|
3417
|
+
pyrogram/raw/types/auth/sent_code_type_app.py,sha256=M6atNpF8nZxHkHxlb09PZk2wZpu3hG7XQAtaVx6884I,2176
|
|
3418
|
+
pyrogram/raw/types/auth/sent_code_type_call.py,sha256=bP7Z4JpV8-fgMGtUOPr0SVKyNY7RR7Ehdu7NQSTw1iY,2180
|
|
3419
|
+
pyrogram/raw/types/auth/sent_code_type_email_code.py,sha256=ghWZvGOQagjqfe8m4pXDY-p9iCfCupHrggI6Jf0MXJs,4334
|
|
3420
|
+
pyrogram/raw/types/auth/sent_code_type_firebase_sms.py,sha256=feMrM0j6oJgnPG0Xcp4u80NtUeFOAokTP5dKnDK_Zdw,4512
|
|
3421
|
+
pyrogram/raw/types/auth/sent_code_type_flash_call.py,sha256=sh__j9NvSIHN4zCv-YjM1_nRF0y6CDre_BrKu8Kev3A,2207
|
|
3422
|
+
pyrogram/raw/types/auth/sent_code_type_fragment_sms.py,sha256=XGRGEpli1koysoaKxdwhQBzSqeupRMs0JBRT8cVF24U,2388
|
|
3423
|
+
pyrogram/raw/types/auth/sent_code_type_missed_call.py,sha256=gqUvIDHOB_dzHBe1punjQlifumEz94L3guQf6QyAHy8,2411
|
|
3424
|
+
pyrogram/raw/types/auth/sent_code_type_set_up_email_required.py,sha256=uOBx0i9_Ds0ic5Sx3VTm5Hsrqa_5Gc5TaD9DWdJpeT8,2849
|
|
3425
|
+
pyrogram/raw/types/auth/sent_code_type_sms.py,sha256=ICtX0u2Mf2rE3f8NZLcJJoTP31fZe17OmRDPBjlHyxs,2176
|
|
3426
|
+
pyrogram/raw/types/auth/sent_code_type_sms_phrase.py,sha256=xFINZahF9A2LbUnci80cifd1zHI0zLU4ImKzGykEHPo,2434
|
|
3427
|
+
pyrogram/raw/types/auth/sent_code_type_sms_word.py,sha256=b4T9IgDKSfRlJ5VbVJ5mSu9u4_S7zaSjWKT7jzdrRYQ,2426
|
|
3428
|
+
pyrogram/raw/types/bots/__init__.py,sha256=svs05EiuMfdFGiqIF59pXO71KdilFbcaYltZnCyUfjQ,1312
|
|
3429
|
+
pyrogram/raw/types/bots/access_settings.py,sha256=YttqvrvygS9o0j0ARzMTKsqwZjGJVZEi9fkeGQoCOCI,2966
|
|
3430
|
+
pyrogram/raw/types/bots/bot_info.py,sha256=W_kG2oBAWTRzy50dq0ubWWMfT00fVzFj6GY77RK8Ywg,2768
|
|
3431
|
+
pyrogram/raw/types/bots/exported_bot_token.py,sha256=Y3LAlOSgf25llmmzUpEgxA3zBvllc_11LLiIawy3bFc,2376
|
|
3432
|
+
pyrogram/raw/types/bots/popular_app_bots.py,sha256=GE6Rpzui0VAA2T1_nxy0sc8m7PIIwljh9s17g6a7cF4,2897
|
|
3433
|
+
pyrogram/raw/types/bots/preview_info.py,sha256=9_vbXZ7u8GVshmnrl1795vYNkgMEcQCat-Qy7mDZgqo,2739
|
|
3434
|
+
pyrogram/raw/types/bots/requested_button.py,sha256=Ve--v__PQ813bVMYGgCYgruw_ypcTMPefPHdYBz2a1k,2449
|
|
3435
|
+
pyrogram/raw/types/channels/__init__.py,sha256=JAkLgVt7JEiwv5nrsBhjXWa5rmyiH4VjQUWi3JcqTYo,1615
|
|
3436
|
+
pyrogram/raw/types/channels/admin_log_results.py,sha256=__l8-m5tas8OxbUzs6Rv72SqE_xW8sM0p9syAXHqxc4,3038
|
|
3437
|
+
pyrogram/raw/types/channels/channel_participant.py,sha256=TsdfDJzuqqaq18kUeopV0pUU-SoDUC7JhGtwBRhofiU,3071
|
|
3438
|
+
pyrogram/raw/types/channels/channel_participants.py,sha256=oCIPZ9-vmF1XJ0TrgFqHL0nQC0toUoiHY4ypsM1sLfs,3308
|
|
3439
|
+
pyrogram/raw/types/channels/channel_participants_not_modified.py,sha256=WUW4vnKomU1TSvwjRX0hpxrJi057afB4opCOPuwLeMI,2297
|
|
3440
|
+
pyrogram/raw/types/channels/send_as_peers.py,sha256=ahnl_cZ-W58YbhIuYomQ-yAMYsufwW8jXqjueMFIl-w,2967
|
|
3441
|
+
pyrogram/raw/types/channels/sponsored_message_report_result_ads_hidden.py,sha256=NBm3BvlalHKZ3_FJW-w8MG3XrGjIZCmkOzet067DoHI,2341
|
|
3442
|
+
pyrogram/raw/types/channels/sponsored_message_report_result_choose_option.py,sha256=oluLDTLvMIbmRUN4EdAuYWzcJkEY8bdmELn0TSKj0Vc,2879
|
|
3443
|
+
pyrogram/raw/types/channels/sponsored_message_report_result_reported.py,sha256=ANtU5mHCvqS3jI5NrTJnAd8-wXlpK3acAobtM4mwI64,2337
|
|
3444
|
+
pyrogram/raw/types/chatlists/__init__.py,sha256=LxWhtgpWf8ewzK8pB38Y3CaDv8gJb87JheBwliWcgEE,1316
|
|
3445
|
+
pyrogram/raw/types/chatlists/chatlist_invite.py,sha256=YKFfRmdQhY_6LjIsN41yHuxZ4mY5MSlZDHFwO0Ikjeg,4029
|
|
3446
|
+
pyrogram/raw/types/chatlists/chatlist_invite_already.py,sha256=sb2XiTso-h0T2rFyEukRQ_nF3isXZjieKoY6ObGvqJk,3640
|
|
3447
|
+
pyrogram/raw/types/chatlists/chatlist_updates.py,sha256=FTFecrWrC5hRAdzK9Yd6_Lu9IJG2OtU56jgs8TmiSDE,3047
|
|
3448
|
+
pyrogram/raw/types/chatlists/exported_chatlist_invite.py,sha256=CwmJ5i8iF3isTROUyBHu9PfsHQlhAAfFZI3ern11BDE,2829
|
|
3449
|
+
pyrogram/raw/types/chatlists/exported_invites.py,sha256=dfUIk5rAfZEEDjxNFqzY1--WDTtGGI027IxN8jUfFLQ,3065
|
|
3450
|
+
pyrogram/raw/types/contacts/__init__.py,sha256=NYOLGEcRLNwumo8bh0G8_07UFjlklz0y_DRdsBLd8_U,1612
|
|
3451
|
+
pyrogram/raw/types/contacts/blocked.py,sha256=-DsRTtrVMK2tDPzJPBMTUE0hSv4ivD1ICirAb6AlQDo,2968
|
|
3452
|
+
pyrogram/raw/types/contacts/blocked_slice.py,sha256=nUqzOGT3ctfa-jNkF8N2K-SBbT2E_SdUxLbKeXHzBW4,3190
|
|
3453
|
+
pyrogram/raw/types/contacts/contact_birthdays.py,sha256=21pFPTVE7uqpH-E0MIY7CUWKZnVoND_VMeT8vqsPz3s,2781
|
|
3454
|
+
pyrogram/raw/types/contacts/contacts.py,sha256=9qb8gyTZZ9Y28evSNtEOcGsQe-aXuaaw9R_lN2hSHkk,2962
|
|
3455
|
+
pyrogram/raw/types/contacts/contacts_not_modified.py,sha256=FMCApgdhT9pxV5HwjE4e9-v65kXbrXGQd49QeP-U9Ho,2238
|
|
3456
|
+
pyrogram/raw/types/contacts/found.py,sha256=R38mnpJgRDFHP7WSibgzjqZaRIoEoxHRfonpNWQC-nk,3234
|
|
3457
|
+
pyrogram/raw/types/contacts/imported_contacts.py,sha256=xqXRmwzKetEMc4GvAjGa7fySRajJbXKWwJZdknPymgk,3498
|
|
3458
|
+
pyrogram/raw/types/contacts/resolved_peer.py,sha256=jWTylqLla6ve4uMLbKLgsHTTIAhu-1CYDmvZKLg2xWU,2958
|
|
3459
|
+
pyrogram/raw/types/contacts/sponsored_peers.py,sha256=51apGZStndejvnqVTQiS8BLrIL4dLa22fD2T42r5IK0,3002
|
|
3460
|
+
pyrogram/raw/types/contacts/sponsored_peers_empty.py,sha256=H60fx30HUFtFYwavYqosl2EAapJouuftwJKOxv1dNXo,2250
|
|
3461
|
+
pyrogram/raw/types/contacts/top_peers.py,sha256=n-N9tYwc-FLJjA0AKqWn4K7eHECTs4DVyYCzTKD7uNY,3039
|
|
3462
|
+
pyrogram/raw/types/contacts/top_peers_disabled.py,sha256=cTByhC4xn1fW-IsGkuVSdcup0R5pcgtQXfcmYqDWdn8,2226
|
|
3463
|
+
pyrogram/raw/types/contacts/top_peers_not_modified.py,sha256=dS2k1ytD-Kp-5oVhBTXAsiK1upufZt3o5nTSpdgKclo,2238
|
|
3464
|
+
pyrogram/raw/types/fragment/__init__.py,sha256=72ZjZLSzdflvNqc5WoEG_SrNmux76DzjVr_75DI0vfg,1106
|
|
3465
|
+
pyrogram/raw/types/fragment/collectible_info.py,sha256=4-AYPc-Y9TVMhnhLlarYa7k3gR26UUJBTwKUWHPSiO8,3641
|
|
3466
|
+
pyrogram/raw/types/help/__init__.py,sha256=f2bc5xhg0QQqbFR1o6peWQ_291iOE47uv_Viti7W3_A,2503
|
|
3467
|
+
pyrogram/raw/types/help/app_config.py,sha256=BrYTlijgyzW5svuDYD6TaQQjDhx8WADOwjTNB2dicqQ,2600
|
|
3468
|
+
pyrogram/raw/types/help/app_config_not_modified.py,sha256=uUdIQZhHjtcfBORKZCIPNO9RNMKsPxS74g4YJ1rVZwM,2232
|
|
3469
|
+
pyrogram/raw/types/help/app_update.py,sha256=Y7dJv--lWccthCkJvsX4nqKZfIFo4HKfYD9PnxxJHvg,4607
|
|
3470
|
+
pyrogram/raw/types/help/config_simple.py,sha256=rDZOgyoQxljoiZGq10zhL0PRn_iqFsY-d0GawlT54p4,2669
|
|
3471
|
+
pyrogram/raw/types/help/countries_list.py,sha256=7D5JUXSHwCpfWQ6UsfdHfHIPJw1NQzqeNB_NSh7ayoM,2685
|
|
3472
|
+
pyrogram/raw/types/help/countries_list_not_modified.py,sha256=37-jsksXF6mBXUfs0_xJM-ZJ2nehduvbNd0BeK0EOnc,2256
|
|
3473
|
+
pyrogram/raw/types/help/country.py,sha256=iM927T7zZ0wsWXEdDjnn-jb8_HMI4C8xIUPgiW6tjFE,3407
|
|
3474
|
+
pyrogram/raw/types/help/country_code.py,sha256=taWYySvHSq1f349pCVnZU3GqZW2QpW3Z6Yu9QbL61Xo,3100
|
|
3475
|
+
pyrogram/raw/types/help/deep_link_info.py,sha256=wVqYxJVYBR0lP66qKLbJbl6kTeKVPzdOjJlEJ1Mw4Mw,3195
|
|
3476
|
+
pyrogram/raw/types/help/deep_link_info_empty.py,sha256=FgKhqn_9EfoEvkplfKn_IqNcocz-eQ0T9BGLqadkWBY,2226
|
|
3477
|
+
pyrogram/raw/types/help/invite_text.py,sha256=kxlSN63p4ppuOiZsh84Do25ayWXCK1DDgdNcbaafIrQ,2363
|
|
3478
|
+
pyrogram/raw/types/help/no_app_update.py,sha256=kUvNNcsR1Aw1K21cP4aW8btuOdsZPWdpt5CAwS7_4RA,2196
|
|
3479
|
+
pyrogram/raw/types/help/passport_config.py,sha256=PwwQ-7tlWHwXYb_H6Sj__qZTN9IcFmh13G-YRpCwLr0,2707
|
|
3480
|
+
pyrogram/raw/types/help/passport_config_not_modified.py,sha256=QiCopaosHfu9qCIDLtWmSD5uq5sj2lQ1ccydGVupZws,2262
|
|
3481
|
+
pyrogram/raw/types/help/peer_color_option.py,sha256=eN6hLAN9snXeQY_M6Fa9Gqtvjf0Beo6-gr_Qj_p-iqI,4423
|
|
3482
|
+
pyrogram/raw/types/help/peer_color_profile_set.py,sha256=jlEUWiqEPTwqskwWqQ9dWLRDVfVsGIhAJE_YU0FHTQc,2883
|
|
3483
|
+
pyrogram/raw/types/help/peer_color_set.py,sha256=IgD6Nb8SnMpO95hB6MdC-0bbBfq0b3USqZPgq1YZRK8,2204
|
|
3484
|
+
pyrogram/raw/types/help/peer_colors.py,sha256=mPACEGW6iwK4TrBpT3CH7mdv_LRV6AQDpMU_a1dIik0,2707
|
|
3485
|
+
pyrogram/raw/types/help/peer_colors_not_modified.py,sha256=JrooCBrkVFV_kPb4KBhpLT6spGqcvvwnQOe7lQtr4Hk,2277
|
|
3486
|
+
pyrogram/raw/types/help/premium_promo.py,sha256=ejCb9Y6cZRrDpgrnvOE97j1wJNbECCDzD6Tq23lBGj0,4090
|
|
3487
|
+
pyrogram/raw/types/help/promo_data.py,sha256=qistQSjkzq1Tnw5G7U1skYQiD3hjAAB_8JB6Gys12tQ,5775
|
|
3488
|
+
pyrogram/raw/types/help/promo_data_empty.py,sha256=0kpl2wGqWQ3kO0KUSLIk4r-XWwdkMzaear-T03QJtPc,2379
|
|
3489
|
+
pyrogram/raw/types/help/recent_me_urls.py,sha256=4S5Inq41xJnfB3radz_xqPVwah4kP-0a4aLVCA48H5Q,2959
|
|
3490
|
+
pyrogram/raw/types/help/support.py,sha256=AQ8EU2GYKY0UsMMV6pJlnolTzYmtNd6CN5QFzQcoKl0,2620
|
|
3491
|
+
pyrogram/raw/types/help/support_name.py,sha256=Sn-IEhJXs-E0hgS2MS7gb0YlsAwMEyKJbi6_Nv6fEWI,2342
|
|
3492
|
+
pyrogram/raw/types/help/terms_of_service.py,sha256=iuugBs31xLVE3BlUcNhSG1WG4M8hMFOORUIK-YMlDtI,3466
|
|
3493
|
+
pyrogram/raw/types/help/terms_of_service_update.py,sha256=Ut7JWzAnW6AM0kLMjXd-Dvn_OA2RG_ctZuroCCX2cMU,2823
|
|
3494
|
+
pyrogram/raw/types/help/terms_of_service_update_empty.py,sha256=05IgTZN6ZwMsLe0hX_w2rER43cSwqx3RD88CBEWezS8,2445
|
|
3495
|
+
pyrogram/raw/types/help/timezones_list.py,sha256=7I-MyT2qY22RVJSm-GD4Zjm1jZjRYbCUoADp79BGCC4,2669
|
|
3496
|
+
pyrogram/raw/types/help/timezones_list_not_modified.py,sha256=rAJM5LBkAMDZqw4QAmtIv340ol2q2zQ0ReNNSLTDzII,2256
|
|
3497
|
+
pyrogram/raw/types/help/user_info.py,sha256=urEhVMlKGP_lMG27VnwJIwA_p9FyZSPFuYTvDdQAumo,3102
|
|
3498
|
+
pyrogram/raw/types/help/user_info_empty.py,sha256=FvHZWNaPnh7v8XCZ5xOOdwRadCplbR2Phz-AnApmAy0,2233
|
|
3499
|
+
pyrogram/raw/types/messages/__init__.py,sha256=cHHR2ouUu-V0K1vIABaINpq3ivjTxDc6otN40YNWacU,5804
|
|
3500
|
+
pyrogram/raw/types/messages/affected_found_messages.py,sha256=IROobXtVPi_gojmp-vnYGMAEom0LhbHjHLX5T2zjcBc,3117
|
|
3501
|
+
pyrogram/raw/types/messages/affected_history.py,sha256=3XcPYlI_77CjT1NaBYk6BcwKYRPqmN0tI6V13eCslgU,3080
|
|
3502
|
+
pyrogram/raw/types/messages/affected_messages.py,sha256=wBv2Uv7pWZHuOWhe8rHC2epFFFVkGmnDBN_rcfBFX7o,2719
|
|
3503
|
+
pyrogram/raw/types/messages/all_stickers.py,sha256=0tSBPKObEf7knSr5CB7bFBNWUQLKcLSwR5maGHMAx4A,2711
|
|
3504
|
+
pyrogram/raw/types/messages/all_stickers_not_modified.py,sha256=dnF9Pmfm4Tw3RDCryYbxD9arx1cBuKP8ZcpWYbSDHFM,2332
|
|
3505
|
+
pyrogram/raw/types/messages/archived_stickers.py,sha256=IKFehZ990SjqW-wWry05_QRDCWV0B5pTgdMyR1LisNM,2699
|
|
3506
|
+
pyrogram/raw/types/messages/available_effects.py,sha256=NnoaZx1W1ekTHc29eQ7pd04GEPShlt156i-Gj2MLY5A,3022
|
|
3507
|
+
pyrogram/raw/types/messages/available_effects_not_modified.py,sha256=YeWJw5H-kYo5RlVTs6U9W7jNsmhomfr4IAEtzNvEs0k,2286
|
|
3508
|
+
pyrogram/raw/types/messages/available_reactions.py,sha256=vTPUxoPv6xweT16qLtHlORobWKl0ql17KaJ0xphZSg8,2747
|
|
3509
|
+
pyrogram/raw/types/messages/available_reactions_not_modified.py,sha256=CJqS7s6Nr83RK_Iioqs6OfgyL-OmHkKHMjkgrVcjxHg,2298
|
|
3510
|
+
pyrogram/raw/types/messages/bot_app.py,sha256=o91uI6_UiTjVTK_MtqYMG6QiXzVgUs_XGx2nHNnx_4E,3381
|
|
3511
|
+
pyrogram/raw/types/messages/bot_callback_answer.py,sha256=aC5-GPV-gnsX2eI4KuYGM0kRe2CnzVasZiwJkJz9FnI,4000
|
|
3512
|
+
pyrogram/raw/types/messages/bot_prepared_inline_message.py,sha256=ECclkD9G3nk99Q4rJ-4H8ytTrW2JCGTUd_rCHcPS7MA,2666
|
|
3513
|
+
pyrogram/raw/types/messages/bot_results.py,sha256=k5SNdAKDJMvgtkDI9dIOoiXK-Uc-EOVEJgjCPcW2f9g,4987
|
|
3514
|
+
pyrogram/raw/types/messages/channel_messages.py,sha256=hZO4KbH0WPByDUQjFrv-fG6hQvlU8tDWDVUy9zvprbg,5098
|
|
3515
|
+
pyrogram/raw/types/messages/chat_admins_with_invites.py,sha256=I7dmFvNQ37A1L7t1uRUK8rfa2Ikf9ngDLN7u66RLQog,2816
|
|
3516
|
+
pyrogram/raw/types/messages/chat_full.py,sha256=vLA4K01R7ndnqQe7hdQbyDHXxUACkQB01an7ZhxzfUQ,2997
|
|
3517
|
+
pyrogram/raw/types/messages/chat_invite_importers.py,sha256=rctsqKqMcZTHdYC5Sgnb3FusdcapNq6ztjWJ50EGzBw,3027
|
|
3518
|
+
pyrogram/raw/types/messages/chat_invite_join_result_ok.py,sha256=ZblbzIM7E9qfwHATV6SX5_Msju0DLVSuoMaeL4nPlbM,2523
|
|
3519
|
+
pyrogram/raw/types/messages/chat_invite_join_result_web_view.py,sha256=5D7B94kyygMhbt06a2tOkv_mibKYOxE6mxo-8oOqlVs,3040
|
|
3520
|
+
pyrogram/raw/types/messages/chats.py,sha256=2MDBBcw2yMLZIMSbxwEAb0vr23vWf0zx9tXO-OkxRqY,2669
|
|
3521
|
+
pyrogram/raw/types/messages/chats_slice.py,sha256=iXd6zWZC5l2ykpeeJq5N0rTnGjO6qdAfhnG0Q4NoQ9s,2889
|
|
3522
|
+
pyrogram/raw/types/messages/checked_history_import_peer.py,sha256=SqJylD3TNo5Q-s3SDJvi3JetHshw4GLWvnEGzRqVgXI,2499
|
|
3523
|
+
pyrogram/raw/types/messages/composed_message_with_ai.py,sha256=-2EkJukPz9tXXOe8TP4V4aAW_4xtGJyyuqfYB7pCawQ,3093
|
|
3524
|
+
pyrogram/raw/types/messages/dh_config.py,sha256=nuDVPmv505kyPi60Mnp5qvpp9d5ngKOMhu7PyTCe-CQ,2900
|
|
3525
|
+
pyrogram/raw/types/messages/dh_config_not_modified.py,sha256=sTd7g_xSAHS48GF6BhlGipCstDARt9KARtUqTFSFVBY,2399
|
|
3526
|
+
pyrogram/raw/types/messages/dialog_filters.py,sha256=4kSgrXRS8hmdgV5iJi3A65jHtyb1CibLObKQiymQpfU,2845
|
|
3527
|
+
pyrogram/raw/types/messages/dialogs.py,sha256=UbB01EMI5qHlXUCFG3MI51j-SU2JRvu1v7XRS1gOSwo,3250
|
|
3528
|
+
pyrogram/raw/types/messages/dialogs_not_modified.py,sha256=nDR-I9YUL7GHxSjqTAnNTdyaYeVuBvXf22LuEkiP9DQ,2385
|
|
3529
|
+
pyrogram/raw/types/messages/dialogs_slice.py,sha256=3ZmQaB-8q1smavDhCuksfr-HHR0hxL4PoFbOmmgV-Aw,3470
|
|
3530
|
+
pyrogram/raw/types/messages/discussion_message.py,sha256=VCX7FJPY-IvV_g_pO2KLodcnx1cRP_BB6op8O3ynOgo,4685
|
|
3531
|
+
pyrogram/raw/types/messages/emoji_game_dice_info.py,sha256=ebr3ROvtFlmOPEm9oOQH0cis3IONB7YWmRJW-aBkBb8,3661
|
|
3532
|
+
pyrogram/raw/types/messages/emoji_game_outcome.py,sha256=fT2CWxKPz0Aik0SGBWymoLnEGjG6gZdBaEloW2RMxi8,2723
|
|
3533
|
+
pyrogram/raw/types/messages/emoji_game_unavailable.py,sha256=eq3PXeWXEb0qxCuGDGMm09HT7JH5KBKsct8TDxDt7CY,2252
|
|
3534
|
+
pyrogram/raw/types/messages/emoji_groups.py,sha256=YTLCXfxyhLhcJivmg2u0cR1cA416Bn9_R1z55EhDMVA,2784
|
|
3535
|
+
pyrogram/raw/types/messages/emoji_groups_not_modified.py,sha256=6JtS2ARt1CrHmmLp9ozJHWbg4kTMDoJt_IWU5o1YprU,2390
|
|
3536
|
+
pyrogram/raw/types/messages/exported_chat_invite.py,sha256=qo6msjQCZdVlqRmC0B1UrxD1xheM5uXLbVUNDDQGwWc,2817
|
|
3537
|
+
pyrogram/raw/types/messages/exported_chat_invite_replaced.py,sha256=5i94yFlOAJC_MYelmYFQobh33evBdSUZC-uADBJ1wV4,3189
|
|
3538
|
+
pyrogram/raw/types/messages/exported_chat_invites.py,sha256=K8pHWL4R3ycEDHXeJpi70uHkDI3ASZ0owBZIXTwUPhY,3009
|
|
3539
|
+
pyrogram/raw/types/messages/faved_stickers.py,sha256=GeTGwwYrWwiKBwT-3u1yavkiHls7omYL4SXTiiCJW2U,2964
|
|
3540
|
+
pyrogram/raw/types/messages/faved_stickers_not_modified.py,sha256=AVQ04Xo_U8qIrmeQLjq6bk9NA1P4IT_19keoqsySfPw,2268
|
|
3541
|
+
pyrogram/raw/types/messages/featured_stickers.py,sha256=4IQRdee5MkGF0psrdwfiZBuNifZBuZ1lb9IH07wG-Kk,3548
|
|
3542
|
+
pyrogram/raw/types/messages/featured_stickers_not_modified.py,sha256=SePqiYldR7Ng0E-AVuS_hHxDFMSl2rpHFdBMwc0Po_A,2530
|
|
3543
|
+
pyrogram/raw/types/messages/forum_topics.py,sha256=Zoqfn5yvkY99upMnd8evDZ3en-BtXXj6sPxsqmUY5lA,4133
|
|
3544
|
+
pyrogram/raw/types/messages/found_sticker_sets.py,sha256=yxORtASoI1rH0ufIXipQ2ByF4uL5luAVf5cay2IrB8E,2736
|
|
3545
|
+
pyrogram/raw/types/messages/found_sticker_sets_not_modified.py,sha256=RJqwB0jwHaoL1k7M_VkpqD3BdEFcHvC32wSIUt8Iy7s,2327
|
|
3546
|
+
pyrogram/raw/types/messages/found_stickers.py,sha256=w5kvxTs9M7BT2UaOtgI7RcjzFjwUISfRHvb8nquCxpg,3140
|
|
3547
|
+
pyrogram/raw/types/messages/found_stickers_not_modified.py,sha256=kbfHcoDQmcT6I0IXaq5GZ3ajg8zLvomYk1_nFRvOhwY,2686
|
|
3548
|
+
pyrogram/raw/types/messages/high_scores.py,sha256=zbexc7MaKeQREgLjmLcDZ4BgHapcKkTUopwtKK_ue4Q,2760
|
|
3549
|
+
pyrogram/raw/types/messages/history_import.py,sha256=YVdcBV3BIE78wsJlO4ku7VP1HpLEeHARfQwgt6d2Qf8,2354
|
|
3550
|
+
pyrogram/raw/types/messages/history_import_parsed.py,sha256=-_M8F-v056vuZltZYv34lji45Inh1ymJIl5LHwuWT9U,3079
|
|
3551
|
+
pyrogram/raw/types/messages/inactive_chats.py,sha256=IXI2MxblRBku0gd3UL7XMVBnLOzjZ7UiJtm15PNuwB0,2942
|
|
3552
|
+
pyrogram/raw/types/messages/invited_users.py,sha256=f5LmSPtjBu2o2Sf2InCJvuJpddS65SaGfbMxeH6JTPM,2906
|
|
3553
|
+
pyrogram/raw/types/messages/message_edit_data.py,sha256=QuBIaEAiqy16L6liK5BRJUXlHSLdwFt8_YlUitspwd0,2501
|
|
3554
|
+
pyrogram/raw/types/messages/message_reactions_list.py,sha256=NRsomQMnbTlyTY_Ok2bU9zbkIkuhEt5fVY5xoDe72kM,3763
|
|
3555
|
+
pyrogram/raw/types/messages/message_views.py,sha256=vSCe-Of3C6BtzEotzLf3DdtmUJ2BIbv6AHvpfaIPA64,2987
|
|
3556
|
+
pyrogram/raw/types/messages/messages.py,sha256=t2uufvFQm0FJenh7TgslBFArCVCZMQwKXJCyaEPRnco,3899
|
|
3557
|
+
pyrogram/raw/types/messages/messages_not_modified.py,sha256=7HoaDeIkJhWJlFCoaL_1x_8czVMMh-CbFdnF-1Rr3Xw,3027
|
|
3558
|
+
pyrogram/raw/types/messages/messages_slice.py,sha256=RvmIAW8L_hSZt8xoIYA_Vo0DNbF3gKh9yw55i3xVOJE,5827
|
|
3559
|
+
pyrogram/raw/types/messages/my_stickers.py,sha256=79_hR09H6cOD4LsCalEn1ikHd4hs-s0zZVa-hSbb43k,2663
|
|
3560
|
+
pyrogram/raw/types/messages/peer_dialogs.py,sha256=FZeoiNLQ0g27k_70edyE78xmugdYCUfXIM3RLKIA0J0,3588
|
|
3561
|
+
pyrogram/raw/types/messages/peer_settings.py,sha256=Z7Q2rddYe9k_xeq0jGtGa5rvzluBKCYIcHabYzBWCO4,2991
|
|
3562
|
+
pyrogram/raw/types/messages/prepared_inline_message.py,sha256=7jgayFqi2AcXzSbd23iwPiCm7FQc1Lw4GnUQVOF8Iq0,3619
|
|
3563
|
+
pyrogram/raw/types/messages/quick_replies.py,sha256=sEP5P0pLZu5tnDWA8K41Q8SO5XAB2U_6Uf-tu4n-yBc,3350
|
|
3564
|
+
pyrogram/raw/types/messages/quick_replies_not_modified.py,sha256=y74AIU2_1RLmYmp9tpTLZRtFJ2XxJ3Nd_3L7rHkmCbg,2262
|
|
3565
|
+
pyrogram/raw/types/messages/reactions.py,sha256=BcvV-U5mJv5J6InyjCXA9no3wBLJKfDSCCK3eYz0HpQ,2748
|
|
3566
|
+
pyrogram/raw/types/messages/reactions_not_modified.py,sha256=2wj-zy5Vb-q16cV1UCCIu_0Yjv4tCRtvLsVkghASugI,2332
|
|
3567
|
+
pyrogram/raw/types/messages/recent_stickers.py,sha256=ojBtq_j5Uki57Br6k0eT2tcUxmdwVwCvPo0W3II2W9I,3210
|
|
3568
|
+
pyrogram/raw/types/messages/recent_stickers_not_modified.py,sha256=Fz09ArOKtBbuz5Q7GyAtaeezc83lgqTp9hhYnmrN3FY,2272
|
|
3569
|
+
pyrogram/raw/types/messages/saved_dialogs.py,sha256=DbTOac0V_9nDuJ8SYzLoIrb8NNoIPLjLJgMmYikJ2ss,3385
|
|
3570
|
+
pyrogram/raw/types/messages/saved_dialogs_not_modified.py,sha256=FNkwVrf3nREzUaJjzbsX98ltYMOyqulSb9ANA1gc1gE,2500
|
|
3571
|
+
pyrogram/raw/types/messages/saved_dialogs_slice.py,sha256=Fr6Bhaj4YOAI1RBo-qRm6j1yNiRrAos7MdbOuCQuOZw,3605
|
|
3572
|
+
pyrogram/raw/types/messages/saved_gifs.py,sha256=3wCluyhKToGGDkYd8DtTWMlqLjNVM7AbdfBqfCn7ZSs,2615
|
|
3573
|
+
pyrogram/raw/types/messages/saved_gifs_not_modified.py,sha256=RA-3mDtw0I69PoM2vkFqBnIvA2PQXkLro4kenFSyc_Q,2244
|
|
3574
|
+
pyrogram/raw/types/messages/saved_reaction_tags.py,sha256=03Uso_9Cw2OqbpNx02tMRCIi3FvnkKsPNI-TfJzXyXU,2695
|
|
3575
|
+
pyrogram/raw/types/messages/saved_reaction_tags_not_modified.py,sha256=R-iDZEvVDJykla_j8M6bjjQuemmiTc35klj9IurmXmU,2292
|
|
3576
|
+
pyrogram/raw/types/messages/search_counter.py,sha256=_UalBXI4Vbl8UlV4k6awcsNIlw2sx-wg6Q8r3zecfEE,2978
|
|
3577
|
+
pyrogram/raw/types/messages/search_results_calendar.py,sha256=g6wuXcHvywkguq57v345FlO8YJDRV5PQXsAmKhhgBVQ,4879
|
|
3578
|
+
pyrogram/raw/types/messages/search_results_positions.py,sha256=oD3yPqsSEEZbql8_23mUipwTO-9HLm7UEBsI6X0cRjY,2796
|
|
3579
|
+
pyrogram/raw/types/messages/sent_encrypted_file.py,sha256=UA3LjJnvhYr4TBpg39van4aB-V9H8H01p6cfgTE2U8s,2736
|
|
3580
|
+
pyrogram/raw/types/messages/sent_encrypted_message.py,sha256=SvhVJV6bVYbpELolqdf3DBFTiZofajstKIUnaurP4yo,2482
|
|
3581
|
+
pyrogram/raw/types/messages/sponsored_messages.py,sha256=9o2c0Zyb6w2YFaa81N0eu8Scxn1jFiILFGmSuaES3AU,4414
|
|
3582
|
+
pyrogram/raw/types/messages/sponsored_messages_empty.py,sha256=w5bFkNPXipB5sywe1wMk31W_BQADwQSDLRQFiiMcyUY,2268
|
|
3583
|
+
pyrogram/raw/types/messages/sticker_set.py,sha256=-XLUX5PBLMpGw_FKF3GTXlx4u6eILrs9iPzuWT_f3Cc,3644
|
|
3584
|
+
pyrogram/raw/types/messages/sticker_set_install_result_archive.py,sha256=8rcF7YvQh7AjAAb1qO12mY-MWJubXwSEnUtxd7QDK2M,2560
|
|
3585
|
+
pyrogram/raw/types/messages/sticker_set_install_result_success.py,sha256=g4keFxZWFzzS72GTJP3xL7_Bs3FWI7TFlpYzr1ZaGaM,2303
|
|
3586
|
+
pyrogram/raw/types/messages/sticker_set_not_modified.py,sha256=4hpTwMWnoWrv18ChWUhhmDzYjIYbvlCs-dOfTdjcDEA,2560
|
|
3587
|
+
pyrogram/raw/types/messages/stickers.py,sha256=43ow9gi-2pGdJqHIi3bnMLc99Kvkzei3-fSv3JpxZ8g,2645
|
|
3588
|
+
pyrogram/raw/types/messages/stickers_not_modified.py,sha256=SEGi5D3l5r4eUusCfgIl2mTBuPaior-F3pgiQ_WdUWI,2238
|
|
3589
|
+
pyrogram/raw/types/messages/transcribed_audio.py,sha256=dwDpZXh7IOZaQ9F4O8b40JL-AgfFWdJy5TKFivkVXdI,4047
|
|
3590
|
+
pyrogram/raw/types/messages/translate_result.py,sha256=kDW-sh0lvwjKjp5MFoi3A6hA-SHla2nmXUy3QT25AH4,2501
|
|
3591
|
+
pyrogram/raw/types/messages/votes_list.py,sha256=44BZWFbFZ9HC_pMwsfe-Nm-Izq9hxeH953zbEKFqvjM,3645
|
|
3592
|
+
pyrogram/raw/types/messages/web_page.py,sha256=xd3pS186fh-r9FMZSuUOT2dmm8DDvhuo2nplM-P0ZMU,2932
|
|
3593
|
+
pyrogram/raw/types/messages/web_page_preview.py,sha256=qZ_wQuTqM4C3qawzY3iQyHZJ563d7_YWp-0DmETt1Rw,2976
|
|
3594
|
+
pyrogram/raw/types/payments/__init__.py,sha256=XuKHoHh9GLZJdSZ6zI4Ac3KEdSS39_WoEOg8X8FXJlo,3116
|
|
3595
|
+
pyrogram/raw/types/payments/bank_card_data.py,sha256=6Ho0zfvcL4TLxJ5LbgLYTnLCP-7SJ6SfoN64AF2KM2g,2710
|
|
3596
|
+
pyrogram/raw/types/payments/check_can_send_gift_result_fail.py,sha256=w7XTj1RDvrqEharXbdJhJIosY6abyBfdlCw7QvdPwS0,2534
|
|
3597
|
+
pyrogram/raw/types/payments/check_can_send_gift_result_ok.py,sha256=--8iaQrdBIuERpIUaRJO1HIBmykZX5zwb3LT-4rlSOM,2277
|
|
3598
|
+
pyrogram/raw/types/payments/checked_gift_code.py,sha256=1HMvsmgJ3JxdADaCPlIynYbw67Iywu30fqxkozFqt5M,5086
|
|
3599
|
+
pyrogram/raw/types/payments/connected_star_ref_bots.py,sha256=zIw5ngWgl_HLU4M3UHQc9aEiqF63ySspvXXF4DBhdeM,3211
|
|
3600
|
+
pyrogram/raw/types/payments/exported_invoice.py,sha256=TP8oAr_oYzX15WrPSCWT0KeSQqZrKWBj4w4GqYwFcWk,2364
|
|
3601
|
+
pyrogram/raw/types/payments/giveaway_info.py,sha256=3MTtlTdSoiTDv4BxXTi99TCedPaoZjezAS3iqenv7KU,4736
|
|
3602
|
+
pyrogram/raw/types/payments/giveaway_info_results.py,sha256=Rvuq_tg_gngyULRMC5ul1pda4LfIZGijNFkpVg8I9co,4893
|
|
3603
|
+
pyrogram/raw/types/payments/payment_form.py,sha256=X9pvKhtIQ7jzM8pzoxtwsD8CN7lEAzHo4zlmc0RPqrA,7916
|
|
3604
|
+
pyrogram/raw/types/payments/payment_form_star_gift.py,sha256=b5DQJsqXPfBFvhnJEDGyWEo-T3kkHFqXxT0UL5AgEj0,2687
|
|
3605
|
+
pyrogram/raw/types/payments/payment_form_stars.py,sha256=mV_8_2hX1VdO-8ZGNRsab5ufT6D1JI_kY8c2sFd4C1M,4065
|
|
3606
|
+
pyrogram/raw/types/payments/payment_receipt.py,sha256=9CQQQ9YM-n92_vvLhsaWiz_zzeYb-GyPFuSd4RB3Byg,6415
|
|
3607
|
+
pyrogram/raw/types/payments/payment_receipt_stars.py,sha256=YALwRJmt9-Uu2Y2JPs54I6iDjNPxGgU4Y-cgj9GfTCU,4823
|
|
3608
|
+
pyrogram/raw/types/payments/payment_result.py,sha256=W8FVdsyg4okh-eeiiGSeHtNisMPuGkeNE9nd0pWtzWk,2481
|
|
3609
|
+
pyrogram/raw/types/payments/payment_verification_needed.py,sha256=120TB_n_diq_jfShsr0YCETmdtV7u005rw7_39-roio,2440
|
|
3610
|
+
pyrogram/raw/types/payments/resale_star_gifts.py,sha256=WexwzD61xChoQHjfrRrDCME3pUMJR_JtxjjhvbJUObI,5166
|
|
3611
|
+
pyrogram/raw/types/payments/saved_info.py,sha256=HQy3LR017hVjlViy1Vp3-sxRtdRl-hM7ZTY-z-xYHJI,3104
|
|
3612
|
+
pyrogram/raw/types/payments/saved_star_gifts.py,sha256=-J5FDf-9XyLkoDo14PA99kqQUqmY2w4kPKXT0ePm_tI,4326
|
|
3613
|
+
pyrogram/raw/types/payments/star_gift_active_auctions.py,sha256=hG1fdfdQcSLlzgJjCHWpIfn6zopqzdDjmCl-_r0a50k,3129
|
|
3614
|
+
pyrogram/raw/types/payments/star_gift_active_auctions_not_modified.py,sha256=8n9ubq2F-dcXLpK44eCbp4o_eL__FeM1KdzA82AZHFE,2322
|
|
3615
|
+
pyrogram/raw/types/payments/star_gift_auction_acquired_gifts.py,sha256=ug3WbtXyRF089E9z-ICJdwXBZCCHuX19XDhQ4T7LEn8,3142
|
|
3616
|
+
pyrogram/raw/types/payments/star_gift_auction_state.py,sha256=Oa58xm9TQ50_ypDuf9LEl6VjXId8B7VpcyDFHUkBBGo,3872
|
|
3617
|
+
pyrogram/raw/types/payments/star_gift_collections.py,sha256=ImAesIuOLuSEOfKqCHOYBL2j5YY4H8rLZtGR_FR0H4A,2584
|
|
3618
|
+
pyrogram/raw/types/payments/star_gift_collections_not_modified.py,sha256=VXVbw9SUCowOwdaFa1FZhiFF_ccZ6qC45Vk2cMRhDp8,2304
|
|
3619
|
+
pyrogram/raw/types/payments/star_gift_upgrade_attributes.py,sha256=Sd9IoUOQ8OfzuYfZBE5QcQc28hEoZWosG8fCbDx-BO4,2607
|
|
3620
|
+
pyrogram/raw/types/payments/star_gift_upgrade_preview.py,sha256=TzUZT-KRpJRaYdRSWP_C7Cwj27EMRHsOedj_8znvqWs,3365
|
|
3621
|
+
pyrogram/raw/types/payments/star_gift_withdrawal_url.py,sha256=Qa_vrpcmCkTPYEYbX798ROqgXlWjlxJ-QEQ-XC_mYbg,2405
|
|
3622
|
+
pyrogram/raw/types/payments/star_gifts.py,sha256=rAbrP_ndb18giX0xoKZ2fdKMVjFNvGzYqPHtO3pMz7k,3143
|
|
3623
|
+
pyrogram/raw/types/payments/star_gifts_not_modified.py,sha256=VA7DB89lNq7C8tToMaDJIM6vabaN0MJ1HCQPJNyKU-s,2244
|
|
3624
|
+
pyrogram/raw/types/payments/stars_revenue_ads_account_url.py,sha256=NZGw7EGqkTVW4Sac9Lh2xxrmo5z7w90ZzKrMFUsA2Mc,2429
|
|
3625
|
+
pyrogram/raw/types/payments/stars_revenue_stats.py,sha256=J6VcUnSoux_-UzMW6IjAQdiEvz8cK5GgyQnfRoB70QE,3653
|
|
3626
|
+
pyrogram/raw/types/payments/stars_revenue_withdrawal_url.py,sha256=n42_HcgJY6Se88sqsFigzAIuYINcv9sdYuggdvHpL6s,2429
|
|
3627
|
+
pyrogram/raw/types/payments/stars_status.py,sha256=kqgcVoSk-lxNIBC8QfHC2c5gJxUyDfbvqeO-VRSJlOQ,5800
|
|
3628
|
+
pyrogram/raw/types/payments/suggested_star_ref_bots.py,sha256=cHf2_TBNps6vCvvHSg3Gfk78bPJftvJG9q-GBZKf89E,3527
|
|
3629
|
+
pyrogram/raw/types/payments/unique_star_gift.py,sha256=i384zvPavMqa12VvjGUEaZpVwXc9S7IGqhyXoSoJ3P0,2951
|
|
3630
|
+
pyrogram/raw/types/payments/unique_star_gift_value_info.py,sha256=uyKdCzP0cwUC5jL1cjw17CHMLAe4kN9dSW2l49MK83g,7668
|
|
3631
|
+
pyrogram/raw/types/payments/validated_requested_info.py,sha256=ad1SCqa_Zt7BLhcKqNq1zd3q5ZaGoDYUS1Z6A563Ykc,3166
|
|
3632
|
+
pyrogram/raw/types/phone/__init__.py,sha256=4DcFfrIQc0sD3UB3qao_KlHWnO53Iwer9RZevYEMM6c,1453
|
|
3633
|
+
pyrogram/raw/types/phone/exported_group_call_invite.py,sha256=Whe5ONLI6g7zYCPXwbFpIZZObCipDIr_YlW0aqQS8gM,2412
|
|
3634
|
+
pyrogram/raw/types/phone/group_call.py,sha256=boi1-PcSfsNiK1qqFDXj6JsngPXrXE1MxAa69oYgLYQ,3673
|
|
3635
|
+
pyrogram/raw/types/phone/group_call_stars.py,sha256=mh7brMhQjTf6f-eZ58SHHkr4PnXIGE_ePlDWMONRQH4,3299
|
|
3636
|
+
pyrogram/raw/types/phone/group_call_stream_channels.py,sha256=Sson--Cp-YZ_bLjldmPV7_XRxV25w84sLyt4X4RuuNU,2588
|
|
3637
|
+
pyrogram/raw/types/phone/group_call_stream_rtmp_url.py,sha256=ORO-cbdi126Z6n2wNNW3XqMUdYMtZwUHwpKzlVZBB5M,2582
|
|
3638
|
+
pyrogram/raw/types/phone/group_participants.py,sha256=Tr1ejHkZ4XwPmrlvz35QpEONrBiI0A16TCpjE7OXrrw,3772
|
|
3639
|
+
pyrogram/raw/types/phone/join_as_peers.py,sha256=Tm85voWkdqKVcOS-cHpsuGoHayRx7O-imfyN45yBCsQ,2943
|
|
3640
|
+
pyrogram/raw/types/phone/phone_call.py,sha256=eTdwkHeWgageXEGRUNyAicatxVp1SW6OzVawIJRinVM,2768
|
|
3641
|
+
pyrogram/raw/types/photos/__init__.py,sha256=Iw-xJ4UAcni_E_JSxdlPmP8hDUYudf_QlMEjBEENiUc,1150
|
|
3642
|
+
pyrogram/raw/types/photos/photo.py,sha256=6QMQT4K6Ly711LNiMCrwO2-fHw-mCROknJvFKkOIRRs,2721
|
|
3643
|
+
pyrogram/raw/types/photos/photos.py,sha256=lxbfko3Kd7Aqo-N3sA7ocxBa7TyZR0fG2o6rRZ7CBF0,2668
|
|
3644
|
+
pyrogram/raw/types/photos/photos_slice.py,sha256=WsBl2_bu6IoakFqE9LGPakebFzKn-hrtQgazeuH3xAs,2888
|
|
3645
|
+
pyrogram/raw/types/premium/__init__.py,sha256=_rngV3gZsOuPlLiXEuf6DQmksYcSJIikeQ_QyFaWSqg,1168
|
|
3646
|
+
pyrogram/raw/types/premium/boosts_list.py,sha256=P95cFzRC62gQFqS6AKwiIUwgsQomTDlmDi_viz7gTUE,3391
|
|
3647
|
+
pyrogram/raw/types/premium/boosts_status.py,sha256=eWuOnQF4Qiy-g9q6Igi-1guB_6-3bXHQBb8lmXJkzjo,6022
|
|
3648
|
+
pyrogram/raw/types/premium/my_boosts.py,sha256=bzIo11OfgYGuNTTj2AkwMd4rBs4KfhBXfzHVllUi4Bs,3007
|
|
3649
|
+
pyrogram/raw/types/smsjobs/__init__.py,sha256=sEnoMRO-0hMBcjSjFKAHVt8WdmGA-eeUgJoyrTQkyVo,1132
|
|
3650
|
+
pyrogram/raw/types/smsjobs/eligible_to_join.py,sha256=r8XwDX6MCCaK2xpYZFGkxjIE6OjqaZ95CgTWENV6RIQ,2715
|
|
3651
|
+
pyrogram/raw/types/smsjobs/status.py,sha256=gsjeJ35o3x2wfSKIyhDHnG5auXZc8xQxI2WMssamHQc,4536
|
|
3652
|
+
pyrogram/raw/types/stats/__init__.py,sha256=Bx6GDXAPTn0621SqOfaurkuEYzWcKTVyBzzad2bncyc,1302
|
|
3653
|
+
pyrogram/raw/types/stats/broadcast_stats.py,sha256=jRO0JMDKQB5ImdLaB44BH0pQkCPEZ4T25mjbdVHUCs4,10948
|
|
3654
|
+
pyrogram/raw/types/stats/megagroup_stats.py,sha256=_p0rONSPOwPfQFfwntBi5ycKlTIc0obMlu-aW-QnAOE,8008
|
|
3655
|
+
pyrogram/raw/types/stats/message_stats.py,sha256=EzrOErJKBN63uOpH_rZmhHpLt4xTAEC5EBE9u6OH9p0,2931
|
|
3656
|
+
pyrogram/raw/types/stats/poll_stats.py,sha256=1YeWLsU4_vKkJqRsPX4s19XwPrZOs2MpHtyr3etSMMc,2461
|
|
3657
|
+
pyrogram/raw/types/stats/public_forwards.py,sha256=IPYIEXbR7aNeQljyOrinwEap1gi6r8txEwrSdpZC_E0,3734
|
|
3658
|
+
pyrogram/raw/types/stats/story_stats.py,sha256=JqIC7LiT9X4HKJfXK5WV4VnmfW5VV-KRr4g3B0Dbkkw,2919
|
|
3659
|
+
pyrogram/raw/types/stickers/__init__.py,sha256=rJAWW6hP7i77jeDfwwOYCJieasOL-AcZtrMu3RHlQQw,1113
|
|
3660
|
+
pyrogram/raw/types/stickers/suggested_short_name.py,sha256=W-l9_5_tlo7tyD19sUBN_3eL7axCsdAQ53ePDCWJqHs,2445
|
|
3661
|
+
pyrogram/raw/types/storage/__init__.py,sha256=_-10EeDoMTokFhfued9NjWMwPHNCEdBPwkSh3QSf4UE,1380
|
|
3662
|
+
pyrogram/raw/types/storage/file_gif.py,sha256=ni5r6umDrxWa4-6aievSwMWheUihmwI-3_IRWdMfXfc,1984
|
|
3663
|
+
pyrogram/raw/types/storage/file_jpeg.py,sha256=wKylQPkRuQX-1SHfCvAOHo5lA6hb-__ds1ycqXPypTI,1984
|
|
3664
|
+
pyrogram/raw/types/storage/file_mov.py,sha256=NEUrR3qitICLeqk13gTnlcidyiivaZnDN7sPEI41ilE,1984
|
|
3665
|
+
pyrogram/raw/types/storage/file_mp3.py,sha256=1zwOI-VvrEF7-wFUK5MzEFM7d1Abwl7yJ2ON1IcWxPk,1984
|
|
3666
|
+
pyrogram/raw/types/storage/file_mp4.py,sha256=KE7RGcWeDtbeusv5R_fjgZBE3pGWtoD3LkRvyzqR4JM,1984
|
|
3667
|
+
pyrogram/raw/types/storage/file_partial.py,sha256=x1VGjziFw__G7JuhGpRsio-gJPo1sVz9Jf4hxHFF_ts,2000
|
|
3668
|
+
pyrogram/raw/types/storage/file_pdf.py,sha256=grNf5nwBfpdsrlZgjaqDm8uq1ZMVAjmzKn3NGre6LNg,1984
|
|
3669
|
+
pyrogram/raw/types/storage/file_png.py,sha256=YA5tpCOvGGmccR-v6_Qa0CPO98n08mPWIp3Fo6kFGjg,1982
|
|
3670
|
+
pyrogram/raw/types/storage/file_unknown.py,sha256=BSakZFIndU12FO1O-udFBt_DsFANr9GXm1tH5NxorEQ,2000
|
|
3671
|
+
pyrogram/raw/types/storage/file_webp.py,sha256=OYxU6o138kFTyDNM9qhprEMOVkZYR0XJEJm6Hv8_PPM,1988
|
|
3672
|
+
pyrogram/raw/types/stories/__init__.py,sha256=TTTFxKy8xjTRBinJtoC4lJyRdXACADovWuoDbFsYEnk,1527
|
|
3673
|
+
pyrogram/raw/types/stories/albums.py,sha256=tg9qhWu8opmT4W_qSFnG8Rp89pMwsP8pGOYfy2ZlhuM,2620
|
|
3674
|
+
pyrogram/raw/types/stories/albums_not_modified.py,sha256=v9Sja6wxwWKJE4C77MKmCoGhj41fanOdtD9H3_XQ_HA,2223
|
|
3675
|
+
pyrogram/raw/types/stories/all_stories.py,sha256=x-cEwdXoRISlToIuEJbPCB76ZespueAQBihJj7i5mbI,4107
|
|
3676
|
+
pyrogram/raw/types/stories/all_stories_not_modified.py,sha256=AQplfN-kTL6WYVq8MwuH8imOIOy19yDhKFyS9j-35-I,2810
|
|
3677
|
+
pyrogram/raw/types/stories/can_send_story_count.py,sha256=MBG9xd4TZ2Ui1xv0MjVzXh_Q00qxFVtGdmWan-bTrI8,2462
|
|
3678
|
+
pyrogram/raw/types/stories/found_stories.py,sha256=qbQAAUtKrENGQnQfWHV6ccMs0aJiFC-1aV-CDfFOl8Q,3654
|
|
3679
|
+
pyrogram/raw/types/stories/peer_stories.py,sha256=zSxSJTBok1FCaEnxrJ44KJwCGJUfWrsWj5gFB9hahpU,2969
|
|
3680
|
+
pyrogram/raw/types/stories/stories.py,sha256=draLUnr5eixW3BoB9FCdiT6PBlpMdVZBdeBe_LIr6_k,3799
|
|
3681
|
+
pyrogram/raw/types/stories/story_reactions_list.py,sha256=VbXpQddOV5OiFLNH1_aPxN-pXxn10eJX7ZcXa5H-9T8,3724
|
|
3682
|
+
pyrogram/raw/types/stories/story_views.py,sha256=ZLwy7WCuTSjet3idiOuHSBp9w4KrsdQE0TqNcLRtkFA,2704
|
|
3683
|
+
pyrogram/raw/types/stories/story_views_list.py,sha256=6WEgCIIBFW3LFAURFLzd9VNjWiYSVpc1MM15jyC36Os,4473
|
|
3684
|
+
pyrogram/raw/types/updates/__init__.py,sha256=GNnXGXLp4Kqln_FQ836fu8x-P1PyHDOsOp881Yqg1Ug,1440
|
|
3685
|
+
pyrogram/raw/types/updates/channel_difference.py,sha256=yCwvt6g3ZdCNRFfb0Q9Uvgo8dkVkRsq9NUZBQwQuhjc,4251
|
|
3686
|
+
pyrogram/raw/types/updates/channel_difference_empty.py,sha256=qEoWeslg9Xv90O1wPWCYZj0nnrwRXUKF0e-CCP2Xo9o,3072
|
|
3687
|
+
pyrogram/raw/types/updates/channel_difference_too_long.py,sha256=VJA2wjTjx4_nVJqtwMSnoCBj-UCmgP6o8ylFdKG4TO0,3976
|
|
3688
|
+
pyrogram/raw/types/updates/difference.py,sha256=ZJ98ErqzCDvFKkNU99hjIh_FyNNbbJNgi5wi4qGWdxM,4088
|
|
3689
|
+
pyrogram/raw/types/updates/difference_empty.py,sha256=4D2phPTPeMR_vk4h9j3LVJsKeqMMvF41jdzel5XY3cg,2549
|
|
3690
|
+
pyrogram/raw/types/updates/difference_slice.py,sha256=HfNo8FnaurYrD4a2PlepTQmr5rZQ3cznFHKESQz3KQk,4229
|
|
3691
|
+
pyrogram/raw/types/updates/difference_too_long.py,sha256=bLnxrBaH-BWgFAwErOv58FtI0fwM2u1G-w_1GXqBbGA,2366
|
|
3692
|
+
pyrogram/raw/types/updates/state.py,sha256=mc47pexfNmrxyA-TLX5MEBZVut_6UFuZ7sGiKb36yIs,3126
|
|
3693
|
+
pyrogram/raw/types/upload/__init__.py,sha256=iNxzKIQDseu2sDMAzIrfolSgUeIBLPlhhjFcoql4Lo4,1250
|
|
3694
|
+
pyrogram/raw/types/upload/cdn_file.py,sha256=RPwWGL2aZZ9t3ECgzQEcp6jWLW6hEBJ4AWm0vrqHMyk,2334
|
|
3695
|
+
pyrogram/raw/types/upload/cdn_file_reupload_needed.py,sha256=qt_x_h5jy7oS2CBiv0A3oRYXDo--PELa2vjyegBo7OA,2462
|
|
3696
|
+
pyrogram/raw/types/upload/file.py,sha256=ziaEgUJdx-8FYyL4PGWLd8RwV64dhObSlcwUZmBFol8,2792
|
|
3697
|
+
pyrogram/raw/types/upload/file_cdn_redirect.py,sha256=78-JC68Rya0_eUOsUV0x928MqFYbAiTK7rgJcI_JQ8c,3487
|
|
3698
|
+
pyrogram/raw/types/upload/web_file.py,sha256=HiuA2mllQuZnGgivGFNYzol01Xp8CyEig4ZyJxFql_A,3282
|
|
3699
|
+
pyrogram/raw/types/users/__init__.py,sha256=Dj-BEWvq3lGv7OKPeCR37Oq5PEVRg0q6u5_lJh5KPbI,1249
|
|
3700
|
+
pyrogram/raw/types/users/saved_music.py,sha256=-5bWAfAwU5B3mmimk77SL1tTRsPRS4x1o6zchbt40A4,2700
|
|
3701
|
+
pyrogram/raw/types/users/saved_music_not_modified.py,sha256=2eNGnDBEiQEBFsaD0KFbB01Wnyk1k8ZALs5UZUqMNOg,2431
|
|
3702
|
+
pyrogram/raw/types/users/user_full.py,sha256=Kl1qxurzC79LN2x24SxBzFvG9o3UvA8NWuQIRTJIJlQ,2951
|
|
3703
|
+
pyrogram/raw/types/users/users.py,sha256=ZF0UVq2j01P3Hpr-oTnGwcFIYcCzBdfwCYiPyaecMKw,2393
|
|
3704
|
+
pyrogram/raw/types/users/users_slice.py,sha256=RJgJBcWm5dKq0tTIu9as2AMVYdgNNClCSb-n4vkNVMw,2613
|
|
3705
|
+
pyrogram/session/__init__.py,sha256=eFtgBm9MjBOzLv_0j8YH6ROR7vUhtLLxMtUXlYSMS7w,871
|
|
3706
|
+
pyrogram/session/auth.py,sha256=-AlGYe3-kDH8tSWUmsS_2VarAC1r3SymfuyJdzSTK2Q,12305
|
|
3707
|
+
pyrogram/session/session.py,sha256=ji60uuSXQ5kl9i2kbFKERlKMt8zleVABGdYOFY5a5tA,18996
|
|
3708
|
+
pyrogram/session/internals/__init__.py,sha256=cHrRqZJRGEQFXesLJ5Ij7j_A3kkK7QXPe9ZdkhYzEaI,881
|
|
3709
|
+
pyrogram/session/internals/msg_factory.py,sha256=PzSWGsEmu1agHYKqRHskbVSfLHH11330vJ6jqFTGoqY,2298
|
|
3710
|
+
pyrogram/session/internals/msg_id.py,sha256=yUUX2OH7gB6yx6JQctR_ybbG23WnB3jWB5gHdLT6xyE,1181
|
|
3711
|
+
pyrogram/storage/__init__.py,sha256=6V4d3qAKVxBLwUANDL9tQ0-1qfvkt8emaNbPw0pT5u4,890
|
|
3712
|
+
pyrogram/storage/sqlite_storage.py,sha256=9YiebSajbbkieT0pjaT10j7jAQabrnSQvCY7N-EbiQQ,13142
|
|
3713
|
+
pyrogram/storage/storage.py,sha256=AVnHueWyo3-lfBtxYf0l_huIQ3sJAQWYFTgsLh2vydY,7813
|
|
3714
|
+
pyrogram/types/__init__.py,sha256=J-CUdJd91jakp5Zon06Yi9LfGh6DMUSWpSt_52UosV4,1074
|
|
3715
|
+
pyrogram/types/list.py,sha256=M6fzHa8huT5glCmbVjEDGQ2bQSr6cEkJogY68icpTn4,1093
|
|
3716
|
+
pyrogram/types/object.py,sha256=mt3eJyXzNw84ETU0iOlYbqHpAf3hvEUaARS1kqGKY4Q,3978
|
|
3717
|
+
pyrogram/types/update.py,sha256=1Oom1pSr5gl6Yf0Syek3ke0KGVddUQ4tYHTw44ZTb3c,1002
|
|
3718
|
+
pyrogram/types/authorization/__init__.py,sha256=Suc5k0X1k4gai3Fy3t5fx2RKODYIIfLLA1uGAKBSLBk,1495
|
|
3719
|
+
pyrogram/types/authorization/active_session.py,sha256=_BQrvGBqSm0ElVcDKn0YdOgMZXNBqW5vQcBC4C1Ovso,6615
|
|
3720
|
+
pyrogram/types/authorization/active_sessions.py,sha256=DJ738rSGzrs4kIHzmpe2GsRDG64zU0uayWjbQoaTug4,1957
|
|
3721
|
+
pyrogram/types/authorization/firebase_authentication_settings.py,sha256=jxGi4gkzVAdbfwQDoSewCppCjQ73EcY4inTwlyxWMoA,1938
|
|
3722
|
+
pyrogram/types/authorization/phone_number_authentication_settings.py,sha256=YwADOTk8KW3NSptkTs9gVqm5MwVJCGzM5Rx7IohCanQ,4153
|
|
3723
|
+
pyrogram/types/authorization/sent_code.py,sha256=d9XYmhWErMIXmdrPmGJews3_ba73d5wQ1jh9xsAxyzU,2314
|
|
3724
|
+
pyrogram/types/authorization/terms_of_service.py,sha256=FcA84H4Vt502yOPO9SOP_QtcI0JTAV2zw-TbFJPBH60,1930
|
|
3725
|
+
pyrogram/types/bots_and_keyboards/__init__.py,sha256=qoVH4BfmHfrc6_4vff7SUwwQLcoqXtilAyl3lkW4p2c,4315
|
|
3726
|
+
pyrogram/types/bots_and_keyboards/bot_access_settings.py,sha256=PhaVKqdA28tUDUbeeKiZcR3uIQYfNCdsu08knEtHOzw,1988
|
|
3727
|
+
pyrogram/types/bots_and_keyboards/bot_command.py,sha256=NP6aLIa3ZQMWmNLMRF94JL1xxKOyVPijgwExDF4Rmxw,1738
|
|
3728
|
+
pyrogram/types/bots_and_keyboards/bot_command_scope.py,sha256=62sSsmNXBuGL4sKdMnrpPFDnZWtvaLNQyJAv2KSDes0,2788
|
|
3729
|
+
pyrogram/types/bots_and_keyboards/bot_command_scope_all_chat_administrators.py,sha256=XzgAkl3xRo-FU-dQHYHKf1yxbVYIoVu2ndOMxQ8dkfA,1293
|
|
3730
|
+
pyrogram/types/bots_and_keyboards/bot_command_scope_all_group_chats.py,sha256=mOSVHajP1qdLL9v9hdRWz80BPJGB_nUgsamLld7oXo8,1258
|
|
3731
|
+
pyrogram/types/bots_and_keyboards/bot_command_scope_all_private_chats.py,sha256=GgM-tIbRnSfkPd3BR5q0htyx5MJJzXvqv4CBlXecLR0,1249
|
|
3732
|
+
pyrogram/types/bots_and_keyboards/bot_command_scope_chat.py,sha256=0eMMtnwAGq6KXwq7XzYpxg-oS5FO8_5WB-mKOoxKAbY,1562
|
|
3733
|
+
pyrogram/types/bots_and_keyboards/bot_command_scope_chat_administrators.py,sha256=b_UecRe9y4cz7gFAjXuyLljavyq9jlSF6EkBBhnkbHY,1639
|
|
3734
|
+
pyrogram/types/bots_and_keyboards/bot_command_scope_chat_member.py,sha256=Jgt0GwFQR_5XywZnsoS4asTQ88BbWKhLhzqh9Rxn4OA,1817
|
|
3735
|
+
pyrogram/types/bots_and_keyboards/bot_command_scope_default.py,sha256=Wv5c08SZfD7xBDa7Q3MZWeidMlHoYpJtXAZh5WkXyNU,1308
|
|
3736
|
+
pyrogram/types/bots_and_keyboards/callback_game.py,sha256=rvWwPUMRIguPQ1UEDCEav81vE9yYpXV8lVIcdaLyC5I,1029
|
|
3737
|
+
pyrogram/types/bots_and_keyboards/callback_query.py,sha256=_PWGTgED1LNPwm1SKFiXqWFnCl90ZN89_HzBnUiLn_U,14396
|
|
3738
|
+
pyrogram/types/bots_and_keyboards/chat_boost_updated.py,sha256=Rnvp5PCr9umJEEQ7fvdaKOE-WwQzKbYvhppCoypnii0,1999
|
|
3739
|
+
pyrogram/types/bots_and_keyboards/chat_shared.py,sha256=wsBDzQaBx5jH8pHuAejgVyIiw2pMxwC06TybFQZ-KNo,3119
|
|
3740
|
+
pyrogram/types/bots_and_keyboards/force_reply.py,sha256=e--OW7JxrUGIIhcX62p2iBWkUpIGzQOyQCyqrJaFQKk,2383
|
|
3741
|
+
pyrogram/types/bots_and_keyboards/game_high_score.py,sha256=UxMohtN-vUoTY-TYQkSrJb2MCrveu0XRG0j_7xHLdHQ,2216
|
|
3742
|
+
pyrogram/types/bots_and_keyboards/inline_keyboard_button.py,sha256=8Sy4sgaz8MBoJZEKp2NSS_OJDA2CRHMygE9TqtSrfZU,12899
|
|
3743
|
+
pyrogram/types/bots_and_keyboards/inline_keyboard_markup.py,sha256=bHhAc-xqvMFE1dfMzBIbdIIDZxlMYdlIj2Pm10RKq_Y,2460
|
|
3744
|
+
pyrogram/types/bots_and_keyboards/keyboard_button.py,sha256=ly5_Nxhu8aF5ph1p0KW8wGckuG_v0tOf_49Mhcu7xFo,15539
|
|
3745
|
+
pyrogram/types/bots_and_keyboards/keyboard_button_poll_type.py,sha256=HP4KEef8mbDysU1KNgT8GCEFtwEiw6ZkWO5ygK5A0XU,1180
|
|
3746
|
+
pyrogram/types/bots_and_keyboards/keyboard_button_request_chat.py,sha256=BiFrKPLj7FNujOBOLwHujU2iNoUQQdn4LgwdgxcxXqo,4003
|
|
3747
|
+
pyrogram/types/bots_and_keyboards/keyboard_button_request_managed_bot.py,sha256=C3vptBOhU6uHK1HmMogUgRhE0dNeBFBqhVUNtRJRnVc,1508
|
|
3748
|
+
pyrogram/types/bots_and_keyboards/keyboard_button_request_users.py,sha256=uJlietoHLnKC6NwAY-ybgOnd3oIJ2qRxfyMlPHpcSqg,2659
|
|
3749
|
+
pyrogram/types/bots_and_keyboards/labeled_price.py,sha256=eln0pTBgzWzXMl8geGLIpTFdsRApmLhKayLwbnCf054,2052
|
|
3750
|
+
pyrogram/types/bots_and_keyboards/login_url.py,sha256=OKJ_a-mmzRz4OmHyTsDb53-RlzdhAnEh0a69_dvtUXw,3826
|
|
3751
|
+
pyrogram/types/bots_and_keyboards/managed_bot_updated.py,sha256=j9DF_BbP44CFoiPamjH9Se_A15LbQDk1fxCb2ahdkOQ,2072
|
|
3752
|
+
pyrogram/types/bots_and_keyboards/menu_button.py,sha256=G_PKC2kVkF6R3EhEyIUt5cjoE-4YmcjGi-nNT-Huuxk,1603
|
|
3753
|
+
pyrogram/types/bots_and_keyboards/menu_button_commands.py,sha256=rvKGTYpVbntf9ehG4xQ3eZRP1_XZxx3BvlgFsnLGczw,1209
|
|
3754
|
+
pyrogram/types/bots_and_keyboards/menu_button_default.py,sha256=pNCQlKmhTtFUiTRPMTwUgioyjUkMu6K716kADOmQox0,1212
|
|
3755
|
+
pyrogram/types/bots_and_keyboards/menu_button_web_app.py,sha256=2FmzeQJieKekNPjzSY7RocLWX2dpySTP_mcZTxUgCxI,1809
|
|
3756
|
+
pyrogram/types/bots_and_keyboards/message_reaction_count_updated.py,sha256=Aj8nDoIA30Jr9RjAoM0G7fXlGVVqSiHfzynexCO5bD0,2940
|
|
3757
|
+
pyrogram/types/bots_and_keyboards/message_reaction_updated.py,sha256=x4MxrOX95zCFBLrpuSF5nHrI-VPD4J6FckSTmDk9tCM,4340
|
|
3758
|
+
pyrogram/types/bots_and_keyboards/order_info.py,sha256=Vi6opl-RqP1hk0U1Z1GSLUSZIl-MPHEmMDrI_zIWogk,1734
|
|
3759
|
+
pyrogram/types/bots_and_keyboards/pre_checkout_query.py,sha256=epN2UXY0nTzJV19zh0AkkeFQS4CKeiVLFryBSg82A0I,5667
|
|
3760
|
+
pyrogram/types/bots_and_keyboards/purchased_paid_media.py,sha256=kp9XjkMX9RhuhNE0-9Xba4eVqgmyLiNnNbFmjq17OAc,1753
|
|
3761
|
+
pyrogram/types/bots_and_keyboards/reply_keyboard_markup.py,sha256=LuxXS3PTgRXFqTQtPdz2gD98WkTOjhPspZ77e44mdfA,4575
|
|
3762
|
+
pyrogram/types/bots_and_keyboards/reply_keyboard_remove.py,sha256=33MwLIRUS1JOtzWz-wKMIY1y9TrOzEK9xe8eLDC2Rl4,2339
|
|
3763
|
+
pyrogram/types/bots_and_keyboards/sent_guest_message.py,sha256=im340zZ_R9oq0DSZpC4E7sGaeSb3o8vOBgrA1_k9ZyE,1477
|
|
3764
|
+
pyrogram/types/bots_and_keyboards/sent_web_app_message.py,sha256=ZTCnPZeMasOqvl960cRKg_qLcjEaoOoDmfc6rGa4iaE,1564
|
|
3765
|
+
pyrogram/types/bots_and_keyboards/shipping_address.py,sha256=Ti03789HOu47pALzWDB5F0tdOqOtXZ2HJ2LieLEx39Q,2422
|
|
3766
|
+
pyrogram/types/bots_and_keyboards/shipping_option.py,sha256=76OevSsm8baxTOapnUd73HJXBvJqbuntoNqttWkQ4dc,2136
|
|
3767
|
+
pyrogram/types/bots_and_keyboards/shipping_query.py,sha256=eQOpXHkrqF3GU4wVqNgSrRRBbxcSHUOWwwkQJqUXcQQ,4373
|
|
3768
|
+
pyrogram/types/bots_and_keyboards/users_shared.py,sha256=ZcNsj-RN-jhzBEj2yJxoGiJ0Mx1STpX_EE3XD4YouUQ,2851
|
|
3769
|
+
pyrogram/types/bots_and_keyboards/web_app_info.py,sha256=A2QpOTxR3uTuEuEbNz9GaOXWx293OIVWrHFmOQ_0ZpY,1313
|
|
3770
|
+
pyrogram/types/inline_mode/__init__.py,sha256=FxaqeA9C5eA9ciosaFnEYsmACCopqHYzcz383Wg6jAA,2755
|
|
3771
|
+
pyrogram/types/inline_mode/chosen_inline_result.py,sha256=qnEHa1aBqX7obOvmyi6j1jbPUTR4G4114vN_Zx2mg28,3699
|
|
3772
|
+
pyrogram/types/inline_mode/inline_query.py,sha256=k66FlNbIQWRY68lHuYKxZRDFZQ704aTuMBqxksys7Ag,7298
|
|
3773
|
+
pyrogram/types/inline_mode/inline_query_result.py,sha256=45SvOdJwNYCeTdf8h8j6oxuWG_vEQJO-GJM1wjFQjHI,2411
|
|
3774
|
+
pyrogram/types/inline_mode/inline_query_result_animation.py,sha256=LJjezSbH2gQRStg4Kk8nc5Kxy83dqjdzgLaoHhSTkls,5824
|
|
3775
|
+
pyrogram/types/inline_mode/inline_query_result_article.py,sha256=fRm0nYvw8QM1cs52W6DtcdcNocvSG7QT9Q-We-rhZzE,3304
|
|
3776
|
+
pyrogram/types/inline_mode/inline_query_result_audio.py,sha256=oalfZaAO1eRNHMJx98CyuCmDfHKD0dexZm8ez_fU__8,4505
|
|
3777
|
+
pyrogram/types/inline_mode/inline_query_result_cached_animation.py,sha256=2kVHhA033R7HL1HEbni8LDWTsUYwLB1q2Gw69V9N9GQ,4245
|
|
3778
|
+
pyrogram/types/inline_mode/inline_query_result_cached_audio.py,sha256=ox6sd7wogeEchXAZyLny48GmoM-cxvoRb4V6k46snw4,4029
|
|
3779
|
+
pyrogram/types/inline_mode/inline_query_result_cached_document.py,sha256=dBYs-vZYac_uKW7tPTaKzIaHsBm6-qV9PBPqIZY8GlU,4388
|
|
3780
|
+
pyrogram/types/inline_mode/inline_query_result_cached_photo.py,sha256=8ZbKFWZKNylh1hT2olMv5Gyk1bzA_cNfiEhjCeyPgQU,4312
|
|
3781
|
+
pyrogram/types/inline_mode/inline_query_result_cached_sticker.py,sha256=Qn3ojDH_Syr5Ugt4RFDJ9HcXIBGAsplGaWJOgu7IHHY,3031
|
|
3782
|
+
pyrogram/types/inline_mode/inline_query_result_cached_video.py,sha256=ydHT4TAe_2qUUlQlLIAoVM8LU-vWrIBqVyjoCkKEIRw,4394
|
|
3783
|
+
pyrogram/types/inline_mode/inline_query_result_cached_voice.py,sha256=3144P4_gTOavyT--e6PUXrxVrpx3rtla3FsVd_eUQdU,4202
|
|
3784
|
+
pyrogram/types/inline_mode/inline_query_result_contact.py,sha256=515OfnkYPQzOS_jMvRfrDl436ms1-F3QTKpALHUbhXQ,4132
|
|
3785
|
+
pyrogram/types/inline_mode/inline_query_result_document.py,sha256=WnxRJJV10VoMLz14pCgiay3lTJ4faYsh7_Bp2kj1kIk,5240
|
|
3786
|
+
pyrogram/types/inline_mode/inline_query_result_location.py,sha256=ky178Jjm_30DHiesypXEwGMmPn-etx-7m_Sfk9--CI8,4619
|
|
3787
|
+
pyrogram/types/inline_mode/inline_query_result_photo.py,sha256=1nI3_ACZsJpRa5N__-GWA8GzeMjYLfalPHj8Q4wwdfA,5261
|
|
3788
|
+
pyrogram/types/inline_mode/inline_query_result_venue.py,sha256=uCJXgU4ir40GIosVbSuys1GnIUbqoCnT9Capii4dn-8,4754
|
|
3789
|
+
pyrogram/types/inline_mode/inline_query_result_video.py,sha256=U3DDN9bqCXsKuClqRhZcG8k3WYxo4XpYoyOYQu4BdzI,5474
|
|
3790
|
+
pyrogram/types/inline_mode/inline_query_result_voice.py,sha256=bvw6mWfGcMpIFiJCX_LFeJRgifrkAZOIDHhgvkks1wQ,4360
|
|
3791
|
+
pyrogram/types/input_content/__init__.py,sha256=4DT6NKJ-8vJYEqb-5f4UT50P--7WkTOvBxy5tsv8igs,5066
|
|
3792
|
+
pyrogram/types/input_content/input_chat_photo.py,sha256=u_1bW-kK5_vowtLEdkOHSlCDAr8H2ZtcHMxG7R2DhkA,3407
|
|
3793
|
+
pyrogram/types/input_content/input_checklist.py,sha256=4XAaaQT1EUc7QSjuv7X__iFWA0IfPcioZnPFW0g0_lc,2386
|
|
3794
|
+
pyrogram/types/input_content/input_contact_message_content.py,sha256=IvITr-nsdbwnWeUARykBBRfhhSlYQwli8S4Lfznq0k8,2241
|
|
3795
|
+
pyrogram/types/input_content/input_credentials.py,sha256=i_hGLEqt1dOuo1Rjlzs5DTqazRfVVuTV8kRhzrAl3Pg,1343
|
|
3796
|
+
pyrogram/types/input_content/input_credentials_apple_pay.py,sha256=GQ10iwN6Baq1eIGAK89zkjoigVmKxdJL3jSPN0q81c4,1431
|
|
3797
|
+
pyrogram/types/input_content/input_credentials_google_pay.py,sha256=a6xk9W_suQJTStCj75nFyCqrcLA9GJy9BquO9RTfCN8,1435
|
|
3798
|
+
pyrogram/types/input_content/input_credentials_new.py,sha256=Yhu2Wf9cXIb6_2EnK4otU-a9lDRaAXDGMWKQTF8xvoM,1710
|
|
3799
|
+
pyrogram/types/input_content/input_credentials_saved.py,sha256=dq7FPZ-rIG4cfxIXsqaBkhOHCsszc2RttIHBVvdgHWA,1969
|
|
3800
|
+
pyrogram/types/input_content/input_invoice.py,sha256=zqeVL87OeoqkyEUuEY2tknOD_tTF-BeK1_YSSS6Lbaw,1204
|
|
3801
|
+
pyrogram/types/input_content/input_invoice_message.py,sha256=jDDBa_RwhnJb4Cmhdq6iIFbDPnWLIL9gFqlC60-RSLw,1655
|
|
3802
|
+
pyrogram/types/input_content/input_invoice_message_content.py,sha256=OHEBlgDuEpvfXv5H_-cqaxAuYu9IARG5JUwUSSM-pjc,8705
|
|
3803
|
+
pyrogram/types/input_content/input_invoice_name.py,sha256=8JPDNQ0gajsLywqfEg9dVQZIrvrNc28ZDfXnNDsL4KQ,1533
|
|
3804
|
+
pyrogram/types/input_content/input_location_message_content.py,sha256=cGPDiGSwYoBBVfgpIMjvFSuYfhTm_J9k0VxDntm82Bo,3185
|
|
3805
|
+
pyrogram/types/input_content/input_media.py,sha256=AlEy0RbRwRJ61R2o8HHiv94cQxvUw012R3-0dRwC-ok,1895
|
|
3806
|
+
pyrogram/types/input_content/input_media_animation.py,sha256=AAYaJXkUTDs7JuAvwGLoLMYo8u3WlSo-Jrs320Yq2Ok,6254
|
|
3807
|
+
pyrogram/types/input_content/input_media_audio.py,sha256=jtl8ouOZMr_mUv-Rni9l-Z2db_aFQ1JTzK4PEf57d0Y,6111
|
|
3808
|
+
pyrogram/types/input_content/input_media_document.py,sha256=YFyup5xR8OKyYgLwM_pvdUwWUmEIDbZcVgxMn4KTN3w,5054
|
|
3809
|
+
pyrogram/types/input_content/input_media_link.py,sha256=t3y5TVz7M-i-TJxc1BgJwN6OYsFzu46Uoc9e5T4uP_w,1533
|
|
3810
|
+
pyrogram/types/input_content/input_media_live_photo.py,sha256=IYTH5lijUs3jV0rJJ8AmOV_-3jjkEp2Ec9xMtwnwnEY,6558
|
|
3811
|
+
pyrogram/types/input_content/input_media_location.py,sha256=3MeF9V-K766l95fFrvgc-Bvyd2Zk6DVFvWPz7ivO_1I,3390
|
|
3812
|
+
pyrogram/types/input_content/input_media_photo.py,sha256=Rtks300ySgiWXW3GEe8DCeFbrsMWgI-IHEjNT9neEXg,4698
|
|
3813
|
+
pyrogram/types/input_content/input_media_sticker.py,sha256=eG0RdTLnE_UB10VUUBCLEBrC820EfPK16cvF3eu77WI,3856
|
|
3814
|
+
pyrogram/types/input_content/input_media_venue.py,sha256=yLUYtQNC1q-a4gOhg7Cw0X6y22GZv48Mq3-i2ZWsEvM,3587
|
|
3815
|
+
pyrogram/types/input_content/input_media_video.py,sha256=q7Vly8IZ43TBXbIi3aOJviQOELvcPnUQ0ueDWv4X0I0,9726
|
|
3816
|
+
pyrogram/types/input_content/input_message_content.py,sha256=coShZwaHcn2IJM5NbT_OIvRGC3Wh88YZp9tR0QOy8PQ,1523
|
|
3817
|
+
pyrogram/types/input_content/input_phone_contact.py,sha256=2bbSIhMjEXWgcfeOfz53mIPwqqP9f1zWE1zRfbph9Yo,1737
|
|
3818
|
+
pyrogram/types/input_content/input_poll_media.py,sha256=DhYk3A393bqO6dSBpYbXZ45_haDCwYHOPigwFPlbCcc,2004
|
|
3819
|
+
pyrogram/types/input_content/input_poll_option.py,sha256=KJSS8dFeIHrwEgUDfHGAHRANMhUpqGl4MFssor4Pye0,2033
|
|
3820
|
+
pyrogram/types/input_content/input_poll_option_media.py,sha256=QnFKD3H-JLQxEXvBhnXQv9H4PlWDw2M3Yg7eIY-Hbco,1961
|
|
3821
|
+
pyrogram/types/input_content/input_privacy_rule.py,sha256=dGrkp8ajyV1oLt1PJOvFCp98dEEAcz1ni9n4u71ponU,1628
|
|
3822
|
+
pyrogram/types/input_content/input_privacy_rule_allow_all.py,sha256=17_S75C9xYBQPqYBovYujdPSkDKqtH_3Ky4lVyrpReU,1163
|
|
3823
|
+
pyrogram/types/input_content/input_privacy_rule_allow_bots.py,sha256=QtAIXbVHTpdMdGZj94XLhHSnQPYy7_XTG2KtrJj-ATQ,1173
|
|
3824
|
+
pyrogram/types/input_content/input_privacy_rule_allow_chats.py,sha256=x0MFzmIdvVgo25lqDqTKJIcxk5EdTU9jFKEHFRDZcUw,1775
|
|
3825
|
+
pyrogram/types/input_content/input_privacy_rule_allow_close_friends.py,sha256=nS8FuP8TGPSMTbWOTXuvH28ENULSkIPT1RI7N55-pYE,1190
|
|
3826
|
+
pyrogram/types/input_content/input_privacy_rule_allow_contacts.py,sha256=XzSfiRT_YIzU1oHesLj3V4wnWYUGbfa87NYy5sf8TuE,1177
|
|
3827
|
+
pyrogram/types/input_content/input_privacy_rule_allow_premium.py,sha256=DiNe9rVuHSqRQYDeWdiahdJ_uE5uV0kZ2ZXuA2C4GTI,1273
|
|
3828
|
+
pyrogram/types/input_content/input_privacy_rule_allow_users.py,sha256=aFfdDS1ukFaf3eOB2KSJ6UaAwTVL1-uh1kDC2By3naM,1711
|
|
3829
|
+
pyrogram/types/input_content/input_privacy_rule_disallow_all.py,sha256=3dRZShQVtE3XwyowngruU1vgbLUtCN5KXLDm4JVpj5Y,1172
|
|
3830
|
+
pyrogram/types/input_content/input_privacy_rule_disallow_bots.py,sha256=9ECQR3k20tJgzfBOZJWrleEMFg4bjwiXkGZsGaFFiLA,1182
|
|
3831
|
+
pyrogram/types/input_content/input_privacy_rule_disallow_chats.py,sha256=onBZ1tBGMDkO_xoU4_bxCNdUNVCxwSJPGqX5UE_jaDc,1784
|
|
3832
|
+
pyrogram/types/input_content/input_privacy_rule_disallow_contacts.py,sha256=AzpihJHe6BoYqVfdGWNqc815lPxBZeDAVLBGZspfna0,1186
|
|
3833
|
+
pyrogram/types/input_content/input_privacy_rule_disallow_users.py,sha256=8IrnBckjCZHhb_4DKu9hF6WehfZx-aeCrr7RbYa88xE,1720
|
|
3834
|
+
pyrogram/types/input_content/input_rich_message.py,sha256=L0LzLLLOfqTIQ1N7xnBoV9vJlwoHfz2lAgzjr2PUtys,2916
|
|
3835
|
+
pyrogram/types/input_content/input_rich_message_content.py,sha256=M4IUW5ISmlnhicarueMn3LlUavGxIqXrt-OAYV3SzKo,1663
|
|
3836
|
+
pyrogram/types/input_content/input_text_message_content.py,sha256=VR2JFyzh4chB6LxOZ-BwcAS-mStuT2HWLsfT_OTD4mM,4035
|
|
3837
|
+
pyrogram/types/input_content/input_venue_message_content.py,sha256=JzeLHTCqnKPMGnInC9Fry5q6nigIy6-BBYQLBj6lUD0,2926
|
|
3838
|
+
pyrogram/types/messages_and_media/__init__.py,sha256=-US_ptUnHh5nme2PwtslrXI4eb7YAoiY4fcsf08D9YU,13192
|
|
3839
|
+
pyrogram/types/messages_and_media/animation.py,sha256=Woj3pKhNK_wHxZll_ctT1d_Iy8p1mI_mYWmFkmPpw1o,6270
|
|
3840
|
+
pyrogram/types/messages_and_media/auction_bid.py,sha256=aV67IM92Cuq7UvVjVajiZRrPeuVEBP2NoTPe0p9IERE,1764
|
|
3841
|
+
pyrogram/types/messages_and_media/auction_round.py,sha256=Op44TuvBn8UCvG6qscGPXYwDHz2X4oZep-0InPokln8,2402
|
|
3842
|
+
pyrogram/types/messages_and_media/auction_state.py,sha256=ZQbDO32nKnJRnxLwYOxXl8cSMzsD1c5QJj-vk-jYmos,6233
|
|
3843
|
+
pyrogram/types/messages_and_media/audio.py,sha256=hzjwteB8tdVG2zUtVEpTMgxPgd1bo8MO7jqAVc53Y_c,4069
|
|
3844
|
+
pyrogram/types/messages_and_media/available_effect.py,sha256=1YPvhKa4IqpWyb9IBbUvHXcV0njkkLNtoRlcESP8CRY,3035
|
|
3845
|
+
pyrogram/types/messages_and_media/boosts_status.py,sha256=fypSRFN5y2Qx2gp6iSmy2qLuR6JQUGTYrl6C1-K3XrU,3095
|
|
3846
|
+
pyrogram/types/messages_and_media/business_message.py,sha256=PlbeXXALMcEAeqRfiWq4471G8K8qTIE0B8cWMCMshGg,3925
|
|
3847
|
+
pyrogram/types/messages_and_media/chat_background.py,sha256=mJb5dj5e7oug1GMIaftixJFg23ZfXfE5pimBxcSnkgE,6368
|
|
3848
|
+
pyrogram/types/messages_and_media/chat_boost.py,sha256=5hv1MIP1aeBpPOD5voetKjx0z9-3XUqimNvenbxcVqU,4207
|
|
3849
|
+
pyrogram/types/messages_and_media/chat_has_protected_content_disable_requested.py,sha256=E1TDp_bx8UEymJLAxrNeEL6lD0GwQA4TmHJannXHXTA,1502
|
|
3850
|
+
pyrogram/types/messages_and_media/chat_has_protected_content_toggled.py,sha256=Xv-MJWqVIOYFnQdokXwuLqmtVB6wwkLl25qeEcVS4D0,2105
|
|
3851
|
+
pyrogram/types/messages_and_media/chat_owner_changed.py,sha256=PbKJ36EZ4bCqNc2fPdhYD4TW7R7XHWN5ZTs049OzWYk,1659
|
|
3852
|
+
pyrogram/types/messages_and_media/chat_owner_left.py,sha256=7VgPm5dk0Fl5wiWioNaBQB0VNcBUHDNe17LN0HWORDo,1770
|
|
3853
|
+
pyrogram/types/messages_and_media/chat_theme.py,sha256=SFWuFJP0BvERJE6wkqmtD_AxP2dwEUIg1_wQJdJc4HY,1796
|
|
3854
|
+
pyrogram/types/messages_and_media/checked_gift_code.py,sha256=z0GH-GgKszhrLvyTzHNLg6VrCG_Jo5vRoUq9PSh16DY,3672
|
|
3855
|
+
pyrogram/types/messages_and_media/checklist.py,sha256=ZkHdA_svLmdFOvxzjzwsSzFD5gDx5BT22x1sCwCnuDk,4091
|
|
3856
|
+
pyrogram/types/messages_and_media/checklist_task.py,sha256=3XtfS2D5OmYNDxrKxVnpeXMYrg1YMC9g2GxLwkUVwbA,3077
|
|
3857
|
+
pyrogram/types/messages_and_media/checklist_tasks_added.py,sha256=ZZJg8C3JPTwafW7EjTxmneqWjFO5ms_si9E_CVWdUxA,2094
|
|
3858
|
+
pyrogram/types/messages_and_media/checklist_tasks_done.py,sha256=c4YFkwfkYiKzaf297JuKQEh0rvX7bLHZcv0yI-E1fE8,2216
|
|
3859
|
+
pyrogram/types/messages_and_media/contact.py,sha256=aLWR0NrRva5XBOll2j4OHV4MC4FP00njo50QJgppQkc,2207
|
|
3860
|
+
pyrogram/types/messages_and_media/contact_registered.py,sha256=U2ocC6_lunESnwiwKtcZCktbLVJI4cL-6hL6nbJZBh0,1049
|
|
3861
|
+
pyrogram/types/messages_and_media/craft_gift_result.py,sha256=LBeWnmRpAtOtmOXN49FjitAyJJllM2XBByJwlU8K_bk,1557
|
|
3862
|
+
pyrogram/types/messages_and_media/dice.py,sha256=xwu8UyaQv_3IcbC2vGJpWJugoa8Wm_NCfNyhQmkO6NA,1584
|
|
3863
|
+
pyrogram/types/messages_and_media/direct_message_price_changed.py,sha256=ZViZGShEEzKrg9I6ktpviyv1HiDRIdMjVb5fbocK92g,1962
|
|
3864
|
+
pyrogram/types/messages_and_media/direct_messages_topic.py,sha256=JLimBTgKIy0EW7LivqAfL63fSqRLSxlhCJE7hxRqQq0,3993
|
|
3865
|
+
pyrogram/types/messages_and_media/document.py,sha256=qwQcClccgDPasmob2CzGdmalV7gfMmwOBdGuV4TWMus,3409
|
|
3866
|
+
pyrogram/types/messages_and_media/external_reply_info.py,sha256=cDKROHylPQE22pFc7cEEEg2A6KgX9eqQHk-TYhHZ-Mk,14553
|
|
3867
|
+
pyrogram/types/messages_and_media/fact_check.py,sha256=ZRnEUIXccQzYQEujplDZZBtL_yXG9xwo2XYnaQM0hVk,2757
|
|
3868
|
+
pyrogram/types/messages_and_media/formatted_text.py,sha256=URvujNd17KqxG_aUyTqidtNOGfuSKSjPndea231_6HM,2709
|
|
3869
|
+
pyrogram/types/messages_and_media/forum_topic.py,sha256=lHv9wpUD73ivH0giqpJmGlG6p01DyHxAdX0c7XoIBwo,5972
|
|
3870
|
+
pyrogram/types/messages_and_media/forum_topic_closed.py,sha256=1wkDmL5rmxUjO9qc6y8LQ8yUvvMGsN6tVsrZo1RsHcY,1043
|
|
3871
|
+
pyrogram/types/messages_and_media/forum_topic_created.py,sha256=QC-DikbNgbv8-NghiGE0HPEr4Znqimd4T-K36dNEf5Y,2075
|
|
3872
|
+
pyrogram/types/messages_and_media/forum_topic_edited.py,sha256=uTKMXOOyWyZwFMxzuf7GN_hh24qYhkGprc_LNkB537w,2408
|
|
3873
|
+
pyrogram/types/messages_and_media/forum_topic_reopened.py,sha256=Wy_6gNW-PzIbde4ez-6shs7tKO8gyOhG2OxmGHCtn38,1047
|
|
3874
|
+
pyrogram/types/messages_and_media/game.py,sha256=DFx7KReo24PeCDLzZrhSsiVTYhL-UkyY4IVqcAmafnk,3047
|
|
3875
|
+
pyrogram/types/messages_and_media/general_forum_topic_hidden.py,sha256=2yolmKygJJbyR0zKEKETWaq3G2EmBWa-CLeE7ZMHnMo,1052
|
|
3876
|
+
pyrogram/types/messages_and_media/general_forum_topic_unhidden.py,sha256=x2vSt0XRCOlGo93YzE5OhgxJ-sogt8Z72o4vItsQHro,1056
|
|
3877
|
+
pyrogram/types/messages_and_media/gift.py,sha256=W3ljJTFp2RCM6KUoxb6OPkibFi9WEpTGU9g_OLExiSA,43468
|
|
3878
|
+
pyrogram/types/messages_and_media/gift_attribute.py,sha256=kQKr8EYYUoMJy7bL8qbKtPa5A9X6T8MoGRi2LkDALrE,6869
|
|
3879
|
+
pyrogram/types/messages_and_media/gift_auction.py,sha256=jFEO7n2cDU2woBh7zMwN8ymgkLubqnIeHbCxedSQhkw,1858
|
|
3880
|
+
pyrogram/types/messages_and_media/gift_auction_state.py,sha256=UYUeV0DLuvvs3KNxkuf-CPQeIOka1KCLs4Nr1kLb3rE,2299
|
|
3881
|
+
pyrogram/types/messages_and_media/gift_collection.py,sha256=CpOIzDXIlhLGPc58OrHLYsJL4sJ_q2sVk9WenHQsRHg,2183
|
|
3882
|
+
pyrogram/types/messages_and_media/gift_purchase_limit.py,sha256=H1iQDE4p7l6lH2JjZ9RVscjAdlFDSATJlxLVao85tEM,1770
|
|
3883
|
+
pyrogram/types/messages_and_media/gift_resale_parameters.py,sha256=fPQlQlajJumJ5bP5aQ8575Oc2nFnp0sDDfxYeMfJhNo,2382
|
|
3884
|
+
pyrogram/types/messages_and_media/gift_resale_price.py,sha256=AqiIZPJXk5cUQLA7jm5kX5cewwMOFDBk7PyguMe0Y50,2303
|
|
3885
|
+
pyrogram/types/messages_and_media/gift_upgrade_preview.py,sha256=9mml57lhnhJrxwzjd_DBejrktkAK35yNN0i8wy9IFcI,3441
|
|
3886
|
+
pyrogram/types/messages_and_media/gift_upgrade_price.py,sha256=v7b_tca5J4e3ywB389GbdkGRUQc6hr3BFLX_MnEJucI,1662
|
|
3887
|
+
pyrogram/types/messages_and_media/gift_upgrade_variants.py,sha256=2IviQDL6xDln2Fds855ft3RXYGhZiUpAU8LzibS8wfU,2675
|
|
3888
|
+
pyrogram/types/messages_and_media/gifted_premium.py,sha256=YPO_K_3nxPUvDTAm7RSfIywrTVgVds0w5cxjT64RVTM,4825
|
|
3889
|
+
pyrogram/types/messages_and_media/gifted_stars.py,sha256=9zB_ojWTRZPXrK4NtIw1u481I74oGqNC0eqYR_kPyJc,4047
|
|
3890
|
+
pyrogram/types/messages_and_media/gifted_ton.py,sha256=_KSEpd8vUpTq8j1Sbl6CjC7PV7i3YbIu1L_WfgSw10Y,3142
|
|
3891
|
+
pyrogram/types/messages_and_media/giveaway.py,sha256=xtffLo_32r2r0d6IUZzYtiK8_aoLoiMBuikby30lcwY,3832
|
|
3892
|
+
pyrogram/types/messages_and_media/giveaway_completed.py,sha256=sbBHgLrBSzLwFXZCP6A4qHmJ-fPsXU3OEb4X8h56ZJU,3329
|
|
3893
|
+
pyrogram/types/messages_and_media/giveaway_created.py,sha256=P-RgCKqxhRChTPokQFvaN7Wdc45JqOzaE981hRRrGGI,1843
|
|
3894
|
+
pyrogram/types/messages_and_media/giveaway_prize_stars.py,sha256=G8L4NE88zYBEIuMr23pPYUPUJ5_YrkTxQeOtc_mP0y0,4233
|
|
3895
|
+
pyrogram/types/messages_and_media/giveaway_winners.py,sha256=GedQ82djh_snNdaFK9Kdj-x3df70tWysaXG5zPrSGSY,6060
|
|
3896
|
+
pyrogram/types/messages_and_media/input_checklist_task.py,sha256=9qoB1VHOn2eWp74G99daQmM_T0_Vha4V0QOVXkCl0yU,2253
|
|
3897
|
+
pyrogram/types/messages_and_media/invoice.py,sha256=sB8qNkj1tU_TEIqj9MAg5IaBB1Xlw3PNvzDRuXbpsSU,7474
|
|
3898
|
+
pyrogram/types/messages_and_media/link_preview_options.py,sha256=j9BQrV49YajhgTEcXnnQI0vKpOuGAp_zyFPXS6RjuxE,3220
|
|
3899
|
+
pyrogram/types/messages_and_media/live_photo.py,sha256=OrprXB5giSZkN5XnVbYYAVxN6oyLqzn5-Ex2MG6uzP8,3280
|
|
3900
|
+
pyrogram/types/messages_and_media/location.py,sha256=S4rnAgpLAL13k0zGEyR_J2iC_wkQcTyAku_5VZ1Wqlc,4866
|
|
3901
|
+
pyrogram/types/messages_and_media/managed_bot_created.py,sha256=jkwvErEpx66WkxTVT_ubZzARZQW04ctordD5onLtqHk,1863
|
|
3902
|
+
pyrogram/types/messages_and_media/mask_position.py,sha256=xoiVwr939UbRo2odTWR1AStS1Ro7Nq1aXsZ6M-SoyRQ,2347
|
|
3903
|
+
pyrogram/types/messages_and_media/media_area.py,sha256=Bf8EtwXVbVRY9rh6COPwH0gGqSufZ7vMeFQuyP1fJNo,10005
|
|
3904
|
+
pyrogram/types/messages_and_media/message.py,sha256=QZGTFdOOTIJ-ZqKdI53arh46C49NsD4RcifA-SdII9Q,431273
|
|
3905
|
+
pyrogram/types/messages_and_media/message_content.py,sha256=LNZBwzD92ZLXvylxzhDNi-rg-TR-zHVrx67Hc7RhzNc,13052
|
|
3906
|
+
pyrogram/types/messages_and_media/message_entity.py,sha256=8xKVFt1a4peQ1T7Ndn3LgUxDL8XsojLnGpr3ZNBTq8s,7384
|
|
3907
|
+
pyrogram/types/messages_and_media/message_origin.py,sha256=gOsIICXL5MMSjSaGjyWyNCymzc8qWhcU0WbNwXmhPdE,3385
|
|
3908
|
+
pyrogram/types/messages_and_media/message_origin_channel.py,sha256=tN4Uf3NpSN5ey-cW-CUuZfEznC4QJ0NTnBkxj0yFJjw,2003
|
|
3909
|
+
pyrogram/types/messages_and_media/message_origin_chat.py,sha256=xeEDt0xHa_wWDeQ-tKxYuwNddWEpknLTXKoa5a7_bO4,1933
|
|
3910
|
+
pyrogram/types/messages_and_media/message_origin_hidden_user.py,sha256=FvOOxbGOGultKZ0mlBQVHpswPO_GIBt6KlUSVOPyCAE,1677
|
|
3911
|
+
pyrogram/types/messages_and_media/message_origin_import.py,sha256=lPPCtklih6E_IWLC962By0UAi2oIVOjeUa4ySi6Uqmk,1621
|
|
3912
|
+
pyrogram/types/messages_and_media/message_origin_user.py,sha256=QLlX39ucxrGxZLBoSRbFiyy9cMnGO0DBS5aHiGLKHN0,1665
|
|
3913
|
+
pyrogram/types/messages_and_media/message_reactions.py,sha256=jB8htp_EcoAErv-lBa05ETusDES8Nr3HfREazxrGDMw,3204
|
|
3914
|
+
pyrogram/types/messages_and_media/my_boost.py,sha256=eA0OMToOwrxa3_zz0QtruVEbu3bApL8XBFilIhpy3pU,2595
|
|
3915
|
+
pyrogram/types/messages_and_media/paid_media_info.py,sha256=10IB8dKfJrwzS_AqiQJ5cH8yjF5OSlYxGsIYff8q6rg,3538
|
|
3916
|
+
pyrogram/types/messages_and_media/paid_media_preview.py,sha256=v7ttxHOTs4iOsLQi_Fnp6IiNYO_tFVhIm4zXiXCdakk,1726
|
|
3917
|
+
pyrogram/types/messages_and_media/paid_messages_price_changed.py,sha256=sgn2_g-nsjSJLdhL2HecjqHx1cwLmW1wTqazRWoc5DY,1599
|
|
3918
|
+
pyrogram/types/messages_and_media/paid_messages_refunded.py,sha256=WPFI-G2NQVrSSB-DlVqhag4C-NhJOg9gVvvvB2JSmXs,1597
|
|
3919
|
+
pyrogram/types/messages_and_media/paid_reactor.py,sha256=cL78PRrxe0LLFrWdchleIkiCTmw_YJikhAbQZSBeW5I,2944
|
|
3920
|
+
pyrogram/types/messages_and_media/payment_form.py,sha256=3Q7Cvza2CiHdBUDdKPDFVVgFMC-6tL5J4eXRfl2zSvA,6755
|
|
3921
|
+
pyrogram/types/messages_and_media/payment_option.py,sha256=npU1X9qKQDhv9mzzn-TeUWorIEBqtHhAVJeYAmU2ExI,1480
|
|
3922
|
+
pyrogram/types/messages_and_media/payment_result.py,sha256=gFy-WxAGa8tpp5XC1IGw06fJ2CDb-bGhrqU9lzX3ajw,2264
|
|
3923
|
+
pyrogram/types/messages_and_media/photo.py,sha256=c4gso2-RH6-SOfFO1w5sACTAzzQWz6_jn5BkluvDaOg,4293
|
|
3924
|
+
pyrogram/types/messages_and_media/poll.py,sha256=KqAGQDc3APOY-qCWZSSNGPJbGLTSFbYMhxnbV7R9cGI,14297
|
|
3925
|
+
pyrogram/types/messages_and_media/poll_option.py,sha256=20qV_0GGTO2rbEPAR2FINiXD6WNt_IiFOsxIQKGiJMk,3466
|
|
3926
|
+
pyrogram/types/messages_and_media/poll_option_added.py,sha256=_v8lwQBNzEqcuGV5gCi4i4HvyOC5Lj7qJBCWpYAlxR4,2289
|
|
3927
|
+
pyrogram/types/messages_and_media/poll_option_deleted.py,sha256=WV0-R7R0oy71kBIYQ_PNeyJBvlxM1YMAx6nowY-xShE,2311
|
|
3928
|
+
pyrogram/types/messages_and_media/premium_gift_code.py,sha256=ndeYCACKbFvSwv2V83gxCw5O7ddzrnSAnC9lOzSJ48A,5056
|
|
3929
|
+
pyrogram/types/messages_and_media/proximity_alert_triggered.py,sha256=uc9yhfnDZxFpae67hfamjryXVCOFL9ts0cbIoiogRTk,2221
|
|
3930
|
+
pyrogram/types/messages_and_media/reaction.py,sha256=K3etaJWJMP4l-JZy2aNSqSqa06VdhABQ2DrHOI5Rp-g,2934
|
|
3931
|
+
pyrogram/types/messages_and_media/refunded_payment.py,sha256=m3OJRQhX3ZWPDXLqv3J2o_rgDpxDXjuRWxVYvfw1hSI,3368
|
|
3932
|
+
pyrogram/types/messages_and_media/reply_parameters.py,sha256=J76YW_yqzyRL3djmgh1dbpG2eCxmN_BVILoUTsVMh_M,3897
|
|
3933
|
+
pyrogram/types/messages_and_media/restriction_reason.py,sha256=q4LrZ2oUiPqPje59ZKdJ4S42MCrojnJ5xRI79gFyS0g,2036
|
|
3934
|
+
pyrogram/types/messages_and_media/rich_block.py,sha256=wcb21wpDxs7KPMrvFwj48pUlIUu3HuNYLGvPBHxmE7k,32821
|
|
3935
|
+
pyrogram/types/messages_and_media/rich_message.py,sha256=1luHp7qRp0OpYjw3XsfQ_da3mhvqfZHjiiuRDOExAtQ,2449
|
|
3936
|
+
pyrogram/types/messages_and_media/rich_text.py,sha256=MsJ4oExGRjzVj5mvm-QhJ-BVRmHF1Zq-_PrDAVEFCcc,18333
|
|
3937
|
+
pyrogram/types/messages_and_media/saved_credentials.py,sha256=TTMvNmmo8z6twlDPwNdd-SiUpGfgAKOJ3fTtJPsBYJw,1516
|
|
3938
|
+
pyrogram/types/messages_and_media/screenshot_taken.py,sha256=iPNd8EoPTsWWhUCay19YXdfim_08EmqW4Cz385_M77c,1061
|
|
3939
|
+
pyrogram/types/messages_and_media/star_amount.py,sha256=Twsg1-lu1F0KdAC9UcpXJ8iqI6Oy8xb3JtXIPtI6zr8,1753
|
|
3940
|
+
pyrogram/types/messages_and_media/sticker.py,sha256=O8mzMHdoM6Go_pd-yadoGDOiilzPJJCR4TrKcf-Fs1c,10216
|
|
3941
|
+
pyrogram/types/messages_and_media/story.py,sha256=Dpsze87A3MxxLJr6UmwvK-KxGZVIxNS7kfTq07nSd_I,86483
|
|
3942
|
+
pyrogram/types/messages_and_media/story_view.py,sha256=l3TXg3J0NzobvjfkRDQcnJeKFdh_NAH5K0QmPJnwmko,2725
|
|
3943
|
+
pyrogram/types/messages_and_media/stripped_thumbnail.py,sha256=9GpKuySE66njHsJ9YRapMLyKxHKy9_p1lBfEHNDV16c,1431
|
|
3944
|
+
pyrogram/types/messages_and_media/successful_payment.py,sha256=UopfzViqDCOHVxHIf1Uuo5lo9Pe6Idfw_4Qti85q5gY,6291
|
|
3945
|
+
pyrogram/types/messages_and_media/suggested_post_approval_failed.py,sha256=ppcWMZKlKC-iGlrSiIHeErGiIlqFRbraDFQ7n-dDiQM,3285
|
|
3946
|
+
pyrogram/types/messages_and_media/suggested_post_approved.py,sha256=cEaImJcVnwzGFtzUVg2u9RZarDyoDUqd01EaKwsm7K4,3474
|
|
3947
|
+
pyrogram/types/messages_and_media/suggested_post_declined.py,sha256=ziHViXI4Jf9dwLIoo2juFXT6Yy2Q0H4GljEFwE1U_hw,3163
|
|
3948
|
+
pyrogram/types/messages_and_media/suggested_post_info.py,sha256=9ijGxr_4R1R0-pHImtFphrywui2Yt48y8kBHJ97Ty_E,2620
|
|
3949
|
+
pyrogram/types/messages_and_media/suggested_post_paid.py,sha256=kUTS43x-N0IKo7modNrP5Kj1vTmqynHtzmdCXvMkw94,3758
|
|
3950
|
+
pyrogram/types/messages_and_media/suggested_post_parameters.py,sha256=RSMIWT46P2ddwHO4Ik6LZ8xsJilM8yKj6027Pc8f3Lc,2072
|
|
3951
|
+
pyrogram/types/messages_and_media/suggested_post_price.py,sha256=xhEZoQBFY3-R_lSxMpC847pVUyVNly0LUgUBto25TkE,3349
|
|
3952
|
+
pyrogram/types/messages_and_media/suggested_post_refunded.py,sha256=bFEdFnu24qFsQSMmX5MD_iEq9pzVLllMkAJ0jbh0Dss,3348
|
|
3953
|
+
pyrogram/types/messages_and_media/text_quote.py,sha256=6d5-fDdQCN90nrWAB2-HKLpd-YtEpvTXfx54niyFUaY,3022
|
|
3954
|
+
pyrogram/types/messages_and_media/thumbnail.py,sha256=2e2IQcA6ffzcG8MNgob3QF_Wtj57K-rEgA52Sj3kNnc,3758
|
|
3955
|
+
pyrogram/types/messages_and_media/upgraded_gift_attribute_id.py,sha256=szqW-WUW0wlokBvQbrKxXxVyL4ZRyZapdoFEnYUuHfU,2104
|
|
3956
|
+
pyrogram/types/messages_and_media/upgraded_gift_attribute_id_backdrop.py,sha256=bgN6r1Dnmjw3bqWxq74p9fc-4yBhbyY7xona8Gi4r_Q,1439
|
|
3957
|
+
pyrogram/types/messages_and_media/upgraded_gift_attribute_id_model.py,sha256=ap7TSC9sP6DwqmgPAxecjA2JZUaz83g4sBDnbOJQpJ4,1419
|
|
3958
|
+
pyrogram/types/messages_and_media/upgraded_gift_attribute_id_symbol.py,sha256=cMxtZSwrIXsapY1V4t9-aSiriB_Pb7FvUsEOHLOGGSs,1426
|
|
3959
|
+
pyrogram/types/messages_and_media/upgraded_gift_attribute_rarity.py,sha256=BbeGbExWLbxfipFkRwnjDSZJc6o14GYXvLhis4sR2bA,4677
|
|
3960
|
+
pyrogram/types/messages_and_media/upgraded_gift_original_details.py,sha256=Bijw4DDLNIgyGdMP7LRQigIG_eefNI6SPvcaWJ6xBPo,2653
|
|
3961
|
+
pyrogram/types/messages_and_media/upgraded_gift_purchase_offer.py,sha256=NI5bo6hkQegxGv7ZoiCTaONnocc5Y0POgr1iU_bQI4k,4689
|
|
3962
|
+
pyrogram/types/messages_and_media/upgraded_gift_value_info.py,sha256=P86vakbX_ECg5xu01EDYILrMpU8wjyzqrYEZyWkNtMg,5277
|
|
3963
|
+
pyrogram/types/messages_and_media/venue.py,sha256=vNXbKaZLCKSJ8QniDB5p1hrdHlPC7T1VmDkeSDLgeeg,2323
|
|
3964
|
+
pyrogram/types/messages_and_media/video.py,sha256=z4yAIZ7MlOWbU0e9GSJPUeeWWJ6eWF6ljqzNLezLGO4,6296
|
|
3965
|
+
pyrogram/types/messages_and_media/video_note.py,sha256=5CzsdGmZiPSmwoCY_6fft2HpXfWHoCQ5NXbWuAL8wCE,3841
|
|
3966
|
+
pyrogram/types/messages_and_media/voice.py,sha256=KCNd3D2f_bYqCWuD2pbTEbg0hbSYav6hjUb18kmim4c,3436
|
|
3967
|
+
pyrogram/types/messages_and_media/web_app_data.py,sha256=tEID9xDSsLyubFu4k8HJqAHda5StKKJSJ9MZQfLE9hc,1690
|
|
3968
|
+
pyrogram/types/messages_and_media/web_page.py,sha256=o0N7ZphstwChGxQDiModJrSTnpderJp3Y-iUCocX1-w,9067
|
|
3969
|
+
pyrogram/types/messages_and_media/write_access_allowed.py,sha256=sZvN3RdO5JKEZI8qpYtqKdMLVWB1ijvFDpZlJk4tctc,2482
|
|
3970
|
+
pyrogram/types/user_and_chats/__init__.py,sha256=kLyCH64BLKQ9k53dDbQ4FMeqQ4xi8eoRFeXwDl6lkMQ,4419
|
|
3971
|
+
pyrogram/types/user_and_chats/accepted_gift_types.py,sha256=5HB5rMYiWThWonpE06JPX8BO-VcwdeCSL_d5DDt0Z5U,3309
|
|
3972
|
+
pyrogram/types/user_and_chats/birthday.py,sha256=JKL5OBigYsH8-OcNeSY4IEDLI0wuQCf8t7sodB4J8xs,1803
|
|
3973
|
+
pyrogram/types/user_and_chats/bot_verification.py,sha256=1UNHXbRQEI3RsvmK4EksdHji_bXiqNTgr_9qoY0aK4E,1936
|
|
3974
|
+
pyrogram/types/user_and_chats/business_bot_rights.py,sha256=bbQgawTq8wG9LaVLdlBPeW6HpqCCHQ59uxIuPc4HPKM,5493
|
|
3975
|
+
pyrogram/types/user_and_chats/business_connection.py,sha256=h2FkdxFauADW3zrSfjn8DXzLl8BQ_06jZpIC74oOdcM,2826
|
|
3976
|
+
pyrogram/types/user_and_chats/business_intro.py,sha256=DZjd64djnM9abWn0pCpeZW1XM9TFbIkaE50T-ID4YYA,2195
|
|
3977
|
+
pyrogram/types/user_and_chats/business_recipients.py,sha256=VpU737zFPq360n8uJvR1Ta8ce6VqH_L1gtooBL-Mb40,2834
|
|
3978
|
+
pyrogram/types/user_and_chats/business_weekly_open.py,sha256=JhkHoDp4M1GfGd39-Zc3IFNnSZvgVlDDQpcGQ-eSud8,1555
|
|
3979
|
+
pyrogram/types/user_and_chats/business_working_hours.py,sha256=bzRh6YmIrIULZZwCLFBXuxor0u4TWKZtT6FnI9NTbOo,2029
|
|
3980
|
+
pyrogram/types/user_and_chats/chat.py,sha256=rrR0wgTafstSJw83_dyWzEXarC2RBJ3Kd3vlfjAAWiI,82541
|
|
3981
|
+
pyrogram/types/user_and_chats/chat_admin_with_invite_links.py,sha256=b6vybS7eG30AZyBKIXcbAN1TXpt7btlBM7t8vj8evjE,2236
|
|
3982
|
+
pyrogram/types/user_and_chats/chat_administrator_rights.py,sha256=rrl_zOsz4KHqT08jY--sWxRU1qWmH137QFoJtMpxHQM,7228
|
|
3983
|
+
pyrogram/types/user_and_chats/chat_color.py,sha256=KKwcuKSKKGsWkVhD8WS3SxfX4sJKMfjAk02UOfx5g8Y,2275
|
|
3984
|
+
pyrogram/types/user_and_chats/chat_event.py,sha256=lJ0eYvKh4JlUqQSACYa22lbnqMK7tH7dzt5aqYFHgXw,22350
|
|
3985
|
+
pyrogram/types/user_and_chats/chat_event_filter.py,sha256=uL4GSmho5BgyZY0KH-NhSPNcH13ycooE5SjnbBgarLM,5514
|
|
3986
|
+
pyrogram/types/user_and_chats/chat_folder_invite_link_info.py,sha256=jtSCGtA6VOtlZuS9YoBV6tiqo_GZ9kG4SDqoz2s8ywg,3592
|
|
3987
|
+
pyrogram/types/user_and_chats/chat_invite_link.py,sha256=p2rC9YJZjJn5aCRQWh0exXzPT80STDnROvd8Ap5KM24,4579
|
|
3988
|
+
pyrogram/types/user_and_chats/chat_join_request.py,sha256=PHeUMQ7Vj9twWLBqYcejhL269sPQ9yIx1tica9FQAFI,4634
|
|
3989
|
+
pyrogram/types/user_and_chats/chat_join_result.py,sha256=NrRh-DcjUQpl-ehV5APyKQF1eqO8Zs0Z22J6ZXEv6DU,3429
|
|
3990
|
+
pyrogram/types/user_and_chats/chat_joiner.py,sha256=tlcUTDybVgDZWOA4mQ56nxbyaqNXAIeC03jzXyizh80,2564
|
|
3991
|
+
pyrogram/types/user_and_chats/chat_member.py,sha256=IVEUCwt6JoIIY1CBafg4UiDs1GdPTb4ie3yEhEdnBrc,10340
|
|
3992
|
+
pyrogram/types/user_and_chats/chat_member_updated.py,sha256=3UeUtlwE5i2cyjc7SQpERZ_Y-4CCHBDR596bRPqnAIk,4192
|
|
3993
|
+
pyrogram/types/user_and_chats/chat_permissions.py,sha256=msPyjNLGE2Vw31iLKYyOuZzasVd16b35admfk3uKBuM,9481
|
|
3994
|
+
pyrogram/types/user_and_chats/chat_photo.py,sha256=YakLvaX0vy8Tp2TXZ0_KbeNYR9rAB6wxTbuhrQ_W85U,4616
|
|
3995
|
+
pyrogram/types/user_and_chats/chat_reactions.py,sha256=xtJ--vCq1oDfap52ubajju-fo7Zin-YCtnKw8UKIzjo,2356
|
|
3996
|
+
pyrogram/types/user_and_chats/chat_settings.py,sha256=_zoo25IUt3baJJlK07X_GUV9mCnFwUCEHgcwUf5MUp8,8256
|
|
3997
|
+
pyrogram/types/user_and_chats/dialog.py,sha256=brLM73DbUwpzbVZP7_QUDENbRvwV2W-lHTfKuF2Dkc8,4462
|
|
3998
|
+
pyrogram/types/user_and_chats/emoji_status.py,sha256=sqxCR_BTlYYIFOi8ZiimZe_3a_s0DscjQHuczy97OTk,4467
|
|
3999
|
+
pyrogram/types/user_and_chats/failed_to_add_member.py,sha256=EsVSu0Ye-QzicngQdyPMD4MQiEEbCnqrsmkPiR5pdeI,2164
|
|
4000
|
+
pyrogram/types/user_and_chats/folder.py,sha256=R5pYu_xdzrGAJ0Zvd2gNqzdQulXyBI9ixZomT0GP2Ik,19714
|
|
4001
|
+
pyrogram/types/user_and_chats/folder_invite_link.py,sha256=kfW1-YtBazj7-md_A4YwfUjrN0Te2ybXvDqkoygFe6M,1813
|
|
4002
|
+
pyrogram/types/user_and_chats/found_contacts.py,sha256=3ypfPn_6GEc-jCKcwVps_-yJwBi9PuU2ReY-AhQiQwI,2480
|
|
4003
|
+
pyrogram/types/user_and_chats/global_privacy_settings.py,sha256=tso40wcqeKqDRENTemIlVS_GEW5sDyq5z4vwa70cidI,5706
|
|
4004
|
+
pyrogram/types/user_and_chats/group_call_member.py,sha256=XvSe7c8K4XZS-EWVBioccavyZ9okU1d2xj6o_y-b9TU,5383
|
|
4005
|
+
pyrogram/types/user_and_chats/history_cleared.py,sha256=I60VN5D5CbbwNcjgjROTggHV5g0rqTjVX8GSdiuRNgc,1034
|
|
4006
|
+
pyrogram/types/user_and_chats/invite_link_importer.py,sha256=_haqcrW3FqNmLSIivRrbdr1JYj4ulu2LAW6Qp6rN0NI,1951
|
|
4007
|
+
pyrogram/types/user_and_chats/phone_call_ended.py,sha256=gzO-cSETGzqTVB24DshQJ6E9PpG52m3LhRdO9LLhxbk,2020
|
|
4008
|
+
pyrogram/types/user_and_chats/phone_call_started.py,sha256=uhoykQhYlt25WoXPUBW6BOKk3yAZYHyBfyRz35_p2v0,1502
|
|
4009
|
+
pyrogram/types/user_and_chats/privacy_rule.py,sha256=d3eFrHbn4CQd2H1jFWmCW-ItLPjElhYnpxihIKPLUGk,2007
|
|
4010
|
+
pyrogram/types/user_and_chats/restriction.py,sha256=gxDlgdGzdx2Eza32MjKeEk7wxr1rB5XYt-hIHZkkCi0,1663
|
|
4011
|
+
pyrogram/types/user_and_chats/stories_stealth_mode.py,sha256=erlpzAlbtnOSqI-va5pk_wHgrz6vUYcOv_vlsy_WDpk,1919
|
|
4012
|
+
pyrogram/types/user_and_chats/user.py,sha256=f1azvWy6BSN2ZeGsv0ocSqz7WMT9BZo_-rWWn4vDQvI,41976
|
|
4013
|
+
pyrogram/types/user_and_chats/user_rating.py,sha256=Wn8emib-hTLtM18ofozy2xd1bU6WI9kjp8-gM5N67aE,2374
|
|
4014
|
+
pyrogram/types/user_and_chats/username.py,sha256=d_otOBXNNqLW_ZYAmdswUOwoXcTjz50vbeksPoQt8WM,1702
|
|
4015
|
+
pyrogram/types/user_and_chats/verification_status.py,sha256=EIwDHqiZfxmM_zi4B_FVRqmAbRMk_7CSrO-wV3-mbB4,2724
|
|
4016
|
+
pyrogram/types/user_and_chats/video_chat_ended.py,sha256=J5xTIAMSGDz8_z-EGrKwkoJZC5tCobTY12djOi5xHpc,1346
|
|
4017
|
+
pyrogram/types/user_and_chats/video_chat_members_invited.py,sha256=9QhonApJd1XjOeJu9fqx2_u6nIOTZhfXZw_tX9XXxd8,1610
|
|
4018
|
+
pyrogram/types/user_and_chats/video_chat_scheduled.py,sha256=rUvDXF8r-2MfsAZKAcaWb_UZt5VoHebPjeJXWRDHGSo,1531
|
|
4019
|
+
pyrogram/types/user_and_chats/video_chat_started.py,sha256=WOAuM_CnkRA-W_Iedx0fIHB9RJ-AsvJIiSF05HzLRdA,1043
|
|
4020
|
+
xn_pyrogram-2.2.23.dist-info/METADATA,sha256=W0MX_PcyQq49PIaRi-pS7aK-Got7ixHt7q_YLQUp3gs,6351
|
|
4021
|
+
xn_pyrogram-2.2.23.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
|
|
4022
|
+
xn_pyrogram-2.2.23.dist-info/licenses/COPYING,sha256=ixuiBLtpoK3iv89l7ylKkg9rs2GzF9ukPH7ynZYzK5s,35148
|
|
4023
|
+
xn_pyrogram-2.2.23.dist-info/licenses/COPYING.lesser,sha256=pWgb-bBdsU2Gd2kwAXxketnm5W_2u8_fIeWEgojfrxs,7651
|
|
4024
|
+
xn_pyrogram-2.2.23.dist-info/RECORD,,
|