summaryrefslogtreecommitdiff
path: root/camlibs/ptp2/cameras/nikon-d5000.txt
blob: e7f757ab1dddffa82004c87ca30913567469a09e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
Device info:
Manufacturer: Nikon Corporation
  Model: D5000
  device version: V1.00
  serial number: 'nnnnnnn'
Vendor extension ID: 0x0000000a
Vendor extension version: 100
Vendor extension description: microsoft.com: 1.0
Functional Mode: 0x0000
PTP Standard Version: 100
Supported operations:
  0x1001
  0x1002
  0x1003
  0x1004
  0x1005
  0x1006
  0x1007
  0x1008
  0x1009
  0x100a
  0x100b
  0x100c
  0x100d
  0x100e
  0x100f
  0x1014
  0x1015
  0x1016
  0x101b
  0x90c0
  0x90c1
  0x90c2
  0x90c3
  0x90c4
  0x90c7
  0x90c8
  0x90c9
  0x90ca
  0x90cb
  0x90cc
  0x90cd
  0x90ce
  0x90cf
  0x9200
  0x9201
  0x9202
  0x9203
  0x9204
  0x9205
  0x9206
  0x9801
  0x9802
  0x9803
  0x9805
Events Supported:
  0x4001
  0x4002
  0x4004
  0x4005
  0x4006
  0x4009
  0x400a
  0x400c
  0x400d
  0x4008
  0xc101
  0xc102
  0xc104
Device Properties Supported:
  0x5001
  0x5003
  0x5004
  0x5005
  0x5007
  0x5008
  0x500a
  0x500b
  0x500c
  0x500d
  0x500e
  0x500f
  0x5010
  0x5011
  0x5013
  0x5018
  0x501c
  0xd406
  0xd407
  0xd017
  0xd018
  0xd019
  0xd01a
  0xd01b
  0xd01c
  0xd01d
  0xd01f
  0xd025
  0xd026
  0xd032
  0xd045
  0xd054
  0xd056
  0xd05d
  0xd05e
  0xd05f
  0xd062
  0xd063
  0xd064
  0xd065
  0xd066
  0xd06a
  0xd06b
  0xd06c
  0xd070
  0xd078
  0xd084
  0xd085
  0xd08a
  0xd090
  0xd091
  0xd092
  0xd0a0
  0xd0a1
  0xd0b2
  0xd0c0
  0xd0c1
  0xd0c3
  0xd0c4
  0xd0e0
  0xd0e1
  0xd0e2
  0xd0e3
  0xd0e4
  0xd0e5
  0xd0e6
  0xd0f0
  0xd0f5
  0xd0f8
  0xd0f9
  0xd100
  0xd101
  0xd102
  0xd103
  0xd104
  0xd105
  0xd108
  0xd109
  0xd10b
  0xd10c
  0xd10d
  0xd10e
  0xd120
  0xd121
  0xd122
  0xd124
  0xd125
  0xd126
  0xd14e
  0xd14f
  0xd160
  0xd161
  0xd163
  0xd164
  0xd167
  0xd16a
  0xd16b
  0xd16c
  0xd16d
  0xd170
  0xd171
  0xd172
  0xd173
  0xd174
  0xd183
  0xd18d
  0xd1a2
  0xd1a3
  0xd1a4
  0xd1b0
  0xd1b1
  0xd1b2
  0xd1b3
  0xd1c0
  0xd1c1
  0xd200
  0xd201


Camera summary:
Manufacturer: Nikon Corporation
Model: D5000
  Version: V1.00
  Serial Number: nnnnnnn
Vendor Extension ID: 0xa (1.0)
Vendor Extension Description: microsoft.com: 1.0

Capture Formats: JPEG Undefined Type
Display Formats: JPEG, Undefined Type, Association/Directory, MS AVI, DPOF, Script
Supported MTP Object Properties:
	JPEG/3801: dc01/StorageID dc02/ObjectFormat dc03/ProtectionStatus dc04/ObjectSize dc07/ObjectFileName dc08/DateCreated dc09/DateModified dc0b/ParentObject dc41/PersistantUniqueObjectIdentifier dc44/Name dc87/Width dc88/Height dcd3/ImageBitDepth dc81/RepresentativeSampleFormat dc82/RepresentativeSampleSize dc83/RepresentativeSampleHeight dc84/RepresentativeSampleWidth dc86/RepresentativeSampleData
	Undefined Type/3000: dc01/StorageID dc02/ObjectFormat dc03/ProtectionStatus dc04/ObjectSize dc07/ObjectFileName dc08/DateCreated dc09/DateModified dc0b/ParentObject dc41/PersistantUniqueObjectIdentifier dc44/Name
	Association/Directory/3001: dc01/StorageID dc02/ObjectFormat dc03/ProtectionStatus dc04/ObjectSize dc07/ObjectFileName dc08/DateCreated dc09/DateModified dc0b/ParentObject dc41/PersistantUniqueObjectIdentifier dc44/Name
	MS AVI/300a: dc01/StorageID dc02/ObjectFormat dc03/ProtectionStatus dc04/ObjectSize dc07/ObjectFileName dc08/DateCreated dc09/DateModified dc0b/ParentObject dc41/PersistantUniqueObjectIdentifier dc44/Name dc87/Width dc88/Height dc89/Duration de93/SampleRate de94/NumberOfChannels de9a/AudioBitRate de97/ScanDepth de9b/VideoFourCCCodec de9c/VideoBitRate
	DPOF/3006: dc01/StorageID dc02/ObjectFormat dc03/ProtectionStatus dc04/ObjectSize dc07/ObjectFileName dc08/DateCreated dc09/DateModified dc0b/ParentObject dc41/PersistantUniqueObjectIdentifier dc44/Name
	Script/3002: PTP error a802 on query

Device Capabilities:
	File Download, File Deletion, File Upload
	Generic Image Capture, No Open Capture, Nikon Capture

Storage Devices Summary:
store_00010001:
	StorageDescription: None
	VolumeLabel: 
150322
	Storage Type: Removable RAM (memory card)
	Filesystemtype: Digital Camera Layout (DCIM)
	Access Capability: Read Only with Object deletion
	Maximum Capability: 31902400512 (30424 MB)
	Free Space (Bytes): 31886344192 (30409 MB)
	Free Space (Images): 4305

Device Property Summary:
Battery Level(0x5001):(read only) (type=0x2) Range [0 - 100, step 1] value: 100% (100)
Image Size(0x5003):(readwrite) (type=0xffff) Enumeration [
	'4288x2848',
	'3216x2136',
	'2144x1424'
	] value: '4288x2848'
