forked from IdeaBlade/Punch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ReSharper.CodeStyle.DotSettings
1050 lines (1049 loc) · 246 KB
/
ReSharper.CodeStyle.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/ContextActionTable/DisabledContextActions/=JetBrains_002EReSharper_002EIntentions_002ECSharp_002EContextActions_002EInlineAsAnonymousTypeAction/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeEditing/ContextActionTable/DisabledContextActions/=JetBrains_002EReSharper_002EIntentions_002ECSharp_002EContextActions_002ENonI18n_002ECSharpSurroundWithQuotesAction/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeEditing/Intellisense/CodeCompletion/AutoCompleteBasicCompletion/@EntryValue">True</s:Boolean>
<s:String x:Key="/Default/CodeEditing/Intellisense/CodeCompletion/EditorBrowsableProcessing/@EntryValue">Normal</s:String>
<s:Boolean x:Key="/Default/CodeEditing/Intellisense/LookupWindow/ShowSummary/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeEditing/Localization/CSharpLocalizationOptions/DontAnalyseVerbatimStrings/@EntryValue">False</s:Boolean>
<s:String x:Key="/Default/CodeInspection/Highlighting/CodeIssueFilter/IssueTypesToHide/=_003CConfigurableSeverity_0020Id_003D_0022ClassCanBeSealed_002EGlobal_0022_0020_002F_003E/@EntryIndexedValue">DoHide</s:String>
<s:String x:Key="/Default/CodeInspection/Highlighting/CodeIssueFilter/IssueTypesToHide/=_003CConfigurableSeverity_0020Id_003D_0022ClassCanBeSealed_002ELocal_0022_0020_002F_003E/@EntryIndexedValue">DoHide</s:String>
<s:String x:Key="/Default/CodeInspection/Highlighting/CodeIssueFilter/IssueTypesToHide/=_003CConfigurableSeverity_0020Id_003D_0022ConvertIfStatementToReturnStatement_0022_0020_002F_003E/@EntryIndexedValue">DoHide</s:String>
<s:String x:Key="/Default/CodeInspection/Highlighting/CodeIssueFilter/IssueTypesToHide/=_003CConfigurableSeverity_0020Id_003D_0022ConvertIfStatementToSwitchStatement_0022_0020_002F_003E/@EntryIndexedValue">DoHide</s:String>
<s:String x:Key="/Default/CodeInspection/Highlighting/CodeIssueFilter/IssueTypesToHide/=_003CConfigurableSeverity_0020Id_003D_0022ConvertToAutoPropertyWithPrivateSetter_0022_0020_002F_003E/@EntryIndexedValue">DoHide</s:String>
<s:String x:Key="/Default/CodeInspection/Highlighting/CodeIssueFilter/IssueTypesToHide/=_003CConfigurableSeverity_0020Id_003D_0022InvertIf_0022_0020_002F_003E/@EntryIndexedValue">DoHide</s:String>
<s:String x:Key="/Default/CodeInspection/Highlighting/CodeIssueFilter/IssueTypesToHide/=_003CConfigurableSeverity_0020Id_003D_0022LoopCanBePartlyConvertedToQuery_0022_0020_002F_003E/@EntryIndexedValue">DoHide</s:String>
<s:String x:Key="/Default/CodeInspection/Highlighting/CodeIssueFilter/IssueTypesToHide/=_003CConfigurableSeverity_0020Id_003D_0022MemberCanBeInternal_0022_0020_002F_003E/@EntryIndexedValue">DoHide</s:String>
<s:String x:Key="/Default/CodeInspection/Highlighting/CodeIssueFilter/IssueTypesToHide/=_003CConfigurableSeverity_0020Id_003D_0022MemberCanBeMadeStatic_002EGlobal_0022_0020_002F_003E/@EntryIndexedValue">DoHide</s:String>
<s:String x:Key="/Default/CodeInspection/Highlighting/CodeIssueFilter/IssueTypesToHide/=_003CConfigurableSeverity_0020Id_003D_0022MemberCanBeMadeStatic_002ELocal_0022_0020_002F_003E/@EntryIndexedValue">DoHide</s:String>
<s:String x:Key="/Default/CodeInspection/Highlighting/CodeIssueFilter/IssueTypesToHide/=_003CConfigurableSeverity_0020Id_003D_0022RedundantArgumentNameForLiteralExpression_0022_0020_002F_003E/@EntryIndexedValue">DoHide</s:String>
<s:String x:Key="/Default/CodeInspection/Highlighting/CodeIssueFilter/IssueTypesToHide/=_003CConfigurableSeverity_0020Id_003D_0022RedundantToStringCallForValueType_0022_0020_002F_003E/@EntryIndexedValue">DoHide</s:String>
<s:String x:Key="/Default/CodeInspection/Highlighting/CodeIssueFilter/IssueTypesToHide/=_003CConfigurableSeverity_0020Id_003D_0022SimilarAnonymousTypeNearby_0022_0020_002F_003E/@EntryIndexedValue">DoHide</s:String>
<s:String x:Key="/Default/CodeInspection/Highlighting/CodeIssueFilter/IssueTypesToHide/=_003CConfigurableSeverity_0020Id_003D_0022SuggestBaseTypeForParameter_0022_0020_002F_003E/@EntryIndexedValue">DoHide</s:String>
<s:String x:Key="/Default/CodeInspection/Highlighting/CodeIssueFilter/IssueTypesToHide/=_003CConfigurableSeverity_0020Id_003D_0022SuggestUseVarKeywordEverywhere_0022_0020_002F_003E/@EntryIndexedValue">DoHide</s:String>
<s:String x:Key="/Default/CodeInspection/Highlighting/CodeIssueFilter/IssueTypesToHide/=_003CConfigurableSeverity_0020Id_003D_0022TryStatementsCanBeMerged_0022_0020_002F_003E/@EntryIndexedValue">DoHide</s:String>
<s:String x:Key="/Default/CodeInspection/Highlighting/CodeIssueFilter/IssueTypesToHide/=_003CConfigurableSeverity_0020Id_003D_0022UnknownCssVendorExtension_0022_0020_002F_003E/@EntryIndexedValue">DoHide</s:String>
<s:String x:Key="/Default/CodeInspection/Highlighting/CodeIssueFilter/IssueTypesToHide/=_003CConfigurableSeverity_0020Id_003D_0022Xaml_002EBindingWithoutContextReferenceNotResolvedHighlighting_0022_0020_002F_003E/@EntryIndexedValue">DoHide</s:String>
<s:String x:Key="/Default/CodeInspection/Highlighting/CodeIssueFilter/IssueTypesToHide/=_003CStaticSeverity_0020Severity_003D_00222_0022_0020Title_003D_0022Structural_0020Search_0020Hints_0022_0020GroupId_003D_0022StructuralSearch_0022_0020_002F_003E/@EntryIndexedValue">DoHide</s:String>
<s:String x:Key="/Default/CodeStyle/CodeCleanup/Profiles/=Custom_0020Full_0020Cleanup/@EntryIndexedValue"><?xml version="1.0" encoding="utf-16"?><Profile name="Custom Full Cleanup"><CSRemoveCodeRedundancies>True</CSRemoveCodeRedundancies><CSMakeFieldReadonly>True</CSMakeFieldReadonly><CSUseVar><BehavourStyle>CAN_CHANGE_TO_IMPLICIT</BehavourStyle><LocalVariableStyle>ALWAYS_IMPLICIT</LocalVariableStyle><ForeachVariableStyle>ALWAYS_IMPLICIT</ForeachVariableStyle></CSUseVar><CSUpdateFileHeader>True</CSUpdateFileHeader><CSOptimizeUsings><OptimizeUsings>True</OptimizeUsings><EmbraceInRegion>False</EmbraceInRegion><RegionName></RegionName></CSOptimizeUsings><CSShortenReferences>True</CSShortenReferences><CSReformatCode>True</CSReformatCode><CSharpFormatDocComments>True</CSharpFormatDocComments><CSReorderTypeMembers>True</CSReorderTypeMembers><XMLReformatCode>True</XMLReformatCode></Profile></s:String>
<s:String x:Key="/Default/CodeStyle/CodeCleanup/RecentlyUsedProfile/@EntryValue">Custom Full Cleanup</s:String>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/SPACE_BEFORE_FIXED_PARENTHESES/@EntryValue">False</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/SPACE_BEFORE_SIZEOF_PARENTHESES/@EntryValue">False</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/SPACE_BEFORE_TYPEOF_PARENTHESES/@EntryValue">False</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/JavaScriptCodeFormatting/JavaScriptFormatOther/ALIGN_MULTIPLE_DECLARATION/@EntryValue">True</s:Boolean>
<s:String x:Key="/Default/CodeStyle/FileHeader/FileHeaderText/@EntryValue">====================================================================================================================
Copyright (c) 2012 IdeaBlade
====================================================================================================================
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS 
OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 
====================================================================================================================
USE OF THIS SOFTWARE IS GOVERENED BY THE LICENSING TERMS WHICH CAN BE FOUND AT
http://cocktail.ideablade.com/licensing
====================================================================================================================
</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/=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:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/EventHandlerPatternLong/@EntryValue">$object$_On$event$</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=Constants/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=EnumMember/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=Interfaces/@EntryIndexedValue"><Policy Inspect="True" Prefix="I" Suffix="" Style="AaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=LocalConstants/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=Locals/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=MethodPropertyEvent/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=Other/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=Parameters/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=PrivateConstants/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></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/=PrivateStaticFields/@EntryIndexedValue"><Policy Inspect="True" Prefix="_" Suffix="" Style="aaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=PrivateStaticReadonly/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=PublicFields/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=StaticReadonly/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=TypeParameters/@EntryIndexedValue"><Policy Inspect="True" Prefix="T" Suffix="" Style="AaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=TypesAndNamespaces/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=JS_005FCONSTRUCTOR/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=JS_005FFUNCTION/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=JS_005FGLOBAL_005FVARIABLE/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=JS_005FLABEL/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=JS_005FLOCAL_005FVARIABLE/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=JS_005FOBJECT_005FPROPERTY_005FOF_005FFUNCTION/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=JS_005FPARAMETER/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/VBNaming/EventHandlerPatternLong/@EntryValue">$object$_On$event$</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/VBNaming/PredefinedNamingRules/=Constants/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/VBNaming/PredefinedNamingRules/=EnumMember/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/VBNaming/PredefinedNamingRules/=Interfaces/@EntryIndexedValue"><Policy Inspect="True" Prefix="I" Suffix="" Style="AaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/VBNaming/PredefinedNamingRules/=LocalConstants/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/VBNaming/PredefinedNamingRules/=Locals/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/VBNaming/PredefinedNamingRules/=MethodPropertyEvent/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/VBNaming/PredefinedNamingRules/=Other/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/VBNaming/PredefinedNamingRules/=Parameters/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/VBNaming/PredefinedNamingRules/=PrivateConstants/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/VBNaming/PredefinedNamingRules/=PrivateInstanceFields/@EntryIndexedValue"><Policy Inspect="True" Prefix="_" Suffix="" Style="aaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/VBNaming/PredefinedNamingRules/=PrivateStaticFields/@EntryIndexedValue"><Policy Inspect="True" Prefix="_" Suffix="" Style="aaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/VBNaming/PredefinedNamingRules/=PrivateStaticReadonly/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/VBNaming/PredefinedNamingRules/=PublicFields/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/VBNaming/PredefinedNamingRules/=StaticReadonly/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/VBNaming/PredefinedNamingRules/=TypeParameters/@EntryIndexedValue"><Policy Inspect="True" Prefix="T" Suffix="" Style="AaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/VBNaming/PredefinedNamingRules/=TypesAndNamespaces/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/XamlNaming/UserRules/=NAMESPACE_005FALIAS/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/XamlNaming/UserRules/=XAML_005FFIELD/@EntryIndexedValue"><Policy Inspect="True" Prefix="_" Suffix="" Style="aaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/XamlNaming/UserRules/=XAML_005FRESOURCE/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String>
<s:Boolean x:Key="/Default/Environment/Editor/UseCamelHumps/@EntryValue">False</s:Boolean>
<s:Boolean x:Key="/Default/Environment/ExternalSources/Decompiler/DecompileMethodBodies/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/ExternalSources/Decompiler/DecompilerLegalNoticeAccepted/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/ExternalSources/Decompiler/ReorderMembers/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/ExternalSources/Decompiler/ShowXmlDoc/@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/=Implementations/@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: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/SelectedPageId/@EntryValue">CodeCleanup</s:String>
<s:String x:Key="/Default/Housekeeping/Layout/DialogWindows/RefactoringWizardWindow/Location/@EntryValue">2,-173</s:String>
<s:Boolean x:Key="/Default/Housekeeping/LiveTemplatesHousekeeping/HotspotSessionHintIsShown/@EntryValue">True</s:Boolean>
<s:String x:Key="/Default/Housekeeping/SubmitToTrackerExceptionReportService/Password/@EntryValue">E.FVL8jaRtGis=</s:String>
<s:Int64 x:Key="/Default/Housekeeping/TreeModelBrowserPanelPersistance/PreviewSplitterHorizontalPosition/=AnalyzeReferencesDescriptor/@EntryIndexedValue">269</s:Int64>
<s:Int64 x:Key="/Default/Housekeeping/TreeModelBrowserPanelPersistance/PreviewSplitterHorizontalPosition/=InspectionResultDescriptor/@EntryIndexedValue">269</s:Int64>
<s:Int64 x:Key="/Default/Housekeeping/TreeModelBrowserPanelPersistance/PreviewSplitterHorizontalPosition/=SearchUsagesDescriptor/@EntryIndexedValue">269</s:Int64>
<s:Int64 x:Key="/Default/Housekeeping/TreeModelBrowserPanelPersistance/PreviewSplitterHorizontalPosition/=TextualChangeDescriptor/@EntryIndexedValue">91</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/=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_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/=AnalyzeReferences/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=AnalyzeReferences/Shortcuts/=Control_002BAlt_002BY/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=CompleteCodeSmart/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=CompleteCodeSmart/Shortcuts/=Shift_002BControl_002BSpace/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=DuplicateText/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=DuplicateText/Shortcuts/=Control_002BD/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=ExtendSelection/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=ExtendSelection/Shortcuts/=Control_002BW/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=ExtractMethod/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=ExtractMethod/Shortcuts/=Control_002BAlt_002BM/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=IntroduceField/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=IntroduceField/Shortcuts/=Control_002BAlt_002BD/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=IntroduceVariable/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=IntroduceVariable/Shortcuts/=Control_002BAlt_002BV/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=IntroParameter/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=IntroParameter/Shortcuts/=Control_002BAlt_002BP/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=LineComment/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=LineComment/Shortcuts/=Control_002BDivide/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=LiveTemplates_002EInsert/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=LiveTemplates_002EInsert/Shortcuts/=Control_002BJ/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=ParameterInfo_002EShow/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=ParameterInfo_002EShow/Shortcuts/=Control_002BP/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=PasteMultiple/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=PasteMultiple/Shortcuts/=Shift_002BControl_002BV/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=ShowAnalyzeReferences/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=ShowAnalyzeReferences/Shortcuts/=Control_002BAlt_002BY/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=ShrinkSelection/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=ShrinkSelection/Shortcuts/=Shift_002BControl_002BW/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=SurroundWith/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/ConflictingActions/=SurroundWith/Shortcuts/=Control_002BAlt_002BJ/@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_0022Add_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_0022Alt_002BBack_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_0022Alt_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_007Ba659f1b3_002Dad34_002D11d1_002Dabad_002D0080c7b89c95_007D_003A211_0029_0022_0020shortcut_003D_0022Alt_002BF11_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_0022Alt_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_0022Alt_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_0022Alt_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_007B501822e1_002Db5af_002D11d0_002Db4dc_002D00a0c91506ef_007D_003A12306_0029_0022_0020shortcut_003D_0022Alt_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_0022Alt_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_0022Alt_002BF6_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BF8/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Alt_002BF8/Commands/=_003Cdata_0020id_003D_0022_0028_007Ba659f1b3_002Dad34_002D11d1_002Dabad_002D0080c7b89c95_007D_003A199_0029_0022_0020shortcut_003D_0022Alt_002BF8_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_0022Alt_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_0022Alt_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_0022Alt_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_0022Alt_002BF9_0020A_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_0022Alt_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_0022Alt_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_0022Alt_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_0022Alt_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_007Bffe1131c_002D8ea1_002D4d05_002D9728_002D34ad4611bda9_007D_003A4873_0029_0022_0020shortcut_003D_0022Alt_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_007Bb607e86c_002Da761_002D4685_002D8d98_002D71a3bb73233a_007D_003A1_0029_0022_0020shortcut_003D_0022Alt_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_0022Alt_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_0022Alt_002BOemPeriod_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_0022Alt_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_007Bffe1131c_002D8ea1_002D4d05_002D9728_002D34ad4611bda9_007D_003A4872_0029_0022_0020shortcut_003D_0022Alt_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_007B09e21035_002D245e_002D4ffe_002Dae74_002D105773c29cc7_007D_003A1538_0029_0022_0020shortcut_003D_0022Alt_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_0022Alt_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_0022Alt_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_0022Alt_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_0022Alt_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_0022Alt_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_0022Alt_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_0022Alt_002BSubtract_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_0022Alt_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_0022B_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_0022Back_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_002BAlt_002BD_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_002BAlt_002BF12_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_0022Control_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_0022Control_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_0022Control_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_0022Control_002BAlt_002BG_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_002BAlt_002BM_0020D4_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_007B8e41b7c6_002Dcd52_002D4618_002D9ead_002D3b16cea39aca_007D_003A259_0029_0022_0020shortcut_003D_0022Control_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_0022Control_002BAlt_002BO_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BOem6/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BAlt_002BOem6/Commands/=_003Cdata_0020id_003D_0022_0028_007B5a8a852b_002Deccd_002D43ec_002Db0af_002D6a09a526b665_007D_003A256_0029_0022_0020shortcut_003D_0022Control_002BAlt_002BOem6_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_0022Control_002BAlt_002BOemPeriod_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_0022Control_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_007B8e41b7c6_002Dcd52_002D4618_002D9ead_002D3b16cea39aca_007D_003A260_0029_0022_0020shortcut_003D_0022Control_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_0022Control_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_0022Control_002BAlt_002BQ_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_0022Control_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_0022Control_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_0022Control_002BAlt_002BS_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_0022Control_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_0022Control_002BAlt_002BV_0020A_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_007Bd709f4d7_002D0165_002D472b_002Db966_002D105912d13db8_007D_003A8193_0029_0022_0020shortcut_003D_0022Control_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_007Bd709f4d7_002D0165_002D472b_002Db966_002D105912d13db8_007D_003A8256_0029_0022_0020shortcut_003D_0022Control_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_0022Control_002BAlt_002BZ_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A16777728_0029_0022_0020shortcut_003D_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_002BD_0020K_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_003A258_0029_0022_0020shortcut_003D_0022Control_002BD_0020Control_002BS_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_003A258_0029_0022_0020shortcut_003D_0022Control_002BD_0020S_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Bd709f4d7_002D0165_002D472b_002Db966_002D105912d13db8_007D_003A8193_0029_0022_0020shortcut_003D_0022Control_002BD_0020Control_002BV_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Bd709f4d7_002D0165_002D472b_002Db966_002D105912d13db8_007D_003A8193_0029_0022_0020shortcut_003D_0022Control_002BD_0020V_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Bd709f4d7_002D0165_002D472b_002Db966_002D105912d13db8_007D_003A8256_0029_0022_0020shortcut_003D_0022Control_002BD_0020Control_002BH_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Bd709f4d7_002D0165_002D472b_002Db966_002D105912d13db8_007D_003A8256_0029_0022_0020shortcut_003D_0022Control_002BD_0020H_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_002BDown_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_002BF10_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_0022Control_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_0022Control_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_0022Control_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_007B09e21035_002D245e_002D4ffe_002Dae74_002D105773c29cc7_007D_003A1537_0029_0022_0020shortcut_003D_0022Control_002BF5_0022_0020_002F_003E/@EntryIndexedValue">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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_002BG_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_007B09e21035_002D245e_002D4ffe_002Dae74_002D105773c29cc7_007D_003A25858_0029_0022_0020shortcut_003D_0022Control_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_003A108_0029_0022_0020shortcut_003D_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_003A143_0029_0022_0020shortcut_003D_0022Control_002BK_0020Control_002BD_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_007B52692960_002D56bc_002D4989_002Db5d3_002D94c47a513e8d_007D_003A70_0029_0022_0020shortcut_003D_0022Control_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_007B52692960_002D56bc_002D4989_002Db5d3_002D94c47a513e8d_007D_003A70_0029_0022_0020shortcut_003D_0022Control_002BK_0020R_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_0022Control_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_0022Control_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_0022Control_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_0022Control_002BK_0020R_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BK/Commands/=_003Cdata_0020id_003D_0022_0028_007Bb18c9145_002Dbd54_002D4870_002Da9c1_002D191f7a4b2e86_007D_003A256_0029_0022_0020shortcut_003D_0022Control_002BK_0020Control_002BD2_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_0022Control_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_0022Control_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_0022Control_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_0022Control_002BL_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_007B5dd0bb59_002D7076_002D4c59_002D88d3_002Dde36931f63f0_007D_003A2500_0029_0022_0020shortcut_003D_0022Control_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_0022Control_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_0022Control_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_0022Control_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_007B6201d7f8_002Dc80d_002D46f6_002D8b13_002D02fea9fbdb0a_007D_003A100_0029_0022_0020shortcut_003D_0022Control_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_007B6201d7f8_002Dc80d_002D46f6_002D8b13_002D02fea9fbdb0a_007D_003A300_0029_0022_0020shortcut_003D_0022Control_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_007B6201d7f8_002Dc80d_002D46f6_002D8b13_002D02fea9fbdb0a_007D_003A400_0029_0022_0020shortcut_003D_0022Control_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_007B6201d7f8_002Dc80d_002D46f6_002D8b13_002D02fea9fbdb0a_007D_003A500_0029_0022_0020shortcut_003D_0022Control_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_0022Control_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_0022Control_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_0022Control_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_0022Control_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_007B5d7e7f65_002Da63f_002D46ee_002D84f1_002D990b2cab23f9_007D_003A6144_0029_0022_0020shortcut_003D_0022Control_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_0022Control_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_0022Control_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_007B5d7e7f65_002Da63f_002D46ee_002D84f1_002D990b2cab23f9_007D_003A6145_0029_0022_0020shortcut_003D_0022Control_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_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1926_0029_0022_0020shortcut_003D_0022Control_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_0022Control_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_007B23d49123_002D60ac_002D4d7e_002D939a_002De01a4e176bee_007D_003A1_0029_0022_0020shortcut_003D_0022Control_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_007B4bcf92c9_002D7fea_002D4913_002Daf26_002Df93582ba9c7a_007D_003A34_0029_0022_0020shortcut_003D_0022Control_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_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A236_0029_0022_0020shortcut_003D_0022Control_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_0022Control_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_0022Control_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_0022Control_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_007Badc1bc7b_002D958b_002D4548_002D9f9f_002D10fc49099825_007D_003A8193_0029_0022_0020shortcut_003D_0022Control_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_007Bb11771f1_002Df6cb_002D467e_002D8b71_002D428b5cedca5f_007D_003A257_0029_0022_0020shortcut_003D_0022Control_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_007Be3bc1c4f_002D9e6c_002D9119_002Da304_002D1b2bc6af5d32_007D_003A24582_0029_0022_0020shortcut_003D_0022Control_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_0022Control_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_0022Control_002BOemcomma_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_007B0e455b35_002Df2eb_002D431b_002Da0be_002Db268d8a7d17f_007D_003A258_0029_0022_0020shortcut_003D_0022Control_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_003A1355_0029_0022_0020shortcut_003D_0022Control_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_0022Control_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_0022Control_002BOemplus_0022_0020_002F_003E/@EntryIndexedValue">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_003A141_0029_0022_0020shortcut_003D_0022Control_002BOemplus_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BP/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BP/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A27_0029_0022_0020shortcut_003D_0022Control_002BP_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BPageUp/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BPageUp/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A31_0029_0022_0020shortcut_003D_0022Control_002BPageUp_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BPageUp/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A287_0029_0022_0020shortcut_003D_0022Control_002BPageUp_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BPause/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BPause/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A890_0029_0022_0020shortcut_003D_0022Control_002BPause_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BR/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BR/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A105_0029_0022_0020shortcut_003D_0022Control_002BR_0020Control_002BW_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BR/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1210_0029_0022_0020shortcut_003D_0022Control_002BR_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BR/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1550_0029_0022_0020shortcut_003D_0022Control_002BR_0020Control_002BR_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BR/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1550_0029_0022_0020shortcut_003D_0022Control_002BR_0020R_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BR/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1551_0029_0022_0020shortcut_003D_0022Control_002BR_0020Control_002BM_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BR/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1551_0029_0022_0020shortcut_003D_0022Control_002BR_0020M_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BR/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1552_0029_0022_0020shortcut_003D_0022Control_002BR_0020Control_002BE_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BR/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1552_0029_0022_0020shortcut_003D_0022Control_002BR_0020E_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BR/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1553_0029_0022_0020shortcut_003D_0022Control_002BR_0020Control_002BI_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BR/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1553_0029_0022_0020shortcut_003D_0022Control_002BR_0020I_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BR/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1555_0029_0022_0020shortcut_003D_0022Control_002BR_0020Control_002BV_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BR/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1555_0029_0022_0020shortcut_003D_0022Control_002BR_0020V_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BR/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1556_0029_0022_0020shortcut_003D_0022Control_002BR_0020Control_002BO_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BR/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1556_0029_0022_0020shortcut_003D_0022Control_002BR_0020O_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BR/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A201_0029_0022_0020shortcut_003D_0022Control_002BR_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BR/Commands/=_003Cdata_0020id_003D_0022_0028_007Bb032c221_002D57f2_002D4f84_002D8286_002Da33c9864379b_007D_003A10278_0029_0022_0020shortcut_003D_0022Control_002BR_0020Q_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BR/Commands/=_003Cdata_0020id_003D_0022_0028_007Bb85579aa_002D8be0_002D4c4f_002Da850_002D90902b317571_007D_003A12292_0029_0022_0020shortcut_003D_0022Control_002BR_0020Control_002BD_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BR/Commands/=_003Cdata_0020id_003D_0022_0028_007Bb85579aa_002D8be0_002D4c4f_002Da850_002D90902b317571_007D_003A12293_0029_0022_0020shortcut_003D_0022Control_002BR_0020D_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BR/Commands/=_003Cdata_0020id_003D_0022_0028_007Bb85579aa_002D8be0_002D4c4f_002Da850_002D90902b317571_007D_003A12299_0029_0022_0020shortcut_003D_0022Control_002BR_0020Control_002BA_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BR/Commands/=_003Cdata_0020id_003D_0022_0028_007Bb85579aa_002D8be0_002D4c4f_002Da850_002D90902b317571_007D_003A12302_0029_0022_0020shortcut_003D_0022Control_002BR_0020A_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BR/Commands/=_003Cdata_0020id_003D_0022_0028_007Bb85579aa_002D8be0_002D4c4f_002Da850_002D90902b317571_007D_003A12303_0029_0022_0020shortcut_003D_0022Control_002BR_0020T_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BR/Commands/=_003Cdata_0020id_003D_0022_0028_007Bb85579aa_002D8be0_002D4c4f_002Da850_002D90902b317571_007D_003A12304_0029_0022_0020shortcut_003D_0022Control_002BR_0020Control_002BT_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BR/Commands/=_003Cdata_0020id_003D_0022_0028_007Bb85579aa_002D8be0_002D4c4f_002Da850_002D90902b317571_007D_003A12305_0029_0022_0020shortcut_003D_0022Control_002BR_0020C_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BR/Commands/=_003Cdata_0020id_003D_0022_0028_007Bb85579aa_002D8be0_002D4c4f_002Da850_002D90902b317571_007D_003A12306_0029_0022_0020shortcut_003D_0022Control_002BR_0020Control_002BC_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BR/Commands/=_003Cdata_0020id_003D_0022_0028_007Bb85579aa_002D8be0_002D4c4f_002Da850_002D90902b317571_007D_003A12307_0029_0022_0020shortcut_003D_0022Control_002BR_0020N_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BR/Commands/=_003Cdata_0020id_003D_0022_0028_007Bb85579aa_002D8be0_002D4c4f_002Da850_002D90902b317571_007D_003A12308_0029_0022_0020shortcut_003D_0022Control_002BR_0020Control_002BN_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BR/Commands/=_003Cdata_0020id_003D_0022_0028_007Bb85579aa_002D8be0_002D4c4f_002Da850_002D90902b317571_007D_003A13070_0029_0022_0020shortcut_003D_0022Control_002BR_0020F_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BR/Commands/=_003Cdata_0020id_003D_0022_0028_007Bb85579aa_002D8be0_002D4c4f_002Da850_002D90902b317571_007D_003A13141_0029_0022_0020shortcut_003D_0022Control_002BR_0020Control_002BF_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BR/Commands/=_003Cdata_0020id_003D_0022_0028_007Bf4394f71_002D4dfc_002D4268_002D84c3_002D7d9150c5c216_007D_003A12295_0029_0022_0020shortcut_003D_0022Control_002BR_0020Y_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BR/Commands/=_003Cdata_0020id_003D_0022_0028_007Bf4394f71_002D4dfc_002D4268_002D84c3_002D7d9150c5c216_007D_003A12296_0029_0022_0020shortcut_003D_0022Control_002BR_0020Control_002BY_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BRight/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BRight/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1226_0029_0022_0020shortcut_003D_0022Control_002BRight_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BRight/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1361_0029_0022_0020shortcut_003D_0022Control_002BRight_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BRight/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A40_0029_0022_0020shortcut_003D_0022Control_002BRight_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BRight/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A96_0029_0022_0020shortcut_003D_0022Control_002BRight_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BS/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BS/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A331_0029_0022_0020shortcut_003D_0022Control_002BS_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BSpace/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BSpace/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A107_0029_0022_0020shortcut_003D_0022Control_002BSpace_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BSpace/Commands/=_003Cdata_0020id_003D_0022_0028_007Bcb3675b8_002D701e_002D4f56_002D9167_002D2714e167ff3f_007D_003A12314_0029_0022_0020shortcut_003D_0022Control_002BSpace_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BSubtract/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BSubtract/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1356_0029_0022_0020shortcut_003D_0022Control_002BSubtract_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BSubtract/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A809_0029_0022_0020shortcut_003D_0022Control_002BSubtract_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BSubtract/Commands/=_003Cdata_0020id_003D_0022_0028_007B6ab63085_002Dc130_002D42cb_002Da868_002Dcd9a1bcb9dfe_007D_003A16912_0029_0022_0020shortcut_003D_0022Control_002BSubtract_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BTab/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BTab/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A1124_0029_0022_0020shortcut_003D_0022Control_002BTab_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BUp/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BUp/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1227_0029_0022_0020shortcut_003D_0022Control_002BUp_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BUp/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1357_0029_0022_0020shortcut_003D_0022Control_002BUp_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BUp/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A35_0029_0022_0020shortcut_003D_0022Control_002BUp_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BV/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BV/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A26_0029_0022_0020shortcut_003D_0022Control_002BV_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B0ac55a52_002Df86d_002D4e85_002D9eee_002D4e7132b72295_007D_003A257_0029_0022_0020shortcut_003D_0022Control_002BW_0020Control_002BF_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B0ac55a52_002Df86d_002D4e85_002D9eee_002D4e7132b72295_007D_003A257_0029_0022_0020shortcut_003D_0022Control_002BW_0020F_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1233_0029_0022_0020shortcut_003D_0022Control_002BW_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1926_0029_0022_0020shortcut_003D_0022Control_002BW_0020Control_002BD_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1926_0029_0022_0020shortcut_003D_0022Control_002BW_0020D_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A2260_0029_0022_0020shortcut_003D_0022Control_002BW_0020Control_002BL_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A2260_0029_0022_0020shortcut_003D_0022Control_002BW_0020L_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B23d49123_002D60ac_002D4d7e_002D939a_002De01a4e176bee_007D_003A1_0029_0022_0020shortcut_003D_0022Control_002BW_0020Control_002BM_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B23d49123_002D60ac_002D4d7e_002D939a_002De01a4e176bee_007D_003A1_0029_0022_0020shortcut_003D_0022Control_002BW_0020M_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A1023_0029_0022_0020shortcut_003D_0022Control_002BW_0020Control_002BR_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A1023_0029_0022_0020shortcut_003D_0022Control_002BW_0020R_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A1122_0029_0022_0020shortcut_003D_0022Control_002BW_0020B_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A1122_0029_0022_0020shortcut_003D_0022Control_002BW_0020Control_002BB_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A234_0029_0022_0020shortcut_003D_0022Control_002BW_0020Control_002BS_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A234_0029_0022_0020shortcut_003D_0022Control_002BW_0020S_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A235_0029_0022_0020shortcut_003D_0022Control_002BW_0020Control_002BP_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A235_0029_0022_0020shortcut_003D_0022Control_002BW_0020P_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A236_0029_0022_0020shortcut_003D_0022Control_002BW_0020Control_002BT_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A236_0029_0022_0020shortcut_003D_0022Control_002BW_0020T_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A237_0029_0022_0020shortcut_003D_0022Control_002BW_0020Control_002BO_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A237_0029_0022_0020shortcut_003D_0022Control_002BW_0020O_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A238_0029_0022_0020shortcut_003D_0022Control_002BW_0020Control_002BJ_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A238_0029_0022_0020shortcut_003D_0022Control_002BW_0020J_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A239_0029_0022_0020shortcut_003D_0022Control_002BW_0020Control_002BU_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A239_0029_0022_0020shortcut_003D_0022Control_002BW_0020U_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A320_0029_0022_0020shortcut_003D_0022Control_002BW_0020Control_002BE_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A320_0029_0022_0020shortcut_003D_0022Control_002BW_0020E_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A42_0029_0022_0020shortcut_003D_0022Control_002BW_0020Control_002BX_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A42_0029_0022_0020shortcut_003D_0022Control_002BW_0020X_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A599_0029_0022_0020shortcut_003D_0022Control_002BW_0020C_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A599_0029_0022_0020shortcut_003D_0022Control_002BW_0020Control_002BC_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A729_0029_0022_0020shortcut_003D_0022Control_002BW_0020A_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A729_0029_0022_0020shortcut_003D_0022Control_002BW_0020Control_002BA_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A978_0029_0022_0020shortcut_003D_0022Control_002BW_0020Control_002BQ_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A978_0029_0022_0020shortcut_003D_0022Control_002BW_0020Q_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007Baa8eb8cd_002D7a51_002D11d0_002D92c3_002D00a0c9138c45_007D_003A11160_0029_0022_0020shortcut_003D_0022Control_002BW_0020Control_002BG_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007Baa8eb8cd_002D7a51_002D11d0_002D92c3_002D00a0c9138c45_007D_003A11160_0029_0022_0020shortcut_003D_0022Control_002BW_0020G_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007Badc1bc7b_002D958b_002D4548_002D9f9f_002D10fc49099825_007D_003A8193_0029_0022_0020shortcut_003D_0022Control_002BW_0020Control_002BN_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007Badc1bc7b_002D958b_002D4548_002D9f9f_002D10fc49099825_007D_003A8193_0029_0022_0020shortcut_003D_0022Control_002BW_0020N_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007Be286548f_002D5085_002D4e2b_002Da4fd_002D5984ccb553bc_007D_003A768_0029_0022_0020shortcut_003D_0022Control_002BW_0020Control_002BK_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007Be286548f_002D5085_002D4e2b_002Da4fd_002D5984ccb553bc_007D_003A768_0029_0022_0020shortcut_003D_0022Control_002BW_0020K_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007Be8b06f44_002D6d01_002D11d2_002Daa7d_002D00c04f990343_007D_003A4999_0029_0022_0020shortcut_003D_0022Control_002BW_0020Control_002BW_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007Be8b06f44_002D6d01_002D11d2_002Daa7d_002D00c04f990343_007D_003A4999_0029_0022_0020shortcut_003D_0022Control_002BW_0020W_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BX/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BX/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A16_0029_0022_0020shortcut_003D_0022Control_002BX_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BY/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BY/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A29_0029_0022_0020shortcut_003D_0022Control_002BY_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BZ/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Control_002BZ/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A43_0029_0022_0020shortcut_003D_0022Control_002BZ_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Delete/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Delete/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A168_0029_0022_0020shortcut_003D_0022Delete_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Delete/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A17_0029_0022_0020shortcut_003D_0022Delete_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Delete/Commands/=_003Cdata_0020id_003D_0022_0028_007B71037277_002D9175_002D48d2_002Dabe4_002D1e0f55629174_007D_003A8241_0029_0022_0020shortcut_003D_0022Delete_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Delete/Commands/=_003Cdata_0020id_003D_0022_0028_007Bfb41a027_002D57c5_002D4f83_002D9508_002Dc326dce6d943_007D_003A10500_0029_0022_0020shortcut_003D_0022Delete_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Down/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Down/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1225_0029_0022_0020shortcut_003D_0022Down_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Down/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A13_0029_0022_0020shortcut_003D_0022Down_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Down/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1503_0029_0022_0020shortcut_003D_0022Down_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=End/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=End/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A17_0029_0022_0020shortcut_003D_0022End_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=End/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A23_0029_0022_0020shortcut_003D_0022End_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Escape/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Escape/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A103_0029_0022_0020shortcut_003D_0022Escape_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Escape/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A289_0029_0022_0020shortcut_003D_0022Escape_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Escape/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A658_0029_0022_0020shortcut_003D_0022Escape_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=F1/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=F1/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A377_0029_0022_0020shortcut_003D_0022F1_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=F10/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=F10/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A249_0029_0022_0020shortcut_003D_0022F10_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=F11/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=F11/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A248_0029_0022_0020shortcut_003D_0022F11_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=F2/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=F2/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A338_0029_0022_0020shortcut_003D_0022F2_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=F2/Commands/=_003Cdata_0020id_003D_0022_0028_007Be4b9bb05_002D1963_002D4774_002D8cfc_002D518359e3fce3_007D_003A12032_0029_0022_0020shortcut_003D_0022F2_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=F3/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=F3/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A370_0029_0022_0020shortcut_003D_0022F3_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=F4/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=F4/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A235_0029_0022_0020shortcut_003D_0022F4_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=F5/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=F5/Commands/=_003Cdata_0020id_003D_0022_0028_007B15061d55_002De726_002D4e3c_002D97d3_002D1b871d9b5ae9_007D_003A4625_0029_0022_0020shortcut_003D_0022F5_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=F5/Commands/=_003Cdata_0020id_003D_0022_0028_007B15061d55_002De726_002D4e3c_002D97d3_002D1b871d9b5ae9_007D_003A8193_0029_0022_0020shortcut_003D_0022F5_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=F5/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A189_0029_0022_0020shortcut_003D_0022F5_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=F5/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A295_0029_0022_0020shortcut_003D_0022F5_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=F5/Commands/=_003Cdata_0020id_003D_0022_0028_007B9b4d11b1_002D130a_002D4852_002D94e1_002Dc147491101f6_007D_003A258_0029_0022_0020shortcut_003D_0022F5_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=F6/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=F6/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A882_0029_0022_0020shortcut_003D_0022F6_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=F7/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=F7/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A333_0029_0022_0020shortcut_003D_0022F7_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=F8/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=F8/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A279_0029_0022_0020shortcut_003D_0022F8_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=F9/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=F9/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A2_0029_0022_0020shortcut_003D_0022F9_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=F9/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A255_0029_0022_0020shortcut_003D_0022F9_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Home/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Home/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A15_0029_0022_0020shortcut_003D_0022Home_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Home/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A19_0029_0022_0020shortcut_003D_0022Home_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=I/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=I/Commands/=_003Cdata_0020id_003D_0022_0028_007Badc1bc7b_002D958b_002D4548_002D9f9f_002D10fc49099825_007D_003A8491_0029_0022_0020shortcut_003D_0022I_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Insert/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Insert/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1232_0029_0022_0020shortcut_003D_0022Insert_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Insert/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1240_0029_0022_0020shortcut_003D_0022Insert_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Insert/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1250_0029_0022_0020shortcut_003D_0022Insert_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Insert/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1968_0029_0022_0020shortcut_003D_0022Insert_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Insert/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A57_0029_0022_0020shortcut_003D_0022Insert_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Left/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Left/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1224_0029_0022_0020shortcut_003D_0022Left_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Left/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1504_0029_0022_0020shortcut_003D_0022Left_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Left/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A7_0029_0022_0020shortcut_003D_0022Left_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Next/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Next/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A29_0029_0022_0020shortcut_003D_0022Next_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=O/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=O/Commands/=_003Cdata_0020id_003D_0022_0028_007Badc1bc7b_002D958b_002D4548_002D9f9f_002D10fc49099825_007D_003A8490_0029_0022_0020shortcut_003D_0022O_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=PageUp/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=PageUp/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A27_0029_0022_0020shortcut_003D_0022PageUp_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Return/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Return/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1501_0029_0022_0020shortcut_003D_0022Return_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Return/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A3_0029_0022_0020shortcut_003D_0022Return_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Return/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A333_0029_0022_0020shortcut_003D_0022Return_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Right/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Right/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1226_0029_0022_0020shortcut_003D_0022Right_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Right/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1505_0029_0022_0020shortcut_003D_0022Right_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Right/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A9_0029_0022_0020shortcut_003D_0022Right_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BA/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BA/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A244_0029_0022_0020shortcut_003D_0022Shift_002BAlt_002BA_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BB/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BB/Commands/=_003Cdata_0020id_003D_0022_0028_007Bfb41a027_002D57c5_002D4f83_002D9508_002Dc326dce6d943_007D_003A10381_0029_0022_0020shortcut_003D_0022Shift_002BAlt_002BB_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BBack/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BBack/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A29_0029_0022_0020shortcut_003D_0022Shift_002BAlt_002BBack_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BC/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BC/Commands/=_003Cdata_0020id_003D_0022_0028_007B15061d55_002De726_002D4e3c_002D97d3_002D1b871d9b5ae9_007D_003A20484_0029_0022_0020shortcut_003D_0022Shift_002BAlt_002BC_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BC/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A946_0029_0022_0020shortcut_003D_0022Shift_002BAlt_002BC_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BD/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007B746910da_002D3a87_002D4255_002Da4ae_002Dd1083b0572a0_007D_003A520_0029_0022_0020shortcut_003D_0022Shift_002BAlt_002BD_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BD3/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BD3/Commands/=_003Cdata_0020id_003D_0022_0028_007B300a8877_002Db214_002D4385_002D8a7f_002Dab257498ffeb_007D_003A1054_0029_0022_0020shortcut_003D_0022Shift_002BAlt_002BD3_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BD4/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BD4/Commands/=_003Cdata_0020id_003D_0022_0028_007B300a8877_002Db214_002D4385_002D8a7f_002Dab257498ffeb_007D_003A1055_0029_0022_0020shortcut_003D_0022Shift_002BAlt_002BD4_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BDown/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BDown/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A120_0029_0022_0020shortcut_003D_0022Shift_002BAlt_002BDown_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BEnd/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BEnd/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A125_0029_0022_0020shortcut_003D_0022Shift_002BAlt_002BEnd_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BF10/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BF10/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A147_0029_0022_0020shortcut_003D_0022Shift_002BAlt_002BF10_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BF11/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BF11/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A351_0029_0022_0020shortcut_003D_0022Shift_002BAlt_002BF11_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BF6/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BF6/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A317_0029_0022_0020shortcut_003D_0022Shift_002BAlt_002BF6_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BH/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BH/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1237_0029_0022_0020shortcut_003D_0022Shift_002BAlt_002BH_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BHome/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BHome/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A124_0029_0022_0020shortcut_003D_0022Shift_002BAlt_002BHome_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BLeft/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BLeft/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A117_0029_0022_0020shortcut_003D_0022Shift_002BAlt_002BLeft_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BLeft/Commands/=_003Cdata_0020id_003D_0022_0028_007B15061d55_002De726_002D4e3c_002D97d3_002D1b871d9b5ae9_007D_003A36869_0029_0022_0020shortcut_003D_0022Shift_002BAlt_002BLeft_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BN/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BN/Commands/=_003Cdata_0020id_003D_0022_0028_007B15061d55_002De726_002D4e3c_002D97d3_002D1b871d9b5ae9_007D_003A4628_0029_0022_0020shortcut_003D_0022Shift_002BAlt_002BN_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BN/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc7547851_002D4e3a_002D4e5b_002D9173_002Dfa6e9c8bd82c_007D_003A43_0029_0022_0020shortcut_003D_0022Shift_002BAlt_002BN_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BO/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BO/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc7547851_002D4e3a_002D4e5b_002D9173_002Dfa6e9c8bd82c_007D_003A44_0029_0022_0020shortcut_003D_0022Shift_002BAlt_002BO_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BOemcomma/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BOemcomma/Commands/=_003Cdata_0020id_003D_0022_0028_007B9b4d11b1_002D130a_002D4852_002D94e1_002Dc147491101f6_007D_003A779_0029_0022_0020shortcut_003D_0022Shift_002BAlt_002BOemcomma_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BOemPeriod/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BOemPeriod/Commands/=_003Cdata_0020id_003D_0022_0028_007B9b4d11b1_002D130a_002D4852_002D94e1_002Dc147491101f6_007D_003A778_0029_0022_0020shortcut_003D_0022Shift_002BAlt_002BOemPeriod_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BP/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BP/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1318_0029_0022_0020shortcut_003D_0022Shift_002BAlt_002BP_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BP/Commands/=_003Cdata_0020id_003D_0022_0028_007B15061d55_002De726_002D4e3c_002D97d3_002D1b871d9b5ae9_007D_003A4627_0029_0022_0020shortcut_003D_0022Shift_002BAlt_002BP_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BR/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BR/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1312_0029_0022_0020shortcut_003D_0022Shift_002BAlt_002BR_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BReturn/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BReturn/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A233_0029_0022_0020shortcut_003D_0022Shift_002BAlt_002BReturn_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BRight/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BRight/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A118_0029_0022_0020shortcut_003D_0022Shift_002BAlt_002BRight_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BRight/Commands/=_003Cdata_0020id_003D_0022_0028_007B15061d55_002De726_002D4e3c_002D97d3_002D1b871d9b5ae9_007D_003A36870_0029_0022_0020shortcut_003D_0022Shift_002BAlt_002BRight_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BS/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BS/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1300_0029_0022_0020shortcut_003D_0022Shift_002BAlt_002BS_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BT/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BT/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A89_0029_0022_0020shortcut_003D_0022Shift_002BAlt_002BT_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BUp/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BUp/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A119_0029_0022_0020shortcut_003D_0022Shift_002BAlt_002BUp_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BV/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BV/Commands/=_003Cdata_0020id_003D_0022_0028_007B15061d55_002De726_002D4e3c_002D97d3_002D1b871d9b5ae9_007D_003A53255_0029_0022_0020shortcut_003D_0022Shift_002BAlt_002BV_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BW/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BAlt_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1315_0029_0022_0020shortcut_003D_0022Shift_002BAlt_002BW_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BBack/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BBack/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A2_0029_0022_0020shortcut_003D_0022Shift_002BBack_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BA/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BA/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A220_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BA_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BAlt_002BC/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BAlt_002BC/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A148_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BAlt_002BC_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BAlt_002BF11/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BAlt_002BF11/Commands/=_003Cdata_0020id_003D_0022_0028_007Bc9dd4a59_002D47fb_002D11d2_002D83e7_002D00c04f9902c1_007D_003A344_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BAlt_002BF11_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BAlt_002BF12/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BAlt_002BF12/Commands/=_003Cdata_0020id_003D_0022_0028_007B5dd0bb59_002D7076_002D4c59_002D88d3_002Dde36931f63f0_007D_003A2090_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BAlt_002BF12_0020Shift_002BControl_002BAlt_002BF12_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BAlt_002BP/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BAlt_002BP/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1319_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BAlt_002BP_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BAlt_002BP/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A149_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BAlt_002BP_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BAlt_002BR/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BAlt_002BR/Commands/=_003Cdata_0020id_003D_0022_0028_007B09e21035_002D245e_002D4ffe_002Dae74_002D105773c29cc7_007D_003A1572_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BAlt_002BR_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BAlt_002BR/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1313_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BAlt_002BR_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BAlt_002BS/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BAlt_002BS/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1256_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BAlt_002BS_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BAlt_002BW/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BAlt_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1316_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BAlt_002BW_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BB/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BB/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A882_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BB_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BC/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BC/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A599_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BC_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BD/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007B09e21035_002D245e_002D4ffe_002Dae74_002D105773c29cc7_007D_003A1544_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BD_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Bcd203eb7_002D5920_002D47f9_002D8927_002D1804e7498464_007D_003A256_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BD_0020K_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BD/Commands/=_003Cdata_0020id_003D_0022_0028_007Bcd203eb7_002D5920_002D47f9_002D8927_002D1804e7498464_007D_003A258_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BD_0020S_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BDown/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BDown/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1228_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BDown_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BDown/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A2400_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BDown_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BDown/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A1_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BDown_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BEnd/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BEnd/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A18_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BEnd_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BF/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BF/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A277_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BF_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BF10/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BF10/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A258_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BF10_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BF11/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BF11/Commands/=_003Cdata_0020id_003D_0022_0028_007Bd709f4d7_002D0165_002D472b_002Db966_002D105912d13db8_007D_003A8214_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BF11_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BF12/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BF12/Commands/=_003Cdata_0020id_003D_0022_0028_007B4a9b7e50_002Daa16_002D11d0_002Da8c5_002D00a0c921a4d2_007D_003A1_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BF12_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BF3/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BF3/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A373_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BF3_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BF5/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BF5/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A296_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BF5_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BF6/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BF6/Commands/=_003Cdata_0020id_003D_0022_0028_007B09e21035_002D245e_002D4ffe_002Dae74_002D105773c29cc7_007D_003A1560_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BF6_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BF6/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A629_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BF6_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BF9/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BF9/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1207_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BF9_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BF9/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A256_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BF9_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BH/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BH/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1238_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BH_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BH/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A278_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BH_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BHome/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BHome/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A16_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BHome_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BI/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BI/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A123_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BI_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BI/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1303_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BI_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BInsert/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BInsert/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A655_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BInsert_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BJ/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BJ/Commands/=_003Cdata_0020id_003D_0022_0028_007B748813a7_002D657c_002D499d_002D81a0_002D2ffdf790711a_007D_003A8_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BJ_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BJ/Commands/=_003Cdata_0020id_003D_0022_0028_007Bd7e8c5e1_002Dbdb8_002D11d0_002D9c88_002D0000f8040a53_007D_003A4551_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BJ_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BL/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BL/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A279_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BL_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BL/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A62_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BL_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BLeft/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BLeft/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1230_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BLeft_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BLeft/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1360_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BLeft_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BLeft/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A94_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BLeft_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BLeft/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A3_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BLeft_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BM/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BM/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1257_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BM_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BNext/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BNext/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A34_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BNext_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BO/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BO/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A217_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BO_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BOem6/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BOem6/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1362_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BOem6_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BOem6/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A54_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BOem6_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BOemcomma/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BOemcomma/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1358_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BOemcomma_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BOemcomma/Commands/=_003Cdata_0020id_003D_0022_0028_007B5dd0bb59_002D7076_002D4c59_002D88d3_002Dde36931f63f0_007D_003A2101_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BOemcomma_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BOemPeriod/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BOemPeriod/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1357_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BOemPeriod_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BOemPeriod/Commands/=_003Cdata_0020id_003D_0022_0028_007B5dd0bb59_002D7076_002D4c59_002D88d3_002Dde36931f63f0_007D_003A2100_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BOemPeriod_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BPageUp/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BPageUp/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A32_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BPageUp_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BReturn/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BReturn/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A68_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BReturn_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BRight/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BRight/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1231_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BRight_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BRight/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1362_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BRight_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BRight/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A97_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BRight_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BRight/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A4_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BRight_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BS/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BS/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A224_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BS_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BSpace/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BSpace/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A104_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BSpace_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BSubtract/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BSubtract/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A810_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BSubtract_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BTab/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BTab/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A1125_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BTab_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BU/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BU/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A48_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BU_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BU/Commands/=_003Cdata_0020id_003D_0022_0028_007Be148f049_002Dc570_002D4f55_002D84a6_002D6da870af229e_007D_003A34411_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BU_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BUp/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BUp/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1229_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BUp_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BUp/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A2401_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BUp_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BUp/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A6_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BUp_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BV/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BV/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A655_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BV_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BW/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BW/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A90_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BW_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BX/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BX/Commands/=_003Cdata_0020id_003D_0022_0028_007B06353851_002Da907_002D4151_002Da2cb_002Dca903185e505_007D_003A256_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BX_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BY/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BY/Commands/=_003Cdata_0020id_003D_0022_0028_007Bd7e8c5e1_002Dbdb8_002D11d0_002D9c88_002D0000f8040a53_007D_003A15023_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BY_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BZ/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BControl_002BZ/Commands/=_003Cdata_0020id_003D_0022_0028_007B184dd6c2_002D6301_002D49e8_002Da6c9_002Dd8d026444172_007D_003A26237_0029_0022_0020shortcut_003D_0022Shift_002BControl_002BZ_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BDelete/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BDelete/Commands/=_003Cdata_0020id_003D_0022_0028_007B4bcf92c9_002D7fea_002D4913_002Daf26_002Df93582ba9c7a_007D_003A33_0029_0022_0020shortcut_003D_0022Shift_002BDelete_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BDelete/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A16_0029_0022_0020shortcut_003D_0022Shift_002BDelete_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BDelete/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A17_0029_0022_0020shortcut_003D_0022Shift_002BDelete_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BDown/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BDown/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A12_0029_0022_0020shortcut_003D_0022Shift_002BDown_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BDown/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1228_0029_0022_0020shortcut_003D_0022Shift_002BDown_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BDown/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A14_0029_0022_0020shortcut_003D_0022Shift_002BDown_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BDown/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1509_0029_0022_0020shortcut_003D_0022Shift_002BDown_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BEnd/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BEnd/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A18_0029_0022_0020shortcut_003D_0022Shift_002BEnd_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BEnd/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A24_0029_0022_0020shortcut_003D_0022Shift_002BEnd_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BEscape/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BEscape/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A288_0029_0022_0020shortcut_003D_0022Shift_002BEscape_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BEscape/Commands/=_003Cdata_0020id_003D_0022_0028_007B74d21313_002D2aee_002D11d1_002D8bfb_002D00a0c90f26f7_007D_003A16385_0029_0022_0020shortcut_003D_0022Shift_002BEscape_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BF1/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BF1/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A1038_0029_0022_0020shortcut_003D_0022Shift_002BF1_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BF11/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BF11/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A250_0029_0022_0020shortcut_003D_0022Shift_002BF11_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BF3/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BF3/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A371_0029_0022_0020shortcut_003D_0022Shift_002BF3_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BF4/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BF4/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A232_0029_0022_0020shortcut_003D_0022Shift_002BF4_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BF5/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BF5/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A179_0029_0022_0020shortcut_003D_0022Shift_002BF5_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BF7/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BF7/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1205_0029_0022_0020shortcut_003D_0022Shift_002BF7_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BF7/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A449_0029_0022_0020shortcut_003D_0022Shift_002BF7_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BF7/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A332_0029_0022_0020shortcut_003D_0022Shift_002BF7_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BF8/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BF8/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A280_0029_0022_0020shortcut_003D_0022Shift_002BF8_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BF9/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BF9/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A254_0029_0022_0020shortcut_003D_0022Shift_002BF9_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BF9/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A7_0029_0022_0020shortcut_003D_0022Shift_002BF9_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BHome/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BHome/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A16_0029_0022_0020shortcut_003D_0022Shift_002BHome_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BHome/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A20_0029_0022_0020shortcut_003D_0022Shift_002BHome_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BInsert/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BInsert/Commands/=_003Cdata_0020id_003D_0022_0028_007B5efc7975_002D14bc_002D11cf_002D9b2b_002D00aa00573819_007D_003A26_0029_0022_0020shortcut_003D_0022Shift_002BInsert_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BLeft/@KeyIndexDefined">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BLeft/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1230_0029_0022_0020shortcut_003D_0022Shift_002BLeft_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Housekeeping/VsActionManager/KeyboardShortcutToVsCommand/=Shift_002BLeft/Commands/=_003Cdata_0020id_003D_0022_0028_007B1496a755_002D94de_002D11d0_002D8c3f_002D00c04fc2aae2_007D_003A1508_0029_0022_0020shortcut_003D_0022Shift_002BLeft_0022_0020_002F_003E/@EntryIndexedValue">True</s:Boolean>