-
Notifications
You must be signed in to change notification settings - Fork 4
/
resharper.DotSettings
1611 lines (1611 loc) · 384 KB
/
resharper.DotSettings
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
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:Boolean x:Key="/Default/CodeEditing/Intellisense/CodeCompletion/AutoCompleteBasicCompletion/@EntryValue">True</s:Boolean>
<s:String x:Key="/Default/CodeEditing/Intellisense/CodeCompletion/ParenthesesInsertType/@EntryValue">None</s:String>
<s:Boolean x:Key="/Default/CodeEditing/Intellisense/CodeCompletion/IntelliSenseCompletingCharacters/IntelliSenseCompletingCharactersSettingCSharp/UpgradedFromVSSettings/@EntryValue">True</s:Boolean>
<s:String x:Key="/Default/CodeEditing/Intellisense/CodeCompletion/IntellisenseGloballyEnabled/IntellisenseEnabled/@EntryValue">Disabled</s:String>
<s:Boolean x:Key="/Default/CodeEditing/Intellisense/LookupWindow/ShowSummary/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeEditing/Intellisense/LookupWindow/UseCompletionFontForLookups/@EntryValue">False</s:Boolean>
<s:Boolean x:Key="/Default/CodeEditing/Intellisense/ParameterInfo/DelegatesAsLambdas/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeEditing/Localization/CSharpLocalizationOptions/DontAnalyseVerbatimStrings/@EntryValue">False</s:Boolean>
<s:String x:Key="/Default/CodeEditing/TypingAssist/BraceInsertType/@EntryValue">ON_ENTER</s:String>
<s:Boolean x:Key="/Default/CodeEditing/TypingAssist/SmartParenthEnabled/@EntryValue">False</s:Boolean>
<s:String x:Key="/Default/CodeInspection/Highlighting/InspectionSeverities/=ConvertToLambdaExpression/@EntryIndexedValue">HINT</s:String>
<s:String x:Key="/Default/CodeInspection/Highlighting/InspectionSeverities/=LocalizableElement/@EntryIndexedValue">DO_NOT_SHOW</s:String>
<s:String x:Key="/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantArgumentName/@EntryIndexedValue">DO_NOT_SHOW</s:String>
<s:String x:Key="/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantArgumentNameForLiteralExpression/@EntryIndexedValue">DO_NOT_SHOW</s:String>
<s:String x:Key="/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantAssignment/@EntryIndexedValue">SUGGESTION</s:String>
<s:String x:Key="/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantThisQualifier/@EntryIndexedValue">DO_NOT_SHOW</s:String>
<s:String x:Key="/Default/CodeInspection/Highlighting/InspectionSeverities/=SpecifyACultureInStringConversionExplicitly/@EntryIndexedValue">DO_NOT_SHOW</s:String>
<s:String x:Key="/Default/CodeStyle/CodeCleanup/Profiles/=Jesse_005FFull/@EntryIndexedValue"><?xml version="1.0" encoding="utf-16"?><Profile name="Jesse_Full"><AspOptimizeRegisterDirectives>True</AspOptimizeRegisterDirectives><HtmlReformatCode>True</HtmlReformatCode><CSArrangeThisQualifier>True</CSArrangeThisQualifier><CSRemoveCodeRedundancies>True</CSRemoveCodeRedundancies><CSMakeFieldReadonly>True</CSMakeFieldReadonly><CSUseVar><BehavourStyle>CAN_CHANGE_TO_IMPLICIT</BehavourStyle><LocalVariableStyle>ALWAYS_IMPLICIT</LocalVariableStyle><ForeachVariableStyle>ALWAYS_IMPLICIT</ForeachVariableStyle></CSUseVar><CSOptimizeUsings><OptimizeUsings>True</OptimizeUsings><EmbraceInRegion>False</EmbraceInRegion><RegionName></RegionName></CSOptimizeUsings><CSShortenReferences>True</CSShortenReferences><CSReformatCode>True</CSReformatCode><CSharpFormatDocComments>True</CSharpFormatDocComments><VBOptimizeImports>True</VBOptimizeImports><VBShortenReferences>True</VBShortenReferences><VBReformatCode>True</VBReformatCode><JsInsertSemicolon>True</JsInsertSemicolon><JsReformatCode>True</JsReformatCode><CssReformatCode>True</CssReformatCode><XMLReformatCode>True</XMLReformatCode><CSUseAutoProperty>True</CSUseAutoProperty><CSReorderTypeMembers>True</CSReorderTypeMembers></Profile></s:String>
<s:String x:Key="/Default/CodeStyle/CodeCleanup/Profiles/=Jesse_005FSilent/@EntryIndexedValue"><?xml version="1.0" encoding="utf-16"?><Profile name="Jesse_Silent"><AspOptimizeRegisterDirectives>True</AspOptimizeRegisterDirectives><HtmlReformatCode>True</HtmlReformatCode><CSArrangeThisQualifier>True</CSArrangeThisQualifier><CSRemoveCodeRedundancies>True</CSRemoveCodeRedundancies><CSMakeFieldReadonly>True</CSMakeFieldReadonly><CSUseVar><BehavourStyle>CAN_CHANGE_TO_IMPLICIT</BehavourStyle><LocalVariableStyle>ALWAYS_IMPLICIT</LocalVariableStyle><ForeachVariableStyle>ALWAYS_IMPLICIT</ForeachVariableStyle></CSUseVar><CSOptimizeUsings><OptimizeUsings>True</OptimizeUsings><EmbraceInRegion>False</EmbraceInRegion><RegionName></RegionName></CSOptimizeUsings><CSShortenReferences>True</CSShortenReferences><CSReformatCode>True</CSReformatCode><CSharpFormatDocComments>True</CSharpFormatDocComments><VBOptimizeImports>True</VBOptimizeImports><VBShortenReferences>True</VBShortenReferences><VBReformatCode>True</VBReformatCode><JsInsertSemicolon>True</JsInsertSemicolon><JsReformatCode>True</JsReformatCode><CssReformatCode>True</CssReformatCode><XMLReformatCode>True</XMLReformatCode></Profile></s:String>
<s:String x:Key="/Default/CodeStyle/CodeCleanup/RecentlyUsedProfile/@EntryValue">Jesse_Full</s:String>
<s:String x:Key="/Default/CodeStyle/CodeCleanup/SilentCleanupProfile/@EntryValue">Jesse_Silent</s:String>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/ALIGN_FIRST_ARG_BY_PAREN/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/ALIGN_MULTILINE_ARRAY_AND_OBJECT_INITIALIZER/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/ALIGN_MULTILINE_BINARY_EXPRESSIONS_CHAIN/@EntryValue">True</s:Boolean>
<s:Int64 x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/CONTINUOUS_INDENT_MULTIPLIER/@EntryValue">2</s:Int64>
<s:String x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/EMPTY_BLOCK_STYLE/@EntryValue">TOGETHER_SAME_LINE</s:String>
<s:String x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/FORCE_ATTRIBUTE_STYLE/@EntryValue">SEPARATE</s:String>
<s:String x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/FORCE_FIXED_BRACES_STYLE/@EntryValue">ALWAYS_ADD</s:String>
<s:String x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/FORCE_FOR_BRACES_STYLE/@EntryValue">ALWAYS_ADD</s:String>
<s:String x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/FORCE_FOREACH_BRACES_STYLE/@EntryValue">ALWAYS_ADD</s:String>
<s:String x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/FORCE_IFELSE_BRACES_STYLE/@EntryValue">ALWAYS_ADD</s:String>
<s:String x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/FORCE_USING_BRACES_STYLE/@EntryValue">ALWAYS_ADD</s:String>
<s:String x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/FORCE_WHILE_BRACES_STYLE/@EntryValue">ALWAYS_ADD</s:String>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/INDENT_ANONYMOUS_METHOD_BLOCK/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/INDENT_NESTED_FIXED_STMT/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/PLACE_COMPLEX_ACCESSOR_ATTRIBUTE_ON_SAME_LINE/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/SPACE_AROUND_MULTIPLICATIVE_OP/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/STICK_COMMENT/@EntryValue">False</s:Boolean>
<s:String x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/WRAP_CHAINED_METHOD_CALLS/@EntryValue">CHOP_ALWAYS</s:String>
<s:Int64 x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/WRAP_LIMIT/@EntryValue">150</s:Int64>
<s:String x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/WRAP_MULTIPLE_TYPE_PARAMEER_CONSTRAINTS_STYLE/@EntryValue">CHOP_ALWAYS</s:String>
<s:String x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/WRAP_OBJECT_AND_COLLECTION_INITIALIZER_STYLE/@EntryValue">CHOP_ALWAYS</s:String>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/RazorCSharpFormat/AlwaysUseEndOfLineBraceStyle/@EntryValue">True</s:Boolean>
<s:String x:Key="/Default/CodeStyle/CodeFormatting/JavaScriptCodeFormatting/JavaScriptFormatBracesLayout/FORCE_CONTROL_STATEMENTS_BRACES/@EntryValue">ALWAYS_ADD</s:String>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/JavaScriptCodeFormatting/JavaScriptFormatBracesLayout/INDENT_CASE_FROM_SWITCH/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/JavaScriptCodeFormatting/JavaScriptFormatBracesLayout/INDENT_LEFT_PAR_INSIDE_EXPRESSION/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/JavaScriptCodeFormatting/JavaScriptFormatLineBreaks/PLACE_CATCH_ON_NEW_LINE/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/JavaScriptCodeFormatting/JavaScriptFormatLineBreaks/PLACE_ELSE_ON_NEW_LINE/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/JavaScriptCodeFormatting/JavaScriptFormatLineBreaks/PLACE_FINALLY_ON_NEW_LINE/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/JavaScriptCodeFormatting/JavaScriptFormatOther/ALIGN_MULTILINE_PARAMETER/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/JavaScriptCodeFormatting/JavaScriptFormatOther/ALIGN_MULTIPLE_DECLARATION/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/JavaScriptCodeFormatting/JavaScriptFormatOther/STICK_COMMENT/@EntryValue">False</s:Boolean>
<s:String x:Key="/Default/CodeStyle/CSharpMemberOrderPattern/CustomPattern/@EntryValue"><?xml version="1.0" encoding="utf-8" ?>

<!--
I. Overall

I.1 Each pattern can have <Match>....</Match> element. For the given type declaration, the pattern with the match, evaluated to 'true' with the largest weight, will be used 
I.2 Each pattern consists of the sequence of <Entry>...</Entry> elements. Type member declarations are distributed between entries
I.3 If pattern has RemoveAllRegions="true" attribute, then all regions will be cleared prior to reordering. Otherwise, only auto-generated regions will be cleared
I.4 The contents of each entry is sorted by given keys (First key is primary, next key is secondary, etc). Then the declarations are grouped and en-regioned by given property