Compression Setting(0x5004):(readwrite) (type=0x2) Enumeration [0,1,2,4,5,6,7] value: JPEG Fine (2)
White Balance(0x5005):(readwrite) (type=0x4) Enumeration [2,4,5,6,7,32784,32785,32787] value: Automatic (2)
F-Number(0x5007):(read only) (type=0x4) Enumeration [380,400,450,500,560,630,710,800,900,1000,1100,1300,1400,1600,1800,2000,2200,2500] value: f/3.8 (380)
Focal Length(0x5008):(read only) (type=0x6) Range [1800 - 10500, step 1] value: 21 mm (2100)
Focus Mode(0x500a):(read only) (type=0x4) Enumeration [1,32784,32785,32786] value: AF-A (32786)
Exposure Metering Mode(0x500b):(readwrite) (type=0x4) Enumeration [2,3,4] value: Multi-spot (3)
Flash Mode(0x500c):(readwrite) (type=0x4) Enumeration [2,4,32784] value: Default (32784)
Exposure Time(0x500d):(read only) (type=0x6) Enumeration [2,5000] value: 0.05 sec (5000)
Exposure Program Mode(0x500e):(read only) (type=0x4) Enumeration [1,2,3,4,32784,32785,32786,32787,32788,32789,32790,32791,32792] value: Auto (32784)
Exposure Index (film speed ISO)(0x500f):(readwrite) (type=0x4) Enumeration [100,125,160,200,250,320,400,500,640,800,1000,1250,1600,2000,2500,3200,4000,5000,6400] value: ISO 200 (200)
Exposure Bias Compensation(0x5010):(readwrite) (type=0x3) Enumeration [-5000,-4666,-4333,-4000,-3666,-3333,-3000,-2666,-2333,-2000,-1666,-1333,-1000,-666,-333,0,333,666,1000,1333,1666,2000,2333,2666,3000,3333,3666,4000,4333,4666,5000] value: 0.0 stops (0)
Date & Time(0x5011):(readwrite) (type=0xffff) '20091113T133419'
Still Capture Mode(0x5013):(readwrite) (type=0x4) Enumeration [1,2,32785,32788,32789,32790] value: Single Shot (1)
Burst Number(0x5018):(readwrite) (type=0x4) Range [1 - 99, step 1] value: 1
Focus Metering Mode(0x501c):(readwrite) (type=0x4) Enumeration [2,32784,32785,32786] value: Closest Subject (32785)
Property 0xd406:(readwrite) (type=0xffff) 'Windows/6.0.5330.0 MTPClassDriver/6.0.5330.0'
Property 0xd407:(read only) (type=0x6) 1
Auto White Balance Bias(0xd017):(readwrite) (type=0x2) Range [0 - 168, step 1] value: 84
Tungsten White Balance Bias(0xd018):(readwrite) (type=0x2) Range [0 - 168, step 1] value: 84
Fluorescent White Balance Bias(0xd019):(readwrite) (type=0x2) Range [0 - 168, step 1] value: 84
Daylight White Balance Bias(0xd01a):(readwrite) (type=0x2) Range [0 - 168, step 1] value: 84
Flash White Balance Bias(0xd01b):(readwrite) (type=0x2) Range [0 - 168, step 1] value: 84
Cloudy White Balance Bias(0xd01c):(readwrite) (type=0x2) Range [0 - 168, step 1] value: 84
Shady White Balance Bias(0xd01d):(readwrite) (type=0x2) Range [0 - 168, step 1] value: 84
White Balance Preset Number(0xd01f):(readwrite) (type=0x2) Range [0 - 1, step 1] value: 1
White Balance Preset Value 0(0xd025):(read only) (type=0x6) 30212431
White Balance Preset Value 1(0xd026):(read only) (type=0x6) 30212431
Color Space(0xd032):(readwrite) (type=0x2) Range [0 - 1, step 1] value: 0
Reset Menu Bank(0xd045):(readwrite) (type=0x2) Range [0 - 1, step 1] value: 0
Auto ISO(0xd054):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Off (0)
Exposure Step(0xd056):(readwrite) (type=0x2) Range [0 - 2, step 1] value: 1/3 (0)
Live View AF(0xd05d):(readwrite) (type=0x1) Range [0 - 3, step 1] value: 0
Exposure Lock(0xd05e):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Off (0)
Focus Lock(0xd05f):(readwrite) (type=0x2) Range [0 - 4, step 1] value: AE/AF Lock (0)
Auto Meter Off Time(0xd062):(readwrite) (type=0x2) Range [0 - 4, step 1] value: 6 seconds (1)
Self Timer Delay(0xd063):(readwrite) (type=0x2) Range [0 - 3, step 1] value: 10 seconds (2)
LCD Off Time(0xd064):(readwrite) (type=0x2) Range [0 - 4, step 1] value: 20 seconds (1)
Img Conf Time(0xd065):(readwrite) (type=0x2) Range [0 - 4, step 1] value: 0
Property 0xd066:(readwrite) (type=0x2) Range [0 - 3, step 1] value: 1
Exposure delay mode(0xd06a):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Off (0)
Long Exposure Noise Reduction(0xd06b):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Off (0)
File Number Sequencing(0xd06c):(readwrite) (type=0x2) Range [0 - 2, step 1] value: Off (0)
High ISO noise reduction(0xd070):(readwrite) (type=0x2) Range [0 - 3, step 1] value: 2
Bracket Set(0xd078):(readwrite) (type=0x2) Range [0 - 4, step 1] value: AE only (1)
Assign Func. Button(0xd084):(readwrite) (type=0x2) Range [0 - 7, step 1] value: 0
Customise Command Dials(0xd085):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Off (0)
No CF Card Release(0xd08a):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Off (1)
Image Comment String(0xd090):(readwrite) (type=0xffff) '                                    '
Image Comment Enable(0xd091):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Off (0)
Image Rotation(0xd092):(readwrite) (type=0x2) Range [0 - 1, step 1] value: On (0)
Movie Screen Size(0xd0a0):(readwrite) (type=0x2) Range [0 - 2, step 1] value: 1
Movie Voice(0xd0a1):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Off (0)
Property 0xd0b2:(readwrite) (type=0x2) 15
Bracketing Enable(0xd0c0):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Off (0)
Exposure Bracketing Step(0xd0c1):(readwrite) (type=0x2) Range [0 - 7, step 1] value: 0
Auto Exposure Bracket Count(0xd0c3):(read only) (type=0x2) Range [1 - 3, step 1] value: 1
White Balance Bracket Step(0xd0c4):(readwrite) (type=0x2) Range [0 - 2, step 1] value: 0
Lens ID(0xd0e0):(read only) (type=0x2) 158
Lens Sort(0xd0e1):(read only) (type=0x2) Range [0 - 1, step 1] value: 1
Lens Type(0xd0e2):(read only) (type=0x2) 63
Min. Focal Length(0xd0e3):(read only) (type=0x6) 18 mm (1800)
Max. Focal Length(0xd0e4):(read only) (type=0x6) 105 mm (10500)
Max. Aperture at Min. Focal Length(0xd0e5):(read only) (type=0x4) f/3.5 (350)
Max. Aperture at Max. Focal Length(0xd0e6):(read only) (type=0x4) f/5.6 (560)
Finder ISO Display(0xd0f0):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Show ISO/Easy ISO (1)
Self Timer Shot Number(0xd0f5):(readwrite) (type=0x2) Range [0 - 8, step 1] value: 0
Property 0xd0f8:(readwrite) (type=0x2) Range [0 - 1, step 1] value: 0
Property 0xd0f9:(readwrite) (type=0x2) Range [0 - 12, step 1] value: 0
Nikon Exposure Time(0xd100):(read only) (type=0x6) Enumeration [69536,65538] value: 65538
AC Power(0xd101):(read only) (type=0x2) Range [0 - 1, step 1] value: No (0)
Warning Status(0xd102):(read only) (type=0x2) 0
Maximum Shots(0xd103):(read only) (type=0x2) Range [0 - 99, step 1] value: 12
AF Locked(0xd104):(read only) (type=0x2) Range [0 - 1, step 1] value: No (0)
AE Locked(0xd105):(read only) (type=0x2) Range [0 - 1, step 1] value: No (0)
Active AF Sensor(0xd108):(readwrite) (type=0x2) Range [1 - 11, step 1] value: Top (1)
Flexible Program(0xd109):(readwrite) (type=0x1) Range [-30 - 30, step 2] value: 0
Recording Media(0xd10b):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Card (0)
USB Speed(0xd10c):(read only) (type=0x2) Range [0 - 1, step 1] value: USB 2.0 (1)
CCD Serial Number(0xd10d):(read only) (type=0xffff) '1953768             '
Camera Orientation(0xd10e):(read only) (type=0x2) Range [0 - 3, step 1] value: 0' (0)
External Flash Attached(0xd120):(read only) (type=0x2) Range [0 - 1, step 1] value: No (0)
External Flash Status(0xd121):(read only) (type=0x2) Range [0 - 1, step 1] value: No (0)
External Flash Sort(0xd122):(read only) (type=0x2) Range [0 - 3, step 1] value: 0
External Flash Compensation(0xd124):(read only) (type=0x1) Range [-18 - 18, step 1] value: 0 (0)
External Flash Mode(0xd125):(read only) (type=0x2) Range [0 - 7, step 1] value: 0
Flash Exposure Compensation(0xd126):(readwrite) (type=0x1) Range [-18 - 6, step 2] value: 0.0 stops (0)
ISO Auto Time(0xd14e):(readwrite) (type=0x2) Range [0 - 5, step 1] value: 5
Flourescent Type(0xd14f):(readwrite) (type=0x2) Range [0 - 6, step 1] value: 3
AF Beep Mode(0xd160):(readwrite) (type=0x2) Range [0 - 2, step 1] value: On (0)
Autofocus Mode(0xd161):(readwrite) (type=0x2) Range [0 - 4, step 1] value: AF-A (2)
AF Assist Lamp(0xd163):(readwrite) (type=0x2) Range [0 - 1, step 1] value: On (0)
Auto ISO P/A/DVP Setting(0xd164):(readwrite) (type=0x2) Range [0 - 23, step 1] value: 18
Flash Mode(0xd167):(readwrite) (type=0x2) Range [0 - 1, step 1] value: iTTL (0)
Property 0xd16a:(readwrite) (type=0x2) Range [0 - 1, step 1] value: 0
Remote Timeout(0xd16b):(readwrite) (type=0x2) Range [0 - 3, step 1] value: 1 min (0)
Viewfinder Grid Display(0xd16c):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Off (0)
Flash Mode Manual Power(0xd16d):(readwrite) (type=0x2) Range [0 - 5, step 1] value: Full (0)
Property 0xd170:(readwrite) (type=0x1) Range [0 - 3, step 1] value: 0
Property 0xd171:(readwrite) (type=0x1) Range [0 - 2, step 1] value: 0
Property 0xd172:(readwrite) (type=0xffff) '000000000000000000000000'
Property 0xd173:(readwrite) (type=0x1) Range [0 - 2, step 1] value: 0
Property 0xd174:(readwrite) (type=0x1) Range [0 - 1, step 1] value: 0
ISO Auto High Limit(0xd183):(readwrite) (type=0x2) Range [0 - 4, step 1] value: 3200 (3)
Indicator Display(0xd18d):(readwrite) (type=0x2) Range [0 - 1, step 1] value: No (0)
Live View Status(0xd1a2):(read only) (type=0x2) Range [0 - 1, step 1] value: No (0)
Live View Image Zoom Ratio(0xd1a3):(readwrite) (type=0x2) Range [0 - 5, step 1] value: 0
Live View Prohibit Condition(0xd1a4):(read only) (type=0x6) 1
Exposure Display Status(0xd1b0):(read only) (type=0x2) Range [0 - 8, step 1] value: Yes (1)
Exposure Indicate Status(0xd1b1):(read only) (type=0x1) Range [-60 - 60, step 1] value: 0.0 stops (0)
Property 0xd1b2:(read only) (type=0x2) Range [0 - 1, step 1] value: No (0)
Exposure Indicate Lightup(0xd1b3):(read only) (type=0x2) Range [0 - 1, step 1] value: No (0)
Flash Open(0xd1c0):(read only) (type=0x2) Range [0 - 1, step 1] value: No (0)
Flash Charged(0xd1c1):(read only) (type=0x2) Range [0 - 1, step 1] value: Yes (1)
Active Pic Ctrl Item(0xd200):(readwrite) (type=0x4) Enumeration [1,2,3,4,5,6,101,102,103,104,201,202,203,204,205,206,207,208,209] value: 1
Change Pic Ctrl Item(0xd201):(read only) (type=0x4) Enumeration [] value: 0

