mtproto 0.0.7 → 0.0.9
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.
- checksums.yaml +4 -4
- data/.env.example +4 -0
- data/ext/aes_ige/extconf.rb +3 -9
- data/ext/factorization/extconf.rb +2 -0
- data/lib/mtproto/auth_key_generator.rb +66 -103
- data/lib/mtproto/binary.rb +21 -0
- data/lib/mtproto/client/api/check_password.rb +41 -0
- data/lib/mtproto/client/api/export_login_token.rb +27 -0
- data/lib/mtproto/client/api/get_updates_difference.rb +21 -0
- data/lib/mtproto/client/api/get_updates_state.rb +14 -0
- data/lib/mtproto/client/api/get_users.rb +14 -0
- data/lib/mtproto/client/api/import_login_token.rb +23 -0
- data/lib/mtproto/client/api/send_code.rb +21 -0
- data/lib/mtproto/client/api/sign_in.rb +27 -0
- data/lib/mtproto/client/api.rb +28 -0
- data/lib/mtproto/client/rpc/response.rb +63 -0
- data/lib/mtproto/client/rpc.rb +67 -107
- data/lib/mtproto/client.rb +176 -31
- data/lib/mtproto/crypto/dh_key_exchange.rb +1 -2
- data/lib/mtproto/crypto/dh_validator.rb +17 -19
- data/lib/mtproto/crypto/factorization.rb +1 -1
- data/lib/mtproto/crypto/rsa_key.rb +2 -2
- data/lib/mtproto/crypto/srp.rb +117 -0
- data/lib/mtproto/delegate_methods.rb +11 -0
- data/lib/mtproto/message/message.rb +85 -0
- data/lib/mtproto/session.rb +1 -1
- data/lib/mtproto/tl/constructors.rb +2269 -0
- data/lib/mtproto/tl/object.rb +25 -0
- data/lib/mtproto/tl/objects/account_password.rb +72 -0
- data/lib/mtproto/tl/objects/authorization.rb +73 -0
- data/lib/mtproto/tl/objects/check_password.rb +46 -0
- data/lib/mtproto/tl/objects/client_dh_inner_data.rb +47 -0
- data/lib/mtproto/tl/objects/dh_gen_response.rb +50 -0
- data/lib/mtproto/tl/objects/export_login_token.rb +51 -0
- data/lib/mtproto/tl/objects/get_config.rb +15 -0
- data/lib/mtproto/tl/objects/get_difference.rb +36 -0
- data/lib/mtproto/tl/objects/get_password.rb +15 -0
- data/lib/mtproto/tl/objects/get_state.rb +15 -0
- data/lib/mtproto/tl/objects/get_users.rb +20 -0
- data/lib/mtproto/tl/objects/help_config.rb +77 -0
- data/lib/mtproto/tl/objects/import_login_token.rb +39 -0
- data/lib/mtproto/tl/objects/init_connection.rb +59 -0
- data/lib/mtproto/tl/objects/invoke_with_layer.rb +22 -0
- data/lib/mtproto/tl/objects/login_token.rb +82 -0
- data/lib/mtproto/tl/objects/pq_inner_data.rb +69 -0
- data/lib/mtproto/tl/objects/req_dh_params.rb +65 -0
- data/lib/mtproto/tl/objects/req_pq_multi.rb +23 -0
- data/lib/mtproto/tl/objects/res_pq.rb +75 -0
- data/lib/mtproto/tl/objects/send_code.rb +50 -0
- data/lib/mtproto/tl/objects/sent_code.rb +79 -0
- data/lib/mtproto/tl/objects/server_dh_inner_data.rb +74 -0
- data/lib/mtproto/tl/objects/server_dh_params.rb +53 -0
- data/lib/mtproto/tl/objects/set_client_dh_params.rb +48 -0
- data/lib/mtproto/tl/objects/sign_in.rb +47 -0
- data/lib/mtproto/tl/objects/update.rb +80 -0
- data/lib/mtproto/tl/objects/update_short.rb +22 -0
- data/lib/mtproto/tl/objects/update_short_message.rb +67 -0
- data/lib/mtproto/tl/objects/updates_difference.rb +157 -0
- data/lib/mtproto/tl/objects/updates_state.rb +37 -0
- data/lib/mtproto/tl/objects/users.rb +86 -0
- data/lib/mtproto/transport/abridged_packet_codec.rb +35 -12
- data/lib/mtproto/transport/connection.rb +23 -0
- data/lib/mtproto/transport/errors.rb +11 -0
- data/lib/mtproto/transport/packet.rb +19 -0
- data/lib/mtproto/transport/tcp_connection.rb +57 -46
- data/lib/mtproto/{tl → type}/bad_msg_notification.rb +11 -11
- data/lib/mtproto/{tl → type}/client_dh_inner_data.rb +1 -1
- data/lib/mtproto/{tl → type}/gzip_packed.rb +6 -4
- data/lib/mtproto/{tl → type}/message.rb +3 -3
- data/lib/mtproto/{tl → type}/msg_container.rb +1 -1
- data/lib/mtproto/{tl → type}/new_session_created.rb +1 -1
- data/lib/mtproto/{tl/p_q_inner_data.rb → type/pq_inner_data.rb} +1 -1
- data/lib/mtproto/{tl → type}/rpc_error.rb +1 -2
- data/lib/mtproto/{tl → type}/serializer.rb +1 -1
- data/lib/mtproto/{tl → type}/server_dh_inner_data.rb +1 -1
- data/lib/mtproto/updates_poller.rb +37 -33
- data/lib/mtproto/version.rb +1 -1
- data/lib/mtproto.rb +21 -22
- data/scripts/generate_constructors.rb +65 -0
- metadata +80 -49
- data/lib/mtproto/rpc/get_config.rb +0 -37
- data/lib/mtproto/rpc/get_contacts.rb +0 -22
- data/lib/mtproto/rpc/get_updates_difference.rb +0 -33
- data/lib/mtproto/rpc/get_updates_state.rb +0 -22
- data/lib/mtproto/rpc/get_users.rb +0 -22
- data/lib/mtproto/rpc/ping.rb +0 -26
- data/lib/mtproto/rpc/send_code.rb +0 -44
- data/lib/mtproto/rpc/send_message.rb +0 -31
- data/lib/mtproto/rpc/sign_in.rb +0 -52
- data/lib/mtproto/tl/auth_key/dh_gen_response.rb +0 -37
- data/lib/mtproto/tl/auth_key/req_dh_params.rb +0 -31
- data/lib/mtproto/tl/auth_key/req_pq_multi.rb +0 -18
- data/lib/mtproto/tl/auth_key/res_pq.rb +0 -62
- data/lib/mtproto/tl/auth_key/server_dh_params.rb +0 -43
- data/lib/mtproto/tl/auth_key/set_client_dh_params.rb +0 -25
- data/lib/mtproto/tl/code_settings.rb +0 -25
- data/lib/mtproto/tl/config.rb +0 -124
- data/lib/mtproto/tl/method_builder.rb +0 -29
- data/lib/mtproto/tl/rpc/auth/authorization.rb +0 -107
- data/lib/mtproto/tl/rpc/auth/send_code.rb +0 -28
- data/lib/mtproto/tl/rpc/auth/sent_code.rb +0 -36
- data/lib/mtproto/tl/rpc/auth/sign_in.rb +0 -32
- data/lib/mtproto/tl/rpc/contacts/contacts.rb +0 -155
- data/lib/mtproto/tl/rpc/contacts/get_contacts.rb +0 -18
- data/lib/mtproto/tl/rpc/help/config.rb +0 -35
- data/lib/mtproto/tl/rpc/help/get_config.rb +0 -17
- data/lib/mtproto/tl/rpc/messages/send_message.rb +0 -43
- data/lib/mtproto/tl/rpc/messages/updates.rb +0 -87
- data/lib/mtproto/tl/rpc/ping.rb +0 -18
- data/lib/mtproto/tl/rpc/pong.rb +0 -46
- data/lib/mtproto/tl/rpc/updates/difference.rb +0 -332
- data/lib/mtproto/tl/rpc/updates/get_difference.rb +0 -42
- data/lib/mtproto/tl/rpc/updates/get_state.rb +0 -17
- data/lib/mtproto/tl/rpc/updates/state.rb +0 -59
- data/lib/mtproto/tl/rpc/users/get_users.rb +0 -25
- data/lib/mtproto/tl/rpc/users/users.rb +0 -99
- data/lib/mtproto/tl/sent_code.rb +0 -128
|
@@ -0,0 +1,2269 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# rubocop:disable Metrics/ModuleLength
|
|
4
|
+
|
|
5
|
+
# Auto-generated from Telegram TL schemas.
|
|
6
|
+
# Run: ruby scripts/generate_constructors.rb
|
|
7
|
+
|
|
8
|
+
module MTProto
|
|
9
|
+
module TL
|
|
10
|
+
module Constructors
|
|
11
|
+
NAMES = {
|
|
12
|
+
0x004a8537 => 'securePasswordKdfAlgoUnknown',
|
|
13
|
+
0x007efe0e => 'storage.fileJpeg',
|
|
14
|
+
0x0084cd5a => 'updateTranscribedAudio',
|
|
15
|
+
0x008c703f => 'userStatusOffline',
|
|
16
|
+
0x009fd736 => 'auth.sentCodeTypeFirebaseSms',
|
|
17
|
+
0x00be3dfa => 'secureValueErrorFrontSide',
|
|
18
|
+
0x00f49ca0 => 'updates.difference',
|
|
19
|
+
0x00f8ed08 => 'help.peerColors',
|
|
20
|
+
0x01190cf1 => 'inputQuickReplyShortcutId',
|
|
21
|
+
0x0194cb3b => 'inputBusinessGreetingMessage',
|
|
22
|
+
0x01eb3758 => 'help.userInfo',
|
|
23
|
+
0x01f2bf4a => 'publicForwardMessage',
|
|
24
|
+
0x020b1422 => 'user',
|
|
25
|
+
0x021e1ad6 => 'photoCachedSize',
|
|
26
|
+
0x023f109b => 'forumTopicDeleted',
|
|
27
|
+
0x027477b4 => 'secureRequiredTypeOneOf',
|
|
28
|
+
0x028703c8 => 'inputStickerSetAnimatedEmoji',
|
|
29
|
+
0x02cc6383 => 'channelAdminLogEventActionToggleForum',
|
|
30
|
+
0x031224c3 => 'messageActionChatJoinedByLink',
|
|
31
|
+
0x03173d78 => 'updates.getChannelDifference',
|
|
32
|
+
0x031f9590 => 'pageBlockSlideshow',
|
|
33
|
+
0x032512c5 => 'payments.getStarsSubscriptions',
|
|
34
|
+
0x032c3e77 => 'inputGameID',
|
|
35
|
+
0x032da4cf => 'account.verifyEmail',
|
|
36
|
+
0x034b8621 => 'textMarked',
|
|
37
|
+
0x0352dafa => 'inputPrivacyKeyPhoneNumber',
|
|
38
|
+
0x037c9330 => 'inputMediaUploadedDocument',
|
|
39
|
+
0x0388a3b5 => 'photos.uploadProfilePhoto',
|
|
40
|
+
0x038a08d3 => 'help.getUserInfo',
|
|
41
|
+
0x041845db => 'phone.getGroupCall',
|
|
42
|
+
0x042f1f61 => 'premium.getBoostsStatus',
|
|
43
|
+
0x0438865b => 'inputStickeredMediaDocument',
|
|
44
|
+
0x049ee584 => 'invoice',
|
|
45
|
+
0x04c4d4ce => 'inputStickerSetEmojiGenericAnimations',
|
|
46
|
+
0x04deb57d => 'msgs_state_info',
|
|
47
|
+
0x04f1aaa9 => 'messages.getFavedStickers',
|
|
48
|
+
0x0509113f => 'attachMenuPeerTypeChat',
|
|
49
|
+
0x050a9839 => 'requirementToContactEmpty',
|
|
50
|
+
0x050c7ac8 => 'channelAdminLogEventActionChangeLinkedChat',
|
|
51
|
+
0x05162463 => 'resPQ',
|
|
52
|
+
0x0517165a => 'bots.setBotCommands',
|
|
53
|
+
0x051846fd => 'botInlineMessageMediaGeo',
|
|
54
|
+
0x053ca973 => 'bots.toggleUsername',
|
|
55
|
+
0x05416d58 => 'starsSubscriptionPricing',
|
|
56
|
+
0x05492a13 => 'updateUserPhone',
|
|
57
|
+
0x0589ee75 => 'messages.editFactCheck',
|
|
58
|
+
0x0598a92a => 'inputGroupCallStream',
|
|
59
|
+
0x05a954c0 => 'messages.receivedMessages',
|
|
60
|
+
0x062dd747 => 'messages.unpinAllMessages',
|
|
61
|
+
0x0637b7ed => 'topPeerCategoryCorrespondents',
|
|
62
|
+
0x0656ac4b => 'channelParticipantsSearch',
|
|
63
|
+
0x068e9916 => 'auth.loginTokenMigrateTo',
|
|
64
|
+
0x0697102b => 'quickReply',
|
|
65
|
+
0x0697f414 => 'privacyKeyVoiceMessages',
|
|
66
|
+
0x06dd654c => 'account.getReactionsNotifySettings',
|
|
67
|
+
0x06de6392 => 'bots.toggleUserEmojiStatusPermission',
|
|
68
|
+
0x06e425c4 => 'secureValueTypeDriverLicense',
|
|
69
|
+
0x06ed998c => 'auth.codeTypeFragmentSms',
|
|
70
|
+
0x07141dbf => 'inputEmojiStatusCollectible',
|
|
71
|
+
0x07761198 => 'updateChatParticipants',
|
|
72
|
+
0x07967d36 => 'account.getWallPapers',
|
|
73
|
+
0x07b68920 => 'updateChannelViewForumAsMessages',
|
|
74
|
+
0x07df587c => 'updateBotEditBusinessMessage',
|
|
75
|
+
0x081202c9 => 'messages.setChatTheme',
|
|
76
|
+
0x081ccf4f => 'textImage',
|
|
77
|
+
0x08736a09 => 'channels.getFullChannel',
|
|
78
|
+
0x087fc5e7 => 'bots.invokeWebViewCustomMethod',
|
|
79
|
+
0x08a4d87a => 'help.promoData',
|
|
80
|
+
0x08fc711d => 'account.getAccountTTL',
|
|
81
|
+
0x093bcf34 => 'emojiGroupPremium',
|
|
82
|
+
0x093fa0bf => 'smsjobs.updateSettings',
|
|
83
|
+
0x0949d9dc => 'future_salt',
|
|
84
|
+
0x096a0e00 => 'contacts.deleteContacts',
|
|
85
|
+
0x096a18d5 => 'upload.file',
|
|
86
|
+
0x09c2dd95 => 'messages.setBotPrecheckoutResults',
|
|
87
|
+
0x09c469cd => 'inputBusinessIntro',
|
|
88
|
+
0x09cb7759 => 'updateBotMessageReactions',
|
|
89
|
+
0x09d05049 => 'userStatusEmpty',
|
|
90
|
+
0x09e82039 => 'photos.updateProfilePhoto',
|
|
91
|
+
0x0a1321f3 => 'botCommandScopePeerUser',
|
|
92
|
+
0x0a245dd3 => 'channels.deactivateAllUsernames',
|
|
93
|
+
0x0a339f0b => 'messageReactions',
|
|
94
|
+
0x0a4314f5 => 'messages.sendWebViewResultMessage',
|
|
95
|
+
0x0a4f63c0 => 'storage.filePng',
|
|
96
|
+
0x0a7f6bbb => 'channels.getChannels',
|
|
97
|
+
0x0a8eb2be => 'inputReportReasonIllegalDrugs',
|
|
98
|
+
0x0a9f2259 => 'destroy_auth_key_none',
|
|
99
|
+
0x0aa1c39f => 'inputPaymentCredentialsApplePay',
|
|
100
|
+
0x0ade1591 => 'contacts.blocked',
|
|
101
|
+
0x0ae30253 => 'messageRange',
|
|
102
|
+
0x0b17f890 => 'messages.recentStickersNotModified',
|
|
103
|
+
0x0b290c69 => 'channels.convertToGigagroup',
|
|
104
|
+
0x0b297e9b => 'stories.togglePinnedToTop',
|
|
105
|
+
0x0b783982 => 'updateGroupCallConnection',
|
|
106
|
+
0x0ba52007 => 'inputPrivacyValueDisallowContacts',
|
|
107
|
+
0x0bb2d201 => 'updateStickerSetsOrder',
|
|
108
|
+
0x0bd915c0 => 'starsTopupOption',
|
|
109
|
+
0x0be77b4a => 'premium.getMyBoosts',
|
|
110
|
+
0x0c5181ac => 'exportedChatlistInvite',
|
|
111
|
+
0x0c94511c => 'webViewMessageSent',
|
|
112
|
+
0x0ca71d64 => 'bots.previewInfo',
|
|
113
|
+
0x0cde3739 => 'inputStickerSetAnimatedEmojiAnimations',
|
|
114
|
+
0x0d09e07b => 'inputPrivacyValueAllowContacts',
|
|
115
|
+
0x0d36bf79 => 'auth.checkRecoveryPassword',
|
|
116
|
+
0x0d54b65d => 'messages.foundStickerSetsNotModified',
|
|
117
|
+
0x0d6b48f7 => 'payments.getSuggestedStarRefBots',
|
|
118
|
+
0x0d91a548 => 'users.getUsers',
|
|
119
|
+
0x0d999256 => 'messageActionTopicCreate',
|
|
120
|
+
0x0da082fe => 'videoSizeStickerMarkup',
|
|
121
|
+
0x0dae54f8 => 'invokeWithApnsSecret',
|
|
122
|
+
0x0de560d1 => 'channels.getForumTopics',
|
|
123
|
+
0x0e0310d7 => 'help.recentMeUrls',
|
|
124
|
+
0x0e17e23c => 'photoSizeEmpty',
|
|
125
|
+
0x0e306d3a => 'messages.readHistory',
|
|
126
|
+
0x0e3b2d0c => 'inlineQueryPeerTypeBotPM',
|
|
127
|
+
0x0e5af939 => 'messageReplyStoryHeader',
|
|
128
|
+
0x0e6b76ae => 'channelAdminLogEventActionChangeLocation',
|
|
129
|
+
0x0e8e37e5 => 'suggestedPost',
|
|
130
|
+
0x0ecf6736 => 'messages.getFeaturedEmojiStickers',
|
|
131
|
+
0x0edc39d0 => 'smsjobs.isEligibleToJoin',
|
|
132
|
+
0x0f578105 => 'account.getRecentEmojiStatuses',
|
|
133
|
+
0x0f635e1b => 'messages.getInlineGameHighScores',
|
|
134
|
+
0x0f91b065 => 'payments.exportInvoice',
|
|
135
|
+
0x0f94e5f1 => 'inputMediaPoll',
|
|
136
|
+
0x1013fd9e => 'contacts.deleteByPhones',
|
|
137
|
+
0x107e31a0 => 'messages.searchSentMedia',
|
|
138
|
+
0x1081464c => 'storage.fileWebp',
|
|
139
|
+
0x108d941f => 'updateChannelTooLong',
|
|
140
|
+
0x10a698e8 => 'smsjobs.getStatus',
|
|
141
|
+
0x10ab6dc7 => 'chatlists.exportedInvites',
|
|
142
|
+
0x10b78d29 => 'keyboardButtonUrlAuth',
|
|
143
|
+
0x10cf3123 => 'bots.setBotInfo',
|
|
144
|
+
0x10e6bd2c => 'channels.checkUsername',
|
|
145
|
+
0x10e6e3a6 => 'chatlists.exportedChatlistInvite',
|
|
146
|
+
0x10ea6184 => 'messages.sendVote',
|
|
147
|
+
0x1117dd5f => 'geoPointEmpty',
|
|
148
|
+
0x1142bd56 => 'savedPhoneContact',
|
|
149
|
+
0x114ff30d => 'contacts.contactBirthdays',
|
|
150
|
+
0x1158fe3e => 'stories.allStoriesNotModified',
|
|
151
|
+
0x11679fa7 => 'inputBusinessChatLink',
|
|
152
|
+
0x11965f3a => 'botInlineResult',
|
|
153
|
+
0x11b58939 => 'documentAttributeAnimated',
|
|
154
|
+
0x11dfa986 => 'updateBotChatInviteRequester',
|
|
155
|
+
0x11e831ee => 'channels.getInactiveChannels',
|
|
156
|
+
0x11f812d8 => 'contacts.search',
|
|
157
|
+
0x120b1ab9 => 'businessWeeklyOpen',
|
|
158
|
+
0x124b1c00 => 'stickers.renameStickerSet',
|
|
159
|
+
0x12b299d4 => 'stickerPack',
|
|
160
|
+
0x12b3ad31 => 'account.getNotifySettings',
|
|
161
|
+
0x12bcbd9a => 'updateNewEncryptedMessage',
|
|
162
|
+
0x12cbf0c4 => 'messages.reportSponsoredMessage',
|
|
163
|
+
0x12f12a07 => 'updateBotInlineSend',
|
|
164
|
+
0x13005788 => 'contacts.importContactToken',
|
|
165
|
+
0x131cc67f => 'inputPrivacyValueAllowUsers',
|
|
166
|
+
0x13567e8a => 'pageBlockUnsupported',
|
|
167
|
+
0x1359f4e6 => 'bots.canSendMessage',
|
|
168
|
+
0x13659eb0 => 'starsTransaction',
|
|
169
|
+
0x13767230 => 'keyboardButtonWebView',
|
|
170
|
+
0x137948a5 => 'auth.passwordRecovery',
|
|
171
|
+
0x13acff19 => 'starGiftAttributePattern',
|
|
172
|
+
0x1427a5e1 => 'channelParticipantsBanned',
|
|
173
|
+
0x14455871 => 'mediaAreaSuggestedReaction',
|
|
174
|
+
0x145ade0b => 'contact',
|
|
175
|
+
0x147ee23c => 'messages.searchResultsCalendar',
|
|
176
|
+
0x148677e2 => 'topPeerCategoryBotsInline',
|
|
177
|
+
0x14967978 => 'messages.uploadMedia',
|
|
178
|
+
0x14b0ed0c => 'phoneCallRequested',
|
|
179
|
+
0x14b85813 => 'updateBotMenuButton',
|
|
180
|
+
0x15051f54 => 'photos.photosSlice',
|
|
181
|
+
0x1508b6af => 'messages.getEmojiKeywordsDifference',
|
|
182
|
+
0x1513e7b0 => 'payments.toggleStarGiftsPinnedToTop',
|
|
183
|
+
0x1527bcac => 'secureSecretSettings',
|
|
184
|
+
0x15590068 => 'documentAttributeFilename',
|
|
185
|
+
0x1592b79d => 'updateWebViewResultSent',
|
|
186
|
+
0x15ad9f64 => 'messages.setInlineGameScore',
|
|
187
|
+
0x15ba6c40 => 'messages.dialogs',
|
|
188
|
+
0x15cefd00 => 'messageActionChatAddUser',
|
|
189
|
+
0x160544ca => 'inputStorePaymentPremiumGiveaway',
|
|
190
|
+
0x16115a96 => 'pageBlockRelatedArticles',
|
|
191
|
+
0x161d9628 => 'topPeerCategoryChannels',
|
|
192
|
+
0x16484857 => 'account.chatThemes',
|
|
193
|
+
0x1662af0b => 'messages.historyImport',
|
|
194
|
+
0x167bd90b => 'payments.starGiftUpgradePreview',
|
|
195
|
+
0x167fc0a1 => 'channels.toggleAutotranslation',
|
|
196
|
+
0x16bf744e => 'sendMessageTypingAction',
|
|
197
|
+
0x16d9703b => 'contactStatus',
|
|
198
|
+
0x16fcc2cb => 'messages.getAttachMenuBots',
|
|
199
|
+
0x1710f156 => 'updateEncryptedChatTyping',
|
|
200
|
+
0x1759c560 => 'pageBlockPhoto',
|
|
201
|
+
0x176f8ba1 => 'sendMessageGeoLocationAction',
|
|
202
|
+
0x17aeb75a => 'bots.addPreviewMedia',
|
|
203
|
+
0x17b7a20b => 'updateAttachMenuBots',
|
|
204
|
+
0x17c6b5f6 => 'help.support',
|
|
205
|
+
0x17d348d2 => 'privacyKeyNoPaidMessages',
|
|
206
|
+
0x17d493d5 => 'channelForbidden',
|
|
207
|
+
0x17d54f61 => 'phone.receivedCall',
|
|
208
|
+
0x17d7f87b => 'account.connectedBots',
|
|
209
|
+
0x17db940b => 'botInlineMediaResult',
|
|
210
|
+
0x18201aae => 'account.clearRecentEmojiStatuses',
|
|
211
|
+
0x1824e40b => 'updateNewStoryReaction',
|
|
212
|
+
0x182e6d6f => 'account.getWebAuthorizations',
|
|
213
|
+
0x183040d3 => 'channelAdminLogEventActionParticipantJoin',
|
|
214
|
+
0x1837c364 => 'inputEncryptedFileEmpty',
|
|
215
|
+
0x1839490f => 'messages.sponsoredMessagesEmpty',
|
|
216
|
+
0x184b35ce => 'inputPrivacyValueAllowAll',
|
|
217
|
+
0x1871be50 => 'messages.exportedChatInvite',
|
|
218
|
+
0x187fa0ca => 'secureValue',
|
|
219
|
+
0x18b7a10d => 'dcOption',
|
|
220
|
+
0x18cb9f78 => 'help.inviteText',
|
|
221
|
+
0x18d1cdc2 => 'botInlineMessageMediaContact',
|
|
222
|
+
0x18dea0ac => 'messages.getAvailableReactions',
|
|
223
|
+
0x192efbe3 => 'updateChannelPinnedTopic',
|
|
224
|
+
0x19360dc0 => 'updateFolderPeers',
|
|
225
|
+
0x193b4417 => 'inputNotifyUsers',
|
|
226
|
+
0x198fb446 => 'messages.requestUrlAuth',
|
|
227
|
+
0x1991b13b => 'bots.popularAppBots',
|
|
228
|
+
0x19a13f71 => 'connectedBotStarRef',
|
|
229
|
+
0x19a9b572 => 'savedStarGift',
|
|
230
|
+
0x19ba4a67 => 'account.getPaidMessagesRevenue',
|
|
231
|
+
0x19c2f763 => 'updates.getDifference',
|
|
232
|
+
0x19d8eb45 => 'stories.report',
|
|
233
|
+
0x1ab21940 => 'phone.getGroupCallStreamChannels',
|
|
234
|
+
0x1abfb575 => 'inputDocument',
|
|
235
|
+
0x1ad4a04a => 'messages.updateDialogFilter',
|
|
236
|
+
0x1ae373ac => 'contacts.resetTopPeerRating',
|
|
237
|
+
0x1b03f006 => 'channelParticipantLeft',
|
|
238
|
+
0x1b0c841a => 'draftMessageEmpty',
|
|
239
|
+
0x1b0e4f07 => 'starsRating',
|
|
240
|
+
0x1b2286b8 => 'reactionEmoji',
|
|
241
|
+
0x1b287353 => 'messageActionSecureValuesSentMe',
|
|
242
|
+
0x1b3f4df7 => 'updateEditChannelMessage',
|
|
243
|
+
0x1b3faa88 => 'account.sendConfirmPhoneCode',
|
|
244
|
+
0x1b7907ae => 'channelAdminLogEventActionToggleInvites',
|
|
245
|
+
0x1bb00451 => 'inputMessagesFilterPinned',
|
|
246
|
+
0x1bbcf300 => 'messages.getSearchCounters',
|
|
247
|
+
0x1befe865 => 'starGiftUnique',
|
|
248
|
+
0x1bf335b9 => 'updateStoryID',
|
|
249
|
+
0x1bf89d74 => 'messages.sendMultiMedia',
|
|
250
|
+
0x1c199183 => 'account.wallPapersNotModified',
|
|
251
|
+
0x1c3db333 => 'account.uploadTheme',
|
|
252
|
+
0x1c50d144 => 'phone.leaveGroupCallPresentation',
|
|
253
|
+
0x1c570ed1 => 'webDocument',
|
|
254
|
+
0x1c6e1c11 => 'chatPhoto',
|
|
255
|
+
0x1ca48f57 => 'inputChatPhotoEmpty',
|
|
256
|
+
0x1ca6ac0a => 'phone.editGroupCallTitle',
|
|
257
|
+
0x1cb5c415 => 'vector',
|
|
258
|
+
0x1cc6e91f => 'inputSingleMedia',
|
|
259
|
+
0x1ccb966a => 'textPhone',
|
|
260
|
+
0x1cd7bf0d => 'inputPhotoEmpty',
|
|
261
|
+
0x1cf671a0 => 'inputStickerSetTonGifts',
|
|
262
|
+
0x1cff7e08 => 'messages.getSplitRanges',
|
|
263
|
+
0x1d1b1245 => 'inputAppEvent',
|
|
264
|
+
0x1d2652ee => 'account.finishTakeoutSession',
|
|
265
|
+
0x1d741ef7 => 'inputStorePaymentStarsGift',
|
|
266
|
+
0x1d998733 => 'contactBirthday',
|
|
267
|
+
0x1da448e2 => 'inputUserFromMessage',
|
|
268
|
+
0x1dab80b7 => 'payments.starsRevenueWithdrawalUrl',
|
|
269
|
+
0x1dd840f5 => 'messages.getEmojiStickerGroups',
|
|
270
|
+
0x1df92984 => 'invokeWithGooglePlayIntegrity',
|
|
271
|
+
0x1e109708 => 'account.paidMessagesRevenue',
|
|
272
|
+
0x1e148390 => 'pageBlockKicker',
|
|
273
|
+
0x1e1c7c45 => 'encryptedChatDiscarded',
|
|
274
|
+
0x1e22c78d => 'inputReportReasonViolence',
|
|
275
|
+
0x1e251c95 => 'help.hidePromoData',
|
|
276
|
+
0x1e287d04 => 'inputMediaUploadedPhoto',
|
|
277
|
+
0x1e297bfa => 'updateMessageReactions',
|
|
278
|
+
0x1e36fded => 'inputPhoneCall',
|
|
279
|
+
0x1e76a78c => 'topPeerCategoryPhoneCalls',
|
|
280
|
+
0x1e8caaeb => 'postAddress',
|
|
281
|
+
0x1e91fc99 => 'messages.getSavedDialogs',
|
|
282
|
+
0x1ea2fda7 => 'updateBusinessBotCallbackQuery',
|
|
283
|
+
0x1edaaac2 => 'account.setGlobalPrivacySettings',
|
|
284
|
+
0x1f01c757 => 'starGiftAttributeIdBackdrop',
|
|
285
|
+
0x1f040578 => 'auth.cancelCode',
|
|
286
|
+
0x1f0c1ad9 => 'paidReactionPrivacyAnonymous',
|
|
287
|
+
0x1f2b0afd => 'updateNewMessage',
|
|
288
|
+
0x1f307eb7 => 'account.savedRingtoneConverted',
|
|
289
|
+
0x1f4a0e87 => 'payments.createStarGiftCollection',
|
|
290
|
+
0x1fad68cd => 'channelAdminLogEvent',
|
|
291
|
+
0x1fb33026 => 'help.getNearestDc',
|
|
292
|
+
0x2000a518 => 'privacyKeyBirthday',
|
|
293
|
+
0x20212ca8 => 'photos.photo',
|
|
294
|
+
0x204bd158 => 'phone.exportedGroupCallInvite',
|
|
295
|
+
0x20529438 => 'updateUser',
|
|
296
|
+
0x2064674e => 'updates.channelDifference',
|
|
297
|
+
0x206ad49e => 'paidReactionPrivacyDefault',
|
|
298
|
+
0x206ae6d1 => 'inputStarsTransaction',
|
|
299
|
+
0x2085c238 => 'inputSavedStarGiftSlug',
|
|
300
|
+
0x208e68c9 => 'inputMessageEntityMentionName',
|
|
301
|
+
0x209b82db => 'channelLocation',
|
|
302
|
+
0x21108ff7 => 'businessRecipients',
|
|
303
|
+
0x211a1788 => 'webPageEmpty',
|
|
304
|
+
0x21202222 => 'messages.getDialogUnreadMarks',
|
|
305
|
+
0x2144ca19 => 'rpc_error',
|
|
306
|
+
0x21461b5d => 'privacyValueAllowBots',
|
|
307
|
+
0x219c34e6 => 'phone.toggleGroupCallStartSubscription',
|
|
308
|
+
0x21a548f3 => 'messages.getEmojiProfilePhotoGroups',
|
|
309
|
+
0x21a61057 => 'messages.appendTodoList',
|
|
310
|
+
0x21e753bc => 'upload.webFile',
|
|
311
|
+
0x21ec5a5f => 'securePlainEmail',
|
|
312
|
+
0x222600ef => 'messages.exportedChatInviteReplaced',
|
|
313
|
+
0x22567115 => 'channels.checkSearchPostsFlood',
|
|
314
|
+
0x226ccefb => 'auth.codeTypeFlashCall',
|
|
315
|
+
0x226e6308 => 'notifyForumTopic',
|
|
316
|
+
0x2271f2bf => 'inputMediaAreaChannelPost',
|
|
317
|
+
0x227d824b => 'payments.getSavedInfo',
|
|
318
|
+
0x22ddd30c => 'messages.getReplies',
|
|
319
|
+
0x23209745 => 'channelAdminLogEventActionStartGroupCall',
|
|
320
|
+
0x2331b22d => 'photoEmpty',
|
|
321
|
+
0x236df622 => 'emojiKeywordDeleted',
|
|
322
|
+
0x23734b06 => 'encryptedMessageService',
|
|
323
|
+
0x2390fe44 => 'auth.sentCodeSuccess',
|
|
324
|
+
0x23e91ba3 => 'botPreviewMedia',
|
|
325
|
+
0x2433dc92 => 'payments.getStarsRevenueWithdrawalUrl',
|
|
326
|
+
0x243e1c66 => 'sendMessageUploadRoundAction',
|
|
327
|
+
0x2442485e => 'account.setAccountTTL',
|
|
328
|
+
0x24596d41 => 'inputQuickReplyShortcut',
|
|
329
|
+
0x2478d1cc => 'payments.getPaymentReceipt',
|
|
330
|
+
0x24b524c5 => 'channels.joinChannel',
|
|
331
|
+
0x24e6818d => 'upload.getWebFile',
|
|
332
|
+
0x24f40e77 => 'updateMessagePollVote',
|
|
333
|
+
0x250dbaf8 => 'starsTransactionPeerPremiumBot',
|
|
334
|
+
0x257e962b => 'premiumGiftCodeOption',
|
|
335
|
+
0x258aff05 => 'keyboardButtonUrl',
|
|
336
|
+
0x25972bcb => 'sendMessageEmojiInteraction',
|
|
337
|
+
0x25a71742 => 'channels.getChannelRecommendations',
|
|
338
|
+
0x25ae8f4a => 'payments.refundStarsCharge',
|
|
339
|
+
0x25b3eac7 => 'stories.getAlbums',
|
|
340
|
+
0x25e073fc => 'pageListItemBlocks',
|
|
341
|
+
0x25f324f7 => 'updateChannelReadMessagesContents',
|
|
342
|
+
0x26219a58 => 'help.peerColorSet',
|
|
343
|
+
0x2633421b => 'chatFull',
|
|
344
|
+
0x263d7c26 => 'pageBlockBlockquote',
|
|
345
|
+
0x2661bf09 => 'updatePhoneCallSignalingData',
|
|
346
|
+
0x269dc2c1 => 'messages.requestWebView',
|
|
347
|
+
0x269e3643 => 'messages.viewSponsoredMessage',
|
|
348
|
+
0x269e9a49 => 'messages.transcribeAudio',
|
|
349
|
+
0x26ae0971 => 'channelAdminLogEventActionToggleSignatures',
|
|
350
|
+
0x26b5dde6 => 'messages.messageEditData',
|
|
351
|
+
0x26cf8950 => 'messages.getDhConfig',
|
|
352
|
+
0x26ffde7d => 'updateDialogFilter',
|
|
353
|
+
0x2714d86c => 'account.checkUsername',
|
|
354
|
+
0x2757ba54 => 'payments.getPremiumGiftCodeOptions',
|
|
355
|
+
0x276d3ec6 => 'msg_detailed_info',
|
|
356
|
+
0x277add7e => 'phone.saveCallDebug',
|
|
357
|
+
0x278f2868 => 'channelAdminLogEventActionSendMessage',
|
|
358
|
+
0x27bcbbfc => 'inputPeerChannel',
|
|
359
|
+
0x28373599 => 'updateUserEmojiStatus',
|
|
360
|
+
0x283bd312 => 'updateBotPurchasedPaidMedia',
|
|
361
|
+
0x284a1096 => 'payments.checkedGiftCode',
|
|
362
|
+
0x284b3639 => 'stickers.checkShortName',
|
|
363
|
+
0x28a20571 => 'messageEntityCode',
|
|
364
|
+
0x28e16cc8 => 'stories.getStoriesViews',
|
|
365
|
+
0x28ecf961 => 'help.termsOfServiceUpdate',
|
|
366
|
+
0x2950a18f => 'channels.reorderPinnedForumTopics',
|
|
367
|
+
0x29562865 => 'chatEmpty',
|
|
368
|
+
0x2979eeb2 => 'langPackStringDeleted',
|
|
369
|
+
0x29a8962c => 'contacts.blockFromReplies',
|
|
370
|
+
0x29b1c66a => 'messages.searchStickers',
|
|
371
|
+
0x29be5899 => 'inputTakeoutFileLocation',
|
|
372
|
+
0x29d0f5ee => 'inputStickerSetEmojiDefaultStatuses',
|
|
373
|
+
0x29ee847a => 'messages.search',
|
|
374
|
+
0x2a2a697c => 'payments.saveStarGift',
|
|
375
|
+
0x2a862092 => 'messages.uploadImportedMedia',
|
|
376
|
+
0x2ad93719 => 'messages.dialogFilters',
|
|
377
|
+
0x2aee9191 => 'smsjobs.status',
|
|
378
|
+
0x2b96cd1b => 'account.emailVerified',
|
|
379
|
+
0x2ba1f5ce => 'help.peerColorsNotModified',
|
|
380
|
+
0x2be0dfa4 => 'jsonNumber',
|
|
381
|
+
0x2bf40ccc => 'account.updateTheme',
|
|
382
|
+
0x2c084dc1 => 'updateStoriesStealthMode',
|
|
383
|
+
0x2c11c0d7 => 'messages.searchCustomEmoji',
|
|
384
|
+
0x2c221edd => 'messages.dhConfig',
|
|
385
|
+
0x2c4ada50 => 'stories.getPeerStories',
|
|
386
|
+
0x2c800be5 => 'contacts.importContacts',
|
|
387
|
+
0x2ca4fdf8 => 'privacyKeyStarGiftsAutoSave',
|
|
388
|
+
0x2ca51fd1 => 'help.getTermsOfServiceUpdate',
|
|
389
|
+
0x2cb51097 => 'messages.favedStickers',
|
|
390
|
+
0x2d0135b3 => 'bots.deletePreviewMedia',
|
|
391
|
+
0x2d01b9ef => 'account.resetWebAuthorization',
|
|
392
|
+
0x2d03522f => 'payments.sendPaymentForm',
|
|
393
|
+
0x2db873a9 => 'auth.importWebTokenAuthorization',
|
|
394
|
+
0x2dbf3432 => 'phone.groupCallStreamRtmpUrl',
|
|
395
|
+
0x2dc173c8 => 'inputEncryptedFileBigUploaded',
|
|
396
|
+
0x2dca16b8 => 'payments.getStarsTransactionsByID',
|
|
397
|
+
0x2dd14edc => 'stickerSet',
|
|
398
|
+
0x2de11aae => 'emojiStatusEmpty',
|
|
399
|
+
0x2df5fc0a => 'channelAdminLogEventActionDefaultBannedRights',
|
|
400
|
+
0x2e2e8734 => 'contacts.block',
|
|
401
|
+
0x2e59d922 => 'inputReportReasonPornography',
|
|
402
|
+
0x2e6eab1a => 'starsSubscription',
|
|
403
|
+
0x2e79d779 => 'payments.getBankCardData',
|
|
404
|
+
0x2e7b4543 => 'account.getCollectibleEmojiStatuses',
|
|
405
|
+
0x2e94c3e7 => 'webPageAttributeStory',
|
|
406
|
+
0x2ea2c0d4 => 'auth.authorization',
|
|
407
|
+
0x2eb1b658 => 'starGiftAttributeCounter',
|
|
408
|
+
0x2ec0533f => 'messageMediaVenue',
|
|
409
|
+
0x2ecd56cd => 'messages.getEmojiStatusGroups',
|
|
410
|
+
0x2ed82995 => 'payments.starGifts',
|
|
411
|
+
0x2efe1722 => 'phone.confirmCall',
|
|
412
|
+
0x2f2ba99f => 'updateChannelWebPage',
|
|
413
|
+
0x2f2f21bf => 'updateReadHistoryOutbox',
|
|
414
|
+
0x2f453e49 => 'inputPrivacyValueAllowCloseFriends',
|
|
415
|
+
0x2f6cb2ab => 'botCommandScopeDefault',
|
|
416
|
+
0x2fe601d3 => 'channelParticipantCreator',
|
|
417
|
+
0x2ffe2f7a => 'messageActionConferenceCall',
|
|
418
|
+
0x30535af5 => 'phoneCall',
|
|
419
|
+
0x3072cfa1 => 'gzip_packed',
|
|
420
|
+
0x3081ed9d => 'inlineQueryPeerTypeSameBotPM',
|
|
421
|
+
0x308660c1 => 'keyboardButtonUserProfile',
|
|
422
|
+
0x30a6ec7e => 'messages.stickers',
|
|
423
|
+
0x30eb63f0 => 'stories.canSendStory',
|
|
424
|
+
0x30f443db => 'updateRecentEmojiStatuses',
|
|
425
|
+
0x313bc7f8 => 'updateShortMessage',
|
|
426
|
+
0x31518e9b => 'messageActionRequestedPeer',
|
|
427
|
+
0x315a4974 => 'users.usersSlice',
|
|
428
|
+
0x316ce548 => 'account.setReactionsNotifySettings',
|
|
429
|
+
0x31bb5d52 => 'channelAdminLogEventActionChangeWallpaper',
|
|
430
|
+
0x31bd492d => 'messages.messageReactionsList',
|
|
431
|
+
0x31c1c44f => 'messages.getMessageReadParticipants',
|
|
432
|
+
0x31c24808 => 'updateStickerSets',
|
|
433
|
+
0x31cad303 => 'webPageAttributeStarGiftCollection',
|
|
434
|
+
0x3259950a => 'messages.savedReactionTags',
|
|
435
|
+
0x327a30cb => 'messages.saveGif',
|
|
436
|
+
0x32ca960f => 'messageEntitySpoiler',
|
|
437
|
+
0x32d439a4 => 'messages.sendEncryptedService',
|
|
438
|
+
0x32da9e9c => 'inputStickerSetItem',
|
|
439
|
+
0x3334b0f0 => 'inputSecureFileUploaded',
|
|
440
|
+
0x3354678f => 'updatePtsChanged',
|
|
441
|
+
0x3371c354 => 'messages.peerDialogs',
|
|
442
|
+
0x3380c786 => 'inputBotInlineMessageMediaAuto',
|
|
443
|
+
0x339bef6c => 'requestPeerTypeBroadcast',
|
|
444
|
+
0x33db32f8 => 'messages.translateResult',
|
|
445
|
+
0x33ddf480 => 'channels.getAdminLog',
|
|
446
|
+
0x33f0ea47 => 'secureCredentialsEncrypted',
|
|
447
|
+
0x3407e51b => 'stickerSetMultiCovered',
|
|
448
|
+
0x34090c3b => 'messages.initHistoryImport',
|
|
449
|
+
0x3417d728 => 'inputPaymentCredentials',
|
|
450
|
+
0x34435f2d => 'channels.deleteTopicHistory',
|
|
451
|
+
0x34566b6a => 'pageTableCell',
|
|
452
|
+
0x3458f9c8 => 'chatThemeUniqueGift',
|
|
453
|
+
0x34636dd8 => 'secureValueErrorTranslationFiles',
|
|
454
|
+
0x347773c5 => 'pong',
|
|
455
|
+
0x34a2f297 => 'users.savedMusic',
|
|
456
|
+
0x34c3bb53 => 'channelParticipantAdmin',
|
|
457
|
+
0x34e793f1 => 'inputInvoiceChatInviteSubscription',
|
|
458
|
+
0x34f762f3 => 'messageActionStarGiftUnique',
|
|
459
|
+
0x34fdc5c3 => 'messages.getBotApp',
|
|
460
|
+
0x3504914f => 'updateDialogFilters',
|
|
461
|
+
0x3514b3de => 'channels.updateUsername',
|
|
462
|
+
0x354a9b09 => 'botInlineMessageMediaInvoice',
|
|
463
|
+
0x35553762 => 'textAnchor',
|
|
464
|
+
0x35705b8a => 'messages.searchStickerSets',
|
|
465
|
+
0x3583fcb1 => 'channels.setMainProfileTab',
|
|
466
|
+
0x35a0e062 => 'messages.getEmojiKeywords',
|
|
467
|
+
0x35a95cb9 => 'inputPeerChat',
|
|
468
|
+
0x35a9e0d5 => 'account.getChannelRestrictedStatusEmojis',
|
|
469
|
+
0x35bbdb6b => 'keyboardButtonCallback',
|
|
470
|
+
0x35ddd674 => 'messages.editChatPhoto',
|
|
471
|
+
0x35e410a8 => 'messages.stickerSetInstallResultArchive',
|
|
472
|
+
0x363293ae => 'dialogFilterDefault',
|
|
473
|
+
0x3637e05b => 'messages.getSavedReactionTags',
|
|
474
|
+
0x365275f2 => 'invokeWithMessagesRange',
|
|
475
|
+
0x36585ea4 => 'messages.botCallbackAnswer',
|
|
476
|
+
0x3660c311 => 'phoneCallAccepted',
|
|
477
|
+
0x367544db => 'channels.deleteParticipantHistory',
|
|
478
|
+
0x367617d3 => 'messages.forumTopics',
|
|
479
|
+
0x36a73f77 => 'messages.readMessageContents',
|
|
480
|
+
0x36c6019a => 'peerChat',
|
|
481
|
+
0x36e5bf4d => 'messages.readMentions',
|
|
482
|
+
0x36f8c871 => 'documentEmpty',
|
|
483
|
+
0x37096c70 => 'auth.recoverPassword',
|
|
484
|
+
0x37148dbb => 'payments.getPaymentForm',
|
|
485
|
+
0x37257e99 => 'inputPeerPhotoFileLocation',
|
|
486
|
+
0x372efcd0 => 'wallPaperSettings',
|
|
487
|
+
0x37381085 => 'mediaAreaUrl',
|
|
488
|
+
0x374fa7ad => 'payments.checkCanSendGiftResultOk',
|
|
489
|
+
0x374fef40 => 'stats.getStoryStats',
|
|
490
|
+
0x3751b49e => 'inputMessagesFilterMusic',
|
|
491
|
+
0x37c1011c => 'chatPhotoEmpty',
|
|
492
|
+
0x3823cc40 => 'inputPrivacyKeyAbout',
|
|
493
|
+
0x38641628 => 'messages.stickerSetInstallResultSuccess',
|
|
494
|
+
0x38df3532 => 'account.updateDeviceLocked',
|
|
495
|
+
0x38fe25b7 => 'updateEncryptedMessagesRead',
|
|
496
|
+
0x390d5c5e => 'auth.loginTokenSuccess',
|
|
497
|
+
0x3920e6ef => 'messages.getAdminsWithInvites',
|
|
498
|
+
0x392718f8 => 'messages.saveRecentSticker',
|
|
499
|
+
0x39461db2 => 'messages.getRecentReactions',
|
|
500
|
+
0x39491cc8 => 'privacyKeyPhoneP2P',
|
|
501
|
+
0x394e7f21 => 'payments.starsRevenueAdsAccountUrl',
|
|
502
|
+
0x395f69da => 'upload.getCdnFile',
|
|
503
|
+
0x396ca5fc => 'stats.broadcastStats',
|
|
504
|
+
0x39854d1f => 'premium.getUserBoosts',
|
|
505
|
+
0x39a51dfb => 'updateNewScheduledMessage',
|
|
506
|
+
0x39c67432 => 'updateSavedReactionTags',
|
|
507
|
+
0x39d99013 => 'starGiftAttributeModel',
|
|
508
|
+
0x39f23300 => 'pageBlockCover',
|
|
509
|
+
0x3a20ecb8 => 'inputMessagesFilterChatPhotos',
|
|
510
|
+
0x3a5869ec => 'account.getTheme',
|
|
511
|
+
0x3a912d4a => 'passwordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow',
|
|
512
|
+
0x3b1adf37 => 'messages.reorderPinnedDialogs',
|
|
513
|
+
0x3b6d152e => 'users.userFull',
|
|
514
|
+
0x3b6ddad2 => 'pollAnswerVoters',
|
|
515
|
+
0x3bb3b94a => 'inputPhoto',
|
|
516
|
+
0x3bb842ac => 'outboxReadDate',
|
|
517
|
+
0x3bcbf734 => 'dh_gen_ok',
|
|
518
|
+
0x3bd2b4a0 => 'phone.acceptCall',
|
|
519
|
+
0x3c134d7b => 'messageActionSetMessagesTTL',
|
|
520
|
+
0x3c20629f => 'inlineBotSwitchPM',
|
|
521
|
+
0x3c2884c1 => 'textUrl',
|
|
522
|
+
0x3c4301c0 => 'attachMenuBots',
|
|
523
|
+
0x3c479971 => 'phone.declineConferenceCallInvite',
|
|
524
|
+
0x3c4f04d8 => 'botCommandScopeUsers',
|
|
525
|
+
0x3c5693e9 => 'inputTheme',
|
|
526
|
+
0x3cbc93f8 => 'chatParticipants',
|
|
527
|
+
0x3cc04740 => 'messages.deleteQuickReplyShortcut',
|
|
528
|
+
0x3cd930b7 => 'channels.setEmojiStickers',
|
|
529
|
+
0x3d662b7b => 'privacyKeyPhoneCall',
|
|
530
|
+
0x3d6ce850 => 'messages.getSponsoredMessages',
|
|
531
|
+
0x3d8de0f9 => 'bots.resetBotCommands',
|
|
532
|
+
0x3dac6a00 => 'secureValueTypePassport',
|
|
533
|
+
0x3dbb5986 => 'auth.sentCodeTypeApp',
|
|
534
|
+
0x3dbc0415 => 'messages.acceptEncryption',
|
|
535
|
+
0x3dc0f114 => 'help.getRecentMeUrls',
|
|
536
|
+
0x3dc4b4f0 => 'invokeAfterMsgs',
|
|
537
|
+
0x3dcd7a87 => 'inputBotInlineMessageText',
|
|
538
|
+
0x3dda5451 => 'updateChatParticipantAdd',
|
|
539
|
+
0x3dea5b03 => 'account.saveRingtone',
|
|
540
|
+
0x3ded6320 => 'messageMediaEmpty',
|
|
541
|
+
0x3e050d0f => 'updateQuickReplyMessage',
|
|
542
|
+
0x3e0b5b6a => 'searchPostsFlood',
|
|
543
|
+
0x3e0bdd7c => 'account.updateUsername',
|
|
544
|
+
0x3e11affb => 'updates.channelDifferenceEmpty',
|
|
545
|
+
0x3e24e573 => 'payments.bankCardData',
|
|
546
|
+
0x3e3bcf2f => 'channels.sponsoredMessageReportResultAdsHidden',
|
|
547
|
+
0x3e72ba19 => 'auth.logOut',
|
|
548
|
+
0x3e7f6847 => 'channelAdminLogEventActionParticipantVolume',
|
|
549
|
+
0x3ea9feb1 => 'channelAdminLogEventActionChangeEmojiStatus',
|
|
550
|
+
0x3eadb1bb => 'messages.checkChatInvite',
|
|
551
|
+
0x3f64c076 => 'messages.reportReaction',
|
|
552
|
+
0x3f6d7b68 => 'jsonNull',
|
|
553
|
+
0x3f7ee58b => 'messageMediaDice',
|
|
554
|
+
0x3fc9053b => 'exportedStoryLink',
|
|
555
|
+
0x3fd863d1 => 'botCommandScopePeerAdmins',
|
|
556
|
+
0x3fedc75f => 'help.getDeepLinkInfo',
|
|
557
|
+
0x3fedd339 => 'true',
|
|
558
|
+
0x3ff75734 => 'channels.toggleForum',
|
|
559
|
+
0x40181ffe => 'inputPhotoFileLocation',
|
|
560
|
+
0x40582bb2 => 'channels.setDiscussionGroup',
|
|
561
|
+
0x405fef0d => 'inputMediaInvoice',
|
|
562
|
+
0x40bc6f52 => 'storage.filePartial',
|
|
563
|
+
0x40d13c0e => 'stickerSetFullCovered',
|
|
564
|
+
0x40f48462 => 'account.changeAuthorizationSettings',
|
|
565
|
+
0x410a134e => 'channelAdminLogEventActionExportedInviteRevoke',
|
|
566
|
+
0x41248786 => 'phone.saveCallLog',
|
|
567
|
+
0x413a3e73 => 'messages.requestSimpleWebView',
|
|
568
|
+
0x416c56e8 => 'payments.uniqueStarGift',
|
|
569
|
+
0x417bbf11 => 'inputBotInlineMessageMediaVenue',
|
|
570
|
+
0x418d549c => 'channels.toggleSignatures',
|
|
571
|
+
0x41b3e202 => 'messageActionPaymentRefunded',
|
|
572
|
+
0x41bf109b => 'exportedContactToken',
|
|
573
|
+
0x41c10fff => 'chatlists.checkChatlistInvite',
|
|
574
|
+
0x41c87565 => 'privacyValueDisallowChatParticipants',
|
|
575
|
+
0x41cbf256 => 'chat',
|
|
576
|
+
0x4203c5ef => 'help.countryCode',
|
|
577
|
+
0x423ab3ad => 'bots.getPreviewInfo',
|
|
578
|
+
0x4258c205 => 'botMenuButtonCommands',
|
|
579
|
+
0x42c6978f => 'langpack.getLanguages',
|
|
580
|
+
0x42e047bb => 'channelAdminLogEventActionDeleteMessage',
|
|
581
|
+
0x42ff96ed => 'phone.requestCall',
|
|
582
|
+
0x42ffd42b => 'privacyKeyAddedByPhone',
|
|
583
|
+
0x430d3150 => 'sponsoredMessageReportOption',
|
|
584
|
+
0x4345be73 => 'emailVerifyPurposeLoginSetup',
|
|
585
|
+
0x434bd2af => 'channelAdminLogEventActionChangePhoto',
|
|
586
|
+
0x435885b5 => 'messages.togglePaidReactionPrivacy',
|
|
587
|
+
0x4365af6b => 'payments.getUniqueStarGiftValueInfo',
|
|
588
|
+
0x4367daa0 => 'payments.giveawayInfo',
|
|
589
|
+
0x43b46b20 => 'defaultHistoryTTL',
|
|
590
|
+
0x43c57c48 => 'documentAttributeVideo',
|
|
591
|
+
0x43fe19f3 => 'messages.checkHistoryImport',
|
|
592
|
+
0x4423e6c5 => 'messages.getHistory',
|
|
593
|
+
0x446972fd => 'messages.getDiscussionMessage',
|
|
594
|
+
0x44747e9a => 'auth.authorizationSignUpRequired',
|
|
595
|
+
0x449e0b51 => 'account.getTmpPassword',
|
|
596
|
+
0x44ba9dd9 => 'messages.savedDialogsSlice',
|
|
597
|
+
0x44c1f8e9 => 'inputStickerSetEmojiDefaultTopicIcons',
|
|
598
|
+
0x44fa7a15 => 'messages.sendEncrypted',
|
|
599
|
+
0x4504d54f => 'bots.setBotMenuButton',
|
|
600
|
+
0x455b853d => 'messageViews',
|
|
601
|
+
0x4576f3f0 => 'attachMenuBotIconColor',
|
|
602
|
+
0x45d5b021 => 'messageActionGiftStars',
|
|
603
|
+
0x461b3f48 => 'messages.getMessageReactionsList',
|
|
604
|
+
0x4628f6e6 => 'messagePeerVoteMultiple',
|
|
605
|
+
0x46560264 => 'updateLangPackTooLong',
|
|
606
|
+
0x467a0766 => 'pageBlockParagraph',
|
|
607
|
+
0x4696459a => 'stickers.replaceSticker',
|
|
608
|
+
0x46d840ab => 'channelAdminLogEventActionChangeEmojiStickerSet',
|
|
609
|
+
0x46dc1fb9 => 'dh_gen_retry',
|
|
610
|
+
0x46e1d13d => 'recentMeUrlUnknown',
|
|
611
|
+
0x472455aa => 'messages.getPaidReactionPrivacy',
|
|
612
|
+
0x4792929b => 'messageActionScreenshotTaken',
|
|
613
|
+
0x47a971e0 => 'statsURL',
|
|
614
|
+
0x47dd8079 => 'messageActionWebViewDataSentMe',
|
|
615
|
+
0x481eadfa => 'emojiListNotModified',
|
|
616
|
+
0x48222faf => 'inputGeoPoint',
|
|
617
|
+
0x48870999 => 'pageBlockFooter',
|
|
618
|
+
0x4899484e => 'messages.votesList',
|
|
619
|
+
0x48a30254 => 'replyInlineMarkup',
|
|
620
|
+
0x48aaae3c => 'starGiftAttributeIdModel',
|
|
621
|
+
0x48cdc6d8 => 'phone.createGroupCall',
|
|
622
|
+
0x48f1d94c => 'encryptedChatRequested',
|
|
623
|
+
0x4959427a => 'premium.boostsStatus',
|
|
624
|
+
0x496f379c => 'updateBotInlineQuery',
|
|
625
|
+
0x49748553 => 'inputStickerSetEmojiChannelDefaultStatuses',
|
|
626
|
+
0x49a6549c => 'mediaAreaWeather',
|
|
627
|
+
0x49b30240 => 'help.getTimezonesList',
|
|
628
|
+
0x49b92a26 => 'todoList',
|
|
629
|
+
0x49e9528f => 'messages.getChats',
|
|
630
|
+
0x4a162433 => 'starGiftAttributeIdPattern',
|
|
631
|
+
0x4a27eb2d => 'statsGraphAsync',
|
|
632
|
+
0x4a4ff172 => 'readParticipantDate',
|
|
633
|
+
0x4a5f5bd9 => 'inputInvoiceStarGiftTransfer',
|
|
634
|
+
0x4a95e84e => 'inputNotifyChats',
|
|
635
|
+
0x4a992157 => 'inputStickeredMediaPhoto',
|
|
636
|
+
0x4afe8f6d => 'updates.differenceTooLong',
|
|
637
|
+
0x4b00e066 => 'account.updateBusinessWorkHours',
|
|
638
|
+
0x4b09ebbc => 'storage.fileMov',
|
|
639
|
+
0x4b0c8c0f => 'messages.reportEncryptedSpam',
|
|
640
|
+
0x4b12327b => 'channels.updatePaidMessagesPrice',
|
|
641
|
+
0x4b3e14d6 => 'boost',
|
|
642
|
+
0x4b425864 => 'inputBotInlineMessageGame',
|
|
643
|
+
0x4b9e22a0 => 'reactionNotificationsFromAll',
|
|
644
|
+
0x4ba3a95a => 'messageReactor',
|
|
645
|
+
0x4bc6589a => 'messages.searchGlobal',
|
|
646
|
+
0x4bd6e798 => 'messageMediaPoll',
|
|
647
|
+
0x4bff8ea0 => 'account.authorizations',
|
|
648
|
+
0x4c2985b6 => 'channels.toggleJoinRequest',
|
|
649
|
+
0x4c3e069d => 'account.autoSaveSettings',
|
|
650
|
+
0x4c4e743f => 'messageEntityCashtag',
|
|
651
|
+
0x4c9409f6 => 'account.declinePasswordReset',
|
|
652
|
+
0x4cc120b7 => 'todoCompletion',
|
|
653
|
+
0x4d22ff98 => 'webViewResultUrl',
|
|
654
|
+
0x4d392343 => 'help.getInviteText',
|
|
655
|
+
0x4d4bd46a => 'profileTabGifts',
|
|
656
|
+
0x4d6deea5 => 'updateShortChatMessage',
|
|
657
|
+
0x4d712f2e => 'updateBotCommands',
|
|
658
|
+
0x4d818d5d => 'inputInvoiceStarGiftUpgrade',
|
|
659
|
+
0x4d8a0299 => 'botInfo',
|
|
660
|
+
0x4dafc503 => 'stickers.suggestShortName',
|
|
661
|
+
0x4dba4501 => 'account.takeout',
|
|
662
|
+
0x4dc5085f => 'messages.deleteSavedHistory',
|
|
663
|
+
0x4dd3a7f6 => 'account.verifyPhone',
|
|
664
|
+
0x4e4df4bb => 'messageFwdHeader',
|
|
665
|
+
0x4e5f810d => 'payments.paymentResult',
|
|
666
|
+
0x4e80a379 => 'updateStarsBalance',
|
|
667
|
+
0x4e90bfd6 => 'updateMessageID',
|
|
668
|
+
0x4e9963b2 => 'messages.getEmojiKeywordsLanguages',
|
|
669
|
+
0x4ea4c80f => 'account.getConnectedBots',
|
|
670
|
+
0x4ea9b3bf => 'payments.getStarsStatus',
|
|
671
|
+
0x4f11bae1 => 'userProfilePhotoEmpty',
|
|
672
|
+
0x4f1ebf24 => 'smsjobs.finishJob',
|
|
673
|
+
0x4f4456d3 => 'pageBlockPullquote',
|
|
674
|
+
0x4f47a016 => 'messages.setDefaultReaction',
|
|
675
|
+
0x4f607bef => 'channelParticipantSelf',
|
|
676
|
+
0x4f96cb18 => 'inputPrivacyKeyStatusTimestamp',
|
|
677
|
+
0x4fa417f2 => 'inputBotInlineResultGame',
|
|
678
|
+
0x4facb138 => 'messages.hidePeerSettingsBar',
|
|
679
|
+
0x4fc81d6e => 'account.savedMusicIdsNotModified',
|
|
680
|
+
0x4fcba9c8 => 'messages.archivedStickers',
|
|
681
|
+
0x4fdc5ea7 => 'payments.canPurchaseStore',
|
|
682
|
+
0x4fddbee7 => 'payments.updateStarGiftCollection',
|
|
683
|
+
0x500377f9 => 'phone.leaveGroupCall',
|
|
684
|
+
0x50077589 => 'bots.checkDownloadFileParams',
|
|
685
|
+
0x500e6dfa => 'privacyKeyChatInvite',
|
|
686
|
+
0x502f92f7 => 'messageActionInviteToGroupCall',
|
|
687
|
+
0x504aa18f => 'updateSentPhoneCode',
|
|
688
|
+
0x5057c497 => 'messages.uploadEncryptedFile',
|
|
689
|
+
0x5060a3f4 => 'messageActionSetChatWallPaper',
|
|
690
|
+
0x50a04e45 => 'account.privacyRules',
|
|
691
|
+
0x50ca4de1 => 'phoneCallDiscarded',
|
|
692
|
+
0x50cc03d3 => 'webPageAttributeStickerSet',
|
|
693
|
+
0x50cd067c => 'stats.storyStats',
|
|
694
|
+
0x50f24105 => 'channels.toggleUsername',
|
|
695
|
+
0x50f41ccf => 'keyboardButtonGame',
|
|
696
|
+
0x50f5c392 => 'inputMessagesFilterVoice',
|
|
697
|
+
0x512fe446 => 'payments.uniqueStarGiftValueInfo',
|
|
698
|
+
0x514519e2 => 'dialogPeerFolder',
|
|
699
|
+
0x514e999d => 'messages.getInlineBotResults',
|
|
700
|
+
0x51e6ee4f => 'storyItemDeleted',
|
|
701
|
+
0x52029342 => 'help.getCdnConfig',
|
|
702
|
+
0x522d5a7d => 'help.getAppUpdate',
|
|
703
|
+
0x523da4eb => 'reactionPaid',
|
|
704
|
+
0x527d22eb => 'emailVerifyPurposeLoginChange',
|
|
705
|
+
0x528a0677 => 'storage.fileMp3',
|
|
706
|
+
0x52928bca => 'chatReactionsAll',
|
|
707
|
+
0x52d8ccd9 => 'messageMediaDocument',
|
|
708
|
+
0x5334759c => 'help.premiumPromo',
|
|
709
|
+
0x5353e5a7 => 'auth.sentCodeTypeCall',
|
|
710
|
+
0x53577479 => 'account.getNotifyExceptions',
|
|
711
|
+
0x535983c3 => 'stories.getPeerMaxIDs',
|
|
712
|
+
0x535f779d => 'statsGroupTopInviter',
|
|
713
|
+
0x53618bce => 'messages.requestAppWebView',
|
|
714
|
+
0x5366c915 => 'phoneCallEmpty',
|
|
715
|
+
0x5367e5be => 'inputSecureFile',
|
|
716
|
+
0x53909779 => 'channelAdminLogEventActionToggleSlowMode',
|
|
717
|
+
0x53b22baf => 'messages.searchResultsPositions',
|
|
718
|
+
0x53bc0020 => 'account.deleteAutoSaveExceptions',
|
|
719
|
+
0x53d7bfd8 => 'keyboardButtonRequestPeer',
|
|
720
|
+
0x53e6f1ec => 'updateDeleteQuickReply',
|
|
721
|
+
0x541a1d1a => 'userStatusLastWeek',
|
|
722
|
+
0x54236209 => 'starsGiveawayWinnersOption',
|
|
723
|
+
0x548a30f5 => 'account.getPassword',
|
|
724
|
+
0x5492e5ee => 'account.resolveBusinessChatLink',
|
|
725
|
+
0x54ae308e => 'messages.saveDraft',
|
|
726
|
+
0x54b56617 => 'webPageAttributeTheme',
|
|
727
|
+
0x54c01850 => 'updateChatDefaultBannedRights',
|
|
728
|
+
0x55188a2e => 'channelAdminLogEventActionChangeAbout',
|
|
729
|
+
0x553b0ba1 => 'groupCall',
|
|
730
|
+
0x55451fa9 => 'phone.getCallConfig',
|
|
731
|
+
0x5559481d => 'messages.sendEncryptedFile',
|
|
732
|
+
0x55a5bb66 => 'messages.receivedQueue',
|
|
733
|
+
0x56022f4d => 'updateLangPack',
|
|
734
|
+
0x560f8935 => 'messages.sentEncryptedMessage',
|
|
735
|
+
0x564edaeb => 'stories.albumsNotModified',
|
|
736
|
+
0x564fe691 => 'updateLoginToken',
|
|
737
|
+
0x566decd0 => 'channels.editTitle',
|
|
738
|
+
0x566fe7cd => 'updateDeleteQuickReplyMessages',
|
|
739
|
+
0x56730bcc => 'null',
|
|
740
|
+
0x5680e342 => 'phone.startScheduledGroupCall',
|
|
741
|
+
0x56987bd5 => 'messages.deleteRevokedExportedChatInvites',
|
|
742
|
+
0x56d03994 => 'messageActionGiftCode',
|
|
743
|
+
0x56d6a247 => 'channelAdminLogEventActionToggleGroupCallSetting',
|
|
744
|
+
0x56da0b3f => 'account.getAutoDownloadSettings',
|
|
745
|
+
0x56e0d474 => 'messageMediaGeo',
|
|
746
|
+
0x56e34970 => 'reactionsNotifySettings',
|
|
747
|
+
0x56e9f0e4 => 'inputMessagesFilterPhotoVideo',
|
|
748
|
+
0x56fddf88 => 'p_q_inner_data_temp_dc',
|
|
749
|
+
0x570d6f6f => 'messages.getWebPagePreview',
|
|
750
|
+
0x5719bacc => 'inputPrivacyKeyProfilePhoto',
|
|
751
|
+
0x571d2742 => 'updateReadFeaturedStickers',
|
|
752
|
+
0x5725e40a => 'cdnConfig',
|
|
753
|
+
0x575e1f8c => 'phone.saveDefaultGroupCallJoinAs',
|
|
754
|
+
0x5774ca74 => 'stories.getStoriesByID',
|
|
755
|
+
0x5784d3e1 => 'messages.getMessagesViews',
|
|
756
|
+
0x5787686d => 'mediaAreaStarGift',
|
|
757
|
+
0x5796e780 => 'channelAdminLogEventActionChangePeerColor',
|
|
758
|
+
0x57adc690 => 'phoneCallDiscardReasonHangup',
|
|
759
|
+
0x57bbd166 => 'stories.activateStealthMode',
|
|
760
|
+
0x57de635e => 'messageActionSuggestProfilePhoto',
|
|
761
|
+
0x57e28221 => 'account.contentSettings',
|
|
762
|
+
0x57e2f66c => 'inputMessagesFilterEmpty',
|
|
763
|
+
0x57f17692 => 'messages.getArchivedStickers',
|
|
764
|
+
0x5821a5dc => 'stories.getPinnedStories',
|
|
765
|
+
0x5869a553 => 'payments.getConnectedStarRefBots',
|
|
766
|
+
0x58707d28 => 'channelAdminLogEventActionCreateTopic',
|
|
767
|
+
0x58747131 => 'poll',
|
|
768
|
+
0x5881323a => 'inputReplyToStory',
|
|
769
|
+
0x58943ee2 => 'messages.setTyping',
|
|
770
|
+
0x58bbcb50 => 'messages.sendPaidReaction',
|
|
771
|
+
0x58d6b376 => 'account.toggleUsername',
|
|
772
|
+
0x58dbcab8 => 'inputReportReasonSpam',
|
|
773
|
+
0x58e4a740 => 'rpc_drop_answer',
|
|
774
|
+
0x58e63f6d => 'channels.editLocation',
|
|
775
|
+
0x59511722 => 'peerUser',
|
|
776
|
+
0x59ae2b16 => 'messages.deleteScheduledMessages',
|
|
777
|
+
0x59d78fc5 => 'stories.storyViewsList',
|
|
778
|
+
0x59ead627 => 'phone.setCallRating',
|
|
779
|
+
0x5a0a066d => 'businessIntro',
|
|
780
|
+
0x5a17b5e5 => 'inputEncryptedFile',
|
|
781
|
+
0x5a4fcce5 => 'inputPrivacyValueAllowBots',
|
|
782
|
+
0x5a50fca4 => 'channelAdminLogEventActionExportedInviteDelete',
|
|
783
|
+
0x5a686d7c => 'chatInviteAlready',
|
|
784
|
+
0x5a6d7395 => 'messages.reportMessagesDelivery',
|
|
785
|
+
0x5b11125a => 'baseThemeArctic',
|
|
786
|
+
0x5b118126 => 'messages.readFeaturedStickers',
|
|
787
|
+
0x5b934f9d => 'inputChannelFromMessage',
|
|
788
|
+
0x5bb8e511 => 'message',
|
|
789
|
+
0x5bb98608 => 'updatePinnedChannelMessages',
|
|
790
|
+
0x5bd0ee50 => 'messages.deleteChat',
|
|
791
|
+
0x5c003cef => 'messages.editQuickReplyShortcut',
|
|
792
|
+
0x5c467992 => 'inputNotifyForumTopic',
|
|
793
|
+
0x5c9d3702 => 'chatInvite',
|
|
794
|
+
0x5cc761bd => 'emojiKeywordsDifference',
|
|
795
|
+
0x5ce14175 => 'popularContact',
|
|
796
|
+
0x5cf09635 => 'messages.getSavedGifs',
|
|
797
|
+
0x5d75a138 => 'updates.differenceEmpty',
|
|
798
|
+
0x5d8d353b => 'channelAdminLogEventActionPinTopic',
|
|
799
|
+
0x5da674b7 => 'botAppNotModified',
|
|
800
|
+
0x5dab1af4 => 'exportedMessageLink',
|
|
801
|
+
0x5dc60f03 => 'messages.checkHistoryImportPeer',
|
|
802
|
+
0x5dd69e12 => 'contacts.getContacts',
|
|
803
|
+
0x5dee78b0 => 'account.setMainProfileTab',
|
|
804
|
+
0x5e002502 => 'auth.sentCode',
|
|
805
|
+
0x5e0589f1 => 'starsGiftOption',
|
|
806
|
+
0x5e068047 => 'pageListOrderedItemText',
|
|
807
|
+
0x5e0fb7b9 => 'messages.historyImportParsed',
|
|
808
|
+
0x5e2ad36e => 'rpc_answer_unknown',
|
|
809
|
+
0x5e437ed9 => 'account.disablePeerConnectedBot',
|
|
810
|
+
0x5e477b25 => 'channelAdminLogEventActionChangeProfilePeerColor',
|
|
811
|
+
0x5e5259b6 => 'stories.updateAlbum',
|
|
812
|
+
0x5ec4be43 => 'inlineQueryPeerTypeMegagroup',
|
|
813
|
+
0x5f150144 => 'stats.getMessagePublicForwards',
|
|
814
|
+
0x5f2178c3 => 'account.confirmPhone',
|
|
815
|
+
0x5f2d1df2 => 'premiumSubscriptionOption',
|
|
816
|
+
0x5f3b8a00 => 'requestPeerTypeUser',
|
|
817
|
+
0x5f5c95f1 => 'channelAdminLogEventActionTogglePreHistoryHidden',
|
|
818
|
+
0x5f91eb5b => 'messages.quickRepliesNotModified',
|
|
819
|
+
0x5fb224d5 => 'chatAdminRights',
|
|
820
|
+
0x5ff58f20 => 'payments.launchPrepaidGiveaway',
|
|
821
|
+
0x60073674 => 'account.deleteBusinessChatLink',
|
|
822
|
+
0x6010c534 => 'messages.foundStickersNotModified',
|
|
823
|
+
0x60297dec => 'messages.updateSavedReactionTag',
|
|
824
|
+
0x60331907 => 'messages.reorderQuickReplies',
|
|
825
|
+
0x60682812 => 'starsTransactionPeerAds',
|
|
826
|
+
0x6090d6d5 => 'storyReaction',
|
|
827
|
+
0x60a79c79 => 'channelAdminLogEventActionToggleSignatureProfiles',
|
|
828
|
+
0x60eaefa1 => 'payments.toggleChatStarGiftNotifications',
|
|
829
|
+
0x60f67660 => 'premium.getBoostsList',
|
|
830
|
+
0x61695cb0 => 'chatInvitePeek',
|
|
831
|
+
0x616f7fe8 => 'inputStorePaymentGiftPremium',
|
|
832
|
+
0x61e3f854 => 'help.getAppConfig',
|
|
833
|
+
0x61f0d4c7 => 'encryptedChat',
|
|
834
|
+
0x621d5fa0 => 'stats.loadAsyncGraph',
|
|
835
|
+
0x628c9224 => 'missingInvitee',
|
|
836
|
+
0x628cbc6f => 'sendMessageChooseContactAction',
|
|
837
|
+
0x629f1980 => 'auth.loginToken',
|
|
838
|
+
0x62ba04d9 => 'updateNewChannelMessage',
|
|
839
|
+
0x62d350c9 => 'destroy_session_none',
|
|
840
|
+
0x62d6b459 => 'msgs_ack',
|
|
841
|
+
0x62d706b8 => 'users.users',
|
|
842
|
+
0x62dc8b48 => 'inputFileStoryDocument',
|
|
843
|
+
0x63183030 => 'messages.translateText',
|
|
844
|
+
0x6319d612 => 'documentAttributeSticker',
|
|
845
|
+
0x6334ee9a => 'inlineQueryPeerTypeBroadcast',
|
|
846
|
+
0x635b4c09 => 'updateChannel',
|
|
847
|
+
0x635fe375 => 'phoneConnectionWebrtc',
|
|
848
|
+
0x63c3dd0a => 'stories.stories',
|
|
849
|
+
0x63c66506 => 'messages.getMessages',
|
|
850
|
+
0x63cacf26 => 'account.autoDownloadSettings',
|
|
851
|
+
0x640f82b8 => 'messages.getMaskStickers',
|
|
852
|
+
0x6410a5d2 => 'stickerSetCovered',
|
|
853
|
+
0x64199744 => 'secureFileEmpty',
|
|
854
|
+
0x64407ea7 => 'monoForumDialog',
|
|
855
|
+
0x64600527 => 'inputDialogPeerFolder',
|
|
856
|
+
0x64642db3 => 'channelAdminLogEventActionParticipantSubExtend',
|
|
857
|
+
0x646e1097 => 'account.toggleConnectedBotPaused',
|
|
858
|
+
0x64780b14 => 'messages.getFeaturedStickers',
|
|
859
|
+
0x64bd0306 => 'inputEncryptedFileUploaded',
|
|
860
|
+
0x64e475c2 => 'messageEntityEmail',
|
|
861
|
+
0x64f36dfc => 'channelAdminLogEventActionToggleAntiSpam',
|
|
862
|
+
0x64ff9fd5 => 'messages.chats',
|
|
863
|
+
0x652e4400 => 'account.createTheme',
|
|
864
|
+
0x653db63d => 'chatlists.editExportedInvite',
|
|
865
|
+
0x65427b82 => 'privacyValueAllowAll',
|
|
866
|
+
0x65899777 => 'userStatusLastMonth',
|
|
867
|
+
0x658b7188 => 'messages.getDefaultHistoryTTL',
|
|
868
|
+
0x6592a1a7 => 'chatForbidden',
|
|
869
|
+
0x65a0fa4d => 'pageBlockCollage',
|
|
870
|
+
0x65ad71dc => 'account.getMultiWallPapers',
|
|
871
|
+
0x65f00ce3 => 'inputInvoiceStars',
|
|
872
|
+
0x661d4037 => 'chatReactionsSome',
|
|
873
|
+
0x6628562c => 'account.updateStatus',
|
|
874
|
+
0x6643b654 => 'client_DH_inner_data',
|
|
875
|
+
0x666220e9 => 'secureValueErrorFiles',
|
|
876
|
+
0x66a08c7e => 'account.updateConnectedBot',
|
|
877
|
+
0x66afa166 => 'help.deepLinkInfoEmpty',
|
|
878
|
+
0x66b25953 => 'encryptedChatWaiting',
|
|
879
|
+
0x66b91b70 => 'help.editUserInfo',
|
|
880
|
+
0x66cdafc4 => 'account.updateBusinessGreetingMessage',
|
|
881
|
+
0x66e486fb => 'chatlists.hideChatlistUpdates',
|
|
882
|
+
0x6724abc4 => 'textBold',
|
|
883
|
+
0x67753ac8 => 'groupCallParticipantVideo',
|
|
884
|
+
0x67a3ff2c => 'auth.importBotAuthorization',
|
|
885
|
+
0x682d2594 => 'account.resetWebAuthorizations',
|
|
886
|
+
0x6847d0ab => 'folders.editPeerFolders',
|
|
887
|
+
0x686c85a6 => 'updatePinnedSavedDialogs',
|
|
888
|
+
0x6880b94d => 'messages.peerSettings',
|
|
889
|
+
0x688a30aa => 'updateNewStickerSet',
|
|
890
|
+
0x68cb6283 => 'messageMediaStory',
|
|
891
|
+
0x68f3e4eb => 'channels.toggleAntiSpam',
|
|
892
|
+
0x6917560b => 'messageReplyHeader',
|
|
893
|
+
0x691e9052 => 'updateInlineBotCallbackQuery',
|
|
894
|
+
0x69279795 => 'inputSavedStarGiftUser',
|
|
895
|
+
0x695150d7 => 'messageMediaPhoto',
|
|
896
|
+
0x695c9e7c => 'updateReadChannelDiscussionOutbox',
|
|
897
|
+
0x69d66c45 => 'inputReplyToMonoForum',
|
|
898
|
+
0x69da4557 => 'payments.getStarsTransactions',
|
|
899
|
+
0x69ec56a3 => 'privacyKeyForwards',
|
|
900
|
+
0x69f59d69 => 'messages.toggleBotInAttachMenu',
|
|
901
|
+
0x69f916f8 => 'messageActionSuggestedPostRefund',
|
|
902
|
+
0x6a0d3206 => 'account.unregisterDevice',
|
|
903
|
+
0x6a3f8d65 => 'messages.getAllDrafts',
|
|
904
|
+
0x6a4afc38 => 'channelAdminLogEventActionChangeUsername',
|
|
905
|
+
0x6a4ee832 => 'help.deepLinkInfo',
|
|
906
|
+
0x6a596502 => 'langpack.getLanguage',
|
|
907
|
+
0x6a6e7854 => 'channels.toggleParticipantsHidden',
|
|
908
|
+
0x6a7e7366 => 'updatePeerSettings',
|
|
909
|
+
0x6aa3f6bd => 'messages.getSearchResultsCalendar',
|
|
910
|
+
0x6b134e8e => 'privacyValueAllowChatParticipants',
|
|
911
|
+
0x6b7da746 => 'premium.applyBoost',
|
|
912
|
+
0x6c207376 => 'payments.starsRevenueStats',
|
|
913
|
+
0x6c2d9026 => 'channels.updatePinnedForumTopic',
|
|
914
|
+
0x6c37c15c => 'documentAttributeImageSize',
|
|
915
|
+
0x6c3f19b9 => 'textFixed',
|
|
916
|
+
0x6c47ac9f => 'langPackStringPluralized',
|
|
917
|
+
0x6c50051c => 'messages.importChatInvite',
|
|
918
|
+
0x6c5a5b37 => 'account.saveWallPaper',
|
|
919
|
+
0x6c6274fa => 'messageActionGiftPremium',
|
|
920
|
+
0x6c750de1 => 'messages.sendQuickReplyMessages',
|
|
921
|
+
0x6c8e1e06 => 'birthday',
|
|
922
|
+
0x6c9ce8ed => 'payments.starsStatus',
|
|
923
|
+
0x6cef8ac7 => 'messageEntityBotCommand',
|
|
924
|
+
0x6d5f77ee => 'baseThemeTinted',
|
|
925
|
+
0x6df8014e => 'channelParticipantBanned',
|
|
926
|
+
0x6dfa0622 => 'payments.botCancelStarsSubscription',
|
|
927
|
+
0x6e153f16 => 'messages.stickerSet',
|
|
928
|
+
0x6e2be050 => 'messages.getOnlines',
|
|
929
|
+
0x6e6fe51c => 'updateDialogPinned',
|
|
930
|
+
0x6e941a38 => 'channelAdminLogEventActionChangeHistoryTTL',
|
|
931
|
+
0x6ebdff91 => 'fragment.collectibleInfo',
|
|
932
|
+
0x6ed02538 => 'messageEntityUrl',
|
|
933
|
+
0x6efc5e81 => 'stories.allStories',
|
|
934
|
+
0x6f02f748 => 'help.saveAppLog',
|
|
935
|
+
0x6f09ac31 => 'reportResultAddComment',
|
|
936
|
+
0x6f0c34df => 'notificationSoundNone',
|
|
937
|
+
0x6f635b0d => 'messageEntityHashtag',
|
|
938
|
+
0x6f6f9c96 => 'messages.getSavedDialogsByID',
|
|
939
|
+
0x6f70dde1 => 'account.getBusinessChatLinks',
|
|
940
|
+
0x6f747657 => 'pageCaption',
|
|
941
|
+
0x6f7863f4 => 'updateRecentReactions',
|
|
942
|
+
0x6f8b32aa => 'inputBusinessRecipients',
|
|
943
|
+
0x6fb4ad87 => 'messages.emojiGroupsNotModified',
|
|
944
|
+
0x6fe1a881 => 'botCommandScopeChats',
|
|
945
|
+
0x702a40e0 => 'messages.getRecentLocations',
|
|
946
|
+
0x70322949 => 'messageMediaContact',
|
|
947
|
+
0x7063c3db => 'updatePendingJoinRequests',
|
|
948
|
+
0x7084a7be => 'updateContactsReset',
|
|
949
|
+
0x709b2405 => 'channelAdminLogEventActionEditMessage',
|
|
950
|
+
0x70abc3fd => 'pageBlockTitle',
|
|
951
|
+
0x70b772a8 => 'contacts.topPeers',
|
|
952
|
+
0x70c32edb => 'account.changePhone',
|
|
953
|
+
0x70c4fe03 => 'payments.paymentReceipt',
|
|
954
|
+
0x712e27fd => 'storiesStealthMode',
|
|
955
|
+
0x71701da9 => 'forumTopic',
|
|
956
|
+
0x7184603b => 'emojiStatusCollectible',
|
|
957
|
+
0x719c5c5e => 'chatlists.deleteExportedInvite',
|
|
958
|
+
0x71bd134c => 'dialogFolder',
|
|
959
|
+
0x71e094f3 => 'messages.dialogsSlice',
|
|
960
|
+
0x71f276c4 => 'disallowedGiftsSettings',
|
|
961
|
+
0x7206e458 => 'account.getThemes',
|
|
962
|
+
0x72091c80 => 'inputWallPaperSlug',
|
|
963
|
+
0x725afbbc => 'contacts.resolveUsername',
|
|
964
|
+
0x725b04c3 => 'updatesCombined',
|
|
965
|
+
0x72a3158c => 'auth.codeTypeSms',
|
|
966
|
+
0x72c64955 => 'profileTabMedia',
|
|
967
|
+
0x72f0eaae => 'inputDocumentEmpty',
|
|
968
|
+
0x7307544f => 'requestedPeerChat',
|
|
969
|
+
0x7311ca11 => 'webPageNotModified',
|
|
970
|
+
0x735787a8 => 'help.getCountriesList',
|
|
971
|
+
0x73665bc2 => 'account.getSecureValue',
|
|
972
|
+
0x73746f5c => 'messages.getExportedChatInvite',
|
|
973
|
+
0x73783ffd => 'messages.editChatTitle',
|
|
974
|
+
0x737fc2ec => 'stories.sendStory',
|
|
975
|
+
0x73924be0 => 'messageEntityPre',
|
|
976
|
+
0x73a379eb => 'highScore',
|
|
977
|
+
0x73bb643b => 'messages.getPollResults',
|
|
978
|
+
0x73f1f8dc => 'msg_container',
|
|
979
|
+
0x741cd3e3 => 'auth.codeTypeCall',
|
|
980
|
+
0x744694e0 => 'textPlain',
|
|
981
|
+
0x74535f21 => 'messages.messagesNotModified',
|
|
982
|
+
0x7488ce5b => 'messages.getEmojiGroups',
|
|
983
|
+
0x74ae4240 => 'updates',
|
|
984
|
+
0x74aee3e0 => 'starsTonAmount',
|
|
985
|
+
0x74bbb43d => 'phone.toggleGroupCallSettings',
|
|
986
|
+
0x74bf076b => 'payments.convertStarGift',
|
|
987
|
+
0x74cda504 => 'messagePeerVoteInputOption',
|
|
988
|
+
0x74d8be99 => 'updateSavedRingtones',
|
|
989
|
+
0x74fae13a => 'chatlists.leaveChatlist',
|
|
990
|
+
0x751f08fa => 'inputStorePaymentStarsGiveaway',
|
|
991
|
+
0x751f3146 => 'textWithEntities',
|
|
992
|
+
0x7533a588 => 'botMenuButtonDefault',
|
|
993
|
+
0x75588b3f => 'inputClientProxy',
|
|
994
|
+
0x7573a4e9 => 'users.getSavedMusicByID',
|
|
995
|
+
0x75a3f765 => 'bind_auth_key_inner',
|
|
996
|
+
0x75b3b798 => 'updateStory',
|
|
997
|
+
0x75c78e60 => 'photoSize',
|
|
998
|
+
0x75d2698e => 'keyboardButtonCopy',
|
|
999
|
+
0x761e6af4 => 'messageEntityBankCard',
|
|
1000
|
+
0x762b263d => 'messages.messagesSlice',
|
|
1001
|
+
0x764cf810 => 'botInlineMessageMediaAuto',
|
|
1002
|
+
0x76768bed => 'pageBlockDetails',
|
|
1003
|
+
0x767d61eb => 'help.peerColorProfileSet',
|
|
1004
|
+
0x768e3aad => 'messages.availableReactions',
|
|
1005
|
+
0x76a6d327 => 'messageEntityTextUrl',
|
|
1006
|
+
0x76a86270 => 'account.getBotBusinessConnection',
|
|
1007
|
+
0x76f36233 => 'account.saveAutoDownloadSettings',
|
|
1008
|
+
0x770416af => 'mediaAreaChannelPost',
|
|
1009
|
+
0x77216192 => 'messages.getAttachMenuBot',
|
|
1010
|
+
0x7727a7d5 => 'account.getChannelDefaultEmojiStatuses',
|
|
1011
|
+
0x77608b83 => 'keyboardButtonRow',
|
|
1012
|
+
0x77744d4a => 'dialogFilterSuggested',
|
|
1013
|
+
0x7780bcb4 => 'groupCallDiscarded',
|
|
1014
|
+
0x778b5ab3 => 'bots.updateStarRefProgram',
|
|
1015
|
+
0x778d902f => 'smsjobs.getSmsJob',
|
|
1016
|
+
0x779600f9 => 'inputMediaDocumentExternal',
|
|
1017
|
+
0x77b0e372 => 'updateReadMonoForumInbox',
|
|
1018
|
+
0x77b15d1c => 'stickerSetNoCovered',
|
|
1019
|
+
0x77cdc9f1 => 'inputPrivacyValueAllowPremium',
|
|
1020
|
+
0x77ced9d0 => 'channels.getParticipants',
|
|
1021
|
+
0x77d01c3b => 'contacts.importedContacts',
|
|
1022
|
+
0x780a0310 => 'help.termsOfService',
|
|
1023
|
+
0x78337739 => 'messages.reorderStickerSets',
|
|
1024
|
+
0x78515775 => 'account.updateProfile',
|
|
1025
|
+
0x788464e1 => 'bots.setBotBroadcastDefaultAdminRights',
|
|
1026
|
+
0x788d7fe3 => 'users.getSavedMusic',
|
|
1027
|
+
0x78d4dec1 => 'updateShort',
|
|
1028
|
+
0x7903e3d9 => 'messageReportOption',
|
|
1029
|
+
0x791451ed => 'messages.setEncryptedTyping',
|
|
1030
|
+
0x7998c914 => 'payments.sendStarsForm',
|
|
1031
|
+
0x79f5d419 => 'reactionEmpty',
|
|
1032
|
+
0x7a0d7f42 => 'messageActionGroupCall',
|
|
1033
|
+
0x7a1e11d1 => 'emojiList',
|
|
1034
|
+
0x7a5fa236 => 'payments.getResaleStarGifts',
|
|
1035
|
+
0x7a700873 => 'secureValueErrorFile',
|
|
1036
|
+
0x7a777135 => 'phone.discardGroupCall',
|
|
1037
|
+
0x7a7c17a4 => 'inputMessagesFilterRoundVoice',
|
|
1038
|
+
0x7a7f2a15 => 'account.resendPasswordEmail',
|
|
1039
|
+
0x7a800e0a => 'messageService',
|
|
1040
|
+
0x7a9abda9 => 'emojiGroup',
|
|
1041
|
+
0x7abe77ec => 'ping',
|
|
1042
|
+
0x7adc669d => 'contacts.getContactIDs',
|
|
1043
|
+
0x7adf2420 => 'pollResults',
|
|
1044
|
+
0x7b197dc8 => 'userStatusRecently',
|
|
1045
|
+
0x7b393160 => 'phone.inviteToGroupCall',
|
|
1046
|
+
0x7b560a0b => 'starsTransactionPeerPlayMarket',
|
|
1047
|
+
0x7b74ed71 => 'help.timezonesList',
|
|
1048
|
+
0x7b8def20 => 'stories.exportStoryLink',
|
|
1049
|
+
0x7bf6b15c => 'payments.paymentFormStars',
|
|
1050
|
+
0x7bfbdefc => 'attachMenuPeerTypeBroadcast',
|
|
1051
|
+
0x7c2557c4 => 'stories.toggleAllStoriesHidden',
|
|
1052
|
+
0x7c8fe7b6 => 'pageBlockVideo',
|
|
1053
|
+
0x7cde641d => 'help.appConfigNotModified',
|
|
1054
|
+
0x7cefa15d => 'account.updateColor',
|
|
1055
|
+
0x7d0444bb => 'phone.createConferenceCall',
|
|
1056
|
+
0x7d09c27e => 'secureFile',
|
|
1057
|
+
0x7d6099dd => 'securePlainPhone',
|
|
1058
|
+
0x7d627683 => 'updateSentStoryReaction',
|
|
1059
|
+
0x7d6be90e => 'attachMenuPeerTypeSameBotPM',
|
|
1060
|
+
0x7d748d04 => 'dataJSON',
|
|
1061
|
+
0x7d861a08 => 'msg_resend_req',
|
|
1062
|
+
0x7da07ec9 => 'inputPeerSelf',
|
|
1063
|
+
0x7dbf8673 => 'sponsoredMessage',
|
|
1064
|
+
0x7e58ee9c => 'messages.clearAllDrafts',
|
|
1065
|
+
0x7e6260d7 => 'textConcat',
|
|
1066
|
+
0x7e960193 => 'auth.resetLoginEmail',
|
|
1067
|
+
0x7ed094a1 => 'messages.getOldFeaturedStickers',
|
|
1068
|
+
0x7ed23c57 => 'stories.getStoryViewsList',
|
|
1069
|
+
0x7ed5348a => 'payments.connectStarRefBot',
|
|
1070
|
+
0x7ef0dd87 => 'inputMessagesFilterUrl',
|
|
1071
|
+
0x7f077ad9 => 'contacts.resolvedPeer',
|
|
1072
|
+
0x7f18176a => 'payments.transferStarGift',
|
|
1073
|
+
0x7f1d072f => 'messages.rateTranscribedAudio',
|
|
1074
|
+
0x7f3b18ea => 'inputPeerEmpty',
|
|
1075
|
+
0x7f4b690a => 'messages.readEncryptedHistory',
|
|
1076
|
+
0x7f5defa6 => 'messages.invitedUsers',
|
|
1077
|
+
0x7f648b67 => 'searchResultPosition',
|
|
1078
|
+
0x7f891213 => 'updateWebPage',
|
|
1079
|
+
0x7fcb13a8 => 'messageActionChatEditPhoto',
|
|
1080
|
+
0x7fd736b2 => 'stories.sendReaction',
|
|
1081
|
+
0x7fe7e815 => 'messages.hideChatJoinRequest',
|
|
1082
|
+
0x7fe91c14 => 'stats.messageStats',
|
|
1083
|
+
0x804361ea => 'pageBlockAudio',
|
|
1084
|
+
0x809ad9a6 => 'botInlineMessageMediaWebPage',
|
|
1085
|
+
0x809db6df => 'msg_new_detailed_info',
|
|
1086
|
+
0x80ac53c3 => 'starGift',
|
|
1087
|
+
0x80c99768 => 'inputMessagesFilterPhoneCalls',
|
|
1088
|
+
0x80d26cc7 => 'emojiGroupGreeting',
|
|
1089
|
+
0x80e11a7f => 'messageActionPhoneCall',
|
|
1090
|
+
0x80eb48af => 'groupCallStreamChannel',
|
|
1091
|
+
0x80ed747d => 'payments.assignAppStoreTransaction',
|
|
1092
|
+
0x8107455c => 'messages.toggleSuggestedPostApproval',
|
|
1093
|
+
0x811f854f => 'account.sentEmailCode',
|
|
1094
|
+
0x81602d47 => 'autoSaveException',
|
|
1095
|
+
0x81b6b00a => 'messages.chatInviteImporters',
|
|
1096
|
+
0x82006484 => 'auth.sentCodeTypeMissedCall',
|
|
1097
|
+
0x8216fba3 => 'updateTheme',
|
|
1098
|
+
0x8235057e => 'messages.clickSponsoredMessage',
|
|
1099
|
+
0x82574ae5 => 'account.sendChangePhoneCode',
|
|
1100
|
+
0x826f8b60 => 'messageEntityItalic',
|
|
1101
|
+
0x829d99da => 'secureRequiredType',
|
|
1102
|
+
0x82c9e290 => 'messages.foundStickers',
|
|
1103
|
+
0x82d1f706 => 'userProfilePhoto',
|
|
1104
|
+
0x82f1e39f => 'contacts.getSaved',
|
|
1105
|
+
0x830b9ae4 => 'notificationSoundLocal',
|
|
1106
|
+
0x8317c0c3 => 'updateBotWebhookJSON',
|
|
1107
|
+
0x831a83a2 => 'account.uploadRingtone',
|
|
1108
|
+
0x832175e0 => 'inputBusinessAwayMessage',
|
|
1109
|
+
0x83268483 => 'inputChatThemeEmpty',
|
|
1110
|
+
0x833c0fac => 'inlineQueryPeerTypePM',
|
|
1111
|
+
0x8341ecc0 => 'channels.getLeftChannels',
|
|
1112
|
+
0x83487af0 => 'updateChatUserTyping',
|
|
1113
|
+
0x83557dba => 'messages.editInlineBotMessage',
|
|
1114
|
+
0x83d60fc2 => 'messageReplies',
|
|
1115
|
+
0x840649cf => 'inputPrivacyValueAllowChatParticipants',
|
|
1116
|
+
0x846f9e42 => 'channels.sponsoredMessageReportResultChooseOption',
|
|
1117
|
+
0x8472478e => 'chatlists.exportChatlistInvite',
|
|
1118
|
+
0x84a02a0d => 'messages.savedGifs',
|
|
1119
|
+
0x84aa3a9c => 'payments.starGiftWithdrawalUrl',
|
|
1120
|
+
0x84b88578 => 'messageActionPaidMessagesPrice',
|
|
1121
|
+
0x84be5b93 => 'account.updateNotifySettings',
|
|
1122
|
+
0x84c1fd4e => 'channels.deleteMessages',
|
|
1123
|
+
0x84d19185 => 'messages.affectedMessages',
|
|
1124
|
+
0x84f80814 => 'messages.getExtendedMedia',
|
|
1125
|
+
0x8514bdda => 'contacts.toggleTopPeers',
|
|
1126
|
+
0x8525606f => 'bots.editPreviewMedia',
|
|
1127
|
+
0x8535fbd9 => 'stories.reorderAlbums',
|
|
1128
|
+
0x857ebdb8 => 'messages.getPreparedInlineMessage',
|
|
1129
|
+
0x85dd99d1 => 'replyKeyboardMarkup',
|
|
1130
|
+
0x85e42301 => 'phoneCallDiscardReasonMissed',
|
|
1131
|
+
0x85fea03f => 'stickers.suggestedShortName',
|
|
1132
|
+
0x861cc8a0 => 'inputStickerSetShortName',
|
|
1133
|
+
0x86471d92 => 'securePasswordKdfAlgoSHA512',
|
|
1134
|
+
0x864b2581 => 'messages.setChatAvailableReactions',
|
|
1135
|
+
0x8653febe => 'stickers.addStickerToSet',
|
|
1136
|
+
0x86872538 => 'inputMessagePinned',
|
|
1137
|
+
0x868a2aa5 => 'secureValueErrorReverseSide',
|
|
1138
|
+
0x869d758f => 'secureValueError',
|
|
1139
|
+
0x869fbe10 => 'inputReplyToMessage',
|
|
1140
|
+
0x86b40b08 => 'replyKeyboardForceReply',
|
|
1141
|
+
0x86f8613c => 'premium.boostsList',
|
|
1142
|
+
0x86fccf85 => 'updateMoveStickerSetToTop',
|
|
1143
|
+
0x871fb939 => 'updateGeoLiveViewed',
|
|
1144
|
+
0x8763d3e1 => 'chatParticipantsForbidden',
|
|
1145
|
+
0x87704394 => 'stickers.deleteStickerSet',
|
|
1146
|
+
0x879537f1 => 'contacts.resetSaved',
|
|
1147
|
+
0x87cf7f2f => 'photos.deletePhotos',
|
|
1148
|
+
0x87d0759e => 'help.countriesList',
|
|
1149
|
+
0x87e2f155 => 'messageActionGiveawayResults',
|
|
1150
|
+
0x87e5dfe4 => 'inputChatThemeUniqueGift',
|
|
1151
|
+
0x881fb94b => 'messages.emojiGroups',
|
|
1152
|
+
0x8851e68e => 'account.createBusinessChatLink',
|
|
1153
|
+
0x889b59ef => 'messages.savedReactionTagsNotModified',
|
|
1154
|
+
0x88bf9319 => 'inputBotInlineResult',
|
|
1155
|
+
0x88d37c56 => 'messages.recentStickers',
|
|
1156
|
+
0x88f27fbc => 'sendMessageRecordRoundAction',
|
|
1157
|
+
0x88f8f21b => 'paymentFormMethod',
|
|
1158
|
+
0x890c3d89 => 'inputBotInlineMessageID',
|
|
1159
|
+
0x89137c0d => 'secureValueTypeBankStatement',
|
|
1160
|
+
0x8935fc73 => 'reactionCustomEmoji',
|
|
1161
|
+
0x89419521 => 'chatlists.getChatlistUpdates',
|
|
1162
|
+
0x8951abef => 'updateNewAuthorization',
|
|
1163
|
+
0x8953ad37 => 'inputChatPhoto',
|
|
1164
|
+
0x8999602d => 'messages.clearRecentStickers',
|
|
1165
|
+
0x899fe31d => 'account.saveSecureValue',
|
|
1166
|
+
0x89fdd778 => 'inputMediaStory',
|
|
1167
|
+
0x8a2932f3 => 'payments.starGiftCollections',
|
|
1168
|
+
0x8a480e27 => 'postInteractionCountersStory',
|
|
1169
|
+
0x8a53b014 => 'messageMediaToDo',
|
|
1170
|
+
0x8a86659c => 'botInlineMessageMediaVenue',
|
|
1171
|
+
0x8ac32801 => 'inputPaymentCredentialsGooglePay',
|
|
1172
|
+
0x8ae5c97a => 'updateBotBusinessConnect',
|
|
1173
|
+
0x8aeabec3 => 'secureData',
|
|
1174
|
+
0x8af09dd2 => 'messages.foundStickerSets',
|
|
1175
|
+
0x8af94344 => 'contacts.resolvePhone',
|
|
1176
|
+
0x8b716587 => 'messages.reorderPinnedSavedDialogs',
|
|
1177
|
+
0x8b725fce => 'updatePaidReactionPrivacy',
|
|
1178
|
+
0x8b73e763 => 'privacyValueDisallowAll',
|
|
1179
|
+
0x8b883488 => 'secureValueTypeRentalAgreement',
|
|
1180
|
+
0x8b89dfbd => 'bots.setCustomVerification',
|
|
1181
|
+
0x8b9b4dae => 'account.getContentSettings',
|
|
1182
|
+
0x8ba403e4 => 'requestedPeerChannel',
|
|
1183
|
+
0x8bba90e6 => 'messages.getMessagesReactions',
|
|
1184
|
+
0x8c05f1c9 => 'help.supportName',
|
|
1185
|
+
0x8c10603f => 'inputGroupCallInviteMessage',
|
|
1186
|
+
0x8c3410af => 'account.editBusinessChatLink',
|
|
1187
|
+
0x8c4bfe5d => 'messages.getOutboxReadDate',
|
|
1188
|
+
0x8c5006f8 => 'messages.markDialogUnread',
|
|
1189
|
+
0x8c5adfd9 => 'chatInviteImporter',
|
|
1190
|
+
0x8c718e87 => 'messages.messages',
|
|
1191
|
+
0x8c79b63c => 'messagePeerReaction',
|
|
1192
|
+
0x8c7f65e2 => 'botInlineMessageText',
|
|
1193
|
+
0x8c88c923 => 'updateChannelUserTyping',
|
|
1194
|
+
0x8c92b098 => 'businessWorkHours',
|
|
1195
|
+
0x8c9a88ac => 'messages.webPagePreview',
|
|
1196
|
+
0x8ca60525 => 'phone.deleteConferenceCallParticipants',
|
|
1197
|
+
0x8caa9a96 => 'updateBotPrecheckoutQuery',
|
|
1198
|
+
0x8cc0d131 => 'msgs_all_info',
|
|
1199
|
+
0x8d3456d0 => 'stories.deleteAlbum',
|
|
1200
|
+
0x8d52a951 => 'auth.signIn',
|
|
1201
|
+
0x8d595cd6 => 'storyViews',
|
|
1202
|
+
0x8d9692a3 => 'messages.getWebPage',
|
|
1203
|
+
0x8db33c4b => 'reportResultReported',
|
|
1204
|
+
0x8dca6aa5 => 'photos.photos',
|
|
1205
|
+
0x8e1a1775 => 'nearestDc',
|
|
1206
|
+
0x8e39261e => 'auth.requestFirebaseSms',
|
|
1207
|
+
0x8e3ca7ee => 'secureValueTypeEmail',
|
|
1208
|
+
0x8e48a188 => 'auth.dropTempAuthKeys',
|
|
1209
|
+
0x8e51b4c1 => 'payments.checkGiftCode',
|
|
1210
|
+
0x8e5e9873 => 'updateDcOptions',
|
|
1211
|
+
0x8ea464b6 => 'statsGraph',
|
|
1212
|
+
0x8ecf0511 => 'messages.botPreparedInlineMessage',
|
|
1213
|
+
0x8ef3eab0 => 'account.initTakeoutSession',
|
|
1214
|
+
0x8ef8ecc0 => 'messages.setGameScore',
|
|
1215
|
+
0x8f079643 => 'channelAdminLogEventActionStopPoll',
|
|
1216
|
+
0x8f34b2f5 => 'botBusinessConnection',
|
|
1217
|
+
0x8f38cd1f => 'channels.editCreator',
|
|
1218
|
+
0x8f8c0e4e => 'urlAuthResultAccepted',
|
|
1219
|
+
0x8fb53057 => 'phone.joinGroupCall',
|
|
1220
|
+
0x8fd4c4d8 => 'document',
|
|
1221
|
+
0x8fde504f => 'inputThemeSettings',
|
|
1222
|
+
0x8fdf1920 => 'account.confirmPasswordEmail',
|
|
1223
|
+
0x8ffa9a1f => 'pageBlockSubtitle',
|
|
1224
|
+
0x8ffacae1 => 'messages.setChatWallPaper',
|
|
1225
|
+
0x90110467 => 'inputPrivacyValueDisallowUsers',
|
|
1226
|
+
0x9015e101 => 'updateShortSentMessage',
|
|
1227
|
+
0x9021ab67 => 'stickers.createStickerSet',
|
|
1228
|
+
0x904dd49c => 'updateBotChatBoost',
|
|
1229
|
+
0x9083670b => 'storyViewPublicForward',
|
|
1230
|
+
0x908c0407 => 'inputBotAppShortName',
|
|
1231
|
+
0x909c3f94 => 'paymentRequestedInfo',
|
|
1232
|
+
0x90a6ca84 => 'messageEmpty',
|
|
1233
|
+
0x90c467d1 => 'account.emojiStatuses',
|
|
1234
|
+
0x90c894b5 => 'users.setSecureValueErrors',
|
|
1235
|
+
0x91006707 => 'channels.createChannel',
|
|
1236
|
+
0x9156982a => 'upload.getFileHashes',
|
|
1237
|
+
0x915860ae => 'account.getDefaultGroupPhotoEmojis',
|
|
1238
|
+
0x91b2d060 => 'messages.sendBotRequestedPeer',
|
|
1239
|
+
0x91cd32a8 => 'photos.getUserPhotos',
|
|
1240
|
+
0x91dc3f31 => 'upload.getCdnFileHashes',
|
|
1241
|
+
0x922e55a9 => 'emailVerificationCode',
|
|
1242
|
+
0x922e6e10 => 'updateReadChannelInbox',
|
|
1243
|
+
0x925ec9ea => 'bots.setBotGroupDefaultAdminRights',
|
|
1244
|
+
0x9299359f => 'http_wait',
|
|
1245
|
+
0x92a72876 => 'messageActionGameScore',
|
|
1246
|
+
0x92b4494c => 'messages.searchEmojiStickerSets',
|
|
1247
|
+
0x92ceddd4 => 'messages.createChat',
|
|
1248
|
+
0x92d33a0e => 'urlAuthResultRequest',
|
|
1249
|
+
0x93037e20 => 'stats.publicForwards',
|
|
1250
|
+
0x9308ce1b => 'account.resetPassword',
|
|
1251
|
+
0x9325705a => 'storyAlbum',
|
|
1252
|
+
0x9342ca07 => 'messages.getBotCallbackAnswer',
|
|
1253
|
+
0x9375341e => 'updateSavedGifs',
|
|
1254
|
+
0x93b31848 => 'messageActionRequestedPeerSentMe',
|
|
1255
|
+
0x93b9fbb5 => 'keyboardButtonSwitchInline',
|
|
1256
|
+
0x93bd878d => 'chatlists.chatlistUpdates',
|
|
1257
|
+
0x93bf667f => 'attachMenuBotsBot',
|
|
1258
|
+
0x93c3e27e => 'availableEffect',
|
|
1259
|
+
0x93cc1f32 => 'help.countriesListNotModified',
|
|
1260
|
+
0x947a12df => 'payments.resaleStarGifts',
|
|
1261
|
+
0x9493ff32 => 'messages.sentEncryptedFile',
|
|
1262
|
+
0x94a495c3 => 'messages.getQuickReplyMessages',
|
|
1263
|
+
0x94bd38ed => 'messageActionPinMessage',
|
|
1264
|
+
0x94c65c76 => 'contacts.setBlocked',
|
|
1265
|
+
0x94ce852a => 'starsGiveawayOption',
|
|
1266
|
+
0x94d42ee7 => 'channelMessagesFilterEmpty',
|
|
1267
|
+
0x957b50fb => 'account.password',
|
|
1268
|
+
0x95ac5ce4 => 'auth.importLoginToken',
|
|
1269
|
+
0x95d2ac92 => 'messageActionChannelCreate',
|
|
1270
|
+
0x95ddcf69 => 'messageActionSuggestedPostSuccess',
|
|
1271
|
+
0x95e3fbef => 'messageActionChatDeletePhoto',
|
|
1272
|
+
0x95f2bfe4 => 'starsTransactionPeerUnsupported',
|
|
1273
|
+
0x95f389b1 => 'payments.savedStarGifts',
|
|
1274
|
+
0x95fcd1d6 => 'botApp',
|
|
1275
|
+
0x9609a51c => 'inputMessagesFilterPhotos',
|
|
1276
|
+
0x96151fed => 'privacyKeyProfilePhoto',
|
|
1277
|
+
0x96537bd7 => 'dialogFilterChatlist',
|
|
1278
|
+
0x9664f57f => 'inputMediaEmpty',
|
|
1279
|
+
0x967a462e => 'inputWallPaperNoFile',
|
|
1280
|
+
0x96929a85 => 'inputBotInlineMessageMediaGeo',
|
|
1281
|
+
0x96d074fd => 'emailVerificationApple',
|
|
1282
|
+
0x96e6cd81 => 'channels.editBanned',
|
|
1283
|
+
0x96eaa5eb => 'draftMessage',
|
|
1284
|
+
0x970708cc => 'help.timezonesListNotModified',
|
|
1285
|
+
0x9709b1c2 => 'bots.reorderUsernames',
|
|
1286
|
+
0x971fa843 => 'inputMediaGeoLive',
|
|
1287
|
+
0x973478b6 => 'contacts.getTopPeers',
|
|
1288
|
+
0x9738bb15 => 'channels.toggleViewForumAsMessages',
|
|
1289
|
+
0x978928ca => 'messages.forwardMessages',
|
|
1290
|
+
0x97d64341 => 'updateGroupCall',
|
|
1291
|
+
0x97e8bebe => 'notificationSoundDefault',
|
|
1292
|
+
0x9801d2f7 => 'documentAttributeHasStickers',
|
|
1293
|
+
0x9815cec8 => 'message',
|
|
1294
|
+
0x981b91dd => 'payments.getStarGiftCollections',
|
|
1295
|
+
0x9852f9c6 => 'documentAttributeAudio',
|
|
1296
|
+
0x985d3abb => 'updateChannelParticipant',
|
|
1297
|
+
0x98657f0d => 'page',
|
|
1298
|
+
0x9880f658 => 'inputCheckPasswordEmpty',
|
|
1299
|
+
0x98986c0d => 'inputInvoicePremiumGiftCode',
|
|
1300
|
+
0x9898ad73 => 'smsjobs.leave',
|
|
1301
|
+
0x98d5ea1d => 'payments.connectedStarRefBots',
|
|
1302
|
+
0x98dd8936 => 'pageListOrderedItemBlocks',
|
|
1303
|
+
0x98e037bb => 'account.sendVerifyEmailCode',
|
|
1304
|
+
0x98e0d697 => 'messageActionGeoProximityReached',
|
|
1305
|
+
0x98f6ac75 => 'help.promoDataEmpty',
|
|
1306
|
+
0x99622c0c => 'peerNotifySettings',
|
|
1307
|
+
0x997275b5 => 'boolTrue',
|
|
1308
|
+
0x998ab009 => 'messages.getSavedHistory',
|
|
1309
|
+
0x998d6636 => 'account.savedMusicIds',
|
|
1310
|
+
0x99a48f23 => 'secureValueTypeInternalPassport',
|
|
1311
|
+
0x99c1d49d => 'jsonObject',
|
|
1312
|
+
0x99e3806a => 'secureValueTypePassportRegistration',
|
|
1313
|
+
0x9a0b48b8 => 'inputInvoiceStarGiftPrepaidUpgrade',
|
|
1314
|
+
0x9a23af21 => 'account.resolvedBusinessChatLinks',
|
|
1315
|
+
0x9a35e999 => 'peerStories',
|
|
1316
|
+
0x9a3bfd99 => 'messages.highScores',
|
|
1317
|
+
0x9a3d8c6d => 'account.themes',
|
|
1318
|
+
0x9a422c20 => 'updateRecentStickers',
|
|
1319
|
+
0x9a5c33e5 => 'account.passwordSettings',
|
|
1320
|
+
0x9a75a1ef => 'stories.togglePinned',
|
|
1321
|
+
0x9a868f80 => 'contacts.getBlocked',
|
|
1322
|
+
0x9a8ae1e1 => 'pageBlockOrderedList',
|
|
1323
|
+
0x9a9d77e0 => 'prepaidStarsGiveaway',
|
|
1324
|
+
0x9ab0feaf => 'channels.channelParticipants',
|
|
1325
|
+
0x9ae228e2 => 'premium.myBoosts',
|
|
1326
|
+
0x9ae91519 => 'channels.restrictSponsoredMessages',
|
|
1327
|
+
0x9b2754a8 => 'upload.reuploadCdnFile',
|
|
1328
|
+
0x9b5ae7f9 => 'stories.getAllReadPeerStories',
|
|
1329
|
+
0x9b69e34b => 'messageEntityPhone',
|
|
1330
|
+
0x9b89f93a => 'inputReportReasonCopyright',
|
|
1331
|
+
0x9b9240a6 => 'updateBotWebhookJSONQuery',
|
|
1332
|
+
0x9baa9647 => 'channels.deleteHistory',
|
|
1333
|
+
0x9bb2636d => 'inputStorePaymentAuthCode',
|
|
1334
|
+
0x9bed434d => 'inputWebDocument',
|
|
1335
|
+
0x9bf8bb95 => 'textStrike',
|
|
1336
|
+
0x9c4e7e8b => 'messageEntityUnderline',
|
|
1337
|
+
0x9c60eb28 => 'bots.getBotMenuButton',
|
|
1338
|
+
0x9c7f2f10 => 'messages.getSearchResultsPositions',
|
|
1339
|
+
0x9c974fdf => 'updateReadHistoryInbox',
|
|
1340
|
+
0x9c9abcb1 => 'payments.getStarGiftUpgradePreview',
|
|
1341
|
+
0x9cc123c7 => 'phoneConnection',
|
|
1342
|
+
0x9cd4eaf9 => 'account.getPasswordSettings',
|
|
1343
|
+
0x9cd81144 => 'messages.chatsSlice',
|
|
1344
|
+
0x9cdf08cd => 'help.getSupport',
|
|
1345
|
+
0x9d04af9b => 'statsGroupTopPoster',
|
|
1346
|
+
0x9d2a81e3 => 'secureValueTypePersonalDetails',
|
|
1347
|
+
0x9d6b13b0 => 'starGiftCollection',
|
|
1348
|
+
0x9d84f3db => 'inputStickerSetThumb',
|
|
1349
|
+
0x9da9403b => 'messages.getRecentStickers',
|
|
1350
|
+
0x9ddb347c => 'updateBotNewBusinessMessage',
|
|
1351
|
+
0x9de7a269 => 'inputStickerSetID',
|
|
1352
|
+
0x9dfeefb4 => 'messages.clearRecentReactions',
|
|
1353
|
+
0x9e6b131a => 'account.updateBusinessLocation',
|
|
1354
|
+
0x9e727aad => 'phone.groupCall',
|
|
1355
|
+
0x9e8fa6d3 => 'messages.favedStickersNotModified',
|
|
1356
|
+
0x9eb51445 => 'messages.setDefaultHistoryTTL',
|
|
1357
|
+
0x9ec20908 => 'new_session_created',
|
|
1358
|
+
0x9ec44f93 => 'messages.readReactions',
|
|
1359
|
+
0x9ec7863d => 'inputReportReasonPersonalDetails',
|
|
1360
|
+
0x9eddf188 => 'inputMessagesFilterDocument',
|
|
1361
|
+
0x9f071957 => 'messages.availableReactionsNotModified',
|
|
1362
|
+
0x9f07c728 => 'account.getContactSignUpNotification',
|
|
1363
|
+
0x9f120418 => 'chatBannedRights',
|
|
1364
|
+
0x9f2221c9 => 'inputWebFileGeoPointLocation',
|
|
1365
|
+
0x9f27d26e => 'profileTabMusic',
|
|
1366
|
+
0x9f812b08 => 'updateMonoForumNoPaidException',
|
|
1367
|
+
0x9f84f49e => 'messageMediaUnsupported',
|
|
1368
|
+
0x9fab0d1a => 'auth.resetAuthorizations',
|
|
1369
|
+
0x9fbab604 => 'messageActionHistoryClear',
|
|
1370
|
+
0x9fbbf1f7 => 'phoneCallDiscardReasonMigrateConferenceCall',
|
|
1371
|
+
0x9fc00e65 => 'inputMessagesFilterVideo',
|
|
1372
|
+
0x9fc55fde => 'inputMediaTodo',
|
|
1373
|
+
0x9fd40bd8 => 'notifyPeer',
|
|
1374
|
+
0xa0058751 => 'payments.paymentForm',
|
|
1375
|
+
0xa00e67d6 => 'theme',
|
|
1376
|
+
0xa02a982e => 'updateBotDeleteBusinessMessage',
|
|
1377
|
+
0xa03e5b85 => 'replyKeyboardHide',
|
|
1378
|
+
0xa0624cf7 => 'businessBotRights',
|
|
1379
|
+
0xa0933f5b => 'chatParticipantAdmin',
|
|
1380
|
+
0xa098d6af => 'help.passportConfig',
|
|
1381
|
+
0xa0ab6cc6 => 'channels.getParticipant',
|
|
1382
|
+
0xa0ba4f17 => 'payments.starGiftCollectionsNotModified',
|
|
1383
|
+
0xa0c0505c => 'keyboardButtonSimpleWebView',
|
|
1384
|
+
0xa0d0744b => 'secureValueTypeIdentityCard',
|
|
1385
|
+
0xa0f4cb4f => 'messages.getDialogs',
|
|
1386
|
+
0xa1144770 => 'secureValueErrorTranslationFile',
|
|
1387
|
+
0xa1405817 => 'messages.sendScreenshotNotification',
|
|
1388
|
+
0xa187d66f => 'sendMessageRecordVideoAction',
|
|
1389
|
+
0xa1974d72 => 'payments.getUniqueStarGift',
|
|
1390
|
+
0xa1b70815 => 'bots.getBotRecommendations',
|
|
1391
|
+
0xa20db0e5 => 'updateDeleteMessages',
|
|
1392
|
+
0xa2185cab => 'messages.deleteChatUser',
|
|
1393
|
+
0xa229dd06 => 'updateConfig',
|
|
1394
|
+
0xa22cbd96 => 'chatInviteExported',
|
|
1395
|
+
0xa24de717 => 'messages.checkedHistoryImportPeer',
|
|
1396
|
+
0xa26a7fa5 => 'account.updateBusinessAwayMessage',
|
|
1397
|
+
0xa2875319 => 'messages.migrateChat',
|
|
1398
|
+
0xa29cd42c => 'messages.getSuggestedDialogFilters',
|
|
1399
|
+
0xa2a5371e => 'peerChannel',
|
|
1400
|
+
0xa2a5594d => 'bots.getPreviewMedias',
|
|
1401
|
+
0xa2b5a3f6 => 'messages.getExportedChatInvites',
|
|
1402
|
+
0xa2c0cf74 => 'account.deleteAccount',
|
|
1403
|
+
0xa2c0f695 => 'profileTabGifs',
|
|
1404
|
+
0xa2e214a4 => 'inputCollectiblePhone',
|
|
1405
|
+
0xa2fa4880 => 'keyboardButton',
|
|
1406
|
+
0xa319e569 => 'payments.getSavedStarGifts',
|
|
1407
|
+
0xa36396e5 => 'stories.createAlbum',
|
|
1408
|
+
0xa384b779 => 'receivedNotifyMessage',
|
|
1409
|
+
0xa388a368 => 'payments.starGiftsNotModified',
|
|
1410
|
+
0xa3b54985 => 'channelParticipantsKicked',
|
|
1411
|
+
0xa3d1cb80 => 'reactionCount',
|
|
1412
|
+
0xa416ac81 => 'auth.sentCodeTypeSmsWord',
|
|
1413
|
+
0xa437c3ed => 'wallPaper',
|
|
1414
|
+
0xa43ad8b7 => 'rpc_answer_dropped',
|
|
1415
|
+
0xa43f30cc => 'messageActionChatDeleteUser',
|
|
1416
|
+
0xa44f3ef6 => 'pageBlockMap',
|
|
1417
|
+
0xa455de90 => 'messages.exportChatInvite',
|
|
1418
|
+
0xa477288f => 'updateGroupCallChainBlocks',
|
|
1419
|
+
0xa486b761 => 'privacyKeyAbout',
|
|
1420
|
+
0xa4a79376 => 'updateReadMonoForumOutbox',
|
|
1421
|
+
0xa4bcc6fe => 'updates.channelDifferenceTooLong',
|
|
1422
|
+
0xa4dd4c08 => 'inputPrivacyKeyForwards',
|
|
1423
|
+
0xa5273abf => 'phone.editGroupCallParticipant',
|
|
1424
|
+
0xa5491dea => 'auth.sentCodeTypeSetUpEmailRequired',
|
|
1425
|
+
0xa556dac8 => 'stories.readStories',
|
|
1426
|
+
0xa56a8b60 => 'stories.getChatsToSend',
|
|
1427
|
+
0xa56c2a3e => 'updates.state',
|
|
1428
|
+
0xa575739d => 'emojiURL',
|
|
1429
|
+
0xa57a7dad => 'auth.importAuthorization',
|
|
1430
|
+
0xa584b019 => 'updateStarsRevenueStatus',
|
|
1431
|
+
0xa5866b41 => 'messages.editChatDefaultBannedRights',
|
|
1432
|
+
0xa59b102f => 'account.updatePasswordSettings',
|
|
1433
|
+
0xa5a356f9 => 'account.sendVerifyPhoneCode',
|
|
1434
|
+
0xa5d72105 => 'updateDialogFilterOrder',
|
|
1435
|
+
0xa60ab9ce => 'account.getDefaultBackgroundEmojis',
|
|
1436
|
+
0xa614d034 => 'account.updateBusinessIntro',
|
|
1437
|
+
0xa6341782 => 'messages.discussionMessage',
|
|
1438
|
+
0xa6437ef6 => 'stats.getStoryPublicForwards',
|
|
1439
|
+
0xa6751e66 => 'inputStorePaymentPremiumSubscription',
|
|
1440
|
+
0xa676a322 => 'inputMessageID',
|
|
1441
|
+
0xa677244f => 'auth.sendCode',
|
|
1442
|
+
0xa69dae02 => 'dh_gen_fail',
|
|
1443
|
+
0xa6b1e39a => 'chatlists.joinChatlistInvite',
|
|
1444
|
+
0xa6edbffd => 'inputBotInlineMessageMediaContact',
|
|
1445
|
+
0xa6f8f452 => 'webAuthorization',
|
|
1446
|
+
0xa731e257 => 'messages.toggleDialogPin',
|
|
1447
|
+
0xa74ece2d => 'smsjobs.join',
|
|
1448
|
+
0xa76a5392 => 'stickers.setStickerSetThumb',
|
|
1449
|
+
0xa7848924 => 'updateUserName',
|
|
1450
|
+
0xa7eff811 => 'bad_msg_notification',
|
|
1451
|
+
0xa8008cd8 => 'encryptedFile',
|
|
1452
|
+
0xa80f51e4 => 'messageActionGiveawayLaunch',
|
|
1453
|
+
0xa8406ca9 => 'topPeerCategoryForwardUsers',
|
|
1454
|
+
0xa850a693 => 'channels.reportAntiSpamFalsePositive',
|
|
1455
|
+
0xa85bd1c2 => 'messages.editChatAdmin',
|
|
1456
|
+
0xa8718dc5 => 'pageBlockEmbed',
|
|
1457
|
+
0xa8763ab5 => 'inputMediaDocument',
|
|
1458
|
+
0xa87b0a1c => 'inputPeerUserFromMessage',
|
|
1459
|
+
0xa8852491 => 'messageMediaPaidMedia',
|
|
1460
|
+
0xa8a3c699 => 'messageActionGiftTon',
|
|
1461
|
+
0xa8d864a7 => 'inputBotInlineResultPhoto',
|
|
1462
|
+
0xa8fb1981 => 'updates.differenceSlice',
|
|
1463
|
+
0xa920bd7a => 'inputBotAppID',
|
|
1464
|
+
0xa927fec5 => 'messages.inactiveChats',
|
|
1465
|
+
0xa929597a => 'account.getAuthorizationForm',
|
|
1466
|
+
0xa99fca4f => 'upload.cdnFile',
|
|
1467
|
+
0xa9d6db1f => 'urlAuthResultDefault',
|
|
1468
|
+
0xa9f55f95 => 'p_q_inner_data_dc',
|
|
1469
|
+
0xaa073beb => 'messageMediaGiveaway',
|
|
1470
|
+
0xaa0cd9e4 => 'sendMessageUploadDocumentAction',
|
|
1471
|
+
0xaa2769ed => 'bots.sendCustomRequest',
|
|
1472
|
+
0xaa472651 => 'dialogFilter',
|
|
1473
|
+
0xaa5f789c => 'stories.storyReactionsList',
|
|
1474
|
+
0xaa963b05 => 'storage.fileUnknown',
|
|
1475
|
+
0xaac7b717 => 'auth.signUp',
|
|
1476
|
+
0xab03c6d9 => 'auth.sentCodeTypeFlashCall',
|
|
1477
|
+
0xab0f6b1e => 'updatePhoneCall',
|
|
1478
|
+
0xab339c00 => 'profileTabFiles',
|
|
1479
|
+
0xab42441a => 'stats.getBroadcastStats',
|
|
1480
|
+
0xab661b5b => 'topPeerCategoryBotsPM',
|
|
1481
|
+
0xab7ec0a0 => 'encryptedChatEmpty',
|
|
1482
|
+
0xabcfa9fd => 'help.getPeerProfileColors',
|
|
1483
|
+
0xac1f1fcd => 'messageActionPaidMessagesRefunded',
|
|
1484
|
+
0xac21d3ce => 'updateBotMessageReaction',
|
|
1485
|
+
0xac55d9c1 => 'messages.sendMedia',
|
|
1486
|
+
0xac5c1af7 => 'businessLocation',
|
|
1487
|
+
0xac806d61 => 'stories.getAlbumStories',
|
|
1488
|
+
0xac81bbde => 'messages.toggleSavedDialogPin',
|
|
1489
|
+
0xaca1657b => 'updateMessagePoll',
|
|
1490
|
+
0xaca9fd2e => 'invokeWithTakeout',
|
|
1491
|
+
0xacfa1a7e => 'inputMessageCallbackQuery',
|
|
1492
|
+
0xad01d61d => 'authorization',
|
|
1493
|
+
0xad253d78 => 'codeSettings',
|
|
1494
|
+
0xad2e1cd8 => 'account.authorizationForm',
|
|
1495
|
+
0xad399cee => 'channels.setBoostsToUnblockRestrictions',
|
|
1496
|
+
0xad5648e8 => 'payments.deleteStarGiftCollection',
|
|
1497
|
+
0xad628cc8 => 'messageExtendedMediaPreview',
|
|
1498
|
+
0xad798849 => 'channels.sponsoredMessageReportResultReported',
|
|
1499
|
+
0xad8c9a23 => 'channels.getMessages',
|
|
1500
|
+
0xadbb0f94 => 'invokeWithReCaptcha',
|
|
1501
|
+
0xadcbbcda => 'account.getAutoSaveSettings',
|
|
1502
|
+
0xadec6ebe => 'help.peerColorOption',
|
|
1503
|
+
0xadf44ee3 => 'inputReportReasonChildAbuse',
|
|
1504
|
+
0xae168909 => 'channelAdminLogEventActionDeleteTopic',
|
|
1505
|
+
0xae1e508d => 'storage.filePdf',
|
|
1506
|
+
0xae3f101d => 'updatePeerWallpaper',
|
|
1507
|
+
0xae500895 => 'future_salts',
|
|
1508
|
+
0xae59db5f => 'stories.deleteStories',
|
|
1509
|
+
0xaeaf9e74 => 'updateSavedDialogPinned',
|
|
1510
|
+
0xaeb00b34 => 'messages.getFullChat',
|
|
1511
|
+
0xaed0cbd9 => 'payments.exportedInvoice',
|
|
1512
|
+
0xaed6dbb2 => 'maskCoords',
|
|
1513
|
+
0xaed6e4f5 => 'payments.upgradeStarGift',
|
|
1514
|
+
0xaee69d68 => 'inputPrivacyKeyVoiceMessages',
|
|
1515
|
+
0xafb6144a => 'channelAdminLogEventActionParticipantJoinByRequest',
|
|
1516
|
+
0xafd93fbb => 'keyboardButtonBuy',
|
|
1517
|
+
0xafe5623f => 'phone.joinAsPeers',
|
|
1518
|
+
0xb00c47a2 => 'messageActionPrizeStars',
|
|
1519
|
+
0xb05ac6b1 => 'sendMessageChooseStickerAction',
|
|
1520
|
+
0xb06fdbdf => 'messages.reactionsNotModified',
|
|
1521
|
+
0xb0711d83 => 'bots.getAdminedBots',
|
|
1522
|
+
0xb0831eb9 => 'channels.getForumTopicsByID',
|
|
1523
|
+
0xb08f922a => 'messages.deleteHistory',
|
|
1524
|
+
0xb0bdeac5 => 'storyView',
|
|
1525
|
+
0xb0cd6617 => 'botVerifierSettings',
|
|
1526
|
+
0xb0d13e47 => 'webPagePending',
|
|
1527
|
+
0xb0d1865b => 'channelParticipantsBots',
|
|
1528
|
+
0xb0d81a83 => 'messages.prolongWebView',
|
|
1529
|
+
0xb11eafa2 => 'messages.toggleNoForwards',
|
|
1530
|
+
0xb12c7125 => 'messages.acceptUrlAuth',
|
|
1531
|
+
0xb16a6c29 => 'keyboardButtonRequestPhone',
|
|
1532
|
+
0xb1c3caa7 => 'channelAdminLogEventActionChangeStickerSet',
|
|
1533
|
+
0xb1db7c7e => 'inputNotifyBroadcasts',
|
|
1534
|
+
0xb1f2061f => 'messages.getDocumentByHash',
|
|
1535
|
+
0xb2028afb => 'stories.incrementStoryViews',
|
|
1536
|
+
0xb23fc698 => 'updateChannelAvailableMessages',
|
|
1537
|
+
0xb2539d54 => 'prepaidGiveaway',
|
|
1538
|
+
0xb26732a9 => 'account.saveMusic',
|
|
1539
|
+
0xb282217f => 'inputMediaAreaVenue',
|
|
1540
|
+
0xb288bc7d => 'account.getAllSecureValues',
|
|
1541
|
+
0xb2a2f663 => 'geoPoint',
|
|
1542
|
+
0xb2a7386b => 'attachMenuBotIcon',
|
|
1543
|
+
0xb2cbc1c0 => 'phone.discardCall',
|
|
1544
|
+
0xb2da71d2 => 'recentMeUrlChat',
|
|
1545
|
+
0xb304a621 => 'upload.saveFilePart',
|
|
1546
|
+
0xb3134d9d => 'contacts.found',
|
|
1547
|
+
0xb320aadb => 'secureValueTypePhone',
|
|
1548
|
+
0xb37794af => 'auth.sentCodeTypeSmsPhrase',
|
|
1549
|
+
0xb390dc08 => 'pageRelatedArticle',
|
|
1550
|
+
0xb3a07661 => 'messageActionGroupCallScheduled',
|
|
1551
|
+
0xb3ba0635 => 'inputMediaPhoto',
|
|
1552
|
+
0xb3cea0e4 => 'storage.fileMp4',
|
|
1553
|
+
0xb3fb5361 => 'emojiLanguage',
|
|
1554
|
+
0xb4073647 => 'username',
|
|
1555
|
+
0xb425cfe1 => 'payments.paymentFormStarGift',
|
|
1556
|
+
0xb434e2b8 => 'auth.exportedAuthorization',
|
|
1557
|
+
0xb4352016 => 'stories.getStoriesArchive',
|
|
1558
|
+
0xb43df344 => 'messages.startHistoryImport',
|
|
1559
|
+
0xb455a106 => 'payments.getSavedStarGift',
|
|
1560
|
+
0xb457b375 => 'starsTransactionPeerAppStore',
|
|
1561
|
+
0xb45c69d1 => 'messages.affectedHistory',
|
|
1562
|
+
0xb45ced1d => 'channels.reorderUsernames',
|
|
1563
|
+
0xb4608969 => 'channelParticipantsAdmins',
|
|
1564
|
+
0xb4a2e88d => 'updateEncryption',
|
|
1565
|
+
0xb4ae666f => 'businessChatLink',
|
|
1566
|
+
0xb4afcfb0 => 'updatePeerLocated',
|
|
1567
|
+
0xb4c38cb5 => 'messageActionWebViewDataSent',
|
|
1568
|
+
0xb4c83b4c => 'notifyUsers',
|
|
1569
|
+
0xb4d5d859 => 'payments.suggestedStarRefBots',
|
|
1570
|
+
0xb4f67e93 => 'requirementToContactPaidMessages',
|
|
1571
|
+
0xb5052fea => 'messages.toggleStickerSets',
|
|
1572
|
+
0xb52c939d => 'contacts.topPeersDisabled',
|
|
1573
|
+
0xb549da53 => 'inputMessagesFilterRoundVideo',
|
|
1574
|
+
0xb54b5acf => 'peerColor',
|
|
1575
|
+
0xb550d328 => 'contacts.unblock',
|
|
1576
|
+
0xb57295d5 => 'inlineBotWebView',
|
|
1577
|
+
0xb574b16b => 'account.setContentSettings',
|
|
1578
|
+
0xb583ba46 => 'stories.editStory',
|
|
1579
|
+
0xb5890dba => 'server_DH_inner_data',
|
|
1580
|
+
0xb59cf977 => 'phone.checkGroupCall',
|
|
1581
|
+
0xb5a1ce5a => 'messageActionChatEditTitle',
|
|
1582
|
+
0xb5aefd7d => 'updateBotShippingQuery',
|
|
1583
|
+
0xb60f5918 => 'users.getFullUser',
|
|
1584
|
+
0xb6213cdf => 'shippingOption',
|
|
1585
|
+
0xb627f3aa => 'bots.reorderPreviewMedias',
|
|
1586
|
+
0xb637edaf => 'statsDateRangeDays',
|
|
1587
|
+
0xb658f23e => 'updateDialogUnreadMark',
|
|
1588
|
+
0xb665902e => 'sendMessageEmojiInteractionSeen',
|
|
1589
|
+
0xb69b72d7 => 'messages.chatAdminsWithInvites',
|
|
1590
|
+
0xb6aef7b0 => 'messageActionEmpty',
|
|
1591
|
+
0xb6c4f543 => 'messages.messageViews',
|
|
1592
|
+
0xb6c8c393 => 'contacts.getSponsoredPeers',
|
|
1593
|
+
0xb6c8f12b => 'payments.validateRequestedInfo',
|
|
1594
|
+
0xb6cc2d5c => 'messagePeerVote',
|
|
1595
|
+
0xb6d915d7 => 'inputBotInlineMessageID64',
|
|
1596
|
+
0xb6e0a3f5 => 'stats.getMessageStats',
|
|
1597
|
+
0xb71e767a => 'jsonString',
|
|
1598
|
+
0xb7263f6d => 'account.savedRingtone',
|
|
1599
|
+
0xb74ba9d2 => 'contacts.contactsNotModified',
|
|
1600
|
+
0xb75f99a9 => 'updateReadChannelOutbox',
|
|
1601
|
+
0xb7b31ea8 => 'baseThemeNight',
|
|
1602
|
+
0xb7d998f0 => 'payments.getConnectedStarRefBot',
|
|
1603
|
+
0xb7e085fe => 'auth.exportLoginToken',
|
|
1604
|
+
0xb80e5fe4 => 'messages.setHistoryTTL',
|
|
1605
|
+
0xb81b93d4 => 'help.getPremiumPromo',
|
|
1606
|
+
0xb81c7034 => 'sendAsPeer',
|
|
1607
|
+
0xb826e150 => 'storyFwdHeader',
|
|
1608
|
+
0xb86e380e => 'messages.getPollVotes',
|
|
1609
|
+
0xb880bc4b => 'account.deleteSecureValue',
|
|
1610
|
+
0xb88cf373 => 'businessBotRecipients',
|
|
1611
|
+
0xb8905fb2 => 'privacyValueAllowUsers',
|
|
1612
|
+
0xb89bfccf => 'factCheck',
|
|
1613
|
+
0xb8a0a1a8 => 'messages.getAllStickers',
|
|
1614
|
+
0xb8bc5b0c => 'inputNotifyPeer',
|
|
1615
|
+
0xb8d0afdf => 'accountDaysTTL',
|
|
1616
|
+
0xb91bbd3a => 'messageActionSetChatTheme',
|
|
1617
|
+
0xb921bd04 => 'get_future_salts',
|
|
1618
|
+
0xb92c09e2 => 'recentMeUrlUser',
|
|
1619
|
+
0xb92fb6cd => 'pageListItemText',
|
|
1620
|
+
0xb940c666 => 'messageMediaGeoLive',
|
|
1621
|
+
0xb98886cf => 'inputUserEmpty',
|
|
1622
|
+
0xb98cd696 => 'profileTabPosts',
|
|
1623
|
+
0xb9aa606a => 'botCommandScopeChatAdmins',
|
|
1624
|
+
0xb9b2881f => 'stories.getStoryReactionsList',
|
|
1625
|
+
0xb9cdc5ee => 'messages.getFactCheck',
|
|
1626
|
+
0xb9cfc48d => 'updateBotCallbackQuery',
|
|
1627
|
+
0xb9d9a38d => 'account.toggleSponsoredMessages',
|
|
1628
|
+
0xb9ffc55b => 'messages.faveSticker',
|
|
1629
|
+
0xba4a3b5b => 'messages.readSavedHistory',
|
|
1630
|
+
0xba6705f0 => 'contacts.editCloseFriends',
|
|
1631
|
+
0xbaa57628 => 'autoDownloadSettings',
|
|
1632
|
+
0xbaafe5e0 => 'pageBlockAuthorDate',
|
|
1633
|
+
0xbac3a61a => 'reactionNotificationsFromContacts',
|
|
1634
|
+
0xbad07584 => 'inputDocumentFileLocation',
|
|
1635
|
+
0xbad88395 => 'inputMessageReplyTo',
|
|
1636
|
+
0xbb12a419 => 'messages.setInlineBotResults',
|
|
1637
|
+
0xbb3b9804 => 'account.resetWallPapers',
|
|
1638
|
+
0xbb6ae88d => 'channelParticipantsContacts',
|
|
1639
|
+
0xbb8125ba => 'messages.getTopReactions',
|
|
1640
|
+
0xbb92ba95 => 'messageEntityUnknown',
|
|
1641
|
+
0xbb9bb9a5 => 'updatePeerHistoryTTL',
|
|
1642
|
+
0xbbab2643 => 'storyReactionPublicForward',
|
|
1643
|
+
0xbbb6b4a3 => 'starsAmount',
|
|
1644
|
+
0xbbc7515d => 'keyboardButtonRequestPoll',
|
|
1645
|
+
0xbbf2dda0 => 'securePasswordKdfAlgoPBKDF2HMACSHA512iter100000',
|
|
1646
|
+
0xbbf51685 => 'emailVerifyPurposePassport',
|
|
1647
|
+
0xbc0a57dc => 'recentMeUrlStickerSet',
|
|
1648
|
+
0xbc2eab30 => 'privacyKeyStatusTimestamp',
|
|
1649
|
+
0xbc799737 => 'boolFalse',
|
|
1650
|
+
0xbcf22685 => 'phone.inviteConferenceCallParticipant',
|
|
1651
|
+
0xbd0415c4 => 'stories.togglePeerStoriesHidden',
|
|
1652
|
+
0xbd17a14a => 'topPeerCategoryGroups',
|
|
1653
|
+
0xbd1efd3e => 'payments.getStarsGiveawayOptions',
|
|
1654
|
+
0xbd2a0840 => 'inputPeerChannelFromMessage',
|
|
1655
|
+
0xbd38850a => 'messages.sendScheduledMessages',
|
|
1656
|
+
0xbd47cbad => 'messageActionChatCreate',
|
|
1657
|
+
0xbd610bc9 => 'messageEntityBold',
|
|
1658
|
+
0xbd74cf49 => 'storyViewPublicRepost',
|
|
1659
|
+
0xbd7f90ac => 'messages.getUnreadReactions',
|
|
1660
|
+
0xbd87cb6c => 'savedDialog',
|
|
1661
|
+
0xbdbb0464 => 'messages.getScheduledMessages',
|
|
1662
|
+
0xbdc597b4 => 'inputPrivacyKeyNoPaidMessages',
|
|
1663
|
+
0xbdc62dcc => 'messages.exportedChatInvites',
|
|
1664
|
+
0xbdca2f75 => 'messages.editExportedChatInvite',
|
|
1665
|
+
0xbdcdaec0 => 'inputChatUploadedPhoto',
|
|
1666
|
+
0xbddb616e => 'messages.availableEffects',
|
|
1667
|
+
0xbddcc510 => 'inputBotInlineMessageMediaWebPage',
|
|
1668
|
+
0xbdf93428 => 'messages.getDefaultTagReactions',
|
|
1669
|
+
0xbdf9653b => 'game',
|
|
1670
|
+
0xbdfb0426 => 'inputPrivacyKeyChatInvite',
|
|
1671
|
+
0xbe1e85ba => 'fragment.getCollectibleInfo',
|
|
1672
|
+
0xbe382906 => 'messages.featuredStickers',
|
|
1673
|
+
0xbe4e0ef8 => 'channelAdminLogEventActionChangeAvailableReactions',
|
|
1674
|
+
0xbe5335be => 'upload.getFile',
|
|
1675
|
+
0xbe7e8ef1 => 'req_pq_multi',
|
|
1676
|
+
0xbe82db9c => 'mediaAreaVenue',
|
|
1677
|
+
0xbec268ef => 'updateNotifySettings',
|
|
1678
|
+
0xbedc9822 => 'statsGraphError',
|
|
1679
|
+
0xbf0693d4 => 'messageEntityStrike',
|
|
1680
|
+
0xbf4dea82 => 'pageBlockTable',
|
|
1681
|
+
0xbf899aa0 => 'account.setAuthorizationTTL',
|
|
1682
|
+
0xbf9459b7 => 'invokeWithoutUpdates',
|
|
1683
|
+
0xbfb5ad8b => 'channelLocationEmpty',
|
|
1684
|
+
0xbfb9f457 => 'help.passportConfigNotModified',
|
|
1685
|
+
0xbfd064ec => 'pageBlockHeader',
|
|
1686
|
+
0xc000bba2 => 'auth.sentCodeTypeSms',
|
|
1687
|
+
0xc007cec3 => 'notifyChats',
|
|
1688
|
+
0xc00ec7d3 => 'payments.getStarsTopupOptions',
|
|
1689
|
+
0xc0111fe3 => 'channels.deleteChannel',
|
|
1690
|
+
0xc01e857f => 'updateUserTyping',
|
|
1691
|
+
0xc01f6fe8 => 'messages.savedDialogsNotModified',
|
|
1692
|
+
0xc02d4007 => 'chatParticipant',
|
|
1693
|
+
0xc070d93e => 'pageBlockPreformatted',
|
|
1694
|
+
0xc077ec01 => 'availableReaction',
|
|
1695
|
+
0xc0944820 => 'messageActionTopicEdit',
|
|
1696
|
+
0xc0977421 => 'help.getPromoData',
|
|
1697
|
+
0xc0c4edc9 => 'payments.checkCanSendGift',
|
|
1698
|
+
0xc0cf7646 => 'messages.sendInlineBotResult',
|
|
1699
|
+
0xc0de1bd9 => 'jsonObjectValue',
|
|
1700
|
+
0xc0e24635 => 'messages.dhConfigNotModified',
|
|
1701
|
+
0xc10eb2cf => 'inputPaymentCredentialsSaved',
|
|
1702
|
+
0xc12622c4 => 'textUnderline',
|
|
1703
|
+
0xc13d1c11 => 'inputMediaVenue',
|
|
1704
|
+
0xc13e3c50 => 'importedContact',
|
|
1705
|
+
0xc1cbd5b6 => 'account.cancelPasswordEmail',
|
|
1706
|
+
0xc1cd5ea9 => 'initConnection',
|
|
1707
|
+
0xc1e4a2b1 => 'inputReportReasonOther',
|
|
1708
|
+
0xc1e92cc5 => 'account.savedRingtones',
|
|
1709
|
+
0xc1f8e69a => 'inputMessagesFilterMyMentions',
|
|
1710
|
+
0xc21b8849 => 'inputMediaWebPage',
|
|
1711
|
+
0xc21f497e => 'encryptedFileEmpty',
|
|
1712
|
+
0xc23727c9 => 'account.passwordInputSettings',
|
|
1713
|
+
0xc239d686 => 'inputWebFileLocation',
|
|
1714
|
+
0xc2510192 => 'bots.getPopularAppBots',
|
|
1715
|
+
0xc27ac8c7 => 'botCommand',
|
|
1716
|
+
0xc326caef => 'inputInvoiceSlug',
|
|
1717
|
+
0xc32af4cc => 'payments.reorderStarGiftCollections',
|
|
1718
|
+
0xc32bfa1a => 'attachMenuPeerTypeBotPM',
|
|
1719
|
+
0xc32d5b12 => 'updateDeleteChannelMessages',
|
|
1720
|
+
0xc331e80a => 'inputGameShortName',
|
|
1721
|
+
0xc3878e23 => 'help.country',
|
|
1722
|
+
0xc387c04e => 'stories.canSendStoryCount',
|
|
1723
|
+
0xc3987a3a => 'stories.albums',
|
|
1724
|
+
0xc39f5324 => 'inputInvoiceStarGiftResale',
|
|
1725
|
+
0xc3a12462 => 'baseThemeClassic',
|
|
1726
|
+
0xc3a2835f => 'auth.loggedOut',
|
|
1727
|
+
0xc3dffc04 => 'chatTheme',
|
|
1728
|
+
0xc3f2f501 => 'businessAwayMessageScheduleOutsideWorkHours',
|
|
1729
|
+
0xc4103386 => 'inputMediaPaidMedia',
|
|
1730
|
+
0xc448415c => 'myBoost',
|
|
1731
|
+
0xc4563590 => 'payments.getStarGifts',
|
|
1732
|
+
0xc45a6536 => 'help.noAppUpdate',
|
|
1733
|
+
0xc4870a49 => 'updateBotStopped',
|
|
1734
|
+
0xc4a353ee => 'contacts.getStatuses',
|
|
1735
|
+
0xc4b9f9bb => 'error',
|
|
1736
|
+
0xc4e57915 => 'inputPrivacyValueDisallowBots',
|
|
1737
|
+
0xc4e5921e => 'inputBusinessBotRecipients',
|
|
1738
|
+
0xc4f9186b => 'help.getConfig',
|
|
1739
|
+
0xc516d679 => 'messageActionBotAllowed',
|
|
1740
|
+
0xc517f77e => 'channelAdminLogEventActionToggleAutotranslation',
|
|
1741
|
+
0xc5226f17 => 'phoneCallWaiting',
|
|
1742
|
+
0xc558d8ab => 'phone.getGroupParticipants',
|
|
1743
|
+
0xc563c1e4 => 'messages.updateDialogFiltersOrder',
|
|
1744
|
+
0xc577b5ad => 'userFull',
|
|
1745
|
+
0xc5b56859 => 'inputInvoiceMessage',
|
|
1746
|
+
0xc5ba3d86 => 'account.reportPeer',
|
|
1747
|
+
0xc624b16e => 'messageActionPaymentSent',
|
|
1748
|
+
0xc661ad08 => 'help.getPassportConfig',
|
|
1749
|
+
0xc6701900 => 'phone.sendConferenceCallBroadcast',
|
|
1750
|
+
0xc68d6695 => 'messages.quickReplies',
|
|
1751
|
+
0xc69708d3 => 'sponsoredPeer',
|
|
1752
|
+
0xc6dc0c66 => 'messages.featuredStickersNotModified',
|
|
1753
|
+
0xc727bb3b => 'account.installTheme',
|
|
1754
|
+
0xc7345e6a => 'jsonBool',
|
|
1755
|
+
0xc776ba4e => 'messages.channelMessages',
|
|
1756
|
+
0xc7770878 => 'payments.changeStarsSubscription',
|
|
1757
|
+
0xc78fe460 => 'messages.installStickerSet',
|
|
1758
|
+
0xc7b57ce6 => 'botMenuButton',
|
|
1759
|
+
0xc7edbc83 => 'messageActionTodoAppendTasks',
|
|
1760
|
+
0xc7fb5e01 => 'textSuperscript',
|
|
1761
|
+
0xc84834ce => 'autoSaveSettings',
|
|
1762
|
+
0xc88b3b02 => 'inputStickerSetPremiumGifts',
|
|
1763
|
+
0xc8a0ec74 => 'messages.getStickerSet',
|
|
1764
|
+
0xc8cf05f8 => 'messageEntityCustomEmoji',
|
|
1765
|
+
0xc93de95c => 'inputChatTheme',
|
|
1766
|
+
0xc9662d05 => 'inputKeyboardButtonRequestPeer',
|
|
1767
|
+
0xc982eaba => 'cdnPublicKey',
|
|
1768
|
+
0xc99b1950 => 'botAppSettings',
|
|
1769
|
+
0xc9b0539f => 'searchResultsCalendarPeriod',
|
|
1770
|
+
0xc9b9e2b9 => 'businessAwayMessageScheduleAlways',
|
|
1771
|
+
0xc9e01e7b => 'messages.requestMainWebView',
|
|
1772
|
+
0xc9e33d54 => 'channels.inviteToChannel',
|
|
1773
|
+
0xc9f06e1b => 'requestPeerTypeChat',
|
|
1774
|
+
0xc9f81ce8 => 'account.setPrivacy',
|
|
1775
|
+
0xca461b5d => 'peerLocated',
|
|
1776
|
+
0xca8ae8ba => 'account.invalidateSignInCodes',
|
|
1777
|
+
0xcacb6ae2 => 'inputPeerNotifySettings',
|
|
1778
|
+
0xcad181f6 => 'langPackString',
|
|
1779
|
+
0xcad5452d => 'mediaAreaGeoPoint',
|
|
1780
|
+
0xcae1aadf => 'storage.fileGif',
|
|
1781
|
+
0xcae47523 => 'auth.resendCode',
|
|
1782
|
+
0xcae68768 => 'stories.peerStories',
|
|
1783
|
+
0xcb296bf8 => 'labeledPrice',
|
|
1784
|
+
0xcb2ac766 => 'channelAdminLogEventActionToggleNoForwards',
|
|
1785
|
+
0xcb397619 => 'channelParticipant',
|
|
1786
|
+
0xcb43acde => 'statsAbsValueAndPrev',
|
|
1787
|
+
0xcb6ff828 => 'savedReactionTag',
|
|
1788
|
+
0xcb9deff6 => 'auth.reportMissingCode',
|
|
1789
|
+
0xcb9f372d => 'invokeAfterMsg',
|
|
1790
|
+
0xcba9a52f => 'todoItem',
|
|
1791
|
+
0xcbc6d107 => 'messages.addChatUser',
|
|
1792
|
+
0xcbc7ee28 => 'inputSecureFileLocation',
|
|
1793
|
+
0xcbce2fe0 => 'statsPercentValue',
|
|
1794
|
+
0xcbe31e26 => 'secureValueTypeAddress',
|
|
1795
|
+
0xcbea6bc4 => 'phone.joinGroupCallPresentation',
|
|
1796
|
+
0xcc02aa6d => 'messageActionBoostApply',
|
|
1797
|
+
0xcc104937 => 'channels.readHistory',
|
|
1798
|
+
0xcc1a241e => 'config',
|
|
1799
|
+
0xcc4d9ecc => 'businessAwayMessageScheduleCustom',
|
|
1800
|
+
0xcc5b67cc => 'messages.getAttachedStickers',
|
|
1801
|
+
0xcc5bebb3 => 'payments.fulfillStarsSubscription',
|
|
1802
|
+
0xcc6e0c11 => 'account.updateBirthday',
|
|
1803
|
+
0xcc7c5c89 => 'messageActionTodoCompletions',
|
|
1804
|
+
0xccbbce30 => 'help.appUpdate',
|
|
1805
|
+
0xccfddf96 => 'messages.saveDefaultSendAs',
|
|
1806
|
+
0xcd64636c => 'connectedBot',
|
|
1807
|
+
0xcd77d957 => 'channelMessagesFilter',
|
|
1808
|
+
0xcd78e586 => 'rpc_answer_dropped_running',
|
|
1809
|
+
0xcd984aa5 => 'langpack.getDifference',
|
|
1810
|
+
0xcdbbcebb => 'messages.allStickers',
|
|
1811
|
+
0xcdc27a1f => 'paymentSavedCredentialsCard',
|
|
1812
|
+
0xcdc3858c => 'account.wallPapers',
|
|
1813
|
+
0xcdd42a05 => 'auth.bindTempAuthKey',
|
|
1814
|
+
0xce03da83 => 'chatlists.getExportedInvites',
|
|
1815
|
+
0xce0d37b0 => 'pageBlockAnchor',
|
|
1816
|
+
0xceaa3ea1 => 'messageMediaGiveawayResults',
|
|
1817
|
+
0xcf1592db => 'messages.reportSpam',
|
|
1818
|
+
0xcf6f6db8 => 'webPageAttributeUniqueStarGift',
|
|
1819
|
+
0xcfb9d957 => 'messages.transcribedAudio',
|
|
1820
|
+
0xcfc9e002 => 'mediaAreaCoordinates',
|
|
1821
|
+
0xcfcd0f13 => 'storyReactionPublicRepost',
|
|
1822
|
+
0xcff43f61 => 'account.setContactSignUpNotification',
|
|
1823
|
+
0xd02e7fd4 => 'inputKeyboardButtonUrlAuth',
|
|
1824
|
+
0xd06e93a8 => 'payments.getStarGiftWithdrawalUrl',
|
|
1825
|
+
0xd072acb4 => 'restrictionReason',
|
|
1826
|
+
0xd087663a => 'updateChatParticipant',
|
|
1827
|
+
0xd08ce645 => 'account.emojiStatusesNotModified',
|
|
1828
|
+
0xd0b5e1fc => 'messages.getMyStickers',
|
|
1829
|
+
0xd0e482b2 => 'phone.groupCallStreamChannels',
|
|
1830
|
+
0xd0e8075c => 'server_DH_params_ok',
|
|
1831
|
+
0xd1219bdd => 'inputPrivacyKeyAddedByPhone',
|
|
1832
|
+
0xd1435160 => 'destroy_auth_key',
|
|
1833
|
+
0xd1451883 => 'payments.validatedRequestedInfo',
|
|
1834
|
+
0xd1810907 => 'stories.searchPosts',
|
|
1835
|
+
0xd18b4d16 => 'auth.checkPassword',
|
|
1836
|
+
0xd19ae46d => 'privacyKeyPhoneNumber',
|
|
1837
|
+
0xd1d34a26 => 'sendMessageUploadPhotoAction',
|
|
1838
|
+
0xd1d7efc5 => 'payments.getStarsRevenueAdsAccountUrl',
|
|
1839
|
+
0xd1da940c => 'messages.deleteFactCheck',
|
|
1840
|
+
0xd1ed9a5b => 'messages.availableEffectsNotModified',
|
|
1841
|
+
0xd27ff082 => 'inputCheckPasswordSRP',
|
|
1842
|
+
0xd29a27f4 => 'updateChannelMessageForwards',
|
|
1843
|
+
0xd2aaf7ec => 'messages.updatePinnedMessage',
|
|
1844
|
+
0xd30d78d4 => 'messages.sendReaction',
|
|
1845
|
+
0xd33c8902 => 'channels.editAdmin',
|
|
1846
|
+
0xd33f43f3 => 'inputMediaGame',
|
|
1847
|
+
0xd348bc44 => 'contacts.getLocated',
|
|
1848
|
+
0xd360e72c => 'help.getSupportName',
|
|
1849
|
+
0xd3656499 => 'profileTabLinks',
|
|
1850
|
+
0xd3bc4b7a => 'userEmpty',
|
|
1851
|
+
0xd3c96bc8 => 'payments.getStarsGiftOptions',
|
|
1852
|
+
0xd3e03124 => 'messages.toggleTodoCompleted',
|
|
1853
|
+
0xd3f924eb => 'messages.stickerSetNotModified',
|
|
1854
|
+
0xd45ab096 => 'passwordKdfAlgoUnknown',
|
|
1855
|
+
0xd464a42b => 'messages.deleteExportedChatInvite',
|
|
1856
|
+
0xd483f2a8 => 'messages.getQuickReplies',
|
|
1857
|
+
0xd52f73f7 => 'sendMessageRecordAudioAction',
|
|
1858
|
+
0xd5676710 => 'channelAdminLogEventActionParticipantToggleAdmin',
|
|
1859
|
+
0xd58a08c6 => 'dialog',
|
|
1860
|
+
0xd58f130a => 'messages.setBotCallbackAnswer',
|
|
1861
|
+
0xd5a41724 => 'updateMessageExtendedMedia',
|
|
1862
|
+
0xd5a5d3a1 => 'messages.getStickers',
|
|
1863
|
+
0xd5b10c26 => 'messages.getEmojiURL',
|
|
1864
|
+
0xd5b3b9f9 => 'emojiKeyword',
|
|
1865
|
+
0xd5e58274 => 'payments.checkCanSendGiftResultFail',
|
|
1866
|
+
0xd612e8ef => 'notifyBroadcasts',
|
|
1867
|
+
0xd61ad6ee => 'auth.codeTypeMissedCall',
|
|
1868
|
+
0xd62ff46a => 'requestedPeerUser',
|
|
1869
|
+
0xd638de89 => 'account.getChatThemes',
|
|
1870
|
+
0xd63d94e0 => 'messages.getPinnedSavedDialogs',
|
|
1871
|
+
0xd65a11cc => 'inputPrivacyKeyBirthday',
|
|
1872
|
+
0xd66b66c9 => 'inputPrivacyValueDisallowAll',
|
|
1873
|
+
0xd6753386 => 'account.getDefaultEmojiStatuses',
|
|
1874
|
+
0xd69b8361 => 'account.saveAutoSaveSettings',
|
|
1875
|
+
0xd6b19546 => 'updateReadChannelDiscussionInbox',
|
|
1876
|
+
0xd6b94df2 => 'messages.getPinnedDialogs',
|
|
1877
|
+
0xd712e4be => 'req_DH_params',
|
|
1878
|
+
0xd7584c87 => 'statsGroupTopAdmin',
|
|
1879
|
+
0xd766c50a => 'inlineQueryPeerTypeChat',
|
|
1880
|
+
0xd7a2fcf9 => 'auth.sentCodePaymentRequired',
|
|
1881
|
+
0xd7ca61a2 => 'updateChatParticipantAdmin',
|
|
1882
|
+
0xd7e78225 => 'inputBotInlineMessageMediaInvoice',
|
|
1883
|
+
0xd80da15d => 'starsTransactionPeer',
|
|
1884
|
+
0xd8214d41 => 'photoPathSize',
|
|
1885
|
+
0xd83466f3 => 'inputPhotoLegacyFileLocation',
|
|
1886
|
+
0xd83d70c1 => 'payments.clearSavedInfo',
|
|
1887
|
+
0xd8411139 => 'payments.paymentVerificationNeeded',
|
|
1888
|
+
0xd897bc66 => 'auth.requestPasswordRecovery',
|
|
1889
|
+
0xd89a83a3 => 'users.getRequirementsToContact',
|
|
1890
|
+
0xd8aa3671 => 'channels.updateColor',
|
|
1891
|
+
0xd8aa840f => 'inputGroupCall',
|
|
1892
|
+
0xd90d8dfe => 'attachMenuBot',
|
|
1893
|
+
0xd912a59c => 'textItalic',
|
|
1894
|
+
0xd91ffad6 => 'payments.getStarsRevenueStats',
|
|
1895
|
+
0xd92c2285 => 'speakingInGroupCallAction',
|
|
1896
|
+
0xd93d859c => 'starGiftAttributeBackdrop',
|
|
1897
|
+
0xd94305e0 => 'account.updatePersonalChannel',
|
|
1898
|
+
0xd9565c39 => 'auth.sentCodeTypeFragmentSms',
|
|
1899
|
+
0xd95c6154 => 'messageActionSecureValuesSent',
|
|
1900
|
+
0xd9ab0f54 => 'messages.getCustomEmojiDocuments',
|
|
1901
|
+
0xda69fb52 => 'msgs_state_req',
|
|
1902
|
+
0xda80f42f => 'help.getPeerColors',
|
|
1903
|
+
0xda9b0d0d => 'invokeWithLayer',
|
|
1904
|
+
0xdabab2ef => 'inputInvoicePremiumGiftStars',
|
|
1905
|
+
0xdabbf83a => 'payments.paymentReceiptStars',
|
|
1906
|
+
0xdadbc950 => 'account.getPrivacy',
|
|
1907
|
+
0xdaeda864 => 'contacts.getBirthdays',
|
|
1908
|
+
0xdb20b188 => 'pageBlockDivider',
|
|
1909
|
+
0xdb21d0a7 => 'inputSecureValue',
|
|
1910
|
+
0xdb64fd34 => 'account.tmpPassword',
|
|
1911
|
+
0xdb7e1747 => 'account.resetNotifySettings',
|
|
1912
|
+
0xdb909ec2 => 'emailVerificationGoogle',
|
|
1913
|
+
0xdb9d897d => 'botCommandScopePeer',
|
|
1914
|
+
0xdb9e70d2 => 'inputPrivacyKeyPhoneP2P',
|
|
1915
|
+
0xdb9f9140 => 'channelAdminLogEventActionDiscardGroupCall',
|
|
1916
|
+
0xdbd4feed => 'inputReportReasonGeoIrrelevant',
|
|
1917
|
+
0xdbda9246 => 'sendMessageHistoryImportAction',
|
|
1918
|
+
0xdc0242c8 => 'messages.sendWebViewData',
|
|
1919
|
+
0xdc3d824f => 'textEmpty',
|
|
1920
|
+
0xdc6cfcf0 => 'paidReactionPrivacyPeer',
|
|
1921
|
+
0xdc7b1140 => 'messageEntityMentionName',
|
|
1922
|
+
0xdc8b44cf => 'smsjobs.eligibleToJoin',
|
|
1923
|
+
0xdcb118b7 => 'groupCallParticipantVideoSourceGroup',
|
|
1924
|
+
0xdcd914fd => 'bots.getBotInfo',
|
|
1925
|
+
0xdcdf8607 => 'stats.getMegagroupStats',
|
|
1926
|
+
0xdd0c66f2 => 'starRefProgram',
|
|
1927
|
+
0xdd18782e => 'help.appConfig',
|
|
1928
|
+
0xdd289f8e => 'invokeWithBusinessConnection',
|
|
1929
|
+
0xdd6a8f48 => 'sendMessageGamePlayAction',
|
|
1930
|
+
0xdde8a54c => 'inputPeerUser',
|
|
1931
|
+
0xddf10c3b => 'messageMediaWebPage',
|
|
1932
|
+
0xde266ef5 => 'contacts.topPeersNotModified',
|
|
1933
|
+
0xde33b094 => 'videoSize',
|
|
1934
|
+
0xde3f3c79 => 'channelParticipantsRecent',
|
|
1935
|
+
0xde4c5d93 => 'geoPointAddress',
|
|
1936
|
+
0xde5a0dd6 => 'textEmail',
|
|
1937
|
+
0xde7b673d => 'upload.saveBigFilePart',
|
|
1938
|
+
0xde9eed1d => 'stories.storyViews',
|
|
1939
|
+
0xdea20a39 => 'messages.getAvailableEffects',
|
|
1940
|
+
0xdeb3abbf => 'phone.getGroupCallStreamRtmpUrl',
|
|
1941
|
+
0xdef60797 => 'messages.editChatAbout',
|
|
1942
|
+
0xdf04dd4e => 'messages.getChatInviteImporters',
|
|
1943
|
+
0xdf77f3bc => 'account.resetAuthorization',
|
|
1944
|
+
0xdfb80317 => 'channels.channelParticipant',
|
|
1945
|
+
0xdfd14005 => 'messages.editMessage',
|
|
1946
|
+
0xdfdaabe1 => 'inputFileLocation',
|
|
1947
|
+
0xdffd50d3 => 'payments.assignPlayMarketTransaction',
|
|
1948
|
+
0xe011e1c4 => 'account.chatThemesNotModified',
|
|
1949
|
+
0xe021f2f6 => 'messages.botResults',
|
|
1950
|
+
0xe04b5ceb => 'channelParticipantsMentions',
|
|
1951
|
+
0xe06046b2 => 'msg_copy',
|
|
1952
|
+
0xe062db83 => 'inputMessagesFilterContacts',
|
|
1953
|
+
0xe0804116 => 'wallPaperNoFile',
|
|
1954
|
+
0xe085f4ea => 'messages.hideAllChatJoinRequests',
|
|
1955
|
+
0xe089f8f5 => 'chatlists.joinChatlistUpdates',
|
|
1956
|
+
0xe095c1a0 => 'phoneCallDiscardReasonDisconnect',
|
|
1957
|
+
0xe09d5faf => 'account.getSavedMusicIds',
|
|
1958
|
+
0xe0b0bc2e => 'photoStrippedSize',
|
|
1959
|
+
0xe0bff26c => 'starGiftAttributeOriginalDetails',
|
|
1960
|
+
0xe0c0c5e5 => 'pageTableRow',
|
|
1961
|
+
0xe1037f92 => 'messageActionChatMigrateTo',
|
|
1962
|
+
0xe105e910 => 'messages.deleteQuickReplyMessages',
|
|
1963
|
+
0xe14c4a71 => 'photos.uploadContactProfilePhoto',
|
|
1964
|
+
0xe1664194 => 'contacts.blockedSlice',
|
|
1965
|
+
0xe1732341 => 'inputPrivacyKeyStarGiftsAutoSave',
|
|
1966
|
+
0xe175e66f => 'payments.giveawayInfoResults',
|
|
1967
|
+
0xe1902288 => 'account.getSavedRingtones',
|
|
1968
|
+
0xe1bb0d61 => 'account.emailVerifiedLogin',
|
|
1969
|
+
0xe22045fc => 'destroy_session_ok',
|
|
1970
|
+
0xe2750328 => 'account.getDefaultProfilePhotoEmojis',
|
|
1971
|
+
0xe2de7737 => 'stories.foundStories',
|
|
1972
|
+
0xe317af7e => 'updatesTooLong',
|
|
1973
|
+
0xe31c34d8 => 'channelAdminLogEventActionParticipantInvite',
|
|
1974
|
+
0xe320c158 => 'account.getAuthorizations',
|
|
1975
|
+
0xe32f3d77 => 'updateChatParticipantDelete',
|
|
1976
|
+
0xe3309f7f => 'help.termsOfServiceUpdateEmpty',
|
|
1977
|
+
0xe34c0dd6 => 'bots.getBotCommands',
|
|
1978
|
+
0xe3779861 => 'account.resetPasswordFailedWait',
|
|
1979
|
+
0xe3878aa4 => 'users.savedMusicNotModified',
|
|
1980
|
+
0xe39460a9 => 'inputCollectibleUsername',
|
|
1981
|
+
0xe39a8f03 => 'account.uploadWallPaper',
|
|
1982
|
+
0xe40370a3 => 'updateEditMessage',
|
|
1983
|
+
0xe40ca104 => 'messages.getCommonChats',
|
|
1984
|
+
0xe4621141 => 'privacyValueDisallowUsers',
|
|
1985
|
+
0xe46bcee4 => 'chatParticipantCreator',
|
|
1986
|
+
0xe470bcfd => 'messages.getPeerDialogs',
|
|
1987
|
+
0xe477092e => 'profileTabVoice',
|
|
1988
|
+
0xe47cb579 => 'messages.togglePeerTranslations',
|
|
1989
|
+
0xe4c123d6 => 'inputGeoPointEmpty',
|
|
1990
|
+
0xe4cb9580 => 'channels.toggleJoinToSend',
|
|
1991
|
+
0xe4e0b29d => 'channelFull',
|
|
1992
|
+
0xe4e88011 => 'pageBlockList',
|
|
1993
|
+
0xe4fca4a3 => 'payments.editConnectedStarRefBot',
|
|
1994
|
+
0xe511996d => 'updateFavedStickers',
|
|
1995
|
+
0xe519abab => 'businessGreetingMessage',
|
|
1996
|
+
0xe537ced6 => 'secureValueErrorSelfie',
|
|
1997
|
+
0xe56dbf05 => 'dialogPeer',
|
|
1998
|
+
0xe581e4e9 => 'requirementToContactPremium',
|
|
1999
|
+
0xe58e95d2 => 'messages.deleteMessages',
|
|
2000
|
+
0xe5bbfe1a => 'inputMediaPhotoExternal',
|
|
2001
|
+
0xe5bdf8de => 'updateUserStatus',
|
|
2002
|
+
0xe5bfffcd => 'auth.exportAuthorization',
|
|
2003
|
+
0xe5d7d19c => 'messages.chatFull',
|
|
2004
|
+
0xe5f672fa => 'messages.setBotShippingResults',
|
|
2005
|
+
0xe6213f4d => 'bots.answerWebhookJSONQuery',
|
|
2006
|
+
0xe630b979 => 'inputWallPaper',
|
|
2007
|
+
0xe63fadeb => 'channels.exportMessageLink',
|
|
2008
|
+
0xe64429c0 => 'channelAdminLogEventActionParticipantUnmute',
|
|
2009
|
+
0xe66fbf7b => 'inputMediaDice',
|
|
2010
|
+
0xe67f520e => 'inputStickerSetDice',
|
|
2011
|
+
0xe6a1eeb8 => 'smsJob',
|
|
2012
|
+
0xe6aa647f => 'phone.exportGroupCallInvite',
|
|
2013
|
+
0xe6d83d7e => 'channelAdminLogEventActionParticipantToggleBan',
|
|
2014
|
+
0xe6df7378 => 'messages.startBot',
|
|
2015
|
+
0xe6dfb825 => 'channelAdminLogEventActionChangeTitle',
|
|
2016
|
+
0xe7026d0d => 'inputMessagesFilterGeo',
|
|
2017
|
+
0xe7058e7f => 'postInteractionCountersMessage',
|
|
2018
|
+
0xe7512126 => 'destroy_session',
|
|
2019
|
+
0xe785a43f => 'channels.getSendAs',
|
|
2020
|
+
0xe7e82e12 => 'pendingSuggestion',
|
|
2021
|
+
0xe7ff068a => 'emojiStatus',
|
|
2022
|
+
0xe8025ca2 => 'messages.savedGifsNotModified',
|
|
2023
|
+
0xe822649d => 'messages.getGameHighScores',
|
|
2024
|
+
0xe844ebff => 'messages.searchCounter',
|
|
2025
|
+
0xe8625e92 => 'inputInvoiceStarGift',
|
|
2026
|
+
0xe86602c3 => 'messages.allStickersNotModified',
|
|
2027
|
+
0xe87acbc0 => 'foundStory',
|
|
2028
|
+
0xe894ad4d => 'auth.acceptLoginToken',
|
|
2029
|
+
0xe89c45b2 => 'webPage',
|
|
2030
|
+
0xe8a40bd9 => 'secureValueErrorData',
|
|
2031
|
+
0xe8a775b0 => 'bots.botInfo',
|
|
2032
|
+
0xe8f463d0 => 'contacts.addContact',
|
|
2033
|
+
0xe8fd8014 => 'peerBlocked',
|
|
2034
|
+
0xe90ebb59 => 'channelAdminLogEventActionExportedInviteEdit',
|
|
2035
|
+
0xe926d63e => 'account.resetPasswordOk',
|
|
2036
|
+
0xe92fd902 => 'starsTransactionPeerFragment',
|
|
2037
|
+
0xe94f0f86 => 'inputPrivacyValueDisallowChatParticipants',
|
|
2038
|
+
0xe9763aec => 'sendMessageUploadVideoAction',
|
|
2039
|
+
0xe988037b => 'inputKeyboardButtonUserProfile',
|
|
2040
|
+
0xe9baa668 => 'folderPeer',
|
|
2041
|
+
0xe9e82c18 => 'channelAdminLogEventActionUpdatePinned',
|
|
2042
|
+
0xe9effc7d => 'account.resetPasswordRequestedWait',
|
|
2043
|
+
0xea02c27e => 'paymentCharge',
|
|
2044
|
+
0xea02ec33 => 'secureValueTypeTemporaryRegistration',
|
|
2045
|
+
0xea107ae4 => 'channelAdminLogEventsFilter',
|
|
2046
|
+
0xea109b13 => 'destroy_auth_key_fail',
|
|
2047
|
+
0xea32b4b1 => 'contacts.sponsoredPeersEmpty',
|
|
2048
|
+
0xea3948e9 => 'messageActionChannelMigrateFrom',
|
|
2049
|
+
0xea8ca4f9 => 'channels.setStickers',
|
|
2050
|
+
0xeab5dc38 => 'channels.readMessageContents',
|
|
2051
|
+
0xeabbb94c => 'channels.togglePreHistoryHidden',
|
|
2052
|
+
0xeae87e42 => 'contacts.contacts',
|
|
2053
|
+
0xeafc32bc => 'chatReactionsNone',
|
|
2054
|
+
0xeafdf716 => 'messages.reactions',
|
|
2055
|
+
0xeb032884 => 'contacts.sponsoredPeers',
|
|
2056
|
+
0xeb2b4cf6 => 'account.getGlobalPrivacySettings',
|
|
2057
|
+
0xeb49081d => 'recentMeUrlChatInvite',
|
|
2058
|
+
0xeb50adf5 => 'messages.botApp',
|
|
2059
|
+
0xeba636fe => 'groupCallParticipant',
|
|
2060
|
+
0xebbca3cb => 'messageActionChatJoinedByRequest',
|
|
2061
|
+
0xebe07752 => 'updatePeerBlocked',
|
|
2062
|
+
0xebe46819 => 'updateServiceNotification',
|
|
2063
|
+
0xec05b097 => 'updateAutoSaveSettings',
|
|
2064
|
+
0xec22cfcd => 'help.setBotUpdatesStatus',
|
|
2065
|
+
0xec43a2d1 => 'account.businessChatLinks',
|
|
2066
|
+
0xec82e140 => 'phone.phoneCall',
|
|
2067
|
+
0xec86017a => 'account.registerDevice',
|
|
2068
|
+
0xece2a0e6 => 'channels.getMessageAuthor',
|
|
2069
|
+
0xece9814b => 'privacyValueAllowPremium',
|
|
2070
|
+
0xed107ab7 => 'chatInvitePublicJoinRequests',
|
|
2071
|
+
0xed18c118 => 'encryptedMessage',
|
|
2072
|
+
0xed1ecdb0 => 'secureValueHash',
|
|
2073
|
+
0xed56c9fc => 'account.webAuthorizations',
|
|
2074
|
+
0xed6a8504 => 'textSubscript',
|
|
2075
|
+
0xed85eab5 => 'updatePinnedMessages',
|
|
2076
|
+
0xed8af74d => 'channels.adminLogResults',
|
|
2077
|
+
0xed9f30c5 => 'bots.updateUserEmojiStatus',
|
|
2078
|
+
0xedab447b => 'bad_server_salt',
|
|
2079
|
+
0xedb93949 => 'userStatusOnline',
|
|
2080
|
+
0xedbe6ccb => 'payments.updateStarGiftPrice',
|
|
2081
|
+
0xedcdc05b => 'topPeer',
|
|
2082
|
+
0xedd4882a => 'updates.getState',
|
|
2083
|
+
0xedd49ef0 => 'channels.toggleSlowMode',
|
|
2084
|
+
0xedf164f1 => 'storyItem',
|
|
2085
|
+
0xedf3add0 => 'publicForwardStory',
|
|
2086
|
+
0xedfc111e => 'updateDraftMessage',
|
|
2087
|
+
0xee3b272a => 'updatePrivacy',
|
|
2088
|
+
0xee479c64 => 'messageExtendedMedia',
|
|
2089
|
+
0xee72f79a => 'help.acceptTermsOfService',
|
|
2090
|
+
0xee7a1596 => 'messageActionSuggestedPostApproval',
|
|
2091
|
+
0xee8c1e86 => 'inputChannelEmpty',
|
|
2092
|
+
0xee9f88a6 => 'phone.getGroupCallChainBlocks',
|
|
2093
|
+
0xeea8e46e => 'upload.cdnFileReuploadNeeded',
|
|
2094
|
+
0xeeb0d625 => 'stories.getAllStories',
|
|
2095
|
+
0xeeca5ce3 => 'langPackLanguage',
|
|
2096
|
+
0xef156a5c => 'businessAwayMessage',
|
|
2097
|
+
0xef1751b5 => 'pageBlockChannel',
|
|
2098
|
+
0xef500eab => 'account.reorderUsernames',
|
|
2099
|
+
0xef7c213a => 'phone.getGroupCallJoinAs',
|
|
2100
|
+
0xef7ff916 => 'stats.megagroupStats',
|
|
2101
|
+
0xef8d3e6c => 'messages.affectedFoundMessages',
|
|
2102
|
+
0xefd48c89 => 'messages.getDialogFilters',
|
|
2103
|
+
0xefd9a6a2 => 'messages.getPeerSettings',
|
|
2104
|
+
0xefea3803 => 'langpack.getStrings',
|
|
2105
|
+
0xf0173fe9 => 'channels.channelParticipantsNotModified',
|
|
2106
|
+
0xf041e250 => 'chatOnlines',
|
|
2107
|
+
0xf04fb3a9 => 'channelAdminLogEventActionChangeUsernames',
|
|
2108
|
+
0xf06fe208 => 'channelAdminLogEventActionEditTopic',
|
|
2109
|
+
0xf0d3e6a8 => 'channels.updateEmojiStatus',
|
|
2110
|
+
0xf0e3e596 => 'messages.dialogsNotModified',
|
|
2111
|
+
0xf0e4e0b6 => 'reportResultChooseOption',
|
|
2112
|
+
0xf101aa7f => 'inputSavedStarGiftChat',
|
|
2113
|
+
0xf107e790 => 'messages.getUnreadMentions',
|
|
2114
|
+
0xf10ece2f => 'chatlists.chatlistInvite',
|
|
2115
|
+
0xf128c708 => 'phone.toggleGroupCallRecord',
|
|
2116
|
+
0xf12bb6e1 => 'pageBlockSubheader',
|
|
2117
|
+
0xf12e57c9 => 'channels.editPhoto',
|
|
2118
|
+
0xf132e3ef => 'bots.allowSendMessage',
|
|
2119
|
+
0xf141b5e1 => 'inputEncryptedChat',
|
|
2120
|
+
0xf146d31f => 'attachMenuPeerTypePM',
|
|
2121
|
+
0xf16269d4 => 'updateSmsJob',
|
|
2122
|
+
0xf1749a22 => 'messages.stickersNotModified',
|
|
2123
|
+
0xf18cda44 => 'upload.fileCdnRedirect',
|
|
2124
|
+
0xf1ccaaac => 'messageEntityBlockquote',
|
|
2125
|
+
0xf1d0fbd3 => 'messages.checkQuickReplyShortcut',
|
|
2126
|
+
0xf1d88a5c => 'attachMenuBotsNotModified',
|
|
2127
|
+
0xf21158c6 => 'inputUser',
|
|
2128
|
+
0xf21f7f2f => 'messages.savePreparedInlineMessage',
|
|
2129
|
+
0xf226ac08 => 'updateChannelMessageViews',
|
|
2130
|
+
0xf24de7fa => 'messageActionStarGift',
|
|
2131
|
+
0xf257106c => 'account.saveTheme',
|
|
2132
|
+
0xf259a80b => 'pageBlockEmbedPost',
|
|
2133
|
+
0xf2a71983 => 'updateDeleteScheduledMessages',
|
|
2134
|
+
0xf2c4f24d => 'channels.searchPosts',
|
|
2135
|
+
0xf2ebdb4e => 'updateGroupCallParticipants',
|
|
2136
|
+
0xf2ecef23 => 'chatAdminWithInvites',
|
|
2137
|
+
0xf2f2330a => 'langpack.getLangPack',
|
|
2138
|
+
0xf3427b8c => 'ping_delay_disconnect',
|
|
2139
|
+
0xf351d7ab => 'sendMessageUploadAudioAction',
|
|
2140
|
+
0xf35aec28 => 'inputChannel',
|
|
2141
|
+
0xf35c6d01 => 'rpc_result',
|
|
2142
|
+
0xf385c1f6 => 'langPackDifference',
|
|
2143
|
+
0xf392b7f4 => 'inputPhoneContact',
|
|
2144
|
+
0xf393aea0 => 'messages.discardEncryption',
|
|
2145
|
+
0xf39b035c => 'fileHash',
|
|
2146
|
+
0xf3ae2eed => 'help.userInfoEmpty',
|
|
2147
|
+
0xf3e0da33 => 'inputChatlistDialogFilter',
|
|
2148
|
+
0xf3ed4c73 => 'account.acceptAuthorization',
|
|
2149
|
+
0xf3f25f76 => 'messageActionContactSignUp',
|
|
2150
|
+
0xf40c0224 => 'channels.createForumTopic',
|
|
2151
|
+
0xf41eb622 => 'account.themesNotModified',
|
|
2152
|
+
0xf4239425 => 'payments.getGiveawayInfo',
|
|
2153
|
+
0xf44a8315 => 'channels.reportSpam',
|
|
2154
|
+
0xf450f59b => 'auth.sentCodeTypeEmailCode',
|
|
2155
|
+
0xf46fe924 => 'inputWebFileAudioAlbumThumbLocation',
|
|
2156
|
+
0xf47741f7 => 'peerSettings',
|
|
2157
|
+
0xf47751b6 => 'phone.groupParticipants',
|
|
2158
|
+
0xf496b0c6 => 'channels.sendAsPeers',
|
|
2159
|
+
0xf4997e42 => 'inputInvoiceBusinessBotTransferStars',
|
|
2160
|
+
0xf4dfa185 => 'channels.editForumTopic',
|
|
2161
|
+
0xf5045f1f => 'set_client_DH_params',
|
|
2162
|
+
0xf50dbaa1 => 'help.dismissSuggestion',
|
|
2163
|
+
0xf516760b => 'messages.getScheduledHistory',
|
|
2164
|
+
0xf5235d55 => 'inputEncryptedFileLocation',
|
|
2165
|
+
0xf52ff27f => 'inputFile',
|
|
2166
|
+
0xf53da717 => 'updateNewQuickReply',
|
|
2167
|
+
0xf5537ebc => 'stickers.changeSticker',
|
|
2168
|
+
0xf568028a => 'bankCardOpenUrl',
|
|
2169
|
+
0xf5890df1 => 'inputThemeSlug',
|
|
2170
|
+
0xf5dad378 => 'channels.getGroupsForDiscussion',
|
|
2171
|
+
0xf5ddd6e7 => 'inputReportReasonFake',
|
|
2172
|
+
0xf64daf43 => 'messages.requestEncryption',
|
|
2173
|
+
0xf660e1d4 => 'destroy_auth_key_ok',
|
|
2174
|
+
0xf6a548d3 => 'messageMediaInvoice',
|
|
2175
|
+
0xf6a5f82f => 'privacyValueDisallowBots',
|
|
2176
|
+
0xf6e26854 => 'payments.applyGiftCode',
|
|
2177
|
+
0xf731a9f4 => 'messages.readDiscussion',
|
|
2178
|
+
0xf7444763 => 'jsonArray',
|
|
2179
|
+
0xf74e932b => 'updateReadStories',
|
|
2180
|
+
0xf7760f51 => 'stickers.removeStickerFromSet',
|
|
2181
|
+
0xf7c1b13f => 'inputUserSelf',
|
|
2182
|
+
0xf7e8d89b => 'privacyValueAllowCloseFriends',
|
|
2183
|
+
0xf8227181 => 'updateReadMessagesContents',
|
|
2184
|
+
0xf831a20f => 'contacts.acceptContact',
|
|
2185
|
+
0xf836aa95 => 'channels.leaveChannel',
|
|
2186
|
+
0xf83ae221 => 'messages.savedDialogs',
|
|
2187
|
+
0xf85c413c => 'videoSizeEmojiMarkup',
|
|
2188
|
+
0xf8654027 => 'contacts.exportContactToken',
|
|
2189
|
+
0xf888fa1a => 'privacyValueDisallowContacts',
|
|
2190
|
+
0xf89777f2 => 'channelAdminLogEventActionParticipantLeave',
|
|
2191
|
+
0xf89a6a4e => 'updateChat',
|
|
2192
|
+
0xf8ab7dfb => 'inputMediaContact',
|
|
2193
|
+
0xf8b036af => 'channels.getAdminedPublicChannels',
|
|
2194
|
+
0xf8ec284b => 'peerSelfLocated',
|
|
2195
|
+
0xf92424d2 => 'channelAdminLogEventActionParticipantMute',
|
|
2196
|
+
0xf93cd45c => 'botVerification',
|
|
2197
|
+
0xf9470ab2 => 'updateQuickReplies',
|
|
2198
|
+
0xf9677aad => 'starsTransactionPeerAPI',
|
|
2199
|
+
0xf96e55de => 'messages.uninstallStickerSet',
|
|
2200
|
+
0xf9a2a6cb => 'inputStorePaymentStarsTopup',
|
|
2201
|
+
0xf9c44144 => 'inputMediaGeoPoint',
|
|
2202
|
+
0xf9c8bcc6 => 'webDocumentNoProxy',
|
|
2203
|
+
0xf9cbe409 => 'messages.deletePhoneCallHistory',
|
|
2204
|
+
0xfa04579d => 'messageEntityMention',
|
|
2205
|
+
0xfa0f3ca2 => 'updatePinnedDialogs',
|
|
2206
|
+
0xfa3efb95 => 'photoSizeProgressive',
|
|
2207
|
+
0xfa4f0bb5 => 'inputFileBig',
|
|
2208
|
+
0xfa58b6d4 => 'themeSettings',
|
|
2209
|
+
0xfa87f659 => 'chatlists.chatlistInviteAlready',
|
|
2210
|
+
0xfa8cc6f5 => 'account.reportProfilePhoto',
|
|
2211
|
+
0xfabadc5f => 'inputPrivacyKeyPhoneCall',
|
|
2212
|
+
0xfae69f56 => 'messageActionCustomAction',
|
|
2213
|
+
0xfaf7e8c9 => 'phoneCallDiscardReasonBusy',
|
|
2214
|
+
0xfaff629d => 'messages.myStickers',
|
|
2215
|
+
0xfb197a65 => 'photo',
|
|
2216
|
+
0xfb4c496c => 'updateReadFeaturedEmojiStickers',
|
|
2217
|
+
0xfb790393 => 'inputStorePaymentPremiumGiftCode',
|
|
2218
|
+
0xfb834291 => 'topPeerCategoryPeers',
|
|
2219
|
+
0xfb8fe43c => 'payments.savedInfo',
|
|
2220
|
+
0xfbd2c296 => 'inputFolderPeer',
|
|
2221
|
+
0xfbd3de6b => 'account.updateEmojiStatus',
|
|
2222
|
+
0xfbd81688 => 'baseThemeDay',
|
|
2223
|
+
0xfbeec0f0 => 'topPeerCategoryForwardChats',
|
|
2224
|
+
0xfbf6e8b1 => 'account.savedRingtonesNotModified',
|
|
2225
|
+
0xfbfca18f => 'messages.getEmojiStickers',
|
|
2226
|
+
0xfc36954e => 'secureValueTypeUtilityBill',
|
|
2227
|
+
0xfc78af9b => 'messages.report',
|
|
2228
|
+
0xfc796b3f => 'keyboardButtonRequestGeoLocation',
|
|
2229
|
+
0xfc878fc8 => 'phoneCallProtocol',
|
|
2230
|
+
0xfc8ddbea => 'account.getWallPaper',
|
|
2231
|
+
0xfcaafeb7 => 'inputDialogPeer',
|
|
2232
|
+
0xfcfeb29c => 'stickerKeyword',
|
|
2233
|
+
0xfd149899 => 'documentAttributeCustomEmoji',
|
|
2234
|
+
0xfd2dda49 => 'messages.toggleDialogFilterTags',
|
|
2235
|
+
0xfd5e12bd => 'messages.webPage',
|
|
2236
|
+
0xfd5ec8f5 => 'sendMessageCancelAction',
|
|
2237
|
+
0xfd9e7bec => 'topPeerCategoryBotsApp',
|
|
2238
|
+
0xfda68d36 => 'messages.getMessageEditData',
|
|
2239
|
+
0xfdb19008 => 'messageMediaGame',
|
|
2240
|
+
0xfdbcd714 => 'chatlists.getLeaveChatlistSuggestions',
|
|
2241
|
+
0xfe05dc9a => 'messages.sendMessage',
|
|
2242
|
+
0xfe06823f => 'inputGroupCallSlug',
|
|
2243
|
+
0xfe198602 => 'updateChannelPinnedTopics',
|
|
2244
|
+
0xfe2eda76 => 'account.toggleNoPaidMessagesException',
|
|
2245
|
+
0xfe41b34f => 'globalPrivacySettings',
|
|
2246
|
+
0xfe685355 => 'channel',
|
|
2247
|
+
0xfe74ef9f => 'account.getUniqueGiftChatThemes',
|
|
2248
|
+
0xfe9fc158 => 'channelAdminLogEventActionParticipantJoinByInvite',
|
|
2249
|
+
0xfebe5491 => 'starsRevenueStatus',
|
|
2250
|
+
0xfeed5769 => 'account.installWallPaper',
|
|
2251
|
+
0xff16e2ca => 'pollAnswer',
|
|
2252
|
+
0xff544e65 => 'folder',
|
|
2253
|
+
0xff57708d => 'messages.preparedInlineMessage',
|
|
2254
|
+
0xff6c8049 => 'notificationSoundRingtone',
|
|
2255
|
+
0xff7a9383 => 'phone.sendSignalingData',
|
|
2256
|
+
0xff9289f5 => 'timezone',
|
|
2257
|
+
0xffa00ccc => 'messageActionPaymentSentMe',
|
|
2258
|
+
0xffadc913 => 'storyItemSkipped',
|
|
2259
|
+
0xffb62b95 => 'inputStickerSetEmpty',
|
|
2260
|
+
0xffb6d4ca => 'stickers.changeStickerPosition',
|
|
2261
|
+
0xffc86587 => 'inputMessagesFilterGif',
|
|
2262
|
+
0xffda656d => 'messages.sponsoredMessages',
|
|
2263
|
+
0xfff8fdc4 => 'inputBotInlineResultDocument',
|
|
2264
|
+
0xfffe1bac => 'privacyValueAllowContacts'
|
|
2265
|
+
}.freeze
|
|
2266
|
+
end
|
|
2267
|
+
end
|
|
2268
|
+
end
|
|
2269
|
+
# rubocop:enable Metrics/ModuleLength
|