-
Notifications
You must be signed in to change notification settings - Fork 2
/
tlschema.h
3874 lines (3850 loc) · 278 KB
/
tlschema.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#ifndef TLSCHEMA_H
#define TLSCHEMA_H
//Generated code.
#include "tgstream.h"
#define API_LAYER 166
namespace TLType {
enum Types
{
Unknown = 0,
BoolFalse = -1132882121, //0xbc799737
BoolTrue = -1720552011, //0x997275b5
True = 1072550713, //0x3fedd339
Vector = 481674261, //0x1cb5c415
Error = -994444869, //0xc4b9f9bb
Null = 1450380236, //0x56730bcc
InputPeerEmpty = 2134579434, //0x7f3b18ea
InputPeerSelf = 2107670217, //0x7da07ec9
InputPeerChat = 900291769, //0x35a95cb9
InputPeerUser = -571955892, //0xdde8a54c
InputPeerChannel = 666680316, //0x27bcbbfc
InputPeerUserFromMessage = -1468331492, //0xa87b0a1c
InputPeerChannelFromMessage = -1121318848, //0xbd2a0840
InputUserEmpty = -1182234929, //0xb98886cf
InputUserSelf = -138301121, //0xf7c1b13f
InputUser = -233744186, //0xf21158c6
InputUserFromMessage = 497305826, //0x1da448e2
InputPhoneContact = -208488460, //0xf392b7f4
InputFile = -181407105, //0xf52ff27f
InputFileBig = -95482955, //0xfa4f0bb5
InputMediaEmpty = -1771768449, //0x9664f57f
InputMediaUploadedPhoto = 505969924, //0x1e287d04
InputMediaPhoto = -1279654347, //0xb3ba0635
InputMediaGeoPoint = -104578748, //0xf9c44144
InputMediaContact = -122978821, //0xf8ab7dfb
InputMediaUploadedDocument = 1530447553, //0x5b38c6c1
InputMediaDocument = 860303448, //0x33473058
InputMediaVenue = -1052959727, //0xc13d1c11
InputMediaPhotoExternal = -440664550, //0xe5bbfe1a
InputMediaDocumentExternal = -78455655, //0xfb52dc99
InputMediaGame = -750828557, //0xd33f43f3
InputMediaInvoice = -1900697899, //0x8eb5a6d5
InputMediaGeoLive = -1759532989, //0x971fa843
InputMediaPoll = 261416433, //0x0f94e5f1
InputMediaDice = -428884101, //0xe66fbf7b
InputMediaStory = -1979852936, //0x89fdd778
InputMediaWebPage = -1038383031, //0xc21b8849
InputChatPhotoEmpty = 480546647, //0x1ca48f57
InputChatUploadedPhoto = -1110593856, //0xbdcdaec0
InputChatPhoto = -1991004873, //0x8953ad37
InputGeoPointEmpty = -457104426, //0xe4c123d6
InputGeoPoint = 1210199983, //0x48222faf
InputPhotoEmpty = 483901197, //0x1cd7bf0d
InputPhoto = 1001634122, //0x3bb3b94a
InputFileLocation = -539317279, //0xdfdaabe1
InputEncryptedFileLocation = -182231723, //0xf5235d55
InputDocumentFileLocation = -1160743548, //0xbad07584
InputSecureFileLocation = -876089816, //0xcbc7ee28
InputTakeoutFileLocation = 700340377, //0x29be5899
InputPhotoFileLocation = 1075322878, //0x40181ffe
InputPhotoLegacyFileLocation = -667654413, //0xd83466f3
InputPeerPhotoFileLocation = 925204121, //0x37257e99
InputStickerSetThumb = -1652231205, //0x9d84f3db
InputGroupCallStream = 93890858, //0x0598a92a
PeerUser = 1498486562, //0x59511722
PeerChat = 918946202, //0x36c6019a
PeerChannel = -1566230754, //0xa2a5371e
StorageFileUnknown = -1432995067, //0xaa963b05
StorageFilePartial = 1086091090, //0x40bc6f52
StorageFileJpeg = 8322574, //0x007efe0e
StorageFileGif = -891180321, //0xcae1aadf
StorageFilePng = 172975040, //0x0a4f63c0
StorageFilePdf = -1373745011, //0xae1e508d
StorageFileMp3 = 1384777335, //0x528a0677
StorageFileMov = 1258941372, //0x4b09ebbc
StorageFileMp4 = -1278304028, //0xb3cea0e4
StorageFileWebp = 276907596, //0x1081464c
UserEmpty = -742634630, //0xd3bc4b7a
User = -346018011, //0xeb602f25
UserProfilePhotoEmpty = 1326562017, //0x4f11bae1
UserProfilePhoto = -2100168954, //0x82d1f706
UserStatusEmpty = 164646985, //0x09d05049
UserStatusOnline = -306628279, //0xedb93949
UserStatusOffline = 9203775, //0x008c703f
UserStatusRecently = -496024847, //0xe26f42f1
UserStatusLastWeek = 129960444, //0x07bf09fc
UserStatusLastMonth = 2011940674, //0x77ebc742
ChatEmpty = 693512293, //0x29562865
Chat = 1103884886, //0x41cbf256
ChatForbidden = 1704108455, //0x6592a1a7
Channel = 427944574, //0x1981ea7e
ChannelForbidden = 399807445, //0x17d493d5
ChatFull = -908914376, //0xc9d31138
ChannelFull = 1915758525, //0x723027bd
ChatParticipant = -1070776313, //0xc02d4007
ChatParticipantCreator = -462696732, //0xe46bcee4
ChatParticipantAdmin = -1600962725, //0xa0933f5b
ChatParticipantsForbidden = -2023500831, //0x8763d3e1
ChatParticipants = 1018991608, //0x3cbc93f8
ChatPhotoEmpty = 935395612, //0x37c1011c
ChatPhoto = 476978193, //0x1c6e1c11
MessageEmpty = -1868117372, //0x90a6ca84
Message = 940666592, //0x38116ee0
MessageService = 721967202, //0x2b085862
MessageMediaEmpty = 1038967584, //0x3ded6320
MessageMediaPhoto = 1766936791, //0x695150d7
MessageMediaGeo = 1457575028, //0x56e0d474
MessageMediaContact = 1882335561, //0x70322949
MessageMediaUnsupported = -1618676578, //0x9f84f49e
MessageMediaDocument = 1291114285, //0x4cf4d72d
MessageMediaWebPage = -571405253, //0xddf10c3b
MessageMediaVenue = 784356159, //0x2ec0533f
MessageMediaGame = -38694904, //0xfdb19008
MessageMediaInvoice = -156940077, //0xf6a548d3
MessageMediaGeoLive = -1186937242, //0xb940c666
MessageMediaPoll = 1272375192, //0x4bd6e798
MessageMediaDice = 1065280907, //0x3f7ee58b
MessageMediaStory = 1758159491, //0x68cb6283
MessageMediaGiveaway = 1478887012, //0x58260664
MessageActionEmpty = -1230047312, //0xb6aef7b0
MessageActionChatCreate = -1119368275, //0xbd47cbad
MessageActionChatEditTitle = -1247687078, //0xb5a1ce5a
MessageActionChatEditPhoto = 2144015272, //0x7fcb13a8
MessageActionChatDeletePhoto = -1780220945, //0x95e3fbef
MessageActionChatAddUser = 365886720, //0x15cefd00
MessageActionChatDeleteUser = -1539362612, //0xa43f30cc
MessageActionChatJoinedByLink = 51520707, //0x031224c3
MessageActionChannelCreate = -1781355374, //0x95d2ac92
MessageActionChatMigrateTo = -519864430, //0xe1037f92
MessageActionChannelMigrateFrom = -365344535, //0xea3948e9
MessageActionPinMessage = -1799538451, //0x94bd38ed
MessageActionHistoryClear = -1615153660, //0x9fbab604
MessageActionGameScore = -1834538890, //0x92a72876
MessageActionPaymentSentMe = -1892568281, //0x8f31b327
MessageActionPaymentSent = -1776926890, //0x96163f56
MessageActionPhoneCall = -2132731265, //0x80e11a7f
MessageActionScreenshotTaken = 1200788123, //0x4792929b
MessageActionCustomAction = -85549226, //0xfae69f56
MessageActionBotAllowed = -988359047, //0xc516d679
MessageActionSecureValuesSentMe = 455635795, //0x1b287353
MessageActionSecureValuesSent = -648257196, //0xd95c6154
MessageActionContactSignUp = -202219658, //0xf3f25f76
MessageActionGeoProximityReached = -1730095465, //0x98e0d697
MessageActionGroupCall = 2047704898, //0x7a0d7f42
MessageActionInviteToGroupCall = 1345295095, //0x502f92f7
MessageActionSetMessagesTTL = 1007897979, //0x3c134d7b
MessageActionGroupCallScheduled = -1281329567, //0xb3a07661
MessageActionSetChatTheme = -1434950843, //0xaa786345
MessageActionChatJoinedByRequest = -339958837, //0xebbca3cb
MessageActionWebViewDataSentMe = 1205698681, //0x47dd8079
MessageActionWebViewDataSent = -1262252875, //0xb4c38cb5
MessageActionGiftPremium = -935499028, //0xc83d6aec
MessageActionTopicCreate = 228168278, //0x0d999256
MessageActionTopicEdit = -1064024032, //0xc0944820
MessageActionSuggestProfilePhoto = 1474192222, //0x57de635e
MessageActionRequestedPeer = -25742243, //0xfe77345d
MessageActionSetChatWallPaper = -1136350937, //0xbc44a927
MessageActionSetSameChatWallPaper = -1065845395, //0xc0787d6d
MessageActionGiftCode = -758129906, //0xd2cfdb0e
MessageActionGiveawayLaunch = 858499565, //0x332ba9ed
Dialog = -712374074, //0xd58a08c6
DialogFolder = 1908216652, //0x71bd134c
PhotoEmpty = 590459437, //0x2331b22d
Photo = -82216347, //0xfb197a65
PhotoSizeEmpty = 236446268, //0x0e17e23c
PhotoSize = 1976012384, //0x75c78e60
PhotoCachedSize = 35527382, //0x021e1ad6
PhotoStrippedSize = -525288402, //0xe0b0bc2e
PhotoSizeProgressive = -96535659, //0xfa3efb95
PhotoPathSize = -668906175, //0xd8214d41
GeoPointEmpty = 286776671, //0x1117dd5f
GeoPoint = -1297942941, //0xb2a2f663
AuthSentCode = 1577067778, //0x5e002502
AuthSentCodeSuccess = 596704836, //0x2390fe44
AuthAuthorization = 782418132, //0x2ea2c0d4
AuthAuthorizationSignUpRequired = 1148485274, //0x44747e9a
AuthExportedAuthorization = -1271602504, //0xb434e2b8
InputNotifyPeer = -1195615476, //0xb8bc5b0c
InputNotifyUsers = 423314455, //0x193b4417
InputNotifyChats = 1251338318, //0x4a95e84e
InputNotifyBroadcasts = -1311015810, //0xb1db7c7e
InputNotifyForumTopic = 1548122514, //0x5c467992
InputPeerNotifySettings = -892638494, //0xcacb6ae2
PeerNotifySettings = -1721619444, //0x99622c0c
PeerSettings = -1525149427, //0xa518110d
WallPaper = -1539849235, //0xa437c3ed
WallPaperNoFile = -528465642, //0xe0804116
InputReportReasonSpam = 1490799288, //0x58dbcab8
InputReportReasonViolence = 505595789, //0x1e22c78d
InputReportReasonPornography = 777640226, //0x2e59d922
InputReportReasonChildAbuse = -1376497949, //0xadf44ee3
InputReportReasonOther = -1041980751, //0xc1e4a2b1
InputReportReasonCopyright = -1685456582, //0x9b89f93a
InputReportReasonGeoIrrelevant = -606798099, //0xdbd4feed
InputReportReasonFake = -170010905, //0xf5ddd6e7
InputReportReasonIllegalDrugs = 177124030, //0x0a8eb2be
InputReportReasonPersonalDetails = -1631091139, //0x9ec7863d
UserFull = -1179571092, //0xb9b12c6c
Contact = 341499403, //0x145ade0b
ImportedContact = -1052885936, //0xc13e3c50
ContactStatus = 383348795, //0x16d9703b
ContactsContactsNotModified = -1219778094, //0xb74ba9d2
ContactsContacts = -353862078, //0xeae87e42
ContactsImportedContacts = 2010127419, //0x77d01c3b
ContactsBlocked = 182326673, //0x0ade1591
ContactsBlockedSlice = -513392236, //0xe1664194
MessagesDialogs = 364538944, //0x15ba6c40
MessagesDialogsSlice = 1910543603, //0x71e094f3
MessagesDialogsNotModified = -253500010, //0xf0e3e596
MessagesMessages = -1938715001, //0x8c718e87
MessagesMessagesSlice = 978610270, //0x3a54685e
MessagesChannelMessages = -948520370, //0xc776ba4e
MessagesMessagesNotModified = 1951620897, //0x74535f21
MessagesChats = 1694474197, //0x64ff9fd5
MessagesChatsSlice = -1663561404, //0x9cd81144
MessagesChatFull = -438840932, //0xe5d7d19c
MessagesAffectedHistory = -1269012015, //0xb45c69d1
InputMessagesFilterEmpty = 1474492012, //0x57e2f66c
InputMessagesFilterPhotos = -1777752804, //0x9609a51c
InputMessagesFilterVideo = -1614803355, //0x9fc00e65
InputMessagesFilterPhotoVideo = 1458172132, //0x56e9f0e4
InputMessagesFilterDocument = -1629621880, //0x9eddf188
InputMessagesFilterUrl = 2129714567, //0x7ef0dd87
InputMessagesFilterGif = -3644025, //0xffc86587
InputMessagesFilterVoice = 1358283666, //0x50f5c392
InputMessagesFilterMusic = 928101534, //0x3751b49e
InputMessagesFilterChatPhotos = 975236280, //0x3a20ecb8
InputMessagesFilterPhoneCalls = -2134272152, //0x80c99768
InputMessagesFilterRoundVoice = 2054952868, //0x7a7c17a4
InputMessagesFilterRoundVideo = -1253451181, //0xb549da53
InputMessagesFilterMyMentions = -1040652646, //0xc1f8e69a
InputMessagesFilterGeo = -419271411, //0xe7026d0d
InputMessagesFilterContacts = -530392189, //0xe062db83
InputMessagesFilterPinned = 464520273, //0x1bb00451
UpdateNewMessage = 522914557, //0x1f2b0afd
UpdateMessageID = 1318109142, //0x4e90bfd6
UpdateDeleteMessages = -1576161051, //0xa20db0e5
UpdateUserTyping = -1071741569, //0xc01e857f
UpdateChatUserTyping = -2092401936, //0x83487af0
UpdateChatParticipants = 125178264, //0x07761198
UpdateUserStatus = -440534818, //0xe5bdf8de
UpdateUserName = -1484486364, //0xa7848924
UpdateNewAuthorization = -1991136273, //0x8951abef
UpdateNewEncryptedMessage = 314359194, //0x12bcbd9a
UpdateEncryptedChatTyping = 386986326, //0x1710f156
UpdateEncryption = -1264392051, //0xb4a2e88d
UpdateEncryptedMessagesRead = 956179895, //0x38fe25b7
UpdateChatParticipantAdd = 1037718609, //0x3dda5451
UpdateChatParticipantDelete = -483443337, //0xe32f3d77
UpdateDcOptions = -1906403213, //0x8e5e9873
UpdateNotifySettings = -1094555409, //0xbec268ef
UpdateServiceNotification = -337352679, //0xebe46819
UpdatePrivacy = -298113238, //0xee3b272a
UpdateUserPhone = 88680979, //0x05492a13
UpdateReadHistoryInbox = -1667805217, //0x9c974fdf
UpdateReadHistoryOutbox = 791617983, //0x2f2f21bf
UpdateWebPage = 2139689491, //0x7f891213
UpdateReadMessagesContents = -131960447, //0xf8227181
UpdateChannelTooLong = 277713951, //0x108d941f
UpdateChannel = 1666927625, //0x635b4c09
UpdateNewChannelMessage = 1656358105, //0x62ba04d9
UpdateReadChannelInbox = -1842450928, //0x922e6e10
UpdateDeleteChannelMessages = -1020437742, //0xc32d5b12
UpdateChannelMessageViews = -232346616, //0xf226ac08
UpdateChatParticipantAdmin = -674602590, //0xd7ca61a2
UpdateNewStickerSet = 1753886890, //0x688a30aa
UpdateStickerSetsOrder = 196268545, //0x0bb2d201
UpdateStickerSets = 834816008, //0x31c24808
UpdateSavedGifs = -1821035490, //0x9375341e
UpdateBotInlineQuery = 1232025500, //0x496f379c
UpdateBotInlineSend = 317794823, //0x12f12a07
UpdateEditChannelMessage = 457133559, //0x1b3f4df7
UpdateBotCallbackQuery = -1177566067, //0xb9cfc48d
UpdateEditMessage = -469536605, //0xe40370a3
UpdateInlineBotCallbackQuery = 1763610706, //0x691e9052
UpdateReadChannelOutbox = -1218471511, //0xb75f99a9
UpdateDraftMessage = 457829485, //0x1b49ec6d
UpdateReadFeaturedStickers = 1461528386, //0x571d2742
UpdateRecentStickers = -1706939360, //0x9a422c20
UpdateConfig = -1574314746, //0xa229dd06
UpdatePtsChanged = 861169551, //0x3354678f
UpdateChannelWebPage = 791390623, //0x2f2ba99f
UpdateDialogPinned = 1852826908, //0x6e6fe51c
UpdatePinnedDialogs = -99664734, //0xfa0f3ca2
UpdateBotWebhookJSON = -2095595325, //0x8317c0c3
UpdateBotWebhookJSONQuery = -1684914010, //0x9b9240a6
UpdateBotShippingQuery = -1246823043, //0xb5aefd7d
UpdateBotPrecheckoutQuery = -1934976362, //0x8caa9a96
UpdatePhoneCall = -1425052898, //0xab0f6b1e
UpdateLangPackTooLong = 1180041828, //0x46560264
UpdateLangPack = 1442983757, //0x56022f4d
UpdateFavedStickers = -451831443, //0xe511996d
UpdateChannelReadMessagesContents = -366410403, //0xea29055d
UpdateContactsReset = 1887741886, //0x7084a7be
UpdateChannelAvailableMessages = -1304443240, //0xb23fc698
UpdateDialogUnreadMark = -513517117, //0xe16459c3
UpdateMessagePoll = -1398708869, //0xaca1657b
UpdateChatDefaultBannedRights = 1421875280, //0x54c01850
UpdateFolderPeers = 422972864, //0x19360dc0
UpdatePeerSettings = 1786671974, //0x6a7e7366
UpdatePeerLocated = -1263546448, //0xb4afcfb0
UpdateNewScheduledMessage = 967122427, //0x39a51dfb
UpdateDeleteScheduledMessages = -1870238482, //0x90866cee
UpdateTheme = -2112423005, //0x8216fba3
UpdateGeoLiveViewed = -2027964103, //0x871fb939
UpdateLoginToken = 1448076945, //0x564fe691
UpdateMessagePollVote = 619974263, //0x24f40e77
UpdateDialogFilter = 654302845, //0x26ffde7d
UpdateDialogFilterOrder = -1512627963, //0xa5d72105
UpdateDialogFilters = 889491791, //0x3504914f
UpdatePhoneCallSignalingData = 643940105, //0x2661bf09
UpdateChannelMessageForwards = -761649164, //0xd29a27f4
UpdateReadChannelDiscussionInbox = -693004986, //0xd6b19546
UpdateReadChannelDiscussionOutbox = 1767677564, //0x695c9e7c
UpdatePeerBlocked = -337610926, //0xebe07752
UpdateChannelUserTyping = -1937192669, //0x8c88c923
UpdatePinnedMessages = -309990731, //0xed85eab5
UpdatePinnedChannelMessages = 1538885128, //0x5bb98608
UpdateChat = -124097970, //0xf89a6a4e
UpdateGroupCallParticipants = -219423922, //0xf2ebdb4e
UpdateGroupCall = 347227392, //0x14b24500
UpdatePeerHistoryTTL = -1147422299, //0xbb9bb9a5
UpdateChatParticipant = -796432838, //0xd087663a
UpdateChannelParticipant = -1738720581, //0x985d3abb
UpdateBotStopped = -997782967, //0xc4870a49
UpdateGroupCallConnection = 192428418, //0x0b783982
UpdateBotCommands = 1299263278, //0x4d712f2e
UpdatePendingJoinRequests = 1885586395, //0x7063c3db
UpdateBotChatInviteRequester = 299870598, //0x11dfa986
UpdateMessageReactions = 1578843320, //0x5e1b3cb8
UpdateAttachMenuBots = 397910539, //0x17b7a20b
UpdateWebViewResultSent = 361936797, //0x1592b79d
UpdateBotMenuButton = 347625491, //0x14b85813
UpdateSavedRingtones = 1960361625, //0x74d8be99
UpdateTranscribedAudio = 8703322, //0x0084cd5a
UpdateReadFeaturedEmojiStickers = -78886548, //0xfb4c496c
UpdateUserEmojiStatus = 674706841, //0x28373599
UpdateRecentEmojiStatuses = 821314523, //0x30f443db
UpdateRecentReactions = 1870160884, //0x6f7863f4
UpdateMoveStickerSetToTop = -2030252155, //0x86fccf85
UpdateMessageExtendedMedia = 1517529484, //0x5a73a98c
UpdateChannelPinnedTopic = 422509539, //0x192efbe3
UpdateChannelPinnedTopics = -31881726, //0xfe198602
UpdateUser = 542282808, //0x20529438
UpdateAutoSaveSettings = -335171433, //0xec05b097
UpdateGroupInvitePrivacyForbidden = -856651050, //0xccf08ad6
UpdateStory = 1974712216, //0x75b3b798
UpdateReadStories = -145845461, //0xf74e932b
UpdateStoryID = 468923833, //0x1bf335b9
UpdateStoriesStealthMode = 738741697, //0x2c084dc1
UpdateSentStoryReaction = 2103604867, //0x7d627683
UpdatesState = -1519637954, //0xa56c2a3e
UpdatesDifferenceEmpty = 1567990072, //0x5d75a138
UpdatesDifference = 16030880, //0x00f49ca0
UpdatesDifferenceSlice = -1459938943, //0xa8fb1981
UpdatesDifferenceTooLong = 1258196845, //0x4afe8f6d
UpdatesTooLong = -484987010, //0xe317af7e
UpdateShortMessage = 826001400, //0x313bc7f8
UpdateShortChatMessage = 1299050149, //0x4d6deea5
UpdateShort = 2027216577, //0x78d4dec1
UpdatesCombined = 1918567619, //0x725b04c3
Updates = 1957577280, //0x74ae4240
UpdateShortSentMessage = -1877614335, //0x9015e101
PhotosPhotos = -1916114267, //0x8dca6aa5
PhotosPhotosSlice = 352657236, //0x15051f54
PhotosPhoto = 539045032, //0x20212ca8
UploadFile = 157948117, //0x096a18d5
UploadFileCdnRedirect = -242427324, //0xf18cda44
DcOption = 414687501, //0x18b7a10d
Config = -870702050, //0xcc1a241e
NearestDc = -1910892683, //0x8e1a1775
HelpAppUpdate = -860107216, //0xccbbce30
HelpNoAppUpdate = -1000708810, //0xc45a6536
HelpInviteText = 415997816, //0x18cb9f78
EncryptedChatEmpty = -1417756512, //0xab7ec0a0
EncryptedChatWaiting = 1722964307, //0x66b25953
EncryptedChatRequested = 1223809356, //0x48f1d94c
EncryptedChat = 1643173063, //0x61f0d4c7
EncryptedChatDiscarded = 505183301, //0x1e1c7c45
InputEncryptedChat = -247351839, //0xf141b5e1
EncryptedFileEmpty = -1038136962, //0xc21f497e
EncryptedFile = -1476358952, //0xa8008cd8
InputEncryptedFileEmpty = 406307684, //0x1837c364
InputEncryptedFileUploaded = 1690108678, //0x64bd0306
InputEncryptedFile = 1511503333, //0x5a17b5e5
InputEncryptedFileBigUploaded = 767652808, //0x2dc173c8
EncryptedMessage = -317144808, //0xed18c118
EncryptedMessageService = 594758406, //0x23734b06
MessagesDhConfigNotModified = -1058912715, //0xc0e24635
MessagesDhConfig = 740433629, //0x2c221edd
MessagesSentEncryptedMessage = 1443858741, //0x560f8935
MessagesSentEncryptedFile = -1802240206, //0x9493ff32
InputDocumentEmpty = 1928391342, //0x72f0eaae
InputDocument = 448771445, //0x1abfb575
DocumentEmpty = 922273905, //0x36f8c871
Document = -1881881384, //0x8fd4c4d8
HelpSupport = 398898678, //0x17c6b5f6
NotifyPeer = -1613493288, //0x9fd40bd8
NotifyUsers = -1261946036, //0xb4c83b4c
NotifyChats = -1073230141, //0xc007cec3
NotifyBroadcasts = -703403793, //0xd612e8ef
NotifyForumTopic = 577659656, //0x226e6308
SendMessageTypingAction = 381645902, //0x16bf744e
SendMessageCancelAction = -44119819, //0xfd5ec8f5
SendMessageRecordVideoAction = -1584933265, //0xa187d66f
SendMessageUploadVideoAction = -378127636, //0xe9763aec
SendMessageRecordAudioAction = -718310409, //0xd52f73f7
SendMessageUploadAudioAction = -212740181, //0xf351d7ab
SendMessageUploadPhotoAction = -774682074, //0xd1d34a26
SendMessageUploadDocumentAction = -1441998364, //0xaa0cd9e4
SendMessageGeoLocationAction = 393186209, //0x176f8ba1
SendMessageChooseContactAction = 1653390447, //0x628cbc6f
SendMessageGamePlayAction = -580219064, //0xdd6a8f48
SendMessageRecordRoundAction = -1997373508, //0x88f27fbc
SendMessageUploadRoundAction = 608050278, //0x243e1c66
SpeakingInGroupCallAction = -651419003, //0xd92c2285
SendMessageHistoryImportAction = -606432698, //0xdbda9246
SendMessageChooseStickerAction = -1336228175, //0xb05ac6b1
SendMessageEmojiInteraction = 630664139, //0x25972bcb
SendMessageEmojiInteractionSeen = -1234857938, //0xb665902e
ContactsFound = -1290580579, //0xb3134d9d
InputPrivacyKeyStatusTimestamp = 1335282456, //0x4f96cb18
InputPrivacyKeyChatInvite = -1107622874, //0xbdfb0426
InputPrivacyKeyPhoneCall = -88417185, //0xfabadc5f
InputPrivacyKeyPhoneP2P = -610373422, //0xdb9e70d2
InputPrivacyKeyForwards = -1529000952, //0xa4dd4c08
InputPrivacyKeyProfilePhoto = 1461304012, //0x5719bacc
InputPrivacyKeyPhoneNumber = 55761658, //0x0352dafa
InputPrivacyKeyAddedByPhone = -786326563, //0xd1219bdd
InputPrivacyKeyVoiceMessages = -1360618136, //0xaee69d68
InputPrivacyKeyAbout = 941870144, //0x3823cc40
PrivacyKeyStatusTimestamp = -1137792208, //0xbc2eab30
PrivacyKeyChatInvite = 1343122938, //0x500e6dfa
PrivacyKeyPhoneCall = 1030105979, //0x3d662b7b
PrivacyKeyPhoneP2P = 961092808, //0x39491cc8
PrivacyKeyForwards = 1777096355, //0x69ec56a3
PrivacyKeyProfilePhoto = -1777000467, //0x96151fed
PrivacyKeyPhoneNumber = -778378131, //0xd19ae46d
PrivacyKeyAddedByPhone = 1124062251, //0x42ffd42b
PrivacyKeyVoiceMessages = 110621716, //0x0697f414
PrivacyKeyAbout = -1534675103, //0xa486b761
InputPrivacyValueAllowContacts = 218751099, //0x0d09e07b
InputPrivacyValueAllowAll = 407582158, //0x184b35ce
InputPrivacyValueAllowUsers = 320652927, //0x131cc67f
InputPrivacyValueDisallowContacts = 195371015, //0x0ba52007
InputPrivacyValueDisallowAll = -697604407, //0xd66b66c9
InputPrivacyValueDisallowUsers = -1877932953, //0x90110467
InputPrivacyValueAllowChatParticipants = -2079962673, //0x840649cf
InputPrivacyValueDisallowChatParticipants = -380694650, //0xe94f0f86
InputPrivacyValueAllowCloseFriends = 793067081, //0x2f453e49
PrivacyValueAllowContacts = -123988, //0xfffe1bac
PrivacyValueAllowAll = 1698855810, //0x65427b82
PrivacyValueAllowUsers = -1198497870, //0xb8905fb2
PrivacyValueDisallowContacts = -125240806, //0xf888fa1a
PrivacyValueDisallowAll = -1955338397, //0x8b73e763
PrivacyValueDisallowUsers = -463335103, //0xe4621141
PrivacyValueAllowChatParticipants = 1796427406, //0x6b134e8e
PrivacyValueDisallowChatParticipants = 1103656293, //0x41c87565
PrivacyValueAllowCloseFriends = -135735141, //0xf7e8d89b
AccountPrivacyRules = 1352683077, //0x50a04e45
AccountDaysTTL = -1194283041, //0xb8d0afdf
DocumentAttributeImageSize = 1815593308, //0x6c37c15c
DocumentAttributeAnimated = 297109817, //0x11b58939
DocumentAttributeSticker = 1662637586, //0x6319d612
DocumentAttributeVideo = -745541182, //0xd38ff1c2
DocumentAttributeAudio = -1739392570, //0x9852f9c6
DocumentAttributeFilename = 358154344, //0x15590068
DocumentAttributeHasStickers = -1744710921, //0x9801d2f7
DocumentAttributeCustomEmoji = -48981863, //0xfd149899
MessagesStickersNotModified = -244016606, //0xf1749a22
MessagesStickers = 816245886, //0x30a6ec7e
StickerPack = 313694676, //0x12b299d4
MessagesAllStickersNotModified = -395967805, //0xe86602c3
MessagesAllStickers = -843329861, //0xcdbbcebb
MessagesAffectedMessages = -2066640507, //0x84d19185
WebPageEmpty = 555358088, //0x211a1788
WebPagePending = -1328464313, //0xb0d13e47
WebPage = -392411726, //0xe89c45b2
WebPageNotModified = 1930545681, //0x7311ca11
Authorization = -1392388579, //0xad01d61d
AccountAuthorizations = 1275039392, //0x4bff8ea0
AccountPassword = -1787080453, //0x957b50fb
AccountPasswordSettings = -1705233435, //0x9a5c33e5
AccountPasswordInputSettings = -1036572727, //0xc23727c9
AuthPasswordRecovery = 326715557, //0x137948a5
ReceivedNotifyMessage = -1551583367, //0xa384b779
ChatInviteExported = 179611673, //0x0ab4a819
ChatInvitePublicJoinRequests = -317687113, //0xed107ab7
ChatInviteAlready = 1516793212, //0x5a686d7c
ChatInvite = -840897472, //0xcde0ec40
ChatInvitePeek = 1634294960, //0x61695cb0
InputStickerSetEmpty = -4838507, //0xffb62b95
InputStickerSetID = -1645763991, //0x9de7a269
InputStickerSetShortName = -2044933984, //0x861cc8a0
InputStickerSetAnimatedEmoji = 42402760, //0x028703c8
InputStickerSetDice = -427863538, //0xe67f520e
InputStickerSetAnimatedEmojiAnimations = 215889721, //0x0cde3739
InputStickerSetPremiumGifts = -930399486, //0xc88b3b02
InputStickerSetEmojiGenericAnimations = 80008398, //0x04c4d4ce
InputStickerSetEmojiDefaultStatuses = 701560302, //0x29d0f5ee
InputStickerSetEmojiDefaultTopicIcons = 1153562857, //0x44c1f8e9
StickerSet = 768691932, //0x2dd14edc
MessagesStickerSet = 1846886166, //0x6e153f16
MessagesStickerSetNotModified = -738646805, //0xd3f924eb
BotCommand = -1032140601, //0xc27ac8c7
BotInfo = -1892676777, //0x8f300b57
KeyboardButton = -1560655744, //0xa2fa4880
KeyboardButtonUrl = 629866245, //0x258aff05
KeyboardButtonCallback = 901503851, //0x35bbdb6b
KeyboardButtonRequestPhone = -1318425559, //0xb16a6c29
KeyboardButtonRequestGeoLocation = -59151553, //0xfc796b3f
KeyboardButtonSwitchInline = -1816527947, //0x93b9fbb5
KeyboardButtonGame = 1358175439, //0x50f41ccf
KeyboardButtonBuy = -1344716869, //0xafd93fbb
KeyboardButtonUrlAuth = 280464681, //0x10b78d29
InputKeyboardButtonUrlAuth = -802258988, //0xd02e7fd4
KeyboardButtonRequestPoll = -1144565411, //0xbbc7515d
InputKeyboardButtonUserProfile = -376962181, //0xe988037b
KeyboardButtonUserProfile = 814112961, //0x308660c1
KeyboardButtonWebView = 326529584, //0x13767230
KeyboardButtonSimpleWebView = -1598009252, //0xa0c0505c
KeyboardButtonRequestPeer = 218842764, //0x0d0b468c
KeyboardButtonRow = 2002815875, //0x77608b83
ReplyKeyboardHide = -1606526075, //0xa03e5b85
ReplyKeyboardForceReply = -2035021048, //0x86b40b08
ReplyKeyboardMarkup = -2049074735, //0x85dd99d1
ReplyInlineMarkup = 1218642516, //0x48a30254
MessageEntityUnknown = -1148011883, //0xbb92ba95
MessageEntityMention = -100378723, //0xfa04579d
MessageEntityHashtag = 1868782349, //0x6f635b0d
MessageEntityBotCommand = 1827637959, //0x6cef8ac7
MessageEntityUrl = 1859134776, //0x6ed02538
MessageEntityEmail = 1692693954, //0x64e475c2
MessageEntityBold = -1117713463, //0xbd610bc9
MessageEntityItalic = -2106619040, //0x826f8b60
MessageEntityCode = 681706865, //0x28a20571
MessageEntityPre = 1938967520, //0x73924be0
MessageEntityTextUrl = 1990644519, //0x76a6d327
MessageEntityMentionName = -595914432, //0xdc7b1140
InputMessageEntityMentionName = 546203849, //0x208e68c9
MessageEntityPhone = -1687559349, //0x9b69e34b
MessageEntityCashtag = 1280209983, //0x4c4e743f
MessageEntityUnderline = -1672577397, //0x9c4e7e8b
MessageEntityStrike = -1090087980, //0xbf0693d4
MessageEntityBankCard = 1981704948, //0x761e6af4
MessageEntitySpoiler = 852137487, //0x32ca960f
MessageEntityCustomEmoji = -925956616, //0xc8cf05f8
MessageEntityBlockquote = 34469328, //0x020df5d0
InputChannelEmpty = -292807034, //0xee8c1e86
InputChannel = -212145112, //0xf35aec28
InputChannelFromMessage = 1536380829, //0x5b934f9d
ContactsResolvedPeer = 2131196633, //0x7f077ad9
MessageRange = 182649427, //0x0ae30253
UpdatesChannelDifferenceEmpty = 1041346555, //0x3e11affb
UpdatesChannelDifferenceTooLong = -1531132162, //0xa4bcc6fe
UpdatesChannelDifference = 543450958, //0x2064674e
ChannelMessagesFilterEmpty = -1798033689, //0x94d42ee7
ChannelMessagesFilter = -847783593, //0xcd77d957
ChannelParticipant = -1072953408, //0xc00c07c0
ChannelParticipantSelf = 900251559, //0x35a8bfa7
ChannelParticipantCreator = 803602899, //0x2fe601d3
ChannelParticipantAdmin = 885242707, //0x34c3bb53
ChannelParticipantBanned = 1844969806, //0x6df8014e
ChannelParticipantLeft = 453242886, //0x1b03f006
ChannelParticipantsRecent = -566281095, //0xde3f3c79
ChannelParticipantsAdmins = -1268741783, //0xb4608969
ChannelParticipantsKicked = -1548400251, //0xa3b54985
ChannelParticipantsBots = -1328445861, //0xb0d1865b
ChannelParticipantsBanned = 338142689, //0x1427a5e1
ChannelParticipantsSearch = 106343499, //0x0656ac4b
ChannelParticipantsContacts = -1150621555, //0xbb6ae88d
ChannelParticipantsMentions = -531931925, //0xe04b5ceb
ChannelsChannelParticipants = -1699676497, //0x9ab0feaf
ChannelsChannelParticipantsNotModified = -266911767, //0xf0173fe9
ChannelsChannelParticipant = -541588713, //0xdfb80317
HelpTermsOfService = 2013922064, //0x780a0310
MessagesSavedGifsNotModified = -402498398, //0xe8025ca2
MessagesSavedGifs = -2069878259, //0x84a02a0d
InputBotInlineMessageMediaAuto = 864077702, //0x3380c786
InputBotInlineMessageText = 1036876423, //0x3dcd7a87
InputBotInlineMessageMediaGeo = -1768777083, //0x96929a85
InputBotInlineMessageMediaVenue = 1098628881, //0x417bbf11
InputBotInlineMessageMediaContact = -1494368259, //0xa6edbffd
InputBotInlineMessageGame = 1262639204, //0x4b425864
InputBotInlineMessageMediaInvoice = -672693723, //0xd7e78225
InputBotInlineMessageMediaWebPage = -1109605104, //0xbddcc510
InputBotInlineResult = -2000710887, //0x88bf9319
InputBotInlineResultPhoto = -1462213465, //0xa8d864a7
InputBotInlineResultDocument = -459324, //0xfff8fdc4
InputBotInlineResultGame = 1336154098, //0x4fa417f2
BotInlineMessageMediaAuto = 1984755728, //0x764cf810
BotInlineMessageText = -1937807902, //0x8c7f65e2
BotInlineMessageMediaGeo = 85477117, //0x051846fd
BotInlineMessageMediaVenue = -1970903652, //0x8a86659c
BotInlineMessageMediaContact = 416402882, //0x18d1cdc2
BotInlineMessageMediaInvoice = 894081801, //0x354a9b09
BotInlineMessageMediaWebPage = -2137335386, //0x809ad9a6
BotInlineResult = 295067450, //0x11965f3a
BotInlineMediaResult = 400266251, //0x17db940b
MessagesBotResults = -534646026, //0xe021f2f6
ExportedMessageLink = 1571494644, //0x5dab1af4
MessageFwdHeader = 1601666510, //0x5f777dce
AuthCodeTypeSms = 1923290508, //0x72a3158c
AuthCodeTypeCall = 1948046307, //0x741cd3e3
AuthCodeTypeFlashCall = 577556219, //0x226ccefb
AuthCodeTypeMissedCall = -702884114, //0xd61ad6ee
AuthCodeTypeFragmentSms = 116234636, //0x06ed998c
AuthSentCodeTypeApp = 1035688326, //0x3dbb5986
AuthSentCodeTypeSms = -1073693790, //0xc000bba2
AuthSentCodeTypeCall = 1398007207, //0x5353e5a7
AuthSentCodeTypeFlashCall = -1425815847, //0xab03c6d9
AuthSentCodeTypeMissedCall = -2113903484, //0x82006484
AuthSentCodeTypeEmailCode = -196020837, //0xf450f59b
AuthSentCodeTypeSetUpEmailRequired = -1521934870, //0xa5491dea
AuthSentCodeTypeFragmentSms = -648651719, //0xd9565c39
AuthSentCodeTypeFirebaseSms = -444918734, //0xe57b1432
MessagesBotCallbackAnswer = 911761060, //0x36585ea4
MessagesMessageEditData = 649453030, //0x26b5dde6
InputBotInlineMessageID = -1995686519, //0x890c3d89
InputBotInlineMessageID64 = -1227287081, //0xb6d915d7
InlineBotSwitchPM = 1008755359, //0x3c20629f
MessagesPeerDialogs = 863093588, //0x3371c354
TopPeer = -305282981, //0xedcdc05b
TopPeerCategoryBotsPM = -1419371685, //0xab661b5b
TopPeerCategoryBotsInline = 344356834, //0x148677e2
TopPeerCategoryCorrespondents = 104314861, //0x0637b7ed
TopPeerCategoryGroups = -1122524854, //0xbd17a14a
TopPeerCategoryChannels = 371037736, //0x161d9628
TopPeerCategoryPhoneCalls = 511092620, //0x1e76a78c
TopPeerCategoryForwardUsers = -1472172887, //0xa8406ca9
TopPeerCategoryForwardChats = -68239120, //0xfbeec0f0
TopPeerCategoryPeers = -75283823, //0xfb834291
ContactsTopPeersNotModified = -567906571, //0xde266ef5
ContactsTopPeers = 1891070632, //0x70b772a8
ContactsTopPeersDisabled = -1255369827, //0xb52c939d
DraftMessageEmpty = 453805082, //0x1b0c841a
DraftMessage = 1070397423, //0x3fccf7ef
MessagesFeaturedStickersNotModified = -958657434, //0xc6dc0c66
MessagesFeaturedStickers = -1103615738, //0xbe382906
MessagesRecentStickersNotModified = 186120336, //0x0b17f890
MessagesRecentStickers = -1999405994, //0x88d37c56
MessagesArchivedStickers = 1338747336, //0x4fcba9c8
MessagesStickerSetInstallResultSuccess = 946083368, //0x38641628
MessagesStickerSetInstallResultArchive = 904138920, //0x35e410a8
StickerSetCovered = 1678812626, //0x6410a5d2
StickerSetMultiCovered = 872932635, //0x3407e51b
StickerSetFullCovered = 1087454222, //0x40d13c0e
StickerSetNoCovered = 2008112412, //0x77b15d1c
MaskCoords = -1361650766, //0xaed6dbb2
InputStickeredMediaPhoto = 1251549527, //0x4a992157
InputStickeredMediaDocument = 70813275, //0x0438865b
Game = -1107729093, //0xbdf9653b
InputGameID = 53231223, //0x032c3e77
InputGameShortName = -1020139510, //0xc331e80a
HighScore = 1940093419, //0x73a379eb
MessagesHighScores = -1707344487, //0x9a3bfd99
TextEmpty = -599948721, //0xdc3d824f
TextPlain = 1950782688, //0x744694e0
TextBold = 1730456516, //0x6724abc4
TextItalic = -653089380, //0xd912a59c
TextUnderline = -1054465340, //0xc12622c4
TextStrike = -1678197867, //0x9bf8bb95
TextFixed = 1816074681, //0x6c3f19b9
TextUrl = 1009288385, //0x3c2884c1
TextEmail = -564523562, //0xde5a0dd6
TextConcat = 2120376535, //0x7e6260d7
TextSubscript = -311786236, //0xed6a8504
TextSuperscript = -939827711, //0xc7fb5e01
TextMarked = 55281185, //0x034b8621
TextPhone = 483104362, //0x1ccb966a
TextImage = 136105807, //0x081ccf4f
TextAnchor = 894777186, //0x35553762
PageBlockUnsupported = 324435594, //0x13567e8a
PageBlockTitle = 1890305021, //0x70abc3fd
PageBlockSubtitle = -1879401953, //0x8ffa9a1f
PageBlockAuthorDate = -1162877472, //0xbaafe5e0
PageBlockHeader = -1076861716, //0xbfd064ec
PageBlockSubheader = -248793375, //0xf12bb6e1
PageBlockParagraph = 1182402406, //0x467a0766
PageBlockPreformatted = -1066346178, //0xc070d93e
PageBlockFooter = 1216809369, //0x48870999
PageBlockDivider = -618614392, //0xdb20b188
PageBlockAnchor = -837994576, //0xce0d37b0
PageBlockList = -454524911, //0xe4e88011
PageBlockBlockquote = 641563686, //0x263d7c26
PageBlockPullquote = 1329878739, //0x4f4456d3
PageBlockPhoto = 391759200, //0x1759c560
PageBlockVideo = 2089805750, //0x7c8fe7b6
PageBlockCover = 972174080, //0x39f23300
PageBlockEmbed = -1468953147, //0xa8718dc5
PageBlockEmbedPost = -229005301, //0xf259a80b
PageBlockCollage = 1705048653, //0x65a0fa4d
PageBlockSlideshow = 52401552, //0x031f9590
PageBlockChannel = -283684427, //0xef1751b5
PageBlockAudio = -2143067670, //0x804361ea
PageBlockKicker = 504660880, //0x1e148390
PageBlockTable = -1085412734, //0xbf4dea82
PageBlockOrderedList = -1702174239, //0x9a8ae1e1
PageBlockDetails = 1987480557, //0x76768bed
PageBlockRelatedArticles = 370236054, //0x16115a96
PageBlockMap = -1538310410, //0xa44f3ef6
PhoneCallDiscardReasonMissed = -2048646399, //0x85e42301
PhoneCallDiscardReasonDisconnect = -527056480, //0xe095c1a0
PhoneCallDiscardReasonHangup = 1471006352, //0x57adc690
PhoneCallDiscardReasonBusy = -84416311, //0xfaf7e8c9
DataJSON = 2104790276, //0x7d748d04
LabeledPrice = -886477832, //0xcb296bf8
Invoice = 1572428309, //0x5db95a15
PaymentCharge = -368917890, //0xea02c27e
PostAddress = 512535275, //0x1e8caaeb
PaymentRequestedInfo = -1868808300, //0x909c3f94
PaymentSavedCredentialsCard = -842892769, //0xcdc27a1f
WebDocument = 475467473, //0x1c570ed1
WebDocumentNoProxy = -104284986, //0xf9c8bcc6
InputWebDocument = -1678949555, //0x9bed434d
InputWebFileLocation = -1036396922, //0xc239d686
InputWebFileGeoPointLocation = -1625153079, //0x9f2221c9
InputWebFileAudioAlbumThumbLocation = -193992412, //0xf46fe924
UploadWebFile = 568808380, //0x21e753bc
PaymentsPaymentForm = -1610250415, //0xa0058751
PaymentsValidatedRequestedInfo = -784000893, //0xd1451883
PaymentsPaymentResult = 1314881805, //0x4e5f810d
PaymentsPaymentVerificationNeeded = -666824391, //0xd8411139
PaymentsPaymentReceipt = 1891958275, //0x70c4fe03
PaymentsSavedInfo = -74456004, //0xfb8fe43c
InputPaymentCredentialsSaved = -1056001329, //0xc10eb2cf
InputPaymentCredentials = 873977640, //0x3417d728
InputPaymentCredentialsApplePay = 178373535, //0x0aa1c39f
InputPaymentCredentialsGooglePay = -1966921727, //0x8ac32801
AccountTmpPassword = -614138572, //0xdb64fd34
ShippingOption = -1239335713, //0xb6213cdf
InputStickerSetItem = 853188252, //0x32da9e9c
InputPhoneCall = 506920429, //0x1e36fded
PhoneCallEmpty = 1399245077, //0x5366c915
PhoneCallWaiting = -987599081, //0xc5226f17
PhoneCallRequested = 347139340, //0x14b0ed0c
PhoneCallAccepted = 912311057, //0x3660c311
PhoneCall = -1770029977, //0x967f7c67
PhoneCallDiscarded = 1355435489, //0x50ca4de1
PhoneConnection = -1665063993, //0x9cc123c7
PhoneConnectionWebrtc = 1667228533, //0x635fe375
PhoneCallProtocol = -58224696, //0xfc878fc8
PhonePhoneCall = -326966976, //0xec82e140
UploadCdnFileReuploadNeeded = -290921362, //0xeea8e46e
UploadCdnFile = -1449145777, //0xa99fca4f
CdnPublicKey = -914167110, //0xc982eaba
CdnConfig = 1462101002, //0x5725e40a
LangPackString = -892239370, //0xcad181f6
LangPackStringPluralized = 1816636575, //0x6c47ac9f
LangPackStringDeleted = 695856818, //0x2979eeb2
LangPackDifference = -209337866, //0xf385c1f6
LangPackLanguage = -288727837, //0xeeca5ce3
ChannelAdminLogEventActionChangeTitle = -421545947, //0xe6dfb825
ChannelAdminLogEventActionChangeAbout = 1427671598, //0x55188a2e
ChannelAdminLogEventActionChangeUsername = 1783299128, //0x6a4afc38
ChannelAdminLogEventActionChangePhoto = 1129042607, //0x434bd2af
ChannelAdminLogEventActionToggleInvites = 460916654, //0x1b7907ae
ChannelAdminLogEventActionToggleSignatures = 648939889, //0x26ae0971
ChannelAdminLogEventActionUpdatePinned = -370660328, //0xe9e82c18
ChannelAdminLogEventActionEditMessage = 1889215493, //0x709b2405
ChannelAdminLogEventActionDeleteMessage = 1121994683, //0x42e047bb
ChannelAdminLogEventActionParticipantJoin = 405815507, //0x183040d3
ChannelAdminLogEventActionParticipantLeave = -124291086, //0xf89777f2
ChannelAdminLogEventActionParticipantInvite = -484690728, //0xe31c34d8
ChannelAdminLogEventActionParticipantToggleBan = -422036098, //0xe6d83d7e
ChannelAdminLogEventActionParticipantToggleAdmin = -714643696, //0xd5676710
ChannelAdminLogEventActionChangeStickerSet = -1312568665, //0xb1c3caa7
ChannelAdminLogEventActionTogglePreHistoryHidden = 1599903217, //0x5f5c95f1
ChannelAdminLogEventActionDefaultBannedRights = 771095562, //0x2df5fc0a
ChannelAdminLogEventActionStopPoll = -1895328189, //0x8f079643
ChannelAdminLogEventActionChangeLinkedChat = 84703944, //0x050c7ac8
ChannelAdminLogEventActionChangeLocation = 241923758, //0x0e6b76ae
ChannelAdminLogEventActionToggleSlowMode = 1401984889, //0x53909779
ChannelAdminLogEventActionStartGroupCall = 589338437, //0x23209745
ChannelAdminLogEventActionDiscardGroupCall = -610299584, //0xdb9f9140
ChannelAdminLogEventActionParticipantMute = -115071790, //0xf92424d2
ChannelAdminLogEventActionParticipantUnmute = -431740480, //0xe64429c0
ChannelAdminLogEventActionToggleGroupCallSetting = 1456906823, //0x56d6a247
ChannelAdminLogEventActionParticipantJoinByInvite = -23084712, //0xfe9fc158
ChannelAdminLogEventActionExportedInviteDelete = 1515256996, //0x5a50fca4
ChannelAdminLogEventActionExportedInviteRevoke = 1091179342, //0x410a134e
ChannelAdminLogEventActionExportedInviteEdit = -384910503, //0xe90ebb59
ChannelAdminLogEventActionParticipantVolume = 1048537159, //0x3e7f6847
ChannelAdminLogEventActionChangeHistoryTTL = 1855199800, //0x6e941a38
ChannelAdminLogEventActionParticipantJoinByRequest = -1347021750, //0xafb6144a
ChannelAdminLogEventActionToggleNoForwards = -886388890, //0xcb2ac766
ChannelAdminLogEventActionSendMessage = 663693416, //0x278f2868
ChannelAdminLogEventActionChangeAvailableReactions = -1102180616, //0xbe4e0ef8
ChannelAdminLogEventActionChangeUsernames = -263212119, //0xf04fb3a9
ChannelAdminLogEventActionToggleForum = 46949251, //0x02cc6383
ChannelAdminLogEventActionCreateTopic = 1483767080, //0x58707d28
ChannelAdminLogEventActionEditTopic = -261103096, //0xf06fe208
ChannelAdminLogEventActionDeleteTopic = -1374254839, //0xae168909
ChannelAdminLogEventActionPinTopic = 1569535291, //0x5d8d353b
ChannelAdminLogEventActionToggleAntiSpam = 1693675004, //0x64f36dfc
ChannelAdminLogEventActionChangeColor = 1009460347, //0x3c2b247b
ChannelAdminLogEventActionChangeBackgroundEmoji = 1147126836, //0x445fc434
ChannelAdminLogEvent = 531458253, //0x1fad68cd
ChannelsAdminLogResults = -309659827, //0xed8af74d
ChannelAdminLogEventsFilter = -368018716, //0xea107ae4
PopularContact = 1558266229, //0x5ce14175
MessagesFavedStickersNotModified = -1634752813, //0x9e8fa6d3
MessagesFavedStickers = 750063767, //0x2cb51097
RecentMeUrlUnknown = 1189204285, //0x46e1d13d
RecentMeUrlUser = -1188296222, //0xb92c09e2
RecentMeUrlChat = -1294306862, //0xb2da71d2
RecentMeUrlChatInvite = -347535331, //0xeb49081d
RecentMeUrlStickerSet = -1140172836, //0xbc0a57dc
HelpRecentMeUrls = 235081943, //0x0e0310d7
InputSingleMedia = 482797855, //0x1cc6e91f
WebAuthorization = -1493633966, //0xa6f8f452
AccountWebAuthorizations = -313079300, //0xed56c9fc
InputMessageID = -1502174430, //0xa676a322
InputMessageReplyTo = -1160215659, //0xbad88395
InputMessagePinned = -2037963464, //0x86872538
InputMessageCallbackQuery = -1392895362, //0xacfa1a7e
InputDialogPeer = -55902537, //0xfcaafeb7
InputDialogPeerFolder = 1684014375, //0x64600527
DialogPeer = -445792507, //0xe56dbf05
DialogPeerFolder = 1363483106, //0x514519e2
MessagesFoundStickerSetsNotModified = 223655517, //0x0d54b65d
MessagesFoundStickerSets = -1963942446, //0x8af09dd2
FileHash = -207944868, //0xf39b035c
InputClientProxy = 1968737087, //0x75588b3f
HelpTermsOfServiceUpdateEmpty = -483352705, //0xe3309f7f
HelpTermsOfServiceUpdate = 686618977, //0x28ecf961
InputSecureFileUploaded = 859091184, //0x3334b0f0
InputSecureFile = 1399317950, //0x5367e5be
SecureFileEmpty = 1679398724, //0x64199744
SecureFile = 2097791614, //0x7d09c27e
SecureData = -1964327229, //0x8aeabec3
SecurePlainPhone = 2103482845, //0x7d6099dd
SecurePlainEmail = 569137759, //0x21ec5a5f
SecureValueTypePersonalDetails = -1658158621, //0x9d2a81e3
SecureValueTypePassport = 1034709504, //0x3dac6a00
SecureValueTypeDriverLicense = 115615172, //0x06e425c4
SecureValueTypeIdentityCard = -1596951477, //0xa0d0744b
SecureValueTypeInternalPassport = -1717268701, //0x99a48f23
SecureValueTypeAddress = -874308058, //0xcbe31e26
SecureValueTypeUtilityBill = -63531698, //0xfc36954e
SecureValueTypeBankStatement = -1995211763, //0x89137c0d
SecureValueTypeRentalAgreement = -1954007928, //0x8b883488
SecureValueTypePassportRegistration = -1713143702, //0x99e3806a
SecureValueTypeTemporaryRegistration = -368907213, //0xea02ec33
SecureValueTypePhone = -1289704741, //0xb320aadb
SecureValueTypeEmail = -1908627474, //0x8e3ca7ee
SecureValue = 411017418, //0x187fa0ca
InputSecureValue = -618540889, //0xdb21d0a7
SecureValueHash = -316748368, //0xed1ecdb0
SecureValueErrorData = -391902247, //0xe8a40bd9
SecureValueErrorFrontSide = 12467706, //0x00be3dfa
SecureValueErrorReverseSide = -2037765467, //0x868a2aa5
SecureValueErrorSelfie = -449327402, //0xe537ced6
SecureValueErrorFile = 2054162547, //0x7a700873
SecureValueErrorFiles = 1717706985, //0x666220e9
SecureValueError = -2036501105, //0x869d758f
SecureValueErrorTranslationFile = -1592506512, //0xa1144770
SecureValueErrorTranslationFiles = 878931416, //0x34636dd8
SecureCredentialsEncrypted = 871426631, //0x33f0ea47
AccountAuthorizationForm = -1389486888, //0xad2e1cd8
AccountSentEmailCode = -2128640689, //0x811f854f
HelpDeepLinkInfoEmpty = 1722786150, //0x66afa166
HelpDeepLinkInfo = 1783556146, //0x6a4ee832
SavedPhoneContact = 289586518, //0x1142bd56
AccountTakeout = 1304052993, //0x4dba4501
PasswordKdfAlgoUnknown = -732254058, //0xd45ab096
PasswordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow = 982592842, //0x3a912d4a
SecurePasswordKdfAlgoUnknown = 4883767, //0x004a8537
SecurePasswordKdfAlgoPBKDF2HMACSHA512iter100000 = -1141711456, //0xbbf2dda0
SecurePasswordKdfAlgoSHA512 = -2042159726, //0x86471d92
SecureSecretSettings = 354925740, //0x1527bcac
InputCheckPasswordEmpty = -1736378792, //0x9880f658
InputCheckPasswordSRP = -763367294, //0xd27ff082
SecureRequiredType = -2103600678, //0x829d99da
SecureRequiredTypeOneOf = 41187252, //0x027477b4
HelpPassportConfigNotModified = -1078332329, //0xbfb9f457
HelpPassportConfig = -1600596305, //0xa098d6af
InputAppEvent = 488313413, //0x1d1b1245
JsonObjectValue = -1059185703, //0xc0de1bd9
JsonNull = 1064139624, //0x3f6d7b68
JsonBool = -952869270, //0xc7345e6a
JsonNumber = 736157604, //0x2be0dfa4
JsonString = -1222740358, //0xb71e767a
JsonArray = -146520221, //0xf7444763
JsonObject = -1715350371, //0x99c1d49d
PageTableCell = 878078826, //0x34566b6a
PageTableRow = -524237339, //0xe0c0c5e5
PageCaption = 1869903447, //0x6f747657
PageListItemText = -1188055347, //0xb92fb6cd
PageListItemBlocks = 635466748, //0x25e073fc
PageListOrderedItemText = 1577484359, //0x5e068047
PageListOrderedItemBlocks = -1730311882, //0x98dd8936
PageRelatedArticle = -1282352120, //0xb390dc08
Page = -1738178803, //0x98657f0d
HelpSupportName = -1945767479, //0x8c05f1c9
HelpUserInfoEmpty = -206688531, //0xf3ae2eed
HelpUserInfo = 32192344, //0x01eb3758
PollAnswer = 1823064809, //0x6ca9c2e9
Poll = -2032041631, //0x86e18161
PollAnswerVoters = 997055186, //0x3b6ddad2
PollResults = 2061444128, //0x7adf2420
ChatOnlines = -264117680, //0xf041e250
StatsURL = 1202287072, //0x47a971e0
ChatAdminRights = 1605510357, //0x5fb224d5
ChatBannedRights = -1626209256, //0x9f120418
InputWallPaper = -433014407, //0xe630b979
InputWallPaperSlug = 1913199744, //0x72091c80
InputWallPaperNoFile = -1770371538, //0x967a462e
AccountWallPapersNotModified = 471437699, //0x1c199183
AccountWallPapers = -842824308, //0xcdc3858c
CodeSettings = -1390068360, //0xad253d78
WallPaperSettings = 499236004, //0x1dc1bca4
AutoDownloadSettings = -1163561432, //0xbaa57628
AccountAutoDownloadSettings = 1674235686, //0x63cacf26
EmojiKeyword = -709641735, //0xd5b3b9f9
EmojiKeywordDeleted = 594408994, //0x236df622
EmojiKeywordsDifference = 1556570557, //0x5cc761bd
EmojiURL = -1519029347, //0xa575739d
EmojiLanguage = -1275374751, //0xb3fb5361
Folder = -11252123, //0xff544e65
InputFolderPeer = -70073706, //0xfbd2c296
FolderPeer = -373643672, //0xe9baa668
MessagesSearchCounter = -398136321, //0xe844ebff
UrlAuthResultRequest = -1831650802, //0x92d33a0e
UrlAuthResultAccepted = -1886646706, //0x8f8c0e4e
UrlAuthResultDefault = -1445536993, //0xa9d6db1f
ChannelLocationEmpty = -1078612597, //0xbfb5ad8b
ChannelLocation = 547062491, //0x209b82db
PeerLocated = -901375139, //0xca461b5d
PeerSelfLocated = -118740917, //0xf8ec284b
RestrictionReason = -797791052, //0xd072acb4
InputTheme = 1012306921, //0x3c5693e9
InputThemeSlug = -175567375, //0xf5890df1
Theme = -1609668650, //0xa00e67d6
AccountThemesNotModified = -199313886, //0xf41eb622
AccountThemes = -1707242387, //0x9a3d8c6d
AuthLoginToken = 1654593920, //0x629f1980
AuthLoginTokenMigrateTo = 110008598, //0x068e9916
AuthLoginTokenSuccess = 957176926, //0x390d5c5e
AccountContentSettings = 1474462241, //0x57e28221
MessagesInactiveChats = -1456996667, //0xa927fec5
BaseThemeClassic = -1012849566, //0xc3a12462
BaseThemeDay = -69724536, //0xfbd81688
BaseThemeNight = -1212997976, //0xb7b31ea8
BaseThemeTinted = 1834973166, //0x6d5f77ee
BaseThemeArctic = 1527845466, //0x5b11125a
InputThemeSettings = -1881255857, //0x8fde504f
ThemeSettings = -94849324, //0xfa58b6d4
WebPageAttributeTheme = 1421174295, //0x54b56617
WebPageAttributeStory = 781501415, //0x2e94c3e7
MessagesVotesList = 1218005070, //0x4899484e
BankCardOpenUrl = -177732982, //0xf568028a
PaymentsBankCardData = 1042605427, //0x3e24e573
DialogFilter = 1949890536, //0x7438f7e8
DialogFilterDefault = 909284270, //0x363293ae
DialogFilterChatlist = -699792216, //0xd64a04a8
DialogFilterSuggested = 2004110666, //0x77744d4a
StatsDateRangeDays = -1237848657, //0xb637edaf
StatsAbsValueAndPrev = -884757282, //0xcb43acde
StatsPercentValue = -875679776, //0xcbce2fe0
StatsGraphAsync = 1244130093, //0x4a27eb2d
StatsGraphError = -1092839390, //0xbedc9822
StatsGraph = -1901828938, //0x8ea464b6
MessageInteractionCounters = -1387279939, //0xad4fc9bd
StatsBroadcastStats = -1107852396, //0xbdf78394
HelpPromoDataEmpty = -1728664459, //0x98f6ac75
HelpPromoData = -1942390465, //0x8c39793f
VideoSize = -567037804, //0xde33b094
VideoSizeEmojiMarkup = -128171716, //0xf85c413c
VideoSizeStickerMarkup = 228623102, //0x0da082fe
StatsGroupTopPoster = -1660637285, //0x9d04af9b
StatsGroupTopAdmin = -682079097, //0xd7584c87
StatsGroupTopInviter = 1398765469, //0x535f779d
StatsMegagroupStats = -276825834, //0xef7ff916
GlobalPrivacySettings = 1934380235, //0x734c4ccb
HelpCountryCode = 1107543535, //0x4203c5ef
HelpCountry = -1014526429, //0xc3878e23
HelpCountriesListNotModified = -1815339214, //0x93cc1f32
HelpCountriesList = -2016381538, //0x87d0759e
MessageViews = 1163625789, //0x455b853d
MessagesMessageViews = -1228606141, //0xb6c4f543
MessagesDiscussionMessage = -1506535550, //0xa6341782
MessageReplyHeader = 1860946621, //0x6eebcabd
MessageReplyStoryHeader = -1667711039, //0x9c98bfc1
MessageReplies = -2083123262, //0x83d60fc2
PeerBlocked = -386039788, //0xe8fd8014
StatsMessageStats = -1986399595, //0x8999f295
GroupCallDiscarded = 2004925620, //0x7780bcb4
GroupCall = -711498484, //0xd597650c
InputGroupCall = -659913713, //0xd8aa840f
GroupCallParticipant = -341428482, //0xeba636fe
PhoneGroupCall = -1636664659, //0x9e727aad
PhoneGroupParticipants = -193506890, //0xf47751b6
InlineQueryPeerTypeSameBotPM = 813821341, //0x3081ed9d
InlineQueryPeerTypePM = -2093215828, //0x833c0fac
InlineQueryPeerTypeChat = -681130742, //0xd766c50a
InlineQueryPeerTypeMegagroup = 1589952067, //0x5ec4be43