/main/actions/autofocusdrive
	Label: Drive Nikon DSLR Autofocus
	Type: TOGGLE
	Current: 0
/main/actions/manualfocusdrive
	Label: Drive Nikon DSLR Manual focus
	Type: RANGE
	Current: 0
	Bottom: -32767
	Top: 32767
	Step: 1
/main/settings/datetime
	Label: Camera Date and Time
	Type: DATE
	Current: 1258115799
	Printable: Fri Nov 13 13:36:39 2009
/main/settings/imagecomment
	Label: Image Comment
	Type: TEXT
	Current:                                     
/main/settings/imagecommentenable
	Label: Enable Image Comment
	Type: RADIO
	Current: Off
	Choice: 0 On
	Choice: 1 Off
/main/settings/lcdofftime
	Label: LCD Off Time
	Type: RADIO
	Current: 20 seconds
	Choice: 0 10 seconds
	Choice: 1 20 seconds
	Choice: 2 1 minute
	Choice: 3 5 minutes
	Choice: 4 10 minutes
/main/settings/recordingmedia
	Label: Recording Media
	Type: RADIO
	Current: Card
	Choice: 0 Card
	Choice: 1 SDRAM
/main/settings/meterofftime
	Label: Meter Off Time
	Type: RADIO
	Current: 6 seconds
	Choice: 0 4 seconds
	Choice: 1 6 seconds
	Choice: 2 8 seconds
	Choice: 3 16 seconds
	Choice: 4 30 seconds
/main/settings/fastfs
	Label: Fast Filesystem
	Type: TOGGLE
	Current: 1
/main/settings/capturetarget
	Label: Capture Target
	Type: RADIO
	Current: Memory card
	Choice: 0 Internal RAM
	Choice: 1 Memory card
/main/status/acpower
	Label: AC Power
	Type: RADIO
	Current: Off
	Choice: 0 On
	Choice: 1 Off
/main/status/externalflash
	Label: External Flash
	Type: RADIO
	Current: Off
	Choice: 0 On
	Choice: 1 Off
/main/status/batterylevel
	Label: Battery Level
	Type: TEXT
	Current: 100%
/main/status/orientation
	Label: Camera Orientation
	Type: RADIO
	Current: 0'
	Choice: 0 0'
	Choice: 1 270'
	Choice: 2 90'
	Choice: 3 180'
/main/status/flashopen
	Label: Flash Open
	Type: RADIO
	Current: Off
	Choice: 0 On
	Choice: 1 Off
/main/status/flashcharged
	Label: Flash Charged
	Type: RADIO
	Current: On
	Choice: 0 On
	Choice: 1 Off
/main/status/minfocallength
	Label: Focal Length Minimum
	Type: TEXT
	Current: 18 mm
/main/status/maxfocallength
	Label: Focal Length Maximum
	Type: TEXT
	Current: 105 mm
/main/status/apertureatminfocallength
	Label: Maximum Aperture at Focal Length Minimum
	Type: TEXT
	Current: 4 mm
/main/status/apertureatmaxfocallength
	Label: Maximum Aperture at Focal Length Maximum
	Type: TEXT
	Current: 6 mm
/main/status/lowlight
	Label: Low Light
	Type: RANGE
	Current: 0
	Bottom: 0
	Top: 8
	Step: 1
/main/status/lightmeter
	Label: Light Meter
	Type: RANGE
	Current: 0
	Bottom: -60
	Top: 60
	Step: 1