II. Available match operands

Each operand may have Weight="..." attribute. This weight will be added to the match weight if the operand is evaluated to 'true'.
The default weight is 1

II.1 Boolean functions:
II.1.1 <And>....</And>
II.1.2 <Or>....</Or>
II.1.3 <Not>....</Not>

II.2 Operands
II.2.1 <Kind Is="..."/>. Kinds are: class, struct, interface, enum, delegate, type, constructor, destructor, property, indexer, method, operator, field, constant, event, member
II.2.2 <Name Is="..." [IgnoreCase="true/false"] />. The 'Is' attribute contains regular expression
II.2.3 <HasAttribute CLRName="..." [Inherit="true/false"] />. The 'CLRName' attribute contains regular expression
II.2.4 <Access Is="..."/>. The 'Is' values are: public, protected, internal, protected internal, private
II.2.5 <Static/>
II.2.6 <Abstract/>
II.2.7 <Virtual/>
II.2.8 <Override/>
II.2.9 <Sealed/>
II.2.10 <Readonly/>
II.2.11 <ImplementsInterface CLRName="..."/>. The 'CLRName' attribute contains regular expression
II.2.12 <HandlesEvent />
-->

<Patterns xmlns="urn:shemas-jetbrains-com:member-reordering-patterns">

<!--Do not reorder COM interfaces and structs marked by StructLayout attribute-->
<Pattern>
<Match>
<Or Weight="100">
<And>
<Kind Is="interface"/>
<Or>
<HasAttribute CLRName="System.Runtime.InteropServices.InterfaceTypeAttribute"/>
<HasAttribute CLRName="System.Runtime.InteropServices.ComImport"/>
</Or>
</And>
<HasAttribute CLRName="System.Runtime.InteropServices.StructLayoutAttribute"/>
</Or>
</Match>
</Pattern>

<!--Special formatting of NUnit test fixture-->
<Pattern RemoveAllRegions="true">
<Match>
<And Weight="100">
<Kind Is="class"/>
<HasAttribute CLRName="NUnit.Framework.TestFixtureAttribute" Inherit="true"/>
</And>
</Match>

<!--Setup/Teardow-->
<Entry>
<Match>
<And>
<Kind Is="method"/>
<Or>
<HasAttribute CLRName="NUnit.Framework.SetUpAttribute" Inherit="true"/>
<HasAttribute CLRName="NUnit.Framework.TearDownAttribute" Inherit="true"/>
<HasAttribute CLRName="NUnit.Framework.FixtureSetUpAttribute" Inherit="true"/>
<HasAttribute CLRName="NUnit.Framework.FixtureTearDownAttribute" Inherit="true"/>
</Or>
</And>
</Match>
<Group Region="Setup/Teardown"/>
</Entry>

<!--All other members-->
<Entry/>

<!--Test methods-->
<Entry>
<Match>
<And Weight="100">
<Kind Is="method"/>
<HasAttribute CLRName="NUnit.Framework.TestAttribute" Inherit="false"/>
</And>
</Match>
<Sort>
<Name/>
</Sort>
</Entry>
</Pattern>

<!--Default pattern-->
<Pattern RemoveAllRegions="true">

<!--public delegate-->
<Entry>
<Match>
<And Weight="100">
<Access Is="public"/>
<Kind Is="delegate"/>
</And>
</Match>
<Sort>
<Name/>
</Sort>
<Group Region="Delegates"/>
</Entry>

<!--public enum-->
<Entry>
<Match>
<And Weight="100">
<Access Is="public"/>
<Kind Is="enum"/>
</And>
</Match>
<Sort>
<Name/>
</Sort>
<Group>
<Name Region="${Name} enum"/>
</Group>
</Entry>

<!--static fields and constants-->
<Entry>
<Match>
<Or>
<Kind Is="constant"/>
<And>
<Kind Is="field"/>
<Static/>
</And>
</Or>
</Match>
<Sort>
<Kind Order="constant field"/>
</Sort>
</Entry>

<!--instance fields-->
<Entry>
<Match>
<And>
<Kind Is="field"/>
<Not>
<Static/>
</Not>
</And>
</Match>
<Sort>
<Readonly/>
<Name/>
</Sort>
</Entry>

<!--Constructors. Place static one first-->
<Entry>
<Match>
<Kind Is="constructor"/>
</Match>
<Sort>
<Static/>
</Sort>
</Entry>

<!--properties, indexers-->
<Entry>
<Match>
<Or>
<Kind Is="property"/>
<Kind Is="indexer"/>
</Or>
</Match>
</Entry>

<!--interface implementations-->
<Entry>
<Match>
<And Weight="100">
<Kind Is="member"/>
<ImplementsInterface/>
</And>
</Match>
<Sort>
<ImplementsInterface Immediate="true"/>
</Sort>
</Entry>

<!--all other members-->
<Entry/>

<!--nested types-->
<Entry>
<Match>
<Kind Is="type"/>
</Match>
<Sort>
<Name/>
</Sort>
<Group>
<Name Region="Nested type: ${Name}"/>
</Group>
</Entry>
</Pattern>

