api.tl 228 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667
  1. boolFalse#bc799737 = Bool;
  2. boolTrue#997275b5 = Bool;
  3. true#3fedd339 = True;
  4. vector#1cb5c415 {t:Type} # [ t ] = Vector t;
  5. error#c4b9f9bb code:int text:string = Error;
  6. null#56730bcc = Null;
  7. inputPeerEmpty#7f3b18ea = InputPeer;
  8. inputPeerSelf#7da07ec9 = InputPeer;
  9. inputPeerChat#35a95cb9 chat_id:long = InputPeer;
  10. inputPeerUser#dde8a54c user_id:long access_hash:long = InputPeer;
  11. inputPeerChannel#27bcbbfc channel_id:long access_hash:long = InputPeer;
  12. inputPeerUserFromMessage#a87b0a1c peer:InputPeer msg_id:int user_id:long = InputPeer;
  13. inputPeerChannelFromMessage#bd2a0840 peer:InputPeer msg_id:int channel_id:long = InputPeer;
  14. inputUserEmpty#b98886cf = InputUser;
  15. inputUserSelf#f7c1b13f = InputUser;
  16. inputUser#f21158c6 user_id:long access_hash:long = InputUser;
  17. inputUserFromMessage#1da448e2 peer:InputPeer msg_id:int user_id:long = InputUser;
  18. inputPhoneContact#f392b7f4 client_id:long phone:string first_name:string last_name:string = InputContact;
  19. inputFile#f52ff27f id:long parts:int name:string md5_checksum:string = InputFile;
  20. inputFileBig#fa4f0bb5 id:long parts:int name:string = InputFile;
  21. inputFileStoryDocument#62dc8b48 id:InputDocument = InputFile;
  22. inputMediaEmpty#9664f57f = InputMedia;
  23. inputMediaUploadedPhoto#1e287d04 flags:# spoiler:flags.2?true file:InputFile stickers:flags.0?Vector<InputDocument> ttl_seconds:flags.1?int = InputMedia;
  24. inputMediaPhoto#b3ba0635 flags:# spoiler:flags.1?true id:InputPhoto ttl_seconds:flags.0?int = InputMedia;
  25. inputMediaGeoPoint#f9c44144 geo_point:InputGeoPoint = InputMedia;
  26. inputMediaContact#f8ab7dfb phone_number:string first_name:string last_name:string vcard:string = InputMedia;
  27. inputMediaUploadedDocument#37c9330 flags:# nosound_video:flags.3?true force_file:flags.4?true spoiler:flags.5?true file:InputFile thumb:flags.2?InputFile mime_type:string attributes:Vector<DocumentAttribute> stickers:flags.0?Vector<InputDocument> video_cover:flags.6?InputPhoto video_timestamp:flags.7?int ttl_seconds:flags.1?int = InputMedia;
  28. inputMediaDocument#a8763ab5 flags:# spoiler:flags.2?true id:InputDocument video_cover:flags.3?InputPhoto video_timestamp:flags.4?int ttl_seconds:flags.0?int query:flags.1?string = InputMedia;
  29. inputMediaVenue#c13d1c11 geo_point:InputGeoPoint title:string address:string provider:string venue_id:string venue_type:string = InputMedia;
  30. inputMediaPhotoExternal#e5bbfe1a flags:# spoiler:flags.1?true url:string ttl_seconds:flags.0?int = InputMedia;
  31. inputMediaDocumentExternal#779600f9 flags:# spoiler:flags.1?true url:string ttl_seconds:flags.0?int video_cover:flags.2?InputPhoto video_timestamp:flags.3?int = InputMedia;
  32. inputMediaGame#d33f43f3 id:InputGame = InputMedia;
  33. inputMediaInvoice#405fef0d flags:# title:string description:string photo:flags.0?InputWebDocument invoice:Invoice payload:bytes provider:flags.3?string provider_data:DataJSON start_param:flags.1?string extended_media:flags.2?InputMedia = InputMedia;
  34. inputMediaGeoLive#971fa843 flags:# stopped:flags.0?true geo_point:InputGeoPoint heading:flags.2?int period:flags.1?int proximity_notification_radius:flags.3?int = InputMedia;
  35. inputMediaPoll#f94e5f1 flags:# poll:Poll correct_answers:flags.0?Vector<bytes> solution:flags.1?string solution_entities:flags.1?Vector<MessageEntity> = InputMedia;
  36. inputMediaDice#e66fbf7b emoticon:string = InputMedia;
  37. inputMediaStory#89fdd778 peer:InputPeer id:int = InputMedia;
  38. inputMediaWebPage#c21b8849 flags:# force_large_media:flags.0?true force_small_media:flags.1?true optional:flags.2?true url:string = InputMedia;
  39. inputMediaPaidMedia#c4103386 flags:# stars_amount:long extended_media:Vector<InputMedia> payload:flags.0?string = InputMedia;
  40. inputChatPhotoEmpty#1ca48f57 = InputChatPhoto;
  41. inputChatUploadedPhoto#bdcdaec0 flags:# file:flags.0?InputFile video:flags.1?InputFile video_start_ts:flags.2?double video_emoji_markup:flags.3?VideoSize = InputChatPhoto;
  42. inputChatPhoto#8953ad37 id:InputPhoto = InputChatPhoto;
  43. inputGeoPointEmpty#e4c123d6 = InputGeoPoint;
  44. inputGeoPoint#48222faf flags:# lat:double long:double accuracy_radius:flags.0?int = InputGeoPoint;
  45. inputPhotoEmpty#1cd7bf0d = InputPhoto;
  46. inputPhoto#3bb3b94a id:long access_hash:long file_reference:bytes = InputPhoto;
  47. inputFileLocation#dfdaabe1 volume_id:long local_id:int secret:long file_reference:bytes = InputFileLocation;
  48. inputEncryptedFileLocation#f5235d55 id:long access_hash:long = InputFileLocation;
  49. inputDocumentFileLocation#bad07584 id:long access_hash:long file_reference:bytes thumb_size:string = InputFileLocation;
  50. inputSecureFileLocation#cbc7ee28 id:long access_hash:long = InputFileLocation;
  51. inputTakeoutFileLocation#29be5899 = InputFileLocation;
  52. inputPhotoFileLocation#40181ffe id:long access_hash:long file_reference:bytes thumb_size:string = InputFileLocation;
  53. inputPhotoLegacyFileLocation#d83466f3 id:long access_hash:long file_reference:bytes volume_id:long local_id:int secret:long = InputFileLocation;
  54. inputPeerPhotoFileLocation#37257e99 flags:# big:flags.0?true peer:InputPeer photo_id:long = InputFileLocation;
  55. inputStickerSetThumb#9d84f3db stickerset:InputStickerSet thumb_version:int = InputFileLocation;
  56. inputGroupCallStream#598a92a flags:# call:InputGroupCall time_ms:long scale:int video_channel:flags.0?int video_quality:flags.0?int = InputFileLocation;
  57. peerUser#59511722 user_id:long = Peer;
  58. peerChat#36c6019a chat_id:long = Peer;
  59. peerChannel#a2a5371e channel_id:long = Peer;
  60. storage.fileUnknown#aa963b05 = storage.FileType;
  61. storage.filePartial#40bc6f52 = storage.FileType;
  62. storage.fileJpeg#7efe0e = storage.FileType;
  63. storage.fileGif#cae1aadf = storage.FileType;
  64. storage.filePng#a4f63c0 = storage.FileType;
  65. storage.filePdf#ae1e508d = storage.FileType;
  66. storage.fileMp3#528a0677 = storage.FileType;
  67. storage.fileMov#4b09ebbc = storage.FileType;
  68. storage.fileMp4#b3cea0e4 = storage.FileType;
  69. storage.fileWebp#1081464c = storage.FileType;
  70. userEmpty#d3bc4b7a id:long = User;
  71. user#20b1422 flags:# self:flags.10?true contact:flags.11?true mutual_contact:flags.12?true deleted:flags.13?true bot:flags.14?true bot_chat_history:flags.15?true bot_nochats:flags.16?true verified:flags.17?true restricted:flags.18?true min:flags.20?true bot_inline_geo:flags.21?true support:flags.23?true scam:flags.24?true apply_min_photo:flags.25?true fake:flags.26?true bot_attach_menu:flags.27?true premium:flags.28?true attach_menu_enabled:flags.29?true flags2:# bot_can_edit:flags2.1?true close_friend:flags2.2?true stories_hidden:flags2.3?true stories_unavailable:flags2.4?true contact_require_premium:flags2.10?true bot_business:flags2.11?true bot_has_main_app:flags2.13?true id:long access_hash:flags.0?long first_name:flags.1?string last_name:flags.2?string username:flags.3?string phone:flags.4?string photo:flags.5?UserProfilePhoto status:flags.6?UserStatus bot_info_version:flags.14?int restriction_reason:flags.18?Vector<RestrictionReason> bot_inline_placeholder:flags.19?string lang_code:flags.22?string emoji_status:flags.30?EmojiStatus usernames:flags2.0?Vector<Username> stories_max_id:flags2.5?int color:flags2.8?PeerColor profile_color:flags2.9?PeerColor bot_active_users:flags2.12?int bot_verification_icon:flags2.14?long send_paid_messages_stars:flags2.15?long = User;
  72. userProfilePhotoEmpty#4f11bae1 = UserProfilePhoto;
  73. userProfilePhoto#82d1f706 flags:# has_video:flags.0?true personal:flags.2?true photo_id:long stripped_thumb:flags.1?bytes dc_id:int = UserProfilePhoto;
  74. userStatusEmpty#9d05049 = UserStatus;
  75. userStatusOnline#edb93949 expires:int = UserStatus;
  76. userStatusOffline#8c703f was_online:int = UserStatus;
  77. userStatusRecently#7b197dc8 flags:# by_me:flags.0?true = UserStatus;
  78. userStatusLastWeek#541a1d1a flags:# by_me:flags.0?true = UserStatus;
  79. userStatusLastMonth#65899777 flags:# by_me:flags.0?true = UserStatus;
  80. chatEmpty#29562865 id:long = Chat;
  81. chat#41cbf256 flags:# creator:flags.0?true left:flags.2?true deactivated:flags.5?true call_active:flags.23?true call_not_empty:flags.24?true noforwards:flags.25?true id:long title:string photo:ChatPhoto participants_count:int date:int version:int migrated_to:flags.6?InputChannel admin_rights:flags.14?ChatAdminRights default_banned_rights:flags.18?ChatBannedRights = Chat;
  82. chatForbidden#6592a1a7 id:long title:string = Chat;
  83. channel#7482147e flags:# creator:flags.0?true left:flags.2?true broadcast:flags.5?true verified:flags.7?true megagroup:flags.8?true restricted:flags.9?true signatures:flags.11?true min:flags.12?true scam:flags.19?true has_link:flags.20?true has_geo:flags.21?true slowmode_enabled:flags.22?true call_active:flags.23?true call_not_empty:flags.24?true fake:flags.25?true gigagroup:flags.26?true noforwards:flags.27?true join_to_send:flags.28?true join_request:flags.29?true forum:flags.30?true flags2:# stories_hidden:flags2.1?true stories_hidden_min:flags2.2?true stories_unavailable:flags2.3?true signature_profiles:flags2.12?true id:long access_hash:flags.13?long title:string username:flags.6?string photo:ChatPhoto date:int restriction_reason:flags.9?Vector<RestrictionReason> admin_rights:flags.14?ChatAdminRights banned_rights:flags.15?ChatBannedRights default_banned_rights:flags.18?ChatBannedRights participants_count:flags.17?int usernames:flags2.0?Vector<Username> stories_max_id:flags2.4?int color:flags2.7?PeerColor profile_color:flags2.8?PeerColor emoji_status:flags2.9?EmojiStatus level:flags2.10?int subscription_until_date:flags2.11?int bot_verification_icon:flags2.13?long send_paid_messages_stars:flags2.14?long = Chat;
  84. channelForbidden#17d493d5 flags:# broadcast:flags.5?true megagroup:flags.8?true id:long access_hash:long title:string until_date:flags.16?int = Chat;
  85. chatFull#2633421b flags:# can_set_username:flags.7?true has_scheduled:flags.8?true translations_disabled:flags.19?true id:long about:string participants:ChatParticipants chat_photo:flags.2?Photo notify_settings:PeerNotifySettings exported_invite:flags.13?ExportedChatInvite bot_info:flags.3?Vector<BotInfo> pinned_msg_id:flags.6?int folder_id:flags.11?int call:flags.12?InputGroupCall ttl_period:flags.14?int groupcall_default_join_as:flags.15?Peer theme_emoticon:flags.16?string requests_pending:flags.17?int recent_requesters:flags.17?Vector<long> available_reactions:flags.18?ChatReactions reactions_limit:flags.20?int = ChatFull;
  86. channelFull#52d6806b flags:# can_view_participants:flags.3?true can_set_username:flags.6?true can_set_stickers:flags.7?true hidden_prehistory:flags.10?true can_set_location:flags.16?true has_scheduled:flags.19?true can_view_stats:flags.20?true blocked:flags.22?true flags2:# can_delete_channel:flags2.0?true antispam:flags2.1?true participants_hidden:flags2.2?true translations_disabled:flags2.3?true stories_pinned_available:flags2.5?true view_forum_as_messages:flags2.6?true restricted_sponsored:flags2.11?true can_view_revenue:flags2.12?true paid_media_allowed:flags2.14?true can_view_stars_revenue:flags2.15?true paid_reactions_available:flags2.16?true stargifts_available:flags2.19?true paid_messages_available:flags2.20?true id:long about:string participants_count:flags.0?int admins_count:flags.1?int kicked_count:flags.2?int banned_count:flags.2?int online_count:flags.13?int read_inbox_max_id:int read_outbox_max_id:int unread_count:int chat_photo:Photo notify_settings:PeerNotifySettings exported_invite:flags.23?ExportedChatInvite bot_info:Vector<BotInfo> migrated_from_chat_id:flags.4?long migrated_from_max_id:flags.4?int pinned_msg_id:flags.5?int stickerset:flags.8?StickerSet available_min_id:flags.9?int folder_id:flags.11?int linked_chat_id:flags.14?long location:flags.15?ChannelLocation slowmode_seconds:flags.17?int slowmode_next_send_date:flags.18?int stats_dc:flags.12?int pts:int call:flags.21?InputGroupCall ttl_period:flags.24?int pending_suggestions:flags.25?Vector<string> groupcall_default_join_as:flags.26?Peer theme_emoticon:flags.27?string requests_pending:flags.28?int recent_requesters:flags.28?Vector<long> default_send_as:flags.29?Peer available_reactions:flags.30?ChatReactions reactions_limit:flags2.13?int stories:flags2.4?PeerStories wallpaper:flags2.7?WallPaper boosts_applied:flags2.8?int boosts_unrestrict:flags2.9?int emojiset:flags2.10?StickerSet bot_verification:flags2.17?BotVerification stargifts_count:flags2.18?int = ChatFull;
  87. chatParticipant#c02d4007 user_id:long inviter_id:long date:int = ChatParticipant;
  88. chatParticipantCreator#e46bcee4 user_id:long = ChatParticipant;
  89. chatParticipantAdmin#a0933f5b user_id:long inviter_id:long date:int = ChatParticipant;
  90. chatParticipantsForbidden#8763d3e1 flags:# chat_id:long self_participant:flags.0?ChatParticipant = ChatParticipants;
  91. chatParticipants#3cbc93f8 chat_id:long participants:Vector<ChatParticipant> version:int = ChatParticipants;
  92. chatPhotoEmpty#37c1011c = ChatPhoto;
  93. chatPhoto#1c6e1c11 flags:# has_video:flags.0?true photo_id:long stripped_thumb:flags.1?bytes dc_id:int = ChatPhoto;
  94. messageEmpty#90a6ca84 flags:# id:int peer_id:flags.0?Peer = Message;
  95. message#eabcdd4d flags:# out:flags.1?true mentioned:flags.4?true media_unread:flags.5?true silent:flags.13?true post:flags.14?true from_scheduled:flags.18?true legacy:flags.19?true edit_hide:flags.21?true pinned:flags.24?true noforwards:flags.26?true invert_media:flags.27?true flags2:# offline:flags2.1?true video_processing_pending:flags2.4?true id:int from_id:flags.8?Peer from_boosts_applied:flags.29?int peer_id:Peer saved_peer_id:flags.28?Peer fwd_from:flags.2?MessageFwdHeader via_bot_id:flags.11?long via_business_bot_id:flags2.0?long reply_to:flags.3?MessageReplyHeader date:int message:string media:flags.9?MessageMedia reply_markup:flags.6?ReplyMarkup entities:flags.7?Vector<MessageEntity> views:flags.10?int forwards:flags.10?int replies:flags.23?MessageReplies edit_date:flags.15?int post_author:flags.16?string grouped_id:flags.17?long reactions:flags.20?MessageReactions restriction_reason:flags.22?Vector<RestrictionReason> ttl_period:flags.25?int quick_reply_shortcut_id:flags.30?int effect:flags2.2?long factcheck:flags2.3?FactCheck report_delivery_until_date:flags2.5?int paid_message_stars:flags2.6?long = Message;
  96. messageService#d3d28540 flags:# out:flags.1?true mentioned:flags.4?true media_unread:flags.5?true reactions_are_possible:flags.9?true silent:flags.13?true post:flags.14?true legacy:flags.19?true id:int from_id:flags.8?Peer peer_id:Peer reply_to:flags.3?MessageReplyHeader date:int action:MessageAction reactions:flags.20?MessageReactions ttl_period:flags.25?int = Message;
  97. messageMediaEmpty#3ded6320 = MessageMedia;
  98. messageMediaPhoto#695150d7 flags:# spoiler:flags.3?true photo:flags.0?Photo ttl_seconds:flags.2?int = MessageMedia;
  99. messageMediaGeo#56e0d474 geo:GeoPoint = MessageMedia;
  100. messageMediaContact#70322949 phone_number:string first_name:string last_name:string vcard:string user_id:long = MessageMedia;
  101. messageMediaUnsupported#9f84f49e = MessageMedia;
  102. messageMediaDocument#52d8ccd9 flags:# nopremium:flags.3?true spoiler:flags.4?true video:flags.6?true round:flags.7?true voice:flags.8?true document:flags.0?Document alt_documents:flags.5?Vector<Document> video_cover:flags.9?Photo video_timestamp:flags.10?int ttl_seconds:flags.2?int = MessageMedia;
  103. messageMediaWebPage#ddf10c3b flags:# force_large_media:flags.0?true force_small_media:flags.1?true manual:flags.3?true safe:flags.4?true webpage:WebPage = MessageMedia;
  104. messageMediaVenue#2ec0533f geo:GeoPoint title:string address:string provider:string venue_id:string venue_type:string = MessageMedia;
  105. messageMediaGame#fdb19008 game:Game = MessageMedia;
  106. messageMediaInvoice#f6a548d3 flags:# shipping_address_requested:flags.1?true test:flags.3?true title:string description:string photo:flags.0?WebDocument receipt_msg_id:flags.2?int currency:string total_amount:long start_param:string extended_media:flags.4?MessageExtendedMedia = MessageMedia;
  107. messageMediaGeoLive#b940c666 flags:# geo:GeoPoint heading:flags.0?int period:int proximity_notification_radius:flags.1?int = MessageMedia;
  108. messageMediaPoll#4bd6e798 poll:Poll results:PollResults = MessageMedia;
  109. messageMediaDice#3f7ee58b value:int emoticon:string = MessageMedia;
  110. messageMediaStory#68cb6283 flags:# via_mention:flags.1?true peer:Peer id:int story:flags.0?StoryItem = MessageMedia;
  111. messageMediaGiveaway#aa073beb flags:# only_new_subscribers:flags.0?true winners_are_visible:flags.2?true channels:Vector<long> countries_iso2:flags.1?Vector<string> prize_description:flags.3?string quantity:int months:flags.4?int stars:flags.5?long until_date:int = MessageMedia;
  112. messageMediaGiveawayResults#ceaa3ea1 flags:# only_new_subscribers:flags.0?true refunded:flags.2?true channel_id:long additional_peers_count:flags.3?int launch_msg_id:int winners_count:int unclaimed_count:int winners:Vector<long> months:flags.4?int stars:flags.5?long prize_description:flags.1?string until_date:int = MessageMedia;
  113. messageMediaPaidMedia#a8852491 stars_amount:long extended_media:Vector<MessageExtendedMedia> = MessageMedia;
  114. messageActionEmpty#b6aef7b0 = MessageAction;
  115. messageActionChatCreate#bd47cbad title:string users:Vector<long> = MessageAction;
  116. messageActionChatEditTitle#b5a1ce5a title:string = MessageAction;
  117. messageActionChatEditPhoto#7fcb13a8 photo:Photo = MessageAction;
  118. messageActionChatDeletePhoto#95e3fbef = MessageAction;
  119. messageActionChatAddUser#15cefd00 users:Vector<long> = MessageAction;
  120. messageActionChatDeleteUser#a43f30cc user_id:long = MessageAction;
  121. messageActionChatJoinedByLink#31224c3 inviter_id:long = MessageAction;
  122. messageActionChannelCreate#95d2ac92 title:string = MessageAction;
  123. messageActionChatMigrateTo#e1037f92 channel_id:long = MessageAction;
  124. messageActionChannelMigrateFrom#ea3948e9 title:string chat_id:long = MessageAction;
  125. messageActionPinMessage#94bd38ed = MessageAction;
  126. messageActionHistoryClear#9fbab604 = MessageAction;
  127. messageActionGameScore#92a72876 game_id:long score:int = MessageAction;
  128. messageActionPaymentSentMe#ffa00ccc flags:# recurring_init:flags.2?true recurring_used:flags.3?true currency:string total_amount:long payload:bytes info:flags.0?PaymentRequestedInfo shipping_option_id:flags.1?string charge:PaymentCharge subscription_until_date:flags.4?int = MessageAction;
  129. messageActionPaymentSent#c624b16e flags:# recurring_init:flags.2?true recurring_used:flags.3?true currency:string total_amount:long invoice_slug:flags.0?string subscription_until_date:flags.4?int = MessageAction;
  130. messageActionPhoneCall#80e11a7f flags:# video:flags.2?true call_id:long reason:flags.0?PhoneCallDiscardReason duration:flags.1?int = MessageAction;
  131. messageActionScreenshotTaken#4792929b = MessageAction;
  132. messageActionCustomAction#fae69f56 message:string = MessageAction;
  133. messageActionBotAllowed#c516d679 flags:# attach_menu:flags.1?true from_request:flags.3?true domain:flags.0?string app:flags.2?BotApp = MessageAction;
  134. messageActionSecureValuesSentMe#1b287353 values:Vector<SecureValue> credentials:SecureCredentialsEncrypted = MessageAction;
  135. messageActionSecureValuesSent#d95c6154 types:Vector<SecureValueType> = MessageAction;
  136. messageActionContactSignUp#f3f25f76 = MessageAction;
  137. messageActionGeoProximityReached#98e0d697 from_id:Peer to_id:Peer distance:int = MessageAction;
  138. messageActionGroupCall#7a0d7f42 flags:# call:InputGroupCall duration:flags.0?int = MessageAction;
  139. messageActionInviteToGroupCall#502f92f7 call:InputGroupCall users:Vector<long> = MessageAction;
  140. messageActionSetMessagesTTL#3c134d7b flags:# period:int auto_setting_from:flags.0?long = MessageAction;
  141. messageActionGroupCallScheduled#b3a07661 call:InputGroupCall schedule_date:int = MessageAction;
  142. messageActionSetChatTheme#aa786345 emoticon:string = MessageAction;
  143. messageActionChatJoinedByRequest#ebbca3cb = MessageAction;
  144. messageActionWebViewDataSentMe#47dd8079 text:string data:string = MessageAction;
  145. messageActionWebViewDataSent#b4c38cb5 text:string = MessageAction;
  146. messageActionGiftPremium#6c6274fa flags:# currency:string amount:long months:int crypto_currency:flags.0?string crypto_amount:flags.0?long message:flags.1?TextWithEntities = MessageAction;
  147. messageActionTopicCreate#d999256 flags:# title:string icon_color:int icon_emoji_id:flags.0?long = MessageAction;
  148. messageActionTopicEdit#c0944820 flags:# title:flags.0?string icon_emoji_id:flags.1?long closed:flags.2?Bool hidden:flags.3?Bool = MessageAction;
  149. messageActionSuggestProfilePhoto#57de635e photo:Photo = MessageAction;
  150. messageActionRequestedPeer#31518e9b button_id:int peers:Vector<Peer> = MessageAction;
  151. messageActionSetChatWallPaper#5060a3f4 flags:# same:flags.0?true for_both:flags.1?true wallpaper:WallPaper = MessageAction;
  152. messageActionGiftCode#56d03994 flags:# via_giveaway:flags.0?true unclaimed:flags.5?true boost_peer:flags.1?Peer months:int slug:string currency:flags.2?string amount:flags.2?long crypto_currency:flags.3?string crypto_amount:flags.3?long message:flags.4?TextWithEntities = MessageAction;
  153. messageActionGiveawayLaunch#a80f51e4 flags:# stars:flags.0?long = MessageAction;
  154. messageActionGiveawayResults#87e2f155 flags:# stars:flags.0?true winners_count:int unclaimed_count:int = MessageAction;
  155. messageActionBoostApply#cc02aa6d boosts:int = MessageAction;
  156. messageActionRequestedPeerSentMe#93b31848 button_id:int peers:Vector<RequestedPeer> = MessageAction;
  157. messageActionPaymentRefunded#41b3e202 flags:# peer:Peer currency:string total_amount:long payload:flags.0?bytes charge:PaymentCharge = MessageAction;
  158. messageActionGiftStars#45d5b021 flags:# currency:string amount:long stars:long crypto_currency:flags.0?string crypto_amount:flags.0?long transaction_id:flags.1?string = MessageAction;
  159. messageActionPrizeStars#b00c47a2 flags:# unclaimed:flags.0?true stars:long transaction_id:string boost_peer:Peer giveaway_msg_id:int = MessageAction;
  160. messageActionStarGift#4717e8a4 flags:# name_hidden:flags.0?true saved:flags.2?true converted:flags.3?true upgraded:flags.5?true refunded:flags.9?true can_upgrade:flags.10?true gift:StarGift message:flags.1?TextWithEntities convert_stars:flags.4?long upgrade_msg_id:flags.5?int upgrade_stars:flags.8?long from_id:flags.11?Peer peer:flags.12?Peer saved_id:flags.12?long = MessageAction;
  161. messageActionStarGiftUnique#acdfcb81 flags:# upgrade:flags.0?true transferred:flags.1?true saved:flags.2?true refunded:flags.5?true gift:StarGift can_export_at:flags.3?int transfer_stars:flags.4?long from_id:flags.6?Peer peer:flags.7?Peer saved_id:flags.7?long = MessageAction;
  162. dialog#d58a08c6 flags:# pinned:flags.2?true unread_mark:flags.3?true view_forum_as_messages:flags.6?true peer:Peer top_message:int read_inbox_max_id:int read_outbox_max_id:int unread_count:int unread_mentions_count:int unread_reactions_count:int notify_settings:PeerNotifySettings pts:flags.0?int draft:flags.1?DraftMessage folder_id:flags.4?int ttl_period:flags.5?int = Dialog;
  163. dialogFolder#71bd134c flags:# pinned:flags.2?true folder:Folder peer:Peer top_message:int unread_muted_peers_count:int unread_unmuted_peers_count:int unread_muted_messages_count:int unread_unmuted_messages_count:int = Dialog;
  164. photoEmpty#2331b22d id:long = Photo;
  165. photo#fb197a65 flags:# has_stickers:flags.0?true id:long access_hash:long file_reference:bytes date:int sizes:Vector<PhotoSize> video_sizes:flags.1?Vector<VideoSize> dc_id:int = Photo;
  166. photoSizeEmpty#e17e23c type:string = PhotoSize;
  167. photoSize#75c78e60 type:string w:int h:int size:int = PhotoSize;
  168. photoCachedSize#21e1ad6 type:string w:int h:int bytes:bytes = PhotoSize;
  169. photoStrippedSize#e0b0bc2e type:string bytes:bytes = PhotoSize;
  170. photoSizeProgressive#fa3efb95 type:string w:int h:int sizes:Vector<int> = PhotoSize;
  171. photoPathSize#d8214d41 type:string bytes:bytes = PhotoSize;
  172. geoPointEmpty#1117dd5f = GeoPoint;
  173. geoPoint#b2a2f663 flags:# long:double lat:double access_hash:long accuracy_radius:flags.0?int = GeoPoint;
  174. auth.sentCode#5e002502 flags:# type:auth.SentCodeType phone_code_hash:string next_type:flags.1?auth.CodeType timeout:flags.2?int = auth.SentCode;
  175. auth.sentCodeSuccess#2390fe44 authorization:auth.Authorization = auth.SentCode;
  176. auth.authorization#2ea2c0d4 flags:# setup_password_required:flags.1?true otherwise_relogin_days:flags.1?int tmp_sessions:flags.0?int future_auth_token:flags.2?bytes user:User = auth.Authorization;
  177. auth.authorizationSignUpRequired#44747e9a flags:# terms_of_service:flags.0?help.TermsOfService = auth.Authorization;
  178. auth.exportedAuthorization#b434e2b8 id:long bytes:bytes = auth.ExportedAuthorization;
  179. inputNotifyPeer#b8bc5b0c peer:InputPeer = InputNotifyPeer;
  180. inputNotifyUsers#193b4417 = InputNotifyPeer;
  181. inputNotifyChats#4a95e84e = InputNotifyPeer;
  182. inputNotifyBroadcasts#b1db7c7e = InputNotifyPeer;
  183. inputNotifyForumTopic#5c467992 peer:InputPeer top_msg_id:int = InputNotifyPeer;
  184. inputPeerNotifySettings#cacb6ae2 flags:# show_previews:flags.0?Bool silent:flags.1?Bool mute_until:flags.2?int sound:flags.3?NotificationSound stories_muted:flags.6?Bool stories_hide_sender:flags.7?Bool stories_sound:flags.8?NotificationSound = InputPeerNotifySettings;
  185. peerNotifySettings#99622c0c flags:# show_previews:flags.0?Bool silent:flags.1?Bool mute_until:flags.2?int ios_sound:flags.3?NotificationSound android_sound:flags.4?NotificationSound other_sound:flags.5?NotificationSound stories_muted:flags.6?Bool stories_hide_sender:flags.7?Bool stories_ios_sound:flags.8?NotificationSound stories_android_sound:flags.9?NotificationSound stories_other_sound:flags.10?NotificationSound = PeerNotifySettings;
  186. peerSettings#f47741f7 flags:# report_spam:flags.0?true add_contact:flags.1?true block_contact:flags.2?true share_contact:flags.3?true need_contacts_exception:flags.4?true report_geo:flags.5?true autoarchived:flags.7?true invite_members:flags.8?true request_chat_broadcast:flags.10?true business_bot_paused:flags.11?true business_bot_can_reply:flags.12?true geo_distance:flags.6?int request_chat_title:flags.9?string request_chat_date:flags.9?int business_bot_id:flags.13?long business_bot_manage_url:flags.13?string charge_paid_message_stars:flags.14?long registration_month:flags.15?string phone_country:flags.16?string name_change_date:flags.17?int photo_change_date:flags.18?int = PeerSettings;
  187. wallPaper#a437c3ed id:long flags:# creator:flags.0?true default:flags.1?true pattern:flags.3?true dark:flags.4?true access_hash:long slug:string document:Document settings:flags.2?WallPaperSettings = WallPaper;
  188. wallPaperNoFile#e0804116 id:long flags:# default:flags.1?true dark:flags.4?true settings:flags.2?WallPaperSettings = WallPaper;
  189. inputReportReasonSpam#58dbcab8 = ReportReason;
  190. inputReportReasonViolence#1e22c78d = ReportReason;
  191. inputReportReasonPornography#2e59d922 = ReportReason;
  192. inputReportReasonChildAbuse#adf44ee3 = ReportReason;
  193. inputReportReasonOther#c1e4a2b1 = ReportReason;
  194. inputReportReasonCopyright#9b89f93a = ReportReason;
  195. inputReportReasonGeoIrrelevant#dbd4feed = ReportReason;
  196. inputReportReasonFake#f5ddd6e7 = ReportReason;
  197. inputReportReasonIllegalDrugs#a8eb2be = ReportReason;
  198. inputReportReasonPersonalDetails#9ec7863d = ReportReason;
  199. userFull#d2234ea0 flags:# blocked:flags.0?true phone_calls_available:flags.4?true phone_calls_private:flags.5?true can_pin_message:flags.7?true has_scheduled:flags.12?true video_calls_available:flags.13?true voice_messages_forbidden:flags.20?true translations_disabled:flags.23?true stories_pinned_available:flags.26?true blocked_my_stories_from:flags.27?true wallpaper_overridden:flags.28?true contact_require_premium:flags.29?true read_dates_private:flags.30?true flags2:# sponsored_enabled:flags2.7?true can_view_revenue:flags2.9?true bot_can_manage_emoji_status:flags2.10?true id:long about:flags.1?string settings:PeerSettings personal_photo:flags.21?Photo profile_photo:flags.2?Photo fallback_photo:flags.22?Photo notify_settings:PeerNotifySettings bot_info:flags.3?BotInfo pinned_msg_id:flags.6?int common_chats_count:int folder_id:flags.11?int ttl_period:flags.14?int theme_emoticon:flags.15?string private_forward_name:flags.16?string bot_group_admin_rights:flags.17?ChatAdminRights bot_broadcast_admin_rights:flags.18?ChatAdminRights wallpaper:flags.24?WallPaper stories:flags.25?PeerStories business_work_hours:flags2.0?BusinessWorkHours business_location:flags2.1?BusinessLocation business_greeting_message:flags2.2?BusinessGreetingMessage business_away_message:flags2.3?BusinessAwayMessage business_intro:flags2.4?BusinessIntro birthday:flags2.5?Birthday personal_channel_id:flags2.6?long personal_channel_message:flags2.6?int stargifts_count:flags2.8?int starref_program:flags2.11?StarRefProgram bot_verification:flags2.12?BotVerification send_paid_messages_stars:flags2.14?long = UserFull;
  200. contact#145ade0b user_id:long mutual:Bool = Contact;
  201. importedContact#c13e3c50 user_id:long client_id:long = ImportedContact;
  202. contactStatus#16d9703b user_id:long status:UserStatus = ContactStatus;
  203. contacts.contactsNotModified#b74ba9d2 = contacts.Contacts;
  204. contacts.contacts#eae87e42 contacts:Vector<Contact> saved_count:int users:Vector<User> = contacts.Contacts;
  205. contacts.importedContacts#77d01c3b imported:Vector<ImportedContact> popular_invites:Vector<PopularContact> retry_contacts:Vector<long> users:Vector<User> = contacts.ImportedContacts;
  206. contacts.blocked#ade1591 blocked:Vector<PeerBlocked> chats:Vector<Chat> users:Vector<User> = contacts.Blocked;
  207. contacts.blockedSlice#e1664194 count:int blocked:Vector<PeerBlocked> chats:Vector<Chat> users:Vector<User> = contacts.Blocked;
  208. messages.dialogs#15ba6c40 dialogs:Vector<Dialog> messages:Vector<Message> chats:Vector<Chat> users:Vector<User> = messages.Dialogs;
  209. messages.dialogsSlice#71e094f3 count:int dialogs:Vector<Dialog> messages:Vector<Message> chats:Vector<Chat> users:Vector<User> = messages.Dialogs;
  210. messages.dialogsNotModified#f0e3e596 count:int = messages.Dialogs;
  211. messages.messages#8c718e87 messages:Vector<Message> chats:Vector<Chat> users:Vector<User> = messages.Messages;
  212. messages.messagesSlice#3a54685e flags:# inexact:flags.1?true count:int next_rate:flags.0?int offset_id_offset:flags.2?int messages:Vector<Message> chats:Vector<Chat> users:Vector<User> = messages.Messages;
  213. messages.channelMessages#c776ba4e flags:# inexact:flags.1?true pts:int count:int offset_id_offset:flags.2?int messages:Vector<Message> topics:Vector<ForumTopic> chats:Vector<Chat> users:Vector<User> = messages.Messages;
  214. messages.messagesNotModified#74535f21 count:int = messages.Messages;
  215. messages.chats#64ff9fd5 chats:Vector<Chat> = messages.Chats;
  216. messages.chatsSlice#9cd81144 count:int chats:Vector<Chat> = messages.Chats;
  217. messages.chatFull#e5d7d19c full_chat:ChatFull chats:Vector<Chat> users:Vector<User> = messages.ChatFull;
  218. messages.affectedHistory#b45c69d1 pts:int pts_count:int offset:int = messages.AffectedHistory;
  219. inputMessagesFilterEmpty#57e2f66c = MessagesFilter;
  220. inputMessagesFilterPhotos#9609a51c = MessagesFilter;
  221. inputMessagesFilterVideo#9fc00e65 = MessagesFilter;
  222. inputMessagesFilterPhotoVideo#56e9f0e4 = MessagesFilter;
  223. inputMessagesFilterDocument#9eddf188 = MessagesFilter;
  224. inputMessagesFilterUrl#7ef0dd87 = MessagesFilter;
  225. inputMessagesFilterGif#ffc86587 = MessagesFilter;
  226. inputMessagesFilterVoice#50f5c392 = MessagesFilter;
  227. inputMessagesFilterMusic#3751b49e = MessagesFilter;
  228. inputMessagesFilterChatPhotos#3a20ecb8 = MessagesFilter;
  229. inputMessagesFilterPhoneCalls#80c99768 flags:# missed:flags.0?true = MessagesFilter;
  230. inputMessagesFilterRoundVoice#7a7c17a4 = MessagesFilter;
  231. inputMessagesFilterRoundVideo#b549da53 = MessagesFilter;
  232. inputMessagesFilterMyMentions#c1f8e69a = MessagesFilter;
  233. inputMessagesFilterGeo#e7026d0d = MessagesFilter;
  234. inputMessagesFilterContacts#e062db83 = MessagesFilter;
  235. inputMessagesFilterPinned#1bb00451 = MessagesFilter;
  236. updateNewMessage#1f2b0afd message:Message pts:int pts_count:int = Update;
  237. updateMessageID#4e90bfd6 id:int random_id:long = Update;
  238. updateDeleteMessages#a20db0e5 messages:Vector<int> pts:int pts_count:int = Update;
  239. updateUserTyping#c01e857f user_id:long action:SendMessageAction = Update;
  240. updateChatUserTyping#83487af0 chat_id:long from_id:Peer action:SendMessageAction = Update;
  241. updateChatParticipants#7761198 participants:ChatParticipants = Update;
  242. updateUserStatus#e5bdf8de user_id:long status:UserStatus = Update;
  243. updateUserName#a7848924 user_id:long first_name:string last_name:string usernames:Vector<Username> = Update;
  244. updateNewAuthorization#8951abef flags:# unconfirmed:flags.0?true hash:long date:flags.0?int device:flags.0?string location:flags.0?string = Update;
  245. updateNewEncryptedMessage#12bcbd9a message:EncryptedMessage qts:int = Update;
  246. updateEncryptedChatTyping#1710f156 chat_id:int = Update;
  247. updateEncryption#b4a2e88d chat:EncryptedChat date:int = Update;
  248. updateEncryptedMessagesRead#38fe25b7 chat_id:int max_date:int date:int = Update;
  249. updateChatParticipantAdd#3dda5451 chat_id:long user_id:long inviter_id:long date:int version:int = Update;
  250. updateChatParticipantDelete#e32f3d77 chat_id:long user_id:long version:int = Update;
  251. updateDcOptions#8e5e9873 dc_options:Vector<DcOption> = Update;
  252. updateNotifySettings#bec268ef peer:NotifyPeer notify_settings:PeerNotifySettings = Update;
  253. updateServiceNotification#ebe46819 flags:# popup:flags.0?true invert_media:flags.2?true inbox_date:flags.1?int type:string message:string media:MessageMedia entities:Vector<MessageEntity> = Update;
  254. updatePrivacy#ee3b272a key:PrivacyKey rules:Vector<PrivacyRule> = Update;
  255. updateUserPhone#5492a13 user_id:long phone:string = Update;
  256. updateReadHistoryInbox#9c974fdf flags:# folder_id:flags.0?int peer:Peer max_id:int still_unread_count:int pts:int pts_count:int = Update;
  257. updateReadHistoryOutbox#2f2f21bf peer:Peer max_id:int pts:int pts_count:int = Update;
  258. updateWebPage#7f891213 webpage:WebPage pts:int pts_count:int = Update;
  259. updateReadMessagesContents#f8227181 flags:# messages:Vector<int> pts:int pts_count:int date:flags.0?int = Update;
  260. updateChannelTooLong#108d941f flags:# channel_id:long pts:flags.0?int = Update;
  261. updateChannel#635b4c09 channel_id:long = Update;
  262. updateNewChannelMessage#62ba04d9 message:Message pts:int pts_count:int = Update;
  263. updateReadChannelInbox#922e6e10 flags:# folder_id:flags.0?int channel_id:long max_id:int still_unread_count:int pts:int = Update;
  264. updateDeleteChannelMessages#c32d5b12 channel_id:long messages:Vector<int> pts:int pts_count:int = Update;
  265. updateChannelMessageViews#f226ac08 channel_id:long id:int views:int = Update;
  266. updateChatParticipantAdmin#d7ca61a2 chat_id:long user_id:long is_admin:Bool version:int = Update;
  267. updateNewStickerSet#688a30aa stickerset:messages.StickerSet = Update;
  268. updateStickerSetsOrder#bb2d201 flags:# masks:flags.0?true emojis:flags.1?true order:Vector<long> = Update;
  269. updateStickerSets#31c24808 flags:# masks:flags.0?true emojis:flags.1?true = Update;
  270. updateSavedGifs#9375341e = Update;
  271. updateBotInlineQuery#496f379c flags:# query_id:long user_id:long query:string geo:flags.0?GeoPoint peer_type:flags.1?InlineQueryPeerType offset:string = Update;
  272. updateBotInlineSend#12f12a07 flags:# user_id:long query:string geo:flags.0?GeoPoint id:string msg_id:flags.1?InputBotInlineMessageID = Update;
  273. updateEditChannelMessage#1b3f4df7 message:Message pts:int pts_count:int = Update;
  274. updateBotCallbackQuery#b9cfc48d flags:# query_id:long user_id:long peer:Peer msg_id:int chat_instance:long data:flags.0?bytes game_short_name:flags.1?string = Update;
  275. updateEditMessage#e40370a3 message:Message pts:int pts_count:int = Update;
  276. updateInlineBotCallbackQuery#691e9052 flags:# query_id:long user_id:long msg_id:InputBotInlineMessageID chat_instance:long data:flags.0?bytes game_short_name:flags.1?string = Update;
  277. updateReadChannelOutbox#b75f99a9 channel_id:long max_id:int = Update;
  278. updateDraftMessage#1b49ec6d flags:# peer:Peer top_msg_id:flags.0?int draft:DraftMessage = Update;
  279. updateReadFeaturedStickers#571d2742 = Update;
  280. updateRecentStickers#9a422c20 = Update;
  281. updateConfig#a229dd06 = Update;
  282. updatePtsChanged#3354678f = Update;
  283. updateChannelWebPage#2f2ba99f channel_id:long webpage:WebPage pts:int pts_count:int = Update;
  284. updateDialogPinned#6e6fe51c flags:# pinned:flags.0?true folder_id:flags.1?int peer:DialogPeer = Update;
  285. updatePinnedDialogs#fa0f3ca2 flags:# folder_id:flags.1?int order:flags.0?Vector<DialogPeer> = Update;
  286. updateBotWebhookJSON#8317c0c3 data:DataJSON = Update;
  287. updateBotWebhookJSONQuery#9b9240a6 query_id:long data:DataJSON timeout:int = Update;
  288. updateBotShippingQuery#b5aefd7d query_id:long user_id:long payload:bytes shipping_address:PostAddress = Update;
  289. updateBotPrecheckoutQuery#8caa9a96 flags:# query_id:long user_id:long payload:bytes info:flags.0?PaymentRequestedInfo shipping_option_id:flags.1?string currency:string total_amount:long = Update;
  290. updatePhoneCall#ab0f6b1e phone_call:PhoneCall = Update;
  291. updateLangPackTooLong#46560264 lang_code:string = Update;
  292. updateLangPack#56022f4d difference:LangPackDifference = Update;
  293. updateFavedStickers#e511996d = Update;
  294. updateChannelReadMessagesContents#ea29055d flags:# channel_id:long top_msg_id:flags.0?int messages:Vector<int> = Update;
  295. updateContactsReset#7084a7be = Update;
  296. updateChannelAvailableMessages#b23fc698 channel_id:long available_min_id:int = Update;
  297. updateDialogUnreadMark#e16459c3 flags:# unread:flags.0?true peer:DialogPeer = Update;
  298. updateMessagePoll#aca1657b flags:# poll_id:long poll:flags.0?Poll results:PollResults = Update;
  299. updateChatDefaultBannedRights#54c01850 peer:Peer default_banned_rights:ChatBannedRights version:int = Update;
  300. updateFolderPeers#19360dc0 folder_peers:Vector<FolderPeer> pts:int pts_count:int = Update;
  301. updatePeerSettings#6a7e7366 peer:Peer settings:PeerSettings = Update;
  302. updatePeerLocated#b4afcfb0 peers:Vector<PeerLocated> = Update;
  303. updateNewScheduledMessage#39a51dfb message:Message = Update;
  304. updateDeleteScheduledMessages#f2a71983 flags:# peer:Peer messages:Vector<int> sent_messages:flags.0?Vector<int> = Update;
  305. updateTheme#8216fba3 theme:Theme = Update;
  306. updateGeoLiveViewed#871fb939 peer:Peer msg_id:int = Update;
  307. updateLoginToken#564fe691 = Update;
  308. updateMessagePollVote#24f40e77 poll_id:long peer:Peer options:Vector<bytes> qts:int = Update;
  309. updateDialogFilter#26ffde7d flags:# id:int filter:flags.0?DialogFilter = Update;
  310. updateDialogFilterOrder#a5d72105 order:Vector<int> = Update;
  311. updateDialogFilters#3504914f = Update;
  312. updatePhoneCallSignalingData#2661bf09 phone_call_id:long data:bytes = Update;
  313. updateChannelMessageForwards#d29a27f4 channel_id:long id:int forwards:int = Update;
  314. updateReadChannelDiscussionInbox#d6b19546 flags:# channel_id:long top_msg_id:int read_max_id:int broadcast_id:flags.0?long broadcast_post:flags.0?int = Update;
  315. updateReadChannelDiscussionOutbox#695c9e7c channel_id:long top_msg_id:int read_max_id:int = Update;
  316. updatePeerBlocked#ebe07752 flags:# blocked:flags.0?true blocked_my_stories_from:flags.1?true peer_id:Peer = Update;
  317. updateChannelUserTyping#8c88c923 flags:# channel_id:long top_msg_id:flags.0?int from_id:Peer action:SendMessageAction = Update;
  318. updatePinnedMessages#ed85eab5 flags:# pinned:flags.0?true peer:Peer messages:Vector<int> pts:int pts_count:int = Update;
  319. updatePinnedChannelMessages#5bb98608 flags:# pinned:flags.0?true channel_id:long messages:Vector<int> pts:int pts_count:int = Update;
  320. updateChat#f89a6a4e chat_id:long = Update;
  321. updateGroupCallParticipants#f2ebdb4e call:InputGroupCall participants:Vector<GroupCallParticipant> version:int = Update;
  322. updateGroupCall#97d64341 flags:# chat_id:flags.0?long call:GroupCall = Update;
  323. updatePeerHistoryTTL#bb9bb9a5 flags:# peer:Peer ttl_period:flags.0?int = Update;
  324. updateChatParticipant#d087663a flags:# chat_id:long date:int actor_id:long user_id:long prev_participant:flags.0?ChatParticipant new_participant:flags.1?ChatParticipant invite:flags.2?ExportedChatInvite qts:int = Update;
  325. updateChannelParticipant#985d3abb flags:# via_chatlist:flags.3?true channel_id:long date:int actor_id:long user_id:long prev_participant:flags.0?ChannelParticipant new_participant:flags.1?ChannelParticipant invite:flags.2?ExportedChatInvite qts:int = Update;
  326. updateBotStopped#c4870a49 user_id:long date:int stopped:Bool qts:int = Update;
  327. updateGroupCallConnection#b783982 flags:# presentation:flags.0?true params:DataJSON = Update;
  328. updateBotCommands#4d712f2e peer:Peer bot_id:long commands:Vector<BotCommand> = Update;
  329. updatePendingJoinRequests#7063c3db peer:Peer requests_pending:int recent_requesters:Vector<long> = Update;
  330. updateBotChatInviteRequester#11dfa986 peer:Peer date:int user_id:long about:string invite:ExportedChatInvite qts:int = Update;
  331. updateMessageReactions#5e1b3cb8 flags:# peer:Peer msg_id:int top_msg_id:flags.0?int reactions:MessageReactions = Update;
  332. updateAttachMenuBots#17b7a20b = Update;
  333. updateWebViewResultSent#1592b79d query_id:long = Update;
  334. updateBotMenuButton#14b85813 bot_id:long button:BotMenuButton = Update;
  335. updateSavedRingtones#74d8be99 = Update;
  336. updateTranscribedAudio#84cd5a flags:# pending:flags.0?true peer:Peer msg_id:int transcription_id:long text:string = Update;
  337. updateReadFeaturedEmojiStickers#fb4c496c = Update;
  338. updateUserEmojiStatus#28373599 user_id:long emoji_status:EmojiStatus = Update;
  339. updateRecentEmojiStatuses#30f443db = Update;
  340. updateRecentReactions#6f7863f4 = Update;
  341. updateMoveStickerSetToTop#86fccf85 flags:# masks:flags.0?true emojis:flags.1?true stickerset:long = Update;
  342. updateMessageExtendedMedia#d5a41724 peer:Peer msg_id:int extended_media:Vector<MessageExtendedMedia> = Update;
  343. updateChannelPinnedTopic#192efbe3 flags:# pinned:flags.0?true channel_id:long topic_id:int = Update;
  344. updateChannelPinnedTopics#fe198602 flags:# channel_id:long order:flags.0?Vector<int> = Update;
  345. updateUser#20529438 user_id:long = Update;
  346. updateAutoSaveSettings#ec05b097 = Update;
  347. updateStory#75b3b798 peer:Peer story:StoryItem = Update;
  348. updateReadStories#f74e932b peer:Peer max_id:int = Update;
  349. updateStoryID#1bf335b9 id:int random_id:long = Update;
  350. updateStoriesStealthMode#2c084dc1 stealth_mode:StoriesStealthMode = Update;
  351. updateSentStoryReaction#7d627683 peer:Peer story_id:int reaction:Reaction = Update;
  352. updateBotChatBoost#904dd49c peer:Peer boost:Boost qts:int = Update;
  353. updateChannelViewForumAsMessages#7b68920 channel_id:long enabled:Bool = Update;
  354. updatePeerWallpaper#ae3f101d flags:# wallpaper_overridden:flags.1?true peer:Peer wallpaper:flags.0?WallPaper = Update;
  355. updateBotMessageReaction#ac21d3ce peer:Peer msg_id:int date:int actor:Peer old_reactions:Vector<Reaction> new_reactions:Vector<Reaction> qts:int = Update;
  356. updateBotMessageReactions#9cb7759 peer:Peer msg_id:int date:int reactions:Vector<ReactionCount> qts:int = Update;
  357. updateSavedDialogPinned#aeaf9e74 flags:# pinned:flags.0?true peer:DialogPeer = Update;
  358. updatePinnedSavedDialogs#686c85a6 flags:# order:flags.0?Vector<DialogPeer> = Update;
  359. updateSavedReactionTags#39c67432 = Update;
  360. updateSmsJob#f16269d4 job_id:string = Update;
  361. updateQuickReplies#f9470ab2 quick_replies:Vector<QuickReply> = Update;
  362. updateNewQuickReply#f53da717 quick_reply:QuickReply = Update;
  363. updateDeleteQuickReply#53e6f1ec shortcut_id:int = Update;
  364. updateQuickReplyMessage#3e050d0f message:Message = Update;
  365. updateDeleteQuickReplyMessages#566fe7cd shortcut_id:int messages:Vector<int> = Update;
  366. updateBotBusinessConnect#8ae5c97a connection:BotBusinessConnection qts:int = Update;
  367. updateBotNewBusinessMessage#9ddb347c flags:# connection_id:string message:Message reply_to_message:flags.0?Message qts:int = Update;
  368. updateBotEditBusinessMessage#7df587c flags:# connection_id:string message:Message reply_to_message:flags.0?Message qts:int = Update;
  369. updateBotDeleteBusinessMessage#a02a982e connection_id:string peer:Peer messages:Vector<int> qts:int = Update;
  370. updateNewStoryReaction#1824e40b story_id:int peer:Peer reaction:Reaction = Update;
  371. updateBroadcastRevenueTransactions#dfd961f5 peer:Peer balances:BroadcastRevenueBalances = Update;
  372. updateStarsBalance#4e80a379 balance:StarsAmount = Update;
  373. updateBusinessBotCallbackQuery#1ea2fda7 flags:# query_id:long user_id:long connection_id:string message:Message reply_to_message:flags.2?Message chat_instance:long data:flags.0?bytes = Update;
  374. updateStarsRevenueStatus#a584b019 peer:Peer status:StarsRevenueStatus = Update;
  375. updateBotPurchasedPaidMedia#283bd312 user_id:long payload:string qts:int = Update;
  376. updatePaidReactionPrivacy#8b725fce private:PaidReactionPrivacy = Update;
  377. updates.state#a56c2a3e pts:int qts:int date:int seq:int unread_count:int = updates.State;
  378. updates.differenceEmpty#5d75a138 date:int seq:int = updates.Difference;
  379. updates.difference#f49ca0 new_messages:Vector<Message> new_encrypted_messages:Vector<EncryptedMessage> other_updates:Vector<Update> chats:Vector<Chat> users:Vector<User> state:updates.State = updates.Difference;
  380. updates.differenceSlice#a8fb1981 new_messages:Vector<Message> new_encrypted_messages:Vector<EncryptedMessage> other_updates:Vector<Update> chats:Vector<Chat> users:Vector<User> intermediate_state:updates.State = updates.Difference;
  381. updates.differenceTooLong#4afe8f6d pts:int = updates.Difference;
  382. updatesTooLong#e317af7e = Updates;
  383. updateShortMessage#313bc7f8 flags:# out:flags.1?true mentioned:flags.4?true media_unread:flags.5?true silent:flags.13?true id:int user_id:long message:string pts:int pts_count:int date:int fwd_from:flags.2?MessageFwdHeader via_bot_id:flags.11?long reply_to:flags.3?MessageReplyHeader entities:flags.7?Vector<MessageEntity> ttl_period:flags.25?int = Updates;
  384. updateShortChatMessage#4d6deea5 flags:# out:flags.1?true mentioned:flags.4?true media_unread:flags.5?true silent:flags.13?true id:int from_id:long chat_id:long message:string pts:int pts_count:int date:int fwd_from:flags.2?MessageFwdHeader via_bot_id:flags.11?long reply_to:flags.3?MessageReplyHeader entities:flags.7?Vector<MessageEntity> ttl_period:flags.25?int = Updates;
  385. updateShort#78d4dec1 update:Update date:int = Updates;
  386. updatesCombined#725b04c3 updates:Vector<Update> users:Vector<User> chats:Vector<Chat> date:int seq_start:int seq:int = Updates;
  387. updates#74ae4240 updates:Vector<Update> users:Vector<User> chats:Vector<Chat> date:int seq:int = Updates;
  388. updateShortSentMessage#9015e101 flags:# out:flags.1?true id:int pts:int pts_count:int date:int media:flags.9?MessageMedia entities:flags.7?Vector<MessageEntity> ttl_period:flags.25?int = Updates;
  389. photos.photos#8dca6aa5 photos:Vector<Photo> users:Vector<User> = photos.Photos;
  390. photos.photosSlice#15051f54 count:int photos:Vector<Photo> users:Vector<User> = photos.Photos;
  391. photos.photo#20212ca8 photo:Photo users:Vector<User> = photos.Photo;
  392. upload.file#96a18d5 type:storage.FileType mtime:int bytes:bytes = upload.File;
  393. upload.fileCdnRedirect#f18cda44 dc_id:int file_token:bytes encryption_key:bytes encryption_iv:bytes file_hashes:Vector<FileHash> = upload.File;
  394. dcOption#18b7a10d flags:# ipv6:flags.0?true media_only:flags.1?true tcpo_only:flags.2?true cdn:flags.3?true static:flags.4?true this_port_only:flags.5?true id:int ip_address:string port:int secret:flags.10?bytes = DcOption;
  395. config#cc1a241e flags:# default_p2p_contacts:flags.3?true preload_featured_stickers:flags.4?true revoke_pm_inbox:flags.6?true blocked_mode:flags.8?true force_try_ipv6:flags.14?true date:int expires:int test_mode:Bool this_dc:int dc_options:Vector<DcOption> dc_txt_domain_name:string chat_size_max:int megagroup_size_max:int forwarded_count_max:int online_update_period_ms:int offline_blur_timeout_ms:int offline_idle_timeout_ms:int online_cloud_timeout_ms:int notify_cloud_delay_ms:int notify_default_delay_ms:int push_chat_period_ms:int push_chat_limit:int edit_time_limit:int revoke_time_limit:int revoke_pm_time_limit:int rating_e_decay:int stickers_recent_limit:int channels_read_media_period:int tmp_sessions:flags.0?int call_receive_timeout_ms:int call_ring_timeout_ms:int call_connect_timeout_ms:int call_packet_timeout_ms:int me_url_prefix:string autoupdate_url_prefix:flags.7?string gif_search_username:flags.9?string venue_search_username:flags.10?string img_search_username:flags.11?string static_maps_provider:flags.12?string caption_length_max:int message_length_max:int webfile_dc_id:int suggested_lang_code:flags.2?string lang_pack_version:flags.2?int base_lang_pack_version:flags.2?int reactions_default:flags.15?Reaction autologin_token:flags.16?string = Config;
  396. nearestDc#8e1a1775 country:string this_dc:int nearest_dc:int = NearestDc;
  397. help.appUpdate#ccbbce30 flags:# can_not_skip:flags.0?true id:int version:string text:string entities:Vector<MessageEntity> document:flags.1?Document url:flags.2?string sticker:flags.3?Document = help.AppUpdate;
  398. help.noAppUpdate#c45a6536 = help.AppUpdate;
  399. help.inviteText#18cb9f78 message:string = help.InviteText;
  400. encryptedChatEmpty#ab7ec0a0 id:int = EncryptedChat;
  401. encryptedChatWaiting#66b25953 id:int access_hash:long date:int admin_id:long participant_id:long = EncryptedChat;
  402. encryptedChatRequested#48f1d94c flags:# folder_id:flags.0?int id:int access_hash:long date:int admin_id:long participant_id:long g_a:bytes = EncryptedChat;
  403. encryptedChat#61f0d4c7 id:int access_hash:long date:int admin_id:long participant_id:long g_a_or_b:bytes key_fingerprint:long = EncryptedChat;
  404. encryptedChatDiscarded#1e1c7c45 flags:# history_deleted:flags.0?true id:int = EncryptedChat;
  405. inputEncryptedChat#f141b5e1 chat_id:int access_hash:long = InputEncryptedChat;
  406. encryptedFileEmpty#c21f497e = EncryptedFile;
  407. encryptedFile#a8008cd8 id:long access_hash:long size:long dc_id:int key_fingerprint:int = EncryptedFile;
  408. inputEncryptedFileEmpty#1837c364 = InputEncryptedFile;
  409. inputEncryptedFileUploaded#64bd0306 id:long parts:int md5_checksum:string key_fingerprint:int = InputEncryptedFile;
  410. inputEncryptedFile#5a17b5e5 id:long access_hash:long = InputEncryptedFile;
  411. inputEncryptedFileBigUploaded#2dc173c8 id:long parts:int key_fingerprint:int = InputEncryptedFile;
  412. encryptedMessage#ed18c118 random_id:long chat_id:int date:int bytes:bytes file:EncryptedFile = EncryptedMessage;
  413. encryptedMessageService#23734b06 random_id:long chat_id:int date:int bytes:bytes = EncryptedMessage;
  414. messages.dhConfigNotModified#c0e24635 random:bytes = messages.DhConfig;
  415. messages.dhConfig#2c221edd g:int p:bytes version:int random:bytes = messages.DhConfig;
  416. messages.sentEncryptedMessage#560f8935 date:int = messages.SentEncryptedMessage;
  417. messages.sentEncryptedFile#9493ff32 date:int file:EncryptedFile = messages.SentEncryptedMessage;
  418. inputDocumentEmpty#72f0eaae = InputDocument;
  419. inputDocument#1abfb575 id:long access_hash:long file_reference:bytes = InputDocument;
  420. documentEmpty#36f8c871 id:long = Document;
  421. document#8fd4c4d8 flags:# id:long access_hash:long file_reference:bytes date:int mime_type:string size:long thumbs:flags.0?Vector<PhotoSize> video_thumbs:flags.1?Vector<VideoSize> dc_id:int attributes:Vector<DocumentAttribute> = Document;
  422. help.support#17c6b5f6 phone_number:string user:User = help.Support;
  423. notifyPeer#9fd40bd8 peer:Peer = NotifyPeer;
  424. notifyUsers#b4c83b4c = NotifyPeer;
  425. notifyChats#c007cec3 = NotifyPeer;
  426. notifyBroadcasts#d612e8ef = NotifyPeer;
  427. notifyForumTopic#226e6308 peer:Peer top_msg_id:int = NotifyPeer;
  428. sendMessageTypingAction#16bf744e = SendMessageAction;
  429. sendMessageCancelAction#fd5ec8f5 = SendMessageAction;
  430. sendMessageRecordVideoAction#a187d66f = SendMessageAction;
  431. sendMessageUploadVideoAction#e9763aec progress:int = SendMessageAction;
  432. sendMessageRecordAudioAction#d52f73f7 = SendMessageAction;
  433. sendMessageUploadAudioAction#f351d7ab progress:int = SendMessageAction;
  434. sendMessageUploadPhotoAction#d1d34a26 progress:int = SendMessageAction;
  435. sendMessageUploadDocumentAction#aa0cd9e4 progress:int = SendMessageAction;
  436. sendMessageGeoLocationAction#176f8ba1 = SendMessageAction;
  437. sendMessageChooseContactAction#628cbc6f = SendMessageAction;
  438. sendMessageGamePlayAction#dd6a8f48 = SendMessageAction;
  439. sendMessageRecordRoundAction#88f27fbc = SendMessageAction;
  440. sendMessageUploadRoundAction#243e1c66 progress:int = SendMessageAction;
  441. speakingInGroupCallAction#d92c2285 = SendMessageAction;
  442. sendMessageHistoryImportAction#dbda9246 progress:int = SendMessageAction;
  443. sendMessageChooseStickerAction#b05ac6b1 = SendMessageAction;
  444. sendMessageEmojiInteraction#25972bcb emoticon:string msg_id:int interaction:DataJSON = SendMessageAction;
  445. sendMessageEmojiInteractionSeen#b665902e emoticon:string = SendMessageAction;
  446. contacts.found#b3134d9d my_results:Vector<Peer> results:Vector<Peer> chats:Vector<Chat> users:Vector<User> = contacts.Found;
  447. inputPrivacyKeyStatusTimestamp#4f96cb18 = InputPrivacyKey;
  448. inputPrivacyKeyChatInvite#bdfb0426 = InputPrivacyKey;
  449. inputPrivacyKeyPhoneCall#fabadc5f = InputPrivacyKey;
  450. inputPrivacyKeyPhoneP2P#db9e70d2 = InputPrivacyKey;
  451. inputPrivacyKeyForwards#a4dd4c08 = InputPrivacyKey;
  452. inputPrivacyKeyProfilePhoto#5719bacc = InputPrivacyKey;
  453. inputPrivacyKeyPhoneNumber#352dafa = InputPrivacyKey;
  454. inputPrivacyKeyAddedByPhone#d1219bdd = InputPrivacyKey;
  455. inputPrivacyKeyVoiceMessages#aee69d68 = InputPrivacyKey;
  456. inputPrivacyKeyAbout#3823cc40 = InputPrivacyKey;
  457. inputPrivacyKeyBirthday#d65a11cc = InputPrivacyKey;
  458. inputPrivacyKeyStarGiftsAutoSave#e1732341 = InputPrivacyKey;
  459. inputPrivacyKeyNoPaidMessages#bdc597b4 = InputPrivacyKey;
  460. privacyKeyStatusTimestamp#bc2eab30 = PrivacyKey;
  461. privacyKeyChatInvite#500e6dfa = PrivacyKey;
  462. privacyKeyPhoneCall#3d662b7b = PrivacyKey;
  463. privacyKeyPhoneP2P#39491cc8 = PrivacyKey;
  464. privacyKeyForwards#69ec56a3 = PrivacyKey;
  465. privacyKeyProfilePhoto#96151fed = PrivacyKey;
  466. privacyKeyPhoneNumber#d19ae46d = PrivacyKey;
  467. privacyKeyAddedByPhone#42ffd42b = PrivacyKey;
  468. privacyKeyVoiceMessages#697f414 = PrivacyKey;
  469. privacyKeyAbout#a486b761 = PrivacyKey;
  470. privacyKeyBirthday#2000a518 = PrivacyKey;
  471. privacyKeyStarGiftsAutoSave#2ca4fdf8 = PrivacyKey;
  472. privacyKeyNoPaidMessages#17d348d2 = PrivacyKey;
  473. inputPrivacyValueAllowContacts#d09e07b = InputPrivacyRule;
  474. inputPrivacyValueAllowAll#184b35ce = InputPrivacyRule;
  475. inputPrivacyValueAllowUsers#131cc67f users:Vector<InputUser> = InputPrivacyRule;
  476. inputPrivacyValueDisallowContacts#ba52007 = InputPrivacyRule;
  477. inputPrivacyValueDisallowAll#d66b66c9 = InputPrivacyRule;
  478. inputPrivacyValueDisallowUsers#90110467 users:Vector<InputUser> = InputPrivacyRule;
  479. inputPrivacyValueAllowChatParticipants#840649cf chats:Vector<long> = InputPrivacyRule;
  480. inputPrivacyValueDisallowChatParticipants#e94f0f86 chats:Vector<long> = InputPrivacyRule;
  481. inputPrivacyValueAllowCloseFriends#2f453e49 = InputPrivacyRule;
  482. inputPrivacyValueAllowPremium#77cdc9f1 = InputPrivacyRule;
  483. inputPrivacyValueAllowBots#5a4fcce5 = InputPrivacyRule;
  484. inputPrivacyValueDisallowBots#c4e57915 = InputPrivacyRule;
  485. privacyValueAllowContacts#fffe1bac = PrivacyRule;
  486. privacyValueAllowAll#65427b82 = PrivacyRule;
  487. privacyValueAllowUsers#b8905fb2 users:Vector<long> = PrivacyRule;
  488. privacyValueDisallowContacts#f888fa1a = PrivacyRule;
  489. privacyValueDisallowAll#8b73e763 = PrivacyRule;
  490. privacyValueDisallowUsers#e4621141 users:Vector<long> = PrivacyRule;
  491. privacyValueAllowChatParticipants#6b134e8e chats:Vector<long> = PrivacyRule;
  492. privacyValueDisallowChatParticipants#41c87565 chats:Vector<long> = PrivacyRule;
  493. privacyValueAllowCloseFriends#f7e8d89b = PrivacyRule;
  494. privacyValueAllowPremium#ece9814b = PrivacyRule;
  495. privacyValueAllowBots#21461b5d = PrivacyRule;
  496. privacyValueDisallowBots#f6a5f82f = PrivacyRule;
  497. account.privacyRules#50a04e45 rules:Vector<PrivacyRule> chats:Vector<Chat> users:Vector<User> = account.PrivacyRules;
  498. accountDaysTTL#b8d0afdf days:int = AccountDaysTTL;
  499. documentAttributeImageSize#6c37c15c w:int h:int = DocumentAttribute;
  500. documentAttributeAnimated#11b58939 = DocumentAttribute;
  501. documentAttributeSticker#6319d612 flags:# mask:flags.1?true alt:string stickerset:InputStickerSet mask_coords:flags.0?MaskCoords = DocumentAttribute;
  502. documentAttributeVideo#43c57c48 flags:# round_message:flags.0?true supports_streaming:flags.1?true nosound:flags.3?true duration:double w:int h:int preload_prefix_size:flags.2?int video_start_ts:flags.4?double video_codec:flags.5?string = DocumentAttribute;
  503. documentAttributeAudio#9852f9c6 flags:# voice:flags.10?true duration:int title:flags.0?string performer:flags.1?string waveform:flags.2?bytes = DocumentAttribute;
  504. documentAttributeFilename#15590068 file_name:string = DocumentAttribute;
  505. documentAttributeHasStickers#9801d2f7 = DocumentAttribute;
  506. documentAttributeCustomEmoji#fd149899 flags:# free:flags.0?true text_color:flags.1?true alt:string stickerset:InputStickerSet = DocumentAttribute;
  507. messages.stickersNotModified#f1749a22 = messages.Stickers;
  508. messages.stickers#30a6ec7e hash:long stickers:Vector<Document> = messages.Stickers;
  509. stickerPack#12b299d4 emoticon:string documents:Vector<long> = StickerPack;
  510. messages.allStickersNotModified#e86602c3 = messages.AllStickers;
  511. messages.allStickers#cdbbcebb hash:long sets:Vector<StickerSet> = messages.AllStickers;
  512. messages.affectedMessages#84d19185 pts:int pts_count:int = messages.AffectedMessages;
  513. webPageEmpty#211a1788 flags:# id:long url:flags.0?string = WebPage;
  514. webPagePending#b0d13e47 flags:# id:long url:flags.0?string date:int = WebPage;
  515. webPage#e89c45b2 flags:# has_large_media:flags.13?true video_cover_photo:flags.14?true id:long url:string display_url:string hash:int type:flags.0?string site_name:flags.1?string title:flags.2?string description:flags.3?string photo:flags.4?Photo embed_url:flags.5?string embed_type:flags.5?string embed_width:flags.6?int embed_height:flags.6?int duration:flags.7?int author:flags.8?string document:flags.9?Document cached_page:flags.10?Page attributes:flags.12?Vector<WebPageAttribute> = WebPage;
  516. webPageNotModified#7311ca11 flags:# cached_page_views:flags.0?int = WebPage;
  517. authorization#ad01d61d flags:# current:flags.0?true official_app:flags.1?true password_pending:flags.2?true encrypted_requests_disabled:flags.3?true call_requests_disabled:flags.4?true unconfirmed:flags.5?true hash:long device_model:string platform:string system_version:string api_id:int app_name:string app_version:string date_created:int date_active:int ip:string country:string region:string = Authorization;
  518. account.authorizations#4bff8ea0 authorization_ttl_days:int authorizations:Vector<Authorization> = account.Authorizations;
  519. account.password#957b50fb flags:# has_recovery:flags.0?true has_secure_values:flags.1?true has_password:flags.2?true current_algo:flags.2?PasswordKdfAlgo srp_B:flags.2?bytes srp_id:flags.2?long hint:flags.3?string email_unconfirmed_pattern:flags.4?string new_algo:PasswordKdfAlgo new_secure_algo:SecurePasswordKdfAlgo secure_random:bytes pending_reset_date:flags.5?int login_email_pattern:flags.6?string = account.Password;
  520. account.passwordSettings#9a5c33e5 flags:# email:flags.0?string secure_settings:flags.1?SecureSecretSettings = account.PasswordSettings;
  521. account.passwordInputSettings#c23727c9 flags:# new_algo:flags.0?PasswordKdfAlgo new_password_hash:flags.0?bytes hint:flags.0?string email:flags.1?string new_secure_settings:flags.2?SecureSecretSettings = account.PasswordInputSettings;
  522. auth.passwordRecovery#137948a5 email_pattern:string = auth.PasswordRecovery;
  523. receivedNotifyMessage#a384b779 id:int flags:int = ReceivedNotifyMessage;
  524. chatInviteExported#a22cbd96 flags:# revoked:flags.0?true permanent:flags.5?true request_needed:flags.6?true link:string admin_id:long date:int start_date:flags.4?int expire_date:flags.1?int usage_limit:flags.2?int usage:flags.3?int requested:flags.7?int subscription_expired:flags.10?int title:flags.8?string subscription_pricing:flags.9?StarsSubscriptionPricing = ExportedChatInvite;
  525. chatInvitePublicJoinRequests#ed107ab7 = ExportedChatInvite;
  526. chatInviteAlready#5a686d7c chat:Chat = ChatInvite;
  527. chatInvite#5c9d3702 flags:# channel:flags.0?true broadcast:flags.1?true public:flags.2?true megagroup:flags.3?true request_needed:flags.6?true verified:flags.7?true scam:flags.8?true fake:flags.9?true can_refulfill_subscription:flags.11?true title:string about:flags.5?string photo:Photo participants_count:int participants:flags.4?Vector<User> color:int subscription_pricing:flags.10?StarsSubscriptionPricing subscription_form_id:flags.12?long bot_verification:flags.13?BotVerification = ChatInvite;
  528. chatInvitePeek#61695cb0 chat:Chat expires:int = ChatInvite;
  529. inputStickerSetEmpty#ffb62b95 = InputStickerSet;
  530. inputStickerSetID#9de7a269 id:long access_hash:long = InputStickerSet;
  531. inputStickerSetShortName#861cc8a0 short_name:string = InputStickerSet;
  532. inputStickerSetAnimatedEmoji#28703c8 = InputStickerSet;
  533. inputStickerSetDice#e67f520e emoticon:string = InputStickerSet;
  534. inputStickerSetAnimatedEmojiAnimations#cde3739 = InputStickerSet;
  535. inputStickerSetPremiumGifts#c88b3b02 = InputStickerSet;
  536. inputStickerSetEmojiGenericAnimations#4c4d4ce = InputStickerSet;
  537. inputStickerSetEmojiDefaultStatuses#29d0f5ee = InputStickerSet;
  538. inputStickerSetEmojiDefaultTopicIcons#44c1f8e9 = InputStickerSet;
  539. inputStickerSetEmojiChannelDefaultStatuses#49748553 = InputStickerSet;
  540. stickerSet#2dd14edc flags:# archived:flags.1?true official:flags.2?true masks:flags.3?true emojis:flags.7?true text_color:flags.9?true channel_emoji_status:flags.10?true creator:flags.11?true installed_date:flags.0?int id:long access_hash:long title:string short_name:string thumbs:flags.4?Vector<PhotoSize> thumb_dc_id:flags.4?int thumb_version:flags.4?int thumb_document_id:flags.8?long count:int hash:int = StickerSet;
  541. messages.stickerSet#6e153f16 set:StickerSet packs:Vector<StickerPack> keywords:Vector<StickerKeyword> documents:Vector<Document> = messages.StickerSet;
  542. messages.stickerSetNotModified#d3f924eb = messages.StickerSet;
  543. botCommand#c27ac8c7 command:string description:string = BotCommand;
  544. botInfo#4d8a0299 flags:# has_preview_medias:flags.6?true user_id:flags.0?long description:flags.1?string description_photo:flags.4?Photo description_document:flags.5?Document commands:flags.2?Vector<BotCommand> menu_button:flags.3?BotMenuButton privacy_policy_url:flags.7?string app_settings:flags.8?BotAppSettings verifier_settings:flags.9?BotVerifierSettings = BotInfo;
  545. keyboardButton#a2fa4880 text:string = KeyboardButton;
  546. keyboardButtonUrl#258aff05 text:string url:string = KeyboardButton;
  547. keyboardButtonCallback#35bbdb6b flags:# requires_password:flags.0?true text:string data:bytes = KeyboardButton;
  548. keyboardButtonRequestPhone#b16a6c29 text:string = KeyboardButton;
  549. keyboardButtonRequestGeoLocation#fc796b3f text:string = KeyboardButton;
  550. keyboardButtonSwitchInline#93b9fbb5 flags:# same_peer:flags.0?true text:string query:string peer_types:flags.1?Vector<InlineQueryPeerType> = KeyboardButton;
  551. keyboardButtonGame#50f41ccf text:string = KeyboardButton;
  552. keyboardButtonBuy#afd93fbb text:string = KeyboardButton;
  553. keyboardButtonUrlAuth#10b78d29 flags:# text:string fwd_text:flags.0?string url:string button_id:int = KeyboardButton;
  554. inputKeyboardButtonUrlAuth#d02e7fd4 flags:# request_write_access:flags.0?true text:string fwd_text:flags.1?string url:string bot:InputUser = KeyboardButton;
  555. keyboardButtonRequestPoll#bbc7515d flags:# quiz:flags.0?Bool text:string = KeyboardButton;
  556. inputKeyboardButtonUserProfile#e988037b text:string user_id:InputUser = KeyboardButton;
  557. keyboardButtonUserProfile#308660c1 text:string user_id:long = KeyboardButton;
  558. keyboardButtonWebView#13767230 text:string url:string = KeyboardButton;
  559. keyboardButtonSimpleWebView#a0c0505c text:string url:string = KeyboardButton;
  560. keyboardButtonRequestPeer#53d7bfd8 text:string button_id:int peer_type:RequestPeerType max_quantity:int = KeyboardButton;
  561. inputKeyboardButtonRequestPeer#c9662d05 flags:# name_requested:flags.0?true username_requested:flags.1?true photo_requested:flags.2?true text:string button_id:int peer_type:RequestPeerType max_quantity:int = KeyboardButton;
  562. keyboardButtonCopy#75d2698e text:string copy_text:string = KeyboardButton;
  563. keyboardButtonRow#77608b83 buttons:Vector<KeyboardButton> = KeyboardButtonRow;
  564. replyKeyboardHide#a03e5b85 flags:# selective:flags.2?true = ReplyMarkup;
  565. replyKeyboardForceReply#86b40b08 flags:# single_use:flags.1?true selective:flags.2?true placeholder:flags.3?string = ReplyMarkup;
  566. replyKeyboardMarkup#85dd99d1 flags:# resize:flags.0?true single_use:flags.1?true selective:flags.2?true persistent:flags.4?true rows:Vector<KeyboardButtonRow> placeholder:flags.3?string = ReplyMarkup;
  567. replyInlineMarkup#48a30254 rows:Vector<KeyboardButtonRow> = ReplyMarkup;
  568. messageEntityUnknown#bb92ba95 offset:int length:int = MessageEntity;
  569. messageEntityMention#fa04579d offset:int length:int = MessageEntity;
  570. messageEntityHashtag#6f635b0d offset:int length:int = MessageEntity;
  571. messageEntityBotCommand#6cef8ac7 offset:int length:int = MessageEntity;
  572. messageEntityUrl#6ed02538 offset:int length:int = MessageEntity;
  573. messageEntityEmail#64e475c2 offset:int length:int = MessageEntity;
  574. messageEntityBold#bd610bc9 offset:int length:int = MessageEntity;
  575. messageEntityItalic#826f8b60 offset:int length:int = MessageEntity;
  576. messageEntityCode#28a20571 offset:int length:int = MessageEntity;
  577. messageEntityPre#73924be0 offset:int length:int language:string = MessageEntity;
  578. messageEntityTextUrl#76a6d327 offset:int length:int url:string = MessageEntity;
  579. messageEntityMentionName#dc7b1140 offset:int length:int user_id:long = MessageEntity;
  580. inputMessageEntityMentionName#208e68c9 offset:int length:int user_id:InputUser = MessageEntity;
  581. messageEntityPhone#9b69e34b offset:int length:int = MessageEntity;
  582. messageEntityCashtag#4c4e743f offset:int length:int = MessageEntity;
  583. messageEntityUnderline#9c4e7e8b offset:int length:int = MessageEntity;
  584. messageEntityStrike#bf0693d4 offset:int length:int = MessageEntity;
  585. messageEntityBankCard#761e6af4 offset:int length:int = MessageEntity;
  586. messageEntitySpoiler#32ca960f offset:int length:int = MessageEntity;
  587. messageEntityCustomEmoji#c8cf05f8 offset:int length:int document_id:long = MessageEntity;
  588. messageEntityBlockquote#f1ccaaac flags:# collapsed:flags.0?true offset:int length:int = MessageEntity;
  589. inputChannelEmpty#ee8c1e86 = InputChannel;
  590. inputChannel#f35aec28 channel_id:long access_hash:long = InputChannel;
  591. inputChannelFromMessage#5b934f9d peer:InputPeer msg_id:int channel_id:long = InputChannel;
  592. contacts.resolvedPeer#7f077ad9 peer:Peer chats:Vector<Chat> users:Vector<User> = contacts.ResolvedPeer;
  593. messageRange#ae30253 min_id:int max_id:int = MessageRange;
  594. updates.channelDifferenceEmpty#3e11affb flags:# final:flags.0?true pts:int timeout:flags.1?int = updates.ChannelDifference;
  595. updates.channelDifferenceTooLong#a4bcc6fe flags:# final:flags.0?true timeout:flags.1?int dialog:Dialog messages:Vector<Message> chats:Vector<Chat> users:Vector<User> = updates.ChannelDifference;
  596. updates.channelDifference#2064674e flags:# final:flags.0?true pts:int timeout:flags.1?int new_messages:Vector<Message> other_updates:Vector<Update> chats:Vector<Chat> users:Vector<User> = updates.ChannelDifference;
  597. channelMessagesFilterEmpty#94d42ee7 = ChannelMessagesFilter;
  598. channelMessagesFilter#cd77d957 flags:# exclude_new_messages:flags.1?true ranges:Vector<MessageRange> = ChannelMessagesFilter;
  599. channelParticipant#cb397619 flags:# user_id:long date:int subscription_until_date:flags.0?int = ChannelParticipant;
  600. channelParticipantSelf#4f607bef flags:# via_request:flags.0?true user_id:long inviter_id:long date:int subscription_until_date:flags.1?int = ChannelParticipant;
  601. channelParticipantCreator#2fe601d3 flags:# user_id:long admin_rights:ChatAdminRights rank:flags.0?string = ChannelParticipant;
  602. channelParticipantAdmin#34c3bb53 flags:# can_edit:flags.0?true self:flags.1?true user_id:long inviter_id:flags.1?long promoted_by:long date:int admin_rights:ChatAdminRights rank:flags.2?string = ChannelParticipant;
  603. channelParticipantBanned#6df8014e flags:# left:flags.0?true peer:Peer kicked_by:long date:int banned_rights:ChatBannedRights = ChannelParticipant;
  604. channelParticipantLeft#1b03f006 peer:Peer = ChannelParticipant;
  605. channelParticipantsRecent#de3f3c79 = ChannelParticipantsFilter;
  606. channelParticipantsAdmins#b4608969 = ChannelParticipantsFilter;
  607. channelParticipantsKicked#a3b54985 q:string = ChannelParticipantsFilter;
  608. channelParticipantsBots#b0d1865b = ChannelParticipantsFilter;
  609. channelParticipantsBanned#1427a5e1 q:string = ChannelParticipantsFilter;
  610. channelParticipantsSearch#656ac4b q:string = ChannelParticipantsFilter;
  611. channelParticipantsContacts#bb6ae88d q:string = ChannelParticipantsFilter;
  612. channelParticipantsMentions#e04b5ceb flags:# q:flags.0?string top_msg_id:flags.1?int = ChannelParticipantsFilter;
  613. channels.channelParticipants#9ab0feaf count:int participants:Vector<ChannelParticipant> chats:Vector<Chat> users:Vector<User> = channels.ChannelParticipants;
  614. channels.channelParticipantsNotModified#f0173fe9 = channels.ChannelParticipants;
  615. channels.channelParticipant#dfb80317 participant:ChannelParticipant chats:Vector<Chat> users:Vector<User> = channels.ChannelParticipant;
  616. help.termsOfService#780a0310 flags:# popup:flags.0?true id:DataJSON text:string entities:Vector<MessageEntity> min_age_confirm:flags.1?int = help.TermsOfService;
  617. messages.savedGifsNotModified#e8025ca2 = messages.SavedGifs;
  618. messages.savedGifs#84a02a0d hash:long gifs:Vector<Document> = messages.SavedGifs;
  619. inputBotInlineMessageMediaAuto#3380c786 flags:# invert_media:flags.3?true message:string entities:flags.1?Vector<MessageEntity> reply_markup:flags.2?ReplyMarkup = InputBotInlineMessage;
  620. inputBotInlineMessageText#3dcd7a87 flags:# no_webpage:flags.0?true invert_media:flags.3?true message:string entities:flags.1?Vector<MessageEntity> reply_markup:flags.2?ReplyMarkup = InputBotInlineMessage;
  621. inputBotInlineMessageMediaGeo#96929a85 flags:# geo_point:InputGeoPoint heading:flags.0?int period:flags.1?int proximity_notification_radius:flags.3?int reply_markup:flags.2?ReplyMarkup = InputBotInlineMessage;
  622. inputBotInlineMessageMediaVenue#417bbf11 flags:# geo_point:InputGeoPoint title:string address:string provider:string venue_id:string venue_type:string reply_markup:flags.2?ReplyMarkup = InputBotInlineMessage;
  623. inputBotInlineMessageMediaContact#a6edbffd flags:# phone_number:string first_name:string last_name:string vcard:string reply_markup:flags.2?ReplyMarkup = InputBotInlineMessage;
  624. inputBotInlineMessageGame#4b425864 flags:# reply_markup:flags.2?ReplyMarkup = InputBotInlineMessage;
  625. inputBotInlineMessageMediaInvoice#d7e78225 flags:# title:string description:string photo:flags.0?InputWebDocument invoice:Invoice payload:bytes provider:string provider_data:DataJSON reply_markup:flags.2?ReplyMarkup = InputBotInlineMessage;
  626. inputBotInlineMessageMediaWebPage#bddcc510 flags:# invert_media:flags.3?true force_large_media:flags.4?true force_small_media:flags.5?true optional:flags.6?true message:string entities:flags.1?Vector<MessageEntity> url:string reply_markup:flags.2?ReplyMarkup = InputBotInlineMessage;
  627. inputBotInlineResult#88bf9319 flags:# id:string type:string title:flags.1?string description:flags.2?string url:flags.3?string thumb:flags.4?InputWebDocument content:flags.5?InputWebDocument send_message:InputBotInlineMessage = InputBotInlineResult;
  628. inputBotInlineResultPhoto#a8d864a7 id:string type:string photo:InputPhoto send_message:InputBotInlineMessage = InputBotInlineResult;
  629. inputBotInlineResultDocument#fff8fdc4 flags:# id:string type:string title:flags.1?string description:flags.2?string document:InputDocument send_message:InputBotInlineMessage = InputBotInlineResult;
  630. inputBotInlineResultGame#4fa417f2 id:string short_name:string send_message:InputBotInlineMessage = InputBotInlineResult;
  631. botInlineMessageMediaAuto#764cf810 flags:# invert_media:flags.3?true message:string entities:flags.1?Vector<MessageEntity> reply_markup:flags.2?ReplyMarkup = BotInlineMessage;
  632. botInlineMessageText#8c7f65e2 flags:# no_webpage:flags.0?true invert_media:flags.3?true message:string entities:flags.1?Vector<MessageEntity> reply_markup:flags.2?ReplyMarkup = BotInlineMessage;
  633. botInlineMessageMediaGeo#51846fd flags:# geo:GeoPoint heading:flags.0?int period:flags.1?int proximity_notification_radius:flags.3?int reply_markup:flags.2?ReplyMarkup = BotInlineMessage;
  634. botInlineMessageMediaVenue#8a86659c flags:# geo:GeoPoint title:string address:string provider:string venue_id:string venue_type:string reply_markup:flags.2?ReplyMarkup = BotInlineMessage;
  635. botInlineMessageMediaContact#18d1cdc2 flags:# phone_number:string first_name:string last_name:string vcard:string reply_markup:flags.2?ReplyMarkup = BotInlineMessage;
  636. botInlineMessageMediaInvoice#354a9b09 flags:# shipping_address_requested:flags.1?true test:flags.3?true title:string description:string photo:flags.0?WebDocument currency:string total_amount:long reply_markup:flags.2?ReplyMarkup = BotInlineMessage;
  637. botInlineMessageMediaWebPage#809ad9a6 flags:# invert_media:flags.3?true force_large_media:flags.4?true force_small_media:flags.5?true manual:flags.7?true safe:flags.8?true message:string entities:flags.1?Vector<MessageEntity> url:string reply_markup:flags.2?ReplyMarkup = BotInlineMessage;
  638. botInlineResult#11965f3a flags:# id:string type:string title:flags.1?string description:flags.2?string url:flags.3?string thumb:flags.4?WebDocument content:flags.5?WebDocument send_message:BotInlineMessage = BotInlineResult;
  639. botInlineMediaResult#17db940b flags:# id:string type:string photo:flags.0?Photo document:flags.1?Document title:flags.2?string description:flags.3?string send_message:BotInlineMessage = BotInlineResult;
  640. messages.botResults#e021f2f6 flags:# gallery:flags.0?true query_id:long next_offset:flags.1?string switch_pm:flags.2?InlineBotSwitchPM switch_webview:flags.3?InlineBotWebView results:Vector<BotInlineResult> cache_time:int users:Vector<User> = messages.BotResults;
  641. exportedMessageLink#5dab1af4 link:string html:string = ExportedMessageLink;
  642. messageFwdHeader#4e4df4bb flags:# imported:flags.7?true saved_out:flags.11?true from_id:flags.0?Peer from_name:flags.5?string date:int channel_post:flags.2?int post_author:flags.3?string saved_from_peer:flags.4?Peer saved_from_msg_id:flags.4?int saved_from_id:flags.8?Peer saved_from_name:flags.9?string saved_date:flags.10?int psa_type:flags.6?string = MessageFwdHeader;
  643. auth.codeTypeSms#72a3158c = auth.CodeType;
  644. auth.codeTypeCall#741cd3e3 = auth.CodeType;
  645. auth.codeTypeFlashCall#226ccefb = auth.CodeType;
  646. auth.codeTypeMissedCall#d61ad6ee = auth.CodeType;
  647. auth.codeTypeFragmentSms#6ed998c = auth.CodeType;
  648. auth.sentCodeTypeApp#3dbb5986 length:int = auth.SentCodeType;
  649. auth.sentCodeTypeSms#c000bba2 length:int = auth.SentCodeType;
  650. auth.sentCodeTypeCall#5353e5a7 length:int = auth.SentCodeType;
  651. auth.sentCodeTypeFlashCall#ab03c6d9 pattern:string = auth.SentCodeType;
  652. auth.sentCodeTypeMissedCall#82006484 prefix:string length:int = auth.SentCodeType;
  653. auth.sentCodeTypeEmailCode#f450f59b flags:# apple_signin_allowed:flags.0?true google_signin_allowed:flags.1?true email_pattern:string length:int reset_available_period:flags.3?int reset_pending_date:flags.4?int = auth.SentCodeType;
  654. auth.sentCodeTypeSetUpEmailRequired#a5491dea flags:# apple_signin_allowed:flags.0?true google_signin_allowed:flags.1?true = auth.SentCodeType;
  655. auth.sentCodeTypeFragmentSms#d9565c39 url:string length:int = auth.SentCodeType;
  656. auth.sentCodeTypeFirebaseSms#9fd736 flags:# nonce:flags.0?bytes play_integrity_project_id:flags.2?long play_integrity_nonce:flags.2?bytes receipt:flags.1?string push_timeout:flags.1?int length:int = auth.SentCodeType;
  657. auth.sentCodeTypeSmsWord#a416ac81 flags:# beginning:flags.0?string = auth.SentCodeType;
  658. auth.sentCodeTypeSmsPhrase#b37794af flags:# beginning:flags.0?string = auth.SentCodeType;
  659. messages.botCallbackAnswer#36585ea4 flags:# alert:flags.1?true has_url:flags.3?true native_ui:flags.4?true message:flags.0?string url:flags.2?string cache_time:int = messages.BotCallbackAnswer;
  660. messages.messageEditData#26b5dde6 flags:# caption:flags.0?true = messages.MessageEditData;
  661. inputBotInlineMessageID#890c3d89 dc_id:int id:long access_hash:long = InputBotInlineMessageID;
  662. inputBotInlineMessageID64#b6d915d7 dc_id:int owner_id:long id:int access_hash:long = InputBotInlineMessageID;
  663. inlineBotSwitchPM#3c20629f text:string start_param:string = InlineBotSwitchPM;
  664. messages.peerDialogs#3371c354 dialogs:Vector<Dialog> messages:Vector<Message> chats:Vector<Chat> users:Vector<User> state:updates.State = messages.PeerDialogs;
  665. topPeer#edcdc05b peer:Peer rating:double = TopPeer;
  666. topPeerCategoryBotsPM#ab661b5b = TopPeerCategory;
  667. topPeerCategoryBotsInline#148677e2 = TopPeerCategory;
  668. topPeerCategoryCorrespondents#637b7ed = TopPeerCategory;
  669. topPeerCategoryGroups#bd17a14a = TopPeerCategory;
  670. topPeerCategoryChannels#161d9628 = TopPeerCategory;
  671. topPeerCategoryPhoneCalls#1e76a78c = TopPeerCategory;
  672. topPeerCategoryForwardUsers#a8406ca9 = TopPeerCategory;
  673. topPeerCategoryForwardChats#fbeec0f0 = TopPeerCategory;
  674. topPeerCategoryBotsApp#fd9e7bec = TopPeerCategory;
  675. topPeerCategoryPeers#fb834291 category:TopPeerCategory count:int peers:Vector<TopPeer> = TopPeerCategoryPeers;
  676. contacts.topPeersNotModified#de266ef5 = contacts.TopPeers;
  677. contacts.topPeers#70b772a8 categories:Vector<TopPeerCategoryPeers> chats:Vector<Chat> users:Vector<User> = contacts.TopPeers;
  678. contacts.topPeersDisabled#b52c939d = contacts.TopPeers;
  679. draftMessageEmpty#1b0c841a flags:# date:flags.0?int = DraftMessage;
  680. draftMessage#2d65321f flags:# no_webpage:flags.1?true invert_media:flags.6?true reply_to:flags.4?InputReplyTo message:string entities:flags.3?Vector<MessageEntity> media:flags.5?InputMedia date:int effect:flags.7?long = DraftMessage;
  681. messages.featuredStickersNotModified#c6dc0c66 count:int = messages.FeaturedStickers;
  682. messages.featuredStickers#be382906 flags:# premium:flags.0?true hash:long count:int sets:Vector<StickerSetCovered> unread:Vector<long> = messages.FeaturedStickers;
  683. messages.recentStickersNotModified#b17f890 = messages.RecentStickers;
  684. messages.recentStickers#88d37c56 hash:long packs:Vector<StickerPack> stickers:Vector<Document> dates:Vector<int> = messages.RecentStickers;
  685. messages.archivedStickers#4fcba9c8 count:int sets:Vector<StickerSetCovered> = messages.ArchivedStickers;
  686. messages.stickerSetInstallResultSuccess#38641628 = messages.StickerSetInstallResult;
  687. messages.stickerSetInstallResultArchive#35e410a8 sets:Vector<StickerSetCovered> = messages.StickerSetInstallResult;
  688. stickerSetCovered#6410a5d2 set:StickerSet cover:Document = StickerSetCovered;
  689. stickerSetMultiCovered#3407e51b set:StickerSet covers:Vector<Document> = StickerSetCovered;
  690. stickerSetFullCovered#40d13c0e set:StickerSet packs:Vector<StickerPack> keywords:Vector<StickerKeyword> documents:Vector<Document> = StickerSetCovered;
  691. stickerSetNoCovered#77b15d1c set:StickerSet = StickerSetCovered;
  692. maskCoords#aed6dbb2 n:int x:double y:double zoom:double = MaskCoords;
  693. inputStickeredMediaPhoto#4a992157 id:InputPhoto = InputStickeredMedia;
  694. inputStickeredMediaDocument#438865b id:InputDocument = InputStickeredMedia;
  695. game#bdf9653b flags:# id:long access_hash:long short_name:string title:string description:string photo:Photo document:flags.0?Document = Game;
  696. inputGameID#32c3e77 id:long access_hash:long = InputGame;
  697. inputGameShortName#c331e80a bot_id:InputUser short_name:string = InputGame;
  698. highScore#73a379eb pos:int user_id:long score:int = HighScore;
  699. messages.highScores#9a3bfd99 scores:Vector<HighScore> users:Vector<User> = messages.HighScores;
  700. textEmpty#dc3d824f = RichText;
  701. textPlain#744694e0 text:string = RichText;
  702. textBold#6724abc4 text:RichText = RichText;
  703. textItalic#d912a59c text:RichText = RichText;
  704. textUnderline#c12622c4 text:RichText = RichText;
  705. textStrike#9bf8bb95 text:RichText = RichText;
  706. textFixed#6c3f19b9 text:RichText = RichText;
  707. textUrl#3c2884c1 text:RichText url:string webpage_id:long = RichText;
  708. textEmail#de5a0dd6 text:RichText email:string = RichText;
  709. textConcat#7e6260d7 texts:Vector<RichText> = RichText;
  710. textSubscript#ed6a8504 text:RichText = RichText;
  711. textSuperscript#c7fb5e01 text:RichText = RichText;
  712. textMarked#34b8621 text:RichText = RichText;
  713. textPhone#1ccb966a text:RichText phone:string = RichText;
  714. textImage#81ccf4f document_id:long w:int h:int = RichText;
  715. textAnchor#35553762 text:RichText name:string = RichText;
  716. pageBlockUnsupported#13567e8a = PageBlock;
  717. pageBlockTitle#70abc3fd text:RichText = PageBlock;
  718. pageBlockSubtitle#8ffa9a1f text:RichText = PageBlock;
  719. pageBlockAuthorDate#baafe5e0 author:RichText published_date:int = PageBlock;
  720. pageBlockHeader#bfd064ec text:RichText = PageBlock;
  721. pageBlockSubheader#f12bb6e1 text:RichText = PageBlock;
  722. pageBlockParagraph#467a0766 text:RichText = PageBlock;
  723. pageBlockPreformatted#c070d93e text:RichText language:string = PageBlock;
  724. pageBlockFooter#48870999 text:RichText = PageBlock;
  725. pageBlockDivider#db20b188 = PageBlock;
  726. pageBlockAnchor#ce0d37b0 name:string = PageBlock;
  727. pageBlockList#e4e88011 items:Vector<PageListItem> = PageBlock;
  728. pageBlockBlockquote#263d7c26 text:RichText caption:RichText = PageBlock;
  729. pageBlockPullquote#4f4456d3 text:RichText caption:RichText = PageBlock;
  730. pageBlockPhoto#1759c560 flags:# photo_id:long caption:PageCaption url:flags.0?string webpage_id:flags.0?long = PageBlock;
  731. pageBlockVideo#7c8fe7b6 flags:# autoplay:flags.0?true loop:flags.1?true video_id:long caption:PageCaption = PageBlock;
  732. pageBlockCover#39f23300 cover:PageBlock = PageBlock;
  733. pageBlockEmbed#a8718dc5 flags:# full_width:flags.0?true allow_scrolling:flags.3?true url:flags.1?string html:flags.2?string poster_photo_id:flags.4?long w:flags.5?int h:flags.5?int caption:PageCaption = PageBlock;
  734. pageBlockEmbedPost#f259a80b url:string webpage_id:long author_photo_id:long author:string date:int blocks:Vector<PageBlock> caption:PageCaption = PageBlock;
  735. pageBlockCollage#65a0fa4d items:Vector<PageBlock> caption:PageCaption = PageBlock;
  736. pageBlockSlideshow#31f9590 items:Vector<PageBlock> caption:PageCaption = PageBlock;
  737. pageBlockChannel#ef1751b5 channel:Chat = PageBlock;
  738. pageBlockAudio#804361ea audio_id:long caption:PageCaption = PageBlock;
  739. pageBlockKicker#1e148390 text:RichText = PageBlock;
  740. pageBlockTable#bf4dea82 flags:# bordered:flags.0?true striped:flags.1?true title:RichText rows:Vector<PageTableRow> = PageBlock;
  741. pageBlockOrderedList#9a8ae1e1 items:Vector<PageListOrderedItem> = PageBlock;
  742. pageBlockDetails#76768bed flags:# open:flags.0?true blocks:Vector<PageBlock> title:RichText = PageBlock;
  743. pageBlockRelatedArticles#16115a96 title:RichText articles:Vector<PageRelatedArticle> = PageBlock;
  744. pageBlockMap#a44f3ef6 geo:GeoPoint zoom:int w:int h:int caption:PageCaption = PageBlock;
  745. phoneCallDiscardReasonMissed#85e42301 = PhoneCallDiscardReason;
  746. phoneCallDiscardReasonDisconnect#e095c1a0 = PhoneCallDiscardReason;
  747. phoneCallDiscardReasonHangup#57adc690 = PhoneCallDiscardReason;
  748. phoneCallDiscardReasonBusy#faf7e8c9 = PhoneCallDiscardReason;
  749. phoneCallDiscardReasonAllowGroupCall#afe2b839 encrypted_key:bytes = PhoneCallDiscardReason;
  750. dataJSON#7d748d04 data:string = DataJSON;
  751. labeledPrice#cb296bf8 label:string amount:long = LabeledPrice;
  752. invoice#49ee584 flags:# test:flags.0?true name_requested:flags.1?true phone_requested:flags.2?true email_requested:flags.3?true shipping_address_requested:flags.4?true flexible:flags.5?true phone_to_provider:flags.6?true email_to_provider:flags.7?true recurring:flags.9?true currency:string prices:Vector<LabeledPrice> max_tip_amount:flags.8?long suggested_tip_amounts:flags.8?Vector<long> terms_url:flags.10?string subscription_period:flags.11?int = Invoice;
  753. paymentCharge#ea02c27e id:string provider_charge_id:string = PaymentCharge;
  754. postAddress#1e8caaeb street_line1:string street_line2:string city:string state:string country_iso2:string post_code:string = PostAddress;
  755. paymentRequestedInfo#909c3f94 flags:# name:flags.0?string phone:flags.1?string email:flags.2?string shipping_address:flags.3?PostAddress = PaymentRequestedInfo;
  756. paymentSavedCredentialsCard#cdc27a1f id:string title:string = PaymentSavedCredentials;
  757. webDocument#1c570ed1 url:string access_hash:long size:int mime_type:string attributes:Vector<DocumentAttribute> = WebDocument;
  758. webDocumentNoProxy#f9c8bcc6 url:string size:int mime_type:string attributes:Vector<DocumentAttribute> = WebDocument;
  759. inputWebDocument#9bed434d url:string size:int mime_type:string attributes:Vector<DocumentAttribute> = InputWebDocument;
  760. inputWebFileLocation#c239d686 url:string access_hash:long = InputWebFileLocation;
  761. inputWebFileGeoPointLocation#9f2221c9 geo_point:InputGeoPoint access_hash:long w:int h:int zoom:int scale:int = InputWebFileLocation;
  762. inputWebFileAudioAlbumThumbLocation#f46fe924 flags:# small:flags.2?true document:flags.0?InputDocument title:flags.1?string performer:flags.1?string = InputWebFileLocation;
  763. upload.webFile#21e753bc size:int mime_type:string file_type:storage.FileType mtime:int bytes:bytes = upload.WebFile;
  764. payments.paymentForm#a0058751 flags:# can_save_credentials:flags.2?true password_missing:flags.3?true form_id:long bot_id:long title:string description:string photo:flags.5?WebDocument invoice:Invoice provider_id:long url:string native_provider:flags.4?string native_params:flags.4?DataJSON additional_methods:flags.6?Vector<PaymentFormMethod> saved_info:flags.0?PaymentRequestedInfo saved_credentials:flags.1?Vector<PaymentSavedCredentials> users:Vector<User> = payments.PaymentForm;
  765. payments.paymentFormStars#7bf6b15c flags:# form_id:long bot_id:long title:string description:string photo:flags.5?WebDocument invoice:Invoice users:Vector<User> = payments.PaymentForm;
  766. payments.paymentFormStarGift#b425cfe1 form_id:long invoice:Invoice = payments.PaymentForm;
  767. payments.validatedRequestedInfo#d1451883 flags:# id:flags.0?string shipping_options:flags.1?Vector<ShippingOption> = payments.ValidatedRequestedInfo;
  768. payments.paymentResult#4e5f810d updates:Updates = payments.PaymentResult;
  769. payments.paymentVerificationNeeded#d8411139 url:string = payments.PaymentResult;
  770. payments.paymentReceipt#70c4fe03 flags:# date:int bot_id:long provider_id:long title:string description:string photo:flags.2?WebDocument invoice:Invoice info:flags.0?PaymentRequestedInfo shipping:flags.1?ShippingOption tip_amount:flags.3?long currency:string total_amount:long credentials_title:string users:Vector<User> = payments.PaymentReceipt;
  771. payments.paymentReceiptStars#dabbf83a flags:# date:int bot_id:long title:string description:string photo:flags.2?WebDocument invoice:Invoice currency:string total_amount:long transaction_id:string users:Vector<User> = payments.PaymentReceipt;
  772. payments.savedInfo#fb8fe43c flags:# has_saved_credentials:flags.1?true saved_info:flags.0?PaymentRequestedInfo = payments.SavedInfo;
  773. inputPaymentCredentialsSaved#c10eb2cf id:string tmp_password:bytes = InputPaymentCredentials;
  774. inputPaymentCredentials#3417d728 flags:# save:flags.0?true data:DataJSON = InputPaymentCredentials;
  775. inputPaymentCredentialsApplePay#aa1c39f payment_data:DataJSON = InputPaymentCredentials;
  776. inputPaymentCredentialsGooglePay#8ac32801 payment_token:DataJSON = InputPaymentCredentials;
  777. account.tmpPassword#db64fd34 tmp_password:bytes valid_until:int = account.TmpPassword;
  778. shippingOption#b6213cdf id:string title:string prices:Vector<LabeledPrice> = ShippingOption;
  779. inputStickerSetItem#32da9e9c flags:# document:InputDocument emoji:string mask_coords:flags.0?MaskCoords keywords:flags.1?string = InputStickerSetItem;
  780. inputPhoneCall#1e36fded id:long access_hash:long = InputPhoneCall;
  781. phoneCallEmpty#5366c915 id:long = PhoneCall;
  782. phoneCallWaiting#eed42858 flags:# video:flags.6?true id:long access_hash:long date:int admin_id:long participant_id:long protocol:PhoneCallProtocol receive_date:flags.0?int conference_call:flags.8?InputGroupCall = PhoneCall;
  783. phoneCallRequested#45361c63 flags:# video:flags.6?true id:long access_hash:long date:int admin_id:long participant_id:long g_a_hash:bytes protocol:PhoneCallProtocol conference_call:flags.8?InputGroupCall = PhoneCall;
  784. phoneCallAccepted#22fd7181 flags:# video:flags.6?true id:long access_hash:long date:int admin_id:long participant_id:long g_b:bytes protocol:PhoneCallProtocol conference_call:flags.8?InputGroupCall = PhoneCall;
  785. phoneCall#3ba5940c flags:# p2p_allowed:flags.5?true video:flags.6?true id:long access_hash:long date:int admin_id:long participant_id:long g_a_or_b:bytes key_fingerprint:long protocol:PhoneCallProtocol connections:Vector<PhoneConnection> start_date:int custom_parameters:flags.7?DataJSON conference_call:flags.8?InputGroupCall = PhoneCall;
  786. phoneCallDiscarded#f9d25503 flags:# need_rating:flags.2?true need_debug:flags.3?true video:flags.6?true id:long reason:flags.0?PhoneCallDiscardReason duration:flags.1?int conference_call:flags.8?InputGroupCall = PhoneCall;
  787. phoneConnection#9cc123c7 flags:# tcp:flags.0?true id:long ip:string ipv6:string port:int peer_tag:bytes = PhoneConnection;
  788. phoneConnectionWebrtc#635fe375 flags:# turn:flags.0?true stun:flags.1?true id:long ip:string ipv6:string port:int username:string password:string = PhoneConnection;
  789. phoneCallProtocol#fc878fc8 flags:# udp_p2p:flags.0?true udp_reflector:flags.1?true min_layer:int max_layer:int library_versions:Vector<string> = PhoneCallProtocol;
  790. phone.phoneCall#ec82e140 phone_call:PhoneCall users:Vector<User> = phone.PhoneCall;
  791. upload.cdnFileReuploadNeeded#eea8e46e request_token:bytes = upload.CdnFile;
  792. upload.cdnFile#a99fca4f bytes:bytes = upload.CdnFile;
  793. cdnPublicKey#c982eaba dc_id:int public_key:string = CdnPublicKey;
  794. cdnConfig#5725e40a public_keys:Vector<CdnPublicKey> = CdnConfig;
  795. langPackString#cad181f6 key:string value:string = LangPackString;
  796. langPackStringPluralized#6c47ac9f flags:# key:string zero_value:flags.0?string one_value:flags.1?string two_value:flags.2?string few_value:flags.3?string many_value:flags.4?string other_value:string = LangPackString;
  797. langPackStringDeleted#2979eeb2 key:string = LangPackString;
  798. langPackDifference#f385c1f6 lang_code:string from_version:int version:int strings:Vector<LangPackString> = LangPackDifference;
  799. langPackLanguage#eeca5ce3 flags:# official:flags.0?true rtl:flags.2?true beta:flags.3?true name:string native_name:string lang_code:string base_lang_code:flags.1?string plural_code:string strings_count:int translated_count:int translations_url:string = LangPackLanguage;
  800. channelAdminLogEventActionChangeTitle#e6dfb825 prev_value:string new_value:string = ChannelAdminLogEventAction;
  801. channelAdminLogEventActionChangeAbout#55188a2e prev_value:string new_value:string = ChannelAdminLogEventAction;
  802. channelAdminLogEventActionChangeUsername#6a4afc38 prev_value:string new_value:string = ChannelAdminLogEventAction;
  803. channelAdminLogEventActionChangePhoto#434bd2af prev_photo:Photo new_photo:Photo = ChannelAdminLogEventAction;
  804. channelAdminLogEventActionToggleInvites#1b7907ae new_value:Bool = ChannelAdminLogEventAction;
  805. channelAdminLogEventActionToggleSignatures#26ae0971 new_value:Bool = ChannelAdminLogEventAction;
  806. channelAdminLogEventActionUpdatePinned#e9e82c18 message:Message = ChannelAdminLogEventAction;
  807. channelAdminLogEventActionEditMessage#709b2405 prev_message:Message new_message:Message = ChannelAdminLogEventAction;
  808. channelAdminLogEventActionDeleteMessage#42e047bb message:Message = ChannelAdminLogEventAction;
  809. channelAdminLogEventActionParticipantJoin#183040d3 = ChannelAdminLogEventAction;
  810. channelAdminLogEventActionParticipantLeave#f89777f2 = ChannelAdminLogEventAction;
  811. channelAdminLogEventActionParticipantInvite#e31c34d8 participant:ChannelParticipant = ChannelAdminLogEventAction;
  812. channelAdminLogEventActionParticipantToggleBan#e6d83d7e prev_participant:ChannelParticipant new_participant:ChannelParticipant = ChannelAdminLogEventAction;
  813. channelAdminLogEventActionParticipantToggleAdmin#d5676710 prev_participant:ChannelParticipant new_participant:ChannelParticipant = ChannelAdminLogEventAction;
  814. channelAdminLogEventActionChangeStickerSet#b1c3caa7 prev_stickerset:InputStickerSet new_stickerset:InputStickerSet = ChannelAdminLogEventAction;
  815. channelAdminLogEventActionTogglePreHistoryHidden#5f5c95f1 new_value:Bool = ChannelAdminLogEventAction;
  816. channelAdminLogEventActionDefaultBannedRights#2df5fc0a prev_banned_rights:ChatBannedRights new_banned_rights:ChatBannedRights = ChannelAdminLogEventAction;
  817. channelAdminLogEventActionStopPoll#8f079643 message:Message = ChannelAdminLogEventAction;
  818. channelAdminLogEventActionChangeLinkedChat#50c7ac8 prev_value:long new_value:long = ChannelAdminLogEventAction;
  819. channelAdminLogEventActionChangeLocation#e6b76ae prev_value:ChannelLocation new_value:ChannelLocation = ChannelAdminLogEventAction;
  820. channelAdminLogEventActionToggleSlowMode#53909779 prev_value:int new_value:int = ChannelAdminLogEventAction;
  821. channelAdminLogEventActionStartGroupCall#23209745 call:InputGroupCall = ChannelAdminLogEventAction;
  822. channelAdminLogEventActionDiscardGroupCall#db9f9140 call:InputGroupCall = ChannelAdminLogEventAction;
  823. channelAdminLogEventActionParticipantMute#f92424d2 participant:GroupCallParticipant = ChannelAdminLogEventAction;
  824. channelAdminLogEventActionParticipantUnmute#e64429c0 participant:GroupCallParticipant = ChannelAdminLogEventAction;
  825. channelAdminLogEventActionToggleGroupCallSetting#56d6a247 join_muted:Bool = ChannelAdminLogEventAction;
  826. channelAdminLogEventActionParticipantJoinByInvite#fe9fc158 flags:# via_chatlist:flags.0?true invite:ExportedChatInvite = ChannelAdminLogEventAction;
  827. channelAdminLogEventActionExportedInviteDelete#5a50fca4 invite:ExportedChatInvite = ChannelAdminLogEventAction;
  828. channelAdminLogEventActionExportedInviteRevoke#410a134e invite:ExportedChatInvite = ChannelAdminLogEventAction;
  829. channelAdminLogEventActionExportedInviteEdit#e90ebb59 prev_invite:ExportedChatInvite new_invite:ExportedChatInvite = ChannelAdminLogEventAction;
  830. channelAdminLogEventActionParticipantVolume#3e7f6847 participant:GroupCallParticipant = ChannelAdminLogEventAction;
  831. channelAdminLogEventActionChangeHistoryTTL#6e941a38 prev_value:int new_value:int = ChannelAdminLogEventAction;
  832. channelAdminLogEventActionParticipantJoinByRequest#afb6144a invite:ExportedChatInvite approved_by:long = ChannelAdminLogEventAction;
  833. channelAdminLogEventActionToggleNoForwards#cb2ac766 new_value:Bool = ChannelAdminLogEventAction;
  834. channelAdminLogEventActionSendMessage#278f2868 message:Message = ChannelAdminLogEventAction;
  835. channelAdminLogEventActionChangeAvailableReactions#be4e0ef8 prev_value:ChatReactions new_value:ChatReactions = ChannelAdminLogEventAction;
  836. channelAdminLogEventActionChangeUsernames#f04fb3a9 prev_value:Vector<string> new_value:Vector<string> = ChannelAdminLogEventAction;
  837. channelAdminLogEventActionToggleForum#2cc6383 new_value:Bool = ChannelAdminLogEventAction;
  838. channelAdminLogEventActionCreateTopic#58707d28 topic:ForumTopic = ChannelAdminLogEventAction;
  839. channelAdminLogEventActionEditTopic#f06fe208 prev_topic:ForumTopic new_topic:ForumTopic = ChannelAdminLogEventAction;
  840. channelAdminLogEventActionDeleteTopic#ae168909 topic:ForumTopic = ChannelAdminLogEventAction;
  841. channelAdminLogEventActionPinTopic#5d8d353b flags:# prev_topic:flags.0?ForumTopic new_topic:flags.1?ForumTopic = ChannelAdminLogEventAction;
  842. channelAdminLogEventActionToggleAntiSpam#64f36dfc new_value:Bool = ChannelAdminLogEventAction;
  843. channelAdminLogEventActionChangePeerColor#5796e780 prev_value:PeerColor new_value:PeerColor = ChannelAdminLogEventAction;
  844. channelAdminLogEventActionChangeProfilePeerColor#5e477b25 prev_value:PeerColor new_value:PeerColor = ChannelAdminLogEventAction;
  845. channelAdminLogEventActionChangeWallpaper#31bb5d52 prev_value:WallPaper new_value:WallPaper = ChannelAdminLogEventAction;
  846. channelAdminLogEventActionChangeEmojiStatus#3ea9feb1 prev_value:EmojiStatus new_value:EmojiStatus = ChannelAdminLogEventAction;
  847. channelAdminLogEventActionChangeEmojiStickerSet#46d840ab prev_stickerset:InputStickerSet new_stickerset:InputStickerSet = ChannelAdminLogEventAction;
  848. channelAdminLogEventActionToggleSignatureProfiles#60a79c79 new_value:Bool = ChannelAdminLogEventAction;
  849. channelAdminLogEventActionParticipantSubExtend#64642db3 prev_participant:ChannelParticipant new_participant:ChannelParticipant = ChannelAdminLogEventAction;
  850. channelAdminLogEvent#1fad68cd id:long date:int user_id:long action:ChannelAdminLogEventAction = ChannelAdminLogEvent;
  851. channels.adminLogResults#ed8af74d events:Vector<ChannelAdminLogEvent> chats:Vector<Chat> users:Vector<User> = channels.AdminLogResults;
  852. channelAdminLogEventsFilter#ea107ae4 flags:# join:flags.0?true leave:flags.1?true invite:flags.2?true ban:flags.3?true unban:flags.4?true kick:flags.5?true unkick:flags.6?true promote:flags.7?true demote:flags.8?true info:flags.9?true settings:flags.10?true pinned:flags.11?true edit:flags.12?true delete:flags.13?true group_call:flags.14?true invites:flags.15?true send:flags.16?true forums:flags.17?true sub_extend:flags.18?true = ChannelAdminLogEventsFilter;
  853. popularContact#5ce14175 client_id:long importers:int = PopularContact;
  854. messages.favedStickersNotModified#9e8fa6d3 = messages.FavedStickers;
  855. messages.favedStickers#2cb51097 hash:long packs:Vector<StickerPack> stickers:Vector<Document> = messages.FavedStickers;
  856. recentMeUrlUnknown#46e1d13d url:string = RecentMeUrl;
  857. recentMeUrlUser#b92c09e2 url:string user_id:long = RecentMeUrl;
  858. recentMeUrlChat#b2da71d2 url:string chat_id:long = RecentMeUrl;
  859. recentMeUrlChatInvite#eb49081d url:string chat_invite:ChatInvite = RecentMeUrl;
  860. recentMeUrlStickerSet#bc0a57dc url:string set:StickerSetCovered = RecentMeUrl;
  861. help.recentMeUrls#e0310d7 urls:Vector<RecentMeUrl> chats:Vector<Chat> users:Vector<User> = help.RecentMeUrls;
  862. inputSingleMedia#1cc6e91f flags:# media:InputMedia random_id:long message:string entities:flags.0?Vector<MessageEntity> = InputSingleMedia;
  863. webAuthorization#a6f8f452 hash:long bot_id:long domain:string browser:string platform:string date_created:int date_active:int ip:string region:string = WebAuthorization;
  864. account.webAuthorizations#ed56c9fc authorizations:Vector<WebAuthorization> users:Vector<User> = account.WebAuthorizations;
  865. inputMessageID#a676a322 id:int = InputMessage;
  866. inputMessageReplyTo#bad88395 id:int = InputMessage;
  867. inputMessagePinned#86872538 = InputMessage;
  868. inputMessageCallbackQuery#acfa1a7e id:int query_id:long = InputMessage;
  869. inputDialogPeer#fcaafeb7 peer:InputPeer = InputDialogPeer;
  870. inputDialogPeerFolder#64600527 folder_id:int = InputDialogPeer;
  871. dialogPeer#e56dbf05 peer:Peer = DialogPeer;
  872. dialogPeerFolder#514519e2 folder_id:int = DialogPeer;
  873. messages.foundStickerSetsNotModified#d54b65d = messages.FoundStickerSets;
  874. messages.foundStickerSets#8af09dd2 hash:long sets:Vector<StickerSetCovered> = messages.FoundStickerSets;
  875. fileHash#f39b035c offset:long limit:int hash:bytes = FileHash;
  876. inputClientProxy#75588b3f address:string port:int = InputClientProxy;
  877. help.termsOfServiceUpdateEmpty#e3309f7f expires:int = help.TermsOfServiceUpdate;
  878. help.termsOfServiceUpdate#28ecf961 expires:int terms_of_service:help.TermsOfService = help.TermsOfServiceUpdate;
  879. inputSecureFileUploaded#3334b0f0 id:long parts:int md5_checksum:string file_hash:bytes secret:bytes = InputSecureFile;
  880. inputSecureFile#5367e5be id:long access_hash:long = InputSecureFile;
  881. secureFileEmpty#64199744 = SecureFile;
  882. secureFile#7d09c27e id:long access_hash:long size:long dc_id:int date:int file_hash:bytes secret:bytes = SecureFile;
  883. secureData#8aeabec3 data:bytes data_hash:bytes secret:bytes = SecureData;
  884. securePlainPhone#7d6099dd phone:string = SecurePlainData;
  885. securePlainEmail#21ec5a5f email:string = SecurePlainData;
  886. secureValueTypePersonalDetails#9d2a81e3 = SecureValueType;
  887. secureValueTypePassport#3dac6a00 = SecureValueType;
  888. secureValueTypeDriverLicense#6e425c4 = SecureValueType;
  889. secureValueTypeIdentityCard#a0d0744b = SecureValueType;
  890. secureValueTypeInternalPassport#99a48f23 = SecureValueType;
  891. secureValueTypeAddress#cbe31e26 = SecureValueType;
  892. secureValueTypeUtilityBill#fc36954e = SecureValueType;
  893. secureValueTypeBankStatement#89137c0d = SecureValueType;
  894. secureValueTypeRentalAgreement#8b883488 = SecureValueType;
  895. secureValueTypePassportRegistration#99e3806a = SecureValueType;
  896. secureValueTypeTemporaryRegistration#ea02ec33 = SecureValueType;
  897. secureValueTypePhone#b320aadb = SecureValueType;
  898. secureValueTypeEmail#8e3ca7ee = SecureValueType;
  899. secureValue#187fa0ca flags:# type:SecureValueType data:flags.0?SecureData front_side:flags.1?SecureFile reverse_side:flags.2?SecureFile selfie:flags.3?SecureFile translation:flags.6?Vector<SecureFile> files:flags.4?Vector<SecureFile> plain_data:flags.5?SecurePlainData hash:bytes = SecureValue;
  900. inputSecureValue#db21d0a7 flags:# type:SecureValueType data:flags.0?SecureData front_side:flags.1?InputSecureFile reverse_side:flags.2?InputSecureFile selfie:flags.3?InputSecureFile translation:flags.6?Vector<InputSecureFile> files:flags.4?Vector<InputSecureFile> plain_data:flags.5?SecurePlainData = InputSecureValue;
  901. secureValueHash#ed1ecdb0 type:SecureValueType hash:bytes = SecureValueHash;
  902. secureValueErrorData#e8a40bd9 type:SecureValueType data_hash:bytes field:string text:string = SecureValueError;
  903. secureValueErrorFrontSide#be3dfa type:SecureValueType file_hash:bytes text:string = SecureValueError;
  904. secureValueErrorReverseSide#868a2aa5 type:SecureValueType file_hash:bytes text:string = SecureValueError;
  905. secureValueErrorSelfie#e537ced6 type:SecureValueType file_hash:bytes text:string = SecureValueError;
  906. secureValueErrorFile#7a700873 type:SecureValueType file_hash:bytes text:string = SecureValueError;
  907. secureValueErrorFiles#666220e9 type:SecureValueType file_hash:Vector<bytes> text:string = SecureValueError;
  908. secureValueError#869d758f type:SecureValueType hash:bytes text:string = SecureValueError;
  909. secureValueErrorTranslationFile#a1144770 type:SecureValueType file_hash:bytes text:string = SecureValueError;
  910. secureValueErrorTranslationFiles#34636dd8 type:SecureValueType file_hash:Vector<bytes> text:string = SecureValueError;
  911. secureCredentialsEncrypted#33f0ea47 data:bytes hash:bytes secret:bytes = SecureCredentialsEncrypted;
  912. account.authorizationForm#ad2e1cd8 flags:# required_types:Vector<SecureRequiredType> values:Vector<SecureValue> errors:Vector<SecureValueError> users:Vector<User> privacy_policy_url:flags.0?string = account.AuthorizationForm;
  913. account.sentEmailCode#811f854f email_pattern:string length:int = account.SentEmailCode;
  914. help.deepLinkInfoEmpty#66afa166 = help.DeepLinkInfo;
  915. help.deepLinkInfo#6a4ee832 flags:# update_app:flags.0?true message:string entities:flags.1?Vector<MessageEntity> = help.DeepLinkInfo;
  916. savedPhoneContact#1142bd56 phone:string first_name:string last_name:string date:int = SavedContact;
  917. account.takeout#4dba4501 id:long = account.Takeout;
  918. passwordKdfAlgoUnknown#d45ab096 = PasswordKdfAlgo;
  919. passwordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow#3a912d4a salt1:bytes salt2:bytes g:int p:bytes = PasswordKdfAlgo;
  920. securePasswordKdfAlgoUnknown#4a8537 = SecurePasswordKdfAlgo;
  921. securePasswordKdfAlgoPBKDF2HMACSHA512iter100000#bbf2dda0 salt:bytes = SecurePasswordKdfAlgo;
  922. securePasswordKdfAlgoSHA512#86471d92 salt:bytes = SecurePasswordKdfAlgo;
  923. secureSecretSettings#1527bcac secure_algo:SecurePasswordKdfAlgo secure_secret:bytes secure_secret_id:long = SecureSecretSettings;
  924. inputCheckPasswordEmpty#9880f658 = InputCheckPasswordSRP;
  925. inputCheckPasswordSRP#d27ff082 srp_id:long A:bytes M1:bytes = InputCheckPasswordSRP;
  926. secureRequiredType#829d99da flags:# native_names:flags.0?true selfie_required:flags.1?true translation_required:flags.2?true type:SecureValueType = SecureRequiredType;
  927. secureRequiredTypeOneOf#27477b4 types:Vector<SecureRequiredType> = SecureRequiredType;
  928. help.passportConfigNotModified#bfb9f457 = help.PassportConfig;
  929. help.passportConfig#a098d6af hash:int countries_langs:DataJSON = help.PassportConfig;
  930. inputAppEvent#1d1b1245 time:double type:string peer:long data:JSONValue = InputAppEvent;
  931. jsonObjectValue#c0de1bd9 key:string value:JSONValue = JSONObjectValue;
  932. jsonNull#3f6d7b68 = JSONValue;
  933. jsonBool#c7345e6a value:Bool = JSONValue;
  934. jsonNumber#2be0dfa4 value:double = JSONValue;
  935. jsonString#b71e767a value:string = JSONValue;
  936. jsonArray#f7444763 value:Vector<JSONValue> = JSONValue;
  937. jsonObject#99c1d49d value:Vector<JSONObjectValue> = JSONValue;
  938. pageTableCell#34566b6a flags:# header:flags.0?true align_center:flags.3?true align_right:flags.4?true valign_middle:flags.5?true valign_bottom:flags.6?true text:flags.7?RichText colspan:flags.1?int rowspan:flags.2?int = PageTableCell;
  939. pageTableRow#e0c0c5e5 cells:Vector<PageTableCell> = PageTableRow;
  940. pageCaption#6f747657 text:RichText credit:RichText = PageCaption;
  941. pageListItemText#b92fb6cd text:RichText = PageListItem;
  942. pageListItemBlocks#25e073fc blocks:Vector<PageBlock> = PageListItem;
  943. pageListOrderedItemText#5e068047 num:string text:RichText = PageListOrderedItem;
  944. pageListOrderedItemBlocks#98dd8936 num:string blocks:Vector<PageBlock> = PageListOrderedItem;
  945. pageRelatedArticle#b390dc08 flags:# url:string webpage_id:long title:flags.0?string description:flags.1?string photo_id:flags.2?long author:flags.3?string published_date:flags.4?int = PageRelatedArticle;
  946. page#98657f0d flags:# part:flags.0?true rtl:flags.1?true v2:flags.2?true url:string blocks:Vector<PageBlock> photos:Vector<Photo> documents:Vector<Document> views:flags.3?int = Page;
  947. help.supportName#8c05f1c9 name:string = help.SupportName;
  948. help.userInfoEmpty#f3ae2eed = help.UserInfo;
  949. help.userInfo#1eb3758 message:string entities:Vector<MessageEntity> author:string date:int = help.UserInfo;
  950. pollAnswer#ff16e2ca text:TextWithEntities option:bytes = PollAnswer;
  951. poll#58747131 id:long flags:# closed:flags.0?true public_voters:flags.1?true multiple_choice:flags.2?true quiz:flags.3?true question:TextWithEntities answers:Vector<PollAnswer> close_period:flags.4?int close_date:flags.5?int = Poll;
  952. pollAnswerVoters#3b6ddad2 flags:# chosen:flags.0?true correct:flags.1?true option:bytes voters:int = PollAnswerVoters;
  953. pollResults#7adf2420 flags:# min:flags.0?true results:flags.1?Vector<PollAnswerVoters> total_voters:flags.2?int recent_voters:flags.3?Vector<Peer> solution:flags.4?string solution_entities:flags.4?Vector<MessageEntity> = PollResults;
  954. chatOnlines#f041e250 onlines:int = ChatOnlines;
  955. statsURL#47a971e0 url:string = StatsURL;
  956. chatAdminRights#5fb224d5 flags:# change_info:flags.0?true post_messages:flags.1?true edit_messages:flags.2?true delete_messages:flags.3?true ban_users:flags.4?true invite_users:flags.5?true pin_messages:flags.7?true add_admins:flags.9?true anonymous:flags.10?true manage_call:flags.11?true other:flags.12?true manage_topics:flags.13?true post_stories:flags.14?true edit_stories:flags.15?true delete_stories:flags.16?true = ChatAdminRights;
  957. chatBannedRights#9f120418 flags:# view_messages:flags.0?true send_messages:flags.1?true send_media:flags.2?true send_stickers:flags.3?true send_gifs:flags.4?true send_games:flags.5?true send_inline:flags.6?true embed_links:flags.7?true send_polls:flags.8?true change_info:flags.10?true invite_users:flags.15?true pin_messages:flags.17?true manage_topics:flags.18?true send_photos:flags.19?true send_videos:flags.20?true send_roundvideos:flags.21?true send_audios:flags.22?true send_voices:flags.23?true send_docs:flags.24?true send_plain:flags.25?true until_date:int = ChatBannedRights;
  958. inputWallPaper#e630b979 id:long access_hash:long = InputWallPaper;
  959. inputWallPaperSlug#72091c80 slug:string = InputWallPaper;
  960. inputWallPaperNoFile#967a462e id:long = InputWallPaper;
  961. account.wallPapersNotModified#1c199183 = account.WallPapers;
  962. account.wallPapers#cdc3858c hash:long wallpapers:Vector<WallPaper> = account.WallPapers;
  963. codeSettings#ad253d78 flags:# allow_flashcall:flags.0?true current_number:flags.1?true allow_app_hash:flags.4?true allow_missed_call:flags.5?true allow_firebase:flags.7?true unknown_number:flags.9?true logout_tokens:flags.6?Vector<bytes> token:flags.8?string app_sandbox:flags.8?Bool = CodeSettings;
  964. wallPaperSettings#372efcd0 flags:# blur:flags.1?true motion:flags.2?true background_color:flags.0?int second_background_color:flags.4?int third_background_color:flags.5?int fourth_background_color:flags.6?int intensity:flags.3?int rotation:flags.4?int emoticon:flags.7?string = WallPaperSettings;
  965. autoDownloadSettings#baa57628 flags:# disabled:flags.0?true video_preload_large:flags.1?true audio_preload_next:flags.2?true phonecalls_less_data:flags.3?true stories_preload:flags.4?true photo_size_max:int video_size_max:long file_size_max:long video_upload_maxbitrate:int small_queue_active_operations_max:int large_queue_active_operations_max:int = AutoDownloadSettings;
  966. account.autoDownloadSettings#63cacf26 low:AutoDownloadSettings medium:AutoDownloadSettings high:AutoDownloadSettings = account.AutoDownloadSettings;
  967. emojiKeyword#d5b3b9f9 keyword:string emoticons:Vector<string> = EmojiKeyword;
  968. emojiKeywordDeleted#236df622 keyword:string emoticons:Vector<string> = EmojiKeyword;
  969. emojiKeywordsDifference#5cc761bd lang_code:string from_version:int version:int keywords:Vector<EmojiKeyword> = EmojiKeywordsDifference;
  970. emojiURL#a575739d url:string = EmojiURL;
  971. emojiLanguage#b3fb5361 lang_code:string = EmojiLanguage;
  972. folder#ff544e65 flags:# autofill_new_broadcasts:flags.0?true autofill_public_groups:flags.1?true autofill_new_correspondents:flags.2?true id:int title:string photo:flags.3?ChatPhoto = Folder;
  973. inputFolderPeer#fbd2c296 peer:InputPeer folder_id:int = InputFolderPeer;
  974. folderPeer#e9baa668 peer:Peer folder_id:int = FolderPeer;
  975. messages.searchCounter#e844ebff flags:# inexact:flags.1?true filter:MessagesFilter count:int = messages.SearchCounter;
  976. urlAuthResultRequest#92d33a0e flags:# request_write_access:flags.0?true bot:User domain:string = UrlAuthResult;
  977. urlAuthResultAccepted#8f8c0e4e url:string = UrlAuthResult;
  978. urlAuthResultDefault#a9d6db1f = UrlAuthResult;
  979. channelLocationEmpty#bfb5ad8b = ChannelLocation;
  980. channelLocation#209b82db geo_point:GeoPoint address:string = ChannelLocation;
  981. peerLocated#ca461b5d peer:Peer expires:int distance:int = PeerLocated;
  982. peerSelfLocated#f8ec284b expires:int = PeerLocated;
  983. restrictionReason#d072acb4 platform:string reason:string text:string = RestrictionReason;
  984. inputTheme#3c5693e9 id:long access_hash:long = InputTheme;
  985. inputThemeSlug#f5890df1 slug:string = InputTheme;
  986. theme#a00e67d6 flags:# creator:flags.0?true default:flags.1?true for_chat:flags.5?true id:long access_hash:long slug:string title:string document:flags.2?Document settings:flags.3?Vector<ThemeSettings> emoticon:flags.6?string installs_count:flags.4?int = Theme;
  987. account.themesNotModified#f41eb622 = account.Themes;
  988. account.themes#9a3d8c6d hash:long themes:Vector<Theme> = account.Themes;
  989. auth.loginToken#629f1980 expires:int token:bytes = auth.LoginToken;
  990. auth.loginTokenMigrateTo#68e9916 dc_id:int token:bytes = auth.LoginToken;
  991. auth.loginTokenSuccess#390d5c5e authorization:auth.Authorization = auth.LoginToken;
  992. account.contentSettings#57e28221 flags:# sensitive_enabled:flags.0?true sensitive_can_change:flags.1?true = account.ContentSettings;
  993. messages.inactiveChats#a927fec5 dates:Vector<int> chats:Vector<Chat> users:Vector<User> = messages.InactiveChats;
  994. baseThemeClassic#c3a12462 = BaseTheme;
  995. baseThemeDay#fbd81688 = BaseTheme;
  996. baseThemeNight#b7b31ea8 = BaseTheme;
  997. baseThemeTinted#6d5f77ee = BaseTheme;
  998. baseThemeArctic#5b11125a = BaseTheme;
  999. inputThemeSettings#8fde504f flags:# message_colors_animated:flags.2?true base_theme:BaseTheme accent_color:int outbox_accent_color:flags.3?int message_colors:flags.0?Vector<int> wallpaper:flags.1?InputWallPaper wallpaper_settings:flags.1?WallPaperSettings = InputThemeSettings;
  1000. themeSettings#fa58b6d4 flags:# message_colors_animated:flags.2?true base_theme:BaseTheme accent_color:int outbox_accent_color:flags.3?int message_colors:flags.0?Vector<int> wallpaper:flags.1?WallPaper = ThemeSettings;
  1001. webPageAttributeTheme#54b56617 flags:# documents:flags.0?Vector<Document> settings:flags.1?ThemeSettings = WebPageAttribute;
  1002. webPageAttributeStory#2e94c3e7 flags:# peer:Peer id:int story:flags.0?StoryItem = WebPageAttribute;
  1003. webPageAttributeStickerSet#50cc03d3 flags:# emojis:flags.0?true text_color:flags.1?true stickers:Vector<Document> = WebPageAttribute;
  1004. webPageAttributeUniqueStarGift#cf6f6db8 gift:StarGift = WebPageAttribute;
  1005. messages.votesList#4899484e flags:# count:int votes:Vector<MessagePeerVote> chats:Vector<Chat> users:Vector<User> next_offset:flags.0?string = messages.VotesList;
  1006. bankCardOpenUrl#f568028a url:string name:string = BankCardOpenUrl;
  1007. payments.bankCardData#3e24e573 title:string open_urls:Vector<BankCardOpenUrl> = payments.BankCardData;
  1008. dialogFilter#aa472651 flags:# contacts:flags.0?true non_contacts:flags.1?true groups:flags.2?true broadcasts:flags.3?true bots:flags.4?true exclude_muted:flags.11?true exclude_read:flags.12?true exclude_archived:flags.13?true title_noanimate:flags.28?true id:int title:TextWithEntities emoticon:flags.25?string color:flags.27?int pinned_peers:Vector<InputPeer> include_peers:Vector<InputPeer> exclude_peers:Vector<InputPeer> = DialogFilter;
  1009. dialogFilterDefault#363293ae = DialogFilter;
  1010. dialogFilterChatlist#96537bd7 flags:# has_my_invites:flags.26?true title_noanimate:flags.28?true id:int title:TextWithEntities emoticon:flags.25?string color:flags.27?int pinned_peers:Vector<InputPeer> include_peers:Vector<InputPeer> = DialogFilter;
  1011. dialogFilterSuggested#77744d4a filter:DialogFilter description:string = DialogFilterSuggested;
  1012. statsDateRangeDays#b637edaf min_date:int max_date:int = StatsDateRangeDays;
  1013. statsAbsValueAndPrev#cb43acde current:double previous:double = StatsAbsValueAndPrev;
  1014. statsPercentValue#cbce2fe0 part:double total:double = StatsPercentValue;
  1015. statsGraphAsync#4a27eb2d token:string = StatsGraph;
  1016. statsGraphError#bedc9822 error:string = StatsGraph;
  1017. statsGraph#8ea464b6 flags:# json:DataJSON zoom_token:flags.0?string = StatsGraph;
  1018. stats.broadcastStats#396ca5fc period:StatsDateRangeDays followers:StatsAbsValueAndPrev views_per_post:StatsAbsValueAndPrev shares_per_post:StatsAbsValueAndPrev reactions_per_post:StatsAbsValueAndPrev views_per_story:StatsAbsValueAndPrev shares_per_story:StatsAbsValueAndPrev reactions_per_story:StatsAbsValueAndPrev enabled_notifications:StatsPercentValue growth_graph:StatsGraph followers_graph:StatsGraph mute_graph:StatsGraph top_hours_graph:StatsGraph interactions_graph:StatsGraph iv_interactions_graph:StatsGraph views_by_source_graph:StatsGraph new_followers_by_source_graph:StatsGraph languages_graph:StatsGraph reactions_by_emotion_graph:StatsGraph story_interactions_graph:StatsGraph story_reactions_by_emotion_graph:StatsGraph recent_posts_interactions:Vector<PostInteractionCounters> = stats.BroadcastStats;
  1019. help.promoDataEmpty#98f6ac75 expires:int = help.PromoData;
  1020. help.promoData#8c39793f flags:# proxy:flags.0?true expires:int peer:Peer chats:Vector<Chat> users:Vector<User> psa_type:flags.1?string psa_message:flags.2?string = help.PromoData;
  1021. videoSize#de33b094 flags:# type:string w:int h:int size:int video_start_ts:flags.0?double = VideoSize;
  1022. videoSizeEmojiMarkup#f85c413c emoji_id:long background_colors:Vector<int> = VideoSize;
  1023. videoSizeStickerMarkup#da082fe stickerset:InputStickerSet sticker_id:long background_colors:Vector<int> = VideoSize;
  1024. statsGroupTopPoster#9d04af9b user_id:long messages:int avg_chars:int = StatsGroupTopPoster;
  1025. statsGroupTopAdmin#d7584c87 user_id:long deleted:int kicked:int banned:int = StatsGroupTopAdmin;
  1026. statsGroupTopInviter#535f779d user_id:long invitations:int = StatsGroupTopInviter;
  1027. stats.megagroupStats#ef7ff916 period:StatsDateRangeDays members:StatsAbsValueAndPrev messages:StatsAbsValueAndPrev viewers:StatsAbsValueAndPrev posters:StatsAbsValueAndPrev growth_graph:StatsGraph members_graph:StatsGraph new_members_by_source_graph:StatsGraph languages_graph:StatsGraph messages_graph:StatsGraph actions_graph:StatsGraph top_hours_graph:StatsGraph weekdays_graph:StatsGraph top_posters:Vector<StatsGroupTopPoster> top_admins:Vector<StatsGroupTopAdmin> top_inviters:Vector<StatsGroupTopInviter> users:Vector<User> = stats.MegagroupStats;
  1028. globalPrivacySettings#c9d8df1c flags:# archive_and_mute_new_noncontact_peers:flags.0?true keep_archived_unmuted:flags.1?true keep_archived_folders:flags.2?true hide_read_marks:flags.3?true new_noncontact_peers_require_premium:flags.4?true noncontact_peers_paid_stars:flags.5?long = GlobalPrivacySettings;
  1029. help.countryCode#4203c5ef flags:# country_code:string prefixes:flags.0?Vector<string> patterns:flags.1?Vector<string> = help.CountryCode;
  1030. help.country#c3878e23 flags:# hidden:flags.0?true iso2:string default_name:string name:flags.1?string country_codes:Vector<help.CountryCode> = help.Country;
  1031. help.countriesListNotModified#93cc1f32 = help.CountriesList;
  1032. help.countriesList#87d0759e countries:Vector<help.Country> hash:int = help.CountriesList;
  1033. messageViews#455b853d flags:# views:flags.0?int forwards:flags.1?int replies:flags.2?MessageReplies = MessageViews;
  1034. messages.messageViews#b6c4f543 views:Vector<MessageViews> chats:Vector<Chat> users:Vector<User> = messages.MessageViews;
  1035. messages.discussionMessage#a6341782 flags:# messages:Vector<Message> max_id:flags.0?int read_inbox_max_id:flags.1?int read_outbox_max_id:flags.2?int unread_count:int chats:Vector<Chat> users:Vector<User> = messages.DiscussionMessage;
  1036. messageReplyHeader#afbc09db flags:# reply_to_scheduled:flags.2?true forum_topic:flags.3?true quote:flags.9?true reply_to_msg_id:flags.4?int reply_to_peer_id:flags.0?Peer reply_from:flags.5?MessageFwdHeader reply_media:flags.8?MessageMedia reply_to_top_id:flags.1?int quote_text:flags.6?string quote_entities:flags.7?Vector<MessageEntity> quote_offset:flags.10?int = MessageReplyHeader;
  1037. messageReplyStoryHeader#e5af939 peer:Peer story_id:int = MessageReplyHeader;
  1038. messageReplies#83d60fc2 flags:# comments:flags.0?true replies:int replies_pts:int recent_repliers:flags.1?Vector<Peer> channel_id:flags.0?long max_id:flags.2?int read_max_id:flags.3?int = MessageReplies;
  1039. peerBlocked#e8fd8014 peer_id:Peer date:int = PeerBlocked;
  1040. stats.messageStats#7fe91c14 views_graph:StatsGraph reactions_by_emotion_graph:StatsGraph = stats.MessageStats;
  1041. groupCallDiscarded#7780bcb4 id:long access_hash:long duration:int = GroupCall;
  1042. groupCall#cdf8d3e3 flags:# join_muted:flags.1?true can_change_join_muted:flags.2?true join_date_asc:flags.6?true schedule_start_subscribed:flags.8?true can_start_video:flags.9?true record_video_active:flags.11?true rtmp_stream:flags.12?true listeners_hidden:flags.13?true id:long access_hash:long participants_count:int title:flags.3?string stream_dc_id:flags.4?int record_start_date:flags.5?int schedule_date:flags.7?int unmuted_video_count:flags.10?int unmuted_video_limit:int version:int conference_from_call:flags.14?long = GroupCall;
  1043. inputGroupCall#d8aa840f id:long access_hash:long = InputGroupCall;
  1044. groupCallParticipant#eba636fe flags:# muted:flags.0?true left:flags.1?true can_self_unmute:flags.2?true just_joined:flags.4?true versioned:flags.5?true min:flags.8?true muted_by_you:flags.9?true volume_by_admin:flags.10?true self:flags.12?true video_joined:flags.15?true peer:Peer date:int active_date:flags.3?int source:int volume:flags.7?int about:flags.11?string raise_hand_rating:flags.13?long video:flags.6?GroupCallParticipantVideo presentation:flags.14?GroupCallParticipantVideo = GroupCallParticipant;
  1045. phone.groupCall#9e727aad call:GroupCall participants:Vector<GroupCallParticipant> participants_next_offset:string chats:Vector<Chat> users:Vector<User> = phone.GroupCall;
  1046. phone.groupParticipants#f47751b6 count:int participants:Vector<GroupCallParticipant> next_offset:string chats:Vector<Chat> users:Vector<User> version:int = phone.GroupParticipants;
  1047. inlineQueryPeerTypeSameBotPM#3081ed9d = InlineQueryPeerType;
  1048. inlineQueryPeerTypePM#833c0fac = InlineQueryPeerType;
  1049. inlineQueryPeerTypeChat#d766c50a = InlineQueryPeerType;
  1050. inlineQueryPeerTypeMegagroup#5ec4be43 = InlineQueryPeerType;
  1051. inlineQueryPeerTypeBroadcast#6334ee9a = InlineQueryPeerType;
  1052. inlineQueryPeerTypeBotPM#e3b2d0c = InlineQueryPeerType;
  1053. messages.historyImport#1662af0b id:long = messages.HistoryImport;
  1054. messages.historyImportParsed#5e0fb7b9 flags:# pm:flags.0?true group:flags.1?true title:flags.2?string = messages.HistoryImportParsed;
  1055. messages.affectedFoundMessages#ef8d3e6c pts:int pts_count:int offset:int messages:Vector<int> = messages.AffectedFoundMessages;
  1056. chatInviteImporter#8c5adfd9 flags:# requested:flags.0?true via_chatlist:flags.3?true user_id:long date:int about:flags.2?string approved_by:flags.1?long = ChatInviteImporter;
  1057. messages.exportedChatInvites#bdc62dcc count:int invites:Vector<ExportedChatInvite> users:Vector<User> = messages.ExportedChatInvites;
  1058. messages.exportedChatInvite#1871be50 invite:ExportedChatInvite users:Vector<User> = messages.ExportedChatInvite;
  1059. messages.exportedChatInviteReplaced#222600ef invite:ExportedChatInvite new_invite:ExportedChatInvite users:Vector<User> = messages.ExportedChatInvite;
  1060. messages.chatInviteImporters#81b6b00a count:int importers:Vector<ChatInviteImporter> users:Vector<User> = messages.ChatInviteImporters;
  1061. chatAdminWithInvites#f2ecef23 admin_id:long invites_count:int revoked_invites_count:int = ChatAdminWithInvites;
  1062. messages.chatAdminsWithInvites#b69b72d7 admins:Vector<ChatAdminWithInvites> users:Vector<User> = messages.ChatAdminsWithInvites;
  1063. messages.checkedHistoryImportPeer#a24de717 confirm_text:string = messages.CheckedHistoryImportPeer;
  1064. phone.joinAsPeers#afe5623f peers:Vector<Peer> chats:Vector<Chat> users:Vector<User> = phone.JoinAsPeers;
  1065. phone.exportedGroupCallInvite#204bd158 link:string = phone.ExportedGroupCallInvite;
  1066. groupCallParticipantVideoSourceGroup#dcb118b7 semantics:string sources:Vector<int> = GroupCallParticipantVideoSourceGroup;
  1067. groupCallParticipantVideo#67753ac8 flags:# paused:flags.0?true endpoint:string source_groups:Vector<GroupCallParticipantVideoSourceGroup> audio_source:flags.1?int = GroupCallParticipantVideo;
  1068. stickers.suggestedShortName#85fea03f short_name:string = stickers.SuggestedShortName;
  1069. botCommandScopeDefault#2f6cb2ab = BotCommandScope;
  1070. botCommandScopeUsers#3c4f04d8 = BotCommandScope;
  1071. botCommandScopeChats#6fe1a881 = BotCommandScope;
  1072. botCommandScopeChatAdmins#b9aa606a = BotCommandScope;
  1073. botCommandScopePeer#db9d897d peer:InputPeer = BotCommandScope;
  1074. botCommandScopePeerAdmins#3fd863d1 peer:InputPeer = BotCommandScope;
  1075. botCommandScopePeerUser#a1321f3 peer:InputPeer user_id:InputUser = BotCommandScope;
  1076. account.resetPasswordFailedWait#e3779861 retry_date:int = account.ResetPasswordResult;
  1077. account.resetPasswordRequestedWait#e9effc7d until_date:int = account.ResetPasswordResult;
  1078. account.resetPasswordOk#e926d63e = account.ResetPasswordResult;
  1079. sponsoredMessage#4d93a990 flags:# recommended:flags.5?true can_report:flags.12?true random_id:bytes url:string title:string message:string entities:flags.1?Vector<MessageEntity> photo:flags.6?Photo media:flags.14?MessageMedia color:flags.13?PeerColor button_text:string sponsor_info:flags.7?string additional_info:flags.8?string = SponsoredMessage;
  1080. messages.sponsoredMessages#c9ee1d87 flags:# posts_between:flags.0?int messages:Vector<SponsoredMessage> chats:Vector<Chat> users:Vector<User> = messages.SponsoredMessages;
  1081. messages.sponsoredMessagesEmpty#1839490f = messages.SponsoredMessages;
  1082. searchResultsCalendarPeriod#c9b0539f date:int min_msg_id:int max_msg_id:int count:int = SearchResultsCalendarPeriod;
  1083. messages.searchResultsCalendar#147ee23c flags:# inexact:flags.0?true count:int min_date:int min_msg_id:int offset_id_offset:flags.1?int periods:Vector<SearchResultsCalendarPeriod> messages:Vector<Message> chats:Vector<Chat> users:Vector<User> = messages.SearchResultsCalendar;
  1084. searchResultPosition#7f648b67 msg_id:int date:int offset:int = SearchResultsPosition;
  1085. messages.searchResultsPositions#53b22baf count:int positions:Vector<SearchResultsPosition> = messages.SearchResultsPositions;
  1086. channels.sendAsPeers#f496b0c6 peers:Vector<SendAsPeer> chats:Vector<Chat> users:Vector<User> = channels.SendAsPeers;
  1087. users.userFull#3b6d152e full_user:UserFull chats:Vector<Chat> users:Vector<User> = users.UserFull;
  1088. messages.peerSettings#6880b94d settings:PeerSettings chats:Vector<Chat> users:Vector<User> = messages.PeerSettings;
  1089. auth.loggedOut#c3a2835f flags:# future_auth_token:flags.0?bytes = auth.LoggedOut;
  1090. reactionCount#a3d1cb80 flags:# chosen_order:flags.0?int reaction:Reaction count:int = ReactionCount;
  1091. messageReactions#a339f0b flags:# min:flags.0?true can_see_list:flags.2?true reactions_as_tags:flags.3?true results:Vector<ReactionCount> recent_reactions:flags.1?Vector<MessagePeerReaction> top_reactors:flags.4?Vector<MessageReactor> = MessageReactions;
  1092. messages.messageReactionsList#31bd492d flags:# count:int reactions:Vector<MessagePeerReaction> chats:Vector<Chat> users:Vector<User> next_offset:flags.0?string = messages.MessageReactionsList;
  1093. availableReaction#c077ec01 flags:# inactive:flags.0?true premium:flags.2?true reaction:string title:string static_icon:Document appear_animation:Document select_animation:Document activate_animation:Document effect_animation:Document around_animation:flags.1?Document center_icon:flags.1?Document = AvailableReaction;
  1094. messages.availableReactionsNotModified#9f071957 = messages.AvailableReactions;
  1095. messages.availableReactions#768e3aad hash:int reactions:Vector<AvailableReaction> = messages.AvailableReactions;
  1096. messagePeerReaction#8c79b63c flags:# big:flags.0?true unread:flags.1?true my:flags.2?true peer_id:Peer date:int reaction:Reaction = MessagePeerReaction;
  1097. groupCallStreamChannel#80eb48af channel:int scale:int last_timestamp_ms:long = GroupCallStreamChannel;
  1098. phone.groupCallStreamChannels#d0e482b2 channels:Vector<GroupCallStreamChannel> = phone.GroupCallStreamChannels;
  1099. phone.groupCallStreamRtmpUrl#2dbf3432 url:string key:string = phone.GroupCallStreamRtmpUrl;
  1100. attachMenuBotIconColor#4576f3f0 name:string color:int = AttachMenuBotIconColor;
  1101. attachMenuBotIcon#b2a7386b flags:# name:string icon:Document colors:flags.0?Vector<AttachMenuBotIconColor> = AttachMenuBotIcon;
  1102. attachMenuBot#d90d8dfe flags:# inactive:flags.0?true has_settings:flags.1?true request_write_access:flags.2?true show_in_attach_menu:flags.3?true show_in_side_menu:flags.4?true side_menu_disclaimer_needed:flags.5?true bot_id:long short_name:string peer_types:flags.3?Vector<AttachMenuPeerType> icons:Vector<AttachMenuBotIcon> = AttachMenuBot;
  1103. attachMenuBotsNotModified#f1d88a5c = AttachMenuBots;
  1104. attachMenuBots#3c4301c0 hash:long bots:Vector<AttachMenuBot> users:Vector<User> = AttachMenuBots;
  1105. attachMenuBotsBot#93bf667f bot:AttachMenuBot users:Vector<User> = AttachMenuBotsBot;
  1106. webViewResultUrl#4d22ff98 flags:# fullsize:flags.1?true fullscreen:flags.2?true query_id:flags.0?long url:string = WebViewResult;
  1107. webViewMessageSent#c94511c flags:# msg_id:flags.0?InputBotInlineMessageID = WebViewMessageSent;
  1108. botMenuButtonDefault#7533a588 = BotMenuButton;
  1109. botMenuButtonCommands#4258c205 = BotMenuButton;
  1110. botMenuButton#c7b57ce6 text:string url:string = BotMenuButton;
  1111. account.savedRingtonesNotModified#fbf6e8b1 = account.SavedRingtones;
  1112. account.savedRingtones#c1e92cc5 hash:long ringtones:Vector<Document> = account.SavedRingtones;
  1113. notificationSoundDefault#97e8bebe = NotificationSound;
  1114. notificationSoundNone#6f0c34df = NotificationSound;
  1115. notificationSoundLocal#830b9ae4 title:string data:string = NotificationSound;
  1116. notificationSoundRingtone#ff6c8049 id:long = NotificationSound;
  1117. account.savedRingtone#b7263f6d = account.SavedRingtone;
  1118. account.savedRingtoneConverted#1f307eb7 document:Document = account.SavedRingtone;
  1119. attachMenuPeerTypeSameBotPM#7d6be90e = AttachMenuPeerType;
  1120. attachMenuPeerTypeBotPM#c32bfa1a = AttachMenuPeerType;
  1121. attachMenuPeerTypePM#f146d31f = AttachMenuPeerType;
  1122. attachMenuPeerTypeChat#509113f = AttachMenuPeerType;
  1123. attachMenuPeerTypeBroadcast#7bfbdefc = AttachMenuPeerType;
  1124. inputInvoiceMessage#c5b56859 peer:InputPeer msg_id:int = InputInvoice;
  1125. inputInvoiceSlug#c326caef slug:string = InputInvoice;
  1126. inputInvoicePremiumGiftCode#98986c0d purpose:InputStorePaymentPurpose option:PremiumGiftCodeOption = InputInvoice;
  1127. inputInvoiceStars#65f00ce3 purpose:InputStorePaymentPurpose = InputInvoice;
  1128. inputInvoiceChatInviteSubscription#34e793f1 hash:string = InputInvoice;
  1129. inputInvoiceStarGift#e8625e92 flags:# hide_name:flags.0?true include_upgrade:flags.2?true peer:InputPeer gift_id:long message:flags.1?TextWithEntities = InputInvoice;
  1130. inputInvoiceStarGiftUpgrade#4d818d5d flags:# keep_original_details:flags.0?true stargift:InputSavedStarGift = InputInvoice;
  1131. inputInvoiceStarGiftTransfer#4a5f5bd9 stargift:InputSavedStarGift to_id:InputPeer = InputInvoice;
  1132. inputInvoicePremiumGiftStars#dabab2ef flags:# user_id:InputUser months:int message:flags.0?TextWithEntities = InputInvoice;
  1133. payments.exportedInvoice#aed0cbd9 url:string = payments.ExportedInvoice;
  1134. messages.transcribedAudio#cfb9d957 flags:# pending:flags.0?true transcription_id:long text:string trial_remains_num:flags.1?int trial_remains_until_date:flags.1?int = messages.TranscribedAudio;
  1135. help.premiumPromo#5334759c status_text:string status_entities:Vector<MessageEntity> video_sections:Vector<string> videos:Vector<Document> period_options:Vector<PremiumSubscriptionOption> users:Vector<User> = help.PremiumPromo;
  1136. inputStorePaymentPremiumSubscription#a6751e66 flags:# restore:flags.0?true upgrade:flags.1?true = InputStorePaymentPurpose;
  1137. inputStorePaymentGiftPremium#616f7fe8 user_id:InputUser currency:string amount:long = InputStorePaymentPurpose;
  1138. inputStorePaymentPremiumGiftCode#fb790393 flags:# users:Vector<InputUser> boost_peer:flags.0?InputPeer currency:string amount:long message:flags.1?TextWithEntities = InputStorePaymentPurpose;
  1139. inputStorePaymentPremiumGiveaway#160544ca flags:# only_new_subscribers:flags.0?true winners_are_visible:flags.3?true boost_peer:InputPeer additional_peers:flags.1?Vector<InputPeer> countries_iso2:flags.2?Vector<string> prize_description:flags.4?string random_id:long until_date:int currency:string amount:long = InputStorePaymentPurpose;
  1140. inputStorePaymentStarsTopup#dddd0f56 stars:long currency:string amount:long = InputStorePaymentPurpose;
  1141. inputStorePaymentStarsGift#1d741ef7 user_id:InputUser stars:long currency:string amount:long = InputStorePaymentPurpose;
  1142. inputStorePaymentStarsGiveaway#751f08fa flags:# only_new_subscribers:flags.0?true winners_are_visible:flags.3?true stars:long boost_peer:InputPeer additional_peers:flags.1?Vector<InputPeer> countries_iso2:flags.2?Vector<string> prize_description:flags.4?string random_id:long until_date:int currency:string amount:long users:int = InputStorePaymentPurpose;
  1143. paymentFormMethod#88f8f21b url:string title:string = PaymentFormMethod;
  1144. emojiStatusEmpty#2de11aae = EmojiStatus;
  1145. emojiStatus#e7ff068a flags:# document_id:long until:flags.0?int = EmojiStatus;
  1146. emojiStatusCollectible#7184603b flags:# collectible_id:long document_id:long title:string slug:string pattern_document_id:long center_color:int edge_color:int pattern_color:int text_color:int until:flags.0?int = EmojiStatus;
  1147. inputEmojiStatusCollectible#7141dbf flags:# collectible_id:long until:flags.0?int = EmojiStatus;
  1148. account.emojiStatusesNotModified#d08ce645 = account.EmojiStatuses;
  1149. account.emojiStatuses#90c467d1 hash:long statuses:Vector<EmojiStatus> = account.EmojiStatuses;
  1150. reactionEmpty#79f5d419 = Reaction;
  1151. reactionEmoji#1b2286b8 emoticon:string = Reaction;
  1152. reactionCustomEmoji#8935fc73 document_id:long = Reaction;
  1153. reactionPaid#523da4eb = Reaction;
  1154. chatReactionsNone#eafc32bc = ChatReactions;
  1155. chatReactionsAll#52928bca flags:# allow_custom:flags.0?true = ChatReactions;
  1156. chatReactionsSome#661d4037 reactions:Vector<Reaction> = ChatReactions;
  1157. messages.reactionsNotModified#b06fdbdf = messages.Reactions;
  1158. messages.reactions#eafdf716 hash:long reactions:Vector<Reaction> = messages.Reactions;
  1159. emailVerifyPurposeLoginSetup#4345be73 phone_number:string phone_code_hash:string = EmailVerifyPurpose;
  1160. emailVerifyPurposeLoginChange#527d22eb = EmailVerifyPurpose;
  1161. emailVerifyPurposePassport#bbf51685 = EmailVerifyPurpose;
  1162. emailVerificationCode#922e55a9 code:string = EmailVerification;
  1163. emailVerificationGoogle#db909ec2 token:string = EmailVerification;
  1164. emailVerificationApple#96d074fd token:string = EmailVerification;
  1165. account.emailVerified#2b96cd1b email:string = account.EmailVerified;
  1166. account.emailVerifiedLogin#e1bb0d61 email:string sent_code:auth.SentCode = account.EmailVerified;
  1167. premiumSubscriptionOption#5f2d1df2 flags:# current:flags.1?true can_purchase_upgrade:flags.2?true transaction:flags.3?string months:int currency:string amount:long bot_url:string store_product:flags.0?string = PremiumSubscriptionOption;
  1168. sendAsPeer#b81c7034 flags:# premium_required:flags.0?true peer:Peer = SendAsPeer;
  1169. messageExtendedMediaPreview#ad628cc8 flags:# w:flags.0?int h:flags.0?int thumb:flags.1?PhotoSize video_duration:flags.2?int = MessageExtendedMedia;
  1170. messageExtendedMedia#ee479c64 media:MessageMedia = MessageExtendedMedia;
  1171. stickerKeyword#fcfeb29c document_id:long keyword:Vector<string> = StickerKeyword;
  1172. username#b4073647 flags:# editable:flags.0?true active:flags.1?true username:string = Username;
  1173. forumTopicDeleted#23f109b id:int = ForumTopic;
  1174. forumTopic#71701da9 flags:# my:flags.1?true closed:flags.2?true pinned:flags.3?true short:flags.5?true hidden:flags.6?true id:int date:int title:string icon_color:int icon_emoji_id:flags.0?long top_message:int read_inbox_max_id:int read_outbox_max_id:int unread_count:int unread_mentions_count:int unread_reactions_count:int from_id:Peer notify_settings:PeerNotifySettings draft:flags.4?DraftMessage = ForumTopic;
  1175. messages.forumTopics#367617d3 flags:# order_by_create_date:flags.0?true count:int topics:Vector<ForumTopic> messages:Vector<Message> chats:Vector<Chat> users:Vector<User> pts:int = messages.ForumTopics;
  1176. defaultHistoryTTL#43b46b20 period:int = DefaultHistoryTTL;
  1177. exportedContactToken#41bf109b url:string expires:int = ExportedContactToken;
  1178. requestPeerTypeUser#5f3b8a00 flags:# bot:flags.0?Bool premium:flags.1?Bool = RequestPeerType;
  1179. requestPeerTypeChat#c9f06e1b flags:# creator:flags.0?true bot_participant:flags.5?true has_username:flags.3?Bool forum:flags.4?Bool user_admin_rights:flags.1?ChatAdminRights bot_admin_rights:flags.2?ChatAdminRights = RequestPeerType;
  1180. requestPeerTypeBroadcast#339bef6c flags:# creator:flags.0?true has_username:flags.3?Bool user_admin_rights:flags.1?ChatAdminRights bot_admin_rights:flags.2?ChatAdminRights = RequestPeerType;
  1181. emojiListNotModified#481eadfa = EmojiList;
  1182. emojiList#7a1e11d1 hash:long document_id:Vector<long> = EmojiList;
  1183. emojiGroup#7a9abda9 title:string icon_emoji_id:long emoticons:Vector<string> = EmojiGroup;
  1184. emojiGroupGreeting#80d26cc7 title:string icon_emoji_id:long emoticons:Vector<string> = EmojiGroup;
  1185. emojiGroupPremium#93bcf34 title:string icon_emoji_id:long = EmojiGroup;
  1186. messages.emojiGroupsNotModified#6fb4ad87 = messages.EmojiGroups;
  1187. messages.emojiGroups#881fb94b hash:int groups:Vector<EmojiGroup> = messages.EmojiGroups;
  1188. textWithEntities#751f3146 text:string entities:Vector<MessageEntity> = TextWithEntities;
  1189. messages.translateResult#33db32f8 result:Vector<TextWithEntities> = messages.TranslatedText;
  1190. autoSaveSettings#c84834ce flags:# photos:flags.0?true videos:flags.1?true video_max_size:flags.2?long = AutoSaveSettings;
  1191. autoSaveException#81602d47 peer:Peer settings:AutoSaveSettings = AutoSaveException;
  1192. account.autoSaveSettings#4c3e069d users_settings:AutoSaveSettings chats_settings:AutoSaveSettings broadcasts_settings:AutoSaveSettings exceptions:Vector<AutoSaveException> chats:Vector<Chat> users:Vector<User> = account.AutoSaveSettings;
  1193. help.appConfigNotModified#7cde641d = help.AppConfig;
  1194. help.appConfig#dd18782e hash:int config:JSONValue = help.AppConfig;
  1195. inputBotAppID#a920bd7a id:long access_hash:long = InputBotApp;
  1196. inputBotAppShortName#908c0407 bot_id:InputUser short_name:string = InputBotApp;
  1197. botAppNotModified#5da674b7 = BotApp;
  1198. botApp#95fcd1d6 flags:# id:long access_hash:long short_name:string title:string description:string photo:Photo document:flags.0?Document hash:long = BotApp;
  1199. messages.botApp#eb50adf5 flags:# inactive:flags.0?true request_write_access:flags.1?true has_settings:flags.2?true app:BotApp = messages.BotApp;
  1200. inlineBotWebView#b57295d5 text:string url:string = InlineBotWebView;
  1201. readParticipantDate#4a4ff172 user_id:long date:int = ReadParticipantDate;
  1202. inputChatlistDialogFilter#f3e0da33 filter_id:int = InputChatlist;
  1203. exportedChatlistInvite#c5181ac flags:# title:string url:string peers:Vector<Peer> = ExportedChatlistInvite;
  1204. chatlists.exportedChatlistInvite#10e6e3a6 filter:DialogFilter invite:ExportedChatlistInvite = chatlists.ExportedChatlistInvite;
  1205. chatlists.exportedInvites#10ab6dc7 invites:Vector<ExportedChatlistInvite> chats:Vector<Chat> users:Vector<User> = chatlists.ExportedInvites;
  1206. chatlists.chatlistInviteAlready#fa87f659 filter_id:int missing_peers:Vector<Peer> already_peers:Vector<Peer> chats:Vector<Chat> users:Vector<User> = chatlists.ChatlistInvite;
  1207. chatlists.chatlistInvite#f10ece2f flags:# title_noanimate:flags.1?true title:TextWithEntities emoticon:flags.0?string peers:Vector<Peer> chats:Vector<Chat> users:Vector<User> = chatlists.ChatlistInvite;
  1208. chatlists.chatlistUpdates#93bd878d missing_peers:Vector<Peer> chats:Vector<Chat> users:Vector<User> = chatlists.ChatlistUpdates;
  1209. bots.botInfo#e8a775b0 name:string about:string description:string = bots.BotInfo;
  1210. messagePeerVote#b6cc2d5c peer:Peer option:bytes date:int = MessagePeerVote;
  1211. messagePeerVoteInputOption#74cda504 peer:Peer date:int = MessagePeerVote;
  1212. messagePeerVoteMultiple#4628f6e6 peer:Peer options:Vector<bytes> date:int = MessagePeerVote;
  1213. storyViews#8d595cd6 flags:# has_viewers:flags.1?true views_count:int forwards_count:flags.2?int reactions:flags.3?Vector<ReactionCount> reactions_count:flags.4?int recent_viewers:flags.0?Vector<long> = StoryViews;
  1214. storyItemDeleted#51e6ee4f id:int = StoryItem;
  1215. storyItemSkipped#ffadc913 flags:# close_friends:flags.8?true id:int date:int expire_date:int = StoryItem;
  1216. storyItem#79b26a24 flags:# pinned:flags.5?true public:flags.7?true close_friends:flags.8?true min:flags.9?true noforwards:flags.10?true edited:flags.11?true contacts:flags.12?true selected_contacts:flags.13?true out:flags.16?true id:int date:int from_id:flags.18?Peer fwd_from:flags.17?StoryFwdHeader expire_date:int caption:flags.0?string entities:flags.1?Vector<MessageEntity> media:MessageMedia media_areas:flags.14?Vector<MediaArea> privacy:flags.2?Vector<PrivacyRule> views:flags.3?StoryViews sent_reaction:flags.15?Reaction = StoryItem;
  1217. stories.allStoriesNotModified#1158fe3e flags:# state:string stealth_mode:StoriesStealthMode = stories.AllStories;
  1218. stories.allStories#6efc5e81 flags:# has_more:flags.0?true count:int state:string peer_stories:Vector<PeerStories> chats:Vector<Chat> users:Vector<User> stealth_mode:StoriesStealthMode = stories.AllStories;
  1219. stories.stories#63c3dd0a flags:# count:int stories:Vector<StoryItem> pinned_to_top:flags.0?Vector<int> chats:Vector<Chat> users:Vector<User> = stories.Stories;
  1220. storyView#b0bdeac5 flags:# blocked:flags.0?true blocked_my_stories_from:flags.1?true user_id:long date:int reaction:flags.2?Reaction = StoryView;
  1221. storyViewPublicForward#9083670b flags:# blocked:flags.0?true blocked_my_stories_from:flags.1?true message:Message = StoryView;
  1222. storyViewPublicRepost#bd74cf49 flags:# blocked:flags.0?true blocked_my_stories_from:flags.1?true peer_id:Peer story:StoryItem = StoryView;
  1223. stories.storyViewsList#59d78fc5 flags:# count:int views_count:int forwards_count:int reactions_count:int views:Vector<StoryView> chats:Vector<Chat> users:Vector<User> next_offset:flags.0?string = stories.StoryViewsList;
  1224. stories.storyViews#de9eed1d views:Vector<StoryViews> users:Vector<User> = stories.StoryViews;
  1225. inputReplyToMessage#22c0f6d5 flags:# reply_to_msg_id:int top_msg_id:flags.0?int reply_to_peer_id:flags.1?InputPeer quote_text:flags.2?string quote_entities:flags.3?Vector<MessageEntity> quote_offset:flags.4?int = InputReplyTo;
  1226. inputReplyToStory#5881323a peer:InputPeer story_id:int = InputReplyTo;
  1227. exportedStoryLink#3fc9053b link:string = ExportedStoryLink;
  1228. storiesStealthMode#712e27fd flags:# active_until_date:flags.0?int cooldown_until_date:flags.1?int = StoriesStealthMode;
  1229. mediaAreaCoordinates#cfc9e002 flags:# x:double y:double w:double h:double rotation:double radius:flags.0?double = MediaAreaCoordinates;
  1230. mediaAreaVenue#be82db9c coordinates:MediaAreaCoordinates geo:GeoPoint title:string address:string provider:string venue_id:string venue_type:string = MediaArea;
  1231. inputMediaAreaVenue#b282217f coordinates:MediaAreaCoordinates query_id:long result_id:string = MediaArea;
  1232. mediaAreaGeoPoint#cad5452d flags:# coordinates:MediaAreaCoordinates geo:GeoPoint address:flags.0?GeoPointAddress = MediaArea;
  1233. mediaAreaSuggestedReaction#14455871 flags:# dark:flags.0?true flipped:flags.1?true coordinates:MediaAreaCoordinates reaction:Reaction = MediaArea;
  1234. mediaAreaChannelPost#770416af coordinates:MediaAreaCoordinates channel_id:long msg_id:int = MediaArea;
  1235. inputMediaAreaChannelPost#2271f2bf coordinates:MediaAreaCoordinates channel:InputChannel msg_id:int = MediaArea;
  1236. mediaAreaUrl#37381085 coordinates:MediaAreaCoordinates url:string = MediaArea;
  1237. mediaAreaWeather#49a6549c coordinates:MediaAreaCoordinates emoji:string temperature_c:double color:int = MediaArea;
  1238. mediaAreaStarGift#5787686d coordinates:MediaAreaCoordinates slug:string = MediaArea;
  1239. peerStories#9a35e999 flags:# peer:Peer max_read_id:flags.0?int stories:Vector<StoryItem> = PeerStories;
  1240. stories.peerStories#cae68768 stories:PeerStories chats:Vector<Chat> users:Vector<User> = stories.PeerStories;
  1241. messages.webPage#fd5e12bd webpage:WebPage chats:Vector<Chat> users:Vector<User> = messages.WebPage;
  1242. premiumGiftCodeOption#257e962b flags:# users:int months:int store_product:flags.0?string store_quantity:flags.1?int currency:string amount:long = PremiumGiftCodeOption;
  1243. payments.checkedGiftCode#284a1096 flags:# via_giveaway:flags.2?true from_id:flags.4?Peer giveaway_msg_id:flags.3?int to_id:flags.0?long date:int months:int used_date:flags.1?int chats:Vector<Chat> users:Vector<User> = payments.CheckedGiftCode;
  1244. payments.giveawayInfo#4367daa0 flags:# participating:flags.0?true preparing_results:flags.3?true start_date:int joined_too_early_date:flags.1?int admin_disallowed_chat_id:flags.2?long disallowed_country:flags.4?string = payments.GiveawayInfo;
  1245. payments.giveawayInfoResults#e175e66f flags:# winner:flags.0?true refunded:flags.1?true start_date:int gift_code_slug:flags.3?string stars_prize:flags.4?long finish_date:int winners_count:int activated_count:flags.2?int = payments.GiveawayInfo;
  1246. prepaidGiveaway#b2539d54 id:long months:int quantity:int date:int = PrepaidGiveaway;
  1247. prepaidStarsGiveaway#9a9d77e0 id:long stars:long quantity:int boosts:int date:int = PrepaidGiveaway;
  1248. boost#4b3e14d6 flags:# gift:flags.1?true giveaway:flags.2?true unclaimed:flags.3?true id:string user_id:flags.0?long giveaway_msg_id:flags.2?int date:int expires:int used_gift_slug:flags.4?string multiplier:flags.5?int stars:flags.6?long = Boost;
  1249. premium.boostsList#86f8613c flags:# count:int boosts:Vector<Boost> next_offset:flags.0?string users:Vector<User> = premium.BoostsList;
  1250. myBoost#c448415c flags:# slot:int peer:flags.0?Peer date:int expires:int cooldown_until_date:flags.1?int = MyBoost;
  1251. premium.myBoosts#9ae228e2 my_boosts:Vector<MyBoost> chats:Vector<Chat> users:Vector<User> = premium.MyBoosts;
  1252. premium.boostsStatus#4959427a flags:# my_boost:flags.2?true level:int current_level_boosts:int boosts:int gift_boosts:flags.4?int next_level_boosts:flags.0?int premium_audience:flags.1?StatsPercentValue boost_url:string prepaid_giveaways:flags.3?Vector<PrepaidGiveaway> my_boost_slots:flags.2?Vector<int> = premium.BoostsStatus;
  1253. storyFwdHeader#b826e150 flags:# modified:flags.3?true from:flags.0?Peer from_name:flags.1?string story_id:flags.2?int = StoryFwdHeader;
  1254. postInteractionCountersMessage#e7058e7f msg_id:int views:int forwards:int reactions:int = PostInteractionCounters;
  1255. postInteractionCountersStory#8a480e27 story_id:int views:int forwards:int reactions:int = PostInteractionCounters;
  1256. stats.storyStats#50cd067c views_graph:StatsGraph reactions_by_emotion_graph:StatsGraph = stats.StoryStats;
  1257. publicForwardMessage#1f2bf4a message:Message = PublicForward;
  1258. publicForwardStory#edf3add0 peer:Peer story:StoryItem = PublicForward;
  1259. stats.publicForwards#93037e20 flags:# count:int forwards:Vector<PublicForward> next_offset:flags.0?string chats:Vector<Chat> users:Vector<User> = stats.PublicForwards;
  1260. peerColor#b54b5acf flags:# color:flags.0?int background_emoji_id:flags.1?long = PeerColor;
  1261. help.peerColorSet#26219a58 colors:Vector<int> = help.PeerColorSet;
  1262. help.peerColorProfileSet#767d61eb palette_colors:Vector<int> bg_colors:Vector<int> story_colors:Vector<int> = help.PeerColorSet;
  1263. help.peerColorOption#adec6ebe flags:# hidden:flags.0?true color_id:int colors:flags.1?help.PeerColorSet dark_colors:flags.2?help.PeerColorSet channel_min_level:flags.3?int group_min_level:flags.4?int = help.PeerColorOption;
  1264. help.peerColorsNotModified#2ba1f5ce = help.PeerColors;
  1265. help.peerColors#f8ed08 hash:int colors:Vector<help.PeerColorOption> = help.PeerColors;
  1266. storyReaction#6090d6d5 peer_id:Peer date:int reaction:Reaction = StoryReaction;
  1267. storyReactionPublicForward#bbab2643 message:Message = StoryReaction;
  1268. storyReactionPublicRepost#cfcd0f13 peer_id:Peer story:StoryItem = StoryReaction;
  1269. stories.storyReactionsList#aa5f789c flags:# count:int reactions:Vector<StoryReaction> chats:Vector<Chat> users:Vector<User> next_offset:flags.0?string = stories.StoryReactionsList;
  1270. savedDialog#bd87cb6c flags:# pinned:flags.2?true peer:Peer top_message:int = SavedDialog;
  1271. messages.savedDialogs#f83ae221 dialogs:Vector<SavedDialog> messages:Vector<Message> chats:Vector<Chat> users:Vector<User> = messages.SavedDialogs;
  1272. messages.savedDialogsSlice#44ba9dd9 count:int dialogs:Vector<SavedDialog> messages:Vector<Message> chats:Vector<Chat> users:Vector<User> = messages.SavedDialogs;
  1273. messages.savedDialogsNotModified#c01f6fe8 count:int = messages.SavedDialogs;
  1274. savedReactionTag#cb6ff828 flags:# reaction:Reaction title:flags.0?string count:int = SavedReactionTag;
  1275. messages.savedReactionTagsNotModified#889b59ef = messages.SavedReactionTags;
  1276. messages.savedReactionTags#3259950a tags:Vector<SavedReactionTag> hash:long = messages.SavedReactionTags;
  1277. outboxReadDate#3bb842ac date:int = OutboxReadDate;
  1278. smsjobs.eligibleToJoin#dc8b44cf terms_url:string monthly_sent_sms:int = smsjobs.EligibilityToJoin;
  1279. smsjobs.status#2aee9191 flags:# allow_international:flags.0?true recent_sent:int recent_since:int recent_remains:int total_sent:int total_since:int last_gift_slug:flags.1?string terms_url:string = smsjobs.Status;
  1280. smsJob#e6a1eeb8 job_id:string phone_number:string text:string = SmsJob;
  1281. businessWeeklyOpen#120b1ab9 start_minute:int end_minute:int = BusinessWeeklyOpen;
  1282. businessWorkHours#8c92b098 flags:# open_now:flags.0?true timezone_id:string weekly_open:Vector<BusinessWeeklyOpen> = BusinessWorkHours;
  1283. businessLocation#ac5c1af7 flags:# geo_point:flags.0?GeoPoint address:string = BusinessLocation;
  1284. inputBusinessRecipients#6f8b32aa flags:# existing_chats:flags.0?true new_chats:flags.1?true contacts:flags.2?true non_contacts:flags.3?true exclude_selected:flags.5?true users:flags.4?Vector<InputUser> = InputBusinessRecipients;
  1285. businessRecipients#21108ff7 flags:# existing_chats:flags.0?true new_chats:flags.1?true contacts:flags.2?true non_contacts:flags.3?true exclude_selected:flags.5?true users:flags.4?Vector<long> = BusinessRecipients;
  1286. businessAwayMessageScheduleAlways#c9b9e2b9 = BusinessAwayMessageSchedule;
  1287. businessAwayMessageScheduleOutsideWorkHours#c3f2f501 = BusinessAwayMessageSchedule;
  1288. businessAwayMessageScheduleCustom#cc4d9ecc start_date:int end_date:int = BusinessAwayMessageSchedule;
  1289. inputBusinessGreetingMessage#194cb3b shortcut_id:int recipients:InputBusinessRecipients no_activity_days:int = InputBusinessGreetingMessage;
  1290. businessGreetingMessage#e519abab shortcut_id:int recipients:BusinessRecipients no_activity_days:int = BusinessGreetingMessage;
  1291. inputBusinessAwayMessage#832175e0 flags:# offline_only:flags.0?true shortcut_id:int schedule:BusinessAwayMessageSchedule recipients:InputBusinessRecipients = InputBusinessAwayMessage;
  1292. businessAwayMessage#ef156a5c flags:# offline_only:flags.0?true shortcut_id:int schedule:BusinessAwayMessageSchedule recipients:BusinessRecipients = BusinessAwayMessage;
  1293. timezone#ff9289f5 id:string name:string utc_offset:int = Timezone;
  1294. help.timezonesListNotModified#970708cc = help.TimezonesList;
  1295. help.timezonesList#7b74ed71 timezones:Vector<Timezone> hash:int = help.TimezonesList;
  1296. quickReply#697102b shortcut_id:int shortcut:string top_message:int count:int = QuickReply;
  1297. inputQuickReplyShortcut#24596d41 shortcut:string = InputQuickReplyShortcut;
  1298. inputQuickReplyShortcutId#1190cf1 shortcut_id:int = InputQuickReplyShortcut;
  1299. messages.quickReplies#c68d6695 quick_replies:Vector<QuickReply> messages:Vector<Message> chats:Vector<Chat> users:Vector<User> = messages.QuickReplies;
  1300. messages.quickRepliesNotModified#5f91eb5b = messages.QuickReplies;
  1301. connectedBot#bd068601 flags:# can_reply:flags.0?true bot_id:long recipients:BusinessBotRecipients = ConnectedBot;
  1302. account.connectedBots#17d7f87b connected_bots:Vector<ConnectedBot> users:Vector<User> = account.ConnectedBots;
  1303. messages.dialogFilters#2ad93719 flags:# tags_enabled:flags.0?true filters:Vector<DialogFilter> = messages.DialogFilters;
  1304. birthday#6c8e1e06 flags:# day:int month:int year:flags.0?int = Birthday;
  1305. botBusinessConnection#896433b4 flags:# can_reply:flags.0?true disabled:flags.1?true connection_id:string user_id:long dc_id:int date:int = BotBusinessConnection;
  1306. inputBusinessIntro#9c469cd flags:# title:string description:string sticker:flags.0?InputDocument = InputBusinessIntro;
  1307. businessIntro#5a0a066d flags:# title:string description:string sticker:flags.0?Document = BusinessIntro;
  1308. messages.myStickers#faff629d count:int sets:Vector<StickerSetCovered> = messages.MyStickers;
  1309. inputCollectibleUsername#e39460a9 username:string = InputCollectible;
  1310. inputCollectiblePhone#a2e214a4 phone:string = InputCollectible;
  1311. fragment.collectibleInfo#6ebdff91 purchase_date:int currency:string amount:long crypto_currency:string crypto_amount:long url:string = fragment.CollectibleInfo;
  1312. inputBusinessBotRecipients#c4e5921e flags:# existing_chats:flags.0?true new_chats:flags.1?true contacts:flags.2?true non_contacts:flags.3?true exclude_selected:flags.5?true users:flags.4?Vector<InputUser> exclude_users:flags.6?Vector<InputUser> = InputBusinessBotRecipients;
  1313. businessBotRecipients#b88cf373 flags:# existing_chats:flags.0?true new_chats:flags.1?true contacts:flags.2?true non_contacts:flags.3?true exclude_selected:flags.5?true users:flags.4?Vector<long> exclude_users:flags.6?Vector<long> = BusinessBotRecipients;
  1314. contactBirthday#1d998733 contact_id:long birthday:Birthday = ContactBirthday;
  1315. contacts.contactBirthdays#114ff30d contacts:Vector<ContactBirthday> users:Vector<User> = contacts.ContactBirthdays;
  1316. missingInvitee#628c9224 flags:# premium_would_allow_invite:flags.0?true premium_required_for_pm:flags.1?true user_id:long = MissingInvitee;
  1317. messages.invitedUsers#7f5defa6 updates:Updates missing_invitees:Vector<MissingInvitee> = messages.InvitedUsers;
  1318. inputBusinessChatLink#11679fa7 flags:# message:string entities:flags.0?Vector<MessageEntity> title:flags.1?string = InputBusinessChatLink;
  1319. businessChatLink#b4ae666f flags:# link:string message:string entities:flags.0?Vector<MessageEntity> title:flags.1?string views:int = BusinessChatLink;
  1320. account.businessChatLinks#ec43a2d1 links:Vector<BusinessChatLink> chats:Vector<Chat> users:Vector<User> = account.BusinessChatLinks;
  1321. account.resolvedBusinessChatLinks#9a23af21 flags:# peer:Peer message:string entities:flags.0?Vector<MessageEntity> chats:Vector<Chat> users:Vector<User> = account.ResolvedBusinessChatLinks;
  1322. requestedPeerUser#d62ff46a flags:# user_id:long first_name:flags.0?string last_name:flags.0?string username:flags.1?string photo:flags.2?Photo = RequestedPeer;
  1323. requestedPeerChat#7307544f flags:# chat_id:long title:flags.0?string photo:flags.2?Photo = RequestedPeer;
  1324. requestedPeerChannel#8ba403e4 flags:# channel_id:long title:flags.0?string username:flags.1?string photo:flags.2?Photo = RequestedPeer;
  1325. sponsoredMessageReportOption#430d3150 text:string option:bytes = SponsoredMessageReportOption;
  1326. channels.sponsoredMessageReportResultChooseOption#846f9e42 title:string options:Vector<SponsoredMessageReportOption> = channels.SponsoredMessageReportResult;
  1327. channels.sponsoredMessageReportResultAdsHidden#3e3bcf2f = channels.SponsoredMessageReportResult;
  1328. channels.sponsoredMessageReportResultReported#ad798849 = channels.SponsoredMessageReportResult;
  1329. stats.broadcastRevenueStats#5407e297 top_hours_graph:StatsGraph revenue_graph:StatsGraph balances:BroadcastRevenueBalances usd_rate:double = stats.BroadcastRevenueStats;
  1330. stats.broadcastRevenueWithdrawalUrl#ec659737 url:string = stats.BroadcastRevenueWithdrawalUrl;
  1331. broadcastRevenueTransactionProceeds#557e2cc4 amount:long from_date:int to_date:int = BroadcastRevenueTransaction;
  1332. broadcastRevenueTransactionWithdrawal#5a590978 flags:# pending:flags.0?true failed:flags.2?true amount:long date:int provider:string transaction_date:flags.1?int transaction_url:flags.1?string = BroadcastRevenueTransaction;
  1333. broadcastRevenueTransactionRefund#42d30d2e amount:long date:int provider:string = BroadcastRevenueTransaction;
  1334. stats.broadcastRevenueTransactions#87158466 count:int transactions:Vector<BroadcastRevenueTransaction> = stats.BroadcastRevenueTransactions;
  1335. reactionNotificationsFromContacts#bac3a61a = ReactionNotificationsFrom;
  1336. reactionNotificationsFromAll#4b9e22a0 = ReactionNotificationsFrom;
  1337. reactionsNotifySettings#56e34970 flags:# messages_notify_from:flags.0?ReactionNotificationsFrom stories_notify_from:flags.1?ReactionNotificationsFrom sound:NotificationSound show_previews:Bool = ReactionsNotifySettings;
  1338. broadcastRevenueBalances#c3ff71e7 flags:# withdrawal_enabled:flags.0?true current_balance:long available_balance:long overall_revenue:long = BroadcastRevenueBalances;
  1339. availableEffect#93c3e27e flags:# premium_required:flags.2?true id:long emoticon:string static_icon_id:flags.0?long effect_sticker_id:long effect_animation_id:flags.1?long = AvailableEffect;
  1340. messages.availableEffectsNotModified#d1ed9a5b = messages.AvailableEffects;
  1341. messages.availableEffects#bddb616e hash:int effects:Vector<AvailableEffect> documents:Vector<Document> = messages.AvailableEffects;
  1342. factCheck#b89bfccf flags:# need_check:flags.0?true country:flags.1?string text:flags.1?TextWithEntities hash:long = FactCheck;
  1343. starsTransactionPeerUnsupported#95f2bfe4 = StarsTransactionPeer;
  1344. starsTransactionPeerAppStore#b457b375 = StarsTransactionPeer;
  1345. starsTransactionPeerPlayMarket#7b560a0b = StarsTransactionPeer;
  1346. starsTransactionPeerPremiumBot#250dbaf8 = StarsTransactionPeer;
  1347. starsTransactionPeerFragment#e92fd902 = StarsTransactionPeer;
  1348. starsTransactionPeer#d80da15d peer:Peer = StarsTransactionPeer;
  1349. starsTransactionPeerAds#60682812 = StarsTransactionPeer;
  1350. starsTransactionPeerAPI#f9677aad = StarsTransactionPeer;
  1351. starsTopupOption#bd915c0 flags:# extended:flags.1?true stars:long store_product:flags.0?string currency:string amount:long = StarsTopupOption;
  1352. starsTransaction#a39fd94a flags:# refund:flags.3?true pending:flags.4?true failed:flags.6?true gift:flags.10?true reaction:flags.11?true stargift_upgrade:flags.18?true id:string stars:StarsAmount date:int peer:StarsTransactionPeer title:flags.0?string description:flags.1?string photo:flags.2?WebDocument transaction_date:flags.5?int transaction_url:flags.5?string bot_payload:flags.7?bytes msg_id:flags.8?int extended_media:flags.9?Vector<MessageMedia> subscription_period:flags.12?int giveaway_post_id:flags.13?int stargift:flags.14?StarGift floodskip_number:flags.15?int starref_commission_permille:flags.16?int starref_peer:flags.17?Peer starref_amount:flags.17?StarsAmount paid_messages:flags.19?int premium_gift_months:flags.20?int = StarsTransaction;
  1353. payments.starsStatus#6c9ce8ed flags:# balance:StarsAmount subscriptions:flags.1?Vector<StarsSubscription> subscriptions_next_offset:flags.2?string subscriptions_missing_balance:flags.4?long history:flags.3?Vector<StarsTransaction> next_offset:flags.0?string chats:Vector<Chat> users:Vector<User> = payments.StarsStatus;
  1354. foundStory#e87acbc0 peer:Peer story:StoryItem = FoundStory;
  1355. stories.foundStories#e2de7737 flags:# count:int stories:Vector<FoundStory> next_offset:flags.0?string chats:Vector<Chat> users:Vector<User> = stories.FoundStories;
  1356. geoPointAddress#de4c5d93 flags:# country_iso2:string state:flags.0?string city:flags.1?string street:flags.2?string = GeoPointAddress;
  1357. starsRevenueStatus#febe5491 flags:# withdrawal_enabled:flags.0?true current_balance:StarsAmount available_balance:StarsAmount overall_revenue:StarsAmount next_withdrawal_at:flags.1?int = StarsRevenueStatus;
  1358. payments.starsRevenueStats#c92bb73b revenue_graph:StatsGraph status:StarsRevenueStatus usd_rate:double = payments.StarsRevenueStats;
  1359. payments.starsRevenueWithdrawalUrl#1dab80b7 url:string = payments.StarsRevenueWithdrawalUrl;
  1360. payments.starsRevenueAdsAccountUrl#394e7f21 url:string = payments.StarsRevenueAdsAccountUrl;
  1361. inputStarsTransaction#206ae6d1 flags:# refund:flags.0?true id:string = InputStarsTransaction;
  1362. starsGiftOption#5e0589f1 flags:# extended:flags.1?true stars:long store_product:flags.0?string currency:string amount:long = StarsGiftOption;
  1363. bots.popularAppBots#1991b13b flags:# next_offset:flags.0?string users:Vector<User> = bots.PopularAppBots;
  1364. botPreviewMedia#23e91ba3 date:int media:MessageMedia = BotPreviewMedia;
  1365. bots.previewInfo#ca71d64 media:Vector<BotPreviewMedia> lang_codes:Vector<string> = bots.PreviewInfo;
  1366. starsSubscriptionPricing#5416d58 period:int amount:long = StarsSubscriptionPricing;
  1367. starsSubscription#2e6eab1a flags:# canceled:flags.0?true can_refulfill:flags.1?true missing_balance:flags.2?true bot_canceled:flags.7?true id:string peer:Peer until_date:int pricing:StarsSubscriptionPricing chat_invite_hash:flags.3?string title:flags.4?string photo:flags.5?WebDocument invoice_slug:flags.6?string = StarsSubscription;
  1368. messageReactor#4ba3a95a flags:# top:flags.0?true my:flags.1?true anonymous:flags.2?true peer_id:flags.3?Peer count:int = MessageReactor;
  1369. starsGiveawayOption#94ce852a flags:# extended:flags.0?true default:flags.1?true stars:long yearly_boosts:int store_product:flags.2?string currency:string amount:long winners:Vector<StarsGiveawayWinnersOption> = StarsGiveawayOption;
  1370. starsGiveawayWinnersOption#54236209 flags:# default:flags.0?true users:int per_user_stars:long = StarsGiveawayWinnersOption;
  1371. starGift#2cc73c8 flags:# limited:flags.0?true sold_out:flags.1?true birthday:flags.2?true id:long sticker:Document stars:long availability_remains:flags.0?int availability_total:flags.0?int convert_stars:long first_sale_date:flags.1?int last_sale_date:flags.1?int upgrade_stars:flags.3?long = StarGift;
  1372. starGiftUnique#5c62d151 flags:# id:long title:string slug:string num:int owner_id:flags.0?Peer owner_name:flags.1?string owner_address:flags.2?string attributes:Vector<StarGiftAttribute> availability_issued:int availability_total:int gift_address:flags.3?string = StarGift;
  1373. payments.starGiftsNotModified#a388a368 = payments.StarGifts;
  1374. payments.starGifts#901689ea hash:int gifts:Vector<StarGift> = payments.StarGifts;
  1375. messageReportOption#7903e3d9 text:string option:bytes = MessageReportOption;
  1376. reportResultChooseOption#f0e4e0b6 title:string options:Vector<MessageReportOption> = ReportResult;
  1377. reportResultAddComment#6f09ac31 flags:# optional:flags.0?true option:bytes = ReportResult;
  1378. reportResultReported#8db33c4b = ReportResult;
  1379. messages.botPreparedInlineMessage#8ecf0511 id:string expire_date:int = messages.BotPreparedInlineMessage;
  1380. messages.preparedInlineMessage#ff57708d query_id:long result:BotInlineResult peer_types:Vector<InlineQueryPeerType> cache_time:int users:Vector<User> = messages.PreparedInlineMessage;
  1381. botAppSettings#c99b1950 flags:# placeholder_path:flags.0?bytes background_color:flags.1?int background_dark_color:flags.2?int header_color:flags.3?int header_dark_color:flags.4?int = BotAppSettings;
  1382. starRefProgram#dd0c66f2 flags:# bot_id:long commission_permille:int duration_months:flags.0?int end_date:flags.1?int daily_revenue_per_user:flags.2?StarsAmount = StarRefProgram;
  1383. connectedBotStarRef#19a13f71 flags:# revoked:flags.1?true url:string date:int bot_id:long commission_permille:int duration_months:flags.0?int participants:long revenue:long = ConnectedBotStarRef;
  1384. payments.connectedStarRefBots#98d5ea1d count:int connected_bots:Vector<ConnectedBotStarRef> users:Vector<User> = payments.ConnectedStarRefBots;
  1385. payments.suggestedStarRefBots#b4d5d859 flags:# count:int suggested_bots:Vector<StarRefProgram> users:Vector<User> next_offset:flags.0?string = payments.SuggestedStarRefBots;
  1386. starsAmount#bbb6b4a3 amount:long nanos:int = StarsAmount;
  1387. messages.foundStickersNotModified#6010c534 flags:# next_offset:flags.0?int = messages.FoundStickers;
  1388. messages.foundStickers#82c9e290 flags:# next_offset:flags.0?int hash:long stickers:Vector<Document> = messages.FoundStickers;
  1389. botVerifierSettings#b0cd6617 flags:# can_modify_custom_description:flags.1?true icon:long company:string custom_description:flags.0?string = BotVerifierSettings;
  1390. botVerification#f93cd45c bot_id:long icon:long description:string = BotVerification;
  1391. starGiftAttributeModel#39d99013 name:string document:Document rarity_permille:int = StarGiftAttribute;
  1392. starGiftAttributePattern#13acff19 name:string document:Document rarity_permille:int = StarGiftAttribute;
  1393. starGiftAttributeBackdrop#94271762 name:string center_color:int edge_color:int pattern_color:int text_color:int rarity_permille:int = StarGiftAttribute;
  1394. starGiftAttributeOriginalDetails#e0bff26c flags:# sender_id:flags.0?Peer recipient_id:Peer date:int message:flags.1?TextWithEntities = StarGiftAttribute;
  1395. payments.starGiftUpgradePreview#167bd90b sample_attributes:Vector<StarGiftAttribute> = payments.StarGiftUpgradePreview;
  1396. users.users#62d706b8 users:Vector<User> = users.Users;
  1397. users.usersSlice#315a4974 count:int users:Vector<User> = users.Users;
  1398. payments.uniqueStarGift#caa2f60b gift:StarGift users:Vector<User> = payments.UniqueStarGift;
  1399. messages.webPagePreview#b53e8b21 media:MessageMedia users:Vector<User> = messages.WebPagePreview;
  1400. savedStarGift#6056dba5 flags:# name_hidden:flags.0?true unsaved:flags.5?true refunded:flags.9?true can_upgrade:flags.10?true pinned_to_top:flags.12?true from_id:flags.1?Peer date:int gift:StarGift message:flags.2?TextWithEntities msg_id:flags.3?int saved_id:flags.11?long convert_stars:flags.4?long upgrade_stars:flags.6?long can_export_at:flags.7?int transfer_stars:flags.8?long = SavedStarGift;
  1401. payments.savedStarGifts#95f389b1 flags:# count:int chat_notifications_enabled:flags.1?Bool gifts:Vector<SavedStarGift> next_offset:flags.0?string chats:Vector<Chat> users:Vector<User> = payments.SavedStarGifts;
  1402. inputSavedStarGiftUser#69279795 msg_id:int = InputSavedStarGift;
  1403. inputSavedStarGiftChat#f101aa7f peer:InputPeer saved_id:long = InputSavedStarGift;
  1404. payments.starGiftWithdrawalUrl#84aa3a9c url:string = payments.StarGiftWithdrawalUrl;
  1405. paidReactionPrivacyDefault#206ad49e = PaidReactionPrivacy;
  1406. paidReactionPrivacyAnonymous#1f0c1ad9 = PaidReactionPrivacy;
  1407. paidReactionPrivacyPeer#dc6cfcf0 peer:InputPeer = PaidReactionPrivacy;
  1408. account.paidMessagesRevenue#1e109708 stars_amount:long = account.PaidMessagesRevenue;
  1409. requirementToContactEmpty#50a9839 = RequirementToContact;
  1410. requirementToContactPremium#e581e4e9 = RequirementToContact;
  1411. requirementToContactPaidMessages#b4f67e93 stars_amount:long = RequirementToContact;
  1412. ---functions---
  1413. invokeAfterMsg#cb9f372d {X:Type} msg_id:long query:!X = X;
  1414. invokeAfterMsgs#3dc4b4f0 {X:Type} msg_ids:Vector<long> query:!X = X;
  1415. initConnection#c1cd5ea9 {X:Type} flags:# api_id:int device_model:string system_version:string app_version:string system_lang_code:string lang_pack:string lang_code:string proxy:flags.0?InputClientProxy params:flags.1?JSONValue query:!X = X;
  1416. invokeWithLayer#da9b0d0d {X:Type} layer:int query:!X = X;
  1417. invokeWithoutUpdates#bf9459b7 {X:Type} query:!X = X;
  1418. invokeWithMessagesRange#365275f2 {X:Type} range:MessageRange query:!X = X;
  1419. invokeWithTakeout#aca9fd2e {X:Type} takeout_id:long query:!X = X;
  1420. invokeWithBusinessConnection#dd289f8e {X:Type} connection_id:string query:!X = X;
  1421. invokeWithGooglePlayIntegrity#1df92984 {X:Type} nonce:string token:string query:!X = X;
  1422. invokeWithApnsSecret#0dae54f8 {X:Type} nonce:string secret:string query:!X = X;
  1423. invokeWithReCaptcha#adbb0f94 {X:Type} token:string query:!X = X;
  1424. auth.sendCode#a677244f phone_number:string api_id:int api_hash:string settings:CodeSettings = auth.SentCode;
  1425. auth.signUp#aac7b717 flags:# no_joined_notifications:flags.0?true phone_number:string phone_code_hash:string first_name:string last_name:string = auth.Authorization;
  1426. auth.signIn#8d52a951 flags:# phone_number:string phone_code_hash:string phone_code:flags.0?string email_verification:flags.1?EmailVerification = auth.Authorization;
  1427. auth.logOut#3e72ba19 = auth.LoggedOut;
  1428. auth.resetAuthorizations#9fab0d1a = Bool;
  1429. auth.exportAuthorization#e5bfffcd dc_id:int = auth.ExportedAuthorization;
  1430. auth.importAuthorization#a57a7dad id:long bytes:bytes = auth.Authorization;
  1431. auth.bindTempAuthKey#cdd42a05 perm_auth_key_id:long nonce:long expires_at:int encrypted_message:bytes = Bool;
  1432. auth.importBotAuthorization#67a3ff2c flags:int api_id:int api_hash:string bot_auth_token:string = auth.Authorization;
  1433. auth.checkPassword#d18b4d16 password:InputCheckPasswordSRP = auth.Authorization;
  1434. auth.requestPasswordRecovery#d897bc66 = auth.PasswordRecovery;
  1435. auth.recoverPassword#37096c70 flags:# code:string new_settings:flags.0?account.PasswordInputSettings = auth.Authorization;
  1436. auth.resendCode#cae47523 flags:# phone_number:string phone_code_hash:string reason:flags.0?string = auth.SentCode;
  1437. auth.cancelCode#1f040578 phone_number:string phone_code_hash:string = Bool;
  1438. auth.dropTempAuthKeys#8e48a188 except_auth_keys:Vector<long> = Bool;
  1439. auth.exportLoginToken#b7e085fe api_id:int api_hash:string except_ids:Vector<long> = auth.LoginToken;
  1440. auth.importLoginToken#95ac5ce4 token:bytes = auth.LoginToken;
  1441. auth.acceptLoginToken#e894ad4d token:bytes = Authorization;
  1442. auth.checkRecoveryPassword#d36bf79 code:string = Bool;
  1443. auth.importWebTokenAuthorization#2db873a9 api_id:int api_hash:string web_auth_token:string = auth.Authorization;
  1444. auth.requestFirebaseSms#8e39261e flags:# phone_number:string phone_code_hash:string safety_net_token:flags.0?string play_integrity_token:flags.2?string ios_push_secret:flags.1?string = Bool;
  1445. auth.resetLoginEmail#7e960193 phone_number:string phone_code_hash:string = auth.SentCode;
  1446. auth.reportMissingCode#cb9deff6 phone_number:string phone_code_hash:string mnc:string = Bool;
  1447. account.registerDevice#ec86017a flags:# no_muted:flags.0?true token_type:int token:string app_sandbox:Bool secret:bytes other_uids:Vector<long> = Bool;
  1448. account.unregisterDevice#6a0d3206 token_type:int token:string other_uids:Vector<long> = Bool;
  1449. account.updateNotifySettings#84be5b93 peer:InputNotifyPeer settings:InputPeerNotifySettings = Bool;
  1450. account.getNotifySettings#12b3ad31 peer:InputNotifyPeer = PeerNotifySettings;
  1451. account.resetNotifySettings#db7e1747 = Bool;
  1452. account.updateProfile#78515775 flags:# first_name:flags.0?string last_name:flags.1?string about:flags.2?string = User;
  1453. account.updateStatus#6628562c offline:Bool = Bool;
  1454. account.getWallPapers#7967d36 hash:long = account.WallPapers;
  1455. account.reportPeer#c5ba3d86 peer:InputPeer reason:ReportReason message:string = Bool;
  1456. account.checkUsername#2714d86c username:string = Bool;
  1457. account.updateUsername#3e0bdd7c username:string = User;
  1458. account.getPrivacy#dadbc950 key:InputPrivacyKey = account.PrivacyRules;
  1459. account.setPrivacy#c9f81ce8 key:InputPrivacyKey rules:Vector<InputPrivacyRule> = account.PrivacyRules;
  1460. account.deleteAccount#a2c0cf74 flags:# reason:string password:flags.0?InputCheckPasswordSRP = Bool;
  1461. account.getAccountTTL#8fc711d = AccountDaysTTL;
  1462. account.setAccountTTL#2442485e ttl:AccountDaysTTL = Bool;
  1463. account.sendChangePhoneCode#82574ae5 phone_number:string settings:CodeSettings = auth.SentCode;
  1464. account.changePhone#70c32edb phone_number:string phone_code_hash:string phone_code:string = User;
  1465. account.updateDeviceLocked#38df3532 period:int = Bool;
  1466. account.getAuthorizations#e320c158 = account.Authorizations;
  1467. account.resetAuthorization#df77f3bc hash:long = Bool;
  1468. account.getPassword#548a30f5 = account.Password;
  1469. account.getPasswordSettings#9cd4eaf9 password:InputCheckPasswordSRP = account.PasswordSettings;
  1470. account.updatePasswordSettings#a59b102f password:InputCheckPasswordSRP new_settings:account.PasswordInputSettings = Bool;
  1471. account.sendConfirmPhoneCode#1b3faa88 hash:string settings:CodeSettings = auth.SentCode;
  1472. account.confirmPhone#5f2178c3 phone_code_hash:string phone_code:string = Bool;
  1473. account.getTmpPassword#449e0b51 password:InputCheckPasswordSRP period:int = account.TmpPassword;
  1474. account.getWebAuthorizations#182e6d6f = account.WebAuthorizations;
  1475. account.resetWebAuthorization#2d01b9ef hash:long = Bool;
  1476. account.resetWebAuthorizations#682d2594 = Bool;
  1477. account.getAllSecureValues#b288bc7d = Vector<SecureValue>;
  1478. account.getSecureValue#73665bc2 types:Vector<SecureValueType> = Vector<SecureValue>;
  1479. account.saveSecureValue#899fe31d value:InputSecureValue secure_secret_id:long = SecureValue;
  1480. account.deleteSecureValue#b880bc4b types:Vector<SecureValueType> = Bool;
  1481. account.getAuthorizationForm#a929597a bot_id:long scope:string public_key:string = account.AuthorizationForm;
  1482. account.acceptAuthorization#f3ed4c73 bot_id:long scope:string public_key:string value_hashes:Vector<SecureValueHash> credentials:SecureCredentialsEncrypted = Bool;
  1483. account.sendVerifyPhoneCode#a5a356f9 phone_number:string settings:CodeSettings = auth.SentCode;
  1484. account.verifyPhone#4dd3a7f6 phone_number:string phone_code_hash:string phone_code:string = Bool;
  1485. account.sendVerifyEmailCode#98e037bb purpose:EmailVerifyPurpose email:string = account.SentEmailCode;
  1486. account.verifyEmail#32da4cf purpose:EmailVerifyPurpose verification:EmailVerification = account.EmailVerified;
  1487. account.initTakeoutSession#8ef3eab0 flags:# contacts:flags.0?true message_users:flags.1?true message_chats:flags.2?true message_megagroups:flags.3?true message_channels:flags.4?true files:flags.5?true file_max_size:flags.5?long = account.Takeout;
  1488. account.finishTakeoutSession#1d2652ee flags:# success:flags.0?true = Bool;
  1489. account.confirmPasswordEmail#8fdf1920 code:string = Bool;
  1490. account.resendPasswordEmail#7a7f2a15 = Bool;
  1491. account.cancelPasswordEmail#c1cbd5b6 = Bool;
  1492. account.getContactSignUpNotification#9f07c728 = Bool;
  1493. account.setContactSignUpNotification#cff43f61 silent:Bool = Bool;
  1494. account.getNotifyExceptions#53577479 flags:# compare_sound:flags.1?true compare_stories:flags.2?true peer:flags.0?InputNotifyPeer = Updates;
  1495. account.getWallPaper#fc8ddbea wallpaper:InputWallPaper = WallPaper;
  1496. account.uploadWallPaper#e39a8f03 flags:# for_chat:flags.0?true file:InputFile mime_type:string settings:WallPaperSettings = WallPaper;
  1497. account.saveWallPaper#6c5a5b37 wallpaper:InputWallPaper unsave:Bool settings:WallPaperSettings = Bool;
  1498. account.installWallPaper#feed5769 wallpaper:InputWallPaper settings:WallPaperSettings = Bool;
  1499. account.resetWallPapers#bb3b9804 = Bool;
  1500. account.getAutoDownloadSettings#56da0b3f = account.AutoDownloadSettings;
  1501. account.saveAutoDownloadSettings#76f36233 flags:# low:flags.0?true high:flags.1?true settings:AutoDownloadSettings = Bool;
  1502. account.uploadTheme#1c3db333 flags:# file:InputFile thumb:flags.0?InputFile file_name:string mime_type:string = Document;
  1503. account.createTheme#652e4400 flags:# slug:string title:string document:flags.2?InputDocument settings:flags.3?Vector<InputThemeSettings> = Theme;
  1504. account.updateTheme#2bf40ccc flags:# format:string theme:InputTheme slug:flags.0?string title:flags.1?string document:flags.2?InputDocument settings:flags.3?Vector<InputThemeSettings> = Theme;
  1505. account.saveTheme#f257106c theme:InputTheme unsave:Bool = Bool;
  1506. account.installTheme#c727bb3b flags:# dark:flags.0?true theme:flags.1?InputTheme format:flags.2?string base_theme:flags.3?BaseTheme = Bool;
  1507. account.getTheme#3a5869ec format:string theme:InputTheme = Theme;
  1508. account.getThemes#7206e458 format:string hash:long = account.Themes;
  1509. account.setContentSettings#b574b16b flags:# sensitive_enabled:flags.0?true = Bool;
  1510. account.getContentSettings#8b9b4dae = account.ContentSettings;
  1511. account.getMultiWallPapers#65ad71dc wallpapers:Vector<InputWallPaper> = Vector<WallPaper>;
  1512. account.getGlobalPrivacySettings#eb2b4cf6 = GlobalPrivacySettings;
  1513. account.setGlobalPrivacySettings#1edaaac2 settings:GlobalPrivacySettings = GlobalPrivacySettings;
  1514. account.reportProfilePhoto#fa8cc6f5 peer:InputPeer photo_id:InputPhoto reason:ReportReason message:string = Bool;
  1515. account.resetPassword#9308ce1b = account.ResetPasswordResult;
  1516. account.declinePasswordReset#4c9409f6 = Bool;
  1517. account.getChatThemes#d638de89 hash:long = account.Themes;
  1518. account.setAuthorizationTTL#bf899aa0 authorization_ttl_days:int = Bool;
  1519. account.changeAuthorizationSettings#40f48462 flags:# confirmed:flags.3?true hash:long encrypted_requests_disabled:flags.0?Bool call_requests_disabled:flags.1?Bool = Bool;
  1520. account.getSavedRingtones#e1902288 hash:long = account.SavedRingtones;
  1521. account.saveRingtone#3dea5b03 id:InputDocument unsave:Bool = account.SavedRingtone;
  1522. account.uploadRingtone#831a83a2 file:InputFile file_name:string mime_type:string = Document;
  1523. account.updateEmojiStatus#fbd3de6b emoji_status:EmojiStatus = Bool;
  1524. account.getDefaultEmojiStatuses#d6753386 hash:long = account.EmojiStatuses;
  1525. account.getRecentEmojiStatuses#f578105 hash:long = account.EmojiStatuses;
  1526. account.clearRecentEmojiStatuses#18201aae = Bool;
  1527. account.reorderUsernames#ef500eab order:Vector<string> = Bool;
  1528. account.toggleUsername#58d6b376 username:string active:Bool = Bool;
  1529. account.getDefaultProfilePhotoEmojis#e2750328 hash:long = EmojiList;
  1530. account.getDefaultGroupPhotoEmojis#915860ae hash:long = EmojiList;
  1531. account.getAutoSaveSettings#adcbbcda = account.AutoSaveSettings;
  1532. account.saveAutoSaveSettings#d69b8361 flags:# users:flags.0?true chats:flags.1?true broadcasts:flags.2?true peer:flags.3?InputPeer settings:AutoSaveSettings = Bool;
  1533. account.deleteAutoSaveExceptions#53bc0020 = Bool;
  1534. account.invalidateSignInCodes#ca8ae8ba codes:Vector<string> = Bool;
  1535. account.updateColor#7cefa15d flags:# for_profile:flags.1?true color:flags.2?int background_emoji_id:flags.0?long = Bool;
  1536. account.getDefaultBackgroundEmojis#a60ab9ce hash:long = EmojiList;
  1537. account.getChannelDefaultEmojiStatuses#7727a7d5 hash:long = account.EmojiStatuses;
  1538. account.getChannelRestrictedStatusEmojis#35a9e0d5 hash:long = EmojiList;
  1539. account.updateBusinessWorkHours#4b00e066 flags:# business_work_hours:flags.0?BusinessWorkHours = Bool;
  1540. account.updateBusinessLocation#9e6b131a flags:# geo_point:flags.1?InputGeoPoint address:flags.0?string = Bool;
  1541. account.updateBusinessGreetingMessage#66cdafc4 flags:# message:flags.0?InputBusinessGreetingMessage = Bool;
  1542. account.updateBusinessAwayMessage#a26a7fa5 flags:# message:flags.0?InputBusinessAwayMessage = Bool;
  1543. account.updateConnectedBot#43d8521d flags:# can_reply:flags.0?true deleted:flags.1?true bot:InputUser recipients:InputBusinessBotRecipients = Updates;
  1544. account.getConnectedBots#4ea4c80f = account.ConnectedBots;
  1545. account.getBotBusinessConnection#76a86270 connection_id:string = Updates;
  1546. account.updateBusinessIntro#a614d034 flags:# intro:flags.0?InputBusinessIntro = Bool;
  1547. account.toggleConnectedBotPaused#646e1097 peer:InputPeer paused:Bool = Bool;
  1548. account.disablePeerConnectedBot#5e437ed9 peer:InputPeer = Bool;
  1549. account.updateBirthday#cc6e0c11 flags:# birthday:flags.0?Birthday = Bool;
  1550. account.createBusinessChatLink#8851e68e link:InputBusinessChatLink = BusinessChatLink;
  1551. account.editBusinessChatLink#8c3410af slug:string link:InputBusinessChatLink = BusinessChatLink;
  1552. account.deleteBusinessChatLink#60073674 slug:string = Bool;
  1553. account.getBusinessChatLinks#6f70dde1 = account.BusinessChatLinks;
  1554. account.resolveBusinessChatLink#5492e5ee slug:string = account.ResolvedBusinessChatLinks;
  1555. account.updatePersonalChannel#d94305e0 channel:InputChannel = Bool;
  1556. account.toggleSponsoredMessages#b9d9a38d enabled:Bool = Bool;
  1557. account.getReactionsNotifySettings#6dd654c = ReactionsNotifySettings;
  1558. account.setReactionsNotifySettings#316ce548 settings:ReactionsNotifySettings = ReactionsNotifySettings;
  1559. account.getCollectibleEmojiStatuses#2e7b4543 hash:long = account.EmojiStatuses;
  1560. account.addNoPaidMessagesException#6f688aa7 flags:# refund_charged:flags.0?true user_id:InputUser = Bool;
  1561. account.getPaidMessagesRevenue#f1266f38 user_id:InputUser = account.PaidMessagesRevenue;
  1562. users.getUsers#d91a548 id:Vector<InputUser> = Vector<User>;
  1563. users.getFullUser#b60f5918 id:InputUser = users.UserFull;
  1564. users.setSecureValueErrors#90c894b5 id:InputUser errors:Vector<SecureValueError> = Bool;
  1565. users.getRequirementsToContact#d89a83a3 id:Vector<InputUser> = Vector<RequirementToContact>;
  1566. contacts.getContactIDs#7adc669d hash:long = Vector<int>;
  1567. contacts.getStatuses#c4a353ee = Vector<ContactStatus>;
  1568. contacts.getContacts#5dd69e12 hash:long = contacts.Contacts;
  1569. contacts.importContacts#2c800be5 contacts:Vector<InputContact> = contacts.ImportedContacts;
  1570. contacts.deleteContacts#96a0e00 id:Vector<InputUser> = Updates;
  1571. contacts.deleteByPhones#1013fd9e phones:Vector<string> = Bool;
  1572. contacts.block#2e2e8734 flags:# my_stories_from:flags.0?true id:InputPeer = Bool;
  1573. contacts.unblock#b550d328 flags:# my_stories_from:flags.0?true id:InputPeer = Bool;
  1574. contacts.getBlocked#9a868f80 flags:# my_stories_from:flags.0?true offset:int limit:int = contacts.Blocked;
  1575. contacts.search#11f812d8 q:string limit:int = contacts.Found;
  1576. contacts.resolveUsername#725afbbc flags:# username:string referer:flags.0?string = contacts.ResolvedPeer;
  1577. contacts.getTopPeers#973478b6 flags:# correspondents:flags.0?true bots_pm:flags.1?true bots_inline:flags.2?true phone_calls:flags.3?true forward_users:flags.4?true forward_chats:flags.5?true groups:flags.10?true channels:flags.15?true bots_app:flags.16?true offset:int limit:int hash:long = contacts.TopPeers;
  1578. contacts.resetTopPeerRating#1ae373ac category:TopPeerCategory peer:InputPeer = Bool;
  1579. contacts.resetSaved#879537f1 = Bool;
  1580. contacts.getSaved#82f1e39f = Vector<SavedContact>;
  1581. contacts.toggleTopPeers#8514bdda enabled:Bool = Bool;
  1582. contacts.addContact#e8f463d0 flags:# add_phone_privacy_exception:flags.0?true id:InputUser first_name:string last_name:string phone:string = Updates;
  1583. contacts.acceptContact#f831a20f id:InputUser = Updates;
  1584. contacts.getLocated#d348bc44 flags:# background:flags.1?true geo_point:InputGeoPoint self_expires:flags.0?int = Updates;
  1585. contacts.blockFromReplies#29a8962c flags:# delete_message:flags.0?true delete_history:flags.1?true report_spam:flags.2?true msg_id:int = Updates;
  1586. contacts.resolvePhone#8af94344 phone:string = contacts.ResolvedPeer;
  1587. contacts.exportContactToken#f8654027 = ExportedContactToken;
  1588. contacts.importContactToken#13005788 token:string = User;
  1589. contacts.editCloseFriends#ba6705f0 id:Vector<long> = Bool;
  1590. contacts.setBlocked#94c65c76 flags:# my_stories_from:flags.0?true id:Vector<InputPeer> limit:int = Bool;
  1591. contacts.getBirthdays#daeda864 = contacts.ContactBirthdays;
  1592. messages.getMessages#63c66506 id:Vector<InputMessage> = messages.Messages;
  1593. messages.getDialogs#a0f4cb4f flags:# exclude_pinned:flags.0?true folder_id:flags.1?int offset_date:int offset_id:int offset_peer:InputPeer limit:int hash:long = messages.Dialogs;
  1594. messages.getHistory#4423e6c5 peer:InputPeer offset_id:int offset_date:int add_offset:int limit:int max_id:int min_id:int hash:long = messages.Messages;
  1595. messages.search#29ee847a flags:# peer:InputPeer q:string from_id:flags.0?InputPeer saved_peer_id:flags.2?InputPeer saved_reaction:flags.3?Vector<Reaction> top_msg_id:flags.1?int filter:MessagesFilter min_date:int max_date:int offset_id:int add_offset:int limit:int max_id:int min_id:int hash:long = messages.Messages;
  1596. messages.readHistory#e306d3a peer:InputPeer max_id:int = messages.AffectedMessages;
  1597. messages.deleteHistory#b08f922a flags:# just_clear:flags.0?true revoke:flags.1?true peer:InputPeer max_id:int min_date:flags.2?int max_date:flags.3?int = messages.AffectedHistory;
  1598. messages.deleteMessages#e58e95d2 flags:# revoke:flags.0?true id:Vector<int> = messages.AffectedMessages;
  1599. messages.receivedMessages#5a954c0 max_id:int = Vector<ReceivedNotifyMessage>;
  1600. messages.setTyping#58943ee2 flags:# peer:InputPeer top_msg_id:flags.0?int action:SendMessageAction = Bool;
  1601. messages.sendMessage#fbf2340a flags:# no_webpage:flags.1?true silent:flags.5?true background:flags.6?true clear_draft:flags.7?true noforwards:flags.14?true update_stickersets_order:flags.15?true invert_media:flags.16?true allow_paid_floodskip:flags.19?true peer:InputPeer reply_to:flags.0?InputReplyTo message:string random_id:long reply_markup:flags.2?ReplyMarkup entities:flags.3?Vector<MessageEntity> schedule_date:flags.10?int send_as:flags.13?InputPeer quick_reply_shortcut:flags.17?InputQuickReplyShortcut effect:flags.18?long allow_paid_stars:flags.21?long = Updates;
  1602. messages.sendMedia#a550cd78 flags:# silent:flags.5?true background:flags.6?true clear_draft:flags.7?true noforwards:flags.14?true update_stickersets_order:flags.15?true invert_media:flags.16?true allow_paid_floodskip:flags.19?true peer:InputPeer reply_to:flags.0?InputReplyTo media:InputMedia message:string random_id:long reply_markup:flags.2?ReplyMarkup entities:flags.3?Vector<MessageEntity> schedule_date:flags.10?int send_as:flags.13?InputPeer quick_reply_shortcut:flags.17?InputQuickReplyShortcut effect:flags.18?long allow_paid_stars:flags.21?long = Updates;
  1603. messages.forwardMessages#bb9fa475 flags:# silent:flags.5?true background:flags.6?true with_my_score:flags.8?true drop_author:flags.11?true drop_media_captions:flags.12?true noforwards:flags.14?true allow_paid_floodskip:flags.19?true from_peer:InputPeer id:Vector<int> random_id:Vector<long> to_peer:InputPeer top_msg_id:flags.9?int schedule_date:flags.10?int send_as:flags.13?InputPeer quick_reply_shortcut:flags.17?InputQuickReplyShortcut video_timestamp:flags.20?int allow_paid_stars:flags.21?long = Updates;
  1604. messages.reportSpam#cf1592db peer:InputPeer = Bool;
  1605. messages.getPeerSettings#efd9a6a2 peer:InputPeer = messages.PeerSettings;
  1606. messages.report#fc78af9b peer:InputPeer id:Vector<int> option:bytes message:string = ReportResult;
  1607. messages.getChats#49e9528f id:Vector<long> = messages.Chats;
  1608. messages.getFullChat#aeb00b34 chat_id:long = messages.ChatFull;
  1609. messages.editChatTitle#73783ffd chat_id:long title:string = Updates;
  1610. messages.editChatPhoto#35ddd674 chat_id:long photo:InputChatPhoto = Updates;
  1611. messages.addChatUser#cbc6d107 chat_id:long user_id:InputUser fwd_limit:int = messages.InvitedUsers;
  1612. messages.deleteChatUser#a2185cab flags:# revoke_history:flags.0?true chat_id:long user_id:InputUser = Updates;
  1613. messages.createChat#92ceddd4 flags:# users:Vector<InputUser> title:string ttl_period:flags.0?int = messages.InvitedUsers;
  1614. messages.getDhConfig#26cf8950 version:int random_length:int = messages.DhConfig;
  1615. messages.requestEncryption#f64daf43 user_id:InputUser random_id:int g_a:bytes = EncryptedChat;
  1616. messages.acceptEncryption#3dbc0415 peer:InputEncryptedChat g_b:bytes key_fingerprint:long = EncryptedChat;
  1617. messages.discardEncryption#f393aea0 flags:# delete_history:flags.0?true chat_id:int = Bool;
  1618. messages.setEncryptedTyping#791451ed peer:InputEncryptedChat typing:Bool = Bool;
  1619. messages.readEncryptedHistory#7f4b690a peer:InputEncryptedChat max_date:int = Bool;
  1620. messages.sendEncrypted#44fa7a15 flags:# silent:flags.0?true peer:InputEncryptedChat random_id:long data:bytes = messages.SentEncryptedMessage;
  1621. messages.sendEncryptedFile#5559481d flags:# silent:flags.0?true peer:InputEncryptedChat random_id:long data:bytes file:InputEncryptedFile = messages.SentEncryptedMessage;
  1622. messages.sendEncryptedService#32d439a4 peer:InputEncryptedChat random_id:long data:bytes = messages.SentEncryptedMessage;
  1623. messages.receivedQueue#55a5bb66 max_qts:int = Vector<long>;
  1624. messages.reportEncryptedSpam#4b0c8c0f peer:InputEncryptedChat = Bool;
  1625. messages.readMessageContents#36a73f77 id:Vector<int> = messages.AffectedMessages;
  1626. messages.getStickers#d5a5d3a1 emoticon:string hash:long = messages.Stickers;
  1627. messages.getAllStickers#b8a0a1a8 hash:long = messages.AllStickers;
  1628. messages.getWebPagePreview#570d6f6f flags:# message:string entities:flags.3?Vector<MessageEntity> = messages.WebPagePreview;
  1629. messages.exportChatInvite#a455de90 flags:# legacy_revoke_permanent:flags.2?true request_needed:flags.3?true peer:InputPeer expire_date:flags.0?int usage_limit:flags.1?int title:flags.4?string subscription_pricing:flags.5?StarsSubscriptionPricing = ExportedChatInvite;
  1630. messages.checkChatInvite#3eadb1bb hash:string = ChatInvite;
  1631. messages.importChatInvite#6c50051c hash:string = Updates;
  1632. messages.getStickerSet#c8a0ec74 stickerset:InputStickerSet hash:int = messages.StickerSet;
  1633. messages.installStickerSet#c78fe460 stickerset:InputStickerSet archived:Bool = messages.StickerSetInstallResult;
  1634. messages.uninstallStickerSet#f96e55de stickerset:InputStickerSet = Bool;
  1635. messages.startBot#e6df7378 bot:InputUser peer:InputPeer random_id:long start_param:string = Updates;
  1636. messages.getMessagesViews#5784d3e1 peer:InputPeer id:Vector<int> increment:Bool = messages.MessageViews;
  1637. messages.editChatAdmin#a85bd1c2 chat_id:long user_id:InputUser is_admin:Bool = Bool;
  1638. messages.migrateChat#a2875319 chat_id:long = Updates;
  1639. messages.searchGlobal#4bc6589a flags:# broadcasts_only:flags.1?true groups_only:flags.2?true users_only:flags.3?true folder_id:flags.0?int q:string filter:MessagesFilter min_date:int max_date:int offset_rate:int offset_peer:InputPeer offset_id:int limit:int = messages.Messages;
  1640. messages.reorderStickerSets#78337739 flags:# masks:flags.0?true emojis:flags.1?true order:Vector<long> = Bool;
  1641. messages.getDocumentByHash#b1f2061f sha256:bytes size:long mime_type:string = Document;
  1642. messages.getSavedGifs#5cf09635 hash:long = messages.SavedGifs;
  1643. messages.saveGif#327a30cb id:InputDocument unsave:Bool = Bool;
  1644. messages.getInlineBotResults#514e999d flags:# bot:InputUser peer:InputPeer geo_point:flags.0?InputGeoPoint query:string offset:string = messages.BotResults;
  1645. messages.setInlineBotResults#bb12a419 flags:# gallery:flags.0?true private:flags.1?true query_id:long results:Vector<InputBotInlineResult> cache_time:int next_offset:flags.2?string switch_pm:flags.3?InlineBotSwitchPM switch_webview:flags.4?InlineBotWebView = Bool;
  1646. messages.sendInlineBotResult#c0cf7646 flags:# silent:flags.5?true background:flags.6?true clear_draft:flags.7?true hide_via:flags.11?true peer:InputPeer reply_to:flags.0?InputReplyTo random_id:long query_id:long id:string schedule_date:flags.10?int send_as:flags.13?InputPeer quick_reply_shortcut:flags.17?InputQuickReplyShortcut allow_paid_stars:flags.21?long = Updates;
  1647. messages.getMessageEditData#fda68d36 peer:InputPeer id:int = messages.MessageEditData;
  1648. messages.editMessage#dfd14005 flags:# no_webpage:flags.1?true invert_media:flags.16?true peer:InputPeer id:int message:flags.11?string media:flags.14?InputMedia reply_markup:flags.2?ReplyMarkup entities:flags.3?Vector<MessageEntity> schedule_date:flags.15?int quick_reply_shortcut_id:flags.17?int = Updates;
  1649. messages.editInlineBotMessage#83557dba flags:# no_webpage:flags.1?true invert_media:flags.16?true id:InputBotInlineMessageID message:flags.11?string media:flags.14?InputMedia reply_markup:flags.2?ReplyMarkup entities:flags.3?Vector<MessageEntity> = Bool;
  1650. messages.getBotCallbackAnswer#9342ca07 flags:# game:flags.1?true peer:InputPeer msg_id:int data:flags.0?bytes password:flags.2?InputCheckPasswordSRP = messages.BotCallbackAnswer;
  1651. messages.setBotCallbackAnswer#d58f130a flags:# alert:flags.1?true query_id:long message:flags.0?string url:flags.2?string cache_time:int = Bool;
  1652. messages.getPeerDialogs#e470bcfd peers:Vector<InputDialogPeer> = messages.PeerDialogs;
  1653. messages.saveDraft#d372c5ce flags:# no_webpage:flags.1?true invert_media:flags.6?true reply_to:flags.4?InputReplyTo peer:InputPeer message:string entities:flags.3?Vector<MessageEntity> media:flags.5?InputMedia effect:flags.7?long = Bool;
  1654. messages.getAllDrafts#6a3f8d65 = Updates;
  1655. messages.getFeaturedStickers#64780b14 hash:long = messages.FeaturedStickers;
  1656. messages.readFeaturedStickers#5b118126 id:Vector<long> = Bool;
  1657. messages.getRecentStickers#9da9403b flags:# attached:flags.0?true hash:long = messages.RecentStickers;
  1658. messages.saveRecentSticker#392718f8 flags:# attached:flags.0?true id:InputDocument unsave:Bool = Bool;
  1659. messages.clearRecentStickers#8999602d flags:# attached:flags.0?true = Bool;
  1660. messages.getArchivedStickers#57f17692 flags:# masks:flags.0?true emojis:flags.1?true offset_id:long limit:int = messages.ArchivedStickers;
  1661. messages.getMaskStickers#640f82b8 hash:long = messages.AllStickers;
  1662. messages.getAttachedStickers#cc5b67cc media:InputStickeredMedia = Vector<StickerSetCovered>;
  1663. messages.setGameScore#8ef8ecc0 flags:# edit_message:flags.0?true force:flags.1?true peer:InputPeer id:int user_id:InputUser score:int = Updates;
  1664. messages.setInlineGameScore#15ad9f64 flags:# edit_message:flags.0?true force:flags.1?true id:InputBotInlineMessageID user_id:InputUser score:int = Bool;
  1665. messages.getGameHighScores#e822649d peer:InputPeer id:int user_id:InputUser = messages.HighScores;
  1666. messages.getInlineGameHighScores#f635e1b id:InputBotInlineMessageID user_id:InputUser = messages.HighScores;
  1667. messages.getCommonChats#e40ca104 user_id:InputUser max_id:long limit:int = messages.Chats;
  1668. messages.getWebPage#8d9692a3 url:string hash:int = messages.WebPage;
  1669. messages.toggleDialogPin#a731e257 flags:# pinned:flags.0?true peer:InputDialogPeer = Bool;
  1670. messages.reorderPinnedDialogs#3b1adf37 flags:# force:flags.0?true folder_id:int order:Vector<InputDialogPeer> = Bool;
  1671. messages.getPinnedDialogs#d6b94df2 folder_id:int = messages.PeerDialogs;
  1672. messages.setBotShippingResults#e5f672fa flags:# query_id:long error:flags.0?string shipping_options:flags.1?Vector<ShippingOption> = Bool;
  1673. messages.setBotPrecheckoutResults#9c2dd95 flags:# success:flags.1?true query_id:long error:flags.0?string = Bool;
  1674. messages.uploadMedia#14967978 flags:# business_connection_id:flags.0?string peer:InputPeer media:InputMedia = MessageMedia;
  1675. messages.sendScreenshotNotification#a1405817 peer:InputPeer reply_to:InputReplyTo random_id:long = Updates;
  1676. messages.getFavedStickers#4f1aaa9 hash:long = messages.FavedStickers;
  1677. messages.faveSticker#b9ffc55b id:InputDocument unfave:Bool = Bool;
  1678. messages.getUnreadMentions#f107e790 flags:# peer:InputPeer top_msg_id:flags.0?int offset_id:int add_offset:int limit:int max_id:int min_id:int = messages.Messages;
  1679. messages.readMentions#36e5bf4d flags:# peer:InputPeer top_msg_id:flags.0?int = messages.AffectedHistory;
  1680. messages.getRecentLocations#702a40e0 peer:InputPeer limit:int hash:long = messages.Messages;
  1681. messages.sendMultiMedia#1bf89d74 flags:# silent:flags.5?true background:flags.6?true clear_draft:flags.7?true noforwards:flags.14?true update_stickersets_order:flags.15?true invert_media:flags.16?true allow_paid_floodskip:flags.19?true peer:InputPeer reply_to:flags.0?InputReplyTo multi_media:Vector<InputSingleMedia> schedule_date:flags.10?int send_as:flags.13?InputPeer quick_reply_shortcut:flags.17?InputQuickReplyShortcut effect:flags.18?long allow_paid_stars:flags.21?long = Updates;
  1682. messages.uploadEncryptedFile#5057c497 peer:InputEncryptedChat file:InputEncryptedFile = EncryptedFile;
  1683. messages.searchStickerSets#35705b8a flags:# exclude_featured:flags.0?true q:string hash:long = messages.FoundStickerSets;
  1684. messages.getSplitRanges#1cff7e08 = Vector<MessageRange>;
  1685. messages.markDialogUnread#c286d98f flags:# unread:flags.0?true peer:InputDialogPeer = Bool;
  1686. messages.getDialogUnreadMarks#22e24e22 = Vector<DialogPeer>;
  1687. messages.clearAllDrafts#7e58ee9c = Bool;
  1688. messages.updatePinnedMessage#d2aaf7ec flags:# silent:flags.0?true unpin:flags.1?true pm_oneside:flags.2?true peer:InputPeer id:int = Updates;
  1689. messages.sendVote#10ea6184 peer:InputPeer msg_id:int options:Vector<bytes> = Updates;
  1690. messages.getPollResults#73bb643b peer:InputPeer msg_id:int = Updates;
  1691. messages.getOnlines#6e2be050 peer:InputPeer = ChatOnlines;
  1692. messages.editChatAbout#def60797 peer:InputPeer about:string = Bool;
  1693. messages.editChatDefaultBannedRights#a5866b41 peer:InputPeer banned_rights:ChatBannedRights = Updates;
  1694. messages.getEmojiKeywords#35a0e062 lang_code:string = EmojiKeywordsDifference;
  1695. messages.getEmojiKeywordsDifference#1508b6af lang_code:string from_version:int = EmojiKeywordsDifference;
  1696. messages.getEmojiKeywordsLanguages#4e9963b2 lang_codes:Vector<string> = Vector<EmojiLanguage>;
  1697. messages.getEmojiURL#d5b10c26 lang_code:string = EmojiURL;
  1698. messages.getSearchCounters#1bbcf300 flags:# peer:InputPeer saved_peer_id:flags.2?InputPeer top_msg_id:flags.0?int filters:Vector<MessagesFilter> = Vector<messages.SearchCounter>;
  1699. messages.requestUrlAuth#198fb446 flags:# peer:flags.1?InputPeer msg_id:flags.1?int button_id:flags.1?int url:flags.2?string = UrlAuthResult;
  1700. messages.acceptUrlAuth#b12c7125 flags:# write_allowed:flags.0?true peer:flags.1?InputPeer msg_id:flags.1?int button_id:flags.1?int url:flags.2?string = UrlAuthResult;
  1701. messages.hidePeerSettingsBar#4facb138 peer:InputPeer = Bool;
  1702. messages.getScheduledHistory#f516760b peer:InputPeer hash:long = messages.Messages;
  1703. messages.getScheduledMessages#bdbb0464 peer:InputPeer id:Vector<int> = messages.Messages;
  1704. messages.sendScheduledMessages#bd38850a peer:InputPeer id:Vector<int> = Updates;
  1705. messages.deleteScheduledMessages#59ae2b16 peer:InputPeer id:Vector<int> = Updates;
  1706. messages.getPollVotes#b86e380e flags:# peer:InputPeer id:int option:flags.0?bytes offset:flags.1?string limit:int = messages.VotesList;
  1707. messages.toggleStickerSets#b5052fea flags:# uninstall:flags.0?true archive:flags.1?true unarchive:flags.2?true stickersets:Vector<InputStickerSet> = Bool;
  1708. messages.getDialogFilters#efd48c89 = messages.DialogFilters;
  1709. messages.getSuggestedDialogFilters#a29cd42c = Vector<DialogFilterSuggested>;
  1710. messages.updateDialogFilter#1ad4a04a flags:# id:int filter:flags.0?DialogFilter = Bool;
  1711. messages.updateDialogFiltersOrder#c563c1e4 order:Vector<int> = Bool;
  1712. messages.getOldFeaturedStickers#7ed094a1 offset:int limit:int hash:long = messages.FeaturedStickers;
  1713. messages.getReplies#22ddd30c peer:InputPeer msg_id:int offset_id:int offset_date:int add_offset:int limit:int max_id:int min_id:int hash:long = messages.Messages;
  1714. messages.getDiscussionMessage#446972fd peer:InputPeer msg_id:int = messages.DiscussionMessage;
  1715. messages.readDiscussion#f731a9f4 peer:InputPeer msg_id:int read_max_id:int = Bool;
  1716. messages.unpinAllMessages#ee22b9a8 flags:# peer:InputPeer top_msg_id:flags.0?int = messages.AffectedHistory;
  1717. messages.deleteChat#5bd0ee50 chat_id:long = Bool;
  1718. messages.deletePhoneCallHistory#f9cbe409 flags:# revoke:flags.0?true = messages.AffectedFoundMessages;
  1719. messages.checkHistoryImport#43fe19f3 import_head:string = messages.HistoryImportParsed;
  1720. messages.initHistoryImport#34090c3b peer:InputPeer file:InputFile media_count:int = messages.HistoryImport;
  1721. messages.uploadImportedMedia#2a862092 peer:InputPeer import_id:long file_name:string media:InputMedia = MessageMedia;
  1722. messages.startHistoryImport#b43df344 peer:InputPeer import_id:long = Bool;
  1723. messages.getExportedChatInvites#a2b5a3f6 flags:# revoked:flags.3?true peer:InputPeer admin_id:InputUser offset_date:flags.2?int offset_link:flags.2?string limit:int = messages.ExportedChatInvites;
  1724. messages.getExportedChatInvite#73746f5c peer:InputPeer link:string = messages.ExportedChatInvite;
  1725. messages.editExportedChatInvite#bdca2f75 flags:# revoked:flags.2?true peer:InputPeer link:string expire_date:flags.0?int usage_limit:flags.1?int request_needed:flags.3?Bool title:flags.4?string = messages.ExportedChatInvite;
  1726. messages.deleteRevokedExportedChatInvites#56987bd5 peer:InputPeer admin_id:InputUser = Bool;
  1727. messages.deleteExportedChatInvite#d464a42b peer:InputPeer link:string = Bool;
  1728. messages.getAdminsWithInvites#3920e6ef peer:InputPeer = messages.ChatAdminsWithInvites;
  1729. messages.getChatInviteImporters#df04dd4e flags:# requested:flags.0?true subscription_expired:flags.3?true peer:InputPeer link:flags.1?string q:flags.2?string offset_date:int offset_user:InputUser limit:int = messages.ChatInviteImporters;
  1730. messages.setHistoryTTL#b80e5fe4 peer:InputPeer period:int = Updates;
  1731. messages.checkHistoryImportPeer#5dc60f03 peer:InputPeer = messages.CheckedHistoryImportPeer;
  1732. messages.setChatTheme#e63be13f peer:InputPeer emoticon:string = Updates;
  1733. messages.getMessageReadParticipants#31c1c44f peer:InputPeer msg_id:int = Vector<ReadParticipantDate>;
  1734. messages.getSearchResultsCalendar#6aa3f6bd flags:# peer:InputPeer saved_peer_id:flags.2?InputPeer filter:MessagesFilter offset_id:int offset_date:int = messages.SearchResultsCalendar;
  1735. messages.getSearchResultsPositions#9c7f2f10 flags:# peer:InputPeer saved_peer_id:flags.2?InputPeer filter:MessagesFilter offset_id:int limit:int = messages.SearchResultsPositions;
  1736. messages.hideChatJoinRequest#7fe7e815 flags:# approved:flags.0?true peer:InputPeer user_id:InputUser = Updates;
  1737. messages.hideAllChatJoinRequests#e085f4ea flags:# approved:flags.0?true peer:InputPeer link:flags.1?string = Updates;
  1738. messages.toggleNoForwards#b11eafa2 peer:InputPeer enabled:Bool = Updates;
  1739. messages.saveDefaultSendAs#ccfddf96 peer:InputPeer send_as:InputPeer = Bool;
  1740. messages.sendReaction#d30d78d4 flags:# big:flags.1?true add_to_recent:flags.2?true peer:InputPeer msg_id:int reaction:flags.0?Vector<Reaction> = Updates;
  1741. messages.getMessagesReactions#8bba90e6 peer:InputPeer id:Vector<int> = Updates;
  1742. messages.getMessageReactionsList#461b3f48 flags:# peer:InputPeer id:int reaction:flags.0?Reaction offset:flags.1?string limit:int = messages.MessageReactionsList;
  1743. messages.setChatAvailableReactions#864b2581 flags:# peer:InputPeer available_reactions:ChatReactions reactions_limit:flags.0?int paid_enabled:flags.1?Bool = Updates;
  1744. messages.getAvailableReactions#18dea0ac hash:int = messages.AvailableReactions;
  1745. messages.setDefaultReaction#4f47a016 reaction:Reaction = Bool;
  1746. messages.translateText#63183030 flags:# peer:flags.0?InputPeer id:flags.0?Vector<int> text:flags.1?Vector<TextWithEntities> to_lang:string = messages.TranslatedText;
  1747. messages.getUnreadReactions#3223495b flags:# peer:InputPeer top_msg_id:flags.0?int offset_id:int add_offset:int limit:int max_id:int min_id:int = messages.Messages;
  1748. messages.readReactions#54aa7f8e flags:# peer:InputPeer top_msg_id:flags.0?int = messages.AffectedHistory;
  1749. messages.searchSentMedia#107e31a0 q:string filter:MessagesFilter limit:int = messages.Messages;
  1750. messages.getAttachMenuBots#16fcc2cb hash:long = AttachMenuBots;
  1751. messages.getAttachMenuBot#77216192 bot:InputUser = AttachMenuBotsBot;
  1752. messages.toggleBotInAttachMenu#69f59d69 flags:# write_allowed:flags.0?true bot:InputUser enabled:Bool = Bool;
  1753. messages.requestWebView#269dc2c1 flags:# from_bot_menu:flags.4?true silent:flags.5?true compact:flags.7?true fullscreen:flags.8?true peer:InputPeer bot:InputUser url:flags.1?string start_param:flags.3?string theme_params:flags.2?DataJSON platform:string reply_to:flags.0?InputReplyTo send_as:flags.13?InputPeer = WebViewResult;
  1754. messages.prolongWebView#b0d81a83 flags:# silent:flags.5?true peer:InputPeer bot:InputUser query_id:long reply_to:flags.0?InputReplyTo send_as:flags.13?InputPeer = Bool;
  1755. messages.requestSimpleWebView#413a3e73 flags:# from_switch_webview:flags.1?true from_side_menu:flags.2?true compact:flags.7?true fullscreen:flags.8?true bot:InputUser url:flags.3?string start_param:flags.4?string theme_params:flags.0?DataJSON platform:string = WebViewResult;
  1756. messages.sendWebViewResultMessage#a4314f5 bot_query_id:string result:InputBotInlineResult = WebViewMessageSent;
  1757. messages.sendWebViewData#dc0242c8 bot:InputUser random_id:long button_text:string data:string = Updates;
  1758. messages.transcribeAudio#269e9a49 peer:InputPeer msg_id:int = messages.TranscribedAudio;
  1759. messages.rateTranscribedAudio#7f1d072f peer:InputPeer msg_id:int transcription_id:long good:Bool = Bool;
  1760. messages.getCustomEmojiDocuments#d9ab0f54 document_id:Vector<long> = Vector<Document>;
  1761. messages.getEmojiStickers#fbfca18f hash:long = messages.AllStickers;
  1762. messages.getFeaturedEmojiStickers#ecf6736 hash:long = messages.FeaturedStickers;
  1763. messages.reportReaction#3f64c076 peer:InputPeer id:int reaction_peer:InputPeer = Bool;
  1764. messages.getTopReactions#bb8125ba limit:int hash:long = messages.Reactions;
  1765. messages.getRecentReactions#39461db2 limit:int hash:long = messages.Reactions;
  1766. messages.clearRecentReactions#9dfeefb4 = Bool;
  1767. messages.getExtendedMedia#84f80814 peer:InputPeer id:Vector<int> = Updates;
  1768. messages.setDefaultHistoryTTL#9eb51445 period:int = Bool;
  1769. messages.getDefaultHistoryTTL#658b7188 = DefaultHistoryTTL;
  1770. messages.sendBotRequestedPeer#91b2d060 peer:InputPeer msg_id:int button_id:int requested_peers:Vector<InputPeer> = Updates;
  1771. messages.getEmojiGroups#7488ce5b hash:int = messages.EmojiGroups;
  1772. messages.getEmojiStatusGroups#2ecd56cd hash:int = messages.EmojiGroups;
  1773. messages.getEmojiProfilePhotoGroups#21a548f3 hash:int = messages.EmojiGroups;
  1774. messages.searchCustomEmoji#2c11c0d7 emoticon:string hash:long = EmojiList;
  1775. messages.togglePeerTranslations#e47cb579 flags:# disabled:flags.0?true peer:InputPeer = Bool;
  1776. messages.getBotApp#34fdc5c3 app:InputBotApp hash:long = messages.BotApp;
  1777. messages.requestAppWebView#53618bce flags:# write_allowed:flags.0?true compact:flags.7?true fullscreen:flags.8?true peer:InputPeer app:InputBotApp start_param:flags.1?string theme_params:flags.2?DataJSON platform:string = WebViewResult;
  1778. messages.setChatWallPaper#8ffacae1 flags:# for_both:flags.3?true revert:flags.4?true peer:InputPeer wallpaper:flags.0?InputWallPaper settings:flags.2?WallPaperSettings id:flags.1?int = Updates;
  1779. messages.searchEmojiStickerSets#92b4494c flags:# exclude_featured:flags.0?true q:string hash:long = messages.FoundStickerSets;
  1780. messages.getSavedDialogs#5381d21a flags:# exclude_pinned:flags.0?true offset_date:int offset_id:int offset_peer:InputPeer limit:int hash:long = messages.SavedDialogs;
  1781. messages.getSavedHistory#3d9a414d peer:InputPeer offset_id:int offset_date:int add_offset:int limit:int max_id:int min_id:int hash:long = messages.Messages;
  1782. messages.deleteSavedHistory#6e98102b flags:# peer:InputPeer max_id:int min_date:flags.2?int max_date:flags.3?int = messages.AffectedHistory;
  1783. messages.getPinnedSavedDialogs#d63d94e0 = messages.SavedDialogs;
  1784. messages.toggleSavedDialogPin#ac81bbde flags:# pinned:flags.0?true peer:InputDialogPeer = Bool;
  1785. messages.reorderPinnedSavedDialogs#8b716587 flags:# force:flags.0?true order:Vector<InputDialogPeer> = Bool;
  1786. messages.getSavedReactionTags#3637e05b flags:# peer:flags.0?InputPeer hash:long = messages.SavedReactionTags;
  1787. messages.updateSavedReactionTag#60297dec flags:# reaction:Reaction title:flags.0?string = Bool;
  1788. messages.getDefaultTagReactions#bdf93428 hash:long = messages.Reactions;
  1789. messages.getOutboxReadDate#8c4bfe5d peer:InputPeer msg_id:int = OutboxReadDate;
  1790. messages.getQuickReplies#d483f2a8 hash:long = messages.QuickReplies;
  1791. messages.reorderQuickReplies#60331907 order:Vector<int> = Bool;
  1792. messages.checkQuickReplyShortcut#f1d0fbd3 shortcut:string = Bool;
  1793. messages.editQuickReplyShortcut#5c003cef shortcut_id:int shortcut:string = Bool;
  1794. messages.deleteQuickReplyShortcut#3cc04740 shortcut_id:int = Bool;
  1795. messages.getQuickReplyMessages#94a495c3 flags:# shortcut_id:int id:flags.0?Vector<int> hash:long = messages.Messages;
  1796. messages.sendQuickReplyMessages#6c750de1 peer:InputPeer shortcut_id:int id:Vector<int> random_id:Vector<long> = Updates;
  1797. messages.deleteQuickReplyMessages#e105e910 shortcut_id:int id:Vector<int> = Updates;
  1798. messages.toggleDialogFilterTags#fd2dda49 enabled:Bool = Bool;
  1799. messages.getMyStickers#d0b5e1fc offset_id:long limit:int = messages.MyStickers;
  1800. messages.getEmojiStickerGroups#1dd840f5 hash:int = messages.EmojiGroups;
  1801. messages.getAvailableEffects#dea20a39 hash:int = messages.AvailableEffects;
  1802. messages.editFactCheck#589ee75 peer:InputPeer msg_id:int text:TextWithEntities = Updates;
  1803. messages.deleteFactCheck#d1da940c peer:InputPeer msg_id:int = Updates;
  1804. messages.getFactCheck#b9cdc5ee peer:InputPeer msg_id:Vector<int> = Vector<FactCheck>;
  1805. messages.requestMainWebView#c9e01e7b flags:# compact:flags.7?true fullscreen:flags.8?true peer:InputPeer bot:InputUser start_param:flags.1?string theme_params:flags.0?DataJSON platform:string = WebViewResult;
  1806. messages.sendPaidReaction#58bbcb50 flags:# peer:InputPeer msg_id:int count:int random_id:long private:flags.0?PaidReactionPrivacy = Updates;
  1807. messages.togglePaidReactionPrivacy#435885b5 peer:InputPeer msg_id:int private:PaidReactionPrivacy = Bool;
  1808. messages.getPaidReactionPrivacy#472455aa = Updates;
  1809. messages.viewSponsoredMessage#673ad8f1 peer:InputPeer random_id:bytes = Bool;
  1810. messages.clickSponsoredMessage#f093465 flags:# media:flags.0?true fullscreen:flags.1?true peer:InputPeer random_id:bytes = Bool;
  1811. messages.reportSponsoredMessage#1af3dbb8 peer:InputPeer random_id:bytes option:bytes = channels.SponsoredMessageReportResult;
  1812. messages.getSponsoredMessages#9bd2f439 peer:InputPeer = messages.SponsoredMessages;
  1813. messages.savePreparedInlineMessage#f21f7f2f flags:# result:InputBotInlineResult user_id:InputUser peer_types:flags.0?Vector<InlineQueryPeerType> = messages.BotPreparedInlineMessage;
  1814. messages.getPreparedInlineMessage#857ebdb8 bot:InputUser id:string = messages.PreparedInlineMessage;
  1815. messages.searchStickers#29b1c66a flags:# emojis:flags.0?true q:string emoticon:string lang_code:Vector<string> offset:int limit:int hash:long = messages.FoundStickers;
  1816. messages.reportMessagesDelivery#5a6d7395 flags:# push:flags.0?true peer:InputPeer id:Vector<int> = Bool;
  1817. updates.getState#edd4882a = updates.State;
  1818. updates.getDifference#19c2f763 flags:# pts:int pts_limit:flags.1?int pts_total_limit:flags.0?int date:int qts:int qts_limit:flags.2?int = updates.Difference;
  1819. updates.getChannelDifference#3173d78 flags:# force:flags.0?true channel:InputChannel filter:ChannelMessagesFilter pts:int limit:int = updates.ChannelDifference;
  1820. photos.updateProfilePhoto#9e82039 flags:# fallback:flags.0?true bot:flags.1?InputUser id:InputPhoto = photos.Photo;
  1821. photos.uploadProfilePhoto#388a3b5 flags:# fallback:flags.3?true bot:flags.5?InputUser file:flags.0?InputFile video:flags.1?InputFile video_start_ts:flags.2?double video_emoji_markup:flags.4?VideoSize = photos.Photo;
  1822. photos.deletePhotos#87cf7f2f id:Vector<InputPhoto> = Vector<long>;
  1823. photos.getUserPhotos#91cd32a8 user_id:InputUser offset:int max_id:long limit:int = photos.Photos;
  1824. photos.uploadContactProfilePhoto#e14c4a71 flags:# suggest:flags.3?true save:flags.4?true user_id:InputUser file:flags.0?InputFile video:flags.1?InputFile video_start_ts:flags.2?double video_emoji_markup:flags.5?VideoSize = photos.Photo;
  1825. upload.saveFilePart#b304a621 file_id:long file_part:int bytes:bytes = Bool;
  1826. upload.getFile#be5335be flags:# precise:flags.0?true cdn_supported:flags.1?true location:InputFileLocation offset:long limit:int = upload.File;
  1827. upload.saveBigFilePart#de7b673d file_id:long file_part:int file_total_parts:int bytes:bytes = Bool;
  1828. upload.getWebFile#24e6818d location:InputWebFileLocation offset:int limit:int = upload.WebFile;
  1829. upload.getCdnFile#395f69da file_token:bytes offset:long limit:int = upload.CdnFile;
  1830. upload.reuploadCdnFile#9b2754a8 file_token:bytes request_token:bytes = Vector<FileHash>;
  1831. upload.getCdnFileHashes#91dc3f31 file_token:bytes offset:long = Vector<FileHash>;
  1832. upload.getFileHashes#9156982a location:InputFileLocation offset:long = Vector<FileHash>;
  1833. help.getConfig#c4f9186b = Config;
  1834. help.getNearestDc#1fb33026 = NearestDc;
  1835. help.getAppUpdate#522d5a7d source:string = help.AppUpdate;
  1836. help.getInviteText#4d392343 = help.InviteText;
  1837. help.getSupport#9cdf08cd = help.Support;
  1838. help.setBotUpdatesStatus#ec22cfcd pending_updates_count:int message:string = Bool;
  1839. help.getCdnConfig#52029342 = CdnConfig;
  1840. help.getRecentMeUrls#3dc0f114 referer:string = help.RecentMeUrls;
  1841. help.getTermsOfServiceUpdate#2ca51fd1 = help.TermsOfServiceUpdate;
  1842. help.acceptTermsOfService#ee72f79a id:DataJSON = Bool;
  1843. help.getDeepLinkInfo#3fedc75f path:string = help.DeepLinkInfo;
  1844. help.getAppConfig#61e3f854 hash:int = help.AppConfig;
  1845. help.saveAppLog#6f02f748 events:Vector<InputAppEvent> = Bool;
  1846. help.getPassportConfig#c661ad08 hash:int = help.PassportConfig;
  1847. help.getSupportName#d360e72c = help.SupportName;
  1848. help.getUserInfo#38a08d3 user_id:InputUser = help.UserInfo;
  1849. help.editUserInfo#66b91b70 user_id:InputUser message:string entities:Vector<MessageEntity> = help.UserInfo;
  1850. help.getPromoData#c0977421 = help.PromoData;
  1851. help.hidePromoData#1e251c95 peer:InputPeer = Bool;
  1852. help.dismissSuggestion#f50dbaa1 peer:InputPeer suggestion:string = Bool;
  1853. help.getCountriesList#735787a8 lang_code:string hash:int = help.CountriesList;
  1854. help.getPremiumPromo#b81b93d4 = help.PremiumPromo;
  1855. help.getPeerColors#da80f42f hash:int = help.PeerColors;
  1856. help.getPeerProfileColors#abcfa9fd hash:int = help.PeerColors;
  1857. help.getTimezonesList#49b30240 hash:int = help.TimezonesList;
  1858. channels.readHistory#cc104937 channel:InputChannel max_id:int = Bool;
  1859. channels.deleteMessages#84c1fd4e channel:InputChannel id:Vector<int> = messages.AffectedMessages;
  1860. channels.reportSpam#f44a8315 channel:InputChannel participant:InputPeer id:Vector<int> = Bool;
  1861. channels.getMessages#ad8c9a23 channel:InputChannel id:Vector<InputMessage> = messages.Messages;
  1862. channels.getParticipants#77ced9d0 channel:InputChannel filter:ChannelParticipantsFilter offset:int limit:int hash:long = channels.ChannelParticipants;
  1863. channels.getParticipant#a0ab6cc6 channel:InputChannel participant:InputPeer = channels.ChannelParticipant;
  1864. channels.getChannels#a7f6bbb id:Vector<InputChannel> = messages.Chats;
  1865. channels.getFullChannel#8736a09 channel:InputChannel = messages.ChatFull;
  1866. channels.createChannel#91006707 flags:# broadcast:flags.0?true megagroup:flags.1?true for_import:flags.3?true forum:flags.5?true title:string about:string geo_point:flags.2?InputGeoPoint address:flags.2?string ttl_period:flags.4?int = Updates;
  1867. channels.editAdmin#d33c8902 channel:InputChannel user_id:InputUser admin_rights:ChatAdminRights rank:string = Updates;
  1868. channels.editTitle#566decd0 channel:InputChannel title:string = Updates;
  1869. channels.editPhoto#f12e57c9 channel:InputChannel photo:InputChatPhoto = Updates;
  1870. channels.checkUsername#10e6bd2c channel:InputChannel username:string = Bool;
  1871. channels.updateUsername#3514b3de channel:InputChannel username:string = Bool;
  1872. channels.joinChannel#24b524c5 channel:InputChannel = Updates;
  1873. channels.leaveChannel#f836aa95 channel:InputChannel = Updates;
  1874. channels.inviteToChannel#c9e33d54 channel:InputChannel users:Vector<InputUser> = messages.InvitedUsers;
  1875. channels.deleteChannel#c0111fe3 channel:InputChannel = Updates;
  1876. channels.exportMessageLink#e63fadeb flags:# grouped:flags.0?true thread:flags.1?true channel:InputChannel id:int = ExportedMessageLink;
  1877. channels.toggleSignatures#418d549c flags:# signatures_enabled:flags.0?true profiles_enabled:flags.1?true channel:InputChannel = Updates;
  1878. channels.getAdminedPublicChannels#f8b036af flags:# by_location:flags.0?true check_limit:flags.1?true for_personal:flags.2?true = messages.Chats;
  1879. channels.editBanned#96e6cd81 channel:InputChannel participant:InputPeer banned_rights:ChatBannedRights = Updates;
  1880. channels.getAdminLog#33ddf480 flags:# channel:InputChannel q:string events_filter:flags.0?ChannelAdminLogEventsFilter admins:flags.1?Vector<InputUser> max_id:long min_id:long limit:int = channels.AdminLogResults;
  1881. channels.setStickers#ea8ca4f9 channel:InputChannel stickerset:InputStickerSet = Bool;
  1882. channels.readMessageContents#eab5dc38 channel:InputChannel id:Vector<int> = Bool;
  1883. channels.deleteHistory#9baa9647 flags:# for_everyone:flags.0?true channel:InputChannel max_id:int = Updates;
  1884. channels.togglePreHistoryHidden#eabbb94c channel:InputChannel enabled:Bool = Updates;
  1885. channels.getLeftChannels#8341ecc0 offset:int = messages.Chats;
  1886. channels.getGroupsForDiscussion#f5dad378 = messages.Chats;
  1887. channels.setDiscussionGroup#40582bb2 broadcast:InputChannel group:InputChannel = Bool;
  1888. channels.editCreator#8f38cd1f channel:InputChannel user_id:InputUser password:InputCheckPasswordSRP = Updates;
  1889. channels.editLocation#58e63f6d channel:InputChannel geo_point:InputGeoPoint address:string = Bool;
  1890. channels.toggleSlowMode#edd49ef0 channel:InputChannel seconds:int = Updates;
  1891. channels.getInactiveChannels#11e831ee = messages.InactiveChats;
  1892. channels.convertToGigagroup#b290c69 channel:InputChannel = Updates;
  1893. channels.getSendAs#e785a43f flags:# for_paid_reactions:flags.0?true peer:InputPeer = channels.SendAsPeers;
  1894. channels.deleteParticipantHistory#367544db channel:InputChannel participant:InputPeer = messages.AffectedHistory;
  1895. channels.toggleJoinToSend#e4cb9580 channel:InputChannel enabled:Bool = Updates;
  1896. channels.toggleJoinRequest#4c2985b6 channel:InputChannel enabled:Bool = Updates;
  1897. channels.reorderUsernames#b45ced1d channel:InputChannel order:Vector<string> = Bool;
  1898. channels.toggleUsername#50f24105 channel:InputChannel username:string active:Bool = Bool;
  1899. channels.deactivateAllUsernames#a245dd3 channel:InputChannel = Bool;
  1900. channels.toggleForum#a4298b29 channel:InputChannel enabled:Bool = Updates;
  1901. channels.createForumTopic#f40c0224 flags:# channel:InputChannel title:string icon_color:flags.0?int icon_emoji_id:flags.3?long random_id:long send_as:flags.2?InputPeer = Updates;
  1902. channels.getForumTopics#de560d1 flags:# channel:InputChannel q:flags.0?string offset_date:int offset_id:int offset_topic:int limit:int = messages.ForumTopics;
  1903. channels.getForumTopicsByID#b0831eb9 channel:InputChannel topics:Vector<int> = messages.ForumTopics;
  1904. channels.editForumTopic#f4dfa185 flags:# channel:InputChannel topic_id:int title:flags.0?string icon_emoji_id:flags.1?long closed:flags.2?Bool hidden:flags.3?Bool = Updates;
  1905. channels.updatePinnedForumTopic#6c2d9026 channel:InputChannel topic_id:int pinned:Bool = Updates;
  1906. channels.deleteTopicHistory#34435f2d channel:InputChannel top_msg_id:int = messages.AffectedHistory;
  1907. channels.reorderPinnedForumTopics#2950a18f flags:# force:flags.0?true channel:InputChannel order:Vector<int> = Updates;
  1908. channels.toggleAntiSpam#68f3e4eb channel:InputChannel enabled:Bool = Updates;
  1909. channels.reportAntiSpamFalsePositive#a850a693 channel:InputChannel msg_id:int = Bool;
  1910. channels.toggleParticipantsHidden#6a6e7854 channel:InputChannel enabled:Bool = Updates;
  1911. channels.updateColor#d8aa3671 flags:# for_profile:flags.1?true channel:InputChannel color:flags.2?int background_emoji_id:flags.0?long = Updates;
  1912. channels.toggleViewForumAsMessages#9738bb15 channel:InputChannel enabled:Bool = Updates;
  1913. channels.getChannelRecommendations#25a71742 flags:# channel:flags.0?InputChannel = messages.Chats;
  1914. channels.updateEmojiStatus#f0d3e6a8 channel:InputChannel emoji_status:EmojiStatus = Updates;
  1915. channels.setBoostsToUnblockRestrictions#ad399cee channel:InputChannel boosts:int = Updates;
  1916. channels.setEmojiStickers#3cd930b7 channel:InputChannel stickerset:InputStickerSet = Bool;
  1917. channels.restrictSponsoredMessages#9ae91519 channel:InputChannel restricted:Bool = Updates;
  1918. channels.searchPosts#d19f987b hashtag:string offset_rate:int offset_peer:InputPeer offset_id:int limit:int = messages.Messages;
  1919. channels.updatePaidMessagesPrice#fc84653f channel:InputChannel send_paid_messages_stars:long = Updates;
  1920. bots.sendCustomRequest#aa2769ed custom_method:string params:DataJSON = DataJSON;
  1921. bots.answerWebhookJSONQuery#e6213f4d query_id:long data:DataJSON = Bool;
  1922. bots.setBotCommands#517165a scope:BotCommandScope lang_code:string commands:Vector<BotCommand> = Bool;
  1923. bots.resetBotCommands#3d8de0f9 scope:BotCommandScope lang_code:string = Bool;
  1924. bots.getBotCommands#e34c0dd6 scope:BotCommandScope lang_code:string = Vector<BotCommand>;
  1925. bots.setBotMenuButton#4504d54f user_id:InputUser button:BotMenuButton = Bool;
  1926. bots.getBotMenuButton#9c60eb28 user_id:InputUser = BotMenuButton;
  1927. bots.setBotBroadcastDefaultAdminRights#788464e1 admin_rights:ChatAdminRights = Bool;
  1928. bots.setBotGroupDefaultAdminRights#925ec9ea admin_rights:ChatAdminRights = Bool;
  1929. bots.setBotInfo#10cf3123 flags:# bot:flags.2?InputUser lang_code:string name:flags.3?string about:flags.0?string description:flags.1?string = Bool;
  1930. bots.getBotInfo#dcd914fd flags:# bot:flags.0?InputUser lang_code:string = bots.BotInfo;
  1931. bots.reorderUsernames#9709b1c2 bot:InputUser order:Vector<string> = Bool;
  1932. bots.toggleUsername#53ca973 bot:InputUser username:string active:Bool = Bool;
  1933. bots.canSendMessage#1359f4e6 bot:InputUser = Bool;
  1934. bots.allowSendMessage#f132e3ef bot:InputUser = Updates;
  1935. bots.invokeWebViewCustomMethod#87fc5e7 bot:InputUser custom_method:string params:DataJSON = DataJSON;
  1936. bots.getPopularAppBots#c2510192 offset:string limit:int = bots.PopularAppBots;
  1937. bots.addPreviewMedia#17aeb75a bot:InputUser lang_code:string media:InputMedia = BotPreviewMedia;
  1938. bots.editPreviewMedia#8525606f bot:InputUser lang_code:string media:InputMedia new_media:InputMedia = BotPreviewMedia;
  1939. bots.deletePreviewMedia#2d0135b3 bot:InputUser lang_code:string media:Vector<InputMedia> = Bool;
  1940. bots.reorderPreviewMedias#b627f3aa bot:InputUser lang_code:string order:Vector<InputMedia> = Bool;
  1941. bots.getPreviewInfo#423ab3ad bot:InputUser lang_code:string = bots.PreviewInfo;
  1942. bots.getPreviewMedias#a2a5594d bot:InputUser = Vector<BotPreviewMedia>;
  1943. bots.updateUserEmojiStatus#ed9f30c5 user_id:InputUser emoji_status:EmojiStatus = Bool;
  1944. bots.toggleUserEmojiStatusPermission#6de6392 bot:InputUser enabled:Bool = Bool;
  1945. bots.checkDownloadFileParams#50077589 bot:InputUser file_name:string url:string = Bool;
  1946. bots.getAdminedBots#b0711d83 = Vector<User>;
  1947. bots.updateStarRefProgram#778b5ab3 flags:# bot:InputUser commission_permille:int duration_months:flags.0?int = StarRefProgram;
  1948. bots.setCustomVerification#8b89dfbd flags:# enabled:flags.1?true bot:flags.0?InputUser peer:InputPeer custom_description:flags.2?string = Bool;
  1949. bots.getBotRecommendations#a1b70815 bot:InputUser = users.Users;
  1950. payments.getPaymentForm#37148dbb flags:# invoice:InputInvoice theme_params:flags.0?DataJSON = payments.PaymentForm;
  1951. payments.getPaymentReceipt#2478d1cc peer:InputPeer msg_id:int = payments.PaymentReceipt;
  1952. payments.validateRequestedInfo#b6c8f12b flags:# save:flags.0?true invoice:InputInvoice info:PaymentRequestedInfo = payments.ValidatedRequestedInfo;
  1953. payments.sendPaymentForm#2d03522f flags:# form_id:long invoice:InputInvoice requested_info_id:flags.0?string shipping_option_id:flags.1?string credentials:InputPaymentCredentials tip_amount:flags.2?long = payments.PaymentResult;
  1954. payments.getSavedInfo#227d824b = payments.SavedInfo;
  1955. payments.clearSavedInfo#d83d70c1 flags:# credentials:flags.0?true info:flags.1?true = Bool;
  1956. payments.getBankCardData#2e79d779 number:string = payments.BankCardData;
  1957. payments.exportInvoice#f91b065 invoice_media:InputMedia = payments.ExportedInvoice;
  1958. payments.assignAppStoreTransaction#80ed747d receipt:bytes purpose:InputStorePaymentPurpose = Updates;
  1959. payments.assignPlayMarketTransaction#dffd50d3 receipt:DataJSON purpose:InputStorePaymentPurpose = Updates;
  1960. payments.canPurchasePremium#9fc19eb6 purpose:InputStorePaymentPurpose = Bool;
  1961. payments.getPremiumGiftCodeOptions#2757ba54 flags:# boost_peer:flags.0?InputPeer = Vector<PremiumGiftCodeOption>;
  1962. payments.checkGiftCode#8e51b4c1 slug:string = payments.CheckedGiftCode;
  1963. payments.applyGiftCode#f6e26854 slug:string = Updates;
  1964. payments.getGiveawayInfo#f4239425 peer:InputPeer msg_id:int = payments.GiveawayInfo;
  1965. payments.launchPrepaidGiveaway#5ff58f20 peer:InputPeer giveaway_id:long purpose:InputStorePaymentPurpose = Updates;
  1966. payments.getStarsTopupOptions#c00ec7d3 = Vector<StarsTopupOption>;
  1967. payments.getStarsStatus#104fcfa7 peer:InputPeer = payments.StarsStatus;
  1968. payments.getStarsTransactions#69da4557 flags:# inbound:flags.0?true outbound:flags.1?true ascending:flags.2?true subscription_id:flags.3?string peer:InputPeer offset:string limit:int = payments.StarsStatus;
  1969. payments.sendStarsForm#7998c914 form_id:long invoice:InputInvoice = payments.PaymentResult;
  1970. payments.refundStarsCharge#25ae8f4a user_id:InputUser charge_id:string = Updates;
  1971. payments.getStarsRevenueStats#d91ffad6 flags:# dark:flags.0?true peer:InputPeer = payments.StarsRevenueStats;
  1972. payments.getStarsRevenueWithdrawalUrl#13bbe8b3 peer:InputPeer stars:long password:InputCheckPasswordSRP = payments.StarsRevenueWithdrawalUrl;
  1973. payments.getStarsRevenueAdsAccountUrl#d1d7efc5 peer:InputPeer = payments.StarsRevenueAdsAccountUrl;
  1974. payments.getStarsTransactionsByID#27842d2e peer:InputPeer id:Vector<InputStarsTransaction> = payments.StarsStatus;
  1975. payments.getStarsGiftOptions#d3c96bc8 flags:# user_id:flags.0?InputUser = Vector<StarsGiftOption>;
  1976. payments.getStarsSubscriptions#32512c5 flags:# missing_balance:flags.0?true peer:InputPeer offset:string = payments.StarsStatus;
  1977. payments.changeStarsSubscription#c7770878 flags:# peer:InputPeer subscription_id:string canceled:flags.0?Bool = Bool;
  1978. payments.fulfillStarsSubscription#cc5bebb3 peer:InputPeer subscription_id:string = Bool;
  1979. payments.getStarsGiveawayOptions#bd1efd3e = Vector<StarsGiveawayOption>;
  1980. payments.getStarGifts#c4563590 hash:int = payments.StarGifts;
  1981. payments.saveStarGift#2a2a697c flags:# unsave:flags.0?true stargift:InputSavedStarGift = Bool;
  1982. payments.convertStarGift#74bf076b stargift:InputSavedStarGift = Bool;
  1983. payments.botCancelStarsSubscription#6dfa0622 flags:# restore:flags.0?true user_id:InputUser charge_id:string = Bool;
  1984. payments.getConnectedStarRefBots#5869a553 flags:# peer:InputPeer offset_date:flags.2?int offset_link:flags.2?string limit:int = payments.ConnectedStarRefBots;
  1985. payments.getConnectedStarRefBot#b7d998f0 peer:InputPeer bot:InputUser = payments.ConnectedStarRefBots;
  1986. payments.getSuggestedStarRefBots#d6b48f7 flags:# order_by_revenue:flags.0?true order_by_date:flags.1?true peer:InputPeer offset:string limit:int = payments.SuggestedStarRefBots;
  1987. payments.connectStarRefBot#7ed5348a peer:InputPeer bot:InputUser = payments.ConnectedStarRefBots;
  1988. payments.editConnectedStarRefBot#e4fca4a3 flags:# revoked:flags.0?true peer:InputPeer link:string = payments.ConnectedStarRefBots;
  1989. payments.getStarGiftUpgradePreview#9c9abcb1 gift_id:long = payments.StarGiftUpgradePreview;
  1990. payments.upgradeStarGift#aed6e4f5 flags:# keep_original_details:flags.0?true stargift:InputSavedStarGift = Updates;
  1991. payments.transferStarGift#7f18176a stargift:InputSavedStarGift to_id:InputPeer = Updates;
  1992. payments.getUniqueStarGift#a1974d72 slug:string = payments.UniqueStarGift;
  1993. payments.getSavedStarGifts#23830de9 flags:# exclude_unsaved:flags.0?true exclude_saved:flags.1?true exclude_unlimited:flags.2?true exclude_limited:flags.3?true exclude_unique:flags.4?true sort_by_value:flags.5?true peer:InputPeer offset:string limit:int = payments.SavedStarGifts;
  1994. payments.getSavedStarGift#b455a106 stargift:Vector<InputSavedStarGift> = payments.SavedStarGifts;
  1995. payments.getStarGiftWithdrawalUrl#d06e93a8 stargift:InputSavedStarGift password:InputCheckPasswordSRP = payments.StarGiftWithdrawalUrl;
  1996. payments.toggleChatStarGiftNotifications#60eaefa1 flags:# enabled:flags.0?true peer:InputPeer = Bool;
  1997. payments.toggleStarGiftsPinnedToTop#1513e7b0 peer:InputPeer stargift:Vector<InputSavedStarGift> = Bool;
  1998. stickers.createStickerSet#9021ab67 flags:# masks:flags.0?true emojis:flags.5?true text_color:flags.6?true user_id:InputUser title:string short_name:string thumb:flags.2?InputDocument stickers:Vector<InputStickerSetItem> software:flags.3?string = messages.StickerSet;
  1999. stickers.removeStickerFromSet#f7760f51 sticker:InputDocument = messages.StickerSet;
  2000. stickers.changeStickerPosition#ffb6d4ca sticker:InputDocument position:int = messages.StickerSet;
  2001. stickers.addStickerToSet#8653febe stickerset:InputStickerSet sticker:InputStickerSetItem = messages.StickerSet;
  2002. stickers.setStickerSetThumb#a76a5392 flags:# stickerset:InputStickerSet thumb:flags.0?InputDocument thumb_document_id:flags.1?long = messages.StickerSet;
  2003. stickers.checkShortName#284b3639 short_name:string = Bool;
  2004. stickers.suggestShortName#4dafc503 title:string = stickers.SuggestedShortName;
  2005. stickers.changeSticker#f5537ebc flags:# sticker:InputDocument emoji:flags.0?string mask_coords:flags.1?MaskCoords keywords:flags.2?string = messages.StickerSet;
  2006. stickers.renameStickerSet#124b1c00 stickerset:InputStickerSet title:string = messages.StickerSet;
  2007. stickers.deleteStickerSet#87704394 stickerset:InputStickerSet = Bool;
  2008. stickers.replaceSticker#4696459a sticker:InputDocument new_sticker:InputStickerSetItem = messages.StickerSet;
  2009. phone.getCallConfig#55451fa9 = DataJSON;
  2010. phone.requestCall#a6c4600c flags:# video:flags.0?true user_id:InputUser conference_call:flags.1?InputGroupCall random_id:int g_a_hash:bytes protocol:PhoneCallProtocol = phone.PhoneCall;
  2011. phone.acceptCall#3bd2b4a0 peer:InputPhoneCall g_b:bytes protocol:PhoneCallProtocol = phone.PhoneCall;
  2012. phone.confirmCall#2efe1722 peer:InputPhoneCall g_a:bytes key_fingerprint:long protocol:PhoneCallProtocol = phone.PhoneCall;
  2013. phone.receivedCall#17d54f61 peer:InputPhoneCall = Bool;
  2014. phone.discardCall#b2cbc1c0 flags:# video:flags.0?true peer:InputPhoneCall duration:int reason:PhoneCallDiscardReason connection_id:long = Updates;
  2015. phone.setCallRating#59ead627 flags:# user_initiative:flags.0?true peer:InputPhoneCall rating:int comment:string = Updates;
  2016. phone.saveCallDebug#277add7e peer:InputPhoneCall debug:DataJSON = Bool;
  2017. phone.sendSignalingData#ff7a9383 peer:InputPhoneCall data:bytes = Bool;
  2018. phone.createGroupCall#48cdc6d8 flags:# rtmp_stream:flags.2?true peer:InputPeer random_id:int title:flags.0?string schedule_date:flags.1?int = Updates;
  2019. phone.joinGroupCall#d61e1df3 flags:# muted:flags.0?true video_stopped:flags.2?true call:InputGroupCall join_as:InputPeer invite_hash:flags.1?string key_fingerprint:flags.3?long params:DataJSON = Updates;
  2020. phone.leaveGroupCall#500377f9 call:InputGroupCall source:int = Updates;
  2021. phone.inviteToGroupCall#7b393160 call:InputGroupCall users:Vector<InputUser> = Updates;
  2022. phone.discardGroupCall#7a777135 call:InputGroupCall = Updates;
  2023. phone.toggleGroupCallSettings#74bbb43d flags:# reset_invite_hash:flags.1?true call:InputGroupCall join_muted:flags.0?Bool = Updates;
  2024. phone.getGroupCall#41845db call:InputGroupCall limit:int = phone.GroupCall;
  2025. phone.getGroupParticipants#c558d8ab call:InputGroupCall ids:Vector<InputPeer> sources:Vector<int> offset:string limit:int = phone.GroupParticipants;
  2026. phone.checkGroupCall#b59cf977 call:InputGroupCall sources:Vector<int> = Vector<int>;
  2027. phone.toggleGroupCallRecord#f128c708 flags:# start:flags.0?true video:flags.2?true call:InputGroupCall title:flags.1?string video_portrait:flags.2?Bool = Updates;
  2028. phone.editGroupCallParticipant#a5273abf flags:# call:InputGroupCall participant:InputPeer muted:flags.0?Bool volume:flags.1?int raise_hand:flags.2?Bool video_stopped:flags.3?Bool video_paused:flags.4?Bool presentation_paused:flags.5?Bool = Updates;
  2029. phone.editGroupCallTitle#1ca6ac0a call:InputGroupCall title:string = Updates;
  2030. phone.getGroupCallJoinAs#ef7c213a peer:InputPeer = phone.JoinAsPeers;
  2031. phone.exportGroupCallInvite#e6aa647f flags:# can_self_unmute:flags.0?true call:InputGroupCall = phone.ExportedGroupCallInvite;
  2032. phone.toggleGroupCallStartSubscription#219c34e6 call:InputGroupCall subscribed:Bool = Updates;
  2033. phone.startScheduledGroupCall#5680e342 call:InputGroupCall = Updates;
  2034. phone.saveDefaultGroupCallJoinAs#575e1f8c peer:InputPeer join_as:InputPeer = Bool;
  2035. phone.joinGroupCallPresentation#cbea6bc4 call:InputGroupCall params:DataJSON = Updates;
  2036. phone.leaveGroupCallPresentation#1c50d144 call:InputGroupCall = Updates;
  2037. phone.getGroupCallStreamChannels#1ab21940 call:InputGroupCall = phone.GroupCallStreamChannels;
  2038. phone.getGroupCallStreamRtmpUrl#deb3abbf peer:InputPeer revoke:Bool = phone.GroupCallStreamRtmpUrl;
  2039. phone.saveCallLog#41248786 peer:InputPhoneCall file:InputFile = Bool;
  2040. phone.createConferenceCall#dfc909ab peer:InputPhoneCall key_fingerprint:long = phone.PhoneCall;
  2041. langpack.getLangPack#f2f2330a lang_pack:string lang_code:string = LangPackDifference;
  2042. langpack.getStrings#efea3803 lang_pack:string lang_code:string keys:Vector<string> = Vector<LangPackString>;
  2043. langpack.getDifference#cd984aa5 lang_pack:string lang_code:string from_version:int = LangPackDifference;
  2044. langpack.getLanguages#42c6978f lang_pack:string = Vector<LangPackLanguage>;
  2045. langpack.getLanguage#6a596502 lang_pack:string lang_code:string = LangPackLanguage;
  2046. folders.editPeerFolders#6847d0ab folder_peers:Vector<InputFolderPeer> = Updates;
  2047. stats.getBroadcastStats#ab42441a flags:# dark:flags.0?true channel:InputChannel = stats.BroadcastStats;
  2048. stats.loadAsyncGraph#621d5fa0 flags:# token:string x:flags.0?long = StatsGraph;
  2049. stats.getMegagroupStats#dcdf8607 flags:# dark:flags.0?true channel:InputChannel = stats.MegagroupStats;
  2050. stats.getMessagePublicForwards#5f150144 channel:InputChannel msg_id:int offset:string limit:int = stats.PublicForwards;
  2051. stats.getMessageStats#b6e0a3f5 flags:# dark:flags.0?true channel:InputChannel msg_id:int = stats.MessageStats;
  2052. stats.getStoryStats#374fef40 flags:# dark:flags.0?true peer:InputPeer id:int = stats.StoryStats;
  2053. stats.getStoryPublicForwards#a6437ef6 peer:InputPeer id:int offset:string limit:int = stats.PublicForwards;
  2054. stats.getBroadcastRevenueStats#f788ee19 flags:# dark:flags.0?true peer:InputPeer = stats.BroadcastRevenueStats;
  2055. stats.getBroadcastRevenueWithdrawalUrl#9df4faad peer:InputPeer password:InputCheckPasswordSRP = stats.BroadcastRevenueWithdrawalUrl;
  2056. stats.getBroadcastRevenueTransactions#70990b6d peer:InputPeer offset:int limit:int = stats.BroadcastRevenueTransactions;
  2057. chatlists.exportChatlistInvite#8472478e chatlist:InputChatlist title:string peers:Vector<InputPeer> = chatlists.ExportedChatlistInvite;
  2058. chatlists.deleteExportedInvite#719c5c5e chatlist:InputChatlist slug:string = Bool;
  2059. chatlists.editExportedInvite#653db63d flags:# chatlist:InputChatlist slug:string title:flags.1?string peers:flags.2?Vector<InputPeer> = ExportedChatlistInvite;
  2060. chatlists.getExportedInvites#ce03da83 chatlist:InputChatlist = chatlists.ExportedInvites;
  2061. chatlists.checkChatlistInvite#41c10fff slug:string = chatlists.ChatlistInvite;
  2062. chatlists.joinChatlistInvite#a6b1e39a slug:string peers:Vector<InputPeer> = Updates;
  2063. chatlists.getChatlistUpdates#89419521 chatlist:InputChatlist = chatlists.ChatlistUpdates;
  2064. chatlists.joinChatlistUpdates#e089f8f5 chatlist:InputChatlist peers:Vector<InputPeer> = Updates;
  2065. chatlists.hideChatlistUpdates#66e486fb chatlist:InputChatlist = Bool;
  2066. chatlists.getLeaveChatlistSuggestions#fdbcd714 chatlist:InputChatlist = Vector<Peer>;
  2067. chatlists.leaveChatlist#74fae13a chatlist:InputChatlist peers:Vector<InputPeer> = Updates;
  2068. stories.canSendStory#c7dfdfdd peer:InputPeer = Bool;
  2069. stories.sendStory#e4e6694b flags:# pinned:flags.2?true noforwards:flags.4?true fwd_modified:flags.7?true peer:InputPeer media:InputMedia media_areas:flags.5?Vector<MediaArea> caption:flags.0?string entities:flags.1?Vector<MessageEntity> privacy_rules:Vector<InputPrivacyRule> random_id:long period:flags.3?int fwd_from_id:flags.6?InputPeer fwd_from_story:flags.6?int = Updates;
  2070. stories.editStory#b583ba46 flags:# peer:InputPeer id:int media:flags.0?InputMedia media_areas:flags.3?Vector<MediaArea> caption:flags.1?string entities:flags.1?Vector<MessageEntity> privacy_rules:flags.2?Vector<InputPrivacyRule> = Updates;
  2071. stories.deleteStories#ae59db5f peer:InputPeer id:Vector<int> = Vector<int>;
  2072. stories.togglePinned#9a75a1ef peer:InputPeer id:Vector<int> pinned:Bool = Vector<int>;
  2073. stories.getAllStories#eeb0d625 flags:# next:flags.1?true hidden:flags.2?true state:flags.0?string = stories.AllStories;
  2074. stories.getPinnedStories#5821a5dc peer:InputPeer offset_id:int limit:int = stories.Stories;
  2075. stories.getStoriesArchive#b4352016 peer:InputPeer offset_id:int limit:int = stories.Stories;
  2076. stories.getStoriesByID#5774ca74 peer:InputPeer id:Vector<int> = stories.Stories;
  2077. stories.toggleAllStoriesHidden#7c2557c4 hidden:Bool = Bool;
  2078. stories.readStories#a556dac8 peer:InputPeer max_id:int = Vector<int>;
  2079. stories.incrementStoryViews#b2028afb peer:InputPeer id:Vector<int> = Bool;
  2080. stories.getStoryViewsList#7ed23c57 flags:# just_contacts:flags.0?true reactions_first:flags.2?true forwards_first:flags.3?true peer:InputPeer q:flags.1?string id:int offset:string limit:int = stories.StoryViewsList;
  2081. stories.getStoriesViews#28e16cc8 peer:InputPeer id:Vector<int> = stories.StoryViews;
  2082. stories.exportStoryLink#7b8def20 peer:InputPeer id:int = ExportedStoryLink;
  2083. stories.report#19d8eb45 peer:InputPeer id:Vector<int> option:bytes message:string = ReportResult;
  2084. stories.activateStealthMode#57bbd166 flags:# past:flags.0?true future:flags.1?true = Updates;
  2085. stories.sendReaction#7fd736b2 flags:# add_to_recent:flags.0?true peer:InputPeer story_id:int reaction:Reaction = Updates;
  2086. stories.getPeerStories#2c4ada50 peer:InputPeer = stories.PeerStories;
  2087. stories.getAllReadPeerStories#9b5ae7f9 = Updates;
  2088. stories.getPeerMaxIDs#535983c3 id:Vector<InputPeer> = Vector<int>;
  2089. stories.getChatsToSend#a56a8b60 = messages.Chats;
  2090. stories.togglePeerStoriesHidden#bd0415c4 peer:InputPeer hidden:Bool = Bool;
  2091. stories.getStoryReactionsList#b9b2881f flags:# forwards_first:flags.2?true peer:InputPeer id:int reaction:flags.0?Reaction offset:flags.1?string limit:int = stories.StoryReactionsList;
  2092. stories.togglePinnedToTop#b297e9b peer:InputPeer id:Vector<int> = Bool;
  2093. stories.searchPosts#d1810907 flags:# hashtag:flags.0?string area:flags.1?MediaArea peer:flags.2?InputPeer offset:string limit:int = stories.FoundStories;
  2094. premium.getBoostsList#60f67660 flags:# gifts:flags.0?true peer:InputPeer offset:string limit:int = premium.BoostsList;
  2095. premium.getMyBoosts#be77b4a = premium.MyBoosts;
  2096. premium.applyBoost#6b7da746 flags:# slots:flags.0?Vector<int> peer:InputPeer = premium.MyBoosts;
  2097. premium.getBoostsStatus#42f1f61 peer:InputPeer = premium.BoostsStatus;
  2098. premium.getUserBoosts#39854d1f peer:InputPeer user_id:InputUser = premium.BoostsList;
  2099. smsjobs.isEligibleToJoin#edc39d0 = smsjobs.EligibilityToJoin;
  2100. smsjobs.join#a74ece2d = Bool;
  2101. smsjobs.leave#9898ad73 = Bool;
  2102. smsjobs.updateSettings#93fa0bf flags:# allow_international:flags.0?true = Bool;
  2103. smsjobs.getStatus#10a698e8 = smsjobs.Status;
  2104. smsjobs.getSmsJob#778d902f job_id:string = SmsJob;
  2105. smsjobs.finishJob#4f1ebf24 flags:# job_id:string error:flags.0?string = Bool;
  2106. fragment.getCollectibleInfo#be1e85ba collectible:InputCollectible = fragment.CollectibleInfo;
  2107. // LAYER 200