/main/status/aflocked
	Label: AF Locked
	Type: RADIO
	Current: Off
	Choice: 0 On
	Choice: 1 Off
/main/status/aelocked
	Label: AE Locked
	Type: RADIO
	Current: Off
	Choice: 0 On
	Choice: 1 Off
/main/imgsettings/imagequality
	Label: Image Quality
	Type: RADIO
	Current: JPEG Fine
	Choice: 0 JPEG Basic
	Choice: 1 JPEG Normal
	Choice: 2 JPEG Fine
	Choice: 3 NEF+Basic
	Choice: 4 NEF+Normal
	Choice: 5 NEF+Fine
	Choice: 6 TIFF (RGB)
/main/imgsettings/imagesize
	Label: Image Size
	Type: RADIO
	Current: 4288x2848
	Choice: 0 4288x2848
	Choice: 1 3216x2136
	Choice: 2 2144x1424
/main/imgsettings/iso
	Label: ISO Speed
	Type: RADIO
	Current: 200
	Choice: 0 100
	Choice: 1 125
	Choice: 2 160
	Choice: 3 200
	Choice: 4 250
	Choice: 5 320
	Choice: 6 400
	Choice: 7 500
	Choice: 8 640
	Choice: 9 800
	Choice: 10 1000
	Choice: 11 1250
	Choice: 12 1600
	Choice: 13 2000
	Choice: 14 2500
	Choice: 15 3200
	Choice: 16 4000
	Choice: 17 5000
	Choice: 18 6400
/main/imgsettings/whitebalance
	Label: WhiteBalance
	Type: RADIO
	Current: Automatic
	Choice: 0 Automatic
	Choice: 1 Daylight
	Choice: 2 Fluorescent
	Choice: 3 Tungsten
	Choice: 4 Flash
	Choice: 5 Cloudy
	Choice: 6 Shade
	Choice: 7 Preset
/main/imgsettings/autoiso
	Label: Auto ISO
	Type: RADIO
	Current: Off
	Choice: 0 On
	Choice: 1 Off
/main/imgsettings/autoisopadv
	Label: Auto ISO PADV Time
	Type: RADIO
	Current: Unknown value 0012
	Choice: 0 1/125
	Choice: 1 1/60
	Choice: 2 1/30
	Choice: 3 1/15
	Choice: 4 1/8
	Choice: 5 1/4
	Choice: 6 1/2
	Choice: 7 1
	Choice: 8 2
	Choice: 9 4
	Choice: 10 8
	Choice: 11 15
	Choice: 12 30
	Choice: 13 Unknown value 000d
	Choice: 14 Unknown value 000e
	Choice: 15 Unknown value 000f
	Choice: 16 Unknown value 0010
	Choice: 17 Unknown value 0011
	Choice: 18 Unknown value 0012
	Choice: 19 Unknown value 0013
	Choice: 20 Unknown value 0014
	Choice: 21 Unknown value 0015
	Choice: 22 Unknown value 0016
	Choice: 23 Unknown value 0017
/main/capturesettings/longexpnr
	Label: Long Exp Noise Reduction
	Type: RADIO
	Current: Off
	Choice: 0 On
	Choice: 1 Off
/main/capturesettings/autofocusmode
	Label: Auto Focus Mode
	Type: RADIO
	Current: AF-A
	Choice: 0 AF-S
	Choice: 1 AF-C
	Choice: 2 AF-A
	Choice: 3 MF (fixed)
	Choice: 4 MF (selection)
/main/capturesettings/assistlight
	Label: Assist Light
	Type: RADIO
	Current: Off
	Choice: 0 On
	Choice: 1 Off
/main/capturesettings/exposurecompensation
	Label: Exposure Compensation
	Type: RADIO
	Current: 0
	Choice: 0 -5000
	Choice: 1 -4666
	Choice: 2 -4333
	Choice: 3 -4000
	Choice: 4 -3666
	Choice: 5 -3333
	Choice: 6 -3000
	Choice: 7 -2666
	Choice: 8 -2333
	Choice: 9 -2000
	Choice: 10 -1666
	Choice: 11 -1333
	Choice: 12 -1000
	Choice: 13 -666
	Choice: 14 -333
	Choice: 15 0
	Choice: 16 333
	Choice: 17 666
	Choice: 18 1000
	Choice: 19 1333
	Choice: 20 1666
	Choice: 21 2000
	Choice: 22 2333
	Choice: 23 2666
	Choice: 24 3000
	Choice: 25 3333
	Choice: 26 3666
	Choice: 27 4000
	Choice: 28 4333
	Choice: 29 4666
	Choice: 30 5000
/main/capturesettings/flashmode
	Label: Flash Mode
	Type: RADIO
	Current: iTTL
	Choice: 0 iTTL
	Choice: 1 Manual
/main/capturesettings/afbeep
	Label: AF Beep Mode
	Type: TOGGLE
	Current: 1
/main/capturesettings/f-number
	Label: F-Number
	Type: RADIO
	Current: f/3.8
	Choice: 0 f/3.8
	Choice: 1 f/4
	Choice: 2 f/4.5
	Choice: 3 f/5
	Choice: 4 f/5.6
	Choice: 5 f/6.3
	Choice: 6 f/7.1
	Choice: 7 f/8
	Choice: 8 f/9
	Choice: 9 f/10
	Choice: 10 f/11
	Choice: 11 f/13
	Choice: 12 f/14
	Choice: 13 f/16
	Choice: 14 f/18
	Choice: 15 f/20
	Choice: 16 f/22
	Choice: 17 f/25
/main/capturesettings/focallength
	Label: Focal Length
	Type: RANGE
	Current: 21
	Bottom: 18
	Top: 105
	Step: 0.01
/main/capturesettings/focusmode
	Label: Focus Mode
	Type: RADIO
	Current: AF-A
	Choice: 0 Manual
	Choice: 1 AF-S
	Choice: 2 AF-C
	Choice: 3 AF-A
/main/capturesettings/expprogram
	Label: Exposure Program
	Type: RADIO
	Current: Auto
	Choice: 0 M
	Choice: 1 P
	Choice: 2 A
	Choice: 3 S
	Choice: 4 Auto
	Choice: 5 Portrait
	Choice: 6 Landscape
	Choice: 7 Macro
	Choice: 8 Sports
	Choice: 9 Night Portrait
	Choice: 10 Night Landscape
	Choice: 11 Children
	Choice: 12 Automatic (No Flash)
/main/capturesettings/capturemode
	Label: Still Capture Mode
	Type: RADIO
	Current: Single Shot
	Choice: 0 Single Shot
	Choice: 1 Burst
	Choice: 2 Timer
	Choice: 3 Timer + Remote
	Choice: 4 Timer + Remote 2
	Choice: 5 Unknown value 8016
/main/capturesettings/focusmetermode
	Label: Focus Metering Mode
	Type: RADIO
	Current: Closest Subject
	Choice: 0 Multi-spot
	Choice: 1 Single Area
	Choice: 2 Closest Subject
	Choice: 3 Group Dynamic
/main/capturesettings/exposuremetermode
	Label: Exposure Metering Mode
	Type: RADIO
	Current: Multi Spot
	Choice: 0 Center Weighted
	Choice: 1 Multi Spot
	Choice: 2 Center Spot
/main/capturesettings/flashmode
	Label: Flash Mode
	Type: RADIO
	Current: iTTL
	Choice: 0 iTTL
	Choice: 1 Manual
/main/capturesettings/shutterspeed
	Label: Shutter Speed
	Type: RADIO
	Current: 0.0769s
	Choice: 0 0.0002s
	Choice: 1 0.0769s
