-
Notifications
You must be signed in to change notification settings - Fork 2
/
user.keyscheme
1227 lines (1227 loc) · 51.3 KB
/
user.keyscheme
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
<?xml version="1.0" encoding="UTF-8"?>
<Commands name="Studio One" modified="1" version="1">
<Command category="Navigation" name="Left">
<Key name="Left Arrow"/>
<Key name="["/>
</Command>
<Command category="Navigation" name="Left Extend">
<Key name="Shift+Left Arrow"/>
</Command>
<Command category="Navigation" name="Left Extend Add">
<Key name="Command+Shift+Left Arrow"/>
</Command>
<Command category="Navigation" name="Left Skip">
<Key name="Command+Left Arrow"/>
</Command>
<Command category="Navigation" name="Right">
<Key name="Right Arrow"/>
<Key name="]"/>
</Command>
<Command category="Navigation" name="Right Extend">
<Key name="Shift+Right Arrow"/>
</Command>
<Command category="Navigation" name="Right Extend Add">
<Key name="Command+Shift+Right Arrow"/>
</Command>
<Command category="Navigation" name="Right Skip">
<Key name="Command+Right Arrow"/>
</Command>
<Command category="Navigation" name="Up">
<Key name="Up Arrow"/>
</Command>
<Command category="Navigation" name="Up Extend">
<Key name="Shift+Up Arrow"/>
</Command>
<Command category="Navigation" name="Up Extend Add">
<Key name="Command+Shift+Up Arrow"/>
</Command>
<Command category="Navigation" name="Up Skip">
<Key name="Command+Up Arrow"/>
</Command>
<Command category="Navigation" name="Down">
<Key name="Down Arrow"/>
</Command>
<Command category="Navigation" name="Down Extend">
<Key name="Shift+Down Arrow"/>
</Command>
<Command category="Navigation" name="Down Extend Add">
<Key name="Command+Shift+Down Arrow"/>
</Command>
<Command category="Navigation" name="Down Skip">
<Key name="Command+Down Arrow"/>
</Command>
<Command category="Navigation" name="Start">
<Key name="Home"/>
</Command>
<Command category="Navigation" name="Start Extend">
<Key name="Shift+Home"/>
</Command>
<Command category="Navigation" name="Start Extend Add">
<Key name="Command+Shift+Home"/>
</Command>
<Command category="Navigation" name="Start Skip">
<Key name="Command+Home"/>
</Command>
<Command category="Navigation" name="End">
<Key name="End"/>
</Command>
<Command category="Navigation" name="End Extend">
<Key name="Shift+End"/>
</Command>
<Command category="Navigation" name="End Extend Add">
<Key name="Command+Shift+End"/>
</Command>
<Command category="Navigation" name="End Skip">
<Key name="Command+End"/>
</Command>
<Command category="Navigation" name="Page Up">
<Key name="Page Up"/>
</Command>
<Command category="Navigation" name="Page Up Extend">
<Key name="Shift+Page Up"/>
</Command>
<Command category="Navigation" name="Page Up Extend Add">
<Key name="Command+Shift+Page Up"/>
</Command>
<Command category="Navigation" name="Page Up Skip">
<Key name="Command+Page Up"/>
</Command>
<Command category="Navigation" name="Page Down">
<Key name="Page Down"/>
</Command>
<Command category="Navigation" name="Page Down Extend">
<Key name="Shift+Page Down"/>
</Command>
<Command category="Navigation" name="Page Down Extend Add">
<Key name="Command+Shift+Page Down"/>
</Command>
<Command category="Navigation" name="Page Down Skip">
<Key name="Command+Page Down"/>
</Command>
<Command category="Edit" name="Cut">
<Key name="Command+X"/>
</Command>
<Command category="Edit" name="Copy">
<Key name="Command+C"/>
</Command>
<Command category="Edit" name="Paste">
<Key name="Command+V"/>
</Command>
<Command category="Edit" name="Delete">
<Key name="Del"/>
<Key name="Backspace"/>
</Command>
<Command category="Edit" name="Select All">
<Key name="Command+A"/>
</Command>
<Command category="Edit" name="Deselect All">
<Key name="Command+D"/>
</Command>
<Command category="View" name="Toggle Floating Windows">
<Key name="F12"/>
</Command>
<Command category="View" name="Toggle Optional Views">
<Key name="Shift+F12"/>
</Command>
<Command category="View" name="Next Perspective">
<Key name="Control+Tab"/>
</Command>
<Command category="View" name="Previous Perspective">
<Key name="Shift+Control+Tab"/>
</Command>
<Command category="Navigation" name="Focus Next">
<Key name="Tab"/>
</Command>
<Command category="Navigation" name="Focus Previous">
<Key name="`"/>
</Command>
<Command category="File" name="New Song">
<Key name="Command+N"/>
</Command>
<Command category="File" name="New Project">
<Key name="Command+Shift+N"/>
</Command>
<Command category="View" name="Start Page">
<Key name="Option+Home"/>
</Command>
<Command category="Browser" name="Show Instruments">
<Key name="F6"/>
</Command>
<Command category="Browser" name="Show Effects">
<Key name="F7"/>
</Command>
<Command category="Browser" name="Show Files">
<Key name="F9"/>
</Command>
<Command category="Browser" name="Show Pool">
<Key name="F10"/>
</Command>
<Command category="Track" name="Transform to Audio Track">
<Key name="Command+Shift+P"/>
</Command>
<Command category="Track" name="Transform to Instrument Track">
<Key name="Command+Shift+Control+P"/>
</Command>
<Command category="Marker" name="Insert">
<Key name="Y"/>
</Command>
<Command category="Track" name="Expand Layers">
<Key name="Command+Control+\"/>
</Command>
<Command category="Track" name="Disable">
<Key name="Command+`"/>
</Command>
<Command category="Edit" name="Select All on Tracks">
<Key name="Command+Shift+A"/>
</Command>
<Command category="Edit" name="Deselect All on Tracks">
<Key name="Command+Shift+D"/>
</Command>
<Command category="Edit" name="Create Ranges on Tracks">
<Key name="Shift+R"/>
</Command>
<Command category="Edit" name="Create Ranges">
<Key name="Option+R"/>
</Command>
<Command category="Edit" name="Select from Start to Event">
<Key name="Shift+Option+Home"/>
</Command>
<Command category="Edit" name="Select from Event to End">
<Key name="Shift+Option+End"/>
</Command>
<Command category="Edit" name="Split Loop">
<Key name="Command+Shift+X"/>
</Command>
<Command category="Edit" name="Split Range">
<Key name="Command+Option+X"/>
</Command>
<Command category="Track" name="Solo">
<Key name="S"/>
</Command>
<Command category="Track" name="Mute">
<Key name="M"/>
</Command>
<Command category="Track" name="Arm">
<Key name="R"/>
</Command>
<Command category="Track" name="Monitor">
<Key name="U"/>
</Command>
<Command category="Track" name="Show Envelopes">
<Key name="A"/>
</Command>
<Command category="Console" name="Show Channel Editor">
<Key name="F11"/>
</Command>
<Command category="Console" name="Show Instrument Editor">
<Key name="Shift+F11"/>
</Command>
<Command category="Edit" name="Undo">
<Key name="Command+Z"/>
</Command>
<Command category="Song" name="Remove Track">
<Key name="Shift+T"/>
</Command>
<Command category="Song" name="Import File">
<Key name="Command+Shift+O"/>
</Command>
<Command category="Song" name="Export Mixdown">
<Key name="Command+E"/>
</Command>
<Command category="Song" name="Export Stems">
<Key name="Command+Shift+E"/>
</Command>
<Command category="Navigation" name="Previous Track">
<Key name="Command+{"/>
</Command>
<Command category="Navigation" name="Next Track">
<Key name="Command+}"/>
</Command>
<Command category="Marker" name="Insert Named">
<Key name="Command+P"/>
</Command>
<Command category="Marker" name="Set Start and End to Selection">
<Key name="Option+Y"/>
</Command>
<Command category="Marker" name="Goto Next Marker">
<Key name="Command+Control+]"/>
</Command>
<Command category="Marker" name="Goto Previous Marker">
<Key name="Command+Control+["/>
</Command>
<Command category="Marker" name="Recall Marker 2">
<Key name="NumPad4"/>
</Command>
<Command category="Marker" name="Recall Marker 3">
<Key name="NumPad5"/>
</Command>
<Command category="Marker" name="Recall Marker 4">
<Key name="NumPad6"/>
</Command>
<Command category="Marker" name="Recall Marker 5">
<Key name="NumPad7"/>
</Command>
<Command category="Marker" name="Recall Marker 6">
<Key name="NumPad8"/>
</Command>
<Command category="Marker" name="Recall Marker 7">
<Key name="NumPad9"/>
</Command>
<Command category="View" name="Toggle Detached Editor">
<Key name="Command+F2"/>
</Command>
<Command category="Track" name="Group Selected Tracks">
<Key name="Command+G"/>
</Command>
<Command category="Track" name="Dissolve Group">
<Key name="Command+Shift+G"/>
</Command>
<Command category="Track" name="Rename Group">
<Key name="Command+Shift+R"/>
</Command>
<Command category="Track" name="Duplicate Layer">
<Key name="Command+|"/>
</Command>
<Command category="Automation" name="Touch">
<Key name="K"/>
</Command>
<Command category="Automation" name="Toggle Read">
<Key name="J"/>
</Command>
<Command category="Automation" name="Previous Parameter">
<Key name="Shift+H"/>
</Command>
<Command category="Edit" name="Insert Bend Marker">
<Key name="Option+Ins"/>
</Command>
<Command category="Transport" name="Start">
<Key name="Enter"/>
</Command>
<Command category="Transport" name="Stop">
<Key name="NumPad0"/>
<Key name="Stop"/>
</Command>
<Command category="Transport" name="Record">
<Key name="Record"/>
<Key name="NumPad3"/>
<Key name="0"/>
</Command>
<Command category="Transport" name="Rewind">
<Key name="NumPad-"/>
<Key name="Rewind"/>
</Command>
<Command category="Transport" name="Forward">
<Key name="NumPad+"/>
<Key name="Forward"/>
</Command>
<Command category="Transport" name="Rewind Bar">
<Key name="Shift+Rewind"/>
<Key name="Command+["/>
</Command>
<Command category="Transport" name="Forward Bar">
<Key name="Shift+Forward"/>
<Key name="Command+]"/>
</Command>
<Command category="Transport" name="Return to Zero">
<Key name="NumPad,"/>
<Key name=","/>
</Command>
<Command category="Transport" name="Toggle Start">
<Key name="Space"/>
<Key name="Play Pause"/>
</Command>
<Command category="Transport" name="Toggle Loop">
<Key name="NumPad/"/>
<Key name="/"/>
</Command>
<Command category="Transport" name="Autopunch">
<Key name="I"/>
</Command>
<Command category="Transport" name="Preroll">
<Key name="O"/>
</Command>
<Command category="Transport" name="Precount">
<Key name="Shift+C"/>
</Command>
<Command category="Transport" name="Goto Time">
<Key name="Command+T"/>
</Command>
<Command category="Transport" name="Set Play Start Marker">
<Key name="Option+O"/>
</Command>
<Command category="Transport" name="Enable Play Start Marker">
<Key name="Option+P"/>
</Command>
<Command category="Devices" name="All Notes Off">
<Key name="#"/>
</Command>
<Command category="Edit" name="Nudge">
<Key name="Option+Right Arrow"/>
</Command>
<Command category="Edit" name="Nudge Back">
<Key name="Option+Left Arrow"/>
</Command>
<Command category="Edit" name="Nudge Bar">
<Key name="Command+Option+Right Arrow"/>
</Command>
<Command category="Edit" name="Nudge Bar Back">
<Key name="Command+Option+Left Arrow"/>
</Command>
<Command category="Edit" name="Nudge Up">
<Key name="Option+Up Arrow"/>
</Command>
<Command category="Edit" name="Nudge Up Fine">
<Key name="Shift+Option+Up Arrow"/>
</Command>
<Command category="Edit" name="Nudge Down">
<Key name="Option+Down Arrow"/>
</Command>
<Command category="Edit" name="Nudge Down Fine">
<Key name="Shift+Option+Down Arrow"/>
</Command>
<Command category="Console" name="Next Channel">
<Key name=";"/>
</Command>
<Command category="Console" name="Previous Channel">
<Key name="P"/>
</Command>
<Command category="Console" name="Next Bank">
<Key name="}"/>
</Command>
<Command category="Console" name="Previous Bank">
<Key name="{"/>
</Command>
<Command category="Console" name="Toggle Size">
<Key name="Shift+F3"/>
</Command>
<Command category="Console" name="Global Solo">
<Key name="Command+Shift+S"/>
</Command>
<Command category="Console" name="Global Mute">
<Key name="Command+Shift+M"/>
</Command>
<Command category="View" name="Toggle Detached Console">
<Key name="Command+F3"/>
</Command>
<Command category="Transport" name="Click">
<Key name="C"/>
</Command>
<Command category="Automation" name="Show Current Parameter">
<Key name="Option+A"/>
</Command>
<Command category="Devices" name="Assign Current Parameter">
<Key name="Option+M"/>
</Command>
<Command category="Zoom" name="Data Zoom In">
<Key name="Command++"/>
</Command>
<Command category="Zoom" name="Data Zoom Out">
<Key name="Command+_"/>
</Command>
<Command category="Edit" name="Duplicate">
<Key name="D"/>
</Command>
<Command category="Edit" name="Duplicate Shared">
<Key name="Shift+D"/>
</Command>
<Command category="Edit" name="Paste at Original Position">
<Key name="Command+Shift+V"/>
</Command>
<Command category="Edit" name="Split">
<Key name="Option+X"/>
</Command>
<Command category="Edit" name="Split at Cursor">
<Key name="Command+Return"/>
</Command>
<Command category="Edit" name="Select All in Loop">
<Key name="Option+L"/>
</Command>
<Command category="Transport" name="Loop Selection">
<Key name="Shift+P"/>
</Command>
<Command category="Transport" name="Locate Selection">
<Key name="L"/>
</Command>
<Command category="Transport" name="Goto Next Event">
<Key name="Shift+Option+N"/>
</Command>
<Command category="Transport" name="Goto Previous Event">
<Key name="Shift+Option+B"/>
</Command>
<Command category="Transport" name="Locate Mouse Cursor">
<Key name="Command+Space"/>
<Key name="\"/>
</Command>
<Command category="Transport" name="Set Loop Start">
<Key name="Option+NumPad1"/>
</Command>
<Command category="Transport" name="Set Loop End">
<Key name="Option+NumPad2"/>
</Command>
<Command category="Transport" name="Loop Follows Selection">
<Key name="Command+Option+P"/>
</Command>
<Command category="Navigation" name="Previous Hotspot">
<Key name="Command+Backspace"/>
</Command>
<Command category="Edit" name="Toggle Snap">
<Key name="N"/>
</Command>
<Command category="Zoom" name="Zoom In">
<Key name="="/>
</Command>
<Command category="Zoom" name="Zoom Out">
<Key name="Command+NumPad-"/>
<Key name="-"/>
</Command>
<Command category="Zoom" name="Zoom Full">
<Key name="Option+Z"/>
</Command>
<Command category="Zoom" name="Zoom to Loop">
<Key name="Shift+L"/>
</Command>
<Command category="Zoom" name="Zoom to Selection">
<Key name="Shift+S"/>
</Command>
<Command category="Zoom" name="Zoom to Selection Horizontally">
<Key name="Option+S"/>
</Command>
<Command category="Zoom" name="Zoom In Vertical">
<Key name="+"/>
</Command>
<Command category="Zoom" name="Zoom Out Vertical">
<Key name="_"/>
</Command>
<Command category="Edit" name="Autoscroll">
<Key name="F"/>
</Command>
<Command category="Zoom" name="Undo Zoom">
<Key name="Option+W"/>
<Key name="Option+Backspace"/>
</Command>
<Command category="Zoom" name="Redo Zoom">
<Key name="Option+E"/>
</Command>
<Command category="Zoom" name="Toggle Zoom">
<Key name="Z"/>
</Command>
<Command category="Zoom" name="Store Zoom State">
<Key name="Shift+Z"/>
</Command>
<Command category="Quantize" name="Set Program A">
<Key name="Command+Option+1"/>
</Command>
<Command category="Quantize" name="Set Program B">
<Key name="Command+Option+2"/>
</Command>
<Command category="Quantize" name="Set Program C">
<Key name="Command+Option+3"/>
</Command>
<Command category="Quantize" name="Set Program D">
<Key name="Command+Option+4"/>
</Command>
<Command category="Quantize" name="Set Program E">
<Key name="Command+Option+5"/>
</Command>
<Command category="Quantize" name="Set Program F">
<Key name="Command+Option+6"/>
</Command>
<Command category="Quantize" name="Set Program G">
<Key name="Command+Option+7"/>
</Command>
<Command category="File" name="Quit">
<Key name="Command+Q"/>
</Command>
<Command category="Help" name="Contents">
<Key name="Option+F1"/>
</Command>
<Command category="Help" name="Context Help">
<Key name="F1"/>
</Command>
<Command category="Application" name="Options">
<Key name="Command+,"/>
</Command>
<Command category="File" name="Open">
<Key name="Command+O"/>
</Command>
<Command category="File" name="Close">
<Key name="Command+W"/>
</Command>
<Command category="File" name="Save">
<Key name="Command+S"/>
</Command>
<Command category="File" name="Save As">
<Key name="Command+Option+S"/>
</Command>
<Command category="File" name="Save New Version">
<Key name="Command+Shift+Option+S"/>
</Command>
<Command category="Edit" name="Redo">
<Key name="Command+Y"/>
<Key name="Command+Shift+Z"/>
</Command>
<Command category="Edit" name="Invert Selection">
<Key name="Command+I"/>
</Command>
<Command category="Presets" name="Next">
<Key name="Option+Page Down"/>
</Command>
<Command category="Presets" name="Previous">
<Key name="Option+Page Up"/>
</Command>
<Command category="Toolbar" name="Tool 1">
<Key name="1"/>
</Command>
<Command category="Toolbar" name="Tool 2">
<Key name="2"/>
</Command>
<Command category="Toolbar" name="Tool 3">
<Key name="3"/>
</Command>
<Command category="Toolbar" name="Tool 4">
<Key name="4"/>
</Command>
<Command category="Toolbar" name="Tool 5">
<Key name="5"/>
</Command>
<Command category="Toolbar" name="Tool 6">
<Key name="6"/>
</Command>
<Command category="Toolbar" name="Tool 7">
<Key name="7"/>
</Command>
<Command category="Edit" name="Search">
<Key name="Command+F"/>
</Command>
<Command category="View" name="Console">
<Key name="F3"/>
</Command>
<Command category="View" name="Inspector">
<Key name="F4"/>
</Command>
<Command category="View" name="Editor">
<Key name="F2"/>
</Command>
<Command category="View" name="Record Panel">
<Key name="Shift+Option+R"/>
</Command>
<Command category="View" name="Browser">
<Key name="F5"/>
</Command>
<Command category="Scratch Pad" name="Copy Loop Range to Scratch Pad">
<Key name="V"/>
</Command>
<Command category="Macros" name="Macro QXJ0aWN1bGF0aW9ucyAtIDAyMCAtIExlZ2F0byAtIEdlbmVyaWM=">
<Key name="Command+6"/>
</Command>
<Command category="Macros" name="Macro QXJ0aWN1bGF0aW9ucyAtIDAzMyAtIExlZ2F0byAtIFNsdXJyZWQgKGxlZ2F0byBydW5zKQ==">
<Key name="Command+7"/>
</Command>
<Command category="Macros" name="Macro QXJ0aWN1bGF0aW9ucyAtIDAwMSAtIExvbmdzIC0gR2VuZXJpYw==">
<Key name="Command+1"/>
</Command>
<Command category="Macros" name="Macro QXJ0aWN1bGF0aW9ucyAtIDAwOSAtIExvbmdzIC0gSGFyZCAoY3VpdnJlLCBvdmVyYmxvd24sIG5hc3R5KQ==">
<Key name="Command+2"/>
</Command>
<Command category="Macros" name="Macro QXJ0aWN1bGF0aW9ucyAtIDAxMSAtIExvbmdzIC0gVHJlbSAodHJlbW9sYW5kbywgZmx1dHRlcik=">
<Key name="Command+9"/>
</Command>
<Command category="Macros" name="Macro QXJ0aWN1bGF0aW9ucyAtIDA0MCAtIFNob3J0cyAtIEdlbmVyaWM=">
<Key name="Command+3"/>
</Command>
<Command category="Macros" name="Macro QXJ0aWN1bGF0aW9ucyAtIDA0OSAtIFNob3J0cyAtIEhhcmQgKGRpZyk=">
<Key name="Command+4"/>
</Command>
<Command category="Macros" name="Macro QXJ0aWN1bGF0aW9ucyAtIDA1NiAtIFNob3J0cyAtIFBsdWNrZWQgKHBpenppY2F0byk=">
<Key name="Command+8"/>
</Command>
<Command category="Macros" name="Macro QXJ0aWN1bGF0aW9ucyAtIDA0MiAtIFNob3J0cyAtIFZlcnkgc2hvcnQgKHNwaWNjYXRvLCBzdGFjY2F0aXNzaW1vKQ==">
<Key name="Command+5"/>
</Command>
<Command category="Macros" name="Macro UmVtb3ZlIFJlY29yZA==">
<Key name="NumPad1"/>
<Key name="8"/>
</Command>
<Command category="Macros" name="Macro UmVzdGFydCBSZWNvcmRpbmc=">
<Key name="NumPad2"/>
<Key name="9"/>
</Command>
<Command category="Macros" name="Macro Q3V0IGFuZCBDcm9zc2ZhZGU=">
<Key name="Command+\"/>
</Command>
<Command category="Macros" name="Macro Q3V0IGF0IHBsYXloZWFkIGFuZCBjcm9zc2ZhZGU=">
<Key name="W"/>
</Command>
<Command category="Macros" name="Macro TWVyZ2UgQWxsIEV2ZW50cyBvbiBTZWxlY3RlZCBUcmFja3M=">
<Key name="Option+#"/>
</Command>
<Command category="Macros" name="Macro dGVzdA==">
<Key name="|"/>
</Command>
<Command category="Macros" name="Macro U2V0dXAgU3RlcCBSZWNvcmQ=">
<Key name="Shift+Return"/>
</Command>
<Command category="Macros" name="Macro U3RyaXAgU2ls">
<Key name="Command+/"/>
</Command>
<Command category="Macros" name="Macro U2V0IEFsbCB0byA4dGhz">
<Key name="Command+;"/>
</Command>
<Command category="Macros" name="Macro U2V0IEFsbCB0byBMZWdhdG8gd19PdmVybGFw">
<Key name="Command+Shift+L"/>
</Command>
<Command category="Macros" name="Macro U2V0IEFsbCB0byBMZWdhdG8gd19vIE92ZXJsYXA=">
<Key name="Command+L"/>
</Command>
<Command category="Macros" name="Macro U2V0IEFsbCB0byBRdWFydGVycw==">
<Key name="Command+'"/>
</Command>
<Command category="Edit" name="Delete Time">
<Key name="Command+Option+D"/>
</Command>
<Command category="Edit" name="Insert Silence">
<Key name="Command+Option+I"/>
</Command>
<Command category="Track" name="Add Tracks">
<Key name="T"/>
</Command>
<Command category="Track" name="Pack Folder">
<Key name="Command+Shift+F"/>
</Command>
<Command category="Event" name="Toggle Mute">
<Key name="Shift+M"/>
</Command>
<Command category="Event" name="Replace Event With Next Layer">
<Key name="Option+H"/>
</Command>
<Command category="Event" name="Replace Event With Previous Layer">
<Key name="Option+G"/>
</Command>
<Command category="Event" name="Bounce Selection">
<Key name="Command+B"/>
</Command>
<Command category="Event" name="Bounce To New Track">
<Key name="Command+Option+B"/>
</Command>
<Command category="Event" name="Merge Events">
<Key name="G"/>
</Command>
<Command category="Event" name="Trim Start to Cursor">
<Key name="E"/>
</Command>
<Command category="Event" name="Quantize">
<Key name="Q"/>
</Command>
<Command category="Event" name="Quantize 50%">
<Key name="Option+Q"/>
</Command>
<Command category="Event" name="Restore Timing">
<Key name="Shift+Q"/>
</Command>
<Command category="Audio" name="Decrease Volume Fine">
<Key name="Shift+Option+NumPad-"/>
</Command>
<Command category="Audio" name="Increase Volume Fine">
<Key name="Shift+Option+NumPad+"/>
</Command>
<Command category="Audio" name="Open Event FX Editor">
<Key name="Option+F"/>
</Command>
<Command category="Audio" name="Normalize Audio">
<Key name="Option+N"/>
</Command>
<Command category="Audio" name="Reverse Audio">
<Key name="Command+R"/>
</Command>
<Command category="Audio" name="Edit with Melodyne">
<Key name="Command+M"/>
</Command>
<Command category="Audio" name="Remove Melodyne">
<Key name="Command+Option+M"/>
</Command>
<Command category="Audio" name="Create Autofades">
<Key name="Shift+X"/>
</Command>
<Command category="Audio" name="Create Crossfades">
<Key name="X"/>
</Command>
<Command category="Audio" name="Decrease Volume">
<Key name="Option+NumPad-"/>
</Command>
<Command category="Audio" name="Increase Volume">
<Key name="Option+NumPad+"/>
</Command>
<Command category="Musical Functions" name="Transpose">
<Key name="Option+T"/>
</Command>
<Command category="Musical Functions" name="Humanize">
<Key name="H"/>
</Command>
<Command category="Musical Functions" name="Delete Double Notes">
<Key name="Option+D"/>
</Command>
<Command category="Event" name="Extend to part end">
<Key name="""/>
</Command>
<Command category="View" name="Reset Window Positions"/>
<Command category="Navigation" name="Enter"/>
<Command category="Navigation" name="Cancel"/>
<Command category="File" name="Save As Template"/>
<Command category="View" name="Show Song"/>
<Command category="View" name="Show Project"/>
<Command category="Application" name="Activation"/>
<Command category="Browser" name="Show Home Page"/>
<Command category="Browser" name="Show Loops"/>
<Command category="Browser" name="Show Cloud"/>
<Command category="Application" name="Login"/>
<Command category="Application" name="Installation"/>
<Command category="Application" name="Extensions"/>
<Command category="Device" name="Activate All Inserts"/>
<Command category="Help" name="Check for Updates"/>
<Command category="Help" name="View Release Notes"/>
<Command category="Application" name="Activate Purchased Items"/>
<Command category="Track" name="Transform to Rendered Audio"/>
<Command category="Track" name="Transform to Realtime Audio"/>
<Command category="Song" name="Remove Track and Instrument"/>
<Command category="Project" name="Burn Audio CD"/>
<Command category="Project" name="Project Setup"/>
<Command category="Project" name="Import File"/>
<Command category="Project" name="Remove Track"/>
<Command category="Project" name="Disable Track"/>
<Command category="Project" name="Enable Track"/>
<Command category="Project" name="Locate Missing Devices"/>
<Command category="Project" name="Update Mastering Files"/>
<Command category="Project" name="Make Image"/>
<Command category="Project" name="Digital Release"/>
<Command category="Project" name="Make DDP Image"/>
<Command category="Track" name="Hide"/>
<Command category="Track" name="Expand Envelopes"/>
<Command category="Edit" name="Select Events in Range"/>
<Command category="Edit" name="Move to Origin"/>
<Command category="View" name="Fit Timeline to Contents"/>
<Command category="Zoom" name="Zoom Selected Track"/>
<Command category="Track" name="Show in Console"/>
<Command category="Track" name="Edit"/>
<Command category="Track" name="Duplicate"/>
<Command category="Track" name="Duplicate (complete)"/>
<Command category="Song" name="Render Click"/>
<Command category="Song" name="Song Setup"/>
<Command category="Song" name="Locate Missing Devices"/>
<Command category="Song" name="Show in Explorer/Finder"/>
<Command category="Media" name="Locate File"/>
<Command category="Media" name="Select on Track"/>
<Command category="Media" name="Convert Files"/>
<Command category="Navigation" name="Previous Event"/>
<Command category="Navigation" name="Previous Event Extend"/>
<Command category="Navigation" name="Next Event"/>
<Command category="Navigation" name="Next Event Extend"/>
<Command category="Navigation" name="First Event"/>
<Command category="Navigation" name="First Event Extend"/>
<Command category="Navigation" name="Last Event"/>
<Command category="Navigation" name="Last Event Extend"/>
<Command category="Navigation" name="Previous Track Extend"/>
<Command category="Navigation" name="Next Track Extend"/>
<Command category="Navigation" name="First Track"/>
<Command category="Navigation" name="First Track Extend"/>
<Command category="Navigation" name="Last Track"/>
<Command category="Navigation" name="Last Track Extend"/>
<Command category="Marker" name="Delete"/>
<Command category="View" name="Open Markertrack"/>
<Command category="Marker" name="Recall Marker 1"/>
<Command category="Marker" name="Recall Marker 8"/>
<Command category="Marker" name="Recall Marker 9"/>
<Command category="Step Record" name="Enable"/>
<Command category="Step Record" name="Back"/>
<Command category="Step Record" name="Insert Rest"/>
<Command category="Automation" name="Manage Parameters"/>
<Command category="Automation" name="Show / Hide"/>
<Command category="Automation" name="Show Device"/>
<Command category="Automation" name="Remove"/>
<Command category="Track" name="Add Layer"/>
<Command category="Track" name="Remove Layer"/>
<Command category="Track" name="Rename Layer"/>
<Command category="Track" name="Activate Layer"/>
<Command category="Track" name="Solo Layer"/>
<Command category="Song" name="Update Mastering File"/>
<Command category="Automation" name="Off"/>
<Command category="Automation" name="Read"/>
<Command category="Automation" name="Latch"/>
<Command category="Automation" name="Write"/>
<Command category="Automation" name="Next Mode"/>
<Command category="Automation" name="Previous Mode"/>
<Command category="Automation" name="Next Parameter"/>
<Command category="Media" name="Locate Missing Files"/>
<Command category="Media" name="Remove Unused Files"/>
<Command category="Media" name="Copy External Files"/>
<Command category="Media" name="Show Media Folder in Explorer/Finder"/>
<Command category="Track" name="Instrument Input follows Selection"/>
<Command category="Track" name="Audio Input follows Selection"/>
<Command category="Track" name="Solo follows Selection"/>
<Command category="Record Mode" name="Record Mode Replace"/>
<Command category="Record Mode" name="Loop Record Takes"/>
<Command category="Record Mode" name="Loop Record Mix"/>
<Command category="Record Mode" name="Note Erase"/>
<Command category="Record Mode" name="Note Repeat"/>
<Command category="Record Mode" name="Input Quantize"/>
<Command category="Record Mode" name="Record Takes to Layers"/>
<Command category="Record Functions" name="Undo Last Loop"/>
<Command category="Record Functions" name="Undo All"/>
<Command category="Edit" name="Reset Bend Marker"/>
<Command category="Track" name="Expand Folder Track"/>
<Command category="Track" name="Select Scene 1"/>
<Command category="Track" name="Select Scene 2"/>
<Command category="Track" name="Select Scene 3"/>
<Command category="Track" name="Select Scene 4"/>
<Command category="Track" name="Select Scene 5"/>
<Command category="Track" name="Next Scene"/>
<Command category="Track" name="Previous Scene"/>
<Command category="Devices" name="Restore Audio Device Settings"/>
<Command category="Transport" name="Play from Loop Start"/>
<Command category="Transport" name="Autopunch In"/>
<Command category="Transport" name="Autopunch Out"/>
<Command category="Transport" name="Shift Loop"/>
<Command category="Transport" name="Shift Loop Backwards"/>
<Command category="Transport" name="Goto Loop Start"/>
<Command category="Transport" name="Goto Loop End"/>
<Command category="Transport" name="Return to Start on Stop"/>
<Command category="Console" name="Add Group Channel"/>
<Command category="Console" name="Add FX Channel"/>
<Command category="Console" name="Add Insert"/>
<Command category="Console" name="Add Post Fader Insert"/>
<Command category="Console" name="Add Send"/>
<Command category="Console" name="Select Mix FX"/>
<Command category="Console" name="Toggle Width"/>
<Command category="Console" name="Show Track"/>
<Command category="Console" name="Hide Channel"/>
<Command category="Console" name="Show Channel"/>
<Command category="Console" name="Hide Related Channels"/>
<Command category="Console" name="Show Related Channels"/>
<Command category="Console" name="Toggle Related Channels"/>
<Command category="Console" name="Open Channel"/>
<Command category="Console" name="Remove Channel"/>
<Command category="Automation" name="Remove Current Parameter"/>
<Command category="Console" name="Select Scene 1"/>
<Command category="Console" name="Select Scene 2"/>
<Command category="Console" name="Select Scene 3"/>
<Command category="Console" name="Select Scene 4"/>
<Command category="Console" name="Select Scene 5"/>
<Command category="Console" name="Next Scene"/>
<Command category="Console" name="Previous Scene"/>
<Command category="Transport" name="Cursor follows Edit Position"/>
<Command category="Edit" name="Duplicate and Insert"/>
<Command category="Edit" name="Move to Cursor"/>
<Command category="Transport" name="Loop Selection Snapped"/>
<Command category="Transport" name="Locate Selection End"/>
<Command category="Navigation" name="Next Hotspot"/>
<Command category="Zoom" name="Zoom Full Horizontally"/>
<Command category="Zoom" name="Restore Zoom State"/>
<Command category="Automation" name="Transform Range"/>
<Command category="Tempo" name="Insert"/>
<Command category="Tempo" name="Delete"/>
<Command category="Edit" name="Size Range Start"/>
<Command category="Edit" name="Size Range Start Back"/>
<Command category="Edit" name="Size Range End"/>
<Command category="Edit" name="Size Range End Back"/>
<Command category="Edit" name="Size Range Start to Hotspot"/>
<Command category="Edit" name="Size Range Start to Hotspot Back"/>
<Command category="Edit" name="Size Range End to Hotspot"/>
<Command category="Edit" name="Size Range End to Hotspot Back"/>
<Command category="Edit" name="Move Range"/>
<Command category="Edit" name="Move Range Back"/>
<Command category="Edit" name="Move Range to Hotspot"/>
<Command category="Edit" name="Move Range to Hotspot Back"/>
<Command category="Edit" name="Size Range Start Up"/>
<Command category="Edit" name="Size Range Start Down"/>
<Command category="Edit" name="Size Range End Up"/>
<Command category="Edit" name="Size Range End Down"/>
<Command category="Edit" name="Move Range Up"/>
<Command category="Edit" name="Move Range Down"/>
<Command category="Edit" name="Range Start to Cursor"/>
<Command category="Edit" name="Range End to Cursor"/>
<Command category="Edit" name="Create Range from Cursor"/>
<Command category="Edit" name="Create Range from Cursor to Hotspot"/>
<Command category="Quantize" name="Select Base"/>
<Command category="Quantize" name="Clear Pattern"/>
<Command category="Help" name="About"/>
<Command category="Help" name="Keyboard Shortcuts"/>
<Command category="Help" name="Website"/>
<Command category="Help" name="Open Settings Folder"/>
<Command category="Application" name="Keyboard Shortcuts"/>
<Command category="Navigation" name="Back"/>
<Command category="Navigation" name="Forward"/>
<Command category="Navigation" name="Home"/>
<Command category="Navigation" name="Refresh"/>
<Command category="Browser" name="Ascend Root"/>
<Command category="Browser" name="Reset Root"/>
<Command category="Browser" name="New Tab"/>
<Command category="Browser" name="New Root Tab"/>
<Command category="Browser" name="Close Tab"/>
<Command category="Browser" name="Rename Tab"/>
<Command category="Browser" name="Refresh"/>
<Command category="File" name="New"/>
<Command category="File" name="Close All"/>
<Command category="File" name="Save to New Folder"/>
<Command category="File" name="Restore Version"/>
<Command category="File" name="Rename"/>
<Command category="File" name="Revert"/>
<Command category="Edit" name="Delete Undo History"/>
<Command category="File" name="Clear Recent Files"/>
<Command category="Presets" name="Store Preset"/>
<Command category="Presets" name="Replace Preset"/>
<Command category="Presets" name="Store as Default Preset"/>
<Command category="Presets" name="Re-Index Presets"/>
<Command category="Presets" name="Update Plug-Ins"/>
<Command category="Toolbar" name="Next Tool"/>
<Command category="Toolbar" name="Previous Tool"/>
<Command category="Toolbar" name="Tool 8"/>
<Command category="Toolbar" name="Tool 9"/>
<Command category="Presets" name="Import Preset"/>
<Command category="Presets" name="Export Preset"/>
<Command category="Presets" name="Load Preset File"/>
<Command category="Browser" name="Show in Explorer/Finder"/>
<Command category="Browser" name="Rename File"/>
<Command category="Browser" name="New Folder"/>
<Command category="Console" name="Show Channel Banks"/>
<Command category="Console" name="Show Instrument Rack"/>
<Command category="Console" name="Show External Devices"/>
<Command category="Console" name="Show Trash Bin"/>
<Command category="Console" name="Show Inputs"/>
<Command category="Console" name="Show Outputs"/>
<Command category="View" name="Track List"/>
<Command category="View" name="Open Tempotrack"/>
<Command category="View" name="Scratch Pad"/>
<Command category="Song" name="Song Information"/>
<Command category="Transport" name="Metronome Setup"/>
<Command category="View" name="Step Record"/>
<Command category="View" name="Time Display"/>
<Command category="View" name="Remaining Record Time"/>
<Command category="View" name="Performance Monitor"/>
<Command category="View" name="MIDI Monitor"/>
<Command category="View" name="Messages"/>