</Patterns>
</s:String>
<s:String x:Key="/Default/CodeStyle/CSharpMemberOrderPattern/LayoutType/@EntryValue">CustomLayout</s:String>
<s:Boolean x:Key="/Default/CodeStyle/Generate/=Constructor/@KeyIndexDefined">True</s:Boolean>
<s:String x:Key="/Default/CodeStyle/Generate/=Constructor/Options/=XmlDocumentation/@EntryIndexedValue">False</s:String>
<s:Boolean x:Key="/Default/CodeStyle/Generate/=Global/@KeyIndexDefined">True</s:Boolean>
<s:String x:Key="/Default/CodeStyle/Generate/=Global/Options/=PropertyBody/@EntryIndexedValue">Automatic property</s:String>
<s:Boolean x:Key="/Default/CodeStyle/Generate/=Implementations/@KeyIndexDefined">True</s:Boolean>
<s:String x:Key="/Default/CodeStyle/Generate/=Implementations/Options/=WrapInRegion/@EntryIndexedValue">False</s:String>
<s:String x:Key="/Default/CodeStyle/Generate/=Implementations/Options/=XmlDocumentation/@EntryIndexedValue">False</s:String>
<s:Boolean x:Key="/Default/CodeStyle/Generate/=Properties/@KeyIndexDefined">True</s:Boolean>
<s:String x:Key="/Default/CodeStyle/Generate/=Properties/Options/=DebuggerStepsThrough/@EntryIndexedValue">False</s:String>
<s:String x:Key="/Default/CodeStyle/Generate/=Properties/Options/=XmlDocumentation/@EntryIndexedValue">False</s:String>
<s:Boolean x:Key="/Default/CodeStyle/IntroduceVariableUseVar/UseVarForIntroduceVariableRefactoring/@EntryValue">True</s:Boolean>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=ACH/@EntryIndexedValue">ACH</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=API/@EntryIndexedValue">API</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=CC/@EntryIndexedValue">CC</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=GFI/@EntryIndexedValue">GFI</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=HPP/@EntryIndexedValue">HPP</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=ID/@EntryIndexedValue">ID</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=MVC/@EntryIndexedValue">MVC</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=PC/@EntryIndexedValue">PC</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=POST/@EntryIndexedValue">POST</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=PR/@EntryIndexedValue">PR</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=QO/@EntryIndexedValue">QO</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=RDC/@EntryIndexedValue">RDC</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=SUCCESS/@EntryIndexedValue">SUCCESS</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=UI/@EntryIndexedValue">UI</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=UTC/@EntryIndexedValue">UTC</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/EventHandlerPatternLong/@EntryValue">$object$_On$event$</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=LocalConstants/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AA_BB" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=MethodPropertyEvent/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb"><ExtraRule Prefix="" Suffix="" Style="aaBb_aaBb" /></Policy></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=PrivateInstanceFields/@EntryIndexedValue"><Policy Inspect="True" Prefix="_" Suffix="" Style="aaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=TypesAndNamespaces/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb"><ExtraRule Prefix="" Suffix="" Style="aa_bb" /></Policy></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/UserRules/=9976ddd9_002D9ded_002D4aa6_002Da959_002D7c4ad1c40836/@EntryIndexedValue"><Policy><Descriptor Staticness="Static, Instance" AccessRightKinds="Private, Protected, ProtectedInternal, Internal, Public" Description="Machine Specifications"><ElementKinds /></Descriptor><Policy Inspect="True" Prefix="" Suffix="" Style="aa_bb" /></Policy></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/VBNaming/EventHandlerPatternLong/@EntryValue">$object$_On$event$</s:String>
<s:Boolean x:Key="/Default/Environment/Editor/UseCamelHumps/@EntryValue">False</s:Boolean>
<s:Boolean x:Key="/Default/Environment/ExternalSources/FirstTimeFormShown/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/Feedback/SendActivityLogs/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/Feedback/ShouldPrompt/@EntryValue">False</s:Boolean>
<s:Boolean x:Key="/Default/Environment/GenerateMru/GroupByType/=Constructor/@EntryIndexedValue">False</s:Boolean>
<s:Boolean x:Key="/Default/Environment/GenerateMru/GroupByType/=Implementations/@EntryIndexedValue">False</s:Boolean>
<s:Boolean x:Key="/Default/Environment/GenerateMru/SortByName/=Constructor/@EntryIndexedValue">False</s:Boolean>
<s:Boolean x:Key="/Default/Environment/GenerateMru/SortByName/=Implementations/@EntryIndexedValue">False</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SearchAndNavigation/MergeOccurences/@EntryValue">True</s:Boolean>
<s:String x:Key="/Default/Environment/UserInterface/ShortcutSchemeName/@EntryValue">Idea</s:String>
<s:String x:Key="/Default/Environment/UserInterface/ThemedIcon/PsiSymbolIcon/PsiSymbolIconThemeSelection/@EntryValue">SymbolsVs11Color</s:String>
<s:Boolean x:Key="/Default/Environment/UserInterface/TipsManager/ShowTipsOnStartup/@EntryValue">False</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/GlobalSettingsUpgraded/IsUpgraded/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/IntellisenseHousekeeping/HintUsed/@EntryValue">True</s:Boolean>
<s:String x:Key="/Default/Housekeeping/Layout/DialogWindows/OptionsDialog/Position/@EntryValue">[208,-5](1024,790)</s:String>
<s:String x:Key="/Default/Housekeeping/Layout/DialogWindows/OptionsDialog/SelectedPageId/@EntryValue">CommonFormatter</s:String>
<s:String x:Key="/Default/Housekeeping/Layout/DialogWindows/RefactoringWizardWindow/Location/@EntryValue">390,-375</s:String>
<s:Boolean x:Key="/Default/Housekeeping/LiveTemplatesHousekeeping/HotspotSessionHintIsShown/@EntryValue">True</s:Boolean>
<s:Int64 x:Key="/Default/Housekeeping/TreeModelBrowserPanelPersistance/PreviewSplitterHorizontalPosition/=SearchUsagesDescriptor/@EntryIndexedValue">266</s:Int64>
<s:Int64 x:Key="/Default/Housekeeping/TreeModelBrowserPanelPersistance/PreviewSplitterHorizontalPosition/=TextualChangeDescriptor/@EntryIndexedValue">91</s:Int64>
<s:Int64 x:Key="/Default/Housekeeping/TreeModelBrowserPanelPersistance/PreviewSplitterHorizontalPosition/=UnitTestSession/@EntryIndexedValue">266</s:Int64>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=AnalyzeReferences/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=BlockComment/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=Bookmarks_002EBookmarksMenu/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=Bookmarks_002EGoToBookmark0/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=Bookmarks_002EGoToBookmark1/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=Bookmarks_002EGoToBookmark2/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=Bookmarks_002EGoToBookmark3/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=Bookmarks_002EGoToBookmark4/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=Bookmarks_002EGoToBookmark5/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=Bookmarks_002EGoToBookmark6/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=Bookmarks_002EGoToBookmark7/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=Bookmarks_002EGoToBookmark8/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=Bookmarks_002EGoToBookmark9/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=Bookmarks_002EToggleBookmark0/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=Bookmarks_002EToggleBookmark1/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=Bookmarks_002EToggleBookmark2/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=Bookmarks_002EToggleBookmark3/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=Bookmarks_002EToggleBookmark4/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=Bookmarks_002EToggleBookmark5/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=Bookmarks_002EToggleBookmark6/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=Bookmarks_002EToggleBookmark7/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=Bookmarks_002EToggleBookmark8/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=Bookmarks_002EToggleBookmark9/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=ChangeSignature/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=CleanupCode/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=CompleteCodeSmart/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=CompleteCodeTypeName/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=DuplicateText/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=EnableDaemon/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=ExploreStackTrace/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=ExtendSelection/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=ExtractMethod/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=FindUsages/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=FindUsagesAdvanced/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=ForceCompleteItem/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=Generate/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=GenerateFileBesides/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=GotoBase/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=GotoContainingDeclaration/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=GotoDeclaration/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=GotoFile/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=GotoFileMember/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=GotoImplementation/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=GotoInheritors/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=GotoLastEditLocation/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=GotoNextErrorInSolution/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=GotoNextHighlight/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=GotoNextMethod/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=GotoNextOccurence/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=GotoPrevErrorInSolution/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=GotoPrevHighlight/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=GotoPreviousOccurence/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=GotoPrevMethod/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=GotoRecentEdits/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=GotoRecentFiles/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=GotoRelatedFiles/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=GotoSymbol/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=GotoType/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=GotoTypeDeclaration/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=GotoUsage/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=HighlightUsages/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=InlineVariable/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=InspectThis/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=IntroduceField/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=IntroduceVariable/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=IntroParameter/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=LineComment/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=LiveTemplates_002EInsert/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=LocateInSolutionExplorerAction/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=Move/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=MoveDown/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=MoveLeft/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=MoveRight/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=MoveUp/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=NavigateTo/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=ParameterInfo_002EGoToPreviousSignature/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=ParameterInfo_002EShow/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=PasteMultiple/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=ProfileVisualStudio/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=QuickDoc/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=QuickFix/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=RefactorThis/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=Rename/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=ReSharper_005FUnitTest_005FDebugContext/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=ReSharper_005FUnitTest_005FRunContext/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=SafeDelete/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=SelectContainingDeclaration/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=ShowAnalyzeReferences/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=ShowCodeStructure/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=ShowFindResults/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=ShowLog/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=ShowUnitTestExplorer/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=ShowUnitTestSessions/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=ShrinkSelection/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=SilentCleanupCode/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=SurroundWith/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=TypeHierarchy_002EBrowse/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=UnitTest_002ERunCurrentSession/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=UnitTest_002ERunSolution/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=UnitTestSession_002EAppendTests/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=UnitTestSession_002ENewSession/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=UnitTestSession_002ERepeatPreviousRun/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=WindowManager_002EActivateRecentTool/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ActionsWithShortcuts/=WindowManager_002ECloseRecentTool/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=ProfileVisualStudio/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=ProfileVisualStudio/Shortcuts/=Shift_002BControl_002BAlt_002BP/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=UnitTestSession_002EAppendTests/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=UnitTestSession_002EAppendTests/Shortcuts/=Control_002BT_0020A/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=UnitTestSession_002EAppendTests/Shortcuts/=Control_002BT_0020Control_002BA/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=UnitTestSession_002ENewSession/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=UnitTestSession_002ENewSession/Shortcuts/=Control_002BT_0020Control_002BN/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=UnitTestSession_002ENewSession/Shortcuts/=Control_002BT_0020N/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Add/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Add/Commands/=_003Cdata_0020id_003D_0022_0028_007Bfb41a027_002D57c5_002D4f83_002D9508_002Dc326dce6d943_007D_003A10537_0029_0022_0020shortcut_003D_0022Class_0020Diagram_003A_003AAdd_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BBack/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BBack/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A43_0029_0022_0020shortcut_003D_0022Global_003A_003AAlt_002BBack_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BD1/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BD1/Commands/=_003Cdata_0020id_003D_0022_0028_007Bffe1131c_002D8ea1_002D4d05_002D9728_002D34ad4611bda9_007D_003A8241_0029_0022_0020shortcut_003D_0022Merge_0020Editor_0020Window_003A_003AAlt_002BD1_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BD2/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BD2/Commands/=_003Cdata_0020id_003D_0022_0028_007Bffe1131c_002D8ea1_002D4d05_002D9728_002D34ad4611bda9_007D_003A8242_0029_0022_0020shortcut_003D_0022Merge_0020Editor_0020Window_003A_003AAlt_002BD2_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BD3/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BD3/Commands/=_003Cdata_0020id_003D_0022_0028_007Bffe1131c_002D8ea1_002D4d05_002D9728_002D34ad4611bda9_007D_003A8243_0029_0022_0020shortcut_003D_0022Merge_0020Editor_0020Window_003A_003AAlt_002BD3_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BDown/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BDown/Commands/=_003Cdata_0020id_003D_0022_0028_007B11ac0a76_002D365e_002D490d_002Dabad_002De44e52897c7d_007D_003A5910_0029_0022_0020shortcut_003D_0022ADO_002ENET_0020Entity_0020Data_0020Model_0020Designer_003A_003AAlt_002BDown_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BDown/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1202_0029_0022_0020shortcut_003D_0022VC_0020Dialog_0020Editor_003A_003AAlt_002BDown_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BDown/Commands/=_003Cdata_0020id_003D_0022_0028_007B71037277_002D9175_002D48d2_002Dabe4_002D1e0f55629174_007D_003A8210_0029_0022_0020shortcut_003D_0022XML_0020Schema_0020Designer_003A_003AAlt_002BDown_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BEnd/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BEnd/Commands/=_003Cdata_0020id_003D_0022_0028_007B000af700_002Dcf09_002D4582_002D9e1c_002D2603403ab647_007D_003A2818_0029_0022_0020shortcut_003D_0022Query_0020Results_003A_003AAlt_002BEnd_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BEnd/Commands/=_003Cdata_0020id_003D_0022_0028_007B11ac0a76_002D365e_002D490d_002Dabad_002De44e52897c7d_007D_003A5920_0029_0022_0020shortcut_003D_0022ADO_002ENET_0020Entity_0020Data_0020Model_0020Designer_003A_003AAlt_002BEnd_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BF10/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BF10/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A261_0029_0022_0020shortcut_003D_0022Global_003A_003AAlt_002BF10_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BF11/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BF11/Commands/=_003Cdata_0020id_003D_0022_0028_007B9e545b2d_002D3892_002D4ffa_002Da47a_002Df8d456c5fb4a_007D_003A1280_0029_0022_0020shortcut_003D_0022Global_003A_003AAlt_002BF11_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BF12/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BF12/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A977_0029_0022_0020shortcut_003D_0022Global_003A_003AAlt_002BF12_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BF2/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BF2/Commands/=_003Cdata_0020id_003D_0022_0028_007B300a8877_002Db214_002D4385_002D8a7f_002Dab257498ffeb_007D_003A8203_0029_0022_0020shortcut_003D_0022Global_003A_003AAlt_002BF2_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BF3/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BF3/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A355_0029_0022_0020shortcut_003D_0022Global_003A_003AAlt_002BF3_0020S_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BF4/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BF4/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A229_0029_0022_0020shortcut_003D_0022Global_003A_003AAlt_002BF4_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BF5/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BF5/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc987c8ba_002Db156_002D4874_002D83ed_002Ddd44aafee8c5_007D_003A268_0029_0022_0020shortcut_003D_0022Global_003A_003AAlt_002BF5_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BF5/Commands/=_003Cdata_0020id_003D_0022_0028_007Be2f47e03_002D7d62_002D4f2c_002Da417_002Db5f904d6cd3a_007D_003A1280_0029_0022_0020shortcut_003D_0022Microsoft_0020SQL_0020Server_0020Data_0020Tools_002C_0020T_002DSQL_0020Editor_003A_003AAlt_002BF5_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BF5/Commands/=_003Cdata_0020id_003D_0022_0028_007Bfb87333b_002D16c8_002D400e_002Dbc8f_002Df6b890410582_007D_003A5_0029_0022_0020shortcut_003D_0022XML_0020_0028Text_0029_0020Editor_003A_003AAlt_002BF5_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BF6/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BF6/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A316_0029_0022_0020shortcut_003D_0022Global_003A_003AAlt_002BF6_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BF9/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BF9/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A352_0029_0022_0020shortcut_003D_0022Global_003A_003AAlt_002BF9_0020L_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BF9/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A4099_0029_0022_0020shortcut_003D_0022Global_003A_003AAlt_002BF9_0020D_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BF9/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A4102_0029_0022_0020shortcut_003D_0022Global_003A_003AAlt_002BF9_0020S_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BF9/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A4103_0029_0022_0020shortcut_003D_0022Global_003A_003AAlt_002BF9_0020A_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BHome/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BHome/Commands/=_003Cdata_0020id_003D_0022_0028_007B11ac0a76_002D365e_002D490d_002Dabad_002De44e52897c7d_007D_003A5913_0029_0022_0020shortcut_003D_0022ADO_002ENET_0020Entity_0020Data_0020Model_0020Designer_003A_003AAlt_002BHome_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BLeft/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BLeft/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1201_0029_0022_0020shortcut_003D_0022VC_0020Dialog_0020Editor_003A_003AAlt_002BLeft_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BLeft/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1800_0029_0022_0020shortcut_003D_0022Global_003A_003AAlt_002BLeft_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BLeft/Commands/=_003Cdata_0020id_003D_0022_0028_007B71037277_002D9175_002D48d2_002Dabe4_002D1e0f55629174_007D_003A8209_0029_0022_0020shortcut_003D_0022XML_0020Schema_0020Designer_003A_003AAlt_002BLeft_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BMultiply/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BMultiply/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A259_0029_0022_0020shortcut_003D_0022Global_003A_003AAlt_002BMultiply_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BNext/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BNext/Commands/=_003Cdata_0020id_003D_0022_0028_007B11ac0a76_002D365e_002D490d_002Dabad_002De44e52897c7d_007D_003A5912_0029_0022_0020shortcut_003D_0022ADO_002ENET_0020Entity_0020Data_0020Model_0020Designer_003A_003AAlt_002BNext_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BNext/Commands/=_003Cdata_0020id_003D_0022_0028_007Bffe1131c_002D8ea1_002D4d05_002D9728_002D34ad4611bda9_007D_003A4873_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AAlt_002BNext_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BOem7/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BOem7/Commands/=_003Cdata_0020id_003D_0022_0028_007Bd63db1f0_002D404e_002D4b21_002D9648_002Dca8d99245ec3_007D_003A25_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AAlt_002BOem7_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BOemcomma/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BOemcomma/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A146_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AAlt_002BOemcomma_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BOemcomma/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A146_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AAlt_002BOemcomma_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BOemPeriod/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BOemPeriod/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A145_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AAlt_002BOemPeriod_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BOemPeriod/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A145_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AAlt_002BOemPeriod_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BOemtilde/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BOemtilde/Commands/=_003Cdata_0020id_003D_0022_0028_007Bd63db1f0_002D404e_002D4b21_002D9648_002Dca8d99245ec3_007D_003A17_0029_0022_0020shortcut_003D_0022Global_003A_003AAlt_002BOemtilde_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BP/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BP/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1317_0029_0022_0020shortcut_003D_0022VC_0020Image_0020Editor_003A_003AAlt_002BP_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BPageUp/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BPageUp/Commands/=_003Cdata_0020id_003D_0022_0028_007B11ac0a76_002D365e_002D490d_002Dabad_002De44e52897c7d_007D_003A5911_0029_0022_0020shortcut_003D_0022ADO_002ENET_0020Entity_0020Data_0020Model_0020Designer_003A_003AAlt_002BPageUp_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BPageUp/Commands/=_003Cdata_0020id_003D_0022_0028_007Bffe1131c_002D8ea1_002D4d05_002D9728_002D34ad4611bda9_007D_003A4872_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AAlt_002BPageUp_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BPause/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BPause/Commands/=_003Cdata_0020id_003D_0022_0028_007B000af700_002Dcf09_002D4582_002D9e1c_002D2603403ab647_007D_003A2816_0029_0022_0020shortcut_003D_0022Query_0020Results_003A_003AAlt_002BPause_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BPause/Commands/=_003Cdata_0020id_003D_0022_0028_007B000af700_002Dcf09_002D4582_002D9e1c_002D2603403ab647_007D_003A775_0029_0022_0020shortcut_003D_0022Microsoft_0020SQL_0020Server_0020Data_0020Tools_002C_0020Schema_0020Compare_003A_003AAlt_002BPause_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BPause/Commands/=_003Cdata_0020id_003D_0022_0028_007Bb371c497_002D6d81_002D4b13_002D9db8_002D8e3e6abad0c3_007D_003A773_0029_0022_0020shortcut_003D_0022Microsoft_0020SQL_0020Server_0020Data_0020Tools_002C_0020T_002DSQL_0020Editor_003A_003AAlt_002BPause_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BR/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BR/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1311_0029_0022_0020shortcut_003D_0022VC_0020Image_0020Editor_003A_003AAlt_002BR_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BReturn/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BReturn/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A397_0029_0022_0020shortcut_003D_0022Global_003A_003AAlt_002BReturn_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BReturn/Commands/=_003Cdata_0020id_003D_0022_0028_007Bd63db1f0_002D404e_002D4b21_002D9648_002Dca8d99245ec3_007D_003A24_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AAlt_002BReturn_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BRight/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BRight/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A107_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AAlt_002BRight_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BRight/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A107_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AAlt_002BRight_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BRight/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1201_0029_0022_0020shortcut_003D_0022VC_0020Dialog_0020Editor_003A_003AAlt_002BRight_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BRight/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1801_0029_0022_0020shortcut_003D_0022Global_003A_003AAlt_002BRight_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BRight/Commands/=_003Cdata_0020id_003D_0022_0028_007B71037277_002D9175_002D48d2_002Dabe4_002D1e0f55629174_007D_003A8208_0029_0022_0020shortcut_003D_0022XML_0020Schema_0020Designer_003A_003AAlt_002BRight_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BSubtract/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BSubtract/Commands/=_003Cdata_0020id_003D_0022_0028_007B5dd0bb59_002D7076_002D4c59_002D88d3_002Dde36931f63f0_007D_003A500_0029_0022_0020shortcut_003D_0022Global_003A_003AAlt_002BSubtract_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BUp/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BUp/Commands/=_003Cdata_0020id_003D_0022_0028_007B11ac0a76_002D365e_002D490d_002Dabad_002De44e52897c7d_007D_003A5909_0029_0022_0020shortcut_003D_0022ADO_002ENET_0020Entity_0020Data_0020Model_0020Designer_003A_003AAlt_002BUp_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BUp/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1202_0029_0022_0020shortcut_003D_0022VC_0020Dialog_0020Editor_003A_003AAlt_002BUp_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BUp/Commands/=_003Cdata_0020id_003D_0022_0028_007B71037277_002D9175_002D48d2_002Dabe4_002D1e0f55629174_007D_003A8211_0029_0022_0020shortcut_003D_0022XML_0020Schema_0020Designer_003A_003AAlt_002BUp_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BW/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1314_0029_0022_0020shortcut_003D_0022VC_0020Image_0020Editor_003A_003AAlt_002BW_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=B/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=B/Commands/=_003Cdata_0020id_003D_0022_0028_007Badc1bc7b_002D958b_002D4548_002D9f9f_002D10fc49099825_007D_003A8482_0029_0022_0020shortcut_003D_0022Graph_0020Document_0020Editor_003A_003AB_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Back/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Back/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A2_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003ABack_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BA/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BA/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1307_0029_0022_0020shortcut_003D_0022VC_0020Image_0020Editor_003A_003AControl_002BA_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BA/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A31_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BA_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAdd/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAdd/Commands/=_003Cdata_0020id_003D_0022_0028_007B6ab63085_002Dc130_002D42cb_002Da868_002Dcd9a1bcb9dfe_007D_003A16896_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BAdd_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BA/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BA/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A729_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BA_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BC/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BC/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A243_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BC_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BC/Commands/=_003Cdata_0020id_003D_0022_0028_007Be156ff8e_002De7e5_002D4598_002D8663_002Da9a2fcb1b06e_007D_003A8193_0029_0022_0020shortcut_003D_0022Coded_0020UI_0020Test_0020Editor_003A_003AControl_002BAlt_002BC_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BD/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A257_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BD_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Bcb3675b8_002D701e_002D4f56_002D9167_002D2714e167ff3f_007D_003A12292_0029_0022_0020shortcut_003D_0022Report_0020Designer_003A_003AControl_002BAlt_002BD_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Be156ff8e_002De7e5_002D4598_002D8663_002Da9a2fcb1b06e_007D_003A8194_0029_0022_0020shortcut_003D_0022Coded_0020UI_0020Test_0020Editor_003A_003AControl_002BAlt_002BD_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BDown/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BDown/Commands/=_003Cdata_0020id_003D_0022_0028_007Bd7e8c5e1_002Dbdb8_002D11d0_002D9c88_002D0000f8040a53_007D_003A4417_0029_0022_0020shortcut_003D_0022HTML_0020Editor_0020Design_0020View_003A_003AControl_002BAlt_002BDown_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BE/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A339_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BE_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BF1/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BF1/Commands/=_003Cdata_0020id_003D_0022_0028_007B4a79114a_002D19e4_002D11d3_002Db86b_002D00c04f79f802_007D_003A285_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BF1_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BF10/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BF10/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A343_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BF10_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BF11/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BF11/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A342_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BF11_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BF12/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BF12/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A978_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BF12_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BF2/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BF2/Commands/=_003Cdata_0020id_003D_0022_0028_007B300a8877_002Db214_002D4385_002D8a7f_002Dab257498ffeb_007D_003A8718_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BF2_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BF5/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BF5/Commands/=_003Cdata_0020id_003D_0022_0028_007B501822e1_002Db5af_002D11d0_002Db4dc_002D00a0c91506ef_007D_003A12386_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BF5_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BF5/Commands/=_003Cdata_0020id_003D_0022_0028_007Bfb87333b_002D16c8_002D400e_002Dbc8f_002Df6b890410582_007D_003A3_0029_0022_0020shortcut_003D_0022XML_0020_0028Text_0029_0020Editor_003A_003AControl_002BAlt_002BF5_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BF6/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BF6/Commands/=_003Cdata_0020id_003D_0022_0028_007B6ab63085_002Dc130_002D42cb_002Da868_002Dcd9a1bcb9dfe_007D_003A17664_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BAlt_002BF6_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BG/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BG/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A259_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BG_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BHome/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BHome/Commands/=_003Cdata_0020id_003D_0022_0028_007Bd63db1f0_002D404e_002D4b21_002D9648_002Dca8d99245ec3_007D_003A9_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BHome_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BI/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BI/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A240_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BI_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BJ/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BJ/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A238_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BJ_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BL/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BL/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A234_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BL_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BLeft/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BLeft/Commands/=_003Cdata_0020id_003D_0022_0028_007Bd7e8c5e1_002Dbdb8_002D11d0_002D9c88_002D0000f8040a53_007D_003A4414_0029_0022_0020shortcut_003D_0022HTML_0020Editor_0020Design_0020View_003A_003AControl_002BAlt_002BLeft_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BM/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A16777728_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BM_0020D1_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A33554944_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BM_0020D2_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A50332160_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BM_0020D3_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A67109376_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BM_0020D4_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BN/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BN/Commands/=_003Cdata_0020id_003D_0022_0028_007Bb371c497_002D6d81_002D4b13_002D9db8_002D8e3e6abad0c3_007D_003A770_0029_0022_0020shortcut_003D_0022Microsoft_0020SQL_0020Server_0020Data_0020Tools_002C_0020T_002DSQL_0020Editor_003A_003AControl_002BAlt_002BN_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BNext/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BNext/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A286_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BNext_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BO/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BO/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A237_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BO_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BOemPeriod/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BOemPeriod/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A305_0029_0022_0020shortcut_003D_0022HTML_0020Editor_0020Source_0020View_003A_003AControl_002BAlt_002BOemPeriod_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BOemplus/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BOemplus/Commands/=_003Cdata_0020id_003D_0022_0028_007B4c87b692_002D1202_002D46aa_002Db64c_002Def01faec53da_007D_003A0_0029_0022_0020shortcut_003D_0022XAML_0020UI_0020Designer_003A_003AControl_002BAlt_002BOemplus_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BP/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BP/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A1060_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BP_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BPageUp/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BPageUp/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A287_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BPageUp_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BPause/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BPause/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A180_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BPause_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BQ/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BQ/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A254_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BQ_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BReturn/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BReturn/Commands/=_003Cdata_0020id_003D_0022_0028_007B30947ebe_002D9147_002D45f9_002D96cf_002D401bfc671a82_007D_003A259_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BReturn_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BRight/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BRight/Commands/=_003Cdata_0020id_003D_0022_0028_007Bd7e8c5e1_002Dbdb8_002D11d0_002D9c88_002D0000f8040a53_007D_003A4415_0029_0022_0020shortcut_003D_0022HTML_0020Editor_0020Design_0020View_003A_003AControl_002BAlt_002BRight_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BS/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BS/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1255_0029_0022_0020shortcut_003D_0022VC_0020Image_0020Editor_003A_003AControl_002BAlt_002BS_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BS/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A2260_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BS_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BSubtract/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BSubtract/Commands/=_003Cdata_0020id_003D_0022_0028_007B4c87b692_002D1202_002D46aa_002Db64c_002Def01faec53da_007D_003A2_0029_0022_0020shortcut_003D_0022XAML_0020UI_0020Designer_003A_003AControl_002BAlt_002BSubtract_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BUp/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BUp/Commands/=_003Cdata_0020id_003D_0022_0028_007Bd7e8c5e1_002Dbdb8_002D11d0_002D9c88_002D0000f8040a53_007D_003A4416_0029_0022_0020shortcut_003D_0022HTML_0020Editor_0020Design_0020View_003A_003AControl_002BAlt_002BUp_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BV/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BV/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A242_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BV_0020L_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BV/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A747_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BV_0020A_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BV/Commands/=_003Cdata_0020id_003D_0022_0028_007Ba654f3df_002D4bdb_002D4863_002Da750_002D75cdb50a03bc_007D_003A257_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BV_0020C_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BV/Commands/=_003Cdata_0020id_003D_0022_0028_007Ba654f3df_002D4bdb_002D4863_002Da750_002D75cdb50a03bc_007D_003A258_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BV_0020D_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BW/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A16777984_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BW_0020D1_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A33555200_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BW_0020D2_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A50332416_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BW_0020D3_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A67109632_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BW_0020D4_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BX/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BX/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A42_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BX_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BY/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BY/Commands/=_003Cdata_0020id_003D_0022_0028_007B5d8847d1_002D9a8a_002D431e_002D907a_002D62d9963f07fd_007D_003A8193_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BY_0020F_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BY/Commands/=_003Cdata_0020id_003D_0022_0028_007B5d8847d1_002D9a8a_002D431e_002D907a_002D62d9963f07fd_007D_003A8256_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BY_0020T_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BZ/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BZ/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A305_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BAlt_002BZ_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BB/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BB/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1211_0029_0022_0020shortcut_003D_0022VC_0020Dialog_0020Editor_003A_003AControl_002BB_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BB/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1306_0029_0022_0020shortcut_003D_0022VC_0020Image_0020Editor_003A_003AControl_002BB_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BB/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A560_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BB_0020Control_002BE_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BB/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A75_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BB_0020Control_002BC_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BB/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A76_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BB_0020Control_002BT_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BB/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A77_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BB_0020Control_002BN_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BB/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A78_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BB_0020Control_002BP_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BB/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A52_0029_0022_0020shortcut_003D_0022HTML_0020Editor_0020Design_0020View_003A_003AControl_002BB_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BBack/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BBack/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A92_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BBack_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BC/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BC/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A15_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BC_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1209_0029_0022_0020shortcut_003D_0022VC_0020Dialog_0020Editor_003A_003AControl_002BD_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A214_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD_0020Control_002BT_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A214_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD_0020T_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A240_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD_0020Control_002BI_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A240_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD_0020I_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A242_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD_0020Control_002BL_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A242_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD_0020L_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A243_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD_0020C_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A243_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD_0020Control_002BC_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A254_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD_0020Control_002BQ_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A254_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD_0020Q_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A339_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD_0020Control_002BE_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A339_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD_0020E_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A747_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD_0020A_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A747_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD_0020Control_002BA_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Bb371c497_002D6d81_002D4b13_002D9db8_002D8e3e6abad0c3_007D_003A774_0029_0022_0020shortcut_003D_0022Microsoft_0020SQL_0020Server_0020Data_0020Tools_002C_0020T_002DSQL_0020Editor_003A_003AControl_002BD_0020E_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Bb371c497_002D6d81_002D4b13_002D9db8_002D8e3e6abad0c3_007D_003A778_0029_0022_0020shortcut_003D_0022Microsoft_0020SQL_0020Server_0020Data_0020Tools_002C_0020T_002DSQL_0020Editor_003A_003AControl_002BD_0020A_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Bb371c497_002D6d81_002D4b13_002D9db8_002D8e3e6abad0c3_007D_003A779_0029_0022_0020shortcut_003D_0022Microsoft_0020SQL_0020Server_0020Data_0020Tools_002C_0020T_002DSQL_0020Editor_003A_003AControl_002BD_0020T_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Bb371c497_002D6d81_002D4b13_002D9db8_002D8e3e6abad0c3_007D_003A780_0029_0022_0020shortcut_003D_0022Microsoft_0020SQL_0020Server_0020Data_0020Tools_002C_0020T_002DSQL_0020Editor_003A_003AControl_002BD_0020G_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Bb371c497_002D6d81_002D4b13_002D9db8_002D8e3e6abad0c3_007D_003A781_0029_0022_0020shortcut_003D_0022Microsoft_0020SQL_0020Server_0020Data_0020Tools_002C_0020T_002DSQL_0020Editor_003A_003AControl_002BD_0020F_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Bb371c497_002D6d81_002D4b13_002D9db8_002D8e3e6abad0c3_007D_003A783_0029_0022_0020shortcut_003D_0022Microsoft_0020SQL_0020Server_0020Data_0020Tools_002C_0020T_002DSQL_0020Editor_003A_003AControl_002BD_0020R_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Bb371c497_002D6d81_002D4b13_002D9db8_002D8e3e6abad0c3_007D_003A803_0029_0022_0020shortcut_003D_0022Microsoft_0020SQL_0020Server_0020Data_0020Tools_002C_0020T_002DSQL_0020Editor_003A_003AControl_002BD_0020N_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Bb371c497_002D6d81_002D4b13_002D9db8_002D8e3e6abad0c3_007D_003A804_0029_0022_0020shortcut_003D_0022Microsoft_0020SQL_0020Server_0020Data_0020Tools_002C_0020T_002DSQL_0020Editor_003A_003AControl_002BD_0020P_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A16777728_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD_0020Control_002BY_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A16777728_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD_0020Y_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A16777984_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD_0020Control_002BW_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A16777984_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD_0020W_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A256_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD_0020B_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A256_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD_0020Control_002BB_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A259_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD_0020Control_002BR_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A259_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD_0020R_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A260_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD_0020Control_002BM_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A260_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD_0020M_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A305_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD_0020Control_002BP_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A305_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD_0020P_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A311_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD_0020Control_002BN_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A311_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD_0020N_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A8201_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD_0020Control_002BD_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A8201_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD_0020D_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Bcd203eb7_002D5920_002D47f9_002D8927_002D1804e7498464_007D_003A256_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD_0020Control_002BK_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Bcd203eb7_002D5920_002D47f9_002D8927_002D1804e7498464_007D_003A256_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD_0020K_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD0/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD0/Commands/=_003Cdata_0020id_003D_0022_0028_007B15061d55_002De726_002D4e3c_002D97d3_002D1b871d9b5ae9_007D_003A20488_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD0_0020Control_002BW_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD0/Commands/=_003Cdata_0020id_003D_0022_0028_007B15061d55_002De726_002D4e3c_002D97d3_002D1b871d9b5ae9_007D_003A20488_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD0_0020W_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD0/Commands/=_003Cdata_0020id_003D_0022_0028_007B34e61a32_002D1c10_002D4052_002Dabe7_002D264c46302ce4_007D_003A16464_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD0_0020Control_002BD_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD0/Commands/=_003Cdata_0020id_003D_0022_0028_007B34e61a32_002D1c10_002D4052_002Dabe7_002D264c46302ce4_007D_003A16464_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD0_0020D_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD0/Commands/=_003Cdata_0020id_003D_0022_0028_007B4c87b692_002D1202_002D46aa_002Db64c_002Def01faec53da_007D_003A3_0029_0022_0020shortcut_003D_0022XAML_0020UI_0020Designer_003A_003AControl_002BD0_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD0/Commands/=_003Cdata_0020id_003D_0022_0028_007B5d1f73e6_002D77cd_002D4a05_002D8f7b_002D2c4557503939_007D_003A4132_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD0_0020B_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD0/Commands/=_003Cdata_0020id_003D_0022_0028_007B5d1f73e6_002D77cd_002D4a05_002D8f7b_002D2c4557503939_007D_003A4132_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD0_0020Control_002BB_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD0/Commands/=_003Cdata_0020id_003D_0022_0028_007Be234e66e_002Dba64_002D4d71_002Db304_002D16f0a4c793f5_007D_003A17408_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD0_0020Control_002BH_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD0/Commands/=_003Cdata_0020id_003D_0022_0028_007Be234e66e_002Dba64_002D4d71_002Db304_002D16f0a4c793f5_007D_003A17408_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD0_0020H_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD0/Commands/=_003Cdata_0020id_003D_0022_0028_007Be234e66e_002Dba64_002D4d71_002Db304_002D16f0a4c793f5_007D_003A17409_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD0_0020Control_002BS_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD0/Commands/=_003Cdata_0020id_003D_0022_0028_007Be234e66e_002Dba64_002D4d71_002Db304_002D16f0a4c793f5_007D_003A17409_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD0_0020S_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD0/Commands/=_003Cdata_0020id_003D_0022_0028_007Be234e66e_002Dba64_002D4d71_002Db304_002D16f0a4c793f5_007D_003A17410_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD0_0020A_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD0/Commands/=_003Cdata_0020id_003D_0022_0028_007Be234e66e_002Dba64_002D4d71_002Db304_002D16f0a4c793f5_007D_003A17410_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD0_0020Control_002BA_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD0/Commands/=_003Cdata_0020id_003D_0022_0028_007Bf705f461_002D5ef4_002D4d78_002Da655_002Da990e31a8555_007D_003A16465_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD0_0020Control_002BR_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD0/Commands/=_003Cdata_0020id_003D_0022_0028_007Bf705f461_002D5ef4_002D4d78_002Da655_002Da990e31a8555_007D_003A16465_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD0_0020R_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD0/Commands/=_003Cdata_0020id_003D_0022_0028_007Bffe1131c_002D8ea1_002D4d05_002D9728_002D34ad4611bda9_007D_003A12304_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD0_0020Control_002BP_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD0/Commands/=_003Cdata_0020id_003D_0022_0028_007Bffe1131c_002D8ea1_002D4d05_002D9728_002D34ad4611bda9_007D_003A12304_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD0_0020P_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD0/Commands/=_003Cdata_0020id_003D_0022_0028_007Bffe1131c_002D8ea1_002D4d05_002D9728_002D34ad4611bda9_007D_003A12305_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD0_0020Control_002BM_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD0/Commands/=_003Cdata_0020id_003D_0022_0028_007Bffe1131c_002D8ea1_002D4d05_002D9728_002D34ad4611bda9_007D_003A12305_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BD0_0020M_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD1/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD1/Commands/=_003Cdata_0020id_003D_0022_0028_007B11ac0a76_002D365e_002D490d_002Dabad_002De44e52897c7d_007D_003A1_0029_0022_0020shortcut_003D_0022ADO_002ENET_0020Entity_0020Data_0020Model_0020Designer_003A_003AControl_002BD1_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD1/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A132_0029_0022_0020shortcut_003D_0022Query_0020Designer_003A_003AControl_002BD1_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD1/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A132_0029_0022_0020shortcut_003D_0022View_0020Designer_003A_003AControl_002BD1_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD1/Commands/=_003Cdata_0020id_003D_0022_0028_007B66bd4c1d_002D3401_002D4bcc_002Da942_002De4990827e6f7_007D_003A8256_0029_0022_0020shortcut_003D_0022Managed_0020Resources_0020Editor_003A_003AControl_002BD1_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD1/Commands/=_003Cdata_0020id_003D_0022_0028_007B71037277_002D9175_002D48d2_002Dabe4_002D1e0f55629174_007D_003A8192_0029_0022_0020shortcut_003D_0022XML_0020Schema_0020Designer_003A_003AControl_002BD1_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD1/Commands/=_003Cdata_0020id_003D_0022_0028_007B804fd2cc_002D2673_002D41b9_002D8cec_002Dd065fbfa3199_007D_003A265_0029_0022_0020shortcut_003D_0022VisualStudio_003A_003AControl_002BD1_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD2/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD2/Commands/=_003Cdata_0020id_003D_0022_0028_007B11ac0a76_002D365e_002D490d_002Dabad_002De44e52897c7d_007D_003A2_0029_0022_0020shortcut_003D_0022ADO_002ENET_0020Entity_0020Data_0020Model_0020Designer_003A_003AControl_002BD2_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD2/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A134_0029_0022_0020shortcut_003D_0022Query_0020Designer_003A_003AControl_002BD2_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD2/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A134_0029_0022_0020shortcut_003D_0022View_0020Designer_003A_003AControl_002BD2_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD2/Commands/=_003Cdata_0020id_003D_0022_0028_007B66bd4c1d_002D3401_002D4bcc_002Da942_002De4990827e6f7_007D_003A8257_0029_0022_0020shortcut_003D_0022Managed_0020Resources_0020Editor_003A_003AControl_002BD2_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD2/Commands/=_003Cdata_0020id_003D_0022_0028_007B71037277_002D9175_002D48d2_002Dabe4_002D1e0f55629174_007D_003A8195_0029_0022_0020shortcut_003D_0022XML_0020Schema_0020Designer_003A_003AControl_002BD2_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD3/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD3/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A131_0029_0022_0020shortcut_003D_0022Query_0020Designer_003A_003AControl_002BD3_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD3/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A131_0029_0022_0020shortcut_003D_0022View_0020Designer_003A_003AControl_002BD3_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD3/Commands/=_003Cdata_0020id_003D_0022_0028_007B66bd4c1d_002D3401_002D4bcc_002Da942_002De4990827e6f7_007D_003A8258_0029_0022_0020shortcut_003D_0022Managed_0020Resources_0020Editor_003A_003AControl_002BD3_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD3/Commands/=_003Cdata_0020id_003D_0022_0028_007B71037277_002D9175_002D48d2_002Dabe4_002D1e0f55629174_007D_003A8196_0029_0022_0020shortcut_003D_0022XML_0020Schema_0020Designer_003A_003AControl_002BD3_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD4/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD4/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A133_0029_0022_0020shortcut_003D_0022Query_0020Designer_003A_003AControl_002BD4_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD4/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A133_0029_0022_0020shortcut_003D_0022View_0020Designer_003A_003AControl_002BD4_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD4/Commands/=_003Cdata_0020id_003D_0022_0028_007B66bd4c1d_002D3401_002D4bcc_002Da942_002De4990827e6f7_007D_003A8259_0029_0022_0020shortcut_003D_0022Managed_0020Resources_0020Editor_003A_003AControl_002BD4_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD5/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD5/Commands/=_003Cdata_0020id_003D_0022_0028_007B66bd4c1d_002D3401_002D4bcc_002Da942_002De4990827e6f7_007D_003A8260_0029_0022_0020shortcut_003D_0022Managed_0020Resources_0020Editor_003A_003AControl_002BD5_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD6/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD6/Commands/=_003Cdata_0020id_003D_0022_0028_007B66bd4c1d_002D3401_002D4bcc_002Da942_002De4990827e6f7_007D_003A8261_0029_0022_0020shortcut_003D_0022Managed_0020Resources_0020Editor_003A_003AControl_002BD6_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BDelete/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BDelete/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A91_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BDelete_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BDelete/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A17_0029_0022_0020shortcut_003D_0022Class_0020Diagram_003A_003AControl_002BDelete_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BDelete/Commands/=_003Cdata_0020id_003D_0022_0028_007Be4b9bb05_002D1963_002D4774_002D8cfc_002D518359e3fce3_007D_003A12034_0029_0022_0020shortcut_003D_0022Managed_0020Resources_0020Editor_003A_003AControl_002BDelete_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BDelete/Commands/=_003Cdata_0020id_003D_0022_0028_007Be4b9bb05_002D1963_002D4774_002D8cfc_002D518359e3fce3_007D_003A12034_0029_0022_0020shortcut_003D_0022Settings_0020Designer_003A_003AControl_002BDelete_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BDivide/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BDivide/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A337_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BDivide_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BDown/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BDown/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1225_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BDown_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BDown/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1225_0029_0022_0020shortcut_003D_0022HTML_0020Editor_0020Design_0020View_003A_003AControl_002BDown_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BDown/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1225_0029_0022_0020shortcut_003D_0022Report_0020Designer_003A_003AControl_002BDown_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BDown/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1225_0029_0022_0020shortcut_003D_0022Windows_0020Forms_0020Designer_003A_003AControl_002BDown_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BDown/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1358_0029_0022_0020shortcut_003D_0022VC_0020Image_0020Editor_003A_003AControl_002BDown_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BDown/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A36_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BDown_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BDown/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A36_0029_0022_0020shortcut_003D_0022VC_0020Dialog_0020Editor_003A_003AControl_002BDown_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A105_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BE_0020Control_002BS_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A112_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BE_0020Control_002BF_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A115_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BE_0020Control_002BT_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A136_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BE_0020Control_002BC_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A137_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BE_0020Control_002BU_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A143_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BE_0020Control_002BD_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A51_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BE_0020Control_002BA_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A64_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BE_0020Control_002BOemBackslash_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B6ab63085_002Dc130_002D42cb_002Da868_002Dcd9a1bcb9dfe_007D_003A16384_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BE_0020Control_002BP_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B6ab63085_002Dc130_002D42cb_002Da868_002Dcd9a1bcb9dfe_007D_003A16384_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BE_0020P_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B6ab63085_002Dc130_002D42cb_002Da868_002Dcd9a1bcb9dfe_007D_003A16400_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BE_0020Control_002BE_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B6ab63085_002Dc130_002D42cb_002Da868_002Dcd9a1bcb9dfe_007D_003A16400_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BE_0020E_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B6ab63085_002Dc130_002D42cb_002Da868_002Dcd9a1bcb9dfe_007D_003A16416_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BE_0020Control_002BX_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B6ab63085_002Dc130_002D42cb_002Da868_002Dcd9a1bcb9dfe_007D_003A16416_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BE_0020X_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B6ab63085_002Dc130_002D42cb_002Da868_002Dcd9a1bcb9dfe_007D_003A16432_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BE_0020C_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B6ab63085_002Dc130_002D42cb_002Da868_002Dcd9a1bcb9dfe_007D_003A16432_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BE_0020Control_002BC_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B6ab63085_002Dc130_002D42cb_002Da868_002Dcd9a1bcb9dfe_007D_003A16448_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BE_0020Control_002BY_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B6ab63085_002Dc130_002D42cb_002Da868_002Dcd9a1bcb9dfe_007D_003A16448_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BE_0020Y_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B6ab63085_002Dc130_002D42cb_002Da868_002Dcd9a1bcb9dfe_007D_003A16464_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BE_0020Control_002BR_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B6ab63085_002Dc130_002D42cb_002Da868_002Dcd9a1bcb9dfe_007D_003A16464_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BE_0020R_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B6ab63085_002Dc130_002D42cb_002Da868_002Dcd9a1bcb9dfe_007D_003A16672_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BE_0020Control_002BM_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B6ab63085_002Dc130_002D42cb_002Da868_002Dcd9a1bcb9dfe_007D_003A16672_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BE_0020M_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B6ab63085_002Dc130_002D42cb_002Da868_002Dcd9a1bcb9dfe_007D_003A16688_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BE_0020Control_002BS_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B6ab63085_002Dc130_002D42cb_002Da868_002Dcd9a1bcb9dfe_007D_003A16688_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BE_0020S_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B6ab63085_002Dc130_002D42cb_002Da868_002Dcd9a1bcb9dfe_007D_003A17152_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BE_0020A_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B6ab63085_002Dc130_002D42cb_002Da868_002Dcd9a1bcb9dfe_007D_003A17152_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BE_0020Control_002BA_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B6ab63085_002Dc130_002D42cb_002Da868_002Dcd9a1bcb9dfe_007D_003A17168_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BE_0020Control_002BV_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B6ab63085_002Dc130_002D42cb_002Da868_002Dcd9a1bcb9dfe_007D_003A17168_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BE_0020V_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B6ab63085_002Dc130_002D42cb_002Da868_002Dcd9a1bcb9dfe_007D_003A17184_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BE_0020Control_002BO_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B6ab63085_002Dc130_002D42cb_002Da868_002Dcd9a1bcb9dfe_007D_003A17184_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BE_0020O_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B6ab63085_002Dc130_002D42cb_002Da868_002Dcd9a1bcb9dfe_007D_003A17200_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BE_0020Control_002BI_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B6ab63085_002Dc130_002D42cb_002Da868_002Dcd9a1bcb9dfe_007D_003A17200_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BE_0020I_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B6ab63085_002Dc130_002D42cb_002Da868_002Dcd9a1bcb9dfe_007D_003A17408_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BE_0020Control_002BN_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B6ab63085_002Dc130_002D42cb_002Da868_002Dcd9a1bcb9dfe_007D_003A17408_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BE_0020N_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B6ab63085_002Dc130_002D42cb_002Da868_002Dcd9a1bcb9dfe_007D_003A17440_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BE_0020Control_002BF_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BE/Commands/=_003Cdata_0020id_003D_0022_0028_007B6ab63085_002Dc130_002D42cb_002Da868_002Dcd9a1bcb9dfe_007D_003A17440_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BE_0020F_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BEnd/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BEnd/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A17_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BEnd_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BF/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BF/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1304_0029_0022_0020shortcut_003D_0022VC_0020Image_0020Editor_003A_003AControl_002BF_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BF/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A97_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BF_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BF1/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BF1/Commands/=_003Cdata_0020id_003D_0022_0028_007B4a79114a_002D19e4_002D11d3_002Db86b_002D00c04f79f802_007D_003A256_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BF1_0020Control_002BV_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BF1/Commands/=_003Cdata_0020id_003D_0022_0028_007B4a79114a_002D19e4_002D11d3_002Db86b_002D00c04f79f802_007D_003A256_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BF1_0020V_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BF1/Commands/=_003Cdata_0020id_003D_0022_0028_007B4a79114a_002D19e4_002D11d3_002Db86b_002D00c04f79f802_007D_003A285_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BF1_0020Control_002BM_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BF1/Commands/=_003Cdata_0020id_003D_0022_0028_007B4a79114a_002D19e4_002D11d3_002Db86b_002D00c04f79f802_007D_003A285_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BF1_0020M_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BF10/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BF10/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A251_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BF10_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BF12/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BF12/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc987c8ba_002Db156_002D4874_002D83ed_002Ddd44aafee8c5_007D_003A4113_0029_0022_0020shortcut_003D_0022Graphics_0020Debugger_003A_003AControl_002BF12_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BF2/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BF2/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A293_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BF2_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BF3/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BF3/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A372_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BF3_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BF4/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BF4/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A658_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BF4_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BF5/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BF5/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A368_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BF5_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BF7/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BF7/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A350_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BF7_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BF9/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BF9/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1206_0029_0022_0020shortcut_003D_0022VC_0020Dialog_0020Editor_003A_003AControl_002BF9_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BF9/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A376_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BF9_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BG/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BG/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1204_0029_0022_0020shortcut_003D_0022VC_0020Dialog_0020Editor_003A_003AControl_002BG_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BG/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A207_0029_0022_0020shortcut_003D_0022Query_0020Designer_003A_003AControl_002BG_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BG/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A207_0029_0022_0020shortcut_003D_0022View_0020Designer_003A_003AControl_002BG_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BG/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A231_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BG_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BG/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A257_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BG_0020Control_002BP_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BG/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A258_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BG_0020Control_002BZ_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BG/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A260_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BG_0020Control_002BO_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BG/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A4097_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BG_0020Control_002BQ_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BG/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A4098_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BG_0020Control_002BW_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BG/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A4099_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BG_0020Control_002BE_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BG/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A4100_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BG_0020Control_002BR_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BG/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A4101_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BG_0020Control_002BS_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BG/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A4117_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BG_0020Control_002BN_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BG/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A4133_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BG_0020Control_002BK_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BG/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A4134_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BG_0020Control_002BL_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BG/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A4146_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BG_0020Control_002BD4_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BG/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A4147_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BG_0020Control_002BD1_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BG/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A4148_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BG_0020Control_002BD2_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BG/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A4149_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BG_0020Control_002BD3_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BG/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A4150_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BG_0020Control_002BF_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BG/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A4151_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BG_0020Control_002BI_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BG/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A4152_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BG_0020Control_002BC_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BG/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A4153_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BG_0020Control_002BM_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BG/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A4161_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BG_0020Control_002BD6_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BG/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A4162_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BG_0020Control_002BD7_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BG/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A4164_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BG_0020Control_002BV_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BG/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A4359_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BG_0020Control_002BG_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BG/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A4609_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BG_0020Control_002BB_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BH/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BH/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1236_0029_0022_0020shortcut_003D_0022VC_0020Image_0020Editor_003A_003AControl_002BH_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BH/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A230_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BH_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BHome/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BHome/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A15_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BHome_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BI/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BI/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A122_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BI_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BI/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1305_0029_0022_0020shortcut_003D_0022VC_0020Image_0020Editor_003A_003AControl_002BI_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BI/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A70_0029_0022_0020shortcut_003D_0022HTML_0020Editor_0020Design_0020View_003A_003AControl_002BI_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BInsert/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BInsert/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A15_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BInsert_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BJ/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BJ/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A108_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BJ_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BJ/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1247_0029_0022_0020shortcut_003D_0022VC_0020Image_0020Editor_003A_003AControl_002BJ_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A104_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BK_0020Control_002BP_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A104_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BK_0020P_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A104_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BK_0020Control_002BP_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A104_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BK_0020P_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A107_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BK_0020Control_002BW_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A107_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BK_0020W_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A107_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BK_0020Control_002BW_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A107_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BK_0020W_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A108_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BK_0020Control_002BL_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A108_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BK_0020L_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A108_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BK_0020Control_002BL_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A108_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BK_0020L_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A112_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BK_0020Control_002BF_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A115_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BK_0020Control_002BH_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A116_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BK_0020Control_002BI_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A116_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BK_0020I_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A116_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BK_0020Control_002BI_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A116_0029_0022_0020shortcut_003D_0022Workflow_0020Designer_003A_003AControl_002BK_0020I_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A136_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BK_0020Control_002BC_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A137_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BK_0020Control_002BU_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1557_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BK_0020Control_002BM_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1557_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BK_0020M_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1561_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BK_0020Control_002BS_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1561_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BK_0020S_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1680_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BK_0020Control_002BV_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A2301_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BK_0020Control_002BT_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A2301_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BK_0020T_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A323_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BK_0020Control_002BX_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A323_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BK_0020X_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A51_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BK_0020Control_002BA_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A565_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BK_0020Control_002BF_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A64_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BK_0020Control_002BOemBackslash_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A76_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BK_0020Control_002BK_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A77_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BK_0020Control_002BN_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A78_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BK_0020Control_002BP_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B30947ebe_002D9147_002D45f9_002D96cf_002D401bfc671a82_007D_003A257_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BK_0020Control_002BG_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A1122_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BK_0020Control_002BW_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A1123_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BK_0020Control_002BB_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A1915_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BK_0020Control_002BR_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A1915_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BK_0020R_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BL/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BL/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1308_0029_0022_0020shortcut_003D_0022VC_0020Image_0020Editor_003A_003AControl_002BL_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BL/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1955_0029_0022_0020shortcut_003D_0022DataSet_0020Editor_003A_003AControl_002BL_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BL/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A280_0029_0022_0020shortcut_003D_0022HTML_0020Editor_0020Design_0020View_003A_003AControl_002BL_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BL/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A61_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BL_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BL/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A24657_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BL_0020Control_002BD1_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BL/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A24658_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BL_0020Control_002BD2_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BL/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A24659_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BL_0020Control_002BD3_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BL/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A24660_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BL_0020Control_002BD4_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BL/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A259_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BL_0020Control_002BO_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BL/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A4104_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BL_0020Control_002BX_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BL/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A4105_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BL_0020Control_002BY_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BL/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A4112_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BL_0020Control_002BZ_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BL/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A4120_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BL_0020Control_002BW_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BL/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A4137_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BL_0020Control_002BP_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BL/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A4138_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BL_0020Control_002BQ_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BL/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A4353_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BL_0020Control_002BL_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BL/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A4354_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BL_0020Control_002BR_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BL/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A4355_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BL_0020Control_002BF_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BL/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A4356_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BL_0020Control_002BB_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BL/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A4357_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BL_0020Control_002BT_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BL/Commands/=_003Cdata_0020id_003D_0022_0028_007B611fbeea_002D2877_002D4010_002D925e_002Dc526b8adb802_007D_003A4358_0029_0022_0020shortcut_003D_0022Graphics_0020Designers_003A_003AControl_002BL_0020Control_002BU_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BLeft/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BLeft/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1224_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BLeft_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BLeft/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1224_0029_0022_0020shortcut_003D_0022Report_0020Designer_003A_003AControl_002BLeft_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BLeft/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1224_0029_0022_0020shortcut_003D_0022Windows_0020Forms_0020Designer_003A_003AControl_002BLeft_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BLeft/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1359_0029_0022_0020shortcut_003D_0022VC_0020Image_0020Editor_003A_003AControl_002BLeft_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BLeft/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A39_0029_0022_0020shortcut_003D_0022VC_0020Dialog_0020Editor_003A_003AControl_002BLeft_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BLeft/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A93_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BLeft_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1246_0029_0022_0020shortcut_003D_0022VC_0020Dialog_0020Editor_003A_003AControl_002BM_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A128_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BM_0020Control_002BH_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A129_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BM_0020Control_002BM_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A129_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BM_0020M_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A130_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BM_0020Control_002BL_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A130_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BM_0020L_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A131_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BM_0020Control_002BP_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A131_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BM_0020P_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A132_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BM_0020Control_002BU_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1321_0029_0022_0020shortcut_003D_0022VC_0020Image_0020Editor_003A_003AControl_002BM_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A133_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BM_0020Control_002BO_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A133_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BM_0020O_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A322_0029_0022_0020shortcut_003D_0022HTML_0020Editor_0020Design_0020View_003A_003AControl_002BM_0020Control_002BM_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A325_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BM_0020Control_002BT_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A413_0029_0022_0020shortcut_003D_0022HTML_0020Editor_0020Design_0020View_003A_003AControl_002BM_0020Control_002BC_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007B5570eab3_002D9d8e_002D4577_002D95b6_002D604b88ace02e_007D_003A1282_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BM_0020S_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007B5570eab3_002D9d8e_002D4577_002D95b6_002D604b88ace02e_007D_003A1283_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BM_0020U_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007B5570eab3_002D9d8e_002D4577_002D95b6_002D604b88ace02e_007D_003A1284_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BM_0020N_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007B5570eab3_002D9d8e_002D4577_002D95b6_002D604b88ace02e_007D_003A1285_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BM_0020B_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007B5570eab3_002D9d8e_002D4577_002D95b6_002D604b88ace02e_007D_003A1286_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BM_0020I_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007B5570eab3_002D9d8e_002D4577_002D95b6_002D604b88ace02e_007D_003A1287_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BM_0020P_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007B5570eab3_002D9d8e_002D4577_002D95b6_002D604b88ace02e_007D_003A1288_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BM_0020R_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007B5570eab3_002D9d8e_002D4577_002D95b6_002D604b88ace02e_007D_003A1289_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BM_0020T_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007B5570eab3_002D9d8e_002D4577_002D95b6_002D604b88ace02e_007D_003A1297_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BM_0020X_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007B5570eab3_002D9d8e_002D4577_002D95b6_002D604b88ace02e_007D_003A258_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BM_0020D_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007B5570eab3_002D9d8e_002D4577_002D95b6_002D604b88ace02e_007D_003A259_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BM_0020E_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007B5570eab3_002D9d8e_002D4577_002D95b6_002D604b88ace02e_007D_003A372_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BM_0020K_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007B5dd0bb59_002D7076_002D4c59_002D88d3_002Dde36931f63f0_007D_003A2500_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BM_0020Control_002BX_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007B5dd0bb59_002D7076_002D4c59_002D88d3_002Dde36931f63f0_007D_003A2501_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BM_0020Control_002BA_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007B5dd0bb59_002D7076_002D4c59_002D88d3_002Dde36931f63f0_007D_003A2502_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BM_0020Control_002BE_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007B5dd0bb59_002D7076_002D4c59_002D88d3_002Dde36931f63f0_007D_003A2503_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BM_0020Control_002BS_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007Bca4cbf4a_002D9214_002D4bff_002Dbb3a_002D43b1f556ebee_007D_003A100_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BM_0020Control_002BV_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007Bca4cbf4a_002D9214_002D4bff_002Dbb3a_002D43b1f556ebee_007D_003A300_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BM_0020Control_002BC_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007Bca4cbf4a_002D9214_002D4bff_002Dbb3a_002D43b1f556ebee_007D_003A400_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BM_0020Control_002BG_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007Bca4cbf4a_002D9214_002D4bff_002Dbb3a_002D43b1f556ebee_007D_003A500_0029_0022_0020shortcut_003D_0022HTML_0020Editor_0020Source_0020View_003A_003AControl_002BM_0020Control_002BG_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BNext/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BNext/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A33_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BNext_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BNext/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A1043_0029_0022_0020shortcut_003D_0022HTML_0020Editor_0020Design_0020View_003A_003AControl_002BNext_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BNext/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A1043_0029_0022_0020shortcut_003D_0022HTML_0020Editor_0020Source_0020View_003A_003AControl_002BNext_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BNext/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A286_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BNext_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BO/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BO/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A222_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BO_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOem1/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOem1/Commands/=_003Cdata_0020id_003D_0022_0028_007Bd63db1f0_002D404e_002D4b21_002D9648_002Dca8d99245ec3_007D_003A20_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BOem1_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOem6/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOem6/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1361_0029_0022_0020shortcut_003D_0022VC_0020Image_0020Editor_003A_003AControl_002BOem6_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOem6/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A53_0029_0022_0020shortcut_003D_0022Text_0020Editor_003A_003AControl_002BOem6_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOem7/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOem7/Commands/=_003Cdata_0020id_003D_0022_0028_007Be234e66e_002Dba64_002D4d71_002Db304_002D16f0a4c793f5_007D_003A16406_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BOem7_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemBackslash/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemBackslash/Commands/=_003Cdata_0020id_003D_0022_0028_007B03f46784_002D2f90_002D4122_002D91ec_002D72ff9e11d9a3_007D_003A257_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BOemBackslash_0020Control_002BS_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemBackslash/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1926_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BOemBackslash_0020Control_002BD_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemBackslash/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1926_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BOemBackslash_0020D_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemBackslash/Commands/=_003Cdata_0020id_003D_0022_0028_007B14bca3af_002D5e27_002D4307_002D8492_002D84af8647ea7c_007D_003A8193_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BOemBackslash_0020Control_002BR_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemBackslash/Commands/=_003Cdata_0020id_003D_0022_0028_007B4bcf92c9_002D7fea_002D4913_002Daf26_002Df93582ba9c7a_007D_003A34_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BOemBackslash_0020Control_002BN_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemBackslash/Commands/=_003Cdata_0020id_003D_0022_0028_007B5d4c0442_002Dc0a2_002D4be8_002D9b4d_002Dab1c28450942_007D_003A1026_0029_0022_0020shortcut_003D_0022Difference_0020Viewer_003A_003AControl_002BOemBackslash_0020Control_002BTab_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemBackslash/Commands/=_003Cdata_0020id_003D_0022_0028_007B5d4c0442_002Dc0a2_002D4be8_002D9b4d_002Dab1c28450942_007D_003A513_0029_0022_0020shortcut_003D_0022Difference_0020Viewer_003A_003AControl_002BOemBackslash_0020Control_002BD2_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemBackslash/Commands/=_003Cdata_0020id_003D_0022_0028_007B5d4c0442_002Dc0a2_002D4be8_002D9b4d_002Dab1c28450942_007D_003A514_0029_0022_0020shortcut_003D_0022Difference_0020Viewer_003A_003AControl_002BOemBackslash_0020Control_002BD1_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemBackslash/Commands/=_003Cdata_0020id_003D_0022_0028_007B5d4c0442_002Dc0a2_002D4be8_002D9b4d_002Dab1c28450942_007D_003A515_0029_0022_0020shortcut_003D_0022Difference_0020Viewer_003A_003AControl_002BOemBackslash_0020Control_002BD3_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemBackslash/Commands/=_003Cdata_0020id_003D_0022_0028_007B5d4c0442_002Dc0a2_002D4be8_002D9b4d_002Dab1c28450942_007D_003A516_0029_0022_0020shortcut_003D_0022Difference_0020Viewer_003A_003AControl_002BOemBackslash_0020Control_002BD4_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemBackslash/Commands/=_003Cdata_0020id_003D_0022_0028_007B5d4c0442_002Dc0a2_002D4be8_002D9b4d_002Dab1c28450942_007D_003A769_0029_0022_0020shortcut_003D_0022Difference_0020Viewer_003A_003AControl_002BOemBackslash_0020Control_002BSpace_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemBackslash/Commands/=_003Cdata_0020id_003D_0022_0028_007B5d4c0442_002Dc0a2_002D4be8_002D9b4d_002Dab1c28450942_007D_003A771_0029_0022_0020shortcut_003D_0022Difference_0020Viewer_003A_003AControl_002BOemBackslash_0020Control_002BDown_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemBackslash/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A236_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BOemBackslash_0020Control_002BT_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemBackslash/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A236_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BOemBackslash_0020T_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemBackslash/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A320_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BOemBackslash_0020Control_002BE_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemBackslash/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A320_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BOemBackslash_0020E_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemBackslash/Commands/=_003Cdata_0020id_003D_0022_0028_007Bb11771f1_002Df6cb_002D467e_002D8b71_002D428b5cedca5f_007D_003A257_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BOemBackslash_0020Control_002BU_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemBackslash/Commands/=_003Cdata_0020id_003D_0022_0028_007Be234e66e_002Dba64_002D4d71_002Db304_002D16f0a4c793f5_007D_003A16400_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BOemBackslash_0020Control_002BM_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemBackslash/Commands/=_003Cdata_0020id_003D_0022_0028_007Be3bc1c4f_002D9e6c_002D9119_002Da304_002D1b2bc6af5d32_007D_003A24582_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BOemBackslash_0020Control_002BC_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemBackslash/Commands/=_003Cdata_0020id_003D_0022_0028_007Be3bc1c4f_002D9e6c_002D9119_002Da304_002D1b2bc6af5d32_007D_003A24583_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BOemBackslash_0020Control_002BA_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemcomma/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemcomma/Commands/=_003Cdata_0020id_003D_0022_0028_007B2a8866dc_002D7bde_002D4dc8_002Da360_002Da60679534384_007D_003A256_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BOemcomma_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemOpenBrackets/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemOpenBrackets/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1359_0029_0022_0020shortcut_003D_0022VC_0020Image_0020Editor_003A_003AControl_002BOemOpenBrackets_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemOpenBrackets/Commands/=_003Cdata_0020id_003D_0022_0028_007Bd63db1f0_002D404e_002D4b21_002D9648_002Dca8d99245ec3_007D_003A36_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BOemOpenBrackets_0020Control_002BS_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemOpenBrackets/Commands/=_003Cdata_0020id_003D_0022_0028_007Bd63db1f0_002D404e_002D4b21_002D9648_002Dca8d99245ec3_007D_003A36_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BOemOpenBrackets_0020S_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemOpenBrackets/Commands/=_003Cdata_0020id_003D_0022_0028_007Bd63db1f0_002D404e_002D4b21_002D9648_002Dca8d99245ec3_007D_003A39_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BOemOpenBrackets_0020Control_002BO_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemOpenBrackets/Commands/=_003Cdata_0020id_003D_0022_0028_007Bd63db1f0_002D404e_002D4b21_002D9648_002Dca8d99245ec3_007D_003A39_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BOemOpenBrackets_0020O_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemOpenBrackets/Commands/=_003Cdata_0020id_003D_0022_0028_007Bd63db1f0_002D404e_002D4b21_002D9648_002Dca8d99245ec3_007D_003A40_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BOemOpenBrackets_0020Control_002BP_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemOpenBrackets/Commands/=_003Cdata_0020id_003D_0022_0028_007Bd63db1f0_002D404e_002D4b21_002D9648_002Dca8d99245ec3_007D_003A40_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BOemOpenBrackets_0020P_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemPeriod/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemPeriod/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1355_0029_0022_0020shortcut_003D_0022VC_0020Image_0020Editor_003A_003AControl_002BOemPeriod_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemPeriod/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A147_0029_0022_0020shortcut_003D_0022Global_003A_003AControl_002BOemPeriod_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemplus/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BOemplus/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1352_0029_0022_0020shortcut_003D_0022VC_0020Image_0020Editor_003A_003AControl_002BOemplus_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>