/main/capturesettings/shutterspeed2
	Label: Shutter Speed
	Type: RADIO
	Current: 1/13
	Choice: 0 1/4000
	Choice: 1 1/13
/main/capturesettings/exposurelock
	Label: Exposure Lock
	Type: RADIO
	Current: Off
	Choice: 0 On
	Choice: 1 Off
/main/capturesettings/aelaflmode
	Label: AE-L/AF-L Mode
	Type: RADIO
	Current: AE/AF Lock
	Choice: 0 AE/AF Lock
	Choice: 1 AE Lock only
	Choice: 2 AF Lock Only
	Choice: 3 AF Lock Hold
	Choice: 4 AF On
/main/capturesettings/filenrsequencing
	Label: File Number Sequencing
	Type: RADIO
	Current: Off
	Choice: 0 On
	Choice: 1 Off
/main/capturesettings/viewfindergrid
	Label: Viewfinder Grid
	Type: RADIO
	Current: Off
	Choice: 0 On
	Choice: 1 Off
/main/capturesettings/imagerotationflag
	Label: Image Rotation Flag
	Type: RADIO
	Current: Off
	Choice: 0 On
	Choice: 1 Off
/main/capturesettings/nocfcardrelease
	Label: Release without CF card
	Type: RADIO
	Current: On
	Choice: 0 On
	Choice: 1 Off
/main/capturesettings/flashmodemanualpower
	Label: Flash Mode Manual Power
	Type: RADIO
	Current: Full
	Choice: 0 Full
	Choice: 1 1/2
	Choice: 2 1/4
	Choice: 3 1/8
	Choice: 4 1/16
	Choice: 5 Unknown value 0005
/main/capturesettings/autofocusarea
	Label: Auto Focus Area
	Type: RADIO
	Current: Top
	Choice: 0 Top
	Choice: 1 Bottom
	Choice: 2 Left
	Choice: 3 Right
	Choice: 4 Unknown value 0005
	Choice: 5 Unknown value 0006
	Choice: 6 Unknown value 0007
	Choice: 7 Unknown value 0008
	Choice: 8 Unknown value 0009
	Choice: 9 Unknown value 000a
	Choice: 10 Unknown value 000b
/main/capturesettings/flashexposurecompensation
	Label: Flash Exposure Compensation
	Type: RANGE
	Current: 0
	Bottom: -3
	Top: 1
	Step: 0.333333
/main/capturesettings/bracketing
	Label: Bracketing
	Type: RADIO
	Current: Off
	Choice: 0 On
	Choice: 1 Off
/main/capturesettings/evstep
	Label: EV Step
	Type: RADIO
	Current: 1/3
	Choice: 0 1/3
	Choice: 1 1/2
	Choice: 2 Unknown value 0002
/main/capturesettings/bracketset
	Label: Bracket Set
	Type: RADIO
	Current: AE only
	Choice: 0 AE & Flash
	Choice: 1 AE only
	Choice: 2 Flash only
	Choice: 3 WB bracketing
	Choice: 4 ADL bracketing
/main/capturesettings/burstnumber
	Label: Burst Number
	Type: RANGE
	Current: 1
	Bottom: 1
	Top: 99
	Step: 1
/main/capturesettings/autowhitebias
	Label: Auto White Balance Bias
	Type: RANGE
	Current: 84
	Bottom: 0
	Top: 168
	Step: 1
/main/capturesettings/tungstenwhitebias
	Label: Tungsten White Balance Bias
	Type: RANGE
	Current: 84
	Bottom: 0
	Top: 168
	Step: 1
/main/capturesettings/flourescentwhitebias
	Label: Fluorescent White Balance Bias
	Type: RANGE
	Current: 84
	Bottom: 0
	Top: 168
	Step: 1
/main/capturesettings/daylightwhitebias
	Label: Daylight White Balance Bias
	Type: RANGE
	Current: 84
	Bottom: 0
	Top: 168
	Step: 1
/main/capturesettings/flashwhitebias
	Label: Flash White Balance Bias
	Type: RANGE
	Current: 84
	Bottom: 0
	Top: 168
	Step: 1
/main/capturesettings/cloudywhitebias
	Label: Cloudy White Balance Bias
	Type: RANGE
	Current: 84
	Bottom: 0
	Top: 168
	Step: 1
/main/capturesettings/shadewhitebias
	Label: Shady White Balance Bias
	Type: RANGE
	Current: 84
	Bottom: 0
	Top: 168
	Step: 1
/main/capturesettings/whitebiaspresetno
	Label: White Balance Bias Preset Nr
	Type: RADIO
	Current: (null)
	Choice: 0 0
/main/capturesettings/whitebiaspreset0
	Label: White Balance Bias Preset 0
	Type: TEXT
	Current: 30212431
/main/capturesettings/whitebiaspreset1
	Label: White Balance Bias Preset 1
	Type: TEXT
	Current: 30212431
/main/capturesettings/selftimerdelay
	Label: Selftimer Delay
	Type: RADIO
	Current: 10 seconds
	Choice: 0 2 seconds
	Choice: 1 5 seconds
	Choice: 2 10 seconds
	Choice: 3 20 seconds
/main/capturesettings/remotetimeout
	Label: Remote Timeout
	Type: RADIO
	Current: 1 minute
	Choice: 0 1 minute
	Choice: 1 5 minutes
	Choice: 2 10 minutes
	Choice: 3 15 minutes
/main/other/5001
	Label: Battery Level
	Type: MENU
	Current: 100
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
	Choice: 8 8
	Choice: 9 9
	Choice: 10 10
	Choice: 11 11
	Choice: 12 12
	Choice: 13 13
	Choice: 14 14
	Choice: 15 15
	Choice: 16 16
	Choice: 17 17
	Choice: 18 18
	Choice: 19 19
	Choice: 20 20
	Choice: 21 21
	Choice: 22 22
	Choice: 23 23
	Choice: 24 24
	Choice: 25 25
	Choice: 26 26
	Choice: 27 27
	Choice: 28 28
	Choice: 29 29
	Choice: 30 30
	Choice: 31 31
	Choice: 32 32
	Choice: 33 33
	Choice: 34 34
	Choice: 35 35
	Choice: 36 36
	Choice: 37 37
	Choice: 38 38
	Choice: 39 39
	Choice: 40 40
	Choice: 41 41
	Choice: 42 42
	Choice: 43 43
	Choice: 44 44
	Choice: 45 45
	Choice: 46 46
	Choice: 47 47
	Choice: 48 48
	Choice: 49 49
	Choice: 50 50
	Choice: 51 51
	Choice: 52 52
	Choice: 53 53
	Choice: 54 54
	Choice: 55 55
	Choice: 56 56
	Choice: 57 57
	Choice: 58 58
	Choice: 59 59
	Choice: 60 60
	Choice: 61 61
	Choice: 62 62
	Choice: 63 63
	Choice: 64 64
	Choice: 65 65
	Choice: 66 66
	Choice: 67 67
	Choice: 68 68
	Choice: 69 69
	Choice: 70 70
	Choice: 71 71
	Choice: 72 72
	Choice: 73 73
	Choice: 74 74
	Choice: 75 75
	Choice: 76 76
	Choice: 77 77
	Choice: 78 78
	Choice: 79 79
	Choice: 80 80
	Choice: 81 81
	Choice: 82 82
	Choice: 83 83
	Choice: 84 84
	Choice: 85 85
	Choice: 86 86
	Choice: 87 87
	Choice: 88 88
	Choice: 89 89
	Choice: 90 90
	Choice: 91 91
	Choice: 92 92
	Choice: 93 93
	Choice: 94 94
	Choice: 95 95
	Choice: 96 96
	Choice: 97 97
	Choice: 98 98
	Choice: 99 99
	Choice: 100 100
