forked from krauskopf/node-red-contrib-avr-yamaha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
references.js
3675 lines (3660 loc) · 245 KB
/
references.js
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
// This is the list of supported 'reference nodes' as described by the
// Yamaha YNC API documentation. Currently this is the list as supported
// by the RX-V677.
var referencesGet = [
'',
'System.Config',
'System.Power_Control.Power',
'System.Power_Control.ECO_Mode',
'System.Power_Control.Auto_Power_Standby.Timer',
'System.Sound_Video.Dynamic_Range',
'System.Sound_Video.HDMI.Control',
'System.Sound_Video.HDMI.Output.OUT_1',
'System.Sound_Video.HDMI.Output.OUT_2',
'System.Sound_Video.HDMI.Audio.Main_Zone_Output',
'System.Sound_Video.HDMI.Audio.TV_Audio_In',
'System.Sound_Video.HDMI.Audio.Audio_Return_Channel',
'System.Sound_Video.HDMI.Standby_Sync',
'System.Sound_Video.HDMI.Standby_Through',
'System.Sound_Video.HDMI.Video.Mode',
'System.Sound_Video.HDMI.Video.Aspect',
'System.Sound_Video.HDMI.Video.Resolution',
'System.Sound_Video.Lipsync.Mode',
'System.Sound_Video.Lipsync.Current',
'System.Sound_Video.Lipsync.Manual',
'System.Sound_Video.Lipsync.Offset_for_Auto',
'System.Sound_Video.Lipsync.Input_Enable',
'System.Input_Output.Assign.Video_Out',
'System.Input_Output.Assign.Audio_In',
'System.Input_Output.Volume_Trim',
'System.Input_Output.Input_Name',
'System.Input_Output.Input_Icon',
'System.Speaker_Preout.Pattern_1.Power_Amp_Assign',
'System.Speaker_Preout.Pattern_1.Config.Front',
'System.Speaker_Preout.Pattern_1.Config.Center',
'System.Speaker_Preout.Pattern_1.Config.Sur',
'System.Speaker_Preout.Pattern_1.Config.Sur_Back',
'System.Speaker_Preout.Pattern_1.Config.Front_Presence',
'System.Speaker_Preout.Pattern_1.Config.Subwoofer',
'System.Speaker_Preout.Pattern_1.Config.Layout',
'System.Speaker_Preout.Pattern_1.Distance',
'System.Speaker_Preout.Pattern_1.Lvl',
'System.Speaker_Preout.Pattern_1.PEQ.Sel',
'System.Speaker_Preout.Pattern_1.PEQ.Manual_Data.Front_L',
'System.Speaker_Preout.Pattern_1.PEQ.Manual_Data.Front_R',
'System.Speaker_Preout.Pattern_1.PEQ.Manual_Data.Center',
'System.Speaker_Preout.Pattern_1.PEQ.Manual_Data.Sur_L',
'System.Speaker_Preout.Pattern_1.PEQ.Manual_Data.Sur_R',
'System.Speaker_Preout.Pattern_1.PEQ.Manual_Data.Sur_Back_L',
'System.Speaker_Preout.Pattern_1.PEQ.Manual_Data.Sur_Back_R',
'System.Speaker_Preout.Pattern_1.PEQ.Manual_Data.Front_Presence_L',
'System.Speaker_Preout.Pattern_1.PEQ.Manual_Data.Front_Presence_R',
'System.Speaker_Preout.Pattern_1.PEQ.Flat_Data.Front_L',
'System.Speaker_Preout.Pattern_1.PEQ.Flat_Data.Front_R',
'System.Speaker_Preout.Pattern_1.PEQ.Flat_Data.Center',
'System.Speaker_Preout.Pattern_1.PEQ.Flat_Data.Sur_L',
'System.Speaker_Preout.Pattern_1.PEQ.Flat_Data.Sur_R',
'System.Speaker_Preout.Pattern_1.PEQ.Flat_Data.Sur_Back_L',
'System.Speaker_Preout.Pattern_1.PEQ.Flat_Data.Sur_Back_R',
'System.Speaker_Preout.Pattern_1.PEQ.Flat_Data.Front_Presence_L',
'System.Speaker_Preout.Pattern_1.PEQ.Flat_Data.Front_Presence_R',
'System.Speaker_Preout.Pattern_1.PEQ.Front_Data.Front_L',
'System.Speaker_Preout.Pattern_1.PEQ.Front_Data.Front_R',
'System.Speaker_Preout.Pattern_1.PEQ.Front_Data.Center',
'System.Speaker_Preout.Pattern_1.PEQ.Front_Data.Sur_L',
'System.Speaker_Preout.Pattern_1.PEQ.Front_Data.Sur_R',
'System.Speaker_Preout.Pattern_1.PEQ.Front_Data.Sur_Back_L',
'System.Speaker_Preout.Pattern_1.PEQ.Front_Data.Sur_Back_R',
'System.Speaker_Preout.Pattern_1.PEQ.Front_Data.Front_Presence_L',
'System.Speaker_Preout.Pattern_1.PEQ.Front_Data.Front_Presence_R',
'System.Speaker_Preout.Pattern_1.PEQ.Natural_Data.Front_L',
'System.Speaker_Preout.Pattern_1.PEQ.Natural_Data.Front_R',
'System.Speaker_Preout.Pattern_1.PEQ.Natural_Data.Center',
'System.Speaker_Preout.Pattern_1.PEQ.Natural_Data.Sur_L',
'System.Speaker_Preout.Pattern_1.PEQ.Natural_Data.Sur_R',
'System.Speaker_Preout.Pattern_1.PEQ.Natural_Data.Sur_Back_L',
'System.Speaker_Preout.Pattern_1.PEQ.Natural_Data.Sur_Back_R',
'System.Speaker_Preout.Pattern_1.PEQ.Natural_Data.Front_Presence_L',
'System.Speaker_Preout.Pattern_1.PEQ.Natural_Data.Front_Presence_R',
'System.Misc.Display.Language',
'System.Misc.Display.Wall_Paper',
'System.Misc.Display.FL',
'System.Misc.Display.Short_Message',
'System.Misc.Network.Network_Standby',
'System.Misc.Network.Parameters',
'System.Misc.Network.Info',
'System.Misc.Network.MAC_Address_Filter',
'System.Misc.Network.DMC_Control',
'System.Misc.Network.Network_Name',
'System.Misc.Network.YNCA_Port',
'System.Misc.Trig_Out.Trig_1.Manual_Control',
'System.Misc.Trig_Out.Trig_1.Type',
'System.Misc.Trig_Out.Trig_1.Zone',
'System.Misc.Trig_Out.Trig_1.Input',
'System.Misc.DC_OUT.Type',
'System.Misc.Advanced_Setup.Speaker_Impedance',
'System.Misc.Advanced_Setup.Remote_Control_ID',
'System.Misc.Advanced_Setup.Initialize',
'System.Misc.Advanced_Setup.TV_Format',
'System.Misc.Advanced_Setup.HDMI_Monitor_Check',
'System.Misc.Memory_Guard',
'System.Misc.Event.Notice',
'Main_Zone.Config',
'Main_Zone.Basic_Status',
'Main_Zone.Power_Control.Power',
'Main_Zone.Power_Control.Sleep',
'Main_Zone.Volume.Lvl',
'Main_Zone.Volume.Mute',
'Main_Zone.Volume.Subwoofer_Trim',
'Main_Zone.Volume.Max_Lvl',
'Main_Zone.Volume.Init_Lvl',
'Main_Zone.Volume.Memory.Memory_1',
'Main_Zone.Volume.Memory.Memory_2',
'Main_Zone.Volume.Memory.Memory_3',
'Main_Zone.Volume.Memory.Memory_4',
'Main_Zone.Volume.Memory.Memory_5',
'Main_Zone.Volume.Memory.Memory_6',
'Main_Zone.Input.Input_Sel',
'Main_Zone.Input.Decoder_Sel.Current',
'Main_Zone.Input.Decoder_Sel.HDMI_1',
'Main_Zone.Input.Decoder_Sel.HDMI_2',
'Main_Zone.Input.Decoder_Sel.HDMI_3',
'Main_Zone.Input.Decoder_Sel.HDMI_4',
'Main_Zone.Input.Decoder_Sel.HDMI_5',
'Main_Zone.Input.Decoder_Sel.AV_1',
'Main_Zone.Input.Decoder_Sel.AV_2',
'Main_Zone.Input.Decoder_Sel.AV_3',
'Main_Zone.Input.Decoder_Sel.AV_4',
'Main_Zone.Input.Decoder_Sel.V_AUX',
'Main_Zone.Scene.Scene_1',
'Main_Zone.Scene.Scene_2',
'Main_Zone.Scene.Scene_3',
'Main_Zone.Scene.Scene_4',
'Main_Zone.Sound_Video.Headphone',
'Main_Zone.Sound_Video.Tone.Bass',
'Main_Zone.Sound_Video.Tone.Treble',
'Main_Zone.Sound_Video.Pure_Direct.Mode',
'Main_Zone.Sound_Video.YPAO_Volume',
'Main_Zone.Sound_Video.Extra_Bass',
'Main_Zone.Sound_Video.Adaptive_DRC',
'Main_Zone.Sound_Video.Dialogue_Adjust.Dialogue_Lift',
'Main_Zone.Sound_Video.Dialogue_Adjust.Dialogue_Lvl',
'Main_Zone.Surround.Program_Sel.Current',
'Main_Zone.Surround.Program_Sel.TUNER',
'Main_Zone.Surround.Program_Sel.HDMI_1',
'Main_Zone.Surround.Program_Sel.HDMI_2',
'Main_Zone.Surround.Program_Sel.HDMI_3',
'Main_Zone.Surround.Program_Sel.HDMI_4',
'Main_Zone.Surround.Program_Sel.HDMI_5',
'Main_Zone.Surround.Program_Sel.AV_1',
'Main_Zone.Surround.Program_Sel.AV_2',
'Main_Zone.Surround.Program_Sel.AV_3',
'Main_Zone.Surround.Program_Sel.AV_4',
'Main_Zone.Surround.Program_Sel.AV_5',
'Main_Zone.Surround.Program_Sel.AV_6',
'Main_Zone.Surround.Program_Sel.V_AUX',
'Main_Zone.Surround.Program_Sel.AUDIO_1',
'Main_Zone.Surround.Program_Sel.AUDIO_2',
'Main_Zone.Surround.Program_Sel.Napster',
'Main_Zone.Surround.Program_Sel.Spotify',
'Main_Zone.Surround.Program_Sel.JUKE',
'Main_Zone.Surround.Program_Sel.SERVER',
'Main_Zone.Surround.Program_Sel.NET_RADIO',
'Main_Zone.Surround.Program_Sel.USB',
'Main_Zone.Surround.Program_Sel.AirPlay',
'Main_Zone.Surround.Sound_Program_Param.CLASSICAL',
'Main_Zone.Surround.Sound_Program_Param.LIVE_CLUB',
'Main_Zone.Surround.Sound_Program_Param.ENTERTAINMENT',
'Main_Zone.Surround.Sound_Program_Param.MOVIE',
'Main_Zone.Surround.Sound_Program_Param.STEREO',
'Main_Zone.Surround.Sound_Program_Param.SUR_DECODE',
'Main_Zone.Surround.Adaptive_DSP_Lvl',
'Main_Zone.Surround._3D_Cinema_DSP',
'Main_Zone.Surround.Extended_Sur_Decoder_Sel',
'Main_Zone.Surround._2ch_Decoder_Sel',
'Main_Zone.Cursor_Control.Contents_Display',
'Zone_2.Config',
'Zone_2.Basic_Status',
'Zone_2.Power_Control.Power',
'Zone_2.Power_Control.Sleep',
'Zone_2.Volume.Lvl',
'Zone_2.Volume.Mute',
'Zone_2.Volume.Max_Lvl',
'Zone_2.Volume.Init_Lvl',
'Zone_2.Volume.Memory.Memory_1',
'Zone_2.Volume.Memory.Memory_2',
'Zone_2.Volume.Memory.Memory_3',
'Zone_2.Volume.Memory.Memory_4',
'Zone_2.Volume.Memory.Memory_5',
'Zone_2.Volume.Memory.Memory_6',
'Zone_2.Input.Input_Sel',
'Zone_3.Config',
'Zone_3.Basic_Status',
'Zone_3.Power_Control.Power',
'Zone_3.Power_Control.Sleep',
'Zone_3.Volume.Lvl',
'Zone_3.Volume.Mute',
'Zone_3.Volume.Max_Lvl',
'Zone_3.Volume.Init_Lvl',
'Zone_3.Volume.Memory.Memory_1',
'Zone_3.Volume.Memory.Memory_2',
'Zone_3.Volume.Memory.Memory_3',
'Zone_3.Volume.Memory.Memory_4',
'Zone_3.Volume.Memory.Memory_5',
'Zone_3.Volume.Memory.Memory_6',
'Zone_3.Input.Input_Sel',
'Zone_4.Config',
'Zone_4.Basic_Status',
'Zone_4.Power_Control.Power',
'Zone_4.Power_Control.Sleep',
'Zone_4.Volume.Lvl',
'Zone_4.Volume.Mute',
'Zone_4.Volume.Max_Lvl',
'Zone_4.Volume.Init_Lvl',
'Zone_4.Volume.Memory.Memory_1',
'Zone_4.Volume.Memory.Memory_2',
'Zone_4.Volume.Memory.Memory_3',
'Zone_4.Volume.Memory.Memory_4',
'Zone_4.Volume.Memory.Memory_5',
'Zone_4.Volume.Memory.Memory_6',
'Zone_4.Input.Input_Sel',
'Tuner.Config',
'Tuner.Play_Control.Search_Mode',
'Tuner.Play_Control.Preset.Preset_Sel',
'Tuner.Play_Control.Preset.Data',
'Tuner.Play_Control.Tuning',
'Tuner.Play_Control.FM_Mode',
'Tuner.Play_Info',
'Napster.Config',
'Napster.Play_Control.Play_Mode.Repeat',
'Napster.Play_Control.Play_Mode.Shuffle',
'Napster.Play_Info',
'Napster.List_Info',
'Spotify.Config',
'Spotify.Play_Info',
'JUKE.Config',
'JUKE.Play_Control.Play_Mode.Repeat',
'JUKE.Play_Control.Play_Mode.Shuffle',
'JUKE.Play_Info',
'JUKE.List_Info',
'SERVER.Config',
'SERVER.Play_Control.Play_Mode.Repeat',
'SERVER.Play_Control.Play_Mode.Shuffle',
'SERVER.Play_Info',
'SERVER.List_Info',
'NET_RADIO.Config',
'NET_RADIO.Play_Info',
'NET_RADIO.List_Info',
'USB.Config',
'USB.Play_Control.Play_Mode.Repeat',
'USB.Play_Control.Play_Mode.Shuffle',
'USB.Play_Info',
'USB.List_Info',
'iPod_USB.Config',
'iPod_USB.Play_Control.iPod_Mode',
'iPod_USB.Play_Control.Play_Mode.Repeat',
'iPod_USB.Play_Control.Play_Mode.Shuffle',
'iPod_USB.Play_Info',
'iPod_USB.List_Info',
'iPod.Config',
'iPod.Play_Control.iPod_Mode',
'iPod.Play_Control.Play_Mode.Repeat',
'iPod.Play_Control.Play_Mode.Shuffle',
'iPod.Play_Info',
'iPod.List_Info',
'AirPlay.Config',
'AirPlay.Play_Info',
'DAB.Play_Info',
'DAB.List_Info'
];
var referencesPut = [
{ref:'', eg:''},
{ref:'System.Power_Control.Power', eg:'Standby'},
{ref:'System.Power_Control.Power', eg:'On'},
{ref:'System.Power_Control.ECO_Mode', eg:'Off'},
{ref:'System.Power_Control.ECO_Mode', eg:'On'},
{ref:'System.Power_Control.Auto_Power_Standby.Timer', eg:'Off'},
{ref:'System.Power_Control.Auto_Power_Standby.Timer', eg:'20 min'},
{ref:'System.Power_Control.Auto_Power_Standby.Timer', eg:'2 Hr'},
{ref:'System.Power_Control.Auto_Power_Standby.Timer', eg:'4 Hr'},
{ref:'System.Power_Control.Auto_Power_Standby.Timer', eg:'8 Hr'},
{ref:'System.Power_Control.Auto_Power_Standby.Timer', eg:'12 Hr'},
{ref:'System.Sound_Video.Dynamic_Range', eg:'MAX'},
{ref:'System.Sound_Video.Dynamic_Range', eg:'STD'},
{ref:'System.Sound_Video.Dynamic_Range', eg:'MIN/AUTO'},
{ref:'System.Sound_Video.HDMI.Control', eg:'Off'},
{ref:'System.Sound_Video.HDMI.Control', eg:'On'},
{ref:'System.Sound_Video.HDMI.Output.OUT_1', eg:'Off'},
{ref:'System.Sound_Video.HDMI.Output.OUT_1', eg:'On'},
{ref:'System.Sound_Video.HDMI.Output.OUT_2', eg:'Off'},
{ref:'System.Sound_Video.HDMI.Output.OUT_2', eg:'On'},
{ref:'System.Sound_Video.HDMI.Audio.Main_Zone_Output.Amp', eg:'Off'},
{ref:'System.Sound_Video.HDMI.Audio.Main_Zone_Output.Amp', eg:'On'},
{ref:'System.Sound_Video.HDMI.Audio.Main_Zone_Output.OUT_1', eg:'Off'},
{ref:'System.Sound_Video.HDMI.Audio.Main_Zone_Output.OUT_1', eg:'On'},
{ref:'System.Sound_Video.HDMI.Audio.Main_Zone_Output.OUT_2', eg:'Off'},
{ref:'System.Sound_Video.HDMI.Audio.Main_Zone_Output.OUT_2', eg:'On'},
{ref:'System.Sound_Video.HDMI.Audio.TV_Audio_In.TV_1', eg:'AV1'},
{ref:'System.Sound_Video.HDMI.Audio.TV_Audio_In.TV_1', eg:'AV2'},
{ref:'System.Sound_Video.HDMI.Audio.TV_Audio_In.TV_1', eg:'AV3'},
{ref:'System.Sound_Video.HDMI.Audio.TV_Audio_In.TV_1', eg:'AV4'},
{ref:'System.Sound_Video.HDMI.Audio.TV_Audio_In.TV_1', eg:'AV5'},
{ref:'System.Sound_Video.HDMI.Audio.TV_Audio_In.TV_1', eg:'AV6'},
{ref:'System.Sound_Video.HDMI.Audio.TV_Audio_In.TV_1', eg:'AUDIO1'},
{ref:'System.Sound_Video.HDMI.Audio.TV_Audio_In.TV_1', eg:'AUDIO2'},
{ref:'System.Sound_Video.HDMI.Audio.Audio_Return_Channel', eg:'Off'},
{ref:'System.Sound_Video.HDMI.Audio.Audio_Return_Channel', eg:'On'},
{ref:'System.Sound_Video.HDMI.Standby_Sync', eg:'Off'},
{ref:'System.Sound_Video.HDMI.Standby_Sync', eg:'On'},
{ref:'System.Sound_Video.HDMI.Standby_Sync', eg:'Auto'},
{ref:'System.Sound_Video.HDMI.Standby_Through', eg:'Off'},
{ref:'System.Sound_Video.HDMI.Standby_Through', eg:'On'},
{ref:'System.Sound_Video.HDMI.Video.Mode', eg:'Direct'},
{ref:'System.Sound_Video.HDMI.Video.Mode', eg:'Processing'},
{ref:'System.Sound_Video.HDMI.Video.Aspect', eg:'Through'},
{ref:'System.Sound_Video.HDMI.Video.Aspect', eg:'16:9 Normal'},
{ref:'System.Sound_Video.HDMI.Video.Resolution', eg:'Auto'},
{ref:'System.Sound_Video.HDMI.Video.Resolution', eg:'480p / 576p'},
{ref:'System.Sound_Video.HDMI.Video.Resolution', eg:'720p'},
{ref:'System.Sound_Video.HDMI.Video.Resolution', eg:'1080i'},
{ref:'System.Sound_Video.HDMI.Video.Resolution', eg:'1080p'},
{ref:'System.Sound_Video.HDMI.Video.Resolution', eg:'4K'},
{ref:'System.Sound_Video.HDMI.Video.Resolution', eg:'Through'},
{ref:'System.Sound_Video.Lipsync.Mode', eg:'Manual'},
{ref:'System.Sound_Video.Lipsync.Mode', eg:'Auto'},
{ref:'System.Sound_Video.Lipsync.Current.Total_Delay.Val', eg:'Down'},
{ref:'System.Sound_Video.Lipsync.Current.Total_Delay.Val', eg:'Up'},
{ref:'System.Sound_Video.Lipsync.Current.Total_Delay.Val', eg:'0'},
{ref:'System.Sound_Video.Lipsync.Current.Total_Delay.Val', eg:'1'},
{ref:'System.Sound_Video.Lipsync.Current.Total_Delay.Val', eg:'2'},
{ref:'System.Sound_Video.Lipsync.Current.Total_Delay.Val', eg:'498'},
{ref:'System.Sound_Video.Lipsync.Current.Total_Delay.Val', eg:'499'},
{ref:'System.Sound_Video.Lipsync.Current.Total_Delay.Val', eg:'500'},
{ref:'System.Sound_Video.Lipsync.Manual.Analog.Val', eg:'Down'},
{ref:'System.Sound_Video.Lipsync.Manual.Analog.Val', eg:'Up'},
{ref:'System.Sound_Video.Lipsync.Manual.Analog.Val', eg:'0'},
{ref:'System.Sound_Video.Lipsync.Manual.Analog.Val', eg:'1'},
{ref:'System.Sound_Video.Lipsync.Manual.Analog.Val', eg:'2'},
{ref:'System.Sound_Video.Lipsync.Manual.Analog.Val', eg:'498'},
{ref:'System.Sound_Video.Lipsync.Manual.Analog.Val', eg:'499'},
{ref:'System.Sound_Video.Lipsync.Manual.Analog.Val', eg:'500'},
{ref:'System.Sound_Video.Lipsync.Manual.HDMI_OUT_1.Val', eg:'Down'},
{ref:'System.Sound_Video.Lipsync.Manual.HDMI_OUT_1.Val', eg:'Up'},
{ref:'System.Sound_Video.Lipsync.Manual.HDMI_OUT_1.Val', eg:'0'},
{ref:'System.Sound_Video.Lipsync.Manual.HDMI_OUT_1.Val', eg:'1'},
{ref:'System.Sound_Video.Lipsync.Manual.HDMI_OUT_1.Val', eg:'2'},
{ref:'System.Sound_Video.Lipsync.Manual.HDMI_OUT_1.Val', eg:'498'},
{ref:'System.Sound_Video.Lipsync.Manual.HDMI_OUT_1.Val', eg:'499'},
{ref:'System.Sound_Video.Lipsync.Manual.HDMI_OUT_1.Val', eg:'500'},
{ref:'System.Sound_Video.Lipsync.Offset_for_Auto.HDMI_OUT_1.Val', eg:'Down'},
{ref:'System.Sound_Video.Lipsync.Offset_for_Auto.HDMI_OUT_1.Val', eg:'Up'},
{ref:'System.Sound_Video.Lipsync.Offset_for_Auto.HDMI_OUT_1.Val', eg:'-500'},
{ref:'System.Sound_Video.Lipsync.Offset_for_Auto.HDMI_OUT_1.Val', eg:'-499'},
{ref:'System.Sound_Video.Lipsync.Offset_for_Auto.HDMI_OUT_1.Val', eg:'-498'},
{ref:'System.Sound_Video.Lipsync.Offset_for_Auto.HDMI_OUT_1.Val', eg:'498'},
{ref:'System.Sound_Video.Lipsync.Offset_for_Auto.HDMI_OUT_1.Val', eg:'499'},
{ref:'System.Sound_Video.Lipsync.Offset_for_Auto.HDMI_OUT_1.Val', eg:'500'},
{ref:'System.Sound_Video.Lipsync.Input_Enable.Current', eg:'Disable'},
{ref:'System.Sound_Video.Lipsync.Input_Enable.Current', eg:'Enable'},
{ref:'System.Sound_Video.Lipsync.Input_Enable.HDMI_1', eg:'Disable'},
{ref:'System.Sound_Video.Lipsync.Input_Enable.HDMI_1', eg:'Enable'},
{ref:'System.Sound_Video.Lipsync.Input_Enable.HDMI_2', eg:'Disable'},
{ref:'System.Sound_Video.Lipsync.Input_Enable.HDMI_2', eg:'Enable'},
{ref:'System.Sound_Video.Lipsync.Input_Enable.HDMI_3', eg:'Disable'},
{ref:'System.Sound_Video.Lipsync.Input_Enable.HDMI_3', eg:'Enable'},
{ref:'System.Sound_Video.Lipsync.Input_Enable.HDMI_4', eg:'Disable'},
{ref:'System.Sound_Video.Lipsync.Input_Enable.HDMI_4', eg:'Enable'},
{ref:'System.Sound_Video.Lipsync.Input_Enable.HDMI_5', eg:'Disable'},
{ref:'System.Sound_Video.Lipsync.Input_Enable.HDMI_5', eg:'Enable'},
{ref:'System.Sound_Video.Lipsync.Input_Enable.AV_1', eg:'Disable'},
{ref:'System.Sound_Video.Lipsync.Input_Enable.AV_1', eg:'Enable'},
{ref:'System.Sound_Video.Lipsync.Input_Enable.AV_2', eg:'Disable'},
{ref:'System.Sound_Video.Lipsync.Input_Enable.AV_2', eg:'Enable'},
{ref:'System.Sound_Video.Lipsync.Input_Enable.AV_3', eg:'Disable'},
{ref:'System.Sound_Video.Lipsync.Input_Enable.AV_3', eg:'Enable'},
{ref:'System.Sound_Video.Lipsync.Input_Enable.AV_4', eg:'Disable'},
{ref:'System.Sound_Video.Lipsync.Input_Enable.AV_4', eg:'Enable'},
{ref:'System.Sound_Video.Lipsync.Input_Enable.AV_5', eg:'Disable'},
{ref:'System.Sound_Video.Lipsync.Input_Enable.AV_5', eg:'Enable'},
{ref:'System.Sound_Video.Lipsync.Input_Enable.AV_6', eg:'Disable'},
{ref:'System.Sound_Video.Lipsync.Input_Enable.AV_6', eg:'Enable'},
{ref:'System.Sound_Video.Lipsync.Input_Enable.V_AUX', eg:'Disable'},
{ref:'System.Sound_Video.Lipsync.Input_Enable.V_AUX', eg:'Enable'},
{ref:'System.Sound_Video.Lipsync.Input_Enable.AUDIO_1', eg:'Disable'},
{ref:'System.Sound_Video.Lipsync.Input_Enable.AUDIO_1', eg:'Enable'},
{ref:'System.Sound_Video.Lipsync.Input_Enable.AUDIO_2', eg:'Disable'},
{ref:'System.Sound_Video.Lipsync.Input_Enable.AUDIO_2', eg:'Enable'},
{ref:'System.Input_Output.Assign.Video_Out.TUNER', eg:'HDMI1'},
{ref:'System.Input_Output.Assign.Video_Out.TUNER', eg:'HDMI2'},
{ref:'System.Input_Output.Assign.Video_Out.TUNER', eg:'HDMI3'},
{ref:'System.Input_Output.Assign.Video_Out.TUNER', eg:'HDMI4'},
{ref:'System.Input_Output.Assign.Video_Out.TUNER', eg:'HDMI5'},
{ref:'System.Input_Output.Assign.Video_Out.TUNER', eg:'AV1'},
{ref:'System.Input_Output.Assign.Video_Out.TUNER', eg:'AV2'},
{ref:'System.Input_Output.Assign.Video_Out.TUNER', eg:'AV3'},
{ref:'System.Input_Output.Assign.Video_Out.TUNER', eg:'AV4'},
{ref:'System.Input_Output.Assign.Video_Out.TUNER', eg:'AV5'},
{ref:'System.Input_Output.Assign.Video_Out.TUNER', eg:'AV6'},
{ref:'System.Input_Output.Assign.Video_Out.TUNER', eg:'V-AUX'},
{ref:'System.Input_Output.Assign.Video_Out.TUNER', eg:'Off'},
{ref:'System.Input_Output.Assign.Video_Out.AUDIO_1', eg:'HDMI1'},
{ref:'System.Input_Output.Assign.Video_Out.AUDIO_1', eg:'HDMI2'},
{ref:'System.Input_Output.Assign.Video_Out.AUDIO_1', eg:'HDMI3'},
{ref:'System.Input_Output.Assign.Video_Out.AUDIO_1', eg:'HDMI4'},
{ref:'System.Input_Output.Assign.Video_Out.AUDIO_1', eg:'HDMI5'},
{ref:'System.Input_Output.Assign.Video_Out.AUDIO_1', eg:'AV1'},
{ref:'System.Input_Output.Assign.Video_Out.AUDIO_1', eg:'AV2'},
{ref:'System.Input_Output.Assign.Video_Out.AUDIO_1', eg:'AV3'},
{ref:'System.Input_Output.Assign.Video_Out.AUDIO_1', eg:'AV4'},
{ref:'System.Input_Output.Assign.Video_Out.AUDIO_1', eg:'AV5'},
{ref:'System.Input_Output.Assign.Video_Out.AUDIO_1', eg:'AV6'},
{ref:'System.Input_Output.Assign.Video_Out.AUDIO_1', eg:'V-AUX'},
{ref:'System.Input_Output.Assign.Video_Out.AUDIO_1', eg:'Off'},
{ref:'System.Input_Output.Assign.Video_Out.AUDIO_2', eg:'HDMI1'},
{ref:'System.Input_Output.Assign.Video_Out.AUDIO_2', eg:'HDMI2'},
{ref:'System.Input_Output.Assign.Video_Out.AUDIO_2', eg:'HDMI3'},
{ref:'System.Input_Output.Assign.Video_Out.AUDIO_2', eg:'HDMI4'},
{ref:'System.Input_Output.Assign.Video_Out.AUDIO_2', eg:'HDMI5'},
{ref:'System.Input_Output.Assign.Video_Out.AUDIO_2', eg:'AV1'},
{ref:'System.Input_Output.Assign.Video_Out.AUDIO_2', eg:'AV2'},
{ref:'System.Input_Output.Assign.Video_Out.AUDIO_2', eg:'AV3'},
{ref:'System.Input_Output.Assign.Video_Out.AUDIO_2', eg:'AV4'},
{ref:'System.Input_Output.Assign.Video_Out.AUDIO_2', eg:'AV5'},
{ref:'System.Input_Output.Assign.Video_Out.AUDIO_2', eg:'AV6'},
{ref:'System.Input_Output.Assign.Video_Out.AUDIO_2', eg:'V-AUX'},
{ref:'System.Input_Output.Assign.Video_Out.AUDIO_2', eg:'Off'},
{ref:'System.Input_Output.Assign.Video_Out.Napster', eg:'HDMI1'},
{ref:'System.Input_Output.Assign.Video_Out.Napster', eg:'HDMI2'},
{ref:'System.Input_Output.Assign.Video_Out.Napster', eg:'HDMI3'},
{ref:'System.Input_Output.Assign.Video_Out.Napster', eg:'HDMI4'},
{ref:'System.Input_Output.Assign.Video_Out.Napster', eg:'HDMI5'},
{ref:'System.Input_Output.Assign.Video_Out.Napster', eg:'AV1'},
{ref:'System.Input_Output.Assign.Video_Out.Napster', eg:'AV2'},
{ref:'System.Input_Output.Assign.Video_Out.Napster', eg:'AV3'},
{ref:'System.Input_Output.Assign.Video_Out.Napster', eg:'AV4'},
{ref:'System.Input_Output.Assign.Video_Out.Napster', eg:'AV5'},
{ref:'System.Input_Output.Assign.Video_Out.Napster', eg:'AV6'},
{ref:'System.Input_Output.Assign.Video_Out.Napster', eg:'V-AUX'},
{ref:'System.Input_Output.Assign.Video_Out.Napster', eg:'Off'},
{ref:'System.Input_Output.Assign.Video_Out.Spotify', eg:'HDMI1'},
{ref:'System.Input_Output.Assign.Video_Out.Spotify', eg:'HDMI2'},
{ref:'System.Input_Output.Assign.Video_Out.Spotify', eg:'HDMI3'},
{ref:'System.Input_Output.Assign.Video_Out.Spotify', eg:'HDMI4'},
{ref:'System.Input_Output.Assign.Video_Out.Spotify', eg:'HDMI5'},
{ref:'System.Input_Output.Assign.Video_Out.Spotify', eg:'AV1'},
{ref:'System.Input_Output.Assign.Video_Out.Spotify', eg:'AV2'},
{ref:'System.Input_Output.Assign.Video_Out.Spotify', eg:'AV3'},
{ref:'System.Input_Output.Assign.Video_Out.Spotify', eg:'AV4'},
{ref:'System.Input_Output.Assign.Video_Out.Spotify', eg:'AV5'},
{ref:'System.Input_Output.Assign.Video_Out.Spotify', eg:'AV6'},
{ref:'System.Input_Output.Assign.Video_Out.Spotify', eg:'V-AUX'},
{ref:'System.Input_Output.Assign.Video_Out.Spotify', eg:'Off'},
{ref:'System.Input_Output.Assign.Video_Out.JUKE', eg:'HDMI1'},
{ref:'System.Input_Output.Assign.Video_Out.JUKE', eg:'HDMI2'},
{ref:'System.Input_Output.Assign.Video_Out.JUKE', eg:'HDMI3'},
{ref:'System.Input_Output.Assign.Video_Out.JUKE', eg:'HDMI4'},
{ref:'System.Input_Output.Assign.Video_Out.JUKE', eg:'HDMI5'},
{ref:'System.Input_Output.Assign.Video_Out.JUKE', eg:'AV1'},
{ref:'System.Input_Output.Assign.Video_Out.JUKE', eg:'AV2'},
{ref:'System.Input_Output.Assign.Video_Out.JUKE', eg:'AV3'},
{ref:'System.Input_Output.Assign.Video_Out.JUKE', eg:'AV4'},
{ref:'System.Input_Output.Assign.Video_Out.JUKE', eg:'AV5'},
{ref:'System.Input_Output.Assign.Video_Out.JUKE', eg:'AV6'},
{ref:'System.Input_Output.Assign.Video_Out.JUKE', eg:'V-AUX'},
{ref:'System.Input_Output.Assign.Video_Out.JUKE', eg:'Off'},
{ref:'System.Input_Output.Assign.Video_Out.SERVER', eg:'HDMI1'},
{ref:'System.Input_Output.Assign.Video_Out.SERVER', eg:'HDMI2'},
{ref:'System.Input_Output.Assign.Video_Out.SERVER', eg:'HDMI3'},
{ref:'System.Input_Output.Assign.Video_Out.SERVER', eg:'HDMI4'},
{ref:'System.Input_Output.Assign.Video_Out.SERVER', eg:'HDMI5'},
{ref:'System.Input_Output.Assign.Video_Out.SERVER', eg:'AV1'},
{ref:'System.Input_Output.Assign.Video_Out.SERVER', eg:'AV2'},
{ref:'System.Input_Output.Assign.Video_Out.SERVER', eg:'AV3'},
{ref:'System.Input_Output.Assign.Video_Out.SERVER', eg:'AV4'},
{ref:'System.Input_Output.Assign.Video_Out.SERVER', eg:'AV5'},
{ref:'System.Input_Output.Assign.Video_Out.SERVER', eg:'AV6'},
{ref:'System.Input_Output.Assign.Video_Out.SERVER', eg:'V-AUX'},
{ref:'System.Input_Output.Assign.Video_Out.SERVER', eg:'Off'},
{ref:'System.Input_Output.Assign.Video_Out.NET_RADIO', eg:'HDMI1'},
{ref:'System.Input_Output.Assign.Video_Out.NET_RADIO', eg:'HDMI2'},
{ref:'System.Input_Output.Assign.Video_Out.NET_RADIO', eg:'HDMI3'},
{ref:'System.Input_Output.Assign.Video_Out.NET_RADIO', eg:'HDMI4'},
{ref:'System.Input_Output.Assign.Video_Out.NET_RADIO', eg:'HDMI5'},
{ref:'System.Input_Output.Assign.Video_Out.NET_RADIO', eg:'AV1'},
{ref:'System.Input_Output.Assign.Video_Out.NET_RADIO', eg:'AV2'},
{ref:'System.Input_Output.Assign.Video_Out.NET_RADIO', eg:'AV3'},
{ref:'System.Input_Output.Assign.Video_Out.NET_RADIO', eg:'AV4'},
{ref:'System.Input_Output.Assign.Video_Out.NET_RADIO', eg:'AV5'},
{ref:'System.Input_Output.Assign.Video_Out.NET_RADIO', eg:'AV6'},
{ref:'System.Input_Output.Assign.Video_Out.NET_RADIO', eg:'V-AUX'},
{ref:'System.Input_Output.Assign.Video_Out.NET_RADIO', eg:'Off'},
{ref:'System.Input_Output.Assign.Video_Out.USB', eg:'HDMI1'},
{ref:'System.Input_Output.Assign.Video_Out.USB', eg:'HDMI2'},
{ref:'System.Input_Output.Assign.Video_Out.USB', eg:'HDMI3'},
{ref:'System.Input_Output.Assign.Video_Out.USB', eg:'HDMI4'},
{ref:'System.Input_Output.Assign.Video_Out.USB', eg:'HDMI5'},
{ref:'System.Input_Output.Assign.Video_Out.USB', eg:'AV1'},
{ref:'System.Input_Output.Assign.Video_Out.USB', eg:'AV2'},
{ref:'System.Input_Output.Assign.Video_Out.USB', eg:'AV3'},
{ref:'System.Input_Output.Assign.Video_Out.USB', eg:'AV4'},
{ref:'System.Input_Output.Assign.Video_Out.USB', eg:'AV5'},
{ref:'System.Input_Output.Assign.Video_Out.USB', eg:'AV6'},
{ref:'System.Input_Output.Assign.Video_Out.USB', eg:'V-AUX'},
{ref:'System.Input_Output.Assign.Video_Out.USB', eg:'USB'},
{ref:'System.Input_Output.Assign.Video_Out.USB', eg:'Off'},
{ref:'System.Input_Output.Assign.Video_Out.AirPlay', eg:'HDMI1'},
{ref:'System.Input_Output.Assign.Video_Out.AirPlay', eg:'HDMI2'},
{ref:'System.Input_Output.Assign.Video_Out.AirPlay', eg:'HDMI3'},
{ref:'System.Input_Output.Assign.Video_Out.AirPlay', eg:'HDMI4'},
{ref:'System.Input_Output.Assign.Video_Out.AirPlay', eg:'HDMI5'},
{ref:'System.Input_Output.Assign.Video_Out.AirPlay', eg:'AV1'},
{ref:'System.Input_Output.Assign.Video_Out.AirPlay', eg:'AV2'},
{ref:'System.Input_Output.Assign.Video_Out.AirPlay', eg:'AV3'},
{ref:'System.Input_Output.Assign.Video_Out.AirPlay', eg:'AV4'},
{ref:'System.Input_Output.Assign.Video_Out.AirPlay', eg:'AV5'},
{ref:'System.Input_Output.Assign.Video_Out.AirPlay', eg:'AV6'},
{ref:'System.Input_Output.Assign.Video_Out.AirPlay', eg:'V-AUX'},
{ref:'System.Input_Output.Assign.Video_Out.AirPlay', eg:'Off'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_1', eg:'HDMI1'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_1', eg:'AV1'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_1', eg:'AV2'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_1', eg:'AV3'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_1', eg:'AV4'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_1', eg:'AV5'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_1', eg:'AV6'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_1', eg:'AUDIO1'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_1', eg:'AUDIO2'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_2', eg:'HDMI2'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_2', eg:'AV1'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_2', eg:'AV2'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_2', eg:'AV3'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_2', eg:'AV4'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_2', eg:'AV5'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_2', eg:'AV6'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_2', eg:'AUDIO1'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_2', eg:'AUDIO2'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_3', eg:'HDMI3'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_3', eg:'AV1'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_3', eg:'AV2'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_3', eg:'AV3'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_3', eg:'AV4'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_3', eg:'AV5'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_3', eg:'AV6'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_3', eg:'AUDIO1'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_3', eg:'AUDIO2'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_4', eg:'HDMI4'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_4', eg:'AV1'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_4', eg:'AV2'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_4', eg:'AV3'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_4', eg:'AV4'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_4', eg:'AV5'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_4', eg:'AV6'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_4', eg:'AUDIO1'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_4', eg:'AUDIO2'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_5', eg:'HDMI5'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_5', eg:'AV1'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_5', eg:'AV2'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_5', eg:'AV3'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_5', eg:'AV4'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_5', eg:'AV5'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_5', eg:'AV6'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_5', eg:'AUDIO1'},
{ref:'System.Input_Output.Assign.Audio_In.HDMI_5', eg:'AUDIO2'},
{ref:'System.Input_Output.Assign.Audio_In.AV_1', eg:'AV1'},
{ref:'System.Input_Output.Assign.Audio_In.AV_1', eg:'AV2'},
{ref:'System.Input_Output.Assign.Audio_In.AV_1', eg:'AV3'},
{ref:'System.Input_Output.Assign.Audio_In.AV_1', eg:'AV4'},
{ref:'System.Input_Output.Assign.Audio_In.AV_1', eg:'AV5'},
{ref:'System.Input_Output.Assign.Audio_In.AV_1', eg:'AV6'},
{ref:'System.Input_Output.Assign.Audio_In.AV_1', eg:'AUDIO1'},
{ref:'System.Input_Output.Assign.Audio_In.AV_1', eg:'AUDIO2'},
{ref:'System.Input_Output.Assign.Audio_In.AV_2', eg:'AV1'},
{ref:'System.Input_Output.Assign.Audio_In.AV_2', eg:'AV2'},
{ref:'System.Input_Output.Assign.Audio_In.AV_2', eg:'AV3'},
{ref:'System.Input_Output.Assign.Audio_In.AV_2', eg:'AV4'},
{ref:'System.Input_Output.Assign.Audio_In.AV_2', eg:'AV5'},
{ref:'System.Input_Output.Assign.Audio_In.AV_2', eg:'AV6'},
{ref:'System.Input_Output.Assign.Audio_In.AV_2', eg:'AUDIO1'},
{ref:'System.Input_Output.Assign.Audio_In.AV_2', eg:'AUDIO2'},
{ref:'System.Input_Output.Volume_Trim.TUNER.Val', eg:'-60'},
{ref:'System.Input_Output.Volume_Trim.TUNER.Val', eg:'-55'},
{ref:'System.Input_Output.Volume_Trim.TUNER.Val', eg:'-50'},
{ref:'System.Input_Output.Volume_Trim.TUNER.Val', eg:'50'},
{ref:'System.Input_Output.Volume_Trim.TUNER.Val', eg:'55'},
{ref:'System.Input_Output.Volume_Trim.TUNER.Val', eg:'60'},
{ref:'System.Input_Output.Volume_Trim.HDMI_1.Val', eg:'-60'},
{ref:'System.Input_Output.Volume_Trim.HDMI_1.Val', eg:'-55'},
{ref:'System.Input_Output.Volume_Trim.HDMI_1.Val', eg:'-50'},
{ref:'System.Input_Output.Volume_Trim.HDMI_1.Val', eg:'50'},
{ref:'System.Input_Output.Volume_Trim.HDMI_1.Val', eg:'55'},
{ref:'System.Input_Output.Volume_Trim.HDMI_1.Val', eg:'60'},
{ref:'System.Input_Output.Volume_Trim.HDMI_2.Val', eg:'-60'},
{ref:'System.Input_Output.Volume_Trim.HDMI_2.Val', eg:'-55'},
{ref:'System.Input_Output.Volume_Trim.HDMI_2.Val', eg:'-50'},
{ref:'System.Input_Output.Volume_Trim.HDMI_2.Val', eg:'50'},
{ref:'System.Input_Output.Volume_Trim.HDMI_2.Val', eg:'55'},
{ref:'System.Input_Output.Volume_Trim.HDMI_2.Val', eg:'60'},
{ref:'System.Input_Output.Volume_Trim.HDMI_3.Val', eg:'-60'},
{ref:'System.Input_Output.Volume_Trim.HDMI_3.Val', eg:'-55'},
{ref:'System.Input_Output.Volume_Trim.HDMI_3.Val', eg:'-50'},
{ref:'System.Input_Output.Volume_Trim.HDMI_3.Val', eg:'50'},
{ref:'System.Input_Output.Volume_Trim.HDMI_3.Val', eg:'55'},
{ref:'System.Input_Output.Volume_Trim.HDMI_3.Val', eg:'60'},
{ref:'System.Input_Output.Volume_Trim.HDMI_4.Val', eg:'-60'},
{ref:'System.Input_Output.Volume_Trim.HDMI_4.Val', eg:'-55'},
{ref:'System.Input_Output.Volume_Trim.HDMI_4.Val', eg:'-50'},
{ref:'System.Input_Output.Volume_Trim.HDMI_4.Val', eg:'50'},
{ref:'System.Input_Output.Volume_Trim.HDMI_4.Val', eg:'55'},
{ref:'System.Input_Output.Volume_Trim.HDMI_4.Val', eg:'60'},
{ref:'System.Input_Output.Volume_Trim.HDMI_5.Val', eg:'-60'},
{ref:'System.Input_Output.Volume_Trim.HDMI_5.Val', eg:'-55'},
{ref:'System.Input_Output.Volume_Trim.HDMI_5.Val', eg:'-50'},
{ref:'System.Input_Output.Volume_Trim.HDMI_5.Val', eg:'50'},
{ref:'System.Input_Output.Volume_Trim.HDMI_5.Val', eg:'55'},
{ref:'System.Input_Output.Volume_Trim.HDMI_5.Val', eg:'60'},
{ref:'System.Input_Output.Volume_Trim.AV_1.Val', eg:'-60'},
{ref:'System.Input_Output.Volume_Trim.AV_1.Val', eg:'-55'},
{ref:'System.Input_Output.Volume_Trim.AV_1.Val', eg:'-50'},
{ref:'System.Input_Output.Volume_Trim.AV_1.Val', eg:'50'},
{ref:'System.Input_Output.Volume_Trim.AV_1.Val', eg:'55'},
{ref:'System.Input_Output.Volume_Trim.AV_1.Val', eg:'60'},
{ref:'System.Input_Output.Volume_Trim.AV_2.Val', eg:'-60'},
{ref:'System.Input_Output.Volume_Trim.AV_2.Val', eg:'-55'},
{ref:'System.Input_Output.Volume_Trim.AV_2.Val', eg:'-50'},
{ref:'System.Input_Output.Volume_Trim.AV_2.Val', eg:'50'},
{ref:'System.Input_Output.Volume_Trim.AV_2.Val', eg:'55'},
{ref:'System.Input_Output.Volume_Trim.AV_2.Val', eg:'60'},
{ref:'System.Input_Output.Volume_Trim.AV_3.Val', eg:'-60'},
{ref:'System.Input_Output.Volume_Trim.AV_3.Val', eg:'-55'},
{ref:'System.Input_Output.Volume_Trim.AV_3.Val', eg:'-50'},
{ref:'System.Input_Output.Volume_Trim.AV_3.Val', eg:'50'},
{ref:'System.Input_Output.Volume_Trim.AV_3.Val', eg:'55'},
{ref:'System.Input_Output.Volume_Trim.AV_3.Val', eg:'60'},
{ref:'System.Input_Output.Volume_Trim.AV_4.Val', eg:'-60'},
{ref:'System.Input_Output.Volume_Trim.AV_4.Val', eg:'-55'},
{ref:'System.Input_Output.Volume_Trim.AV_4.Val', eg:'-50'},
{ref:'System.Input_Output.Volume_Trim.AV_4.Val', eg:'50'},
{ref:'System.Input_Output.Volume_Trim.AV_4.Val', eg:'55'},
{ref:'System.Input_Output.Volume_Trim.AV_4.Val', eg:'60'},
{ref:'System.Input_Output.Volume_Trim.AV_5.Val', eg:'-60'},
{ref:'System.Input_Output.Volume_Trim.AV_5.Val', eg:'-55'},
{ref:'System.Input_Output.Volume_Trim.AV_5.Val', eg:'-50'},
{ref:'System.Input_Output.Volume_Trim.AV_5.Val', eg:'50'},
{ref:'System.Input_Output.Volume_Trim.AV_5.Val', eg:'55'},
{ref:'System.Input_Output.Volume_Trim.AV_5.Val', eg:'60'},
{ref:'System.Input_Output.Volume_Trim.AV_6.Val', eg:'-60'},
{ref:'System.Input_Output.Volume_Trim.AV_6.Val', eg:'-55'},
{ref:'System.Input_Output.Volume_Trim.AV_6.Val', eg:'-50'},
{ref:'System.Input_Output.Volume_Trim.AV_6.Val', eg:'50'},
{ref:'System.Input_Output.Volume_Trim.AV_6.Val', eg:'55'},
{ref:'System.Input_Output.Volume_Trim.AV_6.Val', eg:'60'},
{ref:'System.Input_Output.Volume_Trim.V_AUX.Val', eg:'-60'},
{ref:'System.Input_Output.Volume_Trim.V_AUX.Val', eg:'-55'},
{ref:'System.Input_Output.Volume_Trim.V_AUX.Val', eg:'-50'},
{ref:'System.Input_Output.Volume_Trim.V_AUX.Val', eg:'50'},
{ref:'System.Input_Output.Volume_Trim.V_AUX.Val', eg:'55'},
{ref:'System.Input_Output.Volume_Trim.V_AUX.Val', eg:'60'},
{ref:'System.Input_Output.Volume_Trim.AUDIO_1.Val', eg:'-60'},
{ref:'System.Input_Output.Volume_Trim.AUDIO_1.Val', eg:'-55'},
{ref:'System.Input_Output.Volume_Trim.AUDIO_1.Val', eg:'-50'},
{ref:'System.Input_Output.Volume_Trim.AUDIO_1.Val', eg:'50'},
{ref:'System.Input_Output.Volume_Trim.AUDIO_1.Val', eg:'55'},
{ref:'System.Input_Output.Volume_Trim.AUDIO_1.Val', eg:'60'},
{ref:'System.Input_Output.Volume_Trim.AUDIO_2.Val', eg:'-60'},
{ref:'System.Input_Output.Volume_Trim.AUDIO_2.Val', eg:'-55'},
{ref:'System.Input_Output.Volume_Trim.AUDIO_2.Val', eg:'-50'},
{ref:'System.Input_Output.Volume_Trim.AUDIO_2.Val', eg:'50'},
{ref:'System.Input_Output.Volume_Trim.AUDIO_2.Val', eg:'55'},
{ref:'System.Input_Output.Volume_Trim.AUDIO_2.Val', eg:'60'},
{ref:'System.Input_Output.Volume_Trim.Napster.Val', eg:'-60'},
{ref:'System.Input_Output.Volume_Trim.Napster.Val', eg:'-55'},
{ref:'System.Input_Output.Volume_Trim.Napster.Val', eg:'-50'},
{ref:'System.Input_Output.Volume_Trim.Napster.Val', eg:'50'},
{ref:'System.Input_Output.Volume_Trim.Napster.Val', eg:'55'},
{ref:'System.Input_Output.Volume_Trim.Napster.Val', eg:'60'},
{ref:'System.Input_Output.Volume_Trim.Spotify.Val', eg:'-60'},
{ref:'System.Input_Output.Volume_Trim.Spotify.Val', eg:'-55'},
{ref:'System.Input_Output.Volume_Trim.Spotify.Val', eg:'-50'},
{ref:'System.Input_Output.Volume_Trim.Spotify.Val', eg:'50'},
{ref:'System.Input_Output.Volume_Trim.Spotify.Val', eg:'55'},
{ref:'System.Input_Output.Volume_Trim.Spotify.Val', eg:'60'},
{ref:'System.Input_Output.Volume_Trim.JUKE.Val', eg:'-60'},
{ref:'System.Input_Output.Volume_Trim.JUKE.Val', eg:'-55'},
{ref:'System.Input_Output.Volume_Trim.JUKE.Val', eg:'-50'},
{ref:'System.Input_Output.Volume_Trim.JUKE.Val', eg:'50'},
{ref:'System.Input_Output.Volume_Trim.JUKE.Val', eg:'55'},
{ref:'System.Input_Output.Volume_Trim.JUKE.Val', eg:'60'},
{ref:'System.Input_Output.Volume_Trim.SERVER.Val', eg:'-60'},
{ref:'System.Input_Output.Volume_Trim.SERVER.Val', eg:'-55'},
{ref:'System.Input_Output.Volume_Trim.SERVER.Val', eg:'-50'},
{ref:'System.Input_Output.Volume_Trim.SERVER.Val', eg:'50'},
{ref:'System.Input_Output.Volume_Trim.SERVER.Val', eg:'55'},
{ref:'System.Input_Output.Volume_Trim.SERVER.Val', eg:'60'},
{ref:'System.Input_Output.Volume_Trim.NET_RADIO.Val', eg:'-60'},
{ref:'System.Input_Output.Volume_Trim.NET_RADIO.Val', eg:'-55'},
{ref:'System.Input_Output.Volume_Trim.NET_RADIO.Val', eg:'-50'},
{ref:'System.Input_Output.Volume_Trim.NET_RADIO.Val', eg:'50'},
{ref:'System.Input_Output.Volume_Trim.NET_RADIO.Val', eg:'55'},
{ref:'System.Input_Output.Volume_Trim.NET_RADIO.Val', eg:'60'},
{ref:'System.Input_Output.Volume_Trim.USB.Val', eg:'-60'},
{ref:'System.Input_Output.Volume_Trim.USB.Val', eg:'-55'},
{ref:'System.Input_Output.Volume_Trim.USB.Val', eg:'-50'},
{ref:'System.Input_Output.Volume_Trim.USB.Val', eg:'50'},
{ref:'System.Input_Output.Volume_Trim.USB.Val', eg:'55'},
{ref:'System.Input_Output.Volume_Trim.USB.Val', eg:'60'},
{ref:'System.Input_Output.Volume_Trim.AirPlay.Val', eg:'-60'},
{ref:'System.Input_Output.Volume_Trim.AirPlay.Val', eg:'-55'},
{ref:'System.Input_Output.Volume_Trim.AirPlay.Val', eg:'-50'},
{ref:'System.Input_Output.Volume_Trim.AirPlay.Val', eg:'50'},
{ref:'System.Input_Output.Volume_Trim.AirPlay.Val', eg:'55'},
{ref:'System.Input_Output.Volume_Trim.AirPlay.Val', eg:'60'},
{ref:'System.Input_Output.Input_Name.HDMI_1', eg:'@@@@@@@@@'},
{ref:'System.Input_Output.Input_Name.HDMI_2', eg:'@@@@@@@@@'},
{ref:'System.Input_Output.Input_Name.HDMI_3', eg:'@@@@@@@@@'},
{ref:'System.Input_Output.Input_Name.HDMI_4', eg:'@@@@@@@@@'},
{ref:'System.Input_Output.Input_Name.HDMI_5', eg:'@@@@@@@@@'},
{ref:'System.Input_Output.Input_Name.AV_1', eg:'@@@@@@@@@'},
{ref:'System.Input_Output.Input_Name.AV_2', eg:'@@@@@@@@@'},
{ref:'System.Input_Output.Input_Name.AV_3', eg:'@@@@@@@@@'},
{ref:'System.Input_Output.Input_Name.AV_4', eg:'@@@@@@@@@'},
{ref:'System.Input_Output.Input_Name.AV_5', eg:'@@@@@@@@@'},
{ref:'System.Input_Output.Input_Name.AV_6', eg:'@@@@@@@@@'},
{ref:'System.Input_Output.Input_Name.V_AUX', eg:'@@@@@@@@@'},
{ref:'System.Input_Output.Input_Name.AUDIO_1', eg:'@@@@@@@@@'},
{ref:'System.Input_Output.Input_Name.AUDIO_2', eg:'@@@@@@@@@'},
{ref:'System.Input_Output.Input_Name.USB', eg:'@@@@@@@@@'},
{ref:'System.Misc.Display.Language', eg:'English'},
{ref:'System.Misc.Display.Language', eg:'Japanese'},
{ref:'System.Misc.Display.Language', eg:'French'},
{ref:'System.Misc.Display.Language', eg:'German'},
{ref:'System.Misc.Display.Language', eg:'Spanish'},
{ref:'System.Misc.Display.Language', eg:'Russian'},
{ref:'System.Misc.Display.Language', eg:'Italian'},
{ref:'System.Misc.Display.Language', eg:'Chinese'},
{ref:'System.Misc.Display.Wall_Paper', eg:'Picture 1'},
{ref:'System.Misc.Display.Wall_Paper', eg:'Picture 2'},
{ref:'System.Misc.Display.Wall_Paper', eg:'Picture 3'},
{ref:'System.Misc.Display.Wall_Paper', eg:'Gray'},
{ref:'System.Misc.Display.FL.Dimmer', eg:'-4'},
{ref:'System.Misc.Display.FL.Dimmer', eg:'-3'},
{ref:'System.Misc.Display.FL.Dimmer', eg:'-2'},
{ref:'System.Misc.Display.FL.Dimmer', eg:'0'},
{ref:'System.Misc.Display.Short_Message', eg:'Off'},
{ref:'System.Misc.Display.Short_Message', eg:'On'},
{ref:'System.Misc.Network.Network_Standby', eg:'Off'},
{ref:'System.Misc.Network.Network_Standby', eg:'On'},
{ref:'System.Misc.Network.Parameters.Connection', eg:'Wired LAN'},
{ref:'System.Misc.Network.Parameters.Connection', eg:'Wireless LAN'},
{ref:'System.Misc.Network.Parameters.Connection', eg:'Wireless Direct'},
{ref:'System.Misc.Network.Parameters.Wireless.Wireless_LAN.SSID', eg:''},
{ref:'System.Misc.Network.Parameters.Wireless.Wireless_LAN.SSID', eg:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@'},
{ref:'System.Misc.Network.Parameters.Wireless.Wireless_LAN.Security_Type', eg:'None'},
{ref:'System.Misc.Network.Parameters.Wireless.Wireless_LAN.Security_Type', eg:'WEP'},
{ref:'System.Misc.Network.Parameters.Wireless.Wireless_LAN.Security_Type', eg:'WPA-PSK(TKIP)'},
{ref:'System.Misc.Network.Parameters.Wireless.Wireless_LAN.Security_Type', eg:'WPA-PSK(AES)'},
{ref:'System.Misc.Network.Parameters.Wireless.Wireless_LAN.Security_Type', eg:'WPA2-PSK(AES)'},
{ref:'System.Misc.Network.Parameters.Wireless.Wireless_LAN.Security_Type', eg:'Mixed Mode'},
{ref:'System.Misc.Network.Parameters.Wireless.Wireless_LAN.Security_Key', eg:''},
{ref:'System.Misc.Network.Parameters.Wireless.Wireless_LAN.Security_Key', eg:'@@@@@'},
{ref:'System.Misc.Network.Parameters.Wireless.Wireless_LAN.Security_Key', eg:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@'},
{ref:'System.Misc.Network.Parameters.Wireless.Wireless_LAN.Security_Key', eg:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@'},
{ref:'System.Misc.Network.Parameters.Wireless.Wireless_Direct.Security_Type', eg:'None'},
{ref:'System.Misc.Network.Parameters.Wireless.Wireless_Direct.Security_Type', eg:'WEP'},
{ref:'System.Misc.Network.Parameters.Wireless.Wireless_Direct.Security_Key', eg:''},
{ref:'System.Misc.Network.Parameters.Wireless.Wireless_Direct.Security_Key', eg:'@@@@@'},
{ref:'System.Misc.Network.Parameters.Wireless.Wireless_Direct.Security_Key', eg:'@@@@@@@@@@@@@'},
{ref:'System.Misc.Network.Parameters.IP.Wired_or_Wireless_LAN.DHCP', eg:'Off'},
{ref:'System.Misc.Network.Parameters.IP.Wired_or_Wireless_LAN.DHCP', eg:'On'},
{ref:'System.Misc.Network.Parameters.IP.Wired_or_Wireless_LAN.IP_Address', eg:'@@@@@@@@@@@@@@@'},
{ref:'System.Misc.Network.Parameters.IP.Wired_or_Wireless_LAN.Subnet_Mask', eg:'@@@@@@@@@@@@@@@'},
{ref:'System.Misc.Network.Parameters.IP.Wired_or_Wireless_LAN.Default_Gateway', eg:'@@@@@@@@@@@@@@@'},
{ref:'System.Misc.Network.Parameters.IP.Wired_or_Wireless_LAN.DNS_Server_1', eg:'@@@@@@@@@@@@@@@'},
{ref:'System.Misc.Network.Parameters.IP.Wired_or_Wireless_LAN.DNS_Server_2', eg:'@@@@@@@@@@@@@@@'},
{ref:'System.Misc.Network.MAC_Address_Filter.Mode', eg:'On'},
{ref:'System.Misc.Network.MAC_Address_Filter.Address.Number_1', eg:'@@@@@@@@@@@@'},
{ref:'System.Misc.Network.MAC_Address_Filter.Address.Number_2', eg:'@@@@@@@@@@@@'},
{ref:'System.Misc.Network.MAC_Address_Filter.Address.Number_3', eg:'@@@@@@@@@@@@'},
{ref:'System.Misc.Network.MAC_Address_Filter.Address.Number_4', eg:'@@@@@@@@@@@@'},
{ref:'System.Misc.Network.MAC_Address_Filter.Address.Number_5', eg:'@@@@@@@@@@@@'},
{ref:'System.Misc.Network.MAC_Address_Filter.Address.Number_6', eg:'@@@@@@@@@@@@'},
{ref:'System.Misc.Network.MAC_Address_Filter.Address.Number_7', eg:'@@@@@@@@@@@@'},
{ref:'System.Misc.Network.MAC_Address_Filter.Address.Number_8', eg:'@@@@@@@@@@@@'},
{ref:'System.Misc.Network.MAC_Address_Filter.Address.Number_9', eg:'@@@@@@@@@@@@'},
{ref:'System.Misc.Network.MAC_Address_Filter.Address.Number_10', eg:'@@@@@@@@@@@@'},
{ref:'System.Misc.Network.DMC_Control', eg:'Disable'},
{ref:'System.Misc.Network.DMC_Control', eg:'Enable'},
{ref:'System.Misc.Network.Network_Name', eg:'@@@@@@@@@@@@@@@'},
{ref:'System.Misc.Network.YNCA_Port', eg:'50000'},
{ref:'System.Misc.Network.YNCA_Port', eg:'50001'},
{ref:'System.Misc.Network.YNCA_Port', eg:'50002'},
{ref:'System.Misc.Network.YNCA_Port', eg:'65533'},
{ref:'System.Misc.Network.YNCA_Port', eg:'65534'},
{ref:'System.Misc.Network.YNCA_Port', eg:'65535'},
{ref:'System.Misc.Trig_Out.Trig_1.Manual_Control', eg:'Lo'},
{ref:'System.Misc.Trig_Out.Trig_1.Manual_Control', eg:'Hi'},
{ref:'System.Misc.Trig_Out.Trig_1.Type', eg:'Manual'},
{ref:'System.Misc.Trig_Out.Trig_1.Type', eg:'Power'},
{ref:'System.Misc.Trig_Out.Trig_1.Type', eg:'Zone and Input'},
{ref:'System.Misc.Trig_Out.Trig_1.Zone', eg:'Main Zone'},
{ref:'System.Misc.Trig_Out.Trig_1.Zone', eg:'Zone2'},
{ref:'System.Misc.Trig_Out.Trig_1.Zone', eg:'All'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.TUNER', eg:'Lo'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.TUNER', eg:'Hi'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.HDMI_1', eg:'Lo'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.HDMI_1', eg:'Hi'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.HDMI_2', eg:'Lo'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.HDMI_2', eg:'Hi'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.HDMI_3', eg:'Lo'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.HDMI_3', eg:'Hi'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.HDMI_4', eg:'Lo'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.HDMI_4', eg:'Hi'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.HDMI_5', eg:'Lo'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.HDMI_5', eg:'Hi'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.AV_1', eg:'Lo'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.AV_1', eg:'Hi'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.AV_2', eg:'Lo'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.AV_2', eg:'Hi'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.AV_3', eg:'Lo'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.AV_3', eg:'Hi'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.AV_4', eg:'Lo'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.AV_4', eg:'Hi'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.AV_5', eg:'Lo'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.AV_5', eg:'Hi'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.AV_6', eg:'Lo'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.AV_6', eg:'Hi'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.V_AUX', eg:'Lo'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.V_AUX', eg:'Hi'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.AUDIO_1', eg:'Lo'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.AUDIO_1', eg:'Hi'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.AUDIO_2', eg:'Lo'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.AUDIO_2', eg:'Hi'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.Napster', eg:'Lo'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.Napster', eg:'Hi'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.Spotify', eg:'Lo'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.Spotify', eg:'Hi'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.JUKE', eg:'Lo'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.JUKE', eg:'Hi'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.SERVER', eg:'Lo'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.SERVER', eg:'Hi'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.NET_RADIO', eg:'Lo'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.NET_RADIO', eg:'Hi'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.USB', eg:'Lo'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.USB', eg:'Hi'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.AirPlay', eg:'Lo'},
{ref:'System.Misc.Trig_Out.Trig_1.Input.AirPlay', eg:'Hi'},
{ref:'System.Misc.DC_OUT.Type', eg:'Continuous'},
{ref:'System.Misc.DC_OUT.Type', eg:'Main Zone Sync'},
{ref:'System.Misc.Advanced_Setup.Speaker_Impedance', eg:'6 Ohm MIN'},
{ref:'System.Misc.Advanced_Setup.Speaker_Impedance', eg:'8 Ohm MIN'},
{ref:'System.Misc.Advanced_Setup.Remote_Control_ID', eg:'ID1'},
{ref:'System.Misc.Advanced_Setup.Remote_Control_ID', eg:'ID2'},
{ref:'System.Misc.Advanced_Setup.Initialize', eg:'Cancel'},
{ref:'System.Misc.Advanced_Setup.Initialize', eg:'Video'},
{ref:'System.Misc.Advanced_Setup.Initialize', eg:'All'},
{ref:'System.Misc.Advanced_Setup.TV_Format', eg:'NTSC'},
{ref:'System.Misc.Advanced_Setup.TV_Format', eg:'PAL'},
{ref:'System.Misc.Advanced_Setup.HDMI_Monitor_Check', eg:'Yes'},
{ref:'System.Misc.Advanced_Setup.HDMI_Monitor_Check', eg:'Skip'},
{ref:'System.Misc.Memory_Guard', eg:'Off'},
{ref:'System.Misc.Memory_Guard', eg:'On'},
{ref:'System.Misc.Remote_Signal.Receive.Code', eg:'@@@@@@@@'},
{ref:'System.Misc.Event.Notice', eg:'Off'},
{ref:'System.Misc.Event.Notice', eg:'On'},
{ref:'Main_Zone.Config.Name.Zone', eg:'@@@@@@@@@'},
{ref:'Main_Zone.Power_Control.Power', eg:'Standby'},
{ref:'Main_Zone.Power_Control.Power', eg:'On'},
{ref:'Main_Zone.Power_Control.Power', eg:'On/Standby'},
{ref:'Main_Zone.Power_Control.Sleep', eg:'Off'},
{ref:'Main_Zone.Power_Control.Sleep', eg:'30 min'},
{ref:'Main_Zone.Power_Control.Sleep', eg:'60 min'},
{ref:'Main_Zone.Power_Control.Sleep', eg:'90 min'},
{ref:'Main_Zone.Power_Control.Sleep', eg:'120 min'},
{ref:'Main_Zone.Power_Control.Sleep', eg:'Last'},
{ref:'Main_Zone.Volume.Lvl.Val', eg:'{"Val":"Up", "Exp":"", "Unit":""}'},
{ref:'Main_Zone.Volume.Lvl.Val', eg:'{"Val":"Down", "Exp":"", "Unit":""}'},
{ref:'Main_Zone.Volume.Lvl.Val', eg:'{"Val":"Down 1 dB", "Exp":"", "Unit":""}'},
{ref:'Main_Zone.Volume.Lvl.Val', eg:'{"Val":"Up 1 dB", "Exp":"", "Unit":""}'},
{ref:'Main_Zone.Volume.Lvl.Val', eg:'{"Val":"Down 2 dB", "Exp":"", "Unit":""}'},
{ref:'Main_Zone.Volume.Lvl.Val', eg:'{"Val":"Up 2 dB", "Exp":"", "Unit":""}'},
{ref:'Main_Zone.Volume.Lvl.Val', eg:'{"Val":"Down 5 dB", "Exp":"", "Unit":""}'},
{ref:'Main_Zone.Volume.Lvl.Val', eg:'{"Val":"Up 5 dB", "Exp":"", "Unit":""}'},
{ref:'Main_Zone.Volume.Lvl.Val', eg:'-805'},
{ref:'Main_Zone.Volume.Lvl.Val', eg:'-800'},
{ref:'Main_Zone.Volume.Lvl.Val', eg:'-795'},
{ref:'Main_Zone.Volume.Lvl.Val', eg:'155'},
{ref:'Main_Zone.Volume.Lvl.Val', eg:'160'},
{ref:'Main_Zone.Volume.Lvl.Val', eg:'165'},
{ref:'Main_Zone.Volume.Mute', eg:'Off'},
{ref:'Main_Zone.Volume.Mute', eg:'Att -40 dB'},
{ref:'Main_Zone.Volume.Mute', eg:'Att -20 dB'},
{ref:'Main_Zone.Volume.Mute', eg:'On'},
{ref:'Main_Zone.Volume.Mute', eg:'On/Off'},
{ref:'Main_Zone.Volume.Subwoofer_Trim.Val', eg:'-60'},
{ref:'Main_Zone.Volume.Subwoofer_Trim.Val', eg:'-55'},
{ref:'Main_Zone.Volume.Subwoofer_Trim.Val', eg:'-50'},
{ref:'Main_Zone.Volume.Subwoofer_Trim.Val', eg:'50'},
{ref:'Main_Zone.Volume.Subwoofer_Trim.Val', eg:'55'},
{ref:'Main_Zone.Volume.Subwoofer_Trim.Val', eg:'60'},
{ref:'Main_Zone.Volume.Max_Lvl.Val', eg:'-300'},
{ref:'Main_Zone.Volume.Max_Lvl.Val', eg:'-250'},
{ref:'Main_Zone.Volume.Max_Lvl.Val', eg:'-200'},
{ref:'Main_Zone.Volume.Max_Lvl.Val', eg:'50'},
{ref:'Main_Zone.Volume.Max_Lvl.Val', eg:'100'},
{ref:'Main_Zone.Volume.Max_Lvl.Val', eg:'150'},
{ref:'Main_Zone.Volume.Max_Lvl.Val', eg:'165'},
{ref:'Main_Zone.Volume.Init_Lvl.Mode', eg:'Off'},
{ref:'Main_Zone.Volume.Init_Lvl.Mode', eg:'On'},
{ref:'Main_Zone.Volume.Init_Lvl.Lvl.Val', eg:'Mute'},
{ref:'Main_Zone.Volume.Init_Lvl.Lvl.Val', eg:'-800'},
{ref:'Main_Zone.Volume.Init_Lvl.Lvl.Val', eg:'-795'},
{ref:'Main_Zone.Volume.Init_Lvl.Lvl.Val', eg:'-790'},
{ref:'Main_Zone.Volume.Init_Lvl.Lvl.Val', eg:'155'},
{ref:'Main_Zone.Volume.Init_Lvl.Lvl.Val', eg:'160'},
{ref:'Main_Zone.Volume.Init_Lvl.Lvl.Val', eg:'165'},
{ref:'Main_Zone.Volume.Memory.Load', eg:'Memory 1'},
{ref:'Main_Zone.Volume.Memory.Load', eg:'Memory 2'},
{ref:'Main_Zone.Volume.Memory.Load', eg:'Memory 3'},
{ref:'Main_Zone.Volume.Memory.Load', eg:'Memory 4'},
{ref:'Main_Zone.Volume.Memory.Load', eg:'Memory 5'},
{ref:'Main_Zone.Volume.Memory.Load', eg:'Memory 6'},
{ref:'Main_Zone.Volume.Memory.Save', eg:'Memory 1'},
{ref:'Main_Zone.Volume.Memory.Save', eg:'Memory 2'},
{ref:'Main_Zone.Volume.Memory.Save', eg:'Memory 3'},
{ref:'Main_Zone.Volume.Memory.Save', eg:'Memory 4'},
{ref:'Main_Zone.Volume.Memory.Save', eg:'Memory 5'},
{ref:'Main_Zone.Volume.Memory.Save', eg:'Memory 6'},
{ref:'Main_Zone.Volume.Memory.Memory_1.Status', eg:'Empty'},
{ref:'Main_Zone.Volume.Memory.Memory_1.Status', eg:'Exist'},
{ref:'Main_Zone.Volume.Memory.Memory_1.Data.Val', eg:''},
{ref:'Main_Zone.Volume.Memory.Memory_1.Data.Val', eg:'-805'},
{ref:'Main_Zone.Volume.Memory.Memory_1.Data.Val', eg:'-800'},
{ref:'Main_Zone.Volume.Memory.Memory_1.Data.Val', eg:'-795'},
{ref:'Main_Zone.Volume.Memory.Memory_1.Data.Val', eg:'155'},
{ref:'Main_Zone.Volume.Memory.Memory_1.Data.Val', eg:'160'},
{ref:'Main_Zone.Volume.Memory.Memory_1.Data.Val', eg:'165'},
{ref:'Main_Zone.Volume.Memory.Memory_2.Status', eg:'Empty'},
{ref:'Main_Zone.Volume.Memory.Memory_2.Status', eg:'Exist'},
{ref:'Main_Zone.Volume.Memory.Memory_2.Data.Val', eg:''},
{ref:'Main_Zone.Volume.Memory.Memory_2.Data.Val', eg:'-805'},
{ref:'Main_Zone.Volume.Memory.Memory_2.Data.Val', eg:'-800'},
{ref:'Main_Zone.Volume.Memory.Memory_2.Data.Val', eg:'-795'},
{ref:'Main_Zone.Volume.Memory.Memory_2.Data.Val', eg:'155'},
{ref:'Main_Zone.Volume.Memory.Memory_2.Data.Val', eg:'160'},
{ref:'Main_Zone.Volume.Memory.Memory_2.Data.Val', eg:'165'},
{ref:'Main_Zone.Volume.Memory.Memory_3.Status', eg:'Empty'},
{ref:'Main_Zone.Volume.Memory.Memory_3.Status', eg:'Exist'},
{ref:'Main_Zone.Volume.Memory.Memory_3.Data.Val', eg:''},
{ref:'Main_Zone.Volume.Memory.Memory_3.Data.Val', eg:'-805'},
{ref:'Main_Zone.Volume.Memory.Memory_3.Data.Val', eg:'-800'},
{ref:'Main_Zone.Volume.Memory.Memory_3.Data.Val', eg:'-795'},
{ref:'Main_Zone.Volume.Memory.Memory_3.Data.Val', eg:'155'},
{ref:'Main_Zone.Volume.Memory.Memory_3.Data.Val', eg:'160'},
{ref:'Main_Zone.Volume.Memory.Memory_3.Data.Val', eg:'165'},
{ref:'Main_Zone.Volume.Memory.Memory_4.Status', eg:'Empty'},
{ref:'Main_Zone.Volume.Memory.Memory_4.Status', eg:'Exist'},
{ref:'Main_Zone.Volume.Memory.Memory_4.Data.Val', eg:''},
{ref:'Main_Zone.Volume.Memory.Memory_4.Data.Val', eg:'-805'},
{ref:'Main_Zone.Volume.Memory.Memory_4.Data.Val', eg:'-800'},
{ref:'Main_Zone.Volume.Memory.Memory_4.Data.Val', eg:'-795'},
{ref:'Main_Zone.Volume.Memory.Memory_4.Data.Val', eg:'155'},
{ref:'Main_Zone.Volume.Memory.Memory_4.Data.Val', eg:'160'},
{ref:'Main_Zone.Volume.Memory.Memory_4.Data.Val', eg:'165'},
{ref:'Main_Zone.Volume.Memory.Memory_5.Status', eg:'Empty'},
{ref:'Main_Zone.Volume.Memory.Memory_5.Status', eg:'Exist'},
{ref:'Main_Zone.Volume.Memory.Memory_5.Data.Val', eg:''},
{ref:'Main_Zone.Volume.Memory.Memory_5.Data.Val', eg:'-805'},
{ref:'Main_Zone.Volume.Memory.Memory_5.Data.Val', eg:'-800'},
{ref:'Main_Zone.Volume.Memory.Memory_5.Data.Val', eg:'-795'},
{ref:'Main_Zone.Volume.Memory.Memory_5.Data.Val', eg:'155'},
{ref:'Main_Zone.Volume.Memory.Memory_5.Data.Val', eg:'160'},
{ref:'Main_Zone.Volume.Memory.Memory_5.Data.Val', eg:'165'},
{ref:'Main_Zone.Volume.Memory.Memory_6.Status', eg:'Empty'},
{ref:'Main_Zone.Volume.Memory.Memory_6.Status', eg:'Exist'},
{ref:'Main_Zone.Volume.Memory.Memory_6.Data.Val', eg:''},
{ref:'Main_Zone.Volume.Memory.Memory_6.Data.Val', eg:'-805'},
{ref:'Main_Zone.Volume.Memory.Memory_6.Data.Val', eg:'-800'},
{ref:'Main_Zone.Volume.Memory.Memory_6.Data.Val', eg:'-795'},
{ref:'Main_Zone.Volume.Memory.Memory_6.Data.Val', eg:'155'},
{ref:'Main_Zone.Volume.Memory.Memory_6.Data.Val', eg:'160'},
{ref:'Main_Zone.Volume.Memory.Memory_6.Data.Val', eg:'165'},
{ref:'Main_Zone.Input.Input_Sel', eg:'TUNER'},
{ref:'Main_Zone.Input.Input_Sel', eg:'HDMI1'},
{ref:'Main_Zone.Input.Input_Sel', eg:'HDMI2'},
{ref:'Main_Zone.Input.Input_Sel', eg:'HDMI3'},
{ref:'Main_Zone.Input.Input_Sel', eg:'HDMI4'},
{ref:'Main_Zone.Input.Input_Sel', eg:'HDMI5'},
{ref:'Main_Zone.Input.Input_Sel', eg:'AV1'},
{ref:'Main_Zone.Input.Input_Sel', eg:'AV2'},
{ref:'Main_Zone.Input.Input_Sel', eg:'AV3'},
{ref:'Main_Zone.Input.Input_Sel', eg:'AV4'},
{ref:'Main_Zone.Input.Input_Sel', eg:'AV5'},
{ref:'Main_Zone.Input.Input_Sel', eg:'AV6'},
{ref:'Main_Zone.Input.Input_Sel', eg:'V-AUX'},
{ref:'Main_Zone.Input.Input_Sel', eg:'AUDIO1'},
{ref:'Main_Zone.Input.Input_Sel', eg:'AUDIO2'},
{ref:'Main_Zone.Input.Input_Sel', eg:'NET'},
{ref:'Main_Zone.Input.Input_Sel', eg:'Napster'},