Subversion Repository Public Repository

ChrisCompleteCodeTrunk

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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
SQLite format 3@  �.A
��o�
�q
h��''�EtableDocumentData1DocumentData1CREATE TABLE "DocumentData1" (
    "DataId" integer primary key not null,
    "Data" blob)�%%�CtableProjectData1ProjectData1CREATE TABLE "ProjectData1" (
    "DataId" integer primary key not null,
    "Data" blob)�''�EtableSolutionData1SolutionData1CREATE TABLE "SolutionData1" (
    "DataId" varchar primary key not null,
    "Data" blob)9M'indexsqlite_autoindex_SolutionData1_1SolutionData1g-#�indexStringInfo1_DataStringInfo1CREATE UNIQUE INDEX "StringInfo1_Data" on "StringInfo1"("Data")P++Ytablesqlite_sequencesqlite_sequenceCREATE TABLE sqlite_sequence(name,seq)�##�ctableStringInfo1StringInfo1CREATE TABLE "StringInfo1" (
    "DataId" integer primary key autoincrement not null,
    "Data" varchar)
K�} ��?-
�
�
U
 ������{naK/<SyntaxTreeIndex>15-13-1415-11-12
15-9-10	15-7-8	15-5-6	15-3-41-2%Reporting.cs]
�?C:\Users\bbds\Documents\Workspace\CSharp\BTStatementMerge\BT Statement Merge\Reporting.cs3m.NETFramework,Version=v4.0.AssemblyAttributes.csU�/C:\Users\bbds\AppData\Local\Temp\.NETFramework,Version=v4.0.AssemblyAttributes.cs
+AssemblyInfo.csk	�[C:\Users\bbds\Documents\Workspace\CSharp\BTStatementMerge\BT Statement Merge\Properties\AssemblyInfo.cs'BTDatabase.cs^�AC:\Users\bbds\Documents\Workspace\CSharp\BTStatementMerge\BT Statement Merge\BTDatabase.cs'Laserfiche.cs^�AC:\Users\bbds\Documents\Workspace\CSharp\BTStatementMerge\BT Statement Merge\Laserfiche.cs
!Program.cs[�;C:\Users\bbds\Documents\Workspace\CSharp\BTStatementMerge\BT Statement Merge\Program.cs1BT Statement Mergej�YC:\Users\bbds\Documents\Workspace\CSharp\BTStatementMerge\BT Statement Merge\BT Statement Merge.csproj
��#StringInfo1
L
!�ob���|L
�~.
V�@�!
����/<SyntaxTreeIndex>15-13-1415-11-1215-9-10
15-7-8
15-5-6
15-3-41-2%Reporting.cs^�?C:\Users\bbds\Documents\Workspace\CSharp\BTStatementMerge\BT Statement Merge\Reporting.cs
4m.NETFramework,Version=v4.0.AssemblyAttributes.csV�/C:\Users\bbds\AppData\Local\Temp\.NETFramework,Version=v4.0.AssemblyAttributes.cs+AssemblyInfo.cs
l�[C:\Users\bbds\Documents\Workspace\CSharp\BTStatementMerge\BT Statement Merge\Properties\AssemblyInfo.cs	'BTDatabase.cs_�AC:\Users\bbds\Documents\Workspace\CSharp\BTStatementMerge\BT Statement Merge\BTDatabase.cs'Laserfiche.cs_�AC:\Users\bbds\Documents\Workspace\CSharp\BTStatementMerge\BT Statement Merge\Laserfiche.cs!Program.cs\�;C:\Users\bbds\Documents\Workspace\CSharp\BTStatementMerge\BT Statement Merge\Program.cs1BT Statement Mergej�Y	C:\Users\bbds\Documents\Workspace\CSharp\BTStatementMerge\BT Statement Merge\BT Statement Merge.csproj����������������������<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Configuration.dll�	17�>Z
����ʺ(�F��b���SystemConfigurationInternalIInternalConfigRecordIInternalConfigHostDelegatingConfigHostIInternalConfigClientHostIInternalConfigSystemIConfigErrorInfoIConfigSystemIConfigurationManagerInternalIConfigurationManagerHelperIInternalConfigConfigurationFactoryIInternalConfigRootIInternalConfigSettingsFactoryInternalConfigEventArgsInternalConfigEventHandlerStreamChangeCallbackProviderProviderBaseProviderCollectionProviderExceptionConfigurationElementConfigurationSectionAppSettingsSectionConfigurationValidatorBaseCallbackValidatorConfigurationValidatorAttributeCallbackValidatorAttributeConfigurationConverterBaseCommaDelimitedStringCollectionConverterConfigurationConfigurationAllowDefinitionConfigurationAllowExeDefinitionConfigurationCollectionAttributeConfigurationElementCollectionConfigurationElementCollectionTypeConfigurationElementPropertyConfigurationErrorsExceptionConfigurationFileMapConfigurationLocationConfigurationLocationCollectionConfigurationLockCollectionConfigurationManagerConfiguratio	�H�)�v<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Data.DataSetExtensions.dll�	17�������TߍN<�535���SystemDataDataRowComparerDataTableExtensionsAsEnumerableCopyToDataTableAsDataViewEnumerableRowCollectionOrderedEnumerableRowCollectionEnumerableRowCollectionExtensionsWhereOrderByOrderByDescendingThenByThenByDescendingSelectCastDataRowExtensionsFieldSetFieldTypedTableBaseTypedTableBaseExtensionsWhereOrderByOrderByDescendingSelectAsEnumerableDataTableObjectCollectionsGenericIEqualityComparerIEnumerable#����G
,K �
f8
�W	Q�!�	q��x`�
- �
4 h�
E �	�
�
�
( �p]F@?>=;
:+


����lL
�^
�	�W
i
J	^���B��5%���	�<SymbolTreeInfo>_SpellChecker_C:\Users\bbds\Documents\Workspace\CSharp\BTStatementMerge\BT Statement Merge\BT Statement Merge.csproj��	<SymbolTreeInfo>_Source_C:\Users\bbds\Documents\Workspace\CSharp\BTStatementMerge\BT Statement Merge\BT Statement Merge.csproj��<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\mscorlib.dlli�U<SymbolTreeInfo>_SpellChecker_C:\Program Files\Laserfiche\SDK 10.2\bin\COM\x86\Interop.LFSO83Lib.dll��
<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Data.dll��<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.dll��<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Xml.dll��<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Configuration.dll��
<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Core.dlls�i<SymbolTreeInfo>_SpellChecker_C:\Program Files\Laserfiche\SDK 10.2\bin\COM\x86\Interop.DocumentProcessor83.dll��1<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Data.DataSetExtensions.dll�	�<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Xml.Linq.dll��!<SymbolTreeInfo>_SpellChecker_C:\Users\bbds\Documents\Workspace\CSharp\BTStatementMerge\packages\MySql.Data.6.9.8\lib\net40\MySql.Data.dll�
�<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\Microsoft.CSharp.dll
~�<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\mscorlib.dlle�M<SymbolTreeInfo>_Metadata_C:\Program Files\Laserfiche\SDK 10.2\bin\COM\x86\Interop.LFSO83Lib.dll|�{<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.dll
��<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Data.dll	��<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\Microsoft.CSharp.dllo�a<SymbolTreeInfo>_Metadata_C:\Program Files\Laserfiche\SDK 10.2\bin\COM\x86\Interop.DocumentProcessor83.dll��<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Core.dll��<SymbolTreeInfo>_Metadata_C:\Users\bbds\Documents\Workspace\CSharp\BTStatementMerge\packages\MySql.Data.6.9.8\lib\net40\MySql.Data.dll��
<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Xml.Linq.dll��<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Xml.dll�
�<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Configuration.dll��)	<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Data.DataSetExtensions.dll

��������Ѐ���4�	10�:̮�,�m��s�Z���R2
�?��b$�N�r݉�?�(؏�
Wx����c�6�X���@�V�6ML����v�(� TJM׵����X.<�A�g��⥙҄D�R�����uV%׸��Y���v�� 	@	ReportingBT_Statement_Merge`�	debugBT_Statement_Merge.Reporting 	logFolder�	Error(string, string)k�	AppendLogk�	g������R�	10$�
�(�vS.�3��L��<32` +
��IWǓ�0?�"]P�w�	�������	10��+,�zlzP2y=Z�x��2
1Ix�X��O�N�^
)5�hˏV�&�]�֫gX���!��U���-y+�Td#XA$�Hn��.������`�	10ABNd��͔??B
'�-G2
T��n��l��3��3(7f�wT����*�5���fO�v���.ɺ[CN�sP
�ı�+��̨���(J���0��3��
�\A
����T��*��U�ߵ�܏m��_ٹ)�3�浚�B��R�toQ�x�}D�'x`v��=�z�$�v@bꃲn�ޯ{�j�����z�X1�ޖ]�܀��W�Tɞ#��EMć�"隉��*�w"�6�H�p���4j�6��(#l�;lk������)����bp}�Fo
RMNIK�M?Q�-FT��P�@A
BTDatabaseBT_Statement_Merge`P
sqlBT_Statement_Merge.BTDatabase�db�tableEinvoice_num�cust_num�GetInvoices(int, DateTime, int)kiOpenInvoicesBeforeCutoff(DateTime, int)kAOpenCharges(int)k
NotMergeClasskA
TestConnection()kh�������(�	10_f� �X���U���8*w2
��O���h
l­���59�6�{��k	�z�ͬ&�a@�t��J�#qG}t���M3g0F��i���}�^
�
k��
TFc��eQ�*���rO�q,}���\(j�%Zc/@~N(bǃ��nټ"�ʁ�$��D�̂�"

D`5���wH�ޭ���k��v�X�C:.�X��=���qU;ށXrg��2�w�%ܣ+�%����h��"Ӑ�h�S(z����	/�<qn0-�\�r�8����x
�spn�F26I��W�p�ss��gg8��)<Z��GK���t茶�6��Aÿ�`۝VP��,?�N��H�k���+��e�Y�:��G�1y���0dͼ9?�
�����(��*y��u��aU�lZ��A��hA�|��l�x�<c��]��Ζ
v�Ӏ���E�P�P�4T��Q$@�Իnj�3fx�˜�L7�������N������r��-��=�5O���4@A
LaserficheBT_Statement_Merge`8
lfappBT_Statement_Merge.Laserfichehhlfservh�lfdbh�connh�lfServerh�lfUserh=lfPassh�lfRepoh�lfFolderh!()bl
LaserficheActivatek�LaserficheDeactivatek�
GetStatementsk�
GetStaticDocumentIDsk GetDocument(int)k�
GetOpenInvoiceIDs(int, ArrayList, int)k\	Statement`j.	EntryIDBT_Statement_Merge.Statementm�.invoicesm�.�������(�	10�6�������C���JzO��2
��%+�`.�M���O�W�x���Z�Mz�NR|l:��1��#�|�B�����B�^��m6��F{	f��@�<</�V	�)�X*�C_����&�:p/$!��랇8n�� %�q���i�a����
Ze��@�U��̦�_l�
���ZB�Io�F'��)��>�B�ZF�����{8I�)yA�+|^�(t��'�ծ�_���'�ؐ�@x/Kx+֒S�aX��_&?��Q���;�RZ�擜I��4��������p�9 ��K��v���/�2���Z���
�-�}yx�Z���D�Xʿ�s��]��ށ�Hܡ���ȧ��[�w�nY#�,������&$�'�$�D����^�Ն|�F�>�� ��PN)��O-Q��}�E����^6xMǤ(e�s��F�{���I��&5�Tɗ�ʪ�T�C���1gߒhlbll�d�N��d(��<xc�
c��$@A
ProgramBT_Statement_Merge@Main
(string[])BT_Statement_Merge.Program7CleanLogDirectory()�MergeModule`�lf	BT_Statement_Merge.MergeModuleh*test	CTest	k�FindInvoices	klprocessStatement;(Laserfiche, LFDocument, LFFieldData, ArrayList, ArrayList)	)6AppendStaticPages(LFDocument)	�BnPermissionAttributeConfigurationPermissionConfigurationPropertyConfigurationPropertyAttributeConfigurationPropertyCollectionConfigurationPropertyOptionsConfigurationSaveModeConfigurationSectionCollectionConfigurationSectionGroupConfigurationSectionGroupCollectionConfigurationUserLevelConnectionStringSettingsConnectionStringSettingsCollectionConnectionStringsSectionContextInformationDefaultSectionDefaultValidatorProtectedConfigurationProviderDpapiProtectedConfigurationProviderElementInformationExeConfigurationFileMapExeContextGenericEnumConverterIgnoreSectionInfiniteIntConverterInfiniteTimeSpanConverterIntegerValidatorIntegerValidatorAttributeKeyValueConfigurationCollectionKeyValueConfigurationElementLongValidatorLongValidatorAttributeNameValueConfigurationCollectionNameValueConfigurationElementOverrideModePositiveTimeSpanValidatorPositiveTimeSpanValidatorAttributePropertyInformationPropertyInformationCollectionPropertyValueOriginProtectedConfigurationProtectedConfigurationProviderCollectionProtectedConfigurationSectionProtectedProviderSettingsProviderSettingsProviderSettingsCollectionRegexStringValidatorRegexStringValidatorAttributeRsaProtectedConfigurationProviderSectionInformationCommaDelimitedStringCollectionStringValidatorStringValidatorAttributeSubclassTypeValidatorSubclassTypeValidatorAttributeTimeSpanMinutesConverterTimeSpanMinutesOrInfiniteConverterTimeSpanSecondsConverterTimeSpanSecondsOrInfiniteConverterTimeSpanValidatorTimeSpanValidatorAttributeTypeNameConverterValidatorCallbackWhiteSpaceTrimStringConverterConfigurationExceptionObjectAttributeComponentModelTypeConverterEnumCollectionsICollectionIEnumerableReadOnlyCollectionBaseSpecializedNameObjectCollectionBaseStringCollectionICloneableSecurityPermissionsCodeAccessSecurityAttributeIUnrestrictedPermissionCodeAccessPermissionMulticastDelegateEventArgsException������
	x�.�
p�
Z8
x�b'
x�

x��� H��"1M�	i}���� ,Ji�����#��
""D\n|CL�#�4
x	x	x��
�

xC
�L�
L�L�LN

WL�#L0LL�LLpL!5N^.LEL�
Zw��
�xz
q� �

x�
p7"Yl����(��s{e�e�e Y
:Nk!��
xo
_L�
q����	.	"P	h	"�	�	'


�	�	�	X) %-27]`o0fg#*QWdi#,.@c)	/JR[ltv}((KS\muw~	8HIy{��3
!"'Y_: g? g9kOU$&^+PVjfaa1n6gbsyz{|T�NrC04M5hXsltArgumentListIXsltContextFunctionIXsltContextVariableXsltExceptionXsltCompileExceptionXslTransformXsltSettingsSerializationAdvancedSchemaImporterExtensionSchemaImporterExtensionCollectionConfigurationDateTimeSerializationSectionDateTimeSerializationModeSchemaImporterExtensionElementSchemaImporterExtensionElementCollectionSchemaImporterExtensionsSectionSerializationSectionGroupXmlSerializerSectionRootedPathValidatorCodeExporterCodeGenerationOptionsCodeIdentifierCodeIdentifiersImportContextIXmlSerializableIXmlTextParserSchemaImporterSoapAttributeAttributeSoapAttributeOverridesSoapAttributesSoapCodeExporterSoapElementAttributeSoapEnumAttributeSoapIgnoreAttributeSoapIncludeAttributeSoapReflectionImporterSoapSchemaExporterSoapSchemaImporterSoapSchemaMemberSoapTypeAttributeXmlAnyAttributeAttributeXmlAnyElementAttributeXmlAnyElementAttributesXmlArrayAttributeXmlArrayItemAttributeXmlArrayItemAttributesXmlAttributeAttributeXmlAttributeOverridesXmlAttributesXmlChoiceIdentifierAttributeXmlCodeExporterXmlElementAttributeXmlElementAttributesXmlEnumAttributeXmlIgnoreAttributeXmlIncludeAttributeXmlMappingAccessXmlMappingXmlMemberMappingXmlMembersMappingXmlNamespaceDeclarationsAttributeXmlReflectionImporterXmlReflectionMemberXmlRootAttributeXmlSchemaExporterXmlSchemaImporterXmlSchemaProviderAttributeXmlSchemasXmlSchemaEnumeratorXmlSerializationGeneratedCodeXmlSerializationReaderXmlSerializationFixupCallbackXmlSerializationCollectionFixupCallbackXmlSerializationReadCallbackXmlSerializationWriterXmlSerializationWriteCallbackXmlSerializerAssemblyAttributeXmlDeserializationEventsXmlSerializerImplementationXmlSerializerXmlSerializerFactoryXmlSerializerNamespacesXmlSerializerVersionAttributeXmlTextAttributeXmlTypeAttributeXmlTypeMappingXmlAttributeEventHandlerXmlAttributeEventArgsXmlElementEventHandlerXmlElementEventArgsXmlNodeEventHandlerXmlNodeEventArgsUnreferencedObjectEventHandlerUnreferencedObjectEventArgsIHasXmlNodeIXmlLineInfoIXmlNamespaceResolverXmlNameTableNameTableXmlDateTimeSerializationModeXmlConvertXmlExceptionXmlNamespaceManagerXmlNamespaceScopeXmlNodeOrderXmlNodeTypeXmlResolverXmlQualifiedNameXmlSecureResolverXmlUrlResolverConformanceLevelDtdProcessingEntityHandlingXmlWriterNamespaceHandlingNewLineHandlingReadStateValidationTypeWhitespaceHandlingXmlReaderXmlParserContextXmlReaderSettingsXmlSpaceXmlTextReaderFormattingXmlTextWriterXmlValidatingReaderWriteStateXmlOutputMethodXmlWriterSettingsXmlNodeXmlAttributeXmlNamedNodeMapXmlAttributeCollectionXmlLinkedNodeXmlCharacterDataXmlCDataSectionXmlNodeListXmlCommentXmlDeclarationXmlDocumentXmlDocumentFragmentXmlDocumentTypeXmlElementXmlEntityXmlEntityReferenceXmlNodeChangedActionXmlImplementationXmlNodeChangedEventArgsXmlNodeChangedEventHandlerXmlNodeReaderXmlNotationXmlProcessingInstructionXmlSignificantWhitespaceXmlTextXmlWhitespaceXmlTokenizedTypeObjectEnumSystemExceptionCollectionsIEnumerableICollectionIEnumeratorCollectionBaseGenericIEnumerableIEnumeratorIDisposableICloneableEventArgsMulticastDelegateAttributeValueTypeMSInternalXmlCacheXPath,����>	=w	L�Ve
=q
=�
=�
=	�L~	
=
L';Yr-W�	�	
=
WJW�L]	L�
W+	S
L	HL�	2	=EW�

=R��-PW\W�6�
=�
=��"�"�fLaW}	WrW�L�	W4	WR

�W�
=F	]	!�	
�	(


1	
W%

�
=�
===&=:=K=^=r=�=�=�=�=�L*==�6�6�W�	L�W
W�$�L�=�=�==#=8=�6DWN=_W�=�=c=x
=��W�W�=�=�
W�
W��W�W�=�W�W�W�
W�=�=�=�=�	WW�=�W�=*W�==4u
W

=
=&
=6
=PWG
!=�W�WqW=WW;WRW�=�=�W�Wl
W�WyWW�WI4�W�W�	W�Wh
=}
=�W�
=	6P66\6o6{6�6�6�6�6�6�66�676^ 6~"6�6N6"6�6�6�6�6�666�6�
=.6�
=@6Q6�
6e6�6>6�6�66�
='6@6a67
6�6	6t6626�6�6�6�6D6_66U6n6�6-6�6�
=�6�

=�6�6�6�6!6;6N6h66�6L6�
6�6�6�6�666�6�6WI'=,=�
=p==�=�=
=�==�=1=>

H=&6�W��W�We=�
W�
W�Wu=56�=WW�6�
WX	W,W�V|W�
��	��'
�]Wk"�"	"`"�
""�""	"%	"229�l���������~�����������#$*+"7@AGHJde��������8�0'n���/13RTU��
��������#fm! ��M|�'&�����a����������%�^*��_�qry��aa��hostz�hgk	�P(bw�N.�Q)����cx�O^��������������������������������������������������������������������'��Z]v�9��������&'%?CDEFKXY[\`iu{}����
Bj7I������Sp<:
;>5
����<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Configuration.dll�	17�>Z
����ʺ(�F��b���SystemConfigurationInternalIInternalConfigRecordIInternalConfigHostDelegatingConfigHostIInternalConfigClientHostIInternalConfigSystemIConfigErrorInfoIConfigSystemIConfigurationManagerInternalIConfigurationManagerHelperIInternalConfigConfigurationFactoryIInternalConfigRootIInternalConfigSettingsFactoryInternalConfigEventArgsInternalConfigEventHandlerStreamChangeCallbackProviderProviderBaseProviderCollectionProviderExceptionConfigurationElementConfigurationSectionAppSettingsSectionConfigurationValidatorBaseCallbackValidatorConfigurationValidatorAttributeCallbackValidatorAttributeConfigurationConverterBaseCommaDelimitedStringCollectionConverterConfigurationConfigurationAllowDefinitionConfigurationAllowExeDefinitionConfigurationCollectionAttributeConfigurationElementCollectionConfigurationElementCollectionTypeConfigurationElementPropertyConfigurationErrorsExceptionConfigurationFileMapConfigurationLocationConfigurationLocationCollectionConfigurationLockCollectionConfigurationManagerConfiguratio	�H�)�v<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Data.DataSetExtensions.dll�	17�������TߍN<�535���SystemDataDataRowComparerDataTableExtensionsAsEnumerableCopyToDataTableAsDataViewEnumerableRowCollectionOrderedEnumerableRowCollectionEnumerableRowCollectionExtensionsWhereOrderByOrderByDescendingThenByThenByDescendingSelectCastDataRowExtensionsFieldSetFieldTypedTableBaseTypedTableBaseExtensionsWhereOrderByOrderByDescendingSelectAsEnumerableDataTableObjectCollectionsGenericIEqualityComparerIEnumerable#����G
,K �
f8
�W	Q�!�	q��x`�
- �
4 h�
E �	�
�
�
( 
	 

���V���6<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Xml.dll�	17�zF�
7�\�$<U��!g?�#�)SystemConfigurationConfigurationSectionConfigurationElementConfigurationElementCollectionConfigurationSectionGroupConfigurationValidatorBaseXmlSchemaIXmlSchemaInfoXmlSchemaDatatypeVarietyXmlSchemaDatatypeValidationEventArgsValidationEventHandlerXmlAtomicValueXmlSchemaObjectXmlSchemaXmlSchemaAnnotatedXmlSchemaParticleXmlSchemaGroupBaseXmlSchemaAllXmlSchemaAnnotationXmlSchemaAnyXmlSchemaAnyAttributeXmlSchemaAppInfoXmlSchemaAttributeXmlSchemaAttributeGroupXmlSchemaAttributeGroupRefXmlSchemaChoiceXmlSchemaCollectionXmlSchemaCollectionEnumeratorXmlSchemaContentModelXmlSchemaComplexContentXmlSchemaContentXmlSchemaComplexContentExtensionXmlSchemaComplexContentRestrictionXmlSchemaTypeXmlSchemaComplexTypeXmlSchemaContentProcessingXmlSchemaContentTypeXmlSchemaDerivationMethodXmlSchemaDocumentationXmlSchemaElementXmlSchemaExceptionXmlSchemaExternalXmlSchemaFacetXmlSchemaNumericFacetXmlSchemaLengthFacetXmlSchemaMinLengthFacetXmlSchemaMaxLengthFacetXmlSchemaPatternFacetXmlSchemaEnumerationFacetXmlSchemaMinExclusiveFacetXmlSchemaMinInclusiveFacetXmlSchemaMaxExclusiveFacetXmlSchemaMaxInclusiveFacetXmlSchemaTotalDigitsFacetXmlSchemaFractionDigitsFacetXmlSchemaWhiteSpaceFacetXmlSchemaFormXmlSchemaGroupXmlSchemaGroupRefXmlSchemaIdentityConstraintXmlSchemaXPathXmlSchemaUniqueXmlSchemaKeyXmlSchemaKeyrefXmlSchemaImportXmlSchemaIncludeXmlSchemaInfoXmlSchemaNotationXmlSchemaObjectCollectionXmlSchemaObjectEnumeratorXmlSchemaObjectTableXmlSchemaRedefineXmlSchemaSequenceXmlSchemaSetXmlSchemaCompilationSettingsXmlSchemaSimpleContentXmlSchemaSimpleContentExtensionXmlSchemaSimpleContentRestrictionXmlSchemaSimpleTypeXmlSchemaSimpleTypeContentXmlSchemaSimpleTypeListXmlSchemaSimpleTypeRestrictionXmlSchemaSimpleTypeUnionXmlSchemaUseXmlSchemaValidationExceptionXmlValueGetterXmlSchemaValidationFlagsXmlSchemaValidatorXmlSchemaValidityXmlSeverityTypeXmlTypeCodeXmlSchemaInferenceInferenceOptionXmlSchemaInferenceExceptionXPathXPathItemIXPathNavigableXPathNavigatorXPathNodeIteratorXPathDocumentXPathExceptionXmlSortOrderXmlCaseOrderXmlDataTypeXPathResultTypeXPathExpressionXPathNamespaceScopeXPathNodeTypeResolversXmlKnownDtdsXmlPreloadedResolverXslXsltContextXslCompiledTransformXsltMessageEncounteredEventArgsXsltMessageEncounteredEventHandler

�]��o��T<SymbolTreeInfo>_Metadata_C:\Users\bbds\Documents\Workspace\CSharp\BTStatementMerge\packages\MySql.Data.6.9.8\lib\net40\MySql.Data.dll�	17�рmJ?��.;�"ɪn��FD�MySqlDataMySqlClientAuthenticationMySqlAuthenticationPluginMySqlNativePasswordPluginSha256AuthenticationPluginSecBufferTypeSecHandleSecBufferSECURITY_INTEGERSECURITY_HANDLESecPkgContext_SizesMemcachedClientBinaryClientMemcachedExceptionTextClientMemcachedFlagsReplicationReplicationServerGroupReplicationRoundRobinServerGroupReplicationServerPropertiesResourcesMySqlBulkLoaderMySqlBulkLoaderPriorityMySqlBulkLoaderConflictOptionMySqlCommandMySqlCommandBuilder� �
�B<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Xml.Linq.dll�	17SoI0�2�Kg�t-�EF�:��SystemXmlLinqXNameXNamespaceXObjectXObjectChangeXObjectChangeEventArgsXNodeXNodeDocumentOrderComparerXNodeEqualityComparerXTextXCDataXContainerXElementLoadOptionsSaveOptionsReaderOptionsXDocumentXCommentXProcessingInstructionXDeclarationXDocumentTypeXAttributeXStreamingElementExtensionsAttributesAncestorsAncestorsAndSelfNodesDescendantNodesDescendantsDescendantNodesAndSelfDescendantsAndSelfElementsInDocumentOrderRemoveXPathExtensionsCreateNavigatorXPathEvaluateXPathSelectElementXPathSelectElementsSchemaExtensionsGetSchemaInfoValidateIXmlLineInfoSerializationIXmlSerializableObjectIEquatableRuntimeSerializationISerializableEnumEventArgsCollectionsIComparerGenericIComparerIEqualityComparerMSInternalXmlLinqComponentModelE����)	2
�*��GaVw�u*y	*
�
'�
>�
�	�	��J
*�� h
(54)�4	5��BD*�
�T*��5[
%'
5�
��
��	�
��*

FKe#
0�5�
���z
"
67;9:0C66;<&#
=;8,9:8D/.B2D-/313StringUtilityMySqlConnectionMySqlInfoMessageEventHandlerMySqlInfoMessageEventArgsMySqlDataAdapterMySqlRowUpdatingEventHandlerMySqlRowUpdatedEventHandlerMySqlRowUpdatingEventArgsMySqlRowUpdatedEventArgsMySqlDataReaderMySqlExceptionMySqlConnectionStringBuilderMySqlParameterMySqlParameterCollectionMySqlTraceUsageAdvisorWarningFlagsMySqlTraceEventTypeMySqlTransactionCustomInstallerBaseCommandInterceptorBaseExceptionInterceptorMySqlClientFactoryMySqlClientPermissionMySqlConfigurationAuthenticationPluginConfigurationElementInterceptorConfigurationElementGenericConfigurationElementCollectionMySqlDbTypeMySqlConnectionProtocolMySqlSslModeMySqlDriverTypeMySqlCertificateStoreLocationMySqlErrorMySqlErrorCodeMySqlHelperMySqlClientPermissionAttributeMySqlScriptMySqlStatementExecutedEventHandlerMySqlScriptErrorEventHandlerMySqlScriptEventArgsMySqlScriptErrorEventArgsMySqlSecurityPermissionReplicationConfigurationElementReplicationServerGroupConfigurationElementReplicationServerConfigurationElementMySqlSchemaCollectionMySqlSchemaRowSchemaColumnBaseTableCacheCommonTypesMySqlDateTimeMySqlConversionExceptionMySqlDecimalMySqlGeometryIMySqlValuezlibSystemObjectEnumDataCommonDbCommandDbCommandBuilderDbConnectionDbDataAdapterRowUpdatingEventArgsRowUpdatedEventArgsDbDataReaderDbExceptionDbConnectionStringBuilderDbParameterDbParameterCollectionDbTransactionDbProviderFactoryDBDataPermissionDBDataPermissionAttributeIDbDataAdapterIDataAdapterIDataReaderIDataRecordIDbDataParameterIDataParameterICloneableIDisposableMulticastDelegateEventArgsConfigurationInstallInstallerConfigurationSectionConfigurationElementConfigurationElementCollectionIServiceProviderCollectionsGenericIEnumerableMarshalByRefObjectValueTypeExceptionIConvertibleIComparable�����@�(@G@]@�@�6�6?��Y�
���8@:U�_	
h
x
�
�

&
6
�
�
�
�



Q��	�w	�J�%@�
�����]�itO��QQ"6���	1�@/�\��	@�6�6��"i@�@x@W@	u@�@�@�@�@�@�@%@�@�@�@�
�@�H@t
@~@�@)
��@@�@;�@�@|@H@c@,@�@�@�@@�@�@+@<@�"@�
@@(@K�V
@@B@% mEm�%@ma*@`	l�
�
�@�	n
{	���T�
@E�
6��@n	�A+k<hQUa_`w;rpt>=�iNHfP?Ry8D$DGKY-DGLjxEG9W^\gc VdK+K'Kv]u[L)L*LSIY,Y(YZj2A4ABF3nsq
#.#Cdb5e;X~�zx}|{MOT�!7Jro&M0MOT%MakeTakeWhileSkipSkipWhileGroupByDistinctConcatZipUnionIntersectExceptFirstFirstOrDefaultLastLastOrDefaultSingleSingleOrDefaultElementAtElementAtOrDefaultDefaultIfEmptyContainsReverseSequenceEqualAnyAllCountLongCountMinMaxSumAverageAggregateEnumerableWhereSelectSelectManyTakeTakeWhileSkipSkipWhileJoinGroupJoinOrderByOrderByDescendingThenByThenByDescendingGroupByConcatZipDistinctUnionIntersectExceptReverseSequenceEqualAsEnumerableToArrayToListToDictionaryToLookupDefaultIfEmptyOfTypeCastFirstFirstOrDefaultLastLastOrDefaultSingleSingleOrDefaultElementAtElementAtOrDefaultAnyAllCountLongCountContainsAggregateSumMinMaxAverageIOrderedEnumerableIGroupingILookupLookupParallelEnumerableAsParallelAsOrderedAsUnorderedAsSequentialWithDegreeOfParallelismWithCancellationWithExecutionModeWithMergeOptionsForAllWhereSelectZipJoinGroupJoinSelectManyOrderByOrderByDescendingThenByThenByDescendingGroupByAggregateCountLongCountSumMinMaxAverageAnyAllContainsTakeTakeWhileSkipSkipWhileConcatSequenceEqualDistinctUnionIntersectExceptAsEnumerableToArrayToListToDictionaryToLookupReverseOfTypeCastFirstFirstOrDefaultLastLastOrDefaultSingleSingleOrDefaultDefaultIfEmptyElementAtElementAtOrDefaultEnumerableQueryEnumerableExecutorParallelMergeOptionsParallelExecutionModeParallelQueryOrderedParallelQueryRuntimeCompilerServicesExecutionScopeDynamicAttributeCallSiteBinderCallSiteCallSiteHelpersCallSiteOpsCreateMatchmakerSetNotMatchedGetMatchClearMatchAddRuleUpdateRulesGetRulesGetRuleCacheMoveRuleGetCachedRulesBindRuntimeOpsExpandoTryGetValueExpandoTrySetValueExpandoTryDeleteValueExpandoCheckVersionExpandoPromoteClassQuoteMergeRuntimeVariablesCreateRuntimeVariablesIRuntimeVariablesRuleCacheClosureDebugInfoGeneratorExtensionAttributeReadOnlyCollectionBuilderIStrongBoxStrongBoxInteropServicesComAwareEventInfoSafeBufferSerializationISerializableIDeserializationCallbackSecurityCryptographyX509CertificatesAuthenticodeSignatureInformationTimestampInformationTrustStatusAesCryptoServiceProviderAesManagedCngAlgorithmCngAlgorithmGroupCngKeyHandleOpenOptionsCngKeyCngKeyBlobFormatCngKeyCreationParametersCngPropertyCngPropertyCollectionCngProviderCngUIPolicyECDiffieHellmanECDiffieHellmanPublicKeyECDiffieHellmanKeyDerivationFunctionECDiffieHellmanCngECDiffieHellmanCngPublicKeyECDsaECDsaCngECKeyXmlFormatManifestSignatureInformationManifestSignatureInformationCollectionMD5CngCngExportPoliciesCngKeyCreationOptionsCngKeyOpenOptionsCngKeyUsagesCngPropertyOptionsCngUIProtectionLevelsSHA1CngSHA256CngSHA256CryptoServiceProviderSHA384CngSHA384CryptoServiceProviderSHA512CngSHA512CryptoServiceProviderSignatureVerificationResultStrongNameSignatureInformationAesAsymmetricAlgorithmMD5SHA1SHA256SHA384SHA512ManifestKindsAccessControlAccessRuleAuditRuleNativeObjectSecurityObjectSecurityDynamicDynamicMetaObjectBinderBinaryOperationBinderBindingRestrictionsCallInfoConvertBinderCreateInstanceBinderDeleteIndexBinderDeleteMemberBinderDynamicMetaObjectIDynamicMetaObjectProviderDynamicObjectGetMemberBinderExpandoObjectGetIndexBinderIInvokeOnGetBinderInvokeBinderInvokeMemberBinderSetIndexBinderSetMemberBinderUnaryOperationBinderDiagnosticsEventingReaderEventBookmarkEventLogTypeEventLogIsolationEventLogModeEventLogConfigurationEventLogLinkEventLogStatusEventPropertyEventLogPropertySelectorEventRecordEventKeywordEventLevelEventLogRecordEventLogReaderEventLogWatcherEventRecordWrittenEventArgsEventLogQuerySessionAuthenticationPathTypeEventLogSessionEventMetadataEventOpcodeEventTaskEventLogExceptionEventLogNotFoundExceptionEventLogReadingExceptionEventLogProviderDisabledExceptionEventLogInvalidDataExceptionEventLogInformationProviderMetadataStandardEventLevelStandardEventTaskStandardEventOpcodeStandardEventKeywordsEventDescriptorEventProviderWriteEventErrorCodeEventProviderTraceListenerPerformanceDataCounterDataCounterSetInstanceCounterDataSetCounterSetCounterSetInstanceCounterSetInstanceTypeCounterTypeEventSchemaTraceListenerTraceLogRetentionOptionUnescapedXmlDiagnosticDataTextWriterTraceListenerTraceListenerCollectionsGenericHashSetEnumeratorIEnumerableIListICollectionIDictionaryISetIEnumeratorIEnumerableIListICollectionObjectModelCollectionReadOnlyCollectionIEnumeratorIOPipesPipeDirectionPipeTransmissionModePipeOptionsPipeStreamAnonymousPipeServerStreamAnonymousPipeClientStreamPipeStreamImpersonationWorkerNamedPipeServerStreamNamedPipeClientStreamPipeAccessRightsPipeAccessRulePipeAuditRulePipeSecurityMemoryMappedFilesMemoryMappedFileAccessMemoryMappedFileOptionsMemoryMappedFileMemoryMappedViewAccessorMemoryMappedViewStreamMemoryMappedFileRightsMemoryMappedFileSecurityHandleInheritabilityStreamUnmanagedMemoryAccessorUnmanagedMemoryStreamThreadingTasksTaskExtensionsUnwrapLockRecursionPolicyReaderWriterLockSlimActionFuncMulticastDelegateAttributeEnumExceptionObjectReflectionEventInfoIEquatableIDisposableValueTypeComponentModelINotifyPropertyChangedEventArgs������
s�
t��*X[�
[�

[b	~�		I�	[I~�	I�[�U�UF~�	I�[�~
I�	I�
I�[�I�I[[�	��	n
 �t~�	I�[��h�*	h$�hSDED[DjD�~?
I�[3
��
*�D�
[�
[B[[	[S[[�
[h[y[1[<[�[Q[\[�['
=����f��t~�	I1[=�R�Z~�	I�[$
hL~�	I�[�O�
O	O� OO1O1hu*ggR
sd��Dw��~|
I�[EhVh+�}~�	I)[��5D��hh�h�
hg[�[�[�$[v[�[�[�[+	~�
	I�	[4~�
I�[�����
��
��
��
�	�D
]|��	a6d�]�
]z]�]]�]]]�]n]�]�]�!]5
]�]�]�]_]�]Q]]n
]{]�
]�
����]]<d�	]�~�	IH[�	�'D'g�
h:gg�gg

��������D�~C
IN[�~H
IS['	Iz��B�*�h�*�h�*�*����m~�	I"[6	~?		I�	[����B��2
}����yhB��CB���
��	��hB�������E��������f�	~�		I?	[���h�hN�{���q
�{�}D%

}���
D2~;	I�[����~V
Ia[	
~Z

Ie
[���M�Q	~�		I�	[��1��
�k�m�M �2���������4���M���������
s�[&[q~�	I�[n[<[L�?
�\�m�}�����y+L+b+�+;��+�+�+Rg��	n~�	I�[�*~��U�U����
���B��~9
I�[?~R	I�[F~Y	I�[�
����
��
��

���W]�dUU"
UU
UvUP�/U�
U�UbU!]�	�Mg>�`�1=�D�
��~2
I�[�	D��
D��

���!jxj�jj)j<jTjjjJ
�~2	I�[
~H	
I�
[�
~�	
I�
[

fB]�hh�
*q[�[u[�	[�[{[�	[�[�[�	[[[~g
Ir[~m
Ix[%~�	I[)	~�		I	[g]1]T]C]���	D:[k~�	I�[
��/��~�	I[	~�		I	[9�4��dW~j	I�[]~p	I�[+	��
��~
I�~
I�~
I�~*
I�
dTd�
�A
�N�b�hkd�~�	I:[���G��*�	�~-	I�[	1�I�I	I	I���^
[z~8	I7[Aknrlnopqim6�X
�i�})KJ��"8qu369:=@������~N�����VW�SYTP()*
	��������������L`���������<G[~I�L��.|�!���(')*ge0]`�12457>?r��$&km��������������������ZRUST�'^������LLH�!%IJ\^j�����#$0:;Mh������! %&''�`�`�����C�125;>�4r�������ZUST�'^�;��A<nsnorpst_�����������(ll"NXbc�������m�����������������������������WW87QR9V�-�.>,
	Q	Q����@<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Core.dll�	17���2z5�^�
ȝ�	�_�O���2MicrosoftWin32SafeHandlesSafeNCryptHandleSafeNCryptKeyHandleSafeNCryptProviderHandleSafeNCryptSecretHandleSafePipeHandleSafeMemoryMappedFileHandleSafeMemoryMappedViewHandleSafeHandleZeroOrMinusOneIsInvalidSystemManagementInstrumentationManagementEntityAttributeManagementHostingModelWmiConfigurationAttributeManagementMemberAttributeManagementNewInstanceAttributeManagementBindAttributeManagementCreateAttributeManagementRemoveAttributeManagementEnumeratorAttributeManagementProbeAttributeManagementTaskAttributeManagementKeyAttributeManagementReferenceAttributeManagementConfigurationTypeManagementConfigurationAttributeManagementCommitAttributeManagementNameAttributeInstrumentationBaseExceptionInstrumentationExceptionInstanceNotFoundExceptionLinqExpressionsExpressionVisitorExpressionBinaryExpressionBlockExpressionCatchBlockConditionalExpressionConstantExpressionDebugInfoExpressionDefaultExpressionDynamicExpressionElementInitExpressionTypeGotoExpressionKindGotoExpressionIndexExpressionInvocationExpressionLabelExpressionLabelTargetLambdaExpressionListInitExpressionLoopExpressionMemberBindingMemberAssignmentMemberBindingTypeMemberExpressionMemberInitExpressionMemberListBindingMemberMemberBindingMethodCallExpressionNewArrayExpressionNewExpressionParameterExpressionRuntimeVariablesExpressionSwitchCaseSwitchExpressionSymbolDocumentInfoTryExpressionTypeBinaryExpressionUnaryExpressionIQueryableIQueryProviderIOrderedQueryableQueryableAsQueryableWhereOfTypeCastSelectSelectManyJoinGroupJoinOrderByOrderByDescendingThenByThenByDescendingT
U�4��h<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\Microsoft.CSharp.dll�	17E�Y�^
�6��|aخ�82���MicrosoftCSharpRuntimeBinderBinderCSharpArgumentInfoCSharpArgumentInfoFlagsCSharpBinderFlagsRuntimeBinderExceptionRuntimeBinderInternalCompilerExceptionSystemObjectEnumException����
	"
4
K
�
�	
	�

\
r&
�	�(�a�~<SymbolTreeInfo>_Metadata_C:\Program Files\Laserfiche\SDK 10.2\bin\COM\x86\Interop.DocumentProcessor83.dll�	17:���Pn��G�ܭ%� � �	DocumentProcessor83_IDocumentExporterEventsDocumentExporterClass_IDocumentExporterEvents_Event_IDocumentExporterEvents_PageExportedEventHandler_IDocumentExporterEvents_InvalidChecksumEventHandlerDocumentExporterIDocumentExporterLog_LevelDocument_FormatImage_Rotation_AmountIWatermarkSpecification_IDocumentImporterEventsDocumentImporterClass_IDocumentImporterEvents_Event_IDocumentImporterEvents_PageImportedEventHandlerDocumentImporterIDocumentImporterImport_Page_ActionText_EncodingListImporterClassListImporterIListImporter_IOCREngineEventsOCREngineClass_IOCREngineEvents_Event_IOCREngineEvents_PageCompletedEventHandlerOCREngineIOCREngineOCR_Optimization_Mode_ITextExtractorEventsTextExtractorClass_ITextExtractorEvents_Event_ITextExtractorEvents_PageTextExtractedEventHandlerTextExtractorITextExtractorDocument_Type_SupportWatermarkSpecificationClassWatermarkSpecification_IImportEngineEventsImportEngineClass_IImportEngineEvents_Event_IImportEngineEvents_DocProcessedEventHandlerImportEngineIImportEngine_ITextExtractorEvents_SinkHelper_IOCREngineEvents_SinkHelper_IImportEngineEvents_SinkHelper_IDocumentExporterEvents_SinkHelper_IDocumentImporterEvents_SinkHelperSystemObjectMulticastDelegateEnum7����@�4^1M#(Us1p#m�-�.-D+���3� �'�+�@�1���

����x
���	�1�1�o	��

�W<-*046%
	,+"#2.!*))*&0//00/'433443(6556 %$$%%$

	ctionOdbcPermissionOdbcPermissionAttributeOdbcRowUpdatingEventHandlerOdbcRowUpdatedEventHandlerOdbcRowUpdatingEventArgsOdbcRowUpdatedEventArgsOdbcTransactionOdbcTypeOleDbOleDbCommandOleDbCommandBuilderOleDbConnectionOleDbConnectionStringBuilderOleDbDataAdapterOleDbDataReaderOleDbEnumeratorOleDbErrorOleDbErrorCollectionOleDbExceptionOleDbFactoryOleDbInfoMessageEventArgsOleDbInfoMessageEventHandlerOleDbLiteralOleDbMetaDataCollectionNamesOleDbMetaDataColumnNamesOleDbParameterOleDbParameterCollectionOleDbPermissionOleDbPermissionAttributeOleDbRowUpdatedEventArgsOleDbRowUpdatedEventHandlerOleDbRowUpdatingEventArgsOleDbRowUpdatingEventHandlerOleDbSchemaGuidOleDbTransactionOleDbTypeSqlSqlDataSourceEnumeratorSqlNotificationRequestSqlClientOnChangeEventHandlerSqlRowsCopiedEventArgsSqlRowsCopiedEventHandlerSortOrderSqlBulkCopySqlBulkCopyColumnMappingSqlBulkCopyColumnMappingCollectionSqlBulkCopyOptionsSqlClientFactorySqlClientMetaDataCollectionNamesSqlClientPermissionSqlClientPermissionAttributeSqlCommandSqlCommandBuilderSqlConnectionSQLDebuggingSqlConnectionStringBuilderSqlDataAdapterSqlDataReaderSqlDependencySqlErrorSqlErrorCollectionSqlExceptionSqlInfoMessageEventArgsSqlInfoMessageEventHandlerSqlNotificationEventArgsSqlNotificationInfoSqlNotificationSourceSqlNotificationTypeSqlParameterSqlParameterCollectionSqlRowUpdatedEventArgsSqlRowUpdatedEventHandlerSqlRowUpdatingEventArgsSqlRowUpdatingEventHandlerSqlTransactionISQLDebugSqlTypesINullableSqlBinarySqlBooleanSqlByteSqlBytesSqlCharsSqlDateTimeSqlDecimalSqlDoubleSqlFileStreamSqlGuidSqlInt16SqlInt32SqlInt64SqlMoneySqlSingleSqlCompareOptionsSqlStringSqlTypesSchemaImporterExtensionHelperTypeCharSchemaImporterExtensionTypeNCharSchemaImporterExtensionTypeVarCharSchemaImporterExtensionTypeNVarCharSchemaImporterExtensionTypeTextSchemaImporterExtensionTypeNTextSchemaImporterExtensionTypeVarBinarySchemaImporterExtensionTypeBinarySchemaImporterExtensionTypeVarImageSchemaImporterExtensionTypeDecimalSchemaImporterExtensionTypeNumericSchemaImporterExtensionTypeBigIntSchemaImporterExtensionTypeIntSchemaImporterExtensionTypeSmallIntSchemaImporterExtensionTypeTinyIntSchemaImporterExtensionTypeBitSchemaImporterExtensionTypeFloatSchemaImporterExtensionTypeRealSchemaImporterExtensionTypeDateTimeSchemaImporterExtensionTypeSmallDateTimeSchemaImporterExtensionTypeMoneySchemaImporterExtensionTypeSmallMoneySchemaImporterExtensionTypeUniqueIdentifierSchemaImporterExtensionStorageStateSqlTypeExceptionSqlNullValueExceptionSqlTruncateExceptionSqlNotFilledExceptionSqlAlreadyFilledExceptionSqlXmlIDataRecordAcceptRejectRuleInternalDataCollectionBaseCommandBehaviorCommandTypeConflictOptionConnectionStateConstraintConstraintCollectionDataColumnDataColumnChangeEventArgsDataColumnChangeEventHandlerDataColumnCollectionDataExceptionConstraintExceptionDeletedRowInaccessibleExceptionDuplicateNameExceptionInRowChangingEventExceptionInvalidConstraintExceptionMissingPrimaryKeyExceptionNoNullAllowedExceptionReadOnlyExceptionRowNotInTableExceptionVersionNotFoundExceptionDataRelationDataRelationCollectionDataRowDataRowBuilderDataRowActionDataRowChangeEventArgsDataRowChangeEventHandlerDataRowCollectionDataRowStateDataRowVersionDataRowViewSerializationFormatDataSetDataSetSchemaImporterExtensionDataSetDateTimeDataSysDescriptionAttributeDataTableDataTableClearEventArgsDataTableClearEventHandlerDataTableCollectionDataTableNewRowEventHandlerDataTableNewRowEventArgsIDataReaderDataTableReaderDataViewDataViewManagerDataViewRowStateDataViewSettingDataViewSettingCollectionDBConcurrencyExceptionDbTypeFillErrorEventArgsFillErrorEventHandlerForeignKeyConstraintIColumnMappingIColumnMappingCollectionIDataAdapterIDataParameterIDataParameterCollectionIDbCommandIDbConnectionIDbDataAdapterIDbDataParameterIDbTransactionIsolationLevelITableMappingITableMappingCollectionLoadOptionMappingTypeMergeFailedEventArgsMergeFailedEventHandlerMissingMappingActionMissingSchemaActionOperationAbortedExceptionParameterDirectionPropertyCollectionStatementCompletedEventArgsStatementCompletedEventHandlerRuleSchemaTypeSchemaSerializationModeSqlDbTypeStateChangeEventArgsStateChangeEventHandlerStatementTypeUniqueConstraintUpdateRowSourceUpdateStatusXmlReadModeXmlWriteModeTypedDataSetGeneratorStrongTypingExceptionTypedDataSetGeneratorExceptionKeyRestrictionBehaviorInvalidExpressionExceptionEvaluateExceptionSyntaxErrorExceptionPropertyAttributesXmlXmlDataDocumentSerializationIXmlSerializableAdvancedSchemaImporterExtensionXmlDocumentConfigurationIConfigurationSectionHandlerEnumObjectCollectionsICollectionIEnumerableIListHashtableIDictionaryIEnumeratorCollectionBaseComponentModelMarshalByValueComponentICustomTypeDescriptorIEditableObjectIDataErrorInfoINotifyPropertyChangedIListSourceISupportInitializeNotificationISupportInitializeDescriptionAttributeIBindingListViewIBindingListITypedListComponentEventArgsMulticastDelegateSystemExceptionRuntimeSerializationISerializableInteropServicesExternalExceptionIDisposableMarshalByRefObjectICloneableSecurityCodeAccessPermissionPermissionsIUnrestrictedPermissionCodeAccessSecurityAttributeAttributeIServiceProviderValueTypeIComparableIOStreamMicrosoftSqlServerServerSqlContextSqlDataRecordSqlPipeSqlTriggerContextTriggerActionIBinarySerializeInvalidUdtExceptionSqlFacetAttributeDataAccessKindSystemDataAccessKindSqlFunctionAttributeSqlMetaDataSqlMethodAttributeSqlProcedureAttributeSqlTriggerAttributeSqlUserDefinedAggregateAttributeFormatSqlUserDefinedTypeAttributej�����
��	CQ����zC
�	
�CG
C)8
B�C_�+V
`y�6G�
����
���&2@^�e��	���n~�8GO^n}�	�����
��b".z�9DYw�'��'�
��u
�pC��	C��������	+��
�
?
C����CT�

--�
E
O
\jz�"C
���:
$
��
�{		4�;��C�
��C�j		�c
E
�
��

p�
���
�-C�
���	�3�CMtC�����������
�	�$�7
�D�j�O������
�������J��2���a�p�x}��������������
����!�-�F�b�n��������������"�;�W�f�v	���!:e��L�ct&��C%�:K�
IC�
�
eK�,�	��
4�		4�	
4��'"�I��	4�	4�	4�	[�k ������
���	
4�
����
��
��
����	4�	���	
4#
��		40�8�J�N��	
4���	4V�m��	4�	4�	4�����	4�
4����������o
4�������������	�+	�B	��	�
	4
	4\	���
��
4_
4s	#
%4� ���
4��^y�
S
4��Td�m��C
��!4/!4;4H
4�#4?is"4Y 4�4� 4g
 4�
 4�"4�
#4y4�(4�#4
%4�
4"4(
+4$4�
"4P#4�
�	C��C�e<e(3RV/	
!&'�*8R���������=abhi��^uA����� �>FD]�/ "(9:LD?EFLMNO��HI�������������

��8$1d67:fm�2?K��
y67:fm�C2?K��
%0�)-67X#.3Z�;9����&�$/4[�<:�������')+E=�3�
SU~�����d@M�i(D?x(k(}(|)-�)-�����	-.8�)-6�)-6�)-���+5T,wnpqtC;>Q���onCDC5��b6a67{67fm�2K�67\`jr@��lsJ��"_��WB�C12JKQnC;<>ec1@����������"f�1�2p;�q>�v?@r@��A�ABzFYGsJ��"mKhLNP%067tQ;���<���>���?��@��G��O���J��"K��#A���B������*���(Q��/E����c
���	-.������	-.8g
���	-.?5JR^UZS]H_NTGPX[IOVKWQY\3!2�gf
�����
�{��<<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.dll�	17�R�ѲX~��$Uj y*�Dd���MicrosoftWin32PowerModeChangedEventArgsPowerModeChangedEventHandlerPowerModesSessionEndedEventArgsSessionEndedEventHandlerSessionEndingEventArgsSessionEndingEventHandlerSessionEndReasonsSessionSwitchEventArgsSessionSwitchEventHandlerSessionSwitchReasonSystemEventsTimerElapsedEventArgsTimerElapsedEventHandlerUserPreferenceCategoryUserPreferenceChangedEventArgsUserPreferenceChangedEventHandlerUserPreferenceChangingEventArgsUserPreferenceChangingEventHandlerIntranetZoneCredentialPolicySafeHandlesSafeHandleZeroOrMinusOneIsInvalidCSharpCSharpCodeProviderVisualBasicVBCodeProviderSystemTextRegularExpressionsRegexMatchEvaluatorCaptureCaptureCollectionRegexCompilationInfoGroupGroupCollectionRegexRunnerMatchMatchCollectionRegexOptionsRegexRunnerFactoryCodeDomCompilerICodeGeneratorCodeGeneratorICodeCompilerCodeCompilerCodeDomProviderCodeGeneratorOptionsICodeParserCodeParserCompilerErrorCompilerErrorCollectionCompilerInfoCompilerParametersCompilerResultsExecutorExecWaitWithCaptureGeneratedCodeAttributeGeneratorSupportIndentedTextWriterLanguageOptionsTempFileCollectionCodeObjectCodeExpressionCodeArgumentReferenceExpressionCodeArrayCreateExpressionCodeArrayIndexerExpressionCodeStatementCodeAssignStatementCodeAttachEventStatementCodeAttributeArgumentCodeAttributeArgumentCollectionCodeAttributeDeclarationCodeAttributeDeclarationCollectionCodeBaseReferenceExpressionCodeBinaryOperatorExpressionCodeBinaryOperatorTypeCodeCastExpressionCodeCatchClauseCodeCatchClauseCollectionCodeDirectiveCodeChecksumPragmaCodeCommentCodeCommentStatementCodeCommentStatementCollectionCodeCompileUnitCodeConditionStatementCodeTypeMemberCodeMemberMethodCodeConstructorCodeDefaultValueExpressionCodeDelegateCreateExpressionCodeDelegateInvokeExpressionCodeDirectionExpressionCodeDirectiveCollectionCodeEntryPointMethodCodeEventReferenceExpressionCodeExpressionCollectionCodeExpressionStatementCodeFieldReferenceExpressionCodeGotoStatementCodeIndexerExpressionCodeIterationStatementCodeLabeledStatementCodeLinePragmaCodeMemberEventCodeMemberFieldCodeMemberPropertyCodeMethodInvokeExpressionCodeMethodReferenceExpressionCodeMethodReturnStatementCodeNamespaceCodeNamespaceCollectionCodeNamespaceImportCodeNamespaceImportCollectionCodeObjectCreateExpressionCodeParameterDeclarationExpressionCodeParameterDeclarationExpressionCollectionCodePrimitiveExpress�f	���T<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Data.dll�	17�ɯv��eʒO�o�'Y
����2SystemDataCommonCatalogLocationDbDataReaderDataAdapterDataColumnMappingDataColumnMappingCollectionDbDataRecordDataTableMappingDataTableMappingCollectionDbCommandDbCommandBuilderDbConnectionDbConnectionStringBuilderDbDataAdapterDBDataPermissionDBDataPermissionAttributeDbDataSourceEnumeratorDbEnumeratorDbExceptionDbParameterDbParameterCollectionDbProviderConfigurationHandlerDbProviderFactoriesDbProviderFactoriesConfigurationHandlerDbProviderFactoryDbProviderSpecificTypePropertyAttributeDbTransactionGroupByBehaviorIdentifierCaseRowUpdatedEventArgsRowUpdatingEventArgsSchemaTableColumnSchemaTableOptionalColumnSupportedJoinOperatorsDbMetaDataCollectionNamesDbMetaDataColumnNamesProviderBaseOdbcOdbcCommandOdbcCommandBuilderOdbcConnectionOdbcConnectionStringBuilderOdbcDataAdapterOdbcDataReaderOdbcErrorOdbcErrorCollectionOdbcExceptionOdbcFactoryOdbcInfoMessageEventHandlerOdbcInfoMessageEventArgsOdbcMetaDataCollectionNamesOdbcMetaDataColumnNamesOdbcParameterOdbcParameterColleionCodePropertyReferenceExpressionCodePropertySetValueReferenceExpressionCodeRegionDirectiveCodeRegionModeCodeRemoveEventStatementCodeSnippetCompileUnitCodeSnippetExpressionCodeSnippetStatementCodeSnippetTypeMemberCodeStatementCollectionCodeThisReferenceExpressionCodeThrowExceptionStatementCodeTryCatchFinallyStatementCodeTypeConstructorCodeTypeDeclarationCodeTypeDeclarationCollectionCodeTypeDelegateCodeTypeMemberCollectionCodeTypeOfExpressionCodeTypeParameterCodeTypeParameterCollectionCodeTypeReferenceOptionsCodeTypeReferenceCodeTypeReferenceCollectionCodeTypeReferenceExpressionCodeVariableDeclarationStatementCodeVariableReferenceExpressionFieldDirectionMemberAttributesComponentModelDesignSerializationComponentSerializationServiceContextStackDefaultSerializationProviderAttributeDesignerLoaderDesignerSerializerAttributeIDesignerLoaderHostIDesignerLoaderHost2IDesignerLoaderServiceIDesignerSerializationManagerIDesignerSerializationProviderIDesignerSerializationServiceINameCreationServiceInstanceDescriptorMemberRelationshipServiceMemberRelationshipResolveNameEventArgsResolveNameEventHandlerRootDesignerSerializerAttributeSerializationStoreTypeDescriptionProviderServiceActiveDesignerEventArgsActiveDesignerEventHandlerCheckoutExceptionCommandIDComponentChangedEventArgsComponentChangedEventHandlerComponentChangingEventArgsComponentChangingEventHandlerComponentEventArgsComponentEventHandlerComponentRenameEventArgsComponentRenameEventHandlerIDesignerOptionServiceDesignerOptionServiceDesignerOptionCollectionDesignerTransactionDesignerTransactionCloseEventArgsDesignerTransactionCloseEventHandlerMenuCommandDesignerVerbDesignerVerbCollectionDesigntimeLicenseContextDesigntimeLicenseContextSerializerDesignerCollectionDesignerEventArgsDesignerEventHandlerHelpContextTypeHelpKeywordAttributeHelpKeywordTypeIComponentChangeServiceIComponentDiscoveryServiceIComponentInitializerIDesignerIDesignerEventServiceIDesignerFilterIServiceContainerIDesignerHostIDesignerHostTransactionStateIDictionaryServiceIEventBindingServiceIExtenderListServiceIExtenderProviderServiceIHelpServiceIInheritanceServiceIMenuCommandServiceIReferenceServiceIResourceServiceIRootDesignerISelectionServiceITreeDesignerITypeDescriptorFilterServiceITypeDiscoveryServiceITypeResolutionServiceSelectionTypesServiceCreatorCallbackServiceContainerStandardCommandsStandardToolWindowsViewTechnologyAddingNewEventArgsAddingNewEventHandlerAmbientValueAttributeTypeConverterStandardValuesCollectionMemberDescriptorPropertyDescriptorCollectionConverterArrayConverterAsyncCompletedEventArgsAsyncCompletedEventHandlerAsyncOperationAsyncOperationManagerAttributeCollectionAttributeProviderAttributeIComponentComponentBackgroundWorkerComponentEditorBaseNumberConverterBindableAttributeBindableSupportBindingDirectionIBindingListICancelAddNewIRaiseItemChangedEventsBindingListBooleanConverterBrowsableAttributeByteConverterCancelEventArgsCancelEventHandlerCategoryAttributeCharConverterCollectionChangeActionCollectionChangeEventArgsCollectionChangeEventHandlerComplexBindingPropertiesAttributeComponentCollectionReferenceConverterComponentConverterComponentResourceManagerIContainerContainerISiteContainerFilterServiceCultureInfoConverterICustomTypeDescriptorCustomTypeDescriptorDataObjectAttributeDataObjectFieldAttributeDataObjectMethodAttributeDataObjectMethodTypeDateTimeConverterDateTimeOffsetConverterDecimalConverterDefaultBindingPropertyAttributeDefaultEventAttributeDefaultPropertyAttributeDefaultValueAttributeTypeDescriptionProviderDescriptionAttributeDesignerAttributeDesignerCategoryAttributeDesignerSerializationVisibilityDesignerSerializationVisibilityAttributeDesignOnlyAttributeDesignTimeVisibleAttributeDisplayNameAttributeDoubleConverterDoWorkEventArgsDoWorkEventHandlerEditorAttributeEditorBrowsableAttributeEditorBrowsableStateEnumConverterEventDescriptorEventDescriptorCollectionEventHandlerListExpandableObjectConverterExtenderProvidedPropertyAttributeGuidConverterHandledEventArgsHandledEventHandlerIBindingListViewIChangeTrackingIComNativeDescriptorHandlerIDataErrorInfoIEditableObjectIExtenderProviderIIntellisenseBuilderIListSourceImmutableObjectAttributeINestedContainerINestedSiteInitializationEventAttributeINotifyPropertyChangedINotifyPropertyChangingInstallerTypeAttributeInstanceCreationEditorInt16ConverterInt32ConverterInt64ConverterInvalidAsynchronousStateExceptionInvalidEnumArgumentExceptionIRevertibleChangeTrackingISupportInitializeISupportInitializeNotificationISynchronizeInvokeITypeDescriptorContextITypedListLicenseLicenseContextLicenseExceptionLicenseManagerLicenseProviderLicenseProviderAttributeLicenseUsageModeLicFileLicenseProviderListBindableAttributeListChangedEventArgsListChangedEventHandlerListChangedTypeListSortDescriptionListSortDescriptionCollectionListSortDirectionLocalizableAttributeLookupBindingPropertiesAttributeMarshalByValueComponentMaskedTextProviderMaskedTextResultHintMergablePropertyAttributeMultilineStringConverterNestedContainerNullableConverterPasswordPropertyTextAttributeProgressChangedEventArgsProgressChangedEventHandlerPropertyChangedEventArgsPropertyChangedEventHandlerPropertyChangingEventArgsPropertyChangingEventHandlerPropertyDescriptorCollectionProvidePropertyAttributeReadOnlyAttributeRecommendedAsConfigurableAttributeRefreshEventArgsRefreshEventHandlerRunInstallerAttributeRunWorkerCompletedEventArgsRunWorkerCompletedEventHandlerSByteConverterSettingsBindableAttributeSingleConverterStringConverterSyntaxCheckTimeSpanConverterToolboxItemFilterAttributeToolboxItemFilterTypeTypeConverterAttributeTypeDescriptionProviderAttributeTypeDescriptorTypeListConverterUInt16ConverterUInt32ConverterUInt64ConverterWarningExceptionWin32ExceptionInheritanceAttributeInheritanceLevelNotifyParentPropertyAttributeParenthesizePropertyNameAttributePropertyTabAttributePropertyTabScopeRefreshPropertiesRefreshPropertiesAttributeToolboxItemAttributeDiagnosticsCodeAnalysisExcludeFromCodeCoverageAttributeSwitchBooleanSwitchTraceListenerTextWriterTraceListenerConsoleTraceListenerCorrelationManagerDebugFlushCloseAssertFailPrintWriteWriteLineWriteIfWriteLineIfIndentUnindentDefaultTraceListenerDelimitedListTraceListenerTraceFilterEventTypeFilterSourceFilterSourceLevelsSourceSwitchSwitchAttributeSwitchLevelAttributeTraceTraceEventCacheTraceEventTypeTraceLevelTraceListenerCollectionTraceOptionsTraceSourceTraceSwitchXmlWriterTraceListenerCounterCreationDataCounterCreationDataCollectionCounterSampleCounterSampleCalculatorDataReceivedEventHandlerDataReceivedEventArgsDiagnosticsConfigurationHandlerEntryWrittenEventArgsEntryWrittenEventHandlerEventInstanceEventLogEventLogEntryEventLogEntryCollectionEventLogEntryTypeEventLogPermissionEventLogPermissionAccessEventLogPermissionAttributeEventLogPermissionEntryEventLogPermissionEntryCollectionEventLogTraceListenerEventSourceCreationDataFileVersionInfoICollectDataInstanceDataInstanceDataCollectionInstanceDataCollectionCollectionMonitoringDescriptionAttributeOverflowActionPerformanceCounterPerformanceCounterCategoryPerformanceCounterCategoryTypePerformanceCounterInstanceLifetimePerformanceCounterManagerPerformanceCounterPermissionPerformanceCounterPermissionAccessPerformanceCounterPermissionAttributePerformanceCounterPermissionEntryPerformanceCounterPermissionEntryCollectionPerformanceCounterTypeProcessProcessModuleProcessModuleCollectionProcessPriorityClassProcessStartInfoProcessThreadProcessThreadCollectionProcessWindowStyleStopwatchThreadPriorityLevelThreadStateThreadWaitReasonConfigurationIConfigurationSectionHandlerSchemeSettingElementSchemeSettingElementCollectionUriSectionIriParsingElementIdnElementSettingsBaseApplicationSettingsBaseSettingsLoadedEventHandlerSettingsSavingEventHandlerSettingChangingEventHandlerSettingChangingEventArgsSettingsLoadedEventArgsConfigurationExceptionConfigurationSettingsConfigXmlDocumentDictionarySectionHandlerIApplicationSettingsProviderIConfigurationSystemIgnoreSectionHandlerIPersistComponentSettingsISettingsProviderServiceSettingsProviderLocalFileSettingsProviderNameValueFileSectionHandlerNameValueSectionHandlerSettingsAttributeDictionarySettingAttributeApplicationScopedSettingAttributeDefaultSettingValueAttributeNoSettingsVersionUpgradeAttributeSettingsDescriptionAttributeSettingsGroupDescriptionAttributeSettingsGroupNameAttributeSettingsManageabilityAttributeSettingsProviderAttributeSettingsSerializeAsAttributeSpecialSettingAttributeUserScopedSettingAttributeSettingsManageabilitySpecialSettingSettingsContextSettingsPropertySettingsPropertyCollectionSettingsPropertyIsReadOnlyExceptionSettingsPropertyNotFoundExceptionSettingsPropertyValueSettingsPropertyValueCollectionSettingsPropertyWrongTypeExceptionSettingsProviderCollectionSettingsSerializeAsSingleTagSectionHandlerApplicationSettingsGroupUserSettingsGroupClientSettingsSectionSettingElementCollectionSettingElementSettingValueElementAppSettingsReaderConfigurationElementConfigurationElementCollectionConfigurationSectionInternalIConfigErrorInfoProviderProviderBaseProviderCollectionConfigurationSectionGroupIOCompressionCompressionModeDeflateStreamGZipStreamPortsHandshakeParitySerialErrorSerialErrorReceivedEventArgsSerialErrorReceivedEventHandlerSerialPinChangeSerialPinChangedEventArgsSerialPinChangedEventHandlerSerialPortSerialDataSerialDataReceivedEventArgsSerialDataReceivedEventHandlerStopBitsInvalidDataExceptionNotifyFiltersErrorEventArgsErrorEventHandlerFileSystemEventArgsFileSystemEventHandlerFileSystemWatcherInternalBufferOverflowExceptionIODescriptionAttributeRenamedEventArgsRenamedEventHandlerWaitForChangedResultWatcherChangeTypesTextWriterStreamRuntimeInteropServicesComTypesADVFDATADIRDVASPECTFORMATETCIAdviseSinkIDataObjectIEnumFORMATETCIEnumSTATDATASTATDATASTGMEDIUMTYMEDHandleCollectorDefaultParameterValueAttributeStandardOleMarshalObjectExternalExceptionVersioningFrameworkNameSerializationISerializableIDeserializationCallbackThreadingSemaphoreBarrierPostPhaseExceptionBarrierThreadExceptionEventArgsThreadExceptionEventHandlerWaitHandleCollectionsConcurrentBlockingCollectionConcurrentBagIProducerConsumerCollectionGenericLinkedListEnumeratorLinkedListNodeQueueEnumeratorSortedListStackEnumeratorSortedDictionaryEnumeratorKeyCollectionEnumeratorValueCollectionEnumeratorISetSortedSetEnumeratorIEnumerableICollectionIDictionaryIEnumeratorSpecializedINotifyCollectionChangedBitVector32SectionCollectionsUtilHybridDictionaryIOrderedDictionaryListDictionaryNameObjectCollectionBaseKeysCollectionNameValueCollectionNotifyCollectionChangedActionNotifyCollectionChangedEventArgsNotifyCollectionChangedEventHandlerOrderedDictionaryStringCollectionStringEnumeratorStringDictionaryObjectModelObservableCollectionReadOnlyObservableCollectionCollectionReadOnlyCollectionICollectionIEnumerableCollectionBaseIListReadOnlyCollectionBaseIDictionaryDictionaryBaseHashtableIEnumeratorIDictionaryEnumeratorMediaSoundPlayerSystemSoundsSystemSoundSecurityAccessControlSemaphoreRightsSemaphoreAccessRuleSemaphoreAuditRuleSemaphoreSecurityAccessRuleAuditRuleNativeObjectSecurityPermissionsStorePermissionStorePermissionAttributeStorePermissionFlagsTypeDescriptorPermissionFlagsTypeDescriptorPermissionTypeDescriptorPermissionAttributeResourcePermissionBaseResourcePermissionBaseEntryCodeAccessSecurityAttributeIUnrestrictedPermissionCryptographyX509CertificatesX500DistinguishedNameFlagsX500DistinguishedNameX509NameTypeX509IncludeOptionPublicKeyX509Certificate2X509FindTypeX509CertificateCollectionX509CertificateEnumeratorX509Certificate2CollectionX509Certificate2EnumeratorX509ChainStatusFlagsX509ChainStatusX509ChainX509ChainElementX509ChainElementCollectionX509ChainElementEnumeratorX509RevocationModeX509RevocationFlagX509VerificationFlagsX509ChainPolicyX509ExtensionX509KeyUsageFlagsX509KeyUsageExtensionX509BasicConstraintsExtensionX509EnhancedKeyUsageExtensionX509SubjectKeyIdentifierHashAlgorithmX509SubjectKeyIdentifierExtensionX509ExtensionCollectionX509ExtensionEnumeratorStoreLocationOpenFlagsStoreNameX509StoreX509CertificateAsnEncodedDataAsnEncodedDataCollectionAsnEncodedDataEnumeratorOidOidCollectionOidEnumeratorAuthenticationExtendedProtectionConfigurationExtendedProtectionPolicyElementServiceNameElementCollectionServiceNameElementChannelBindingChannelBindingKindExtendedProtectionPolicyExtendedProtectionPolicyTypeConverterPolicyEnforcementProtectionScenarioServiceNameCollectionAuthenticationExceptionInvalidCredentialExceptionSslProtocolsExchangeAlgorithmTypeCipherAlgorithmTypeHashAlgorithmTypeCodeAccessPermissionPrincipalGenericIdentityNetSocketsSocketExceptionNetworkStreamAddressFamilyIOControlCodeIPProtectionLevelLingerOptionMulticastOptionIPv6MulticastOptionProtocolFamilyProtocolTypeSelectModeSocketInformationOptionsSocketInformationSocketSocketAsyncOperationSendPacketsElementSocketAsyncEventArgsSocketErrorSocketFlagsSocketOptionLevelSocketOptionNameSocketShutdownSocketTypeTcpClientTcpListenerTransmitFileOptionsUdpClientIPPacketInformationCacheRequestCacheLevelRequestCachePolicyHttpRequestCacheLevelHttpCacheAgeControlHttpRequestCachePolicySecurityAuthenticatedStreamAuthenticationLevelProtectionLevelNegotiateStreamSslPolicyErrorsEncryptionPolicyRemoteCertificateValidationCallbackLocalCertificateSelectionCallbackSslStreamNetworkInformationDuplicateAddressDetectionStateIcmpV4StatisticsIcmpV6StatisticsNetworkInterfaceTypeIPAddressInformationIPAddressInformationCollectionIPGlobalPropertiesIPGlobalStatisticsIPInterfacePropertiesIPv4InterfaceStatisticsIPStatusUnicastIPAddressInformationUnicastIPAddressInformationCollectionMulticastIPAddressInformationMulticastIPAddressInformationCollectionIPAddressCollectionGatewayIPAddressInformationGatewayIPAddressInformationCollectionIPv4InterfacePropertiesIPv6InterfacePropertiesNetworkAvailabilityEventArgsNetworkChangeNetworkAddressChangedEventHandlerNetworkAvailabilityChangedEventHandlerNetworkInformationExceptionNetworkInformationAccessNetworkInformationPermissionAttributeNetworkInformationPermissionNetworkInterfaceNetworkInterfaceComponentNetBiosNodeTypeOperationalStatusPhysicalAddressPingCompletedEventHandlerPingCompletedEventArgsPingPingExceptionPingOptionsPingReplyPrefixOriginSuffixOriginTcpConnectionInformationTcpStatisticsUdpStatisticsTcpStateConfigurationAuthenticationModuleElementAuthenticationModuleElementCollectionAuthenticationModulesSectionBypassElementBypassElementCollectionConnectionManagementElementConnectionManagementElementCollectionConnectionManagementSectionDefaultProxySectionHttpWebRequestElementHttpListenerElementHttpCachePolicyElementFtpCachePolicyElementIpv6ElementMailSettingsSectionGroupModuleElementNetSectionGroupPerformanceCountersElementProxyElementBypassOnLocalValuesUseSystemDefaultValuesAutoDetectValuesRequestCachingSectionSettingsSectionServicePointManagerElementSmtpSectionSmtpNetworkElementSmtpSpecifiedPickupDirectoryElementSocketElementWebProxyScriptElementWebRequestModuleElementWebRequestModuleElementCollectionWebRequestModulesSectionMailAttachmentBaseAlternateViewAlternateViewCollectionAttachmentAttachmentCollectionLinkedResourceLinkedResourceCollectionMailAddressMailAddressCollectionDeliveryNotificationOptionsMailMessageMailPrioritySendCompletedEventHandlerSmtpDeliveryMethodSmtpClientSmtpExceptionSmtpFailedRecipientExceptionSmtpFailedRecipientsExceptionSmtpAccessSmtpPermissionAttributeSmtpPermissionSmtpStatusCodeMimeContentDispositionContentTypeDispositionTypeNamesMediaTypeNamesTextApplicationImageTransferEncodingICredentialPolicyAuthenticationManagerAuthenticationSchemesAuthenticationSchemeSelectorAuthorizationCookieCookieCollectionCookieContainerCookieExceptionICredentialsICredentialsByHostCredentialCacheNetworkCredentialDnsGetHostByNameGetHostByAddressResolveBeginGetHostByNameEndGetHostByNameBeginResolveEndResolveEndPointDnsEndPointDnsPermissionAttributeDnsPermissionWebRequestIWebProxyFileWebRequestIWebRequestCreateWebResponseFileWebResponseFtpStatusCodeWebRequestMethodsFtpHttpFileFtpWebRequestFtpWebResponseGlobalProxySelectionHttpListenerBasicIdentityHttpListenerExtendedProtectionSelectorHttpListenerContextHttpListenerExceptionHttpListenerPrefixCollectionHttpListenerRequestHttpListenerResponseHttpRequestHeaderHttpResponseHeaderHttpStatusCodeHttpVersionDecompressionMethodsHttpWebRequestHttpWebResponseIAuthenticationModuleICertificatePolicyHttpContinueDelegateIPAddressIPEndPointIPHostEntryNetworkAccessProtocolViolationExceptionTransportContextBindIPEndPointServicePointSecurityProtocolTypeServicePointManagerSocketAddressSocketPermissionAttributeSocketPermissionEndpointPermissionTransportTypeWebClientOpenReadCompletedEventHandlerOpenReadCompletedEventArgsOpenWriteCompletedEventHandlerOpenWriteCompletedEventArgsDownloadStringCompletedEventHandlerDownloadStringCompletedEventArgsDownloadDataCompletedEventHandlerDownloadDataCompletedEventArgsUploadStringCompletedEventHandlerUploadStringCompletedEventArgsUploadDataCompletedEventHandlerUploadDataCompletedEventArgsUploadFileCompletedEventHandlerUploadFileCompletedEventArgsUploadValuesCompletedEventHandlerUploadValuesCompletedEventArgsDownloadProgressChangedEventHandlerDownloadProgressChangedEventArgsUploadProgressChangedEventHandlerUploadProgressChangedEventArgsWebExceptionWebExceptionStatusWebHeaderCollectionWebPermissionAttributeWebPermissionWebProxyWebUtilityIWebProxyScriptTimersElapsedEventArgsElapsedEventHandlerTimerTimersDescriptionAttributeWebAspNetHostingPermissionLevelAspNetHostingPermissionAttributeAspNetHostingPermissionUriParserUriUriBuilderUriFormatExceptionUriHostNameTypeUriPartialUriTypeConverterUriKindUriComponentsUriFormatUriIdnScopeGenericUriParserOptionsGenericUriParserHttpStyleUriParserFtpStyleUriParserFileStyleUriParserNewsStyleUriParserGopherStyleUriParserLdapStyleUriParserNetPipeStyleUriParserNetTcpStyleUriParserEventArgsMulticastDelegateEnumObjectFormatExceptionAttributeIDisposableMarshalByRefObjectResourcesResourceManagerIServiceProviderArgumentExceptionSystemExceptionICloneableValueTypeXmlXmlDocumentExceptionIEquatableInvalidOperationExceptionD�����3
�3
�
�
b�t�:
|�.�aC
dnCd��Er�(!��&�7+��+��N����7��7��7��L�L �L� ���7�E��C
dSCd�CdsN	�Z�m��3	�;18@9&<KE��@��@%��@�`E�uE��E
�OB����/��/���7F)YF)������,��H�i1�.0�7�X 
#G��@
��@�&B�Y
��;�f�u�s�z����8f�8f�
��
�9&`+�� ��9�4�& #Hrgr�r�r�r�r�rr"r@r[rwr�r�r�r�r�r�rr'�#r2rfrur�r�r�r�
r�r��3��r	r:r%r=rTr

�B�pr�r�r�r�r�r�rVr�r�rr5rN
r[rrr�r0
r�r�"r�,ra
�
	r!	r@	'rg	rz	r�	r�	r�	r�	r�	r�
r�	r
r&
rA
r]
rp
r�
r�
rHr�
r�
r�
r�
r r1rLrrg r�r�2
�3���������0�{1��
	�rk
�x��������!��	� <V�6���s�����H��*^,i,��.$0
�@0
�Q8
fs@
�T&
��+��+�u'��+�C,��'��'�A�A%�@A�� #j	�x��Dz�Dz*�E��E��E��E�� #"#"#5"
#B"#�E�5y������.��������q"#Y"##�4�� #K�/H�[�z�/��[A�%*�(�� #��x,
�!#�Cd�����������3*���0(�A*#!D$sX���"k� ��"#53��'����DzF�wF��F
��F���cJ�BJ!��K �uK#�"J ��I#������<��.�������rL��L�A<IF)oF�gI�eF
)�"#�"#ZN�
��0
Gy0
T�0
��0
1
��0
��0
�-�-@N	�� �9��"
#�"#�"
#�"#####.##F##a##x#!#�##�##4!#O	�}9&2  T���cI�?8&�8f^8��8%fnG�b!�P/� ��rG�M��-�-�-�##�F��F�� ��.	�dN�k/
G�A��F
��M�G
�'G�#>�>>%�����h0��9��M��M� F)F
)5G��M������
��,
�/�����,	��9&C3	�)G�;E�A��H�bG�IG��G��A��G��G��G��G��;E�;E�G�H�H��M�$H�CH�nA�QH��1��.��'�`H�����
�uH����N
��<��<�
���V��##�2�%1����
�8Oi
,
a&��'�`
�:E��E��E������.��/+~	���
�\*o*�*��*�*�**3�01�W3��|N��&
����2�1�L3�;1��.��.
�O
��
� �'�8D�3�/�%ErW:��*� ���R�b�V�j�m�Q1����������##�##$ #
*������,��-�.�!�W9&�--�O�\,�:
|.�1��H	�>�=�=��H
�
(�4=�F=��H�X=�m;|":|M0� �=�c>�m=��A�z>�N:|�j{I��&��
��/
+��N�1�&(�s�b�t����
�����
���4��F	�]L��F��0
�1��N�������������.�3:|o0
��0��Cd�CdD�Y�m����1�������t<!N(���� �OC��Cd�CdDdDd�A��N���1�����e�l3�Ez�r��0
*
*hE�	�D��A
�"$#IN��=��='�?:|^��1��1�g(��(�4#<v��9��?�N��A�,N��H
��>!��>&��>��>
��E��<�?�?�Y?�4?%�u?��?��<��9
|�M�)!��1�2 �02#��-
z���^N��2��2�8�8
�$8
��7	*�I��I��I��I��?�S2�@$#�!��,���N$#`$#z$#�$"#�$#�$#�$"#%%#6%!#W%+#B��%#4�?��?��?��?�@
�
@�@	�9f�,'C
!@��9	� ��%#�%
#�%#�%#�%#�%
#�%#&#���������2���N�����<9fa:|o:|�H�j�,�%,�1,�B�{5	*�0����2�3��2��"�$���������`���������N�Q<#1.A.�;E�;E_B�0F)B
*V
*�N�4��4��N	�m
*���.������!&�}&��&�t1<�;��3�
I��{:
|�/	��3�3�3�3Dd�:|7-
�A-�\-��,��,��,��
x/
�
*�,��,�-�--
�!+9f�8�}8��H�I��B�Mbz������(�F'�+'��+�u+��(��&�4� *�")�>)!�_)�^'��&��)�y)�/*�?*�Y*#�|*!��*��*��*"�>(��)��*�'�tB�
+��)��+�M� +��D
dFD
d4DdPD
d]DdyDd�B��Dd�Dd�B��B#��Dd�:|1I
��:|�:|�B
��:|�9|�:|�:|�:|;|;|WI�>I�!�9�%;|3;
|�0��0
�1	�q3qC!#O!#[!#F1�*��)�2<q9&�<	�0�18/A���.��.	�z-�&	#�7
*�7	*4�.4�F4��.d2�\��2�t2�-@�R #g!#v!#k�D��N��3q|3q=;	|9@�F;|k@�Q@
��ErJ�z.
r #�/��/��/	�&&#9&#D&#�L�lL��L�v� ������!#�!#�!#)!#�!
#e 
#�!#�!#�!#�!#*EzQ;|�H�yI
�/��
������ ��
��w4��4!�Z4���d;	|^@
���)��=��=%�� ��J��J�K��J��K��K!��J��J!�WK�6K!�M�M
�bM
�oM	� M�2M�xM�[M�
M	�AM
��&
�KM�5Ki!��"�)�O+�9B��0�N	�6a/
T+yT.0
�8�h.�L��I	��K�L�L�>L
�(L�KL��B��F
��F��B�C!�7C��F�SL
�	yH�� �� �� 	�� �I5*/5*�6*�7*�5*�5*�5*�5*�5(5�)6	*26*B6*\6*�6*6*6*7*�6
*q7*�7*�5*j5*�6*�6*^5*�6*v6*�7	*P7!*+7%*�6*�N��NA�!#�O&�9;>���F��Y���������BMMq(.%��p�;}?�:<?���pG�5�Z��������2�CN[CNr)/&��.�;��3/����1�`���"j<D��=@���������`��ns�I89��:Q[_m����������WY����������O�]�
���'-$��7�� ��":761<;@9?����aO�L��-}�����%��wqsuxy}~���(��=6�'�������C0hdbm��������HI���o��Z\b��z{�����c��t"�����QRKLNO]^kl�����w!1����	v,�����������$SV[^t�����G�&���QRUVa�z2=�TU����G��\�����H������'+,-./45=)g)/�����)?�������"�67o@S�,n#����� !#)���(+��������egc��(r���{�o�s�4 ���UT�KJIHGFL���g�uv���
efgy�����4>M����Ee������i�	��~p��J���0I�o��"�:Q�^���VRV=�T���7�G�\���H�-4�����2I�o��"�:Q�^���VRV=�T���7�G�\����H�-4�����H��n�
v�pei�����vUVW^_almnouy}�������������XYfjx|~�������[]cgqw���������\�(pd���������kt��
��:Q�^���i����zzh�h�s1TU����s0�����!A�#7@J����	
"'89k�PXbcx����H����������
��bA�JKLPY^����(�����R�Kk��2=1,�2=KJIHGFL���np��
 Wgct�P�j�����k�:�
 Wf�:��:-:4D�-
`�������3��	�����69�>Lk5�1�����F4B9��0:;T�s��M	�'OR�lRV��������\�
��2.�����lN�wL 5�1���2=�����u�x��KJIHGFL<0v$�?����]��C�_��$&���a
X�S
Z���,{�j%
|����1�D_h4*A����|*{��8hlr�E5+B��	�P,�\kG��B����XXa�a�FIA
�`STW3e�Z��i�q�
��%�z&��T�KJIHGFL��7��
KJIHGFL�'.5)�KJIHGFL�������$�!R	��
+z�iC	��
+z�i!3$%(&38#2>'K������?*u�v�����t��
��0��D�%���~	Veffg#LFVolumeRightsILFVolumeStatsExport_VersionFolder_Conflict_ActionDocument_Conflict_ActionIndex_TypeILFVolumeDefinitionILFTemplateFieldDefinitionField_Type__MIDL___MIDL_itf_LaserFicheObjects_0001_0064_0014Field_FormatILFTemplateFieldILFFieldRightsILFTemplateDefinitionILFTemplateILFTemplateRightsILFFormLogicRuleILFQueryExternalDBLFFormLogicQueryILFFieldDataILFQuerySearch_StatusILFQueryResultQuery_Data_TypeForm_Logic_Rule_RelationshipVolume_Rollover_ScheduleILFVolumeChecksumReportILFBriefcaseImporterILFBriefcaseRequestBriefcase_Request_Type__MIDL___MIDL_itf_LaserFicheObjects_0001_0064_0015Seek_Origin__MIDL___MIDL_itf_LaserFicheObjects_0001_0064_0017ILFFolderStatsILFEntryListingParamsEntry_Filter__MIDL___MIDL_itf_LaserFicheObjects_0001_0064_0002ILFEntryListingILFRecordSeriesPropertiesILFCycleCycle_TypeLFMonth__MIDL___MIDL_itf_LaserFicheObjects_0001_0064_0023LFDayOfWeek__MIDL___MIDL_itf_LaserFicheObjects_0001_0064_0024ILFCutoffCriterionDisposition_Type__MIDL___MIDL_itf_LaserFicheObjects_0001_0064_0018Disposition_Trigger_Action__MIDL___MIDL_itf_LaserFicheObjects_0001_0064_0020ILFLinkTypeReview_Interval_Unit__MIDL___MIDL_itf_LaserFicheObjects_0001_0064_0022ILFRecordFolderPropertiesILFBriefcaseExporterILFAuditReasonBriefcase_VersionILFSearchFuzzy_TypeILFDocumentILFElectFileILFElectFileReadStreamILFElectFileWriteStreamILFFileInfoILFVersionDataILFVersionGroupILFDocumentPagesILFPageILFImageILFImageReadStreamILFImageWriteStreamILFThumbnailThumbnail_Compression__MIDL___MIDL_itf_LaserFicheObjects_0001_0064_0011ILFThumbnailWriteStreamILFThumbnailReadStreamRotation_Amount__MIDL___MIDL_itf_LaserFicheObjects_0001_0064_0009ILFTextILFWordILFRectangleILFTextReadStreamILFTextWriteStreamILFAnnotationAnnotation_Type__MIDL___MIDL_itf_LaserFicheObjects_0001_0064_0003Annot_Access_Type__MIDL___MIDL_itf_LaserFicheObjects_0001_0064_0004ILFWordLocationsILFPagePartLoadParamsPage_PartILFPLockDataLock_Lifetime_ScopeILFDocumentPageStatsILFVersionControlInfoILFVersionHistoryILFDocumentVersionILFAltElectFileILFAltElectFileReadStreamILFAltElectFileWriteStreamILFSigningKeyPairILFX509CertificateSignature_Verification_StatusILFCertificateStoreILFDocumentSignatureCollectionILFDocumentSignatureDocument_Signature_PropertyILFTimeStampAuthorityILFAnnotationListingAnnotation_ColumnILFDocumentVersionDiffStatsILFPageVersionDiffStatsILFTagWatermarkListingTag_ColumnILFSearchHitILFWordFoundHit_TypeILFSearchListingParamsILFSearchResultListingILFContextHitListingILFContextHitILFSearchStatsBriefcase_Compression_LevelILFServerTimeStampAuthorityILFWordStreamILFSQLDatabaseILFIndexStatusIndex_StatusLFIndexQueueLengthILFIndexConfigurationILFGrantedDomainAccountCollectionILFDeniedDomainAccountCollectionPLock_ColumnILFPLockListingILFSecuredDomainAccountCollectionILFDomainAccountILFGroupWatermarksILFRecycleBinRecycle_Bin_ColumnILFRecycleBinListingILFRecycleBinEntryRestore_Page_MethodILFUserAreaILFUserAreaEntryListingNamed_User_StatusILFDatabaseOptionsActivity_TypeAuditor_Error_ModeILFNotificationManagerILFNotificationILFCommonStampILFRecycleBinTrusteeCollectionILFRecordMgrPropertiesILFStopwordConfigurationILFIndexFlagILFSessionVariableConfigSessionVar_TypeSESSION_VAR_TYPEILFSessionVariableILFSecuredLDAPAccountCollectionILFLDAPAccountILFGrantedLDAPAccountCollectionILFDeniedLDAPAccountCollectionILFCatalogLFCatalogConnStatusCatalog_Conn_StatusILFLDAPServerProfileLDAP_Schema_TypeLDAP_Authentication_TypeILFDirectorySearcherDirectory_Search_ScopeDirectory_Search_FlagLDAP_Search_StatusILFIndexableFileTypeILFQueryExQuery_StatusILFQueryBindVariablesQuery_Bindvar_TypeTemplate_Field_PropertyVolume_Listing_TypeVolume_PropertyILFTrusteeAttributesILFEmailServerProfileDatabase_Email_Notification_TypeILFDatabaseEmailNotificationTypeILFAuditLogExporterILFAuditLogILFRightsCatalog_StatusILFSearchPlanILFCertificateInfoILFLocaleLocale_FormatILFCalendarDateILFTimeSpanILFServerAdminCollectionILFNamedUserILFNamedDeviceLicense_RegimeILFNamedUserCollectionILFNamedDeviceCollectionILFLaserficheNamedUserCollectionILFLaserficheNamedUserDatabase_StateServer_Email_Notification_TypeILFServerEmailNotificationType$ILFErrorInfoILFClientTimeStampAuthorityLFFieldRightsClassLFFieldRightsLFTemplateRightsClassLFTemplateRightsLFDatabaseClassLFDatabaseLFTemplateClassLFTemplateLFTemplateFieldClassLFTemplateFieldLFMergedTemplateFieldClassLFMergedTemplateFieldILFMergedTemplateFieldMerge_Conflict_ActionLFFormLogicRuleClassLFFormLogicRuleLFGroupClassLFGroupILFGroupILFLinkedDomainAccountCollectionILFLinkedDomainAccountObjectCollectionILFTrusteeLFUserClassLFUserILFUserLF_Named_User_StatusLFFolderClassLFFolderILFHasTemplateILFLockableLFDocumentClassLFDocumentLFShortcutClassLFShortcutILFShortcutLFPageClassLFPageLFVolumeClassLFVolumeLFVolumeDefinitionClassLFVolumeDefinitionLFTemplateDefinitionClassLFTemplateDefinitionLFTemplateFieldDefinitionClassLFTemplateFieldDefinitionLFImageReadStreamClassLFImageReadStreamILFReadStreamLFImageWriteStreamClassLFImageWriteStreamILFWriteStreamLFThumbnailWriteStreamClassLFThumbnailWriteStreamLFThumbnailReadStreamClassLFThumbnailReadStreamLFImageClassLFImageLFTextClassLFTextLFQueryClassLFQueryLFQueryExClassLFQueryExLFQueryResultClassLFQueryResultLFQueryRowClassLFQueryRowILFQueryRowILFQueryColumnILFQueryClobILFQueryBlobILFQueryClobReadStreamLFQueryColumnClassLFQueryColumnLFQueryExternalDBClassLFQueryExternalDBLFQueryClobClassLFQueryClobLFQueryClobReadStreamClassLFQueryClobReadStreamLFQueryBlobClassLFQueryBlobLFQueryContextHitListingClassLFQueryContextHitListingILFQueryContextHitListingILFListingLFQueryBindVariablesClassLFQueryBindVariablesLFSessionVariableClassLFSessionVariableLFSessionVariableConfigClassLFSessionVariableConfigLFCatalogClassLFCatalogLFSearchClassLFSearchLFSearchHitClassLFSearchHitLFSearchPlanClassLFSearchPlanLFWordFoundClassLFWordFoundLFContextHitClassLFContextHitLFElectFileReadStreamClassLFElectFileReadStreamLFElectFileWriteStreamClassLFElectFileWriteStreamLFAltElectFileReadStreamClassLFAltElectFileReadStreamLFAltElectFileWriteStreamClassLFAltElectFileWriteStreamLFPointClassLFPointILFPointLFRectangleClassLFRectangleLFThumbnailClassLFThumbnailLFLinkedAnnotationClassLFLinkedAnnotationILFLinkedAnnotationDirection__MIDL___MIDL_itf_LaserFicheObjects_0001_0064_0010LFStickyNoteClassLFStickyNoteILFStickyNoteLFVectorAnnotationClassLFVectorAnnotationILFVectorAnnotationLine_Style__MIDL___MIDL_itf_LaserFicheObjects_0001_0064_0006Fill_Style__MIDL___MIDL_itf_LaserFicheObjects_0001_0064_0008LFTextboxAnnotationClassLFTextboxAnnotationILFTextboxAnnotationLFBitmapAnnotationClassLFBitmapAnnotationILFBitmapAnnotationLFLineAnnotationClassLFLineAnnotationILFLineAnnotationLine_Ending__MIDL___MIDL_itf_LaserFicheObjects_0001_0064_0007LFCalloutAnnotationClassLFCalloutAnnotationILFCalloutAnnotationLFRectangleAnnotationClassLFRectangleAnnotationILFRectangleAnnotationBox_Style__MIDL___MIDL_itf_LaserFicheObjects_0001_0064_0005LFAttachmentAnnotationClassLFAttachmentAnnotationILFAttachmentAnnotationILFAttachmentReadStreamILFAttachmentWriteStreamLFAttachmentReadStreamClassLFAttachmentReadStreamLFAttachmentWriteStreamClassLFAttachmentWriteStreamLFStickyNoteRevisionClassLFStickyNoteRevisionILFStickyNoteRevisionLFStampAnnotationClassLFStampAnnotationILFStampAnnotationLFCommonStampClassLFCommonStampLFNotificationClassLFNotificationLFNotificationManagerClassLFNotificationManagerLFActivityStreamClassLFActivityStreamLFCreateEntryActivityClassLFCreateEntryActivityILFCreateEntryActivityILFActivityLFDeleteEntryActivityClassLFDeleteEntryActivityILFDeleteEntryActivityLFCopyEntryActivityClassLFCopyEntryActivityILFCopyEntryActivityLFMoveEntryActivityClassLFMoveEntryActivityILFMoveEntryActivityLFDeleteTemplateFieldActivityClassLFDeleteTemplateFieldActivityILFDeleteTemplateFieldActivityLFModifyTemplateFieldActivityClassLFModifyTemplateFieldActivityILFModifyTemplateFieldActivityLFModifyDatabaseOptionActivityClassLFModifyDatabaseOptionActivityILFModifyDatabaseOptionActivityLFReleaseEntryActivityClassLFReleaseEntryActivityILFReleaseEntryActivityLFMigrateDocActivityClassLFMigrateDocActivityILFMigrateDocActivityLFSetTemplateFieldValueActivityClassLFSetTemplateFieldValueActivityILFSetTemplateFieldValueActivityLFUnsetTemplateFieldValueActivityClassLFU%nsetTemplateFieldValueActivityILFUnsetTemplateFieldValueActivityLFAssignTemplateActivityClassLFAssignTemplateActivityILFAssignTemplateActivityLFWriteEdocActivityClassLFWriteEdocActivityILFWriteEdocActivityLFWriteAltEdocActivityClassLFWriteAltEdocActivityILFWriteAltEdocActivityLFCreatePageActivityClassLFCreatePageActivityILFCreatePageActivityLFWritePageActivityClassLFWritePageActivityILFWritePageActivityLFDeletePageActivityClassLFDeletePageActivityILFDeletePageActivityLFCopyPageActivityClassLFCopyPageActivityILFCopyPageActivityLFMovePageActivityClassLFMovePageActivityILFMovePageActivityLFAssignTagActivityClassLFAssignTagActivityILFAssignTagActivityLFUnassignTagActivityClassLFUnassignTagActivityILFUnassignTagActivityLFCreateAnnotationActivityClassLFCreateAnnotationActivityILFCreateAnnotationActivityLFDeleteAnnotationActivityClassLFDeleteAnnotationActivityILFDeleteAnnotationActivityLFModifyAnnotationActivityClassLFModifyAnnotationActivityILFModifyAnnotationActivityLFMoveAnnotationActivityClassLFMoveAnnotationActivityILFMoveAnnotationActivityLFCreateDocumentSignatureActivityClassLFCreateDocumentSignatureActivityILFCreateDocumentSignatureActivityLFDeleteDocumentSignatureActivityClassLFDeleteDocumentSignatureActivityILFDeleteDocumentSignatureActivityLFRestoreEntryActivityClassLFRestoreEntryActivityILFRestoreEntryActivityLFVersioningActivityClassLFVersioningActivityILFVersioningActivityLFWordStreamClassLFWordStreamLFWordClassLFWordLFFieldDataClassLFFieldDataLFRecycleBinClassLFRecycleBinLFRecycleBinEntryClassLFRecycleBinEntryLFBriefcaseImporterClassLFBriefcaseImporterLFBriefcaseRequestClassLFBriefcaseRequestLFBriefcaseTemplateClassLFBriefcaseTemplateILFBriefcaseTemplateBriefcase_Property_Action__MIDL___MIDL_itf_LaserFicheObjects_0001_0064_0016LFBriefcaseTemplateFieldClassLFBriefcaseTemplateFieldILFBriefcaseTemplateFieldLFTagClassLFTagLFLinkTypeClassLFLinkTypeLFEntryLinkClassLFEntryLinkILFEntryLinkLFAccessRightsClassLFAccessRightsLFVersionGroupClassLFVersionGroupLFEntryListingClassLFEntryListingLFRecycleBinListingClassLFRecycleBinListingLFPLockListingClassLFPLockListingLFUserAreaEntryListingClassLFUserAreaEntryListingLFEntryListingParamsClassLFEntryListingParamsILFListingParamsLFLockClassLFLockILFLockLFAnnotationListingClassLFAnnotationListingLFDocumentPagesClassLFDocumentPagesLFDocumentPageStatsClassLFDocumentPageStatsLFAccessControlEntryClassLFAccessControlEntryLFEffectiveRightsClassLFEffectiveRightsLFEffectiveFeatureRightsClassLFEffectiveFeatureRightsLFTagDataClassLFTagDataLFElectFileClassLFElectFileLFAltElectFileClassLFAltElectFileLFVolumeRightsClassLFVolumeRightsLFContextHitListingClassLFContextHitListingLFSearchResultListingClassLFSearchResultListingLFSearchListingParamsClassLFSearchListingParamsLFVolumeStatsClassLFVolumeStatsLFVersionDataClassLFVersionDataLFServerClassLFServerLFServerAdminCollectionClassLFServerAdminCollectionLFLinkedDomainAccountCollectionClassLFLinkedDomainAccountCollectionLFDomainAccountClassLFDomainAccountLFSecuredDomainAccountCollectionClassLFSecuredDomainAccountCollectionLFGrantedDomainAccountCollectionClassLFGrantedDomainAccountCollectionLFDeniedDomainAccountCollectionClassLFDeniedDomainAccountCollectionLFLDAPAccountClassLFLDAPAccountLFSecuredLDAPAccountCollectionClassLFSecuredLDAPAccountCollectionLFGrantedLDAPAccountCollectionClassLFGrantedLDAPAccountCollectionLFDeniedLDAPAccountCollectionClassLFDeniedLDAPAccountCollectionLFGroupNameCollectionClassLFGroupNameCollectionLFRecycleBinTrusteeCollectionClassLFRecycleBinTrusteeCollectionLFConnectionClassLFConnectionLFFileInfoClassLFFileInfoLFSingleEntryListingClassLFSingleEntryListingLFSingleListingParamsClassLFSingleListingParamsLFGroupWatermarksClassLFGroupWatermarksLFIndexFlagClassLFIndexFlagLFIndexStatusClassLFIndexStatusLFIndexConfigurationClassLFIndexConfigurationLFIndexableFileTypeClassLFIndexableFileTypeLFStopwordConfigurationClassLFStopwordConfigurationLFWordLocationsClassLFWordLocationsLFTextReadStreamClassLFTextReadStreamLFTextWriteStreamClassLFTextWriteStreamLFAuditReasonClassLFAuditReasonLFAuditFlagsClassLFAuditFlagsLFAuditEventClassLFAud&itEventILFAuditEventLFAuditLogClassLFAuditLogLFAuditLogExporterClassLFAuditLogExporterLFBriefcaseExporterClassLFBriefcaseExporterLFFolderStatsClassLFFolderStatsLFSQLDatabaseClassLFSQLDatabaseLFPLockDataClassLFPLockDataLFDatabaseOptionsClassLFDatabaseOptionsLFSearchStatsClassLFSearchStatsLFVersionHistoryClassLFVersionHistoryLFDocumentVersionClassLFDocumentVersionLFVersionControlInfoClassLFVersionControlInfoLFCycleClassLFCycleLFAnnualCycleDefClassLFAnnualCycleDefILFAnnualCycleDefLFWeeklyCycleDefClassLFWeeklyCycleDefILFWeeklyCycleDefLFAltRetentionEventClassLFAltRetentionEventILFAltRetentionEventLFEventClassLFEventLFCutoffCriterionClassLFCutoffCriterionLFRetentionScheduleClassLFRetentionScheduleLFLocationClassLFLocationLFTransferClassLFTransferLFRecordMgrPropertiesClassLFRecordMgrPropertiesLFRecordSeriesPropertiesClassLFRecordSeriesPropertiesLFRecordFolderPropertiesClassLFRecordFolderPropertiesLFRecordPropertiesClassLFRecordPropertiesLFFreezeDataClassLFFreezeDataLFFreezeClassLFFreezeLFUserAreaClassLFUserAreaLFErrorObjectClassLFErrorObjectILFErrorObjectLFCertificateInfoClassLFCertificateInfoLFLocaleClassLFLocaleLFLocaleInfoClassLFLocaleInfoILFLocaleInfoLFNamedUserClassLFNamedUserLFNamedUserCollectionClassLFNamedUserCollectionLFLaserficheNamedUserClassLFLaserficheNamedUserLFLaserficheNamedUserCollectionClassLFLaserficheNamedUserCollectionLFNamedDeviceClassLFNamedDeviceLFNamedDeviceCollectionClassLFNamedDeviceCollectionLFTagWatermarkListingClassLFTagWatermarkListingLFTokenSubstitutionEngineClassLFTokenSubstitutionEngineILFTokenSubstitutionEngineILFTokenSubstitutionContextSystem_PropertyValue_TypeLFTokenSubstitutionContextClassLFTokenSubstitutionContextLFTokenObjectClassLFTokenObjectILFTokenObjectToken_FormatToken_SourceILFCustomTokenCallbackLFCustomAuditEventClassLFCustomAuditEventILFCustomAuditEventLFCustomAuditReasonClassLFCustomAuditReasonILFCustomAuditReasonLFProgressClassLFProgressLFLDAPServerProfileClassLFLDAPServerProfileLFDirectorySearcherClassLFDirectorySearcherLFDirectoryEntryClassLFDirectoryEntryILFDirectoryEntryDirectory_Entry_TypeLFCalendarDateClassLFCalendarDateLFLinkedDomainAccountObjectCollectionClassLFLinkedDomainAccountObjectCollectionLFTagAccessControlEntryClassLFTagAccessControlEntryLFTagRightsClassLFTagRightsLFTaskClassLFTaskILFTaskBackground_Task_TypeLFDocumentVersionDiffStatsClassLFDocumentVersionDiffStatsLFPageVersionDiffStatsClassLFPageVersionDiffStatsLFTrusteeAttributesClassLFTrusteeAttributesLFEmailServerProfileClassLFEmailServerProfileLFPagePartLoadParamsClassLFPagePartLoadParamsLFDatabaseEmailNotificationTypeClassLFDatabaseEmailNotificationTypeLFServerEmailNotificationTypeClassLFServerEmailNotificationTypeLFLogFileReadStreamClassLFLogFileReadStreamLFSigningKeyPairClassLFSigningKeyPairLFSigningKeyPairFactoryClassLFSigningKeyPairFactoryILFSigningKeyPairFactoryLFBriefcaseSignatureClassLFBriefcaseSignatureILFBriefcaseSignatureLFBriefcaseSignatureElementLFDocumentSignatureClassLFDocumentSignatureLFDocumentSignatureCollectionClassLFDocumentSignatureCollectionLFX509CertificateClassLFX509CertificateLFCertificateStoreClassLFCertificateStoreLFMemoryCertificateStoreClassLFMemoryCertificateStoreLFClassificationLevelClassLFClassificationLevelILFClassificationLevelLFDiscussionAlertTemplateClassLFDiscussionAlertTemplateILFDiscussionAlertTemplateLFDiscussionWatchClassLFDiscussionWatchILFDiscussionWatchDiscussion_Watch_ScopeDiscussion_Watch_AttachmentsLFCommentAttachmentClassLFCommentAttachmentILFCommentAttachmentLFCommentClassLFCommentILFCommentLFCommentTemplateClassLFCommentTemplateILFCommentTemplateLFTopicClassLFTopicILFTopicLFTopicRightsClassLFTopicRightsLFDiscussionClassLFDiscussionILFDiscussionLFDiscussionRightsClassLFDiscussionRightsLFCommentAttachmentCollectionClassLFCommentAttachmentCollectionLFDiscussionWatchCollectionClassLFDiscussionWatchCollectionLFTimeSpanClassLFTimeSpanLFErrorInfoClassLFErrorInfoLFClientTimeStampAuthorityClassLFClientTimeStampAuthorityLFServerTimeStampAuthorityClassLFServerTimeStampAuthoritySystemEnumValueTypeCollectionsIEnumerableObjecty�����2��2��'2��2�n2��2��2��2�2��2��
2�k2��2�n2��2��+2�02��2�2��2�a2�2	2�2�A2���R
����
�~� �8�_��=�e	���g+����	�����}Dk��
� ���C	��	��<�E�/�B��A��P������b
�<
���
��v
���pDk��^
���d
�F	��
���k��	
�!��D)�����!���������7�q
��
��6�,�H'�B%��������4
�+
�r�_��	�[�}	�����@�S+��+�����
���
�RA���
�zB
�OB��B���L
�i
�U�J"��&��'�2)"��!�&��;�<��;�s���Y�? �@�.(��)"�	"��&��"�7 ����<��C
��A��A��	�/
�O�N
�0
����
���I�-��	��	��	�
���C,���p����8�H�-���
�d	�b����	��
�!�r�!�������F
�N
�`
�l������q�Q �d�������) �I&�	�T
�\-��	�J9
���}-�������,$��(��#�9#��(��"�
'��9���#���q�b	��?
���
�0�c�`���9���9�-�E��;��
��N���
�d	�������B�O��
��������#��)���}	��		�	�)��
�?�v�?�r!�E�:	�������3����$ �����?������ �2
�� �������k
����
��=�������J���4��N�_�s
��
��
���}
�q;��:��:��B���o
����'��$"���
��h�c�
� 
�x�2*��	���7������6�;����
��%��%�O&� �����-
����Z���.��-�b,�O,�z!�e!(��.��.�����4���6��6��-��-��6�u6�
�
�5'�'�*%�
%�����2 � �d �H ��4��4��4��4��4
��4�
5��4��4
�w4�I�2�75�5��*��*�+��*��?��?�@�@+�(+��+��+��<��<������	�����9��8��@��@�=A�#A�D��C�qB	�<B�$B�lC�JC"�cB��B��B�!
�� ��2��2�u�d�/��.�7"�"��&��&��'��'�)!��(&��!��!��%��%��;��;�<��;�I7�37�n6�b6�K
�<��>��>$��5��5�6�(��'�z)!�T)&��!��!�|&�c&��"��""�1��0$��1��1"��<��<��<�l<�C��A�hA��B�8C�!C��A��A��C��C ��
����-��-��-��-�L@�4@��@�_@"�$6�6��=��=�`0�L0�n.�Q.�@.�*.��.��.���������y>�`>�8,�(,��,��,�H-�/-��C��C��8
��8�,7� 7����*�u*�

����2
��2��
����
�\5
�J5�������8��8
��8�y8��0 ��0%��1��1#���62�2�23�3�������������3��3��3�}3�S3�C3���p3
�^3��9��9��9��9$�N1
�<1�Y<�A<���n�����-0�	0$�,=%�=*�,
�,�%9�9
�>9�-9��7
��7�w-�l-�T?�<?�A��@�����$��#�h(�I(�z#�W##�#��""����(��(�v"�^"��&��&�%:
�:�N:�2:�g9�W9��9�r9�(!�!�P!�6!����>��>�>�>��5��5��,��,�Y�M��
�7<
�(<���w�^���������������m
�[�#���	�����z��
���

���88�8��7��7�g8�P8�8��7�x�:� �h����*��*��*��*��,��,�m2�K2"��#��#��)��)�r7)�Z7�	��
�!��n/�T/�=�,�?/�%/��5
��5��0 �o0%�~1�[1#��/��/��/��/
�?��>"�PD�1D���������e$�A$$��
���|?�g?��?��?��2��2�3��2�	{5
�i5�� �� �&��� �{ ��3��3�
,�m=�Q=�,
��.	��.��=��=�:�e:��=��=�d
�U�x�_���n�����,���������@4�+4�f4�P4�����y�_�I�.��C
��C�d;
�R;�8;�;��:��:��B��B��B
��B��7
��7���M>�5>�v'�\'��$!��$&����8
��8�-��,�y�V�?�N6�56��/
��/��,�p,��5��5�*�*�.���!
�M�6��.��.��/
��/��6��6�o*�d*�Y�I�4�4�X*�G*��%��%�s%�[%�<&�$&��@��@��	���{
�!��
�<�m	���/�h�O��Dk'	��
�W�3	���\�����������	��
�A
�%���#����
�u�y�jD;��

�����
�;��;�R�;
�tD	k�������AI=>X;FSRjV]g.O?@*LsCn
i_56BH9NEDbZIx%c<+\�87`&Jpa	UNh:mK#MW\^Q fe'PO21Q[Yovw,(MH-dPR/
KGJ"$ltqr0!43u
{�.1��LRqN��A! �"��;�F<��������	������ �����?�"8�h�iV(��3�A����"�$=*��j7fC�����T�f����S  ��p/1��(*&������������������;���\^z�?�"�|=��lnp���lnX���`�[Y�U�jCA�E��bh��W^���,?9
�������E�V(��xMb��T����Z3���5&��A���9��"����$03.,�=��ztrvx~�v��*�$�d7`��K����*�GIhj57df�
	��};���C����t�r��O�����G�Q������������Xfeef�������S  ��p/1��(*&�����������������;���\^np��?
����E�V(���T����Z3��5&A���9��"���$03.,�=��ztvx~v��*�$���K����G��};����t���O��������V3��"������������� �����SRRS��  1    �95  ������p(*&���\^np
����&=������������������poop>/--/@1001����!�����(''(�(�\n�v~O�*))*K*�^p�)(�&%%&#������~~��������������������������������������������������x���������
����l�����������������E;::;w��������������R\[[\S^]]^�zyyz�����'�?>>?U
?�"�|=��l�����8"!!"$����c|{{|�=<<=k���������[lkkl\nmmn]poop��������u�����lkkl�nmmnPXWWX}����O���`�[Y�U�jCA�E��bh��W^���,�����y�����`__`������[ZZ[�YXXY������UTTU����4ZjiijICBBCHA@@A~����JEDDE�����z�����baabYhggh3{����������WVVW�^]]^|��������������=,++,G?>>?D9889�
		
����������e��f����h����i���������EDDE�����NVUUV;(''(����������������xwwx7����MLLMVbaab����������MTSST�������������������QZYYZA3223x������������B5445:&%%&����	�����A@@A����������������9889�����������"!!"�����v�����

�������$##$�0//0�3223�.--.�,++,����F=<<=%����&����bzyyz_tsst^rqqr`vuuvaxwwxd~}}~������vuuv���������<*))*�����9$##$�����WdccdC7667T`__`������������KJJK0����������������������6�m�����GFFG�IHHI�hggh�jiij�5445�7667�dccd�feef����.

-

,		����������}||}�;::;����������j�����CBBC������������������tsst2������rqqr�����
�����ONNO��������g��������������LGFFGn��QP��PQo��������������s����r����t����/�������q��������*�p����+������

�
���5�M��*<SymbolTreeInfo>_Metadata_C:\Program Files\Laserfiche\SDK 10.2\bin\COM\x86\Interop.LFSO83Lib.dll�	17'ճw���-`gB�8&>�S��LFSO83LibLicense_TypeEntry_FlagEntry_Namespace_FlagPrivilegeDrive_TypeFile_TypeNotification_SubscriptionNotification_FlagSubscription_TypePassword_TypeRecycle_Bin_TypeSignature_Verification_FlagLFPointStructLFRectStructLFFileTypeLFVolumeChecksumReportErrorILFCollectionLFApplicationClassLFApplicationILFApplicationILFServerDBMS_TypeILFConnectionILFDatabaseILFFolderLock_TypeEntry_Type__MIDL___MIDL_itf_LaserFicheObjects_0001_0064_0001ILFAccessRightsILFAccessControlEntryAccess_RightEntryAce_ScopeILFSingleListingParamsColumn_TypeILFObjectListingListing_TypeILFEffectiveRightsILFSecurableTrusteeTrustee_TypeFeature_Right__MIDL___MIDL_itf_LaserFicheObjects_0001_0064_0012ILFGroupNameCollectionILFTagILFTagRightsILFTagAccessControlEntryTag_Feature_Right__MIDL___MIDL_itf_LaserFicheObjects_0001_0064_0013Audit_EventILFAuditFlagsAudit_Event_ClassILFEffectiveFeatureRightsILFObjectILFTagDataSort_DirectionILFActivityStreamILFEntryILFRecordPropertiesILFLocationILFFreezeDataILFFreezeILFRetentionScheduleILFTransferRetention_InstructionDisposition_Action__MIDL___MIDL_itf_LaserFicheObjects_0001_0064_0019ILFEventDisposition_State__MIDL___MIDL_itf_LaserFicheObjects_0001_0064_0021LFEventDateLFTransferDateILFProgressILFLogFileReadStreamILFVolumeI"-yPermissionAttributeUrlIdentityPermissionAttributePublisherIdentityPermissionAttributeIsolatedStoragePermissionAttributeIsolatedStorageFilePermissionAttributePermissionSetAttributeReflectionPermissionFlagReflectionPermissionPrincipalPermissionSecurityPermissionFlagSecurityPermissionSiteIdentityPermissionStrongNameIdentityPermissionStrongNamePublicKeyBlobUIPermissionWindowUIPermissionClipboardUIPermissionUrlIdentityPermissionZoneIdentityPermissionGacIdentityPermissionAttributeGacIdentityPermissionKeyContainerPermissionFlagsKeyContainerPermissionAccessEntryKeyContainerPermissionAccessEntryCollectionKeyContainerPermissionAccessEntryEnumeratorKeyContainerPermissionPublisherIdentityPermissionRegistryPermissionAccessRegistryPermissionIBuiltInPermissionCryptographyX509CertificatesX509ContentTypeX509KeyStorageFlagsX509CertificateCipherModePaddingModeKeySizesCryptographicExceptionCryptographicUnexpectedOperationExceptionICryptoTransformRandomNumberGeneratorRNGCryptoServiceProviderSymmetricAlgorithmAesAsymmetricAlgorithmAsymmetricKeyExchangeDeformatterAsymmetricKeyExchangeFormatterAsymmetricSignatureDeformatterAsymmetricSignatureFormatterFromBase64TransformModeToBase64TransformFromBase64TransformCryptoAPITransformCspProviderFlagsCspParametersCryptoConfigCryptoStreamModeCryptoStreamDESDESCryptoServiceProviderDeriveBytesDSAParametersDSAICspAsymmetricAlgorithmDSACryptoServiceProviderDSASignatureDeformatterDSASignatureFormatterHashAlgorithmKeyedHashAlgorithmHMACHMACMD5HMACRIPEMD160HMACSHA1HMACSHA256HMACSHA384HMACSHA512KeyNumberCspKeyContainerInfoMACTripleDESMD5MD5CryptoServiceProviderMaskGenerationMethodPasswordDeriveBytesPKCS1MaskGenerationMethodRC2RC2CryptoServiceProviderRfc2898DeriveBytesRIPEMD160RIPEMD160ManagedRSAParametersRSARSACryptoServiceProviderRSAOAEPKeyExchangeDeformatterRSAOAEPKeyExchangeFormatterRSAPKCS1KeyExchangeDeformatterRSAPKCS1KeyExchangeFormatterRSAPKCS1SignatureDeformatterRSAPKCS1SignatureFormatterRijndaelRijndaelManagedRijndaelManagedTransformSHA1SHA1CryptoServiceProviderSHA1ManagedSHA256SHA256ManagedSHA384SHA384ManagedSHA512SHA512ManagedSignatureDescriptionTripleDESTripleDESCryptoServiceProviderAccessControlInheritanceFlagsPropagationFlagsAuditFlagsSecurityInfosResourceTypeAccessControlSectionsAccessControlActionsAceTypeAceFlagsGenericAceKnownAceCustomAceCompoundAceTypeCompoundAceAceQualifierQualifiedAceCommonAceObjectAceFlagsObjectAceAceEnumeratorGenericAclRawAclCommonAclSystemAclDiscretionaryAclCryptoKeyRightsAuthorizationRuleAccessRuleCryptoKeyAccessRuleAuditRuleCryptoKeyAuditRuleObjectSecurityCommonObjectSecurityNativeObjectSecurityCryptoKeySecurityEventWaitHandleRightsEventWaitHandleAccessRuleEventWaitHandleAuditRuleEventWaitHandleSecurityFileSystemRightsFileSystemAccessRuleFileSystemAuditRuleFileSystemSecurityFileSecurityDirectorySecurityMutexRightsMutexAccessRuleMutexAuditRuleMutexSecurityAccessControlModificationDirectoryObjectSecurityPrivilegeNotHeldExceptionRegistryRightsRegistryAccessRuleRegistryAuditRuleRegistrySecurityAccessControlTypeObjectAccessRuleObjectAuditRuleAuthorizationRuleCollectionControlFlagsGenericSecurityDescriptorRawSecurityDescriptorCommonSecurityDescriptorIEvidenceFactoryISecurityEncodableISecurityPolicyEncodableSecurityElementXmlSyntaxExceptionIPermissionIStackWalkCodeAccessPermissionSuppressUnmanagedCodeSecurityAttributeUnverifiableCodeAttributeAllowPartiallyTrustedCallersAttributePartialTrustVisibilityLevelSecurityCriticalScopeSecurityCriticalAttributeSecurityTreatAsSafeAttributeSecuritySafeCriticalAttributeSecurityTransparentAttributeSecurityRuleSetSecurityRulesAttributeHostSecurityManagerOptionsHostSecurityManagerPermissionSetNamedPermissionSetReadOnlyPermissionSetSecureStringSecurityContextSourceSecurityContextSecurityExceptionSecurityStateHostProtectionExceptionPolicyLevelTypeSecurityManagerIsGrantedGetZoneAndOriginLoadPolicyLevelFromFileLoadPolicyLevelFromStringSavePolicyLevelResolvePolicyCurrentThreadRequiresSecurityContextCaptureResolveSystemPolicyResolvePolicyGroupsPolicyHierarchySavePolicySecurityZoneVerificationExceptionISecurityElementFactoryDeploymentInternalIsol.ationManifestInternalApplicationIdentityHelperGetInternalAppIdInternalActivationContextHelperGetActivationContextDataGetApplicationComponentManifestGetDeploymentComponentManifestGetApplicationManifestBytesGetDeploymentManifestBytesReflectionEmitAssemblyBuilderAssemblyBuilderAccessConstructorBuilderILGeneratorDynamicILInfoDynamicMethodEventBuilderEventTokenFieldBuilderFieldTokenLabelLocalBuilderMethodBuilderCustomAttributeBuilderMethodRentalMethodTokenModuleBuilderPEFileKindsOpCodesOpCodeOpCodeTypeStackBehaviourOperandTypeFlowControlParameterBuilderParameterTokenPropertyBuilderPropertyTokenSignatureHelperSignatureTokenStringTokenPackingSizeTypeBuilderGenericTypeParameterBuilderEnumBuilderTypeTokenUnmanagedMarshalCacheBinderICustomAttributeProviderMemberInfoIReflectAmbiguousMatchExceptionModuleResolveEventHandlerAssemblyAssemblyCopyrightAttributeAssemblyTrademarkAttributeAssemblyProductAttributeAssemblyCompanyAttributeAssemblyDescriptionAttributeAssemblyTitleAttributeAssemblyConfigurationAttributeAssemblyDefaultAliasAttributeAssemblyInformationalVersionAttributeAssemblyFileVersionAttributeAssemblyCultureAttributeAssemblyVersionAttributeAssemblyKeyFileAttributeAssemblyDelaySignAttributeAssemblyAlgorithmIdAttributeAssemblyFlagsAttributeAssemblyKeyNameAttributeAssemblyNameAssemblyNameProxyAssemblyNameFlagsProcessorArchitectureCustomAttributeFormatExceptionBindingFlagsCallingConventionsCustomAttributeDataCustomAttributeNamedArgumentCustomAttributeTypedArgumentDefaultMemberAttributeEventAttributesFieldAttributesGenericParameterAttributesInterfaceMappingInvalidFilterCriteriaExceptionManifestResourceInfoResourceLocationMemberFilterMemberTypesMethodAttributesMethodImplAttributesMissingPortableExecutableKindsImageFileMachineModuleObfuscateAssemblyAttributeObfuscationAttributeExceptionHandlingClauseOptionsExceptionHandlingClauseMethodBodyLocalVariableInfoParameterAttributesParameterModifierPointerPropertyAttributesReflectionTypeLoadExceptionResourceAttributesStrongNameKeyPairTargetExceptionTargetInvocationExceptionTargetParameterCountExceptionTypeAttributesTypeDelegatorTypeFilterMethodBaseConstructorInfoMethodInfoFieldInfoEventInfoPropertyInfoParameterInfoStubHelpersThreadingTasksTaskTaskFactoryParallelOptionsParallelParallelLoopStateParallelLoopResultTaskStatusTaskCreationOptionsTaskContinuationOptionsTaskCanceledExceptionTaskSchedulerExceptionTaskSchedulerUnobservedTaskExceptionEventArgsTaskCompletionSourceAbandonedMutexExceptionWaitHandleEventWaitHandleAutoResetEventSendOrPostCallbackSynchronizationContextCompressedStackEventResetModeAsyncFlowControlContextCallbackExecutionContextInterlockedIncrementDecrementExchangeCompareExchangeAddHostExecutionContextHostExecutionContextManagerLockCookieLockRecursionExceptionManualResetEventMonitorEnterExitTryEnterWaitPulsePulseAllMutexNativeOverlappedOverlappedParameterizedThreadStartReaderWriterLockSemaphoreFullExceptionSynchronizationLockExceptionThreadThreadAbortExceptionThreadInterruptedExceptionRegisteredWaitHandleWaitCallbackWaitOrTimerCallbackIOCompletionCallbackThreadPoolSetMaxThreadsGetMaxThreadsSetMinThreadsGetMinThreadsGetAvailableThreadsRegisterWaitForSingleObjectUnsafeRegisterWaitForSingleObjectQueueUserWorkItemUnsafeQueueUserWorkItemUnsafeQueueNativeOverlappedBindHandleThreadPriorityThreadStartThreadStateThreadStateExceptionThreadStartExceptionTimeoutTimerCallbackTimerWaitHandleCannotBeOpenedExceptionApartmentStateSpinLockSpinWaitCountdownEventLazyThreadSafetyModeLazyInitializerThreadLocalSemaphoreSlimManualResetEventSlimCancellationTokenRegistrationCancellationTokenSourceCancellationTokenIThreadPoolWorkItemDiagnosticsEventingCodeAnalysisSuppressMessageAttributeContractsInternalContractHelperRaiseContractFailedEventTriggerFailurePureAttributeContractClassAttributeContractClassForAttributeContractInvariantMethodAttributeContractReferenceAssemblyAttributeContractRuntimeIgnoredAttributeContractVerificationAttributeContractPublicPropertyNameAttributeContractAssumeAssertRequiresEnsuresEnsuresOnThrowResultValueAtReturnOldValueInvariantForAllExistsEndContractBlockContractFailureKin/dContractFailedEventArgsSymbolStoreISymbolBinderISymbolBinder1ISymbolDocumentISymbolDocumentWriterISymbolMethodISymbolNamespaceISymbolReaderISymbolScopeISymbolVariableISymbolWriterSymAddressKindSymDocumentTypeSymLanguageTypeSymLanguageVendorSymbolTokenConditionalAttributeDebuggerDebuggerStepThroughAttributeDebuggerStepperBoundaryAttributeDebuggerHiddenAttributeDebuggerNonUserCodeAttributeDebuggableAttributeDebuggingModesDebuggerBrowsableStateDebuggerBrowsableAttributeDebuggerTypeProxyAttributeDebuggerDisplayAttributeDebuggerVisualizerAttributeStackTraceStackFrameGlobalizationCalendarCalendarAlgorithmTypeCalendarWeekRuleCharUnicodeInfoGetNumericValueGetUnicodeCategoryCompareOptionsCompareInfoCultureInfoCultureNotFoundExceptionCultureTypesDateTimeStylesDateTimeFormatInfoDaylightTimeDigitShapesGregorianCalendarGregorianCalendarTypesHebrewCalendarHijriCalendarUmAlQuraCalendarEastAsianLunisolarCalendarChineseLunisolarCalendarJapaneseLunisolarCalendarJulianCalendarKoreanLunisolarCalendarPersianCalendarTaiwanLunisolarCalendarIdnMappingJapaneseCalendarKoreanCalendarRegionInfoSortKeyStringInfoTaiwanCalendarTextElementEnumeratorTextInfoThaiBuddhistCalendarTimeSpanStylesNumberFormatInfoNumberStylesUnicodeCategoryResourcesIResourceReaderIResourceWriterMissingManifestResourceExceptionMissingSatelliteAssemblyExceptionNeutralResourcesLanguageAttributeResourceManagerResourceReaderResourceSetResourceWriterSatelliteContractVersionAttributeUltimateResourceFallbackLocationIOIsolatedStorageIsolatedStorageScopeIsolatedStorageIsolatedStorageFileStreamIsolatedStorageExceptionIsolatedStorageSecurityOptionsIsolatedStorageSecurityStateINormalizeForIsolatedStorageIsolatedStorageFileStreamBinaryReaderBinaryWriterBufferedStreamDirectoryGetParentCreateDirectoryExistsSetCreationTimeUtcGetCreationTimeGetCreationTimeUtcSetLastWriteTimeUtcGetLastWriteTimeGetLastWriteTimeUtcSetLastAccessTimeUtcGetLastAccessTimeGetLastAccessTimeUtcSetAccessControlGetLogicalDrivesGetDirectoryRootGetCurrentDirectorySetCurrentDirectoryMoveDeleteFileSystemInfoDirectoryInfoSearchOptionIOExceptionDirectoryNotFoundExceptionDriveTypeDriveInfoDriveNotFoundExceptionEndOfStreamExceptionFileOpenTextCreateTextAppendTextCreateDeleteDecryptEncryptExistsOpenSetCreationTimeUtcGetCreationTimeGetCreationTimeUtcSetLastAccessTimeUtcGetLastAccessTimeGetLastAccessTimeUtcSetLastWriteTimeUtcGetLastWriteTimeGetLastWriteTimeUtcGetAttributesSetAttributesSetAccessControlOpenReadOpenWriteReadAllTextWriteAllTextReadAllBytesWriteAllBytesReadAllLinesReadLinesWriteAllLinesAppendAllTextAppendAllLinesMoveReplaceFileAccessFileInfoFileLoadExceptionFileModeFileNotFoundExceptionFileOptionsFileShareFileStreamFileAttributesMemoryStreamPathGetDirectoryNameGetFullPathGetPathRootGetTempPathGetTempFileNamePathTooLongExceptionUnmanagedMemoryStreamSeekOriginTextReaderStreamReaderTextWriterStreamWriterStringReaderStringWriterUnmanagedMemoryAccessorRuntimeSerializationFormattersBinaryBinaryFormatterIFieldInfoFormatterTypeStyleFormatterAssemblyStyleTypeFilterLevelISoapMessageInternalRMInternalSTSoapMessageSoapFaultServerFaultISerializableIDeserializationCallbackIObjectReferenceIFormatterConverterFormatterConverterFormatterServicesISerializationSurrogateIFormatterISurrogateSelectorOptionalFieldAttributeOnSerializingAttributeOnSerializedAttributeOnDeserializingAttributeOnDeserializedAttributeSerializationBinderSerializationExceptionSerializationInfoSerializationEntrySerializationInfoEnumeratorStreamingContextStreamingContextStatesFormatterObjectIDGeneratorObjectManagerSafeSerializationEventArgsISafeSerializationDataSerializationObjectManagerSurrogateSelectorInteropServicesComTypesBIND_OPTSIBindCtxIConnectionPointContainerIConnectionPointIEnumMonikerCONNECTDATAIEnumConnectionsIEnumConnectionPointsIEnumStringIEnumVARIANTFILETIMEIMonikerIPersistFileIRunningObjectTableSTATSTGIStreamDESCKINDBINDPTRITypeCompTYPEKINDTYPEFLAGSIMPLTYPEFLAGSTYPEATTRFUNCDESCIDLFLAGIDLDESCPARAMFLAGPARAMDESCTYPEDESCELEMDESCDESCUNIONVARKINDVARDESCDESCUNIONDISPPARAMSEXCEPINFOFUNCKINDINVOKEKINDCALLCONVFUNCFLAGSVARFLAGSITypeInfoSYSKINDLIBFLAGSTYPELIBATTRI0TypeLibITypeLib2ITypeInfo2ExpandoIExpandoTCEAdapterGen_Exception_Activator_Attribute_Thread_MemberInfo_TypeSafeHandle_AssemblyICustomQueryInterface_AssemblyName_MethodBase_MethodInfo_ConstructorInfo_FieldInfo_PropertyInfo_EventInfo_ParameterInfo_ModuleCriticalHandleArrayWithOffsetUnmanagedFunctionPointerAttributeTypeIdentifierAttributeAllowReversePInvokeCallsAttributeDispIdAttributeComInterfaceTypeInterfaceTypeAttributeComDefaultInterfaceAttributeClassInterfaceTypeClassInterfaceAttributeComVisibleAttributeTypeLibImportClassAttributeLCIDConversionAttributeComRegisterFunctionAttributeComUnregisterFunctionAttributeProgIdAttributeImportedFromTypeLibAttributeIDispatchImplTypeIDispatchImplAttributeComSourceInterfacesAttributeComConversionLossAttributeTypeLibTypeFlagsTypeLibFuncFlagsTypeLibVarFlagsTypeLibTypeAttributeTypeLibFuncAttributeTypeLibVarAttributeVarEnumUnmanagedTypeMarshalAsAttributeComImportAttributeGuidAttributePreserveSigAttributeInAttributeOutAttributeOptionalAttributeDllImportAttributeStructLayoutAttributeFieldOffsetAttributeComAliasNameAttributeAutomationProxyAttributePrimaryInteropAssemblyAttributeCoClassAttributeComEventInterfaceAttributeTypeLibVersionAttributeComCompatibleVersionAttributeBestFitMappingAttributeDefaultCharSetAttributeSetWin32ContextInIDispatchAttributeManagedToNativeComInteropStubAttributeCallingConventionCharSetExternalExceptionCOMExceptionGCHandleTypeGCHandleHandleRefICustomMarshalerInvalidOleVariantTypeExceptionLayoutKindCustomQueryInterfaceModeMarshalPtrToStringAnsiPtrToStringUniPtrToStringAutoSizeOfOffsetOfUnsafeAddrOfPinnedArrayElementCopyReadByteReadInt16ReadInt32ReadIntPtrReadInt64WriteByteWriteInt16WriteInt32WriteIntPtrWriteInt64GetLastWin32ErrorGetHRForLastWin32ErrorPrelinkPrelinkAllNumParamBytesGetExceptionPointersGetExceptionCodeStructureToPtrPtrToStructureDestroyStructureGetHINSTANCEThrowExceptionForHRGetExceptionForHRGetHRForExceptionGetUnmanagedThunkForManagedMethodPtrGetManagedThunkForUnmanagedMethodPtrGetThreadFromFiberCookieAllocHGlobalFreeHGlobalReAllocHGlobalStringToHGlobalAnsiStringToHGlobalUniStringToHGlobalAutoStringToCoTaskMemAnsiGetTypeLibNameGetTypeLibGuidGetTypeLibLcidGetTypeLibGuidForAssemblyGetTypeLibVersionForAssemblyGetTypeInfoNameGetTypeForITypeInfoGetITypeInfoForTypeGetIUnknownForObjectGetIUnknownForObjectInContextGetIDispatchForObjectGetIDispatchForObjectInContextGetComInterfaceForObjectGetComInterfaceForObjectInContextGetObjectForIUnknownGetUniqueObjectForIUnknownGetTypedObjectForIUnknownCreateAggregatedObjectCleanupUnusedObjectsInCurrentContextAreComObjectsAvailableForCleanupIsComObjectAllocCoTaskMemReleaseComObjectFinalReleaseComObjectGetComObjectDataSetComObjectDataCreateWrapperOfTypeReleaseThreadCacheIsTypeVisibleFromComQueryInterfaceAddRefReleaseReAllocCoTaskMemFreeCoTaskMemFreeBSTRStringToCoTaskMemUniStringToCoTaskMemAutoStringToBSTRPtrToStringBSTRGetNativeVariantForObjectGetObjectForNativeVariantGetObjectsForNativeVariantsGetStartComSlotGetEndComSlotGetMethodInfoForComSlotGetComSlotForMethodInfoGenerateGuidForTypeGenerateProgIdForTypeBindToMonikerGetActiveObjectChangeWrapperHandleStrengthGetDelegateForFunctionPointerGetFunctionPointerForDelegateSecureStringToBSTRSecureStringToCoTaskMemAnsiSecureStringToCoTaskMemUnicodeZeroFreeBSTRZeroFreeCoTaskMemAnsiZeroFreeCoTaskMemUnicodeSecureStringToGlobalAllocAnsiSecureStringToGlobalAllocUnicodeZeroFreeGlobalAllocAnsiZeroFreeGlobalAllocUnicodeITypeLibImporterNotifySinkMarshalDirectiveExceptionRuntimeEnvironmentSEHExceptionSafeBufferBStrWrapperComMemberTypeCurrencyWrapperDispatchWrapperErrorWrapperExtensibleClassFactoryICustomAdapterICustomFactoryCustomQueryInterfaceResultInvalidComObjectExceptionAssemblyRegistrationFlagsIRegistrationServicesTypeLibImporterFlagsTypeLibExporterFlagsImporterEventKindExporterEventKindITypeLibExporterNotifySinkITypeLibConverterITypeLibExporterNameProviderObjectCreationDelegateRegistrationClassContextRegistrationConnectionTypeRegistrationServicesSafeArrayRankMismatchExceptionSafeArrayTypeMismatchExceptionTypeLibConverterBIND_OPTSUCOMIBindCtxUCOMIConnectionPointContainerUCOMIConnect1ionPointUCOMIEnumMonikerCONNECTDATAUCOMIEnumConnectionsUCOMIEnumConnectionPointsUCOMIEnumStringUCOMIEnumVARIANTFILETIMEUCOMIMonikerUCOMIPersistFileUCOMIRunningObjectTableSTATSTGUCOMIStreamDESCKINDBINDPTRUCOMITypeCompTYPEKINDTYPEFLAGSIMPLTYPEFLAGSTYPEATTRFUNCDESCIDLFLAGIDLDESCPARAMFLAGPARAMDESCTYPEDESCELEMDESCDESCUNIONVARDESCDESCUNIONDISPPARAMSEXCEPINFOFUNCKINDINVOKEKINDCALLCONVFUNCFLAGSVARFLAGSUCOMITypeInfoSYSKINDLIBFLAGSTYPELIBATTRUCOMITypeLibUnknownWrapperVariantWrapperComEventsHelperCombineRemove_AssemblyBuilder_ConstructorBuilder_CustomAttributeBuilder_EnumBuilder_EventBuilder_FieldBuilder_ILGenerator_LocalBuilder_MethodBuilder_MethodRental_ModuleBuilder_ParameterBuilder_PropertyBuilder_SignatureHelper_TypeBuilderHostingApplicationActivatorActivationArgumentsConstrainedExecutionCriticalFinalizerObjectConsistencyCerReliabilityContractAttributePrePrepareMethodAttributeCompilerServicesStringFreezingAttributeAccessedThroughPropertyAttributeCallConvCdeclCallConvStdcallCallConvThiscallCallConvFastcallRuntimeHelpersInitializeArrayGetObjectValueRunClassConstructorPrepareMethodPrepareDelegatePrepareContractedDelegateGetHashCodeEqualsEnsureSufficientExecutionStackProbeForSufficientStackPrepareConstrainedRegionsPrepareConstrainedRegionsNoOPExecuteCodeWithGuaranteedCleanupTryCodeCleanupCodeCompilerGeneratedAttributeCustomConstantAttributeDateTimeConstantAttributeDiscardableAttributeDecimalConstantAttributeCompilationRelaxationsCompilationRelaxationsAttributeCompilerGlobalScopeAttributeFixedBufferAttributeIndexerNameAttributeInternalsVisibleToAttributeIsVolatileMethodImplOptionsMethodCodeTypeMethodImplAttributeFixedAddressValueTypeAttributeUnsafeValueTypeAttributeRequiredAttributeAttributeLoadHintDefaultDependencyAttributeDependencyAttributeCompilerMarshalOverrideHasCopySemanticsAttributeIsBoxedIsByValueIsConstIsExplicitlyDereferencedIsImplicitlyDereferencedIsJitIntrinsicIsLongIsPinnedIsSignUnspecifiedByteIsUdtReturnScopelessEnumAttributeSpecialNameAttributeIsCopyConstructedSuppressIldasmAttributeNativeCppClassAttributeTypeForwardedToAttributeTypeForwardedFromAttributeReferenceAssemblyAttributeRuntimeCompatibilityAttributeRuntimeWrappedExceptionConditionalWeakTableCreateValueCallbackIDispatchConstantAttributeIUnknownConstantAttributeRemotingActivationIActivatorActivatorLevelIConstructionCallMessageIConstructionReturnMessageUrlAttributeContextsIContextAttributeIContextPropertyContextAttributeCrossContextDelegateContextContextPropertyIContextPropertyActivatorIContributeClientContextSinkIContributeDynamicSinkIContributeEnvoySinkIContributeObjectSinkIContributeServerContextSinkIDynamicPropertyIDynamicMessageSinkSynchronizationAttributeMessagingIMessageSinkAsyncResultIMessageIMethodMessageIMethodCallMessageIMethodReturnMessageIMessageCtrlIRemotingFormatterReturnMessageMethodCallConstructionCallMethodResponseConstructionResponseInternalMessageWrapperMethodCallMessageWrapperMethodReturnMessageWrapperOneWayAttributeMessageSurrogateFilterRemotingSurrogateSelectorHeaderHeaderHandlerCallContextILogicalThreadAffinativeLogicalCallContextIInternalMessageISerializationRootObjectChannelsChannelServicesIClientResponseChannelSinkStackIClientChannelSinkStackClientChannelSinkStackIServerResponseChannelSinkStackIServerChannelSinkStackServerChannelSinkStackIChannelIChannelSenderIChannelReceiverIServerChannelSinkProviderIChannelSinkBaseIServerChannelSinkIChannelReceiverHookIClientChannelSinkProviderIClientFormatterSinkProviderIServerFormatterSinkProviderIClientChannelSinkServerProcessingIClientFormatterSinkIChannelDataStoreChannelDataStoreITransportHeadersTransportHeadersSinkProviderDataBaseChannelObjectWithPropertiesBaseChannelSinkWithPropertiesBaseChannelWithPropertiesISecurableChannelLifetimeISponsorClientSponsorILeaseLeaseStateLifetimeServicesServicesEnterpriseServicesHelperITrackingHandlerTrackingServicesProxiesProxyAttributeRealProxyMetadataW3cXsd2001ISoapXsdSoapDateTimeSoapDurationSoapTimeSoapDateSoapYearMonthSoapYearSoapMonthDaySoapDaySoapMonthSoapHexBinarySoapBase64BinarySoapIntegerSoapPositiveIntegerSoapNonPositiveIntegerSoapNonNegativeIn2tegerSoapNegativeIntegerSoapAnyUriSoapQNameSoapNotationSoapNormalizedStringSoapTokenSoapLanguageSoapNameSoapIdrefsSoapEntitiesSoapNmtokenSoapNmtokensSoapNcNameSoapIdSoapIdrefSoapEntitySoapOptionXmlFieldOrderOptionSoapAttributeSoapTypeAttributeSoapMethodAttributeSoapFieldAttributeSoapParameterAttributeIObjectHandleWellKnownObjectModeIRemotingTypeInfoIChannelInfoIEnvoyInfoObjRefRemotingConfigurationConfigureRegisterActivatedServiceTypeRegisterWellKnownServiceTypeRegisterActivatedClientTypeRegisterWellKnownClientTypeGetRegisteredActivatedServiceTypesGetRegisteredWellKnownServiceTypesGetRegisteredActivatedClientTypesGetRegisteredWellKnownClientTypesIsRemotelyActivatedClientTypeIsWellKnownClientTypeIsActivationAllowedTypeEntryActivatedClientTypeEntryActivatedServiceTypeEntryWellKnownClientTypeEntryWellKnownServiceTypeEntryCustomErrorsModesRemotingExceptionServerExceptionRemotingTimeoutExceptionRemotingServicesIsTransparentProxyIsObjectOutOfContextGetRealProxyGetSessionIdForMethodMessageGetLifetimeServiceGetObjectUriSetObjectUriForMarshalMarshalGetObjectDataUnmarshalConnectDisconnectGetEnvoyChainForProxyGetObjRefForProxyGetMethodBaseFromMethodMessageIsMethodOverloadedIsOneWayGetServerTypeForUriExecuteMessageLogRemotingStageInternalRemotingServicesSoapServicesObjectHandleExceptionServicesHandleProcessCorruptedStateExceptionsAttributeFirstChanceExceptionEventArgsVersioningComponentGuaranteesOptionsComponentGuaranteesAttributeResourceConsumptionAttributeResourceExposureAttributeResourceScopeVersioningHelperMakeVersionSafeNameTargetFrameworkAttributeMemoryFailPointGCLatencyModeGCSettingsAssemblyTargetedPatchBandAttributeTargetedPatchingOptOutAttributeConfigurationAssembliesAssemblyHashAssemblyHashAlgorithmAssemblyVersionCompatibilityObjectExceptionValueTypeIComparableIFormattableIConvertibleEnumAggregateExceptionICloneableDelegateMulticastDelegateActionFuncComparisonConverterPredicateArrayIDisposableArraySegmentIEquatableTupleStringStringSplitOptionsStringComparerStringComparisonDateTimeDateTimeKindDateTimeOffsetSystemExceptionOutOfMemoryExceptionStackOverflowExceptionDataMisalignedExceptionExecutionEngineExceptionMemberAccessExceptionActivatorAccessViolationExceptionApplicationExceptionEventArgsResolveEventArgsAssemblyLoadEventArgsResolveEventHandlerAssemblyLoadEventHandlerAppDomainInitializerMarshalByRefObject_AppDomainAppDomainCrossAppDomainDelegateAppDomainManagerInitializationOptionsAppDomainManagerIAppDomainSetupAppDomainSetupLoaderOptimizationAttributeLoaderOptimizationAttributeAppDomainUnloadedExceptionActivationContextContextFormApplicationIdentityApplicationIdArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionArgIteratorArithmeticExceptionArrayTypeMismatchExceptionAsyncCallbackAttributeTargetsAttributeUsageAttributeBadImageFormatExceptionBitConverterGetBytesToInt16ToInt32ToInt64ToUInt16ToUInt32ToUInt64ToSingleToDoubleDoubleToInt64BitsInt64BitsToDoubleBooleanBufferBlockCopyGetByteSetByteByteLengthByteCannotUnloadAppDomainExceptionCharCharEnumeratorCLSCompliantAttributeTypeUnloadedExceptionConsoleBeepClearResetColorMoveBufferAreaSetBufferSizeSetWindowSizeSetWindowPositionSetCursorPositionReadKeySetInSetOutSetErrorWriteLineWriteConsoleCancelEventHandlerConsoleCancelEventArgsConsoleColorConsoleKeyConsoleKeyInfoConsoleModifiersConsoleSpecialKeyContextMarshalExceptionConvertToBooleanToCharToSByteToByteToInt16ToUInt16ToInt32ToUInt32ToInt64ToUInt64ToSingleToDoubleToDecimalToDateTimeToStringToBase64StringToBase64CharArrayFromBase64StringFromBase64CharArrayBase64FormattingOptionsContextBoundObjectContextStaticAttributeTimeZoneDayOfWeekDBNullDecimalDivideByZeroExceptionDoubleDuplicateWaitObjectExceptionTypeLoadExceptionEntryPointNotFoundExceptionDllNotFoundExceptionEnvironmentVariableTargetEnvironmentExitFailFastExpandEnvironmentVariablesGetCommandLineArgsGetEnvironmentVariableGetEnvironmentVariablesSetEnvironmentVariableGetLogicalDrivesGetFolderPathSpecialFolderOptionSpecialFolderEventHandlerFieldAccessExceptionFlagsAttributeFormatExceptionGCCollectionModeGCNotificationStatusGCAddMemoryPressureRemoveMemoryPressur3eGetGenerationCollectCollectionCountKeepAliveWaitForPendingFinalizersSuppressFinalizeReRegisterForFinalizeGetTotalMemoryRegisterForFullGCNotificationCancelFullGCNotificationWaitForFullGCApproachWaitForFullGCCompleteGuidIAsyncResultICustomFormatterIFormatProviderIndexOutOfRangeExceptionIObservableIObserverInsufficientMemoryExceptionInsufficientExecutionStackExceptionLazyInt16Int32Int64IntPtrInvalidCastExceptionInvalidOperationExceptionInvalidProgramExceptionInvalidTimeZoneExceptionIServiceProviderLocalDataStoreSlotMathAcosAsinAtanAtan2CeilingCosCoshFloorSinTanSinhTanhRoundSqrtLogLog10ExpPowIEEERemainderAbsMaxMinSignBigMulDivRemMethodAccessExceptionMidpointRoundingMissingMemberExceptionMissingFieldExceptionMissingMethodExceptionMulticastNotSupportedExceptionNonSerializedAttributeNotFiniteNumberExceptionNotImplementedExceptionNotSupportedExceptionNullReferenceExceptionObjectDisposedExceptionObsoleteAttributeOperatingSystemOperationCanceledExceptionOverflowExceptionParamArrayAttributePlatformIDPlatformNotSupportedExceptionRandomRankExceptionTypeRuntimeArgumentHandleRuntimeTypeHandleRuntimeMethodHandleRuntimeFieldHandleModuleHandleSByteSerializableAttributeSingleSTAThreadAttributeMTAThreadAttributeTimeoutExceptionTimeSpanTimeZoneInfoAdjustmentRuleTransitionTimeTimeZoneNotFoundExceptionTypeAccessExceptionTypeCodeTypedReferenceTypeInitializationExceptionUInt16UInt32UInt64UIntPtrUnauthorizedAccessExceptionUnhandledExceptionEventArgsUnhandledExceptionEventHandlerVersionVoidWeakReferenceThreadStaticAttributeNullableCompareEqualsITupleMicrosoftRuntimeHostingWin32SafeHandlesSafeHandleZeroOrMinusOneIsInvalidSafeFileHandleSafeRegistryHandleSafeWaitHandleSafeHandleMinusOneIsInvalidCriticalHandleZeroOrMinusOneIsInvalidCriticalHandleMinusOneIsInvalidRegistryGetValueSetValueRegistryHiveRegistryKeyRegistryValueOptionsRegistryKeyPermissionCheckRegistryOptionsRegistryValueKindRegistryView����r<
kQe
+�<	k&Nk�<
k|<
k6Nk�<kINk`NklN
k=
kh<
kyN
k�<
k�Nk�N
k�<k�<k�Nk�<k�N
k'=k�Nk�Nk=k�Nk=
k�Nk�<k�<k�Nk�%J�n�
k#g#�#�#�O �
#�d+�
##Y##1nwc+__U
 O�f+�d	+"U3�&alS�Fq\*VBc+�UFDQ%k�=!k@��)J[e	++e+�e+ze%+�e+f+&66
�4
O��*'��d+Kf
+8f+Q�h���������*F �f+Xf+if+~f+�f+�c+�	��c+�f+<=k
B5n�b
p�� �/�>��� �x�� �, �� ���n �!��bg�bgI %�� �!��d+e+6!�S!�B!����Jknb"K����� ��bg�+3�+3-V@ V`V~V�V�f
+E&J�V$9n=n�e	+�f+�f+�
#
	#�#!#`@k�%Jg+�i+TZ�sZ��Z�"h�@k�n�7>�7��2w�2wp:	�K	k��(
M�!�B;�Lk$H
��g+�g	��g+�Ik�g+�2w�g4+�g
��|.��.��.��W$�;�Mk�O
P�OPlAk�!��lS6*J*J*J�g+�*�BniO%@HZ�UX]X��g+�g+}Ak�.��/�
V>k�=k:QPF$&h�X��Z
��g+�@k�kY
�m*����	�4lS�
lI�;lS+K@kN��@k?k�=k�@k
Nk�Ak�?k�=k�I
kq	#�	#6#v#!r[�&a�.��.���H\�c
+�Q�QEQ�QS�OK�a��a�N#?#(&Jc>k�>kh:k>k>k#
�-\k2-��T�b
+�]	_`�:FLk^O%h+�h+�h+�h+�h
+�h+�h+
i+3OK-W$KW$S�|$��U1�U1j+U&J-f5i+�U1nUj+�+=�*=�*=7,=$,=�*b+ =�+#=2+"=T+=�*	�s+=<#2i+�c	+mBInLn�)J�4�E3��4
�T�FGO%.=k�rZ�r%Zde+�U1�V"V�V�)V2k�##�#^#>V.VAV
VV�.��.�/��Ik�+v6	#���!�y!��!��!�_Qg_�AkVJkYd+�c+vQ//�d+d+!/�A/�6j	+?j+�-�F-��-��-�(.��-��-�j- �N-�.�@.��-yEj+�QBMBeB)B8B�B�B� B�&	a�4Ak�R"�^c+4��4�R$
+eVJV:;�LkMV�;	�dM	��;	�tM	�UC�UZ*+f
\b���M/��2	w,4
wP4w�#!#�Qf`
�#	Jk�=k�;
}M
kLj+�n@k�j+aj+mg�s4	w|4wj4	w}V�Vp
V�V�Vgj+p
�}
��/��;\Mk+�B�BB�B�B/BGBa BB�B�4,3�4w�+3�+3�PP'C�Z��j+>c+��p
��
��
��
��j+�	��	��
��j+�\(r[�PPJk�d	+"����k+�$	�e*�7&J�
��%J�#�#o#�#�����;	�M	k	c	+[#�=#�/aK�&aQ P�`d&Jpd+,33��4�j�'Ctn5�j�L<k�Jk$Jk�Ak�j��k+%"����$	�7@k�
��4w?6
w�6w
��	��	��I6w"
�
�3�Q6wb6wj6w6w#�6	w�6
w�#�#4w�##�:�LksFna��RR�k+PnI�,3�k+�9	��7>�8��7
��8��7>GG
D�i@�i@�V�V}c+x;,Mk�;	�M	k�;�Mk��|���l+�k+�Ak�AkWb
K�k+db
K�GH�$
#�
#]�4"�v�H#���d1H�d�d�5
e(M�g�(g�pE�E!
k��F�G.3��4=3�5�3�[H�dd�6��3��G
k�5k�p`)C�CCrk
��6�xH'l
S�PPeC�C�B=EREhe�DE E�3�15�3�B5�Bb3�i5r3�y5`�3�bk��C$>(
M�`�GX(
MeG�.�I`
�E~G�G `APP�`�2	��6��_u^!1^"�^!S^"�`�_�G�6��6��C�lS�E�D�D�D�D�DxD�D�.��E�C$s&vo.
+X/�i/��l+�?
k@a.�A	k'S���
V���	��W$�W
$/��/
��V�V
VV
V$
V.
V�&J�&JDrJOKt
��k2
�Sk9kU
3�e+A�m+y: �Y�Z��]Y�fY�Y�DY��Y�zY��X��Y��Y�lX�Tc
+��P\c+�	�	\�:�:��0U3HU3vU1�U1�U1�U1V1V10V1EV12c+�V�V:Jk�HJk
m+�Ak�<k0�r	�	�,	�I8�W�[\���T�>k�>k�c+�;;Mk�;4Mk@0
�qV1aV1zn
�:�:��,\��!\�:�:�:�]
��7\�c
+�kS<
�7
>m+&c+�8
�q8��T	�'�-X$�Z�e����\X$�"����V$�V$�V$�V$�V$�V$;c;
M
k�>k�Jk�?k&	a R,m+�#2PP�2�sm#+Xm+�m+�m+�m+~g�N"��=6kt&J�*=.�xcG!c_W$�`	8
>8
>4RY:K�m+�m+pJk^"��Ak�m+�m+�m+�+	3�;
�M
k�1+X]
a8�Dm+Om	+(JE4w�k
;l
�A8��JkW$x]��1111;�^:�@SGS	JFPS�S�Z�
k�k�k<8
�=X$�8�TY�*Y��X��Y��X�n+WS	voS�S�S�`�7>g[��_�1w 2��
�H2��2��
��&�/2��
��"�2�`2�~2�6	c�`�S�Z��^�S�
k�_3;�����F�S�8�OR
�^Y,
 f, t, �, �,
 �, �,
 �, �, �,
 G*J[�#Z�.r+I;	<	B<
1<9<	Kk,KkKk�Ik��T�	�J0��/��/�Jl	Sz
���N!�o+��+�L�3�l�V�\8	V�V�\.#Z0�0����A
k�m+�)J�)JL>k�Z
�<�Mk�Z�Z��\�e+�e+�R6vMv��n+|#��&
J�&JlnonX$�`TVb�FA&k?�|"��&J�)JBkB`�?k?e+�Ik{V-n+�n`VcV�d+�"�.
��"�HbK�6w�W$�V	U[�n+�"�r$
�r#
��
�#W
$uW$jRxR�"�YR�$
���=W$�W$��4r	�n+�n�"��n+"1 1�n+�n+B1!1	#�
��p+W�
'J4�465h�p+fc+o+3'J=#L#2#Z
#skTJ#8'J��c1!1$o+�B:o+Ro+io+G		�r+~o+�0��0�C
#�)#�c+#�	#z##HKk�o+#a�9��9
���(#�]�o+GB�+339�9��W$9��8� ��&
��4�5�4�5	>��o+�o+�?k�8���?k/d+�o+H'
J���V�$=%=�$=�$=�o+�;	KM	k�#�T��$
�R'J�#�d��;	BM	kvkz�V�6w�6w����	kf
k���
�0��V	p
+p+�#��k���v���k�����"�wn�c	+�B�B
�P7P�PP~PPoPPbP
P�O%�?kx@kK	k
�k����#�PPd!��>k�#�#�r��$��
�7[>[�B2BVG$BGC�	���p$���&'C+'C�*
=e#�F���(M�*80p+�V6p
+�#a#�V�V�5�5�5qBj'JyB	�B	�B	�B
h6	lp��k�FDL[	�^T!
+

������#�h0
��]�]�'J�lSx(M^�]^KkvKk�Kk	s��#�#!s�-s�Ls�fs�������#�#us�8s��s��FcF�FlO%UK�]x_�_�W$�_ N�lS86�R�+3{lS+h
�d+e+u
v�v�v�#��a��a��"��11�11�0	+b
��11�#�11�+3W
$�V�V�V�V�	V�VVcnVV)VFV
VaVV�V�VOPP=r6�7+Gp+xT�Ik�p+$Pmp+\p+�T�Kk�Kk�I
k|rZ�<
k�rZPr�[r!Z�rZ�9��rZ�1!1�
vfv�p+�S94w�k�H�H�HI6I �+�
�H
��k�k�k�k�k�k`	��
#kG
���1
�#kk�k�
k�k�k�k$7
w�Ikz'J�)
J&J�p+�7
KJ9��9�]9�s9��9�.:��X��_18>�Y��Z�3��5�5
Ch
�g��F3��44�nhLk��h�h�3�5O3�V51(
MK(
M,`�hs#A#k]hPh
VVV(V.
V;VA
VNVT
V�naV����Un�p+[nDZ���Y
�3���ABB\
��\
%�[��[�o[��[�{[��\��\
�(8	>0]%�[
��\��\	��\
��[�~\�8>]%�[	��[��\��\
�/\��\��\�\�\�a\�U\��\
%B]%�[�L\	�a�[�u\	�]%�[��[
��
�r0��k
�k��S�)J�)Jhn��0�e.
�Cd+[.
��p+,;�Lk�2w�9��9�87wN7w�c+�
B�c+�c+�Oy0
�Z7w�c+JGcD5G!G8+DPD>D��f7w
�o
�%��#���
�"@k��9C�$+klS�Sy*�&kH:��, N,�'- �, - - V�V1&J�'J<�Mk�	# d+�0�)0�Xn_n�bK$�0b�$�0$��$=V%=�%=?%=,%=�$=�$J�%
=k%="%
=[<
k�+�0��0�.7
wD7
w�0��'J�'J�$	+�'J�)J'(
J)J)J9)J)J%)Jr+qCM)J�p+a)JT)
J�p+�0�.j+�p+"q+�i@�i@�V9i	@Oi@Bi@�i
@�i	@eg��i@0g�Ui@7g�di@>g�si@����Hi@]g��i@�i@Eg�\i@Mg�ki@Ug�zi@'[�q\4Z��*8u	V~Vn�Y�3QP'C�c+Cp+;q+p;$MkM$���Nq+[$
��;TMkVq+�^	h$
��7>Z;	M	kDT,Tl=kdq+R;Mk&<�Mk�Kk�Jkh?k5?k1>k�JkT?k%?k|?kE?k�@k�j+�	�h+�Kk"LkLkeLkQLk6Lk~Lk�Lk�Lk�Lk�Lk�Lk�L
k�M
k�Mkq+�q+�q+�q+�
����
��
��1 1�/��q+�q+�q+�0��B:��MkK=!k��r7w7w�?
kV`	�% =OB�(M�(M�(!M�R8kH�bU3�
�R�K��
B�B�BGk�+
3��c	+�;mMk�?k<�Mk�Mk�;�k�q+�a
K
b��q+][
%"'C�'J�lS�lSSlS�%
Jf)!J(J�q
+6_e]N_P	�Kr6��������	��h�5
6
�5�B	�B
�B
�B
�B�h	p>VN]�\%�k�H�HIVImIa��
���e��bF���`��6�I�5SR���@[x�S��\��[������a����������������������r���en}v�>PTUWX��������R��_a������%�����`FR^S��];�]+^�mbed�h|g9?�)��A��f2x���'a��C�MUE�L��7<���>9z��38"#$���`rv$9��CD]/035������Y=?���;jk�hi����N�c������NL����P������������n�g�*0�7+3f��
����|����z���������������������������������;�3��pt5S\^x�l<:=RQO\����������h|9?��a,��n+3
;{
��g�bpt[���"���[\]lLRQOAb�Y������[�������Dij_���5w�����R�����!��dU���0/������IJ! ������������������u{����pt������[\]b�Y����t9�pt����[\]b�Y�����p���x��[\]b�����	=-Qs]?�S��`����a�����|�`rD]
u�HH0HA�'{FP���B��-���|OXg��JQ#�B`�a����`BC����a������������W��^�*'`���BC����a����*+��������W��^�03��`��`���4�pt������[\]b�Y\�����;{��sH�� !#$�w�TX7��V�q{�o��Y����on��!���l�y�����G_\�V��u4&$.,
-eY�-M%'?}����`. '/�E���+�k�y�~8��NQD�@;:|7����bu��Z^��d�$&(���W�@<����������V�m�n���Q������ON#"��MNvu��KL��*)����0-�l7���2v�.��	����2�t�\����|�D;{-;��o*J\_c���/�:UYmqrIXY\��V���s���TC�!�(IKRP;>}�pnTU�6�&z��6]2EG,~��W�,EF��i�
E5Eh�I������26Uo���GS�Ap|~zmn�lr�mpwso�xqity�`a��~y{�}��459;<>:T_�2�vusr��B�`�����P
�������R��������������(k��5Tj.4�"���c�P���M+t���,-435�-,����en�%�`FR[��;���WEL���7��035���EF��!XM
\]^���a-
�-,����X�+C�_�W�����&<�Z<:=qhY��(�����6<����������������e�����������������r�~��F>PV����R���~������O��F>P���R��>P��R��	>P��R��F	>P��R���OV���Q��4�3S��S�>��Q�=_�aZt�� ��w���O��
�
� ���w��
�� ���w���O��
m����"���x������P����TU�>%<��9~`FR�;�[�)"�����@��
�A��G��H��<���������������8���<=@A�BE�CF9:���������~]�e�	���d^���,��)�)W�*K)c�X�+L�fm���QQZ�.Nm.'�����b��h?�h|:hQo356�?���c�(()1)1���y�nhjj)((A1�*�*	f2?@@����� �
���J��L�H!XMH�7�7�77�88`r]����������.G����/�0�5,�}���#%�E�F�)�}���;=:;���������[VW\^�������kq��12��xiJ+&,KJL7+&3',4GKJL7+&3',4L73'4+�&+�+
&&I��?+3�+3+&&3''f,4��������������������������|����������������������������������������X[YMON
��#���T<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\mscorlib.dll�	17Ij,�\Ќ8�Tm�fa�vփm��SystemCollectionsGenericIComparerIEnumeratorIEnumerableIEqualityComparerComparerICollectionIDictionaryDictionaryEnumeratorKeyCollectionEnumeratorValueCollectionEnumeratorEqualityComparerIListKeyNotFoundExceptionKeyValuePairListEnumeratorObjectModelCollectionReadOnlyCollectionKeyedCollectionConcurrentConcurrentDictionaryIProducerConsumerCollectionConcurrentQueueConcurrentStackPartitionerOrderablePartitionerIEnumerableICollectionIListIStructuralComparableIStructuralEquatableIEnumeratorIComparerIEqualityComparerCaseInsensitiveComparerIHashCodeProviderCaseInsensitiveHashCodeProviderCollectionBaseIDictionaryDictionaryBaseReadOnlyCollectionBaseQueueArrayListBitArrayStackComparerIDictionaryEnumeratorHashtableDictionaryEntrySortedListStructuralComparisonsTextStringBuilderEncodingEncoderDecoderASCIIEncodingDecoderFallbackDecoderFallbackBufferDecoderExceptionFallbackDecoderExceptionFallbackBufferDecoderFallbackExceptionDecoderReplacementFallbackDecoderReplacementFallbackBufferEncoderFallbackEncoderFallbackBufferEncoderExceptionFallbackEncoderExceptionFallbackBufferEncoderFallbackExceptionEncoderReplacementFallbackEncoderReplacementFallbackBufferEncodingInfoNormalizationFormUnicodeEncodingUTF7EncodingUTF8EncodingUTF32EncodingSecurityPolicyEvidenceBaseIMembershipConditionAllMembershipConditionApplicationDirectoryApplicationDirectoryMembershipConditionApplicationSecurityInfoApplicationSecurityManagerDetermineApplicationTrustApplicationVersionMatchApplicationTrustApplicationTrustCollectionApplicationTrustEnumeratorCodeGroupEvidenceFileCodeGroupFirstMatchCodeGroupIIdentityPermissionFactoryIApplicationTrustManagerTrustManagerUIContextTrustManagerContextCodeConnectAccessNetCodeGroupPermissionRequestEvidencePolicyExceptionPolicyLevelPolicyStatementAttributePolicyStatementSiteSiteMembershipConditionStrongNameStrongNameMembershipConditionUnionCodeGroupUrlUrlMembershipConditionZoneZoneMembershipConditionGacInstalledGacMembershipConditionHashHashMembershipConditionPublisherPublisherMembershipConditionIConstantMembershipConditionIReportMatchMembershipConditionIUnionSemanticCodeGroupIDelayEvaluatedEvidenceUtilPrincipalIIdentityGenericIdentityIPrincipalGenericPrincipalPrincipalPolicyWindowsAccountTypeTokenImpersonationLevelTokenAccessLevelsWindowsIdentityWindowsImpersonationContextWindowsBuiltInRoleWindowsPrincipalIdentityReferenceIdentityReferenceCollectionNTAccountWellKnownSidTypeSecurityIdentifierIdentityNotMappedExceptionPermissionsEnvironmentPermissionAccessIUnrestrictedPermissionEnvironmentPermissionFileDialogPermissionAccessFileDialogPermissionFileIOPermissionAccessFileIOPermissionHostProtectionResourceSecurityAttributeCodeAccessSecurityAttributeHostProtectionAttributeIsolatedStorageContainmentIsolatedStoragePermissionIsolatedStorageFilePermissionPermissionStateSecurityActionEnvironmentPermissionAttributeFileDialogPermissionAttributeFileIOPermissionAttributeKeyContainerPermissionAttributePrincipalPermissionAttributeReflectionPermissionAttributeRegistryPermissionAttributeSecurityPermissionAttributeUIPermissionAttributeZoneIdentityPermissionAttributeStrongNameIdentityPermissionAttributeSiteIdentit,
���A
��z<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\Microsoft.CSharp.dll�	3E�Y�^
�6��|aخ�82���bindercsharpcsharpargumentinfocsharpargumentinfoflagscsharpbinderflagsenumexceptionmicrosoftobjectruntimebinderruntimebinderexceptionruntimebinderinternalcompilerexceptionsystem


5FJ	S	\b
o�&�		
 ypemysqltransactionobjectpropertiesreplicationreplicationconfigurationelementreplicationroundrobinservergroupreplicationserverreplicationserverconfigurationelementreplicationservergroupreplicationservergroupconfigurationelementresourcesrowupdatedeventargsrowupdatingeventargsschemacolumnsecbuffersecbuffertypesechandlesecpkgcontext_sizessecurity_handlesecurity_integersha256authenticationpluginstringutilitysystemtextclienttypesusageadvisorwarningflagsvaluetypezlib�(6Ldr#~&�-�0�
0�1�4�6�;�;�	@DH H9
LFQVSoT{T�T�Z�^�
^�^�	^�	b�b�%b
ccc'c3dAdLdWdedue�e�f�h�	h�i�l�p�	r�sss!s&u?uNuku�u�u�u�u�u�x�yy y/yFzbzzz�z�
{�{�|�|�
|�|�|�
|�|
|#|?}X}f}~~�~�~�~�~�~	~~-~I~]~t~�"~�
����
��	 ):%_u*�	�������	��
��	���
��,�F
�S�Y
�c�h��	����	


 /?Sci!o
AFVaD

+	.lz

#<27g{	}1qrWY'@	!
I]v�
,Jt	~)>[9:;
*=p
x
3BT"$%&L
P06NUCO
fsm(8-KMdRX^45H
Qew	hGbEZj�`y	\_nk
u|
��� �!�.<SymbolTreeInfo>_SpellChecker_C:\Users\bbds\Documents\Workspace\CSharp\BTStatementMerge\packages\MySql.Data.6.9.8\lib\net40\MySql.Data.dll�	3�рmJ?��.;�"ɪn��FD�authenticationauthenticationpluginconfigurationelementbasecommandinterceptorbaseexceptioninterceptorbasetablecachebinaryclientclientcollectionscommonconfigurationconfigurationelementconfigurationelementcollectionconfigurationsectioncustominstallerdatadbcommanddbcommandbuilderdbconnectiondbconnectionstringbuilderdbdataadapterdbdatapermissiondbdatapermissionattributedbdatareaderdbexceptiondbparameterdbparametercollectiondbproviderfactorydbtransactionenumeventargsexceptiongenericgenericconfigurationelementcollectionicloneableicomparableiconvertibleidataadapteridataparameteridatareaderidatarecordidbdataadapteridbdataparameteridisposableienumerableimysqlvalueinstallinstallerinterceptorconfigurationelementiserviceprovidermarshalbyrefobjectmemcachedmemcachedexceptionmemcachedflagsmulticastdelegatemysqlmysqlauthenticationpluginmysqlbulkloadermysqlbulkloaderconflictoptionmysqlbulkloaderprioritymysqlcertificatestorelocationmysqlclientmysqlclientfactorymysqlclientpermissionmysqlclientpermissionattributemysqlcommandmysqlcommandbuildermysqlconfigurationmysqlconnectionmysqlconnectionprotocolmysqlconnectionstringbuildermysqlconversionexceptionmysqldataadaptermysqldatareadermysqldatetimemysqldbtypemysqldecimalmysqldrivertypemysqlerrormysqlerrorcodemysqlexceptionmysqlgeometrymysqlhelpermysqlinfomessageeventargsmysqlinfomessageeventhandlermysqlnativepasswordpluginmysqlparametermysqlparametercollectionmysqlrowupdatedeventargsmysqlrowupdatedeventhandlermysqlrowupdatingeventargsmysqlrowupdatingeventhandlermysqlschemacollectionmysqlschemarowmysqlscriptmysqlscripterroreventargsmysqlscripterroreventhandlermysqlscripteventargsmysqlsecuritypermissionmysqlsslmodemysqlstatementexecutedeventhandlermysqltracemysqltraceeventt<
���,��R<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Xml.Linq.dll�	3SoI0�2�Kg�t-�EF�:��ancestorsancestorsandselfattributescollectionscomponentmodelcreatenavigatordescendantnodesdescendantnodesandselfdescendantsdescendantsandselfelementsenumeventargsextensionsgenericgetschemainfoicompareriequalitycompareriequatableindocumentorderinternaliserializableixmllineinfoixmlserializablelinqloadoptionsmsnodesobjectreaderoptionsremoveruntimesaveoptionsschemaserializationsystemvalidatexattributexcdataxcommentxcontainerxdeclarationxdocumentxdocumenttypexelementxmlxnamexnamespacexnodexnodedocumentordercomparerxnodeequalitycomparerxobjectxobjectchangexobjectchangeeventargsxpathxpathevaluatexpathselectelementxpathselectelementsxprocessinginstructionxstreamingelementxtext=	
	

#.<KZp {"�$�$�	*�
+�+�
,�	,�,�
,�0�1�
111$2(43454:6@
7M7S7Z7e7k
7x8~9�
9�9�9�
:�:�	:�
:�:�:�:�
:�:�::;
;,;B;G
;T;f<y<�<�<<
		
12

	$
	 
#
4
"
)+:
!;',.
6	(
*8	%-/0<7&359
	k	k��1�<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Data.DataSetExtensions.dll�	3�������TߍN<�535���asdataviewasenumerablecastcollectionscopytodatatabledatadatarowcomparerdatarowextensionsdatatabledatatableextensionsenumerablerowcollectionenumerablerowcollectionextensionsfieldgenericienumerableiequalitycomparerobjectorderbyorderbydescendingorderedenumerablerowcollectionselectsetfieldsystemthenbythenbydescendingtypedtablebasetypedtablebaseextensionswhere

%48GX	at�!��������$*:H`	
	


	


����i�6<SymbolTreeInfo>_SpellChecker_C:\Program Files\Laserfiche\SDK 10.2\bin\COM\x86\Interop.DocumentProcessor83.dll�	3:���Pn��G�ܭ%� � �_idocumentexporterevents_idocumentexporterevents_event_idocumentexporterevents_invalidchecksumeventhandler_idocumentexporterevents_pageexportedeventhandler_idocumentexporterevents_sinkhelper_idocumentimporterevents_idocumentimporterevents_event_idocumentimporterevents_pageimportedeventhandler_idocumentimporterevents_sinkhelper_iimportengineevents_iimportengineevents_docprocessedeventhandler_iimportengineevents_event_iimportengineevents_sinkhelper_iocrengineevents_iocrengineevents_event_iocrengineevents_pagecompletedeventhandler_iocrengineevents_sinkhelper_itextextractorevents_itextextractorevents_event_itextextractorevents_pagetextextractedeventhandler_itextextractorevents_sinkhelperdocument_formatdocument_type_supportdocumentexporterdocumentexporterclassdocumentimporterdocumentimporterclassdocumentprocessor83enumidocumentexporteridocumentimporteriimportengineilistimporterimage_rotation_amountimport_page_actionimportengineimportengineclassiocrengineitextextractoriwatermarkspecificationlistimporterlistimporterclasslog_levelmulticastdelegateobjectocr_optimization_modeocrengineocrengineclasssystemtext_encodingtextextractortextextractorclasswatermarkspecificationwatermarkspecificationclass664j1�#���1%#H\-��!�"�#�+##1$F$a3%� %�)�)�*�*�+
+",5,9,J,[
,h
,u,�.�1�1�
5�5�5�5�5	555%5:	5C5Q5W
5d
5q5�5�55

#
	!"$
	
 #(5,
&'04)+.*-1	%/23BnditionalexpressionconstantexpressioncontainsconvertbindercountcounterdatacountersetcountersetinstancecountersetinstancecounterdatasetcountersetinstancetypecountertypecreateinstancebindercreatematchmakercreateruntimevariablescryptographydebuginfoexpressiondebuginfogeneratordefaultexpressiondefaultifemptydeleteindexbinderdeletememberbinderdiagnosticsdistinctdynamicdynamicattributedynamicexpressiondynamicmetaobjectdynamicmetaobjectbinderdynamicobjectecdiffiehellmanecdiffiehellmancngecdiffiehellmancngpublickeyecdiffiehellmankeyderivationfunctionecdiffiehellmanpublickeyecdsaecdsacngeckeyxmlformatelementatelementatordefaultelementinitenumenumerableenumerableexecutorenumerablequeryenumeratoreventargseventbookmarkeventdescriptoreventinfoeventingeventkeywordeventleveleventlogconfigurationeventlogexceptioneventloginformationeventloginvaliddataexceptioneventlogisolationeventloglinkeventlogmodeeventlognotfoundexceptioneventlogpropertyselectoreventlogproviderdisabledexceptioneventlogqueryeventlogreadereventlogreadingexceptioneventlogrecordeventlogsessioneventlogstatuseventlogtypeeventlogwatchereventmetadataeventopcodeeventpropertyeventprovidereventprovidertracelistenereventrecordeventrecordwritteneventargseventschematracelistenereventtaskexceptexceptionexecutionscopeexpandocheckversionexpandoobjectexpandopromoteclassexpandotrydeletevalueexpandotrygetvalueexpandotrysetvalueexpressionexpressionsexpressiontypeexpressionvisitorextensionattributefirstfirstordefaultforallfuncgenericgetcachedrulesgetindexbindergetmatchgetmemberbindergetrulecachegetrulesgotoexpressiongotoexpressionkindgroupbygroupjoinhandleinheritabilityhashseticollectionideserializationcallbackidictionaryidisposableidynamicmetaobjectproviderienumerableienumeratoriequatableigroupingiinvokeongetbinderilistilookupindexexpressioninotifypropertychangedinstancenotfoundexceptioninstrumentationinstrumentationbaseexceptioninstrumentationexceptioninteropservicesintersectinvocationexpressioninvokebinderinvokememberbinderioiorderedenumerableiorderedqueryableiqueryableiquerypCrovideriruntimevariablesiserializableisetistrongboxjoinlabelexpressionlabeltargetlambdaexpressionlastlastordefaultlinqlistinitexpressionlockrecursionpolicylongcountlookuploopexpressionmanagementmanagementbindattributemanagementcommitattributemanagementconfigurationattributemanagementconfigurationtypemanagementcreateattributemanagemententityattributemanagementenumeratorattributemanagementhostingmodelmanagementkeyattributemanagementmemberattributemanagementnameattributemanagementnewinstanceattributemanagementprobeattributemanagementreferenceattributemanagementremoveattributemanagementtaskattributemanifestkindsmanifestsignatureinformationmanifestsignatureinformationcollectionmaxmd5md5cngmemberassignmentmemberbindingmemberbindingtypememberexpressionmemberinitexpressionmemberlistbindingmembermemberbindingmemorymappedfilememorymappedfileaccessmemorymappedfileoptionsmemorymappedfilerightsmemorymappedfilesmemorymappedfilesecuritymemorymappedviewaccessormemorymappedviewstreammergeruntimevariablesmethodcallexpressionmicrosoftminmoverulemulticastdelegatenamedpipeclientstreamnamedpipeserverstreamnativeobjectsecuritynewarrayexpressionnewexpressionobjectobjectmodelobjectsecurityoftypeorderbyorderbydescendingorderedparallelqueryparallelenumerableparallelexecutionmodeparallelmergeoptionsparallelqueryparameterexpressionpathtypeperformancedatapipeaccessrightspipeaccessrulepipeauditrulepipedirectionpipeoptionspipespipesecuritypipestreampipestreamimpersonationworkerpipetransmissionmodeprovidermetadataqueryablequotereaderreaderwriterlockslimreadonlycollectionreadonlycollectionbuilderreflectionreverserulecacheruntimeruntimeopsruntimevariablesexpressionsafebuffersafehandlessafehandlezeroorminusoneisinvalidsafememorymappedfilehandlesafememorymappedviewhandlesafencrypthandlesafencryptkeyhandlesafencryptproviderhandlesafencryptsecrethandlesafepipehandlesecurityselectselectmanysequenceequalserializationsessionauthenticationsetindexbindersetmemberbindersetnotmatchedsha1sha1cngsha256sha256cngsha256cryptoserviceprovidersha384sha384cngsha384Dcryptoserviceprovidersha512sha512cngsha512cryptoserviceprovidersignatureverificationresultsinglesingleordefaultskipskipwhilestandardeventkeywordsstandardeventlevelstandardeventopcodestandardeventtaskstreamstrongboxstrongnamesignatureinformationsumswitchcaseswitchexpressionsymboldocumentinfosystemtaketakewhiletaskextensionstaskstextwritertracelistenerthenbythenbydescendingthreadingtimestampinformationtoarraytodictionarytolisttolookuptracelistenertracelogretentionoptiontruststatustryexpressiontypebinaryexpressionunaryexpressionunaryoperationbinderunescapedxmldiagnosticdataunionunmanagedmemoryaccessorunmanagedmemorystreamunwrapupdaterulesvaluetypewherewin32withcancellationwithdegreeofparallelismwithexecutionmodewithmergeoptionswmiconfigurationattributewriteeventerrorcodex509certificateszip


$
('2?
8I	9R<U?nA�G�J�	P�
R�U�Y�Z�\�	b�	b� be
g'q<x@�S�b�j�r��������
��
����������������*�A�R�^�i�~��������
�������������,�4
E�A�F�Q
�[�m �����������������*�8�I�[�f�n�u��������
�������$�+�C�HP^	gy��
���
�	�
�	�	���
	/B^o{���!�
��)7CR
_j
w
� �$�$�$�	$�$�	%�%'
'"(5+J-\.n
.x/�/�/�/�/�1�2�2�3�3�4�8�9	;	;	;-	;?	;F		=O	@c	Aj	Bu	B�	B�	C�	C�	E�	E�	
E�		E�	E�	E�	F
F
F)
FB
FQ
Gm
G�
G�
	G�
G�
G�
G�
G�
I�
J�

J�
KK
L*L.
N8P<PKPVPfQj
SwS{T�T�	T�T�T�
T�T�U� UV2WKWdW�X�Y�Y�Y�[�[
[/
\H
\_

\l
_�
&_�
_�
`�
`�
`�

`�
`�
`�
```0`@aVbmb�b�b�b�b�b�b	bbbb(b=cRcfcx
c�e�f�f�f�f�g�h�h�h�h
hh1h9iHiXif
is
i�i�i�j�
j�j�j�j�	k�k�l�mm!m:
mDmK	nTn[
nen
n�n�!n�n�o�o�oo$o:oHoPoV
o`
om
ozo�p�p�
p�p�r�r�	s�u�v�	w�xy	y'yBy]yczrzv	{|�|�|�|�|�	|�|�|�
|||&|,|0	|9|G|L|c|i|y	|�|�}�}�}�}�
}�}�}�
}�}}~*~D~I~`~u~{~�	~�~�~�~�~�~�~�~�~
~~~	


,01Z[vx���-5^��
%	2W
_��
	!
/
9?�	+��2x��!�J�p\w{���]c
"n	��
�A	h
 		(�
�t�
#6*e��XCr���'-T
}�
����4;H���N

.	>R�������>]a
q�
j~����l$:�d�&)G��
=
`	k	Q	�
3	Pu
�Sz��
y��	+���$V�����#sw
Ii
|	�gFJY�3:78
<KU�
	A�k%B
Ls�}p=D	@
��)V�Eg
NO��o�
M�
X�@�f�b
mt�q����		�
��b
K�y�
��i
�	'��	7��I���0�^
�d���*Bn
4��h���� c��
�;O
,<Q��
�	M"5
�{el�v�Y_�SW?��T�	�1�.
8
\~�	9j6(`[oP&Rr/mLZCDaEFGHuU	f|z
�	G$���r���f<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Xml.dll�	3�zF�
7�\�$<U��!g?�#�advancedattributecachecodeexportercodegenerationoptionscodeidentifiercodeidentifierscollectionbasecollectionsconfigurationconfigurationelementconfigurationelementcollectionconfigurationsectionconfigurationsectiongroupconfigurationvalidatorbaseconformanceleveldatetimeserializationmodedatetimeserializationsectiondtdprocessingentityhandlingenumeventargsformattinggenericicloneableicollectionidisposableienumerableienumeratorihasxmlnodeimportcontextinferenceoptioninternalixmllineinfoixmlnamespaceresolverixmlschemainfoixmlserializableixmltextparserixpathnavigableixsltcontextfunctionixsltcontextvariablemsmulticastdelegatenamI����<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Configuration.dll�	3�>Z
����ʺ(�F��b��(appsettingssectionattributecallbackvalidatorcallbackvalidatorattributecodeaccesspermissioncodeaccesssecurityattributecollectionscommadelimitedstringcollectioncommadelimitedstringcollectionconvertercomponentmodelconfigurationconfigurationallowdefinitionconfigurationallowexedefinitionconfigurationcollectionattribG���
��:<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Core.dll�	3���2z5�^�
ȝ�	�_�O��	accesscontrolaccessruleactionaddruleaesaescryptoserviceprovideraesmanagedaggregateallanonymouspipeclientstreamanonymouspipeserverstreamanyasenumerableasorderedasparallelasqueryableassequentialasunorderedasymmetricalgorithmattributeauditruleauthenticodesignatureinformationaveragebinaryexpressionbinaryoperationbinderbindbindingrestrictionsblockexpressioncallinfocallsitecallsitebindercallsitehelperscallsiteopscastcatchblockclearmatchclosurecngalgorithmcngalgorithmgroupcngexportpoliciescngkeycngkeyblobformatcngkeycreationoptionscngkeycreationparameterscngkeyhandleopenoptionscngkeyopenoptionscngkeyusagescngpropertycngpropertycollectioncngpropertyoptionscngprovidercnguipolicycnguiprotectionlevelscollectioncollectionscomawareeventinfocompilerservicescomponentmodelconcatcoAHuteconfigurationconverterbaseconfigurationelementconfigurationelementcollectionconfigurationelementcollectiontypeconfigurationelementpropertyconfigurationerrorsexceptionconfigurationexceptionconfigurationfilemapconfigurationlocationconfigurationlocationcollectionconfigurationlockcollectionconfigurationmanagerconfigurationpermissionconfigurationpermissionattributeconfigurationpropertyconfigurationpropertyattributeconfigurationpropertycollectionconfigurationpropertyoptionsconfigurationsavemodeconfigurationsectionconfigurationsectioncollectionconfigurationsectiongroupconfigurationsectiongroupcollectionconfigurationuserlevelconfigurationvalidatorattributeconfigurationvalidatorbaseconnectionstringsettingsconnectionstringsettingscollectionconnectionstringssectioncontextinformationdefaultsectiondefaultvalidatordelegatingconfighostdpapiprotectedconfigurationproviderelementinformationenumeventargsexceptionexeconfigurationfilemapexecontextgenericenumconvertericloneableicollectioniconfigerrorinfoiconfigsystemiconfigurationmanagerhelpericonfigurationmanagerinternalienumerableignoresectioniinternalconfigclienthostiinternalconfigconfigurationfactoryiinternalconfighostiinternalconfigrecordiinternalconfigrootiinternalconfigsettingsfactoryiinternalconfigsysteminfiniteintconverterinfinitetimespanconverterintegervalidatorintegervalidatorattributeinternalinternalconfigeventargsinternalconfigeventhandleriunrestrictedpermissionkeyvalueconfigurationcollectionkeyvalueconfigurationelementlongvalidatorlongvalidatorattributemulticastdelegatenameobjectcollectionbasenamevalueconfigurationcollectionnamevalueconfigurationelementobjectoverridemodepermissionspositivetimespanvalidatorpositivetimespanvalidatorattributepropertyinformationpropertyinformationcollectionpropertyvalueoriginprotectedconfigurationprotectedconfigurationproviderprotectedconfigurationprovidercollectionprotectedconfigurationsectionprotectedprovidersettingsproviderproviderbaseprovidercollectionproviderexceptionprovidersettingsprovidersettingscollectionreadonlycollectionbaseregexstringvalidatorregexstringvalidatorattributersaprotectedconfigurationprovidersectioninformationsecurityspecializedstreamchangecallbackstringcollectionstringvalidatorstringvalidatorattributesubclasstypevalidatorsubclasstypevalidatorattributesystemtimespanminutesconvertertimespanminutesorinfiniteconvertertimespansecondsconvertertimespansecondsorinfiniteconvertertimespanvalidatortimespanvalidatorattributetypeconvertertypenameconvertervalidatorcallbackwhitespacetrimstringconverter�	, F&Z*u2�	4�'=�@�
A�F�I L;MUMiN�"O�Q�R�R�RU Y?YZZn_� c�c�c�e�ee(g<gZgs#g�g�g�g�g�"jj7lIlWmgn{#o�o�o�	o�	q�r�
r�r�
rru 
u-uHueup
y}y�#y�y�y�y�yy'y;zTzdz}z�z�{�{�{�|
||+}<}T }t}�}�}�~�~�"��,B`(�������	�	�5	�I	�f	!��	��	��	��	��	��	��	��	�
�*
�0
�H
"�j
��
"��
��
��

��
��
��
��

&
*8@`	q	2
:]j	1FM
Ri$'Ok|(9=ILNs�gr "BEYZxz
7!	3efh)G
;_</U%6b-W^~\
4?DKQ	#AClupt.Vc+,
0HJ5	o
m>	X[Pd
v
{SyTw
na}JespacehandlingnametablenewlinehandlingobjectreadstateresolversrootedpathvalidatorschemaschemaimporterschemaimporterextensionschemaimporterextensioncollectionschemaimporterextensionelementschemaimporterextensionelementcollectionschemaimporterextensionssectionserializationserializationsectiongroupsoapattributeattributesoapattributeoverridessoapattributessoapcodeexportersoapelementattributesoapenumattributesoapignoreattributesoapincludeattributesoapreflectionimportersoapschemaexportersoapschemaimportersoapschemamembersoaptypeattributesystemsystemexceptionunreferencedobjecteventargsunreferencedobjecteventhandlervalidationeventargsvalidationeventhandlervalidationtypevaluetypewhitespacehandlingwritestatexmlxmlanyattributeattributexmlanyelementattributexmlanyelementattributesxmlarrayattributexmlarrayitemattributexmlarrayitemattributesxmlatomicvaluexmlattributexmlattributeattributexmlattributecollectionxmlattributeeventargsxmlattributeeventhandlerxmlattributeoverridesxmlattributesxmlcaseorderxmlcdatasectionxmlcharacterdataxmlchoiceidentifierattributexmlcodeexporterxmlcommentxmlconvertxmldatatypexmldatetimeserializationmodexmldeclarationxmldeserializationeventsxmldocumentxmldocumentfragmentxmldocumenttypexmlelementxmlelementattributexmlelementattributesxmlelementeventargsxmlelementeventhandlerxmlentityxmlentityreferencexmlenumattributexmlexceptionxmlignoreattributexmlimplementationxmlincludeattributexmlknowndtdsxmllinkednodexmlmappingxmlmappingaccessxmlmembermappingxmlmembersmappingxmlnamednodemapxmlnamespacedeclarationsattributexmlnamespacemanagerxmlnamespacescopexmlnametablexmlnodexmlnodechangedactionxmlnodechangedeventargsxmlnodechangedeventhandlerxmlnodeeventargsxmlnodeeventhandlerxmlnodelistxmlnodeorderxmlnodereaderxmlnodetypexmlnotationxmloutputmethodxmlparsercontextxmlpreloadedresolverxmlprocessinginstructionxmlqualifiednamexmlreaderxmlreadersettingsxmlreflectionimporterxmlreflectionmemberxmlresolverxmlrootattributexmlschemaxmlschemaallxmlschemaannotatedxmlschemaannotationxmlschemaanyxmlschemaanyattributexmlschemKaappinfoxmlschemaattributexmlschemaattributegroupxmlschemaattributegrouprefxmlschemachoicexmlschemacollectionxmlschemacollectionenumeratorxmlschemacompilationsettingsxmlschemacomplexcontentxmlschemacomplexcontentextensionxmlschemacomplexcontentrestrictionxmlschemacomplextypexmlschemacontentxmlschemacontentmodelxmlschemacontentprocessingxmlschemacontenttypexmlschemadatatypexmlschemadatatypevarietyxmlschemaderivationmethodxmlschemadocumentationxmlschemaelementxmlschemaenumerationfacetxmlschemaenumeratorxmlschemaexceptionxmlschemaexporterxmlschemaexternalxmlschemafacetxmlschemaformxmlschemafractiondigitsfacetxmlschemagroupxmlschemagroupbasexmlschemagrouprefxmlschemaidentityconstraintxmlschemaimportxmlschemaimporterxmlschemaincludexmlschemainferencexmlschemainferenceexceptionxmlschemainfoxmlschemakeyxmlschemakeyrefxmlschemalengthfacetxmlschemamaxexclusivefacetxmlschemamaxinclusivefacetxmlschemamaxlengthfacetxmlschemaminexclusivefacetxmlschemamininclusivefacetxmlschemaminlengthfacetxmlschemanotationxmlschemanumericfacetxmlschemaobjectxmlschemaobjectcollectionxmlschemaobjectenumeratorxmlschemaobjecttablexmlschemaparticlexmlschemapatternfacetxmlschemaproviderattributexmlschemaredefinexmlschemasxmlschemasequencexmlschemasetxmlschemasimplecontentxmlschemasimplecontentextensionxmlschemasimplecontentrestrictionxmlschemasimpletypexmlschemasimpletypecontentxmlschemasimpletypelistxmlschemasimpletyperestrictionxmlschemasimpletypeunionxmlschematotaldigitsfacetxmlschematypexmlschemauniquexmlschemausexmlschemavalidationexceptionxmlschemavalidationflagsxmlschemavalidatorxmlschemavalidityxmlschemawhitespacefacetxmlschemaxpathxmlsecureresolverxmlserializationcollectionfixupcallbackxmlserializationfixupcallbackxmlserializationgeneratedcodexmlserializationreadcallbackxmlserializationreaderxmlserializationwritecallbackxmlserializationwriterxmlserializerxmlserializerassemblyattributexmlserializerfactoryxmlserializerimplementationxmlserializernamespacesxmlserializersectionxmlserializerversionattributexmlseveritytypexmlsignificantwhitespLacexmlsortorderxmlspacexmltextxmltextattributexmltextreaderxmltextwriterxmltokenizedtypexmltypeattributexmltypecodexmltypemappingxmlurlresolverxmlvalidatingreaderxmlvaluegetterxmlwhitespacexmlwriterxmlwritersettingsxpathxpathdocumentxpathexceptionxpathexpressionxpathitemxpathnamespacescopexpathnavigatorxpathnodeiteratorxpathnodetypexpathresulttypexslxslcompiledtransformxsltargumentlistxsltcompileexceptionxsltcontextxsltexceptionxsltmessageencounteredeventargsxsltmessageencounteredeventhandlerxsltransformxsltsettings&	 "%7+E0T5b:m
;z<�B�E�E�J�JMQ8
VEXSZW	]`
ajfq
i{j�l�m�o�t�
t�v�v�v�x�yy~#�2�F�Z�\�m�~	������	��	����������!�
�+(�S�r
����������������.�D�V�h�x��������������	��)
�3�6�N�d�{����������������)�>
�K�W�f�v����
��
����������
� �/
�9�L�`�s��	���������������
�
��)�9�J�Y!�z���������������	�	�$	�0	
�=	�H	�S	�b	�r	��	��	��		�	�	�	�	�	
	
 
2
E
Q
f
v
	�
	�
�
�
�
�
+ 
K"
m
�
������,<Uhz���
����

.
?
O
a
|

�
�
�
�
�
�
7N_t������	
$5AWv!�����*
7FRn������'$A]s��
���+HWo{!�!�!�
"�
"�#�#�#�#�#�##
$)	$2%C%H
%U%c%r	%{%�%�%�
%�%�%�%�%�%%
%%;"%]%i%%



	$*156$78;<JK��"�	�	
a"'?W]_
!Y
�	
%c+
->n�	QBr�����"����j�4:��
i����|�#
&,.H)0	R
	fh} Ot	lw	�

{
�	9
N�
�
Z�	�
(�
��

3
=b
�q2@DP
V/F
I�
AMy�
�	�S�����#
Uk����CT[���p���E���
�mx	z����XGL�	���
�
e��
����d�����
�g��v���`
\^s
�����o~��u
��
�����


	$������
�����	���
��
��
�����	�������� �!	%Nthostingpermissionlevelassertasynccompletedeventargsasynccompletedeventhandlerasyncoperationasyncoperationmanagerattachmentattachmentbaseattachmentcollectionattributeattributecollectionattributeproviderattributeauditruleauthenticatedstreamauthenticationauthenticationexceptionauthenticationlevelauthenticationmanagerauthenticationmoduleelementauthenticationmoduleelementcollectionauthenticationmodulessectionauthenticationschemesauthenticationschemeselectorauthorizationautodetectvaluesbackgroundworkerbarrierbarrierpostphaseexceptionbasenumberconverterbegingethostbynamebeginresolvebindableattributebindablesupportbindingdirectionbindinglistbindipendpointbitvector32blockingcollectionbooleanconverterbooleanswitchbrowsableattributebypasselementbypasselementcollectionbypassonlocalvaluesbyteconvertercachecanceleventargscanceleventhandlercapturecapturecollectioncategoryattributechannelbindingchannelbindingkindcharconvertercheckoutexceptioncipheralgorithmtypeclientsettingssectionclosecodeaccesspermissioncodeaccesssecurityattributecodeanalysiscodeargumentreferenceexpressioncodearraycreateexpressioncodearrayindexerexpressioncodeassignstatementcodeattacheventstatementcodeattributeargumentcodeattributeargumentcollectioncodeattributedeclarationcodeattributedeclarationcollectioncodebasereferenceexpressioncodebinaryoperatorexpressioncodebinaryoperatortypecodecastexpressioncodecatchclausecodecatchclausecollectioncodechecksumpragmacodecommentcodecommentstatementcodecommentstatementcollectioncodecompilercodecompileunitcodeconditionstatementcodeconstructorcodedefaultvalueexpressioncodedelegatecreateexpressioncodedelegateinvokeexpressioncodedirectionexpressioncodedirectivecodedirectivecollectioncodedomcodedomprovidercodeentrypointmethodcodeeventreferenceexpressioncodeexpressioncodeexpressioncollectioncodeexpressionstatementcodefieldreferenceexpressioncodegeneratorcodegeneratoroptionscodegotostatementcodeindexerexpressioncodeiterationstatementcodelabeledstatementcodelinepragmacodemembereventcodememberfieldcodemembermethodcodememberpropeOrtycodemethodinvokeexpressioncodemethodreferenceexpressioncodemethodreturnstatementcodenamespacecodenamespacecollectioncodenamespaceimportcodenamespaceimportcollectioncodeobjectcodeobjectcreateexpressioncodeparameterdeclarationexpressioncodeparameterdeclarationexpressioncollectioncodeparsercodeprimitiveexpressioncodepropertyreferenceexpressioncodepropertysetvaluereferenceexpressioncoderegiondirectivecoderegionmodecoderemoveeventstatementcodesnippetcompileunitcodesnippetexpressioncodesnippetstatementcodesnippettypemembercodestatementcodestatementcollectioncodethisreferenceexpressioncodethrowexceptionstatementcodetrycatchfinallystatementcodetypeconstructorcodetypedeclarationcodetypedeclarationcollectioncodetypedelegatecodetypemembercodetypemembercollectioncodetypeofexpressioncodetypeparametercodetypeparametercollectioncodetypereferencecodetypereferencecollectioncodetypereferenceexpressioncodetypereferenceoptionscodevariabledeclarationstatementcodevariablereferenceexpressioncollectioncollectionbasecollectionchangeactioncollectionchangeeventargscollectionchangeeventhandlercollectionconvertercollectionscollectionsutilcommandidcompilercompilererrorcompilererrorcollectioncompilerinfocompilerparameterscompilerresultscomplexbindingpropertiesattributecomponentcomponentchangedeventargscomponentchangedeventhandlercomponentchangingeventargscomponentchangingeventhandlercomponentcollectioncomponentconvertercomponenteditorcomponenteventargscomponenteventhandlercomponentmodelcomponentrenameeventargscomponentrenameeventhandlercomponentresourcemanagercomponentserializationservicecompressioncompressionmodecomtypesconcurrentconcurrentbagconfigurationconfigurationelementconfigurationelementcollectionconfigurationexceptionconfigurationsectionconfigurationsectiongroupconfigurationsettingsconfigxmldocumentconnectionmanagementelementconnectionmanagementelementcollectionconnectionmanagementsectionconsoletracelistenercontainercontainerfilterservicecontentdispositioncontenttypecontextstackcookiecookiecollectioncookiecontainercookieexceptioPncorrelationmanagercountercreationdatacountercreationdatacollectioncountersamplecountersamplecalculatorcredentialcachecryptographycsharpcsharpcodeprovidercultureinfoconvertercustomtypedescriptordatadirdataobjectattributedataobjectfieldattributedataobjectmethodattributedataobjectmethodtypedatareceivedeventargsdatareceivedeventhandlerdatetimeconverterdatetimeoffsetconverterdebugdecimalconverterdecompressionmethodsdefaultbindingpropertyattributedefaulteventattributedefaultparametervalueattributedefaultpropertyattributedefaultproxysectiondefaultserializationproviderattributedefaultsettingvalueattributedefaulttracelistenerdefaultvalueattributedeflatestreamdelimitedlisttracelistenerdeliverynotificationoptionsdescriptionattributedesigndesignerattributedesignercategoryattributedesignercollectiondesignereventargsdesignereventhandlerdesignerloaderdesigneroptioncollectiondesigneroptionservicedesignerserializationvisibilitydesignerserializationvisibilityattributedesignerserializerattributedesignertransactiondesignertransactioncloseeventargsdesignertransactioncloseeventhandlerdesignerverbdesignerverbcollectiondesignonlyattributedesigntimelicensecontextdesigntimelicensecontextserializerdesigntimevisibleattributediagnosticsdiagnosticsconfigurationhandlerdictionarybasedictionarysectionhandlerdisplaynameattributedispositiontypenamesdnsdnsendpointdnspermissiondnspermissionattributedoubleconverterdownloaddatacompletedeventargsdownloaddatacompletedeventhandlerdownloadprogresschangedeventargsdownloadprogresschangedeventhandlerdownloadstringcompletedeventargsdownloadstringcompletedeventhandlerdoworkeventargsdoworkeventhandlerduplicateaddressdetectionstatedvaspecteditorattributeeditorbrowsableattributeeditorbrowsablestateelapsedeventargselapsedeventhandlerencryptionpolicyendgethostbynameendpointendpointpermissionendresolveentrywritteneventargsentrywritteneventhandlerenumenumconverterenumeratorerroreventargserroreventhandlereventargseventdescriptoreventdescriptorcollectioneventhandlerlisteventinstanceeventlogeventlogentryeventlogentryQcollectioneventlogentrytypeeventlogpermissioneventlogpermissionaccesseventlogpermissionattributeeventlogpermissionentryeventlogpermissionentrycollectioneventlogtracelistenereventsourcecreationdataeventtypefilterexceptionexchangealgorithmtypeexcludefromcodecoverageattributeexecutorexecwaitwithcaptureexpandableobjectconverterextendedprotectionextendedprotectionpolicyextendedprotectionpolicyelementextendedprotectionpolicytypeconverterextendedprotectionselectorextenderprovidedpropertyattributeexternalexceptionfailfielddirectionfilefilestyleuriparserfilesystemeventargsfilesystemeventhandlerfilesystemwatcherfileversioninfofilewebrequestfilewebresponseflushformatetcformatexceptionframeworknameftpftpcachepolicyelementftpstatuscodeftpstyleuriparserftpwebrequestftpwebresponsegatewayipaddressinformationgatewayipaddressinformationcollectiongeneratedcodeattributegeneratorsupportgenericgenericidentitygenericuriparsergenericuriparseroptionsgethostbyaddressgethostbynameglobalproxyselectiongopherstyleuriparsergroupgroupcollectionguidconvertergzipstreamhandlecollectorhandledeventargshandledeventhandlerhandshakehashalgorithmtypehashtablehelpcontexttypehelpkeywordattributehelpkeywordtypehttphttpcacheagecontrolhttpcachepolicyelementhttpcontinuedelegatehttplistenerhttplistenerbasicidentityhttplistenercontexthttplistenerelementhttplistenerexceptionhttplistenerprefixcollectionhttplistenerrequesthttplistenerresponsehttprequestcachelevelhttprequestcachepolicyhttprequestheaderhttpresponseheaderhttpstatuscodehttpstyleuriparserhttpversionhttpwebrequesthttpwebrequestelementhttpwebresponsehybriddictionaryiadvisesinkiapplicationsettingsprovideriauthenticationmoduleibindinglistibindinglistviewicanceladdnewicertificatepolicyichangetrackingicloneableicmpv4statisticsicmpv6statisticsicodecompilericodegeneratoricodeparsericollectdataicollectionicomnativedescriptorhandlericomponenticomponentchangeserviceicomponentdiscoveryserviceicomponentinitializericonfigerrorinfoiconfigurationsectionhandlericonfigurationsystemicontainericredentialpolicyicredentiaRlsicredentialsbyhosticustomtypedescriptoridataerrorinfoidataobjectideserializationcallbackidesigneridesignereventserviceidesignerfilteridesignerhostidesignerhosttransactionstateidesignerloaderhostidesignerloaderhost2idesignerloaderserviceidesigneroptionserviceidesignerserializationmanageridesignerserializationprovideridesignerserializationserviceidictionaryidictionaryenumeratoridictionaryserviceidisposableidnelementieditableobjectienumerableienumeratorienumformatetcienumstatdataiequatableieventbindingserviceiextenderlistserviceiextenderprovideriextenderproviderserviceignoresectionhandlerihelpserviceiinheritanceserviceiintellisensebuilderilistilistsourceimageimenucommandserviceimmutableobjectattributeinamecreationserviceindentindentedtextwriterinestedcontainerinestedsiteinheritanceattributeinheritancelevelinitializationeventattributeinotifycollectionchangedinotifypropertychangedinotifypropertychanginginstallertypeattributeinstancecreationeditorinstancedatainstancedatacollectioninstancedatacollectioncollectioninstancedescriptorint16converterint32converterint64converterinternalinternalbufferoverflowexceptioninteropservicesintranetzonecredentialpolicyinvalidasynchronousstateexceptioninvalidcredentialexceptioninvaliddataexceptioninvalidenumargumentexceptioninvalidoperationexceptionioiocontrolcodeiodescriptionattributeiordereddictionaryipaddressipaddresscollectionipaddressinformationipaddressinformationcollectionipendpointipersistcomponentsettingsipglobalpropertiesipglobalstatisticsiphostentryipinterfacepropertiesippacketinformationipprotectionleveliproducerconsumercollectionipstatusipv4interfacepropertiesipv4interfacestatisticsipv6elementipv6interfacepropertiesipv6multicastoptioniraiseitemchangedeventsireferenceserviceiresourceserviceirevertiblechangetrackingiriparsingelementirootdesigneriselectionserviceiserializableiservicecontaineriserviceproviderisetisettingsproviderserviceisiteisupportinitializeisupportinitializenotificationisynchronizeinvokeitreedesigneritypedescriptorcontextitypedescriptorfilterserviceitypediSscoveryserviceitypedlistityperesolutionserviceiunrestrictedpermissioniwebproxyiwebproxyscriptiwebrequestcreatekeycollectionkeyscollectionlanguageoptionsldapstyleuriparserlicenselicensecontextlicenseexceptionlicensemanagerlicenseproviderlicenseproviderattributelicenseusagemodelicfilelicenseproviderlingeroptionlinkedlistlinkedlistnodelinkedresourcelinkedresourcecollectionlistbindableattributelistchangedeventargslistchangedeventhandlerlistchangedtypelistdictionarylistsortdescriptionlistsortdescriptioncollectionlistsortdirectionlocalcertificateselectioncallbacklocalfilesettingsproviderlocalizableattributelookupbindingpropertiesattributemailmailaddressmailaddresscollectionmailmessagemailprioritymailsettingssectiongroupmarshalbyrefobjectmarshalbyvaluecomponentmaskedtextprovidermaskedtextresulthintmatchmatchcollectionmatchevaluatormediamediatypenamesmemberattributesmemberdescriptormemberrelationshipmemberrelationshipservicemenucommandmergablepropertyattributemicrosoftmimemoduleelementmonitoringdescriptionattributemulticastdelegatemulticastipaddressinformationmulticastipaddressinformationcollectionmulticastoptionmultilinestringconverternameobjectcollectionbasenamevaluecollectionnamevaluefilesectionhandlernamevaluesectionhandlernativeobjectsecuritynegotiatestreamnestedcontainernetnetbiosnodetypenetpipestyleuriparsernetsectiongroupnettcpstyleuriparsernetworkaccessnetworkaddresschangedeventhandlernetworkavailabilitychangedeventhandlernetworkavailabilityeventargsnetworkchangenetworkcredentialnetworkinformationnetworkinformationaccessnetworkinformationexceptionnetworkinformationpermissionnetworkinformationpermissionattributenetworkinterfacenetworkinterfacecomponentnetworkinterfacetypenetworkstreamnewsstyleuriparsernosettingsversionupgradeattributenotifycollectionchangedactionnotifycollectionchangedeventargsnotifycollectionchangedeventhandlernotifyfiltersnotifyparentpropertyattributenullableconverterobjectobjectmodelobservablecollectionoidoidcollectionoidenumeratoropenflagsopenreadcompletedeventargsopenreadcompletedeventhandTleropenwritecompletedeventargsopenwritecompletedeventhandleroperationalstatusordereddictionaryoverflowactionparenthesizepropertynameattributeparitypasswordpropertytextattributeperformancecounterperformancecountercategoryperformancecountercategorytypeperformancecounterinstancelifetimeperformancecountermanagerperformancecounterpermissionperformancecounterpermissionaccessperformancecounterpermissionattributeperformancecounterpermissionentryperformancecounterpermissionentrycollectionperformancecounterselementperformancecountertypepermissionsphysicaladdresspingpingcompletedeventargspingcompletedeventhandlerpingexceptionpingoptionspingreplypolicyenforcementportspowermodechangedeventargspowermodechangedeventhandlerpowermodesprefixoriginprincipalprintprocessprocessmoduleprocessmodulecollectionprocesspriorityclassprocessstartinfoprocessthreadprocessthreadcollectionprocesswindowstyleprogresschangedeventargsprogresschangedeventhandlerpropertychangedeventargspropertychangedeventhandlerpropertychangingeventargspropertychangingeventhandlerpropertydescriptorpropertydescriptorcollectionpropertytabattributepropertytabscopeprotectionlevelprotectionscenarioprotocolfamilyprotocoltypeprotocolviolationexceptionprovidepropertyattributeproviderproviderbaseprovidercollectionproxyelementpublickeyqueuereadonlyattributereadonlycollectionreadonlycollectionbasereadonlyobservablecollectionrecommendedasconfigurableattributereferenceconverterrefresheventargsrefresheventhandlerrefreshpropertiesrefreshpropertiesattributeregexregexcompilationinforegexoptionsregexrunnerregexrunnerfactoryregularexpressionsremotecertificatevalidationcallbackrenamedeventargsrenamedeventhandlerrequestcachelevelrequestcachepolicyrequestcachingsectionresolveresolvenameeventargsresolvenameeventhandlerresourcemanagerresourcepermissionbaseresourcepermissionbaseentryresourcesrootdesignerserializerattributeruninstallerattributeruntimerunworkercompletedeventargsrunworkercompletedeventhandlersafehandlessafehandlezeroorminusoneisinvalidsbyteconverterschemesettingelementschemeseUttingelementcollectionsectionsecuritysecurityprotocoltypeselectiontypesselectmodesemaphoresemaphoreaccessrulesemaphoreauditrulesemaphorerightssemaphoresecuritysendcompletedeventhandlersendpacketselementserialdataserialdatareceivedeventargsserialdatareceivedeventhandlerserialerrorserialerrorreceivedeventargsserialerrorreceivedeventhandlerserializationserializationstoreserialpinchangeserialpinchangedeventargsserialpinchangedeventhandlerserialportservicecontainerservicecreatorcallbackservicenamecollectionservicenameelementservicenameelementcollectionservicepointservicepointmanagerservicepointmanagerelementsessionendedeventargssessionendedeventhandlersessionendingeventargssessionendingeventhandlersessionendreasonssessionswitcheventargssessionswitcheventhandlersessionswitchreasonsettingattributesettingchangingeventargssettingchangingeventhandlersettingelementsettingelementcollectionsettingsattributedictionarysettingsbasesettingsbindableattributesettingscontextsettingsdescriptionattributesettingsgroupdescriptionattributesettingsgroupnameattributesettingsloadedeventargssettingsloadedeventhandlersettingsmanageabilitysettingsmanageabilityattributesettingspropertysettingspropertycollectionsettingspropertyisreadonlyexceptionsettingspropertynotfoundexceptionsettingspropertyvaluesettingspropertyvaluecollectionsettingspropertywrongtypeexceptionsettingsprovidersettingsproviderattributesettingsprovidercollectionsettingssavingeventhandlersettingssectionsettingsserializeassettingsserializeasattributesettingvalueelementsingleconvertersingletagsectionhandlersmtpaccesssmtpclientsmtpdeliverymethodsmtpexceptionsmtpfailedrecipientexceptionsmtpfailedrecipientsexceptionsmtpnetworkelementsmtppermissionsmtppermissionattributesmtpsectionsmtpspecifiedpickupdirectoryelementsmtpstatuscodesocketsocketaddresssocketasynceventargssocketasyncoperationsocketelementsocketerrorsocketexceptionsocketflagssocketinformationsocketinformationoptionssocketoptionlevelsocketoptionnamesocketpermissionsocketpermissionattributesocketssocketshutdownsockettypesortVeddictionarysortedlistsortedsetsoundplayersourcefiltersourcelevelssourceswitchspecializedspecialsettingspecialsettingattributesslpolicyerrorssslprotocolssslstreamstackstandardcommandsstandardolemarshalobjectstandardtoolwindowsstandardvaluescollectionstatdatastgmediumstopbitsstopwatchstorelocationstorenamestorepermissionstorepermissionattributestorepermissionflagsstreamstringcollectionstringconverterstringdictionarystringenumeratorsuffixoriginswitchswitchattributeswitchlevelattributesyntaxchecksystemsystemeventssystemexceptionsystemsoundsystemsoundstcpclienttcpconnectioninformationtcplistenertcpstatetcpstatisticstempfilecollectiontexttextwritertextwritertracelistenerthreadexceptioneventargsthreadexceptioneventhandlerthreadingthreadprioritylevelthreadstatethreadwaitreasontimertimerelapsedeventargstimerelapsedeventhandlertimerstimersdescriptionattributetimespanconvertertoolboxitemattributetoolboxitemfilterattributetoolboxitemfiltertypetracetraceeventcachetraceeventtypetracefiltertraceleveltracelistenertracelistenercollectiontraceoptionstracesourcetraceswitchtransferencodingtransmitfileoptionstransportcontexttransporttypetymedtypeconvertertypeconverterattributetypedescriptionprovidertypedescriptionproviderattributetypedescriptionproviderservicetypedescriptortypedescriptorpermissiontypedescriptorpermissionattributetypedescriptorpermissionflagstypelistconverterudpclientudpstatisticsuint16converteruint32converteruint64converterunicastipaddressinformationunicastipaddressinformationcollectionunindentuploaddatacompletedeventargsuploaddatacompletedeventhandleruploadfilecompletedeventargsuploadfilecompletedeventhandleruploadprogresschangedeventargsuploadprogresschangedeventhandleruploadstringcompletedeventargsuploadstringcompletedeventhandleruploadvaluescompletedeventargsuploadvaluescompletedeventhandleruriuribuilderuricomponentsuriformaturiformatexceptionurihostnametypeuriidnscopeurikinduriparseruripartialurisectionuritypeconverteruserpreferencecategoryuserpreferencechangedeventargsuserpreferencechangedeventhandleruserpreWferencechangingeventargsuserpreferencechangingeventhandleruserscopedsettingattributeusersettingsgroupusesystemdefaultvaluesvaluecollectionvaluetypevbcodeproviderversioningviewtechnologyvisualbasicwaitforchangedresultwaithandlewarningexceptionwatcherchangetypeswebwebclientwebexceptionwebexceptionstatuswebheadercollectionwebpermissionwebpermissionattributewebproxywebproxyscriptelementwebrequestwebrequestmethodswebrequestmoduleelementwebrequestmoduleelementcollectionwebrequestmodulessectionwebresponsewebutilitywin32win32exceptionwritewriteifwritelinewritelineifx500distinguishednamex500distinguishednameflagsx509basicconstraintsextensionx509certificatex509certificate2x509certificate2collectionx509certificate2enumeratorx509certificatecollectionx509certificateenumeratorx509certificatesx509chainx509chainelementx509chainelementcollectionx509chainelementenumeratorx509chainpolicyx509chainstatusx509chainstatusflagsx509enhancedkeyusageextensionx509extensionx509extensioncollectionx509extensionenumeratorx509findtypex509includeoptionx509keyusageextensionx509keyusageflagsx509nametypex509revocationflagx509revocationmodex509storex509subjectkeyidentifierextensionx509subjectkeyidentifierhashalgorithmx509verificationflagsxmlxmldocumentxmlwritertracelistener4



.	%H	.Z7o
8|>�
O�
V�c�	h�!q�w�
|�%�6�D�R�j���� 	�����������/
�9�G�[	�d�w��	����������%	:Vk�
��� �"�)�*�+/=%?5@@DNDYIk
Q{
[�`�
`�f�g�
m�
n�x�y	y��-�;�M
�Z�k�~X����������	��	��%�8�P�e����"���������,�E�W�b�v�������������
�&�=
�J�a�h�w�����������	

	!	2	G	]	q		�	�	�	�	�	�	"

$
'3
'F
'c

+m
+�
"/�
,/�

/�
/�
2'2<3O3]5u8�8�9�;�
;�;�;<#???R?e?�?�B�B�B�E�E�E	
I$
J?
JW
 Jw
L�

L�
L�
L�
M�
Q�
STV&	Z/[7
\D\[\g_yc�!d�	f�f�g�iik1lClRqdryr�r�u�x�}�}�	
�
�(
�5�I�g�}����������%��+�?	�H�^�p�{����������������
�
�!�0�<�B�T�h�|���������������0�5�E�Y�x��������%����+�@
�M�g������������������#�8�W(�����!��$������'�?"�a�{���������������
��$�3�Q!�r ��#�� ��#�����7�?�N�f�z�����������
��

)7H	
Q`y�
��
��Y���/!Pe|�	�� ��� �  ' F% k!�!"�$�$�(�(�(�(�(((()6+E+J	,S0b
0o4r5�
5�5�
5�8�9�%99:&;-;<<L<c=s
>�>�?�?�A�
E�
E�F�I�J	LN	N(N7PKQZS^UqU�U�U�W�X�\�]�]]*]>]S]i_z_�`�c�d�i�i�i�i�l l  p5 pA pQ 
p^ pp p 
q� q� r� 
r� r� r� s� u� v!
|!|"!|<!|Q!�a!�}!��!
��!��!��!��!��!��!��!�"	�"�."�="
�J"�g"�z"��"��"��"��"��"�#�#�2#�D#�O#
�Y#�h#�s#�~#��#
��#
��#��#��#��#��#�$�$�'$�;$�@$�K$�P$�c$�{$��$��$��$��$��$��$��$�%�%�0%�G%�]%�s%�%��% ��%��%��%��%��%��%�&�'&�C&!�d&�~&��&��&��&��&
��&��&��&	�'�'�.'�L'
�V'�o'��'��'��'��'��'��'��'��'�(�((�3(�J(�](�t(��(��(��(��(
��(��(
��(��(�)�)�')�,)�>)�\)�n)
�{)��)��)��)
��)��)��)	�*�*�"*
�/*�=*�L*�^*�e*�s*��*��*��*��*��*��*��*
��*�+�+�(+�=+�Q+�h+Z�w+��+��+��+��+!��+�,�, �4,�8,�C,�X,�c,�o,��,��,��,��,��,��,��,��,��,�-�-�+-�=-�V-�a-�z-	��-��-
��-��-��-��-'�.�.�..�F.�Y.�t.��.��.��.��.��.��.��.��.�/
�/!�5/&�[/�w/
��/��/��/��/��/��/%�0�+0�D0�X0
�e0�w0!��0��0 ��0#��0
�1�"1�31�91�D1�X1�[1
�h1
�u1	�~1��1��1��1��1��1�2�2!�?2�E2�b2�t2��2��2"��2��2�3"�%3%�J3!�k3+��3��3��3��3��3��3��3�4
� 4�+4	�44�E4�J4�c4�4
��4��4	��4��4��4
��4��4��4��4
��4�5�(5�@5�[5�s5��5��5��5��5��5�6�6�$6�66�D6�P6�j6��6��6��6��6��6	��6��6��6��6��6�7"�97�K7�[7�n7�7��7��7�7�7�7�7�7#8 838D8V8k8r8�8�8�8�8�8	�899!9<9Z9e9!�9�9�9�9�9
�9
�9
�9
:	
::/:>:O:h:z:
�:�:�:�:
�:
;

;
";
1;
J;
f;

p;�;�;�;�;�;�;�;<'<?<U<n<<�<�<�<�<�<==*=E=Q=j=y=�=!�=�=�=>>4>D>^>#�>!�>�>�>"�>?!?;?U?d?[w?�?�?�?�?
�?
�?�?
�?@8@J@X@o@z@#�@�@�@
�@�@�@
�@�@
AA)AAARAbArA�A�A�A
�A�A
�A	�A�A�A�A�ABB,B;BGB	PBUBeB}B�B�B �B	 �B!�B	!�B
!�B	!�B!�B!C!C!!C"1C"@C#PC#`C#lC#rC#�C#�C#�C#�C#�C#�C#�C$�C	$�C$�C$D$D
$D$+D$/D
$9D$PD$hD$�D	$�D$�D$�D%�D%�D&�D&�D&�D&E&E&1E&KE&`E&eE(tE(�E(�E
)�E
)�E)�E)�E)�E)�E)�E)F)F
)F)"F
)/F)EF)\F )|F)�F)�F)�F!)�F)�F)G	)G
)%G)4G*CG+RG+mG%+�G+�G+�G+�G,�G,H,.H!,OH,mH!,�H,�H!,�H,�H
-�H
-�H	-�H-I-I.I.#I	.,I
.6I
.@I.PI.fI.�I!.�I.�I".�I.J.J.'J.6J	.?J.MJ
.WJ.eJ.pJ1�J
1�J1�J1�J1�J	1�J1�J1�J1�J
1�J1K1K1-K
17K1HK1_K!1�K1�K1�K
1�K1�K1�K1�K1�K	1�K1�K1�K1L1,L1;L1KL2eL2L2�L2�L2�L	2�L2�L2�L2M2M2,M2@M3]M
3jM3�M3�M3�M3�M3�M3�M3�M3�M3N	3N!35N%3ZN3oN3rN3}N33

		!"*6TU\^#�"��? �E&z�$	�
[��� �	�/<	h\ea�

#;	�@15>
u�����&do�
�	4�	 =
G
��
A
bnw	����le��?R	E�WZ��
��Z������K�2p}��#$y�'Ma
�F
H�:
�.gC
j�

;D	}
�
�sv
$Y_u~s����tx��-S
o�O)+���6��K	�
�
*
�
+4����[	�<
F�Fg�
oIQ�{8Y�	��r$8W
`{�	�9]�v-k���%
.	dq
�3I!'
�	(,NO���0��1�C�by ����JV]�!q	79
�lj"�R�U�J��h�S�
�	'?Bcs����
)
9\��
B�R:
m�L�
�	�Ar�c�
���'
@
y���	�*�Q�
J
��q	4
D�v�MK��2�/�P��
��A��	�
�
o�	>0!�
�
�O��L
c�`�
Z��	`��/Y�<GX�����Q�����
i|�~���H
���.�fl
m��������N�
���L)
��	�N"�	B
*|
�����Q�&��z��
���M#@��	�v�
����"(	e�
�I�X��U+S��	��%�
�
�;E���t����
�
�5��N��U+�����LJ
���	k
�i9\�#��x��T27�
�����=�h���	��#	����	-�
�8O	S�	[
u&i13%
�V���4��	�1G
p
w������	�@��	��
���
k�	<����" `rE�	�T6k	�
�	 ,}�
��gu
~
�
�|�n	^����$�76�
�
"���
�,��.]�����[%3�a
��P^��(����0D	�{
f5�	���h
���y��!�����V�
I����
�i>	�
��C�
%�	{b
,|�	�V
�l�
j��
����_�A�	��� /)�]fr�W�
��	���t
�'
�	X
z~}Y�	��x��Dgz
��
�H�
�
��
	�
Mp/��ad
�	����P
5����^
�=	�
�B���
(�����	�:�
�w��3��,F!
)_+�	�-
��f�	�
�p��	�	7
w�T	�t
	_�Z	�	����
C���W��e��b
&�
�
�
�	�	KG�	��
�	m

n��qxc��8���(m��
n
�
��
������
�X�
2��.��R
���� ��	�;��-0�>\�:�d�P�j3=?	H�s	
�
��*�	����	�#�
	����1 
	2	0
)�)���
��2<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Data.dll�	3�ɯv��eʒO�o�'Y
���acceptrejectruleadvancedattributecataloglocationcodeaccesspermissioncodeaccesssecurityattributecollectionbasecollectionscommandbehaviorcommandtypecommoncomponentcomponentmodelconfigurationconflictoptionconnectionstateconstraintconstraintcollectionconstraintexceptiondatadataaccesskinddataadapterdatacolumndatacolumnchangeeventargsdatacolumnchangeeventhandlerdatacolumncollectiondatacolumnmappingdatacolumnmappingcollectiondataexceptiondatarelationdatarelationcollectiondatarowdatarowactiondatarowbuilderdatarowchangee^��Z���><SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.dll�	3�R�ѲX~��$Uj y*�Dd�.OaccesscontrolaccessruleactivedesignereventargsactivedesignereventhandleraddingneweventargsaddingneweventhandleraddressfamilyadvfalternateviewalternateviewcollectionambientvalueattributeapplicationapplicationscopedsettingattributeapplicationsettingsbaseapplicationsettingsgroupappsettingsreaderargumentexceptionarrayconverterasnencodeddataasnencodeddatacollectionasnencodeddataenumeratoraspnethostingpermissionaspnethostingpermissionattributeaspneM_ventargsdatarowchangeeventhandlerdatarowcollectiondatarowstatedatarowversiondatarowviewdatasetdatasetdatetimedatasetschemaimporterextensiondatasysdescriptionattributedatatabledatatablecleareventargsdatatablecleareventhandlerdatatablecollectiondatatablemappingdatatablemappingcollectiondatatablenewroweventargsdatatablenewroweventhandlerdatatablereaderdataviewdataviewmanagerdataviewrowstatedataviewsettingdataviewsettingcollectiondbcommanddbcommandbuilderdbconcurrencyexceptiondbconnectiondbconnectionstringbuilderdbdataadapterdbdatapermissiondbdatapermissionattributedbdatareaderdbdatarecorddbdatasourceenumeratordbenumeratordbexceptiondbmetadatacollectionnamesdbmetadatacolumnnamesdbparameterdbparametercollectiondbproviderconfigurationhandlerdbproviderfactoriesdbproviderfactoriesconfigurationhandlerdbproviderfactorydbproviderspecifictypepropertyattributedbtransactiondbtypedeletedrowinaccessibleexceptiondescriptionattributeduplicatenameexceptionenumevaluateexceptioneventargsexternalexceptionfillerroreventargsfillerroreventhandlerforeignkeyconstraintformatgroupbybehaviorhashtableibinaryserializeibindinglistibindinglistviewicloneableicollectionicolumnmappingicolumnmappingcollectionicomparableiconfigurationsectionhandlericustomtypedescriptoridataadapteridataerrorinfoidataparameteridataparametercollectionidatareaderidatarecordidbcommandidbconnectionidbdataadapteridbdataparameteridbtransactionidentifiercaseidictionaryidisposableieditableobjectienumerableienumeratorilistilistsourceinotifypropertychangedinrowchangingeventexceptioninternaldatacollectionbaseinteropservicesinullableinvalidconstraintexceptioninvalidexpressionexceptioninvalidudtexceptionioiserializableiserviceproviderisolationlevelisqldebugisupportinitializeisupportinitializenotificationitablemappingitablemappingcollectionitypedlistiunrestrictedpermissionixmlserializablekeyrestrictionbehaviorloadoptionmappingtypemarshalbyrefobjectmarshalbyvaluecomponentmergefailedeventargsmergefailedeventhandlermicrosoftmissingmappingactionmissingprimarykeyexceptionmissingschemaac`tionmulticastdelegatenonullallowedexceptionobjectodbcodbccommandodbccommandbuilderodbcconnectionodbcconnectionstringbuilderodbcdataadapterodbcdatareaderodbcerrorodbcerrorcollectionodbcexceptionodbcfactoryodbcinfomessageeventargsodbcinfomessageeventhandlerodbcmetadatacollectionnamesodbcmetadatacolumnnamesodbcparameterodbcparametercollectionodbcpermissionodbcpermissionattributeodbcrowupdatedeventargsodbcrowupdatedeventhandlerodbcrowupdatingeventargsodbcrowupdatingeventhandlerodbctransactionodbctypeoledboledbcommandoledbcommandbuilderoledbconnectionoledbconnectionstringbuilderoledbdataadapteroledbdatareaderoledbenumeratoroledberroroledberrorcollectionoledbexceptionoledbfactoryoledbinfomessageeventargsoledbinfomessageeventhandleroledbliteraloledbmetadatacollectionnamesoledbmetadatacolumnnamesoledbparameteroledbparametercollectionoledbpermissionoledbpermissionattributeoledbrowupdatedeventargsoledbrowupdatedeventhandleroledbrowupdatingeventargsoledbrowupdatingeventhandleroledbschemaguidoledbtransactionoledbtypeonchangeeventhandleroperationabortedexceptionparameterdirectionpermissionspropertyattributespropertycollectionproviderbasereadonlyexceptionrownotintableexceptionrowupdatedeventargsrowupdatingeventargsruleruntimeschemaimporterextensionschemaserializationmodeschematablecolumnschematableoptionalcolumnschematypesecurityserializationserializationformatserversortordersqlsqlalreadyfilledexceptionsqlbinarysqlbooleansqlbulkcopysqlbulkcopycolumnmappingsqlbulkcopycolumnmappingcollectionsqlbulkcopyoptionssqlbytesqlbytessqlcharssqlclientsqlclientfactorysqlclientmetadatacollectionnamessqlclientpermissionsqlclientpermissionattributesqlcommandsqlcommandbuildersqlcompareoptionssqlconnectionsqlconnectionstringbuildersqlcontextsqldataadaptersqldatareadersqldatarecordsqldatasourceenumeratorsqldatetimesqldbtypesqldebuggingsqldecimalsqldependencysqldoublesqlerrorsqlerrorcollectionsqlexceptionsqlfacetattributesqlfilestreamsqlfunctionattributesqlguidsqlinfomessageeventargssqlinfomessageeventhandlersqlint16sqlint32sqlint64sqlmetadatasqalmethodattributesqlmoneysqlnotfilledexceptionsqlnotificationeventargssqlnotificationinfosqlnotificationrequestsqlnotificationsourcesqlnotificationtypesqlnullvalueexceptionsqlparametersqlparametercollectionsqlpipesqlprocedureattributesqlrowscopiedeventargssqlrowscopiedeventhandlersqlrowupdatedeventargssqlrowupdatedeventhandlersqlrowupdatingeventargssqlrowupdatingeventhandlersqlserversqlsinglesqlstringsqltransactionsqltriggerattributesqltriggercontextsqltruncateexceptionsqltypeexceptionsqltypessqltypesschemaimporterextensionhelpersqluserdefinedaggregateattributesqluserdefinedtypeattributesqlxmlstatechangeeventargsstatechangeeventhandlerstatementcompletedeventargsstatementcompletedeventhandlerstatementtypestoragestatestreamstrongtypingexceptionsupportedjoinoperatorssyntaxerrorexceptionsystemsystemdataaccesskindsystemexceptiontriggeractiontypebigintschemaimporterextensiontypebinaryschemaimporterextensiontypebitschemaimporterextensiontypecharschemaimporterextensiontypedatetimeschemaimporterextensiontypeddatasetgeneratortypeddatasetgeneratorexceptiontypedecimalschemaimporterextensiontypefloatschemaimporterextensiontypeintschemaimporterextensiontypemoneyschemaimporterextensiontypencharschemaimporterextensiontypentextschemaimporterextensiontypenumericschemaimporterextensiontypenvarcharschemaimporterextensiontyperealschemaimporterextensiontypesmalldatetimeschemaimporterextensiontypesmallintschemaimporterextensiontypesmallmoneyschemaimporterextensiontypetextschemaimporterextensiontypetinyintschemaimporterextensiontypeuniqueidentifierschemaimporterextensiontypevarbinaryschemaimporterextensiontypevarcharschemaimporterextensiontypevarimageschemaimporterextensionuniqueconstraintupdaterowsourceupdatestatusvaluetypeversionnotfoundexceptionxmlxmldatadocumentxmldocumentxmlreadmodexmlwritemodeh	$!)0
/D9_@m
BxL�P�[�	]�]�
a�a�b�
f�g�g

iss'
x1	}J
�f�z����b
��������
�����
�&�7�C�Q�\�c�r����	����������"�:�U�d�l�{������	���������
��$�=�I�U�k�w�������������'�(�9'�`
�m�s����������	��������&�,�;	�D�T�`�p
�z�����������'2=
G
Tbr���
�
�
�
����

$3	<Vp��
���	���
�
	
	.	!>	#T	
$^	$i	%{	)�	*�	*�		,�	,�	,�	-
.
0.
04
08
0C
0U
0c
1~
3�
5�
	6�
6�

8�
8�
8�
9::4
:A:X;f;};�;�;�;�<�<�=�=	==+=G=W=f=u
==�=�>�>�>�>�?

?"
A0
BH
BW
Bo
B�
B�
B�
B�
B�
B�
	B�
BB,B>CID[DmDyD�D�D�D�D�D�D�DDD*
D4D<
EIE\Eb	FkFnF�	F�
G�G�G�"G�H�H�IJ	JK! KAOTOp
OzO�O�
O�O�
O�O�
O�
P�PP	P P,
P6
QC	QLQTQfQrQ�
Q�Q�Q�R�R�R�S�T�T�TTT.TFTYUoV�V�V�V�V�V�V�WX[/[H[_[y	[�	[�	[�[�[�[�[�[�[�%[ \7\R\X\l\�\�\�
\�\�\�\�\\\ \4\C
\P!\q!\�\�_�#`�bb%"bG cgc� c� e� e�"e#f*fI(fq#f�%g�g�"g�+g%$gI"gk#g�g�g�g�	g�g�g�g�g�ggg
	1K MOR��3GI$Z
5UXZ\	u�
���#I	ft
��r
��

!&'@�	�#.>���%
7V	
)
,=Cck�

8
j�
	
4S����a0
b�
�`$
	%FP��
�L`az��	�67(^i
�	f	?my
�=+3AG�����9~������59	[
���
�@J*}�� ��	DBE
qs	��"-�
���0Q:;N�<�2�
/	6�^��n�	�H�Tl|�
�g�����we�D�-x	p

�EL�/ UdW{
��FOY���A
v�]_��1ho����	+�
� ;�:��


��	,g�����	���8J��	e�
�
	�������c��$b������
�!)�C
��
_�
d�	<W"24MPX
*B?.&'
(>[HKNTV]RQ\SYd_search_scopediscussion_watch_attachmentsdiscussion_watch_scopedisposition_actiondisposition_statedisposition_trigger_actiondisposition_typedocument_conflict_actiondocument_signature_propertydrive_typeentry_filterentry_flagentry_namespace_flagentry_typeentryace_scopeenumexport_versionfeature_rightfield_formatfield_typefile_typefill_stylefolder_conflict_actionform_logic_rule_relationshipfuzzy_typehit_typeienumerableilfaccesscontrolentryilfaccessrightsilfactivityilfactivitystreamilfaltelectfileilfaltelectfilereadstreamilfaltelectfilewritestreamilfaltretentioneventilfannotationilfannotationlistingilfannualcycledefilfapplicationilfassigntagactivityilfassigntemplateactivityilfattachmentannotationilfattachmentreadstreamilfattachmentwritestreamilfauditeventilfauditflagsilfauditlogilfauditlogexporterilfauditreasonilfbitmapannotationilfbriefcaseexporterilfbriefcaseimporterilfbriefcaserequestilfbriefcasesignatureilfbriefcasetemplateilfbriefcasetemplatefieldilfcalendardateilfcalloutannotationilfcatalogilfcertificateinfoilfcertificatestoreilfclassificationlevelilfclienttimestampauthorityilfcollectionilfcommentilfcommentattachmentilfcommenttemplateilfcommonstampilfconnectionilfcontexthitilfcontexthitlistingilfcopyentryactivityilfcopypageactivityilfcreateannotationactivityilfcreatedocumentsignatureactivityilfcreateentryactivityilfcreatepageactivityilfcustomauditeventilfcustomauditreasonilfcustomtokencallbackilfcutoffcriterionilfcycleilfdatabaseilfdatabaseemailnotificationtypeilfdatabaseoptionsilfdeleteannotationactivityilfdeletedocumentsignatureactivityilfdeleteentryactivityilfdeletepageactivityilfdeletetemplatefieldactivityilfdenieddomainaccountcollectionilfdeniedldapaccountcollectionilfdirectoryentryilfdirectorysearcherilfdiscussionilfdiscussionalerttemplateilfdiscussionwatchilfdocumentilfdocumentpagesilfdocumentpagestatsilfdocumentsignatureilfdocumentsignaturecollectionilfdocumentversionilfdocumentversiondiffstatsilfdomainaccountilfeffectivefeaturerightsilfeffectiverightsilfelectfileilfelectfilereadstreamilfelectfilewriteestreamilfemailserverprofileilfentryilfentrylinkilfentrylistingilfentrylistingparamsilferrorinfoilferrorobjectilfeventilffielddatailffieldrightsilffileinfoilffolderilffolderstatsilfformlogicruleilffreezeilffreezedatailfgranteddomainaccountcollectionilfgrantedldapaccountcollectionilfgroupilfgroupnamecollectionilfgroupwatermarksilfhastemplateilfimageilfimagereadstreamilfimagewritestreamilfindexablefiletypeilfindexconfigurationilfindexflagilfindexstatusilflaserfichenameduserilflaserfichenamedusercollectionilfldapaccountilfldapserverprofileilflineannotationilflinkedannotationilflinkeddomainaccountcollectionilflinkeddomainaccountobjectcollectionilflinktypeilflistingilflistingparamsilflocaleilflocaleinfoilflocationilflockilflockableilflogfilereadstreamilfmergedtemplatefieldilfmigratedocactivityilfmodifyannotationactivityilfmodifydatabaseoptionactivityilfmodifytemplatefieldactivityilfmoveannotationactivityilfmoveentryactivityilfmovepageactivityilfnameddeviceilfnameddevicecollectionilfnameduserilfnamedusercollectionilfnotificationilfnotificationmanagerilfobjectilfobjectlistingilfpageilfpagepartloadparamsilfpageversiondiffstatsilfplockdatailfplocklistingilfpointilfprogressilfqueryilfquerybindvariablesilfqueryblobilfqueryclobilfqueryclobreadstreamilfquerycolumnilfquerycontexthitlistingilfqueryexilfqueryexternaldbilfqueryresultilfqueryrowilfreadstreamilfrecordfolderpropertiesilfrecordmgrpropertiesilfrecordpropertiesilfrecordseriespropertiesilfrectangleilfrectangleannotationilfrecyclebinilfrecyclebinentryilfrecyclebinlistingilfrecyclebintrusteecollectionilfreleaseentryactivityilfrestoreentryactivityilfretentionscheduleilfrightsilfsearchilfsearchhitilfsearchlistingparamsilfsearchplanilfsearchresultlistingilfsearchstatsilfsecurabletrusteeilfsecureddomainaccountcollectionilfsecuredldapaccountcollectionilfserverilfserveradmincollectionilfserveremailnotificationtypeilfservertimestampauthorityilfsessionvariableilfsessionvariableconfigilfsettemplatefieldvalueactivityilfshortcutilfsigningkeypairilfsigningkeypairfactoryilfsinglelistfingparamsilfsqldatabaseilfstampannotationilfstickynoteilfstickynoterevisionilfstopwordconfigurationilftagilftagaccesscontrolentryilftagdatailftagrightsilftagwatermarklistingilftaskilftemplateilftemplatedefinitionilftemplatefieldilftemplatefielddefinitionilftemplaterightsilftextilftextboxannotationilftextreadstreamilftextwritestreamilfthumbnaililfthumbnailreadstreamilfthumbnailwritestreamilftimespanilftimestampauthorityilftokenobjectilftokensubstitutioncontextilftokensubstitutionengineilftopicilftransferilftrusteeilftrusteeattributesilfunassigntagactivityilfunsettemplatefieldvalueactivityilfuserilfuserareailfuserareaentrylistingilfvectorannotationilfversioncontrolinfoilfversiondatailfversiongroupilfversionhistoryilfversioningactivityilfvolumeilfvolumechecksumreportilfvolumedefinitionilfvolumerightsilfvolumestatsilfweeklycycledefilfwordilfwordfoundilfwordlocationsilfwordstreamilfwritealtedocactivityilfwriteedocactivityilfwritepageactivityilfwritestreamilfx509certificateindex_statusindex_typeldap_authentication_typeldap_schema_typeldap_search_statuslf_named_user_statuslfaccesscontrolentrylfaccesscontrolentryclasslfaccessrightslfaccessrightsclasslfactivitystreamlfactivitystreamclasslfaltelectfilelfaltelectfileclasslfaltelectfilereadstreamlfaltelectfilereadstreamclasslfaltelectfilewritestreamlfaltelectfilewritestreamclasslfaltretentioneventlfaltretentioneventclasslfannotationlistinglfannotationlistingclasslfannualcycledeflfannualcycledefclasslfapplicationlfapplicationclasslfassigntagactivitylfassigntagactivityclasslfassigntemplateactivitylfassigntemplateactivityclasslfattachmentannotationlfattachmentannotationclasslfattachmentreadstreamlfattachmentreadstreamclasslfattachmentwritestreamlfattachmentwritestreamclasslfauditeventlfauditeventclasslfauditflagslfauditflagsclasslfauditloglfauditlogclasslfauditlogexporterlfauditlogexporterclasslfauditreasonlfauditreasonclasslfbitmapannotationlfbitmapannotationclasslfbriefcaseexporterlfbriefcaseexporterclasslfbriefcaseimporterlfbriefcaseimporterclasslfbriefcaserequestlfbriefcagserequestclasslfbriefcasesignaturelfbriefcasesignatureclasslfbriefcasesignatureelementlfbriefcasetemplatelfbriefcasetemplateclasslfbriefcasetemplatefieldlfbriefcasetemplatefieldclasslfcalendardatelfcalendardateclasslfcalloutannotationlfcalloutannotationclasslfcataloglfcatalogclasslfcatalogconnstatuslfcertificateinfolfcertificateinfoclasslfcertificatestorelfcertificatestoreclasslfclassificationlevellfclassificationlevelclasslfclienttimestampauthoritylfclienttimestampauthorityclasslfcommentlfcommentattachmentlfcommentattachmentclasslfcommentattachmentcollectionlfcommentattachmentcollectionclasslfcommentclasslfcommenttemplatelfcommenttemplateclasslfcommonstamplfcommonstampclasslfconnectionlfconnectionclasslfcontexthitlfcontexthitclasslfcontexthitlistinglfcontexthitlistingclasslfcopyentryactivitylfcopyentryactivityclasslfcopypageactivitylfcopypageactivityclasslfcreateannotationactivitylfcreateannotationactivityclasslfcreatedocumentsignatureactivitylfcreatedocumentsignatureactivityclasslfcreateentryactivitylfcreateentryactivityclasslfcreatepageactivitylfcreatepageactivityclasslfcustomauditeventlfcustomauditeventclasslfcustomauditreasonlfcustomauditreasonclasslfcutoffcriterionlfcutoffcriterionclasslfcyclelfcycleclasslfdatabaselfdatabaseclasslfdatabaseemailnotificationtypelfdatabaseemailnotificationtypeclasslfdatabaseoptionslfdatabaseoptionsclasslfdayofweeklfdeleteannotationactivitylfdeleteannotationactivityclasslfdeletedocumentsignatureactivitylfdeletedocumentsignatureactivityclasslfdeleteentryactivitylfdeleteentryactivityclasslfdeletepageactivitylfdeletepageactivityclasslfdeletetemplatefieldactivitylfdeletetemplatefieldactivityclasslfdenieddomainaccountcollectionlfdenieddomainaccountcollectionclasslfdeniedldapaccountcollectionlfdeniedldapaccountcollectionclasslfdirectoryentrylfdirectoryentryclasslfdirectorysearcherlfdirectorysearcherclasslfdiscussionlfdiscussionalerttemplatelfdiscussionalerttemplateclasslfdiscussionclasslfdiscussionrightslfdiscussionrightsclasslfdiscussionwatchlfdiscussionwatchclasslfdiscussionwatchhcollectionlfdiscussionwatchcollectionclasslfdocumentlfdocumentclasslfdocumentpageslfdocumentpagesclasslfdocumentpagestatslfdocumentpagestatsclasslfdocumentsignaturelfdocumentsignatureclasslfdocumentsignaturecollectionlfdocumentsignaturecollectionclasslfdocumentversionlfdocumentversionclasslfdocumentversiondiffstatslfdocumentversiondiffstatsclasslfdomainaccountlfdomainaccountclasslfeffectivefeaturerightslfeffectivefeaturerightsclasslfeffectiverightslfeffectiverightsclasslfelectfilelfelectfileclasslfelectfilereadstreamlfelectfilereadstreamclasslfelectfilewritestreamlfelectfilewritestreamclasslfemailserverprofilelfemailserverprofileclasslfentrylinklfentrylinkclasslfentrylistinglfentrylistingclasslfentrylistingparamslfentrylistingparamsclasslferrorinfolferrorinfoclasslferrorobjectlferrorobjectclasslfeventlfeventclasslfeventdatelffielddatalffielddataclasslffieldrightslffieldrightsclasslffileinfolffileinfoclasslffiletypelffolderlffolderclasslffolderstatslffolderstatsclasslfformlogicquerylfformlogicrulelfformlogicruleclasslffreezelffreezeclasslffreezedatalffreezedataclasslfgranteddomainaccountcollectionlfgranteddomainaccountcollectionclasslfgrantedldapaccountcollectionlfgrantedldapaccountcollectionclasslfgrouplfgroupclasslfgroupnamecollectionlfgroupnamecollectionclasslfgroupwatermarkslfgroupwatermarksclasslfimagelfimageclasslfimagereadstreamlfimagereadstreamclasslfimagewritestreamlfimagewritestreamclasslfindexablefiletypelfindexablefiletypeclasslfindexconfigurationlfindexconfigurationclasslfindexflaglfindexflagclasslfindexqueuelengthlfindexstatuslfindexstatusclasslflaserfichenameduserlflaserfichenameduserclasslflaserfichenamedusercollectionlflaserfichenamedusercollectionclasslfldapaccountlfldapaccountclasslfldapserverprofilelfldapserverprofileclasslflineannotationlflineannotationclasslflinkedannotationlflinkedannotationclasslflinkeddomainaccountcollectionlflinkeddomainaccountcollectionclasslflinkeddomainaccountobjectcollectionlflinkeddomainaccountobjectcollectionclasslflinktypelflinktypeclasslflocalelflocaleclasslflocialeinfolflocaleinfoclasslflocationlflocationclasslflocklflockclasslflogfilereadstreamlflogfilereadstreamclasslfmemorycertificatestorelfmemorycertificatestoreclasslfmergedtemplatefieldlfmergedtemplatefieldclasslfmigratedocactivitylfmigratedocactivityclasslfmodifyannotationactivitylfmodifyannotationactivityclasslfmodifydatabaseoptionactivitylfmodifydatabaseoptionactivityclasslfmodifytemplatefieldactivitylfmodifytemplatefieldactivityclasslfmonthlfmoveannotationactivitylfmoveannotationactivityclasslfmoveentryactivitylfmoveentryactivityclasslfmovepageactivitylfmovepageactivityclasslfnameddevicelfnameddeviceclasslfnameddevicecollectionlfnameddevicecollectionclasslfnameduserlfnameduserclasslfnamedusercollectionlfnamedusercollectionclasslfnotificationlfnotificationclasslfnotificationmanagerlfnotificationmanagerclasslfpagelfpageclasslfpagepartloadparamslfpagepartloadparamsclasslfpageversiondiffstatslfpageversiondiffstatsclasslfplockdatalfplockdataclasslfplocklistinglfplocklistingclasslfpointlfpointclasslfpointstructlfprogresslfprogressclasslfquerylfquerybindvariableslfquerybindvariablesclasslfquerybloblfqueryblobclasslfqueryclasslfquerycloblfqueryclobclasslfqueryclobreadstreamlfqueryclobreadstreamclasslfquerycolumnlfquerycolumnclasslfquerycontexthitlistinglfquerycontexthitlistingclasslfqueryexlfqueryexclasslfqueryexternaldblfqueryexternaldbclasslfqueryresultlfqueryresultclasslfqueryrowlfqueryrowclasslfrecordfolderpropertieslfrecordfolderpropertiesclasslfrecordmgrpropertieslfrecordmgrpropertiesclasslfrecordpropertieslfrecordpropertiesclasslfrecordseriespropertieslfrecordseriespropertiesclasslfrectanglelfrectangleannotationlfrectangleannotationclasslfrectangleclasslfrectstructlfrecyclebinlfrecyclebinclasslfrecyclebinentrylfrecyclebinentryclasslfrecyclebinlistinglfrecyclebinlistingclasslfrecyclebintrusteecollectionlfrecyclebintrusteecollectionclasslfreleaseentryactivitylfreleaseentryactivityclasslfrestoreentryactivitylfrestoreentryactivityclasslfretentionschedulelfretentionscheduleclasslfsearchlfsearchclasslfsearchhitlfseajrchhitclasslfsearchlistingparamslfsearchlistingparamsclasslfsearchplanlfsearchplanclasslfsearchresultlistinglfsearchresultlistingclasslfsearchstatslfsearchstatsclasslfsecureddomainaccountcollectionlfsecureddomainaccountcollectionclasslfsecuredldapaccountcollectionlfsecuredldapaccountcollectionclasslfserverlfserveradmincollectionlfserveradmincollectionclasslfserverclasslfserveremailnotificationtypelfserveremailnotificationtypeclasslfservertimestampauthoritylfservertimestampauthorityclasslfsessionvariablelfsessionvariableclasslfsessionvariableconfiglfsessionvariableconfigclasslfsettemplatefieldvalueactivitylfsettemplatefieldvalueactivityclasslfshortcutlfshortcutclasslfsigningkeypairlfsigningkeypairclasslfsigningkeypairfactorylfsigningkeypairfactoryclasslfsingleentrylistinglfsingleentrylistingclasslfsinglelistingparamslfsinglelistingparamsclasslfso83liblfsqldatabaselfsqldatabaseclasslfstampannotationlfstampannotationclasslfstickynotelfstickynoteclasslfstickynoterevisionlfstickynoterevisionclasslfstopwordconfigurationlfstopwordconfigurationclasslftaglftagaccesscontrolentrylftagaccesscontrolentryclasslftagclasslftagdatalftagdataclasslftagrightslftagrightsclasslftagwatermarklistinglftagwatermarklistingclasslftasklftaskclasslftemplatelftemplateclasslftemplatedefinitionlftemplatedefinitionclasslftemplatefieldlftemplatefieldclasslftemplatefielddefinitionlftemplatefielddefinitionclasslftemplaterightslftemplaterightsclasslftextlftextboxannotationlftextboxannotationclasslftextclasslftextreadstreamlftextreadstreamclasslftextwritestreamlftextwritestreamclasslfthumbnaillfthumbnailclasslfthumbnailreadstreamlfthumbnailreadstreamclasslfthumbnailwritestreamlfthumbnailwritestreamclasslftimespanlftimespanclasslftokenobjectlftokenobjectclasslftokensubstitutioncontextlftokensubstitutioncontextclasslftokensubstitutionenginelftokensubstitutionengineclasslftopiclftopicclasslftopicrightslftopicrightsclasslftransferlftransferclasslftransferdatelftrusteeattributeslftrusteeattributesclasslfunassigntagactivitylfunassigntagactivityclasslfunsekttemplatefieldvalueactivitylfunsettemplatefieldvalueactivityclasslfuserlfuserarealfuserareaclasslfuserareaentrylistinglfuserareaentrylistingclasslfuserclasslfvectorannotationlfvectorannotationclasslfversioncontrolinfolfversioncontrolinfoclasslfversiondatalfversiondataclasslfversiongrouplfversiongroupclasslfversionhistorylfversionhistoryclasslfversioningactivitylfversioningactivityclasslfvolumelfvolumechecksumreporterrorlfvolumeclasslfvolumedefinitionlfvolumedefinitionclasslfvolumerightslfvolumerightsclasslfvolumestatslfvolumestatsclasslfweeklycycledeflfweeklycycledefclasslfwordlfwordclasslfwordfoundlfwordfoundclasslfwordlocationslfwordlocationsclasslfwordstreamlfwordstreamclasslfwritealtedocactivitylfwritealtedocactivityclasslfwriteedocactivitylfwriteedocactivityclasslfwritepageactivitylfwritepageactivityclasslfx509certificatelfx509certificateclasslicense_regimelicense_typeline_endingline_stylelisting_typelocale_formatlock_lifetime_scopelock_typemerge_conflict_actionnamed_user_statusnotification_flagnotification_subscriptionobjectpage_partpassword_typeplock_columnprivilegequery_bindvar_typequery_data_typequery_statusrecycle_bin_columnrecycle_bin_typerestore_page_methodretention_instructionreview_interval_unitrotation_amountsearch_statusseek_originserver_email_notification_typesession_var_typesessionvar_typesignature_verification_flagsignature_verification_statussort_directionsubscription_typesystemsystem_propertytag_columntag_feature_righttemplate_field_propertythumbnail_compressiontoken_formattoken_sourcetrustee_typevalue_typevaluetypevolume_listing_typevolume_propertyvolume_rollover_schedulex222d2�2�2�2,2^2�2�2�2&2X2�2�2�2  2!R2"�2#�2#�2$2$L2$~2%�%�
5�<�Q�U�XZo(t<	�E�`�y��
������
����
�� ��	�	�!�5�J�`�|���l����������
(
2F
P^bp
}�
�	�
��"�
&�&�'�'
,3$455D;]IwI�
K�N�	N�W�_�d�l	l&	l>	
nK	
qX	}c		�v	��	��	��	��	��	��	��	�
�#
	�7

�A
�S
�f
�|
��

��

��
��
��
��

	��

��
��$�7�R"�t��	������������� �!�3�N"�p������ �����
�

�)
C
U
`
p
�
�
�
�
�

�
*@Wlt������ �"�#�	$�''	+
+(!.I/h2p3�3�4�4�7�7�8�8�>CC, DLDZEnFF� F�&H�H�
I�I�	I
NNN%N0NDOZQoR�S�S�U�V�VZZ-Z9ZOZ^\t	]}d�e�e�f�g�g�h�j�m�nno#o9oGo`
ojo|o�o�
q�r�r�t�t�t	t
u,u>wRwpw�w�w�	z�	{�|�|�
|�|	||*!|K|j	s��������� ���*�B�X�f�x
����������
���������#�3�M�^�e�y�����������������8�@�K
�U�i�"��m������������� �5	�>�U�h�w����������
���������%�1
�;�S�c�u���������������
��5�R�k�������������
��#�6�N�f��������������$�5�A�R
�\�k�}��
�������������2�D�[�o�������������$�7�O	�X�f�y������������� �1 	�: �M �e �� "�� �� �� �� 
�� �� �!�!�!!�2!�E!�]!�p!��!��!��!��!��!!�"&�1"�F"�`"�t"��"�"�"�"�"�"###
%#
4#S#$w#�#�#
�#
�#�#!$&)$>$X$l$�$�$"�$�$$%$%"F%V%k%~%�%�%�%�%�%�%& $& :& U&  u&
 & �&!�&"�&"�&"�&"�&#'$$'"$F'%W'%m'%�'&�'&�'&�'&�'&�''('%('0('@(*U(*o(+�(+�(+�(+�(+�(+�(+�(,	),).6)/A)/Q)
0^)2p)2w)2�)4�)4�)4�)
4�)4�)
4�)6�)
6�)6�)
7*
8
*8*8/*8>*9R*9Z*
;g*;s*=�* =�*%=�*>�*#>
+>+A+A2+CL+C]+Fs+Fz+G�+G�+G�+G�+H�+H�+H,H,H.,H9,HI,H[,
Ih,Iz,K�,nM�,M�,$M�,
M�,M-N-N6-OF-O[-Om-O�-P�-$P�-%P�-*P.
P .Q/.Q7.
QD.QP.Qa.
Rk.Rz.R�.R�.R�.R�.R�.R�.R/R/R./RG/Sa/S�/S�/#S�/S�/"S0S0T0T<0TO0Tg0Ty0U�0
V�0V�0W�0W�0W�0W�0W1W,1W:1WM1Wb1W|1Y�1Z�1Z�1[�1\�1]�1]�1]2]2]'2].2]:2
]G2
]Q2^`2_g2_{2_�2_�2_�2_�2a�2a�2a�2a3
a3a$3a<3aY3	ab3ap3b�3c�3
c�3c�3
e�3e�3f�3f4f4h34hE4h\4ht4h�4h�4h�4h�4h�4h�4h�4h5h5h+5h>5hV5hs5"h�5h�5h�5h�5h�5h
6h"6h*6
h76hB6hR6hg6h�6h�6h�6h�6h�6
h�6h�6 h7%h17hO7#hr7iz7i�7i�7
i�7i�7"i�7i8i28jC8jY8jp8j�8j�8$j�8
j�8j�8j�8j
9k$9l@9lT9lm9l�9l�9	l�9
m�9m�9m�9m�9m�9m:m:m5:mL:mh:mm:m�:n�:
n�:	n�:o�:o�:p�:p�:p;p;p;
p&;p5;pI;pb;pq;p�;p�;p�;p�;q�;q�;q�;q<q<q-<qB<qS<qi<qt<q�<q�<q�<q�<r�<
r�<r�<
r
=r=r6=rU=rn=r�=r�=r�=
r�=r�=
s�=s�=s�=s�=s>s%>s?>!s`>&s�>s�>
s�>s�>s�>s�>s�>s�>s
?s?s7?
sD?sV?sd?sw?s�?s�?s�?s�?s�?s�?
s�?s@s"@s0@sC@
sP@osb@sr@s�@s�@s�@s�@t�@t�@t�@t�@t�@t	At$At7AtOAtbAtzAt�At�At�At�At�A
t�At�A
t�At�A	tBtBt+Bt<BtUBt[B	tdB
tqBt}B	v�Bv�Bv�Bw�Bw�Bw�Bw�Bw�BwCw C
w-Cw8CwVCwfCwuCw�Cw�Cw�Cw�Cw�Cw�C
w�Cw�CwDw(Dw4Dw@DwLD
wVD	w_DwrDw�Dww-+*, .!)"/>1@(Q'e#�&�$30j	


'
-B��	"pq���):k�
"
	W%
/CHjz{|}���i��� b�0 
�
Y	`
FT+019GM
PY\
]u���
Yy���	
U����&(,.
7DV��,-��� ��Hd*	<JM�
9#
$26S^`f����~��!BV34L
���
5	�5T
A��8
�
�1	�;N�	��
7
�#r�s?i���E�	�
I=	Ay
����
�����rS�bO~����8X� @���
bs?&H���>G�+
\[������g	K
��F
C�	�UI	�
7t
���W_q
�	��
�k�lm���TOo�N�Ufp
�����
�
a
�PW
v�Rdn������
��Xwch	�;
���)�
��
����
�	�V
�;vZ	�8?�������f2���
	
�������
n	v
Jx�r
������c�	����YZhig
t
w����e�(_�
�	�I +�
��
/��	0�	�
9O
^����x�#R�2	^�	��]��g���
B�jn\%
*6}
��
���������:$	&=��
��	�[��3	IMS~*
��
�
�;��%
�
�k���e�
�(
��
pzFQ'��G!��4d	�C@
��	�
$`��|
��
�������QB{�>���
�7	f
&
�
���Jt�	L
j16�U��6�%
K�u
yP�Z\s�R�
<+�
LX
�	.���
h'D
HM|!������PE���z�
hu�Saa��$[n,qc�t/	{�L��`q	D
.�m-��	
<N�
��8��3x�*��
��u
_rw
�]����
i��	�<^
���km���
l�ow	g�ol����a:��N�"
	EK
/�
=�5!�
�	_�)
�D�O���	����R������A?@���-

�	�:
()W��c	�
2�v9���dJ.��=
���
C	��
TQ,
�]��X
��4
5m#�KA}
Es
��������
G
��
>�'����[F	lo
Z1�04
V	b
p	e
����y�U��*<SymbolTreeInfo>_SpellChecker_C:\Program Files\Laserfiche\SDK 10.2\bin\COM\x86\Interop.LFSO83Lib.dll�	3'ճw���-`gB�8&>�S�D__midl___midl_itf_laserficheobjects_0001_0064_0001__midl___midl_itf_laserficheobjects_0001_0064_0002__midl___midl_itf_laserficheobjects_0001_0064_0003__midl___midl_itf_laserficheobjects_0001_0064_0004__midl___midl_itf_laserficheobjects_0001_0064_0005__midl___midl_itf_laserficheobjects_0001_0064_0006__midl___midl_itf_laserficheobjects_0001_0064_0007__midl___midl_itf_laserficheobjects_0001_0064_0008__midl___midl_itf_laserficheobjects_0001_0064_0009__midl___midl_itf_laserficheobjects_0001_0064_0010__midl___midl_itf_laserficheobjects_0001_0064_0011__midl___midl_itf_laserficheobjects_0001_0064_0012__midl___midl_itf_laserficheobjects_0001_0064_0013__midl___midl_itf_laserficheobjects_0001_0064_0014__midl___midl_itf_laserficheobjects_0001_0064_0015__midl___midl_itf_laserficheobjects_0001_0064_0016__midl___midl_itf_laserficheobjects_0001_0064_0017__midl___midl_itf_laserficheobjects_0001_0064_0018__midl___midl_itf_laserficheobjects_0001_0064_0019__midl___midl_itf_laserficheobjects_0001_0064_0020__midl___midl_itf_laserficheobjects_0001_0064_0021__midl___midl_itf_laserficheobjects_0001_0064_0022__midl___midl_itf_laserficheobjects_0001_0064_0023__midl___midl_itf_laserficheobjects_0001_0064_0024access_rightactivity_typeannot_access_typeannotation_columnannotation_typeaudit_eventaudit_event_classauditor_error_modebackground_task_typebox_stylebriefcase_compression_levelbriefcase_property_actionbriefcase_request_typebriefcase_versioncatalog_conn_statuscatalog_statuscollectionscolumn_typecycle_typedatabase_email_notification_typedatabase_statedbms_typedirectiondirectory_entry_typedirectory_search_flagdirectorycrtionargumentnullexceptionargumentoutofrangeexceptionarithmeticexceptionarrayarraylistarraysegmentarraytypemismatchexceptionarraywithoffsetasciiencodingasinassembliesassemblyassemblyalgorithmidattributeassemblybuilderassemblybuilderaccessassemblycompanyattributeassemblyconfigurationattributeassemblycopyrightattributeassemblycultureattributeassemblydefaultaliasattributeassemblydelaysignattributeassemblydescriptionattributeassemblyfileversionattributeassemblyflagsattributeassemblyhashassemblyhashalgorithmassemblyinformationalversionattributeassemblykeyfileattributeassemblykeynameattributeassemblyloadeventargsassemblyloadeventhandlerassemblynameassemblynameflagsassemblynameproxyassemblyproductattributeassemblyregistrationflagsassemblytargetedpatchbandattributeassemblytitleattributeassemblytrademarkattributeassemblyversionattributeassemblyversioncompatibilityassertassumeasymmetricalgorithmasymmetrickeyexchangedeformatterasymmetrickeyexchangeformatterasymmetricsignaturedeformatterasymmetricsignatureformatterasynccallbackasyncflowcontrolasyncresultatanatan2attributeattributetargetsattributeusageattributeauditflagsauditruleauthorizationruleauthorizationrulecollectionautomationproxyattributeautoreseteventbadimageformatexceptionbase64formattingoptionsbasechannelobjectwithpropertiesbasechannelsinkwithpropertiesbasechannelwithpropertiesbeepbestfitmappingattributebigmulbinarybinaryformatterbinaryreaderbinarywriterbind_optsbinderbindhandlebindingflagsbindptrbindtomonikerbitarraybitconverterblockcopybooleanbstrwrapperbufferbufferedstreambytebytelengthcachecalendarcalendaralgorithmtypecalendarweekrulecallcontextcallconvcallconvcdeclcallconvfastcallcallconvstdcallcallconvthiscallcallingconventioncallingconventionscancelfullgcnotificationcancellationtokencancellationtokenregistrationcancellationtokensourcecannotunloadappdomainexceptioncaseinsensitivecomparercaseinsensitivehashcodeproviderceilingcerchangewrapperhandlestrengthchanneldatastorechannelschannelservicescharcharenumeratorcharsetcharunicodeinfochineselunisolarcalendarcipshermodeclassinterfaceattributeclassinterfacetypecleanupcodecleanupunusedobjectsincurrentcontextclearclientchannelsinkstackclientsponsorclscompliantattributecoclassattributecodeaccesspermissioncodeaccesssecurityattributecodeanalysiscodeconnectaccesscodegroupcollectcollectioncollectionbasecollectioncountcollectionscomaliasnameattributecombinecomcompatibleversionattributecomconversionlossattributecomdefaultinterfaceattributecomeventinterfaceattributecomeventshelpercomexceptioncomimportattributecominterfacetypecommembertypecommonacecommonaclcommonobjectsecuritycommonsecuritydescriptorcomparecompareexchangecompareinfocompareoptionscomparercomparisoncompilationrelaxationscompilationrelaxationsattributecompilergeneratedattributecompilerglobalscopeattributecompilermarshaloverridecompilerservicescomponentguaranteesattributecomponentguaranteesoptionscompoundacecompoundacetypecompressedstackcomregisterfunctionattributecomsourceinterfacesattributecomtypescomunregisterfunctionattributecomvisibleattributeconcurrentconcurrentdictionaryconcurrentqueueconcurrentstackconditionalattributeconditionalweaktableconfigurationconfigureconnectconnectdataconsistencyconsoleconsolecanceleventargsconsolecanceleventhandlerconsolecolorconsolekeyconsolekeyinfoconsolemodifiersconsolespecialkeyconstrainedexecutionconstructioncallconstructionresponseconstructorbuilderconstructorinfocontextcontextattributecontextboundobjectcontextcallbackcontextformcontextmarshalexceptioncontextpropertycontextscontextstaticattributecontractcontractclassattributecontractclassforattributecontractfailedeventargscontractfailurekindcontracthelpercontractinvariantmethodattributecontractpublicpropertynameattributecontractreferenceassemblyattributecontractruntimeignoredattributecontractscontractverificationattributecontrolflagsconvertconvertercopycoscoshcountdowneventcreatecreateaggregatedobjectcreatedirectorycreatetextcreatevaluecallbackcreatewrapperoftypecriticalfinalizerobjectcriticalhandlecriticalhandleminusoneisinvalidcriticalhandlezeroorminusoneisinvalidcrossappdomatindelegatecrosscontextdelegatecryptoapitransformcryptoconfigcryptographicexceptioncryptographicunexpectedoperationexceptioncryptographycryptokeyaccessrulecryptokeyauditrulecryptokeyrightscryptokeysecuritycryptostreamcryptostreammodecspkeycontainerinfocspparameterscspproviderflagscultureinfoculturenotfoundexceptionculturetypescurrencywrappercurrentthreadrequiressecuritycontextcapturecustomacecustomattributebuildercustomattributedatacustomattributeformatexceptioncustomattributenamedargumentcustomattributetypedargumentcustomconstantattributecustomerrorsmodescustomqueryinterfacemodecustomqueryinterfaceresultdatamisalignedexceptiondatetimedatetimeconstantattributedatetimeformatinfodatetimekinddatetimeoffsetdatetimestylesdaylighttimedayofweekdbnulldebuggableattributedebuggerdebuggerbrowsableattributedebuggerbrowsablestatedebuggerdisplayattributedebuggerhiddenattributedebuggernonusercodeattributedebuggerstepperboundaryattributedebuggerstepthroughattributedebuggertypeproxyattributedebuggervisualizerattributedebuggingmodesdecimaldecimalconstantattributedecoderdecoderexceptionfallbackdecoderexceptionfallbackbufferdecoderfallbackdecoderfallbackbufferdecoderfallbackexceptiondecoderreplacementfallbackdecoderreplacementfallbackbufferdecrementdecryptdefaultcharsetattributedefaultdependencyattributedefaultmemberattributedelegatedeletedependencyattributedeploymentderivebytesdesdesckinddescryptoserviceproviderdescuniondestroystructuredetermineapplicationtrustdiagnosticsdictionarydictionarybasedictionaryentrydigitshapesdirectorydirectoryinfodirectorynotfoundexceptiondirectoryobjectsecuritydirectorysecuritydiscardableattributedisconnectdiscretionaryacldispatchwrapperdispidattributedispparamsdividebyzeroexceptiondivremdllimportattributedllnotfoundexceptiondoubledoubletoint64bitsdriveinfodrivenotfoundexceptiondrivetypedsadsacryptoserviceproviderdsaparametersdsasignaturedeformatterdsasignatureformatterduplicatewaitobjectexceptiondynamicilinfodynamicmethodeastasianlunisolarcalendarelemdescemitencoderencoderexceptionfallbackencoderexceuptionfallbackbufferencoderfallbackencoderfallbackbufferencoderfallbackexceptionencoderreplacementfallbackencoderreplacementfallbackbufferencodingencodinginfoencryptendcontractblockendofstreamexceptionensuresensuresonthrowensuresufficientexecutionstackenterenterpriseserviceshelperentrypointnotfoundexceptionenumenumbuilderenumeratorenvironmentenvironmentpermissionenvironmentpermissionaccessenvironmentpermissionattributeenvironmentvariabletargetequalitycomparerequalserrorwrappereventargseventattributeseventbuildereventhandlereventinfoeventingeventresetmodeeventtokeneventwaithandleeventwaithandleaccessruleeventwaithandleauditruleeventwaithandlerightseventwaithandlesecurityevidenceevidencebaseexcepinfoexceptionexceptionhandlingclauseexceptionhandlingclauseoptionsexceptionservicesexchangeexecutecodewithguaranteedcleanupexecutemessageexecutioncontextexecutionengineexceptionexistsexitexpexpandenvironmentvariablesexpandoexportereventkindextensibleclassfactoryexternalexceptionfailfastfieldaccessexceptionfieldattributesfieldbuilderfieldinfofieldoffsetattributefieldtokenfilefileaccessfileattributesfilecodegroupfiledialogpermissionfiledialogpermissionaccessfiledialogpermissionattributefileinfofileiopermissionfileiopermissionaccessfileiopermissionattributefileloadexceptionfilemodefilenotfoundexceptionfileoptionsfilesecurityfilesharefilestreamfilesystemaccessrulefilesystemauditrulefilesysteminfofilesystemrightsfilesystemsecurityfiletimefinalreleasecomobjectfirstchanceexceptioneventargsfirstmatchcodegroupfixedaddressvaluetypeattributefixedbufferattributeflagsattributefloorflowcontrolforallformatexceptionformatterformatterassemblystyleformatterconverterformattersformatterservicesformattertypestylefreebstrfreecotaskmemfreehglobalfrombase64chararrayfrombase64stringfrombase64transformfrombase64transformmodefuncfuncdescfuncflagsfunckindgacidentitypermissiongacidentitypermissionattributegacinstalledgacmembershipconditiongcgccollectionmodegchandlegchandletypegclatencymodegcnotificationstatusgcsettingsgenerateguidfortypegenerateprogidvfortypegenericgenericacegenericaclgenericidentitygenericparameterattributesgenericprincipalgenericsecuritydescriptorgenerictypeparameterbuildergetactivationcontextdatagetactiveobjectgetapplicationcomponentmanifestgetapplicationmanifestbytesgetattributesgetavailablethreadsgetbytegetbytesgetcominterfaceforobjectgetcominterfaceforobjectincontextgetcommandlineargsgetcomobjectdatagetcomslotformethodinfogetcreationtimegetcreationtimeutcgetcurrentdirectorygetdelegateforfunctionpointergetdeploymentcomponentmanifestgetdeploymentmanifestbytesgetdirectorynamegetdirectoryrootgetendcomslotgetenvironmentvariablegetenvironmentvariablesgetenvoychainforproxygetexceptioncodegetexceptionforhrgetexceptionpointersgetfolderpathgetfullpathgetfunctionpointerfordelegategetgenerationgethashcodegethinstancegethrforexceptiongethrforlastwin32errorgetidispatchforobjectgetidispatchforobjectincontextgetinternalappidgetitypeinfofortypegetiunknownforobjectgetiunknownforobjectincontextgetlastaccesstimegetlastaccesstimeutcgetlastwin32errorgetlastwritetimegetlastwritetimeutcgetlifetimeservicegetlogicaldrivesgetmanagedthunkforunmanagedmethodptrgetmaxthreadsgetmethodbasefrommethodmessagegetmethodinfoforcomslotgetminthreadsgetnativevariantforobjectgetnumericvaluegetobjectdatagetobjectforiunknowngetobjectfornativevariantgetobjectsfornativevariantsgetobjecturigetobjectvaluegetobjrefforproxygetparentgetpathrootgetrealproxygetregisteredactivatedclienttypesgetregisteredactivatedservicetypesgetregisteredwellknownclienttypesgetregisteredwellknownservicetypesgetservertypeforurigetsessionidformethodmessagegetstartcomslotgettempfilenamegettemppathgetthreadfromfibercookiegettotalmemorygettypedobjectforiunknowngettypeforitypeinfogettypeinfonamegettypelibguidgettypelibguidforassemblygettypeliblcidgettypelibnamegettypelibversionforassemblygetunicodecategorygetuniqueobjectforiunknowngetunmanagedthunkformanagedmethodptrgetvaluegetzoneandoriginglobalizationgregoriancalendargregoriancalendartypesguidguidattributehandleprocesscorruptedstateexceptionsattributehandlerefhwascopysemanticsattributehashhashalgorithmhashmembershipconditionhashtableheaderheaderhandlerhebrewcalendarhijricalendarhmachmacmd5hmacripemd160hmacsha1hmacsha256hmacsha384hmacsha512hostexecutioncontexthostexecutioncontextmanagerhostinghostprotectionattributehostprotectionexceptionhostprotectionresourcehostsecuritymanagerhostsecuritymanageroptionsiactivatoriappdomainsetupiapplicationtrustmanageriasyncresultibindctxibuiltinpermissionichannelichanneldatastoreichannelinfoichannelreceiverichannelreceiverhookichannelsenderichannelsinkbaseiclientchannelsinkiclientchannelsinkprovidericlientchannelsinkstackiclientformattersinkiclientformattersinkprovidericlientresponsechannelsinkstackicloneableicollectionicomparableicomparericonnectionpointiconnectionpointcontainericonstantmembershipconditioniconstructioncallmessageiconstructionreturnmessageicontextattributeicontextpropertyicontextpropertyactivatoricontributeclientcontextsinkicontributedynamicsinkicontributeenvoysinkicontributeobjectsinkicontributeservercontextsinkiconvertibleicryptotransformicspasymmetricalgorithmicustomadaptericustomattributeprovidericustomfactoryicustomformattericustommarshalericustomqueryinterfaceidelayevaluatedevidenceidentitynotmappedexceptionidentityreferenceidentityreferencecollectionideserializationcallbackidictionaryidictionaryenumeratoridispatchconstantattributeidispatchimplattributeidispatchimpltypeidisposableidldescidlflagidnmappingidynamicmessagesinkidynamicpropertyieeeremainderienumconnectionpointsienumconnectionsienumerableienumeratorienummonikerienumstringienumvariantienvoyinfoiequalitycompareriequatableievidencefactoryiexpandoifieldinfoiformatprovideriformattableiformatteriformatterconverterihashcodeprovideriidentityiidentitypermissionfactoryiinternalmessageileaseilgeneratorilistilogicalthreadaffinativeimagefilemachineimembershipconditionimessageimessagectrlimessagesinkimethodcallmessageimethodmessageimethodreturnmessageimonikerimpltypeflagsimportedfromtypelibattributeimportereventkindinattributeincrementindexernameattributeindexoutofrxangeexceptioninheritanceflagsinitializearrayinormalizeforisolatedstorageinsufficientexecutionstackexceptioninsufficientmemoryexceptionint16int32int64int64bitstodoubleinterfacemappinginterfacetypeattributeinterlockedinternalinternalactivationcontexthelperinternalapplicationidentityhelperinternalmessagewrapperinternalremotingservicesinternalrminternalstinternalsvisibletoattributeinteropservicesintptrinvalidcastexceptioninvalidcomobjectexceptioninvalidfiltercriteriaexceptioninvalidolevarianttypeexceptioninvalidoperationexceptioninvalidprogramexceptioninvalidtimezoneexceptioninvariantinvokekindioiobjecthandleiobjectreferenceiobservableiobserveriocompletioncallbackioexceptionipermissionipersistfileiprincipaliproducerconsumercollectionireflectiregistrationservicesiremotingformatteriremotingtypeinfoireportmatchmembershipconditioniresourcereaderiresourcewriterirunningobjecttableisactivationallowedisafeserializationdataisboxedisbyvalueiscomobjectisconstiscopyconstructedisecurablechannelisecurityelementfactoryisecurityencodableisecuritypolicyencodableiserializableiserializationrootobjectiserializationsurrogateiserverchannelsinkiserverchannelsinkprovideriserverchannelsinkstackiserverformattersinkprovideriserverresponsechannelsinkstackiserviceproviderisexplicitlydereferencedisgrantedisimplicitlydereferencedisjitintrinsicislongismethodoverloadedisoapmessageisoapxsdisobjectoutofcontextisolatedstorageisolatedstoragecontainmentisolatedstorageexceptionisolatedstoragefileisolatedstoragefilepermissionisolatedstoragefilepermissionattributeisolatedstoragefilestreamisolatedstoragepermissionisolatedstoragepermissionattributeisolatedstoragescopeisolatedstoragesecurityoptionsisolatedstoragesecuritystateisolationisonewayispinnedisponsorisremotelyactivatedclienttypeissignunspecifiedbyteistackwalkistransparentproxyistreamistructuralcomparableistructuralequatableistypevisiblefromcomisudtreturnisurrogateselectorisvolatileiswellknownclienttypeisymbolbinderisymbolbinder1isymboldocumentisymboldocumentwriterisymbolmethodisymbolnamespaceisymbolryeaderisymbolscopeisymbolvariableisymbolwriterithreadpoolworkitemitrackinghandleritransportheadersitupleitypecompitypeinfoitypeinfo2itypelibitypelib2itypelibconverteritypelibexporternameprovideritypelibexporternotifysinkitypelibimporternotifysinkiunionsemanticcodegroupiunknownconstantattributeiunrestrictedpermissionjapanesecalendarjapaneselunisolarcalendarjuliancalendarkeepalivekeycollectionkeycontainerpermissionkeycontainerpermissionaccessentrykeycontainerpermissionaccessentrycollectionkeycontainerpermissionaccessentryenumeratorkeycontainerpermissionattributekeycontainerpermissionflagskeyedcollectionkeyedhashalgorithmkeynotfoundexceptionkeynumberkeysizeskeyvaluepairknownacekoreancalendarkoreanlunisolarcalendarlabellayoutkindlazylazyinitializerlazythreadsafetymodelcidconversionattributeleasestatelibflagslifetimelifetimeserviceslistloaderoptimizationloaderoptimizationattributeloadhintloadpolicylevelfromfileloadpolicylevelfromstringlocalbuilderlocaldatastoreslotlocalvariableinfolockcookielockrecursionexceptionloglog10logicalcallcontextlogremotingstagemactripledesmakeversionsafenamemanagedtonativecominteropstubattributemanifestmanifestresourceinfomanualreseteventmanualreseteventslimmarshalmarshalasattributemarshalbyrefobjectmarshaldirectiveexceptionmaskgenerationmethodmathmaxmd5md5cryptoserviceprovidermemberaccessexceptionmemberfiltermemberinfomembertypesmemoryfailpointmemorystreammessagesurrogatefiltermessagingmetadatamethodaccessexceptionmethodattributesmethodbasemethodbodymethodbuildermethodcallmethodcallmessagewrappermethodcodetypemethodimplattributemethodimplattributesmethodimploptionsmethodinfomethodrentalmethodresponsemethodreturnmessagewrappermethodtokenmicrosoftmidpointroundingminmissingmissingfieldexceptionmissingmanifestresourceexceptionmissingmemberexceptionmissingmethodexceptionmissingsatelliteassemblyexceptionmodulemodulebuildermodulehandlemoduleresolveeventhandlermonitormovemovebufferareamtathreadattributemulticastdelegatemulticastnotsupportedexceptionmutexmutexaccessrulemutexauditrulemutexrightsmutezxsecuritynamedpermissionsetnativecppclassattributenativeobjectsecuritynativeoverlappednetcodegroupneutralresourceslanguageattributenonserializedattributenormalizationformnotfinitenumberexceptionnotimplementedexceptionnotsupportedexceptionntaccountnullablenullreferenceexceptionnumberformatinfonumberstylesnumparambytesobfuscateassemblyattributeobfuscationattributeobjectobjectaccessruleobjectaceobjectaceflagsobjectauditruleobjectcreationdelegateobjectdisposedexceptionobjecthandleobjectidgeneratorobjectmanagerobjectmodelobjectsecurityobjrefobsoleteattributeoffsetofoldvalueondeserializedattributeondeserializingattributeonewayattributeonserializedattributeonserializingattributeopcodeopcodesopcodetypeopenopenreadopentextopenwriteoperandtypeoperatingsystemoperationcanceledexceptionoptionalattributeoptionalfieldattributeorderablepartitioneroutattributeoutofmemoryexceptionoverflowexceptionoverlappedpackingsizepaddingmodeparallelparallelloopresultparallelloopstateparalleloptionsparamarrayattributeparamdescparameterattributesparameterbuilderparameterinfoparameterizedthreadstartparametermodifierparametertokenparamflagpartialtrustvisibilitylevelpartitionerpasswordderivebytespathpathtoolongexceptionpefilekindspermissionrequestevidencepermissionspermissionsetpermissionsetattributepermissionstatepersiancalendarpkcs1maskgenerationmethodplatformidplatformnotsupportedexceptionpointerpolicypolicyexceptionpolicyhierarchypolicylevelpolicyleveltypepolicystatementpolicystatementattributeportableexecutablekindspowpredicateprelinkprelinkallprepareconstrainedregionsprepareconstrainedregionsnooppreparecontracteddelegatepreparedelegatepreparemethodprepreparemethodattributepreservesigattributeprimaryinteropassemblyattributeprincipalprincipalpermissionprincipalpermissionattributeprincipalpolicyprivilegenotheldexceptionprobeforsufficientstackprocessorarchitectureprogidattributepropagationflagspropertyattributespropertybuilderpropertyinfopropertytokenproxiesproxyattributeptrtostringansiptrtostringautoptrtostringbstrptrtostringuniptrtostructurep{ublisherpublisheridentitypermissionpublisheridentitypermissionattributepublishermembershipconditionpulsepulseallpureattributequalifiedacequeryinterfacequeuequeueuserworkitemraisecontractfailedeventrandomrandomnumbergeneratorrankexceptionrawaclrawsecuritydescriptorrc2rc2cryptoserviceproviderreadallbytesreadalllinesreadalltextreadbytereaderwriterlockreadint16readint32readint64readintptrreadkeyreadlinesreadonlycollectionreadonlycollectionbasereadonlypermissionsetrealloccotaskmemreallochglobalrealproxyreferenceassemblyattributereflectionreflectionpermissionreflectionpermissionattributereflectionpermissionflagreflectiontypeloadexceptionregioninforegisteractivatedclienttyperegisteractivatedservicetyperegisteredwaithandleregisterforfullgcnotificationregisterwaitforsingleobjectregisterwellknownclienttyperegisterwellknownservicetyperegistrationclasscontextregistrationconnectiontyperegistrationservicesregistryregistryaccessruleregistryauditruleregistryhiveregistrykeyregistrykeypermissioncheckregistryoptionsregistrypermissionregistrypermissionaccessregistrypermissionattributeregistryrightsregistrysecurityregistryvaluekindregistryvalueoptionsregistryviewreleasereleasecomobjectreleasethreadcachereliabilitycontractattributeremotingremotingconfigurationremotingexceptionremotingservicesremotingsurrogateselectorremotingtimeoutexceptionremoveremovememorypressurereplacerequiredattributeattributerequiresreregisterforfinalizeresetcolorresolveeventargsresolveeventhandlerresolvepolicyresolvepolicygroupsresolvesystempolicyresourceattributesresourceconsumptionattributeresourceexposureattributeresourcelocationresourcemanagerresourcereaderresourcesresourcescoperesourcesetresourcetyperesourcewriterresultreturnmessagerfc2898derivebytesrijndaelrijndaelmanagedrijndaelmanagedtransformripemd160ripemd160managedrngcryptoserviceproviderroundrsarsacryptoserviceproviderrsaoaepkeyexchangedeformatterrsaoaepkeyexchangeformatterrsaparametersrsapkcs1keyexchangedeformatterrsapkcs1keyexchangeformatterrsapkcs1signaturedeformatterrsapkcs1signatureformatterr|unclassconstructorruntimeruntimeargumenthandleruntimecompatibilityattributeruntimeenvironmentruntimefieldhandleruntimehelpersruntimemethodhandleruntimetypehandleruntimewrappedexceptionsafearrayrankmismatchexceptionsafearraytypemismatchexceptionsafebuffersafefilehandlesafehandlesafehandleminusoneisinvalidsafehandlessafehandlezeroorminusoneisinvalidsaferegistryhandlesafeserializationeventargssafewaithandlesatellitecontractversionattributesavepolicysavepolicylevelsbytescopelessenumattributesearchoptionsecurestringsecurestringtobstrsecurestringtocotaskmemansisecurestringtocotaskmemunicodesecurestringtoglobalallocansisecurestringtoglobalallocunicodesecuritysecurityactionsecurityattributesecuritycontextsecuritycontextsourcesecuritycriticalattributesecuritycriticalscopesecurityelementsecurityexceptionsecurityidentifiersecurityinfossecuritymanagersecuritypermissionsecuritypermissionattributesecuritypermissionflagsecurityrulesattributesecurityrulesetsecuritysafecriticalattributesecuritystatesecuritytransparentattributesecuritytreatassafeattributesecurityzoneseekoriginsehexceptionsemaphorefullexceptionsemaphoreslimsendorpostcallbackserializableattributeserializationserializationbinderserializationentryserializationexceptionserializationinfoserializationinfoenumeratorserializationobjectmanagerserverchannelsinkstackserverexceptionserverfaultserverprocessingservicessetaccesscontrolsetattributessetbuffersizesetbytesetcomobjectdatasetcreationtimeutcsetcurrentdirectorysetcursorpositionsetenvironmentvariableseterrorsetinsetlastaccesstimeutcsetlastwritetimeutcsetmaxthreadssetminthreadssetobjecturiformarshalsetoutsetvaluesetwin32contextinidispatchattributesetwindowpositionsetwindowsizesha1sha1cryptoserviceprovidersha1managedsha256sha256managedsha384sha384managedsha512sha512managedsignsignaturedescriptionsignaturehelpersignaturetokensinsinglesinhsinkproviderdatasitesiteidentitypermissionsiteidentitypermissionattributesitemembershipconditionsizeofsoapanyurisoapattributesoapbase64binarysoapdatesoapdatetimesoapdaysoapdurationsoapenti}tiessoapentitysoapfaultsoapfieldattributesoaphexbinarysoapidsoapidrefsoapidrefssoapintegersoaplanguagesoapmessagesoapmethodattributesoapmonthsoapmonthdaysoapnamesoapncnamesoapnegativeintegersoapnmtokensoapnmtokenssoapnonnegativeintegersoapnonpositiveintegersoapnormalizedstringsoapnotationsoapoptionsoapparameterattributesoappositiveintegersoapqnamesoapservicessoaptimesoaptokensoaptypeattributesoapyearsoapyearmonthsortedlistsortkeyspecialfolderspecialfolderoptionspecialnameattributespinlockspinwaitsqrtstackstackbehaviourstackframestackoverflowexceptionstacktracestathreadattributestatstgstreamstreamingcontextstreamingcontextstatesstreamreaderstreamwriterstringstringbuilderstringcomparerstringcomparisonstringfreezingattributestringinfostringreaderstringsplitoptionsstringtobstrstringtocotaskmemansistringtocotaskmemautostringtocotaskmemunistringtohglobalansistringtohglobalautostringtohglobalunistringtokenstringwriterstrongnamestrongnameidentitypermissionstrongnameidentitypermissionattributestrongnamekeypairstrongnamemembershipconditionstrongnamepublickeyblobstructlayoutattributestructuralcomparisonsstructuretoptrstubhelperssuppressfinalizesuppressildasmattributesuppressmessageattributesuppressunmanagedcodesecurityattributesurrogateselectorsymaddresskindsymbolstoresymboltokensymdocumenttypesymlanguagetypesymlanguagevendorsymmetricalgorithmsynchronizationattributesynchronizationcontextsynchronizationlockexceptionsyskindsystemsystemaclsystemexceptiontaiwancalendartaiwanlunisolarcalendartantanhtargetedpatchingoptoutattributetargetexceptiontargetframeworkattributetargetinvocationexceptiontargetparametercountexceptiontasktaskcanceledexceptiontaskcompletionsourcetaskcontinuationoptionstaskcreationoptionstaskfactorytaskstaskschedulertaskschedulerexceptiontaskstatustceadaptergentexttextelementenumeratortextinfotextreadertextwriterthaibuddhistcalendarthreadthreadabortexceptionthreadingthreadinterruptedexceptionthreadlocalthreadpoolthreadprioritythreadstartthreadstartexceptionthreadstatethreadstateexceptionthreadstaticattribute~throwexceptionforhrtimeouttimeoutexceptiontimertimercallbacktimespantimespanstylestimezonetimezoneinfotimezonenotfoundexceptiontobase64chararraytobase64stringtobase64transformtobooleantobytetochartodatetimetodecimaltodoubletoint16toint32toint64tokenaccesslevelstokenimpersonationleveltosbytetosingletostringtouint16touint32touint64trackingservicestransitiontimetransportheaderstriggerfailuretripledestripledescryptoserviceprovidertrustmanagercontexttrustmanageruicontexttrycodetryentertupletypetypeaccessexceptiontypeattrtypeattributestypebuildertypecodetypedelegatortypedesctypedreferencetypeentrytypefiltertypefilterleveltypeflagstypeforwardedfromattributetypeforwardedtoattributetypeidentifierattributetypeinitializationexceptiontypekindtypelibattrtypelibconvertertypelibexporterflagstypelibfuncattributetypelibfuncflagstypelibimportclassattributetypelibimporterflagstypelibtypeattributetypelibtypeflagstypelibvarattributetypelibvarflagstypelibversionattributetypeloadexceptiontypetokentypeunloadedexceptionucomibindctxucomiconnectionpointucomiconnectionpointcontainerucomienumconnectionpointsucomienumconnectionsucomienummonikerucomienumstringucomienumvariantucomimonikerucomipersistfileucomirunningobjecttableucomistreamucomitypecompucomitypeinfoucomitypelibuint16uint32uint64uintptruipermissionuipermissionattributeuipermissionclipboarduipermissionwindowultimateresourcefallbacklocationumalquracalendarunauthorizedaccessexceptionunhandledexceptioneventargsunhandledexceptioneventhandlerunicodecategoryunicodeencodingunioncodegroupunknownwrapperunmanagedfunctionpointerattributeunmanagedmarshalunmanagedmemoryaccessorunmanagedmemorystreamunmanagedtypeunmarshalunobservedtaskexceptioneventargsunsafeaddrofpinnedarrayelementunsafequeuenativeoverlappedunsafequeueuserworkitemunsaferegisterwaitforsingleobjectunsafevaluetypeattributeunverifiablecodeattributeurlurlattributeurlidentitypermissionurlidentitypermissionattributeurlmembershipconditionutf32encodingutf7encodingutf8encodingutilvalueatreturnvaluecollectionvaluetypevardescvarenumvarflagsvariantwrappervarkindverificationexceptionversionversioningversioninghelpervoidw3cxsd2001waitwaitcallbackwaitforfullgcapproachwaitforfullgccompletewaitforpendingfinalizerswaithandlewaithandlecannotbeopenedexceptionwaitortimercallbackweakreferencewellknownclienttypeentrywellknownobjectmodewellknownservicetypeentrywellknownsidtypewin32windowsaccounttypewindowsbuiltinrolewindowsidentitywindowsimpersonationcontextwindowsprincipalwritewriteallbyteswritealllineswritealltextwritebytewriteint16writeint32writeint64writeintptrwritelinex509certificatex509certificatesx509contenttypex509keystorageflagsxmlfieldorderoptionxmlsyntaxexceptionzerofreebstrzerofreecotaskmemansizerofreecotaskmemunicodezerofreeglobalallocansizerofreeglobalallocunicodezonezoneidentitypermissionzoneidentitypermissionattributezonemembershipcondition�
#

#	*--
5:
=D
@WJg	M~V�
b�
d�
h�
n�

t�~�
���������

���,�=�K�[
�h�x�����
��
��
���������
 �*
�4�L
�Yamtx~��
���	���
#-16=1BGFUJa�%M�!
R�\�\�	`�c�i�%nn,qF}T
~a
�k���'����
�������/�I�c�z ��������������	���-�<
�I�M
�W�_�{��������
$>"Z)v)�.�1�%5�5�99:/;;?LA]BuG�"G�J�L�P�P	W	Z 	]3	 bS	bq	e�	e�	
i�	p�	r�	r�	t�		v�	v�	z

z
	~
�0
�K
�c
�q
��
��
��
��
��

��
����*�6�B	�K�Q
�[�g�n
�{����	������������
�����������	�
��.�=�M�^�p����������
!
	(

+
F
V
^
m
q

�
�
$�

(�
,�
2�
7�
$:=@*
B7HLN\OpU�V�W�	X�Z�
[�\�a�a�a�ee#e=eYfsh�h�j�k�
r�	u�	x�x�{�{~��*�2
�<�R�q��������������-�I�e�m����
�����������
�	���*�5�<�R�k�w
�����������������	�� �2�A�L�c�r�z�������������� �#�B"�d��	��������	������������	
&9P^}%
��
���))5HZiz���
�#�#�(�(�*++/	,8,N,a,.�/�0�1�3�55(809I:[;g=uB�D�	F�F�I�I�I�K�OOP4 PTPpP�P�P�T�	T�]�^�`de3fKge j�	l�n�p�p�p�r�u�v�
xxzz|5	>�N�g�r
�|������	��
���������
��*�9�H
�R�g�m�������	����	������
����&�B
�O
�\�v�~��������������� �5�=�I�P�`�t�{��������������
�����3�Q�j�z����	��������	������
�����
 �% �: �Q �Y �e 	�n 	�w �� �� �� ��  �� �� �!�!�!!�%!�(!�B!�I!�Z!�p!��!��!��!��!��!	��!��!
��!��!
��!��!
�"�"�6"�S"�["�k"��"��"��"��"��"��"��"	��"
��"�#�#�'#�7#�I#�Q#f#�#�#�#�#�#�#�#�#�#	$$,$
6$	G$Y$a$
n$y$�$�$�$�$�$�$	�$#�$%�$&%&"%&8%':%)J%*R%*^%
*k%�*%
*�%*�%*�%*�%
*�%
.�%.�%.�%/&2&29&2Q&3`&3&4�&
4�&5�&5�&7�&8�&!8'8':$'B;'BJ'B\'Bo'C�'D�'D�'E�'G�'
G�'G(G(G3(GC(KT(Lh(
Mu(M�(N�(
O�(O�(P�(R�(R�(R�(R)T+)U>)YR)Yo)Y�)Y�)\�)^�)`�)d�)d�)$d*
d*j9*kP*
k]*kv*k�*
k�*n�*n�*n�*n�*q�*t+	v+w+w%+!yF+"{h+!{�+"{�+{�+{�+|�+|�+|,},),B,U,�d,�r,��,��,��,��,��,��,$�-�-�+-
�8-�I-�_-�c-
�p-.��-	��-��-��-
��-��-	��-��-
�.�.
�.�#.�*.
�7.�?.
�I.
�S.
�].�q.��.��.��.��.��.��.�/
�/�/�5/�A/�I/�[/�c/�t/��/��/��/��/��/��/��/�0�0�50�T0
�^0�i0�t0	�}0��0��0��0��0��0�1�1�.1�J1�`1�t1��1��1��1��1��1��1��1�2�2�,2�A2�X2�r2��2��2��2��2��2��2�3�3�"3�)3�03
�:3�M3�]3
�j3�3��3��3��3��3��3��3
��3��3
��3��3�4
�4�4�*4
�44�G4�X4	�a4�{4��4��4��4��4��4��4��4��4��4��4�5�5�15�95
�F5�b5�s5�~5	��5��5��5��5��5��5#�6�,6�16�66�;6�L6�\6�r6�}6��6��6!��6��6��6
��6
�7�"7��17�77�K7�d7��7��7��7��7��7	��7
��7��7
�
8�8�%8	�.8�B8�M8X8d8
n8�8�8�8�8�8�8�899,9B9I9	R9	]9	d9	u9	�9�9
�9�9
�9�9::/:F:b:�:�:�:	�:�:�:�:�:�:;;';A;Y;l;�;&�;�;�;"<<5<Q<	Z<b<j<r<�< �<
 �< �< �<!�<!�<!="=$!=
&+='@=
'M='[='j=(=
(�=(�=
)�=+�=+�=
,�=,�=.�=/>/>	0>	0>
0'>0/>	18>2I>3e>3>4�>4�>4�>4�>4�>4	?4?	4 ?
7-?8C?!8d?+8�?+8�?8�?8�?8@8@9)@	92@9:@:F@:N@:\@<s@>x@
>�@?�@@�@@�@A�@
A�@A�@A�@A�@A�@CADAE#AF:AGSAG_AGqAG�A
I�AJ�AJ�AJ�AK�AK�AK�AM�A&MBMBM-BM=BNQBOXBPjBP|BQ�BQ�BR�BT�BT�BW�BW�BX�B
X�BXCXCXCX2C	X;CYCCYXCYhC
ZrC
Z|C
Z�C
Z�C[�C\�C]�C]�C^�C
`�CaDaDb/Db:D	bCDcSDcVDd]DdrD e�De�Df�D!f�Df�D
f�Df�DfEfEf"Eg0EgBEhSEhqEhvEh�Eh�Ei�E
i�Ej�Ej�Ej�Ej�EjF!j%Fj;FjLFjdFj{Fj�F	j�Fj�Fk�Fk�Fk�F
l�Fl�FlGlGl$G	l-Gl;GmJGo`GowGo�Go�G
o�Gp�Gp�Gp�Gp�G�p�Gp�Gp�GqHrHr4HsJHsPHtWH
taHteHtmHtuH	u~Hu�Hw�Hw�Hw�Hw�Hw�Hw�Hx
IxI
x(Ix3Ix>IxFIxXIxiIxxIx�I	x�Ix�Iy�I
y�Iy�Iy�Iy�I	yJyJy*Jy=JzAJzUJz`JzyJz�J
z�Jz�Jz�J|�J~�J
�JKKK!K�0K�;K�JK�YK�qK��K��K	��K��K
��K��K��K��K�L
�L�)L�=L�\L	�eL�xL��L��L��L��L��L��L�M�M�(M�4M
�AM�HM�VM�eM�tM��M��M��M	��M��M$��M�N�N�N
�N�)N�7N�<N�MN�eN�kN��N
��N��N��N��N��N��N��N��N��N��N	�O	�O	�O
�#O�*O	�3O�EO�[O�pO��O��O	��O��O
��O��O��O�P�P
�)P�DP�`P�tP��P��P��P��P��P�Q�)Q�1Q�CQ�TQ�`Q�kQ��Q��Q��Q��Q��Q��Q��Q�R�R�(R�/R�?R�QR�mR�uR��R��R��R��R��R��R��R��R�S�S�4S
�>S�NS�aS
�nS��S��S��S��S��S��S��S�T	�T
�T�)T�5T�CT�IT
�VT�hT�pT�T��T	��T��T��T��T��T��T�U� U
�-U�KU�gU��U��U��U��U��U��U��U�
V�V�.V�?V�VV�tV��V
��V��V
��V��V��V!��V�
W�'W�5W!�VW
�`W�oW�tW��W��W��W��W��W��W�
X �*X�2X�@X�QX�`X�uX��X��X���X��X��X
��X��X�Y�Y�4Y�JY�YY�vY
��Y��Y��Y��Y
��Y��Y��Y
�Z�Z�'Z
�4Z�GZ�YZ�oZ��Z��Z��Z��Z��Z��Z��Z��Z�
[
�[
�'[�.[�>[�P[�c[�t[��[��[��[��[��[
��[
��[��[��[��[#�\�0\
�=\�A\�Z\�e\�k\
�x\�~\
��\��\
��\��\��\��\��\��\��\��\��\��\�
]�)]�@]�F]
�P]
�]]�m]�u]��]��]��]��]
��]	��]��]
��]��]	��]
��]��]�^�
^� ^	�)^�5^�=^
�G^�Z^�e^�q^��^��^��^��^
��^��^��^	��^�_�
_	�_�'_�/_
�<_
�F_�M_
�Z_�m_��_��_��_��_��_��_
��_��_
��_��_��_��_�`�`�#`�/`�5`
�B`�P`�``�w`
��`��`��`��`��`��`��`��`�a�!a�,a�8a
�Ba�^a%��a��a��a��a��a��a�b�b�b�2b�Jb&�pb��b��b��b��b��b��b��b��b��b�c�0c�7c�=c	�Fc�Uc�cc�zc�}c��c��c��c��c��c��c�d�d�*d�Ad�Td�_d�dd
�qd��d
��d
��d��d��d��d
��d
��d��d��d�e	�
e�$e�/e
�9e�Ge�Re�fe�qe��e��e��e��e��e��e
��e��e��e��e�f�f�*f�8f�If	�Rf�Xf�^f
�hf	�qf�yf��f��f��f��f��f��f��f��f��f��f��f��f�g�g�!g	�*g�Hg��[g�pg�wg�g��g��g��g��g��g��g��g
��g��g��g	��g
��g�	h	�h�,h�Dh�[h�vh�~h��h��h��h��h��h��h�i�i�$i�7i�Fi�]i�ni	�wi��i��i��i��i��i��i�j�j�%j�1j�Aj�Xj�cj
�pj
�}j��j��j��j��j��j��j��j��j��j �
k�k�5k�Pk�nk�}k��k��k��k!��k��k��k�l
�l	�l �;l�Yl�tl��l!��l��l��l��l��l�m�m�5m
�Bm�Nm�Zm�^m
�km�zm	��m��m��m��m��m��m��m��m
��m��m��m
��m��m�n�n�,n�Dn
�Nn!�on��n
��n��n��n��n��n��n��n�o�o�6o�Fo�Ko
�Xo
�eo�qo	�zo
��o
��o
��o��o	��o��o��o��o��o�p�p�p�3p�Kp�bp�|p��p��p��p��

		 #'/1258@AI!OTY]bl��� I#O%^'�$�	*�
��e	��
Fc���	�
3
CM
�	�6
Z	&Ni�"
f)PV�#
�%0X���`��
	
"4df
����-	�
��
_	�j��

K,X	
!,��
�
+���	:�G�
��C		���
(	;�D�
�
�n������
Z�	"9	L���
:{����
�	����`�aUad?
G	����
J
��
���$
)=
BWjns�)/O��Q��
���		>mB�
L
9<PR
�1����,\3c�H�96	7g�
4G	(�.���	
�p	8�-�o��"RS\u����
U�	]9�`�	�"1�E
|��&.06K����
>Htd
<D���#	E�^
f
A
�����*
]�s
���Gv ���45zT\�����	w
��	=b�!W����
�i�
4�hq����l
��
	�
�	��[��
U�	D	SI}�0U�AbVmpz~���N��
Y��9e��M~���
y�
�
��
7�`yo��u�]��/m���	tUK 	�kwv�b*B
���

>��
�
P�F_�	��
���J��-PJ:A�ug����XQ���
6y�x�[���
���1S�B/g�rd}�i%8
D�|�>l��F
kx��t
��e���������~�
;Q
 ��&
�.'qKh�h{�����p����!<.t��q��� ��������e
�
�S��g�
^��	�q
�e���	��G�O��g���
j��c�g	�2�3
��_��
�(	�Y���	)����
�
�8���
:	�	3L	k,M
��
���(R��*	�
C
j������
���U��C	=!@W	X�h��^ 
�p	
�����

o��
��
�%wxLZ��
?
;�t=����T���$+7��	�
'�b�!
���2��
Ow�'{
P��/�h
�	I�Ni
����/�4
L	r
�l |��;@U���X
��
���O=e�E���	�q	9�
�	�	�
-Kh�#�)�

�
��d?l
��W
�
[�(��(?���
'F!�	@
M�p	)��k�
V43��Z��xY��0�8��[��N�	*ry�
]
�
V[
��?�s>
�	M�	�
\s�����	��	�
;
mD���������0���Av����Fg��+�����o��i<
�RT
a�hA{�	�%@��u	v�:�~�����
�{ "����B�
��
����K��z
�
�
2�	�	l�
NS8�!���7�$��r�B
T�
�
W	
��}
��
n�
I�
0���J
w�����
$ ���
���	onR��m�D������n%��	<
,�

x���������4�W�7	�G	

�	�?
�S
X��>
�
��=
�	��W�
+�	��	�&�.���r�n�J��	5�5���������<���
x��������a
	�
2�
�
�
$N:Q		�
�&�$c���
F
I��`
��fI�a	��
"nE��

����B_�R�	��H
u+_z
Z[#A
-
��vR(a'<H
PQ��	�u	����	F�@�f
���`bs��YY����

�ce�!��q
_%]��
�at��
���V�j�2�
�f��k�
ylm
��
k	�	1
�
�.���J�
��Y~
m���\��}�
\�
������	}*�����w�	`
��3��},�����p�

��o�
w_���C5���
�;��b
"	M��x��	��@���
�
���Z;6
,v�ky6D7r512
?>��
�+�	$E	E
'�
|�
�	*	�s���	��
���Q�
��0���}�	�Qfs%���#i�����E	S
�C
�r ��-j��^^
\
NK��	���
�
dZ1	L���9~�^H��
�]z���i�=��
�Mz
&P
�d
�	��
c
G�
�q3�
�
C{v�
|��OV
Lc�
�&�
:��
j�+
�	�	�
��
8
��
���5�V	J�)TH
���
�����~	��o
���yz{|�������	�|p
���	�-
X
�
#��T./67H
�[tu��
K�K�&�	�R<SymbolTreeInfo>_Source_C:\Users\bbds\Documents\Workspace\CSharp\BTStatementMerge\BT Statement Merge\BT Statement Merge.csproj�	17����
�%���7jZ�� C'�BT_Statement_MergeProgramMergeModulelfTestFindInvoicesLaserfichelfapplfservlfdbconnlfServerlfUserlfPasslfRepolfFolderLaserficheActivateLaserficheDeactivateGetStatementsGetStaticDocumentIDsGetDocumentGetOpenInvoiceIDsStatementEntryIDinvoicesBTDatabaseGetInvoicesOpenInvoicesBeforeCutoffOpenChargesNotMergeClassTestConnectionReportingErrorAppendLog#����Q	�
O� L*����
�� 6
u�$@KmagES[(
C	�	&5��$���N<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\mscorlib.dll�	3Ij,�\Ќ8�Tm�fa�vփm�s_activator_appdomain_assembly_assemblybuilder_assemblyname_attribute_constructorbuilder_constructorinfo_customattributebuilder_enumbuilder_eventbuilder_eventinfo_exception_fieldbuilder_fieldinfo_ilgenerator_localbuilder_memberinfo_methodbase_methodbuilder_methodinfo_methodrental_module_modulebuilder_parameterbuilder_parameterinfo_propertybuilder_propertyinfo_signaturehelper_thread_type_typebuilderabandonedmutexexceptionabsaccesscontrolaccesscontrolactionsaccesscontrolmodificationaccesscontrolsectionsaccesscontroltypeaccessedthroughpropertyattributeaccessruleaccessviolationexceptionaceenumeratoraceflagsacequalifieracetypeacosactionactivatedclienttypeentryactivatedservicetypeentryactivationactivationargumentsactivationcontextactivatoractivatorleveladdaddmemorypressureaddrefadjustmentruleaesaggregateexceptionallmembershipconditionalloccotaskmemallochglobalallowpartiallytrustedcallersattributeallowreversepinvokecallsattributeambiguousmatchexceptionapartmentstateappdomainappdomaininitializerappdomainmanagerappdomainmanagerinitializationoptionsappdomainsetupappdomainunloadedexceptionappendalllinesappendalltextappendtextapplicationactivatorapplicationdirectoryapplicationdirectorymembershipconditionapplicationexceptionapplicationidapplicationidentityapplicationsecurityinfoapplicationsecuritymanagerapplicationtrustapplicationtrustcollectionapplicationtrustenumeratorapplicationversionmatcharecomobjectsavailableforcleanupargiteratorargumentexcepq
	s	s�
��<SymbolTreeInfo>_SpellChecker_C:\Users\bbds\Documents\Workspace\CSharp\BTStatementMerge\BT Statement Merge\BT Statement Merge.csproj�	3����
�%���7jZ�� C'Zappendlogbt_statement_mergebtdatabaseconnentryiderrorfindinvoicesgetdocumentgetinvoicesgetopeninvoiceidsgetstatementsgetstaticdocumentidsinvoiceslaserfichelaserficheactivatelaserfichedeactivatelflfapplfdblffolderlfpasslfrepolfservlfserverlfusermergemodulenotmergeclassopenchargesopeninvoicesbeforecutoffprogramreportingstatementtesttestconnection"		
%
)05ALWh
u��
��������!�!�!�!�!�
!!!/!6	!?	!H!L!!

	
		

!

	 

Commits for ChrisCompleteCodeTrunk/BTStatementMerge/.vs/BT Statement Merge/v15/Server/sqlite3/storage.ide

Diff revisions: vs.
Revision Author Commited Message
1 BBDSCHRIS picture BBDSCHRIS Wed 22 Aug, 2018 20:08:03 +0000