/main/other/5003
	Label: Image Size
	Type: MENU
	Current: 4288x2848
	Choice: 0 4288x2848
	Choice: 1 3216x2136
	Choice: 2 2144x1424
/main/other/5004
	Label: Compression Setting
	Type: MENU
	Current: 2
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 4
	Choice: 4 5
	Choice: 5 6
	Choice: 6 7
/main/other/5005
	Label: White Balance
	Type: MENU
	Current: 2
	Choice: 0 2
	Choice: 1 4
	Choice: 2 5
	Choice: 3 6
	Choice: 4 7
	Choice: 5 32784
	Choice: 6 32785
	Choice: 7 32787
/main/other/5007
	Label: F-Number
	Type: MENU
	Current: 380
	Choice: 0 380
	Choice: 1 400
	Choice: 2 450
	Choice: 3 500
	Choice: 4 560
	Choice: 5 630
	Choice: 6 710
	Choice: 7 800
	Choice: 8 900
	Choice: 9 1000
	Choice: 10 1100
	Choice: 11 1300
	Choice: 12 1400
	Choice: 13 1600
	Choice: 14 1800
	Choice: 15 2000
	Choice: 16 2200
	Choice: 17 2500
/main/other/5008
	Label: Focal Length
	Type: RANGE
	Current: 2100
	Bottom: 1800
	Top: 10500
	Step: 1
/main/other/500a
	Label: Focus Mode
	Type: MENU
	Current: 32786
	Choice: 0 1
	Choice: 1 32784
	Choice: 2 32785
	Choice: 3 32786
/main/other/500b
	Label: Exposure Metering Mode
	Type: MENU
	Current: 3
	Choice: 0 2
	Choice: 1 3
	Choice: 2 4
/main/other/500c
	Label: Flash Mode
	Type: MENU
	Current: 32784
	Choice: 0 2
	Choice: 1 4
	Choice: 2 32784
/main/other/500d
	Label: Exposure Time
	Type: MENU
	Current: 769
	Choice: 0 2
	Choice: 1 769
/main/other/500e
	Label: Exposure Program Mode
	Type: MENU
	Current: 32784
	Choice: 0 1
	Choice: 1 2
	Choice: 2 3
	Choice: 3 4
	Choice: 4 32784
	Choice: 5 32785
	Choice: 6 32786
	Choice: 7 32787
	Choice: 8 32788
	Choice: 9 32789
	Choice: 10 32790
	Choice: 11 32791
	Choice: 12 32792
/main/other/500f
	Label: Exposure Index (film speed ISO)
	Type: MENU
	Current: 200
	Choice: 0 100
	Choice: 1 125
	Choice: 2 160
	Choice: 3 200
	Choice: 4 250
	Choice: 5 320
	Choice: 6 400
	Choice: 7 500
	Choice: 8 640
	Choice: 9 800
	Choice: 10 1000
	Choice: 11 1250
	Choice: 12 1600
	Choice: 13 2000
	Choice: 14 2500
	Choice: 15 3200
	Choice: 16 4000
	Choice: 17 5000
	Choice: 18 6400
/main/other/5010
	Label: Exposure Bias Compensation
	Type: MENU
	Current: 0
	Choice: 0 -5000
	Choice: 1 -4666
	Choice: 2 -4333
	Choice: 3 -4000
	Choice: 4 -3666
	Choice: 5 -3333
	Choice: 6 -3000
	Choice: 7 -2666
	Choice: 8 -2333
	Choice: 9 -2000
	Choice: 10 -1666
	Choice: 11 -1333
	Choice: 12 -1000
	Choice: 13 -666
	Choice: 14 -333
	Choice: 15 0
	Choice: 16 333
	Choice: 17 666
	Choice: 18 1000
	Choice: 19 1333
	Choice: 20 1666
	Choice: 21 2000
	Choice: 22 2333
	Choice: 23 2666
	Choice: 24 3000
	Choice: 25 3333
	Choice: 26 3666
	Choice: 27 4000
	Choice: 28 4333
	Choice: 29 4666
	Choice: 30 5000
/main/other/5011
	Label: Date & Time
	Type: TEXT
	Current: 20091113T133653
/main/other/5013
	Label: Still Capture Mode
	Type: MENU
	Current: 1
	Choice: 0 1
	Choice: 1 2
	Choice: 2 32785
	Choice: 3 32788
	Choice: 4 32789
	Choice: 5 32790
/main/other/5018
	Label: Burst Number
	Type: MENU
	Current: 1
	Choice: 0 1
	Choice: 1 2
	Choice: 2 3
	Choice: 3 4
	Choice: 4 5
	Choice: 5 6
	Choice: 6 7
	Choice: 7 8
	Choice: 8 9
	Choice: 9 10
	Choice: 10 11
	Choice: 11 12
	Choice: 12 13
	Choice: 13 14
	Choice: 14 15
	Choice: 15 16
	Choice: 16 17
	Choice: 17 18
	Choice: 18 19
	Choice: 19 20
	Choice: 20 21
	Choice: 21 22
	Choice: 22 23
	Choice: 23 24
	Choice: 24 25
	Choice: 25 26
	Choice: 26 27
	Choice: 27 28
	Choice: 28 29
	Choice: 29 30
	Choice: 30 31
	Choice: 31 32
	Choice: 32 33
	Choice: 33 34
	Choice: 34 35
	Choice: 35 36
	Choice: 36 37
	Choice: 37 38
	Choice: 38 39
	Choice: 39 40
	Choice: 40 41
	Choice: 41 42
	Choice: 42 43
	Choice: 43 44
	Choice: 44 45
	Choice: 45 46
	Choice: 46 47
	Choice: 47 48
	Choice: 48 49
	Choice: 49 50
	Choice: 50 51
	Choice: 51 52
	Choice: 52 53
	Choice: 53 54
	Choice: 54 55
	Choice: 55 56
	Choice: 56 57
	Choice: 57 58
	Choice: 58 59
	Choice: 59 60
	Choice: 60 61
	Choice: 61 62
	Choice: 62 63
	Choice: 63 64
	Choice: 64 65
	Choice: 65 66
	Choice: 66 67
	Choice: 67 68
	Choice: 68 69
	Choice: 69 70
	Choice: 70 71
	Choice: 71 72
	Choice: 72 73
	Choice: 73 74
	Choice: 74 75
	Choice: 75 76
	Choice: 76 77
	Choice: 77 78
	Choice: 78 79
	Choice: 79 80
	Choice: 80 81
	Choice: 81 82
	Choice: 82 83
	Choice: 83 84
	Choice: 84 85
	Choice: 85 86
	Choice: 86 87
	Choice: 87 88
	Choice: 88 89
	Choice: 89 90
	Choice: 90 91
	Choice: 91 92
	Choice: 92 93
	Choice: 93 94
	Choice: 94 95
	Choice: 95 96
	Choice: 96 97
	Choice: 97 98
	Choice: 98 99
/main/other/501c
	Label: Focus Metering Mode
	Type: MENU
	Current: 32785
	Choice: 0 2
	Choice: 1 32784
	Choice: 2 32785
	Choice: 3 32786
/main/other/d406
	Label: PTP Property 0xd406
	Type: TEXT
	Current: Windows/6.0.5330.0 MTPClassDriver/6.0.5330.0
/main/other/d407
	Label: PTP Property 0xd407
	Type: TEXT
	Current: 1
/main/other/d017
	Label: Auto White Balance Bias
	Type: RANGE
	Current: 84
	Bottom: 0
	Top: 168
	Step: 1
