-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmapi_constants.py
3580 lines (3568 loc) · 309 KB
/
mapi_constants.py
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
# Impacket - Collection of Python classes for working with network protocols.
#
# SECUREAUTH LABS. Copyright (C) 2020 SecureAuth Corporation. All rights reserved.
#
# This software is provided under a slightly modified version
# of the Apache Software License. See the accompanying LICENSE file
# for more information.
#
# Authors:
# Arseniy Sharoglazov <mohemiv@gmail.com> / Positive Technologies (https://www.ptsecurity.com/)
#
# References:
# Error codes taken from:
# - [MS-OXCDATA] http://www.eventid.net/display-eventid-2115-source-MSExchangeDSAccess-eventno-4469-phase-1.htm
# MAPI properties taken from:
# - https://gist.github.com/mohemiv/76c265ac92ca026a10b7756899b5f8d5 (MIT)
#
ERROR_MESSAGES = {
0x80004002: ("MAPI_E_INTERFACE_NO_SUPPORT"),
0x80004005: ("MAPI_E_CALL_FAILED"),
0x80040102: ("MAPI_E_NO_SUPPORT"),
0x80040103: ("MAPI_E_BAD_CHARWIDTH"),
0x80040105: ("MAPI_E_STRING_TOO_LONG"),
0x80040106: ("MAPI_E_UNKNOWN_FLAGS"),
0x80040107: ("MAPI_E_INVALID_ENTRYID"),
0x80040108: ("MAPI_E_INVALID_OBJECT"),
0x80040109: ("MAPI_E_OBJECT_CHANGED"),
0x8004010A: ("MAPI_E_OBJECT_DELETED"),
0x8004010B: ("MAPI_E_BUSY"),
0x8004010D: ("MAPI_E_NOT_ENOUGH_DISK"),
0x8004010E: ("MAPI_E_NOT_ENOUGH_RESOURCES"),
0x8004010F: ("MAPI_E_NOT_FOUND"),
0x80040110: ("MAPI_E_VERSION"),
0x80040111: ("MAPI_E_LOGON_FAILED"),
0x80040112: ("MAPI_E_SESSION_LIMIT"),
0x80040113: ("MAPI_E_USER_CANCEL"),
0x80040114: ("MAPI_E_UNABLE_TO_ABORT"),
0x80040115: ("MAPI_E_NETWORK_ERROR"),
0x80040116: ("MAPI_E_DISK_ERROR"),
0x80040117: ("MAPI_E_TOO_COMPLEX"),
0x80040118: ("MAPI_E_BAD_COLUMN"),
0x80040119: ("MAPI_E_EXTENDED_ERROR"),
0x8004011A: ("MAPI_E_COMPUTED"),
0x8004011B: ("MAPI_E_CORRUPT_DATA"),
0x8004011C: ("MAPI_E_UNCONFIGURED"),
0x8004011D: ("MAPI_E_FAILONEPROVIDER"),
0x8004011E: ("MAPI_E_UNKNOWN_CPID"),
0x8004011F: ("MAPI_E_UNKNOWN_LCID"),
0x80040120: ("MAPI_E_PASSWORD_CHANGE_REQUIRED"),
0x80040121: ("MAPI_E_PASSWORD_EXPIRED"),
0x80040122: ("MAPI_E_INVALID_WORKSTATION_ACCOUNT"),
0x80040123: ("MAPI_E_INVALID_ACCESS_TIME"),
0x80040124: ("MAPI_E_ACCOUNT_DISABLED"),
0x80040200: ("MAPI_E_END_OF_SESSION"),
0x80040201: ("MAPI_E_UNKNOWN_ENTRYID"),
0x80040202: ("MAPI_E_MISSING_REQUIRED_COLUMN"),
0x00040203: ("MAPI_W_NO_SERVICE"),
0x80040301: ("MAPI_E_BAD_VALUE"),
0x80040302: ("MAPI_E_INVALID_TYPE"),
0x80040303: ("MAPI_E_TYPE_NO_SUPPORT"),
0x80040304: ("MAPI_E_UNEXPECTED_TYPE"),
0x80040305: ("MAPI_E_TOO_BIG"),
0x80040306: ("MAPI_E_DECLINE_COPY"),
0x80040307: ("MAPI_E_UNEXPECTED_ID"),
0x00040380: ("MAPI_W_ERRORS_RETURNED"),
0x80040400: ("MAPI_E_UNABLE_TO_COMPLETE"),
0x80040401: ("MAPI_E_TIMEOUT"),
0x80040402: ("MAPI_E_TABLE_EMPTY"),
0x80040403: ("MAPI_E_TABLE_TOO_BIG"),
0x80040405: ("MAPI_E_INVALID_BOOKMARK"),
0x00040481: ("MAPI_W_POSITION_CHANGED"),
0x00040482: ("MAPI_W_APPROX_COUNT"),
0x80040500: ("MAPI_E_WAIT"),
0x80040501: ("MAPI_E_CANCEL"),
0x80040502: ("MAPI_E_NOT_ME"),
0x00040580: ("MAPI_W_CANCEL_MESSAGE"),
0x80040600: ("MAPI_E_CORRUPT_STORE"),
0x80040601: ("MAPI_E_NOT_IN_QUEUE"),
0x80040602: ("MAPI_E_NO_SUPPRESS"),
0x80040604: ("MAPI_E_COLLISION"),
0x80040605: ("MAPI_E_NOT_INITIALIZED"),
0x80040606: ("MAPI_E_NON_STANDARD"),
0x80040607: ("MAPI_E_NO_RECIPIENTS"),
0x80040608: ("MAPI_E_SUBMITTED"),
0x80040609: ("MAPI_E_HAS_FOLDERS"),
0x8004060A: ("MAPI_E_HAS_MESAGES"),
0x8004060B: ("MAPI_E_FOLDER_CYCLE"),
0x8004060D: ("MAPI_E_LOCKID_LIMIT"),
0x00040680: ("MAPI_W_PARTIAL_COMPLETION"),
0x80040700: ("MAPI_E_AMBIGUOUS_RECIP"),
0x80040800: ("SYNC_E_OBJECT_DELETED"),
0x80040801: ("SYNC_E_IGNORE"),
0x80040802: ("SYNC_E_CONFLICT"),
0x80040803: ("SYNC_E_NO_PARENT"),
0x80040804: ("SYNC_E_CYCLE_DETECTED"),
0x80040805: ("SYNC_E_UNSYNCHRONIZED"),
0x00040820: ("SYNC_W_PROGRESS"),
0x00040821: ("SYNC_W_CLIENT_CHANGE_NEWER"),
0x80040900: ("MAPI_E_NAMED_PROP_QUOTA_EXCEEDED"),
0x80040FFF: ("MAPI_E_NOT_IMPLEMENTED"),
0x80070005: ("MAPI_E_NO_ACCESS"),
0x8007000E: ("MAPI_E_NOT_ENOUGH_MEMORY"),
0x80070057: ("MAPI_E_INVALID_PARAMETER"),
0x80040920: ("LDAP_NO_SUCH_OBJECT"),
0x80040951: ("LDAP_SERVER_DOWN"),
0x80040952: ("LDAP_LOCAL_ERROR"),
}
MAPI_E_INTERFACE_NO_SUPPORT = 0x80004002
MAPI_E_CALL_FAILED = 0x80004005
MAPI_E_NO_SUPPORT = 0x80040102
MAPI_E_BAD_CHARWIDTH = 0x80040103
MAPI_E_STRING_TOO_LONG = 0x80040105
MAPI_E_UNKNOWN_FLAGS = 0x80040106
MAPI_E_INVALID_ENTRYID = 0x80040107
MAPI_E_INVALID_OBJECT = 0x80040108
MAPI_E_OBJECT_CHANGED = 0x80040109
MAPI_E_OBJECT_DELETED = 0x8004010A
MAPI_E_BUSY = 0x8004010B
MAPI_E_NOT_ENOUGH_DISK = 0x8004010D
MAPI_E_NOT_ENOUGH_RESOURCES = 0x8004010E
MAPI_E_NOT_FOUND = 0x8004010F
MAPI_E_VERSION = 0x80040110
MAPI_E_LOGON_FAILED = 0x80040111
MAPI_E_SESSION_LIMIT = 0x80040112
MAPI_E_USER_CANCEL = 0x80040113
MAPI_E_UNABLE_TO_ABORT = 0x80040114
MAPI_E_NETWORK_ERROR = 0x80040115
MAPI_E_DISK_ERROR = 0x80040116
MAPI_E_TOO_COMPLEX = 0x80040117
MAPI_E_BAD_COLUMN = 0x80040118
MAPI_E_EXTENDED_ERROR = 0x80040119
MAPI_E_COMPUTED = 0x8004011A
MAPI_E_CORRUPT_DATA = 0x8004011B
MAPI_E_UNCONFIGURED = 0x8004011C
MAPI_E_FAILONEPROVIDER = 0x8004011D
MAPI_E_UNKNOWN_CPID = 0x8004011E
MAPI_E_UNKNOWN_LCID = 0x8004011F
MAPI_E_PASSWORD_CHANGE_REQUIRED = 0x80040120
MAPI_E_PASSWORD_EXPIRED = 0x80040121
MAPI_E_INVALID_WORKSTATION_ACCOUNT = 0x80040122
MAPI_E_INVALID_ACCESS_TIME = 0x80040123
MAPI_E_ACCOUNT_DISABLED = 0x80040124
MAPI_E_END_OF_SESSION = 0x80040200
MAPI_E_UNKNOWN_ENTRYID = 0x80040201
MAPI_E_MISSING_REQUIRED_COLUMN = 0x80040202
MAPI_W_NO_SERVICE = 0x00040203
MAPI_E_BAD_VALUE = 0x80040301
MAPI_E_INVALID_TYPE = 0x80040302
MAPI_E_TYPE_NO_SUPPORT = 0x80040303
MAPI_E_UNEXPECTED_TYPE = 0x80040304
MAPI_E_TOO_BIG = 0x80040305
MAPI_E_DECLINE_COPY = 0x80040306
MAPI_E_UNEXPECTED_ID = 0x80040307
MAPI_W_ERRORS_RETURNED = 0x00040380
MAPI_E_UNABLE_TO_COMPLETE = 0x80040400
MAPI_E_TIMEOUT = 0x80040401
MAPI_E_TABLE_EMPTY = 0x80040402
MAPI_E_TABLE_TOO_BIG = 0x80040403
MAPI_E_INVALID_BOOKMARK = 0x80040405
MAPI_W_POSITION_CHANGED = 0x00040481
MAPI_W_APPROX_COUNT = 0x00040482
MAPI_E_WAIT = 0x80040500
MAPI_E_CANCEL = 0x80040501
MAPI_E_NOT_ME = 0x80040502
MAPI_W_CANCEL_MESSAGE = 0x00040580
MAPI_E_CORRUPT_STORE = 0x80040600
MAPI_E_NOT_IN_QUEUE = 0x80040601
MAPI_E_NO_SUPPRESS = 0x80040602
MAPI_E_COLLISION = 0x80040604
MAPI_E_NOT_INITIALIZED = 0x80040605
MAPI_E_NON_STANDARD = 0x80040606
MAPI_E_NO_RECIPIENTS = 0x80040607
MAPI_E_SUBMITTED = 0x80040608
MAPI_E_HAS_FOLDERS = 0x80040609
MAPI_E_HAS_MESAGES = 0x8004060A
MAPI_E_FOLDER_CYCLE = 0x8004060B
MAPI_E_LOCKID_LIMIT = 0x8004060D
MAPI_W_PARTIAL_COMPLETION = 0x00040680
MAPI_E_AMBIGUOUS_RECIP = 0x80040700
SYNC_E_OBJECT_DELETED = 0x80040800
SYNC_E_IGNORE = 0x80040801
SYNC_E_CONFLICT = 0x80040802
SYNC_E_NO_PARENT = 0x80040803
SYNC_E_CYCLE_DETECTED = 0x80040804
SYNC_E_UNSYNCHRONIZED = 0x80040805
SYNC_W_PROGRESS = 0x00040820
SYNC_W_CLIENT_CHANGE_NEWER = 0x00040821
MAPI_E_NAMED_PROP_QUOTA_EXCEEDED = 0x80040900
MAPI_E_NOT_IMPLEMENTED = 0x80040FFF
MAPI_E_NO_ACCESS = 0x80070005
MAPI_E_NOT_ENOUGH_MEMORY = 0x8007000E
MAPI_E_INVALID_PARAMETER = 0x80070057
LDAP_NO_SUCH_OBJECT = 0x80040920
LDAP_SERVER_DOWN = 0x80040951
LDAP_LOCAL_ERROR = 0x80040952
# PR_DISPLAY_TYPE
# For address book contents tables
DT_MAILUSER = 0x00000000
DT_DISTLIST = 0x00000001
DT_FORUM = 0x00000002
DT_AGENT = 0x00000003
DT_ORGANIZATION = 0x00000004
DT_PRIVATE_DISTLIST = 0x00000005
DT_REMOTE_MAILUSER = 0x00000006
# For address book hierarchy tables
DT_MODIFIABLE = 0x00010000
DT_GLOBAL = 0x00020000
DT_LOCAL = 0x00030000
DT_WAN = 0x00040000
DT_NOT_SPECIFIC = 0x00050000
# For folder hierarchy tables *
DT_FOLDER = 0x01000000
DT_FOLDER_LINK = 0x02000000
DT_FOLDER_SPECIAL = 0x04000000
PR_DISPLAY_TYPE_VALUES = {
0x00000000: "DT_MAILUSER",
0x00000001: "DT_DISTLIST",
0x00000002: "DT_FORUM",
0x00000003: "DT_AGENT",
0x00000004: "DT_ORGANIZATION",
0x00000005: "DT_PRIVATE_DISTLIST",
0x00000006: "DT_REMOTE_MAILUSER",
0x00010000: "DT_MODIFIABLE",
0x00020000: "DT_GLOBAL",
0x00030000: "DT_LOCAL",
0x00040000: "DT_WAN",
0x00050000: "DT_NOT_SPECIFIC",
0x01000000: "DT_FOLDER",
0x02000000: "DT_FOLDER_LINK",
0x04000000: "DT_FOLDER_SPECIAL"
}
# PR_OBJECT_TYPE
MAPI_STORE = 0x1
MAPI_ADDRBOOK = 0x2
MAPI_FOLDER = 0x3
MAPI_ABCONT = 0x4
MAPI_MESSAGE = 0x5
MAPI_MAILUSER = 0x6
MAPI_ATTACH = 0x7
MAPI_DISTLIST = 0x8
MAPI_PROFSECT = 0x9
MAPI_STATUS = 0xA
MAPI_SESSION = 0xB
MAPI_FORMINFO = 0xC
PR_OBJECT_TYPE_VALUES = {
0x1: "MAPI_STORE",
0x2: "MAPI_ADDRBOOK",
0x3: "MAPI_FOLDER",
0x4: "MAPI_ABCONT",
0x5: "MAPI_MESSAGE",
0x6: "MAPI_MAILUSER",
0x7: "MAPI_ATTACH",
0x8: "MAPI_DISTLIST",
0x9: "MAPI_PROFSECT",
0xA: "MAPI_STATUS",
0xB: "MAPI_SESSION",
0xC: "MAPI_FORMINFO"
}
# PR_CONTAINER_FLAGS
AB_RECIPIENTS = 0x00000001
AB_SUBCONTAINERS = 0x00000002
AB_MODIFIABLE = 0x00000004
AB_UNMODIFIABLE = 0x00000008
AB_FIND_ON_OPEN = 0x00000010
AB_NOT_DEFAULT = 0x00000020
AB_CONF_ROOMS = 0x00000200
PR_CONTAINER_FLAGS_VALUES = {
0x00000001: "AB_RECIPIENTS",
0x00000002: "AB_SUBCONTAINERS",
0x00000004: "AB_MODIFIABLE",
0x00000008: "AB_UNMODIFIABLE",
0x00000010: "AB_FIND_ON_OPEN",
0x00000020: "AB_NOT_DEFAULT",
0x00000200: "AB_CONF_ROOMS"
}
MAPI_PROPERTIES = {
# Field_1: (Field_2, Field_3, Field_4, Field_5, Field_6, Field_7, Field_8),
#
# Field_1 is PropertyId
# Field_2 is PropertyType (unicode when possible)
# Field_3 is Active Directory LDAP-Display-Name
# Field_4 is Active Directory CN
# Field_5:
# 1 when Is-Member-Of-Partial-Attribute-Set is TRUE
# 2 when Is-Member-Of-Partial-Attribute-Set is FALSE
# 3 when Is-Member-Of-Partial-Attribute-Set does not exist
# 4 when it's not an Active Directory property
#
# Field_6 is MS-OXPROPS Canonical Name
# Field_7 is MS-OXPROPS First Alternate Name (usually the shortest one which starts from PR_)
# Field_8 is internal Exchange name
0x0806: (0x101f, "msExchResourceSearchProperties", "ms-Exch-Resource-Search-Properties", 1, None, None, None),
0x0807: (0x0003, "msExchResourceCapacity", "ms-Exch-Resource-Capacity", 1, "PidTagAddressBookRoomCapacity", "PR_EMS_AB_ROOM_CAPACITY", None),
0x0808: (0x101f, "msExchResourceMetaData", "ms-Exch-Resource-Meta-Data", 1, None, None, None),
0x0809: (0x001f, "msExchResourceDisplay", "ms-Exch-Resource-Display", 1, "PidTagAddressBookRoomDescription", "PR_EMS_AB_ROOM_DESCRIPTION", None),
0x3004: (0x001f, "info", "Comment", 1, "PidTagComment", "PR_COMMENT", "Comment"),
0x3007: (0x0040, "whenCreated", "When-Created", 1, "PidTagCreationTime", "PR_CREATION_TIME", "CreationTime"),
0x3008: (0x0040, "whenChanged", "When-Changed", 1, "PidTagLastModificationTime", "PR_LAST_MODIFICATION_TIME", "LastModificationTime"),
0x3905: (0x0003, "msExchRecipientDisplayType", "ms-Exch-Recipient-Display-Type", 1, "PidTagDisplayTypeEx", "PR_DISPLAY_TYPE_EX", "DisplayTypeEx"),
0x39fe: (0x001f, "mail", "E-mail-Addresses", 1, "PidTagSmtpAddress", "PR_SMTP_ADDRESS", "SmtpAddress"),
0x39ff: (0x001f, "displayNamePrintable", "Display-Name-Printable", 1, "PidTagAddressBookDisplayNamePrintable", "PR_EMS_AB_DISPLAY_NAME_PRINTABLE", "SimpleDisplayName"),
0x3a00: (0x001f, "mailNickname", "ms-Exch-Mail-Nickname", 1, "PidTagAccount", "PR_ACCOUNT", "Account"),
0x3a06: (0x001f, "givenName", "Given-Name", 1, "PidTagGivenName", "PR_GIVEN_NAME", "GivenName"),
0x3a08: (0x001f, "telephoneNumber", "Telephone-Number", 1, "PidTagBusinessTelephoneNumber", "PR_BUSINESS_TELEPHONE_NUMBER", "BusinessTelephoneNumber"),
0x3a09: (0x001f, "homePhone", "Phone-Home-Primary", 1, "PidTagHomeTelephoneNumber", "PR_HOME_TELEPHONE_NUMBER", "HomeTelephoneNumber"),
0x3a0a: (0x001f, "initials", "Initials", 1, "PidTagInitials", "PR_INITIALS", "Initials"),
0x3a0f: (0x001f, "cn", "Common-Name", 1, "PidTagMessageHandlingSystemCommonName", "PR_MHS_COMMON_NAME", "MhsCommonName"),
0x3a11: (0x001f, "sn", "Surname", 1, "PidTagSurname", "PR_SURNAME", "Surname"),
0x3a16: (0x001f, "company", "Company", 1, "PidTagCompanyName", "PR_COMPANY_NAME", "CompanyName"),
0x3a17: (0x001f, "title", "Title", 1, "PidTagTitle", "PR_TITLE", "Title"),
0x3a18: (0x001f, "department", "Department", 1, "PidTagDepartmentName", "PR_DEPARTMENT_NAME", "DepartmentName"),
0x3a19: (0x001f, "physicalDeliveryOfficeName", "Physical-Delivery-Office-Name", 1, "PidTagOfficeLocation", "PR_OFFICE_LOCATION", "OfficeLocation"),
0x3a1b: (0x101f, "otherTelephone", "Phone-Office-Other", 1, "PidTagBusiness2TelephoneNumbers", "PR_BUSINESS2_TELEPHONE_NUMBER_A_MV", "Business2TelephoneNumber"),
0x3a1c: (0x001f, "mobile", "Phone-Mobile-Primary", 1, "PidTagMobileTelephoneNumber", "PR_MOBILE_TELEPHONE_NUMBER", "MobileTelephoneNumber"),
0x3a21: (0x001f, "pager", "Phone-Pager-Primary", 1, "PidTagPagerTelephoneNumber", "PR_PAGER_TELEPHONE_NUMBER", "PagerTelephoneNumber"),
0x3a22: (0x0102, "userCert", "User-Cert", 1, "PidTagUserCertificate", "PR_USER_CERTIFICATE", "UserCertificate"),
0x3a23: (0x001f, "facsimileTelephoneNumber", "Facsimile-Telephone-Number", 1, "PidTagPrimaryFaxNumber", "PR_PRIMARY_FAX_NUMBER", "PrimaryFaxNumber"),
0x3a26: (0x001f, "co", "Text-Country", 1, "PidTagCountry", "PR_COUNTRY", "Country"),
0x3a27: (0x001f, "l", "Locality-Name", 1, "PidTagLocality", "PR_LOCALITY", "Locality"),
0x3a28: (0x001f, "st", "State-Or-Province-Name", 1, "PidTagStateOrProvince", "PR_STATE_OR_PROVINCE", "StateOrProvince"),
0x3a29: (0x001f, "streetAddress", "Address", 1, "PidTagStreetAddress", "PR_STREET_ADDRESS", "StreetAddress"),
0x3a2a: (0x001f, "postalCode", "Postal-Code", 1, "PidTagPostalCode", "PR_POSTAL_CODE", "PostalCode"),
0x3a2b: (0x101f, "postOfficeBox", "Post-Office-Box", 1, "PidTagPostOfficeBox", "PR_POST_OFFICE_BOX", "PostOfficeBox"),
0x3a2c: (0x1102, "telexNumber", "Telex-Number", 3, "PidTagTelexNumber", "PR_TELEX_NUMBER", "TelexNumber"),
0x3a2e: (0x001f, "telephoneAssistant", "ms-Exch-Telephone-Assistant", 1, "PidTagAssistantTelephoneNumber", "PR_ASSISTANT_TELEPHONE_NUMBER", "AssistantTelephoneNumber"),
0x3a2f: (0x101f, "otherHomePhone", "Phone-Home-Other", 1, "PidTagHome2TelephoneNumbers", "PR_HOME2_TELEPHONE_NUMBER_A_MV", "Home2TelephoneNumber"),
0x3a30: (0x001f, "msExchAssistantName", "ms-Exch-Assistant-Name", 1, "PidTagAssistant", "PR_ASSISTANT", "Assistant"),
0x3a40: (0x000b, "mAPIRecipient", "ms-Exch-MAPI-Recipient", 1, "PidTagSendRichInfo", "PR_SEND_RICH_INFO", "SendRichInfo"),
0x3a5d: (0x001f, "homePostalAddress", "Address-Home", 1, "PidTagHomeAddressStreet", "PR_HOME_ADDRESS_STREET", "HomeAddressStreet"),
0x3a70: (0x1102, "userSMIMECertificate", "User-SMIME-Certificate", 1, "PidTagUserX509Certificate", "PR_USER_X509_CERTIFICATE", "UserSMimeCertificate"),
0x3a71: (0x0003, "internetEncoding", "ms-Exch-Internet-Encoding", 1, "PidTagSendInternetEncoding", "PR_SEND_INTERNET_ENCODING", "SendInternetEncoding"),
0x8003: (0x1102, "cACertificate", "CA-Certificate", 1, None, None, None),
0x8004: (0x001f, "folderPathname", "ms-Exch-Folder-Pathname", 1, "PidTagAddressBookFolderPathname", "PR_EMS_AB_FOLDER_PATHNAME", None),
0x8005: (0x000d, "manager", "Manager", 1, "PidTagAddressBookManagerDistinguishedName", "PR_EMS_AB_MANAGER_T", None),
0x8006: (0x000d, "homeMDB", "ms-Exch-Home-MDB", 1, "PidTagAddressBookHomeMessageDatabase", "PR_EMS_AB_HOME_MDB", "HomeMdb"),
0x8007: (0x001f, "homeMTA", "ms-Exch-Home-MTA", 1, "PidLidContactItemData", "dispidContactItemData", None),
0x8008: (0x000d, "memberOf", "Is-Member-Of-DL", 3, "PidTagAddressBookIsMemberOfDistributionList", "PR_EMS_AB_IS_MEMBER_OF_DL", "MemberOf"),
0x8009: (0x000d, "member", "Member", 1, "PidTagAddressBookMember", "PR_EMS_AB_MEMBER", "Members"),
0x800a: (0x001f, "autoReplyMessage", "ms-Exch-AutoReply-Message", 2, None, None, None),
0x800b: (0x000b, "autoReply", "ms-Exch-AutoReply", 1, None, None, None),
0x800c: (0x000d, "managedBy", "Managed-By", 1, "PidTagAddressBookOwner", "PR_EMS_AB_OWNER_O", "ManagedBy"),
0x800d: (0x001f, "kMServer", "ms-Exch-KM-Server", 2, None, None, None),
0x800e: (0x000d, "directReports", "Reports", 3, "PidTagAddressBookReports", "PR_EMS_AB_REPORTS", None),
0x800f: (0x101f, "proxyAddresses", "Proxy-Addresses", 1, "PidTagAddressBookProxyAddresses", "PR_EMS_AB_PROXY_ADDRESSES", "ProxyAddresses"),
0x8010: (0x0102, "helpData32", "Help-Data32", 3, "PidLidDepartment", "dispidDepartment", "TemplateInfoHelpFileContents"),
0x8011: (0x001f, "targetAddress", "ms-Exch-Target-Address", 1, "PidTagAddressBookTargetAddress", "PR_EMS_AB_TARGET_ADDRESS", None),
0x8014: (0x000d, "homeMDBBL", "ms-Exch-Home-MDB-BL", 1, None, None, None),
0x8015: (0x000d, "publicDelegates", "ms-Exch-Public-Delegates", 1, "PidTagAddressBookPublicDelegates", "PR_EMS_AB_PUBLIC_DELEGATES", "GrantSendOnBehalfTo"),
0x8016: (0x0102, "certificateRevocationList", "Certificate-Revocation-List", 3, None, None, None),
0x8017: (0x0102, "addressEntryDisplayTable", "Address-Entry-Display-Table", 3, None, None, "TemplateInfoTemplate"),
0x8018: (0x0102, "addressSyntax", "Address-Syntax", 3, None, None, "TemplateInfoScript"),
0x8023: (0x0102, "businessRoles", "ms-Exch-Business-Roles", 2, "PidLidContactCharacterSet", "dispidContactCharSet", None),
0x8024: (0x000d, "managedObjects", "Managed-Objects", 3, "PidTagAddressBookOwnerBackLink", "PR_EMS_AB_OWNER_BL_O", None),
0x8025: (0x1102, "crossCertificatePair", "Cross-Certificate-Pair", 3, "PidLidAutoLog", "dispidAutoLog", None),
0x8026: (0x1102, "authorityRevocationList", "Authority-Revocation-List", 3, "PidLidFileUnderList", "dispidFileUnderList", None),
0x8027: (0x0102, "objectSid", "Object-Sid", 1, None, None, None),
0x8028: (0x0040, "expirationTime", "ms-Exch-Expiration-Time", 2, "PidLidAddressBookProviderEmailList", "dispidABPEmailList", None),
0x8029: (0x0003, "uSNChanged", "USN-Changed", 1, "PidLidAddressBookProviderArrayType", "dispidABPArrayType", None),
0x802d: (0x001f, "extensionAttribute1", "ms-Exch-Extension-Attribute-1", 1, "PidTagAddressBookExtensionAttribute1", "PR_EMS_AB_EXTENSION_ATTRIBUTE_1", None),
0x802e: (0x001f, "extensionAttribute2", "ms-Exch-Extension-Attribute-2", 1, "PidTagAddressBookExtensionAttribute2", "PR_EMS_AB_EXTENSION_ATTRIBUTE_2", None),
0x802f: (0x001f, "extensionAttribute3", "ms-Exch-Extension-Attribute-3", 1, "PidTagAddressBookExtensionAttribute3", "PR_EMS_AB_EXTENSION_ATTRIBUTE_3", None),
0x8030: (0x001f, "extensionAttribute4", "ms-Exch-Extension-Attribute-4", 1, "PidTagAddressBookExtensionAttribute4", "PR_EMS_AB_EXTENSION_ATTRIBUTE_4", None),
0x8031: (0x001f, "extensionAttribute5", "ms-Exch-Extension-Attribute-5", 1, "PidTagAddressBookExtensionAttribute5", "PR_EMS_AB_EXTENSION_ATTRIBUTE_5", None),
0x8032: (0x001f, "extensionAttribute6", "ms-Exch-Extension-Attribute-6", 1, "PidTagAddressBookExtensionAttribute6", "PR_EMS_AB_EXTENSION_ATTRIBUTE_6", None),
0x8033: (0x001f, "extensionAttribute7", "ms-Exch-Extension-Attribute-7", 1, "PidTagAddressBookExtensionAttribute7", "PR_EMS_AB_EXTENSION_ATTRIBUTE_7", None),
0x8034: (0x001f, "extensionAttribute8", "ms-Exch-Extension-Attribute-8", 1, "PidTagAddressBookExtensionAttribute8", "PR_EMS_AB_EXTENSION_ATTRIBUTE_8", None),
0x8035: (0x001f, "extensionAttribute9", "ms-Exch-Extension-Attribute-9", 1, "PidTagAddressBookExtensionAttribute9", "PR_EMS_AB_EXTENSION_ATTRIBUTE_9", None),
0x8036: (0x001f, "extensionAttribute10", "ms-Exch-Extension-Attribute-10", 1, "PidTagAddressBookExtensionAttribute10", "PR_EMS_AB_EXTENSION_ATTRIBUTE_10", None),
0x8037: (0x1102, "securityProtocol", "ms-Exch-Security-Protocol", 1, None, None, None),
0x8038: (0x101f, "pFContacts", "ms-Exch-PF-Contacts", 1, None, None, "PfContacts"),
0x803a: (0x0102, "helpData16", "Help-Data16", 3, None, None, None),
0x803b: (0x001f, "helpFileName", "Help-File-Name", 3, None, None, "TemplateInfoHelpFileName"),
0x803c: (0x001f, "distinguishedName", "Obj-Dist-Name", 1, "PidTagAddressBookObjectDistinguishedName", "PR_EMS_AB_OBJ_DIST_NAME", "ObjectDistinguishedName"),
0x803d: (0x001f, "encryptAlgSelectedOther", "ms-Exch-Encrypt-Alg-Selected-Other", 2, None, None, None),
0x8040: (0x101f, "encryptAlgListNA", "ms-Exch-Encrypt-Alg-List-NA", 2, "PidLidBusinessCardDisplayDefinition", "dispidBCDisplayDefinition", None),
0x8041: (0x101f, "encryptAlgListOther", "ms-Exch-Encrypt-Alg-List-Other", 2, "PidLidBusinessCardCardPicture", "dispidBCCardPicture", None),
0x8042: (0x001f, "importedFrom", "ms-Exch-Imported-From", 1, None, None, None),
0x8043: (0x001f, "encryptAlgSelectedNA", "ms-Exch-Encrypt-Alg-Selected-NA", 2, None, None, None),
0x8045: (0x0102, "activationSchedule", "ms-Exch-Activation-Schedule", 2, "PidLidWorkAddressStreet", "dispidWorkAddressStreet", None),
0x8046: (0x0003, "activationStyle", "ms-Exch-Activation-Style", 2, "PidLidWorkAddressCity", "dispidWorkAddressCity", None),
0x8047: (0x0102, "addressEntryDisplayTableMSDOS", "Address-Entry-Display-Table-MSDOS", 3, "PidLidWorkAddressState", "dispidWorkAddressState", None),
0x8048: (0x001f, "addressType", "Address-Type", 3, "PidLidWorkAddressPostalCode", "dispidWorkAddressPostalCode", "TemplateInfoEmailType"),
0x8049: (0x001f, "aDMD", "ms-Exch-ADMD", 2, "PidLidWorkAddressCountry", "dispidWorkAddressCountry", None),
0x804a: (0x001f, "adminDescription", "Admin-Description", 3, "PidLidWorkAddressPostOfficeBox", "dispidWorkAddressPostOfficeBox", None),
0x804b: (0x001f, "adminDisplayName", "Admin-Display-Name", 1, None, None, None),
0x804c: (0x001f, "adminExtensionDLL", "ms-Exch-Admin-Extension-DLL", 2, "PidLidDistributionListChecksum", "dispidDLChecksum", None),
0x804e: (0x000d, "altRecipient", "ms-Exch-Alt-Recipient", 1, "PidLidAnniversaryEventEntryId", "dispidAnniversaryEventEID", None),
0x804f: (0x000d, "altRecipientBL", "ms-Exch-Alt-Recipient-BL", 2, "PidLidContactUserField1", "dispidContactUserField1", None),
0x8051: (0x000d, "assocRemoteDXA", "ms-Exch-Assoc-Remote-DXA", 2, "PidLidContactUserField3", "dispidContactUserField3", None),
0x8052: (0x0003, "associationLifetime", "ms-Exch-Association-Lifetime", 2, "PidLidContactUserField4", "dispidContactUserField4", None),
0x8053: (0x000d, "authOrigBL", "ms-Exch-Auth-Orig-BL", 1, "PidLidDistributionListName", "dispidDLName", None),
0x8054: (0x001f, "authorizedDomain", "ms-Exch-Authorized-Domain", 2, "PidLidDistributionListOneOffMembers", "dispidDLOneOffMembers", None),
0x8055: (0x0102, "authorizedPassword", "ms-Exch-Authorized-Password", 2, "PidLidDistributionListMembers", "dispidDLMembers", None),
0x8056: (0x001f, "authorizedUser", "ms-Exch-Authorized-User", 2, None, None, None),
0x8057: (0x101f, "businessCategory", "Business-Category", 3, None, None, None),
0x8060: (0x000b, "canPreserveDNs", "ms-Exch-Can-Preserve-DNs", 2, None, None, None),
0x8061: (0x0003, "clockAlertOffset", "ms-Exch-Clock-Alert-Offset", 2, None, None, None),
0x8062: (0x000b, "clockAlertRepair", "ms-Exch-Clock-Alert-Repair", 2, "PidLidInstantMessagingAddress", "dispidInstMsg", None),
0x8063: (0x0003, "clockWarningOffset", "ms-Exch-Clock-Warning-Offset", 2, None, None, None),
0x8064: (0x000b, "clockWarningRepair", "ms-Exch-Clock-Warning-Repair", 2, "PidLidDistributionListStream", "dispidDLStream", None),
0x8065: (0x001f, "computerName", "ms-Exch-Computer-Name", 2, None, None, None),
0x8066: (0x101f, "connectedDomains", "ms-Exch-Connected-Domains", 2, None, None, None),
0x8067: (0x0003, "containerInfo", "ms-Exch-Container-Info", 2, None, None, None),
0x8068: (0x0003, "cost", "Cost", 3, None, None, None),
0x8069: (0x001f, "c", "Country-Name", 1, None, None, None),
0x806a: (0x0003, "delivContLength", "ms-Exch-Deliv-Cont-Length", 1, "PidTagAddressBookDeliveryContentLength", "PR_EMS_AB_DELIV_CONT_LENGTH", None),
0x806b: (0x1102, "delivEITs", "ms-Exch-Deliv-EITs", 2, None, None, None),
0x806c: (0x1102, "delivExtContTypes", "ms-Exch-Deliv-Ext-Cont-Types", 1, None, None, None),
0x806d: (0x000b, "deliverAndRedirect", "ms-Exch-Deliver-And-Redirect", 1, None, None, None),
0x806e: (0x0003, "deliveryMechanism", "ms-Exch-Delivery-Mechanism", 1, None, None, None),
0x806f: (0x101f, "description", "Description", 1, None, None, None),
0x8070: (0x101f, "destinationIndicator", "Destination-Indicator", 3, None, None, None),
0x8071: (0x001f, "diagnosticRegKey", "ms-Exch-Diagnostic-Reg-Key", 2, None, None, None),
0x8072: (0x000d, "dLMemRejectPermsBL", "ms-Exch-DL-Mem-Reject-Perms-BL", 1, None, None, None),
0x8073: (0x000d, "dLMemSubmitPermsBL", "ms-Exch-DL-Mem-Submit-Perms-BL", 1, "PidTagAddressBookDistributionListMemberSubmitAccepted", "PR_EMS_AB_DL_MEM_SUBMIT_PERMS_BL_O", None),
0x8074: (0x1102, "dLMemberRule", "ms-Exch-DL-Member-Rule", 1, None, None, None),
0x8075: (0x001f, "domainDefAltRecip", "ms-Exch-Domain-Def-Alt-Recip", 2, None, None, None),
0x8076: (0x001f, "domainName", "ms-Exch-Domain-Name", 2, None, None, None),
0x8077: (0x0102, "dSASignature", "DSA-Signature", 3, None, None, None),
0x8078: (0x000b, "dXAAdminCopy", "ms-Exch-DXA-Admin-Copy", 2, None, None, None),
0x8079: (0x000b, "dXAAdminForward", "ms-Exch-DXA-Admin-Forward", 2, None, None, None),
0x807a: (0x0003, "dXAAdminUpdate", "ms-Exch-DXA-Admin-Update", 2, None, None, None),
0x807b: (0x000b, "dXAAppendReqCN", "ms-Exch-DXA-Append-ReqCN", 2, None, None, None),
0x807c: (0x101f, "dXAConfContainerList", "ms-Exch-DXA-Conf-Container-List", 2, None, None, None),
0x807d: (0x0040, "dXAConfReqTime", "ms-Exch-DXA-Conf-Req-Time", 2, None, None, None),
0x807e: (0x001f, "dXAConfSeq", "ms-Exch-DXA-Conf-Seq", 2, None, None, None),
0x807f: (0x0003, "dXAConfSeqUSN", "ms-Exch-DXA-Conf-Seq-USN", 2, None, None, None),
0x8080: (0x0003, "dXAExchangeOptions", "ms-Exch-DXA-Exchange-Options", 2, "PidLidEmail1DisplayName", "dispidEmail1DisplayName", None),
0x8081: (0x000b, "dXAExportNow", "ms-Exch-DXA-Export-Now", 2, None, None, None),
0x8082: (0x0003, "deletedItemFlags", "ms-Exch-Deleted-Item-Flags", 1, "PidLidEmail1AddressType", "dispidEmail1AddrType", None),
0x8083: (0x001f, "dXAImpSeq", "ms-Exch-DXA-Imp-Seq", 2, "PidLidEmail1EmailAddress", "dispidEmail1EmailAddress", None),
0x8084: (0x0040, "dXAImpSeqTime", "ms-Exch-DXA-Imp-Seq-Time", 2, "PidLidEmail1OriginalDisplayName", "dispidEmail1OriginalDisplayName", None),
0x8085: (0x0003, "dXAImpSeqUSN", "ms-Exch-DXA-Imp-Seq-USN", 2, "PidLidEmail1OriginalEntryId", "dispidEmail1OriginalEntryID", None),
0x8086: (0x000b, "dXAImportNow", "ms-Exch-DXA-Import-Now", 2, None, None, None),
0x8087: (0x101f, "dXAInTemplateMap", "ms-Exch-DXA-In-Template-Map", 2, None, None, None),
0x8088: (0x001f, "dXALocalAdmin", "ms-Exch-DXA-Local-Admin", 2, None, None, None),
0x808a: (0x001f, "dXANativeAddressType", "ms-Exch-DXA-Native-Address-Type", 2, None, None, None),
0x808b: (0x101f, "dXAOutTemplateMap", "ms-Exch-DXA-Out-Template-Map", 2, None, None, None),
0x808c: (0x001f, "dXAPassword", "ms-Exch-DXA-Password", 2, None, None, None),
0x808d: (0x0003, "dXAPrevExchangeOptions", "ms-Exch-DXA-Prev-Exchange-Options", 2, None, None, None),
0x808e: (0x000b, "dXAPrevExportNativeOnly", "ms-Exch-DXA-Prev-Export-Native-Only", 2, None, None, None),
0x808f: (0x0003, "dXAPrevInExchangeSensitivity", "ms-Exch-DXA-Prev-In-Exchange-Sensitivity", 2, None, None, None),
0x8090: (0x001f, "dXAPrevRemoteEntries", "ms-Exch-DXA-Prev-Remote-Entries", 2, "PidLidEmail2DisplayName", "dispidEmail2DisplayName", None),
0x8091: (0x0003, "dXAPrevReplicationSensitivity", "ms-Exch-DXA-Prev-Replication-Sensitivity", 2, None, None, None),
0x8092: (0x0003, "dXAPrevTemplateOptions", "ms-Exch-DXA-Prev-Template-Options", 2, "PidLidEmail2AddressType", "dispidEmail2AddrType", None),
0x8093: (0x0003, "dXAPrevTypes", "ms-Exch-DXA-Prev-Types", 2, "PidLidEmail2EmailAddress", "dispidEmail2EmailAddress", None),
0x8094: (0x001f, "dXARecipientCP", "ms-Exch-DXA-Recipient-CP", 2, "PidLidEmail2OriginalDisplayName", "dispidEmail2OriginalDisplayName", None),
0x8095: (0x001f, "dXARemoteClient", "ms-Exch-DXA-Remote-Client", 2, "PidLidEmail2OriginalEntryId", "dispidEmail2OriginalEntryID", None),
0x8096: (0x001f, "dXAReqSeq", "ms-Exch-DXA-Req-Seq", 2, None, None, None),
0x8097: (0x0040, "dXAReqSeqTime", "ms-Exch-DXA-Req-Seq-Time", 2, None, None, None),
0x8098: (0x0003, "dXAReqSeqUSN", "ms-Exch-DXA-Req-Seq-USN", 2, None, None, None),
0x8099: (0x001f, "dXAReqName", "ms-Exch-DXA-ReqName", 2, None, None, None),
0x809a: (0x001f, "dXASvrSeq", "ms-Exch-DXA-Svr-Seq", 2, None, None, None),
0x809b: (0x0040, "dXASvrSeqTime", "ms-Exch-DXA-Svr-Seq-Time", 2, None, None, None),
0x809c: (0x0003, "dXASvrSeqUSN", "ms-Exch-DXA-Svr-Seq-USN", 2, None, None, None),
0x809d: (0x0003, "messageSizeLimit", "ms-Exch-Message-Size-Limit", 2, None, None, None),
0x809e: (0x0003, "dXATemplateOptions", "ms-Exch-DXA-Template-Options", 2, None, None, None),
0x809f: (0x0040, "dXATemplateTimeStamp", "ms-Exch-DXA-Template-TimeStamp", 2, None, None, None),
0x80a0: (0x0003, "dXATypes", "ms-Exch-DXA-Types", 2, "PidLidEmail3DisplayName", "dispidEmail3DisplayName", None),
0x80a1: (0x101f, "dXAUnConfContainerList", "ms-Exch-DXA-UnConf-Container-List", 2, None, None, None),
0x80a2: (0x0003, "encapsulationMethod", "ms-Exch-Encapsulation-Method", 2, "PidLidEmail3AddressType", "dispidEmail3AddrType", None),
0x80a3: (0x000b, "encrypt", "ms-Exch-Encrypt", 2, "PidLidEmail3EmailAddress", "dispidEmail3EmailAddress", None),
0x80a4: (0x000b, "expandDLsLocally", "ms-Exch-Expand-DLs-Locally", 2, "PidLidEmail3OriginalDisplayName", "dispidEmail3OriginalDisplayName", None),
0x80a5: (0x101f, "exportContainers", "ms-Exch-Export-Containers", 2, "PidLidEmail3OriginalEntryId", "dispidEmail3OriginalEntryID", None),
0x80a6: (0x000b, "exportCustomRecipients", "ms-Exch-Export-Custom-Recipients", 2, None, None, None),
0x80a7: (0x000b, "extendedCharsAllowed", "Extended-Chars-Allowed", 3, None, None, None),
0x80a8: (0x1102, "extensionData", "ms-Exch-Extension-Data", 2, None, None, None),
0x80a9: (0x101f, "extensionName", "Extension-Name", 3, None, None, None),
0x80ac: (0x0102, "fileVersion", "ms-Exch-File-Version", 2, None, None, None),
0x80ad: (0x000b, "filterLocalAddresses", "ms-Exch-Filter-Local-Addresses", 2, None, None, None),
0x80af: (0x0003, "garbageCollPeriod", "Garbage-Coll-Period", 1, None, None, None),
0x80b0: (0x001f, "gatewayLocalCred", "ms-Exch-Gateway-Local-Cred", 2, None, None, None),
0x80b1: (0x001f, "gatewayLocalDesig", "ms-Exch-Gateway-Local-Desig", 2, None, None, None),
0x80b2: (0x101f, "gatewayProxy", "ms-Exch-Gateway-Proxy", 2, "PidLidFax1AddressType", "dispidFax1AddrType", None),
0x80b3: (0x0102, "gatewayRoutingTree", "ms-Exch-Gateway-Routing-Tree", 2, "PidLidFax1EmailAddress", "dispidFax1EmailAddress", None),
0x80b4: (0x0040, "gWARTLastModified", "ms-Exch-GWART-Last-Modified", 2, "PidLidFax1OriginalDisplayName", "dispidFax1OriginalDisplayName", None),
0x80b5: (0x000d, "hasPartialReplicaNCs", "Has-Partial-Replica-NCs", 3, "PidLidFax1OriginalEntryId", "dispidFax1OriginalEntryID", None),
0x80b6: (0x000d, "hasMasterNCs", "Has-Master-NCs", 3, None, None, None),
0x80b7: (0x0003, "heuristics", "ms-Exch-Heuristics", 1, None, None, None),
0x80b8: (0x000b, "hideDLMembership", "ms-Exch-Hide-DL-Membership", 1, None, None, "HideDLMembership"),
0x80ba: (0x001f, "importContainer", "ms-Exch-Import-Container", 2, None, None, None),
0x80bc: (0x101f, "inboundSites", "ms-Exch-Inbound-Sites", 2, None, None, None),
0x80bd: (0x0003, "instanceType", "Instance-Type", 1, None, None, None),
0x80be: (0x101f, "internationalISDNNumber", "International-ISDN-Number", 3, None, None, None),
0x80bf: (0x0102, "invocationId", "Invocation-Id", 3, None, None, None),
0x80c0: (0x000b, "isDeleted", "Is-Deleted", 1, None, None, None),
0x80c1: (0x000b, "isSingleValued", "Is-Single-Valued", 3, None, None, None),
0x80c2: (0x1102, "kCCStatus", "ms-Exch-KCC-Status", 2, "PidLidFax2AddressType", "dispidFax2AddrType", None),
0x80c3: (0x101f, "knowledgeInformation", "Knowledge-Information", 3, "PidLidFax2EmailAddress", "dispidFax2EmailAddress", None),
0x80c4: (0x0003, "lineWrap", "ms-Exch-Line-Wrap", 2, "PidLidFax2OriginalDisplayName", "dispidFax2OriginalDisplayName", None),
0x80c5: (0x0003, "linkID", "Link-ID", 3, "PidLidFax2OriginalEntryId", "dispidFax2OriginalEntryID", None),
0x80c6: (0x001f, "localBridgeHead", "ms-Exch-Local-Bridge-Head", 2, None, None, None),
0x80c7: (0x001f, "localBridgeHeadAddress", "ms-Exch-Local-Bridge-Head-Address", 2, None, None, None),
0x80c8: (0x000b, "localInitialTurn", "ms-Exch-Local-Initial-Turn", 2, None, None, None),
0x80ca: (0x001f, "logFilename", "ms-Exch-Log-Filename", 2, None, None, None),
0x80cb: (0x0003, "logRolloverInterval", "ms-Exch-Log-Rollover-Interval", 2, None, None, None),
0x80ce: (0x0003, "mAPIID", "MAPI-ID", 3, None, None, None),
0x80cf: (0x0003, "mDBBackoffInterval", "ms-Exch-MDB-Backoff-Interval", 2, None, None, None),
0x80d0: (0x0003, "mDBMsgTimeOutPeriod", "ms-Exch-MDB-Msg-Time-Out-Period", 2, None, None, None),
0x80d1: (0x0003, "mDBOverQuotaLimit", "ms-Exch-MDB-Over-Quota-Limit", 1, None, None, None),
0x80d2: (0x0003, "mDBStorageQuota", "ms-Exch-MDB-Storage-Quota", 1, "PidLidFax3AddressType", "dispidFax3AddrType", None),
0x80d3: (0x0003, "mDBUnreadLimit", "ms-Exch-MDB-Unread-Limit", 2, "PidLidFax3EmailAddress", "dispidFax3EmailAddress", None),
0x80d4: (0x000b, "mDBUseDefaults", "ms-Exch-MDB-Use-Defaults", 1, "PidLidFax3OriginalDisplayName", "dispidFax3OriginalDisplayName", None),
0x80d5: (0x000b, "messageTrackingEnabled", "ms-Exch-Message-Tracking-Enabled", 2, "PidLidFax3OriginalEntryId", "dispidFax3OriginalEntryID", None),
0x80d6: (0x000b, "monitorClock", "ms-Exch-Monitor-Clock", 2, None, None, None),
0x80d7: (0x000b, "monitorServers", "ms-Exch-Monitor-Servers", 2, None, None, None),
0x80d8: (0x000b, "monitorServices", "ms-Exch-Monitor-Services", 2, "PidLidFreeBusyLocation", "dispidFreeBusyLocation", None),
0x80d9: (0x101f, "monitoredConfigurations", "ms-Exch-Monitored-Configurations", 2, None, None, None),
0x80da: (0x101f, "monitoredServers", "ms-Exch-Monitored-Servers", 2, "PidLidHomeAddressCountryCode", "dispidHomeAddressCountryCode", None),
0x80db: (0x101f, "monitoredServices", "ms-Exch-Monitored-Services", 2, "PidLidWorkAddressCountryCode", "dispidWorkAddressCountryCode", None),
0x80dc: (0x0003, "monitoringAlertDelay", "ms-Exch-Monitoring-Alert-Delay", 2, "PidLidOtherAddressCountryCode", "dispidOtherAddressCountryCode", None),
0x80dd: (0x0003, "monitoringAlertUnits", "ms-Exch-Monitoring-Alert-Units", 2, "PidLidAddressCountryCode", "dispidAddressCountryCode", None),
0x80de: (0x0003, "monitoringAvailabilityStyle", "ms-Exch-Monitoring-Availability-Style", 2, "PidLidBirthdayLocal", "dispidApptBirthdayLocal", None),
0x80df: (0x0102, "monitoringAvailabilityWindow", "ms-Exch-Monitoring-Availability-Window", 2, "PidLidWeddingAnniversaryLocal", "dispidApptAnniversaryLocal", None),
0x80e0: (0x101f, "monitoringCachedViaMail", "ms-Exch-Monitoring-Cached-Via-Mail", 2, "PidLidIsContactLinked", "dispidIsContactLinked", None),
0x80e1: (0x101f, "monitoringCachedViaRPC", "ms-Exch-Monitoring-Cached-Via-RPC", 2, None, None, None),
0x80e2: (0x1102, "monitoringEscalationProcedure", "ms-Exch-Monitoring-Escalation-Procedure", 2, "PidLidContactLinkedGlobalAddressListEntryId", "dispidContactLinkedGALEntryID", None),
0x80e3: (0x0003, "monitoringHotsitePollInterval", "ms-Exch-Monitoring-Hotsite-Poll-Interval", 2, "PidLidContactLinkSMTPAddressCache", "dispidContactLinkSMTPAddressCache", None),
0x80e4: (0x0003, "monitoringHotsitePollUnits", "ms-Exch-Monitoring-Hotsite-Poll-Units", 2, None, None, None),
0x80e5: (0x0003, "monitoringMailUpdateInterval", "ms-Exch-Monitoring-Mail-Update-Interval", 2, "PidLidContactLinkLinkRejectHistory", "dispidContactLinkLinkRejectHistory", None),
0x80e6: (0x0003, "monitoringMailUpdateUnits", "ms-Exch-Monitoring-Mail-Update-Units", 2, "PidLidContactLinkGlobalAddressListLinkState", "dispidContactLinkGALLinkState", None),
0x80e7: (0x0003, "monitoringNormalPollInterval", "ms-Exch-Monitoring-Normal-Poll-Interval", 2, None, None, None),
0x80e8: (0x0003, "monitoringNormalPollUnits", "ms-Exch-Monitoring-Normal-Poll-Units", 2, "PidLidContactLinkGlobalAddressListLinkId", "dispidContactLinkGALLinkID", None),
0x80e9: (0x101f, "monitoringRecipients", "ms-Exch-Monitoring-Recipients", 2, None, None, None),
0x80ea: (0x101f, "monitoringRecipientsNDR", "ms-Exch-Monitoring-Recipients-NDR", 2, None, None, None),
0x80eb: (0x0003, "monitoringRPCUpdateInterval", "ms-Exch-Monitoring-RPC-Update-Interval", 2, None, None, None),
0x80ec: (0x0003, "monitoringRPCUpdateUnits", "ms-Exch-Monitoring-RPC-Update-Units", 2, None, None, None),
0x80ed: (0x0003, "monitoringWarningDelay", "ms-Exch-Monitoring-Warning-Delay", 2, None, None, None),
0x80ee: (0x0003, "monitoringWarningUnits", "ms-Exch-Monitoring-Warning-Units", 2, None, None, None),
0x80ef: (0x001f, "mTALocalCred", "ms-Exch-MTA-Local-Cred", 2, None, None, None),
0x80f0: (0x001f, "mTALocalDesig", "ms-Exch-MTA-Local-Desig", 2, None, None, None),
0x80f1: (0x0102, "nAddress", "ms-Exch-N-Address", 2, None, None, None),
0x80f2: (0x0003, "nAddressType", "ms-Exch-N-Address-Type", 2, None, None, None),
0x80f4: (0x0003, "numOfOpenRetries", "ms-Exch-Num-Of-Open-Retries", 2, None, None, None),
0x80f5: (0x0003, "numOfTransferRetries", "ms-Exch-Num-Of-Transfer-Retries", 2, None, None, None),
0x80f6: (0x0003, "objectClassCategory", "Object-Class-Category", 3, None, None, None),
0x80f7: (0x0003, "objectVersion", "Object-Version", 3, None, None, None),
0x80f8: (0x101f, "offLineABContainers", "ms-Exch-Off-Line-AB-Containers", 2, None, None, None),
0x80f9: (0x0102, "offLineABSchedule", "ms-Exch-Off-Line-AB-Schedule", 2, None, None, None),
0x80fa: (0x001f, "offLineABServer", "ms-Exch-Off-Line-AB-Server", 2, None, None, None),
0x80fb: (0x0003, "offLineABStyle", "ms-Exch-Off-Line-AB-Style", 2, None, None, None),
0x80fd: (0x0102, "oMObjectClass", "OM-Object-Class", 3, None, None, None),
0x80fe: (0x0003, "oMSyntax", "OM-Syntax", 1, None, None, None),
0x80ff: (0x000b, "oOFReplyToOriginator", "ms-Exch-OOF-Reply-To-Originator", 1, None, None, None),
0x8100: (0x0003, "openRetryInterval", "ms-Exch-Open-Retry-Interval", 2, None, None, None),
0x8101: (0x101f, "o", "Organization-Name", 1, "PidLidTaskStatus", "dispidTaskStatus", None),
0x8102: (0x101f, "ou", "Organizational-Unit-Name", 1, "PidLidPercentComplete", "dispidPercentComplete", None),
0x8103: (0x0102, "originalDisplayTable", "Original-Display-Table", 3, "PidLidTeamTask", "dispidTeamTask", None),
0x8104: (0x0102, "originalDisplayTableMSDOS", "Original-Display-Table-MSDOS", 3, "PidLidTaskStartDate", "dispidTaskStartDate", None),
0x8105: (0x101f, "outboundSites", "ms-Exch-Outbound-Sites", 2, "PidLidTaskDueDate", "dispidTaskDueDate", None),
0x8106: (0x0102, "pSelector", "ms-Exch-P-Selector", 2, None, None, None),
0x8107: (0x0102, "pSelectorInbound", "ms-Exch-P-Selector-Inbound", 2, "PidLidTaskResetReminder", "dispidTaskResetReminder", None),
0x8108: (0x0102, "perMsgDialogDisplayTable", "Per-Msg-Dialog-Display-Table", 3, "PidLidTaskAccepted", "dispidTaskAccepted", None),
0x8109: (0x0102, "perRecipDialogDisplayTable", "Per-Recip-Dialog-Display-Table", 3, "PidLidTaskDeadOccurrence", "dispidTaskDeadOccur", None),
0x810c: (0x101f, "postalAddress", "Postal-Address", 3, None, None, None),
0x810e: (0x001f, "pRMD", "ms-Exch-PRMD", 2, None, None, None),
0x810f: (0x001f, "proxyGeneratorDLL", "ms-Exch-Proxy-Generator-DLL", 2, "PidLidTaskDateCompleted", "dispidTaskDateCompleted", None),
0x8110: (0x000d, "publicDelegatesBL", "ms-Exch-Public-Delegates-BL", 2, "PidLidTaskActualEffort", "dispidTaskActualEffort", None),
0x8111: (0x0102, "quotaNotificationSchedule", "ms-Exch-Quota-Notification-Schedule", 2, "PidLidTaskEstimatedEffort", "dispidTaskEstimatedEffort", None),
0x8112: (0x0003, "quotaNotificationStyle", "ms-Exch-Quota-Notification-Style", 2, "PidLidTaskVersion", "dispidTaskVersion", None),
0x8113: (0x0003, "rangeLower", "Range-Lower", 1, "PidLidTaskState", "dispidTaskState", None),
0x8114: (0x0003, "rangeUpper", "Range-Upper", 1, None, None, None),
0x8115: (0x001f, "rASCallbackNumber", "ms-Exch-RAS-Callback-Number", 2, "PidLidTaskLastUpdate", "dispidTaskLastUpdate", None),
0x8116: (0x001f, "rASPhoneNumber", "ms-Exch-RAS-Phone-Number", 2, "PidLidTaskRecurrence", "dispidTaskRecur", None),
0x8117: (0x001f, "rASPhonebookEntryName", "ms-Exch-RAS-Phonebook-Entry-Name", 2, "PidLidTaskAssigners", "dispidTaskMyDelegators", None),
0x8118: (0x001f, "rASRemoteSRVRName", "ms-Exch-RAS-Remote-SRVR-Name", 2, None, None, None),
0x8119: (0x1102, "registeredAddress", "Registered-Address", 3, "PidLidTaskStatusOnComplete", "dispidTaskSOC", None),
0x811a: (0x001f, "remoteBridgeHead", "ms-Exch-Remote-Bridge-Head", 2, "PidLidTaskHistory", "dispidTaskHistory", None),
0x811b: (0x001f, "remoteBridgeHeadAddress", "ms-Exch-Remote-Bridge-Head-Address", 2, "PidLidTaskUpdates", "dispidTaskUpdates", None),
0x811d: (0x001f, "remoteSite", "ms-Exch-Remote-Site", 2, None, None, None),
0x811e: (0x0003, "replicationSensitivity", "ms-Exch-Replication-Sensitivity", 2, "PidLidTaskFCreator", "dispidTaskFCreator", None),
0x811f: (0x0003, "replicationStagger", "ms-Exch-Replication-Stagger", 2, "PidLidTaskOwner", "dispidTaskOwner", None),
0x8120: (0x000b, "reportToOriginator", "ms-Exch-Report-To-Originator", 1, "PidLidTaskMultipleRecipients", "dispidTaskMultRecips", None),
0x8121: (0x000b, "reportToOwner", "ms-Exch-Report-To-Owner", 1, "PidLidTaskAssigner", "dispidTaskDelegator", None),
0x8122: (0x0003, "reqSeq", "ms-Exch-Req-Seq", 2, "PidLidTaskLastUser", "dispidTaskLastUser", None),
0x8123: (0x000d, "responsibleLocalDXA", "ms-Exch-Responsible-Local-DXA", 2, "PidLidTaskOrdinal", "dispidTaskOrdinal", None),
0x8124: (0x001f, "ridServer", "ms-Exch-Rid-Server", 2, "PidLidTaskNoCompute", "dispidTaskNoCompute", None),
0x8125: (0x101f, "roleOccupant", "Role-Occupant", 3, "PidLidTaskLastDelegate", "dispidTaskLastDelegate", None),
0x8126: (0x101f, "routingList", "ms-Exch-Routing-List", 2, "PidLidTaskFRecurring", "dispidTaskFRecur", None),
0x8127: (0x0003, "rTSCheckpointSize", "ms-Exch-RTS-Checkpoint-Size", 2, "PidLidTaskRole", "dispidTaskRole", None),
0x8128: (0x0003, "rTSRecoveryTimeout", "ms-Exch-RTS-Recovery-Timeout", 2, None, None, None),
0x8129: (0x0003, "rTSWindowSize", "ms-Exch-RTS-Window-Size", 2, "PidLidTaskOwnership", "dispidTaskOwnership", None),
0x812a: (0x101f, "runsOn", "ms-Exch-Runs-On", 2, "PidLidTaskAcceptanceState", "dispidTaskDelegValue", None),
0x812b: (0x0102, "sSelector", "ms-Exch-S-Selector", 1, None, None, None),
0x812c: (0x0102, "sSelectorInbound", "ms-Exch-S-Selector-Inbound", 1, "PidLidTaskFFixOffline", "dispidTaskFFixOffline", None),
0x812d: (0x0003, "searchFlags", "Search-Flags", 3, None, None, None),
0x812e: (0x1102, "searchGuide", "Search-Guide", 3, None, None, None),
0x812f: (0x101f, "seeAlso", "See-Also", 3, None, None, None),
0x8130: (0x101f, "serialNumber", "Serial-Number", 3, None, None, None),
0x8131: (0x0003, "serviceActionFirst", "ms-Exch-Service-Action-First", 2, None, None, None),
0x8132: (0x0003, "serviceActionOther", "ms-Exch-Service-Action-Other", 2, None, None, None),
0x8133: (0x0003, "serviceActionSecond", "ms-Exch-Service-Action-Second", 2, None, None, None),
0x8134: (0x0003, "serviceRestartDelay", "ms-Exch-Service-Restart-Delay", 2, None, None, None),
0x8135: (0x001f, "serviceRestartMessage", "ms-Exch-Service-Restart-Message", 2, None, None, None),
0x8136: (0x0003, "sessionDisconnectTimer", "ms-Exch-Session-Disconnect-Timer", 2, None, None, None),
0x8138: (0x101f, "siteProxySpace", "ms-Exch-Site-Proxy-Space", 2, None, None, None),
0x8139: (0x0040, "spaceLastComputed", "ms-Exch-Space-Last-Computed", 2, "PidLidTaskCustomFlags", "dispidTaskCustomFlags", None),
0x813a: (0x001f, "street", "Street-Address", 1, None, None, None),
0x813b: (0x101f, "subRefs", "Sub-Refs", 1, None, None, None),
0x813c: (0x0003, "submissionContLength", "ms-Exch-Submission-Cont-Length", 1, None, None, None),
0x813d: (0x1102, "supportedApplicationContext", "Supported-Application-Context", 3, None, None, None),
0x813e: (0x000d, "supportingStack", "ms-Exch-Supporting-Stack", 2, None, None, None),
0x813f: (0x000d, "supportingStackBL", "ms-Exch-Supporting-Stack-BL", 2, None, None, None),
0x8140: (0x0102, "tSelector", "ms-Exch-T-Selector", 2, None, None, None),
0x8142: (0x101f, "targetMTAs", "ms-Exch-Target-MTAs", 2, None, None, None),
0x8143: (0x1102, "teletexTerminalIdentifier", "Teletex-Terminal-Identifier", 3, None, None, None),
0x8144: (0x0003, "tempAssocThreshold", "ms-Exch-Temp-Assoc-Threshold", 2, None, None, None),
0x8145: (0x0003, "tombstoneLifetime", "Tombstone-Lifetime", 3, None, None, None),
0x8146: (0x001f, "trackingLogPathName", "ms-Exch-Tracking-Log-Path-Name", 2, None, None, None),
0x8147: (0x0003, "transRetryMins", "ms-Exch-Trans-Retry-Mins", 2, None, None, None),
0x8148: (0x0003, "transTimeoutMins", "ms-Exch-Trans-Timeout-Mins", 2, None, None, None),
0x8149: (0x0003, "transferRetryInterval", "ms-Exch-Transfer-Retry-Interval", 2, None, None, None),
0x814a: (0x0003, "transferTimeoutNonUrgent", "ms-Exch-Transfer-Timeout-Non-Urgent", 2, None, None, None),
0x814b: (0x0003, "transferTimeoutNormal", "ms-Exch-Transfer-Timeout-Normal", 2, None, None, None),
0x814c: (0x0003, "transferTimeoutUrgent", "ms-Exch-Transfer-Timeout-Urgent", 2, None, None, None),
0x814d: (0x0003, "translationTableUsed", "ms-Exch-Translation-Table-Used", 2, None, None, None),
0x814e: (0x000b, "transportExpeditedData", "ms-Exch-Transport-Expedited-Data", 2, None, None, None),
0x814f: (0x0003, "trustLevel", "ms-Exch-Trust-Level", 2, None, None, None),
0x8150: (0x0003, "turnRequestThreshold", "ms-Exch-Turn-Request-Threshold", 2, None, None, None),
0x8151: (0x000b, "twoWayAlternateFacility", "ms-Exch-Two-Way-Alternate-Facility", 2, None, None, None),
0x8152: (0x000d, "unauthOrigBL", "ms-Exch-Unauth-Orig-BL", 1, None, None, None),
0x8153: (0x1102, "userPassword", "User-Password", 3, None, None, None),
0x8154: (0x0003, "uSNCreated", "USN-Created", 1, None, None, None),
0x8155: (0x0003, "uSNDSALastObjRemoved", "USN-DSA-Last-Obj-Removed", 3, None, None, None),
0x8156: (0x0003, "uSNLastObjRem", "USN-Last-Obj-Rem", 1, None, None, None),
0x8157: (0x0003, "uSNSource", "USN-Source", 3, None, None, None),
0x8158: (0x101f, "x121Address", "X121-Address", 3, None, None, None),
0x8159: (0x0102, "x25CallUserDataIncoming", "ms-Exch-X25-Call-User-Data-Incoming", 2, None, None, None),
0x815a: (0x0102, "x25CallUserDataOutgoing", "ms-Exch-X25-Call-User-Data-Outgoing", 2, None, None, None),
0x815b: (0x0102, "x25FacilitiesDataIncoming", "ms-Exch-X25-Facilities-Data-Incoming", 2, None, None, None),
0x815c: (0x0102, "x25FacilitiesDataOutgoing", "ms-Exch-X25-Facilities-Data-Outgoing", 2, None, None, None),
0x815d: (0x0102, "x25LeasedLinePort", "ms-Exch-X25-Leased-Line-Port", 2, None, None, None),
0x815e: (0x000b, "x25LeasedOrSwitched", "ms-Exch-X25-Leased-Or-Switched", 2, None, None, None),
0x815f: (0x001f, "x25RemoteMTAPhone", "ms-Exch-X25-Remote-MTA-Phone", 2, None, None, None),
0x8160: (0x0102, "x400AttachmentType", "ms-Exch-X400-Attachment-Type", 2, None, None, None),
0x8161: (0x0003, "x400SelectorSyntax", "ms-Exch-X400-Selector-Syntax", 2, None, None, None),
0x8163: (0x0003, "xMITTimeoutNonUrgent", "ms-Exch-XMIT-Timeout-Non-Urgent", 2, None, None, None),
0x8164: (0x0003, "xMITTimeoutNormal", "ms-Exch-XMIT-Timeout-Normal", 2, None, None, None),
0x8165: (0x0003, "xMITTimeoutUrgent", "ms-Exch-XMIT-Timeout-Urgent", 2, None, None, None),
0x8166: (0x0102, "siteFolderGUID", "ms-Exch-Site-Folder-GUID", 2, None, None, None),
0x8167: (0x001f, "siteFolderServer", "ms-Exch-Site-Folder-Server", 2, None, None, None),
0x8168: (0x0003, "replicationMailMsgSize", "ms-Exch-Replication-Mail-Msg-Size", 2, None, None, None),
0x8169: (0x0102, "maximumObjectID", "ms-Exch-Maximum-Object-ID", 2, None, None, None),
0x8170: (0x101f, "networkAddress", "Network-Address", 1, "PidTagAddressBookNetworkAddress", "PR_EMS_AB_NETWORK_ADDRESS", "AbNetworkAddress"),
0x8171: (0x001f, "lDAPDisplayName", "LDAP-Display-Name", 1, None, None, None),
0x8174: (0x101f, "bridgeheadServers", "ms-Exch-Bridgehead-Servers", 2, None, None, None),
0x8175: (0x101f, "url", "WWW-Page-Other", 1, None, None, None),
0x8177: (0x001f, "pOPContentFormat", "ms-Exch-POP-Content-Format", 2, None, None, None),
0x8178: (0x0003, "languageCode", "ms-Exch-Language", 2, None, None, None),
0x8179: (0x001f, "pOPCharacterSet", "ms-Exch-POP-Character-Set", 2, None, None, None),
0x817a: (0x0003, "USNIntersite", "USN-Intersite", 3, None, None, None),
0x817f: (0x0003, "enabledProtocols", "ms-Exch-Enabled-Protocols", 1, None, None, None),
0x8180: (0x0102, "connectionListFilter", "ms-Exch-Connection-List-Filter", 2, None, None, None),
0x8181: (0x101f, "availableAuthorizationPackages", "ms-Exch-Available-Authorization-Packages", 2, None, None, None),
0x8182: (0x101f, "characterSetList", "ms-Exch-Character-Set-List", 2, None, None, None),
0x8183: (0x000b, "useSiteValues", "ms-Exch-Use-Site-Values", 2, None, None, None),
0x8184: (0x101f, "enabledAuthorizationPackages", "ms-Exch-Enabled-Authorization-Packages", 2, None, None, None),
0x8185: (0x001f, "characterSet", "ms-Exch-Character-Set", 2, None, None, None),
0x8186: (0x0003, "contentType", "ms-Exch-Content-Type", 2, None, None, None),
0x8187: (0x000b, "anonymousAccess", "ms-Exch-Anonymous-Access", 2, None, None, None),
0x8188: (0x0102, "controlMsgFolderID", "ms-Exch-Control-Msg-Folder-ID", 2, None, None, None),
0x8189: (0x001f, "usenetSiteName", "ms-Exch-Usenet-Site-Name", 2, None, None, None),
0x818a: (0x0102, "controlMsgRules", "ms-Exch-Control-Msg-Rules", 2, None, None, None),
0x818b: (0x001f, "availableDistributions", "ms-Exch-Available-Distributions", 2, None, None, None),
0x818f: (0x0003, "outgoingMsgSizeLimit", "ms-Exch-Outgoing-Msg-Size-Limit", 2, None, None, None),
0x8190: (0x0003, "incomingMsgSizeLimit", "ms-Exch-Incoming-Msg-Size-Limit", 2, None, None, None),
0x8191: (0x000b, "sendTNEF", "ms-Exch-Send-TNEF", 2, None, None, None),
0x819b: (0x000b, "hTTPPubGAL", "ms-Exch-HTTP-Pub-GAL", 2, None, None, None),
0x819c: (0x0003, "hTTPPubGALLimit", "ms-Exch-HTTP-Pub-GAL-Limit", 2, None, None, None),
0x819e: (0x1102, "hTTPPubPF", "ms-Exch-HTTP-Pub-PF", 2, None, None, None),
0x81a1: (0x001f, "x500RDN", "ms-Exch-X500-RDN", 2, None, None, None),
0x81a2: (0x001f, "dnQualifier", "ms-Exch-X500-NC", 2, None, None, None),
0x81a3: (0x101f, "referralList", "ms-Exch-Referral-List", 2, None, None, None),
0x81a8: (0x000b, "enabledProtocolCfg", "ms-Exch-Enabled-Protocol-Cfg", 2, None, None, None),
0x81a9: (0x101f, "hTTPPubABAttributes", "ms-Exch-HTTP-Pub-AB-Attributes", 2, None, None, None),
0x81ab: (0x101f, "hTTPServers", "ms-Exch-HTTP-Servers", 2, None, None, None),
0x81b1: (0x000b, "proxyGenerationEnabled", "Proxy-Generation-Enabled", 3, None, None, None),
0x81b2: (0x0102, "rootNewsgroupsFolderID", "ms-Exch-Root-Newsgroups-Folder-ID", 2, None, None, None),
0x81b4: (0x0003, "connectionListFilterType", "ms-Exch-Connection-List-Filter-Type", 2, None, None, None),
0x81b5: (0x0003, "portNumber", "ms-Exch-Port-Number", 2, None, None, None),
0x81b6: (0x101f, "protocolSettings", "ms-Exch-Protocol-Settings", 1, None, None, None),
0x81c2: (0x0040, "promoExpiration", "ms-Exch-Promo-Expiration", 1, None, None, None),
0x81c3: (0x101f, "disabledGatewayProxy", "ms-Exch-Disabled-Gateway-Proxy", 2, None, None, None),
0x81c4: (0x0102, "compromisedKeyList", "ms-Exch-Compromised-Key-List", 2, None, None, None),
0x81c5: (0x001f, "iNSAdmin", "ms-Exch-INSAdmin", 2, None, None, None),
0x81c7: (0x101f, "objViewContainers", "ms-Exch-Obj-View-Containers", 2, None, None, None),
0x8202: (0x001f, "name", "RDN", 1, "PidLidAppointmentSequenceTime", "dispidApptSeqTime", None),
0x8c1c: (0x0102, "msExchMimeTypes", "ms-Exch-Mime-Types", 2, None, None, None),
0x8c1d: (0x0003, "lDAPSearchCfg", "ms-Exch-LDAP-Search-Cfg", 2, None, None, None),
0x8c21: (0x000b, "Enabled", "Enabled", 3, None, None, None),
0x8c22: (0x000b, "preserveInternetContent", "ms-Exch-Preserve-Internet-Content", 2, None, None, None),
0x8c24: (0x000b, "clientAccessEnabled", "ms-Exch-Client-Access-Enabled", 2, None, None, None),
0x8c25: (0x000b, "requireSSL", "ms-Exch-Require-SSL", 2, None, None, None),
0x8c26: (0x001f, "anonymousAccount", "ms-Exch-Anonymous-Account", 2, None, None, None),
0x8c27: (0x0102, "certificateChainV3", "ms-Exch-Certificate-Chain-V3", 2, None, None, None),
0x8c28: (0x0102, "certificateRevocationListV3", "ms-Exch-Certificate-Revocation-List-V3", 2, None, None, None),
0x8c29: (0x0102, "certificateRevocationListV1", "ms-Exch-Certificate-Revocation-List-V1", 2, None, None, None),
0x8c30: (0x1102, "crossCertificateCRL", "ms-Exch-Cross-Certificate-CRL", 2, None, None, None),
0x8c31: (0x000b, "sendEMailMessage", "ms-Exch-Send-EMail-Message", 2, None, None, None),
0x8c32: (0x000b, "enableCompatibility", "ms-Exch-Enable-Compatibility", 2, None, None, None),
0x8c33: (0x101f, "sMIMEAlgListNA", "ms-Exch-SMIME-Alg-List-NA", 2, None, None, None),
0x8c34: (0x101f, "sMIMEAlgListOther", "ms-Exch-SMIME-Alg-List-Other", 2, None, None, None),
0x8c35: (0x001f, "sMIMEAlgSelectedNA", "ms-Exch-SMIME-Alg-Selected-NA", 2, None, None, None),
0x8c36: (0x001f, "sMIMEAlgSelectedOther", "ms-Exch-SMIME-Alg-Selected-Other", 2, None, None, None),
0x8c37: (0x000b, "defaultMessageFormat", "ms-Exch-Default-Message-Format", 2, None, None, None),
0x8c38: (0x001f, "type", "ms-Exch-Type", 1, None, None, None),
0x8c3a: (0x0003, "doOABVersion", "ms-Exch-Do-OAB-Version", 2, None, None, None),
0x8c45: (0x1102, "attributeCertificate", "ms-Exch-Attribute-Certificate", 1, None, None, None),
0x8c46: (0x1102, "deltaRevocationList", "Delta-Revocation-List", 3, None, None, None),
0x8c47: (0x1102, "securityPolicy", "ms-Exch-Security-Policy", 2, None, None, None),
0x8c48: (0x000b, "supportSMIMESignatures", "ms-Exch-Support-SMIME-Signatures", 2, None, None, None),
0x8c49: (0x000b, "delegateUser", "ms-Exch-Delegate-User", 2, None, None, None),
0x8c50: (0x000b, "listPublicFolders", "ms-Exch-List-Public-Folders", 2, None, None, None),
0x8c51: (0x101f, "msExchLabeledURI", "ms-Exch-LabeledURI", 1, None, None, None),
0x8c52: (0x000b, "returnExactMsgSize", "ms-Exch-Return-Exact-Msg-Size", 2, None, None, None),
0x8c53: (0x001f, "generationQualifier", "Generation-Qualifier", 3, None, None, None),
0x8c54: (0x001f, "msExchHouseIdentifier", "ms-Exch-House-Identifier", 3, None, None, None),
0x8c55: (0x0102, "supportedAlgorithms", "ms-Exch-Supported-Algorithms", 1, None, None, None),
0x8c56: (0x001f, "dmdName", "DMD-Name", 3, None, None, None),
0x8c57: (0x001f, "extensionAttribute11", "ms-Exch-Extension-Attribute-11", 1, "PidTagAddressBookExtensionAttribute11", "PR_EMS_AB_EXTENSION_ATTRIBUTE_11", None),
0x8c58: (0x001f, "extensionAttribute12", "ms-Exch-Extension-Attribute-12", 1, "PidTagAddressBookExtensionAttribute12", "PR_EMS_AB_EXTENSION_ATTRIBUTE_12", None),
0x8c59: (0x001f, "extensionAttribute13", "ms-Exch-Extension-Attribute-13", 1, "PidTagAddressBookExtensionAttribute13", "PR_EMS_AB_EXTENSION_ATTRIBUTE_13", None),
0x8c60: (0x001f, "extensionAttribute14", "ms-Exch-Extension-Attribute-14", 1, "PidTagAddressBookExtensionAttribute14", "PR_EMS_AB_EXTENSION_ATTRIBUTE_14", None),
0x8c61: (0x001f, "extensionAttribute15", "ms-Exch-Extension-Attribute-15", 1, "PidTagAddressBookExtensionAttribute15", "PR_EMS_AB_EXTENSION_ATTRIBUTE_15", None),
0x8c62: (0x0003, "replicatedObjectVersion", "ms-Exch-Replicated-Object-Version", 1, None, None, None),
0x8c64: (0x001f, "forwardingAddress", "ms-Exch-Forwarding-Address", 2, None, None, None),
0x8c65: (0x0102, "formData", "ms-Exch-Form-Data", 2, None, None, None),
0x8c66: (0x001f, "oWAServer", "ms-Exch-OWA-Server", 2, None, None, None),
0x8c67: (0x001f, "employeeNumber", "Employee-Number", 3, None, None, None),
0x8c68: (0x001f, "personalPager", "ms-Exch-Telephone-Personal-Pager", 2, None, None, None),
0x8c69: (0x001f, "employeeType", "Employee-Type", 3, None, None, None),
0x8c6a: (0x1102, "userCertificate", "X509-Cert", 1, "PidTagAddressBookX509Certificate", "PR_EMS_AB_X509_CERT", "Certificate"),
0x8c6b: (0x001f, "personalTitle", "Personal-Title", 3, None, None, None),
0x8c6c: (0x001f, "language", "ms-Exch-Language-ISO639", 2, None, None, None),
0x8c6d: (0x0102, "objectGUID", "Object-Guid", 1, "PidTagAddressBookObjectGuid", "PR_EMS_AB_OBJECT_GUID", "ObjectGuid"),
0x8c6e: (0x101f, "otherPager", "Phone-Pager-Other", 1, None, None, None),
0x8c73: (0x0102, "msExchMailboxGuid", "ms-Exch-Mailbox-Guid", 1, None, None, None),
0x8c75: (0x0102, "msExchMasterAccountSid", "ms-Exch-Master-Account-Sid", 1, None, None, None),
0x8c7e: (0x001f, "msExchFBURL", "ms-Exch-FB-URL", 1, None, None, None),
0x8c7f: (0x001f, "msExchMailboxUrl", "ms-Exch-Mailbox-Url", 1, None, None, None),
0x8c81: (0x001f, "textEncodedORAddress", "Text-Encoded-OR-Address", 1, None, None, None),
0x8c82: (0x001f, "msExchPfRootUrl", "ms-Exch-Pf-Root-Url", 1, None, None, None),
0x8c8e: (0x001f, "msDS-PhoneticFirstName", "ms-DS-Phonetic-First-Name", 1, "PidTagAddressBookPhoneticGivenName", "PR_EMS_AB_PHONETIC_GIVEN_NAME", None),
0x8c8f: (0x001f, "msDS-PhoneticLastName", "ms-DS-Phonetic-Last-Name", 1, "PidTagAddressBookPhoneticSurname", "PR_EMS_AB_PHONETIC_SURNAME", None),
0x8c90: (0x001f, "msDS-PhoneticDepartment", "ms-DS-Phonetic-Department", 1, "PidTagAddressBookPhoneticDepartmentName", "PR_EMS_AB_PHONETIC_DEPARTMENT_NAME", None),
0x8c91: (0x001f, "msDS-PhoneticCompanyName", "ms-DS-Phonetic-Company-Name", 1, "PidTagAddressBookPhoneticCompanyName", "PR_EMS_AB_PHONETIC_COMPANY_NAME", None),
0x8c92: (0x001f, "msDS-PhoneticDisplayName", "ms-DS-Phonetic-Display-Name", 1, "PidTagAddressBookPhoneticDisplayName", "PR_EMS_AB_PHONETIC_DISPLAY_NAME", None),
0x8c94: (0x000d, "msExchHABShowInDepartments", "ms-Exch-HAB-Show-In-Departments", 1, "PidTagAddressBookHierarchicalShowInDepartments", "PR_EMS_AB_HAB_SHOW_IN_DEPARTMENTS", None),
0x8c96: (0x101f, "msExchResourceAddressLists", "ms-Exch-Resource-Address-Lists", 1, "PidTagAddressBookRoomContainers", "PR_EMS_AB_ROOM_CONTAINERS", "AddressBookRoomContainers"),
0x8c97: (0x000d, "msExchHABShowInDepartmentsBL", "ms-Exch-HAB-Show-In-Departments-BL", 2, "PidTagAddressBookHierarchicalDepartmentMembers", "PR_EMS_AB_HAB_DEPARTMENT_MEMBERS", None),
0x8c98: (0x000d, "msExchHABRootDepartmentLink", "ms-Exch-HAB-Root-Department-Link", 1, "PidTagAddressBookHierarchicalRootDepartment", "PR_EMS_AB_HAB_ROOT_DEPARTMENT", None),
0x8c99: (0x000d, "msExchHABChildDepartmentsBL", "ms-Exch-HAB-Child-Departments-BL", 2, "PidTagAddressBookHierarchicalParentDepartment", "PR_EMS_AB_HAB_PARENT_DEPARTMENT", None),
0x8c9a: (0x000d, "msExchHABChildDepartmentsLink", "ms-Exch-HAB-Child-Departments-Link", 2, "PidTagAddressBookHierarchicalChildDepartments", "PR_EMS_AB_HAB_CHILD_DEPARTMENTS", None),
0x8c9b: (0x000d, "msExchHABRootDepartmentBL", "ms-Exch-HAB-Root-Department-BL", 2, None, None, None),
0x8c9e: (0x0102, "thumbnailPhoto", "Picture", 1, "PidTagThumbnailPhoto", "PR_EMS_AB_THUMBNAIL_PHOTO", "ThumbnailPhoto"),
0x8c9f: (0x001f, "msExchUserCulture", "ms-Exch-User-Culture", 1, None, None, None),
0x8ca0: (0x0003, "msDS-HABSeniorityIndex", "ms-DS-HAB-Seniority-Index", 1, "PidTagAddressBookSeniorityIndex", None, None),
0x8ca1: (0x000b, "msExchPhoneticSupport", "ms-Exch-Phonetic-Support", 2, None, None, None),
0x8ca2: (0x0003, "msExchMaxSafeSenders", "ms-Exch-Max-Safe-Senders", 1, None, None, None),
0x8ca3: (0x0003, "msExchMaxBlockedSenders", "ms-Exch-Max-Blocked-Senders", 1, None, None, None),
0x8ca5: (0x000d, "msExchConfigurationUnitLink", "ms-Exch-Configuration-Unit-Link", 2, None, None, None),
0x8ca6: (0x000d, "msExchConfigurationUnitBL", "ms-Exch-Configuration-Unit-BL", 1, None, None, None),
0x8ca7: (0x001f, "msExchCU", "ms-Exch-CU", 1, None, None, None),
0x8ca8: (0x001f, "msExchOURoot", "ms-Exch-OU-Root", 1, "PidTagAddressBookOrganizationalUnitRootDistinguishedName", "PR_EMS_AB_ORG_UNIT_ROOT_DN", None),
0x8ca9: (0x0003, "msExchSenderHintsEnabled", "ms-Exch-Sender-Hints-Enabled", 2, None, None, None),
0x8caa: (0x0003, "msExchSenderHintLargeAudienceThreshold", "ms-Exch-Sender-Hint-Large-Audience-Threshold", 2, None, None, None),
0x8cac: (0x101f, "msExchSenderHintTranslations", "ms-Exch-Sender-Hint-Translations", 1, "PidTagAddressBookSenderHintTranslations", "PR_EMS_AB_DL_SENDER_HINT_TRANSLATIONS_W", None),
0x8cad: (0x000d, "msExchModeratedByLink", "ms-Exch-Moderated-By-Link", 1, None, None, None),
0x8cae: (0x000d, "msExchCoManagedByLink", "ms-Exch-Co-Managed-By-Link", 1, None, None, None),
0x8caf: (0x000d, "msExchModeratedObjectsBL", "ms-Exch-Moderated-Objects-BL", 1, None, None, None),
0x8cb0: (0x000d, "msExchCoManagedObjectsBL", "ms-Exch-Co-Managed-Objects-BL", 1, None, None, None),
0x8cb1: (0x001f, "msExchArbitrationMailbox", "ms-Exch-Arbitration-Mailbox", 1, None, None, None),
0x8cb3: (0x0003, "msExchGroupJoinRestriction", "ms-Exch-Group-Join-Restriction", 1, None, None, None),
0x8cb4: (0x0003, "msExchGroupDepartRestriction", "ms-Exch-Group-Depart-Restriction", 1, None, None, None),
0x8cb5: (0x000b, "msExchEnableModeration", "ms-Exch-Enable-Moderation", 1, "PidTagAddressBookModerationEnabled", None, None),
0x8cb6: (0x0003, "msExchModerationFlags", "ms-Exch-Moderation-Flags", 1, None, None, None),
0x8cb7: (0x101f, "msExchSignupAddresses", "ms-Exch-Signup-Addresses", 1, None, None, None),
0x8cc1: (0x001f, "msExchWindowsLiveID", "ms-Exch-Windows-Live-ID", 1, None, None, None),
0x8cc2: (0x0102, "msExchUMSpokenName", "ms-Exch-UM-Spoken-Name", 1, "PidTagSpokenName", "PR_EMS_AB_UM_SPOKEN_NAME", None),
0x8cc3: (0x001f, "msExchPrivacyStatementURL", "ms-Exch-Privacy-Statement-URL", 2, None, None, None),
0x8cc4: (0x001f, "msExchControlPanelFeedbackURL", "ms-Exch-Control-Panel-Feedback-URL", 2, None, None, None),
0x8cc5: (0x001f, "msExchControlPanelHelpURL", "ms-Exch-Control-Panel-Help-URL", 2, None, None, None),
0x8cc6: (0x000b, "msExchExchangeHelpAppOnline", "ms-Exch-Exchange-Help-App-Online", 2, None, None, None),
0x8cc7: (0x001f, "msExchManagementConsoleFeedbackURL", "ms-Exch-Management-Console-Feedback-URL", 2, None, None, None),
0x8cc8: (0x001f, "msExchManagementConsoleHelpURL", "ms-Exch-Management-Console-Help-URL", 2, None, None, None),
0x8cc9: (0x001f, "msExchOWAFeedbackURL", "ms-Exch-OWA-Feedback-URL", 2, None, None, None),
0x8cca: (0x001f, "msExchOWAHelpURL", "ms-Exch-OWA-Help-URL", 2, None, None, None),
0x8ccb: (0x001f, "msExchWindowsLiveAccountURL", "ms-Exch-Windows-Live-Account-URL", 2, None, None, None),
0x8ccc: (0x0003, "msExchTransportRecipientSettingsFlags", "ms-Exch-Transport-Recipient-Settings-Flags", 1, None, None, None),
0x8ccd: (0x000b, "msExchControlPanelFeedbackEnabled", "ms-Exch-Control-Panel-Feedback-Enabled", 2, None, None, None),
0x8cce: (0x000b, "msExchManagementConsoleFeedbackEnabled", "ms-Exch-Management-Console-Feedback-Enabled", 2, None, None, None),
0x8ccf: (0x000b, "msExchOWAFeedbackEnabled", "ms-Exch-OWA-Feedback-Enabled", 2, None, None, None),
0x8cd0: (0x000b, "msExchPrivacyStatementURLEnabled", "ms-Exch-Privacy-Statement-URL-Enabled", 2, None, None, None),
0x8cd1: (0x000b, "msExchWindowsLiveAccountURLEnabled", "ms-Exch-Windows-Live-Account-URL-Enabled", 2, None, None, None),
0x8cd2: (0x000d, "msExchBypassModerationLink", "ms-Exch-Bypass-Moderation-Link", 1, None, None, None),
0x8cd3: (0x000d, "msExchBypassModerationBL", "ms-Exch-Bypass-Moderation-BL", 1, None, None, None),
0x8cd4: (0x000d, "msExchBypassModerationFromDLMembersLink", "ms-Exch-Bypass-Moderation-From-DL-Members-Link", 1, None, None, None),
0x8cd5: (0x000d, "msExchBypassModerationFromDLMembersBL", "ms-Exch-Bypass-Moderation-From-DL-Members-BL", 1, None, None, None),
0x8cd6: (0x001f, "msExchRetentionComment", "ms-Exch-Retention-Comment", 1, None, None, None),
0x8cd7: (0x001f, "msExchRetentionURL", "ms-Exch-Retention-URL", 1, None, None, None),
0x8cd8: (0x000d, "authOrig", "ms-Exch-Auth-Orig", 1, "PidTagAddressBookAuthorizedSenders", "PR_EMS_AB_AUTH_ORIG", None),
0x8cd9: (0x000d, "unauthOrig", "ms-Exch-Unauth-Orig", 1, "PidTagAddressBookUnauthorizedSenders", "PR_EMS_AB_UNAUTH_ORIG", None),
0x8cda: (0x000d, "dLMemSubmitPerms", "ms-Exch-DL-Mem-Submit-Perms", 1, "PidTagAddressBookDistributionListMemberSubmitRejected", "PR_EMS_AB_DL_MEM_SUBMIT_PERMS", None),
0x8cdb: (0x000d, "dLMemRejectPerms", "ms-Exch-DL-Mem-Reject-Perms", 1, "PidTagAddressBookDistributionListRejectMessagesFromDLMembers", "PR_EMS_AB_DL_MEM_REJECT_PERMS", None),
0x8cdc: (0x000d, "msOrg-LeadersBL", "ms-Org-Leaders-BL", 2, None, None, None),
0x8cdd: (0x000b, "msOrg-IsOrganizational", "ms-Org-Is-Organizational-Group", 1, "PidTagAddressBookHierarchicalIsHierarchicalGroup", "PR_EMS_AB_HAB_IS_HIERARCHICAL_GROUP", None),
0x8cde: (0x000d, "msOrg-Leaders", "ms-Org-Leaders", 1, None, None, None),
0x8cdf: (0x001f, "msOrg-GroupSubtypeName", "ms-Org-Group-Subtype-Name", 1, None, None, None),
0x8ce0: (0x101f, "msOrg-OtherDisplayNames", "ms-Org-Other-Display-Names", 1, None, None, None),
0x8ce2: (0x0003, "msExchGroupMemberCount", "ms-Exch-Group-Member-Count", 1, "PidTagAddressBookDistributionListMemberCount", "PR_EMS_AB_DL_TOTAL_MEMBER_COUNT", None),
0x8ce3: (0x0003, "msExchGroupExternalMemberCount", "ms-Exch-Group-External-Member-Count", 1, "PidTagAddressBookDistributionListExternalMemberCount", "PR_EMS_AB_DL_EXTERNAL_MEMBER_COUNT", None),
0x8ce5: (0x000d, "msExchDelegateListLink", "ms-Exch-Delegate-List-Link", 1, None, None, None),
0x8ce6: (0x000d, "msExchDelegateListBL", "ms-Exch-Delegate-List-BL", 2, None, None, None),
0x8ce7: (0x001f, "msExchArchiveAddress", "ms-Exch-Archive-Address", 1, None, None, None),
0x8ce8: (0x0003, "msExchArchiveStatus", "ms-Exch-Archive-Status", 1, None, None, None),
0x8ce9: (0x001f, "msExchDistributionGroupNamingPolicy", "ms-Exch-Distribution-Group-Naming-Policy", 2, None, None, None),
0x8cea: (0x101f, "msExchDistributionGroupNameBlockedWordsList", "ms-Exch-Distribution-Group-Name-Blocked-Words-List", 2, None, None, None),
0x8ceb: (0x001f, "msExchDistributionGroupDefaultOU", "ms-Exch-Distribution-Group-Default-OU", 2, None, None, None),
0x8cec: (0x0003, "msExchAddressBookFlags", "ms-Exch-Address-Book-Flags", 1, None, None, None),
0x8ced: (0x001f, "msExchExtensionAttribute16", "ms-Exch-Extension-Attribute-16", 1, None, None, None),
0x8cee: (0x001f, "msExchExtensionAttribute17", "ms-Exch-Extension-Attribute-17", 1, None, None, None),
0x8cef: (0x001f, "msExchExtensionAttribute18", "ms-Exch-Extension-Attribute-18", 1, None, None, None),
0x8cf0: (0x001f, "msExchExtensionAttribute19", "ms-Exch-Extension-Attribute-19", 1, None, None, None),
0x8cf1: (0x001f, "msExchExtensionAttribute20", "ms-Exch-Extension-Attribute-20", 1, None, None, None),
0x8cf2: (0x001f, "msExchExtensionAttribute21", "ms-Exch-Extension-Attribute-21", 1, None, None, None),
0x8cf3: (0x001f, "msExchExtensionAttribute22", "ms-Exch-Extension-Attribute-22", 1, None, None, None),
0x8cf4: (0x001f, "msExchExtensionAttribute23", "ms-Exch-Extension-Attribute-23", 1, None, None, None),
0x8cf5: (0x001f, "msExchExtensionAttribute24", "ms-Exch-Extension-Attribute-24", 1, None, None, None),
0x8cf6: (0x001f, "msExchExtensionAttribute25", "ms-Exch-Extension-Attribute-25", 1, None, None, None),
0x8cf7: (0x001f, "msExchExtensionAttribute26", "ms-Exch-Extension-Attribute-26", 1, None, None, None),
0x8cf8: (0x001f, "msExchExtensionAttribute27", "ms-Exch-Extension-Attribute-27", 1, None, None, None),
0x8cf9: (0x001f, "msExchExtensionAttribute28", "ms-Exch-Extension-Attribute-28", 1, None, None, None),
0x8cfa: (0x001f, "msExchExtensionAttribute29", "ms-Exch-Extension-Attribute-29", 1, None, None, None),
0x8cfb: (0x001f, "msExchExtensionAttribute30", "ms-Exch-Extension-Attribute-30", 1, None, None, None),
0x8cfc: (0x001f, "msExchExtensionAttribute31", "ms-Exch-Extension-Attribute-31", 1, None, None, None),
0x8cfd: (0x001f, "msExchExtensionAttribute32", "ms-Exch-Extension-Attribute-32", 1, None, None, None),
0x8cfe: (0x001f, "msExchExtensionAttribute33", "ms-Exch-Extension-Attribute-33", 1, None, None, None),
0x8cff: (0x001f, "msExchExtensionAttribute34", "ms-Exch-Extension-Attribute-34", 1, None, None, None),
0x8d00: (0x001f, "msExchExtensionAttribute35", "ms-Exch-Extension-Attribute-35", 1, None, None, None),
0x8d01: (0x001f, "msExchExtensionAttribute36", "ms-Exch-Extension-Attribute-36", 1, None, None, None),
0x8d02: (0x001f, "msExchExtensionAttribute37", "ms-Exch-Extension-Attribute-37", 1, None, None, None),
0x8d03: (0x001f, "msExchExtensionAttribute38", "ms-Exch-Extension-Attribute-38", 1, None, None, None),
0x8d04: (0x001f, "msExchExtensionAttribute39", "ms-Exch-Extension-Attribute-39", 1, None, None, None),
0x8d05: (0x001f, "msExchExtensionAttribute40", "ms-Exch-Extension-Attribute-40", 1, None, None, None),
0x8d06: (0x001f, "msExchExtensionAttribute41", "ms-Exch-Extension-Attribute-41", 1, None, None, None),
0x8d07: (0x001f, "msExchExtensionAttribute42", "ms-Exch-Extension-Attribute-42", 1, None, None, None),
0x8d08: (0x001f, "msExchExtensionAttribute43", "ms-Exch-Extension-Attribute-43", 1, None, None, None),
0x8d09: (0x001f, "msExchExtensionAttribute44", "ms-Exch-Extension-Attribute-44", 1, None, None, None),
0x8d0a: (0x001f, "msExchExtensionAttribute45", "ms-Exch-Extension-Attribute-45", 1, None, None, None),
0x8d0b: (0x000d, "msExchUGMemberLink", "ms-Exch-UG-Member-Link", 1, None, None, None),
0x8d0c: (0x000d, "msExchUGMemberBL", "ms-Exch-UG-Member-BL", 1, None, None, None),
0x8d0e: (0x000d, "msExchAdministrativeUnitLink", "ms-Exch-Administrative-Unit-Link", 1, None, None, None),
0x8d0f: (0x0003, "msExchGroupSecurityFlags", "ms-Exch-Group-Security-Flags", 1, None, None, None),
0xfff8: (0x101f, "msExchTemplateRDNs", "ms-Exch-Template-RDNs", 2, None, None, None),
# ====================
0x850e: (0x000b, None, None, 4, "PidLidAgingDontAgeMe", "dispidAgingDontAgeMe", None),
0x8238: (0x001f, None, None, 4, "PidLidAllAttendeesString", "dispidAllAttendeesString", None),
0x8246: (0x000b, None, None, 4, "PidLidAllowExternalCheck", "dispidAllowExternCheck", None),
0x8207: (0x0003, None, None, 4, "PidLidAppointmentAuxiliaryFlags", "dispidApptAuxFlags", None),
0x8214: (0x0003, None, None, 4, "PidLidAppointmentColor", "dispidApptColor", None),
0x8257: (0x000b, None, None, 4, "PidLidAppointmentCounterProposal", "dispidApptCounterProposal", None),
0x8213: (0x0003, None, None, 4, "PidLidAppointmentDuration", "dispidApptDuration", None),
0x8211: (0x0040, None, None, 4, "PidLidAppointmentEndDate", "dispidApptEndDate", None),
0x8210: (0x0040, None, None, 4, "PidLidAppointmentEndTime", "dispidApptEndTime", None),
0x820e: (0x0040, None, None, 4, "PidLidAppointmentEndWhole", "dispidApptEndWhole", None),
0x8203: (0x0003, None, None, 4, "PidLidAppointmentLastSequence", "dispidApptLastSequence", None),
0x0024: (0x001f, None, None, 4, "PidLidAppointmentMessageClass", "dispidApptMessageClass", "OriginatorReturnAddress"),
0x825a: (0x000b, None, None, 4, "PidLidAppointmentNotAllowPropose", "dispidApptNotAllowPropose", None),
0x8259: (0x0003, None, None, 4, "PidLidAppointmentProposalNumber", "dispidApptProposalNum", None),
0x8256: (0x0003, None, None, 4, "PidLidAppointmentProposedDuration", "dispidApptProposedDuration", None),
0x8251: (0x0040, None, None, 4, "PidLidAppointmentProposedEndWhole", "dispidApptProposedEndWhole", None),
0x8250: (0x0040, None, None, 4, "PidLidAppointmentProposedStartWhole", "dispidApptProposedStartWhole", None),
0x8216: (0x0102, None, None, 4, "PidLidAppointmentRecur", "dispidApptRecur", None),
0x8230: (0x001f, None, None, 4, "PidLidAppointmentReplyName", "dispidApptReplyName", None),
0x8220: (0x0040, None, None, 4, "PidLidAppointmentReplyTime", "dispidApptReplyTime", None),
0x8201: (0x0003, None, None, 4, "PidLidAppointmentSequence", "dispidApptSequence", None),
0x8212: (0x0040, None, None, 4, "PidLidAppointmentStartDate", "dispidApptStartDate", None),
0x820f: (0x0040, None, None, 4, "PidLidAppointmentStartTime", "dispidApptStartTime", None),
0x820d: (0x0040, None, None, 4, "PidLidAppointmentStartWhole", "dispidApptStartWhole", None),
0x8217: (0x0003, None, None, 4, "PidLidAppointmentStateFlags", "dispidApptStateFlags", None),
0x8215: (0x000b, None, None, 4, "PidLidAppointmentSubType", "dispidApptSubType", None),
0x825f: (0x0102, None, None, 4, "PidLidAppointmentTimeZoneDefinitionEndDisplay", "dispidApptTZDefEndDisplay", None),
0x8260: (0x0102, None, None, 4, "PidLidAppointmentTimeZoneDefinitionRecur", "dispidApptTZDefRecur", None),
0x825e: (0x0102, None, None, 4, "PidLidAppointmentTimeZoneDefinitionStartDisplay", "dispidApptTZDefStartDisplay", None),
0x825d: (0x0102, None, None, 4, "PidLidAppointmentUnsendableRecipients", "dispidApptUnsendableRecips", None),
0x8226: (0x0040, None, None, 4, "PidLidAppointmentUpdateTime", "dispidApptUpdateTime", None),
0x0001: (0x0102, None, None, 4, "PidTagTemplateData", "PR_EMS_TEMPLATE_BLOB", "AcknowledgementMode"),
0x823a: (0x000b, None, None, 4, "PidLidAutoFillLocation", "dispidAutoFillLocation", None),
0x851a: (0x0003, None, None, 4, "PidLidAutoProcessState", "dispidSniffState", None),
0x8244: (0x000b, None, None, 4, "PidLidAutoStartCheck", "dispidAutoStartCheck", None),
0x8535: (0x001f, None, None, 4, "PidLidBilling", "dispidBilling", None),
0x804d: (0x0102, None, None, 4, "PidLidBirthdayEventEntryId", "dispidBirthdayEventEID", None),
0x8205: (0x0003, None, None, 4, "PidLidBusyStatus", "dispidBusyStatus", None),
0x001c: (0x0003, None, None, 4, "PidLidCalendarType", "LID_CALENDAR_TYPE", None),
0x9000: (0x101f, None, None, 4, "PidLidCategories", "dispidCategories", None),
0x823c: (0x001f, None, None, 4, "PidLidCcAttendeesString", "dispidCCAttendeesString", None),
0x8204: (0x0003, None, None, 4, "PidLidChangeHighlight", "dispidChangeHighlight", None),
0x85b6: (0x001f, None, None, 4, "PidLidClassification", "dispidClassification", None),
0x85b7: (0x001f, None, None, 4, "PidLidClassificationDescription", "dispidClassDesc", None),
0x85b8: (0x001f, None, None, 4, "PidLidClassificationGuid", "dispidClassGuid", None),
0x85ba: (0x000b, None, None, 4, "PidLidClassificationKeep", "dispidClassKeep", None),
0x85b5: (0x000b, None, None, 4, "PidLidClassified", "dispidClassified", None),
0x0023: (0x000b, None, None, 4, "PidTagOriginatorDeliveryReportRequested", "PR_ORIGINATOR_DELIVERY_REPORT_REQUESTED", "OriginatorDeliveryReportRequested"),
0x0015: (0x0040, None, None, 4, "PidTagExpiryTime", "PR_EXPIRY_TIME", "ExpiryTime"),
0x8236: (0x0040, None, None, 4, "PidLidClipEnd", "dispidClipEnd", None),
0x8235: (0x0040, None, None, 4, "PidLidClipStart", "dispidClipStart", None),
0x8247: (0x001f, None, None, 4, "PidLidCollaborateDoc", "dispidCollaborateDoc", None),
0x8517: (0x0040, None, None, 4, "PidLidCommonEnd", "dispidCommonEnd", None),
0x8516: (0x0040, None, None, 4, "PidLidCommonStart", "dispidCommonStart", None),
0x8539: (0x101f, None, None, 4, "PidLidCompanies", "dispidCompanies", None),
0x8240: (0x000b, None, None, 4, "PidLidConferencingCheck", "dispidConfCheck", None),
0x8241: (0x0003, None, None, 4, "PidLidConferencingType", "dispidConfType", None),
0x8585: (0x0102, None, None, 4, "PidLidContactLinkEntry", "dispidContactLinkEntry", None),
0x8586: (0x001f, None, None, 4, "PidLidContactLinkName", "dispidContactLinkName", None),
0x8584: (0x0102, None, None, 4, "PidLidContactLinkSearchKey", "dispidContactLinkSearchKey", None),
0x853a: (0x101f, None, None, 4, "PidLidContacts", "dispidContacts", None),
0x8050: (0x001f, None, None, 4, "PidLidContactUserField2", "dispidContactUserField2", None),
0x85ca: (0x0040, None, None, 4, "PidLidConversationActionLastAppliedTime", "dispidConvActionLastAppliedTime", None),
0x85c8: (0x0040, None, None, 4, "PidLidConversationActionMaxDeliveryTime", "dispidConvActionMaxDeliveryTime", None),
0x85c6: (0x0102, None, None, 4, "PidLidConversationActionMoveFolderEid", "dispidConvActionMoveFolderEid", None),
0x85c7: (0x0102, None, None, 4, "PidLidConversationActionMoveStoreEid", "dispidConvActionMoveStoreEid", None),
0x85cb: (0x0003, None, None, 4, "PidLidConversationActionVersion", "dispidConvActionVersion", None),
0x85c9: (0x0003, None, None, 4, "PidLidConversationProcessed", "dispidConvExLegacyProcessedRand", None),
0x8552: (0x0003, None, None, 4, "PidLidCurrentVersion", "dispidCurrentVersion", None),
0x8554: (0x001f, None, None, 4, "PidLidCurrentVersionName", "dispidCurrentVersionName", None),
0x0011: (0x0002, None, None, 4, "PidLidDayInterval", "LID_DAY_INTERVAL", "DiscardReason"),
0x1000: (0x001f, None, None, 4, "PidTagBody", "PR_BODY", "Body"),
0x0009: (0x000b, None, None, 4, "PidLidDelegateMail", "LID_DELEGATE_MAIL", "ContentLength"),
0x8242: (0x001f, None, None, 4, "PidLidDirectory", "dispidDirectory", None),
0x000f: (0x0040, None, None, 4, "PidTagDeferredDeliveryTime", "PR_DEFERRED_DELIVERY_TIME", "DeferredDeliveryTime"),
0x0010: (0x0040, None, None, 4, "PidTagDeliverTime", "PR_DELIVER_TIME", "DeliverTime"),
0x8228: (0x0040, None, None, 4, "PidLidExceptionReplaceTime", "dispidExceptionReplaceTime", None),
0x822b: (0x000b, None, None, 4, "PidLidFExceptionalAttendees", "dispidFExceptionalAttendees", None),
0x8206: (0x000b, None, None, 4, "PidLidFExceptionalBody", "dispidFExceptionalBody", None),
0x8229: (0x000b, None, None, 4, "PidLidFInvited", "dispidFInvited", None),
0x8530: (0x001f, None, None, 4, "PidLidFlagRequest", "dispidRequest", None),
0x85c0: (0x0003, None, None, 4, "PidLidFlagString", "dispidFlagStringEnum", None),
0x820a: (0x000b, None, None, 4, "PidLidForwardInstance", "dispidFwrdInstance", None),
0x8261: (0x0102, None, None, 4, "PidLidForwardNotificationRecipients", "dispidForwardNotificationRecipients", None),
0x822f: (0x000b, None, None, 4, "PidLidFOthersAppointment", "dispidFOthersAppt", None),
0x0003: (0x0102, None, None, 4, "PidLidGlobalObjectId", "LID_GLOBAL_OBJID", "AuthorizingUsers"),
0x801a: (0x001f, None, None, 4, "PidLidHomeAddress", "dispidHomeAddress", None),
0x802b: (0x001f, None, None, 4, "PidLidHtml", "dispidHTML", None),
0x1001: (0x001f, None, None, 4, "PidTagReportText", "PR_REPORT_TEXT", "ReportText"),
0x827a: (0x0102, None, None, 4, "PidLidInboundICalStream", "InboundICalStream", None),
0x85b1: (0x001f, None, None, 4, "PidLidInfoPathFormName", None, None),
0x8224: (0x0003, None, None, 4, "PidLidIntendedBusyStatus", "dispidIntendedBusyStatus", None),
0x8580: (0x001f, None, None, 4, "PidLidInternetAccountName", "dispidInetAcctName", None),
0x8581: (0x001f, None, None, 4, "PidLidInternetAccountStamp", "dispidInetAcctStamp", None),
0x000a: (0x000b, None, None, 4, "PidLidIsException", "LID_IS_EXCEPTION", "ContentReturnRequested"),
0x0005: (0x000b, None, None, 4, "PidTagAutoForwarded", "PR_AUTO_FORWARDED", "AutoForwarded"),
0x0004: (0x0102, None, None, 4, "PidTagScriptData", "PR_EMS_SCRIPT_BLOB", "AutoForwardComment"),
0x820c: (0x1102, None, None, 4, "PidLidLinkedTaskItems", "dispidLinkedTaskItems", None),
0x8208: (0x001f, None, None, 4, "PidLidLocation", "dispidLocation", None),
0x8711: (0x000b, None, None, 4, "PidLidLogDocumentPosted", "dispidLogDocPosted", None),
0x870e: (0x000b, None, None, 4, "PidLidLogDocumentPrinted", "dispidLogDocPrinted", None),
0x8710: (0x000b, None, None, 4, "PidLidLogDocumentRouted", "dispidLogDocRouted", None),
0x870f: (0x000b, None, None, 4, "PidLidLogDocumentSaved", "dispidLogDocSaved", None),
0x8707: (0x0003, None, None, 4, "PidLidLogDuration", "dispidLogDuration", None),
0x8708: (0x0040, None, None, 4, "PidLidLogEnd", "dispidLogEnd", None),
0x870c: (0x0003, None, None, 4, "PidLidLogFlags", "dispidLogFlags", None),
0x8706: (0x0040, None, None, 4, "PidLidLogStart", "dispidLogStart", None),
0x8700: (0x001f, None, None, 4, "PidLidLogType", "dispidLogType", None),
0x8712: (0x001f, None, None, 4, "PidLidLogTypeDesc", "dispidLogTypeDesc", None),
0x0026: (0x0003, None, None, 4, "PidTagPriority", "PR_PRIORITY", "Priority"),
0x8209: (0x001f, None, None, 4, "PidLidMeetingWorkspaceUrl", "dispidMWSURL", None),
0x0013: (0x0002, None, None, 4, "PidLidMonthInterval", "LID_MONTH_INTERVAL", "DlExpansionHistory"),
0x1006: (0x0003, None, None, 4, "PidLidMonthOfYear", None, "RtfSyncBodyCrc"),
0x0017: (0x0003, None, None, 4, "PidTagImportance", "PR_IMPORTANCE", "Importance"),
0x8248: (0x001f, None, None, 4, "PidLidNetShowUrl", "dispidNetShowURL", None),
0x100b: (0x000b, None, None, 4, "PidLidNoEndDateFlag", "http://schemas.microsoft.com/mapi/fnoenddate", "IsIntegJobProgress"),
0x8538: (0x001f, None, None, 4, "PidLidNonSendableBcc", "dispidNonSendableBCC", None),
0x8537: (0x001f, None, None, 4, "PidLidNonSendableCc", "dispidNonSendableCC", None),
0x8536: (0x001f, None, None, 4, "PidLidNonSendableTo", "dispidNonSendableTo", None),
0x8545: (0x1003, None, None, 4, "PidLidNonSendBccTrackStatus", "dispidNonSendBccTrackStatus", None),
0x8544: (0x1003, None, None, 4, "PidLidNonSendCcTrackStatus", "dispidNonSendCcTrackStatus", None),
0x8543: (0x1003, None, None, 4, "PidLidNonSendToTrackStatus", "dispidNonSendToTrackStatus", None),
0x8b00: (0x0003, None, None, 4, "PidLidNoteColor", "dispidNoteColor", None),
0x8b03: (0x0003, None, None, 4, "PidLidNoteHeight", "dispidNoteHeight", None),
0x8b02: (0x0003, None, None, 4, "PidLidNoteWidth", "dispidNoteWidth", None),
0x8b04: (0x0003, None, None, 4, "PidLidNoteX", "dispidNoteX", None),
0x8b05: (0x0003, None, None, 4, "PidLidNoteY", "dispidNoteY", None),
0x1005: (0x0003, None, None, 4, "PidLidOccurrences", None, "IsIntegJobCreationTime"),
0x0028: (0x001f, None, None, 4, "PidLidOldLocation", "dispidOldLocation", "ProofOfSubmissionRequested"),
0x0018: (0x0002, None, None, 4, "PidLidOldRecurrenceType", "LID_RECUR_TYPE", "IpmId"),
0x002a: (0x0040, None, None, 4, "PidTagReceiptTime", "PR_RECEIPT_TIME", "ReceiptTime"),
0x0029: (0x000b, None, None, 4, "PidTagReadReceiptRequested", "PR_READ_RECEIPT_REQUESTED", "ReadReceiptRequested"),
0x8249: (0x001f, None, None, 4, "PidLidOnlinePassword", "dispidOnlinePassword", None),