/main/other/d018
	Label: Tungsten White Balance Bias
	Type: RANGE
	Current: 84
	Bottom: 0
	Top: 168
	Step: 1
/main/other/d019
	Label: Fluorescent White Balance Bias
	Type: RANGE
	Current: 84
	Bottom: 0
	Top: 168
	Step: 1
/main/other/d01a
	Label: Daylight White Balance Bias
	Type: RANGE
	Current: 84
	Bottom: 0
	Top: 168
	Step: 1
/main/other/d01b
	Label: Flash White Balance Bias
	Type: RANGE
	Current: 84
	Bottom: 0
	Top: 168
	Step: 1
/main/other/d01c
	Label: Cloudy White Balance Bias
	Type: RANGE
	Current: 84
	Bottom: 0
	Top: 168
	Step: 1
/main/other/d01d
	Label: Shady White Balance Bias
	Type: RANGE
	Current: 84
	Bottom: 0
	Top: 168
	Step: 1
/main/other/d01f
	Label: White Balance Preset Number
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
/main/other/d025
	Label: White Balance Preset Value 0
	Type: TEXT
	Current: 30212431
/main/other/d026
	Label: White Balance Preset Value 1
	Type: TEXT
	Current: 30212431
/main/other/d032
	Label: Color Space
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d045
	Label: Reset Menu Bank
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d054
	Label: Auto ISO
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d056
	Label: Exposure Step
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
/main/other/d05d
	Label: Live View AF
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
/main/other/d05e
	Label: Exposure Lock
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d05f
	Label: Focus Lock
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
/main/other/d062
	Label: Auto Meter Off Time
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
/main/other/d063
	Label: Self Timer Delay
	Type: MENU
	Current: 2
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
/main/other/d064
	Label: LCD Off Time
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
/main/other/d065
	Label: Img Conf Time
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
/main/other/d066
	Label: PTP Property 0xd066
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
/main/other/d06a
	Label: Exposure delay mode
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d06b
	Label: Long Exposure Noise Reduction
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d06c
	Label: File Number Sequencing
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
/main/other/d070
	Label: High ISO noise reduction
	Type: MENU
	Current: 2
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
/main/other/d078
	Label: Bracket Set
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
/main/other/d084
	Label: Assign Func. Button
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
/main/other/d085
	Label: Customise Command Dials
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d08a
	Label: No CF Card Release
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
/main/other/d090
	Label: Image Comment String
	Type: TEXT
	Current:                                     
/main/other/d091
	Label: Image Comment Enable
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d092
	Label: Image Rotation
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d0a0
	Label: Movie Screen Size
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
/main/other/d0a1
	Label: Movie Voice
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d0b2
	Label: PTP Property 0xd0b2
	Type: TEXT
	Current: 15
/main/other/d0c0
	Label: Bracketing Enable
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d0c1
	Label: Exposure Bracketing Step
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
/main/other/d0c3
	Label: Auto Exposure Bracket Count
	Type: MENU
	Current: 1
	Choice: 0 1
	Choice: 1 2
	Choice: 2 3
/main/other/d0c4
	Label: White Balance Bracket Step
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
/main/other/d0e0
	Label: Lens ID
	Type: TEXT
	Current: 158
/main/other/d0e1
	Label: Lens Sort
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
/main/other/d0e2
	Label: Lens Type
	Type: TEXT
	Current: 63
/main/other/d0e3
	Label: Min. Focal Length
	Type: TEXT
	Current: 1800
/main/other/d0e4
	Label: Max. Focal Length
	Type: TEXT
	Current: 10500
/main/other/d0e5
	Label: Max. Aperture at Min. Focal Length
	Type: TEXT
	Current: 350
/main/other/d0e6
	Label: Max. Aperture at Max. Focal Length
	Type: TEXT
	Current: 560
/main/other/d0f0
	Label: Finder ISO Display
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
/main/other/d0f5
	Label: Self Timer Shot Number
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
	Choice: 8 8
/main/other/d0f8
	Label: PTP Property 0xd0f8
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d0f9
	Label: PTP Property 0xd0f9
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
	Choice: 8 8
	Choice: 9 9
	Choice: 10 10
	Choice: 11 11
	Choice: 12 12
/main/other/d100
	Label: Nikon Exposure Time
	Type: MENU
	Current: 65549
	Choice: 0 69536
	Choice: 1 65549
/main/other/d101
	Label: AC Power
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d102
	Label: Warning Status
	Type: TEXT
	Current: 0
/main/other/d103
	Label: Maximum Shots
	Type: MENU
	Current: 12
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
	Choice: 8 8
	Choice: 9 9
	Choice: 10 10
	Choice: 11 11
	Choice: 12 12
	Choice: 13 13
	Choice: 14 14
	Choice: 15 15
	Choice: 16 16
	Choice: 17 17
	Choice: 18 18
	Choice: 19 19
	Choice: 20 20
	Choice: 21 21
	Choice: 22 22
	Choice: 23 23
	Choice: 24 24
	Choice: 25 25
	Choice: 26 26
	Choice: 27 27
	Choice: 28 28
	Choice: 29 29
	Choice: 30 30
	Choice: 31 31
	Choice: 32 32
	Choice: 33 33
	Choice: 34 34
	Choice: 35 35
	Choice: 36 36
	Choice: 37 37
	Choice: 38 38
	Choice: 39 39
	Choice: 40 40
	Choice: 41 41
	Choice: 42 42
	Choice: 43 43
	Choice: 44 44
	Choice: 45 45
	Choice: 46 46
	Choice: 47 47
	Choice: 48 48
	Choice: 49 49
	Choice: 50 50
	Choice: 51 51
	Choice: 52 52
	Choice: 53 53
	Choice: 54 54
	Choice: 55 55
	Choice: 56 56
	Choice: 57 57
	Choice: 58 58
	Choice: 59 59
	Choice: 60 60
	Choice: 61 61
	Choice: 62 62
	Choice: 63 63
	Choice: 64 64
	Choice: 65 65
	Choice: 66 66
	Choice: 67 67
	Choice: 68 68
	Choice: 69 69
	Choice: 70 70
	Choice: 71 71
	Choice: 72 72
	Choice: 73 73
	Choice: 74 74
	Choice: 75 75
	Choice: 76 76
	Choice: 77 77
	Choice: 78 78
	Choice: 79 79
	Choice: 80 80
	Choice: 81 81
	Choice: 82 82
	Choice: 83 83
	Choice: 84 84
	Choice: 85 85
	Choice: 86 86
	Choice: 87 87
	Choice: 88 88
	Choice: 89 89
	Choice: 90 90
	Choice: 91 91
	Choice: 92 92
	Choice: 93 93
	Choice: 94 94
	Choice: 95 95
	Choice: 96 96
	Choice: 97 97
	Choice: 98 98
	Choice: 99 99
/main/other/d104
	Label: AF Locked
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d105
	Label: AE Locked
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d108
	Label: Active AF Sensor
	Type: MENU
	Current: 1
	Choice: 0 1
	Choice: 1 2
	Choice: 2 3
	Choice: 3 4
	Choice: 4 5
	Choice: 5 6
	Choice: 6 7
	Choice: 7 8
	Choice: 8 9
	Choice: 9 10
	Choice: 10 11
/main/other/d109
	Label: Flexible Program
	Type: RANGE
	Current: 0
	Bottom: -30
	Top: 30
	Step: 2
/main/other/d10b
	Label: Recording Media
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d10c
	Label: USB Speed
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
/main/other/d10d
	Label: CCD Serial Number
	Type: TEXT
	Current: 1953768             
/main/other/d10e
	Label: Camera Orientation
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
/main/other/d120
	Label: External Flash Attached
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d121
	Label: External Flash Status
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d122
	Label: External Flash Sort
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
/main/other/d124
	Label: External Flash Compensation
	Type: MENU
	Current: 0
	Choice: 0 -18
	Choice: 1 -17
	Choice: 2 -16
	Choice: 3 -15
	Choice: 4 -14
	Choice: 5 -13
	Choice: 6 -12
	Choice: 7 -11
	Choice: 8 -10
	Choice: 9 -9
	Choice: 10 -8
	Choice: 11 -7
	Choice: 12 -6
	Choice: 13 -5
	Choice: 14 -4
	Choice: 15 -3
	Choice: 16 -2
	Choice: 17 -1
	Choice: 18 0
	Choice: 19 1
	Choice: 20 2
	Choice: 21 3
	Choice: 22 4
	Choice: 23 5
	Choice: 24 6
	Choice: 25 7
	Choice: 26 8
	Choice: 27 9
	Choice: 28 10
	Choice: 29 11
	Choice: 30 12
	Choice: 31 13
	Choice: 32 14
	Choice: 33 15
	Choice: 34 16
	Choice: 35 17
	Choice: 36 18
/main/other/d125
	Label: External Flash Mode
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
/main/other/d126
	Label: Flash Exposure Compensation
	Type: RANGE
	Current: 0
	Bottom: -18
	Top: 6
	Step: 2
/main/other/d14e
	Label: ISO Auto Time
	Type: MENU
	Current: 5
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
/main/other/d14f
	Label: Flourescent Type
	Type: MENU
	Current: 3
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
/main/other/d160
	Label: AF Beep Mode
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
/main/other/d161
	Label: Autofocus Mode
	Type: MENU
	Current: 2
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
/main/other/d163
	Label: AF Assist Lamp
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d164
	Label: Auto ISO P/A/DVP Setting
	Type: MENU
	Current: 18
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
	Choice: 8 8
	Choice: 9 9
	Choice: 10 10
	Choice: 11 11
	Choice: 12 12
	Choice: 13 13
	Choice: 14 14
	Choice: 15 15
	Choice: 16 16
	Choice: 17 17
	Choice: 18 18
	Choice: 19 19
	Choice: 20 20
	Choice: 21 21
	Choice: 22 22
	Choice: 23 23
/main/other/d167
	Label: Flash Mode
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d16a
	Label: PTP Property 0xd16a
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d16b
	Label: Remote Timeout
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
/main/other/d16c
	Label: Viewfinder Grid Display
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d16d
	Label: Flash Mode Manual Power
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
/main/other/d170
	Label: PTP Property 0xd170
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
/main/other/d171
	Label: PTP Property 0xd171
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
/main/other/d172
	Label: PTP Property 0xd172
	Type: TEXT
	Current: 000000000000000000000000
/main/other/d173
	Label: PTP Property 0xd173
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
/main/other/d174
	Label: PTP Property 0xd174
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d183
	Label: ISO Auto High Limit
	Type: MENU
	Current: 3
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
/main/other/d18d
	Label: Indicator Display
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d1a2
	Label: Live View Status
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d1a3
	Label: Live View Image Zoom Ratio
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
/main/other/d1a4
	Label: Live View Prohibit Condition
	Type: TEXT
	Current: 1
/main/other/d1b0
	Label: Exposure Display Status
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
	Choice: 8 8
/main/other/d1b1
	Label: Exposure Indicate Status
	Type: MENU
	Current: 0
	Choice: 0 -60
	Choice: 1 -59
	Choice: 2 -58
	Choice: 3 -57
	Choice: 4 -56
	Choice: 5 -55
	Choice: 6 -54
	Choice: 7 -53
	Choice: 8 -52
	Choice: 9 -51
	Choice: 10 -50
	Choice: 11 -49
	Choice: 12 -48
	Choice: 13 -47
	Choice: 14 -46
	Choice: 15 -45
	Choice: 16 -44
	Choice: 17 -43
	Choice: 18 -42
	Choice: 19 -41
	Choice: 20 -40
	Choice: 21 -39
	Choice: 22 -38
	Choice: 23 -37
	Choice: 24 -36
	Choice: 25 -35
	Choice: 26 -34
	Choice: 27 -33
	Choice: 28 -32
	Choice: 29 -31
	Choice: 30 -30
	Choice: 31 -29
	Choice: 32 -28
	Choice: 33 -27
	Choice: 34 -26
	Choice: 35 -25
	Choice: 36 -24
	Choice: 37 -23
	Choice: 38 -22
	Choice: 39 -21
	Choice: 40 -20
	Choice: 41 -19
	Choice: 42 -18
	Choice: 43 -17
	Choice: 44 -16
	Choice: 45 -15
	Choice: 46 -14
	Choice: 47 -13
	Choice: 48 -12
	Choice: 49 -11
	Choice: 50 -10
	Choice: 51 -9
	Choice: 52 -8
	Choice: 53 -7
	Choice: 54 -6
	Choice: 55 -5
	Choice: 56 -4
	Choice: 57 -3
	Choice: 58 -2
	Choice: 59 -1
	Choice: 60 0
	Choice: 61 1
	Choice: 62 2
	Choice: 63 3
	Choice: 64 4
	Choice: 65 5
	Choice: 66 6
	Choice: 67 7
	Choice: 68 8
	Choice: 69 9
	Choice: 70 10
	Choice: 71 11
	Choice: 72 12
	Choice: 73 13
	Choice: 74 14
	Choice: 75 15
	Choice: 76 16
	Choice: 77 17
	Choice: 78 18
	Choice: 79 19
	Choice: 80 20
	Choice: 81 21
	Choice: 82 22
	Choice: 83 23
	Choice: 84 24
	Choice: 85 25
	Choice: 86 26
	Choice: 87 27
	Choice: 88 28
	Choice: 89 29
	Choice: 90 30
	Choice: 91 31
	Choice: 92 32
	Choice: 93 33
	Choice: 94 34
	Choice: 95 35
	Choice: 96 36
	Choice: 97 37
	Choice: 98 38
	Choice: 99 39
	Choice: 100 40
	Choice: 101 41
	Choice: 102 42
	Choice: 103 43
	Choice: 104 44
	Choice: 105 45
	Choice: 106 46
	Choice: 107 47
	Choice: 108 48
	Choice: 109 49
	Choice: 110 50
	Choice: 111 51
	Choice: 112 52
	Choice: 113 53
	Choice: 114 54
	Choice: 115 55
	Choice: 116 56
	Choice: 117 57
	Choice: 118 58
	Choice: 119 59
	Choice: 120 60
/main/other/d1b2
	Label: PTP Property 0xd1b2
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d1b3
	Label: Exposure Indicate Lightup
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
/main/other/d1c0
	Label: Flash Open
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d1c1
	Label: Flash Charged
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
/main/other/d200
	Label: Active Pic Ctrl Item
	Type: MENU
	Current: 1
	Choice: 0 1
	Choice: 1 2
	Choice: 2 3
	Choice: 3 4
	Choice: 4 5
	Choice: 5 6
	Choice: 6 101
	Choice: 7 102
	Choice: 8 103
	Choice: 9 104
	Choice: 10 201
	Choice: 11 202
	Choice: 12 203
	Choice: 13 204
	Choice: 14 205
	Choice: 15 206
	Choice: 16 207
	Choice: 17 208
	Choice: 18 209
/main/other/d201
	Label: Change Pic Ctrl Item
	Type: MENU
	Current: 0