summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes26
-rw-r--r--META.json2
-rw-r--r--META.yml2
-rw-r--r--README4
-rwxr-xr-xexiftool37
-rw-r--r--html/ExifTool.html24
-rw-r--r--html/ExifTool.pdf924
-rw-r--r--html/Shift.pdf6
-rw-r--r--html/TagNames/Apple.html8
-rw-r--r--html/TagNames/Canon.html4
-rw-r--r--html/TagNames/FlashPix.html22
-rw-r--r--html/TagNames/Nikon.html1692
-rw-r--r--html/TagNames/NikonCustom.html1966
-rw-r--r--html/TagNames/PDF.html13
-rw-r--r--html/TagNames/QuickTime.html274
-rw-r--r--html/TagNames/Samsung.html454
-rw-r--r--html/TagNames/Sony.html101
-rw-r--r--html/TagNames/index.html4
-rw-r--r--html/exiftool_pod.html6
-rw-r--r--html/exiftool_pod.pdf380
-rw-r--r--html/history.html29
-rw-r--r--html/index.html12
-rw-r--r--html/install.html22
-rw-r--r--html/sample_images.html14
-rw-r--r--lib/Image/ExifTool.pm204
-rw-r--r--lib/Image/ExifTool.pod27
-rw-r--r--lib/Image/ExifTool/Apple.pm14
-rw-r--r--lib/Image/ExifTool/BigTIFF.pm9
-rw-r--r--lib/Image/ExifTool/Canon.pm4
-rw-r--r--lib/Image/ExifTool/FlashPix.pm10
-rw-r--r--lib/Image/ExifTool/Nikon.pm628
-rw-r--r--lib/Image/ExifTool/NikonCustom.pm807
-rw-r--r--lib/Image/ExifTool/PDF.pm26
-rw-r--r--lib/Image/ExifTool/QuickTime.pm28
-rw-r--r--lib/Image/ExifTool/Samsung.pm454
-rw-r--r--lib/Image/ExifTool/Sony.pm152
-rw-r--r--lib/Image/ExifTool/TagLookup.pm9198
-rw-r--r--lib/Image/ExifTool/TagNames.pod486
-rw-r--r--lib/Image/ExifTool/Writer.pl9
-rw-r--r--perl-Image-ExifTool.spec2
-rw-r--r--pp_build_exe.args8
-rwxr-xr-xwindows_exiftool35
42 files changed, 11823 insertions, 6304 deletions
diff --git a/Changes b/Changes
index e2e27f6f..5bf17532 100644
--- a/Changes
+++ b/Changes
@@ -7,6 +7,32 @@ RSS feed: https://exiftool.org/rss.xml
Note: The most recent production release is Version 12.60. (Other versions are
considered development releases, and are not uploaded to MetaCPAN.)
+Aug. 10, 2023 - Version 12.65
+
+ - Added a new QuickTime Keys tag
+ - Added a new CanonModelID (thanks Laurent Clevy)
+ - Added a new Canon LensType (thanks Norbert Wasser)
+ - Added number in brackets to converted Samsung MCCData value
+ - Decode a number of new Sony tags (thanks Jos Roost)
+ - Decode a few new FlashPix tags (github #217)
+ - Improved decoding of Nikon Z9 firmware 4.0 tags (thanks Warren Hatch)
+ - Improved parsing of PDF:Keywords to support semicolon-separated lists
+ - Enhanced -api option to show list of available options if no argument is
+ provided
+ - Lowered priority of IFD1 tags in ARW images so IFD0/SubIFD take precedence
+ - Changed QuickTime tag names for atID (AlbumTitleID to ArtistID) and plID
+ (PlayListID to AlbumID) (github issue #216), and added cmID (ComposerID)
+ - Changed Apple:MediaGroupUUID tag name back to ContentIdentifier
+ - Patched the -d option to handle the %s format code internally when writing
+ (avoids problems due to inconsistent behaviour of this format code in the
+ strptime function on different systems)
+ - Patched patch of version 12.32 to restore ability to read from named pipes
+ - Fixed bug which could cause a hang when processing a corrupt BigTIFF image
+ - Fixed document number for auxiliary image metadata in HEIC files
+ - Fixed misspelt Apple tag name (thanks Neal Krawetz)
+ - API Changes:
+ - Added AvailableOptions method
+
June 28, 2023 - Version 12.64
- Added a new Sony LensType (thanks Jos Roost)
diff --git a/META.json b/META.json
index 6a148b24..eb136bbd 100644
--- a/META.json
+++ b/META.json
@@ -50,5 +50,5 @@
}
},
"release_status" : "stable",
- "version" : "12.64"
+ "version" : "12.65"
}
diff --git a/META.yml b/META.yml
index c4ebccc8..5b1f5668 100644
--- a/META.yml
+++ b/META.yml
@@ -31,4 +31,4 @@ recommends:
Time::HiRes: 0
requires:
perl: 5.004
-version: 12.64
+version: 12.65
diff --git a/README b/README
index d56ef3b4..a15c939b 100644
--- a/README
+++ b/README
@@ -108,8 +108,8 @@ your home directory, then you would type the following commands in a
terminal window to extract and run ExifTool:
cd ~/Desktop
- gzip -dc Image-ExifTool-12.64.tar.gz | tar -xf -
- cd Image-ExifTool-12.64
+ gzip -dc Image-ExifTool-12.65.tar.gz | tar -xf -
+ cd Image-ExifTool-12.65
./exiftool t/images/ExifTool.jpg
Note: These commands extract meta information from one of the test images.
diff --git a/exiftool b/exiftool
index 5d8be901..7b46f4ff 100755
--- a/exiftool
+++ b/exiftool
@@ -11,7 +11,7 @@ use strict;
use warnings;
require 5.004;
-my $version = '12.64';
+my $version = '12.65';
# add our 'lib' directory to the include list BEFORE 'use Image::ExifTool'
my $exePath;
@@ -814,11 +814,17 @@ for (;;) {
/^(-?)(a|duplicates)$/i and $mt->Options(Duplicates => ($1 ? 0 : 1)), next;
if ($a eq 'api') {
my $opt = shift;
- defined $opt or Error("Expected OPT[=VAL] argument for -api option\n"), $badCmd=1, next;
- my $val = ($opt =~ s/=(.*)//s) ? $1 : 1;
- # empty string means an undefined value unless ^= is used
- $val = undef unless $opt =~ s/\^$// or length $val;
- $mt->Options($opt => $val);
+ if (defined $opt and length $opt) {
+ my $val = ($opt =~ s/=(.*)//s) ? $1 : 1;
+ # empty string means an undefined value unless ^= is used
+ $val = undef unless $opt =~ s/\^$// or length $val;
+ $mt->Options($opt => $val);
+ } else {
+ print "Available API Options:\n";
+ my $availableOptions = Image::ExifTool::AvailableOptions();
+ printf(" %-17s - %s\n", $$_[0], $$_[2]) foreach @$availableOptions;
+ $helped = 1;
+ }
next;
}
/^arg(s|format)$/i and $argFormat = 1, next;
@@ -2874,7 +2880,7 @@ sub SetImageInfo($$$)
}
unless ($isStdout) {
$outfile = NextUnusedFilename($outfile);
- if ($et->Exists($outfile) and not $doSetFileName) {
+ if ($et->Exists($outfile, 1) and not $doSetFileName) {
Warn "Error: '${outfile}' already exists - $infile\n";
EFile($infile);
++$countBadWr;
@@ -3005,7 +3011,7 @@ sub SetImageInfo($$$)
$outfile = Image::ExifTool::GetNewFileName(defined $outfile ? $outfile : $file, $newDir);
}
$outfile = NextUnusedFilename($outfile, $infile);
- if ($et->Exists($outfile)) {
+ if ($et->Exists($outfile, 1)) {
if ($infile eq $outfile) {
undef $outfile; # not changing the file name after all
# (allow for case-insensitive filesystems)
@@ -4233,7 +4239,7 @@ sub NextUnusedFilename($;$)
}
$filename .= substr($fmt, $pos); # add rest of file name
# return now with filename unless file exists
- return $filename unless ($mt->Exists($filename) and not defined $usedFileName{$filename}) or $usedFileName{$filename};
+ return $filename unless ($mt->Exists($filename, 1) and not defined $usedFileName{$filename}) or $usedFileName{$filename};
if (defined $okfile) {
return $filename if $filename eq $okfile;
my ($fn, $ok) = (AbsPath($filename), AbsPath($okfile));
@@ -4313,7 +4319,7 @@ sub OpenOutputFile($;@)
$outfile .= $textOut;
}
my $mode = '>';
- if ($mt->Exists($outfile)) {
+ if ($mt->Exists($outfile, 1)) {
unless ($textOverwrite) {
Warn "Output file $outfile already exists for $file\n";
return ();
@@ -5576,7 +5582,7 @@ with this command:
produces output like this:
- -- Generated by ExifTool 12.64 --
+ -- Generated by ExifTool 12.65 --
File: a.jpg - 2003:10:31 15:44:19
(f/5.6, 1/60s, ISO 100)
File: b.jpg - 2006:05:23 11:57:38
@@ -6516,13 +6522,14 @@ load exiftool for each invocation.
=over 5
-=item B<-api> I<OPT[[^]=[VAL]]>
+=item B<-api> [I<OPT[[^]=[VAL]]>]
Set ExifTool API option. I<OPT> is an API option name. The option value is
set to 1 if I<=VAL> is omitted. If I<VAL> is omitted, the option value is
-set to undef if C<=> is used, or an empty string with C<^=>. See
-L<Image::ExifTool Options|Image::ExifTool/Options> for a list of available
-API options. This overrides API options set via the config file.
+set to undef if C<=> is used, or an empty string with C<^=>. If I<OPT> is
+not specified a list of available options is returned. See
+L<Image::ExifTool Options|Image::ExifTool/Options> for option details. This
+overrides API options set via the config file.
=item B<-common_args>
diff --git a/html/ExifTool.html b/html/ExifTool.html
index 32c0ecae..9432c7eb 100644
--- a/html/ExifTool.html
+++ b/html/ExifTool.html
@@ -72,6 +72,7 @@ retrieve any number of them.</p>
</td><td valign=top>
<ul>
<li><a href="#BuildCompositeTags">BuildCompositeTags</a></li>
+<li><a href="#AvailableOptions">AvailableOptions</a></li>
<li><a href="#GetTagName">GetTagName</a></li>
<li><a href="#GetShortcuts">GetShortcuts</a></li>
<li><a href="#GetAllTags">GetAllTags</a></li>
@@ -1331,7 +1332,9 @@ StrictDate and TimeZone.
<hr><h2><a name="SetNewValue">SetNewValue</a></h2>
<p>Set the new value for a tag. The routine may be called multiple times to set
the values of many tags before using <a href="#WriteInfo">WriteInfo</a> to write
-the new values to an image.</p>
+the new values to an image. These values remain queued for writing to subsequent
+files until <a href="#SetNewValue">SetNewValue</a> is called without arguments
+to reset the queued values.</p>
<p>For list-type tags (like <code>Keywords</code>), either call repeatedly with
the same tag name for each value, or call with a reference to the list of values.</p>
<blockquote><table class='norm'>
@@ -2094,6 +2097,25 @@ use Image::ExifTool ':Public';
$tagName = <a href="#GetTagName">GetTagName</a>($tag);
</pre></td></tr></table></blockquote>
+<hr><h2><a name="AvailableOptions">AvailableOptions</a></h2>
+<p>Get a list of available API options. (See <a href="#Options">Options method</a>
+for option details.)</p>
+<blockquote><table class='norm'>
+<tr><td><b>Prototype</b></td><td>AvailableOptions()</td></tr>
+<tr><td valign=top><b>Inputs</b></td><td>(none)</td></tr>
+<tr><td valign=top><b>Returns</b></td><td>Reference to list of available options.
+Each entry in the list is a list reference with 3 items: 0=Option name, 1=Default value,
+2=Description</td></tr>
+</table></blockquote>
+<p><b>Example:</b></p>
+<blockquote><table class='box'><tr><td><pre>
+my $opts = Image::ExifTool::<b>AvailableOptions</b>();
+foreach (@$opts) {
+ my ($optionName, $defaultValue, $description) = @$_;
+ ...
+}
+</pre></td></tr></table></blockquote>
+
<hr><h2><a name="GetTagName">GetTagName</a></h2>
<p>Get name of tag from tag identifier. This is a convenience function that
strips the embedded instance number, if it exists, from the tag key.</p>
diff --git a/html/ExifTool.pdf b/html/ExifTool.pdf
index 333d8d10..fce55792 100644
--- a/html/ExifTool.pdf
+++ b/html/ExifTool.pdf
@@ -12,7 +12,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- Image::ExifTool 12.64 -- 1)Tj
+( -- Image::ExifTool 12.65 -- 1)Tj
/TT4 1 Tf
0 -1.6333 TD
(EXIFTOOL\(1\) User Contributed Perl Documentation EXIFTOOL\(1\))Tj
@@ -189,7 +189,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- Image::ExifTool 12.64 -- 2)Tj
+( -- Image::ExifTool 12.65 -- 2)Tj
/TT4 1 Tf
0 -1.6333 TD
( ARQ r/w | EXV r/w/c | LRV r/w | PAGES r | SVG r)Tj
@@ -370,7 +370,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- Image::ExifTool 12.64 -- 3)Tj
+( -- Image::ExifTool 12.65 -- 3)Tj
/TT4 1 Tf
0 -1.6333 TD
(E)Tj
@@ -619,7 +619,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- Image::ExifTool 12.64 -- 4)Tj
+( -- Image::ExifTool 12.65 -- 4)Tj
/TT4 1 Tf
0 -1.6333 TD
( Below is an explanation of how the "ImageInfo" function arguments)Tj
@@ -770,7 +770,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- Image::ExifTool 12.64 -- 5)Tj
+( -- Image::ExifTool 12.65 -- 5)Tj
/TT4 1 Tf
0 -2.7333 TD
( There will be 1:1 correspondence between the requested tags and)Tj
@@ -933,7 +933,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- Image::ExifTool 12.64 -- 6)Tj
+( -- Image::ExifTool 12.65 -- 6)Tj
/TT4 1 Tf
0 -1.6333 TD
( })Tj
@@ -1124,7 +1124,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- Image::ExifTool 12.64 -- 7)Tj
+( -- Image::ExifTool 12.65 -- 7)Tj
/TT4 1 Tf
0 -1.6333 TD
( not necessarily extracted unless this option is set or the tag)Tj
@@ -1277,7 +1277,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- Image::ExifTool 12.64 -- 8)Tj
+( -- Image::ExifTool 12.65 -- 8)Tj
/TT4 1 Tf
0 -1.6333 TD
( specification ID3v1 strings should be encoded in ISO 8859-1)Tj
@@ -1424,7 +1424,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- Image::ExifTool 12.64 -- 9)Tj
+( -- Image::ExifTool 12.65 -- 9)Tj
/TT4 1 Tf
0 -1.6333 TD
( ------------------- ------------------)Tj
@@ -1575,7 +1575,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- Image::ExifTool 12.64 -- 10)Tj
+( -- Image::ExifTool 12.65 -- 10)Tj
/TT4 1 Tf
0 -1.6333 TD
( extraction of some types of metadata. With this option set to)Tj
@@ -1732,7 +1732,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- Image::ExifTool 12.64 -- 11)Tj
+( -- Image::ExifTool 12.65 -- 11)Tj
/TT4 1 Tf
0 -1.6333 TD
( GeoMaxHDOP)Tj
@@ -1923,7 +1923,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- Image::ExifTool 12.64 -- 12)Tj
+( -- Image::ExifTool 12.65 -- 12)Tj
/TT4 1 Tf
0 -1.6333 TD
( those specified by the "RequestTags" option. Set to undef to)Tj
@@ -2068,7 +2068,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- Image::ExifTool 12.64 -- 13)Tj
+( -- Image::ExifTool 12.65 -- 13)Tj
/TT4 1 Tf
0 -1.6333 TD
( JPEG image. Default is undef.)Tj
@@ -2219,7 +2219,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- Image::ExifTool 12.64 -- 14)Tj
+( -- Image::ExifTool 12.65 -- 14)Tj
/TT4 1 Tf
0 -1.6333 TD
( lower case as they are added to the list. Default is undef.)Tj
@@ -2362,7 +2362,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- Image::ExifTool 12.64 -- 15)Tj
+( -- Image::ExifTool 12.65 -- 15)Tj
/TT4 1 Tf
0 -1.6333 TD
( 2 - Read/copy both flattened and structured tags, but flag)Tj
@@ -2517,7 +2517,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- Image::ExifTool 12.64 -- 16)Tj
+( -- Image::ExifTool 12.65 -- 16)Tj
/TT4 1 Tf
0 -1.6333 TD
( limits on the number of bytes dumped. Levels 4 and 5 remove)Tj
@@ -2714,7 +2714,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- Image::ExifTool 12.64 -- 17)Tj
+( -- Image::ExifTool 12.65 -- 17)Tj
/TT4 1 Tf
0 -1.6333 TD
( extracted from the image by a previous call to "ExtractInfo" or)Tj
@@ -2867,7 +2867,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- Image::ExifTool 12.64 -- 18)Tj
+( -- Image::ExifTool 12.65 -- 18)Tj
/TT4 1 Tf
0 -2.7333 TD
( 2\) [optional] Destination file name, file reference, scalar)Tj
@@ -3020,7 +3020,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- Image::ExifTool 12.64 -- 19)Tj
+( -- Image::ExifTool 12.65 -- 19)Tj
/TT4 1 Tf
0 -1.6333 TD
( specified, the sort order is taken from the current options)Tj
@@ -3219,7 +3219,7 @@ endobj
endobj
65 0 obj
<<
-/Length 4060
+/Length 4088
>>
stream
BT
@@ -3229,7 +3229,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- Image::ExifTool 12.64 -- 20)Tj
+( -- Image::ExifTool 12.65 -- 20)Tj
/TT4 1 Tf
0 -1.6333 TD
( })Tj
@@ -3342,7 +3342,11 @@ T*
T*
( to set the values of many tags before using "WriteInfo" to write the)Tj
T*
-( new values to an image.)Tj
+( new values to an image. These values remain queued for writing to)Tj
+T*
+( subsequent files until "SetNewValue" is called without arguments to)Tj
+T*
+( reset the queued values.)Tj
0 -2.2 TD
( For list-type tags \(like Keywords\), either call repeatedly with the)Tj
0 -1.1 TD
@@ -3359,10 +3363,6 @@ T*
( \($success, $errStr\) = $exifTool->SetNewValue\($tag, $value\);)Tj
0 -2.2 TD
( # delete information for specified tag if it exists in image)Tj
-0 -1.1 TD
-( # \(also resets AddValue and DelValue options for this tag\))Tj
-T*
-( $exifTool->SetNewValue\($tag\);)Tj
ET
endstream
endobj
@@ -3380,7 +3380,7 @@ endobj
endobj
68 0 obj
<<
-/Length 4231
+/Length 4220
>>
stream
BT
@@ -3390,9 +3390,13 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- Image::ExifTool 12.64 -- 21)Tj
+( -- Image::ExifTool 12.65 -- 21)Tj
/TT4 1 Tf
-0 -2.7333 TD
+0 -1.6333 TD
+( # \(also resets AddValue and DelValue options for this tag\))Tj
+0 -1.1 TD
+( $exifTool->SetNewValue\($tag\);)Tj
+0 -2.2 TD
( # reset all values from previous calls to SetNewValue\(\))Tj
0 -1.1 TD
( $exifTool->SetNewValue\(\);)Tj
@@ -3498,10 +3502,6 @@ T*
( name of '*' is special when deleting information, and will delete)Tj
T*
( an entire group even if some individual tags in the group are not)Tj
-T*
-( writable, but only if a single family 0 or 1 group is specified)Tj
-T*
-( \(otherwise the tags are deleted individually\). Use)Tj
ET
endstream
endobj
@@ -3519,7 +3519,7 @@ endobj
endobj
72 0 obj
<<
-/Length 4401
+/Length 4522
>>
stream
BT
@@ -3529,11 +3529,15 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- Image::ExifTool 12.64 -- 22)Tj
+( -- Image::ExifTool 12.65 -- 22)Tj
/TT4 1 Tf
0 -1.6333 TD
-( "GetDeleteGroups" to get a list of deletable group names, and see)Tj
+( writable, but only if a single family 0 or 1 group is specified)Tj
0 -1.1 TD
+( \(otherwise the tags are deleted individually\). Use)Tj
+T*
+( "GetDeleteGroups" to get a list of deletable group names, and see)Tj
+T*
( Image::ExifTool::TagNames for a complete list of tag names.)Tj
0 -2.2 TD
( 2\) [optional] New value for tag. Undefined to delete tag from)Tj
@@ -3645,8 +3649,6 @@ T*
( "SaveNewValues". Has no effect on unsaved values, or values)Tj
T*
( saved before Nth call. Option value is N. Default is undef.)Tj
-0 -2.2 TD
-( Replace)Tj
ET
endstream
endobj
@@ -3664,7 +3666,7 @@ endobj
endobj
75 0 obj
<<
-/Length 4564
+/Length 4554
>>
stream
BT
@@ -3674,11 +3676,13 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- Image::ExifTool 12.64 -- 23)Tj
+( -- Image::ExifTool 12.65 -- 23)Tj
/TT4 1 Tf
-0 -1.6333 TD
-( Flag to replace the previous new values for this tag \(ie.)Tj
+0 -2.7333 TD
+( Replace)Tj
0 -1.1 TD
+( Flag to replace the previous new values for this tag \(ie.)Tj
+T*
( replace the values set in previous calls to "SetNewValue"\).)Tj
T*
( This option is most commonly used to replace previously-set new)Tj
@@ -3852,8 +3856,6 @@ T*
( 1\) Tag name \(case sensitive, may be prefixed by family 0, 1 or 7)Tj
0 -1.1 TD
( group names, separated by colons\))Tj
-0 -2.2 TD
-( Return Values:)Tj
ET
endstream
endobj
@@ -3871,7 +3873,7 @@ endobj
endobj
78 0 obj
<<
-/Length 4835
+/Length 4692
>>
stream
BT
@@ -3881,11 +3883,13 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- Image::ExifTool 12.64 -- 24)Tj
+( -- Image::ExifTool 12.65 -- 24)Tj
/TT4 1 Tf
-0 -1.6333 TD
-( List of new Raw tag values, or first value in list when called in)Tj
+0 -2.7333 TD
+( Return Values:)Tj
0 -1.1 TD
+( List of new Raw tag values, or first value in list when called in)Tj
+T*
( scalar context. The list may be empty either if the tag isn't)Tj
T*
( being written, or if it is being deleted \(ie. if "SetNewValue" was)Tj
@@ -4031,10 +4035,6 @@ T*
( by a group name \(eg. 'fileModifyDate<modifyDate' or 'xmp:*<*'\),)Tj
T*
( and/or suffixed by a '#' to disable print conversion. Copied tags)Tj
-T*
-( may also be added or deleted from a list with arguments of the form)Tj
-T*
-( 'DSTTAG+<SRCTAG' or 'DSTTAG-<SRCTAG'. Tags are evaluated in order,)Tj
ET
endstream
endobj
@@ -4052,7 +4052,7 @@ endobj
endobj
81 0 obj
<<
-/Length 4531
+/Length 4523
>>
stream
BT
@@ -4062,11 +4062,15 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- Image::ExifTool 12.64 -- 25)Tj
+( -- Image::ExifTool 12.65 -- 25)Tj
/TT4 1 Tf
0 -1.6333 TD
-( so exclusions apply only to tags included earlier in the list. An)Tj
+( may also be added or deleted from a list with arguments of the form)Tj
0 -1.1 TD
+( 'DSTTAG+<SRCTAG' or 'DSTTAG-<SRCTAG'. Tags are evaluated in order,)Tj
+T*
+( so exclusions apply only to tags included earlier in the list. An)Tj
+T*
( extension of this feature allows the tag value to be set from a)Tj
T*
( string containing tag names with leading '$' symbols \(eg.)Tj
@@ -4174,10 +4178,6 @@ T*
( The "Duplicates" option is always in effect for tags extracted from)Tj
0 -1.1 TD
( the source file using this routine.)Tj
-0 -2.2 TD
-( The "Struct" option is enabled by default for tags extracted by)Tj
-0 -1.1 TD
-( this routine. This allows the hierarchy of complex structures to)Tj
ET
endstream
endobj
@@ -4195,7 +4195,7 @@ endobj
endobj
84 0 obj
<<
-/Length 4647
+/Length 4651
>>
stream
BT
@@ -4205,11 +4205,15 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- Image::ExifTool 12.64 -- 26)Tj
+( -- Image::ExifTool 12.65 -- 26)Tj
/TT4 1 Tf
0 -1.6333 TD
-( be preserved when copying, but the Struct option may be set to 0 to)Tj
+( The "Struct" option is enabled by default for tags extracted by)Tj
0 -1.1 TD
+( this routine. This allows the hierarchy of complex structures to)Tj
+T*
+( be preserved when copying, but the Struct option may be set to 0 to)Tj
+T*
( override this behaviour and copy as flattened tags instead.)Tj
0 -2.2 TD
( C)Tj
@@ -4457,10 +4461,6 @@ T*
( Write the filesystem modification or creation time from the new value)Tj
T*
( of the FileModifyDate or FileCreateDate tag.)Tj
-0 -2.2 TD
-( $exifTool->SetNewValue\(FileModifyDate => '2000:01:02 03:04:05-05:00',)Tj
-0 -1.1 TD
-( Protected => 1\);)Tj
ET
endstream
endobj
@@ -4478,7 +4478,7 @@ endobj
endobj
87 0 obj
<<
-/Length 4026
+/Length 4108
>>
stream
BT
@@ -4488,9 +4488,13 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- Image::ExifTool 12.64 -- 27)Tj
+( -- Image::ExifTool 12.65 -- 27)Tj
/TT4 1 Tf
0 -1.6333 TD
+( $exifTool->SetNewValue\(FileModifyDate => '2000:01:02 03:04:05-05:00',)Tj
+0 -1.1 TD
+( Protected => 1\);)Tj
+T*
( $result = $exifTool->SetFileModifyDate\($file\);)Tj
0 -2.2 TD
( Inputs:)Tj
@@ -4640,8 +4644,6 @@ T*
( MakerNotes, QuickTime, Photoshop, ICC_Profile, CanonVRD, Adobe. Any)Tj
T*
( family 0 group name may be used. Case is not significant.)Tj
-0 -2.2 TD
-( $exifTool->SetNewGroups\('XMP','EXIF','IPTC'\);)Tj
ET
endstream
endobj
@@ -4659,7 +4661,7 @@ endobj
endobj
90 0 obj
<<
-/Length 3632
+/Length 3619
>>
stream
BT
@@ -4669,9 +4671,11 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- Image::ExifTool 12.64 -- 28)Tj
+( -- Image::ExifTool 12.65 -- 28)Tj
/TT4 1 Tf
0 -2.7333 TD
+( $exifTool->SetNewGroups\('XMP','EXIF','IPTC'\);)Tj
+0 -2.2 TD
( Inputs:)Tj
0 -1.1 TD
( 0\) ExifTool object reference)Tj
@@ -4851,8 +4855,6 @@ T*
( # return groups as a string \(eg. 'Main:IFD0:Author'\))Tj
0 -1.1 TD
( $group = $exifTool->GetGroup\($tag, ':3:1:2'\);)Tj
-0 -2.2 TD
-( # return groups as a simplified string \(eg. 'IFD0:Author'\))Tj
ET
endstream
endobj
@@ -4870,7 +4872,7 @@ endobj
endobj
93 0 obj
<<
-/Length 4713
+/Length 4712
>>
stream
BT
@@ -4880,9 +4882,11 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- Image::ExifTool 12.64 -- 29)Tj
+( -- Image::ExifTool 12.65 -- 29)Tj
/TT4 1 Tf
-0 -1.6333 TD
+0 -2.7333 TD
+( # return groups as a simplified string \(eg. 'IFD0:Author'\))Tj
+0 -1.1 TD
( $group = $exifTool->GetGroup\($tag, '3:1:2'\);)Tj
0 -2.2 TD
( Inputs:)Tj
@@ -4998,8 +5002,6 @@ T*
( 'Copy3', etc. For convenience, the primary tag may also be)Tj
T*
( accessed using a group name of 'Copy0'.)Tj
-0 -2.2 TD
-( Family 5 is experimental, and gives the complete path for the)Tj
ET
endstream
endobj
@@ -5017,7 +5019,7 @@ endobj
endobj
96 0 obj
<<
-/Length 4659
+/Length 4660
>>
stream
BT
@@ -5027,11 +5029,13 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- Image::ExifTool 12.64 -- 30)Tj
+( -- Image::ExifTool 12.65 -- 30)Tj
/TT4 1 Tf
-0 -1.6333 TD
-( metadata in the file. Generated only if the "SavePath" option is)Tj
+0 -2.7333 TD
+( Family 5 is experimental, and gives the complete path for the)Tj
0 -1.1 TD
+( metadata in the file. Generated only if the "SavePath" option is)Tj
+T*
( used when extracting.)Tj
0 -2.2 TD
( Family 6 is currently used only for EXIF/TIFF metadata, and gives)Tj
@@ -5186,27 +5190,39 @@ T*
T*
( "ImageInfo", before the file is closed.)Tj
0 -2.2 TD
-( G)Tj
+( A)Tj
1.8 0 TD
-(Ge)Tj
+(Av)Tj
0.6 0 TD
-(et)Tj
+(va)Tj
0.6 0 TD
-(tT)Tj
+(ai)Tj
0.6 0 TD
-(Ta)Tj
+(il)Tj
0.6 0 TD
-(ag)Tj
+(la)Tj
0.6 0 TD
-(gN)Tj
+(ab)Tj
0.6 0 TD
-(Na)Tj
+(bl)Tj
0.6 0 TD
-(am)Tj
+(le)Tj
0.6 0 TD
-(me)Tj
+(eO)Tj
0.6 0 TD
-(e [)Tj
+(Op)Tj
+0.6 0 TD
+(pt)Tj
+0.6 0 TD
+(ti)Tj
+0.6 0 TD
+(io)Tj
+0.6 0 TD
+(on)Tj
+0.6 0 TD
+(ns)Tj
+0.6 0 TD
+(s [)Tj
1.2 0 TD
([s)Tj
0.6 0 TD
@@ -5223,10 +5239,6 @@ T*
(c])Tj
0.6 0 TD
(])Tj
--12.6 -1.1 TD
-( Get name of tag from tag key. This is a convenience function that)Tj
-T*
-( strips the embedded instance number, if it exists, from the tag key.)Tj
ET
endstream
endobj
@@ -5244,7 +5256,7 @@ endobj
endobj
99 0 obj
<<
-/Length 4362
+/Length 4284
>>
stream
BT
@@ -5254,9 +5266,77 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- Image::ExifTool 12.64 -- 31)Tj
+( -- Image::ExifTool 12.65 -- 31)Tj
/TT4 1 Tf
-0 -2.7333 TD
+0 -1.6333 TD
+( Get a list of available API options. \(See "Options" for option)Tj
+0 -1.1 TD
+( details.\))Tj
+0 -2.2 TD
+( Inputs:)Tj
+0 -1.1 TD
+( \(none\))Tj
+0 -2.2 TD
+( Return Values:)Tj
+0 -1.1 TD
+( Reference to list of available options. Each entry in the list is)Tj
+T*
+( a list reference with 3 items: 0=Option name, 1=Default value,)Tj
+T*
+( 2=Description.)Tj
+0 -2.2 TD
+( my $opts = Image::ExifTool::<b>AvailableOptions</b>\(\);)Tj
+0 -1.1 TD
+( foreach \(@$opts\) {)Tj
+T*
+( my \($optionName, $defaultValue, $description\) = @$_;)Tj
+T*
+( ...)Tj
+T*
+( })Tj
+0 -2.2 TD
+( G)Tj
+1.8 0 TD
+(Ge)Tj
+0.6 0 TD
+(et)Tj
+0.6 0 TD
+(tT)Tj
+0.6 0 TD
+(Ta)Tj
+0.6 0 TD
+(ag)Tj
+0.6 0 TD
+(gN)Tj
+0.6 0 TD
+(Na)Tj
+0.6 0 TD
+(am)Tj
+0.6 0 TD
+(me)Tj
+0.6 0 TD
+(e [)Tj
+1.2 0 TD
+([s)Tj
+0.6 0 TD
+(st)Tj
+0.6 0 TD
+(ta)Tj
+0.6 0 TD
+(at)Tj
+0.6 0 TD
+(ti)Tj
+0.6 0 TD
+(ic)Tj
+0.6 0 TD
+(c])Tj
+0.6 0 TD
+(])Tj
+-12.6 -1.1 TD
+( Get name of tag from tag key. This is a convenience function that)Tj
+T*
+( strips the embedded instance number, if it exists, from the tag key.)Tj
+0 -2.2 TD
( Note: "static" in the heading above indicates that the function does)Tj
0 -1.1 TD
( not require an ExifTool object reference as the first argument. All)Tj
@@ -5448,9 +5528,38 @@ T*
( A list of all writable tags in alphabetical order. These are the)Tj
T*
( tags for which values may be set through "SetNewValue". If a group)Tj
-T*
+ET
+endstream
+endobj
+100 0 obj
+<<
+/ProcSet [/PDF /Text ]
+/Font <<
+/TT2 4 0 R
+/TT4 5 0 R
+>>
+/ExtGState <<
+/GS1 6 0 R
+>>
+>>
+endobj
+103 0 obj
+<<
+/Length 5431
+>>
+stream
+BT
+/TT2 1 Tf
+10 0 0 10 29 806.3333 Tm
+0 g
+/GS1 gs
+0 Tc
+0 Tw
+( -- Image::ExifTool 12.65 -- 32)Tj
+/TT4 1 Tf
+0 -1.6333 TD
( name is given, returns only writable tags in specified group\(s\).)Tj
-T*
+0 -1.1 TD
( The group name is case insensitive, and any group in families 0-2)Tj
T*
( may be used except for EXIF family 1 groups \(ie. the specific IFD\).)Tj
@@ -5516,38 +5625,9 @@ T*
( AFCP, AIFF, APE, APP0, APP1, APP11, APP12, APP13, APP14, APP15,)Tj
T*
( APP2, APP3, APP4, APP5, APP6, APP8, ASF, Audible, CanonVRD,)Tj
-ET
-endstream
-endobj
-100 0 obj
-<<
-/ProcSet [/PDF /Text ]
-/Font <<
-/TT2 4 0 R
-/TT4 5 0 R
->>
-/ExtGState <<
-/GS1 6 0 R
->>
->>
-endobj
-103 0 obj
-<<
-/Length 5190
->>
-stream
-BT
-/TT2 1 Tf
-10 0 0 10 29 806.3333 Tm
-0 g
-/GS1 gs
-0 Tc
-0 Tw
-( -- Image::ExifTool 12.64 -- 32)Tj
-/TT4 1 Tf
-0 -1.6333 TD
+T*
( Composite, DICOM, DNG, DV, DjVu, Ducky, EXE, EXIF, ExifTool, FITS,)Tj
-0 -1.1 TD
+T*
( FLAC, FLIR, File, Flash, FlashPix, Font, FotoStation, GIF, GIMP,)Tj
T*
( GeoTiff, GoPro, H264, HTML, ICC_Profile, ID3, IPTC, ISO, ITC, JFIF,)Tj
@@ -5643,9 +5723,38 @@ T*
( dc, XMP-dex, XMP-digiKam, XMP-drone-dji, XMP-dwc, XMP-et, XMP-exif,)Tj
T*
( XMP-exifEX, XMP-expressionmedia, XMP-extensis, XMP-fpv, XMP-getty,)Tj
-T*
+ET
+endstream
+endobj
+104 0 obj
+<<
+/ProcSet [/PDF /Text ]
+/Font <<
+/TT2 4 0 R
+/TT4 5 0 R
+>>
+/ExtGState <<
+/GS1 6 0 R
+>>
+>>
+endobj
+106 0 obj
+<<
+/Length 4183
+>>
+stream
+BT
+/TT2 1 Tf
+10 0 0 10 29 806.3333 Tm
+0 g
+/GS1 gs
+0 Tc
+0 Tw
+( -- Image::ExifTool 12.65 -- 33)Tj
+/TT4 1 Tf
+0 -1.6333 TD
( XMP-hdr, XMP-hdrgm, XMP-ics, XMP-iptcCore, XMP-iptcExt, XMP-lr,)Tj
-T*
+0 -1.1 TD
( XMP-mediapro, XMP-microsoft, XMP-mwg-coll, XMP-mwg-kw, XMP-mwg-rs,)Tj
T*
( XMP-nine, XMP-panorama, XMP-pdf, XMP-pdfx, XMP-photomech, XMP-)Tj
@@ -5675,36 +5784,7 @@ T*
( Family 5 \(Metadata Path\):)Tj
0 -1.1 TD
( eg. JPEG-APP1-IFD0-ExifIFD)Tj
-ET
-endstream
-endobj
-104 0 obj
-<<
-/ProcSet [/PDF /Text ]
-/Font <<
-/TT2 4 0 R
-/TT4 5 0 R
->>
-/ExtGState <<
-/GS1 6 0 R
->>
->>
-endobj
-106 0 obj
-<<
-/Length 4536
->>
-stream
-BT
-/TT2 1 Tf
-10 0 0 10 29 806.3333 Tm
-0 g
-/GS1 gs
-0 Tc
-0 Tw
-( -- Image::ExifTool 12.64 -- 33)Tj
-/TT4 1 Tf
-0 -2.7333 TD
+0 -2.2 TD
( Family 6 \(EXIF/TIFF Format\):)Tj
0 -1.1 TD
( int8u, string, int16u, int32u, rational64u, int8s, undef, int16s,)Tj
@@ -5826,9 +5906,38 @@ T*
( that category.)Tj
0 -2.2 TD
( The 'Trailer' group allows all trailers in JPEG and TIFF-format)Tj
-0 -1.1 TD
+ET
+endstream
+endobj
+107 0 obj
+<<
+/ProcSet [/PDF /Text ]
+/Font <<
+/TT2 4 0 R
+/TT4 5 0 R
+>>
+/ExtGState <<
+/GS1 6 0 R
+>>
+>>
+endobj
+109 0 obj
+<<
+/Length 4979
+>>
+stream
+BT
+/TT2 1 Tf
+10 0 0 10 29 806.3333 Tm
+0 g
+/GS1 gs
+0 Tc
+0 Tw
+( -- Image::ExifTool 12.65 -- 34)Tj
+/TT4 1 Tf
+0 -1.6333 TD
( images to be deleted at once, including unknown trailers. Note)Tj
-T*
+0 -1.1 TD
( that the JPEG "APP" groups are special, and are used only to delete)Tj
T*
( application segments which are not associated with another)Tj
@@ -5894,36 +6003,7 @@ T*
( unsupported files \(otherwise the return value for unsupported files)Tj
T*
( is undef\), or 1 to return descriptions.)Tj
-ET
-endstream
-endobj
-107 0 obj
-<<
-/ProcSet [/PDF /Text ]
-/Font <<
-/TT2 4 0 R
-/TT4 5 0 R
->>
-/ExtGState <<
-/GS1 6 0 R
->>
->>
-endobj
-109 0 obj
-<<
-/Length 4754
->>
-stream
-BT
-/TT2 1 Tf
-10 0 0 10 29 806.3333 Tm
-0 g
-/GS1 gs
-0 Tc
-0 Tw
-( -- Image::ExifTool 12.64 -- 34)Tj
-/TT4 1 Tf
-0 -1.6333 TD
+0 -2.2 TD
( Return Value:)Tj
0 -1.1 TD
( A string, based on the file extension, which indicates the basic)Tj
@@ -6121,7 +6201,36 @@ T*
( \);)Tj
T*
( my $num = AddUserDefinedTags\('Image::ExifTool::PDF::Info', %tags\);)Tj
-0 -2.2 TD
+ET
+endstream
+endobj
+110 0 obj
+<<
+/ProcSet [/PDF /Text ]
+/Font <<
+/TT2 4 0 R
+/TT4 5 0 R
+>>
+/ExtGState <<
+/GS1 6 0 R
+>>
+>>
+endobj
+112 0 obj
+<<
+/Length 5061
+>>
+stream
+BT
+/TT2 1 Tf
+10 0 0 10 29 806.3333 Tm
+0 g
+/GS1 gs
+0 Tc
+0 Tw
+( -- Image::ExifTool 12.65 -- 35)Tj
+/TT4 1 Tf
+0 -2.7333 TD
( Inputs:)Tj
0 -1.1 TD
( 0\) Destination tag table name)Tj
@@ -6187,38 +6296,9 @@ T*
( plain ASCII. When reading, most known encodings are converted to the)Tj
T*
( external character set according to the "Charset" option, or to UTF-8)Tj
-ET
-endstream
-endobj
-110 0 obj
-<<
-/ProcSet [/PDF /Text ]
-/Font <<
-/TT2 4 0 R
-/TT4 5 0 R
->>
-/ExtGState <<
-/GS1 6 0 R
->>
->>
-endobj
-112 0 obj
-<<
-/Length 5376
->>
-stream
-BT
-/TT2 1 Tf
-10 0 0 10 29 806.3333 Tm
-0 g
-/GS1 gs
-0 Tc
-0 Tw
-( -- Image::ExifTool 12.64 -- 35)Tj
-/TT4 1 Tf
-0 -1.6333 TD
+T*
( by default. When writing, the inverse conversions are performed.)Tj
-0 -1.1 TD
+T*
( Alternatively, special characters may be converted to/from HTML)Tj
T*
( character entities with the "Escape" HTML option.)Tj
@@ -6352,9 +6432,38 @@ T*
( To deal with these, ExifTool allows the internal EXIF string encoding)Tj
T*
( to be specified with "CharsetEXIF", which causes EXIF string values to)Tj
-T*
+ET
+endstream
+endobj
+113 0 obj
+<<
+/ProcSet [/PDF /Text ]
+/Font <<
+/TT2 4 0 R
+/TT4 5 0 R
+>>
+/ExtGState <<
+/GS1 6 0 R
+>>
+>>
+endobj
+115 0 obj
+<<
+/Length 4467
+>>
+stream
+BT
+/TT2 1 Tf
+10 0 0 10 29 806.3333 Tm
+0 g
+/GS1 gs
+0 Tc
+0 Tw
+( -- Image::ExifTool 12.65 -- 36)Tj
+/TT4 1 Tf
+0 -1.6333 TD
( be converted from the specified character set when reading, and stored)Tj
-T*
+0 -1.1 TD
( with this character set when writing. \(The MWG recommends using UTF-8)Tj
T*
( encoding for EXIF strings, and in keeping with this the MWG module sets)Tj
@@ -6388,38 +6497,9 @@ T*
( \(see the Extra Tags documentation\).)Tj
0 -2.2 TD
( The EXIF "XP" tags \(XPTitle, XPComment, etc\) are always stored as)Tj
-ET
-endstream
-endobj
-113 0 obj
-<<
-/ProcSet [/PDF /Text ]
-/Font <<
-/TT2 4 0 R
-/TT4 5 0 R
->>
-/ExtGState <<
-/GS1 6 0 R
->>
->>
-endobj
-115 0 obj
-<<
-/Length 4542
->>
-stream
-BT
-/TT2 1 Tf
-10 0 0 10 29 806.3333 Tm
-0 g
-/GS1 gs
-0 Tc
-0 Tw
-( -- Image::ExifTool 12.64 -- 36)Tj
-/TT4 1 Tf
-0 -1.6333 TD
-( little-endian Unicode \(UCS-2\), and are read and written using the)Tj
0 -1.1 TD
+( little-endian Unicode \(UCS-2\), and are read and written using the)Tj
+T*
( specified character set.)Tj
0 -2.2 TD
( I)Tj
@@ -6507,9 +6587,38 @@ T*
(MP)Tj
0.6 0 TD
(P)Tj
--3 -1.1 TD
+ET
+endstream
+endobj
+116 0 obj
+<<
+/ProcSet [/PDF /Text ]
+/Font <<
+/TT2 4 0 R
+/TT4 5 0 R
+>>
+/ExtGState <<
+/GS1 6 0 R
+>>
+>>
+endobj
+118 0 obj
+<<
+/Length 5196
+>>
+stream
+BT
+/TT2 1 Tf
+10 0 0 10 29 806.3333 Tm
+0 g
+/GS1 gs
+0 Tc
+0 Tw
+( -- Image::ExifTool 12.65 -- 37)Tj
+/TT4 1 Tf
+0 -1.6333 TD
( ExifTool reads XMP encoded as UTF-8, UTF-16 or UTF-32, and converts)Tj
-T*
+0 -1.1 TD
( them all to UTF-8 internally. Also, all XML character entity)Tj
T*
( references and numeric character references are converted. When)Tj
@@ -6571,38 +6680,9 @@ T*
(nt)Tj
0.6 0 TD
(t)Tj
-ET
-endstream
-endobj
-116 0 obj
-<<
-/ProcSet [/PDF /Text ]
-/Font <<
-/TT2 4 0 R
-/TT4 5 0 R
->>
-/ExtGState <<
-/GS1 6 0 R
->>
->>
-endobj
-118 0 obj
-<<
-/Length 5057
->>
-stream
-BT
-/TT2 1 Tf
-10 0 0 10 29 806.3333 Tm
-0 g
-/GS1 gs
-0 Tc
-0 Tw
-( -- Image::ExifTool 12.64 -- 37)Tj
-/TT4 1 Tf
-0 -1.6333 TD
+-8.4 -1.1 TD
( The encoding for the JPEG Comment \(COM segment\) is not specified, so)Tj
-0 -1.1 TD
+T*
( ExifTool reads/writes this text without conversion.)Tj
0 -2.2 TD
( I)Tj
@@ -6756,9 +6836,38 @@ T*
( 8859-1 strings are never converted. When writing, input strings are)Tj
T*
( converted from the specified character set to UTF-8. The resulting)Tj
-T*
+ET
+endstream
+endobj
+119 0 obj
+<<
+/ProcSet [/PDF /Text ]
+/Font <<
+/TT2 4 0 R
+/TT4 5 0 R
+>>
+/ExtGState <<
+/GS1 6 0 R
+>>
+>>
+endobj
+121 0 obj
+<<
+/Length 3750
+>>
+stream
+BT
+/TT2 1 Tf
+10 0 0 10 29 806.3333 Tm
+0 g
+/GS1 gs
+0 Tc
+0 Tw
+( -- Image::ExifTool 12.65 -- 38)Tj
+/TT4 1 Tf
+0 -1.6333 TD
( strings are stored as UTF-8 if they contain multi-byte UTF-8 character)Tj
-T*
+0 -1.1 TD
( sequences, otherwise they are stored as ISO 8859-1.)Tj
0 -2.2 TD
( V)Tj
@@ -6842,36 +6951,7 @@ T*
( in html/index.html of the Image::ExifTool distribution package for a)Tj
T*
( list of people who have contributed to this project.)Tj
-ET
-endstream
-endobj
-119 0 obj
-<<
-/ProcSet [/PDF /Text ]
-/Font <<
-/TT2 4 0 R
-/TT4 5 0 R
->>
-/ExtGState <<
-/GS1 6 0 R
->>
->>
-endobj
-121 0 obj
-<<
-/Length 2329
->>
-stream
-BT
-/TT2 1 Tf
-10 0 0 10 29 806.3333 Tm
-0 g
-/GS1 gs
-0 Tc
-0 Tw
-( -- Image::ExifTool 12.64 -- 38)Tj
-/TT4 1 Tf
-0 -1.6333 TD
+0 -2.2 TD
(S)Tj
0 0 TD
(SE)Tj
@@ -7120,7 +7200,7 @@ BT
0.6 0 TD
(G\(3pm\))Tj
-27 -4.4 TD
-(perl v5.18.4 2023-06-28 EXIFTOOL\(1\))Tj
+(perl v5.18.4 2023-08-10 EXIFTOOL\(1\))Tj
ET
endstream
endobj
@@ -7572,8 +7652,8 @@ endobj
endobj
127 0 obj
<<
-/CreationDate (D:20230628113852-04'00')
-/ModDate (D:20230628113852-04'00')
+/CreationDate (D:20230810125957-04'00')
+/ModDate (D:20230810125957-04'00')
/Producer (Apple pstopdf)
>>
endobj
@@ -7587,141 +7667,141 @@ endobj
xref
0 129
0000000000 65535 f
-0000177406 00000 n
+0000178661 00000 n
0000000016 00000 n
0000004115 00000 n
-0000176407 00000 n
-0000176808 00000 n
-0000175872 00000 n
-0000180684 00000 n
-0000177486 00000 n
+0000177662 00000 n
+0000178063 00000 n
+0000177127 00000 n
+0000181939 00000 n
+0000178741 00000 n
0000004221 00000 n
0000009503 00000 n
-0000177567 00000 n
+0000178822 00000 n
0000009610 00000 n
0000014450 00000 n
-0000177650 00000 n
+0000178905 00000 n
0000014557 00000 n
0000019382 00000 n
-0000177733 00000 n
+0000178988 00000 n
0000019489 00000 n
0000024092 00000 n
-0000177816 00000 n
+0000179071 00000 n
0000024199 00000 n
0000028394 00000 n
-0000177899 00000 n
+0000179154 00000 n
0000028501 00000 n
0000033286 00000 n
-0000177982 00000 n
+0000179237 00000 n
0000033393 00000 n
0000037974 00000 n
-0000178065 00000 n
+0000179320 00000 n
0000038081 00000 n
0000042822 00000 n
-0000178148 00000 n
+0000179403 00000 n
0000042929 00000 n
0000048097 00000 n
-0000178231 00000 n
+0000179486 00000 n
0000048204 00000 n
0000052862 00000 n
-0000181226 00000 n
-0000180819 00000 n
-0000178315 00000 n
+0000182481 00000 n
+0000182074 00000 n
+0000179570 00000 n
0000052969 00000 n
0000057324 00000 n
-0000178399 00000 n
+0000179654 00000 n
0000057431 00000 n
0000062088 00000 n
-0000178483 00000 n
+0000179738 00000 n
0000062195 00000 n
0000066537 00000 n
-0000178567 00000 n
+0000179822 00000 n
0000066644 00000 n
0000070948 00000 n
-0000178651 00000 n
+0000179906 00000 n
0000071055 00000 n
0000075222 00000 n
-0000178735 00000 n
+0000179990 00000 n
0000075329 00000 n
0000079541 00000 n
-0000178819 00000 n
+0000180074 00000 n
0000079648 00000 n
0000083835 00000 n
-0000178903 00000 n
+0000180158 00000 n
0000083942 00000 n
0000088265 00000 n
-0000178987 00000 n
+0000180242 00000 n
0000088372 00000 n
-0000092485 00000 n
-0000179071 00000 n
-0000092592 00000 n
-0000096876 00000 n
-0000180957 00000 n
-0000179155 00000 n
-0000096983 00000 n
-0000101437 00000 n
-0000179239 00000 n
-0000101544 00000 n
-0000106161 00000 n
-0000179323 00000 n
-0000106268 00000 n
-0000111156 00000 n
-0000179407 00000 n
-0000111263 00000 n
-0000115847 00000 n
-0000179491 00000 n
-0000115954 00000 n
-0000120654 00000 n
-0000179575 00000 n
-0000120761 00000 n
-0000124840 00000 n
-0000179659 00000 n
-0000124947 00000 n
-0000128632 00000 n
-0000179743 00000 n
-0000128739 00000 n
-0000133505 00000 n
-0000179827 00000 n
-0000133612 00000 n
-0000138324 00000 n
-0000179911 00000 n
-0000138431 00000 n
-0000142846 00000 n
-0000181095 00000 n
-0000179997 00000 n
-0000142954 00000 n
-0000148198 00000 n
-0000180085 00000 n
-0000148306 00000 n
-0000152896 00000 n
-0000180173 00000 n
-0000153004 00000 n
-0000157812 00000 n
-0000180261 00000 n
-0000157920 00000 n
-0000163350 00000 n
-0000180349 00000 n
-0000163458 00000 n
-0000168054 00000 n
-0000180437 00000 n
-0000168162 00000 n
-0000173273 00000 n
-0000180525 00000 n
-0000173381 00000 n
-0000175764 00000 n
-0000176012 00000 n
-0000176215 00000 n
-0000180613 00000 n
-0000180642 00000 n
-0000181332 00000 n
-0000181456 00000 n
+0000092513 00000 n
+0000180326 00000 n
+0000092620 00000 n
+0000096893 00000 n
+0000182212 00000 n
+0000180410 00000 n
+0000097000 00000 n
+0000101575 00000 n
+0000180494 00000 n
+0000101682 00000 n
+0000106289 00000 n
+0000180578 00000 n
+0000106396 00000 n
+0000111141 00000 n
+0000180662 00000 n
+0000111248 00000 n
+0000115824 00000 n
+0000180746 00000 n
+0000115931 00000 n
+0000120635 00000 n
+0000180830 00000 n
+0000120742 00000 n
+0000124903 00000 n
+0000180914 00000 n
+0000125010 00000 n
+0000128682 00000 n
+0000180998 00000 n
+0000128789 00000 n
+0000133554 00000 n
+0000181082 00000 n
+0000133661 00000 n
+0000138374 00000 n
+0000181166 00000 n
+0000138481 00000 n
+0000142818 00000 n
+0000182350 00000 n
+0000181252 00000 n
+0000142926 00000 n
+0000148411 00000 n
+0000181340 00000 n
+0000148519 00000 n
+0000152756 00000 n
+0000181428 00000 n
+0000152864 00000 n
+0000157897 00000 n
+0000181516 00000 n
+0000158005 00000 n
+0000163120 00000 n
+0000181604 00000 n
+0000163228 00000 n
+0000167749 00000 n
+0000181692 00000 n
+0000167857 00000 n
+0000173107 00000 n
+0000181780 00000 n
+0000173215 00000 n
+0000177019 00000 n
+0000177267 00000 n
+0000177470 00000 n
+0000181868 00000 n
+0000181897 00000 n
+0000182587 00000 n
+0000182711 00000 n
trailer
<<
/Size 129
/Root 128 0 R
/Info 127 0 R
-/ID [<0593de81704a5e6fb71bf21e80fb8b48><0593de81704a5e6fb71bf21e80fb8b48>]
+/ID [<8a5b69b2c855dcade6bae77c665bbe41><8a5b69b2c855dcade6bae77c665bbe41>]
>>
startxref
-181528
+182783
%%EOF
diff --git a/html/Shift.pdf b/html/Shift.pdf
index 0d854e5b..b2413953 100644
--- a/html/Shift.pdf
+++ b/html/Shift.pdf
@@ -593,8 +593,8 @@ endobj
endobj
16 0 obj
<<
-/CreationDate (D:20230628113853-04'00')
-/ModDate (D:20230628113853-04'00')
+/CreationDate (D:20230810125958-04'00')
+/ModDate (D:20230810125958-04'00')
/Producer (Apple pstopdf)
>>
endobj
@@ -630,7 +630,7 @@ trailer
/Size 18
/Root 17 0 R
/Info 16 0 R
-/ID [<db06e65df23083a5fb16df6e4d70eabc><db06e65df23083a5fb16df6e4d70eabc>]
+/ID [<1dcc3fa69096ee95b771ed908ff37f0c><1dcc3fa69096ee95b771ed908ff37f0c>]
>>
startxref
11800
diff --git a/html/TagNames/Apple.html b/html/TagNames/Apple.html
index 438d4f61..5d3c596e 100644
--- a/html/TagNames/Apple.html
+++ b/html/TagNames/Apple.html
@@ -81,9 +81,9 @@ toward the bottom, and positive Z points into the face of the phone)</span></spa
<td>&nbsp;</td></tr>
<tr>
<td title='0x0011 = 17'>0x0011</td>
-<td>MediaGroupUUID</td>
+<td>ContentIdentifier</td>
<td class=c>string</td>
-<td>&nbsp;</td></tr>
+<td><span class=s><span class=n>(called MediaGroupUUID when it appears as an XAttr)</span></span></td></tr>
<tr class=b>
<td title='0x0014 = 20'>0x0014</td>
<td>ImageCaptureType?</td>
@@ -116,7 +116,7 @@ toward the bottom, and positive Z points into the face of the phone)</span></spa
<td>&nbsp;</td></tr>
<tr class=b>
<td title='0x0020 = 32'>0x0020</td>
-<td>ImageCaptureReqestID?</td>
+<td>ImageCaptureRequestID?</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
<tr>
@@ -234,7 +234,7 @@ boot, not including standby time.</p>
<hr>
(This document generated automatically by Image::ExifTool::BuildTagLookup)
-<br><i>Last revised Jun 28, 2023</i>
+<br><i>Last revised Aug 10, 2023</i>
<p class=lf><a href='index.html'>&lt;-- ExifTool Tag Names</a></p>
</body>
</html>
diff --git a/html/TagNames/Canon.html b/html/TagNames/Canon.html
index aaba7f3b..0097990e 100644
--- a/html/TagNames/Canon.html
+++ b/html/TagNames/Canon.html
@@ -903,6 +903,7 @@
</tr><tr><td class=r>0x80000480</td><td>= EOS R50</td>
</tr><tr><td class=r>0x80000481</td><td>= EOS R6 Mark II</td>
</tr><tr><td class=r>0x80000487</td><td>= EOS R8</td>
+</tr><tr><td class=r>0x80000491</td><td>= PowerShot V10</td>
</tr><tr><td class=r>0x80000520</td><td>= EOS D2000C</td>
</tr><tr><td class=r>0x80000560</td><td>= EOS D6000C</td>
</tr></table></td></tr></table></blockquote>
@@ -1749,6 +1750,7 @@ others use a range of 0 to 7 where 0 is no sharpening)</span></span></td></tr>
</tr><tr><td>255</td><td>= Sigma 180mm f/2.8 EX DG OS HSM APO Macro</td>
</tr><tr><td>255</td><td>= Tamron SP 70-200mm f/2.8 Di VC USD</td>
</tr><tr><td>255</td><td>= Yongnuo YN 50mm f/1.8</td>
+</tr><tr><td>313</td><td>= Canon RF 28mm F2.8 STM</td>
</tr><tr><td>368</td><td>= Sigma 14-24mm f/2.8 DG HSM | A or other Sigma Lens</td>
</tr><tr><td>368</td><td>= Sigma 20mm f/1.4 DG HSM | A</td>
</tr><tr><td>368</td><td>= Sigma 50mm f/1.4 DG HSM | A</td>
@@ -11670,7 +11672,7 @@ SX280, and CR3 images from cameras such as the EOS M50.</p>
<hr>
(This document generated automatically by Image::ExifTool::BuildTagLookup)
-<br><i>Last revised Mar 15, 2023</i>
+<br><i>Last revised Aug 10, 2023</i>
<p class=lf><a href='index.html'>&lt;-- ExifTool Tag Names</a></p>
</body>
</html>
diff --git a/html/TagNames/FlashPix.html b/html/TagNames/FlashPix.html
index 0f1614f7..f92d18b6 100644
--- a/html/TagNames/FlashPix.html
+++ b/html/TagNames/FlashPix.html
@@ -372,6 +372,26 @@ UserDefined properties.</p>
<td class=c>no</td>
<td>&nbsp;</td></tr>
<tr class=b>
+<td title='0x001a = 26'>0x001a</td>
+<td>ContentType</td>
+<td class=c>no</td>
+<td>&nbsp;</td></tr>
+<tr>
+<td title='0x001b = 27'>0x001b</td>
+<td>ContentStatus</td>
+<td class=c>no</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
+<td title='0x001c = 28'>0x001c</td>
+<td>Language</td>
+<td class=c>no</td>
+<td>&nbsp;</td></tr>
+<tr>
+<td title='0x001d = 29'>0x001d</td>
+<td>DocVersion</td>
+<td class=c>no</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
<td>'_PID_HLINKS'</td>
<td>Hyperlinks</td>
<td class=c>no</td>
@@ -1701,7 +1721,7 @@ property tables, even though they are only listed in the SummaryInfo table.</p>
<hr>
(This document generated automatically by Image::ExifTool::BuildTagLookup)
-<br><i>Last revised Mar 28, 2023</i>
+<br><i>Last revised Aug 10, 2023</i>
<p class=lf><a href='index.html'>&lt;-- ExifTool Tag Names</a></p>
</body>
</html>
diff --git a/html/TagNames/Nikon.html b/html/TagNames/Nikon.html
index d1e6935e..36bf26de 100644
--- a/html/TagNames/Nikon.html
+++ b/html/TagNames/Nikon.html
@@ -174,7 +174,8 @@ causes the other information to be re-encrypted with the new key)</span></span><
<td>ColorSpace</td>
<td class=c>int16u</td>
<td><span class=s>1 = sRGB
- <br>2 = Adobe RGB</span></td></tr>
+ <br>2 = Adobe RGB
+ <br>4 = BT.2100</span></td></tr>
<tr>
<td title='0x001f = 31'>0x001f</td>
<td>VRInfo</td>
@@ -441,10 +442,11 @@ causes the other information to be re-encrypted with the new key)</span></span><
<br>ShotInfoD6
<br>ShotInfoD610
<br>ShotInfoZ7II
+ <br>ShotInfoZ8
<br>ShotInfoZ9
<br>ShotInfo02xx
<br>ShotInfoUnknown</td>
-<td class=c>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-</td>
+<td class=c>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-<br>-</td>
<td>--&gt; <a href='Nikon.html#ShotInfoD40'>Nikon ShotInfoD40 Tags</a>
<br>--&gt; <a href='Nikon.html#ShotInfoD80'>Nikon ShotInfoD80 Tags</a>
<br>--&gt; <a href='Nikon.html#ShotInfoD90'>Nikon ShotInfoD90 Tags</a>
@@ -471,6 +473,7 @@ causes the other information to be re-encrypted with the new key)</span></span><
<br>--&gt; <a href='Nikon.html#ShotInfoD6'>Nikon ShotInfoD6 Tags</a>
<br>--&gt; <a href='Nikon.html#ShotInfoD610'>Nikon ShotInfoD610 Tags</a>
<br>--&gt; <a href='Nikon.html#ShotInfoZ7II'>Nikon ShotInfoZ7II Tags</a>
+ <br>--&gt; <a href='Nikon.html#ShotInfoZ8'>Nikon ShotInfoZ8 Tags</a>
<br>--&gt; <a href='Nikon.html#ShotInfoZ9'>Nikon ShotInfoZ9 Tags</a>
<br>--&gt; <a href='Nikon.html#ShotInfo'>Nikon ShotInfo Tags</a>
<br>--&gt; <a href='Nikon.html#ShotInfo'>Nikon ShotInfo Tags</a></td></tr>
@@ -1256,7 +1259,7 @@ edit versions, otherwise this is extracted as a binary data block)</span>
<td class=r title='6 = 0x6'>6</td>
<td>VRMode</td>
<td class=c>int8u</td>
-<td><span class=s><span class=n>(Z Series cameras thru December 2021)</span>
+<td><span class=s><span class=n>(Z Series cameras thru July 2023)</span>
<br>0 = Off
<br>1 = Normal
<br>3 = Sport
@@ -1926,7 +1929,7 @@ FaceDetectFrameSize)</span></span></td></tr>
<th>Writable</th><th>Values / <span class=n>Notes</span></th></tr>
<tr>
<td class=r title='0 = 0x0'>0</td>
-<td>FirmwareVersion</td>
+<td>FirmwareVersion51</td>
<td class=c>no</td>
<td>&nbsp;</td></tr>
<tr class=b>
@@ -4509,8 +4512,8 @@ firmware 1.01b.</p>
<br>1 = On</span></td></tr>
</table></td></tr></table></blockquote>
-<h2><a name='ShotInfoZ9'>Nikon ShotInfoZ9 Tags</a></h2>
-<p>These tags are extracted from encrypted data in images from the Z9.</p>
+<h2><a name='ShotInfoZ8'>Nikon ShotInfoZ8 Tags</a></h2>
+<p>These tags are extracted from encrypted data in images from the Z8.</p>
<blockquote>
<table class=frame><tr><td>
<table class=inner cellspacing=1>
@@ -4532,16 +4535,6 @@ firmware 1.01b.</p>
<td class=c>-</td>
<td>--&gt; <a href='Nikon.html#SeqInfoZ9'>Nikon SeqInfoZ9 Tags</a></td></tr>
<tr class=b>
-<td class=r title='88 = 0x58'>88</td>
-<td>Offset13</td>
-<td class=c>-</td>
-<td>--&gt; <a href='Nikon.html#Offset13InfoZ9'>Nikon Offset13InfoZ9 Tags</a></td></tr>
-<tr>
-<td class=r title='128 = 0x80'>128</td>
-<td>AutoCaptureOffset</td>
-<td class=c>-</td>
-<td>--&gt; <a href='Nikon.html#AutoCaptureInfo'>Nikon AutoCaptureInfo Tags</a></td></tr>
-<tr class=b>
<td class=r title='132 = 0x84'>132</td>
<td>OrientOffset</td>
<td class=c>-</td>
@@ -4550,7 +4543,7 @@ firmware 1.01b.</p>
<td class=r title='140 = 0x8c'>140</td>
<td>MenuOffset</td>
<td class=c>-</td>
-<td>--&gt; <a href='Nikon.html#MenuInfoZ9'>Nikon MenuInfoZ9 Tags</a></td></tr>
+<td>--&gt; <a href='Nikon.html#MenuInfoZ8'>Nikon MenuInfoZ8 Tags</a></td></tr>
</table></td></tr></table></blockquote>
<h2><a name='SeqInfoZ9'>Nikon SeqInfoZ9 Tags</a></h2>
@@ -4571,6 +4564,1515 @@ firmware 1.01b.</p>
<td>&nbsp;</td></tr>
</table></td></tr></table></blockquote>
+<h2><a name='MenuInfoZ8'>Nikon MenuInfoZ8 Tags</a></h2>
+<blockquote>
+<table class=frame><tr><td>
+<table class=inner cellspacing=1>
+<tr class=h><th>Index1</th><th>Tag Name</th>
+<th>Writable</th><th>Values / <span class=n>Notes</span></th></tr>
+<tr>
+<td class=r title='16 = 0x10'>16</td>
+<td>MenuSettingsOffsetZ8</td>
+<td class=c>-</td>
+<td>--&gt; <a href='Nikon.html#MenuSettingsZ8'>Nikon MenuSettingsZ8 Tags</a>
+ <br><span class='n s'>(Firmware versions 1.0.0)</span></td></tr>
+</table></td></tr></table></blockquote>
+
+<h2><a name='MenuSettingsZ8'>Nikon MenuSettingsZ8 Tags</a></h2>
+<p>These tags are used by the Z8 firmware 1.00.</p>
+<blockquote>
+<table class=frame><tr><td>
+<table class=inner cellspacing=1>
+<tr class=h><th>Index1</th><th>Tag Name</th>
+<th>Writable</th><th>Values / <span class=n>Notes</span></th></tr>
+<tr>
+<td class=r title='72 = 0x48'>72</td>
+<td>HighFrameRate</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = CH
+ <br>3 = C30
+ <br>4 = C120
+ <br>5 = C60</span></td></tr>
+<tr class=b>
+<td class=r title='152 = 0x98'>152</td>
+<td>MultipleExposureMode</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On
+ <br>2 = On (Series)</span></td></tr>
+<tr>
+<td class=r title='154 = 0x9a'>154</td>
+<td>MultiExposureShots</td>
+<td class=c>int8u</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
+<td class=r title='184 = 0xb8'>184</td>
+<td>IntervalDurationHours</td>
+<td class=c>int32u</td>
+<td>&nbsp;</td></tr>
+<tr>
+<td class=r title='188 = 0xbc'>188</td>
+<td>IntervalDurationMinutes</td>
+<td class=c>int32u</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
+<td class=r title='192 = 0xc0'>192</td>
+<td>IntervalDurationSeconds</td>
+<td class=c>int32u</td>
+<td>&nbsp;</td></tr>
+<tr>
+<td class=r title='200 = 0xc8'>200</td>
+<td>Intervals</td>
+<td class=c>int32u</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
+<td class=r title='204 = 0xcc'>204</td>
+<td>ShotsPerInterval</td>
+<td class=c>int32u</td>
+<td>&nbsp;</td></tr>
+<tr>
+<td class=r title='208 = 0xd0'>208</td>
+<td>IntervalExposureSmoothing</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr class=b>
+<td class=r title='210 = 0xd2'>210</td>
+<td>IntervalPriority</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='244 = 0xf4'>244</td>
+<td>FocusShiftNumberShots</td>
+<td class=c>int8u</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
+<td class=r title='248 = 0xf8'>248</td>
+<td>FocusShiftStepWidth</td>
+<td class=c>int8u</td>
+<td>&nbsp;</td></tr>
+<tr>
+<td class=r title='252 = 0xfc'>252</td>
+<td>FocusShiftInterval</td>
+<td class=c title=' ~ = Writable only with -n'>int8u~</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
+<td class=r title='256 = 0x100'>256</td>
+<td>FocusShiftExposureLock?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='286 = 0x11e'>286</td>
+<td>PhotoShootingMenuBank</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = A
+ <br>1 = B
+ <br>2 = C
+ <br>3 = D</span></td></tr>
+<tr class=b>
+<td class=r title='288 = 0x120'>288</td>
+<td>ExtendedMenuBanks</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='324 = 0x144'>324</td>
+<td>PhotoShootingMenuBankImageArea</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = FX
+ <br>1 = DX
+ <br>4 = 16:9
+ <br>8 = 1:1</span></td></tr>
+<tr class=b>
+<td class=r title='338 = 0x152'>338</td>
+<td>AutoISO</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='340 = 0x154'>340</td>
+<td>ISOAutoHiLimit?</td>
+<td class=c>int16u</td>
+<td><table class=cols><tr>
+ <td>0 = ISO 64
+ <br>1 = ISO 80
+ <br>2 = ISO 100
+ <br>3 = ISO 125
+ <br>4 = ISO 160
+ <br>5 = ISO 200
+ <br>6 = ISO 250
+ <br>7 = ISO 320
+ <br>8 = ISO 400
+ <br>9 = ISO 500
+ <br>10 = ISO 640
+ <br>11 = ISO 800
+ <br>12 = ISO 1000
+ <br>13 = ISO 1250
+ <br>14 = ISO 1600
+ <br>15 = ISO 2000</td><td>&nbsp;&nbsp;</td>
+ <td>16 = ISO 2500
+ <br>17 = ISO 3200
+ <br>18 = ISO 4000
+ <br>19 = ISO 5000
+ <br>20 = ISO 6400
+ <br>21 = ISO 8000
+ <br>22 = ISO 10000
+ <br>23 = ISO 12800
+ <br>24 = ISO 16000
+ <br>25 = ISO 20000
+ <br>26 = ISO 25600
+ <br>27 = ISO Hi 0.3
+ <br>28 = ISO Hi 0.7
+ <br>29 = ISO Hi 1.0
+ <br>32 = ISO Hi 2.0</td></tr></table>
+</td></tr>
+<tr class=b>
+<td class=r title='342 = 0x156'>342</td>
+<td>ISOAutoFlashLimit?</td>
+<td class=c>int16u</td>
+<td><table class=cols><tr>
+ <td>0 = ISO 64
+ <br>1 = ISO 80
+ <br>2 = ISO 100
+ <br>3 = ISO 125
+ <br>4 = ISO 160
+ <br>5 = ISO 200
+ <br>6 = ISO 250
+ <br>7 = ISO 320
+ <br>8 = ISO 400
+ <br>9 = ISO 500
+ <br>10 = ISO 640
+ <br>11 = ISO 800
+ <br>12 = ISO 1000
+ <br>13 = ISO 1250
+ <br>14 = ISO 1600
+ <br>15 = ISO 2000</td><td>&nbsp;&nbsp;</td>
+ <td>16 = ISO 2500
+ <br>17 = ISO 3200
+ <br>18 = ISO 4000
+ <br>19 = ISO 5000
+ <br>20 = ISO 6400
+ <br>21 = ISO 8000
+ <br>22 = ISO 10000
+ <br>23 = ISO 12800
+ <br>24 = ISO 16000
+ <br>25 = ISO 20000
+ <br>26 = ISO 25600
+ <br>27 = ISO Hi 0.3
+ <br>28 = ISO Hi 0.7
+ <br>29 = ISO Hi 1.0
+ <br>32 = ISO Hi 2.0</td></tr></table>
+</td></tr>
+<tr>
+<td class=r title='350 = 0x15e'>350</td>
+<td>ISOAutoShutterTime</td>
+<td class=c>no</td>
+<td><table class=cols><tr>
+ <td>-15 = Auto
+ <br>-12 = 15 s
+ <br>-9 = 8 s
+ <br>-6 = 4 s
+ <br>-3 = 2 s
+ <br>0 = 1 s
+ <br>1 = 1/1.3 s
+ <br>2 = 1/1.6 s
+ <br>3 = 1/2 s
+ <br>4 = 1/2.5 s
+ <br>5 = 1/3 s
+ <br>6 = 1/4 s
+ <br>7 = 1/5 s
+ <br>8 = 1/6 s
+ <br>9 = 1/8 s
+ <br>10 = 1/10 s
+ <br>11 = 1/13 s
+ <br>12 = 1/15 s
+ <br>13 = 1/20 s
+ <br>14 = 1/25 s
+ <br>15 = 1/30 s
+ <br>16 = 1/40 s
+ <br>17 = 1/50 s
+ <br>18 = 1/60 s
+ <br>19 = 1/80 s</td><td>&nbsp;&nbsp;</td>
+ <td>20 = 1/100 s
+ <br>21 = 1/120 s
+ <br>22 = 1/160 s
+ <br>23 = 1/200 s
+ <br>24 = 1/250 s
+ <br>25 = 1/320 s
+ <br>26 = 1/400 s
+ <br>27 = 1/500 s
+ <br>28 = 1/640 s
+ <br>29 = 1/800 s
+ <br>30 = 1/1000 s
+ <br>31 = 1/1250 s
+ <br>32 = 1/1600 s
+ <br>33 = 1/2000 s
+ <br>34 = 1/2500 s
+ <br>35 = 1/3200 s
+ <br>36 = 1/4000 s
+ <br>37 = 1/5000 s
+ <br>37.5 = 1/6000 s
+ <br>38 = 1/6400 s
+ <br>39 = 1/8000 s
+ <br>40 = 1/10000 s
+ <br>40.5 = 1/12000 s
+ <br>41 = 1/13000 s
+ <br>42 = 1/16000 s</td></tr></table>
+</td></tr>
+<tr class=b>
+<td class=r title='432 = 0x1b0'>432</td>
+<td>MovieVignetteControl?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = Low
+ <br>2 = Normal
+ <br>3 = High</span></td></tr>
+<tr>
+<td class=r title='434 = 0x1b2'>434</td>
+<td>DiffractionCompensation</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr class=b>
+<td class=r title='436 = 0x1b4'>436</td>
+<td>FlickerReductionShooting</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='440 = 0x1b8'>440</td>
+<td>FlashControlMode</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = TTL
+ <br>1 = Auto External Flash
+ <br>2 = GN (distance priority)
+ <br>3 = Manual
+ <br>4 = Repeating Flash</span></td></tr>
+<tr class=b>
+<td class=r title='548 = 0x224'>548</td>
+<td>AFAreaMode</td>
+<td class=c>int8u</td>
+<td><table class=cols><tr>
+ <td>0 = Pinpoint
+ <br>1 = Single
+ <br>2 = Dynamic
+ <br>3 = Wide (S)
+ <br>4 = Wide (L)</td><td>&nbsp;&nbsp;</td>
+ <td>5 = 3D
+ <br>6 = Auto
+ <br>11 = Subject Tracking
+ <br>12 = Wide (C1)
+ <br>13 = Wide (C2)</td></tr></table>
+</td></tr>
+<tr>
+<td class=r title='550 = 0x226'>550</td>
+<td>VRMode</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = Normal
+ <br>2 = Sport</span></td></tr>
+<tr class=b>
+<td class=r title='554 = 0x22a'>554</td>
+<td>BracketSet</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = AE/Flash
+ <br>1 = AE
+ <br>2 = Flash
+ <br>3 = White Balance
+ <br>4 = Active-D Lighting</span></td></tr>
+<tr>
+<td class=r title='556 = 0x22c'>556</td>
+<td>BracketProgram</td>
+<td class=c>int8u</td>
+<td><span class=s><span class=n>(AE and/or Flash Bracketing)</span></span><table class=cols><tr>
+ <td>0 = Disabled
+ <br>2 = 2F
+ <br>3 = 3F
+ <br>4 = 4F</td><td>&nbsp;&nbsp;</td>
+ <td>5 = 5F
+ <br>7 = 7F
+ <br>9 = 9F</td></tr></table>
+</td></tr>
+<tr class=b>
+<td class=r title='558 = 0x22e'>558</td>
+<td>BracketIncrement</td>
+<td class=c>int8u</td>
+<td><span class=s><span class=n>(AE and/or Flash Bracketing)</span></span><table class=cols><tr>
+ <td>0 = 0.3
+ <br>1 = 0.5
+ <br>2 = 0.7</td><td>&nbsp;&nbsp;</td>
+ <td>3 = 1.0
+ <br>4 = 2.0
+ <br>5 = 3.0</td><td>&nbsp;&nbsp;</td>
+ <td>6 = 1.3
+ <br>7 = 1.5
+ <br>8 = 1.7</td><td>&nbsp;&nbsp;</td>
+ <td>9 = 2.3
+ <br>10 = 2.5
+ <br>11 = 2.7</td></tr></table>
+</td></tr>
+<tr>
+<td class=r title='570 = 0x23a'>570</td>
+<td>HDR</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On
+ <br>2 = On (Series)</span></td></tr>
+<tr class=b>
+<td class=r title='576 = 0x240'>576</td>
+<td>SecondarySlotFunction</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Overflow
+ <br>1 = Backup
+ <br>2 = NEF Primary + JPG Secondary
+ <br>3 = JPG Primary + JPG Secondary</span></td></tr>
+<tr>
+<td class=r title='582 = 0x246'>582</td>
+<td>HDRLevel</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Auto
+ <br>1 = Extra High
+ <br>2 = High
+ <br>3 = Normal
+ <br>4 = Low</span></td></tr>
+<tr class=b>
+<td class=r title='586 = 0x24a'>586</td>
+<td>Slot2JpgSize?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Large (8256x5504)
+ <br>1 = Medium (6192x4128)
+ <br>2 = Small (4128x2752)</span></td></tr>
+<tr>
+<td class=r title='592 = 0x250'>592</td>
+<td>DXCropAlert</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr class=b>
+<td class=r title='594 = 0x252'>594</td>
+<td>SubjectDetection</td>
+<td class=c>int8u</td>
+<td><table class=cols><tr>
+ <td>0 = Off
+ <br>1 = Auto
+ <br>2 = People</td><td>&nbsp;&nbsp;</td>
+ <td>3 = Animals
+ <br>4 = Vehicles
+ <br>6 = Airplanes</td></tr></table>
+</td></tr>
+<tr>
+<td class=r title='596 = 0x254'>596</td>
+<td>DynamicAFAreaSize</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Small
+ <br>1 = Medium
+ <br>2 = Large</span></td></tr>
+<tr class=b>
+<td class=r title='618 = 0x26a'>618</td>
+<td>ToneMap?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = SDR
+ <br>1 = HLG</span></td></tr>
+<tr>
+<td class=r title='622 = 0x26e'>622</td>
+<td>PortraitImpressionBalance</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = Mode 1
+ <br>2 = Mode 2
+ <br>3 = Mode 3</span></td></tr>
+<tr class=b>
+<td class=r title='636 = 0x27c'>636</td>
+<td>HighFrequencyFlickerReductionShooting?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='730 = 0x2da'>730</td>
+<td>MovieImageArea?</td>
+<td class=c>int8u</td>
+<td><span class=s>[val &amp; 0x1]
+ <br>0 = FX
+ <br>1 = DX</span></td></tr>
+<tr class=b>
+<td class=r title='740 = 0x2e4'>740</td>
+<td>MovieType?</td>
+<td class=c>int8u</td>
+<td><table class=cols><tr>
+ <td>1 = H.265 8-bit (MP4)
+ <br>2 = H.265 8-bit (MOV)
+ <br>3 = H.265 10-bit (MOV)
+ <br>4 = ProRes 422 HQ 10-bit (MOV)
+ <br>5 = ProRes RAW HQ 12-bit (MOV)
+ <br>6 = NRAW 12-bit (NEV)</td></tr></table>
+</td></tr>
+<tr>
+<td class=r title='742 = 0x2e6'>742</td>
+<td>MovieISOAutoHiLimit?</td>
+<td class=c>int16u</td>
+<td><table class=cols><tr>
+ <td>0 = ISO 64
+ <br>1 = ISO 80
+ <br>2 = ISO 100
+ <br>3 = ISO 125
+ <br>4 = ISO 160
+ <br>5 = ISO 200
+ <br>6 = ISO 250
+ <br>7 = ISO 320
+ <br>8 = ISO 400
+ <br>9 = ISO 500
+ <br>10 = ISO 640
+ <br>11 = ISO 800
+ <br>12 = ISO 1000
+ <br>13 = ISO 1250
+ <br>14 = ISO 1600
+ <br>15 = ISO 2000</td><td>&nbsp;&nbsp;</td>
+ <td>16 = ISO 2500
+ <br>17 = ISO 3200
+ <br>18 = ISO 4000
+ <br>19 = ISO 5000
+ <br>20 = ISO 6400
+ <br>21 = ISO 8000
+ <br>22 = ISO 10000
+ <br>23 = ISO 12800
+ <br>24 = ISO 16000
+ <br>25 = ISO 20000
+ <br>26 = ISO 25600
+ <br>27 = ISO Hi 0.3
+ <br>28 = ISO Hi 0.7
+ <br>29 = ISO Hi 1.0
+ <br>32 = ISO Hi 2.0</td></tr></table>
+</td></tr>
+<tr class=b>
+<td class=r title='744 = 0x2e8'>744</td>
+<td>MovieISOAutoControlManualMode?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='746 = 0x2ea'>746</td>
+<td>MovieISOAutoManualMode?</td>
+<td class=c>int16u</td>
+<td><table class=cols><tr>
+ <td>0 = ISO 64
+ <br>1 = ISO 80
+ <br>2 = ISO 100
+ <br>3 = ISO 125
+ <br>4 = ISO 160
+ <br>5 = ISO 200
+ <br>6 = ISO 250
+ <br>7 = ISO 320
+ <br>8 = ISO 400
+ <br>9 = ISO 500
+ <br>10 = ISO 640
+ <br>11 = ISO 800
+ <br>12 = ISO 1000
+ <br>13 = ISO 1250
+ <br>14 = ISO 1600
+ <br>15 = ISO 2000</td><td>&nbsp;&nbsp;</td>
+ <td>16 = ISO 2500
+ <br>17 = ISO 3200
+ <br>18 = ISO 4000
+ <br>19 = ISO 5000
+ <br>20 = ISO 6400
+ <br>21 = ISO 8000
+ <br>22 = ISO 10000
+ <br>23 = ISO 12800
+ <br>24 = ISO 16000
+ <br>25 = ISO 20000
+ <br>26 = ISO 25600
+ <br>27 = ISO Hi 0.3
+ <br>28 = ISO Hi 0.7
+ <br>29 = ISO Hi 1.0
+ <br>32 = ISO Hi 2.0</td></tr></table>
+</td></tr>
+<tr class=b>
+<td class=r title='820 = 0x334'>820</td>
+<td>MovieActiveD-Lighting?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>2 = Low
+ <br>3 = Normal
+ <br>4 = High
+ <br>5 = Extra High</span></td></tr>
+<tr>
+<td class=r title='822 = 0x336'>822</td>
+<td>MovieHighISONoiseReduction?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = Low
+ <br>2 = Normal
+ <br>3 = High</span></td></tr>
+<tr class=b>
+<td class=r title='828 = 0x33c'>828</td>
+<td>MovieFlickerReduction</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Auto
+ <br>1 = 50Hz
+ <br>2 = 60Hz</span></td></tr>
+<tr>
+<td class=r title='830 = 0x33e'>830</td>
+<td>MovieMeteringMode?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Matrix
+ <br>1 = Center
+ <br>2 = Spot
+ <br>3 = Highlight</span></td></tr>
+<tr class=b>
+<td class=r title='832 = 0x340'>832</td>
+<td>MovieFocusMode?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Manual
+ <br>1 = AF-S
+ <br>2 = AF-C
+ <br>4 = AF-F</span></td></tr>
+<tr>
+<td class=r title='834 = 0x342'>834</td>
+<td>MovieAFAreaMode</td>
+<td class=c>int8u</td>
+<td><table class=cols><tr>
+ <td>0 = Pinpoint
+ <br>1 = Single
+ <br>2 = Dynamic
+ <br>3 = Wide (S)
+ <br>4 = Wide (L)</td><td>&nbsp;&nbsp;</td>
+ <td>5 = 3D
+ <br>6 = Auto
+ <br>11 = Subject Tracking
+ <br>12 = Wide (C1)
+ <br>13 = Wide (C2)</td></tr></table>
+</td></tr>
+<tr class=b>
+<td class=r title='836 = 0x344'>836</td>
+<td>MovieVRMode?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = Normal
+ <br>2 = Sport</span></td></tr>
+<tr>
+<td class=r title='840 = 0x348'>840</td>
+<td>MovieElectronicVR?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr class=b>
+<td class=r title='842 = 0x34a'>842</td>
+<td>MovieSoundRecording?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = Auto
+ <br>2 = Manual</span></td></tr>
+<tr>
+<td class=r title='844 = 0x34c'>844</td>
+<td>MicrophoneSensitivity?</td>
+<td class=c>int8u</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
+<td class=r title='846 = 0x34e'>846</td>
+<td>MicrophoneAttenuator?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='848 = 0x350'>848</td>
+<td>MicrophoneFrequencyResponse?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Wide Range
+ <br>1 = Vocal Range</span></td></tr>
+<tr class=b>
+<td class=r title='850 = 0x352'>850</td>
+<td>WindNoiseReduction?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='882 = 0x372'>882</td>
+<td>MovieFrameSize?</td>
+<td class=c>int8u</td>
+<td><span class=s>1 = 1920x1080
+ <br>2 = 3840x2160
+ <br>3 = 7680x4320</span></td></tr>
+<tr class=b>
+<td class=r title='884 = 0x374'>884</td>
+<td>MovieFrameRate?</td>
+<td class=c>int8u</td>
+<td><table class=cols><tr>
+ <td>0 = 120p
+ <br>1 = 100p
+ <br>2 = 60p
+ <br>3 = 50p</td><td>&nbsp;&nbsp;</td>
+ <td>4 = 30p
+ <br>5 = 25p
+ <br>6 = 24p</td></tr></table>
+</td></tr>
+<tr>
+<td class=r title='886 = 0x376'>886</td>
+<td>MicrophoneJackPower?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr class=b>
+<td class=r title='887 = 0x377'>887</td>
+<td>MovieDXCropAlert?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='888 = 0x378'>888</td>
+<td>MovieSubjectDetection?</td>
+<td class=c>int8u</td>
+<td><table class=cols><tr>
+ <td>0 = Off
+ <br>1 = Auto
+ <br>2 = People</td><td>&nbsp;&nbsp;</td>
+ <td>3 = Animals
+ <br>4 = Vehicles
+ <br>6 = Airplanes</td></tr></table>
+</td></tr>
+<tr class=b>
+<td class=r title='896 = 0x380'>896</td>
+<td>MovieHighResZoom?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='943 = 0x3af'>943</td>
+<td>CustomSettingsZ8</td>
+<td class=c>-</td>
+<td>--&gt; <a href='NikonCustom.html#SettingsZ8'>NikonCustom SettingsZ8 Tags</a></td></tr>
+<tr class=b>
+<td class=r title='1682 = 0x692'>1682</td>
+<td>Language?</td>
+<td class=c>int8u</td>
+<td><span class=s>4 = English
+ <br>5 = Spanish
+ <br>7 = French
+ <br>15 = Portuguese</span></td></tr>
+<tr>
+<td class=r title='1684 = 0x694'>1684</td>
+<td>TimeZone</td>
+<td class=c>int8u</td>
+<td><table class=cols><tr>
+ <td>3 = +10:00 (Sydney)
+ <br>5 = +09:00 (Tokyo)
+ <br>6 = +08:00 (Beijing, Honk Kong, Sinapore)
+ <br>10 = +05:45 (Kathmandu)
+ <br>11 = +05:30 (New Dehli)
+ <br>12 = +05:00 (Islamabad)
+ <br>13 = +04:30 (Kabul)
+ <br>14 = +04:00 (Abu Dhabi)
+ <br>15 = +03:30 (Tehran)
+ <br>16 = +03:00 (Moscow, Nairobi)
+ <br>17 = +02:00 (Athens, Helsinki)
+ <br>18 = +01:00 (Madrid, Paris, Berlin)
+ <br>19 = +00:00 (London)
+ <br>20 = -01:00 (Azores)
+ <br>21 = -02:00 (Fernando de Noronha)
+ <br>22 = -03:00 (Buenos Aires, Sao Paulo)
+ <br>23 = -03:30 (Newfoundland)
+ <br>24 = -04:00 (Manaus, Caracas)
+ <br>25 = -05:00 (New York, Toronto, Lima)
+ <br>26 = -06:00 (Chicago, Mexico City)
+ <br>27 = -07:00 (Denver)
+ <br>28 = -08:00 (Los Angeles, Vancouver)
+ <br>29 = -09:00 (Anchorage)
+ <br>30 = -10:00 (Hawaii)</td></tr></table>
+</td></tr>
+<tr class=b>
+<td class=r title='1690 = 0x69a'>1690</td>
+<td>MonitorBrightness?</td>
+<td class=c>int8u</td>
+<td><table class=cols><tr>
+ <td>0 = -5
+ <br>1 = -4
+ <br>2 = -3</td><td>&nbsp;&nbsp;</td>
+ <td>3 = -2
+ <br>4 = -1
+ <br>5 = 0</td><td>&nbsp;&nbsp;</td>
+ <td>6 = 1
+ <br>7 = 2
+ <br>8 = 3</td><td>&nbsp;&nbsp;</td>
+ <td>9 = 4
+ <br>10 = 5
+ <br>14 = Hi1</td><td>&nbsp;&nbsp;</td>
+ <td>15 = Hi2
+ <br>16 = Lo2
+ <br>17 = Lo1</td></tr></table>
+</td></tr>
+<tr>
+<td class=r title='1712 = 0x6b0'>1712</td>
+<td>AFFineTune?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr class=b>
+<td class=r title='1716 = 0x6b4'>1716</td>
+<td>NonCPULens1FocalLength?</td>
+<td class=c title=' ~ = Writable only with -n'>int16u~</td>
+<td>&nbsp;</td></tr>
+<tr>
+<td class=r title='1718 = 0x6b6'>1718</td>
+<td>NonCPULens2FocalLength?</td>
+<td class=c title=' ~ = Writable only with -n'>int16u~</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
+<td class=r title='1720 = 0x6b8'>1720</td>
+<td>NonCPULens3FocalLength?</td>
+<td class=c title=' ~ = Writable only with -n'>int16u~</td>
+<td>&nbsp;</td></tr>
+<tr>
+<td class=r title='1722 = 0x6ba'>1722</td>
+<td>NonCPULens4FocalLength?</td>
+<td class=c title=' ~ = Writable only with -n'>int16u~</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
+<td class=r title='1724 = 0x6bc'>1724</td>
+<td>NonCPULens5FocalLength?</td>
+<td class=c title=' ~ = Writable only with -n'>int16u~</td>
+<td>&nbsp;</td></tr>
+<tr>
+<td class=r title='1726 = 0x6be'>1726</td>
+<td>NonCPULens6FocalLength?</td>
+<td class=c title=' ~ = Writable only with -n'>int16u~</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
+<td class=r title='1728 = 0x6c0'>1728</td>
+<td>NonCPULens7FocalLength?</td>
+<td class=c title=' ~ = Writable only with -n'>int16u~</td>
+<td>&nbsp;</td></tr>
+<tr>
+<td class=r title='1730 = 0x6c2'>1730</td>
+<td>NonCPULens8FocalLength?</td>
+<td class=c title=' ~ = Writable only with -n'>int16u~</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
+<td class=r title='1732 = 0x6c4'>1732</td>
+<td>NonCPULens9FocalLength?</td>
+<td class=c title=' ~ = Writable only with -n'>int16u~</td>
+<td>&nbsp;</td></tr>
+<tr>
+<td class=r title='1734 = 0x6c6'>1734</td>
+<td>NonCPULens10FocalLength?</td>
+<td class=c title=' ~ = Writable only with -n'>int16u~</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
+<td class=r title='1736 = 0x6c8'>1736</td>
+<td>NonCPULens11FocalLength?</td>
+<td class=c title=' ~ = Writable only with -n'>int16u~</td>
+<td>&nbsp;</td></tr>
+<tr>
+<td class=r title='1738 = 0x6ca'>1738</td>
+<td>NonCPULens12FocalLength?</td>
+<td class=c title=' ~ = Writable only with -n'>int16u~</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
+<td class=r title='1740 = 0x6cc'>1740</td>
+<td>NonCPULens13FocalLength?</td>
+<td class=c title=' ~ = Writable only with -n'>int16u~</td>
+<td>&nbsp;</td></tr>
+<tr>
+<td class=r title='1742 = 0x6ce'>1742</td>
+<td>NonCPULens14FocalLength?</td>
+<td class=c title=' ~ = Writable only with -n'>int16u~</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
+<td class=r title='1744 = 0x6d0'>1744</td>
+<td>NonCPULens15FocalLength?</td>
+<td class=c title=' ~ = Writable only with -n'>int16u~</td>
+<td>&nbsp;</td></tr>
+<tr>
+<td class=r title='1746 = 0x6d2'>1746</td>
+<td>NonCPULens16FocalLength?</td>
+<td class=c title=' ~ = Writable only with -n'>int16u~</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
+<td class=r title='1748 = 0x6d4'>1748</td>
+<td>NonCPULens17FocalLength?</td>
+<td class=c title=' ~ = Writable only with -n'>int16u~</td>
+<td>&nbsp;</td></tr>
+<tr>
+<td class=r title='1750 = 0x6d6'>1750</td>
+<td>NonCPULens18FocalLength?</td>
+<td class=c title=' ~ = Writable only with -n'>int16u~</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
+<td class=r title='1752 = 0x6d8'>1752</td>
+<td>NonCPULens19FocalLength?</td>
+<td class=c title=' ~ = Writable only with -n'>int16u~</td>
+<td>&nbsp;</td></tr>
+<tr>
+<td class=r title='1754 = 0x6da'>1754</td>
+<td>NonCPULens20FocalLength?</td>
+<td class=c title=' ~ = Writable only with -n'>int16u~</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
+<td class=r title='1756 = 0x6dc'>1756</td>
+<td>NonCPULens1MaxAperture?</td>
+<td class=c>int16u</td>
+<td><table class=cols><tr>
+ <td>12 = f/1.2
+ <br>24 = f/1.4
+ <br>40 = f/1.8
+ <br>48 = f/2.0
+ <br>64 = f/2.5
+ <br>72 = f/2.8
+ <br>84 = f/3.3
+ <br>88 = f/3.5</td><td>&nbsp;&nbsp;</td>
+ <td>96 = f/4.0
+ <br>104 = f/4.5
+ <br>112 = f/5.0
+ <br>120 = f/5.6
+ <br>128 = f/6.3
+ <br>136 = f/7.1
+ <br>144 = f/8
+ <br>156 = f/9.5</td><td>&nbsp;&nbsp;</td>
+ <td>168 = f/11
+ <br>180 = f/13
+ <br>188 = f/15
+ <br>192 = f/16
+ <br>204 = f/19
+ <br>216 = f/22
+ <br>313 = N/A</td></tr></table>
+</td></tr>
+<tr>
+<td class=r title='1758 = 0x6de'>1758</td>
+<td>NonCPULens2MaxAperture?</td>
+<td class=c>int16u</td>
+<td><table class=cols><tr>
+ <td>12 = f/1.2
+ <br>24 = f/1.4
+ <br>40 = f/1.8
+ <br>48 = f/2.0
+ <br>64 = f/2.5
+ <br>72 = f/2.8
+ <br>84 = f/3.3
+ <br>88 = f/3.5</td><td>&nbsp;&nbsp;</td>
+ <td>96 = f/4.0
+ <br>104 = f/4.5
+ <br>112 = f/5.0
+ <br>120 = f/5.6
+ <br>128 = f/6.3
+ <br>136 = f/7.1
+ <br>144 = f/8
+ <br>156 = f/9.5</td><td>&nbsp;&nbsp;</td>
+ <td>168 = f/11
+ <br>180 = f/13
+ <br>188 = f/15
+ <br>192 = f/16
+ <br>204 = f/19
+ <br>216 = f/22
+ <br>313 = N/A</td></tr></table>
+</td></tr>
+<tr class=b>
+<td class=r title='1760 = 0x6e0'>1760</td>
+<td>NonCPULens3MaxAperture?</td>
+<td class=c>int16u</td>
+<td><table class=cols><tr>
+ <td>12 = f/1.2
+ <br>24 = f/1.4
+ <br>40 = f/1.8
+ <br>48 = f/2.0
+ <br>64 = f/2.5
+ <br>72 = f/2.8
+ <br>84 = f/3.3
+ <br>88 = f/3.5</td><td>&nbsp;&nbsp;</td>
+ <td>96 = f/4.0
+ <br>104 = f/4.5
+ <br>112 = f/5.0
+ <br>120 = f/5.6
+ <br>128 = f/6.3
+ <br>136 = f/7.1
+ <br>144 = f/8
+ <br>156 = f/9.5</td><td>&nbsp;&nbsp;</td>
+ <td>168 = f/11
+ <br>180 = f/13
+ <br>188 = f/15
+ <br>192 = f/16
+ <br>204 = f/19
+ <br>216 = f/22
+ <br>313 = N/A</td></tr></table>
+</td></tr>
+<tr>
+<td class=r title='1762 = 0x6e2'>1762</td>
+<td>NonCPULens4MaxAperture?</td>
+<td class=c>int16u</td>
+<td><table class=cols><tr>
+ <td>12 = f/1.2
+ <br>24 = f/1.4
+ <br>40 = f/1.8
+ <br>48 = f/2.0
+ <br>64 = f/2.5
+ <br>72 = f/2.8
+ <br>84 = f/3.3
+ <br>88 = f/3.5</td><td>&nbsp;&nbsp;</td>
+ <td>96 = f/4.0
+ <br>104 = f/4.5
+ <br>112 = f/5.0
+ <br>120 = f/5.6
+ <br>128 = f/6.3
+ <br>136 = f/7.1
+ <br>144 = f/8
+ <br>156 = f/9.5</td><td>&nbsp;&nbsp;</td>
+ <td>168 = f/11
+ <br>180 = f/13
+ <br>188 = f/15
+ <br>192 = f/16
+ <br>204 = f/19
+ <br>216 = f/22
+ <br>313 = N/A</td></tr></table>
+</td></tr>
+<tr class=b>
+<td class=r title='1764 = 0x6e4'>1764</td>
+<td>NonCPULens5MaxAperture?</td>
+<td class=c>int16u</td>
+<td><table class=cols><tr>
+ <td>12 = f/1.2
+ <br>24 = f/1.4
+ <br>40 = f/1.8
+ <br>48 = f/2.0
+ <br>64 = f/2.5
+ <br>72 = f/2.8
+ <br>84 = f/3.3
+ <br>88 = f/3.5</td><td>&nbsp;&nbsp;</td>
+ <td>96 = f/4.0
+ <br>104 = f/4.5
+ <br>112 = f/5.0
+ <br>120 = f/5.6
+ <br>128 = f/6.3
+ <br>136 = f/7.1
+ <br>144 = f/8
+ <br>156 = f/9.5</td><td>&nbsp;&nbsp;</td>
+ <td>168 = f/11
+ <br>180 = f/13
+ <br>188 = f/15
+ <br>192 = f/16
+ <br>204 = f/19
+ <br>216 = f/22
+ <br>313 = N/A</td></tr></table>
+</td></tr>
+<tr>
+<td class=r title='1766 = 0x6e6'>1766</td>
+<td>NonCPULens6MaxAperture?</td>
+<td class=c>int16u</td>
+<td><table class=cols><tr>
+ <td>12 = f/1.2
+ <br>24 = f/1.4
+ <br>40 = f/1.8
+ <br>48 = f/2.0
+ <br>64 = f/2.5
+ <br>72 = f/2.8
+ <br>84 = f/3.3
+ <br>88 = f/3.5</td><td>&nbsp;&nbsp;</td>
+ <td>96 = f/4.0
+ <br>104 = f/4.5
+ <br>112 = f/5.0
+ <br>120 = f/5.6
+ <br>128 = f/6.3
+ <br>136 = f/7.1
+ <br>144 = f/8
+ <br>156 = f/9.5</td><td>&nbsp;&nbsp;</td>
+ <td>168 = f/11
+ <br>180 = f/13
+ <br>188 = f/15
+ <br>192 = f/16
+ <br>204 = f/19
+ <br>216 = f/22
+ <br>313 = N/A</td></tr></table>
+</td></tr>
+<tr class=b>
+<td class=r title='1768 = 0x6e8'>1768</td>
+<td>NonCPULens7MaxAperture?</td>
+<td class=c>int16u</td>
+<td><table class=cols><tr>
+ <td>12 = f/1.2
+ <br>24 = f/1.4
+ <br>40 = f/1.8
+ <br>48 = f/2.0
+ <br>64 = f/2.5
+ <br>72 = f/2.8
+ <br>84 = f/3.3
+ <br>88 = f/3.5</td><td>&nbsp;&nbsp;</td>
+ <td>96 = f/4.0
+ <br>104 = f/4.5
+ <br>112 = f/5.0
+ <br>120 = f/5.6
+ <br>128 = f/6.3
+ <br>136 = f/7.1
+ <br>144 = f/8
+ <br>156 = f/9.5</td><td>&nbsp;&nbsp;</td>
+ <td>168 = f/11
+ <br>180 = f/13
+ <br>188 = f/15
+ <br>192 = f/16
+ <br>204 = f/19
+ <br>216 = f/22
+ <br>313 = N/A</td></tr></table>
+</td></tr>
+<tr>
+<td class=r title='1770 = 0x6ea'>1770</td>
+<td>NonCPULens8MaxAperture?</td>
+<td class=c>int16u</td>
+<td><table class=cols><tr>
+ <td>12 = f/1.2
+ <br>24 = f/1.4
+ <br>40 = f/1.8
+ <br>48 = f/2.0
+ <br>64 = f/2.5
+ <br>72 = f/2.8
+ <br>84 = f/3.3
+ <br>88 = f/3.5</td><td>&nbsp;&nbsp;</td>
+ <td>96 = f/4.0
+ <br>104 = f/4.5
+ <br>112 = f/5.0
+ <br>120 = f/5.6
+ <br>128 = f/6.3
+ <br>136 = f/7.1
+ <br>144 = f/8
+ <br>156 = f/9.5</td><td>&nbsp;&nbsp;</td>
+ <td>168 = f/11
+ <br>180 = f/13
+ <br>188 = f/15
+ <br>192 = f/16
+ <br>204 = f/19
+ <br>216 = f/22
+ <br>313 = N/A</td></tr></table>
+</td></tr>
+<tr class=b>
+<td class=r title='1772 = 0x6ec'>1772</td>
+<td>NonCPULens9MaxAperture?</td>
+<td class=c>int16u</td>
+<td><table class=cols><tr>
+ <td>12 = f/1.2
+ <br>24 = f/1.4
+ <br>40 = f/1.8
+ <br>48 = f/2.0
+ <br>64 = f/2.5
+ <br>72 = f/2.8
+ <br>84 = f/3.3
+ <br>88 = f/3.5</td><td>&nbsp;&nbsp;</td>
+ <td>96 = f/4.0
+ <br>104 = f/4.5
+ <br>112 = f/5.0
+ <br>120 = f/5.6
+ <br>128 = f/6.3
+ <br>136 = f/7.1
+ <br>144 = f/8
+ <br>156 = f/9.5</td><td>&nbsp;&nbsp;</td>
+ <td>168 = f/11
+ <br>180 = f/13
+ <br>188 = f/15
+ <br>192 = f/16
+ <br>204 = f/19
+ <br>216 = f/22
+ <br>313 = N/A</td></tr></table>
+</td></tr>
+<tr>
+<td class=r title='1774 = 0x6ee'>1774</td>
+<td>NonCPULens10MaxAperture?</td>
+<td class=c>int16u</td>
+<td><table class=cols><tr>
+ <td>12 = f/1.2
+ <br>24 = f/1.4
+ <br>40 = f/1.8
+ <br>48 = f/2.0
+ <br>64 = f/2.5
+ <br>72 = f/2.8
+ <br>84 = f/3.3
+ <br>88 = f/3.5</td><td>&nbsp;&nbsp;</td>
+ <td>96 = f/4.0
+ <br>104 = f/4.5
+ <br>112 = f/5.0
+ <br>120 = f/5.6
+ <br>128 = f/6.3
+ <br>136 = f/7.1
+ <br>144 = f/8
+ <br>156 = f/9.5</td><td>&nbsp;&nbsp;</td>
+ <td>168 = f/11
+ <br>180 = f/13
+ <br>188 = f/15
+ <br>192 = f/16
+ <br>204 = f/19
+ <br>216 = f/22
+ <br>313 = N/A</td></tr></table>
+</td></tr>
+<tr class=b>
+<td class=r title='1776 = 0x6f0'>1776</td>
+<td>NonCPULens11MaxAperture?</td>
+<td class=c>int16u</td>
+<td><table class=cols><tr>
+ <td>12 = f/1.2
+ <br>24 = f/1.4
+ <br>40 = f/1.8
+ <br>48 = f/2.0
+ <br>64 = f/2.5
+ <br>72 = f/2.8
+ <br>84 = f/3.3
+ <br>88 = f/3.5</td><td>&nbsp;&nbsp;</td>
+ <td>96 = f/4.0
+ <br>104 = f/4.5
+ <br>112 = f/5.0
+ <br>120 = f/5.6
+ <br>128 = f/6.3
+ <br>136 = f/7.1
+ <br>144 = f/8
+ <br>156 = f/9.5</td><td>&nbsp;&nbsp;</td>
+ <td>168 = f/11
+ <br>180 = f/13
+ <br>188 = f/15
+ <br>192 = f/16
+ <br>204 = f/19
+ <br>216 = f/22
+ <br>313 = N/A</td></tr></table>
+</td></tr>
+<tr>
+<td class=r title='1778 = 0x6f2'>1778</td>
+<td>NonCPULens12MaxAperture?</td>
+<td class=c>int16u</td>
+<td><table class=cols><tr>
+ <td>12 = f/1.2
+ <br>24 = f/1.4
+ <br>40 = f/1.8
+ <br>48 = f/2.0
+ <br>64 = f/2.5
+ <br>72 = f/2.8
+ <br>84 = f/3.3
+ <br>88 = f/3.5</td><td>&nbsp;&nbsp;</td>
+ <td>96 = f/4.0
+ <br>104 = f/4.5
+ <br>112 = f/5.0
+ <br>120 = f/5.6
+ <br>128 = f/6.3
+ <br>136 = f/7.1
+ <br>144 = f/8
+ <br>156 = f/9.5</td><td>&nbsp;&nbsp;</td>
+ <td>168 = f/11
+ <br>180 = f/13
+ <br>188 = f/15
+ <br>192 = f/16
+ <br>204 = f/19
+ <br>216 = f/22
+ <br>313 = N/A</td></tr></table>
+</td></tr>
+<tr class=b>
+<td class=r title='1780 = 0x6f4'>1780</td>
+<td>NonCPULens13MaxAperture?</td>
+<td class=c>int16u</td>
+<td><table class=cols><tr>
+ <td>12 = f/1.2
+ <br>24 = f/1.4
+ <br>40 = f/1.8
+ <br>48 = f/2.0
+ <br>64 = f/2.5
+ <br>72 = f/2.8
+ <br>84 = f/3.3
+ <br>88 = f/3.5</td><td>&nbsp;&nbsp;</td>
+ <td>96 = f/4.0
+ <br>104 = f/4.5
+ <br>112 = f/5.0
+ <br>120 = f/5.6
+ <br>128 = f/6.3
+ <br>136 = f/7.1
+ <br>144 = f/8
+ <br>156 = f/9.5</td><td>&nbsp;&nbsp;</td>
+ <td>168 = f/11
+ <br>180 = f/13
+ <br>188 = f/15
+ <br>192 = f/16
+ <br>204 = f/19
+ <br>216 = f/22
+ <br>313 = N/A</td></tr></table>
+</td></tr>
+<tr>
+<td class=r title='1782 = 0x6f6'>1782</td>
+<td>NonCPULens14MaxAperture?</td>
+<td class=c>int16u</td>
+<td><table class=cols><tr>
+ <td>12 = f/1.2
+ <br>24 = f/1.4
+ <br>40 = f/1.8
+ <br>48 = f/2.0
+ <br>64 = f/2.5
+ <br>72 = f/2.8
+ <br>84 = f/3.3
+ <br>88 = f/3.5</td><td>&nbsp;&nbsp;</td>
+ <td>96 = f/4.0
+ <br>104 = f/4.5
+ <br>112 = f/5.0
+ <br>120 = f/5.6
+ <br>128 = f/6.3
+ <br>136 = f/7.1
+ <br>144 = f/8
+ <br>156 = f/9.5</td><td>&nbsp;&nbsp;</td>
+ <td>168 = f/11
+ <br>180 = f/13
+ <br>188 = f/15
+ <br>192 = f/16
+ <br>204 = f/19
+ <br>216 = f/22
+ <br>313 = N/A</td></tr></table>
+</td></tr>
+<tr class=b>
+<td class=r title='1784 = 0x6f8'>1784</td>
+<td>NonCPULens15MaxAperture?</td>
+<td class=c>int16u</td>
+<td><table class=cols><tr>
+ <td>12 = f/1.2
+ <br>24 = f/1.4
+ <br>40 = f/1.8
+ <br>48 = f/2.0
+ <br>64 = f/2.5
+ <br>72 = f/2.8
+ <br>84 = f/3.3
+ <br>88 = f/3.5</td><td>&nbsp;&nbsp;</td>
+ <td>96 = f/4.0
+ <br>104 = f/4.5
+ <br>112 = f/5.0
+ <br>120 = f/5.6
+ <br>128 = f/6.3
+ <br>136 = f/7.1
+ <br>144 = f/8
+ <br>156 = f/9.5</td><td>&nbsp;&nbsp;</td>
+ <td>168 = f/11
+ <br>180 = f/13
+ <br>188 = f/15
+ <br>192 = f/16
+ <br>204 = f/19
+ <br>216 = f/22
+ <br>313 = N/A</td></tr></table>
+</td></tr>
+<tr>
+<td class=r title='1786 = 0x6fa'>1786</td>
+<td>NonCPULens16MaxAperture?</td>
+<td class=c>int16u</td>
+<td><table class=cols><tr>
+ <td>12 = f/1.2
+ <br>24 = f/1.4
+ <br>40 = f/1.8
+ <br>48 = f/2.0
+ <br>64 = f/2.5
+ <br>72 = f/2.8
+ <br>84 = f/3.3
+ <br>88 = f/3.5</td><td>&nbsp;&nbsp;</td>
+ <td>96 = f/4.0
+ <br>104 = f/4.5
+ <br>112 = f/5.0
+ <br>120 = f/5.6
+ <br>128 = f/6.3
+ <br>136 = f/7.1
+ <br>144 = f/8
+ <br>156 = f/9.5</td><td>&nbsp;&nbsp;</td>
+ <td>168 = f/11
+ <br>180 = f/13
+ <br>188 = f/15
+ <br>192 = f/16
+ <br>204 = f/19
+ <br>216 = f/22
+ <br>313 = N/A</td></tr></table>
+</td></tr>
+<tr class=b>
+<td class=r title='1788 = 0x6fc'>1788</td>
+<td>NonCPULens17MaxAperture?</td>
+<td class=c>int16u</td>
+<td><table class=cols><tr>
+ <td>12 = f/1.2
+ <br>24 = f/1.4
+ <br>40 = f/1.8
+ <br>48 = f/2.0
+ <br>64 = f/2.5
+ <br>72 = f/2.8
+ <br>84 = f/3.3
+ <br>88 = f/3.5</td><td>&nbsp;&nbsp;</td>
+ <td>96 = f/4.0
+ <br>104 = f/4.5
+ <br>112 = f/5.0
+ <br>120 = f/5.6
+ <br>128 = f/6.3
+ <br>136 = f/7.1
+ <br>144 = f/8
+ <br>156 = f/9.5</td><td>&nbsp;&nbsp;</td>
+ <td>168 = f/11
+ <br>180 = f/13
+ <br>188 = f/15
+ <br>192 = f/16
+ <br>204 = f/19
+ <br>216 = f/22
+ <br>313 = N/A</td></tr></table>
+</td></tr>
+<tr>
+<td class=r title='1790 = 0x6fe'>1790</td>
+<td>NonCPULens18MaxAperture?</td>
+<td class=c>int16u</td>
+<td><table class=cols><tr>
+ <td>12 = f/1.2
+ <br>24 = f/1.4
+ <br>40 = f/1.8
+ <br>48 = f/2.0
+ <br>64 = f/2.5
+ <br>72 = f/2.8
+ <br>84 = f/3.3
+ <br>88 = f/3.5</td><td>&nbsp;&nbsp;</td>
+ <td>96 = f/4.0
+ <br>104 = f/4.5
+ <br>112 = f/5.0
+ <br>120 = f/5.6
+ <br>128 = f/6.3
+ <br>136 = f/7.1
+ <br>144 = f/8
+ <br>156 = f/9.5</td><td>&nbsp;&nbsp;</td>
+ <td>168 = f/11
+ <br>180 = f/13
+ <br>188 = f/15
+ <br>192 = f/16
+ <br>204 = f/19
+ <br>216 = f/22
+ <br>313 = N/A</td></tr></table>
+</td></tr>
+<tr class=b>
+<td class=r title='1792 = 0x700'>1792</td>
+<td>NonCPULens19MaxAperture?</td>
+<td class=c>int16u</td>
+<td><table class=cols><tr>
+ <td>12 = f/1.2
+ <br>24 = f/1.4
+ <br>40 = f/1.8
+ <br>48 = f/2.0
+ <br>64 = f/2.5
+ <br>72 = f/2.8
+ <br>84 = f/3.3
+ <br>88 = f/3.5</td><td>&nbsp;&nbsp;</td>
+ <td>96 = f/4.0
+ <br>104 = f/4.5
+ <br>112 = f/5.0
+ <br>120 = f/5.6
+ <br>128 = f/6.3
+ <br>136 = f/7.1
+ <br>144 = f/8
+ <br>156 = f/9.5</td><td>&nbsp;&nbsp;</td>
+ <td>168 = f/11
+ <br>180 = f/13
+ <br>188 = f/15
+ <br>192 = f/16
+ <br>204 = f/19
+ <br>216 = f/22
+ <br>313 = N/A</td></tr></table>
+</td></tr>
+<tr>
+<td class=r title='1794 = 0x702'>1794</td>
+<td>NonCPULens20MaxAperture?</td>
+<td class=c>int16u</td>
+<td><table class=cols><tr>
+ <td>12 = f/1.2
+ <br>24 = f/1.4
+ <br>40 = f/1.8
+ <br>48 = f/2.0
+ <br>64 = f/2.5
+ <br>72 = f/2.8
+ <br>84 = f/3.3
+ <br>88 = f/3.5</td><td>&nbsp;&nbsp;</td>
+ <td>96 = f/4.0
+ <br>104 = f/4.5
+ <br>112 = f/5.0
+ <br>120 = f/5.6
+ <br>128 = f/6.3
+ <br>136 = f/7.1
+ <br>144 = f/8
+ <br>156 = f/9.5</td><td>&nbsp;&nbsp;</td>
+ <td>168 = f/11
+ <br>180 = f/13
+ <br>188 = f/15
+ <br>192 = f/16
+ <br>204 = f/19
+ <br>216 = f/22
+ <br>313 = N/A</td></tr></table>
+</td></tr>
+<tr class=b>
+<td class=r title='1808 = 0x710'>1808</td>
+<td>HDMIOutputResolution</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Auto
+ <br>1 = 4320p
+ <br>2 = 2160p
+ <br>3 = 1080p
+ <br>5 = 720p</span></td></tr>
+<tr>
+<td class=r title='1826 = 0x722'>1826</td>
+<td>AirplaneMode?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr class=b>
+<td class=r title='1827 = 0x723'>1827</td>
+<td>EmptySlotRelease?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Disable Release
+ <br>1 = Enable Release</span></td></tr>
+<tr>
+<td class=r title='1862 = 0x746'>1862</td>
+<td>EnergySavingMode?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr class=b>
+<td class=r title='1890 = 0x762'>1890</td>
+<td>USBPowerDelivery?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='1899 = 0x76b'>1899</td>
+<td>SensorShield?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Stays Open
+ <br>1 = Closes</span></td></tr>
+</table></td></tr></table></blockquote>
+
+<h2><a name='ShotInfoZ9'>Nikon ShotInfoZ9 Tags</a></h2>
+<p>These tags are extracted from encrypted data in images from the Z9.</p>
+<blockquote>
+<table class=frame><tr><td>
+<table class=inner cellspacing=1>
+<tr class=h><th>Index</th><th>Tag Name</th>
+<th>Writable</th><th>Values / <span class=n>Notes</span></th></tr>
+<tr>
+<td class=r title='0 = 0x0'>0</td>
+<td>ShotInfoVersion</td>
+<td class=c>no</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
+<td class=r title='4 = 0x4'>4</td>
+<td>FirmwareVersion</td>
+<td class=c>no</td>
+<td>&nbsp;</td></tr>
+<tr>
+<td class=r title='48 = 0x30'>48</td>
+<td>SequenceOffset</td>
+<td class=c>-</td>
+<td>--&gt; <a href='Nikon.html#SeqInfoZ9'>Nikon SeqInfoZ9 Tags</a></td></tr>
+<tr class=b>
+<td class=r title='88 = 0x58'>88</td>
+<td>Offset13</td>
+<td class=c>-</td>
+<td>--&gt; <a href='Nikon.html#Offset13InfoZ9'>Nikon Offset13InfoZ9 Tags</a></td></tr>
+<tr>
+<td class=r title='128 = 0x80'>128</td>
+<td>AutoCaptureOffset</td>
+<td class=c>-</td>
+<td>--&gt; <a href='Nikon.html#AutoCaptureInfo'>Nikon AutoCaptureInfo Tags</a></td></tr>
+<tr class=b>
+<td class=r title='132 = 0x84'>132</td>
+<td>OrientOffset</td>
+<td class=c>-</td>
+<td>--&gt; <a href='Nikon.html#OrientationInfo'>Nikon OrientationInfo Tags</a></td></tr>
+<tr>
+<td class=r title='140 = 0x8c'>140</td>
+<td>MenuOffset</td>
+<td class=c>-</td>
+<td>--&gt; <a href='Nikon.html#MenuInfoZ9'>Nikon MenuInfoZ9 Tags</a></td></tr>
+</table></td></tr></table></blockquote>
+
<h2><a name='Offset13InfoZ9'>Nikon Offset13InfoZ9 Tags</a></h2>
<blockquote>
<table class=frame><tr><td>
@@ -4606,13 +6108,19 @@ firmware 1.01b.</p>
<tr class=h><th>Index1</th><th>Tag Name</th>
<th>Writable</th><th>Values / <span class=n>Notes</span></th></tr>
<tr>
+<td class=r title='0 = 0x0'>0</td>
+<td>AutoCapturedFrame</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = No
+ <br>5 = Yes</span></td></tr>
+<tr class=b>
<td class=r title='1 = 0x1'>1</td>
<td>AutoCaptureCriteria</td>
<td class=c title=' ~ = Writable only with -n'>int8u~</td>
<td><span class=s>Bit 0 = Distance
<br>Bit 1 = Motion
<br>Bit 2 = Subject Detection</span></td></tr>
-<tr class=b>
+<tr>
<td class=r title='55 = 0x37'>55</td>
<td>AutoCaptureRecordingTime</td>
<td class=c>int8u</td>
@@ -4631,7 +6139,7 @@ firmware 1.01b.</p>
<br>12 = 10 Min
<br>13 = 30 Min</td></tr></table>
</td></tr>
-<tr>
+<tr class=b>
<td class=r title='56 = 0x38'>56</td>
<td>AutoCaptureWaitTime</td>
<td class=c>int8u</td>
@@ -4650,17 +6158,17 @@ firmware 1.01b.</p>
<br>11 = 20 Sec
<br>12 = 3 Min</td></tr></table>
</td></tr>
-<tr class=b>
+<tr>
<td class=r title='74 = 0x4a'>74</td>
<td>AutoCaptureDistanceFar</td>
<td class=c title=' ~ = Writable only with -n'>int8u~</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td class=r title='78 = 0x4e'>78</td>
<td>AutoCaptureDistanceNear</td>
<td class=c title=' ~ = Writable only with -n'>int8u~</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td class=r title='95 = 0x5f'>95</td>
<td>AutoCaptureCriteriaMotionDirection</td>
<td class=c title=' ~ = Writable only with -n'>int8u~</td>
@@ -4672,22 +6180,22 @@ firmware 1.01b.</p>
<br>Bit 5 = Right
<br>Bit 6 = Top Center
<br>Bit 7 = Bottom Center</span></td></tr>
-<tr>
+<tr class=b>
<td class=r title='99 = 0x63'>99</td>
<td>AutoCaptureCriteriaMotionSpeed</td>
<td class=c>int8u</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td class=r title='100 = 0x64'>100</td>
<td>AutoCaptureCriteriaMotionSize</td>
<td class=c>int8u</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td class=r title='105 = 0x69'>105</td>
<td>AutoCaptureCriteriaSubjectSize</td>
<td class=c>int8u</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td class=r title='106 = 0x6a'>106</td>
<td>AutoCaptureCriteriaSubjectType</td>
<td class=c>int8u</td>
@@ -4706,8 +6214,9 @@ firmware 1.01b.</p>
<tr>
<td class=r title='16 = 0x10'>16</td>
<td>MenuSettingsOffsetZ9
- <br>MenuSettingsOffsetZ9v3</td>
-<td class=c>-<br>-</td>
+ <br>MenuSettingsOffsetZ9v3
+ <br>MenuSettingsOffsetZ9v4</td>
+<td class=c>-<br>-<br>-</td>
<td><span class=n>(Firmware versions 2.11 and earlier)</span>
<br>--&gt; <a href='Nikon.html#MenuSettingsZ9'>Nikon MenuSettingsZ9 Tags</a>
<br><span class=n>(Firmware versions 3.0 and v3.10)</span>
@@ -5103,11 +6612,14 @@ firmware 1.01b.</p>
<td class=r title='574 = 0x23e'>574</td>
<td>SubjectDetection</td>
<td class=c>int8u</td>
-<td><span class=s>0 = Off
+<td><table class=cols><tr>
+ <td>0 = Off
<br>1 = Auto
- <br>2 = People
- <br>3 = Animals
- <br>4 = Vehicles</span></td></tr>
+ <br>2 = People</td><td>&nbsp;&nbsp;</td>
+ <td>3 = Animals
+ <br>4 = Vehicles
+ <br>6 = Airplanes</td></tr></table>
+</td></tr>
<tr>
<td class=r title='576 = 0x240'>576</td>
<td>DynamicAFAreaSize</td>
@@ -5356,11 +6868,14 @@ firmware 1.01b.</p>
<td class=r title='764 = 0x2fc'>764</td>
<td>MovieSubjectDetection?</td>
<td class=c>int8u</td>
-<td><span class=s>0 = Off
+<td><table class=cols><tr>
+ <td>0 = Off
<br>1 = Auto
- <br>2 = People
- <br>3 = Animals
- <br>4 = Vehicles</span></td></tr>
+ <br>2 = People</td><td>&nbsp;&nbsp;</td>
+ <td>3 = Animals
+ <br>4 = Vehicles
+ <br>6 = Airplanes</td></tr></table>
+</td></tr>
<tr class=b>
<td class=r title='799 = 0x31f'>799</td>
<td>CustomSettingsZ9</td>
@@ -5849,11 +7364,14 @@ firmware 1.01b.</p>
<td class=r title='594 = 0x252'>594</td>
<td>SubjectDetection</td>
<td class=c>int8u</td>
-<td><span class=s>0 = Off
+<td><table class=cols><tr>
+ <td>0 = Off
<br>1 = Auto
- <br>2 = People
- <br>3 = Animals
- <br>4 = Vehicles</span></td></tr>
+ <br>2 = People</td><td>&nbsp;&nbsp;</td>
+ <td>3 = Animals
+ <br>4 = Vehicles
+ <br>6 = Airplanes</td></tr></table>
+</td></tr>
<tr class=b>
<td class=r title='596 = 0x254'>596</td>
<td>DynamicAFAreaSize</td>
@@ -6108,11 +7626,14 @@ firmware 1.01b.</p>
<td class=r title='804 = 0x324'>804</td>
<td>MovieSubjectDetection?</td>
<td class=c>int8u</td>
-<td><span class=s>0 = Off
+<td><table class=cols><tr>
+ <td>0 = Off
<br>1 = Auto
- <br>2 = People
- <br>3 = Animals
- <br>4 = Vehicles</span></td></tr>
+ <br>2 = People</td><td>&nbsp;&nbsp;</td>
+ <td>3 = Animals
+ <br>4 = Vehicles
+ <br>6 = Airplanes</td></tr></table>
+</td></tr>
<tr class=b>
<td class=r title='812 = 0x32c'>812</td>
<td>MovieHighResZoom?</td>
@@ -6628,6 +8149,13 @@ firmware 1.01b.</p>
<br>11 = 2.7</td></tr></table>
</td></tr>
<tr>
+<td class=r title='570 = 0x23a'>570</td>
+<td>HDR</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On
+ <br>2 = On (Series)</span></td></tr>
+<tr class=b>
<td class=r title='576 = 0x240'>576</td>
<td>SecondarySlotFunction</td>
<td class=c>int8u</td>
@@ -6635,6 +8163,15 @@ firmware 1.01b.</p>
<br>1 = Backup
<br>2 = NEF Primary + JPG Secondary
<br>3 = JPG Primary + JPG Secondary</span></td></tr>
+<tr>
+<td class=r title='582 = 0x246'>582</td>
+<td>HDRLevel</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Auto
+ <br>1 = Extra High
+ <br>2 = High
+ <br>3 = Normal
+ <br>4 = Low</span></td></tr>
<tr class=b>
<td class=r title='586 = 0x24a'>586</td>
<td>Slot2JpgSize?</td>
@@ -6652,11 +8189,14 @@ firmware 1.01b.</p>
<td class=r title='594 = 0x252'>594</td>
<td>SubjectDetection</td>
<td class=c>int8u</td>
-<td><span class=s>0 = Off
+<td><table class=cols><tr>
+ <td>0 = Off
<br>1 = Auto
- <br>2 = People
- <br>3 = Animals
- <br>4 = Vehicles</span></td></tr>
+ <br>2 = People</td><td>&nbsp;&nbsp;</td>
+ <td>3 = Animals
+ <br>4 = Vehicles
+ <br>6 = Airplanes</td></tr></table>
+</td></tr>
<tr>
<td class=r title='596 = 0x254'>596</td>
<td>DynamicAFAreaSize</td>
@@ -6911,11 +8451,14 @@ firmware 1.01b.</p>
<td class=r title='804 = 0x324'>804</td>
<td>MovieSubjectDetection?</td>
<td class=c>int8u</td>
-<td><span class=s>0 = Off
+<td><table class=cols><tr>
+ <td>0 = Off
<br>1 = Auto
- <br>2 = People
- <br>3 = Animals
- <br>4 = Vehicles</span></td></tr>
+ <br>2 = People</td><td>&nbsp;&nbsp;</td>
+ <td>3 = Animals
+ <br>4 = Vehicles
+ <br>6 = Airplanes</td></tr></table>
+</td></tr>
<tr>
<td class=r title='812 = 0x32c'>812</td>
<td>MovieHighResZoom?</td>
@@ -6924,11 +8467,11 @@ firmware 1.01b.</p>
<br>1 = On</span></td></tr>
<tr class=b>
<td class=r title='847 = 0x34f'>847</td>
-<td>CustomSettingsZ9</td>
+<td>CustomSettingsZ9v4</td>
<td class=c>-</td>
-<td>--&gt; <a href='NikonCustom.html#SettingsZ9'>NikonCustom SettingsZ9 Tags</a></td></tr>
+<td>--&gt; <a href='NikonCustom.html#SettingsZ9v4'>NikonCustom SettingsZ9v4 Tags</a></td></tr>
<tr>
-<td class=r title='1474 = 0x5c2'>1474</td>
+<td class=r title='1498 = 0x5da'>1498</td>
<td>Language?</td>
<td class=c>int8u</td>
<td><span class=s>4 = English
@@ -6936,7 +8479,7 @@ firmware 1.01b.</p>
<br>7 = French
<br>15 = Portuguese</span></td></tr>
<tr class=b>
-<td class=r title='1476 = 0x5c4'>1476</td>
+<td class=r title='1500 = 0x5dc'>1500</td>
<td>TimeZone</td>
<td class=c>int8u</td>
<td><table class=cols><tr>
@@ -6966,7 +8509,7 @@ firmware 1.01b.</p>
<br>30 = -10:00 (Hawaii)</td></tr></table>
</td></tr>
<tr>
-<td class=r title='1482 = 0x5ca'>1482</td>
+<td class=r title='1506 = 0x5e2'>1506</td>
<td>MonitorBrightness?</td>
<td class=c>int8u</td>
<td><table class=cols><tr>
@@ -6987,7 +8530,7 @@ firmware 1.01b.</p>
<br>17 = Lo1</td></tr></table>
</td></tr>
<tr class=b>
-<td class=r title='1504 = 0x5e0'>1504</td>
+<td class=r title='1528 = 0x5f8'>1528</td>
<td>AFFineTune?</td>
<td class=c>int8u</td>
<td><span class=s>0 = Off
@@ -7049,7 +8592,7 @@ firmware 1.01b.</p>
<td>&nbsp;</td></tr>
<tr class=b>
<td class=r title='1576 = 0x628'>1576</td>
-<td>NonCPULens21FocalLength?</td>
+<td>NonCPULens12FocalLength?</td>
<td class=c title=' ~ = Writable only with -n'>int16s~</td>
<td>&nbsp;</td></tr>
<tr>
@@ -8006,6 +9549,11 @@ extracted.</p>
<td class=c>int8u</td>
<td>&nbsp;</td></tr>
<tr>
+<td class=r title='88 = 0x58'>88</td>
+<td>FocusStepsFromInfinity?</td>
+<td class=c>int8u</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
<td class=r title='90 = 0x5a'>90</td>
<td>LensPositionAbsolute</td>
<td class=c>int32s</td>
@@ -8936,48 +10484,53 @@ D5200, D7000.</p>
<br>208 = Wide (C1/C2)</td></tr></table>
</td></tr>
<tr>
+<td class=r title='10 = 0xa'>10</td>
+<td>AFPointsUsed</td>
+<td class=c>undef[51]</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
<td class=r title='62 = 0x3e'>62</td>
<td>AFImageWidth</td>
<td class=c>int16u</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td class=r title='64 = 0x40'>64</td>
<td>AFImageHeight</td>
<td class=c>int16u</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td class=r title='66 = 0x42'>66</td>
<td>AFAreaXPosition</td>
<td class=c>int16u</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td class=r title='67 = 0x43'>67</td>
<td>FocusPositionHorizontal</td>
<td class=c title=' ~ = Writable only with -n'>int8u~</td>
<td><span class=s><span class=n>(the focus points form a 29x17 grid, but the X,Y coordinate values run from 1,1
to 30,19. The horizontal coordinate 11R (5) and the vertical coordinates 6U
(4) and 2D (12) are not used for some reason)</span></span></td></tr>
-<tr>
+<tr class=b>
<td class=r title='68 = 0x44'>68</td>
<td>AFAreaYPosition</td>
<td class=c>int16u</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td class=r title='69 = 0x45'>69</td>
<td>FocusPositionVertical</td>
<td class=c title=' ~ = Writable only with -n'>int8u~</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td class=r title='70 = 0x46'>70</td>
<td>AFAreaWidth</td>
<td class=c>int16u</td>
<td><span class=s><span class=n>(size of AF area in AFImage pixels)</span></span></td></tr>
-<tr class=b>
+<tr>
<td class=r title='72 = 0x48'>72</td>
<td>AFAreaHeight</td>
<td class=c>int16u</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td class=r title='74 = 0x4a'>74</td>
<td>FocusResult</td>
<td class=c>int8u</td>
@@ -9063,7 +10616,8 @@ to 30,19. The horizontal coordinate 11R (5) and the vertical coordinates 6U
<br>204 = Dynamic Area (S)
<br>205 = Dynamic Area (M)
<br>206 = Dynamic Area (L)
- <br>207 = 3D-tracking</td></tr></table>
+ <br>207 = 3D-tracking
+ <br>208 = Wide-Area (C1/C2)</td></tr></table>
</td></tr>
<tr class=b>
<td class=r title='6 = 0x6'>6</td>
@@ -11760,7 +13314,7 @@ for ExifTool to choose in these cases (see the
<hr>
(This document generated automatically by Image::ExifTool::BuildTagLookup)
-<br><i>Last revised Jun 28, 2023</i>
+<br><i>Last revised Aug 10, 2023</i>
<p class=lf><a href='index.html'>&lt;-- ExifTool Tag Names</a></p>
</body>
</html>
diff --git a/html/TagNames/NikonCustom.html b/html/TagNames/NikonCustom.html
index 01588d1c..f38ea4c3 100644
--- a/html/TagNames/NikonCustom.html
+++ b/html/TagNames/NikonCustom.html
@@ -8781,8 +8781,8 @@ custom settings for the currently supported models.
</td></tr>
</table></td></tr></table></blockquote>
-<h2><a name='SettingsZ9'>NikonCustom SettingsZ9 Tags</a></h2>
-<p>Custom settings for the Z9.</p>
+<h2><a name='SettingsZ8'>NikonCustom SettingsZ8 Tags</a></h2>
+<p>Custom settings for the Z8.</p>
<blockquote>
<table class=frame><tr><td>
<table class=inner cellspacing=1>
@@ -9295,6 +9295,932 @@ custom settings for the currently supported models.
<td class=c>int8u</td>
<td>&nbsp;</td></tr>
<tr class=b>
+<td class=r title='273 = 0x111'>273</td>
+<td>FlashBurstPriority?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Frame Rate
+ <br>1 = Exposure</span></td></tr>
+<tr>
+<td class=r title='335 = 0x14f'>335</td>
+<td>LimitAF-AreaModeSelDynamic_S?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Limit
+ <br>1 = No Limit</span></td></tr>
+<tr class=b>
+<td class=r title='336 = 0x150'>336</td>
+<td>LimitAF-AreaModeSelDynamic_M?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Limit
+ <br>1 = No Limit</span></td></tr>
+<tr>
+<td class=r title='337 = 0x151'>337</td>
+<td>LimitAF-AreaModeSelDynamic_L?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Limit
+ <br>1 = No Limit</span></td></tr>
+<tr class=b>
+<td class=r title='339 = 0x153'>339</td>
+<td>LimitAF-AreaModeSel3DTracking?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Limit
+ <br>1 = No Limit</span></td></tr>
+<tr>
+<td class=r title='341 = 0x155'>341</td>
+<td>PlaybackFlickUp?</td>
+<td class=c>int8u</td>
+<td><table class=cols><tr>
+ <td>0 = Rating
+ <br>1 = Select To Send (PC)
+ <br>2 = Select To Send (FTP)
+ <br>3 = Protect
+ <br>4 = Voice Memo
+ <br>5 = None</td></tr></table>
+</td></tr>
+<tr class=b>
+<td class=r title='345 = 0x159'>345</td>
+<td>PlaybackFlickDown?</td>
+<td class=c>int8u</td>
+<td><table class=cols><tr>
+ <td>0 = Rating
+ <br>1 = Select To Send (PC)
+ <br>2 = Select To Send (FTP)
+ <br>3 = Protect
+ <br>4 = Voice Memo
+ <br>5 = None</td></tr></table>
+</td></tr>
+<tr>
+<td class=r title='349 = 0x15d'>349</td>
+<td>ISOStepSize</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = 1/3 EV
+ <br>1 = 1/2 EV
+ <br>2 = 1 EV</span></td></tr>
+<tr class=b>
+<td class=r title='355 = 0x163'>355</td>
+<td>ReverseFocusRing</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Not Reversed
+ <br>1 = Reversed</span></td></tr>
+<tr>
+<td class=r title='356 = 0x164'>356</td>
+<td>EVFImageFrame?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr class=b>
+<td class=r title='357 = 0x165'>357</td>
+<td>EVFGrid?</td>
+<td class=c>int8u</td>
+<td><table class=cols><tr>
+ <td>0 = 3x3
+ <br>1 = 4x4
+ <br>2 = 2.35:1</td><td>&nbsp;&nbsp;</td>
+ <td>3 = 1.85:1
+ <br>4 = 5:4
+ <br>5 = 4:3</td><td>&nbsp;&nbsp;</td>
+ <td>6 = 1:1
+ <br>7 = 16:9
+ <br>8 = 90%</td></tr></table>
+</td></tr>
+<tr>
+<td class=r title='359 = 0x167'>359</td>
+<td>VirtualHorizonStyle?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Type A (Cockpit)
+ <br>1 = Type B (Sides)</span></td></tr>
+<tr class=b>
+<td class=r title='421 = 0x1a5'>421</td>
+<td>Func1ButtonPlaybackMode?</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr>
+<td class=r title='423 = 0x1a7'>423</td>
+<td>Func2ButtonPlaybackMode?</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr class=b>
+<td class=r title='437 = 0x1b5'>437</td>
+<td>MovieRecordButtonPlaybackMode?</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr>
+<td class=r title='459 = 0x1cb'>459</td>
+<td>CommandDialPlaybackMode?</td>
+<td class=c>int8u</td>
+<td><table class=cols><tr>
+ <td>0 = 1 Frame
+ <br>1 = 10 Frames
+ <br>2 = 50 Frames
+ <br>3 = Folder
+ <br>4 = Protect
+ <br>5 = Photos Only
+ <br>6 = Videos Only
+ <br>7 = Rating
+ <br>8 = Page
+ <br>9 = Skip To First Shot In Series</td></tr></table>
+</td></tr>
+<tr class=b>
+<td class=r title='463 = 0x1cf'>463</td>
+<td>SubCommandDialPlaybackMode?</td>
+<td class=c>int8u</td>
+<td><table class=cols><tr>
+ <td>0 = 1 Frame
+ <br>1 = 10 Frames
+ <br>2 = 50 Frames
+ <br>3 = Folder
+ <br>4 = Protect
+ <br>5 = Photos Only
+ <br>6 = Videos Only
+ <br>7 = Rating
+ <br>8 = Page
+ <br>9 = Skip To First Shot In Series</td></tr></table>
+</td></tr>
+<tr>
+<td class=r title='467 = 0x1d3'>467</td>
+<td>FocusPointLock?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr class=b>
+<td class=r title='469 = 0x1d5'>469</td>
+<td>ControlRingResponse</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = High
+ <br>1 = Low</span></td></tr>
+<tr>
+<td class=r title='515 = 0x203'>515</td>
+<td>MovieAFAreaMode?</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr class=b>
+<td class=r title='529 = 0x211'>529</td>
+<td>ZebraPatternToneRange?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = Highlights
+ <br>2 = Midtones</span></td></tr>
+<tr>
+<td class=r title='531 = 0x213'>531</td>
+<td>MovieZebraPattern?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Pattern 1
+ <br>1 = Pattern 2</span></td></tr>
+<tr class=b>
+<td class=r title='533 = 0x215'>533</td>
+<td>MovieHighlightDisplayThreshold?</td>
+<td class=c>int8u</td>
+<td>&nbsp;</td></tr>
+<tr>
+<td class=r title='535 = 0x217'>535</td>
+<td>MovieMidtoneDisplayValue?</td>
+<td class=c>int8u</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
+<td class=r title='537 = 0x219'>537</td>
+<td>MovieMidtoneDisplayRange?</td>
+<td class=c title=' ~ = Writable only with -n'>int8u~</td>
+<td>&nbsp;</td></tr>
+<tr>
+<td class=r title='541 = 0x21d'>541</td>
+<td>MovieEVFGrid?</td>
+<td class=c>int8u</td>
+<td><table class=cols><tr>
+ <td>0 = 3x3
+ <br>1 = 4x4
+ <br>2 = 2.35:1</td><td>&nbsp;&nbsp;</td>
+ <td>3 = 1.85:1
+ <br>4 = 5:4
+ <br>5 = 4:3</td><td>&nbsp;&nbsp;</td>
+ <td>6 = 1:1
+ <br>7 = 16:9
+ <br>8 = 90%</td></tr></table>
+</td></tr>
+<tr class=b>
+<td class=r title='549 = 0x225'>549</td>
+<td>MovieShutterSpeedLock?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='550 = 0x226'>550</td>
+<td>MovieFocusPointLock?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr class=b>
+<td class=r title='563 = 0x233'>563</td>
+<td>MatrixMetering?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Face Detection Off
+ <br>1 = Face Detection On</span></td></tr>
+<tr>
+<td class=r title='564 = 0x234'>564</td>
+<td>AF-CFocusDisplay</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr class=b>
+<td class=r title='565 = 0x235'>565</td>
+<td>FocusPeakingDisplay?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='567 = 0x237'>567</td>
+<td>KeepExposure</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = Shutter Speed
+ <br>2 = ISO</span></td></tr>
+<tr class=b>
+<td class=r title='585 = 0x249'>585</td>
+<td>StarlightView?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='587 = 0x24b'>587</td>
+<td>EVFWarmDisplayMode?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = Mode 1
+ <br>2 = Mode 2</span></td></tr>
+<tr class=b>
+<td class=r title='589 = 0x24d'>589</td>
+<td>EVFWarmDisplayBrightness?</td>
+<td class=c>int8s</td>
+<td>&nbsp;</td></tr>
+<tr>
+<td class=r title='591 = 0x24f'>591</td>
+<td>EVFReleaseIndicator?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = Type A (Dark)
+ <br>2 = Type B (Border)
+ <br>3 = Type C (Sides)</span></td></tr>
+<tr class=b>
+<td class=r title='601 = 0x259'>601</td>
+<td>MovieApertureLock?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='607 = 0x25f'>607</td>
+<td>FlickAdvanceDirection?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Left to Right
+ <br>1 = Right to Left</span></td></tr>
+<tr class=b>
+<td class=r title='647 = 0x287'>647</td>
+<td>PreReleaseBurstLength</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = None
+ <br>1 = 0.3 Sec
+ <br>2 = 0.5 Sec
+ <br>3 = 1 Sec</span></td></tr>
+<tr>
+<td class=r title='649 = 0x289'>649</td>
+<td>PostReleaseBurstLength</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = 1 Sec
+ <br>1 = 2 Sec
+ <br>2 = 3 Sec
+ <br>3 = Max</span></td></tr>
+<tr class=b>
+<td class=r title='681 = 0x2a9'>681</td>
+<td>ViewModeShowEffectsOfSettings?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Always
+ <br>1 = Only When Flash Not Used</span></td></tr>
+<tr>
+<td class=r title='683 = 0x2ab'>683</td>
+<td>DispButton</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+</table></td></tr></table></blockquote>
+
+<h2><a name='DelaysZ9'>NikonCustom DelaysZ9 Values</a></h2>
+<blockquote>
+<table class=frame><tr><td>
+<table class='inner sep' cellspacing=1>
+<tr class=h><th>Value</th><th>DelaysZ9</th><th>Value</th><th>DelaysZ9</th><th>Value</th><th>DelaysZ9</th></tr>
+<tr><td class=r>0</td><td>= 2 s</td>
+<td class='r b'>5</td><td class=b>= 30 s</td>
+<td class=r>11</td><td>= 30 min</td>
+</tr><tr><td class=r>1</td><td>= 4 s</td>
+<td class='r b'>6</td><td class=b>= 1 min</td>
+<td class=r>12</td><td>= No Limit</td>
+</tr><tr><td class=r>3</td><td>= 10 s</td>
+<td class='r b'>7</td><td class=b>= 5 min</td>
+<td class=r>&nbsp;</td><td>&nbsp;</td>
+</tr><tr><td class=r>4</td><td>= 20 s</td>
+<td class='r b'>8</td><td class=b>= 10 min</td>
+<td class=r>&nbsp;</td><td>&nbsp;</td>
+</tr></table></td></tr></table></blockquote>
+
+<h2><a name='ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></h2>
+<blockquote>
+<table class=frame><tr><td>
+<table class='inner sep' cellspacing=1>
+<tr class=h><th>Value</th><th>ButtonsZ9</th><th>Value</th><th>ButtonsZ9</th></tr>
+<tr><td class=r>0</td><td>= None</td>
+<td class='r b'>49</td><td class=b>= Power Aperture (Close)</td>
+</tr><tr><td class=r>1</td><td>= Preview</td>
+<td class='r b'>52</td><td class=b>= Microphone Sensitivity</td>
+</tr><tr><td class=r>3</td><td>= FV Lock</td>
+<td class='r b'>53</td><td class=b>= Release Mode</td>
+</tr><tr><td class=r>4</td><td>= AE/AF Lock</td>
+<td class='r b'>57</td><td class=b>= Preset Focus Point</td>
+</tr><tr><td class=r>5</td><td>= AE Lock Only</td>
+<td class='r b'>58</td><td class=b>= AE/AWB Lock (hold)</td>
+</tr><tr><td class=r>6</td><td>= AE Lock (reset on release)</td>
+<td class='r b'>59</td><td class=b>= AF-AreaMode</td>
+</tr><tr><td class=r>7</td><td>= AE Lock (hold)</td>
+<td class='r b'>60</td><td class=b>= AF-AreaMode + AF-On</td>
+</tr><tr><td class=r>8</td><td>= AF Lock Only</td>
+<td class='r b'>61</td><td class=b>= Recall Shooting Functions</td>
+</tr><tr><td class=r>9</td><td>= AF-On</td>
+<td class='r b'>64</td><td class=b>= Filtered Playback</td>
+</tr><tr><td class=r>10</td><td>= Flash Disable/Enable</td>
+<td class='r b'>65</td><td class=b>= Same as AF-On</td>
+</tr><tr><td class=r>11</td><td>= Bracketing Burst</td>
+<td class='r b'>66</td><td class=b>= Voice Memo</td>
+</tr><tr><td class=r>12</td><td>= +NEF(RAW)</td>
+<td class='r b'>70</td><td class=b>= Photo Shooting Bank</td>
+</tr><tr><td class=r>18</td><td>= Virtual Horizon</td>
+<td class='r b'>71</td><td class=b>= ISO</td>
+</tr><tr><td class=r>19</td><td>= Synchronized Release</td>
+<td class='r b'>73</td><td class=b>= Exposure Compensation</td>
+</tr><tr><td class=r>20</td><td>= My Menu</td>
+<td class='r b'>76</td><td class=b>= Silent Mode</td>
+</tr><tr><td class=r>21</td><td>= My Menu Top Item</td>
+<td class='r b'>78</td><td class=b>= LiveView Information</td>
+</tr><tr><td class=r>22</td><td>= Playback</td>
+<td class='r b'>79</td><td class=b>= AWB Lock (hold)</td>
+</tr><tr><td class=r>23</td><td>= Rating</td>
+<td class='r b'>80</td><td class=b>= Grid Display</td>
+</tr><tr><td class=r>24</td><td>= Protect</td>
+<td class='r b'>81</td><td class=b>= Starlight View</td>
+</tr><tr><td class=r>25</td><td>= Zoom</td>
+<td class='r b'>82</td><td class=b>= Select To Send (PC)</td>
+</tr><tr><td class=r>26</td><td>= Focus Peaking</td>
+<td class='r b'>83</td><td class=b>= Select To Send (FTP)</td>
+</tr><tr><td class=r>27</td><td>= Flash Mode/Compensation</td>
+<td class='r b'>84</td><td class=b>= Pattern Tone Range</td>
+</tr><tr><td class=r>28</td><td>= Image Area</td>
+<td class='r b'>85</td><td class=b>= Control Lock</td>
+</tr><tr><td class=r>30</td><td>= Non-CPU Lens</td>
+<td class='r b'>86</td><td class=b>= Save Focus Position</td>
+</tr><tr><td class=r>31</td><td>= Active-D Lighting</td>
+<td class='r b'>87</td><td class=b>= Recall Focus Position</td>
+</tr><tr><td class=r>32</td><td>= Exposure Delay Mode</td>
+<td class='r b'>88</td><td class=b>= Recall Shooting Functions (Hold)</td>
+</tr><tr><td class=r>33</td><td>= 1 Stop Speed/Aperture</td>
+<td class='r b'>97</td><td class=b>= High Frequency Flicker Reduction</td>
+</tr><tr><td class=r>34</td><td>= White Balance</td>
+<td class='r b'>98</td><td class=b>= Switch FX/DX</td>
+</tr><tr><td class=r>35</td><td>= Metering</td>
+<td class='r b'>99</td><td class=b>= View Mode (Photo LV)</td>
+</tr><tr><td class=r>36</td><td>= Auto Bracketing</td>
+<td class='r b'>100</td><td class=b>= Photo Flicker Reduction</td>
+</tr><tr><td class=r>37</td><td>= Multiple Exposure</td>
+<td class='r b'>101</td><td class=b>= Filtered Playback (Select Criteria)</td>
+</tr><tr><td class=r>38</td><td>= HDR Overlay</td>
+<td class='r b'>103</td><td class=b>= Start Series Playback</td>
+</tr><tr><td class=r>39</td><td>= Picture Control</td>
+<td class='r b'>104</td><td class=b>= View Assist</td>
+</tr><tr><td class=r>40</td><td>= Quality</td>
+<td class='r b'>105</td><td class=b>= Hi-Res Zoom+</td>
+</tr><tr><td class=r>41</td><td>= Focus Mode/AF AreaMode</td>
+<td class='r b'>106</td><td class=b>= Hi-Res Zoom-</td>
+</tr><tr><td class=r>42</td><td>= Select Center Focus Point</td>
+<td class='r b'>108</td><td class=b>= Override Other Cameras</td>
+</tr><tr><td class=r>44</td><td>= Record Movie</td>
+<td class='r b'>109</td><td class=b>= DISP - Cycle Information Display (shooting)</td>
+</tr><tr><td class=r>45</td><td>= Thumbnail On/Off</td>
+<td class='r b'>110</td><td class=b>= DISP - Cycle Information Display (playback)</td>
+</tr><tr><td class=r>46</td><td>= View Histograms</td>
+<td class='r b'>111</td><td class=b>= Resume Shooting</td>
+</tr><tr><td class=r>47</td><td>= Choose Folder</td>
+<td class='r b'>112</td><td class=b>= Switch Eyes</td>
+</tr><tr><td class=r>48</td><td>= Power Aperture (Open)</td>
+<td class='r b'>115</td><td class=b>= Delete</td>
+</tr></table></td></tr></table></blockquote>
+
+<h2><a name='SettingsZ9'>NikonCustom SettingsZ9 Tags</a></h2>
+<p>Custom settings for the Z9.</p>
+<blockquote>
+<table class=frame><tr><td>
+<table class=inner cellspacing=1>
+<tr class=h><th>Index1</th><th>Tag Name</th>
+<th>Writable</th><th>Values / <span class=n>Notes</span></th></tr>
+<tr>
+<td class=r title='1 = 0x1'>1</td>
+<td>CustomSettingsBank</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = A
+ <br>1 = B
+ <br>2 = C
+ <br>3 = D</span></td></tr>
+<tr class=b>
+<td class=r title='3 = 0x3'>3</td>
+<td>AF-CPrioritySelection</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Release
+ <br>1 = Release + Focus
+ <br>3 = Focus</span></td></tr>
+<tr>
+<td class=r title='5 = 0x5'>5</td>
+<td>AF-SPrioritySelection</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Release
+ <br>1 = Focus</span></td></tr>
+<tr class=b>
+<td class=r title='7 = 0x7'>7</td>
+<td>BlockShotAFResponse</td>
+<td class=c>int8u</td>
+<td><span class=s>1 = 1 (Quick)
+ <br>2 = 2
+ <br>3 = 3 (Normal)
+ <br>4 = 4
+ <br>5 = 5 (Delayed)</span></td></tr>
+<tr>
+<td class=r title='11 = 0xb'>11</td>
+<td>AFPointSel</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Use All
+ <br>1 = Use Half</span></td></tr>
+<tr class=b>
+<td class=r title='13 = 0xd'>13</td>
+<td>StoreByOrientation</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = Focus Point
+ <br>2 = Focus Point and AF-area mode</span></td></tr>
+<tr>
+<td class=r title='15 = 0xf'>15</td>
+<td>AFActivation</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = AF-On Only
+ <br>1 = Shutter/AF-On</span></td></tr>
+<tr class=b>
+<td class=r title='16 = 0x10'>16</td>
+<td>AF-OnOutOfFocusRelease?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Disable
+ <br>1 = Enable</span></td></tr>
+<tr>
+<td class=r title='17 = 0x11'>17</td>
+<td>LimitAF-AreaModeSelPinpoint?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Limit
+ <br>1 = No Limit</span></td></tr>
+<tr class=b>
+<td class=r title='19 = 0x13'>19</td>
+<td>LimitAF-AreaModeSelWideAF_S?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Limit
+ <br>1 = No Limit</span></td></tr>
+<tr>
+<td class=r title='20 = 0x14'>20</td>
+<td>LimitAF-AreaModeSelWideAF_L?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Limit
+ <br>1 = No Limit</span></td></tr>
+<tr class=b>
+<td class=r title='21 = 0x15'>21</td>
+<td>LimitAFAreaModeSelAuto?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Limit
+ <br>1 = No Limit</span></td></tr>
+<tr>
+<td class=r title='22 = 0x16'>22</td>
+<td>FocusPointWrap?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = No Wrap
+ <br>1 = Wrap</span></td></tr>
+<tr class=b>
+<td class=r title='23 = 0x17'>23</td>
+<td>ManualFocusPointIllumination?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = On During Focus Point Selection Only
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='24 = 0x18'>24</td>
+<td>DynamicAreaAFAssist?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Focus Point Only
+ <br>1 = Focus and Surrounding Points</span></td></tr>
+<tr class=b>
+<td class=r title='25 = 0x19'>25</td>
+<td>AF-AssistIlluminator</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='26 = 0x1a'>26</td>
+<td>ManualFocusRingInAFMode</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr class=b>
+<td class=r title='27 = 0x1b'>27</td>
+<td>ExposureControlStepSize</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = 1/3 EV
+ <br>1 = 1/2 EV
+ <br>2 = 1 EV</span></td></tr>
+<tr>
+<td class=r title='29 = 0x1d'>29</td>
+<td>EasyExposureCompensation</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On
+ <br>2 = On (auto reset)</span></td></tr>
+<tr class=b>
+<td class=r title='31 = 0x1f'>31</td>
+<td>CenterWeightedAreaSize</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = 8 mm
+ <br>1 = 12 mm
+ <br>4 = Average</span></td></tr>
+<tr>
+<td class=r title='33 = 0x21'>33</td>
+<td>FineTuneOptMatrixMetering</td>
+<td class=c>int8s</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
+<td class=r title='35 = 0x23'>35</td>
+<td>FineTuneOptCenterWeighted</td>
+<td class=c>int8s</td>
+<td>&nbsp;</td></tr>
+<tr>
+<td class=r title='37 = 0x25'>37</td>
+<td>FineTuneOptSpotMetering</td>
+<td class=c>int8s</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
+<td class=r title='39 = 0x27'>39</td>
+<td>FineTuneOptHighlightWeighted</td>
+<td class=c>int8s</td>
+<td>&nbsp;</td></tr>
+<tr>
+<td class=r title='41 = 0x29'>41</td>
+<td>ShutterReleaseButtonAE-L</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On (Half Press)
+ <br>2 = On (Burst Mode)</span></td></tr>
+<tr class=b>
+<td class=r title='43 = 0x2b'>43</td>
+<td>SelfTimerTime</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = 2 s
+ <br>1 = 5 s
+ <br>2 = 10 s
+ <br>3 = 20 s</span></td></tr>
+<tr>
+<td class=r title='45 = 0x2d'>45</td>
+<td>SelfTimerShotCount</td>
+<td class=c>int8u</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
+<td class=r title='49 = 0x31'>49</td>
+<td>SelfTimerShotInterval</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = 0.5 s
+ <br>1 = 1 s
+ <br>2 = 2 s
+ <br>3 = 3 s</span></td></tr>
+<tr>
+<td class=r title='51 = 0x33'>51</td>
+<td>PlaybackMonitorOffTime</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#DelaysZ9'>NikonCustom DelaysZ9 Values</a></td></tr>
+<tr class=b>
+<td class=r title='53 = 0x35'>53</td>
+<td>MenuMonitorOffTime</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#DelaysZ9'>NikonCustom DelaysZ9 Values</a></td></tr>
+<tr>
+<td class=r title='55 = 0x37'>55</td>
+<td>ShootingInfoMonitorOffTime</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#DelaysZ9'>NikonCustom DelaysZ9 Values</a></td></tr>
+<tr class=b>
+<td class=r title='57 = 0x39'>57</td>
+<td>ImageReviewMonitorOffTime</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#DelaysZ9'>NikonCustom DelaysZ9 Values</a></td></tr>
+<tr>
+<td class=r title='59 = 0x3b'>59</td>
+<td>CLModeShootingSpeed</td>
+<td class=c>int8u</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
+<td class=r title='61 = 0x3d'>61</td>
+<td>MaxContinuousRelease</td>
+<td class=c>no</td>
+<td>&nbsp;</td></tr>
+<tr>
+<td class=r title='65 = 0x41'>65</td>
+<td>SyncReleaseMode?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = No Sync
+ <br>1 = Sync</span></td></tr>
+<tr class=b>
+<td class=r title='69 = 0x45'>69</td>
+<td>LimitSelectableImageAreaDX?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Limit
+ <br>1 = No Limit</span></td></tr>
+<tr>
+<td class=r title='70 = 0x46'>70</td>
+<td>LimitSelectableImageArea1To1?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Limit
+ <br>1 = No Limit</span></td></tr>
+<tr class=b>
+<td class=r title='71 = 0x47'>71</td>
+<td>LimitSelectableImageArea16To9?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Limit
+ <br>1 = No Limit</span></td></tr>
+<tr>
+<td class=r title='72 = 0x48'>72</td>
+<td>FileNumberSequence</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr class=b>
+<td class=r title='73 = 0x49'>73</td>
+<td>FocusPeakingLevel?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = High Sensitivity
+ <br>1 = Standard Sensitivity
+ <br>2 = Low Sensitivity</span></td></tr>
+<tr>
+<td class=r title='75 = 0x4b'>75</td>
+<td>FocusPeakingHighlightColor?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Red
+ <br>1 = Yellow
+ <br>2 = Blue
+ <br>3 = White</span></td></tr>
+<tr class=b>
+<td class=r title='81 = 0x51'>81</td>
+<td>ContinuousModeDisplay</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='83 = 0x53'>83</td>
+<td>FlashSyncSpeed</td>
+<td class=c>no</td>
+<td><table class=cols><tr>
+ <td>0 = 1/60 s
+ <br>1 = 1/80 s
+ <br>2 = 1/100 s
+ <br>3 = 1/125 s</td><td>&nbsp;&nbsp;</td>
+ <td>4 = 1/160 s
+ <br>5 = 1/200 s
+ <br>6 = 1/250 s</td></tr></table>
+</td></tr>
+<tr class=b>
+<td class=r title='85 = 0x55'>85</td>
+<td>HighSpeedSync</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='87 = 0x57'>87</td>
+<td>FlashShutterSpeed</td>
+<td class=c>no</td>
+<td><table class=cols><tr>
+ <td>0 = 1 s
+ <br>1 = 1/2 s
+ <br>2 = 1/4 s</td><td>&nbsp;&nbsp;</td>
+ <td>3 = 1/8 s
+ <br>4 = 1/15 s
+ <br>5 = 1/30 s</td><td>&nbsp;&nbsp;</td>
+ <td>6 = 1/60 s
+ <br>7 = 30 s
+ <br>8 = 15 s</td><td>&nbsp;&nbsp;</td>
+ <td>9 = 8 s
+ <br>10 = 4 s
+ <br>11 = 2 s</td></tr></table>
+</td></tr>
+<tr class=b>
+<td class=r title='89 = 0x59'>89</td>
+<td>FlashExposureCompArea</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Entire Frame
+ <br>1 = Background Only</span></td></tr>
+<tr>
+<td class=r title='91 = 0x5b'>91</td>
+<td>AutoFlashISOSensitivity</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Subject and Background
+ <br>1 = Subject Only</span></td></tr>
+<tr class=b>
+<td class=r title='93 = 0x5d'>93</td>
+<td>ModelingFlash</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='95 = 0x5f'>95</td>
+<td>AutoBracketModeM</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Flash/Speed
+ <br>1 = Flash/Speed/Aperture
+ <br>2 = Flash/Aperture
+ <br>3 = Flash Only
+ <br>4 = Flash/ISO</span></td></tr>
+<tr class=b>
+<td class=r title='97 = 0x61'>97</td>
+<td>AutoBracketOrder</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = 0,-,+
+ <br>1 = -,0,+</span></td></tr>
+<tr>
+<td class=r title='99 = 0x63'>99</td>
+<td>Func1Button</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr class=b>
+<td class=r title='115 = 0x73'>115</td>
+<td>Func2Button</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr>
+<td class=r title='131 = 0x83'>131</td>
+<td>AFOnButton</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr class=b>
+<td class=r title='143 = 0x8f'>143</td>
+<td>SubSelector?</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr>
+<td class=r title='155 = 0x9b'>155</td>
+<td>AssignMovieRecordButton?</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr class=b>
+<td class=r title='159 = 0x9f'>159</td>
+<td>LensFunc1Button</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr>
+<td class=r title='167 = 0xa7'>167</td>
+<td>LensFunc2Button</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr class=b>
+<td class=r title='173 = 0xad'>173</td>
+<td>LensControlRing</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = None (Disabled)
+ <br>1 = Focus (M/A)
+ <br>2 = ISO Sensitivity
+ <br>3 = Exposure Compensation
+ <br>4 = Aperture</span></td></tr>
+<tr>
+<td class=r title='175 = 0xaf'>175</td>
+<td>MultiSelectorShootMode</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr class=b>
+<td class=r title='179 = 0xb3'>179</td>
+<td>MultiSelectorPlaybackMode</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr>
+<td class=r title='183 = 0xb7'>183</td>
+<td>ShutterSpeedLock</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr class=b>
+<td class=r title='184 = 0xb8'>184</td>
+<td>ApertureLock</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='186 = 0xba'>186</td>
+<td>CmdDialsReverseRotation</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = No
+ <br>1 = Shutter Speed &amp; Aperture
+ <br>0 = Exposure Compensation
+ <br>1 = Exposure Compensation, Shutter Speed &amp; Aperture</span></td></tr>
+<tr class=b>
+<td class=r title='191 = 0xbf'>191</td>
+<td>UseDialWithoutHold?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='193 = 0xc1'>193</td>
+<td>ReverseIndicators?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = + 0 -
+ <br>1 = - 0 +</span></td></tr>
+<tr class=b>
+<td class=r title='195 = 0xc3'>195</td>
+<td>MovieFunc1Button</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr>
+<td class=r title='199 = 0xc7'>199</td>
+<td>MovieFunc2Button</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr class=b>
+<td class=r title='203 = 0xcb'>203</td>
+<td>MovieAF-OnButton</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr>
+<td class=r title='207 = 0xcf'>207</td>
+<td>MovieMultiSelector?</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr class=b>
+<td class=r title='215 = 0xd7'>215</td>
+<td>MovieLensControlRing</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = None (Disabled)
+ <br>2 = ISO Sensitivity
+ <br>3 = Exposure Compensation
+ <br>4 = Power Aperture
+ <br>5 = Hi-Res Zoom</span></td></tr>
+<tr>
+<td class=r title='221 = 0xdd'>221</td>
+<td>MovieAFSpeed</td>
+<td class=c>int8u</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
+<td class=r title='223 = 0xdf'>223</td>
+<td>MovieAFSpeedApply</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Always
+ <br>1 = Only During Recording</span></td></tr>
+<tr>
+<td class=r title='225 = 0xe1'>225</td>
+<td>MovieAFTrackingSensitivity</td>
+<td class=c>int8u</td>
+<td><table class=cols><tr>
+ <td>0 = 1 (High)
+ <br>1 = 2
+ <br>2 = 3
+ <br>3 = 4 (Normal)</td><td>&nbsp;&nbsp;</td>
+ <td>4 = 5
+ <br>5 = 6
+ <br>6 = 7 (Low)</td></tr></table>
+</td></tr>
+<tr class=b>
+<td class=r title='257 = 0x101'>257</td>
+<td>LCDIllumination?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='258 = 0x102'>258</td>
+<td>ExtendedShutterSpeeds</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr class=b>
+<td class=r title='259 = 0x103'>259</td>
+<td>SubjectMotion</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Erratic
+ <br>1 = Steady</span></td></tr>
+<tr>
+<td class=r title='261 = 0x105'>261</td>
+<td>FocusPointPersistence</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Auto
+ <br>1 = Off</span></td></tr>
+<tr class=b>
+<td class=r title='263 = 0x107'>263</td>
+<td>AutoFocusModeRestrictions?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = AF-S
+ <br>1 = AF-C
+ <br>2 = Full-time AF
+ <br>3 = Manual
+ <br>4 = No Restrictions</span></td></tr>
+<tr>
+<td class=r title='267 = 0x10b'>267</td>
+<td>CHModeShootingSpeed</td>
+<td class=c>int8u</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
<td class=r title='269 = 0x10d'>269.1</td>
<td>LimitReleaseModeSelCL?</td>
<td class=c>int8u</td>
@@ -9523,11 +10449,12 @@ custom settings for the currently supported models.
<br>1 = 10 Frames
<br>2 = 50 Frames
<br>3 = Folder
- <br>4 = Protect</td><td>&nbsp;&nbsp;</td>
- <td>5 = Photos Only
+ <br>4 = Protect
+ <br>5 = Photos Only
<br>6 = Videos Only
<br>7 = Rating
- <br>8 = Page</td></tr></table>
+ <br>8 = Page
+ <br>9 = Skip To First Shot In Series</td></tr></table>
</td></tr>
<tr class=b>
<td class=r title='463 = 0x1cf'>463</td>
@@ -9538,11 +10465,12 @@ custom settings for the currently supported models.
<br>1 = 10 Frames
<br>2 = 50 Frames
<br>3 = Folder
- <br>4 = Protect</td><td>&nbsp;&nbsp;</td>
- <td>5 = Photos Only
+ <br>4 = Protect
+ <br>5 = Photos Only
<br>6 = Videos Only
<br>7 = Rating
- <br>8 = Page</td></tr></table>
+ <br>8 = Page
+ <br>9 = Skip To First Shot In Series</td></tr></table>
</td></tr>
<tr>
<td class=r title='467 = 0x1d3'>467</td>
@@ -9697,117 +10625,927 @@ custom settings for the currently supported models.
<br>1 = Right to Left</span></td></tr>
</table></td></tr></table></blockquote>
-<h2><a name='DelaysZ9'>NikonCustom DelaysZ9 Values</a></h2>
-<blockquote>
-<table class=frame><tr><td>
-<table class='inner sep' cellspacing=1>
-<tr class=h><th>Value</th><th>DelaysZ9</th><th>Value</th><th>DelaysZ9</th><th>Value</th><th>DelaysZ9</th></tr>
-<tr><td class=r>0</td><td>= 2 s</td>
-<td class='r b'>5</td><td class=b>= 30 s</td>
-<td class=r>11</td><td>= 30 min</td>
-</tr><tr><td class=r>1</td><td>= 4 s</td>
-<td class='r b'>6</td><td class=b>= 1 min</td>
-<td class=r>12</td><td>= No Limit</td>
-</tr><tr><td class=r>3</td><td>= 10 s</td>
-<td class='r b'>7</td><td class=b>= 5 min</td>
-<td class=r>&nbsp;</td><td>&nbsp;</td>
-</tr><tr><td class=r>4</td><td>= 20 s</td>
-<td class='r b'>8</td><td class=b>= 10 min</td>
-<td class=r>&nbsp;</td><td>&nbsp;</td>
-</tr></table></td></tr></table></blockquote>
-
-<h2><a name='ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></h2>
+<h2><a name='SettingsZ9v4'>NikonCustom SettingsZ9v4 Tags</a></h2>
+<p>Custom settings for the Z9.</p>
<blockquote>
<table class=frame><tr><td>
-<table class='inner sep' cellspacing=1>
-<tr class=h><th>Value</th><th>ButtonsZ9</th><th>Value</th><th>ButtonsZ9</th></tr>
-<tr><td class=r>0</td><td>= None</td>
-<td class='r b'>49</td><td class=b>= Power Aperture (Close)</td>
-</tr><tr><td class=r>1</td><td>= Preview</td>
-<td class='r b'>52</td><td class=b>= Microphone Sensitivity</td>
-</tr><tr><td class=r>3</td><td>= FV Lock</td>
-<td class='r b'>53</td><td class=b>= Release Mode</td>
-</tr><tr><td class=r>4</td><td>= AE/AF Lock</td>
-<td class='r b'>57</td><td class=b>= Preset Focus Point</td>
-</tr><tr><td class=r>5</td><td>= AE Lock Only</td>
-<td class='r b'>58</td><td class=b>= AE/AWB Lock (hold)</td>
-</tr><tr><td class=r>6</td><td>= AE Lock (reset on release)</td>
-<td class='r b'>59</td><td class=b>= AF-AreaMode</td>
-</tr><tr><td class=r>7</td><td>= AE Lock (hold)</td>
-<td class='r b'>60</td><td class=b>= AF-AreaMode + AF-On</td>
-</tr><tr><td class=r>8</td><td>= AF Lock Only</td>
-<td class='r b'>61</td><td class=b>= Recall Shooting Functions</td>
-</tr><tr><td class=r>9</td><td>= AF-On</td>
-<td class='r b'>64</td><td class=b>= Filtered Playback</td>
-</tr><tr><td class=r>10</td><td>= Flash Disable/Enable</td>
-<td class='r b'>65</td><td class=b>= Same as AF-On</td>
-</tr><tr><td class=r>11</td><td>= Bracketing Burst</td>
-<td class='r b'>66</td><td class=b>= Voice Memo</td>
-</tr><tr><td class=r>12</td><td>= +NEF(RAW)</td>
-<td class='r b'>70</td><td class=b>= Photo Shooting Bank</td>
-</tr><tr><td class=r>18</td><td>= Virtual Horizon</td>
-<td class='r b'>71</td><td class=b>= ISO</td>
-</tr><tr><td class=r>19</td><td>= Synchronized Release</td>
-<td class='r b'>73</td><td class=b>= Exposure Compensation</td>
-</tr><tr><td class=r>20</td><td>= My Menu</td>
-<td class='r b'>76</td><td class=b>= Silent Mode</td>
-</tr><tr><td class=r>21</td><td>= My Menu Top Item</td>
-<td class='r b'>78</td><td class=b>= LiveView Information</td>
-</tr><tr><td class=r>22</td><td>= Playback</td>
-<td class='r b'>79</td><td class=b>= AWB Lock (hold)</td>
-</tr><tr><td class=r>23</td><td>= Rating</td>
-<td class='r b'>80</td><td class=b>= Grid Display</td>
-</tr><tr><td class=r>24</td><td>= Protect</td>
-<td class='r b'>81</td><td class=b>= Starlight View</td>
-</tr><tr><td class=r>25</td><td>= Zoom</td>
-<td class='r b'>82</td><td class=b>= Select To Send (PC)</td>
-</tr><tr><td class=r>26</td><td>= Focus Peaking</td>
-<td class='r b'>83</td><td class=b>= Select To Send (FTP)</td>
-</tr><tr><td class=r>27</td><td>= Flash Mode/Compensation</td>
-<td class='r b'>84</td><td class=b>= Pattern Tone Range</td>
-</tr><tr><td class=r>28</td><td>= Image Area</td>
-<td class='r b'>85</td><td class=b>= Control Lock</td>
-</tr><tr><td class=r>30</td><td>= Non-CPU Lens</td>
-<td class='r b'>86</td><td class=b>= Save Focus Position</td>
-</tr><tr><td class=r>31</td><td>= Active-D Lighting</td>
-<td class='r b'>87</td><td class=b>= Recall Focus Position</td>
-</tr><tr><td class=r>32</td><td>= Exposure Delay Mode</td>
-<td class='r b'>88</td><td class=b>= Recall Shooting Functions (Hold)</td>
-</tr><tr><td class=r>33</td><td>= 1 Stop Speed/Aperture</td>
-<td class='r b'>97</td><td class=b>= High Frequency Flicker Reduction</td>
-</tr><tr><td class=r>34</td><td>= White Balance</td>
-<td class='r b'>98</td><td class=b>= Switch FX/DX</td>
-</tr><tr><td class=r>35</td><td>= Metering</td>
-<td class='r b'>99</td><td class=b>= View Mode (Photo LV)</td>
-</tr><tr><td class=r>36</td><td>= Auto Bracketing</td>
-<td class='r b'>100</td><td class=b>= Photo Flicker Reduction</td>
-</tr><tr><td class=r>37</td><td>= Multiple Exposure</td>
-<td class='r b'>101</td><td class=b>= Filtered Playback (Select Criteria)</td>
-</tr><tr><td class=r>38</td><td>= HDR Overlay</td>
-<td class='r b'>103</td><td class=b>= Start Series Playback</td>
-</tr><tr><td class=r>39</td><td>= Picture Control</td>
-<td class='r b'>104</td><td class=b>= View Assist</td>
-</tr><tr><td class=r>40</td><td>= Quality</td>
-<td class='r b'>105</td><td class=b>= Hi-Res Zoom+</td>
-</tr><tr><td class=r>41</td><td>= Focus Mode/AF AreaMode</td>
-<td class='r b'>106</td><td class=b>= Hi-Res Zoom-</td>
-</tr><tr><td class=r>42</td><td>= Select Center Focus Point</td>
-<td class='r b'>108</td><td class=b>= Override Other Cameras</td>
-</tr><tr><td class=r>44</td><td>= Record Movie</td>
-<td class='r b'>109</td><td class=b>= DISP - Cycle Information Display (shooting)</td>
-</tr><tr><td class=r>45</td><td>= Thumbnail On/Off</td>
-<td class='r b'>110</td><td class=b>= DISP - Cycle Information Display (playback)</td>
-</tr><tr><td class=r>46</td><td>= View Histograms</td>
-<td class='r b'>111</td><td class=b>= Resume Shooting</td>
-</tr><tr><td class=r>47</td><td>= Choose Folder</td>
-<td class='r b'>112</td><td class=b>= Switch Eyes</td>
-</tr><tr><td class=r>48</td><td>= Power Aperture (Open)</td>
-<td class='r b'>115</td><td class=b>= Delete</td>
-</tr></table></td></tr></table></blockquote>
+<table class=inner cellspacing=1>
+<tr class=h><th>Index1</th><th>Tag Name</th>
+<th>Writable</th><th>Values / <span class=n>Notes</span></th></tr>
+<tr>
+<td class=r title='1 = 0x1'>1</td>
+<td>CustomSettingsBank</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = A
+ <br>1 = B
+ <br>2 = C
+ <br>3 = D</span></td></tr>
+<tr class=b>
+<td class=r title='3 = 0x3'>3</td>
+<td>AF-CPrioritySelection</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Release
+ <br>1 = Release + Focus
+ <br>3 = Focus</span></td></tr>
+<tr>
+<td class=r title='5 = 0x5'>5</td>
+<td>AF-SPrioritySelection</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Release
+ <br>1 = Focus</span></td></tr>
+<tr class=b>
+<td class=r title='7 = 0x7'>7</td>
+<td>BlockShotAFResponse</td>
+<td class=c>int8u</td>
+<td><span class=s>1 = 1 (Quick)
+ <br>2 = 2
+ <br>3 = 3 (Normal)
+ <br>4 = 4
+ <br>5 = 5 (Delayed)</span></td></tr>
+<tr>
+<td class=r title='11 = 0xb'>11</td>
+<td>AFPointSel</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Use All
+ <br>1 = Use Half</span></td></tr>
+<tr class=b>
+<td class=r title='13 = 0xd'>13</td>
+<td>StoreByOrientation</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = Focus Point
+ <br>2 = Focus Point and AF-area mode</span></td></tr>
+<tr>
+<td class=r title='15 = 0xf'>15</td>
+<td>AFActivation</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = AF-On Only
+ <br>1 = Shutter/AF-On</span></td></tr>
+<tr class=b>
+<td class=r title='16 = 0x10'>16</td>
+<td>AF-OnOutOfFocusRelease?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Disable
+ <br>1 = Enable</span></td></tr>
+<tr>
+<td class=r title='17 = 0x11'>17</td>
+<td>LimitAF-AreaModeSelPinpoint?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Limit
+ <br>1 = No Limit</span></td></tr>
+<tr class=b>
+<td class=r title='19 = 0x13'>19</td>
+<td>LimitAF-AreaModeSelWideAF_S?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Limit
+ <br>1 = No Limit</span></td></tr>
+<tr>
+<td class=r title='20 = 0x14'>20</td>
+<td>LimitAF-AreaModeSelWideAF_L?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Limit
+ <br>1 = No Limit</span></td></tr>
+<tr class=b>
+<td class=r title='21 = 0x15'>21</td>
+<td>LimitAFAreaModeSelAuto?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Limit
+ <br>1 = No Limit</span></td></tr>
+<tr>
+<td class=r title='22 = 0x16'>22</td>
+<td>FocusPointWrap?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = No Wrap
+ <br>1 = Wrap</span></td></tr>
+<tr class=b>
+<td class=r title='23 = 0x17'>23</td>
+<td>ManualFocusPointIllumination?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = On During Focus Point Selection Only
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='24 = 0x18'>24</td>
+<td>DynamicAreaAFAssist?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Focus Point Only
+ <br>1 = Focus and Surrounding Points</span></td></tr>
+<tr class=b>
+<td class=r title='25 = 0x19'>25</td>
+<td>AF-AssistIlluminator</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='26 = 0x1a'>26</td>
+<td>ManualFocusRingInAFMode</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr class=b>
+<td class=r title='27 = 0x1b'>27</td>
+<td>ExposureControlStepSize</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = 1/3 EV
+ <br>1 = 1/2 EV
+ <br>2 = 1 EV</span></td></tr>
+<tr>
+<td class=r title='29 = 0x1d'>29</td>
+<td>EasyExposureCompensation</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On
+ <br>2 = On (auto reset)</span></td></tr>
+<tr class=b>
+<td class=r title='31 = 0x1f'>31</td>
+<td>CenterWeightedAreaSize</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = 8 mm
+ <br>1 = 12 mm
+ <br>4 = Average</span></td></tr>
+<tr>
+<td class=r title='33 = 0x21'>33</td>
+<td>FineTuneOptMatrixMetering</td>
+<td class=c>int8s</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
+<td class=r title='35 = 0x23'>35</td>
+<td>FineTuneOptCenterWeighted</td>
+<td class=c>int8s</td>
+<td>&nbsp;</td></tr>
+<tr>
+<td class=r title='37 = 0x25'>37</td>
+<td>FineTuneOptSpotMetering</td>
+<td class=c>int8s</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
+<td class=r title='39 = 0x27'>39</td>
+<td>FineTuneOptHighlightWeighted</td>
+<td class=c>int8s</td>
+<td>&nbsp;</td></tr>
+<tr>
+<td class=r title='41 = 0x29'>41</td>
+<td>ShutterReleaseButtonAE-L</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On (Half Press)
+ <br>2 = On (Burst Mode)</span></td></tr>
+<tr class=b>
+<td class=r title='43 = 0x2b'>43</td>
+<td>SelfTimerTime</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = 2 s
+ <br>1 = 5 s
+ <br>2 = 10 s
+ <br>3 = 20 s</span></td></tr>
+<tr>
+<td class=r title='45 = 0x2d'>45</td>
+<td>SelfTimerShotCount</td>
+<td class=c>int8u</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
+<td class=r title='49 = 0x31'>49</td>
+<td>SelfTimerShotInterval</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = 0.5 s
+ <br>1 = 1 s
+ <br>2 = 2 s
+ <br>3 = 3 s</span></td></tr>
+<tr>
+<td class=r title='51 = 0x33'>51</td>
+<td>PlaybackMonitorOffTime</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#DelaysZ9'>NikonCustom DelaysZ9 Values</a></td></tr>
+<tr class=b>
+<td class=r title='53 = 0x35'>53</td>
+<td>MenuMonitorOffTime</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#DelaysZ9'>NikonCustom DelaysZ9 Values</a></td></tr>
+<tr>
+<td class=r title='55 = 0x37'>55</td>
+<td>ShootingInfoMonitorOffTime</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#DelaysZ9'>NikonCustom DelaysZ9 Values</a></td></tr>
+<tr class=b>
+<td class=r title='57 = 0x39'>57</td>
+<td>ImageReviewMonitorOffTime</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#DelaysZ9'>NikonCustom DelaysZ9 Values</a></td></tr>
+<tr>
+<td class=r title='59 = 0x3b'>59</td>
+<td>CLModeShootingSpeed</td>
+<td class=c>int8u</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
+<td class=r title='61 = 0x3d'>61</td>
+<td>MaxContinuousRelease</td>
+<td class=c>no</td>
+<td>&nbsp;</td></tr>
+<tr>
+<td class=r title='65 = 0x41'>65</td>
+<td>SyncReleaseMode?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = No Sync
+ <br>1 = Sync</span></td></tr>
+<tr class=b>
+<td class=r title='69 = 0x45'>69</td>
+<td>LimitSelectableImageAreaDX?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Limit
+ <br>1 = No Limit</span></td></tr>
+<tr>
+<td class=r title='70 = 0x46'>70</td>
+<td>LimitSelectableImageArea1To1?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Limit
+ <br>1 = No Limit</span></td></tr>
+<tr class=b>
+<td class=r title='71 = 0x47'>71</td>
+<td>LimitSelectableImageArea16To9?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Limit
+ <br>1 = No Limit</span></td></tr>
+<tr>
+<td class=r title='72 = 0x48'>72</td>
+<td>FileNumberSequence</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr class=b>
+<td class=r title='73 = 0x49'>73</td>
+<td>FocusPeakingLevel?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = High Sensitivity
+ <br>1 = Standard Sensitivity
+ <br>2 = Low Sensitivity</span></td></tr>
+<tr>
+<td class=r title='75 = 0x4b'>75</td>
+<td>FocusPeakingHighlightColor?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Red
+ <br>1 = Yellow
+ <br>2 = Blue
+ <br>3 = White</span></td></tr>
+<tr class=b>
+<td class=r title='81 = 0x51'>81</td>
+<td>ContinuousModeDisplay</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='83 = 0x53'>83</td>
+<td>FlashSyncSpeed</td>
+<td class=c>no</td>
+<td><table class=cols><tr>
+ <td>0 = 1/60 s
+ <br>1 = 1/80 s
+ <br>2 = 1/100 s
+ <br>3 = 1/125 s</td><td>&nbsp;&nbsp;</td>
+ <td>4 = 1/160 s
+ <br>5 = 1/200 s
+ <br>6 = 1/250 s</td></tr></table>
+</td></tr>
+<tr class=b>
+<td class=r title='85 = 0x55'>85</td>
+<td>HighSpeedSync</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='87 = 0x57'>87</td>
+<td>FlashShutterSpeed</td>
+<td class=c>no</td>
+<td><table class=cols><tr>
+ <td>0 = 1 s
+ <br>1 = 1/2 s
+ <br>2 = 1/4 s</td><td>&nbsp;&nbsp;</td>
+ <td>3 = 1/8 s
+ <br>4 = 1/15 s
+ <br>5 = 1/30 s</td><td>&nbsp;&nbsp;</td>
+ <td>6 = 1/60 s
+ <br>7 = 30 s
+ <br>8 = 15 s</td><td>&nbsp;&nbsp;</td>
+ <td>9 = 8 s
+ <br>10 = 4 s
+ <br>11 = 2 s</td></tr></table>
+</td></tr>
+<tr class=b>
+<td class=r title='89 = 0x59'>89</td>
+<td>FlashExposureCompArea</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Entire Frame
+ <br>1 = Background Only</span></td></tr>
+<tr>
+<td class=r title='91 = 0x5b'>91</td>
+<td>AutoFlashISOSensitivity</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Subject and Background
+ <br>1 = Subject Only</span></td></tr>
+<tr class=b>
+<td class=r title='93 = 0x5d'>93</td>
+<td>ModelingFlash</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='95 = 0x5f'>95</td>
+<td>AutoBracketModeM</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Flash/Speed
+ <br>1 = Flash/Speed/Aperture
+ <br>2 = Flash/Aperture
+ <br>3 = Flash Only
+ <br>4 = Flash/ISO</span></td></tr>
+<tr class=b>
+<td class=r title='97 = 0x61'>97</td>
+<td>AutoBracketOrder</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = 0,-,+
+ <br>1 = -,0,+</span></td></tr>
+<tr>
+<td class=r title='99 = 0x63'>99</td>
+<td>Func1Button</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr class=b>
+<td class=r title='115 = 0x73'>115</td>
+<td>Func2Button</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr>
+<td class=r title='131 = 0x83'>131</td>
+<td>AFOnButton</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr class=b>
+<td class=r title='143 = 0x8f'>143</td>
+<td>SubSelector?</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr>
+<td class=r title='155 = 0x9b'>155</td>
+<td>AssignMovieRecordButton?</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr class=b>
+<td class=r title='159 = 0x9f'>159</td>
+<td>LensFunc1Button</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr>
+<td class=r title='167 = 0xa7'>167</td>
+<td>LensFunc2Button</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr class=b>
+<td class=r title='173 = 0xad'>173</td>
+<td>LensControlRing</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = None (Disabled)
+ <br>1 = Focus (M/A)
+ <br>2 = ISO Sensitivity
+ <br>3 = Exposure Compensation
+ <br>4 = Aperture</span></td></tr>
+<tr>
+<td class=r title='175 = 0xaf'>175</td>
+<td>MultiSelectorShootMode</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr class=b>
+<td class=r title='179 = 0xb3'>179</td>
+<td>MultiSelectorPlaybackMode</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr>
+<td class=r title='183 = 0xb7'>183</td>
+<td>ShutterSpeedLock</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr class=b>
+<td class=r title='184 = 0xb8'>184</td>
+<td>ApertureLock</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='186 = 0xba'>186</td>
+<td>CmdDialsReverseRotation</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = No
+ <br>1 = Shutter Speed &amp; Aperture
+ <br>0 = Exposure Compensation
+ <br>1 = Exposure Compensation, Shutter Speed &amp; Aperture</span></td></tr>
+<tr class=b>
+<td class=r title='191 = 0xbf'>191</td>
+<td>UseDialWithoutHold?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='193 = 0xc1'>193</td>
+<td>ReverseIndicators?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = + 0 -
+ <br>1 = - 0 +</span></td></tr>
+<tr class=b>
+<td class=r title='195 = 0xc3'>195</td>
+<td>MovieFunc1Button</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr>
+<td class=r title='199 = 0xc7'>199</td>
+<td>MovieFunc2Button</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr class=b>
+<td class=r title='203 = 0xcb'>203</td>
+<td>MovieAF-OnButton</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr>
+<td class=r title='207 = 0xcf'>207</td>
+<td>MovieMultiSelector?</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr class=b>
+<td class=r title='215 = 0xd7'>215</td>
+<td>MovieLensControlRing</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = None (Disabled)
+ <br>2 = ISO Sensitivity
+ <br>3 = Exposure Compensation
+ <br>4 = Power Aperture
+ <br>5 = Hi-Res Zoom</span></td></tr>
+<tr>
+<td class=r title='221 = 0xdd'>221</td>
+<td>MovieAFSpeed</td>
+<td class=c>int8u</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
+<td class=r title='223 = 0xdf'>223</td>
+<td>MovieAFSpeedApply</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Always
+ <br>1 = Only During Recording</span></td></tr>
+<tr>
+<td class=r title='225 = 0xe1'>225</td>
+<td>MovieAFTrackingSensitivity</td>
+<td class=c>int8u</td>
+<td><table class=cols><tr>
+ <td>0 = 1 (High)
+ <br>1 = 2
+ <br>2 = 3
+ <br>3 = 4 (Normal)</td><td>&nbsp;&nbsp;</td>
+ <td>4 = 5
+ <br>5 = 6
+ <br>6 = 7 (Low)</td></tr></table>
+</td></tr>
+<tr class=b>
+<td class=r title='279 = 0x117'>279</td>
+<td>LCDIllumination?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='280 = 0x118'>280</td>
+<td>ExtendedShutterSpeeds</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr class=b>
+<td class=r title='281 = 0x119'>281</td>
+<td>SubjectMotion</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Erratic
+ <br>1 = Steady</span></td></tr>
+<tr>
+<td class=r title='283 = 0x11b'>283</td>
+<td>FocusPointPersistence</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Auto
+ <br>1 = Off</span></td></tr>
+<tr class=b>
+<td class=r title='285 = 0x11d'>285</td>
+<td>AutoFocusModeRestrictions?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = AF-S
+ <br>1 = AF-C
+ <br>2 = Full-time AF
+ <br>3 = Manual
+ <br>4 = No Restrictions</span></td></tr>
+<tr>
+<td class=r title='289 = 0x121'>289</td>
+<td>CHModeShootingSpeed</td>
+<td class=c>int8u</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
+<td class=r title='293 = 0x125'>293.1</td>
+<td>LimitReleaseModeSelCL?</td>
+<td class=c>int8u</td>
+<td><span class=s>[val &gt;&gt; 1 &amp; 0x1]
+ <br>0 = Limit
+ <br>1 = No Limit</span></td></tr>
+<tr>
+<td class=r title='293 = 0x125'>293.2</td>
+<td>LimitReleaseModeSelCH?</td>
+<td class=c>int8u</td>
+<td><span class=s>[val &gt;&gt; 2 &amp; 0x1]
+ <br>0 = Limit
+ <br>1 = No Limit</span></td></tr>
+<tr class=b>
+<td class=r title='293 = 0x125'>293.3</td>
+<td>LimitReleaseModeSelC30?</td>
+<td class=c>int8u</td>
+<td><span class=s>[val &gt;&gt; 4 &amp; 0x1]
+ <br>0 = Limit
+ <br>1 = No Limit</span></td></tr>
+<tr>
+<td class=r title='293 = 0x125'>293.4</td>
+<td>LimitReleaseModeSelC120?</td>
+<td class=c>int8u</td>
+<td><span class=s>[val &gt;&gt; 6 &amp; 0x1]
+ <br>0 = Limit
+ <br>1 = No Limit</span></td></tr>
+<tr class=b>
+<td class=r title='293 = 0x125'>293.5</td>
+<td>LimitReleaseModeSelSelf?</td>
+<td class=c>int8u</td>
+<td><span class=s>[val &gt;&gt; 7 &amp; 0x1]
+ <br>0 = Limit
+ <br>1 = No Limit</span></td></tr>
+<tr>
+<td class=r title='297 = 0x129'>297</td>
+<td>FlashBurstPriority?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Frame Rate
+ <br>1 = Exposure</span></td></tr>
+<tr class=b>
+<td class=r title='301 = 0x12d'>301</td>
+<td>VerticalFuncButton</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr>
+<td class=r title='305 = 0x131'>305</td>
+<td>Func3Button</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr class=b>
+<td class=r title='309 = 0x135'>309</td>
+<td>VerticalAFOnButton</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr>
+<td class=r title='317 = 0x13d'>317</td>
+<td>VerticalMultiSelectorPlaybackMode?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Image Scroll L/R
+ <br>1 = Image Scroll Up/Down</span></td></tr>
+<tr class=b>
+<td class=r title='319 = 0x13f'>319</td>
+<td>MovieFunc3Button</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr>
+<td class=r title='359 = 0x167'>359</td>
+<td>LimitAF-AreaModeSelDynamic_S?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Limit
+ <br>1 = No Limit</span></td></tr>
+<tr class=b>
+<td class=r title='360 = 0x168'>360</td>
+<td>LimitAF-AreaModeSelDynamic_M?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Limit
+ <br>1 = No Limit</span></td></tr>
+<tr>
+<td class=r title='361 = 0x169'>361</td>
+<td>LimitAF-AreaModeSelDynamic_L?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Limit
+ <br>1 = No Limit</span></td></tr>
+<tr class=b>
+<td class=r title='363 = 0x16b'>363</td>
+<td>LimitAF-AreaModeSel3DTracking?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Limit
+ <br>1 = No Limit</span></td></tr>
+<tr>
+<td class=r title='365 = 0x16d'>365</td>
+<td>PlaybackFlickUp?</td>
+<td class=c>int8u</td>
+<td><table class=cols><tr>
+ <td>0 = Rating
+ <br>1 = Select To Send (PC)
+ <br>2 = Select To Send (FTP)
+ <br>3 = Protect
+ <br>4 = Voice Memo
+ <br>5 = None</td></tr></table>
+</td></tr>
+<tr class=b>
+<td class=r title='369 = 0x171'>369</td>
+<td>PlaybackFlickDown?</td>
+<td class=c>int8u</td>
+<td><table class=cols><tr>
+ <td>0 = Rating
+ <br>1 = Select To Send (PC)
+ <br>2 = Select To Send (FTP)
+ <br>3 = Protect
+ <br>4 = Voice Memo
+ <br>5 = None</td></tr></table>
+</td></tr>
+<tr>
+<td class=r title='373 = 0x175'>373</td>
+<td>ISOStepSize</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = 1/3 EV
+ <br>1 = 1/2 EV
+ <br>2 = 1 EV</span></td></tr>
+<tr class=b>
+<td class=r title='379 = 0x17b'>379</td>
+<td>ReverseFocusRing</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Not Reversed
+ <br>1 = Reversed</span></td></tr>
+<tr>
+<td class=r title='380 = 0x17c'>380</td>
+<td>EVFImageFrame?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr class=b>
+<td class=r title='381 = 0x17d'>381</td>
+<td>EVFGrid?</td>
+<td class=c>int8u</td>
+<td><table class=cols><tr>
+ <td>0 = 3x3
+ <br>1 = 4x4
+ <br>2 = 2.35:1</td><td>&nbsp;&nbsp;</td>
+ <td>3 = 1.85:1
+ <br>4 = 5:4
+ <br>5 = 4:3</td><td>&nbsp;&nbsp;</td>
+ <td>6 = 1:1
+ <br>7 = 16:9
+ <br>8 = 90%</td></tr></table>
+</td></tr>
+<tr>
+<td class=r title='383 = 0x17f'>383</td>
+<td>VirtualHorizonStyle?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Type A (Cockpit)
+ <br>1 = Type B (Sides)</span></td></tr>
+<tr class=b>
+<td class=r title='397 = 0x18d'>397</td>
+<td>Func4Button?</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr>
+<td class=r title='403 = 0x193'>403</td>
+<td>AudioButton?</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr class=b>
+<td class=r title='405 = 0x195'>405</td>
+<td>QualityButton?</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr>
+<td class=r title='423 = 0x1a7'>423</td>
+<td>VerticalMultiSelector?</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr class=b>
+<td class=r title='445 = 0x1bd'>445</td>
+<td>Func1ButtonPlaybackMode?</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr>
+<td class=r title='447 = 0x1bf'>447</td>
+<td>Func2ButtonPlaybackMode?</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr class=b>
+<td class=r title='449 = 0x1c1'>449</td>
+<td>Func3ButtonPlaybackMode?</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr>
+<td class=r title='455 = 0x1c7'>455</td>
+<td>Func4ButtonPlaybackMode?</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr class=b>
+<td class=r title='461 = 0x1cd'>461</td>
+<td>MovieRecordButtonPlaybackMode?</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr>
+<td class=r title='463 = 0x1cf'>463</td>
+<td>VerticalFuncButtonPlaybackMode?</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr class=b>
+<td class=r title='465 = 0x1d1'>465</td>
+<td>AudioButtonPlaybackMode?</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr>
+<td class=r title='471 = 0x1d7'>471</td>
+<td>QualityButtonPlaybackMode?</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr class=b>
+<td class=r title='477 = 0x1dd'>477</td>
+<td>WhiteBalanceButtonPlaybackMode?</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr>
+<td class=r title='483 = 0x1e3'>483</td>
+<td>CommandDialPlaybackMode?</td>
+<td class=c>int8u</td>
+<td><table class=cols><tr>
+ <td>0 = 1 Frame
+ <br>1 = 10 Frames
+ <br>2 = 50 Frames
+ <br>3 = Folder
+ <br>4 = Protect
+ <br>5 = Photos Only
+ <br>6 = Videos Only
+ <br>7 = Rating
+ <br>8 = Page
+ <br>9 = Skip To First Shot In Series</td></tr></table>
+</td></tr>
+<tr class=b>
+<td class=r title='487 = 0x1e7'>487</td>
+<td>SubCommandDialPlaybackMode?</td>
+<td class=c>int8u</td>
+<td><table class=cols><tr>
+ <td>0 = 1 Frame
+ <br>1 = 10 Frames
+ <br>2 = 50 Frames
+ <br>3 = Folder
+ <br>4 = Protect
+ <br>5 = Photos Only
+ <br>6 = Videos Only
+ <br>7 = Rating
+ <br>8 = Page
+ <br>9 = Skip To First Shot In Series</td></tr></table>
+</td></tr>
+<tr>
+<td class=r title='491 = 0x1eb'>491</td>
+<td>FocusPointLock?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr class=b>
+<td class=r title='493 = 0x1ed'>493</td>
+<td>ControlRingResponse</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = High
+ <br>1 = Low</span></td></tr>
+<tr>
+<td class=r title='505 = 0x1f9'>505</td>
+<td>VerticalMovieFuncButton?</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr class=b>
+<td class=r title='529 = 0x211'>529</td>
+<td>VerticalMovieAFOnButton?</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr>
+<td class=r title='539 = 0x21b'>539</td>
+<td>MovieAFAreaMode?</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='NikonCustom.html#ButtonsZ9'>NikonCustom ButtonsZ9 Values</a></td></tr>
+<tr class=b>
+<td class=r title='551 = 0x227'>551</td>
+<td>HDMIViewAssist?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='553 = 0x229'>553</td>
+<td>ZebraPatternToneRange?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = Highlights
+ <br>2 = Midtones</span></td></tr>
+<tr class=b>
+<td class=r title='555 = 0x22b'>555</td>
+<td>MovieZebraPattern?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Pattern 1
+ <br>1 = Pattern 2</span></td></tr>
+<tr>
+<td class=r title='557 = 0x22d'>557</td>
+<td>MovieHighlightDisplayThreshold?</td>
+<td class=c>int8u</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
+<td class=r title='559 = 0x22f'>559</td>
+<td>MovieMidtoneDisplayValue?</td>
+<td class=c>int8u</td>
+<td>&nbsp;</td></tr>
+<tr>
+<td class=r title='561 = 0x231'>561</td>
+<td>MovieMidtoneDisplayRange?</td>
+<td class=c title=' ~ = Writable only with -n'>int8u~</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
+<td class=r title='565 = 0x235'>565</td>
+<td>MovieEVFGrid?</td>
+<td class=c>int8u</td>
+<td><table class=cols><tr>
+ <td>0 = 3x3
+ <br>1 = 4x4
+ <br>2 = 2.35:1</td><td>&nbsp;&nbsp;</td>
+ <td>3 = 1.85:1
+ <br>4 = 5:4
+ <br>5 = 4:3</td><td>&nbsp;&nbsp;</td>
+ <td>6 = 1:1
+ <br>7 = 16:9
+ <br>8 = 90%</td></tr></table>
+</td></tr>
+<tr>
+<td class=r title='573 = 0x23d'>573</td>
+<td>MovieShutterSpeedLock?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr class=b>
+<td class=r title='574 = 0x23e'>574</td>
+<td>MovieFocusPointLock?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='587 = 0x24b'>587</td>
+<td>MatrixMetering?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Face Detection Off
+ <br>1 = Face Detection On</span></td></tr>
+<tr class=b>
+<td class=r title='588 = 0x24c'>588</td>
+<td>AF-CFocusDisplay</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='589 = 0x24d'>589</td>
+<td>FocusPeakingDisplay?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr class=b>
+<td class=r title='591 = 0x24f'>591</td>
+<td>KeepExposure</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = Shutter Speed
+ <br>2 = ISO</span></td></tr>
+<tr>
+<td class=r title='609 = 0x261'>609</td>
+<td>StarlightView?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr class=b>
+<td class=r title='611 = 0x263'>611</td>
+<td>EVFWarmDisplayMode?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = Mode 1
+ <br>2 = Mode 2</span></td></tr>
+<tr>
+<td class=r title='613 = 0x265'>613</td>
+<td>EVFWarmDisplayBrightness?</td>
+<td class=c>int8s</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
+<td class=r title='615 = 0x267'>615</td>
+<td>EVFReleaseIndicator?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = Type A (Dark)
+ <br>2 = Type B (Border)
+ <br>3 = Type C (Sides)</span></td></tr>
+<tr>
+<td class=r title='625 = 0x271'>625</td>
+<td>MovieApertureLock?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr class=b>
+<td class=r title='631 = 0x277'>631</td>
+<td>FlickAdvanceDirection?</td>
+<td class=c>int8u</td>
+<td><span class=s>0 = Left to Right
+ <br>1 = Right to Left</span></td></tr>
+</table></td></tr></table></blockquote>
<hr>
(This document generated automatically by Image::ExifTool::BuildTagLookup)
-<br><i>Last revised Jun 28, 2023</i>
+<br><i>Last revised Aug 10, 2023</i>
<p class=lf><a href='index.html'>&lt;-- ExifTool Tag Names</a></p>
</body>
</html>
diff --git a/html/TagNames/PDF.html b/html/TagNames/PDF.html
index 2af48173..2c3c4b7d 100644
--- a/html/TagNames/PDF.html
+++ b/html/TagNames/PDF.html
@@ -132,10 +132,13 @@ when reading)</span></span></td></tr>
<td>'Keywords'</td>
<td>Keywords</td>
<td class=c title=' + = List'>string+</td>
-<td><span class=s><span class=n>(stored as a string but treated as a comma-separated list of items when
-reading if the string contains a comma, otherwise a space-separated list of
-items. Written as a comma-separated list. The list behaviour may be
-defeated by setting the API NoPDFList option)</span></span></td></tr>
+<td><span class=s><span class=n>(stored as a string but treated as a comma- or semicolon-separated list of
+items when reading if the string contains commas or semicolons, whichever is
+more numerous, otherwise it is treated a space-separated list of items.
+Written as a comma-separated list. The list behaviour may be defeated by
+setting the API NoPDFList option. Note that the corresponding
+XMP-pdf:Keywords tag is not treated as a list, so the NoPDFList option
+should be used when copying between these two.)</span></span></td></tr>
<tr class=b>
<td>'ModDate'</td>
<td>ModifyDate</td>
@@ -743,7 +746,7 @@ false)</span>
<hr>
(This document generated automatically by Image::ExifTool::BuildTagLookup)
-<br><i>Last revised Jun 28, 2023</i>
+<br><i>Last revised Aug 10, 2023</i>
<p class=lf><a href='index.html'>&lt;-- ExifTool Tag Names</a></p>
</body>
</html>
diff --git a/html/TagNames/QuickTime.html b/html/TagNames/QuickTime.html
index 3cd81225..ec527ce4 100644
--- a/html/TagNames/QuickTime.html
+++ b/html/TagNames/QuickTime.html
@@ -841,241 +841,246 @@ changed via <a href="../config.html#PREF">the config file</a>.</p>
<td class=c>yes</td>
<td>&nbsp;</td></tr>
<tr>
+<td>'content.identifier'</td>
+<td>ContentIdentifier</td>
+<td class=c>yes</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
<td>'copyright'</td>
<td>Copyright</td>
<td class=c>yes</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'creationdate'</td>
<td>CreationDate</td>
<td class=c>yes</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'description'</td>
<td>Description</td>
<td class=c>yes</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'detected-face'</td>
<td>FaceInfo</td>
<td class=c>-</td>
<td>--&gt; <a href='QuickTime.html#FaceInfo'>QuickTime FaceInfo Tags</a></td></tr>
-<tr>
+<tr class=b>
<td>'detected-face.bounds'</td>
<td>DetectedFaceBounds</td>
<td class=c>no</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'detected-face.face-id'</td>
<td>DetectedFaceID</td>
<td class=c>no</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'detected-face.roll-angle'</td>
<td>DetectedFaceRollAngle</td>
<td class=c>no</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'detected-face.yaw-angle'</td>
<td>DetectedFaceYawAngle</td>
<td class=c>no</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'direction.facing'</td>
<td>CameraDirection</td>
<td class=c>yes</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'direction.motion'</td>
<td>CameraMotion</td>
<td class=c>yes</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'director'</td>
<td>Director</td>
<td class=c>yes</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'displayname'</td>
<td>DisplayName</td>
<td class=c>yes</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'genre'</td>
<td>Genre</td>
<td class=c>yes</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'information'</td>
<td>Information</td>
<td class=c>yes</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'keywords'</td>
<td>Keywords</td>
<td class=c>yes</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'live-photo-info'</td>
<td>LivePhotoInfo</td>
<td class=c>no</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'live-photo.auto'</td>
<td>LivePhotoAuto</td>
<td class=c>int8u</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'live-photo.vitality-score'</td>
<td>LivePhotoVitalityScore</td>
<td class=c>float</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'live-photo.vitality-scoring-version'</td>
<td>LivePhotoVitalityScoringVersion</td>
<td class=c>int64s</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'location.ISO6709'</td>
<td>GPSCoordinates</td>
<td class=c>yes</td>
<td><span class=s><span class=n>(Google Photos may ignore this if the coorinates have more than 5 digits
after the decimal)</span></span></td></tr>
-<tr>
+<tr class=b>
<td>'location.accuracy.horizontal'</td>
<td>LocationAccuracyHorizontal</td>
<td class=c>yes</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'location.body'</td>
<td>LocationBody</td>
<td class=c>yes</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'location.date'</td>
<td>LocationDate</td>
<td class=c>yes</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'location.name'</td>
<td>LocationName</td>
<td class=c>yes</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'location.note'</td>
<td>LocationNote</td>
<td class=c>yes</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'location.role'</td>
<td>LocationRole</td>
<td class=c>yes</td>
<td><span class=s>0 = Shooting Location
<br>1 = Real Location
<br>2 = Fictional Location</span></td></tr>
-<tr>
+<tr class=b>
<td>'make'</td>
<td>Make</td>
<td class=c>yes</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'model'</td>
<td>Model</td>
<td class=c>yes</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'player.movie.audio.balance'</td>
<td>Balance</td>
<td class=c>yes</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'player.movie.audio.bass'</td>
<td>Bass</td>
<td class=c>yes</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'player.movie.audio.gain'</td>
<td>AudioGain</td>
<td class=c>yes</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'player.movie.audio.mute'</td>
<td>Mute</td>
<td class=c>int8u</td>
<td><span class=s>0 = Off
<br>1 = On</span></td></tr>
-<tr>
+<tr class=b>
<td>'player.movie.audio.pitchshift'</td>
<td>PitchShift</td>
<td class=c>yes</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'player.movie.audio.treble'</td>
<td>Treble</td>
<td class=c>yes</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'player.movie.visual.brightness'</td>
<td>Brightness</td>
<td class=c>yes</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'player.movie.visual.color'</td>
<td>Color</td>
<td class=c>yes</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'player.movie.visual.contrast'</td>
<td>Contrast</td>
<td class=c>yes</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'player.movie.visual.tint'</td>
<td>Tint</td>
<td class=c>yes</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'player.version'</td>
<td>PlayerVersion</td>
<td class=c>yes</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'producer'</td>
<td>Producer</td>
<td class=c>yes</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'publisher'</td>
<td>Publisher</td>
<td class=c>yes</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'rating.user'</td>
<td>UserRating</td>
<td class=c>yes</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'software'</td>
<td>Software</td>
<td class=c>yes</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'still-image-time'</td>
<td>StillImageTime</td>
<td class=c>no</td>
<td><span class=s><span class=n>(this tag always has a value of -1; the time of the still image is obtained
from the associated SampleTime)</span></span></td></tr>
-<tr>
+<tr class=b>
<td>'title'</td>
<td>Title</td>
<td class=c>yes</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'version'</td>
<td>Version</td>
<td class=c>yes</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'video-orientation'</td>
<td>VideoOrientation</td>
<td class=c>no</td>
@@ -1089,7 +1094,7 @@ from the associated SampleTime)</span></span></td></tr>
<br>7 = Mirror horizontal and rotate 90 CW
<br>8 = Rotate 270 CW</td></tr></table>
</td></tr>
-<tr class=b>
+<tr>
<td>'year'</td>
<td>Year</td>
<td class=c>yes</td>
@@ -1705,7 +1710,7 @@ box because Apple software may ignore ItemList tags otherwise, but the API
<td>&nbsp;</td></tr>
<tr>
<td>'atID'</td>
-<td>AlbumTitleID</td>
+<td>ArtistID</td>
<td class=c>int32s</td>
<td>&nbsp;</td></tr>
<tr class=b>
@@ -1719,161 +1724,166 @@ box because Apple software may ignore ItemList tags otherwise, but the API
<td class=c>string</td>
<td>&nbsp;</td></tr>
<tr class=b>
+<td>'cmID'</td>
+<td>ComposerID</td>
+<td class=c>string</td>
+<td>&nbsp;</td></tr>
+<tr>
<td>'cnID'</td>
<td>AppleStoreCatalogID</td>
<td class=c>int32s</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'covr'</td>
<td>CoverArt</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'cpil'</td>
<td>Compilation</td>
<td class=c>int8s</td>
<td><span class=s>0 = No
<br>1 = Yes</span></td></tr>
-<tr>
+<tr class=b>
<td>'cprt'</td>
<td>Copyright</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'desc'</td>
<td>Description</td>
<td class=c title=' / = Avoid'>string/</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'disk'</td>
<td>DiskNumber</td>
<td class=c>undef</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'dscp'</td>
<td>Description</td>
<td class=c title=' / = Avoid'>string/</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'egid'</td>
<td>EpisodeGlobalUniqueID</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'geID'</td>
<td>GenreID</td>
<td class=c>int32s</td>
<td>--&gt; <a href='QuickTime.html#GenreID'>QuickTime GenreID Values</a></td></tr>
-<tr>
+<tr class=b>
<td>'gnre'</td>
<td>Genre</td>
<td class=c title=' / = Avoid'>undef/</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'grup'</td>
<td>Grouping</td>
<td class=c title=' / = Avoid'>string/</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'gshh'</td>
<td>GoogleHostHeader</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'gspm'</td>
<td>GooglePingMessage</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'gspu'</td>
<td>GooglePingURL</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'gssd'</td>
<td>GoogleSourceData</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'gsst'</td>
<td>GoogleStartTime</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'gstd'</td>
<td>GoogleTrackDuration</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'hdvd'</td>
<td>HDVideo</td>
<td class=c>int8s</td>
<td><span class=s>0 = No
<br>1 = Yes</span></td></tr>
-<tr class=b>
+<tr>
<td>'itnu'</td>
<td>iTunesU</td>
<td class=c>int8s</td>
<td><span class=s>0 = No
<br>1 = Yes</span></td></tr>
-<tr>
+<tr class=b>
<td>'keyw'</td>
<td>Keyword</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'ldes'</td>
<td>LongDescription</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'pcst'</td>
<td>Podcast</td>
<td class=c>int8s</td>
<td><span class=s>0 = No
<br>1 = Yes</span></td></tr>
-<tr class=b>
+<tr>
<td>'perf'</td>
<td>Performer</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'pgap'</td>
<td>PlayGap</td>
<td class=c>int8s</td>
<td><span class=s>0 = Insert Gap
<br>1 = No Gap</span></td></tr>
-<tr class=b>
+<tr>
<td>'plID'</td>
-<td>PlayListID</td>
+<td>AlbumID</td>
<td class=c>int32s[2]</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'prID'</td>
<td>ProductID</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'purd'</td>
<td>PurchaseDate</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'purl'</td>
<td>PodcastURL</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'rate'</td>
<td>RatingPercent</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'rldt'</td>
<td>ReleaseDate</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'rtng'</td>
<td>Rating</td>
<td class=c>int8s</td>
@@ -1881,53 +1891,53 @@ box because Apple software may ignore ItemList tags otherwise, but the API
<br>1 = Explicit
<br>2 = Clean
<br>4 = Explicit (old)</span></td></tr>
-<tr>
+<tr class=b>
<td>'sdes'</td>
<td>StoreDescription</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'sfID'</td>
<td>AppleStoreCountry</td>
<td class=c>int32s</td>
<td>--&gt; <a href='QuickTime.html#AppleStoreCountry'>QuickTime AppleStoreCountry Values</a></td></tr>
-<tr>
+<tr class=b>
<td>'shwm'</td>
<td>ShowMovement</td>
<td class=c>int8s</td>
<td><span class=s>0 = No
<br>1 = Yes</span></td></tr>
-<tr class=b>
+<tr>
<td>'soaa'</td>
<td>SortAlbumArtist</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'soal'</td>
<td>SortAlbum</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'soar'</td>
<td>SortArtist</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'soco'</td>
<td>SortComposer</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'sonm'</td>
<td>SortName</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'sosn'</td>
<td>SortShow</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'stik'</td>
<td>MediaType</td>
<td class=c>int8s</td>
@@ -1944,212 +1954,212 @@ box because Apple software may ignore ItemList tags otherwise, but the API
<br>21 = Podcast
<br>23 = iTunes U</td></tr></table>
</td></tr>
-<tr>
+<tr class=b>
<td>'titl'</td>
<td>Title</td>
<td class=c title=' / = Avoid'>string/</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'tmpo'</td>
<td>BeatsPerMinute</td>
<td class=c>int16s</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'trkn'</td>
<td>TrackNumber</td>
<td class=c>undef</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'tven'</td>
<td>TVEpisodeID</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'tves'</td>
<td>TVEpisode</td>
<td class=c>int32s</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'tvnn'</td>
<td>TVNetworkName</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'tvsh'</td>
<td>TVShow</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>'tvsn'</td>
<td>TVSeason</td>
<td class=c>int32u</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>'yrrc'</td>
<td>Year</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>"&copy;ART"</td>
<td>Artist</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>"&copy;alb"</td>
<td>Album</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>"&copy;ard"</td>
<td>ArtDirector</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>"&copy;arg"</td>
<td>Arranger</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>"&copy;aut"</td>
<td>Author</td>
<td class=c title=' / = Avoid'>string/</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>"&copy;cmt"</td>
<td>Comment</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>"&copy;com"</td>
<td>Composer</td>
<td class=c title=' / = Avoid'>string/</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>"&copy;con"</td>
<td>Conductor</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>"&copy;cpy"</td>
<td>Copyright</td>
<td class=c title=' / = Avoid'>string/</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>"&copy;day"</td>
<td>ContentCreateDate</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>"&copy;des"</td>
<td>Description</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>"&copy;dir"</td>
<td>Director</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>"&copy;enc"</td>
<td>EncodedBy</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>"&copy;gen"</td>
<td>Genre</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>"&copy;grp"</td>
<td>Grouping</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>"&copy;lyr"</td>
<td>Lyrics</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>"&copy;mvc"</td>
<td>MovementCount</td>
<td class=c>int16s</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>"&copy;mvi"</td>
<td>MovementNumber</td>
<td class=c>int16s</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>"&copy;mvn"</td>
<td>MovementName</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>"&copy;nam"</td>
<td>Title</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>"&copy;nrt"</td>
<td>Narrator</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>"&copy;ope"</td>
<td>OriginalArtist</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>"&copy;prd"</td>
<td>Producer</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>"&copy;pub"</td>
<td>Publisher</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>"&copy;sne"</td>
<td>SoundEngineer</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>"&copy;sol"</td>
<td>Soloist</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>"&copy;st3"</td>
<td>Subtitle</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>"&copy;too"</td>
<td>Encoder</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>"&copy;trk"</td>
<td>Track</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>"&copy;wrk"</td>
<td>Work</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>"&copy;wrt"</td>
<td>Composer</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td>"&copy;xpd"</td>
<td>ExecutiveProducer</td>
<td class=c>string</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td>"&copy;xyz"</td>
<td>GPSCoordinates</td>
<td class=c>string</td>
@@ -9066,7 +9076,7 @@ yaw, pitch and roll angles in degrees)</span></span></td></tr>
<hr>
(This document generated automatically by Image::ExifTool::BuildTagLookup)
-<br><i>Last revised Jun 28, 2023</i>
+<br><i>Last revised Aug 10, 2023</i>
<p class=lf><a href='index.html'>&lt;-- ExifTool Tag Names</a></p>
</body>
</html>
diff --git a/html/TagNames/Samsung.html b/html/TagNames/Samsung.html
index 080e1736..317fdfd4 100644
--- a/html/TagNames/Samsung.html
+++ b/html/TagNames/Samsung.html
@@ -551,232 +551,232 @@ Samsung S10+.</p>
<tr class=b>
<td>MCCData</td>
<td class=c>no</td>
-<td><span class=s>202 = Greece
- <br>204 = Netherlands
- <br>206 = Belgium
- <br>208 = France
- <br>212 = Monaco
- <br>213 = Andorra
- <br>214 = Spain
- <br>216 = Hungary
- <br>218 = Bosnia &amp; Herzegov.
- <br>219 = Croatia
- <br>220 = Serbia
- <br>221 = Kosovo
- <br>222 = Italy
- <br>226 = Romania
- <br>228 = Switzerland
- <br>230 = Czech Rep.
- <br>231 = Slovakia
- <br>232 = Austria
- <br>234 = United Kingdom
- <br>235 = United Kingdom
- <br>238 = Denmark
- <br>240 = Sweden
- <br>242 = Norway
- <br>244 = Finland
- <br>246 = Lithuania
- <br>247 = Latvia
- <br>248 = Estonia
- <br>250 = Russian Federation
- <br>255 = Ukraine
- <br>257 = Belarus
- <br>259 = Moldova
- <br>260 = Poland
- <br>262 = Germany
- <br>266 = Gibraltar
- <br>268 = Portugal
- <br>270 = Luxembourg
- <br>272 = Ireland
- <br>274 = Iceland
- <br>276 = Albania
- <br>278 = Malta
- <br>280 = Cyprus
- <br>282 = Georgia
- <br>283 = Armenia
- <br>284 = Bulgaria
- <br>286 = Turkey
- <br>288 = Faroe Islands
- <br>289 = Abkhazia
- <br>290 = Greenland
- <br>292 = San Marino
- <br>293 = Slovenia
- <br>294 = Macedonia
- <br>295 = Liechtenstein
- <br>297 = Montenegro
- <br>302 = Canada
- <br>308 = St. Pierre &amp; Miquelon
- <br>310 = United States / Guam
- <br>311 = United States / Guam
- <br>312 = United States
- <br>316 = United States
- <br>330 = Puerto Rico
- <br>334 = Mexico
- <br>338 = Jamaica
- <br>340 = French Guiana / Guadeloupe / Martinique
- <br>342 = Barbados
- <br>344 = Antigua and Barbuda
- <br>346 = Cayman Islands
- <br>348 = British Virgin Islands
- <br>350 = Bermuda
- <br>352 = Grenada
- <br>354 = Montserrat
- <br>356 = Saint Kitts and Nevis
- <br>358 = Saint Lucia
- <br>360 = St. Vincent &amp; Gren.
- <br>362 = Bonaire, Sint Eustatius and Saba / Curacao / Netherlands Antilles
- <br>363 = Aruba
- <br>364 = Bahamas
- <br>365 = Anguilla
- <br>366 = Dominica
- <br>368 = Cuba
- <br>370 = Dominican Republic
- <br>372 = Haiti
- <br>374 = Trinidad and Tobago
- <br>376 = Turks and Caicos Islands / US Virgin Islands
- <br>400 = Azerbaijan
- <br>401 = Kazakhstan
- <br>402 = Bhutan
- <br>404 = India
- <br>405 = India
- <br>410 = Pakistan
- <br>412 = Afghanistan
- <br>413 = Sri Lanka
- <br>414 = Myanmar (Burma)
- <br>415 = Lebanon
- <br>416 = Jordan
- <br>417 = Syrian Arab Republic
- <br>418 = Iraq
- <br>419 = Kuwait
- <br>420 = Saudi Arabia
- <br>421 = Yemen
- <br>422 = Oman
- <br>424 = United Arab Emirates
- <br>425 = Israel / Palestinian Territory
- <br>426 = Bahrain
- <br>427 = Qatar
- <br>428 = Mongolia
- <br>429 = Nepal
- <br>430 = United Arab Emirates
- <br>431 = United Arab Emirates
- <br>432 = Iran
- <br>434 = Uzbekistan
- <br>436 = Tajikistan
- <br>437 = Kyrgyzstan
- <br>438 = Turkmenistan
- <br>440 = Japan
- <br>441 = Japan
- <br>450 = South Korea
- <br>452 = Viet Nam
- <br>454 = Hongkong, China
- <br>455 = Macao, China
- <br>456 = Cambodia
- <br>457 = Laos P.D.R.
- <br>460 = China
- <br>466 = Taiwan
- <br>467 = North Korea
- <br>470 = Bangladesh
- <br>472 = Maldives
- <br>502 = Malaysia
- <br>505 = Australia
- <br>510 = Indonesia
- <br>514 = Timor-Leste
- <br>515 = Philippines
- <br>520 = Thailand
- <br>525 = Singapore
- <br>528 = Brunei Darussalam
- <br>530 = New Zealand
- <br>537 = Papua New Guinea
- <br>539 = Tonga
- <br>540 = Solomon Islands
- <br>541 = Vanuatu
- <br>542 = Fiji
- <br>544 = American Samoa
- <br>545 = Kiribati
- <br>546 = New Caledonia
- <br>547 = French Polynesia
- <br>548 = Cook Islands
- <br>549 = Samoa
- <br>550 = Micronesia
- <br>552 = Palau
- <br>553 = Tuvalu
- <br>555 = Niue
- <br>602 = Egypt
- <br>603 = Algeria
- <br>604 = Morocco
- <br>605 = Tunisia
- <br>606 = Libya
- <br>607 = Gambia
- <br>608 = Senegal
- <br>609 = Mauritania
- <br>610 = Mali
- <br>611 = Guinea
- <br>612 = Ivory Coast
- <br>613 = Burkina Faso
- <br>614 = Niger
- <br>615 = Togo
- <br>616 = Benin
- <br>617 = Mauritius
- <br>618 = Liberia
- <br>619 = Sierra Leone
- <br>620 = Ghana
- <br>621 = Nigeria
- <br>622 = Chad
- <br>623 = Central African Rep.
- <br>624 = Cameroon
- <br>625 = Cape Verde
- <br>626 = Sao Tome &amp; Principe
- <br>627 = Equatorial Guinea
- <br>628 = Gabon
- <br>629 = Congo, Republic
- <br>630 = Congo, Dem. Rep.
- <br>631 = Angola
- <br>632 = Guinea-Bissau
- <br>633 = Seychelles
- <br>634 = Sudan
- <br>635 = Rwanda
- <br>636 = Ethiopia
- <br>637 = Somalia
- <br>638 = Djibouti
- <br>639 = Kenya
- <br>640 = Tanzania
- <br>641 = Uganda
- <br>642 = Burundi
- <br>643 = Mozambique
- <br>645 = Zambia
- <br>646 = Madagascar
- <br>647 = Reunion
- <br>648 = Zimbabwe
- <br>649 = Namibia
- <br>650 = Malawi
- <br>651 = Lesotho
- <br>652 = Botswana
- <br>653 = Swaziland
- <br>654 = Comoros
- <br>655 = South Africa
- <br>657 = Eritrea
- <br>659 = South Sudan
- <br>702 = Belize
- <br>704 = Guatemala
- <br>706 = El Salvador
- <br>708 = Honduras
- <br>710 = Nicaragua
- <br>712 = Costa Rica
- <br>714 = Panama
- <br>716 = Peru
- <br>722 = Argentina Republic
- <br>724 = Brazil
- <br>730 = Chile
- <br>732 = Colombia
- <br>734 = Venezuela
- <br>736 = Bolivia
- <br>738 = Guyana
- <br>740 = Ecuador
- <br>744 = Paraguay
- <br>746 = Suriname
- <br>748 = Uruguay
- <br>750 = Falkland Islands (Malvinas)
- <br>901 = International Networks / Satellite Networks</span></td></tr>
+<td><span class=s>202 = Greece (202)
+ <br>204 = Netherlands (204)
+ <br>206 = Belgium (206)
+ <br>208 = France (208)
+ <br>212 = Monaco (212)
+ <br>213 = Andorra (213)
+ <br>214 = Spain (214)
+ <br>216 = Hungary (216)
+ <br>218 = Bosnia &amp; Herzegov. (218)
+ <br>219 = Croatia (219)
+ <br>220 = Serbia (220)
+ <br>221 = Kosovo (221)
+ <br>222 = Italy (222)
+ <br>226 = Romania (226)
+ <br>228 = Switzerland (228)
+ <br>230 = Czech Rep. (230)
+ <br>231 = Slovakia (231)
+ <br>232 = Austria (232)
+ <br>234 = United Kingdom (234)
+ <br>235 = United Kingdom (235)
+ <br>238 = Denmark (238)
+ <br>240 = Sweden (240)
+ <br>242 = Norway (242)
+ <br>244 = Finland (244)
+ <br>246 = Lithuania (246)
+ <br>247 = Latvia (247)
+ <br>248 = Estonia (248)
+ <br>250 = Russian Federation (250)
+ <br>255 = Ukraine (255)
+ <br>257 = Belarus (257)
+ <br>259 = Moldova (259)
+ <br>260 = Poland (260)
+ <br>262 = Germany (262)
+ <br>266 = Gibraltar (266)
+ <br>268 = Portugal (268)
+ <br>270 = Luxembourg (270)
+ <br>272 = Ireland (272)
+ <br>274 = Iceland (274)
+ <br>276 = Albania (276)
+ <br>278 = Malta (278)
+ <br>280 = Cyprus (280)
+ <br>282 = Georgia (282)
+ <br>283 = Armenia (283)
+ <br>284 = Bulgaria (284)
+ <br>286 = Turkey (286)
+ <br>288 = Faroe Islands (288)
+ <br>289 = Abkhazia (289)
+ <br>290 = Greenland (290)
+ <br>292 = San Marino (292)
+ <br>293 = Slovenia (293)
+ <br>294 = Macedonia (294)
+ <br>295 = Liechtenstein (295)
+ <br>297 = Montenegro (297)
+ <br>302 = Canada (302)
+ <br>308 = St. Pierre &amp; Miquelon (308)
+ <br>310 = United States / Guam (310)
+ <br>311 = United States / Guam (311)
+ <br>312 = United States (312)
+ <br>316 = United States (316)
+ <br>330 = Puerto Rico (330)
+ <br>334 = Mexico (334)
+ <br>338 = Jamaica (338)
+ <br>340 = French Guiana / Guadeloupe / Martinique (340)
+ <br>342 = Barbados (342)
+ <br>344 = Antigua and Barbuda (344)
+ <br>346 = Cayman Islands (346)
+ <br>348 = British Virgin Islands (348)
+ <br>350 = Bermuda (350)
+ <br>352 = Grenada (352)
+ <br>354 = Montserrat (354)
+ <br>356 = Saint Kitts and Nevis (356)
+ <br>358 = Saint Lucia (358)
+ <br>360 = St. Vincent &amp; Gren. (360)
+ <br>362 = Bonaire, Sint Eustatius and Saba / Curacao / Netherlands Antilles (362)
+ <br>363 = Aruba (363)
+ <br>364 = Bahamas (364)
+ <br>365 = Anguilla (365)
+ <br>366 = Dominica (366)
+ <br>368 = Cuba (368)
+ <br>370 = Dominican Republic (370)
+ <br>372 = Haiti (372)
+ <br>374 = Trinidad and Tobago (374)
+ <br>376 = Turks and Caicos Islands / US Virgin Islands (376)
+ <br>400 = Azerbaijan (400)
+ <br>401 = Kazakhstan (401)
+ <br>402 = Bhutan (402)
+ <br>404 = India (404)
+ <br>405 = India (405)
+ <br>410 = Pakistan (410)
+ <br>412 = Afghanistan (412)
+ <br>413 = Sri Lanka (413)
+ <br>414 = Myanmar (Burma) (414)
+ <br>415 = Lebanon (415)
+ <br>416 = Jordan (416)
+ <br>417 = Syrian Arab Republic (417)
+ <br>418 = Iraq (418)
+ <br>419 = Kuwait (419)
+ <br>420 = Saudi Arabia (420)
+ <br>421 = Yemen (421)
+ <br>422 = Oman (422)
+ <br>424 = United Arab Emirates (424)
+ <br>425 = Israel / Palestinian Territory (425)
+ <br>426 = Bahrain (426)
+ <br>427 = Qatar (427)
+ <br>428 = Mongolia (428)
+ <br>429 = Nepal (429)
+ <br>430 = United Arab Emirates (430)
+ <br>431 = United Arab Emirates (431)
+ <br>432 = Iran (432)
+ <br>434 = Uzbekistan (434)
+ <br>436 = Tajikistan (436)
+ <br>437 = Kyrgyzstan (437)
+ <br>438 = Turkmenistan (438)
+ <br>440 = Japan (440)
+ <br>441 = Japan (441)
+ <br>450 = South Korea (450)
+ <br>452 = Viet Nam (452)
+ <br>454 = Hongkong, China (454)
+ <br>455 = Macao, China (455)
+ <br>456 = Cambodia (456)
+ <br>457 = Laos P.D.R. (457)
+ <br>460 = China (460)
+ <br>466 = Taiwan (466)
+ <br>467 = North Korea (467)
+ <br>470 = Bangladesh (470)
+ <br>472 = Maldives (472)
+ <br>502 = Malaysia (502)
+ <br>505 = Australia (505)
+ <br>510 = Indonesia (510)
+ <br>514 = Timor-Leste (514)
+ <br>515 = Philippines (515)
+ <br>520 = Thailand (520)
+ <br>525 = Singapore (525)
+ <br>528 = Brunei Darussalam (528)
+ <br>530 = New Zealand (530)
+ <br>537 = Papua New Guinea (537)
+ <br>539 = Tonga (539)
+ <br>540 = Solomon Islands (540)
+ <br>541 = Vanuatu (541)
+ <br>542 = Fiji (542)
+ <br>544 = American Samoa (544)
+ <br>545 = Kiribati (545)
+ <br>546 = New Caledonia (546)
+ <br>547 = French Polynesia (547)
+ <br>548 = Cook Islands (548)
+ <br>549 = Samoa (549)
+ <br>550 = Micronesia (550)
+ <br>552 = Palau (552)
+ <br>553 = Tuvalu (553)
+ <br>555 = Niue (555)
+ <br>602 = Egypt (602)
+ <br>603 = Algeria (603)
+ <br>604 = Morocco (604)
+ <br>605 = Tunisia (605)
+ <br>606 = Libya (606)
+ <br>607 = Gambia (607)
+ <br>608 = Senegal (608)
+ <br>609 = Mauritania (609)
+ <br>610 = Mali (610)
+ <br>611 = Guinea (611)
+ <br>612 = Ivory Coast (612)
+ <br>613 = Burkina Faso (613)
+ <br>614 = Niger (614)
+ <br>615 = Togo (615)
+ <br>616 = Benin (616)
+ <br>617 = Mauritius (617)
+ <br>618 = Liberia (618)
+ <br>619 = Sierra Leone (619)
+ <br>620 = Ghana (620)
+ <br>621 = Nigeria (621)
+ <br>622 = Chad (622)
+ <br>623 = Central African Rep. (623)
+ <br>624 = Cameroon (624)
+ <br>625 = Cape Verde (625)
+ <br>626 = Sao Tome &amp; Principe (626)
+ <br>627 = Equatorial Guinea (627)
+ <br>628 = Gabon (628)
+ <br>629 = Congo, Republic (629)
+ <br>630 = Congo, Dem. Rep. (630)
+ <br>631 = Angola (631)
+ <br>632 = Guinea-Bissau (632)
+ <br>633 = Seychelles (633)
+ <br>634 = Sudan (634)
+ <br>635 = Rwanda (635)
+ <br>636 = Ethiopia (636)
+ <br>637 = Somalia (637)
+ <br>638 = Djibouti (638)
+ <br>639 = Kenya (639)
+ <br>640 = Tanzania (640)
+ <br>641 = Uganda (641)
+ <br>642 = Burundi (642)
+ <br>643 = Mozambique (643)
+ <br>645 = Zambia (645)
+ <br>646 = Madagascar (646)
+ <br>647 = Reunion (647)
+ <br>648 = Zimbabwe (648)
+ <br>649 = Namibia (649)
+ <br>650 = Malawi (650)
+ <br>651 = Lesotho (651)
+ <br>652 = Botswana (652)
+ <br>653 = Swaziland (653)
+ <br>654 = Comoros (654)
+ <br>655 = South Africa (655)
+ <br>657 = Eritrea (657)
+ <br>659 = South Sudan (659)
+ <br>702 = Belize (702)
+ <br>704 = Guatemala (704)
+ <br>706 = El Salvador (706)
+ <br>708 = Honduras (708)
+ <br>710 = Nicaragua (710)
+ <br>712 = Costa Rica (712)
+ <br>714 = Panama (714)
+ <br>716 = Peru (716)
+ <br>722 = Argentina Republic (722)
+ <br>724 = Brazil (724)
+ <br>730 = Chile (730)
+ <br>732 = Colombia (732)
+ <br>734 = Venezuela (734)
+ <br>736 = Bolivia (736)
+ <br>738 = Guyana (738)
+ <br>740 = Ecuador (740)
+ <br>744 = Paraguay (744)
+ <br>746 = Suriname (746)
+ <br>748 = Uruguay (748)
+ <br>750 = Falkland Islands (Malvinas) (750)
+ <br>901 = International Networks / Satellite Networks (901)</span></td></tr>
<tr>
<td>SingleShotDepthMap</td>
<td class=c>no</td>
@@ -1131,7 +1131,7 @@ such as the Galaxy S4.</p>
<hr>
(This document generated automatically by Image::ExifTool::BuildTagLookup)
-<br><i>Last revised Jun 1, 2022</i>
+<br><i>Last revised Aug 10, 2023</i>
<p class=lf><a href='index.html'>&lt;-- ExifTool Tag Names</a></p>
</body>
</html>
diff --git a/html/TagNames/Sony.html b/html/TagNames/Sony.html
index 9839e119..81f2956a 100644
--- a/html/TagNames/Sony.html
+++ b/html/TagNames/Sony.html
@@ -794,7 +794,11 @@ toward magenta)</span></span></td></tr>
<br>&#39;1 1&#39; = RAW + Standard
<br>&#39;1 2&#39; = RAW + Fine
<br>&#39;1 3&#39; = RAW + Extra Fine
- <br>&#39;1 4&#39; = RAW + Light</td></tr></table>
+ <br>&#39;1 4&#39; = RAW + Light
+ <br>&#39;2 0&#39; = S-size RAW
+ <br>&#39;3 0&#39; = M-size RAW
+ <br>&#39;3 2&#39; = M-size RAW + Fine
+ <br>&#39;3 3&#39; = M-size RAW + Extra Fine</td></tr></table>
</td></tr>
<tr class=b>
<td title='0x202f = 8239'>0x202f</td>
@@ -857,11 +861,13 @@ toward magenta)</span></span></td></tr>
<td title='0x9050 = 36944'>0x9050</td>
<td>Tag9050a
<br>Tag9050b
- <br>Tag9050c</td>
-<td class=c>-<br>-<br>-</td>
+ <br>Tag9050c
+ <br>Tag9050d</td>
+<td class=c>-<br>-<br>-<br>-</td>
<td>--&gt; <a href='Sony.html#Tag9050a'>Sony Tag9050a Tags</a>
<br>--&gt; <a href='Sony.html#Tag9050b'>Sony Tag9050b Tags</a>
- <br>--&gt; <a href='Sony.html#Tag9050c'>Sony Tag9050c Tags</a></td></tr>
+ <br>--&gt; <a href='Sony.html#Tag9050c'>Sony Tag9050c Tags</a>
+ <br>--&gt; <a href='Sony.html#Tag9050d'>Sony Tag9050d Tags</a></td></tr>
<tr class=b>
<td title='0x9400 = 37888'>0x9400</td>
<td>Tag9400a
@@ -1001,9 +1007,9 @@ toward magenta)</span></span></td></tr>
<br>308 = DSC-RX100M2
<br>309 = DSC-RX10
<br>310 = DSC-RX1R
- <br>311 = ILCE-7R</td><td>&nbsp;&nbsp;</td>
- <td>312 = ILCE-6000
- <br>313 = ILCE-5000
+ <br>311 = ILCE-7R
+ <br>312 = ILCE-6000</td><td>&nbsp;&nbsp;</td>
+ <td>313 = ILCE-5000
<br>317 = DSC-RX100M3
<br>318 = ILCE-7S
<br>319 = ILCA-77M2
@@ -1050,6 +1056,7 @@ toward magenta)</span></span></td></tr>
<br>390 = ILCE-7RM5
<br>391 = ILME-FX30
<br>393 = ZV-E1
+ <br>394 = ILCE-6700
<br>395 = ZV-1M2</td></tr></table>
</td></tr>
<tr>
@@ -1311,11 +1318,13 @@ OSS, STF, Reflex, Macro and Fisheye)</span></span></td></tr>
<td><table class=cols><tr>
<td>-32768 = Low
<br>-9 = -9/3
+ <br>-8 = -8/3
+ <br>-7 = -7/3
<br>-6 = -6/3
<br>-5 = -5/3
- <br>-4 = -4/3
- <br>-3 = -3/3</td><td>&nbsp;&nbsp;</td>
- <td>-2 = -2/3
+ <br>-4 = -4/3</td><td>&nbsp;&nbsp;</td>
+ <td>-3 = -3/3
+ <br>-2 = -2/3
<br>-1 = -1/3
<br>0 = Normal
<br>1 = +1/3
@@ -4891,6 +4900,7 @@ multi-frame noise reduction)</span></span></td></tr>
</tr><tr><td>32877</td><td>= Sony E 15mm F1.4 G</td>
</tr><tr><td>32878</td><td>= Sony FE 20-70mm F4 G</td>
</tr><tr><td>32879</td><td>= Sony FE 50mm F1.4 GM</td>
+</tr><tr><td>32884</td><td>= Sony FE 70-200mm F4 Macro G OSS II</td>
</tr><tr><td>33072</td><td>= Sony FE 70-200mm F2.8 GM OSS + 1.4X Teleconverter</td>
</tr><tr><td>33073</td><td>= Sony FE 70-200mm F2.8 GM OSS + 2X Teleconverter</td>
</tr><tr><td>33076</td><td>= Sony FE 100mm F2.8 STF GM OSS (macro mode)</td>
@@ -4902,6 +4912,10 @@ multi-frame noise reduction)</span></span></td></tr>
</tr><tr><td>33082</td><td>= Sony FE 200-600mm F5.6-6.3 G OSS + 2X Teleconverter</td>
</tr><tr><td>33083</td><td>= Sony FE 600mm F4 GM OSS + 1.4X Teleconverter</td>
</tr><tr><td>33084</td><td>= Sony FE 600mm F4 GM OSS + 2X Teleconverter</td>
+</tr><tr><td>33085</td><td>= Sony FE 70-200mm F2.8 GM OSS II + 1.4X Teleconverter</td>
+</tr><tr><td>33086</td><td>= Sony FE 70-200mm F2.8 GM OSS II + 2X Teleconverter</td>
+</tr><tr><td>33087</td><td>= Sony FE 70-200mm F4 Macro G OSS II + 1.4X Teleconverter</td>
+</tr><tr><td>33088</td><td>= Sony FE 70-200mm F4 Macro G OSS II + 2X Teleconverter</td>
</tr><tr><td>49201</td><td>= Zeiss Touit 12mm F2.8</td>
</tr><tr><td>49202</td><td>= Zeiss Touit 32mm F1.8</td>
</tr><tr><td>49203</td><td>= Zeiss Touit 50mm F2.8 Macro</td>
@@ -8465,6 +8479,40 @@ models)</span></span></td></tr>
<td>&nbsp;</td></tr>
</table></td></tr></table></blockquote>
+<h2><a name='Tag9050d'>Sony Tag9050d Tags</a></h2>
+<p>Valid for ILCE-6700/ZV-E1.</p>
+<blockquote>
+<table class=frame><tr><td>
+<table class=inner cellspacing=1>
+<tr class=h><th>Index1</th><th>Tag Name</th>
+<th>Writable</th><th>Values / <span class=n>Notes</span></th></tr>
+<tr>
+<td class=r title='10 = 0xa'>10</td>
+<td>ShutterCount</td>
+<td class=c>int32u</td>
+<td><span class=s><span class=n>(total number of image exposures made by the camera)</span></span></td></tr>
+<tr class=b>
+<td class=r title='26 = 0x1a'>26</td>
+<td>SonyExposureTime</td>
+<td class=c>int16u</td>
+<td>&nbsp;</td></tr>
+<tr>
+<td class=r title='28 = 0x1c'>28</td>
+<td>SonyFNumber</td>
+<td class=c>int16u</td>
+<td>&nbsp;</td></tr>
+<tr class=b>
+<td class=r title='31 = 0x1f'>31</td>
+<td>ReleaseMode2</td>
+<td class=c>int8u</td>
+<td>--&gt; <a href='Sony.html#ReleaseMode2'>Sony ReleaseMode2 Values</a></td></tr>
+<tr>
+<td class=r title='56 = 0x38'>56</td>
+<td>InternalSerialNumber</td>
+<td class=c title=' ~ = Writable only with -n'>int8u[6]~</td>
+<td>&nbsp;</td></tr>
+</table></td></tr></table></blockquote>
+
<h2><a name='Tag9400a'>Sony Tag9400a Tags</a></h2>
<p>Valid for many DSC, NEX and SLT models</p>
<blockquote>
@@ -9269,8 +9317,9 @@ ILCE-7/7M2/7M3/7R/7RM2/7RM3/7RM4/7S/7SM2/9/9M2/5000/5100/6000/6100/6300/
<th>Writable</th><th>Values / <span class=n>Notes</span></th></tr>
<tr>
<td class=r title='5 = 0x5'>5</td>
-<td>BatteryTemperature</td>
-<td class=c>int8u</td>
+<td>BatteryTemperature
+ <br>BatteryLevel</td>
+<td class=c>int8u<br>int8u</td>
<td>&nbsp;</td></tr>
<tr class=b>
<td class=r title='6 = 0x6'>6</td>
@@ -11101,7 +11150,7 @@ ILCE-7/7M2/7M3/7R/7RM2/7RM3/7RM4/7S/7SM2/9/9M2/5000/5100/6000/6100/6300/
</table></td></tr></table></blockquote>
<h2><a name='Tag9416'>Sony Tag9416 Tags</a></h2>
-<p>Valid for the ILCE-1/7M4/7RM5/7SM3, ILME-FX3.</p>
+<p>Valid for the ILCE-1/6700/7M4/7RM5/7SM3, ILME-FX3/FX30, ZV-E1.</p>
<blockquote>
<table class=frame><tr><td>
<table class=inner cellspacing=1>
@@ -11246,21 +11295,39 @@ ILCE-7/7M2/7M3/7R/7RM2/7RM3/7RM4/7S/7SM2/9/9M2/5000/5100/6000/6100/6300/
<td class=c>no</td>
<td>&nbsp;</td></tr>
<tr class=b>
-<td class=r title='2203 = 0x89b'>2203</td>
+<td class=r title='2205 = 0x89d'>2205</td>
<td>VignettingCorrParams</td>
<td class=c>no</td>
<td>&nbsp;</td></tr>
<tr>
+<td class=r title='2229 = 0x8b5'>2229</td>
+<td>APS-CSizeCapture</td>
+<td class=c>no</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr class=b>
+<td class=r title='2231 = 0x8b7'>2231</td>
+<td>APS-CSizeCapture</td>
+<td class=c>no</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr>
+<td class=r title='2277 = 0x8e5'>2277</td>
+<td>APS-CSizeCapture</td>
+<td class=c>no</td>
+<td><span class=s>0 = Off
+ <br>1 = On</span></td></tr>
+<tr class=b>
<td class=r title='2324 = 0x914'>2324</td>
<td>ChromaticAberrationCorrParams</td>
<td class=c>no</td>
<td>&nbsp;</td></tr>
-<tr class=b>
+<tr>
<td class=r title='2326 = 0x916'>2326</td>
<td>ChromaticAberrationCorrParams</td>
<td class=c>no</td>
<td>&nbsp;</td></tr>
-<tr>
+<tr class=b>
<td class=r title='2373 = 0x945'>2373</td>
<td>ChromaticAberrationCorrParams</td>
<td class=c>no</td>
@@ -11968,7 +12035,7 @@ some models when the <a href="../ExifTool.html#ExtractEmbedded">ExtractEmbedded<
<hr>
(This document generated automatically by Image::ExifTool::BuildTagLookup)
-<br><i>Last revised Jun 28, 2023</i>
+<br><i>Last revised Aug 10, 2023</i>
<p class=lf><a href='index.html'>&lt;-- ExifTool Tag Names</a></p>
</body>
</html>
diff --git a/html/TagNames/index.html b/html/TagNames/index.html
index 7a203eab..7e9cb639 100644
--- a/html/TagNames/index.html
+++ b/html/TagNames/index.html
@@ -10,7 +10,7 @@
<h2 class=top>ExifTool Tag Names</h2>
<p>
The tables listed below give the names of all tags recognized by ExifTool.
-They contain a total of 26591 tags, with 16966 unique tag names.
+They contain a total of 26990 tags, with 16972 unique tag names.
</p>
<blockquote>
<table width='100%' class=frame><tr><td>
@@ -245,7 +245,7 @@ ExifTool. A big thanks to everyone who has helped with this so far!)</i>
<hr>
(This document generated automatically by Image::ExifTool::BuildTagLookup)
<br><i>Created Feb 15, 2005</i>
-<br><i>Last revised Jun 28, 2023</i>
+<br><i>Last revised Aug 10, 2023</i>
<p class=lf><a href='../index.html'>&lt;-- Back to ExifTool home page</a></p>
</body>
</html>
diff --git a/html/exiftool_pod.html b/html/exiftool_pod.html
index 0c3c9fd5..c62b5130 100644
--- a/html/exiftool_pod.html
+++ b/html/exiftool_pod.html
@@ -691,7 +691,7 @@
<p>produces output like this:</p>
-<pre><code> -- Generated by ExifTool 12.64 --
+<pre><code> -- Generated by ExifTool 12.65 --
File: a.jpg - 2003:10:31 15:44:19
(f/5.6, 1/60s, ISO 100)
File: b.jpg - 2006:05:23 11:57:38
@@ -1265,10 +1265,10 @@
<dl>
-<dt id="api-OPT-VAL"><b>-api</b> <i>OPT[[^]=[VAL]]</i></dt>
+<dt id="api-OPT-VAL"><b>-api</b> [<i>OPT[[^]=[VAL]]</i>]</dt>
<dd>
-<p>Set ExifTool API option. <i>OPT</i> is an API option name. The option value is set to 1 if <i>=VAL</i> is omitted. If <i>VAL</i> is omitted, the option value is set to undef if <code>=</code> is used, or an empty string with <code>^=</code>. See <a>Image::ExifTool Options</a> for a list of available API options. This overrides API options set via the config file.</p>
+<p>Set ExifTool API option. <i>OPT</i> is an API option name. The option value is set to 1 if <i>=VAL</i> is omitted. If <i>VAL</i> is omitted, the option value is set to undef if <code>=</code> is used, or an empty string with <code>^=</code>. If <i>OPT</i> is not specified a list of available options is returned. See <a>Image::ExifTool Options</a> for option details. This overrides API options set via the config file.</p>
</dd>
<dt id="common_args"><b>-common_args</b></dt>
diff --git a/html/exiftool_pod.pdf b/html/exiftool_pod.pdf
index 66fc9aa2..0d84ec83 100644
--- a/html/exiftool_pod.pdf
+++ b/html/exiftool_pod.pdf
@@ -12,7 +12,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 1)Tj
+( -- ExifTool 12.65 -- 1)Tj
/TT4 1 Tf
0 -1.6333 TD
(EXIFTOOL\(1\) User Contributed Perl Documentation EXIFTOOL\(1\))Tj
@@ -637,7 +637,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 2)Tj
+( -- ExifTool 12.65 -- 2)Tj
/TT4 1 Tf
0 -1.6333 TD
( AVI r | FITS r | MACOS r | PCX r | TIFF r/w)Tj
@@ -834,7 +834,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 3)Tj
+( -- ExifTool 12.65 -- 3)Tj
/TT4 1 Tf
0 -1.6333 TD
( -b \(-binary\) Output metadata in binary format)Tj
@@ -993,7 +993,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 4)Tj
+( -- ExifTool 12.65 -- 4)Tj
/TT4 1 Tf
0 -2.7333 TD
( -geotag TRKFILE Geotag images from specified GPS log)Tj
@@ -1282,7 +1282,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 5)Tj
+( -- ExifTool 12.65 -- 5)Tj
/TT4 1 Tf
0 -1.6333 TD
( excluded\), or to exclude groups from being deleted when deleting)Tj
@@ -1617,7 +1617,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 6)Tj
+( -- ExifTool 12.65 -- 6)Tj
/TT4 1 Tf
0 -1.6333 TD
( assignments affect the same tag, the latter takes precedence)Tj
@@ -1990,7 +1990,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 7)Tj
+( -- ExifTool 12.65 -- 7)Tj
/TT4 1 Tf
0 -1.6333 TD
( is used as a group name, then the specified tag\(s\) are written to)Tj
@@ -2491,7 +2491,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 8)Tj
+( -- ExifTool 12.65 -- 8)Tj
/TT4 1 Tf
0 -1.6333 TD
( 3\) The maker note information is copied as a block, so it isn't)Tj
@@ -2812,7 +2812,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 9)Tj
+( -- ExifTool 12.65 -- 9)Tj
/TT4 1 Tf
0 -1.6333 TD
( --_)Tj
@@ -3265,7 +3265,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 10)Tj
+( -- ExifTool 12.65 -- 10)Tj
/TT4 1 Tf
0 -1.6333 TD
( 3\) This print formatting may be disabled with the -)Tj
@@ -3606,7 +3606,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 11)Tj
+( -- ExifTool 12.65 -- 11)Tj
/TT4 1 Tf
0 -1.6333 TD
( required.)Tj
@@ -3949,7 +3949,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 12)Tj
+( -- ExifTool 12.65 -- 12)Tj
/TT4 1 Tf
0 -1.6333 TD
( effect on date-only or time-only tags and ignores timezone)Tj
@@ -4624,7 +4624,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 13)Tj
+( -- ExifTool 12.65 -- 13)Tj
/TT4 1 Tf
0 -1.6333 TD
( provided, the EXIF/TIFF base offset is used. Use -)Tj
@@ -5139,7 +5139,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 14)Tj
+( -- ExifTool 12.65 -- 14)Tj
/TT4 1 Tf
0 -1.6333 TD
( always English, independent of the -)Tj
@@ -5388,7 +5388,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 15)Tj
+( -- ExifTool 12.65 -- 15)Tj
/TT4 1 Tf
0 -1.6333 TD
( > exiftool -Orientation# -Orientation -S a.jpg)Tj
@@ -5525,7 +5525,7 @@ T*
T*
( produces output like this:)Tj
T*
-( -- Generated by ExifTool 12.64 --)Tj
+( -- Generated by ExifTool 12.65 --)Tj
0 -1.1 TD
( File: a.jpg - 2003:10:31 15:44:19)Tj
T*
@@ -5651,7 +5651,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 16)Tj
+( -- ExifTool 12.65 -- 16)Tj
/TT4 1 Tf
0 -1.6333 TD
( suppress the warning messages.)Tj
@@ -6210,7 +6210,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 17)Tj
+( -- ExifTool 12.65 -- 17)Tj
/TT4 1 Tf
0 -1.6333 TD
( XMP structures and lists are serialized into the same format as)Tj
@@ -6661,7 +6661,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 18)Tj
+( -- ExifTool 12.65 -- 18)Tj
/TT4 1 Tf
0 -2.7333 TD
( 1\) In a Windows BAT file the "%" character is represented by "%%",)Tj
@@ -6806,7 +6806,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 19)Tj
+( -- ExifTool 12.65 -- 19)Tj
/TT4 1 Tf
0 -2.7333 TD
( A special feature allows the copy number to be incremented for)Tj
@@ -7077,7 +7077,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 20)Tj
+( -- ExifTool 12.65 -- 20)Tj
/TT4 1 Tf
0 -2.7333 TD
( -)Tj
@@ -7716,7 +7716,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 21)Tj
+( -- ExifTool 12.65 -- 21)Tj
/TT4 1 Tf
0 -1.6333 TD
( Setting _)Tj
@@ -8201,7 +8201,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 22)Tj
+( -- ExifTool 12.65 -- 22)Tj
/TT4 1 Tf
0 -1.6333 TD
( -)Tj
@@ -8682,7 +8682,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 23)Tj
+( -- ExifTool 12.65 -- 23)Tj
/TT4 1 Tf
0 -1.6333 TD
( $self, and the following special functions are available to allow)Tj
@@ -9079,7 +9079,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 24)Tj
+( -- ExifTool 12.65 -- 24)Tj
/TT4 1 Tf
0 -1.6333 TD
( exists as a directory or if the name ends with '/'. Output)Tj
@@ -9706,7 +9706,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 25)Tj
+( -- ExifTool 12.65 -- 25)Tj
/TT4 1 Tf
0 -1.6333 TD
( total number of files to be processed. Implies the -)Tj
@@ -10151,7 +10151,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 26)Tj
+( -- ExifTool 12.65 -- 26)Tj
/TT4 1 Tf
0 -1.6333 TD
( family 1 group\).)Tj
@@ -10790,7 +10790,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 27)Tj
+( -- ExifTool 12.65 -- 27)Tj
/TT4 1 Tf
0 -1.6333 TD
( -listw -XMP-dc:All # list all writable XMP-dc tags)Tj
@@ -11073,7 +11073,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 28)Tj
+( -- ExifTool 12.65 -- 28)Tj
/TT4 1 Tf
0 -1.6333 TD
( information.)Tj
@@ -11552,7 +11552,7 @@ endobj
endobj
93 0 obj
<<
-/Length 10185
+/Length 10156
>>
stream
BT
@@ -11562,7 +11562,7 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 29)Tj
+( -- ExifTool 12.65 -- 29)Tj
/TT4 1 Tf
0 -2.7333 TD
( _)Tj
@@ -11617,8 +11617,8 @@ T*
0.6 0 TD
(pi)Tj
0.6 0 TD
-(i _)Tj
-1.2 0 TD
+(i [_)Tj
+1.8 0 TD
(O_)Tj
0.6 0 TD
(P_)Tj
@@ -11645,8 +11645,8 @@ T*
0.6 0 TD
(]_)Tj
0.6 0 TD
-(])Tj
--15 -1.1 TD
+(]])Tj
+-15.6 -1.1 TD
( Set ExifTool API option. _)Tj
22.8 0 TD
(O_)Tj
@@ -11673,9 +11673,17 @@ T*
-33.6 -1.1 TD
( option value is set to undef if "=" is used, or an empty string)Tj
T*
-( with "^=". See Image::ExifTool Options for a list of available)Tj
+( with "^=". If _)Tj
+16.2 0 TD
+(O_)Tj
+0.6 0 TD
+(P_)Tj
+0.6 0 TD
+(T is not specified a list of available options is)Tj
+-17.4 -1.1 TD
+( returned. See Image::ExifTool Options for option details. This)Tj
T*
-( API options. This overrides API options set via the config file.)Tj
+( overrides API options set via the config file.)Tj
0 -2.2 TD
( -)Tj
4.2 0 TD
@@ -12338,18 +12346,6 @@ T*
( Read tags from an alternate source file. Among other things, this)Tj
T*
( allows tags from different files to be compared and combined using)Tj
-T*
-( the -)Tj
-9.6 0 TD
-(-i)Tj
-0.6 0 TD
-(if)Tj
-0.6 0 TD
-(f and -)Tj
-3.6 0 TD
-(-p)Tj
-0.6 0 TD
-(p options. Tags from alternate files are accessed)Tj
ET
endstream
endobj
@@ -12367,7 +12363,7 @@ endobj
endobj
96 0 obj
<<
-/Length 7080
+/Length 7240
>>
stream
BT
@@ -12377,11 +12373,23 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 30)Tj
+( -- ExifTool 12.65 -- 30)Tj
/TT4 1 Tf
0 -1.6333 TD
+( the -)Tj
+9.6 0 TD
+(-i)Tj
+0.6 0 TD
+(if)Tj
+0.6 0 TD
+(f and -)Tj
+3.6 0 TD
+(-p)Tj
+0.6 0 TD
+(p options. Tags from alternate files are accessed)Tj
+-15 -1.1 TD
( via the corresponding family 8 group name \(eg. "File1:TAG" for the)Tj
-0 -1.1 TD
+T*
( -)Tj
7.2 0 TD
(-f)Tj
@@ -12830,7 +12838,7 @@ endobj
endobj
99 0 obj
<<
-/Length 8008
+/Length 7951
>>
stream
BT
@@ -12840,9 +12848,9 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 31)Tj
+( -- ExifTool 12.65 -- 31)Tj
/TT4 1 Tf
-0 -1.6333 TD
+0 -2.7333 TD
( 3\) Write "-execute\\n" to _)Tj
22.2 0 TD
(A_)Tj
@@ -13366,8 +13374,6 @@ T*
( expression must be balanced. The example below prints the camera Make)Tj
T*
( with spaces translated to underlines, and multiple consecutive)Tj
-T*
-( underlines replaced by a single underline:)Tj
ET
endstream
endobj
@@ -13385,7 +13391,7 @@ endobj
endobj
103 0 obj
<<
-/Length 4312
+/Length 4289
>>
stream
BT
@@ -13395,11 +13401,13 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 32)Tj
+( -- ExifTool 12.65 -- 32)Tj
/TT4 1 Tf
-0 -2.7333 TD
-( exiftool -p '${make;tr/ /_/;s/__+/_/g}' image.jpg)Tj
+0 -1.6333 TD
+( underlines replaced by a single underline:)Tj
0 -2.2 TD
+( exiftool -p '${make;tr/ /_/;s/__+/_/g}' image.jpg)Tj
+T*
( An "@" may be added after the tag name to make the expression act on)Tj
0 -1.1 TD
( individual list items for list-type tags, simplifying list processing.)Tj
@@ -13563,8 +13571,6 @@ T*
(S)Tj
-15 -1.1 TD
( In Windows, command-line arguments are specified using the current code)Tj
-T*
-( page and are recoded automatically to the system code page. This)Tj
ET
endstream
endobj
@@ -13582,7 +13588,7 @@ endobj
endobj
106 0 obj
<<
-/Length 6885
+/Length 6893
>>
stream
BT
@@ -13592,11 +13598,13 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 33)Tj
+( -- ExifTool 12.65 -- 33)Tj
/TT4 1 Tf
0 -1.6333 TD
-( recoding is not done for arguments in ExifTool arg files, so by default)Tj
+( page and are recoded automatically to the system code page. This)Tj
0 -1.1 TD
+( recoding is not done for arguments in ExifTool arg files, so by default)Tj
+T*
( filenames in arg files use the system code page. Unfortunately, these)Tj
T*
( code pages are not complete character sets, so not all file names may)Tj
@@ -14034,8 +14042,6 @@ T*
( used to avoid processing hidden files \(provided Win32API::File is)Tj
T*
( available\):)Tj
-0 -2.2 TD
-( exiftool -if "$fileattributes !˜ /Hidden/" ...)Tj
ET
endstream
endobj
@@ -14053,7 +14059,7 @@ endobj
endobj
109 0 obj
<<
-/Length 4395
+/Length 4419
>>
stream
BT
@@ -14063,9 +14069,11 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 34)Tj
+( -- ExifTool 12.65 -- 34)Tj
/TT4 1 Tf
-0 -2.7333 TD
+0 -1.6333 TD
+( exiftool -if "$fileattributes !˜ /Hidden/" ...)Tj
+0 -2.2 TD
(R)Tj
0 0 TD
(RE)Tj
@@ -14211,8 +14219,6 @@ T*
( Extract complete XMP data record intact from "a.jpg" and write it)Tj
T*
( to "out.xmp" using the special "XMP" tag \(see the Extra tags in)Tj
-T*
-( Image::ExifTool::TagNames\).)Tj
ET
endstream
endobj
@@ -14230,7 +14236,7 @@ endobj
endobj
112 0 obj
<<
-/Length 4369
+/Length 4424
>>
stream
BT
@@ -14240,9 +14246,11 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 35)Tj
+( -- ExifTool 12.65 -- 35)Tj
/TT4 1 Tf
-0 -2.7333 TD
+0 -1.6333 TD
+( Image::ExifTool::TagNames\).)Tj
+0 -2.2 TD
( exiftool -p '$filename has date $dateTimeOriginal' -q -f dir)Tj
0 -1.1 TD
( Print one line of output containing the file name and)Tj
@@ -14397,7 +14405,7 @@ endobj
endobj
115 0 obj
<<
-/Length 4160
+/Length 4076
>>
stream
BT
@@ -14407,9 +14415,9 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 36)Tj
+( -- ExifTool 12.65 -- 36)Tj
/TT4 1 Tf
-0 -1.6333 TD
+0 -2.7333 TD
( exiftool -all= --jfif:all dst.jpg)Tj
0 -1.1 TD
( Delete all meta information except JFIF group from an image.)Tj
@@ -14515,8 +14523,6 @@ T*
( file. A number of digital cameras store a large PreviewImage)Tj
T*
( after the JPEG EOI, and the file size may be reduced significantly)Tj
-T*
-( by deleting this trailer. See the JPEG Tags documentation for a)Tj
ET
endstream
endobj
@@ -14534,7 +14540,7 @@ endobj
endobj
118 0 obj
<<
-/Length 4774
+/Length 4780
>>
stream
BT
@@ -14544,9 +14550,11 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 37)Tj
+( -- ExifTool 12.65 -- 37)Tj
/TT4 1 Tf
0 -1.6333 TD
+( by deleting this trailer. See the JPEG Tags documentation for a)Tj
+0 -1.1 TD
( list of recognized JPEG trailers.)Tj
0 -2.2 TD
(C)Tj
@@ -14712,8 +14720,6 @@ T*
( Translate IPTC information to XMP with appropriate tag name)Tj
T*
( conversions, and delete the original IPTC information from an)Tj
-T*
-( image. This example uses iptc2xmp.args, which is a file included)Tj
ET
endstream
endobj
@@ -14731,7 +14737,7 @@ endobj
endobj
121 0 obj
<<
-/Length 5484
+/Length 5524
>>
stream
BT
@@ -14741,11 +14747,13 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 38)Tj
+( -- ExifTool 12.65 -- 38)Tj
/TT4 1 Tf
0 -1.6333 TD
-( with the ExifTool distribution that contains the required)Tj
+( image. This example uses iptc2xmp.args, which is a file included)Tj
0 -1.1 TD
+( with the ExifTool distribution that contains the required)Tj
+T*
( arguments to convert IPTC information to XMP format. Also)Tj
T*
( included with the distribution are xmp2iptc.args \(which performs)Tj
@@ -14961,8 +14969,6 @@ T*
( exiftool -directory=%e dir)Tj
0 -1.1 TD
( Move all files from directory "dir" into directories named by the)Tj
-T*
-( original file extensions.)Tj
ET
endstream
endobj
@@ -14980,7 +14986,7 @@ endobj
endobj
124 0 obj
<<
-/Length 4772
+/Length 4779
>>
stream
BT
@@ -14990,9 +14996,11 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 39)Tj
+( -- ExifTool 12.65 -- 39)Tj
/TT4 1 Tf
-0 -2.7333 TD
+0 -1.6333 TD
+( original file extensions.)Tj
+0 -2.2 TD
( exiftool '-Directory<DateTimeOriginal' -d %Y/%m/%d dir)Tj
0 -1.1 TD
( Move all files in "dir" into a directory hierarchy based on year,)Tj
@@ -15138,8 +15146,6 @@ T*
( timezone. If CreateDate already contained a timezone, then the)Tj
T*
( timezone specified on the command line is ignored.)Tj
-0 -2.2 TD
-( exiftool -geotag= a.jpg)Tj
ET
endstream
endobj
@@ -15157,7 +15163,7 @@ endobj
endobj
127 0 obj
<<
-/Length 5729
+/Length 5767
>>
stream
BT
@@ -15167,11 +15173,13 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 40)Tj
+( -- ExifTool 12.65 -- 40)Tj
/TT4 1 Tf
0 -1.6333 TD
-( Delete GPS tags which may have been added by the geotag feature.)Tj
+( exiftool -geotag= a.jpg)Tj
0 -1.1 TD
+( Delete GPS tags which may have been added by the geotag feature.)Tj
+T*
( Note that this does not remove all GPS tags -- to do this instead)Tj
T*
( use "-gps:all=".)Tj
@@ -15578,10 +15586,10 @@ BT
/GS1 gs
0 Tc
0 Tw
-( -- ExifTool 12.64 -- 41)Tj
+( -- ExifTool 12.65 -- 41)Tj
/TT4 1 Tf
-0 -1.6333 TD
-(perl v5.18.4 2023-06-28 EXIFTOOL\(1\))Tj
+0 -2.7333 TD
+(perl v5.18.4 2023-08-10 EXIFTOOL\(1\))Tj
ET
endstream
endobj
@@ -16065,8 +16073,8 @@ endobj
endobj
137 0 obj
<<
-/CreationDate (D:20230628113852-04'00')
-/ModDate (D:20230628113852-04'00')
+/CreationDate (D:20230810125957-04'00')
+/ModDate (D:20230810125957-04'00')
/Producer (Apple pstopdf)
>>
endobj
@@ -16080,151 +16088,151 @@ endobj
xref
0 139
0000000000 65535 f
-0000271002 00000 n
+0000271147 00000 n
0000000016 00000 n
0000007982 00000 n
-0000270013 00000 n
-0000270402 00000 n
-0000269478 00000 n
-0000274544 00000 n
-0000271082 00000 n
+0000270158 00000 n
+0000270547 00000 n
+0000269623 00000 n
+0000274689 00000 n
+0000271227 00000 n
0000008088 00000 n
0000013521 00000 n
-0000271163 00000 n
+0000271308 00000 n
0000013628 00000 n
0000019071 00000 n
-0000271246 00000 n
+0000271391 00000 n
0000019178 00000 n
0000025061 00000 n
-0000271329 00000 n
+0000271474 00000 n
0000025168 00000 n
0000031624 00000 n
-0000271412 00000 n
+0000271557 00000 n
0000031731 00000 n
0000038589 00000 n
-0000271495 00000 n
+0000271640 00000 n
0000038696 00000 n
0000046726 00000 n
-0000271578 00000 n
+0000271723 00000 n
0000046833 00000 n
0000053145 00000 n
-0000271661 00000 n
+0000271806 00000 n
0000053252 00000 n
0000060245 00000 n
-0000271744 00000 n
+0000271889 00000 n
0000060352 00000 n
0000066910 00000 n
-0000271827 00000 n
+0000271972 00000 n
0000067017 00000 n
0000073410 00000 n
-0000275179 00000 n
-0000274679 00000 n
-0000271911 00000 n
+0000275324 00000 n
+0000274824 00000 n
+0000272056 00000 n
0000073517 00000 n
0000082684 00000 n
-0000271995 00000 n
+0000272140 00000 n
0000082791 00000 n
0000090983 00000 n
-0000272079 00000 n
+0000272224 00000 n
0000091090 00000 n
0000095875 00000 n
-0000272163 00000 n
+0000272308 00000 n
0000095982 00000 n
0000101413 00000 n
-0000272247 00000 n
+0000272392 00000 n
0000101520 00000 n
0000109337 00000 n
-0000272331 00000 n
+0000272476 00000 n
0000109444 00000 n
0000116823 00000 n
-0000272415 00000 n
+0000272560 00000 n
0000116930 00000 n
0000121521 00000 n
-0000272499 00000 n
+0000272644 00000 n
0000121628 00000 n
0000127597 00000 n
-0000272583 00000 n
+0000272728 00000 n
0000127704 00000 n
0000136358 00000 n
-0000272667 00000 n
+0000272812 00000 n
0000136465 00000 n
0000144199 00000 n
-0000274817 00000 n
-0000272751 00000 n
+0000274962 00000 n
+0000272896 00000 n
0000144306 00000 n
0000152080 00000 n
-0000272835 00000 n
+0000272980 00000 n
0000152187 00000 n
0000158967 00000 n
-0000272919 00000 n
+0000273064 00000 n
0000159074 00000 n
0000167692 00000 n
-0000273003 00000 n
+0000273148 00000 n
0000167799 00000 n
0000174846 00000 n
-0000273087 00000 n
+0000273232 00000 n
0000174953 00000 n
0000183530 00000 n
-0000273171 00000 n
+0000273316 00000 n
0000183637 00000 n
0000189650 00000 n
-0000273255 00000 n
+0000273400 00000 n
0000189757 00000 n
0000196853 00000 n
-0000273339 00000 n
+0000273484 00000 n
0000196960 00000 n
-0000207199 00000 n
-0000273423 00000 n
-0000207306 00000 n
-0000214439 00000 n
-0000273507 00000 n
-0000214546 00000 n
-0000222607 00000 n
-0000274955 00000 n
-0000273593 00000 n
-0000222715 00000 n
-0000227081 00000 n
-0000273681 00000 n
-0000227189 00000 n
-0000234128 00000 n
-0000273769 00000 n
-0000234236 00000 n
-0000238685 00000 n
-0000273857 00000 n
-0000238793 00000 n
-0000243216 00000 n
-0000273945 00000 n
-0000243324 00000 n
-0000247538 00000 n
-0000274033 00000 n
-0000247646 00000 n
-0000252474 00000 n
-0000274121 00000 n
-0000252582 00000 n
-0000258120 00000 n
-0000274209 00000 n
-0000258228 00000 n
-0000263054 00000 n
-0000274297 00000 n
-0000263162 00000 n
-0000268945 00000 n
-0000274385 00000 n
-0000269053 00000 n
-0000269370 00000 n
-0000275103 00000 n
-0000269618 00000 n
-0000269821 00000 n
-0000274473 00000 n
-0000274502 00000 n
-0000275293 00000 n
-0000275417 00000 n
+0000207170 00000 n
+0000273568 00000 n
+0000207277 00000 n
+0000214570 00000 n
+0000273652 00000 n
+0000214677 00000 n
+0000222681 00000 n
+0000275100 00000 n
+0000273738 00000 n
+0000222789 00000 n
+0000227132 00000 n
+0000273826 00000 n
+0000227240 00000 n
+0000234187 00000 n
+0000273914 00000 n
+0000234295 00000 n
+0000238768 00000 n
+0000274002 00000 n
+0000238876 00000 n
+0000243354 00000 n
+0000274090 00000 n
+0000243462 00000 n
+0000247592 00000 n
+0000274178 00000 n
+0000247700 00000 n
+0000252534 00000 n
+0000274266 00000 n
+0000252642 00000 n
+0000258220 00000 n
+0000274354 00000 n
+0000258328 00000 n
+0000263161 00000 n
+0000274442 00000 n
+0000263269 00000 n
+0000269090 00000 n
+0000274530 00000 n
+0000269198 00000 n
+0000269515 00000 n
+0000275248 00000 n
+0000269763 00000 n
+0000269966 00000 n
+0000274618 00000 n
+0000274647 00000 n
+0000275438 00000 n
+0000275562 00000 n
trailer
<<
/Size 139
/Root 138 0 R
/Info 137 0 R
-/ID [<23daa5af2cb52cf00c93163cfd5467c9><23daa5af2cb52cf00c93163cfd5467c9>]
+/ID [<30fbdee7a34bc67328545f76c21fe329><30fbdee7a34bc67328545f76c21fe329>]
>>
startxref
-275489
+275634
%%EOF
diff --git a/html/history.html b/html/history.html
index 096ebcd9..2799d6be 100644
--- a/html/history.html
+++ b/html/history.html
@@ -17,6 +17,35 @@ considered development releases, and are not uploaded to <a href="https://metacp
<!-- Use line width of 80 -->
<!-- *********************************************************************** -->
+<a name='v12.65'><b>Aug. 10, 2023 - Version 12.65</b></a>
+<ul>
+<li>Added a new QuickTime Keys tag
+<li>Added a new CanonModelID (thanks Laurent Clevy)
+<li>Added a new Canon LensType (thanks Norbert Wasser)
+<li>Added number in brackets to converted Samsung MCCData value
+<li>Decode a number of new Sony tags (thanks Jos Roost)
+<li>Decode a few new FlashPix tags (github #217)
+<li>Improved decoding of Nikon Z9 firmware 4.0 tags (thanks Warren Hatch)
+<li>Improved parsing of PDF:Keywords to support semicolon-separated lists
+<li>Enhanced -api option to show list of available options if no argument is
+ provided
+<li>Lowered priority of IFD1 tags in ARW images so IFD0/SubIFD take precedence
+<li>Changed QuickTime tag names for atID (AlbumTitleID to ArtistID) and plID
+ (PlayListID to AlbumID) (github issue #216), and added cmID (ComposerID)
+<li>Changed Apple:MediaGroupUUID tag name back to ContentIdentifier
+<li>Patched the -d option to handle the %s format code internally when writing
+ (avoids problems due to inconsistent behaviour of this format code in the
+ strptime function on different systems)
+<li>Patched patch of version 12.32 to restore ability to read from named pipes
+<li>Fixed bug which could cause a hang when processing a corrupt BigTIFF image
+<li>Fixed document number for auxiliary image metadata in HEIC files
+<li>Fixed misspelt Apple tag name (thanks Neal Krawetz)
+<li>API Changes:
+ <ul>
+ <li>Added <a href="ExifTool.html#AvailableOptions">AvailableOptions method</a>
+ </ul>
+</ul>
+
<a name='v12.64'><b>June 28, 2023 - Version 12.64</b></a>
<ul>
<li>Added a new Sony LensType (thanks Jos Roost)
diff --git a/html/index.html b/html/index.html
index f21c7bfe..b374d793 100644
--- a/html/index.html
+++ b/html/index.html
@@ -94,9 +94,9 @@ the site with a moderate load. An alternate ExifTool homepage is available at
</div>
<blockquote><table class='dl lg'><tr><td><b>
-<a href="http://sourceforge.net/projects/exiftool/files/Image-ExifTool-12.64.tar.gz/download">
-Download Version 12.64</a> (5.0 MB) -
-<a href="history.html">June 28, 2023</a></b></td></tr></table></blockquote>
+<a href="http://sourceforge.net/projects/exiftool/files/Image-ExifTool-12.65.tar.gz/download">
+Download Version 12.65</a> (5.0 MB) -
+<a href="history.html">Aug. 10, 2023</a></b></td></tr></table></blockquote>
<p><b>ExifTool is a platform-independent <a href="ExifTool.html">Perl
library</a> plus a <a href="exiftool_pod.html">command-line application</a> for
@@ -149,8 +149,8 @@ distribution above.)</i></p>
<blockquote><table class='dl lg'><tr><td><b>
<a name="alone">Windows Executable:</a>
-<a href="http://sourceforge.net/projects/exiftool/files/exiftool-12.64.zip/download">
- exiftool-12.64.zip</a> (6.9 MB)</b></td></tr></table></blockquote>
+<a href="http://sourceforge.net/projects/exiftool/files/exiftool-12.65.zip/download">
+ exiftool-12.65.zip</a> (6.9 MB)</b></td></tr></table></blockquote>
<p><b>The stand-alone Windows executable</b> does not require Perl. Just
download and un-zip the archive then double-click on
@@ -168,7 +168,7 @@ if you have any problems/comments with this version.)</i></p>
<blockquote><table class='dl lg'><tr><td><b>
MacOS Package:
<a href="http://sourceforge.net/projects/exiftool/files/ExifTool-9.70.dmg/download">
- ExifTool-12.64.dmg</a> (3.2 MB)</b></td></tr></table></blockquote>
+ ExifTool-12.65.dmg</a> (3.2 MB)</b></td></tr></table></blockquote>
<p><b>The MacOS package</b> installs the ExifTool command-line application and
libraries in /usr/local/bin. After installing, type "<code>exiftool</code>" in a
diff --git a/html/install.html b/html/install.html
index 0f84aad1..e7bd085c 100644
--- a/html/install.html
+++ b/html/install.html
@@ -52,10 +52,10 @@ documentation or some other files of the full distribution.</p>
<h3>Stand-Alone Executable</h3>
<ol>
<li><b>Download</b> the <b>Windows Executable</b> from the <a href="index.html">ExifTool home page</a>.
-<br><span class=lt>(The file you download should be named "<code>exiftool-12.64.zip</code>".)</span></li>
+<br><span class=lt>(The file you download should be named "<code>exiftool-12.65.zip</code>".)</span></li>
<li><b>Extract "<code>exiftool(-k).exe</code>"</b> from the
"<code>.zip</code>" file, and place it <b>on your Desktop</b>.
-<br><span class=lt>(Double-click on "<code>exiftool-12.64.zip</code>" to open
+<br><span class=lt>(Double-click on "<code>exiftool-12.65.zip</code>" to open
the archive, then drag "<code>exiftool(-k).exe</code>" to your Desktop.)</span></li>
</ol>
<p>You can now double-click on "<code>exiftool(-k).exe</code>" to read the
@@ -109,7 +109,7 @@ can be downloaded from
<a href="http://www.activestate.com/activeperl/">activeperl.com</a>.)</p>
<ol>
<li><b>Download</b> the <b>Image-ExifTool distribution</b> from the <a href="index.html">ExifTool home page</a>
-<br><span class=lt>(The file you download should be named "<code>Image-ExifTool-12.64.tar.gz</code>".)</span></li>
+<br><span class=lt>(The file you download should be named "<code>Image-ExifTool-12.65.tar.gz</code>".)</span></li>
<li><b>Extract the ExifTool files</b> from the archive.
<br><span class=lt>(The archive is a gzipped tar file, and can be opened with
various Windows utilities, including WinZip.)</span></li>
@@ -151,7 +151,7 @@ in the MacOS package. Both versions run natively on PPC and Intel Macs.</p>
<h3>MacOS Package</h3>
<ol>
<li><b>Download</b> the <b>ExifTool MacOS Package</b> from the <a href="index.html">ExifTool home page</a>.
-<br><span class=lt>(The file you download should be named "<code>ExifTool-12.64.dmg</code>".)</span></li>
+<br><span class=lt>(The file you download should be named "<code>ExifTool-12.65.dmg</code>".)</span></li>
<li><b>Install</b> as a normal <b>MacOS package</b>.
<br><span class=lt>(Open the disk image, double-click on the install package, and follow the instructions.
See the second item in the Notes section below if you are stopped with an "unidentified developer" message.)
@@ -167,12 +167,12 @@ See the second item in the Notes section below if you are stopped with an "unide
<ol>
<li><b>Download</b> the <b>Image-ExifTool distribution</b> from the <a href="index.html">ExifTool home page</a>
to your Desktop.
-<br><span class=lt>(The file you download should be named "<code>Image-ExifTool-12.64.tar.gz</code>".)</span></li>
+<br><span class=lt>(The file you download should be named "<code>Image-ExifTool-12.65.tar.gz</code>".)</span></li>
<li><b>Launch</b> the <b>Terminal</b> application from the Utilities folder in your Applications folder.</li>
<li>In the Terminal window, <b>type the following</b>:
<pre class='code'> cd ~/Desktop
- tar -xzf Image-ExifTool-12.64.tar.gz
- cd Image-ExifTool-12.64
+ tar -xzf Image-ExifTool-12.65.tar.gz
+ cd Image-ExifTool-12.65
sudo cp -r exiftool lib /usr/local/bin
</pre>
<span class=lt>(Note: The last step above will require you to enter your
@@ -188,7 +188,7 @@ your Perl version. If both sets of libraries exist, /usr/local/bin/lib takes
precedence for exiftool, but /Library/Perl/#.#.# is the default for any other
Perl scripts.</li>
<li>In MacOS 10.8 or later, you may see this message when you try to open the install package:
-<blockquote class=red>"ExifTool-12.64.pkg" can't be opened because it is from an
+<blockquote class=red>"ExifTool-12.65.pkg" can't be opened because it is from an
unidentified developer.</blockquote> The solution is to control-click on the pkg
then select "Open" from the pop-up menu instead of just double-clicking. An alternative
is to lower the security settings by changing "Allow applications downloaded from" to
@@ -215,11 +215,11 @@ have the wrong "<code>lib</code>" folder.</li>
<ol>
<li><b>Download</b> the <b>Image-ExifTool distribution</b> from the <a href="index.html">ExifTool home page</a>
-<br><span class=lt>(The file you download should be named "<code>Image-ExifTool-12.64.tar.gz</code>".)</span></li>
+<br><span class=lt>(The file you download should be named "<code>Image-ExifTool-12.65.tar.gz</code>".)</span></li>
<li><b>Unpack the distribution</b> and <b>make it your current directory</b> by typing:
<pre class='code'> cd <i>&lt;your download directory&gt;</i>
- gzip -dc Image-ExifTool-12.64.tar.gz | tar -xf -
- cd Image-ExifTool-12.64
+ gzip -dc Image-ExifTool-12.65.tar.gz | tar -xf -
+ cd Image-ExifTool-12.65
</pre>
<span class=lt>(At this point you may run exiftool by typing
"<code>./exiftool <i>&lt;image file name&gt;</i></code>".)</span></li>
diff --git a/html/sample_images.html b/html/sample_images.html
index 0e9921f5..df4f9912 100644
--- a/html/sample_images.html
+++ b/html/sample_images.html
@@ -8,7 +8,7 @@
<body>
<h1 class='up'>ExifTool Meta Information Repository</h1>
<p>The following archives contain sample JPEG images with the original meta
-information from 6985 different models of digital cameras, DV recorders,
+information from 6986 different models of digital cameras, DV recorders,
scanners and cell phones from 106 manufacturers. To conserve space and avoid
copyright problems, the main image has been replaced, and the large preview
image (and any other information found after the JPEG EOI) has been removed.
@@ -370,10 +370,10 @@ repository as more suitable samples become available.</p>
<td align='right'>82 kB&nbsp;</td>
<td>&nbsp;<a href='Skanhex.tar.gz'>Skanhex.tar.gz</a></td>
<td align='center'>2011-06-07</td></tr>
-<tr><td>&nbsp;Sony</td><td align='center'>744</td>
-<td align='right'>8.0 MB&nbsp;</td>
+<tr><td>&nbsp;Sony</td><td align='center'>745</td>
+<td align='right'>8.1 MB&nbsp;</td>
<td>&nbsp;<a href='Sony.tar.gz'>Sony.tar.gz</a></td>
-<td align='center'>2023-03-30</td></tr>
+<td align='center'>2023-07-21</td></tr>
<tr><td>&nbsp;Sony Ericsson</td><td align='center'>196</td>
<td align='right'>3.4 MB&nbsp;</td>
<td>&nbsp;<a href='SonyEricsson.tar.gz'>SonyEricsson.tar.gz</a></td>
@@ -446,12 +446,12 @@ repository as more suitable samples become available.</p>
<td align='right'>351 kB&nbsp;</td>
<td>&nbsp;<a href='ZTE.tar.gz'>ZTE.tar.gz</a></td>
<td align='center'>2015-07-27</td></tr>
-<tr bgcolor='#dddddd'><th>Total</th><td align='center'>6985 models</td>
+<tr bgcolor='#dddddd'><th>Total</th><td align='center'>6986 models</td>
<td align='right'>143.1 MB&nbsp;</td><td align='center'>106 makes</td>
-<td align='center'>2023-06-14</td></tr>
+<td align='center'>2023-07-21</td></tr>
</table></blockquote><hr>
<i>Created May 15, 2006</i><br>
-<i>Last revised Jun 14, 2023</i>
+<i>Last revised Jul 21, 2023</i>
<p class='lf'><a href='index.html'>&lt;-- Back to ExifTool home page</a></p>
</body>
</html>
diff --git a/lib/Image/ExifTool.pm b/lib/Image/ExifTool.pm
index 753dfeda..e22e73c5 100644
--- a/lib/Image/ExifTool.pm
+++ b/lib/Image/ExifTool.pm
@@ -29,7 +29,7 @@ use vars qw($VERSION $RELEASE @ISA @EXPORT_OK %EXPORT_TAGS $AUTOLOAD @fileTypes
%jpegMarker %specialTags %fileTypeLookup $testLen $exeDir
%static_vars);
-$VERSION = '12.64';
+$VERSION = '12.65';
$RELEASE = '';
@ISA = qw(Exporter);
%EXPORT_TAGS = (
@@ -126,7 +126,7 @@ sub MakeTiffHeader($$$$;$$);
sub SplitFileName($);
sub EncodeFileName($$;$);
sub Open($*$;$);
-sub Exists($$);
+sub Exists($$;$);
sub IsDirectory($$);
sub Rename($$$);
sub Unlink($@);
@@ -1052,6 +1052,93 @@ my %xmpShorthandOpt = ( 0 => 'None', 1 => 'Shorthand', 2 => ['Shorthand','OneDes
maccroatian => 'MacCroatian', cp10082 => 'MacCroatian',
);
+# list of available options
+# +-----------------------------------------------------+
+# ! DON'T FORGET!! When adding any new option, must !
+# ! decide how it is handled in SetNewValuesFromFile() !
+# +-----------------------------------------------------+
+# (Note: All options must exist in this lookup, even if undefined,
+# to facilitate case-insensitive options. 'Group#' is handled specially)
+my @availableOptions = (
+ [ 'Binary', undef, 'flag to extract binary values even if tag not specified' ],
+ [ 'ByteOrder', undef, 'default byte order when creating EXIF information' ],
+ [ 'Charset', 'UTF8', 'character set for converting Unicode characters' ],
+ [ 'CharsetEXIF', undef, 'internal EXIF "ASCII" string encoding' ],
+ [ 'CharsetFileName', undef, 'external encoding for file names' ],
+ [ 'CharsetID3', 'Latin','internal ID3v1 character set' ],
+ [ 'CharsetIPTC', 'Latin','fallback IPTC character set if no CodedCharacterSet' ],
+ [ 'CharsetPhotoshop', 'Latin','internal encoding for Photoshop resource names' ],
+ [ 'CharsetQuickTime', 'MacRoman', 'internal QuickTime string encoding' ],
+ [ 'CharsetRIFF', 0, 'internal RIFF string encoding (0=default to Latin)' ],
+ [ 'Compact', { }, 'write compact XMP' ],
+ [ 'Composite', 1, 'flag to calculate Composite tags' ],
+ [ 'Compress', undef, 'flag to write new values as compressed if possible' ],
+ [ 'CoordFormat', undef, 'GPS lat/long coordinate format' ],
+ [ 'DateFormat', undef, 'format for date/time' ],
+ [ 'Duplicates', 1, 'flag to save duplicate tag values' ],
+ [ 'Escape', undef, 'escape special characters' ],
+ [ 'Exclude', undef, 'tags to exclude' ],
+ [ 'ExtendedXMP', 1, 'strategy for reading extended XMP' ],
+ [ 'ExtractEmbedded', undef, 'flag to extract information from embedded documents' ],
+ [ 'FastScan', undef, 'flag to avoid scanning for trailer' ],
+ [ 'Filter', undef, 'output filter for all tag values' ],
+ [ 'FilterW', undef, 'input filter when writing tag values' ],
+ [ 'FixBase', undef, 'fix maker notes base offsets' ],
+ [ 'GeoMaxIntSecs', 1800, 'geotag maximum interpolation time (secs)' ],
+ [ 'GeoMaxExtSecs', 1800, 'geotag maximum extrapolation time (secs)' ],
+ [ 'GeoMaxHDOP', undef, 'geotag maximum HDOP' ],
+ [ 'GeoMaxPDOP', undef, 'geotag maximum PDOP' ],
+ [ 'GeoMinSats', undef, 'geotag minimum satellites' ],
+ [ 'GeoSpeedRef', undef, 'geotag GPSSpeedRef' ],
+ [ 'GlobalTimeShift', undef, 'apply time shift to all extracted date/time values' ],
+ [ 'Group#', undef, 'return tags for specified groups in family #' ],
+ [ 'HexTagIDs', 0, 'use hex tag ID\'s in family 7 group names' ],
+ [ 'HtmlDump', 0, 'HTML dump (0-3, higher # = bigger limit)' ],
+ [ 'HtmlDumpBase', undef, 'base address for HTML dump' ],
+ [ 'IgnoreMinorErrors',undef, 'ignore minor errors when reading/writing' ],
+ [ 'IgnoreTags', undef, 'list of tags to ignore when extracting' ],
+ [ 'ImageHashType', 'MD5', 'image hash algorithm' ],
+ [ 'Lang', $defaultLang, 'localized language for descriptions etc' ],
+ [ 'LargeFileSupport', undef, 'flag indicating support of 64-bit file offsets' ],
+ [ 'List', undef, '[deprecated, use ListSplit and ListJoin instead]' ],
+ [ 'ListItem', undef, 'used to return a specific item from lists' ],
+ [ 'ListJoin', ', ', 'join lists together with this separator' ],
+ [ 'ListSep', ', ', '[deprecated, use ListSplit and ListJoin instead]' ],
+ [ 'ListSplit', undef, 'regex for splitting list-type tag values when writing' ],
+ [ 'MakerNotes', undef, 'extract maker notes as a block' ],
+ [ 'MDItemTags', undef, 'extract MacOS metadata item tags' ],
+ [ 'MissingTagValue', undef, 'value for missing tags when expanded in expressions' ],
+ [ 'NoMultiExif', undef, 'raise error when writing multi-segment EXIF' ],
+ [ 'NoPDFList', undef, 'flag to avoid splitting PDF List-type tag values' ],
+ [ 'NoWarning', undef, 'regular expression for warnings to suppress' ],
+ [ 'Password', undef, 'password for password-protected PDF documents' ],
+ [ 'PrintConv', 1, 'flag to enable print conversion' ],
+ [ 'QuickTimeHandler', 1, 'flag to add mdir Handler to newly created Meta box' ],
+ [ 'QuickTimePad', undef, 'flag to preserve padding of QuickTime CR3 tags' ],
+ [ 'QuickTimeUTC', undef, 'assume that QuickTime date/time tags are stored as UTC' ],
+ [ 'RequestAll', undef, 'extract all tags that must be specifically requested' ],
+ [ 'RequestTags', undef, 'extra tags to request (on top of those in the tag list)' ],
+ [ 'SaveFormat', undef, 'save family 6 tag TIFF format' ],
+ [ 'SavePath', undef, 'save family 5 location path' ],
+ [ 'ScanForXMP', undef, 'flag to scan for XMP information in all files' ],
+ [ 'Sort', 'Input','order to sort found tags (Input, File, Tag, Descr, Group#)' ],
+ [ 'Sort2', 'File', 'secondary sort order for tags in a group (File, Tag, Descr)' ],
+ [ 'StrictDate', undef, 'flag to return undef for invalid date conversions' ],
+ [ 'Struct', undef, 'return structures as hash references' ],
+ [ 'StructFormat', undef, 'format for structure serialization when reading/writing' ],
+ [ 'SystemTags', undef, 'extract additional File System tags' ],
+ [ 'TextOut', \*STDOUT, 'file for Verbose/HtmlDump output' ],
+ [ 'TimeZone', undef, 'local time zone' ],
+ [ 'Unknown', 0, 'flag to get values of unknown tags (0-2)' ],
+ [ 'UserParam', { }, 'user parameters for additional user-defined tag values' ],
+ [ 'Validate', undef, 'perform additional validation' ],
+ [ 'Verbose', 0, 'print verbose messages (0-5, higher # = more verbose)' ],
+ [ 'WriteMode', 'wcg', 'enable all write modes by default' ],
+ [ 'XAttrTags', undef, 'extract MacOS extended attribute tags' ],
+ [ 'XMPAutoConv', 1, 'automatic conversion of unknown XMP tag values' ],
+ [ 'XMPShorthand', 0, '[deprecated, use Compact=Shorthand instead]' ],
+);
+
# default family 0 group priority for writing
# (NOTE: tags in groups not specified here will not be written unless
# overridden by the module or specified when writing)
@@ -2368,92 +2455,11 @@ sub ClearOptions($)
local $_;
my $self = shift;
- # create options hash with default values
- # +-----------------------------------------------------+
- # ! DON'T FORGET!! When adding any new option, must !
- # ! decide how it is handled in SetNewValuesFromFile() !
- # +-----------------------------------------------------+
- # (Note: All options must exist in this lookup, even if undefined,
- # to facilitate case-insensitive options. 'Group#' is handled specially)
- $$self{OPTIONS} = {
- Binary => undef, # flag to extract binary values even if tag not specified
- ByteOrder => undef, # default byte order when creating EXIF information
- Charset => 'UTF8', # character set for converting Unicode characters
- CharsetEXIF => undef, # internal EXIF "ASCII" string encoding
- CharsetFileName => undef, # external encoding for file names
- CharsetID3 => 'Latin', # internal ID3v1 character set
- CharsetIPTC => 'Latin', # fallback IPTC character set if no CodedCharacterSet
- CharsetPhotoshop => 'Latin', # internal encoding for Photoshop resource names
- CharsetQuickTime => 'MacRoman', # internal QuickTime string encoding
- CharsetRIFF => 0, # internal RIFF string encoding (0=default to Latin)
- Compact => { }, # write compact XMP
- Composite => 1, # flag to calculate Composite tags
- Compress => undef, # flag to write new values as compressed if possible
- CoordFormat => undef, # GPS lat/long coordinate format
- DateFormat => undef, # format for date/time
- Duplicates => 1, # flag to save duplicate tag values
- Escape => undef, # escape special characters
- Exclude => undef, # tags to exclude
- ExtendedXMP => 1, # strategy for reading extended XMP
- ExtractEmbedded =>undef,# flag to extract information from embedded documents
- FastScan => undef, # flag to avoid scanning for trailer
- Filter => undef, # output filter for all tag values
- FilterW => undef, # input filter when writing tag values
- FixBase => undef, # fix maker notes base offsets
- GeoMaxIntSecs => 1800, # geotag maximum interpolation time (secs)
- GeoMaxExtSecs => 1800, # geotag maximum extrapolation time (secs)
- GeoMaxHDOP => undef, # geotag maximum HDOP
- GeoMaxPDOP => undef, # geotag maximum PDOP
- GeoMinSats => undef, # geotag minimum satellites
- GeoSpeedRef => undef, # geotag GPSSpeedRef
- GlobalTimeShift => undef, # apply time shift to all extracted date/time values
- # Group# => undef, # return tags for specified groups in family #
- HexTagIDs => 0, # use hex tag ID's in family 7 group names
- HtmlDump => 0, # HTML dump (0-3, higher # = bigger limit)
- HtmlDumpBase => undef, # base address for HTML dump
- IgnoreMinorErrors => undef, # ignore minor errors when reading/writing
- IgnoreTags => undef, # list of tags to ignore when extracting
- ImageHashType => 'MD5', # image hash algorithm
- Lang => $defaultLang,# localized language for descriptions etc
- LargeFileSupport => undef, # flag indicating support of 64-bit file offsets
- List => undef, # extract lists of PrintConv values into arrays [no longer documented]
- ListItem => undef, # used to return a specific item from lists
- ListJoin => ', ', # join lists together with this separator
- ListSep => ', ', # list item separator [no longer documented]
- ListSplit => undef, # regex for splitting list-type tag values when writing
- MakerNotes => undef, # extract maker notes as a block
- MDItemTags => undef, # extract MacOS metadata item tags
- MissingTagValue =>undef,# value for missing tags when expanded in expressions
- NoMultiExif => undef, # raise error when writing multi-segment EXIF
- NoPDFList => undef, # flag to avoid splitting PDF List-type tag values
- NoWarning => undef, # regular expression for warnings to suppress
- Password => undef, # password for password-protected PDF documents
- PrintConv => 1, # flag to enable print conversion
- QuickTimeHandler => 1, # flag to add mdir Handler to newly created Meta box
- QuickTimePad=> undef, # flag to preserve padding of QuickTime CR3 tags
- QuickTimeUTC=> undef, # assume that QuickTime date/time tags are stored as UTC
- RequestAll => undef, # extract all tags that must be specifically requested
- RequestTags => undef, # extra tags to request (on top of those in the tag list)
- SaveFormat => undef, # save family 6 tag TIFF format
- SavePath => undef, # save family 5 location path
- ScanForXMP => undef, # flag to scan for XMP information in all files
- Sort => 'Input', # order to sort found tags (Input, File, Tag, Descr, Group#)
- Sort2 => 'File', # secondary sort order for tags in a group (File, Tag, Descr)
- StrictDate => undef, # flag to return undef for invalid date conversions
- Struct => undef, # return structures as hash references
- StructFormat=> undef, # format for structure serialization when reading/writing
- SystemTags => undef, # extract additional File System tags
- TextOut => \*STDOUT,# file for Verbose/HtmlDump output
- TimeZone => undef, # local time zone
- Unknown => 0, # flag to get values of unknown tags (0-2)
- UserParam => { }, # user parameters for additional user-defined tag values
- Validate => undef, # perform additional validation
- Verbose => 0, # print verbose messages (0-5, higher # = more verbose)
- WriteMode => 'wcg', # enable all write modes by default
- XAttrTags => undef, # extract MacOS extended attribute tags
- XMPAutoConv => 1, # automatic conversion of unknown XMP tag values
- XMPShorthand=> 0, # (unused, but needed for backward compatibility)
- };
+ $$self{OPTIONS} = { }; # clear all options
+
+ # load default options
+ $$self{OPTIONS}{$$_[0]} = $$_[1] foreach @availableOptions;
+
# keep necessary member variables in sync with options
delete $$self{CUR_LANG};
delete $$self{ESCAPE_PROC};
@@ -3891,6 +3897,15 @@ sub GetCompositeTagInfo($)
}
#------------------------------------------------------------------------------
+# Return List ExifTool API options
+# Returns: 0) reference to list of available options -- each entry is a list
+# [0=option name, 1=default value, 2=description]
+sub AvailableOptions()
+{
+ return \@availableOptions;
+}
+
+#------------------------------------------------------------------------------
# Get tag name (removes copy index)
# Inputs: 0) Tag key
# Returns: Tag name
@@ -4374,11 +4389,11 @@ sub Open($*$;$)
#------------------------------------------------------------------------------
# Check to see if a file exists (with Windows Unicode support)
-# Inputs: 0) ExifTool ref, 1) file name
+# Inputs: 0) ExifTool ref, 1) file name, 2) flag if we are writing this file
# Returns: true if file exists
-sub Exists($$)
+sub Exists($$;$)
{
- my ($self, $file) = @_;
+ my ($self, $file, $writing) = @_;
if ($self->EncodeFileName($file)) {
local $SIG{'__WARN__'} = \&SetWarning;
@@ -4388,10 +4403,12 @@ sub Exists($$)
Win32API::File::OPEN_EXISTING(), 0, []) };
return 0 unless $wh;
eval { Win32API::File::CloseHandle($wh) };
- } else {
+ } elsif ($writing) {
# (named pipes already exist, but we pretend that they don't
# so we will be able to write them, so test with for pipe -p)
return(-e $file and not -p $file);
+ } else {
+ return(-e $file);
}
return 1;
}
@@ -4894,6 +4911,7 @@ sub SetFoundTags($)
$groupList = [ $$options{$groupOpt} ];
}
foreach (@$groupList) {
+ next unless defined $_;
# groups have priority in order they were specified
++$wantOrder;
my ($groupName, $want);
@@ -7836,6 +7854,8 @@ sub DoProcessTIFF($$;$)
return 1;
}
}
+ } elsif ($fileType eq 'ARW') {
+ $$self{LOW_PRIORITY_DIR}{IFD1} = 1; # lower priority of IFD1 tags in ARW files
}
# we have a valid TIFF (or whatever) file
if ($fileType and not $$self{VALUE}{FileType}) {
diff --git a/lib/Image/ExifTool.pod b/lib/Image/ExifTool.pod
index e62d7237..5be1ed33 100644
--- a/lib/Image/ExifTool.pod
+++ b/lib/Image/ExifTool.pod
@@ -1463,7 +1463,9 @@ value should always exist if the tag exists.
Set the new value for a tag. The routine may be called multiple times to
set the values of many tags before using L</WriteInfo> to write the new
-values to an image.
+values to an image. These values remain queued for writing to subsequent
+files until L</SetNewValue> is called without arguments to reset the queued
+values.
For list-type tags (like Keywords), either call repeatedly with the same tag
name for each value, or call with a reference to the list of values.
@@ -2273,6 +2275,29 @@ within L</ImageInfo>, before the file is closed.
=back
+=head2 AvailableOptions [static]
+
+Get a list of available API options. (See L</Options> for option details.)
+
+=over 4
+
+=item Inputs:
+
+(none)
+
+=item Return Values:
+
+Reference to list of available options. Each entry in the list is a list
+reference with 3 items: 0=Option name, 1=Default value, 2=Description.
+
+ my $opts = Image::ExifTool::<b>AvailableOptions</b>();
+ foreach (@$opts) {
+ my ($optionName, $defaultValue, $description) = @$_;
+ ...
+ }
+
+=back
+
=head2 GetTagName [static]
Get name of tag from tag key. This is a convenience function that
diff --git a/lib/Image/ExifTool/Apple.pm b/lib/Image/ExifTool/Apple.pm
index 8294ea89..1e91ac9f 100644
--- a/lib/Image/ExifTool/Apple.pm
+++ b/lib/Image/ExifTool/Apple.pm
@@ -16,7 +16,7 @@ use vars qw($VERSION);
use Image::ExifTool::Exif;
use Image::ExifTool::PLIST;
-$VERSION = '1.09';
+$VERSION = '1.10';
sub ConvertPLIST($$);
@@ -110,9 +110,13 @@ sub ConvertPLIST($$);
},
# 0x0010 - int32s: 1 (SphereStatus, ref 2)
0x0011 => { # (if defined, there is a live photo associated with the video, #forum13565) (AssetIdentifier, ref 2)
- Name => 'MediaGroupUUID', #NealKrawetz private communication
- # (changed in 12.19 from Name => 'ContentIdentifier', #forum8750)
+ Name => 'ContentIdentifier',
+ Notes => 'called MediaGroupUUID when it appears as an XAttr',
+ # - originally called ContentIdentifier, forum8750
+ # - changed in 12.19 to MediaGroupUUID, NealKrawetz private communication
+ # - changed back to ContentIdentifier since Apple writes this to Keys content.identifier (forum14874)
Writable => 'string',
+
},
# 0x0012 - (QRMOutputType, ref 2)
# 0x0013 - (SphereExternalForceOffset, ref 2)
@@ -127,7 +131,7 @@ sub ConvertPLIST($$);
Writable => 'string',
},
# 0x0016 - string[29]: "AXZ6pMTOh2L+acSh4Kg630XCScoO\0" (PhotosOriginatingSignature, ref 2)
- 0x0017 => { #forum13565 (only valid if MediaGroupUUID exists) (StillImageCaptureFlags, ref 2)
+ 0x0017 => { #forum13565 (only valid if MediaGroupUUID/ContentIdentifier exists) (StillImageCaptureFlags, ref 2)
Name => 'LivePhotoVideoIndex',
Notes => 'divide by RunTimeScale to get time in seconds',
},
@@ -153,7 +157,7 @@ sub ConvertPLIST($$);
# 0x001e - (OriginatingAppID, ref 2)
# 0x001f - int32s: 0,1 (PhotosAppFeatureFlags, ref 2)
0x0020 => { # (ImageCaptureRequestIdentifier, ref 2)
- Name => 'ImageCaptureReqestID',
+ Name => 'ImageCaptureRequestID',
Writable => 'string',
Unknown => 1,
},
diff --git a/lib/Image/ExifTool/BigTIFF.pm b/lib/Image/ExifTool/BigTIFF.pm
index e265b1d7..11c432cd 100644
--- a/lib/Image/ExifTool/BigTIFF.pm
+++ b/lib/Image/ExifTool/BigTIFF.pm
@@ -15,7 +15,7 @@ use vars qw($VERSION);
use Image::ExifTool qw(:DataAccess :Utils);
use Image::ExifTool::Exif;
-$VERSION = '1.07';
+$VERSION = '1.08';
my $maxOffset = 0x7fffffff; # currently supported maximum data offset/size
@@ -216,6 +216,13 @@ sub ProcessBigIFD($$$)
$dirStart = Image::ExifTool::Get64u(\$nextIFD, 0);
$dirStart or last;
$offName = $nextOffName;
+ # protect against infinite loop
+ if ($$et{PROCESSED}{$dirStart}) {
+ $et->Warn("$dirName pointer references previous $$et{PROCESSED}{$dirStart} directory");
+ last;
+ } else {
+ $$et{PROCESSED}{$dirStart} = $dirName;
+ }
}
return 1;
}
diff --git a/lib/Image/ExifTool/Canon.pm b/lib/Image/ExifTool/Canon.pm
index 30ba70ab..f05fd7b0 100644
--- a/lib/Image/ExifTool/Canon.pm
+++ b/lib/Image/ExifTool/Canon.pm
@@ -88,7 +88,7 @@ sub ProcessCTMD($$$);
sub ProcessExifInfo($$$);
sub SwapWords($);
-$VERSION = '4.66';
+$VERSION = '4.67';
# Note: Removed 'USM' from 'L' lenses since it is redundant - PH
# (or is it? Ref 32 shows 5 non-USM L-type lenses)
@@ -476,6 +476,7 @@ $VERSION = '4.66';
255.1 => 'Sigma 180mm f/2.8 EX DG OS HSM APO Macro', #50
255.2 => 'Tamron SP 70-200mm f/2.8 Di VC USD', #exiv issue 1202 (A009)
255.3 => 'Yongnuo YN 50mm f/1.8', #50
+ 313 => 'Canon RF 28mm F2.8 STM', #42
368 => 'Sigma 14-24mm f/2.8 DG HSM | A or other Sigma Lens', #IB (A018)
368.1 => 'Sigma 20mm f/1.4 DG HSM | A', #50 (newer firmware)
368.2 => 'Sigma 50mm f/1.4 DG HSM | A', #50
@@ -983,6 +984,7 @@ $VERSION = '4.66';
0x80000480 => 'EOS R50', #42
0x80000481 => 'EOS R6 Mark II', #42
0x80000487 => 'EOS R8', #42
+ 0x80000491 => 'PowerShot V10', #25
0x80000520 => 'EOS D2000C', #IB
0x80000560 => 'EOS D6000C', #PH (guess)
);
diff --git a/lib/Image/ExifTool/FlashPix.pm b/lib/Image/ExifTool/FlashPix.pm
index c985a998..6ca1f952 100644
--- a/lib/Image/ExifTool/FlashPix.pm
+++ b/lib/Image/ExifTool/FlashPix.pm
@@ -11,6 +11,7 @@
# 4) http://msdn.microsoft.com/en-us/library/aa380374.aspx
# 5) http://www.cpan.org/modules/by-authors/id/H/HC/HCARVEY/File-MSWord-0.1.zip
# 6) https://msdn.microsoft.com/en-us/library/cc313153(v=office.12).aspx
+# 7) https://learn.microsoft.com/en-us/openspecs/office_file_formats/ms-oshared/3ef02e83-afef-4b6c-9585-c109edd24e07
#------------------------------------------------------------------------------
package Image::ExifTool::FlashPix;
@@ -21,7 +22,7 @@ use Image::ExifTool qw(:DataAccess :Utils);
use Image::ExifTool::Exif;
use Image::ExifTool::ASF; # for GetGUID()
-$VERSION = '1.45';
+$VERSION = '1.46';
sub ProcessFPX($$);
sub ProcessFPXR($$$);
@@ -587,6 +588,7 @@ my %fpxFileType = (
However, ExifTool will also extract any other information found in the
UserDefined properties.
},
+ # 0x01 => 'CodePage', #7
0x02 => 'Category',
0x03 => 'PresentationTarget',
0x04 => 'Bytes',
@@ -631,12 +633,16 @@ my %fpxFileType = (
Name => 'AppVersion',
ValueConv => 'sprintf("%d.%.4d",$val >> 16, $val & 0xffff)',
},
- # 0x18 ? seen -1
+ # 0x18 ? seen -1 (DigitalSignature, VtDigSig format, ref 7)
# 0x19 ? seen 0
# 0x1a ? seen 0
# 0x1b ? seen 0
# 0x1c ? seen 0,1
# 0x1d ? seen 1
+ 0x1a => 'ContentType', #7, github#217
+ 0x1b => 'ContentStatus', #7, github#217
+ 0x1c => 'Language', #7, github#217
+ 0x1d => 'DocVersion', #7, github#217
# 0x1e ? seen 1
# 0x1f ? seen 1,5
# 0x20 ? seen 0,5
diff --git a/lib/Image/ExifTool/Nikon.pm b/lib/Image/ExifTool/Nikon.pm
index 063466dd..2d00783c 100644
--- a/lib/Image/ExifTool/Nikon.pm
+++ b/lib/Image/ExifTool/Nikon.pm
@@ -65,7 +65,7 @@ use Image::ExifTool::Exif;
use Image::ExifTool::GPS;
use Image::ExifTool::XMP;
-$VERSION = '4.23';
+$VERSION = '4.24';
sub LensIDConv($$$);
sub ProcessNikonAVI($$$);
@@ -932,6 +932,14 @@ my %hDMIOutputResolutionZ9 = (
#7 => '480p',
);
+my %hdrLevelZ8 = (
+ 0 => 'Auto',
+ 1 => 'Extra High',
+ 2 => 'High',
+ 3 => 'Normal',
+ 4 => 'Low',
+);
+
my %highFrameRateZ9 = (
0 => 'Off',
1 => 'CH',
@@ -953,9 +961,10 @@ my %imageAreaZ9b = (
);
my %infoZSeries = (
- Condition => '$$self{Model} =~ /^NIKON Z (5|50|6|6_2|7|7_2|fc|9)\b/i',
- Notes => 'Z Series cameras thru December 2021',
+ Condition => '$$self{Model} =~ /^NIKON Z (30|5|50|6|6_2|7|7_2|8|fc|9)\b/i',
+ Notes => 'Z Series cameras thru July 2023',
);
+
my %iSOAutoHiLimitZ7 = (
0 => 'ISO 64',
1 => 'ISO 80',
@@ -1118,6 +1127,32 @@ my %multipleExposureModeZ9 = (
2 => 'On (Series)',
);
+my %nonCPULensApertureZ8 = ( # 2**(val/6) rounded - non-CPU aperture interface, values and storage differ from the Z8
+ 12 => 'f/1.2',
+ 24 => 'f/1.4',
+ 40 => 'f/1.8',
+ 48 => 'f/2.0',
+ 64 => 'f/2.5',
+ 72 => 'f/2.8',
+ 84 => 'f/3.3',
+ 88 => 'f/3.5',
+ 96 => 'f/4.0',
+ 104 => 'f/4.5',
+ 112 => 'f/5.0',
+ 120 => 'f/5.6',
+ 128 => 'f/6.3',
+ 136 => 'f/7.1',
+ 144 => 'f/8',
+ 156 => 'f/9.5',
+ 168 => 'f/11',
+ 180 => 'f/13',
+ 188 => 'f/15',
+ 192 => 'f/16',
+ 204 => 'f/19',
+ 216 => 'f/22',
+ 313 => 'N/A', #camera menu shows "--" indicating value has not been set for the lens
+);
+
my %offLowNormalHighZ7 = (
0 => 'Off',
1 => 'Low',
@@ -1125,6 +1160,13 @@ my %offLowNormalHighZ7 = (
3 => 'High',
);
+my %portraitImpressionBalanceZ8 = (
+ 0 => 'Off',
+ 1 => 'Mode 1',
+ 2 => 'Mode 2',
+ 3 => 'Mode 3',
+);
+
my %releaseModeZ7 = (
0 => 'Continuous Low',
1 => 'Continuous High',
@@ -1146,6 +1188,7 @@ my %subjectDetectionZ9 = (
2 => 'People',
3 => 'Animals',
4 => 'Vehicles',
+ 6 => 'Airplanes',
);
my %timeZoneZ9 = (
@@ -1404,6 +1447,66 @@ my %afPoints81 = (
17 => 'H6', 34 => 'G7', 51 => 'F8', 68 => 'A9',
);
+# AF point indices for models with 493 focus points, eg. Z8/Z9 (ref 28)
+# - Auto Area AF uses 15 of the 17 rows (A-Q) and 27 of the 29 columns (1-27), center is H14 (405 of the 493 focus points can be used by Auto-area AF)
+#
+my %afPoints493 = (
+ 1 => 'A1', 28 => 'B1', 55 => 'C1', 82 => 'D1', 109 => 'E1', 136 => 'F1', 163 => 'G1', 190 => 'H1',
+ 2 => 'A2', 29 => 'B2', 56 => 'C2', 83 => 'D2', 110 => 'E2', 137 => 'F2', 164 => 'G2', 191 => 'H2',
+ 3 => 'A3', 30 => 'B3', 57 => 'C3', 84 => 'D3', 111 => 'E3', 138 => 'F3', 165 => 'G3', 192 => 'H3',
+ 4 => 'A4', 31 => 'B4', 58 => 'C4', 85 => 'D4', 112 => 'E4', 139 => 'F4', 166 => 'G4', 193 => 'H4',
+ 5 => 'A5', 32 => 'B5', 59 => 'C5', 86 => 'D5', 113 => 'E5', 140 => 'F5', 167 => 'G5', 194 => 'H5',
+ 6 => 'A6', 33 => 'B6', 60 => 'C6', 87 => 'D6', 114 => 'E6', 141 => 'F6', 168 => 'G6', 195 => 'H6',
+ 7 => 'A7', 34 => 'B7', 61 => 'C7', 88 => 'D7', 115 => 'E7', 142 => 'F7', 169 => 'G7', 196 => 'H7',
+ 8 => 'A8', 35 => 'B8', 62 => 'C8', 89 => 'D8', 116 => 'E8', 143 => 'F8', 170 => 'G8', 197 => 'H8',
+ 9 => 'A9', 36 => 'B9', 63 => 'C9', 90 => 'D9', 117 => 'E9', 144 => 'F9', 171 => 'G9', 198 => 'H9',
+ 10 => 'A10', 37 => 'B10', 64 => 'C10', 91 => 'D10', 118 => 'E10', 145 => 'F10', 172 => 'G10', 199 => 'H10',
+ 11 => 'A11', 38 => 'B11' , 65 => 'C11', 92 => 'D11', 119 => 'E11', 146 => 'F11', 173 => 'G11', 200 => 'H11',
+ 12 => 'A12', 39 => 'B12' , 66 => 'C12', 93 => 'D12', 120 => 'E12', 147 => 'F12', 174 => 'G12', 201 => 'H12',
+ 13 => 'A13', 40 => 'B13' , 67 => 'C13', 94 => 'D13', 121 => 'E13', 148 => 'F13', 175 => 'G13', 202 => 'H13',
+ 14 => 'A14', 41 => 'B14' , 68 => 'C14', 95 => 'D14', 122 => 'E14', 149 => 'F14', 176 => 'G14', 203 => 'H14',
+ 15 => 'A15', 42 => 'B15', 69 => 'C15', 96 => 'D15', 123 => 'E15', 150 => 'F15', 177 => 'G15', 204 => 'H15',
+ 16 => 'A16', 43 => 'B16' , 70 => 'C16', 97 => 'D16', 124 => 'E16', 151 => 'F16', 178 => 'G16', 205 => 'H16',
+ 17 => 'A17', 44 => 'B17', 71 => 'C17', 98 => 'D17', 125 => 'E17', 152 => 'F17', 179 => 'G17', 206 => 'H17',
+ 18 => 'A18', 45 => 'B18', 72 => 'C18', 99 => 'D18', 126 => 'E18', 153 => 'F18', 180 => 'G18', 207 => 'H18',
+ 19 => 'A19', 46 => 'B19', 73 => 'C19', 100 => 'D19', 127 => 'E19', 154 => 'F19', 181 => 'G19', 208 => 'H19',
+ 20 => 'A20', 47 => 'B20', 74 => 'C20', 101 => 'D20', 128 => 'E20', 155 => 'F20', 182 => 'G20', 209 => 'H20',
+ 21 => 'A21', 48 => 'B21', 75 => 'C21', 102 => 'D21', 129 => 'E21', 156 => 'F21', 183 => 'G21', 210 => 'H21',
+ 22 => 'A22', 49 => 'B22', 76 => 'C22', 103 => 'D22', 130 => 'E22', 157 => 'F22', 184 => 'G22', 211 => 'H22',
+ 23 => 'A23', 50 => 'B23', 77 => 'C23', 104 => 'D23', 131 => 'E23', 158 => 'F23', 185 => 'G23', 212 => 'H23',
+ 24 => 'A24', 51 => 'B24', 78 => 'C24', 105 => 'D24', 132 => 'E24', 159 => 'F24', 186 => 'G24', 213 => 'H24',
+ 25 => 'A25', 52 => 'B25', 79 => 'C25', 106 => 'D25', 133 => 'E25', 160 => 'F25', 187 => 'G25', 214 => 'H25',
+ 26 => 'A26', 53 => 'B26', 80 => 'C26', 107 => 'D26', 134 => 'E26', 161 => 'F26', 188 => 'G26', 215 => 'H26',
+ 27 => 'A27', 54 => 'B27', 81 => 'C27', 108 => 'D27', 135 => 'E27', 162 => 'F27', 189 => 'G27', 216 => 'H27',
+
+ 217 => 'I1', 244 => 'J1', 271 => 'K1', 298 => 'L1', 325 => 'M1', 352 => 'N1', 379 => 'O1',
+ 218 => 'I2', 245 => 'J2', 272 => 'K2', 299 => 'L2', 326 => 'M2', 353 => 'N2', 380 => 'O2',
+ 219 => 'I3', 246 => 'J3', 273 => 'K3', 300 => 'L3', 327 => 'M3', 354 => 'N3', 381 => 'O3',
+ 220 => 'I4', 247 => 'J4', 274 => 'K4', 301 => 'L4', 328 => 'M4', 355 => 'N4', 382 => 'O4',
+ 221 => 'I5', 248 => 'J5', 275 => 'K5', 302 => 'L5', 329 => 'M5', 356 => 'N5', 383 => 'O5',
+ 222 => 'I6', 249 => 'J6', 276 => 'K6', 303 => 'L6', 330 => 'M6', 357 => 'N6', 384 => 'O6',
+ 223 => 'I7', 250 => 'J7', 277 => 'K7', 304 => 'L7', 331 => 'M7', 358 => 'N7', 385 => 'O7',
+ 224 => 'I8', 251 => 'J8', 278 => 'K8', 305 => 'L8', 332 => 'M8', 359 => 'N8', 386 => 'O8',
+ 225 => 'I9', 252 => 'J9', 279 => 'K9', 306 => 'L9', 333 => 'M9', 360 => 'N9', 387 => 'O9',
+ 226 => 'I10', 253 => 'J10', 280 => 'K10', 307 => 'L10', 334 => 'M10', 361 => 'N10', 388 => 'O10',
+ 227 => 'I11', 254 => 'J11', 281 => 'K11', 308 => 'L11', 335 => 'M11', 362 => 'N11', 389 => 'O11',
+ 228 => 'I12', 255 => 'J12', 282 => 'K12', 309 => 'L12', 336 => 'M12', 363 => 'N12', 390 => 'O12',
+ 229 => 'I13', 256 => 'J13', 283 => 'K13', 310 => 'L13', 337 => 'M13', 364 => 'N13', 391 => 'O13',
+ 230 => 'I14', 257 => 'J14', 284 => 'K14', 311 => 'L14', 338 => 'M14', 365 => 'N14', 392 => 'O14',
+ 231 => 'I15', 258 => 'J15', 285 => 'K15', 312 => 'L15', 339 => 'M15', 366 => 'N15', 393 => 'O15',
+ 232 => 'I16', 259 => 'J16', 286 => 'K16', 313 => 'L16', 340 => 'M16', 367 => 'N16', 394 => 'O16',
+ 233 => 'I17', 260 => 'J17', 287 => 'K17', 314 => 'L17', 341 => 'M17', 368 => 'N17', 395 => 'O17',
+ 234 => 'I18', 261 => 'J18', 288 => 'K18', 315 => 'L18', 342 => 'M18', 369 => 'N18', 396 => 'O18',
+ 235 => 'I19', 262 => 'J19', 289 => 'K19', 316 => 'L19', 343 => 'M19', 370 => 'N19', 397 => 'O19',
+ 236 => 'I20', 263 => 'J20', 290 => 'K20', 317 => 'L20', 344 => 'M20', 371 => 'N20', 398 => 'O20',
+ 237 => 'I21', 264 => 'J21', 291 => 'K21', 318 => 'L21', 345 => 'M21', 372 => 'N21', 399 => 'O21',
+ 238 => 'I22', 265 => 'J22', 292 => 'K22', 319 => 'L22', 346 => 'M22', 373 => 'N22', 400 => 'O22',
+ 239 => 'I23', 266 => 'J23', 293 => 'K23', 320 => 'L23', 347 => 'M23', 374 => 'N23', 401 => 'O23',
+ 240 => 'I24', 267 => 'J24', 294 => 'K24', 321 => 'L24', 348 => 'M24', 375 => 'N24', 402 => 'O24',
+ 241 => 'I25', 268 => 'J25', 295 => 'K25', 322 => 'L25', 349 => 'M25', 376 => 'N25', 403 => 'O25',
+ 242 => 'I26', 269 => 'J26', 296 => 'K26', 323 => 'L26', 350 => 'M26', 377 => 'N26', 404 => 'O26',
+ 243 => 'I27', 270 => 'J27', 297 => 'K27', 324 => 'L27', 351 => 'M27', 378 => 'N27', 405 => 'O27',
+);
my %cropHiSpeed = ( #IB
0 => 'Off',
1 => '1.3x Crop', # (1.3x Crop, Large)
@@ -1530,6 +1633,7 @@ my %base64coord = (
0x0006 => { Name => 'Sharpness', Writable => 'string' },
0x0007 => {
Name => 'FocusMode',
+ RawConv => '$$self{FocusMode} = $val',
Writable => 'string',
},
# FlashSetting (better named FlashSyncMode, ref 28) values:
@@ -1721,6 +1825,7 @@ my %base64coord = (
PrintConv => {
1 => 'sRGB',
2 => 'Adobe RGB',
+ 4 => 'BT.2100', #observed on Z8 with Tone Mode set to HLG
},
},
0x001f => { #PH
@@ -1976,6 +2081,7 @@ my %base64coord = (
0 => 'Did Not Fire',
1 => 'Fired, Manual', #14
3 => 'Not Ready', #28
+ #5 observed on Z9 firing remote SB-5000 via WR-R11a optical awl
7 => 'Fired, External', #14
8 => 'Fired, Commander Mode',
9 => 'Fired, TTL Mode',
@@ -2316,6 +2422,15 @@ my %base64coord = (
ByteOrder => 'LittleEndian',
},
},
+ { # (Z8 firmware version 1.00 ref 28)
+ Condition => '$$valPt =~ /^0806/',
+ Name => 'ShotInfoZ8',
+ SubDirectory => {
+ TagTable => 'Image::ExifTool::Nikon::ShotInfoZ8',
+ DecryptStart => 4,
+ ByteOrder => 'LittleEndian',
+ },
+ },
{ # (Z9 firmware version 1.00 ref 28)
Condition => '$$valPt =~ /^0805/',
Name => 'ShotInfoZ9',
@@ -2766,7 +2881,7 @@ my %base64coord = (
},
0x00b7 => [{
Name => 'AFInfo2',
- Condition => '$$self{Model} =~ /^NIKON Z 9\b/i', #AFInfo2Version 0400
+ Condition => '$$self{Model} =~ /^NIKON (Z 8|Z 9)\b/i', #AFInfo2Version 0400
SubDirectory => { TagTable => 'Image::ExifTool::Nikon::AFInfo2V0400' },
},{ #JD
Name => 'AFInfo2',
@@ -3895,6 +4010,7 @@ my %base64coord = (
205 => 'Dynamic Area (M)', #28 (Z9)
206 => 'Dynamic Area (L)', #28 (Z9)
207 => '3D-tracking', #28 (Z9)
+ 208 => 'Wide-Area (C1/C2)', #28 (Z8, Z9)
},
},
],
@@ -4476,6 +4592,15 @@ my %base64coord = (
208 => 'Wide (C1/C2)',
},
},
+ 10 => {
+ Name => 'AFPointsUsed',
+ Condition => '$$self{AFAreaMode} == 6', #only valid for Auto AF Area mode. Other modes handled via AFAreaXPosition/AFAreaYPosition
+ Format => 'undef[51]',
+ ValueConv => 'join(" ", unpack("H2"x51, $val))',
+ ValueConvInv => '$val=~tr/ //d; pack("H*",$val)',
+ PrintConv => sub { PrintAFPoints(shift, \%afPoints493); },
+ PrintConvInv => sub { PrintAFPointsInv(shift, \%afPoints493); },
+ },
0x3e => {
Name => 'AFImageWidth',
Format => 'int16u',
@@ -5172,7 +5297,7 @@ my %nikonFocalConversions = (
%binaryDataAttrs,
NOTES => 'Tags found in the encrypted LensData from cameras such as the Z6 and Z7.',
GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' },
- DATAMEMBER => [ 0x03, 0x2f, 0x35, 0x4c, 0x56 ],
+ DATAMEMBER => [ 0x03, 0x2f, 0x35, 0x4c, 0x56, 0x58 ],
0x00 => {
Name => 'LensDataVersion',
Format => 'string[4]',
@@ -5352,7 +5477,7 @@ my %nikonFocalConversions = (
0x4c => { #28
Name => 'FocusDistanceRangeWidth', #reflects the number of discrete absolute lens positions that are mapped to the reported FocusDistance. Will be 1 near CFD reflecting very narrow focus distance bands (i.e., quite accurate). Near Infinity will be something like 32. Note: 0 at infinity.
Format => 'int8u',
- Condition => '$$self{NewLensData} and $$self{LensMountType} and $$self{LensMountType} == 1',
+ Condition => '$$self{NewLensData} and $$self{LensMountType} and $$self{LensMountType} == 1 and $$self{FocusMode} ne "Manual"',
RawConv => '$$self{FocusDistanceRangeWidth} = $val',
Unknown => 1,
},
@@ -5361,19 +5486,26 @@ my %nikonFocalConversions = (
Format => 'int16u',
Condition => '$$self{NewLensData} and $$self{LensMountType} and $$self{LensMountType} == 1',
RawConv => '$val = $val/256', # 1st byte is the fractional component. This byte was not previously considered in the legacy calculation (which only used the 2nd byte). When 2nd byte < 80; distance is < 1 meter
- ValueConv => '0.01 * 10**($val/40)', # in m
- ValueConvInv => '$val>0 ? 40*log($val*100)/log(10) : 0',
+ ValueConv => '2**(($val-80)/12)', # in m #slighly more accurate than the legacy calcualtion of '0.01 * 10**($val/40)'. Tested at all focus positions using the 105mm,70-200mm & 600mm
+ ValueConvInv => '$val>0 ? log(12*($val+80)/log(2) : 0', #was '$val>0 ? 40*log($val*100)/log(10) : 0'
PrintConv => q{
- (defined $$self{FocusDistanceRangeWidth} and not $$self{FocusDistanceRangeWidth}) ? "Inf" : $val < 1 ? $val < 0.35 ? sprintf("%.4f m", $val): sprintf("%.3f m", $val): sprintf("%.2f m", $val), #distances less than 35mm are quite accurate with increasingly less precision past 1m
+ (defined $$self{FocusStepsFromInfinity} and not $$self{FocusStepsFromInfinity}) ? "Inf" : $val < 1 ? $val < 0.35 ? sprintf("%.4f m", $val): sprintf("%.3f m", $val): sprintf("%.2f m", $val), #distances less than 35mm are quite accurate with increasingly less precision past 1m
},
},
- 0x56 => { #28
+ 0x56 => { #28 #not valif for focus mode M
Name => 'LensDriveEnd', # byte contains: 1 at CFD/MOD; 2 at Infinity; 0 otherwise
- Condition => '$$self{NewLensData} and $$self{LensMountType} and $$self{LensMountType} == 1',
+ Condition => '$$self{NewLensData} and $$self{LensMountType} and $$self{LensMountType} == 1 and $$self{FocusMode} ne "Manual"',
Format => 'int8u',
RawConv => 'unless (defined $$self{FocusDistanceRangeWidth} and not $$self{FocusDistanceRangeWidth}) { if ($val == 0 ) {$$self{LensDriveEnd} = "No"} else { $$self{LensDriveEnd} = "CFD"}; } else{ $$self{LensDriveEnd} = "Inf"}',
Unknown => 1,
},
+ 0x58 => { #28
+ Name => 'FocusStepsFromInfinity',
+ Condition => '$$self{NewLensData} and $$self{LensMountType} and $$self{LensMountType} == 1', #valid for both AF and manual focus modes
+ Format => 'int8u',
+ RawConv => '$$self{FocusStepsFromInfinity} = $val', # 0 at Infinity, otherwise a small positive number monotonically increasing towards CFD.
+ Unknown => 1,
+ },
0x5a => { #28
Name => 'LensPositionAbsolute', # <=0 at infinity. Typical value at CFD might be 58000. Only valid for Z-mount lenses.
Condition => '$$self{NewLensData} and $$self{LensMountType} and $$self{LensMountType} == 1',
@@ -8156,6 +8288,75 @@ my %nikonFocalConversions = (
},
);
+# shot information for the Z8 firmware 1.00 (encrypted) - ref 28
+%Image::ExifTool::Nikon::ShotInfoZ8 = (
+ PROCESS_PROC => \&ProcessNikonEncrypted,
+ WRITE_PROC => \&ProcessNikonEncrypted,
+ CHECK_PROC => \&Image::ExifTool::CheckBinaryData,
+ VARS => { ID_LABEL => 'Index', NIKON_OFFSETS => 0x24 },
+ DATAMEMBER => [ 0x04 ],
+ IS_SUBDIR => [ 0x30, 0x84, 0x8c ],
+ WRITABLE => 1,
+ GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' },
+ NOTES => 'These tags are extracted from encrypted data in images from the Z8.',
+ 0x00 => {
+ Name => 'ShotInfoVersion',
+ Format => 'string[4]',
+ Writable => 0,
+ },
+ 0x04 => {
+ Name => 'FirmwareVersion',
+ DataMember => 'FirmwareVersion',
+ Format => 'string[8]',
+ Writable => 0,
+ RawConv => '$$self{FirmwareVersion} = $val',
+ },
+ 0x0e => {
+ Name => 'FirmwareVersion2',
+ Format => 'string[8]',
+ Writable => 0,
+ Hidden => 1,
+ },
+ 0x18 => {
+ Name => 'FirmwareVersion3',
+ Format => 'string[8]',
+ Writable => 0,
+ Hidden => 1,
+ },
+ 0x24 => {
+ Name => 'NumberOffsets', # number of entries in offset table. offsets are from start of ShotInfo data.
+ Format => 'int32u',
+ Writable => 0,
+ Hidden => 1,
+ },
+ # subdirectories, referenced by offsets (not processed if offset is zero)
+ 0x30 => {
+ Name => 'SequenceOffset',
+ Format => 'int32u',
+ SubDirectory => {
+ TagTable => 'Image::ExifTool::Nikon::SeqInfoZ9',
+ Start => '$val',
+ },
+ },
+ 0x84 => {
+ Name => 'OrientOffset',
+ Condition => '$$self{ShutterMode} and $$self{ShutterMode} ne 96', #not valid for C30/C60/C120
+ Format => 'int32u',
+ SubDirectory => {
+ TagTable => 'Image::ExifTool::Nikon::OrientationInfo',
+ Start => '$val',
+ },
+ },
+ 0x8c => {
+ Name => 'MenuOffset',
+ Format => 'int32u',
+ SubDirectory => {
+ TagTable => 'Image::ExifTool::Nikon::MenuInfoZ8',
+ Start => '$val',
+ },
+ },
+);
+
# shot information for the Z9 firmware 1.00 (encrypted) - ref 28
%Image::ExifTool::Nikon::ShotInfoZ9 = (
PROCESS_PROC => \&ProcessNikonEncrypted,
@@ -8207,9 +8408,10 @@ my %nikonFocalConversions = (
},
},
0x58 => {
- Name => 'Offset13', #offset13 - length x'8f80 (Z9 firmware 3.01 NEF), using currently for a few foucs related tags. Might be premature to give the offset a more meaningful name at this point.
+ Name => 'Offset13', #offset13 - length x'8f80 (Z9 firmware 3.01 NEF), using currently for a few focus related tags. Might be premature to give the offset a more meaningful name at this point.
Condition => '$$self{FirmwareVersion} and $$self{FirmwareVersion} ge "03.01"',
Format => 'int32u',
+ AlwaysDecrypt => 1, # (necessary because FirmwareVersion is extracted after decryption time)
SubDirectory => {
TagTable => 'Image::ExifTool::Nikon::Offset13InfoZ9',
Start => '$val',
@@ -8219,6 +8421,7 @@ my %nikonFocalConversions = (
Name => 'AutoCaptureOffset',
Condition => '$$self{FirmwareVersion} and $$self{FirmwareVersion} ge "04.00"',
Format => 'int32u',
+ AlwaysDecrypt => 1, # (necessary because FirmwareVersion is extracted after decryption time)
SubDirectory => {
TagTable => 'Image::ExifTool::Nikon::AutoCaptureInfo',
Start => '$val',
@@ -8248,6 +8451,8 @@ my %nikonFocalConversions = (
%binaryDataAttrs,
GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' },
DATAMEMBER => [ 0x20, 0x28, 0x2a ],
+ #0x0019 => HDRFrame # For JPG 0=> Not HDR; 1=> file is the blended exposure. For raw files: 0=> Not from an HDR capture sequence; otherwise frame number in the HDR capture sequence -- 'Save Individual Pictures (RAW)' must be enabled.
+ #0x001A => MultipleExposureFrame # For JPG 0=> Not a multiple exposure; 1=> file is the blended exposure. For raw files: 0=> Not a multiple exposure capture; otherwise frame number in the capture sequence -- 'Save Individual Pictures (RAW)' must be enabled.
0x0020 => {
Name => 'FocusShiftShooting',
Condition => '$$self{ShutterMode} and $$self{ShutterMode} ne 96', #not valid for C30/C60/C120
@@ -8425,6 +8630,24 @@ my %nikonFocalConversions = (
},
);
+%Image::ExifTool::Nikon::MenuInfoZ8 = (
+ %binaryDataAttrs,
+ GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' },
+ IS_SUBDIR => [ 0x10 ],
+ # 0x00 - int32u size of this directory
+ 0x10 => [
+ {
+ Name => 'MenuSettingsOffsetZ8',
+ Format => 'int32u',
+ Notes => 'Firmware versions 1.0.0',
+ SubDirectory => {
+ TagTable => 'Image::ExifTool::Nikon::MenuSettingsZ8',
+ Start => '$dirStart + $val',
+ },
+ },
+ ],
+);
+
%Image::ExifTool::Nikon::MenuInfoZ9 = (
%binaryDataAttrs,
GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' },
@@ -8452,7 +8675,7 @@ my %nikonFocalConversions = (
},
},
{
- Name => 'MenuSettingsOffsetZ9v3',
+ Name => 'MenuSettingsOffsetZ9v4',
Notes => 'Firmware versions 4.0 and later',
Format => 'int32u',
SubDirectory => {
@@ -8466,9 +8689,19 @@ my %nikonFocalConversions = (
%Image::ExifTool::Nikon::AutoCaptureInfo = (
%binaryDataAttrs,
GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' },
+ DATAMEMBER => [ 0 ],
+ 0 => {
+ Name => 'AutoCapturedFrame',
+ RawConv => '$$self{AutoCapturedFrame} = $val',
+ PrintConv => {
+ 0 => 'No',
+ 5 => 'Yes',
+ },
+ },
1 => {
Name => 'AutoCaptureCriteria',
- PrintConv => q[
+ Condition => '$$self{AutoCapturedFrame} and $$self{AutoCapturedFrame} ne 0',
+ PrintConv => q[
$_ = '';
return $_ . Image::ExifTool::DecodeBits($val,
{
@@ -8481,6 +8714,7 @@ my %nikonFocalConversions = (
# offsets 3-52 contain a bitmap of the focus points enabled when AutoArea is the AF-Area Mode. 0=> disabled, 1=> enabled. Focus points are in a grid with dimensions 25x15.
55 => {
Name => 'AutoCaptureRecordingTime',
+ Condition => '$$self{AutoCapturedFrame} and $$self{AutoCapturedFrame} ne 0',
PrintConv => {
0 => '1 Sec',
1 => '3 Sec',
@@ -8500,6 +8734,7 @@ my %nikonFocalConversions = (
},
56 => {
Name => 'AutoCaptureWaitTime',
+ Condition => '$$self{AutoCapturedFrame} and $$self{AutoCapturedFrame} ne 0',
PrintConv => {
0 => 'No Wait',
1 => '10 Sec',
@@ -8518,14 +8753,17 @@ my %nikonFocalConversions = (
},
74 => {
Name => 'AutoCaptureDistanceFar',
+ Condition => '$$self{AutoCapturedFrame} and $$self{AutoCapturedFrame} ne 0',
PrintConv => 'sprintf("%.1f m", $val/10)',
},
78 => {
Name => 'AutoCaptureDistanceNear',
+ Condition => '$$self{AutoCapturedFrame} and $$self{AutoCapturedFrame} ne 0',
PrintConv => 'sprintf("%.1f m", $val/10)',
},
95 => {
Name => 'AutoCaptureCriteriaMotionDirection',
+ Condition => '$$self{AutoCapturedFrame} and $$self{AutoCapturedFrame} ne 0',
PrintConv => q[
return 'All' if $val eq 255;
$_ = '';
@@ -8542,11 +8780,21 @@ my %nikonFocalConversions = (
});
],
},
- 99 => 'AutoCaptureCriteriaMotionSpeed', #1-5
- 100 => 'AutoCaptureCriteriaMotionSize', #1-5
- 105 => 'AutoCaptureCriteriaSubjectSize', #1-5
+ 99 => {
+ Name => 'AutoCaptureCriteriaMotionSpeed', #1-5
+ Condition => '$$self{AutoCapturedFrame} and $$self{AutoCapturedFrame} ne 0',
+ },
+ 100 => {
+ Name => 'AutoCaptureCriteriaMotionSize', #1-5
+ Condition => '$$self{AutoCapturedFrame} and $$self{AutoCapturedFrame} ne 0',
+ },
+ 105 => {
+ Name => 'AutoCaptureCriteriaSubjectSize', #1-5
+ Condition => '$$self{AutoCapturedFrame} and $$self{AutoCapturedFrame} ne 0',
+ },
106 => {
Name => 'AutoCaptureCriteriaSubjectType',
+ Condition => '$$self{AutoCapturedFrame} and $$self{AutoCapturedFrame} ne 0',
PrintConv => {
0 => 'Auto (all)',
1 => 'People',
@@ -8822,10 +9070,253 @@ my %nikonFocalConversions = (
#859 => HDMIViewAssist
);
+%Image::ExifTool::Nikon::MenuSettingsZ8 = (
+ %binaryDataAttrs,
+ GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' },
+ DATAMEMBER => [ 152, 200, 204, 244, 440, 548, 554, 570, 596 ],
+ IS_SUBDIR => [ 943 ],
+ NOTES => 'These tags are used by the Z8 firmware 1.00.',
+ 72 => {
+ Name => 'HighFrameRate', #CH and C30/C60/C120 but not CL
+ PrintConv => \%highFrameRateZ9,
+ },
+ 152 => {
+ Name => 'MultipleExposureMode',
+ RawConv => '$$self{MultipleExposureMode} = $val',
+ PrintConv => \%multipleExposureModeZ9,
+ },
+ 154 => {Name => 'MultiExposureShots', Condition => '$$self{MultipleExposureMode} != 0'}, #range 2-9
+ 184 => {
+ Name => 'IntervalDurationHours',
+ Format => 'int32u',
+ Condition => '$$self{ShutterMode} and $$self{ShutterMode} ne 96 and $$self{IntervalShooting} > 0',
+ },
+ 188 => {
+ Name => 'IntervalDurationMinutes',
+ Format => 'int32u',
+ Condition => '$$self{ShutterMode} and $$self{ShutterMode} ne 96 and $$self{IntervalShooting} > 0',
+ },
+ 192 => {
+ Name => 'IntervalDurationSeconds',
+ Format => 'int32u',
+ Condition => '$$self{ShutterMode} and $$self{ShutterMode} ne 96 and $$self{IntervalShooting} > 0',
+ },
+ 200 => {
+ Name => 'Intervals',
+ Format => 'int32u',
+ RawConv => '$$self{IntervalShootingIntervals} = $val',
+ Condition => '$$self{ShutterMode} and $$self{ShutterMode} ne 96 and $$self{IntervalShooting} > 0',
+ },
+ 204 => {
+ Name => 'ShotsPerInterval',
+ Format => 'int32u',
+ RawConv => '$$self{IntervalShootingShotsPerInterval} = $val',
+ Condition => '$$self{ShutterMode} and $$self{ShutterMode} ne 96 and $$self{IntervalShooting} > 0',
+ },
+ 208 => {
+ Name => 'IntervalExposureSmoothing',
+ Condition => '$$self{ShutterMode} and $$self{ShutterMode} ne 96 and $$self{IntervalShooting} > 0',
+ Format => 'int8u',
+ PrintConv => \%offOn,
+ },
+ 210 => {
+ Name => 'IntervalPriority',
+ Condition => '$$self{ShutterMode} and $$self{ShutterMode} ne 96 and $$self{IntervalShooting} > 0',
+ Format => 'int8u',
+ PrintConv => \%offOn,
+ },
+ 244 => {
+ Name => 'FocusShiftNumberShots', #1-300
+ RawConv => '$$self{FocusShiftNumberShots} = $val',
+ Condition => '$$self{ShutterMode} and $$self{ShutterMode} ne 96 and $$self{FocusShiftShooting} > 0', #not valid for C30/C60/C120
+ },
+ 248 => {
+ Name => 'FocusShiftStepWidth', #1(Narrow) to 10 (Wide)
+ Condition => '$$self{ShutterMode} and $$self{ShutterMode} ne 96 and $$self{FocusShiftShooting} > 0', #not valid for C30/C60/C120
+ },
+ 252 => {
+ Name => 'FocusShiftInterval',
+ Condition => '$$self{ShutterMode} and $$self{ShutterMode} ne 96 and $$self{FocusShiftShooting} > 0', #not valid for C30/C60/C120
+ PrintConv => '$val == 1? "1 Second" : sprintf("%.0f Seconds",$val)',
+ },
+ 256 => {
+ Name => 'FocusShiftExposureLock',
+ Unknown => 1,
+ PrintConv => \%offOn,
+ Condition => '$$self{ShutterMode} and $$self{ShutterMode} ne 96 and $$self{FocusShiftShooting} > 0', #not valid for C30/C60/C120
+ },
+ 286 => { Name => 'PhotoShootingMenuBank', PrintConv => \%banksZ9 },
+ 288 => { Name => 'ExtendedMenuBanks', PrintConv => \%offOn }, # single tag from both Photo & Video menus
+ 324 => { Name => 'PhotoShootingMenuBankImageArea', PrintConv => \%imageAreaZ9 },
+ 338 => { Name => 'AutoISO', PrintConv => \%offOn },
+ 340 => {
+ Name => 'ISOAutoHiLimit',
+ Format => 'int16u',
+ Unknown => 1,
+ ValueConv => '($val-104)/8',
+ ValueConvInv => '8 * ($val + 104)',
+ PrintConv => \%iSOAutoHiLimitZ7,
+ },
+ 342 => {
+ Name => 'ISOAutoFlashLimit',
+ Format => 'int16u',
+ Unknown => 1,
+ ValueConv => '($val-104)/8',
+ ValueConvInv => '8 * ($val + 104)',
+ PrintConv => \%iSOAutoHiLimitZ7,
+ },
+ 350 => {
+ Name => 'ISOAutoShutterTime', # shutter speed is 2 ** (-$val/24)
+ ValueConv => '$val / 8',
+ Format => 'int16s',
+ PrintConv => \%iSOAutoShutterTimeZ9,
+ },
+ 432 => { Name => 'MovieVignetteControl', PrintConv => \%offLowNormalHighZ7, Unknown => 1 },
+ 434 => { Name => 'DiffractionCompensation', PrintConv => \%offOn }, # value can be set from both the Photo Shoot Menu and the Video Shooting Menu
+ 436 => { Name => 'FlickerReductionShooting',PrintConv => \%offOn },
+ 440 => {
+ Name => 'FlashControlMode', # this and nearby tag values for flash may be set from either the Photo Shooting Menu or using the Flash unit menu
+ RawConv => '$$self{FlashControlMode} = $val',
+ PrintConv => \%flashControlModeZ7,
+ },
+ 548 => { Name => 'AFAreaMode', RawConv => '$$self{AFAreaMode} = $val', PrintConv => \%aFAreaModeZ9},
+ 550 => { Name => 'VRMode', PrintConv => \%vRModeZ9},
+ 554 => {
+ Name => 'BracketSet',
+ RawConv => '$$self{BracketSet} = $val',
+ PrintConv => \%bracketSetZ9,
+ },
+ 556 => {
+ Name => 'BracketProgram',
+ Condition => '$$self{BracketSet} < 3',
+ Notes => 'AE and/or Flash Bracketing',
+ PrintConv => \%bracketProgramZ9,
+ },
+ 558 => {
+ Name => 'BracketIncrement',
+ Condition => '$$self{BracketSet} < 3',
+ Notes => 'AE and/or Flash Bracketing',
+ PrintConv => \%bracketIncrementZ9,
+ },
+ 570 => { Name => 'HDR', RawConv => '$$self{HDR} = $val', PrintConv => \%multipleExposureModeZ9 },
+ #572 HDRSaveRaw 0=> No; 1=> Yes
+ 576 => { Name => 'SecondarySlotFunction', PrintConv => \%secondarySlotFunctionZ9 },
+ 582 => { Name => 'HDRLevel', Condition => '$$self{HDR} ne 0', PrintConv => \%hdrLevelZ8 },
+ 586 => { Name => 'Slot2JpgSize', PrintConv => { 0 => 'Large (8256x5504)', 1 => 'Medium (6192x4128)', 2 => 'Small (4128x2752)' }, Unknown => 1},
+ 592 => { Name => 'DXCropAlert', PrintConv => \%offOn },
+ 594 => { Name => 'SubjectDetection', PrintConv => \%subjectDetectionZ9 },
+ 596 => {
+ Name => 'DynamicAFAreaSize',
+ Condition => '$$self{AFAreaMode} == 2',
+ RawConv => '$$self{DynamicAFAreaSize} = $val',
+ PrintConv => \%dynamicAfAreaModesZ9,
+ },
+ 618 => { Name => 'ToneMap', PrintConv => { 0 => 'SDR', 1 => 'HLG' }, Unknown => 1 },
+ 622 => { Name => 'PortraitImpressionBalance', PrintConv => \%portraitImpressionBalanceZ8 },
+ 636 => { Name => 'HighFrequencyFlickerReductionShooting', PrintConv => \%offOn, Unknown => 1 }, # new with firmware 3.0
+ 730 => {
+ Name => 'MovieImageArea',
+ Unknown => 1,
+ Mask => 0x01, # without the mask 4 => 'FX' 5 => DX only the 2nd Z-series field encountered with a mask.
+ PrintConv => \%imageAreaZ9b,
+ },
+ 740 => { Name => 'MovieType', PrintConv => \%movieTypeZ9, Unknown => 1 },
+ 742 => {
+ Name => 'MovieISOAutoHiLimit',
+ Format => 'int16u',
+ Unknown => 1,
+ ValueConv => '($val-104)/8',
+ ValueConvInv => '8 * ($val + 104)',
+ PrintConv => \%iSOAutoHiLimitZ7,
+ },
+ 744 => { Name => 'MovieISOAutoControlManualMode', PrintConv => \%offOn, Unknown => 1 },
+ 746 => {
+ Name => 'MovieISOAutoManualMode',
+ Format => 'int16u',
+ Unknown => 1,
+ ValueConv => '($val-104)/8',
+ ValueConvInv => '8 * ($val + 104)',
+ PrintConv => \%iSOAutoHiLimitZ7,
+ },
+ 820 => { Name => 'MovieActiveD-Lighting', PrintConv => \%activeDLightingZ7, Unknown => 1 },
+ 822 => { Name => 'MovieHighISONoiseReduction', PrintConv => \%offLowNormalHighZ7, Unknown => 1 },
+ 828 => { Name => 'MovieFlickerReduction', PrintConv => \%movieFlickerReductionZ9 },
+ 830 => { Name => 'MovieMeteringMode', PrintConv => \%meteringModeZ7, Unknown => 1 },
+ 832 => { Name => 'MovieFocusMode', PrintConv => \%focusModeZ7, Unknown => 1 },
+ 834 => { Name => 'MovieAFAreaMode', PrintConv => \%aFAreaModeZ9 },
+ 836 => { Name => 'MovieVRMode', PrintConv => \%vRModeZ9, Unknown => 1 },
+ 840 => { Name => 'MovieElectronicVR', PrintConv => \%offOn, Unknown => 1 }, # distinct from MoveieVRMode
+ 842 => { Name => 'MovieSoundRecording', PrintConv => { 0 => 'Off', 1 => 'Auto', 2 => 'Manual' }, Unknown => 1 },
+ 844 => { Name => 'MicrophoneSensitivity', Unknown => 1 }, # 1-20
+ 846 => { Name => 'MicrophoneAttenuator', PrintConv => \%offOn, Unknown => 1 }, # distinct from MoveieVRMode
+ 848 => { Name => 'MicrophoneFrequencyResponse',PrintConv => { 0 => 'Wide Range', 1 => 'Vocal Range' }, Unknown => 1 },
+ 850 => { Name => 'WindNoiseReduction', PrintConv => \%offOn, Unknown => 1 },
+ 882 => { Name => 'MovieFrameSize', PrintConv => \%movieFrameSizeZ9, Unknown => 1 },
+ 884 => { Name => 'MovieFrameRate', PrintConv => \%movieFrameRateZ7, Unknown => 1 },
+ 886 => { Name => 'MicrophoneJackPower', PrintConv => \%offOn, Unknown => 1 },
+ 887 => { Name => 'MovieDXCropAlert', PrintConv => \%offOn, Unknown => 1 },
+ 888 => { Name => 'MovieSubjectDetection', PrintConv => \%subjectDetectionZ9, Unknown => 1 },
+ 896 => { Name => 'MovieHighResZoom', PrintConv => \%offOn, Unknown => 1 },
+ 943 => {
+ Name => 'CustomSettingsZ8',
+ Format => 'undef[730]',
+ SubDirectory => { TagTable => 'Image::ExifTool::NikonCustom::SettingsZ8' },
+ },
+ 1682 => { Name => 'Language', PrintConv => \%languageZ9, Unknown => 1 },
+ 1684 => { Name => 'TimeZone', PrintConv => \%timeZoneZ9 },
+ 1690 => { Name => 'MonitorBrightness', PrintConv => \%monitorBrightnessZ9, Unknown => 1 }, # settings: -5 to +5. Added with firmware 3.0: Lo1, Lo2, Hi1, Hi2
+ 1712 => { Name => 'AFFineTune', PrintConv => \%offOn, Unknown => 1 },
+ 1716 => { Name => 'NonCPULens1FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1}, #should probably hide altogther if $val is 0
+ 1718 => { Name => 'NonCPULens2FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1},
+ 1720 => { Name => 'NonCPULens3FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1},
+ 1722 => { Name => 'NonCPULens4FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1},
+ 1724 => { Name => 'NonCPULens5FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1},
+ 1726 => { Name => 'NonCPULens6FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1},
+ 1728 => { Name => 'NonCPULens7FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1},
+ 1730 => { Name => 'NonCPULens8FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1},
+ 1732 => { Name => 'NonCPULens9FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1},
+ 1734 => { Name => 'NonCPULens10FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1},
+ 1736 => { Name => 'NonCPULens11FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1},
+ 1738 => { Name => 'NonCPULens12FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1},
+ 1740 => { Name => 'NonCPULens13FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1},
+ 1742 => { Name => 'NonCPULens14FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1},
+ 1744 => { Name => 'NonCPULens15FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1},
+ 1746 => { Name => 'NonCPULens16FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1},
+ 1748 => { Name => 'NonCPULens17FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1},
+ 1750 => { Name => 'NonCPULens18FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1},
+ 1752 => { Name => 'NonCPULens19FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1},
+ 1754 => { Name => 'NonCPULens20FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1},
+ 1756 => { Name => 'NonCPULens1MaxAperture', Format => 'int16u', PrintConv => \%nonCPULensApertureZ8, Unknown => 1},
+ 1758 => { Name => 'NonCPULens2MaxAperture', Format => 'int16u', PrintConv => \%nonCPULensApertureZ8, Unknown => 1},
+ 1760 => { Name => 'NonCPULens3MaxAperture', Format => 'int16u', PrintConv => \%nonCPULensApertureZ8, Unknown => 1},
+ 1762 => { Name => 'NonCPULens4MaxAperture', Format => 'int16u', PrintConv => \%nonCPULensApertureZ8, Unknown => 1},
+ 1764 => { Name => 'NonCPULens5MaxAperture', Format => 'int16u', PrintConv => \%nonCPULensApertureZ8, Unknown => 1},
+ 1766 => { Name => 'NonCPULens6MaxAperture', Format => 'int16u', PrintConv => \%nonCPULensApertureZ8, Unknown => 1},
+ 1768 => { Name => 'NonCPULens7MaxAperture', Format => 'int16u', PrintConv => \%nonCPULensApertureZ8, Unknown => 1},
+ 1770 => { Name => 'NonCPULens8MaxAperture', Format => 'int16u', PrintConv => \%nonCPULensApertureZ8, Unknown => 1},
+ 1772 => { Name => 'NonCPULens9MaxAperture', Format => 'int16u', PrintConv => \%nonCPULensApertureZ8, Unknown => 1},
+ 1774 => { Name => 'NonCPULens10MaxAperture', Format => 'int16u', PrintConv => \%nonCPULensApertureZ8, Unknown => 1},
+ 1776 => { Name => 'NonCPULens11MaxAperture', Format => 'int16u', PrintConv => \%nonCPULensApertureZ8, Unknown => 1},
+ 1778 => { Name => 'NonCPULens12MaxAperture', Format => 'int16u', PrintConv => \%nonCPULensApertureZ8, Unknown => 1},
+ 1780 => { Name => 'NonCPULens13MaxAperture', Format => 'int16u', PrintConv => \%nonCPULensApertureZ8, Unknown => 1},
+ 1782 => { Name => 'NonCPULens14MaxAperture', Format => 'int16u', PrintConv => \%nonCPULensApertureZ8, Unknown => 1},
+ 1784 => { Name => 'NonCPULens15MaxAperture', Format => 'int16u', PrintConv => \%nonCPULensApertureZ8, Unknown => 1},
+ 1786 => { Name => 'NonCPULens16MaxAperture', Format => 'int16u', PrintConv => \%nonCPULensApertureZ8, Unknown => 1},
+ 1788 => { Name => 'NonCPULens17MaxAperture', Format => 'int16u', PrintConv => \%nonCPULensApertureZ8, Unknown => 1},
+ 1790 => { Name => 'NonCPULens18MaxAperture', Format => 'int16u', PrintConv => \%nonCPULensApertureZ8, Unknown => 1},
+ 1792 => { Name => 'NonCPULens19MaxAperture', Format => 'int16u', PrintConv => \%nonCPULensApertureZ8, Unknown => 1},
+ 1794 => { Name => 'NonCPULens20MaxAperture', Format => 'int16u', PrintConv => \%nonCPULensApertureZ8, Unknown => 1},
+ 1808 => { Name => 'HDMIOutputResolution', PrintConv => \%hDMIOutputResolutionZ9 },
+ 1826 => { Name => 'AirplaneMode', PrintConv => \%offOn, Unknown => 1 },
+ 1827 => { Name => 'EmptySlotRelease', PrintConv => { 0 => 'Disable Release', 1 => 'Enable Release' }, Unknown => 1 },
+ 1862 => { Name => 'EnergySavingMode', PrintConv => \%offOn, Unknown => 1 },
+ 1890 => { Name => 'USBPowerDelivery', PrintConv => \%offOn, Unknown => 1 },
+ 1899 => { Name => 'SensorShield', PrintConv => { 0 => 'Stays Open', 1 => 'Closes' }, Unknown => 1 },
+);
%Image::ExifTool::Nikon::MenuSettingsZ9 = (
%binaryDataAttrs,
GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' },
- DATAMEMBER => [ 140, 188, 192, 232, 424, 534, 576 ],
+ DATAMEMBER => [ 140, 188, 192, 232, 424, 528, 534, 576 ],
IS_SUBDIR => [ 799 ],
NOTES => 'These tags are used by the Z9.',
#90 ISO
@@ -8839,13 +9330,13 @@ my %nikonFocalConversions = (
Name => 'Intervals',
Format => 'int32u',
RawConv => '$$self{IntervalShootingIntervals} = $val',
- Condition => '$$self{ShutterMode} and $$self{ShutterMode} ne 96 and $$self{FocusShiftShooting} > 0', #not valid for C30/C60/C120
+ Condition => '$$self{ShutterMode} and $$self{ShutterMode} ne 96 and $$self{IntervalShooting} > 0', #not valid for C30/C60/C120
},
192 => {
Name => 'ShotsPerInterval',
Format => 'int32u',
RawConv => '$$self{IntervalShootingShotsPerInterval} = $val',
- Condition => '$$self{ShutterMode} and $$self{ShutterMode} ne 96 and $$self{FocusShiftShooting} > 0', #not valid for C30/C60/C120
+ Condition => '$$self{ShutterMode} and $$self{ShutterMode} ne 96 and $$self{IntervalShooting} > 0', #not valid for C30/C60/C120
},
#220 NEFCompression 0=> 'Lossless' 1=> 'High Efficiency*' 4=> 'High Efficientcy'
232 => {
@@ -8942,7 +9433,7 @@ my %nikonFocalConversions = (
444 => { Name => 'FlashRemoteControl', PrintConv => \%flashRemoteControlZ7, Unknown => 1 },
456 => { Name => 'FlashWirelessOption', PrintConv => \%flashWirelessOptionZ7, Unknown => 1 },
#526 FocusMode
- 528 => { Name => 'AFAreaMode',PrintConv => \%aFAreaModeZ9 },
+ 528 => { Name => 'AFAreaMode', RawConv => '$$self{AFAreaMode} = $val', PrintConv => \%aFAreaModeZ9},
530 => { Name => 'VRMode', PrintConv => \%vRModeZ9 },
534 => {
Name => 'BracketSet',
@@ -8967,7 +9458,7 @@ my %nikonFocalConversions = (
574 => { Name => 'SubjectDetection', PrintConv => \%subjectDetectionZ9 },
576 => {
Name => 'DynamicAFAreaSize',
- Condition => '$$self{AFAraMode} = 2',
+ Condition => '$$self{AFAreaMode} == 2',
RawConv => '$$self{DynamicAFAreaSize} = $val',
PrintConv => \%dynamicAfAreaModesZ9,
},
@@ -9036,7 +9527,7 @@ my %nikonFocalConversions = (
%Image::ExifTool::Nikon::MenuSettingsZ9v3 = (
%binaryDataAttrs,
GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' },
- DATAMEMBER => [ 154, 204, 208, 248, 444, 554, 596 ],
+ DATAMEMBER => [ 154, 204, 208, 248, 444, 548, 554, 596 ],
IS_SUBDIR => [ 847 ],
NOTES => 'These tags are used by the Z9 firmware 3.00.',
72 => {
@@ -9053,13 +9544,13 @@ my %nikonFocalConversions = (
Name => 'Intervals',
Format => 'int32u',
RawConv => '$$self{IntervalShootingIntervals} = $val',
- Condition => '$$self{ShutterMode} and $$self{ShutterMode} ne 96 and $$self{FocusShiftShooting} > 0', #not valid for C30/C60/C120
+ Condition => '$$self{ShutterMode} and $$self{ShutterMode} ne 96 and $$self{IntervalShooting} > 0', #not valid for C30/C60/C120
},
208 => {
Name => 'ShotsPerInterval',
Format => 'int32u',
RawConv => '$$self{IntervalShootingShotsPerInterval} = $val',
- Condition => '$$self{ShutterMode} and $$self{ShutterMode} ne 96 and $$self{FocusShiftShooting} > 0', #not valid for C30/C60/C120
+ Condition => '$$self{ShutterMode} and $$self{ShutterMode} ne 96 and $$self{IntervalShooting} > 0', #not valid for C30/C60/C120
},
248 => {
Name => 'FocusShiftNumberShots', #1-300
@@ -9143,7 +9634,7 @@ my %nikonFocalConversions = (
#462 flash wireless control 0=> 'Off' 1=> 'Optical AWL'
#464 => { Name => 'FlashRemoteControl', PrintConv => \%flashRemoteControlZ7, Unknown => 1 },
#476 => { Name => 'FlashWirelessOption', PrintConv => \%flashWirelessOptionZ7, Unknown => 1 },
- 548 => { Name => 'AFAreaMode', PrintConv => \%aFAreaModeZ9},
+ 548 => { Name => 'AFAreaMode', RawConv => '$$self{AFAreaMode} = $val', PrintConv => \%aFAreaModeZ9},
550 => { Name => 'VRMode', PrintConv => \%vRModeZ9},
554 => {
Name => 'BracketSet',
@@ -9167,7 +9658,7 @@ my %nikonFocalConversions = (
594 => { Name => 'SubjectDetection', PrintConv => \%subjectDetectionZ9 },
596 => {
Name => 'DynamicAFAreaSize',
- Condition => '$$self{AFAraMode} = 2',
+ Condition => '$$self{AFAreaMode} == 2',
RawConv => '$$self{DynamicAFAreaSize} = $val',
PrintConv => \%dynamicAfAreaModesZ9,
},
@@ -9265,10 +9756,11 @@ my %nikonFocalConversions = (
#1892 DispButton CSf2
#1936 FocusPointDisplayOption3DTrackingColor CSa11-d 0=> 'White', 1= => 'Red'
);
+
%Image::ExifTool::Nikon::MenuSettingsZ9v4 = (
%binaryDataAttrs,
GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' },
- DATAMEMBER => [ 154, 204, 208, 248, 444, 554, 596 ],
+ DATAMEMBER => [ 154, 204, 208, 248, 444, 548, 554, 570, 596 ],
IS_SUBDIR => [ 847 ],
NOTES => 'These tags are used by the Z9 firmware 3.00.',
72 => {
@@ -9285,13 +9777,13 @@ my %nikonFocalConversions = (
Name => 'Intervals',
Format => 'int32u',
RawConv => '$$self{IntervalShootingIntervals} = $val',
- Condition => '$$self{ShutterMode} and $$self{ShutterMode} ne 96 and $$self{FocusShiftShooting} > 0', #not valid for C30/C60/C120
+ Condition => '$$self{ShutterMode} and $$self{ShutterMode} ne 96 and $$self{IntervalShooting} > 0', #not valid for C30/C60/C120
},
208 => {
Name => 'ShotsPerInterval',
Format => 'int32u',
RawConv => '$$self{IntervalShootingShotsPerInterval} = $val',
- Condition => '$$self{ShutterMode} and $$self{ShutterMode} ne 96 and $$self{FocusShiftShooting} > 0', #not valid for C30/C60/C120
+ Condition => '$$self{ShutterMode} and $$self{ShutterMode} ne 96 and $$self{IntervalShooting} > 0', #not valid for C30/C60/C120
},
248 => {
Name => 'FocusShiftNumberShots', #1-300
@@ -9375,7 +9867,7 @@ my %nikonFocalConversions = (
#462 flash wireless control 0=> 'Off' 1=> 'Optical AWL'
#464 => { Name => 'FlashRemoteControl', PrintConv => \%flashRemoteControlZ7, Unknown => 1 },
#476 => { Name => 'FlashWirelessOption', PrintConv => \%flashWirelessOptionZ7, Unknown => 1 },
- 548 => { Name => 'AFAreaMode', PrintConv => \%aFAreaModeZ9},
+ 548 => { Name => 'AFAreaMode', RawConv => '$$self{AFAreaMode} = $val', PrintConv => \%aFAreaModeZ9},
550 => { Name => 'VRMode', PrintConv => \%vRModeZ9},
554 => {
Name => 'BracketSet',
@@ -9394,13 +9886,15 @@ my %nikonFocalConversions = (
Notes => 'AE and/or Flash Bracketing',
PrintConv => \%bracketIncrementZ9,
},
+ 570 => { Name => 'HDR', RawConv => '$$self{HDR} = $val', PrintConv => \%multipleExposureModeZ9 },
576 => { Name => 'SecondarySlotFunction', PrintConv => \%secondarySlotFunctionZ9 },
+ 582 => { Name => 'HDRLevel', Condition => '$$self{HDR} ne 0', PrintConv => \%hdrLevelZ8 },
586 => { Name => 'Slot2JpgSize', PrintConv => { 0 => 'Large (8256x5504)', 1 => 'Medium (6192x4128)', 2 => 'Small (4128x2752)' }, Unknown => 1},
592 => { Name => 'DXCropAlert', PrintConv => \%offOn },
594 => { Name => 'SubjectDetection', PrintConv => \%subjectDetectionZ9 },
596 => {
Name => 'DynamicAFAreaSize',
- Condition => '$$self{AFAraMode} = 2',
+ Condition => '$$self{AFAreaMode} == 2',
RawConv => '$$self{DynamicAFAreaSize} = $val',
PrintConv => \%dynamicAfAreaModesZ9,
},
@@ -9450,14 +9944,14 @@ my %nikonFocalConversions = (
804 => { Name => 'MovieSubjectDetection', PrintConv => \%subjectDetectionZ9, Unknown => 1 },
812 => { Name => 'MovieHighResZoom', PrintConv => \%offOn, Unknown => 1 },
847 => {
- Name => 'CustomSettingsZ9',
- Format => 'undef[608]',
- SubDirectory => { TagTable => 'Image::ExifTool::NikonCustom::SettingsZ9' },
- },
- 1474 => { Name => 'Language', PrintConv => \%languageZ9, Unknown => 1 },
- 1476 => { Name => 'TimeZone', PrintConv => \%timeZoneZ9 },
- 1482 => { Name => 'MonitorBrightness', PrintConv => \%monitorBrightnessZ9, Unknown => 1 }, # settings: -5 to +5. Added with firmware 3.0: Lo1, Lo2, Hi1, Hi2
- 1504 => { Name => 'AFFineTune', PrintConv => \%offOn, Unknown => 1 },
+ Name => 'CustomSettingsZ9v4',
+ Format => 'undef[632]',
+ SubDirectory => { TagTable => 'Image::ExifTool::NikonCustom::SettingsZ9v4' },
+ },
+ 1498 => { Name => 'Language', PrintConv => \%languageZ9, Unknown => 1 },
+ 1500 => { Name => 'TimeZone', PrintConv => \%timeZoneZ9 },
+ 1506 => { Name => 'MonitorBrightness', PrintConv => \%monitorBrightnessZ9, Unknown => 1 }, # settings: -5 to +5. Added with firmware 3.0: Lo1, Lo2, Hi1, Hi2
+ 1528 => { Name => 'AFFineTune', PrintConv => \%offOn, Unknown => 1 },
1532 => { Name => 'NonCPULens1FocalLength', Format => 'int16s', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1}, #should probably hide altogther if $val is 0
1536 => { Name => 'NonCPULens2FocalLength', Format => 'int16s', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1},
1540 => { Name => 'NonCPULens3FocalLength', Format => 'int16s', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1},
@@ -9469,7 +9963,7 @@ my %nikonFocalConversions = (
1564 => { Name => 'NonCPULens9FocalLength', Format => 'int16s', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1},
1568 => { Name => 'NonCPULens10FocalLength', Format => 'int16s', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1},
1572 => { Name => 'NonCPULens11FocalLength', Format => 'int16s', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1},
- 1576 => { Name => 'NonCPULens21FocalLength', Format => 'int16s', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1},
+ 1576 => { Name => 'NonCPULens12FocalLength', Format => 'int16s', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1},
1580 => { Name => 'NonCPULens13FocalLength', Format => 'int16s', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1},
1584 => { Name => 'NonCPULens14FocalLength', Format => 'int16s', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1},
1588 => { Name => 'NonCPULens15FocalLength', Format => 'int16s', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1},
@@ -9478,26 +9972,26 @@ my %nikonFocalConversions = (
1600 => { Name => 'NonCPULens18FocalLength', Format => 'int16s', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1},
1604 => { Name => 'NonCPULens19FocalLength', Format => 'int16s', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1},
1608 => { Name => 'NonCPULens20FocalLength', Format => 'int16s', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1},
- 1612 => { Name => 'NonCPULens1MaxAperture', Format => 'int16s', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1},
- 1616 => { Name => 'NonCPULens2MaxAperture', Format => 'int16s', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1},
- 1620 => { Name => 'NonCPULens3MaxAperture', Format => 'int16s', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1},
- 1624 => { Name => 'NonCPULens4MaxAperture', Format => 'int16s', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1},
- 1628 => { Name => 'NonCPULens5MaxAperture', Format => 'int16s', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1},
- 1632 => { Name => 'NonCPULens6MaxAperture', Format => 'int16s', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1},
- 1636 => { Name => 'NonCPULens7MaxAperture', Format => 'int16s', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1},
- 1640 => { Name => 'NonCPULens8MaxAperture', Format => 'int16s', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1},
- 1644 => { Name => 'NonCPULens9MaxAperture', Format => 'int16s', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1},
- 1648 => { Name => 'NonCPULens10MaxAperture', Format => 'int16s', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1},
- 1652 => { Name => 'NonCPULens11MaxAperture', Format => 'int16s', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1},
- 1656 => { Name => 'NonCPULens12MaxAperture', Format => 'int16s', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1},
- 1660 => { Name => 'NonCPULens13MaxAperture', Format => 'int16s', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1},
- 1664 => { Name => 'NonCPULens14MaxAperture', Format => 'int16s', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1},
- 1668 => { Name => 'NonCPULens15MaxAperture', Format => 'int16s', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1},
- 1672 => { Name => 'NonCPULens16MaxAperture', Format => 'int16s', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1},
- 1676 => { Name => 'NonCPULens17MaxAperture', Format => 'int16s', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1},
- 1680 => { Name => 'NonCPULens18MaxAperture', Format => 'int16s', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1},
- 1684 => { Name => 'NonCPULens19MaxAperture', Format => 'int16s', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1},
- 1688 => { Name => 'NonCPULens20MaxAperture', Format => 'int16s', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1},
+ 1612 => { Name => 'NonCPULens1MaxAperture', Format => 'int16s', PrintConv => 'sprintf("f/%.1f",$val/100)', Unknown => 1}, #non-CPU aperture interface, values and storage differ from the Z8
+ 1616 => { Name => 'NonCPULens2MaxAperture', Format => 'int16s', PrintConv => 'sprintf("f/%.1f",$val/100)', Unknown => 1},
+ 1620 => { Name => 'NonCPULens3MaxAperture', Format => 'int16s', PrintConv => 'sprintf("f/%.1f",$val/100)', Unknown => 1},
+ 1624 => { Name => 'NonCPULens4MaxAperture', Format => 'int16s', PrintConv => 'sprintf("f/%.1f",$val/100)', Unknown => 1},
+ 1628 => { Name => 'NonCPULens5MaxAperture', Format => 'int16s', PrintConv => 'sprintf("f/%.1f",$val/100)', Unknown => 1},
+ 1632 => { Name => 'NonCPULens6MaxAperture', Format => 'int16s', PrintConv => 'sprintf("f/%.1f",$val/100)', Unknown => 1},
+ 1636 => { Name => 'NonCPULens7MaxAperture', Format => 'int16s', PrintConv => 'sprintf("f/%.1f",$val/100)', Unknown => 1},
+ 1640 => { Name => 'NonCPULens8MaxAperture', Format => 'int16s', PrintConv => 'sprintf("f/%.1f",$val/100)', Unknown => 1},
+ 1644 => { Name => 'NonCPULens9MaxAperture', Format => 'int16s', PrintConv => 'sprintf("f/%.1f",$val/100)', Unknown => 1},
+ 1648 => { Name => 'NonCPULens10MaxAperture', Format => 'int16s', PrintConv => 'sprintf("f/%.1f",$val/100)', Unknown => 1},
+ 1652 => { Name => 'NonCPULens11MaxAperture', Format => 'int16s', PrintConv => 'sprintf("f/%.1f",$val/100)', Unknown => 1},
+ 1656 => { Name => 'NonCPULens12MaxAperture', Format => 'int16s', PrintConv => 'sprintf("f/%.1f",$val/100)', Unknown => 1},
+ 1660 => { Name => 'NonCPULens13MaxAperture', Format => 'int16s', PrintConv => 'sprintf("f/%.1f",$val/100)', Unknown => 1},
+ 1664 => { Name => 'NonCPULens14MaxAperture', Format => 'int16s', PrintConv => 'sprintf("f/%.1f",$val/100)', Unknown => 1},
+ 1668 => { Name => 'NonCPULens15MaxAperture', Format => 'int16s', PrintConv => 'sprintf("f/%.1f",$val/100)', Unknown => 1},
+ 1672 => { Name => 'NonCPULens16MaxAperture', Format => 'int16s', PrintConv => 'sprintf("f/%.1f",$val/100)', Unknown => 1},
+ 1676 => { Name => 'NonCPULens17MaxAperture', Format => 'int16s', PrintConv => 'sprintf("f/%.1f",$val/100)', Unknown => 1},
+ 1680 => { Name => 'NonCPULens18MaxAperture', Format => 'int16s', PrintConv => 'sprintf("f/%.1f",$val/100)', Unknown => 1},
+ 1684 => { Name => 'NonCPULens19MaxAperture', Format => 'int16s', PrintConv => 'sprintf("f/%.1f",$val/100)', Unknown => 1},
+ 1688 => { Name => 'NonCPULens20MaxAperture', Format => 'int16s', PrintConv => 'sprintf("f/%.1f",$val/100)', Unknown => 1},
1704 => { Name => 'HDMIOutputResolution', PrintConv => \%hDMIOutputResolutionZ9 },
1717 => { Name => 'SetClockFromLocationData', PrintConv => \%offOn, Unknown => 1 },
1724 => { Name => 'AirplaneMode', PrintConv => \%offOn, Unknown => 1 },
@@ -10823,16 +11317,14 @@ my %nikonFocalConversions = (
},
);
-# MakerNotes0x51 - compression info for Z9
+# MakerNotes0x51 - compression info for Z8 and Z9
%Image::ExifTool::Nikon::MakerNotes0x51 = (
%binaryDataAttrs,
- DATAMEMBER => [ 0 ],
GROUPS => { 0 => 'MakerNotes' },
0 => {
- Name => 'FirmwareVersion',
+ Name => 'FirmwareVersion51',
Format => 'string[8]',
Writable => 0,
- RawConv => '$$self{FirmwareVersion} = $val',
},
10 => {
Name => 'NEFCompression',
@@ -12483,8 +12975,10 @@ sub PrepareNikonOffsets($$$$$)
for ($i=0; $i<@sorted-1; ++$i) {
my $pos = $sorted[$i][0];
my $len = $sorted[$i+1][1] - $sorted[$i][1];
+ my $tagInfo = $$tagTablePtr{$pos};
+ $tagInfo = $et->GetTagInfo($tagTablePtr, $pos) if $tagInfo and
+ not (ref $tagInfo eq 'HASH' and $$tagInfo{AlwaysDecrypt});
# set DirLen in SubDirectory entry
- my $tagInfo = $et->GetTagInfo($tagTablePtr, $pos) if $$tagTablePtr{$pos};
my $subdir;
$$subdir{DirLen} = $len if ref $tagInfo eq 'HASH' and defined($subdir=$$tagInfo{SubDirectory});
if ($decryptMode) {
@@ -12496,7 +12990,7 @@ sub PrepareNikonOffsets($$$$$)
if ($subdir and $$subdir{KnownEnd}) {
$n = $$subdir{KnownEnd};
if ($n > $len) {
- $et->Warn("Data too short for $$tagInfo{Name}",1);
+ $et->Warn("Data too short for $$tagInfo{Name}",1) unless $$tagInfo{AlwaysDecrypt};
$n = $len;
}
}
diff --git a/lib/Image/ExifTool/NikonCustom.pm b/lib/Image/ExifTool/NikonCustom.pm
index cd7fe55b..85d81b0f 100644
--- a/lib/Image/ExifTool/NikonCustom.pm
+++ b/lib/Image/ExifTool/NikonCustom.pm
@@ -15,7 +15,7 @@ package Image::ExifTool::NikonCustom;
use strict;
use vars qw($VERSION @ISA @EXPORT_OK %buttonsZ9);
-$VERSION = '1.23';
+$VERSION = '1.24';
@ISA = qw(Exporter);
@EXPORT_OK = qw(%buttonsZ9);
@@ -117,6 +117,7 @@ my %dialsZ9 = (
6 => 'Videos Only',
7 => 'Rating',
8 => 'Page',
+ 9 => 'Skip To First Shot In Series',
);
my %evfGridsZ9 = (
0 => '3x3',
@@ -9665,6 +9666,397 @@ my %noYes = ( 0 => 'No', 1 => 'Yes' );
},
);
+# Z8 custom settings (ref 1) #base at offset26 + 1195 (firmware 1.0.0)
+%Image::ExifTool::NikonCustom::SettingsZ8 = (
+ PROCESS_PROC => \&Image::ExifTool::ProcessBinaryData,
+ WRITE_PROC => \&Image::ExifTool::WriteBinaryData,
+ CHECK_PROC => \&Image::ExifTool::CheckBinaryData,
+ DATAMEMBER => [ 185, 529 ],
+ WRITABLE => 1,
+ FIRST_ENTRY => 0,
+ GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' },
+ NOTES => 'Custom settings for the Z8.',
+ 1 => {
+ Name => 'CustomSettingsBank',
+ PrintConv => {
+ 0 => 'A',
+ 1 => 'B',
+ 2 => 'C',
+ 3 => 'D',
+ },
+ },
+ 3 => { # CSa1
+ Name => 'AF-CPrioritySelection',
+ PrintConv => {
+ 0 => 'Release',
+ 1 => 'Release + Focus',
+ 3 => 'Focus',
+ },
+ },
+ 5 => { Name => 'AF-SPrioritySelection', PrintConv => {0 => 'Release',1 => 'Focus'}}, #CSa2
+ 7 => { # CSa3-a #when AFAreaMode is 3D-tracking, blocked shot response will be 3, regardless of this setting
+ Name => 'BlockShotAFResponse',
+ PrintConv => {
+ 1 => '1 (Quick)',
+ 2 => '2',
+ 3 => '3 (Normal)',
+ 4 => '4',
+ 5 => '5 (Delayed)',
+ },
+ },
+ 11 => {Name => 'AFPointSel',PrintConv => { 0 => 'Use All',1 => 'Use Half' }}, # CSa4
+ 13 => { # CSa5
+ Name => 'StoreByOrientation',
+ PrintConv => {
+ 0 => 'Off',
+ 1 => 'Focus Point',
+ 2 => 'Focus Point and AF-area mode',
+ },
+ },
+ 15 => { Name => 'AFActivation', PrintConv => {0 => 'AF-On Only', 1 => 'Shutter/AF-On'}}, # CSa6-a
+ 16 => { Name => 'AF-OnOutOfFocusRelease', PrintConv => {0 => 'Disable', 1 => 'Enable'}, Unknown => 1}, # CSa6-b
+ 17 => { Name => 'LimitAF-AreaModeSelPinpoint', PrintConv => \%limitNolimit, Unknown => 1 }, # CSa8
+ 19 => { Name => 'LimitAF-AreaModeSelWideAF_S', PrintConv => \%limitNolimit, Unknown => 1 }, # CSa8
+ 20 => { Name => 'LimitAF-AreaModeSelWideAF_L', PrintConv => \%limitNolimit, Unknown => 1 }, # CSa8
+ 21 => { Name => 'LimitAFAreaModeSelAuto', PrintConv => \%limitNolimit, Unknown => 1 }, # CSa8 #left out hypen to retain compatibility with tag name in NikonSettings
+ 22 => { Name => 'FocusPointWrap', PrintConv => { 0 => 'No Wrap', 1 => 'Wrap' }, Unknown => 1 }, # CSa10
+ 23 => { Name => 'ManualFocusPointIllumination', PrintConv => {0 => 'On During Focus Point Selection Only', 1 => 'On', }, Unknown => 1 }, # CSa11a
+ 24 => { Name => 'DynamicAreaAFAssist', PrintConv => { 0 => 'Focus Point Only',1 => 'Focus and Surrounding Points',}, Unknown => 1 }, # CSa11b
+ 25 => { Name => 'AF-AssistIlluminator', PrintConv => \%offOn }, # CSa12
+ 26 => { Name => 'ManualFocusRingInAFMode', PrintConv => \%offOn }, # CSa15
+ 27 => { Name => 'ExposureControlStepSize', PrintConv => \%thirdHalfFull }, # CSb2
+ 29 => { # CSb3
+ Name => 'EasyExposureCompensation',
+ PrintConv => {
+ 0 => 'Off',
+ 1 => 'On',
+ 2 => 'On (auto reset)',
+ },
+ },
+ 31 => { # CSb5
+ Name => 'CenterWeightedAreaSize',
+ PrintConv => {
+ 0 => '8 mm',
+ 1 => '12 mm',
+ 4 => 'Average',
+ },
+ },
+ 33 => { # CSb6-a
+ Name => 'FineTuneOptMatrixMetering',
+ Format => 'int8s',
+ ValueConv => '$val / 6',
+ ValueConvInv => 'int($val*6)',
+ PrintConv => '$val ? sprintf("%+.2f", $val) : 0',
+ PrintConvInv => 'Image::ExifTool::Exif::ConvertFraction($val)',
+ },
+ 35 => { # CSb6-b
+ Name => 'FineTuneOptCenterWeighted',
+ Format => 'int8s',
+ ValueConv => '$val / 6',
+ ValueConvInv => 'int($val*6)',
+ PrintConv => '$val ? sprintf("%+.2f", $val) : 0',
+ PrintConvInv => 'Image::ExifTool::Exif::ConvertFraction($val)',
+ },
+ 37 => { # CSb6-c
+ Name => 'FineTuneOptSpotMetering',
+ Format => 'int8s',
+ ValueConv => '$val / 6',
+ ValueConvInv => 'int($val*6)',
+ PrintConv => '$val ? sprintf("%+.2f", $val) : 0',
+ PrintConvInv => 'Image::ExifTool::Exif::ConvertFraction($val)',
+ },
+ 39 => { # CSb6-d
+ Name => 'FineTuneOptHighlightWeighted',
+ Format => 'int8s',
+ ValueConv => '$val / 6',
+ ValueConvInv => 'int($val*6)',
+ PrintConv => '$val ? sprintf("%+.2f", $val) : 0',
+ PrintConvInv => 'Image::ExifTool::Exif::ConvertFraction($val)',
+ },
+ 41 => { # CSc1
+ Name => 'ShutterReleaseButtonAE-L',
+ PrintConv => {
+ 0 => 'Off',
+ 1 => 'On (Half Press)',
+ 2 => 'On (Burst Mode)',
+ },
+ },
+ 43 => { # CSc2-a
+ Name => 'SelfTimerTime',
+ PrintConv => {
+ 0 => '2 s',
+ 1 => '5 s',
+ 2 => '10 s',
+ 3 => '20 s',
+ },
+ },
+ 45 => { Name => 'SelfTimerShotCount', }, # CSc2-b 1-9
+ 49 => { # CSc2-c
+ Name => 'SelfTimerShotInterval',
+ PrintConv => {
+ 0 => '0.5 s',
+ 1 => '1 s',
+ 2 => '2 s',
+ 3 => '3 s',
+ },
+ },
+ 51 => { Name => 'PlaybackMonitorOffTime', %powerOffDelayTimesZ9 }, # CSc3-a
+ 53 => { Name => 'MenuMonitorOffTime', %powerOffDelayTimesZ9 }, # CSc3-b
+ 55 => { Name => 'ShootingInfoMonitorOffTime',%powerOffDelayTimesZ9 }, # CSc3-c
+ 57 => { Name => 'ImageReviewMonitorOffTime', %powerOffDelayTimesZ9 }, # CSc3-d
+ 59 => { Name => 'CLModeShootingSpeed', ValueConv => '$val + 1', ValueConvInv => '$val - 1', PrintConv => '"$val fps"', PrintConvInv => '$val=~s/\s*fps//i; $val' }, # CSd1b
+ 61 => { # CSd2 # values: 1-200 & 'No Limit'
+ Name => 'MaxContinuousRelease',
+ Format => 'int16s',
+ ValueConv => '($val eq -1 ? \'No Limit\' : $val ) ',
+ },
+ 65 => { Name => 'SyncReleaseMode', PrintConv => { 0 => 'No Sync', 1 => 'Sync' }, Unknown => 1 }, # CSd4
+ 69 => { Name => 'LimitSelectableImageAreaDX', PrintConv => \%limitNolimit, Unknown => 1 }, # CSd6-1
+ 70 => { Name => 'LimitSelectableImageArea1To1', PrintConv => \%limitNolimit, Unknown => 1 }, # CSd6-2
+ 71 => { Name => 'LimitSelectableImageArea16To9', PrintConv => \%limitNolimit, Unknown => 1 }, # CSd6-3
+ 72 => { Name => 'FileNumberSequence', PrintConv => \%offOn }, # CSd7
+ 73 => { #CSa13b
+ Name => 'FocusPeakingLevel',
+ Unknown => 1,
+ PrintConv => {
+ 0 => 'High Sensitivity',
+ 1 => 'Standard Sensitivity',
+ 2 => 'Low Sensitivity',
+ },
+ },
+ 75 => { #CSa13c
+ Name => 'FocusPeakingHighlightColor',
+ Unknown => 1,
+ PrintConv => {
+ 0 => 'Red',
+ 1 => 'Yellow',
+ 2 => 'Blue',
+ 3 => 'White',
+ },
+ },
+
+ 81 => { Name => 'ContinuousModeDisplay', PrintConv => \%offOn }, # CSd12
+ 83 => { # CSe1-a Previous cameras reported this with HighSpeedSync indicator appended as '(Auto FP)'. Z9 separated the 2 fields.
+ Name => 'FlashSyncSpeed',
+ ValueConv => '($val-144)/8',
+ PrintConv => {
+ 0 => '1/60 s',
+ 1 => '1/80 s',
+ 2 => '1/100 s',
+ 3 => '1/125 s',
+ 4 => '1/160 s',
+ 5 => '1/200 s',
+ 6 => '1/250 s',
+ },
+ },
+ 85 => { Name => 'HighSpeedSync', PrintConv => \%offOn }, # CSe1-b
+ 87 => { # CSe2
+ Name => 'FlashShutterSpeed',
+ ValueConv => 'my $t = ($val - 16) % 24; $t ? $val / 24 : 2 + ($val - 16) / 24', #unusual decode perhaps due to need to accomodate 4 new values?
+ PrintConv => {
+ 0 => '1 s',
+ 1 => '1/2 s',
+ 2 => '1/4 s',
+ 3 => '1/8 s',
+ 4 => '1/15 s',
+ 5 => '1/30 s',
+ 6 => '1/60 s',
+ 7 => '30 s',
+ 8 => '15 s',
+ 9 => '8 s',
+ 10 => '4 s',
+ 11 => '2 s',
+ },
+ },
+ 89 => { Name => 'FlashExposureCompArea', PrintConv => { 0 => 'Entire Frame', 1 => 'Background Only' } }, # CSe3
+ 91 => { Name => 'AutoFlashISOSensitivity', PrintConv => { 0 => 'Subject and Background',1 => 'Subject Only'} }, # CSe4
+ 93 => { Name => 'ModelingFlash', PrintConv => \%offOn }, # CSe5
+ 95 => { # CSe6
+ Name => 'AutoBracketModeM',
+ PrintConv => {
+ 0 => 'Flash/Speed',
+ 1 => 'Flash/Speed/Aperture',
+ 2 => 'Flash/Aperture',
+ 3 => 'Flash Only',
+ 4 => 'Flash/ISO',
+ },
+ },
+ 97 => { Name => 'AutoBracketOrder', PrintConv => { 0 => '0,-,+',1 => '-,0,+' } }, # CSe7
+ 99 => { Name => 'Func1Button', %buttonsZ9}, # CSf2-a
+ 115 => { Name => 'Func2Button', %buttonsZ9}, # CSf2-b
+ 131 => { Name => 'AFOnButton', %buttonsZ9}, # CSf2-c
+ 143 => { Name => 'SubSelector', %buttonsZ9, Unknown => 1}, # CSf2-g
+ 155 => { Name => 'AssignMovieRecordButton', %buttonsZ9, Unknown => 1}, # CSf2-m
+ 159 => { Name => 'LensFunc1Button', %buttonsZ9}, # CSf2-o
+ 167 => { Name => 'LensFunc2Button', %buttonsZ9}, # CSf2-p
+ 173 => { # CSf2-q
+ Name => 'LensControlRing',
+ PrintConv => {
+ 0 => 'None (Disabled)',
+ 1 => 'Focus (M/A)',
+ 2 => 'ISO Sensitivity',
+ 3 => 'Exposure Compensation',
+ 4 => 'Aperture',
+ },
+ },
+ 175 => { Name => 'MultiSelectorShootMode', %buttonsZ9}, # CSf2-h called the OK button in camera, tag name retained for compatibility
+ 179 => { Name => 'MultiSelectorPlaybackMode', %buttonsZ9}, # CSf3f
+ 183 => { Name => 'ShutterSpeedLock', PrintConv => \%offOn }, # CSf4-a
+ 184 => { Name => 'ApertureLock', PrintConv => \%offOn }, # CSf4-b
+ 185 => { # CSf5-a Previous cameras reported this tag as part of CmdDialsReverseRotation. Blend with CSf5-b separate settings together to match extant tag name and values
+ Name => 'CmdDialsReverseRotExposureComp',
+ RawConv => '$$self{CmdDialsReverseRotExposureComp} = $val',
+ Hidden => 1,
+ },
+ 186 => [{ # CSf5-a (continued from above)
+ Name => 'CmdDialsReverseRotation',
+ Condition => '$$self{CmdDialsReverseRotExposureComp} == 0',
+ PrintConv => {
+ 0 => 'No',
+ 1 => 'Shutter Speed & Aperture',
+ },
+ },{
+ Name => 'CmdDialsReverseRotation',
+ PrintConv => {
+ 0 => 'Exposure Compensation',
+ 1 => 'Exposure Compensation, Shutter Speed & Aperture',
+ },
+ }],
+ 191 => { Name => 'UseDialWithoutHold', PrintConv => \%offOn, Unknown => 1 }, # CSf6
+ 193 => { Name => 'ReverseIndicators', PrintConv => { 0 => '+ 0 -', 1 => '- 0 +' }, Unknown => 1 }, # CSf7
+ 195 => { Name => 'MovieFunc1Button', %buttonsZ9}, # CSg2-a
+ 199 => { Name => 'MovieFunc2Button', %buttonsZ9}, # CSg2-b
+
+ 203 => { Name => 'MovieAF-OnButton', %buttonsZ9}, # CSg2-f
+ 215 => { # CSg2-z
+ Name => 'MovieLensControlRing',
+ PrintConv => {
+ 0 => 'None (Disabled)',
+ 2 => 'ISO Sensitivity',
+ 3 => 'Exposure Compensation',
+ 4 => 'Power Aperture',
+ 5 => 'Hi-Res Zoom',
+ },
+ },
+ 217 => { Name => 'MovieMultiSelector', %buttonsZ9, Unknown => 1}, # CSg2-h
+ 221 => { Name => 'MovieAFSpeed', ValueConv => '$val - 5', ValueConvInv => '$val + 5' }, # CSg6-a
+ 223 => { Name => 'MovieAFSpeedApply', PrintConv => {0 => 'Always', 1 => 'Only During Recording'},}, # CSg6-b
+ 225 => { # CSg7
+ Name => 'MovieAFTrackingSensitivity',
+ PrintConv => {
+ 0 => '1 (High)',
+ 1 => '2',
+ 2 => '3',
+ 3 => '4 (Normal)',
+ 4 => '5',
+ 5 => '6',
+ 6 => '7 (Low)',
+ },
+ },
+ 257 => { Name => 'LCDIllumination', PrintConv => \%offOn, Unknown => 1 }, # CSd11
+ 258 => { Name => 'ExtendedShutterSpeeds', PrintConv => \%offOn }, # CSd5
+ 259 => { Name => 'SubjectMotion', PrintConv => {0 => 'Erratic', 1 => 'Steady'} }, # CSa3-b
+ 261 => { Name => 'FocusPointPersistence', PrintConv => {0 => 'Auto', 1 => 'Off'} }, # CSa7
+ 263 => { Name => 'AutoFocusModeRestrictions', PrintConv => \%focusModeRestrictionsZ9, Unknown => 1}, # CSa9
+ 267 => { Name => 'CHModeShootingSpeed', ValueConv => '$val + 1', ValueConvInv => '$val - 1', PrintConv => '"$val fps"', PrintConvInv => '$val=~s/\s*fps//i; $val' }, # CSd1a
+ 273 => { Name => 'FlashBurstPriority', PrintConv => { 0 => 'Frame Rate',1 => 'Exposure'}, Unknown => 1 }, # CSe8
+ 335 => { Name => 'LimitAF-AreaModeSelDynamic_S', PrintConv => \%limitNolimit, Unknown => 1 }, # CSa8
+ 336 => { Name => 'LimitAF-AreaModeSelDynamic_M', PrintConv => \%limitNolimit, Unknown => 1 }, # CSa8
+ 337 => { Name => 'LimitAF-AreaModeSelDynamic_L', PrintConv => \%limitNolimit, Unknown => 1 }, # CSa8
+ 339 => { Name => 'LimitAF-AreaModeSel3DTracking', PrintConv => \%limitNolimit, Unknown => 1 }, # CSa8
+ 341 => { Name => 'PlaybackFlickUp', PrintConv => \%flicksZ9, Unknown => 1}, # CSf12-a
+ 345 => { Name => 'PlaybackFlickDown', PrintConv => \%flicksZ9, Unknown => 1}, # CSf12-b
+ 349 => { Name => 'ISOStepSize', PrintConv => \%thirdHalfFull }, # CSb1
+ 355 => { Name => 'ReverseFocusRing', PrintConv => { 0 => 'Not Reversed', 1 => 'Reversed' } }, # CSf8
+ 356 => { Name => 'EVFImageFrame', PrintConv => \%offOn, Unknown => 1 }, # CSd14
+ 357 => { Name => 'EVFGrid', PrintConv => \%evfGridsZ9, Unknown => 1 }, # CSd15
+ 359 => { Name => 'VirtualHorizonStyle', PrintConv => {0 => 'Type A (Cockpit)', 1 => 'Type B (Sides)' }, Unknown => 1}, #CSd16
+ 421 => { Name => 'Func1ButtonPlaybackMode', %buttonsZ9, Unknown => 1}, # CSf3-a
+ 423 => { Name => 'Func2ButtonPlaybackMode', %buttonsZ9, Unknown => 1}, # CSf3-b
+ 437 => { Name => 'MovieRecordButtonPlaybackMode', %buttonsZ9, Unknown => 1}, # CSf3-m
+ 467 => { Name => 'FocusPointLock', PrintConv => \%offOn, Unknown => 1}, # CSf4-c
+ 459 => { Name => 'CommandDialPlaybackMode', PrintConv => \%dialsZ9, Unknown => 1}, # CSf3-k
+ 463 => { Name => 'SubCommandDialPlaybackMode', PrintConv => \%dialsZ9, Unknown => 1}, # CSf3-l
+ 469 => { Name => 'ControlRingResponse', PrintConv => { 0 => 'High', 1 => 'Low' } }, # CSf10
+
+ 515 => { Name => 'MovieAFAreaMode', %buttonsZ9, Unknown => 1}, # CSg2-e
+ 529 => { # CSg9-a
+ Name => 'ZebraPatternToneRange',
+ Unknown => 1,
+ RawConv => '$$self{ZebraPatternToneRange} = $val',
+ PrintConv => {
+ 0 => 'Off',
+ 1 => 'Highlights',
+ 2 => 'Midtones',
+ },
+ },
+ 531 => { Name => 'MovieZebraPattern', Condition => '$$self{ZebraPatternToneRange} and $$self{ZebraPatternToneRange} != 0', PrintConv => {0 => 'Pattern 1', 1 => 'Pattern 2'}, Unknown => 1}, # CSg12-b
+ 533 => { Name => 'MovieHighlightDisplayThreshold', Condition => '$$self{ZebraPatternToneRange} and $$self{ZebraPatternToneRange} == 1', Unknown => 1 }, # CSg12-c 120-25 when highlights are the selected tone range
+ 535 => { Name => 'MovieMidtoneDisplayValue', Condition => '$$self{ZebraPatternToneRange} and $$self{ZebraPatternToneRange} == 2', Unknown => 1 }, # CSg12-d1 when midtones are the selected tone range
+ 537 => { Name => 'MovieMidtoneDisplayRange', Condition => '$$self{ZebraPatternToneRange} and $$self{ZebraPatternToneRange} == 2', PrintConv => '"+/-$val"', Unknown => 1 }, # CSg12-d1 when midtones are the selected tone range
+ 541 => { Name => 'MovieEVFGrid', PrintConv => \%evfGridsZ9, Unknown => 1 }, # CSg11
+ 549 => { Name => 'MovieShutterSpeedLock', PrintConv => \%offOn, Unknown => 1}, # CSg4-a
+ 550 => { Name => 'MovieFocusPointLock', PrintConv => \%offOn, Unknown => 1}, # CSf4-c
+ 563 => { Name => 'MatrixMetering', PrintConv => { 0 => 'Face Detection Off', 1 => 'Face Detection On' }, Unknown => 1 }, # CSb4
+ 564 => { Name => 'AF-CFocusDisplay', PrintConv => \%offOn }, # CSa11c
+ 565 => { Name => 'FocusPeakingDisplay', PrintConv => \%offOn, Unknown => 1}, # CSa13a
+ 567 => { # CSb7
+ Name => 'KeepExposure',
+ PrintConv => {
+ 0 => 'Off',
+ 1 => 'Shutter Speed',
+ 2 => 'ISO',
+ },
+ },
+ 585 => { Name => 'StarlightView', PrintConv => \%offOn, Unknown => 1 }, # CSd9
+ 587 => { # CSd10-a
+ Name => 'EVFWarmDisplayMode',
+ Unknown => 1,
+ PrintConv => {
+ 0 => 'Off',
+ 1 => 'Mode 1',
+ 2 => 'Mode 2',
+ },
+ },
+ 589 => { # CSd10-b values in range -3 to +3
+ Name => 'EVFWarmDisplayBrightness',
+ Format => 'int8s',
+ Unknown => 1,
+ },
+ 591 => { #CSd13
+ Name => 'EVFReleaseIndicator',
+ Unknown => 1,
+ PrintConv => {
+ 0 => 'Off',
+ 1 => 'Type A (Dark)',
+ 2 => 'Type B (Border)',
+ 3 => 'Type C (Sides)',
+ },
+ },
+ 601 => { Name => 'MovieApertureLock', PrintConv => \%offOn, Unknown => 1 }, # CSg4-b
+ 607 => { Name => 'FlickAdvanceDirection', PrintConv => { 0 => 'Left to Right', 1 => 'Right to Left' }, Unknown => 1 }, # CSf11-c
+ 647 => { #CSd4-a
+ Name => 'PreReleaseBurstLength',
+ PrintConv => {
+ 0 => 'None',
+ 1 => '0.3 Sec',
+ 2 => '0.5 Sec',
+ 3 => '1 Sec',
+ },
+ },
+ 649 => { #CSd4-b
+ Name => 'PostReleaseBurstLength',
+ PrintConv => {
+ 0 => '1 Sec',
+ 1 => '2 Sec',
+ 2 => '3 Sec',
+ 3 => 'Max',
+ },
+ },
+ 681 => { Name => 'ViewModeShowEffectsOfSettings', PrintConv => { 0=>'Always', 1=> 'Only When Flash Not Used'}, Unknown => 1 }, #CS8-a
+ 683 => { Name => 'DispButton', %buttonsZ9}, #CSf2
+);
+
# Z9 custom settings (ref 1) #base at offset26 + 1035 (firmware 1.0.0)
%Image::ExifTool::NikonCustom::SettingsZ9 = (
PROCESS_PROC => \&Image::ExifTool::ProcessBinaryData,
@@ -9807,7 +10199,7 @@ my %noYes = ( 0 => 'No', 1 => 'Yes' );
61 => { # CSd2 # values: 1-200 & 'No Limit'
Name => 'MaxContinuousRelease',
Format => 'int16s',
- ValueConv => '($val = -1 ? \'No Limit\' : $val ) ',
+ ValueConv => '($val eq -1 ? \'No Limit\' : $val ) ',
},
65 => { Name => 'SyncReleaseMode', PrintConv => { 0 => 'No Sync', 1 => 'Sync' }, Unknown => 1 }, # CSd4
69 => { Name => 'LimitSelectableImageAreaDX', PrintConv => \%limitNolimit, Unknown => 1 }, # CSd6-1
@@ -9937,6 +10329,7 @@ my %noYes = ( 0 => 'No', 1 => 'Yes' );
195 => { Name => 'MovieFunc1Button', %buttonsZ9}, # CSg2-a
199 => { Name => 'MovieFunc2Button', %buttonsZ9}, # CSg2-b
203 => { Name => 'MovieAF-OnButton', %buttonsZ9}, # CSg2-f
+ 207 => { Name => 'MovieMultiSelector', %buttonsZ9, Unknown => 1}, # CSg2-h
215 => { # CSg2-z
Name => 'MovieLensControlRing',
PrintConv => {
@@ -9947,7 +10340,6 @@ my %noYes = ( 0 => 'No', 1 => 'Yes' );
5 => 'Hi-Res Zoom',
},
},
- 217 => { Name => 'MovieMultiSelector', %buttonsZ9, Unknown => 1}, # CSg2-h
221 => { Name => 'MovieAFSpeed', ValueConv => '$val - 5', ValueConvInv => '$val + 5' }, # CSg6-a
223 => { Name => 'MovieAFSpeedApply', PrintConv => {0 => 'Always', 1 => 'Only During Recording'},}, # CSg6-b
225 => { # CSg7
@@ -10075,6 +10467,415 @@ my %noYes = ( 0 => 'No', 1 => 'Yes' );
607 => { Name => 'FlickAdvanceDirection', PrintConv => { 0 => 'Left to Right', 1 => 'Right to Left' }, Unknown => 1 }, # CSf11-c
);
+# Z9 custom settings (ref 1) #base at offset26 + 1095 (firmware 4.0)
+%Image::ExifTool::NikonCustom::SettingsZ9v4 = (
+ PROCESS_PROC => \&Image::ExifTool::ProcessBinaryData,
+ WRITE_PROC => \&Image::ExifTool::WriteBinaryData,
+ CHECK_PROC => \&Image::ExifTool::CheckBinaryData,
+ DATAMEMBER => [ 185, 553 ],
+ WRITABLE => 1,
+ FIRST_ENTRY => 0,
+ GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' },
+ NOTES => 'Custom settings for the Z9.',
+ 1 => {
+ Name => 'CustomSettingsBank',
+ PrintConv => {
+ 0 => 'A',
+ 1 => 'B',
+ 2 => 'C',
+ 3 => 'D',
+ },
+ },
+ 3 => { # CSa1
+ Name => 'AF-CPrioritySelection',
+ PrintConv => {
+ 0 => 'Release',
+ 1 => 'Release + Focus',
+ 3 => 'Focus',
+ },
+ },
+ 5 => { Name => 'AF-SPrioritySelection', PrintConv => {0 => 'Release',1 => 'Focus'}}, #CSa2
+ 7 => { # CSa3-a #when AFAreaMode is 3D-tracking, blocked shot response will be 3, regardless of this setting
+ Name => 'BlockShotAFResponse',
+ PrintConv => {
+ 1 => '1 (Quick)',
+ 2 => '2',
+ 3 => '3 (Normal)',
+ 4 => '4',
+ 5 => '5 (Delayed)',
+ },
+ },
+ 11 => {Name => 'AFPointSel',PrintConv => { 0 => 'Use All',1 => 'Use Half' }}, # CSa4
+ 13 => { # CSa5
+ Name => 'StoreByOrientation',
+ PrintConv => {
+ 0 => 'Off',
+ 1 => 'Focus Point',
+ 2 => 'Focus Point and AF-area mode',
+ },
+ },
+ 15 => { Name => 'AFActivation', PrintConv => {0 => 'AF-On Only', 1 => 'Shutter/AF-On'}}, # CSa6-a
+ 16 => { Name => 'AF-OnOutOfFocusRelease', PrintConv => {0 => 'Disable', 1 => 'Enable'}, Unknown => 1}, # CSa6-b
+ 17 => { Name => 'LimitAF-AreaModeSelPinpoint', PrintConv => \%limitNolimit, Unknown => 1 }, # CSa8
+ 19 => { Name => 'LimitAF-AreaModeSelWideAF_S', PrintConv => \%limitNolimit, Unknown => 1 }, # CSa8
+ 20 => { Name => 'LimitAF-AreaModeSelWideAF_L', PrintConv => \%limitNolimit, Unknown => 1 }, # CSa8
+ 21 => { Name => 'LimitAFAreaModeSelAuto', PrintConv => \%limitNolimit, Unknown => 1 }, # CSa8 #left out hypen to retain compatibility with tag name in NikonSettings
+ 22 => { Name => 'FocusPointWrap', PrintConv => { 0 => 'No Wrap', 1 => 'Wrap' }, Unknown => 1 }, # CSa10
+ 23 => { Name => 'ManualFocusPointIllumination', PrintConv => {0 => 'On During Focus Point Selection Only', 1 => 'On', }, Unknown => 1 }, # CSa11a
+ 24 => { Name => 'DynamicAreaAFAssist', PrintConv => { 0 => 'Focus Point Only',1 => 'Focus and Surrounding Points',}, Unknown => 1 }, # CSa11b
+ 25 => { Name => 'AF-AssistIlluminator', PrintConv => \%offOn }, # CSa12
+ 26 => { Name => 'ManualFocusRingInAFMode', PrintConv => \%offOn }, # CSa14
+ 27 => { Name => 'ExposureControlStepSize', PrintConv => \%thirdHalfFull }, # CSb2
+ 29 => { # CSb3
+ Name => 'EasyExposureCompensation',
+ PrintConv => {
+ 0 => 'Off',
+ 1 => 'On',
+ 2 => 'On (auto reset)',
+ },
+ },
+ 31 => { # CSb5
+ Name => 'CenterWeightedAreaSize',
+ PrintConv => {
+ 0 => '8 mm',
+ 1 => '12 mm',
+ 4 => 'Average',
+ },
+ },
+ 33 => { # CSb6-a
+ Name => 'FineTuneOptMatrixMetering',
+ Format => 'int8s',
+ ValueConv => '$val / 6',
+ ValueConvInv => 'int($val*6)',
+ PrintConv => '$val ? sprintf("%+.2f", $val) : 0',
+ PrintConvInv => 'Image::ExifTool::Exif::ConvertFraction($val)',
+ },
+ 35 => { # CSb6-b
+ Name => 'FineTuneOptCenterWeighted',
+ Format => 'int8s',
+ ValueConv => '$val / 6',
+ ValueConvInv => 'int($val*6)',
+ PrintConv => '$val ? sprintf("%+.2f", $val) : 0',
+ PrintConvInv => 'Image::ExifTool::Exif::ConvertFraction($val)',
+ },
+ 37 => { # CSb6-c
+ Name => 'FineTuneOptSpotMetering',
+ Format => 'int8s',
+ ValueConv => '$val / 6',
+ ValueConvInv => 'int($val*6)',
+ PrintConv => '$val ? sprintf("%+.2f", $val) : 0',
+ PrintConvInv => 'Image::ExifTool::Exif::ConvertFraction($val)',
+ },
+ 39 => { # CSb6-d
+ Name => 'FineTuneOptHighlightWeighted',
+ Format => 'int8s',
+ ValueConv => '$val / 6',
+ ValueConvInv => 'int($val*6)',
+ PrintConv => '$val ? sprintf("%+.2f", $val) : 0',
+ PrintConvInv => 'Image::ExifTool::Exif::ConvertFraction($val)',
+ },
+ 41 => { # CSc1
+ Name => 'ShutterReleaseButtonAE-L',
+ PrintConv => {
+ 0 => 'Off',
+ 1 => 'On (Half Press)',
+ 2 => 'On (Burst Mode)',
+ },
+ },
+ 43 => { # CSc3-a
+ Name => 'SelfTimerTime',
+ PrintConv => {
+ 0 => '2 s',
+ 1 => '5 s',
+ 2 => '10 s',
+ 3 => '20 s',
+ },
+ },
+ 45 => { Name => 'SelfTimerShotCount', }, # CSc3-b 1-9
+ 49 => { # CSc3-c
+ Name => 'SelfTimerShotInterval',
+ PrintConv => {
+ 0 => '0.5 s',
+ 1 => '1 s',
+ 2 => '2 s',
+ 3 => '3 s',
+ },
+ },
+ 51 => { Name => 'PlaybackMonitorOffTime', %powerOffDelayTimesZ9 }, # CSc4-a
+ 53 => { Name => 'MenuMonitorOffTime', %powerOffDelayTimesZ9 }, # CSc4-b
+ 55 => { Name => 'ShootingInfoMonitorOffTime',%powerOffDelayTimesZ9 }, # CSc4-c
+ 57 => { Name => 'ImageReviewMonitorOffTime', %powerOffDelayTimesZ9 }, # CSc4-d
+ 59 => { Name => 'CLModeShootingSpeed', ValueConv => '$val + 1', ValueConvInv => '$val - 1', PrintConv => '"$val fps"', PrintConvInv => '$val=~s/\s*fps//i; $val' }, # CSd1b
+ 61 => { # CSd2 # values: 1-200 & 'No Limit'
+ Name => 'MaxContinuousRelease',
+ Format => 'int16s',
+ ValueConv => '($val eq -1 ? \'No Limit\' : $val ) ',
+ },
+ 65 => { Name => 'SyncReleaseMode', PrintConv => { 0 => 'No Sync', 1 => 'Sync' }, Unknown => 1 }, # CSd4
+ 69 => { Name => 'LimitSelectableImageAreaDX', PrintConv => \%limitNolimit, Unknown => 1 }, # CSd6-1
+ 70 => { Name => 'LimitSelectableImageArea1To1', PrintConv => \%limitNolimit, Unknown => 1 }, # CSd6-2
+ 71 => { Name => 'LimitSelectableImageArea16To9', PrintConv => \%limitNolimit, Unknown => 1 }, # CSd6-3
+ 72 => { Name => 'FileNumberSequence', PrintConv => \%offOn }, # CSd7
+ 73 => { #CSa13b
+ Name => 'FocusPeakingLevel',
+ Unknown => 1,
+ PrintConv => {
+ 0 => 'High Sensitivity',
+ 1 => 'Standard Sensitivity',
+ 2 => 'Low Sensitivity',
+ },
+ },
+ 75 => { #CSa13c
+ Name => 'FocusPeakingHighlightColor',
+ Unknown => 1,
+ PrintConv => {
+ 0 => 'Red',
+ 1 => 'Yellow',
+ 2 => 'Blue',
+ 3 => 'White',
+ },
+ },
+ 81 => { Name => 'ContinuousModeDisplay', PrintConv => \%offOn }, # CSd12
+ 83 => { # CSe1-a Previous cameras reported this with HighSpeedSync indicator appended as '(Auto FP)'. Z9 separated the 2 fields.
+ Name => 'FlashSyncSpeed',
+ ValueConv => '($val-144)/8',
+ PrintConv => {
+ 0 => '1/60 s',
+ 1 => '1/80 s',
+ 2 => '1/100 s',
+ 3 => '1/125 s',
+ 4 => '1/160 s',
+ 5 => '1/200 s',
+ 6 => '1/250 s',
+ },
+ },
+ 85 => { Name => 'HighSpeedSync', PrintConv => \%offOn }, # CSe1-b
+ 87 => { # CSe2
+ Name => 'FlashShutterSpeed',
+ ValueConv => 'my $t = ($val - 16) % 24; $t ? $val / 24 : 2 + ($val - 16) / 24', #unusual decode perhaps due to need to accomodate 4 new values?
+ PrintConv => {
+ 0 => '1 s',
+ 1 => '1/2 s',
+ 2 => '1/4 s',
+ 3 => '1/8 s',
+ 4 => '1/15 s',
+ 5 => '1/30 s',
+ 6 => '1/60 s',
+ 7 => '30 s',
+ 8 => '15 s',
+ 9 => '8 s',
+ 10 => '4 s',
+ 11 => '2 s',
+ },
+ },
+ 89 => { Name => 'FlashExposureCompArea', PrintConv => { 0 => 'Entire Frame', 1 => 'Background Only' } }, # CSe3
+ 91 => { Name => 'AutoFlashISOSensitivity', PrintConv => { 0 => 'Subject and Background',1 => 'Subject Only'} }, # CSe4
+ 93 => { Name => 'ModelingFlash', PrintConv => \%offOn }, # CSe5
+ 95 => { # CSe6
+ Name => 'AutoBracketModeM',
+ PrintConv => {
+ 0 => 'Flash/Speed',
+ 1 => 'Flash/Speed/Aperture',
+ 2 => 'Flash/Aperture',
+ 3 => 'Flash Only',
+ 4 => 'Flash/ISO',
+ },
+ },
+ 97 => { Name => 'AutoBracketOrder', PrintConv => { 0 => '0,-,+',1 => '-,0,+' } }, # CSe7
+ 99 => { Name => 'Func1Button', %buttonsZ9}, # CSf2-a
+ #101 Func1Button submenu: Preview 0 => 'Press To Recall', 1=> 'Hold To Recall' # CSf2-a
+ #103 Func1Button submenu: AreaMode 0-7 => S, Dyn-S, Dyn-M, Dyn-L, Wide-S, Wide-L, 3D, Auto; 11=>n/a # CSf2-a
+ #105 Func1Button submenu: AreaMode+AF-On 0-7 => S, Dyn-S, Dyn-M, Dyn-L, Wide-S, Wide-L, 3D, Auto; 11=>n/a # CSf2-a
+ #109 Func1Button submenu: SynchronizedRelease 1=>'Master', 2=>'Remote' # CSf2-a
+ #111 Func1Button submenu: Zoom 0=>'Zoom (Low)', 2=>'Zoom (1:1)', 2=>'Zoom (High)' # CSf2-a
+ #113 Func1Button & Func1ButtonPlayback submenu: Rating # CSf2-a & CSf3a 0=>'Candidate For Deletion' 6=>''None'
+ 115 => { Name => 'Func2Button', %buttonsZ9}, # CSf2-b
+ #117 Func2Button submenu: Preview 0 => 'Press To Recall', 1=> 'Hold To Recall' # CSf2-b
+ #119 Func2Button submenu: AreaMode 0-7 => S, Dyn-S, Dyn-M, Dyn-L, Wide-S, Wide-L, 3D, Auto; 11=>n/a # CSf2-b
+ #121 Func2Button submenu: AreaMode+AF-On 0-7 => S, Dyn-S, Dyn-M, Dyn-L, Wide-S, Wide-L, 3D, Auto; 11=>n/a # CSf2-b
+ #125 Func2Button submenu: SynchronizedRelease 1=>'Master', 2=>'Remote' # CSf2-b
+ #127 Func2Button submenu: Zoom 0=>'Zoom (Low)', 2=>'Zoom (1:1)', 2=>'Zoom (High)' # CSf2-b
+ #129 Func2Button & Func2ButtonPlayback submenu: Rating # CSf2-b & CSf3b 0=>'Candidate For Deletion' 6=>''None'
+ 131 => { Name => 'AFOnButton', %buttonsZ9}, # CSf2-c
+ 143 => { Name => 'SubSelector', %buttonsZ9, Unknown => 1}, # CSf2-g
+ 155 => { Name => 'AssignMovieRecordButton', %buttonsZ9, Unknown => 1}, # CSf2-m
+ 159 => { Name => 'LensFunc1Button', %buttonsZ9}, # CSf2-o
+ 167 => { Name => 'LensFunc2Button', %buttonsZ9}, # CSf2-p
+ 173 => { # CSf2-q
+ Name => 'LensControlRing',
+ PrintConv => {
+ 0 => 'None (Disabled)',
+ 1 => 'Focus (M/A)',
+ 2 => 'ISO Sensitivity',
+ 3 => 'Exposure Compensation',
+ 4 => 'Aperture',
+ },
+ },
+ 175 => { Name => 'MultiSelectorShootMode', %buttonsZ9}, # CSf2-h called the OK button in camera, tag name retained for compatibility
+ 179 => { Name => 'MultiSelectorPlaybackMode', %buttonsZ9}, # CSf3f
+ 183 => { Name => 'ShutterSpeedLock', PrintConv => \%offOn }, # CSf4-a
+ 184 => { Name => 'ApertureLock', PrintConv => \%offOn }, # CSf4-b
+ 185 => { # CSf5-a Previous cameras reported this tag as part of CmdDialsReverseRotation. Blend with CSf5-b separate settings together to match extant tag name and values
+ Name => 'CmdDialsReverseRotExposureComp',
+ RawConv => '$$self{CmdDialsReverseRotExposureComp} = $val',
+ Hidden => 1,
+ },
+ 186 => [{ # CSf5-a (continued from above)
+ Name => 'CmdDialsReverseRotation',
+ Condition => '$$self{CmdDialsReverseRotExposureComp} == 0',
+ PrintConv => {
+ 0 => 'No',
+ 1 => 'Shutter Speed & Aperture',
+ },
+ },{
+ Name => 'CmdDialsReverseRotation',
+ PrintConv => {
+ 0 => 'Exposure Compensation',
+ 1 => 'Exposure Compensation, Shutter Speed & Aperture',
+ },
+ }],
+ 191 => { Name => 'UseDialWithoutHold', PrintConv => \%offOn, Unknown => 1 }, # CSf6
+ 193 => { Name => 'ReverseIndicators', PrintConv => { 0 => '+ 0 -', 1 => '- 0 +' }, Unknown => 1 }, # CSf7
+ 195 => { Name => 'MovieFunc1Button', %buttonsZ9}, # CSg2-a
+ 199 => { Name => 'MovieFunc2Button', %buttonsZ9}, # CSg2-b
+ 203 => { Name => 'MovieAF-OnButton', %buttonsZ9}, # CSg2-f
+ 207 => { Name => 'MovieMultiSelector', %buttonsZ9, Unknown => 1}, # CSg2-h
+ 215 => { # CSg2-z
+ Name => 'MovieLensControlRing',
+ PrintConv => {
+ 0 => 'None (Disabled)',
+ 2 => 'ISO Sensitivity',
+ 3 => 'Exposure Compensation',
+ 4 => 'Power Aperture',
+ 5 => 'Hi-Res Zoom',
+ },
+ },
+ 221 => { Name => 'MovieAFSpeed', ValueConv => '$val - 5', ValueConvInv => '$val + 5' }, # CSg6-a
+ 223 => { Name => 'MovieAFSpeedApply', PrintConv => {0 => 'Always', 1 => 'Only During Recording'},}, # CSg6-b
+ 225 => { # CSg7
+ Name => 'MovieAFTrackingSensitivity',
+ PrintConv => {
+ 0 => '1 (High)',
+ 1 => '2',
+ 2 => '3',
+ 3 => '4 (Normal)',
+ 4 => '5',
+ 5 => '6',
+ 6 => '7 (Low)',
+ },
+ },
+ 279 => { Name => 'LCDIllumination', PrintConv => \%offOn, Unknown => 1 }, # CSd11
+ 280 => { Name => 'ExtendedShutterSpeeds', PrintConv => \%offOn }, # CSd5
+ 281 => { Name => 'SubjectMotion', PrintConv => {0 => 'Erratic', 1 => 'Steady'} }, # CSa3-b
+ 283 => { Name => 'FocusPointPersistence', PrintConv => {0 => 'Auto', 1 => 'Off'} }, # CSa7
+ 285 => { Name => 'AutoFocusModeRestrictions', PrintConv => \%focusModeRestrictionsZ9, Unknown => 1}, # CSa9
+ 289 => { Name => 'CHModeShootingSpeed', ValueConv => '$val + 1', ValueConvInv => '$val - 1', PrintConv => '"$val fps"', PrintConvInv => '$val=~s/\s*fps//i; $val' }, # CSd1a
+ 293.1 => { Name => 'LimitReleaseModeSelCL', Mask => 0x02, PrintConv => \%limitNolimit, Unknown => 1 }, # CSd3-a
+ 293.2 => { Name => 'LimitReleaseModeSelCH', Mask => 0x04, PrintConv => \%limitNolimit, Unknown => 1 }, # CSd3-b
+ 293.3 => { Name => 'LimitReleaseModeSelC30', Mask => 0x10, PrintConv => \%limitNolimit, Unknown => 1 }, # CSd3-e
+ 293.4 => { Name => 'LimitReleaseModeSelC120', Mask => 0x40, PrintConv => \%limitNolimit, Unknown => 1 }, # CSd3-c
+ 293.5 => { Name => 'LimitReleaseModeSelSelf', Mask => 0x80, PrintConv => \%limitNolimit, Unknown => 1 }, # CSd3-d
+ 297 => { Name => 'FlashBurstPriority', PrintConv => { 0 => 'Frame Rate',1 => 'Exposure'}, Unknown => 1 }, # CSe8
+ 301 => { Name => 'VerticalFuncButton', %buttonsZ9}, # CSf2-c
+ 305 => { Name => 'Func3Button', %buttonsZ9}, # CSf2-c
+ 309 => { Name => 'VerticalAFOnButton', %buttonsZ9}, # CSf2-l
+ 317 => { Name => 'VerticalMultiSelectorPlaybackMode', PrintConv => { 0 => 'Image Scroll L/R', 1 => 'Image Scroll Up/Down' }, Unknown => 1}, # CSf3-j
+ 319 => { Name => 'MovieFunc3Button', %buttonsZ9}, # CSg2-c
+ 359 => { Name => 'LimitAF-AreaModeSelDynamic_S', PrintConv => \%limitNolimit, Unknown => 1 }, # CSa8
+ 360 => { Name => 'LimitAF-AreaModeSelDynamic_M', PrintConv => \%limitNolimit, Unknown => 1 }, # CSa8
+ 361 => { Name => 'LimitAF-AreaModeSelDynamic_L', PrintConv => \%limitNolimit, Unknown => 1 }, # CSa8
+ 363 => { Name => 'LimitAF-AreaModeSel3DTracking', PrintConv => \%limitNolimit, Unknown => 1 }, # CSa8
+ 365 => { Name => 'PlaybackFlickUp', PrintConv => \%flicksZ9, Unknown => 1}, # CSf11-a
+ 369 => { Name => 'PlaybackFlickDown', PrintConv => \%flicksZ9, Unknown => 1}, # CSf11-b
+ 373 => { Name => 'ISOStepSize', PrintConv => \%thirdHalfFull }, # CSb1
+ 379 => { Name => 'ReverseFocusRing', PrintConv => { 0 => 'Not Reversed', 1 => 'Reversed' } }, # CSf8
+ 380 => { Name => 'EVFImageFrame', PrintConv => \%offOn, Unknown => 1 }, # CSd14
+ 381 => { Name => 'EVFGrid', PrintConv => \%evfGridsZ9, Unknown => 1 }, # CSd15
+ 383 => { Name => 'VirtualHorizonStyle', PrintConv => {0 => 'Type A (Cockpit)', 1 => 'Type B (Sides)' }, Unknown => 1}, #CSd16
+ 397 => { Name => 'Func4Button', %buttonsZ9, Unknown => 1}, # CSf2-e
+ 403 => { Name => 'AudioButton', %buttonsZ9, Unknown => 1}, # CSf2-i
+ 405 => { Name => 'QualityButton', %buttonsZ9, Unknown => 1}, # CSf2-j
+ 423 => { Name => 'VerticalMultiSelector', %buttonsZ9, Unknown => 1}, # CSf2-k
+ 445 => { Name => 'Func1ButtonPlaybackMode', %buttonsZ9, Unknown => 1}, # CSf3-a
+ 447 => { Name => 'Func2ButtonPlaybackMode', %buttonsZ9, Unknown => 1}, # CSf3-b
+ 449 => { Name => 'Func3ButtonPlaybackMode', %buttonsZ9, Unknown => 1}, # CSf3-c
+ 455 => { Name => 'Func4ButtonPlaybackMode', %buttonsZ9, Unknown => 1}, # CSf3-e
+ 461 => { Name => 'MovieRecordButtonPlaybackMode', %buttonsZ9, Unknown => 1}, # CSf3-m
+ 463 => { Name => 'VerticalFuncButtonPlaybackMode', %buttonsZ9, Unknown => 1}, # CSf3-d
+ 465 => { Name => 'AudioButtonPlaybackMode', %buttonsZ9, Unknown => 1}, # CSf3-g
+ 471 => { Name => 'QualityButtonPlaybackMode', %buttonsZ9, Unknown => 1}, # CSf3-h
+ 477 => { Name => 'WhiteBalanceButtonPlaybackMode', %buttonsZ9, Unknown => 1}, # CSf3-i
+ 483 => { Name => 'CommandDialPlaybackMode', PrintConv => \%dialsZ9, Unknown => 1}, # CSf3-k
+ 487 => { Name => 'SubCommandDialPlaybackMode', PrintConv => \%dialsZ9, Unknown => 1}, # CSf3-l
+ 491 => { Name => 'FocusPointLock', PrintConv => \%offOn, Unknown => 1}, # CSf4-c
+ 493 => { Name => 'ControlRingResponse', PrintConv => { 0 => 'High', 1 => 'Low' } }, # CSf10
+ 505 => { Name => 'VerticalMovieFuncButton', %buttonsZ9, Unknown => 1}, # CSg2-d
+ 529 => { Name => 'VerticalMovieAFOnButton', %buttonsZ9, Unknown => 1}, # CSg2-l
+ 539 => { Name => 'MovieAFAreaMode', %buttonsZ9, Unknown => 1}, # CSg2-e
+ #545 => { Name => 'MovieLimitAF-AreaModeSelWideAF_S', PrintConv => \%limitNolimit, Unknown => 1 }, # CSg4-a
+ #546 => { Name => 'MovieLimitAF-AreaModeSelWideAF_W', PrintConv => \%limitNolimit, Unknown => 1 }, # CSg4-b
+ #547 => { Name => 'MovieLimitAF-AreaModeSelSubjectTrack', PrintConv => \%limitNolimit, Unknown => 1 }, # CSg4-c
+ #548 => { Name => 'MovieLimitAFAreaModeSelAuto', PrintConv => \%limitNolimit, Unknown => 1 }, # CSg4-d
+ #549 => { Name => 'MovieAutoFocusModeRestrictions', PrintConv => \%focusModeRestrictionsZ9, Unknown => 1}, # CSa9
+ 551 => { Name => 'HDMIViewAssist', PrintConv => \%offOn, Unknown => 1 }, # CSg12
+ 553 => { # CSg13-a
+ Name => 'ZebraPatternToneRange',
+ Unknown => 1,
+ RawConv => '$$self{ZebraPatternToneRange} = $val',
+ PrintConv => {
+ 0 => 'Off',
+ 1 => 'Highlights',
+ 2 => 'Midtones',
+ },
+ },
+ 555 => { Name => 'MovieZebraPattern', Condition => '$$self{ZebraPatternToneRange} and $$self{ZebraPatternToneRange} != 0', PrintConv => {0 => 'Pattern 1', 1 => 'Pattern 2'}, Unknown => 1}, # CSg13-b
+ 557 => { Name => 'MovieHighlightDisplayThreshold', Condition => '$$self{ZebraPatternToneRange} and $$self{ZebraPatternToneRange} == 1', Unknown => 1 }, # CSg13-c 120-25 when highlights are the selected tone range
+ 559 => { Name => 'MovieMidtoneDisplayValue', Condition => '$$self{ZebraPatternToneRange} and $$self{ZebraPatternToneRange} == 2', Unknown => 1 }, # CSg13-d1 when midtones are the selected tone range
+ 561 => { Name => 'MovieMidtoneDisplayRange', Condition => '$$self{ZebraPatternToneRange} and $$self{ZebraPatternToneRange} == 2', PrintConv => '"+/-$val"', Unknown => 1 }, # CSg13-d2 when midtones are the selected tone range
+ #563 CS g-14 LimitZebraPatternToneRange 0=>'No Restrictions', 1=> 'Highlights', 2=> 'Midtones'
+ 565 => { Name => 'MovieEVFGrid', PrintConv => \%evfGridsZ9, Unknown => 1 }, # CSg15
+ 573 => { Name => 'MovieShutterSpeedLock', PrintConv => \%offOn, Unknown => 1}, # CSg3-a
+ 574 => { Name => 'MovieFocusPointLock', PrintConv => \%offOn, Unknown => 1}, # CSg3-c
+ 587 => { Name => 'MatrixMetering', PrintConv => { 0 => 'Face Detection Off', 1 => 'Face Detection On' }, Unknown => 1 }, # CSb4
+ 588 => { Name => 'AF-CFocusDisplay', PrintConv => \%offOn }, # CSa11c
+ 589 => { Name => 'FocusPeakingDisplay', PrintConv => \%offOn, Unknown => 1}, # CSa13a
+ 591 => { # CSb7
+ Name => 'KeepExposure',
+ PrintConv => {
+ 0 => 'Off',
+ 1 => 'Shutter Speed',
+ 2 => 'ISO',
+ },
+ },
+ #593 CSd (adjust viewfinder/monitor hue, brightness and/or white balance settings) 0=>'No adjustment', 1=>'Adjust'. Related ontrols & adjustments stored in following dozen bytes or so.
+ 609 => { Name => 'StarlightView', PrintConv => \%offOn, Unknown => 1 }, # CSd11
+ 611 => { # CSd12-a
+ Name => 'EVFWarmDisplayMode',
+ Unknown => 1,
+ PrintConv => {
+ 0 => 'Off',
+ 1 => 'Mode 1',
+ 2 => 'Mode 2',
+ },
+ },
+ 613 => { # CSd12-b values in range -3 to +3
+ Name => 'EVFWarmDisplayBrightness',
+ Format => 'int8s',
+ Unknown => 1,
+ },
+ 615 => { #CSd15
+ Name => 'EVFReleaseIndicator',
+ Unknown => 1,
+ PrintConv => {
+ 0 => 'Off',
+ 1 => 'Type A (Dark)',
+ 2 => 'Type B (Border)',
+ 3 => 'Type C (Sides)',
+ },
+ },
+ 625 => { Name => 'MovieApertureLock', PrintConv => \%offOn, Unknown => 1 }, # CSg3-b
+ 631 => { Name => 'FlickAdvanceDirection', PrintConv => { 0 => 'Left to Right', 1 => 'Right to Left' }, Unknown => 1 }, # CSf13-c
+);
1; # end
__END__
diff --git a/lib/Image/ExifTool/PDF.pm b/lib/Image/ExifTool/PDF.pm
index 7e2fc886..b7bf397d 100644
--- a/lib/Image/ExifTool/PDF.pm
+++ b/lib/Image/ExifTool/PDF.pm
@@ -21,7 +21,7 @@ use vars qw($VERSION $AUTOLOAD $lastFetched);
use Image::ExifTool qw(:DataAccess :Utils);
require Exporter;
-$VERSION = '1.56';
+$VERSION = '1.57';
sub FetchObject($$$$);
sub ExtractObject($$;$$);
@@ -112,10 +112,13 @@ my %supportedFilter = (
Keywords => {
List => 'string', # this is a string list
Notes => q{
- stored as a string but treated as a comma-separated list of items when
- reading if the string contains a comma, otherwise a space-separated list of
- items. Written as a comma-separated list. The list behaviour may be
- defeated by setting the API NoPDFList option
+ stored as a string but treated as a comma- or semicolon-separated list of
+ items when reading if the string contains commas or semicolons, whichever is
+ more numerous, otherwise it is treated a space-separated list of items.
+ Written as a comma-separated list. The list behaviour may be defeated by
+ setting the API NoPDFList option. Note that the corresponding
+ XMP-pdf:Keywords tag is not treated as a list, so the NoPDFList option
+ should be used when copying between these two.
},
},
Creator => { },
@@ -1762,6 +1765,7 @@ sub ExpandArray($)
# 4) nesting depth, 5) dictionary capture type
sub ProcessDict($$$$;$$)
{
+ local $_;
my ($et, $tagTablePtr, $dict, $xref, $nesting, $type) = @_;
my $verbose = $et->Options('Verbose');
my $unknown = $$tagTablePtr{EXTRACT_UNKNOWN};
@@ -2025,10 +2029,16 @@ sub ProcessDict($$$$;$$)
}
if ($$tagInfo{List} and not $$et{OPTIONS}{NoPDFList}) {
# separate tokens in comma or whitespace delimited lists
- my @values = ($val =~ /,/) ? split /,+\s*/, $val : split ' ', $val;
- foreach $val (@values) {
- $et->FoundTag($tagInfo, $val);
+ my $comma = $val =~ tr/,/,/;
+ my $semi = $val =~ tr/;/;/;
+ my $split;
+ if ($comma or $semi) {
+ $split = $comma > $semi ? ',+\\s*' : ';+\\s*';
+ } else {
+ $split = ' ';
}
+ my @values = split $split, $val;
+ $et->FoundTag($tagInfo, $_) foreach @values;
} else {
# a simple tag value
$et->FoundTag($tagInfo, $val);
diff --git a/lib/Image/ExifTool/QuickTime.pm b/lib/Image/ExifTool/QuickTime.pm
index 119ffc08..7049d36a 100644
--- a/lib/Image/ExifTool/QuickTime.pm
+++ b/lib/Image/ExifTool/QuickTime.pm
@@ -37,6 +37,7 @@
# 25) https://cconcolato.github.io/mp4ra/atoms.html
# 26) https://github.com/SamsungVR/android_upload_sdk/blob/master/SDKLib/src/main/java/com/samsung/msca/samsungvr/sdk/UserVideo.java
# 27) https://exiftool.org/forum/index.php?topic=11517.0
+# 28) https://docs.mp3tag.de/mapping/
#------------------------------------------------------------------------------
package Image::ExifTool::QuickTime;
@@ -47,7 +48,7 @@ use Image::ExifTool qw(:DataAccess :Utils);
use Image::ExifTool::Exif;
use Image::ExifTool::GPS;
-$VERSION = '2.86';
+$VERSION = '2.87';
sub ProcessMOV($$;$);
sub ProcessKeys($$$);
@@ -3396,8 +3397,9 @@ my %isImageData = ( av01 => 1, avc1 => 1, hvc1 => 1, lhv1 => 1, hvt1 => 1 );
},
albm => { Name => 'Album', Avoid => 1 }, #(ffmpeg source)
apID => 'AppleStoreAccount',
- atID => { #10 (or TV series)
- Name => 'AlbumTitleID',
+ atID => {
+ # (ref 10 called this AlbumTitleID or TVSeries)
+ Name => 'ArtistID', #28 (or Track ID ref https://gist.github.com/maf654321/2b44c7b15d798f0c52ee)
Format => 'int32u',
Writable => 'int32s', #27
},
@@ -3408,6 +3410,7 @@ my %isImageData = ( av01 => 1, avc1 => 1, hvc1 => 1, lhv1 => 1, hvt1 => 1 );
Format => 'int32u',
Writable => 'int32s', #27
},
+ cmID => 'ComposerID', #28 (need sample to get format)
cprt => { Name => 'Copyright', Groups => { 2 => 'Author' } },
dscp => { Name => 'Description', Avoid => 1 },
desc => { Name => 'Description', Avoid => 1 }, #7
@@ -6100,10 +6103,10 @@ my %isImageData = ( av01 => 1, avc1 => 1, hvc1 => 1, lhv1 => 1, hvt1 => 1 );
PrintConv => { 0 => 'No', 1 => 'Yes' },
},
perf => 'Performer',
- plID => { #10 (or TV season)
- Name => 'PlayListID',
- Format => 'int8u', # actually int64u, but split it up
- Count => 8,
+ plID => {
+ # (ref 10 called this PlayListID or TVSeason)
+ Name => 'AlbumID', #28
+ Format => 'int64u',
Writable => 'int32s', #27
},
purd => 'PurchaseDate', #7
@@ -6565,6 +6568,7 @@ my %isImageData = ( av01 => 1, avc1 => 1, hvc1 => 1, lhv1 => 1, hvt1 => 1 );
'rating.user' => 'UserRating', # (Canon ELPH 510 HS)
'collection.user' => 'UserCollection', #22
'Encoded_With' => 'EncodedWith',
+ 'content.identifier' => 'ContentIdentifier', #forum14874
#
# the following tags aren't in the com.apple.quicktime namespace:
#
@@ -9519,13 +9523,17 @@ sub ProcessMOV($$;$)
my $items = $$et{ItemInfo};
my ($id, $prop, $docNum, $lowest);
my $primary = $$et{PrimaryItem} || 0;
-ItemID: foreach $id (keys %$items) {
+ItemID: foreach $id (reverse sort { $a <=> $b } keys %$items) {
next unless $$items{$id}{Association};
my $item = $$items{$id};
foreach $prop (@{$$item{Association}}) {
next unless $prop == $index;
if ($id == $primary or (not $dontInherit{$tag} and
- (not $$item{RefersTo} or $$item{RefersTo}{$primary})))
+ (($$item{RefersTo} and $$item{RefersTo}{$primary}) or
+ # hack: assume Item 1 is from the main image (eg. hvc1 data)
+ # to hack the case where the primary item (ie. main image)
+ # doesn't directly reference this property
+ (not $$item{RefersTo} and $id == 1))))
{
# this is associated with the primary item or an item describing
# the primary item, so consider this part of the main document
@@ -9536,7 +9544,7 @@ ItemID: foreach $id (keys %$items) {
# this property is already associated with an item that has
# an ExifTool document number, so use the lowest associated DocNum
$docNum = $$item{DocNum} if not defined $docNum or $docNum > $$item{DocNum};
- } elsif (not defined $lowest or $lowest > $id) {
+ } else {
# keep track of the lowest associated item ID
$lowest = $id;
}
diff --git a/lib/Image/ExifTool/Samsung.pm b/lib/Image/ExifTool/Samsung.pm
index ba5a0408..546c91e6 100644
--- a/lib/Image/ExifTool/Samsung.pm
+++ b/lib/Image/ExifTool/Samsung.pm
@@ -22,7 +22,7 @@ use vars qw($VERSION %samsungLensTypes);
use Image::ExifTool qw(:DataAccess :Utils);
use Image::ExifTool::Exif;
-$VERSION = '1.53';
+$VERSION = '1.54';
sub WriteSTMN($$$);
sub ProcessINFO($$$);
@@ -1004,232 +1004,232 @@ my %formatMinMax = (
Name => 'MCCData',
Groups => { 2 => 'Location' },
PrintConv => {
- 202 => 'Greece',
- 204 => 'Netherlands',
- 206 => 'Belgium',
- 208 => 'France',
- 212 => 'Monaco',
- 213 => 'Andorra',
- 214 => 'Spain',
- 216 => 'Hungary',
- 218 => 'Bosnia & Herzegov.',
- 219 => 'Croatia',
- 220 => 'Serbia',
- 221 => 'Kosovo',
- 222 => 'Italy',
- 226 => 'Romania',
- 228 => 'Switzerland',
- 230 => 'Czech Rep.',
- 231 => 'Slovakia',
- 232 => 'Austria',
- 234 => 'United Kingdom',
- 235 => 'United Kingdom',
- 238 => 'Denmark',
- 240 => 'Sweden',
- 242 => 'Norway',
- 244 => 'Finland',
- 246 => 'Lithuania',
- 247 => 'Latvia',
- 248 => 'Estonia',
- 250 => 'Russian Federation',
- 255 => 'Ukraine',
- 257 => 'Belarus',
- 259 => 'Moldova',
- 260 => 'Poland',
- 262 => 'Germany',
- 266 => 'Gibraltar',
- 268 => 'Portugal',
- 270 => 'Luxembourg',
- 272 => 'Ireland',
- 274 => 'Iceland',
- 276 => 'Albania',
- 278 => 'Malta',
- 280 => 'Cyprus',
- 282 => 'Georgia',
- 283 => 'Armenia',
- 284 => 'Bulgaria',
- 286 => 'Turkey',
- 288 => 'Faroe Islands',
- 289 => 'Abkhazia',
- 290 => 'Greenland',
- 292 => 'San Marino',
- 293 => 'Slovenia',
- 294 => 'Macedonia',
- 295 => 'Liechtenstein',
- 297 => 'Montenegro',
- 302 => 'Canada',
- 308 => 'St. Pierre & Miquelon',
- 310 => 'United States / Guam',
- 311 => 'United States / Guam',
- 312 => 'United States',
- 316 => 'United States',
- 330 => 'Puerto Rico',
- 334 => 'Mexico',
- 338 => 'Jamaica',
- 340 => 'French Guiana / Guadeloupe / Martinique',
- 342 => 'Barbados',
- 344 => 'Antigua and Barbuda',
- 346 => 'Cayman Islands',
- 348 => 'British Virgin Islands',
- 350 => 'Bermuda',
- 352 => 'Grenada',
- 354 => 'Montserrat',
- 356 => 'Saint Kitts and Nevis',
- 358 => 'Saint Lucia',
- 360 => 'St. Vincent & Gren.',
- 362 => 'Bonaire, Sint Eustatius and Saba / Curacao / Netherlands Antilles',
- 363 => 'Aruba',
- 364 => 'Bahamas',
- 365 => 'Anguilla',
- 366 => 'Dominica',
- 368 => 'Cuba',
- 370 => 'Dominican Republic',
- 372 => 'Haiti',
- 374 => 'Trinidad and Tobago',
- 376 => 'Turks and Caicos Islands / US Virgin Islands',
- 400 => 'Azerbaijan',
- 401 => 'Kazakhstan',
- 402 => 'Bhutan',
- 404 => 'India',
- 405 => 'India',
- 410 => 'Pakistan',
- 412 => 'Afghanistan',
- 413 => 'Sri Lanka',
- 414 => 'Myanmar (Burma)',
- 415 => 'Lebanon',
- 416 => 'Jordan',
- 417 => 'Syrian Arab Republic',
- 418 => 'Iraq',
- 419 => 'Kuwait',
- 420 => 'Saudi Arabia',
- 421 => 'Yemen',
- 422 => 'Oman',
- 424 => 'United Arab Emirates',
- 425 => 'Israel / Palestinian Territory',
- 426 => 'Bahrain',
- 427 => 'Qatar',
- 428 => 'Mongolia',
- 429 => 'Nepal',
- 430 => 'United Arab Emirates',
- 431 => 'United Arab Emirates',
- 432 => 'Iran',
- 434 => 'Uzbekistan',
- 436 => 'Tajikistan',
- 437 => 'Kyrgyzstan',
- 438 => 'Turkmenistan',
- 440 => 'Japan',
- 441 => 'Japan',
- 450 => 'South Korea',
- 452 => 'Viet Nam',
- 454 => 'Hongkong, China',
- 455 => 'Macao, China',
- 456 => 'Cambodia',
- 457 => 'Laos P.D.R.',
- 460 => 'China',
- 466 => 'Taiwan',
- 467 => 'North Korea',
- 470 => 'Bangladesh',
- 472 => 'Maldives',
- 502 => 'Malaysia',
- 505 => 'Australia',
- 510 => 'Indonesia',
- 514 => 'Timor-Leste',
- 515 => 'Philippines',
- 520 => 'Thailand',
- 525 => 'Singapore',
- 528 => 'Brunei Darussalam',
- 530 => 'New Zealand',
- 537 => 'Papua New Guinea',
- 539 => 'Tonga',
- 540 => 'Solomon Islands',
- 541 => 'Vanuatu',
- 542 => 'Fiji',
- 544 => 'American Samoa',
- 545 => 'Kiribati',
- 546 => 'New Caledonia',
- 547 => 'French Polynesia',
- 548 => 'Cook Islands',
- 549 => 'Samoa',
- 550 => 'Micronesia',
- 552 => 'Palau',
- 553 => 'Tuvalu',
- 555 => 'Niue',
- 602 => 'Egypt',
- 603 => 'Algeria',
- 604 => 'Morocco',
- 605 => 'Tunisia',
- 606 => 'Libya',
- 607 => 'Gambia',
- 608 => 'Senegal',
- 609 => 'Mauritania',
- 610 => 'Mali',
- 611 => 'Guinea',
- 612 => 'Ivory Coast',
- 613 => 'Burkina Faso',
- 614 => 'Niger',
- 615 => 'Togo',
- 616 => 'Benin',
- 617 => 'Mauritius',
- 618 => 'Liberia',
- 619 => 'Sierra Leone',
- 620 => 'Ghana',
- 621 => 'Nigeria',
- 622 => 'Chad',
- 623 => 'Central African Rep.',
- 624 => 'Cameroon',
- 625 => 'Cape Verde',
- 626 => 'Sao Tome & Principe',
- 627 => 'Equatorial Guinea',
- 628 => 'Gabon',
- 629 => 'Congo, Republic',
- 630 => 'Congo, Dem. Rep.',
- 631 => 'Angola',
- 632 => 'Guinea-Bissau',
- 633 => 'Seychelles',
- 634 => 'Sudan',
- 635 => 'Rwanda',
- 636 => 'Ethiopia',
- 637 => 'Somalia',
- 638 => 'Djibouti',
- 639 => 'Kenya',
- 640 => 'Tanzania',
- 641 => 'Uganda',
- 642 => 'Burundi',
- 643 => 'Mozambique',
- 645 => 'Zambia',
- 646 => 'Madagascar',
- 647 => 'Reunion',
- 648 => 'Zimbabwe',
- 649 => 'Namibia',
- 650 => 'Malawi',
- 651 => 'Lesotho',
- 652 => 'Botswana',
- 653 => 'Swaziland',
- 654 => 'Comoros',
- 655 => 'South Africa',
- 657 => 'Eritrea',
- 659 => 'South Sudan',
- 702 => 'Belize',
- 704 => 'Guatemala',
- 706 => 'El Salvador',
- 708 => 'Honduras',
- 710 => 'Nicaragua',
- 712 => 'Costa Rica',
- 714 => 'Panama',
- 716 => 'Peru',
- 722 => 'Argentina Republic',
- 724 => 'Brazil',
- 730 => 'Chile',
- 732 => 'Colombia',
- 734 => 'Venezuela',
- 736 => 'Bolivia',
- 738 => 'Guyana',
- 740 => 'Ecuador',
- 744 => 'Paraguay',
- 746 => 'Suriname',
- 748 => 'Uruguay',
- 750 => 'Falkland Islands (Malvinas)',
- 901 => 'International Networks / Satellite Networks',
+ 202 => 'Greece (202)',
+ 204 => 'Netherlands (204)',
+ 206 => 'Belgium (206)',
+ 208 => 'France (208)',
+ 212 => 'Monaco (212)',
+ 213 => 'Andorra (213)',
+ 214 => 'Spain (214)',
+ 216 => 'Hungary (216)',
+ 218 => 'Bosnia & Herzegov. (218)',
+ 219 => 'Croatia (219)',
+ 220 => 'Serbia (220)',
+ 221 => 'Kosovo (221)',
+ 222 => 'Italy (222)',
+ 226 => 'Romania (226)',
+ 228 => 'Switzerland (228)',
+ 230 => 'Czech Rep. (230)',
+ 231 => 'Slovakia (231)',
+ 232 => 'Austria (232)',
+ 234 => 'United Kingdom (234)',
+ 235 => 'United Kingdom (235)',
+ 238 => 'Denmark (238)',
+ 240 => 'Sweden (240)',
+ 242 => 'Norway (242)',
+ 244 => 'Finland (244)',
+ 246 => 'Lithuania (246)',
+ 247 => 'Latvia (247)',
+ 248 => 'Estonia (248)',
+ 250 => 'Russian Federation (250)',
+ 255 => 'Ukraine (255)',
+ 257 => 'Belarus (257)',
+ 259 => 'Moldova (259)',
+ 260 => 'Poland (260)',
+ 262 => 'Germany (262)',
+ 266 => 'Gibraltar (266)',
+ 268 => 'Portugal (268)',
+ 270 => 'Luxembourg (270)',
+ 272 => 'Ireland (272)',
+ 274 => 'Iceland (274)',
+ 276 => 'Albania (276)',
+ 278 => 'Malta (278)',
+ 280 => 'Cyprus (280)',
+ 282 => 'Georgia (282)',
+ 283 => 'Armenia (283)',
+ 284 => 'Bulgaria (284)',
+ 286 => 'Turkey (286)',
+ 288 => 'Faroe Islands (288)',
+ 289 => 'Abkhazia (289)',
+ 290 => 'Greenland (290)',
+ 292 => 'San Marino (292)',
+ 293 => 'Slovenia (293)',
+ 294 => 'Macedonia (294)',
+ 295 => 'Liechtenstein (295)',
+ 297 => 'Montenegro (297)',
+ 302 => 'Canada (302)',
+ 308 => 'St. Pierre & Miquelon (308)',
+ 310 => 'United States / Guam (310)',
+ 311 => 'United States / Guam (311)',
+ 312 => 'United States (312)',
+ 316 => 'United States (316)',
+ 330 => 'Puerto Rico (330)',
+ 334 => 'Mexico (334)',
+ 338 => 'Jamaica (338)',
+ 340 => 'French Guiana / Guadeloupe / Martinique (340)',
+ 342 => 'Barbados (342)',
+ 344 => 'Antigua and Barbuda (344)',
+ 346 => 'Cayman Islands (346)',
+ 348 => 'British Virgin Islands (348)',
+ 350 => 'Bermuda (350)',
+ 352 => 'Grenada (352)',
+ 354 => 'Montserrat (354)',
+ 356 => 'Saint Kitts and Nevis (356)',
+ 358 => 'Saint Lucia (358)',
+ 360 => 'St. Vincent & Gren. (360)',
+ 362 => 'Bonaire, Sint Eustatius and Saba / Curacao / Netherlands Antilles (362)',
+ 363 => 'Aruba (363)',
+ 364 => 'Bahamas (364)',
+ 365 => 'Anguilla (365)',
+ 366 => 'Dominica (366)',
+ 368 => 'Cuba (368)',
+ 370 => 'Dominican Republic (370)',
+ 372 => 'Haiti (372)',
+ 374 => 'Trinidad and Tobago (374)',
+ 376 => 'Turks and Caicos Islands / US Virgin Islands (376)',
+ 400 => 'Azerbaijan (400)',
+ 401 => 'Kazakhstan (401)',
+ 402 => 'Bhutan (402)',
+ 404 => 'India (404)',
+ 405 => 'India (405)',
+ 410 => 'Pakistan (410)',
+ 412 => 'Afghanistan (412)',
+ 413 => 'Sri Lanka (413)',
+ 414 => 'Myanmar (Burma) (414)',
+ 415 => 'Lebanon (415)',
+ 416 => 'Jordan (416)',
+ 417 => 'Syrian Arab Republic (417)',
+ 418 => 'Iraq (418)',
+ 419 => 'Kuwait (419)',
+ 420 => 'Saudi Arabia (420)',
+ 421 => 'Yemen (421)',
+ 422 => 'Oman (422)',
+ 424 => 'United Arab Emirates (424)',
+ 425 => 'Israel / Palestinian Territory (425)',
+ 426 => 'Bahrain (426)',
+ 427 => 'Qatar (427)',
+ 428 => 'Mongolia (428)',
+ 429 => 'Nepal (429)',
+ 430 => 'United Arab Emirates (430)',
+ 431 => 'United Arab Emirates (431)',
+ 432 => 'Iran (432)',
+ 434 => 'Uzbekistan (434)',
+ 436 => 'Tajikistan (436)',
+ 437 => 'Kyrgyzstan (437)',
+ 438 => 'Turkmenistan (438)',
+ 440 => 'Japan (440)',
+ 441 => 'Japan (441)',
+ 450 => 'South Korea (450)',
+ 452 => 'Viet Nam (452)',
+ 454 => 'Hongkong, China (454)',
+ 455 => 'Macao, China (455)',
+ 456 => 'Cambodia (456)',
+ 457 => 'Laos P.D.R. (457)',
+ 460 => 'China (460)',
+ 466 => 'Taiwan (466)',
+ 467 => 'North Korea (467)',
+ 470 => 'Bangladesh (470)',
+ 472 => 'Maldives (472)',
+ 502 => 'Malaysia (502)',
+ 505 => 'Australia (505)',
+ 510 => 'Indonesia (510)',
+ 514 => 'Timor-Leste (514)',
+ 515 => 'Philippines (515)',
+ 520 => 'Thailand (520)',
+ 525 => 'Singapore (525)',
+ 528 => 'Brunei Darussalam (528)',
+ 530 => 'New Zealand (530)',
+ 537 => 'Papua New Guinea (537)',
+ 539 => 'Tonga (539)',
+ 540 => 'Solomon Islands (540)',
+ 541 => 'Vanuatu (541)',
+ 542 => 'Fiji (542)',
+ 544 => 'American Samoa (544)',
+ 545 => 'Kiribati (545)',
+ 546 => 'New Caledonia (546)',
+ 547 => 'French Polynesia (547)',
+ 548 => 'Cook Islands (548)',
+ 549 => 'Samoa (549)',
+ 550 => 'Micronesia (550)',
+ 552 => 'Palau (552)',
+ 553 => 'Tuvalu (553)',
+ 555 => 'Niue (555)',
+ 602 => 'Egypt (602)',
+ 603 => 'Algeria (603)',
+ 604 => 'Morocco (604)',
+ 605 => 'Tunisia (605)',
+ 606 => 'Libya (606)',
+ 607 => 'Gambia (607)',
+ 608 => 'Senegal (608)',
+ 609 => 'Mauritania (609)',
+ 610 => 'Mali (610)',
+ 611 => 'Guinea (611)',
+ 612 => 'Ivory Coast (612)',
+ 613 => 'Burkina Faso (613)',
+ 614 => 'Niger (614)',
+ 615 => 'Togo (615)',
+ 616 => 'Benin (616)',
+ 617 => 'Mauritius (617)',
+ 618 => 'Liberia (618)',
+ 619 => 'Sierra Leone (619)',
+ 620 => 'Ghana (620)',
+ 621 => 'Nigeria (621)',
+ 622 => 'Chad (622)',
+ 623 => 'Central African Rep. (623)',
+ 624 => 'Cameroon (624)',
+ 625 => 'Cape Verde (625)',
+ 626 => 'Sao Tome & Principe (626)',
+ 627 => 'Equatorial Guinea (627)',
+ 628 => 'Gabon (628)',
+ 629 => 'Congo, Republic (629)',
+ 630 => 'Congo, Dem. Rep. (630)',
+ 631 => 'Angola (631)',
+ 632 => 'Guinea-Bissau (632)',
+ 633 => 'Seychelles (633)',
+ 634 => 'Sudan (634)',
+ 635 => 'Rwanda (635)',
+ 636 => 'Ethiopia (636)',
+ 637 => 'Somalia (637)',
+ 638 => 'Djibouti (638)',
+ 639 => 'Kenya (639)',
+ 640 => 'Tanzania (640)',
+ 641 => 'Uganda (641)',
+ 642 => 'Burundi (642)',
+ 643 => 'Mozambique (643)',
+ 645 => 'Zambia (645)',
+ 646 => 'Madagascar (646)',
+ 647 => 'Reunion (647)',
+ 648 => 'Zimbabwe (648)',
+ 649 => 'Namibia (649)',
+ 650 => 'Malawi (650)',
+ 651 => 'Lesotho (651)',
+ 652 => 'Botswana (652)',
+ 653 => 'Swaziland (653)',
+ 654 => 'Comoros (654)',
+ 655 => 'South Africa (655)',
+ 657 => 'Eritrea (657)',
+ 659 => 'South Sudan (659)',
+ 702 => 'Belize (702)',
+ 704 => 'Guatemala (704)',
+ 706 => 'El Salvador (706)',
+ 708 => 'Honduras (708)',
+ 710 => 'Nicaragua (710)',
+ 712 => 'Costa Rica (712)',
+ 714 => 'Panama (714)',
+ 716 => 'Peru (716)',
+ 722 => 'Argentina Republic (722)',
+ 724 => 'Brazil (724)',
+ 730 => 'Chile (730)',
+ 732 => 'Colombia (732)',
+ 734 => 'Venezuela (734)',
+ 736 => 'Bolivia (736)',
+ 738 => 'Guyana (738)',
+ 740 => 'Ecuador (740)',
+ 744 => 'Paraguay (744)',
+ 746 => 'Suriname (746)',
+ 748 => 'Uruguay (748)',
+ 750 => 'Falkland Islands (Malvinas) (750)',
+ 901 => 'International Networks / Satellite Networks (901)',
},
},
# 0x0ab0-name - seen 'DualShot_Meta_Info'
diff --git a/lib/Image/ExifTool/Sony.pm b/lib/Image/ExifTool/Sony.pm
index 16f13768..c4e25f03 100644
--- a/lib/Image/ExifTool/Sony.pm
+++ b/lib/Image/ExifTool/Sony.pm
@@ -34,7 +34,7 @@ use Image::ExifTool qw(:DataAccess :Utils);
use Image::ExifTool::Exif;
use Image::ExifTool::Minolta;
-$VERSION = '3.61';
+$VERSION = '3.62';
sub ProcessSRF($$$);
sub ProcessSR2($$$);
@@ -162,6 +162,7 @@ sub PrintInvLensSpec($;$$);
32877 => 'Sony E 15mm F1.4 G', #JR
32878 => 'Sony FE 20-70mm F4 G', #JR
32879 => 'Sony FE 50mm F1.4 GM', #JR
+ 32884 => 'Sony FE 70-200mm F4 Macro G OSS II', #JR
# (comment this out so LensID will report the LensModel, which is more useful)
# 32952 => 'Metabones Canon EF Speed Booster Ultra', #JR (corresponds to 184, but 'Advanced' mode, LensMount reported as E-mount)
@@ -178,6 +179,10 @@ sub PrintInvLensSpec($;$$);
33082 => 'Sony FE 200-600mm F5.6-6.3 G OSS + 2X Teleconverter', #JR
33083 => 'Sony FE 600mm F4 GM OSS + 1.4X Teleconverter', #JR (NC)
33084 => 'Sony FE 600mm F4 GM OSS + 2X Teleconverter', #JR
+ 33085 => 'Sony FE 70-200mm F2.8 GM OSS II + 1.4X Teleconverter', #JR
+ 33086 => 'Sony FE 70-200mm F2.8 GM OSS II + 2X Teleconverter', #JR
+ 33087 => 'Sony FE 70-200mm F4 Macro G OSS II + 1.4X Teleconverter', #JR
+ 33088 => 'Sony FE 70-200mm F4 Macro G OSS II + 2X Teleconverter', #JR
49201 => 'Zeiss Touit 12mm F2.8', #JR (lens firmware Ver.02)
49202 => 'Zeiss Touit 32mm F1.8', #JR (lens firmware Ver.02)
@@ -1062,7 +1067,7 @@ my %hidUnk = ( Hidden => 1, Unknown => 1 );
SubDirectory => { TagTable => 'Image::ExifTool::Sony::Tag2010h' },
},{
Name => 'Tag2010i', # ?
- Condition => '$$self{Model} =~ /^(ILCE-(6100|6400|6600|7C|7M3|7RM3A?|7RM4A?|9|9M2)|DSC-(RX10M4|RX100M6|RX100M5A|RX100M7|HX95|HX99|RX0M2)|ZV-(1F?|E10))\b/',
+ Condition => '$$self{Model} =~ /^(ILCE-(6100|6400|6600|7C|7M3|7RM3A?|7RM4A?|9|9M2)|DSC-(RX10M4|RX100M6|RX100M5A|RX100M7|HX95|HX99|RX0M2)|ZV-(1F?|1M2|E10))\b/',
SubDirectory => { TagTable => 'Image::ExifTool::Sony::Tag2010i' },
},{
Name => 'Tag_0x2010',
@@ -1513,6 +1518,10 @@ my %hidUnk = ( Hidden => 1, Unknown => 1 );
'1 2' => 'RAW + Fine',
'1 3' => 'RAW + Extra Fine',
'1 4' => 'RAW + Light', #JR
+ '2 0' => 'S-size RAW',
+ '3 0' => 'M-size RAW', # ILCE-1/7RM5, APS-C mode
+ '3 2' => 'M-size RAW + Fine',
+ '3 3' => 'M-size RAW + Extra Fine',
},
},
0x202f => { #JR (ILCE-7RM3)
@@ -1638,7 +1647,7 @@ my %hidUnk = ( Hidden => 1, Unknown => 1 );
# from mid-2015: ILCE-7RM2/7SM2/6300 and newer models use different offsets
{
Name => 'Tag9050a',
- Condition => '$$self{Model} !~ /^(DSC-|Stellar|ILCE-(1|6100|6300|6400|6500|6600|7C|7M3|7M4|7RM2|7RM3A?|7RM4A?|7RM5|7SM2|7SM3|9|9M2)|ILCA-99M2|ILME-FX3|ZV-)/',
+ Condition => '$$self{Model} !~ /^(DSC-|Stellar|ILCE-(1|6100|6300|6400|6500|6600|6700|7C|7M3|7M4|7RM2|7RM3A?|7RM4A?|7RM5|7SM2|7SM3|9|9M2)|ILCA-99M2|ILME-FX3|ZV-)/',
SubDirectory => {
TagTable => 'Image::ExifTool::Sony::Tag9050a',
ByteOrder => 'LittleEndian',
@@ -1658,6 +1667,13 @@ my %hidUnk = ( Hidden => 1, Unknown => 1 );
ByteOrder => 'LittleEndian',
},
},{
+ Name => 'Tag9050d',
+ Condition => '$$self{Model} =~ /^(ILCE-6700|ZV-E1)/',
+ SubDirectory => {
+ TagTable => 'Image::ExifTool::Sony::Tag9050d',
+ ByteOrder => 'LittleEndian',
+ },
+ },{
Name => 'Sony_0x9050',
%unknownCipherData,
}],
@@ -1670,12 +1686,12 @@ my %hidUnk = ( Hidden => 1, Unknown => 1 );
# 0xd0 (e) H90, W650, W690: tag9400 decoding appears not valid/different
# 0x23 (e) for DSC-RX10/HX60V/HX350/HX400V/WX220/WX350, ILCE-7/7R/5000/6000, ILCA-68/77M2
# 0x24 (e) for ILCA-99M2,ILCE-5100/6300/6500/7M2/7RM2/7S/7SM2/QX1, DSC-HX80/HX90V/QX30/RX0/RX100M3/RX100M4/RX100M5/RX10M2/RX10M3/RX1RM2/WX500
- # 0x26 (e) for ILCE-6100/6400/6600/7M3/7RM3/9, DSC-RX0M2/RX10M4/RX100M5A/RX100M6/HX99
- # 0x28 (e) for ILCE-7RM4/9M2, DSC-RX100M7, ZV-1/E10
+ # 0x26 (e) for ILCE-6100/6400/6600/7M3/7RM3/9, DSC-RX0M2/RX10M4/RX100M5A/RX100M6/HX95/HX99
+ # 0x28 (e) for ILCE-7RM4/9M2, DSC-RX100M7, ZV-1/1F/1M2/E10
# 0x31 (e) for ILCE-1/7M4/7SM3, ILME-FX3
# 0x32 (e) for ILCE-7RM5, ILME-FX30
- # 0x33 (e) for ZV-E1
- # first byte decoded: 40, 204, 202, 27, 58, 62, 48, 215, 28, 106, 89 respectively
+ # 0x33 (e) for ILCE-6700, ZV-E1
+ # first byte decoded: 40, 204, 202, 27, 58, 62, 48, 215, 28, 106, 89, 63 respectively
{
Name => 'Tag9400a',
Condition => q{
@@ -1788,8 +1804,10 @@ my %hidUnk = ( Hidden => 1, Unknown => 1 );
# 0x1c 0x01 ILCE-9
# 0x1d 0x01 DSC-RX10M4
# 0x1e 0x01 ILCE-7M3/7RM3, DSC-RX100M5A/RX100M6
- # 0x1f 0x01 DSC-HX99
+ # 0x1f 0x01 DSC-HX95/HX99
# 0x20 0x01 ILCE-6100/6400/6600/7RM4/9M2, ILCE-9 v5.00-v6.00, DSC-RX0M2/RX100M7
+ # 0x21 0x01 ZV-1/1F/1M2/E10
+ # 0x27 0x01 ZV-E1
# var var SLT-A58/A99V, HV, ILCA-68/77M2/99M2
# only valid when first byte 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x17, 0x19, 0x1a, 0x1c (enciphered 0x8a, 0x70, 0xb6, 0x69, 0x88, 0x20, 0x30, 0xd7, 0xbb, 0x92, 0x28)
# Condition => '$$self{DoubleCipher} ? $$valPt =~ /^[\x7e\x46\x1d\x18\x3a\x95\x24\x26\xd6]\x01/ : $$valPt =~ /^[\x8a\x70\xb6\x69\x88\x20\x30\xd7\xbb\x92\x28]\x01/',
@@ -1813,8 +1831,8 @@ my %hidUnk = ( Hidden => 1, Unknown => 1 );
# 13 0 9 2 2 DSC-QX10/QX100/RX100M2
# 15 0 35 2 2 ILCA-68/77M2, ILCE-5000/5100/6000/7/7R/7S/7M2/QX1, DSC-HX60V/HX350/HX400V/QX30/RX10/RX100M3/WX220/WX350
# 16 0 85 2 2 DSC-HX80/HX90V/WX500
- # 17 0 232 1 2 DSC-RX0/RX0M2/RX1RM2/RX10M2/RX10M3/RX10M4/RX100M4/RX100M5/RX100M5A/RX100M6/RX100M7/HX99, ILCE-6100/6300/6400/6500/6600/7C/7M3/7RM2/7RM3/7RM4/7SM2/9/9M2, ILCA-99M2, ZV-1
- # 18 0 20 0 164 ILCE-7SM3
+ # 17 0 232 1 2 DSC-RX0/RX0M2/RX1RM2/RX10M2/RX10M3/RX10M4/RX100M4/RX100M5/RX100M5A/RX100M6/RX100M7/HX95/HX99, ILCE-6100/6300/6400/6500/6600/7C/7M3/7RM2/7RM3/7RM4/7SM2/9/9M2, ILCA-99M2, ZV-1/1F/1M2/E10
+ # 18 0 20 0 164 ILCE-7SM3, ZV-E1
# other values for Panorama images and several other models
0x9404 => [{
Name => 'Tag9404a',
@@ -1848,7 +1866,7 @@ my %hidUnk = ( Hidden => 1, Unknown => 1 );
# 142 var (0x25 = 37 var enc.) DSC-HX80/HX90V/RX1RM2/RX10M2/RX10M3/RX100M4/WX500, ILCE-6300/7RM2/7SM2
# 144 var (0xe1 = 225 var enc.) DSC-RX100M5
# 145 var (0x76 = 118 var enc.) ILCA-99M2, ILCE-6500, DSC-RX0
- # 163 var (0x8b = 139 var enc.) ILCE-6100/6400/6600/7C/7M3/7RM3/7RM4/9/9M2, DSC-RX0M2/RX10M4/RX100M5A/RX100M6/RX100M7/HX99, ZV-1/E10
+ # 163 var (0x8b = 139 var enc.) ILCE-6100/6400/6600/7C/7M3/7RM3/7RM4/9/9M2, DSC-RX0M2/RX10M4/RX100M5A/RX100M6/RX100M7/HX95/HX99, ZV-1/1F/1M2/E10
# July 2020: ILCE-7SM3 doesn't write this tag anymore, but writes 0x9416
0x9405 => [{
Name => 'Tag9405a',
@@ -1868,9 +1886,10 @@ my %hidUnk = ( Hidden => 1, Unknown => 1 );
Name => 'Tag9406',
# - first byte must be 0x01 or 0x02 (enciphered 0x01 or 0x08),
# or 0x03 (enc. 0x1b) for ILCE-6100/6300/6400/6500/6600/7M3/7RM2/7RM3/7RM4/7SM2/9/9M2, and ILCA-99M2
+ # or 0x04 (enc. 0x40) for ILCE-6700, ZV-E1
# third byte must be 0x02 or 0x03 (enciphered 0x08 or 0x1b) - ref JR
# (applies to most SLT/ILCA and NEX/ILCE models, but no DSC models)
- Condition => '$$valPt =~ /^[\x01\x08\x1b].[\x08\x1b]/s',
+ Condition => '$$valPt =~ /^[\x01\x08\x1b].[\x08\x1b]/s or $$valPt =~ /^[\x40]/s',
SubDirectory => { TagTable => 'Image::ExifTool::Sony::Tag9406' },
},{
Name => 'Sony_0x9406',
@@ -2071,6 +2090,7 @@ my %hidUnk = ( Hidden => 1, Unknown => 1 );
390 => 'ILCE-7RM5', #IB
391 => 'ILME-FX30', #JR
393 => 'ZV-E1', #JR
+ 394 => 'ILCE-6700', #JR
395 => 'ZV-1M2', #JR
},
},
@@ -2104,7 +2124,7 @@ my %hidUnk = ( Hidden => 1, Unknown => 1 );
FL => 'FL', # "moody finish with sharp contrast and calm coloring as well as the impressive sky and colors of the greens"
IN => 'IN', # "matte textures by suppressing the contrast and saturation"
SH => 'SH', # "bright, transparent, soft, and vivid mood"
- # (...also Custom Look 1-6, but don't konw the values)
+ # (...also Custom Look 1-6, but don't know the values)
},
},
0xb021 => { #2
@@ -2363,6 +2383,8 @@ my %hidUnk = ( Hidden => 1, Unknown => 1 );
PrintConv => {
-32768 => 'Low',
-9 => '-9/3', #JR
+ -8 => '-8/3', #JR
+ -7 => '-7/3', #JR
-6 => '-6/3', #JR
-5 => '-5/3', #JR
-4 => '-4/3', #JR
@@ -8083,6 +8105,52 @@ my %isoSetting2010 = (
},
);
+%Image::ExifTool::Sony::Tag9050d = ( #JR
+ PROCESS_PROC => \&ProcessEnciphered,
+ WRITE_PROC => \&WriteEnciphered,
+ CHECK_PROC => \&Image::ExifTool::CheckBinaryData,
+ FORMAT => 'int8u',
+ NOTES => 'Valid for ILCE-6700/ZV-E1.',
+ WRITABLE => 1,
+ FIRST_ENTRY => 0,
+ GROUPS => { 0 => 'MakerNotes', 2 => 'Image' },
+ 0x000a => {
+ Name => 'ShutterCount',
+ # number of mechanical shutter actuations, does not increase during electronic shutter / Silent Shooting
+ Condition => '$$self{Model} =~ /^(ILCE-6700)/',
+ Format => 'int32u',
+ Notes => 'total number of image exposures made by the camera',
+ RawConv => '$val & 0x00ffffff',
+ PrintConv => 'sprintf("%6d",$val)',
+ PrintConvInv => '$val',
+ },
+ 0x001a => { # appr. same value as Exif ExposureTime, but not valid in HDR-modes
+ Name => 'SonyExposureTime',
+ Format => 'int16u',
+ ValueConv => '$val ? 2 ** (16 - $val/256) : 0',
+ ValueConvInv => '$val ? int((16 - log($val) / log(2)) * 256 + 0.5) : 0',
+ PrintConv => '$val ? Image::ExifTool::Exif::PrintExposureTime($val) : "Bulb"',
+ PrintConvInv => 'lc($val) eq "bulb" ? 0 : Image::ExifTool::Exif::ConvertFraction($val)',
+ },
+ 0x001c => { # appr. same value as Exif ExposureTime, but not valid in HDR-modes
+ Name => 'SonyFNumber',
+ Format => 'int16u',
+ ValueConv => '2 ** (($val/256 - 16) / 2)',
+ ValueConvInv => '(log($val)*2/log(2)+16)*256',
+ PrintConv => 'sprintf("%.1f",$val)',
+ PrintConvInv => '$val',
+ },
+ 0x001f => {
+ Name => 'ReleaseMode2',
+ %releaseMode2,
+ },
+ 0x0038 => {
+ Name => 'InternalSerialNumber', #(NC)
+ Format => 'int8u[6]',
+ PrintConv => 'unpack "H*", pack "C*", split " ", $val',
+ },
+);
+
%Image::ExifTool::Sony::Tag9400a = ( #JR
PROCESS_PROC => \&ProcessEnciphered,
WRITE_PROC => \&WriteEnciphered,
@@ -8309,7 +8377,7 @@ my %isoSetting2010 = (
},
0x002a => [{
Name => 'Quality2',
- Condition => '$$self{Model} !~ /^(ILCE-(1|7M4|7RM5|7SM3)|ILME-(FX3|FX30)|ZV-E1)\b/',
+ Condition => '$$self{Model} !~ /^(ILCE-(1|6700|7M4|7RM5|7SM3)|ILME-(FX3|FX30)|ZV-E1)\b/',
PrintConv => {
0 => 'JPEG',
1 => 'RAW',
@@ -8328,13 +8396,13 @@ my %isoSetting2010 = (
}],
0x0047 => {
Name => 'SonyImageHeight',
- Condition => '$$self{Model} !~ /^(ILCE-(1|7M4|7RM5|7SM3)|ILME-(FX3|FX30)|ZV-E1)\b/',
+ Condition => '$$self{Model} !~ /^(ILCE-(1|6700|7M4|7RM5|7SM3)|ILME-(FX3|FX30)|ZV-E1)\b/',
Format => 'int16u',
PrintConv => '$val > 0 ? 8*$val : "n.a."',
},
0x0053 => {
Name => 'ModelReleaseYear',
- Condition => '$$self{Model} !~ /^(ILCE-(1|7M4|7RM5|7SM3)|ILME-(FX3|FX30)|ZV-E1)\b/',
+ Condition => '$$self{Model} !~ /^(ILCE-(1|6700|7M4|7RM5|7SM3)|ILME-(FX3|FX30)|ZV-E1)\b/',
Format => 'int8u',
PrintConv => 'sprintf("20%.2d", $val)',
},
@@ -8453,7 +8521,8 @@ my %isoSetting2010 = (
14 => 'Tracking',
15 => 'Face Tracking',
20 => 'Animal Eye Tracking',
-# 21 => '???', # (ILCE-7SM3)
+# 21 => '???', # (ILCE-1/6700/7SM3, ILME-FX3, ZV-E1: tracking ... mostly human face ...)
+# 22 => '???', # (ILCE-6700, ZV-E1: tracking ...)
255 => 'Manual',
},
},
@@ -8924,19 +8993,29 @@ my %isoSetting2010 = (
FORMAT => 'int8u',
WRITABLE => 1,
FIRST_ENTRY => 0,
+ DATAMEMBER => [ 0 ],
GROUPS => { 0 => 'MakerNotes', 2 => 'Image' },
# 0x0000: 1 for SLT-A37/A57/A65/A77, NEX-5N/7/F3/VG20
# 2 for SLT-A58/99V, NEX-3N/5R/5T/6/VG30/VG900, ILCA-68/77M2, ILCE-3000/3500/7/7M2/7R/7S/5000/6000
# 3 for ILCA-99M2, ILCE-6100/6300/6400/6500/6600/7M3/7RM2/7RM3/7RM4/7SM2/9/9M2
+# 4 for ILCE-6700, ZV-E1
+ 0x0000 => { Name => 'Ver9406', Hidden => 1, RawConv => '$$self{Ver9406} = $val; $$self{OPTIONS}{Unknown}<2 ? undef : $val' },
# 0x0001+0x0002: Int16u, seen 580 - 770: similar to "BatteryUnknown" ??
# 0x0005: int8u, seen 73 - 117: maybe Fahrenheit? Higher than "AmbientTemperature", but same trend.
- 0x0005 => {
+ 0x0005 => [{
Name => 'BatteryTemperature',
+ Condition => '$$self{Ver9406} != 4',
ValueConv => '($val - 32) / 1.8', # convert to Celsius
ValueConvInv => '$val * 1.8 + 32',
PrintConv => 'sprintf("%.1f C",$val)',
PrintConvInv => '$val=~s/\s*C//; $val',
- },
+ },{
+ Name => 'BatteryLevel',
+ Condition => '$$self{Ver9406} == 4',
+ RawConv => '$val ? $val : undef', # only valid when not 0
+ PrintConv => '"$val%"',
+ PrintConvInv => '$val=~s/\s*\%//; $val',
+ }],
# 0x0006: usually 0, seen non-zero values only for SLT-A99V, ILCA-77M2/99M2 and ILCE-7/7R/7RM2/9: BatteryLevel Grip ?
0x0006 => {
Name => 'BatteryLevelGrip1',
@@ -8947,6 +9026,7 @@ my %isoSetting2010 = (
# 0x0007: seen values from 8 - 105, decreasing in sequences of images: BatteryLevel
0x0007 => {
Name => 'BatteryLevel',
+ Condition => '$$self{Ver9406} != 4',
PrintConv => '"$val%"',
PrintConvInv => '$val=~s/\s*\%//; $val',
},
@@ -9659,7 +9739,7 @@ my %isoSetting2010 = (
WRITE_PROC => \&WriteEnciphered,
CHECK_PROC => \&Image::ExifTool::CheckBinaryData,
FORMAT => 'int8u',
- NOTES => 'Valid for the ILCE-1/7M4/7RM5/7SM3, ILME-FX3.',
+ NOTES => 'Valid for the ILCE-1/6700/7M4/7RM5/7SM3, ILME-FX3/FX30, ZV-E1.',
FIRST_ENTRY => 0,
GROUPS => { 0 => 'MakerNotes', 2 => 'Image' },
0x0000 => { Name => 'Tag9416_0000', PrintConv => 'sprintf("%3d",$val)', RawConv => '$$self{TagVersion} = $val' },
@@ -9796,10 +9876,34 @@ my %isoSetting2010 = (
Condition => '$$self{Model} =~ /^(ILCE-7M4)/',
Format => 'int16s[16]',
},
- 0x089b => {
+ 0x089d => { # Note: 32 values for these newer models, and 32 non-zero values present for new lenses like SEL2470GM2 and SEL2470G
Name => 'VignettingCorrParams',
- Condition => '$$self{Model} =~ /^(ILCE-7RM5|ILME-FX30)\b/',
- Format => 'int16s[16]',
+ Condition => '$$self{Model} =~ /^(ILCE-(6700|7RM5)|ILME-FX30|ZV-E1)\b/',
+ Format => 'int16s[32]',
+ },
+ 0x08b5 => {
+ Name => 'APS-CSizeCapture',
+ Condition => '$$self{Model} =~ /^(ILCE-(1|7SM3)|ILME-FX3)\b/',
+ PrintConv => {
+ 0 => 'Off',
+ 1 => 'On',
+ },
+ },
+ 0x08b7 => {
+ Name => 'APS-CSizeCapture',
+ Condition => '$$self{Model} =~ /^(ILCE-7M4)/',
+ PrintConv => {
+ 0 => 'Off',
+ 1 => 'On',
+ },
+ },
+ 0x08e5 => {
+ Name => 'APS-CSizeCapture',
+ Condition => '$$self{Model} =~ /^(ILCE-7RM5|ZV-E1)\b/',
+ PrintConv => {
+ 0 => 'Off',
+ 1 => 'On',
+ },
},
0x0914 => {
Name => 'ChromaticAberrationCorrParams',
@@ -9813,7 +9917,7 @@ my %isoSetting2010 = (
},
0x0945 => {
Name => 'ChromaticAberrationCorrParams',
- Condition => '$$self{Model} =~ /^(ILCE-7RM5|ILME-FX30)\b/',
+ Condition => '$$self{Model} =~ /^(ILCE-(6700|7RM5)|ILME-FX30|ZV-E1)\b/',
Format => 'int16s[32]',
},
);
diff --git a/lib/Image/ExifTool/TagLookup.pm b/lib/Image/ExifTool/TagLookup.pm
index 7f9cfaf2..aa124a5d 100644
--- a/lib/Image/ExifTool/TagLookup.pm
+++ b/lib/Image/ExifTool/TagLookup.pm
@@ -271,6 +271,7 @@ my @tableList = (
'Image::ExifTool::Nikon::MakerNotes0x56',
'Image::ExifTool::Nikon::MenuSettingsD850',
'Image::ExifTool::Nikon::MenuSettingsZ7II',
+ 'Image::ExifTool::Nikon::MenuSettingsZ8',
'Image::ExifTool::Nikon::MenuSettingsZ9',
'Image::ExifTool::Nikon::MenuSettingsZ9v3',
'Image::ExifTool::Nikon::MenuSettingsZ9v4',
@@ -344,7 +345,9 @@ my @tableList = (
'Image::ExifTool::NikonCustom::SettingsD810',
'Image::ExifTool::NikonCustom::SettingsD850',
'Image::ExifTool::NikonCustom::SettingsD90',
+ 'Image::ExifTool::NikonCustom::SettingsZ8',
'Image::ExifTool::NikonCustom::SettingsZ9',
+ 'Image::ExifTool::NikonCustom::SettingsZ9v4',
'Image::ExifTool::Nintendo::CameraInfo',
'Image::ExifTool::Olympus::CameraSettings',
'Image::ExifTool::Olympus::Equipment',
@@ -491,6 +494,7 @@ my @tableList = (
'Image::ExifTool::Sony::Tag9050a',
'Image::ExifTool::Sony::Tag9050b',
'Image::ExifTool::Sony::Tag9050c',
+ 'Image::ExifTool::Sony::Tag9050d',
'Image::ExifTool::Sony::Tag9400a',
'Image::ExifTool::Sony::Tag9400b',
'Image::ExifTool::Sony::Tag9400c',
@@ -568,356 +572,356 @@ my @tableList = (
# lookup for all writable tags
my %tagLookup = (
'aberrationcorrectiondistance' => { 109 => 0x69 },
- 'about' => { 519 => 'about' },
- 'aboutcvterm' => { 510 => 'AboutCvTerm' },
- 'aboutcvtermcvid' => { 510 => [\'AboutCvTerm','AboutCvTermCvId'] },
- 'aboutcvtermid' => { 510 => [\'AboutCvTerm','AboutCvTermCvTermId'] },
- 'aboutcvtermname' => { 510 => [\'AboutCvTerm','AboutCvTermCvTermName'] },
- 'aboutcvtermrefinedabout' => { 510 => [\'AboutCvTerm','AboutCvTermCvTermRefinedAbout'] },
+ 'about' => { 523 => 'about' },
+ 'aboutcvterm' => { 514 => 'AboutCvTerm' },
+ 'aboutcvtermcvid' => { 514 => [\'AboutCvTerm','AboutCvTermCvId'] },
+ 'aboutcvtermid' => { 514 => [\'AboutCvTerm','AboutCvTermCvTermId'] },
+ 'aboutcvtermname' => { 514 => [\'AboutCvTerm','AboutCvTermCvTermName'] },
+ 'aboutcvtermrefinedabout' => { 514 => [\'AboutCvTerm','AboutCvTermCvTermRefinedAbout'] },
'absolutealtitude' => { 116 => 'AbsoluteAltitude' },
- 'abspeakaudiofilepath' => { 525 => 'absPeakAudioFilePath' },
- 'academicfield' => { 515 => 'academicField' },
- 'acceleration' => { 119 => 0x9404, 503 => 'Acceleration' },
+ 'abspeakaudiofilepath' => { 529 => 'absPeakAudioFilePath' },
+ 'academicfield' => { 519 => 'academicField' },
+ 'acceleration' => { 119 => 0x9404, 507 => 'Acceleration' },
'accelerationtracking' => { 84 => 0x518 },
'accelerationvector' => { 1 => 0x8 },
- 'accelerometer' => { 407 => 0x3 },
- 'accelerometerdata' => { 397 => 'vrot' },
- 'accelerometerx' => { 337 => 0x8d },
- 'accelerometery' => { 337 => 0x8e },
- 'accelerometerz' => { 337 => 0x8c },
- 'accessoryserialnumber' => { 337 => 0x54 },
- 'accessorytype' => { 337 => 0x53 },
+ 'accelerometer' => { 410 => 0x3 },
+ 'accelerometerdata' => { 400 => 'vrot' },
+ 'accelerometerx' => { 340 => 0x8d },
+ 'accelerometery' => { 340 => 0x8e },
+ 'accelerometerz' => { 340 => 0x8c },
+ 'accessoryserialnumber' => { 340 => 0x54 },
+ 'accessorytype' => { 340 => 0x53 },
'actionadvised' => { 131 => 0x2a },
'activearea' => { 119 => 0xc68d },
- 'actived-lighting' => { 234 => 0x22, 287 => 0x24 },
- 'actived-lightingmode' => { 287 => 0x25 },
+ 'actived-lighting' => { 234 => 0x22, 288 => 0x24 },
+ 'actived-lightingmode' => { 288 => 0x25 },
'adaptervoltage' => { 138 => 0x407 },
'addaspectratioinfo' => { 84 => 0x80e },
'addiptcinformation' => { 84 => 0x815 },
- 'additionalmodelinformation' => { 510 => 'AddlModelInfo' },
+ 'additionalmodelinformation' => { 514 => 'AddlModelInfo' },
'addoriginaldecisiondata' => { 84 => 0x80f, 85 => 0x11, 86 => 0x13, 89 => 0x14 },
'address' => { 161 => 'Address' },
- 'adjustmentmode' => { 414 => 0x15 },
+ 'adjustmentmode' => { 417 => 0x15 },
'adlbracketingstep' => { 198 => 0x17 },
'adlbracketingtype' => { 198 => 0x18 },
'adobe' => { 120 => 'Adobe' },
- 'adultcontentwarning' => { 324 => 'AdultContentWarning', 518 => 'adultContentWarning' },
+ 'adultcontentwarning' => { 327 => 'AdultContentWarning', 522 => 'adultContentWarning' },
'advancedfilter' => { 127 => 0x1201 },
- 'advancedraw' => { 289 => 0x76a43203 },
- 'advancedscenetype' => { 337 => 0x3d },
- 'advisory' => { 523 => 'Advisory' },
- 'ae_iso' => { 345 => 0x2, 346 => 0x4, 347 => 0x12 },
- 'aeaperture' => { 345 => 0x1, 346 => 0x3, 347 => 0x11 },
- 'aeaperturesteps' => { 345 => 0x8, 346 => 0xb },
+ 'advancedraw' => { 290 => 0x76a43203 },
+ 'advancedscenetype' => { 340 => 0x3d },
+ 'advisory' => { 527 => 'Advisory' },
+ 'ae_iso' => { 348 => 0x2, 349 => 0x4, 350 => 0x12 },
+ 'aeaperture' => { 348 => 0x1, 349 => 0x3, 350 => 0x11 },
+ 'aeaperturesteps' => { 348 => 0x8, 349 => 0xb },
'aeaverage' => { 1 => 0x6 },
'aebautocancel' => { 84 => 0x104 },
'aebbracketvalue' => { 77 => 0x11 },
- 'aebracketingsteps' => { 198 => 0xf, 199 => 0xf, 270 => 0x174c },
+ 'aebracketingsteps' => { 198 => 0xf, 199 => 0xf, 271 => 0x174c },
'aebsequence' => { 84 => 0x105 },
'aebsequenceautocancel' => { 82 => 0x9, 83 => 0x9, 85 => 0x8, 86 => 0x9, 89 => 0x9, 90 => 0x7 },
'aebshotcount' => { 84 => 0x106 },
- 'aebxv' => { 345 => 0x4, 346 => 0x6 },
- 'aeerror' => { 346 => 0x8 },
- 'aeexposuretime' => { 345 => 0x0, 346 => 0x2, 347 => 0x10 },
+ 'aebxv' => { 348 => 0x4, 349 => 0x6 },
+ 'aeerror' => { 349 => 0x8 },
+ 'aeexposuretime' => { 348 => 0x0, 349 => 0x2, 350 => 0x10 },
'aelbutton' => { 184 => 0x45 },
'aelexposureindicator' => { 184 => 0x51 },
- 'aelock' => { 184 => 0x5b, 298 => '4.2', 307 => '4.2', 314 => 0x201, 372 => 0x48, 424 => 0x40, 425 => 0x40, 426 => [0x86,0x286] },
- 'aelockbutton' => { 296 => '16.1', 298 => '4.1', 301 => '15.1', 302 => '16.1', 303 => '16.1', 305 => '30.1', 306 => '16.1', 307 => '4.1', 309 => '17.1', 311 => '17.1' },
- 'aelockbuttonplusdials' => { 296 => '16.2', 305 => '32.1', 309 => '44.1' },
- 'aelockformb-d80' => { 311 => '3.1' },
+ 'aelock' => { 184 => 0x5b, 299 => '4.2', 308 => '4.2', 317 => 0x201, 375 => 0x48, 427 => 0x40, 428 => 0x40, 429 => [0x86,0x286] },
+ 'aelockbutton' => { 297 => '16.1', 299 => '4.1', 302 => '15.1', 303 => '16.1', 304 => '16.1', 306 => '30.1', 307 => '16.1', 308 => '4.1', 310 => '17.1', 312 => '17.1' },
+ 'aelockbuttonplusdials' => { 297 => '16.2', 306 => '32.1', 310 => '44.1' },
+ 'aelockformb-d80' => { 312 => '3.1' },
'aelockmetermodeafterfocus' => { 84 => 0x114 },
'aematrix' => { 1 => 0x2 },
- 'aemaxaperture' => { 345 => 0x9, 346 => 0x10, 347 => 0x1c },
- 'aemaxaperture2' => { 345 => 0xa, 346 => 0x11, 347 => 0x1d },
- 'aemeteringmode' => { 345 => 0xc },
- 'aemeteringmode2' => { 345 => '13.1' },
- 'aemeteringsegments' => { 187 => 0x628, 372 => 0x209 },
+ 'aemaxaperture' => { 348 => 0x9, 349 => 0x10, 350 => 0x1c },
+ 'aemaxaperture2' => { 348 => 0xa, 349 => 0x11, 350 => 0x1d },
+ 'aemeteringmode' => { 348 => 0xc },
+ 'aemeteringmode2' => { 348 => '13.1' },
+ 'aemeteringsegments' => { 187 => 0x628, 375 => 0x209 },
'aemicroadjustment' => { 84 => 0x110 },
- 'aeminaperture' => { 345 => 0xb, 346 => 0x12, 347 => 0x1e },
- 'aeminexposuretime' => { 345 => 0x5, 346 => 0x13, 347 => 0x1f },
- 'aeprogrammode' => { 345 => 0x6 },
- 'aeprojectlink' => { 497 => 'aeProjectLink' },
- 'aeprojectlinkcompositionid' => { 497 => [\'aeProjectLink','aeProjectLinkCompositionID'] },
- 'aeprojectlinkfullpath' => { 497 => [\'aeProjectLink','aeProjectLinkFullPath'] },
- 'aeprojectlinkrenderoutputmoduleindex' => { 497 => [\'aeProjectLink','aeProjectLinkRenderOutputModuleIndex'] },
- 'aeprojectlinkrenderqueueitemid' => { 497 => [\'aeProjectLink','aeProjectLinkRenderQueueItemID'] },
- 'aeprojectlinkrendertimestamp' => { 497 => [\'aeProjectLink','aeProjectLinkRenderTimeStamp'] },
+ 'aeminaperture' => { 348 => 0xb, 349 => 0x12, 350 => 0x1e },
+ 'aeminexposuretime' => { 348 => 0x5, 349 => 0x13, 350 => 0x1f },
+ 'aeprogrammode' => { 348 => 0x6 },
+ 'aeprojectlink' => { 501 => 'aeProjectLink' },
+ 'aeprojectlinkcompositionid' => { 501 => [\'aeProjectLink','aeProjectLinkCompositionID'] },
+ 'aeprojectlinkfullpath' => { 501 => [\'aeProjectLink','aeProjectLinkFullPath'] },
+ 'aeprojectlinkrenderoutputmoduleindex' => { 501 => [\'aeProjectLink','aeProjectLinkRenderOutputModuleIndex'] },
+ 'aeprojectlinkrenderqueueitemid' => { 501 => [\'aeProjectLink','aeProjectLinkRenderQueueItemID'] },
+ 'aeprojectlinkrendertimestamp' => { 501 => [\'aeProjectLink','aeProjectLinkRenderTimeStamp'] },
'aesetting' => { 34 => 0x21 },
'aestable' => { 1 => 0x4 },
'aetarget' => { 1 => 0x5 },
- 'aewhitebalance' => { 345 => 0xd },
- 'aexv' => { 345 => 0x3, 346 => 0x5 },
- 'af-assistilluminator' => { 312 => 0x19 },
- 'af-cfocusdisplay' => { 312 => 0x234 },
+ 'aewhitebalance' => { 348 => 0xd },
+ 'aexv' => { 348 => 0x3, 349 => 0x5 },
+ 'af-assistilluminator' => { 313 => 0x19, 314 => 0x19, 315 => 0x19 },
+ 'af-cfocusdisplay' => { 313 => 0x234, 314 => 0x234, 315 => 0x24c },
'af-cpriority' => { 128 => '0.2' },
- 'af-cpriorityselection' => { 296 => '1.1', 297 => '1.1', 299 => '1.1', 300 => '1.1', 302 => '0.1', 303 => '0.1', 304 => '0.1', 305 => '1.1', 306 => '0.1', 309 => '1.1', 310 => '1.1', 312 => 0x3 },
+ 'af-cpriorityselection' => { 297 => '1.1', 298 => '1.1', 300 => '1.1', 301 => '1.1', 303 => '0.1', 304 => '0.1', 305 => '0.1', 306 => '1.1', 307 => '0.1', 310 => '1.1', 311 => '1.1', 313 => 0x3, 314 => 0x3, 315 => 0x3 },
'af-csetting' => { 124 => 0x0 },
'af-cspeedtrackingsensitivity' => { 124 => '0.2' },
'af-ctrackingsensitivity' => { 124 => '0.1' },
'af-czoneareaswitching' => { 124 => '0.3' },
- 'af-onbutton' => { 299 => '70.1', 300 => '70.1', 310 => '70.1' },
- 'af-onformb-d10' => { 296 => '3.3', 305 => '3.2' },
- 'af-onformb-d11' => { 306 => '2.2' },
- 'af-onformb-d12' => { 309 => '50.1' },
- 'af-onoutoffocusrelease' => { 312 => 0x10 },
+ 'af-onbutton' => { 300 => '70.1', 301 => '70.1', 311 => '70.1' },
+ 'af-onformb-d10' => { 297 => '3.3', 306 => '3.2' },
+ 'af-onformb-d11' => { 307 => '2.2' },
+ 'af-onformb-d12' => { 310 => '50.1' },
+ 'af-onoutoffocusrelease' => { 313 => 0x10, 314 => 0x10, 315 => 0x10 },
'af-spriority' => { 128 => '0.1' },
- 'af-spriorityselection' => { 296 => '1.2', 297 => '1.2', 299 => '1.2', 300 => '1.2', 304 => '0.2', 305 => '1.2', 306 => '0.2', 309 => '1.2', 310 => '1.2', 312 => 0x5 },
+ 'af-spriorityselection' => { 297 => '1.2', 298 => '1.2', 300 => '1.2', 301 => '1.2', 305 => '0.2', 306 => '1.2', 307 => '0.2', 310 => '1.2', 311 => '1.2', 313 => 0x5, 314 => 0x5, 315 => 0x5 },
'afacceldeceltracking' => { 2 => 0x3 },
- 'afactivation' => { 296 => '2.1', 297 => '2.1', 299 => '78.3', 300 => '78.3', 305 => '2.1', 309 => '2.1', 310 => '78.3', 312 => 0xf },
- 'afadjustment' => { 372 => 0x72, 381 => 0x267 },
+ 'afactivation' => { 297 => '2.1', 298 => '2.1', 300 => '78.3', 301 => '78.3', 306 => '2.1', 310 => '2.1', 311 => '78.3', 313 => 0xf, 314 => 0xf, 315 => 0xf },
+ 'afadjustment' => { 375 => 0x72, 384 => 0x267 },
'afandmeteringbuttons' => { 84 => 0x701 },
'afaperture' => { 227 => 0x5, 228 => 0x5, 232 => 0x5 },
'afareaheight' => { 193 => [0x1a,0x34,0x50], 194 => 0x48 },
- 'afareaillumination' => { 184 => 0x4b, 307 => '15.3' },
- 'afareainitialheight' => { 245 => 0xbeb },
- 'afareainitialwidth' => { 245 => 0xbea },
- 'afareainitialxposition' => { 245 => 0xbe8 },
- 'afareainitialyposition' => { 245 => 0xbe9 },
- 'afareamode' => { 126 => '0.3', 180 => 0x33, 184 => 0xe, 192 => 0x0, 193 => 0x5, 194 => 0x5, 239 => 0x210, 240 => 0x224, 241 => 0x224, 337 => 0xf, 404 => 0x1205, 417 => [0xa,0x3a], 424 => 0x11, 425 => 0x10, 426 => 0x24, 437 => 0xb043, 462 => 0x17 },
- 'afareamodesetting' => { 298 => '11.1', 301 => '0.1', 307 => '16.1', 311 => '2.1', 437 => 0x201c },
+ 'afareaillumination' => { 184 => 0x4b, 308 => '15.3' },
+ 'afareainitialheight' => { 246 => 0xbeb },
+ 'afareainitialwidth' => { 246 => 0xbea },
+ 'afareainitialxposition' => { 246 => 0xbe8 },
+ 'afareainitialyposition' => { 246 => 0xbe9 },
+ 'afareamode' => { 126 => '0.3', 180 => 0x33, 184 => 0xe, 192 => 0x0, 193 => 0x5, 194 => 0x5, 239 => 0x224, 240 => 0x210, 241 => 0x224, 242 => 0x224, 340 => 0xf, 407 => 0x1205, 420 => [0xa,0x3a], 427 => 0x11, 428 => 0x10, 429 => 0x24, 440 => 0xb043, 466 => 0x17 },
+ 'afareamodesetting' => { 299 => '11.1', 302 => '0.1', 308 => '16.1', 312 => '2.1', 440 => 0x201c },
'afareapointsize' => { 126 => '0.4' },
- 'afareas' => { 314 => 0x304 },
+ 'afareas' => { 317 => 0x304 },
'afareaselectionmethod' => { 2 => 0xd },
'afareaselectmethod' => { 84 => 0x51b },
'afareawidth' => { 193 => [0x18,0x32,0x4e], 194 => 0x46 },
- 'afareaxposition' => { 193 => [0x14,0x2e,0x4a], 194 => 0x42, 404 => 0x1203 },
- 'afareaxposition1' => { 404 => 0x1201 },
- 'afareayposition' => { 193 => [0x16,0x30,0x4c], 194 => 0x44, 404 => 0x1204 },
- 'afareayposition1' => { 404 => 0x1202 },
+ 'afareaxposition' => { 193 => [0x14,0x2e,0x4a], 194 => 0x42, 407 => 0x1203 },
+ 'afareaxposition1' => { 407 => 0x1201 },
+ 'afareayposition' => { 193 => [0x16,0x30,0x4c], 194 => 0x44, 407 => 0x1204 },
+ 'afareayposition1' => { 407 => 0x1202 },
'afareazonesize' => { 126 => '0.5' },
- 'afassist' => { 82 => 0x5, 90 => 0x5, 184 => 0x48, 296 => '2.5', 298 => '0.2', 301 => '0.2', 302 => '1.1', 303 => '1.1', 304 => '1.3', 305 => '2.4', 306 => '1.3', 307 => '0.2', 309 => '2.4', 311 => '2.3' },
+ 'afassist' => { 82 => 0x5, 90 => 0x5, 184 => 0x48, 297 => '2.5', 299 => '0.2', 302 => '0.2', 303 => '1.1', 304 => '1.1', 305 => '1.3', 306 => '2.4', 307 => '1.3', 308 => '0.2', 310 => '2.4', 312 => '2.3' },
'afassistbeam' => { 2 => 0x8, 84 => 0x50e, 85 => 0x4, 86 => 0x5, 87 => 0x4, 88 => 0x4, 89 => 0x5 },
- 'afassistlamp' => { 337 => 0x31 },
- 'afbuttonpressed' => { 426 => [0x83,0x283] },
+ 'afassistlamp' => { 340 => 0x31 },
+ 'afbuttonpressed' => { 429 => [0x83,0x283] },
'afconfidence' => { 1 => 0x3d },
'afconfigtool' => { 2 => 0x1 },
- 'afdefocus' => { 348 => 0x6 },
+ 'afdefocus' => { 351 => 0x6 },
'afduringliveview' => { 84 => 0x511 },
- 'affinea' => { 490 => 'AffineA' },
- 'affineb' => { 490 => 'AffineB' },
- 'affinec' => { 490 => 'AffineC' },
- 'affined' => { 490 => 'AffineD' },
- 'affinetune' => { 195 => 0x0, 239 => 0x5b0, 240 => 0x5e0, 241 => 0x5e0, 314 => 0x306 },
- 'affinetuneadj' => { 195 => 0x2, 263 => 0x2d1, 264 => 0x2dc, 314 => 0x307 },
+ 'affinea' => { 494 => 'AffineA' },
+ 'affineb' => { 494 => 'AffineB' },
+ 'affinec' => { 494 => 'AffineC' },
+ 'affined' => { 494 => 'AffineD' },
+ 'affinetune' => { 195 => 0x0, 239 => 0x6b0, 240 => 0x5b0, 241 => 0x5e0, 242 => 0x5f8, 317 => 0x306 },
+ 'affinetuneadj' => { 195 => 0x2, 264 => 0x2d1, 265 => 0x2dc, 317 => 0x307 },
'affinetuneadjtele' => { 195 => 0x3 },
'affinetuneindex' => { 195 => 0x1 },
- 'affinex' => { 490 => 'AffineX' },
- 'affiney' => { 490 => 'AffineY' },
- 'afhold' => { 348 => 0x1fd },
- 'afilluminator' => { 424 => 0x29, 437 => 0xb044 },
+ 'affinex' => { 494 => 'AffineX' },
+ 'affiney' => { 494 => 'AffineY' },
+ 'afhold' => { 351 => 0x1fd },
+ 'afilluminator' => { 427 => 0x29, 440 => 0xb044 },
'afimageheight' => { 193 => [0x12,0x2c,0x48], 194 => 0x40 },
'afimagewidth' => { 193 => [0x10,0x2a,0x46], 194 => 0x3e },
- 'afintegrationtime' => { 348 => 0x7 },
+ 'afintegrationtime' => { 351 => 0x7 },
'afmeasureddepth' => { 1 => 0x38 },
- 'afmicroadj' => { 417 => [0x17d,0x50] },
- 'afmicroadjmode' => { 3 => 0x1, 421 => 0x131 },
- 'afmicroadjregisteredlenses' => { 421 => '305.1' },
+ 'afmicroadj' => { 420 => [0x17d,0x50] },
+ 'afmicroadjmode' => { 3 => 0x1, 424 => 0x131 },
+ 'afmicroadjregisteredlenses' => { 424 => '305.1' },
'afmicroadjustment' => { 84 => 0x507 },
- 'afmicroadjvalue' => { 3 => 0x2, 421 => 0x130 },
- 'afmode' => { 113 => 0x3009, 127 => 0x1022, 180 => 0x16, 414 => 0x5 },
- 'afmoderestrictions' => { 297 => '50.3', 299 => '48.3', 300 => '48.3', 309 => '48.3', 310 => '48.3' },
+ 'afmicroadjvalue' => { 3 => 0x2, 424 => 0x130 },
+ 'afmode' => { 113 => 0x3009, 127 => 0x1022, 180 => 0x16, 417 => 0x5 },
+ 'afmoderestrictions' => { 298 => '50.3', 300 => '48.3', 301 => '48.3', 310 => '48.3', 311 => '48.3' },
'afonaelockbuttonswitch' => { 84 => 0x702 },
- 'afonbutton' => { 296 => '3.1', 297 => '47.1', 312 => 0x83 },
- 'afpoint' => { 34 => 0x13, 112 => 0x18, 180 => 0x15, 192 => 0x1, 317 => 0x308, 414 => 0x1f, 417 => [0x37,0x7], 421 => 0x19, 422 => 0x18, 423 => [0x18,0x20] },
+ 'afonbutton' => { 297 => '3.1', 298 => '47.1', 313 => 0x83, 314 => 0x83, 315 => 0x83 },
+ 'afpoint' => { 34 => 0x13, 112 => 0x18, 180 => 0x15, 192 => 0x1, 320 => 0x308, 417 => 0x1f, 420 => [0x37,0x7], 424 => 0x19, 425 => 0x18, 426 => [0x18,0x20] },
'afpointactivationarea' => { 83 => 0x11, 89 => 0x11 },
'afpointareaexpansion' => { 84 => 0x508 },
- 'afpointatshutterrelease' => { 417 => [0x39,0x9] },
+ 'afpointatshutterrelease' => { 420 => [0x39,0x9] },
'afpointautoselection' => { 84 => 0x50b },
- 'afpointbrightness' => { 84 => 0x50d, 296 => '2.4', 297 => '46.5', 299 => '2.2', 300 => '2.2', 309 => '2.3', 310 => '2.2' },
- 'afpointdetails' => { 317 => 0x31b },
+ 'afpointbrightness' => { 84 => 0x50d, 297 => '2.4', 298 => '46.5', 300 => '2.2', 301 => '2.2', 310 => '2.3', 311 => '2.2' },
+ 'afpointdetails' => { 320 => 0x31b },
'afpointdisplayduringfocus' => { 2 => 0x10, 84 => 0x50c },
- 'afpointillumination' => { 83 => 0xa, 296 => '2.3', 297 => '46.2', 299 => '47.2', 300 => '47.2', 304 => '1.2', 305 => '2.3', 306 => '1.2', 309 => '47.2', 310 => '47.2', 311 => '2.4' },
- 'afpointinfocus' => { 417 => [0x38,0x8] },
- 'afpointmode' => { 353 => 0x3 },
- 'afpointposition' => { 113 => 0x2021, 337 => 0x4d },
+ 'afpointillumination' => { 83 => 0xa, 297 => '2.3', 298 => '46.2', 300 => '47.2', 301 => '47.2', 305 => '1.2', 306 => '2.3', 307 => '1.2', 310 => '47.2', 311 => '47.2', 312 => '2.4' },
+ 'afpointinfocus' => { 420 => [0x38,0x8] },
+ 'afpointmode' => { 356 => 0x3 },
+ 'afpointposition' => { 113 => 0x2021, 340 => 0x4d },
'afpointregistration' => { 82 => 0x7 },
'afpoints' => { 183 => 0x10 },
- 'afpointsel' => { 312 => 0xb },
- 'afpointselected' => { 184 => 0xd, 314 => 0x305, 372 => 0xe, 421 => 0x15, 422 => 0x14, 423 => [0x14,0x1c], 437 => 0x201e },
- 'afpointselected2' => { 353 => 0x4 },
- 'afpointselection' => { 83 => 0xb, 296 => '1.3', 297 => '1.3', 305 => '1.3', 309 => '1.3', 310 => '1.3' },
+ 'afpointsel' => { 313 => 0xb, 314 => 0xb, 315 => 0xb },
+ 'afpointselected' => { 184 => 0xd, 317 => 0x305, 375 => 0xe, 424 => 0x15, 425 => 0x14, 426 => [0x14,0x1c], 440 => 0x201e },
+ 'afpointselected2' => { 356 => 0x4 },
+ 'afpointselection' => { 83 => 0xb, 297 => '1.3', 298 => '1.3', 306 => '1.3', 310 => '1.3', 311 => '1.3' },
'afpointselectionmethod' => { 84 => 0x50f, 85 => 0xc, 86 => 0xd, 89 => 0xd },
- 'afpointsetting' => { 424 => 0x12, 425 => 0x11 },
- 'afpointsinfocus' => { 77 => 0xe, 192 => 0x2, 193 => 0x30, 348 => 0xb, 349 => 0x4, 372 => [0xf,0x3c] },
+ 'afpointsetting' => { 427 => 0x12, 428 => 0x11 },
+ 'afpointsinfocus' => { 77 => 0xe, 192 => 0x2, 193 => 0x30, 351 => 0xb, 352 => 0x4, 375 => [0xf,0x3c] },
'afpointsinfocus5d' => { 19 => 0x38 },
'afpointspotmetering' => { 83 => 0xd },
- 'afpointsselected' => { 193 => 0x1c, 349 => '4.1', 470 => 0x4 },
- 'afpointsspecial' => { 349 => '4.2' },
- 'afpointsunknown1' => { 348 => 0x0 },
- 'afpointsunknown2' => { 348 => 0x2 },
- 'afpointsused' => { 193 => [0xa,0x8], 417 => [0x10,0x16e] },
+ 'afpointsselected' => { 193 => 0x1c, 352 => '4.1', 474 => 0x4 },
+ 'afpointsspecial' => { 352 => '4.2' },
+ 'afpointsunknown1' => { 351 => 0x0 },
+ 'afpointsunknown2' => { 351 => 0x2 },
+ 'afpointsused' => { 193 => [0xa,0x8], 194 => 0xa, 420 => [0x10,0x16e] },
'afpointswitching' => { 2 => 0x4 },
- 'afpredictor' => { 348 => 0x4 },
+ 'afpredictor' => { 351 => 0x4 },
'afresponse' => { 234 => 0xad },
- 'afresult' => { 319 => 0x1038 },
- 'afsearch' => { 314 => 0x303 },
+ 'afresult' => { 322 => 0x1038 },
+ 'afsearch' => { 317 => 0x303 },
'afsensoractive' => { 180 => 0x1 },
'afstable' => { 1 => 0x7 },
- 'afstatus' => { 404 => 0x1200 },
- 'afstatus_00_b4' => { 420 => 0x0 },
- 'afstatus_01_c4' => { 420 => 0x2 },
- 'afstatus_02_d4' => { 420 => 0x4 },
- 'afstatus_03_e4' => { 420 => 0x6 },
- 'afstatus_04_f4' => { 420 => 0x8 },
- 'afstatus_05_g4' => { 420 => 0xa },
- 'afstatus_06_h4' => { 420 => 0xc },
- 'afstatus_07_b3' => { 420 => 0xe },
- 'afstatus_08_c3' => { 420 => 0x10 },
- 'afstatus_09_d3' => { 420 => 0x12 },
- 'afstatus_10_e3' => { 420 => 0x14 },
- 'afstatus_11_f3' => { 420 => 0x16 },
- 'afstatus_12_g3' => { 420 => 0x18 },
- 'afstatus_13_h3' => { 420 => 0x1a },
- 'afstatus_14_b2' => { 420 => 0x1c },
- 'afstatus_15_c2' => { 420 => 0x1e },
- 'afstatus_16_d2' => { 420 => 0x20 },
- 'afstatus_17_e2' => { 420 => 0x22 },
- 'afstatus_18_f2' => { 420 => 0x24 },
- 'afstatus_19_g2' => { 420 => 0x26 },
- 'afstatus_20_h2' => { 420 => 0x28 },
- 'afstatus_21_c1' => { 420 => 0x2a },
- 'afstatus_22_d1' => { 420 => 0x2c },
- 'afstatus_23_e1' => { 420 => 0x2e },
- 'afstatus_24_f1' => { 420 => 0x30 },
- 'afstatus_25_g1' => { 420 => 0x32 },
- 'afstatus_26_a7_vertical' => { 420 => 0x34 },
- 'afstatus_27_a6_vertical' => { 420 => 0x36 },
- 'afstatus_28_a5_vertical' => { 420 => 0x38 },
- 'afstatus_29_c7_vertical' => { 420 => 0x3a },
- 'afstatus_30_c6_vertical' => { 420 => 0x3c },
- 'afstatus_31_c5_vertical' => { 420 => 0x3e },
- 'afstatus_32_e7_vertical' => { 420 => 0x40 },
- 'afstatus_33_e6_center_vertical' => { 420 => 0x42 },
- 'afstatus_34_e5_vertical' => { 420 => 0x44 },
- 'afstatus_35_g7_vertical' => { 420 => 0x46 },
- 'afstatus_36_g6_vertical' => { 420 => 0x48 },
- 'afstatus_37_g5_vertical' => { 420 => 0x4a },
- 'afstatus_38_i7_vertical' => { 420 => 0x4c },
- 'afstatus_39_i6_vertical' => { 420 => 0x4e },
- 'afstatus_40_i5_vertical' => { 420 => 0x50 },
- 'afstatus_41_a7' => { 420 => 0x52 },
- 'afstatus_42_b7' => { 420 => 0x54 },
- 'afstatus_43_c7' => { 420 => 0x56 },
- 'afstatus_44_d7' => { 420 => 0x58 },
- 'afstatus_45_e7' => { 420 => 0x5a },
- 'afstatus_46_f7' => { 420 => 0x5c },
- 'afstatus_47_g7' => { 420 => 0x5e },
- 'afstatus_48_h7' => { 420 => 0x60 },
- 'afstatus_49_i7' => { 420 => 0x62 },
- 'afstatus_50_a6' => { 420 => 0x64 },
- 'afstatus_51_b6' => { 420 => 0x66 },
- 'afstatus_52_c6' => { 420 => 0x68 },
- 'afstatus_53_d6' => { 420 => 0x6a },
- 'afstatus_54_e6_center' => { 420 => 0x6c },
- 'afstatus_55_f6' => { 420 => 0x6e },
- 'afstatus_56_g6' => { 420 => 0x70 },
- 'afstatus_57_h6' => { 420 => 0x72 },
- 'afstatus_58_i6' => { 420 => 0x74 },
- 'afstatus_59_a5' => { 420 => 0x76 },
- 'afstatus_60_b5' => { 420 => 0x78 },
- 'afstatus_61_c5' => { 420 => 0x7a },
- 'afstatus_62_d5' => { 420 => 0x7c },
- 'afstatus_63_e5' => { 420 => 0x7e },
- 'afstatus_64_f5' => { 420 => 0x80 },
- 'afstatus_65_g5' => { 420 => 0x82 },
- 'afstatus_66_h5' => { 420 => 0x84 },
- 'afstatus_67_i5' => { 420 => 0x86 },
- 'afstatus_68_c11' => { 420 => 0x88 },
- 'afstatus_69_d11' => { 420 => 0x8a },
- 'afstatus_70_e11' => { 420 => 0x8c },
- 'afstatus_71_f11' => { 420 => 0x8e },
- 'afstatus_72_g11' => { 420 => 0x90 },
- 'afstatus_73_b10' => { 420 => 0x92 },
- 'afstatus_74_c10' => { 420 => 0x94 },
- 'afstatus_75_d10' => { 420 => 0x96 },
- 'afstatus_76_e10' => { 420 => 0x98 },
- 'afstatus_77_f10' => { 420 => 0x9a },
- 'afstatus_78_g10' => { 420 => 0x9c },
- 'afstatus_79_h10' => { 420 => 0x9e },
- 'afstatus_80_b9' => { 420 => 0xa0 },
- 'afstatus_81_c9' => { 420 => 0xa2 },
- 'afstatus_82_d9' => { 420 => 0xa4 },
- 'afstatus_83_e9' => { 420 => 0xa6 },
- 'afstatus_84_f9' => { 420 => 0xa8 },
- 'afstatus_85_g9' => { 420 => 0xaa },
- 'afstatus_86_h9' => { 420 => 0xac },
- 'afstatus_87_b8' => { 420 => 0xae },
- 'afstatus_88_c8' => { 420 => 0xb0 },
- 'afstatus_89_d8' => { 420 => 0xb2 },
- 'afstatus_90_e8' => { 420 => 0xb4 },
- 'afstatus_91_f8' => { 420 => 0xb6 },
- 'afstatus_92_g8' => { 420 => 0xb8 },
- 'afstatus_93_h8' => { 420 => 0xba },
- 'afstatus_94_e6_center_f2-8' => { 420 => 0xbc },
- 'afstatusactivesensor' => { 180 => 0x2, 417 => [0x4,0x3b], 421 => 0x1e, 422 => 0x1b, 423 => [0x1b,0x21] },
- 'afstatusbottom' => { 180 => 0x8, 421 => 0x2a, 422 => 0x21, 423 => 0x21 },
- 'afstatusbottom-left' => { 180 => 0x12, 422 => 0x2b, 423 => 0x2b },
- 'afstatusbottom-right' => { 180 => 0x6, 422 => 0x1f, 423 => 0x1f },
- 'afstatusbottomassist-left' => { 421 => 0x28 },
- 'afstatusbottomassist-right' => { 421 => 0x2c },
- 'afstatusbottomhorizontal' => { 418 => 0x10, 419 => 0x1c },
- 'afstatusbottomvertical' => { 418 => 0x16, 419 => 0x26 },
- 'afstatuscenter-10' => { 421 => 0x34 },
- 'afstatuscenter-11' => { 421 => 0x36 },
- 'afstatuscenter-12' => { 421 => 0x38 },
- 'afstatuscenter-14' => { 421 => 0x3c },
- 'afstatuscenter-7' => { 421 => 0x2e },
- 'afstatuscenter-9' => { 421 => 0x32 },
- 'afstatuscenter-horizontal' => { 421 => 0x30 },
- 'afstatuscenter-vertical' => { 421 => 0x3a },
- 'afstatuscenterf2-8' => { 421 => 0x4c },
- 'afstatuscenterhorizontal' => { 180 => 0x2f, 418 => 0xc, 419 => 0x18, 422 => 0x2f, 423 => 0x2f },
- 'afstatuscentervertical' => { 180 => 0xc, 418 => 0x14, 419 => 0x22, 422 => 0x25, 423 => 0x25 },
- 'afstatusfarleft' => { 418 => 0x6, 421 => 0x26 },
- 'afstatusfarlefthorizontal' => { 419 => 0x4 },
- 'afstatusfarleftvertical' => { 419 => 0x12 },
- 'afstatusfarright' => { 418 => 0x18, 421 => 0x44 },
- 'afstatusfarrighthorizontal' => { 419 => 0x2c },
- 'afstatusfarrightvertical' => { 419 => 0x34 },
- 'afstatusleft' => { 180 => 0x2d, 418 => 0x2, 421 => 0x22, 422 => 0x2d, 423 => 0x2d },
- 'afstatuslefthorizontal' => { 419 => 0x6 },
- 'afstatusleftvertical' => { 419 => 0xe },
- 'afstatuslower-left' => { 418 => 0x4, 421 => 0x24 },
- 'afstatuslower-lefthorizontal' => { 419 => 0xa },
- 'afstatuslower-leftvertical' => { 419 => 0x10 },
- 'afstatuslower-middle' => { 418 => 0x22, 419 => 0x24 },
- 'afstatuslower-right' => { 418 => 0x1e, 421 => 0x4a },
- 'afstatuslower-righthorizontal' => { 419 => 0x32 },
- 'afstatuslower-rightvertical' => { 419 => 0x3a },
- 'afstatuslowerfarleft' => { 419 => 0x8 },
- 'afstatuslowerfarright' => { 419 => 0x30 },
- 'afstatusmiddlehorizontal' => { 180 => 0xa, 422 => 0x23, 423 => 0x23 },
- 'afstatusnearleft' => { 418 => 0xe, 419 => 0x1a },
- 'afstatusnearright' => { 418 => 0xa, 419 => 0x16 },
- 'afstatusright' => { 180 => 0x31, 418 => 0x1c, 421 => 0x48, 422 => 0x31, 423 => 0x31 },
- 'afstatusrighthorizontal' => { 419 => 0x2e },
- 'afstatusrightvertical' => { 419 => 0x38 },
- 'afstatustop' => { 180 => 0xe, 421 => 0x40, 422 => 0x27, 423 => 0x27 },
- 'afstatustop-left' => { 180 => 0x10, 422 => 0x29, 423 => 0x29 },
- 'afstatustop-right' => { 180 => 0x4, 422 => 0x1d, 423 => 0x1d },
- 'afstatustopassist-left' => { 421 => 0x3e },
- 'afstatustopassist-right' => { 421 => 0x42 },
- 'afstatustophorizontal' => { 418 => 0x8, 419 => 0x14 },
- 'afstatustopvertical' => { 418 => 0x12, 419 => 0x1e },
- 'afstatusupper-left' => { 418 => 0x0, 421 => 0x20 },
- 'afstatusupper-lefthorizontal' => { 419 => 0x2 },
- 'afstatusupper-leftvertical' => { 419 => 0xc },
- 'afstatusupper-middle' => { 418 => 0x20, 419 => 0x20 },
- 'afstatusupper-right' => { 418 => 0x1a, 421 => 0x46 },
- 'afstatusupper-righthorizontal' => { 419 => 0x2a },
- 'afstatusupper-rightvertical' => { 419 => 0x36 },
- 'afstatusupperfarleft' => { 419 => 0x0 },
- 'afstatusupperfarright' => { 419 => 0x28 },
+ 'afstatus' => { 407 => 0x1200 },
+ 'afstatus_00_b4' => { 423 => 0x0 },
+ 'afstatus_01_c4' => { 423 => 0x2 },
+ 'afstatus_02_d4' => { 423 => 0x4 },
+ 'afstatus_03_e4' => { 423 => 0x6 },
+ 'afstatus_04_f4' => { 423 => 0x8 },
+ 'afstatus_05_g4' => { 423 => 0xa },
+ 'afstatus_06_h4' => { 423 => 0xc },
+ 'afstatus_07_b3' => { 423 => 0xe },
+ 'afstatus_08_c3' => { 423 => 0x10 },
+ 'afstatus_09_d3' => { 423 => 0x12 },
+ 'afstatus_10_e3' => { 423 => 0x14 },
+ 'afstatus_11_f3' => { 423 => 0x16 },
+ 'afstatus_12_g3' => { 423 => 0x18 },
+ 'afstatus_13_h3' => { 423 => 0x1a },
+ 'afstatus_14_b2' => { 423 => 0x1c },
+ 'afstatus_15_c2' => { 423 => 0x1e },
+ 'afstatus_16_d2' => { 423 => 0x20 },
+ 'afstatus_17_e2' => { 423 => 0x22 },
+ 'afstatus_18_f2' => { 423 => 0x24 },
+ 'afstatus_19_g2' => { 423 => 0x26 },
+ 'afstatus_20_h2' => { 423 => 0x28 },
+ 'afstatus_21_c1' => { 423 => 0x2a },
+ 'afstatus_22_d1' => { 423 => 0x2c },
+ 'afstatus_23_e1' => { 423 => 0x2e },
+ 'afstatus_24_f1' => { 423 => 0x30 },
+ 'afstatus_25_g1' => { 423 => 0x32 },
+ 'afstatus_26_a7_vertical' => { 423 => 0x34 },
+ 'afstatus_27_a6_vertical' => { 423 => 0x36 },
+ 'afstatus_28_a5_vertical' => { 423 => 0x38 },
+ 'afstatus_29_c7_vertical' => { 423 => 0x3a },
+ 'afstatus_30_c6_vertical' => { 423 => 0x3c },
+ 'afstatus_31_c5_vertical' => { 423 => 0x3e },
+ 'afstatus_32_e7_vertical' => { 423 => 0x40 },
+ 'afstatus_33_e6_center_vertical' => { 423 => 0x42 },
+ 'afstatus_34_e5_vertical' => { 423 => 0x44 },
+ 'afstatus_35_g7_vertical' => { 423 => 0x46 },
+ 'afstatus_36_g6_vertical' => { 423 => 0x48 },
+ 'afstatus_37_g5_vertical' => { 423 => 0x4a },
+ 'afstatus_38_i7_vertical' => { 423 => 0x4c },
+ 'afstatus_39_i6_vertical' => { 423 => 0x4e },
+ 'afstatus_40_i5_vertical' => { 423 => 0x50 },
+ 'afstatus_41_a7' => { 423 => 0x52 },
+ 'afstatus_42_b7' => { 423 => 0x54 },
+ 'afstatus_43_c7' => { 423 => 0x56 },
+ 'afstatus_44_d7' => { 423 => 0x58 },
+ 'afstatus_45_e7' => { 423 => 0x5a },
+ 'afstatus_46_f7' => { 423 => 0x5c },
+ 'afstatus_47_g7' => { 423 => 0x5e },
+ 'afstatus_48_h7' => { 423 => 0x60 },
+ 'afstatus_49_i7' => { 423 => 0x62 },
+ 'afstatus_50_a6' => { 423 => 0x64 },
+ 'afstatus_51_b6' => { 423 => 0x66 },
+ 'afstatus_52_c6' => { 423 => 0x68 },
+ 'afstatus_53_d6' => { 423 => 0x6a },
+ 'afstatus_54_e6_center' => { 423 => 0x6c },
+ 'afstatus_55_f6' => { 423 => 0x6e },
+ 'afstatus_56_g6' => { 423 => 0x70 },
+ 'afstatus_57_h6' => { 423 => 0x72 },
+ 'afstatus_58_i6' => { 423 => 0x74 },
+ 'afstatus_59_a5' => { 423 => 0x76 },
+ 'afstatus_60_b5' => { 423 => 0x78 },
+ 'afstatus_61_c5' => { 423 => 0x7a },
+ 'afstatus_62_d5' => { 423 => 0x7c },
+ 'afstatus_63_e5' => { 423 => 0x7e },
+ 'afstatus_64_f5' => { 423 => 0x80 },
+ 'afstatus_65_g5' => { 423 => 0x82 },
+ 'afstatus_66_h5' => { 423 => 0x84 },
+ 'afstatus_67_i5' => { 423 => 0x86 },
+ 'afstatus_68_c11' => { 423 => 0x88 },
+ 'afstatus_69_d11' => { 423 => 0x8a },
+ 'afstatus_70_e11' => { 423 => 0x8c },
+ 'afstatus_71_f11' => { 423 => 0x8e },
+ 'afstatus_72_g11' => { 423 => 0x90 },
+ 'afstatus_73_b10' => { 423 => 0x92 },
+ 'afstatus_74_c10' => { 423 => 0x94 },
+ 'afstatus_75_d10' => { 423 => 0x96 },
+ 'afstatus_76_e10' => { 423 => 0x98 },
+ 'afstatus_77_f10' => { 423 => 0x9a },
+ 'afstatus_78_g10' => { 423 => 0x9c },
+ 'afstatus_79_h10' => { 423 => 0x9e },
+ 'afstatus_80_b9' => { 423 => 0xa0 },
+ 'afstatus_81_c9' => { 423 => 0xa2 },
+ 'afstatus_82_d9' => { 423 => 0xa4 },
+ 'afstatus_83_e9' => { 423 => 0xa6 },
+ 'afstatus_84_f9' => { 423 => 0xa8 },
+ 'afstatus_85_g9' => { 423 => 0xaa },
+ 'afstatus_86_h9' => { 423 => 0xac },
+ 'afstatus_87_b8' => { 423 => 0xae },
+ 'afstatus_88_c8' => { 423 => 0xb0 },
+ 'afstatus_89_d8' => { 423 => 0xb2 },
+ 'afstatus_90_e8' => { 423 => 0xb4 },
+ 'afstatus_91_f8' => { 423 => 0xb6 },
+ 'afstatus_92_g8' => { 423 => 0xb8 },
+ 'afstatus_93_h8' => { 423 => 0xba },
+ 'afstatus_94_e6_center_f2-8' => { 423 => 0xbc },
+ 'afstatusactivesensor' => { 180 => 0x2, 420 => [0x4,0x3b], 424 => 0x1e, 425 => 0x1b, 426 => [0x1b,0x21] },
+ 'afstatusbottom' => { 180 => 0x8, 424 => 0x2a, 425 => 0x21, 426 => 0x21 },
+ 'afstatusbottom-left' => { 180 => 0x12, 425 => 0x2b, 426 => 0x2b },
+ 'afstatusbottom-right' => { 180 => 0x6, 425 => 0x1f, 426 => 0x1f },
+ 'afstatusbottomassist-left' => { 424 => 0x28 },
+ 'afstatusbottomassist-right' => { 424 => 0x2c },
+ 'afstatusbottomhorizontal' => { 421 => 0x10, 422 => 0x1c },
+ 'afstatusbottomvertical' => { 421 => 0x16, 422 => 0x26 },
+ 'afstatuscenter-10' => { 424 => 0x34 },
+ 'afstatuscenter-11' => { 424 => 0x36 },
+ 'afstatuscenter-12' => { 424 => 0x38 },
+ 'afstatuscenter-14' => { 424 => 0x3c },
+ 'afstatuscenter-7' => { 424 => 0x2e },
+ 'afstatuscenter-9' => { 424 => 0x32 },
+ 'afstatuscenter-horizontal' => { 424 => 0x30 },
+ 'afstatuscenter-vertical' => { 424 => 0x3a },
+ 'afstatuscenterf2-8' => { 424 => 0x4c },
+ 'afstatuscenterhorizontal' => { 180 => 0x2f, 421 => 0xc, 422 => 0x18, 425 => 0x2f, 426 => 0x2f },
+ 'afstatuscentervertical' => { 180 => 0xc, 421 => 0x14, 422 => 0x22, 425 => 0x25, 426 => 0x25 },
+ 'afstatusfarleft' => { 421 => 0x6, 424 => 0x26 },
+ 'afstatusfarlefthorizontal' => { 422 => 0x4 },
+ 'afstatusfarleftvertical' => { 422 => 0x12 },
+ 'afstatusfarright' => { 421 => 0x18, 424 => 0x44 },
+ 'afstatusfarrighthorizontal' => { 422 => 0x2c },
+ 'afstatusfarrightvertical' => { 422 => 0x34 },
+ 'afstatusleft' => { 180 => 0x2d, 421 => 0x2, 424 => 0x22, 425 => 0x2d, 426 => 0x2d },
+ 'afstatuslefthorizontal' => { 422 => 0x6 },
+ 'afstatusleftvertical' => { 422 => 0xe },
+ 'afstatuslower-left' => { 421 => 0x4, 424 => 0x24 },
+ 'afstatuslower-lefthorizontal' => { 422 => 0xa },
+ 'afstatuslower-leftvertical' => { 422 => 0x10 },
+ 'afstatuslower-middle' => { 421 => 0x22, 422 => 0x24 },
+ 'afstatuslower-right' => { 421 => 0x1e, 424 => 0x4a },
+ 'afstatuslower-righthorizontal' => { 422 => 0x32 },
+ 'afstatuslower-rightvertical' => { 422 => 0x3a },
+ 'afstatuslowerfarleft' => { 422 => 0x8 },
+ 'afstatuslowerfarright' => { 422 => 0x30 },
+ 'afstatusmiddlehorizontal' => { 180 => 0xa, 425 => 0x23, 426 => 0x23 },
+ 'afstatusnearleft' => { 421 => 0xe, 422 => 0x1a },
+ 'afstatusnearright' => { 421 => 0xa, 422 => 0x16 },
+ 'afstatusright' => { 180 => 0x31, 421 => 0x1c, 424 => 0x48, 425 => 0x31, 426 => 0x31 },
+ 'afstatusrighthorizontal' => { 422 => 0x2e },
+ 'afstatusrightvertical' => { 422 => 0x38 },
+ 'afstatustop' => { 180 => 0xe, 424 => 0x40, 425 => 0x27, 426 => 0x27 },
+ 'afstatustop-left' => { 180 => 0x10, 425 => 0x29, 426 => 0x29 },
+ 'afstatustop-right' => { 180 => 0x4, 425 => 0x1d, 426 => 0x1d },
+ 'afstatustopassist-left' => { 424 => 0x3e },
+ 'afstatustopassist-right' => { 424 => 0x42 },
+ 'afstatustophorizontal' => { 421 => 0x8, 422 => 0x14 },
+ 'afstatustopvertical' => { 421 => 0x12, 422 => 0x1e },
+ 'afstatusupper-left' => { 421 => 0x0, 424 => 0x20 },
+ 'afstatusupper-lefthorizontal' => { 422 => 0x2 },
+ 'afstatusupper-leftvertical' => { 422 => 0xc },
+ 'afstatusupper-middle' => { 421 => 0x20, 422 => 0x20 },
+ 'afstatusupper-right' => { 421 => 0x1a, 424 => 0x46 },
+ 'afstatusupper-righthorizontal' => { 422 => 0x2a },
+ 'afstatusupper-rightvertical' => { 422 => 0x36 },
+ 'afstatusupperfarleft' => { 422 => 0x0 },
+ 'afstatusupperfarright' => { 422 => 0x28 },
'afstatusviewfinder' => { 2 => 0x12 },
- 'aftracking' => { 437 => 0x2021 },
+ 'aftracking' => { 440 => 0x2021 },
'aftrackingsensitivity' => { 2 => 0x2 },
- 'aftype' => { 417 => 0x2 },
- 'afwithshutter' => { 424 => 0x2a },
- 'aggregateissuenumber' => { 515 => 'aggregateIssueNumber' },
- 'aggregationtype' => { 515 => 'aggregationType' },
- 'agreement' => { 518 => 'agreement' },
+ 'aftype' => { 420 => 0x2 },
+ 'afwithshutter' => { 427 => 0x2a },
+ 'aggregateissuenumber' => { 519 => 'aggregateIssueNumber' },
+ 'aggregationtype' => { 519 => 'aggregationType' },
+ 'agreement' => { 522 => 'agreement' },
'ah2greeninterpolationthreshold' => { 138 => 0xe4e },
- 'airplanemode' => { 239 => 0x624, 240 => 0x654, 241 => 0x6bc },
+ 'airplanemode' => { 239 => 0x722, 240 => 0x624, 241 => 0x654, 242 => 0x6bc },
'aiservocontinuousshooting' => { 83 => 0x15 },
'aiservofirstimage' => { 2 => 0x5 },
'aiservofirstimagepriority' => { 84 => 0x519 },
@@ -926,204 +930,206 @@ my %tagLookup = (
'aiservosecondimagepriority' => { 84 => 0x51a },
'aiservotrackingmethod' => { 84 => 0x504 },
'aiservotrackingsensitivity' => { 83 => 0x14, 84 => 0x502 },
- 'aisubjecttrackingmode' => { 314 => 0x309 },
- 'album' => { 389 => ['albm',"\xa9alb"], 391 => 'album', 397 => ['albm',"\xa9alb"], 525 => 'album' },
- 'albumartist' => { 179 => 'WM/AlbumArtist', 389 => 'aART', 397 => 'albr' },
+ 'aisubjecttrackingmode' => { 317 => 0x309 },
+ 'album' => { 392 => ['albm',"\xa9alb"], 394 => 'album', 400 => ['albm',"\xa9alb"], 529 => 'album' },
+ 'albumartist' => { 179 => 'WM/AlbumArtist', 392 => 'aART', 400 => 'albr' },
'albumcoverurl' => { 179 => 'WM/AlbumCoverURL' },
+ 'albumid' => { 392 => 'plID' },
'albumtitle' => { 179 => 'WM/AlbumTitle' },
- 'albumtitleid' => { 389 => 'atID' },
- 'alreadyapplied' => { 496 => 'AlreadyApplied', 498 => 'AlreadyApplied' },
- 'alternatetitle' => { 515 => 'alternateTitle' },
- 'alternatetitlea-lang' => { 515 => [\'alternateTitle','alternateTitleA-lang'] },
- 'alternatetitlea-platform' => { 515 => [\'alternateTitle','alternateTitleA-platform'] },
- 'alternatetitletext' => { 515 => [\'alternateTitle','alternateTitleText'] },
+ 'alreadyapplied' => { 500 => 'AlreadyApplied', 502 => 'AlreadyApplied' },
+ 'alternatetitle' => { 519 => 'alternateTitle' },
+ 'alternatetitlea-lang' => { 519 => [\'alternateTitle','alternateTitleA-lang'] },
+ 'alternatetitlea-platform' => { 519 => [\'alternateTitle','alternateTitleA-platform'] },
+ 'alternatetitletext' => { 519 => [\'alternateTitle','alternateTitleText'] },
'altitude' => { 197 => 0x6 },
- 'alttapename' => { 525 => 'altTapeName' },
- 'alttextaccessibility' => { 509 => 'AltTextAccessibility' },
- 'alttimecode' => { 525 => 'altTimecode' },
- 'alttimecodetimeformat' => { 525 => [\'altTimecode','altTimecodeTimeFormat'] },
- 'alttimecodetimevalue' => { 525 => [\'altTimecode','altTimecodeTimeValue'] },
- 'alttimecodevalue' => { 525 => [\'altTimecode','altTimecodeValue'] },
+ 'alttapename' => { 529 => 'altTapeName' },
+ 'alttextaccessibility' => { 513 => 'AltTextAccessibility' },
+ 'alttimecode' => { 529 => 'altTimecode' },
+ 'alttimecodetimeformat' => { 529 => [\'altTimecode','altTimecodeTimeFormat'] },
+ 'alttimecodetimevalue' => { 529 => [\'altTimecode','altTimecodeTimeValue'] },
+ 'alttimecodevalue' => { 529 => [\'altTimecode','altTimecodeValue'] },
'ambienceselection' => { 4 => 0x1 },
- 'ambientinfrared' => { 400 => 0x5c },
- 'ambientlight' => { 400 => 0x5e },
- 'ambienttemperature' => { 119 => 0x9400, 398 => 0x14, 399 => 0x46, 400 => 0x50, 462 => 0x4, 503 => 'Temperature' },
- 'ambienttemperaturefahrenheit' => { 398 => 0x13, 399 => 0x44, 400 => 0x4e },
+ 'ambientinfrared' => { 403 => 0x5c },
+ 'ambientlight' => { 403 => 0x5e },
+ 'ambienttemperature' => { 119 => 0x9400, 401 => 0x14, 402 => 0x46, 403 => 0x50, 466 => 0x4, 507 => 'Temperature' },
+ 'ambienttemperaturefahrenheit' => { 401 => 0x13, 402 => 0x44, 403 => 0x4e },
'analogbalance' => { 119 => 0xc627 },
'analogcaptureiso' => { 138 => 0x89e },
'analogisotable' => { 138 => 0x89d },
- 'androidversion' => { 391 => 'com.android.version' },
+ 'androidversion' => { 394 => 'com.android.version' },
'angleadj' => { 103 => 0x10003, 109 => 0x8b },
- 'angleinforoll' => { 492 => 'AngleInfoRoll' },
- 'angleinfoyaw' => { 492 => 'AngleInfoYaw' },
- 'anti-blur' => { 437 => 0xb04b },
+ 'angleinforoll' => { 496 => 'AngleInfoRoll' },
+ 'angleinfoyaw' => { 496 => 'AngleInfoYaw' },
+ 'anti-blur' => { 440 => 0xb04b },
'antialiasstrength' => { 119 => 0xc632 },
- 'aperturelock' => { 297 => '38.2', 299 => '38.2', 300 => '38.2', 309 => '38.2', 310 => '38.2', 312 => 0xb8 },
- 'aperturemode' => { 397 => 'apmd' },
+ 'aperturelock' => { 298 => '38.2', 300 => '38.2', 301 => '38.2', 310 => '38.2', 311 => '38.2', 313 => 0xb8, 314 => 0xb8, 315 => 0xb8 },
+ 'aperturemode' => { 400 => 'apmd' },
'aperturerange' => { 84 => 0x10d },
- 'apertureringuse' => { 353 => '1.4' },
- 'aperturesetting' => { 184 => 0x7, 424 => 0x30, 425 => 0x29, 426 => 0x1 },
- 'aperturevalue' => { 93 => 0x2, 119 => 0x9202, 319 => 0x1002, 381 => 0x401, 502 => 'ApertureValue' },
- 'appinfo' => { 475 => 'AppInfo' },
- 'appinfoapplication' => { 475 => [\'AppInfo','AppInfoApplication'] },
- 'appinfoitemuri' => { 475 => [\'AppInfo','AppInfoItemURI'] },
- 'appinfoversion' => { 475 => [\'AppInfo','AppInfoVersion'] },
- 'applekeywords' => { 323 => 'AAPL:Keywords' },
- 'applephotosvariationidentifier' => { 391 => 'apple.photos.variation-identifier' },
- 'applestoreaccount' => { 389 => 'apID' },
- 'applestoreaccounttype' => { 389 => 'akID' },
- 'applestorecatalogid' => { 389 => 'cnID' },
- 'applestorecountry' => { 389 => 'sfID' },
+ 'apertureringuse' => { 356 => '1.4' },
+ 'aperturesetting' => { 184 => 0x7, 427 => 0x30, 428 => 0x29, 429 => 0x1 },
+ 'aperturevalue' => { 93 => 0x2, 119 => 0x9202, 322 => 0x1002, 384 => 0x401, 506 => 'ApertureValue' },
+ 'appinfo' => { 479 => 'AppInfo' },
+ 'appinfoapplication' => { 479 => [\'AppInfo','AppInfoApplication'] },
+ 'appinfoitemuri' => { 479 => [\'AppInfo','AppInfoItemURI'] },
+ 'appinfoversion' => { 479 => [\'AppInfo','AppInfoVersion'] },
+ 'applekeywords' => { 326 => 'AAPL:Keywords' },
+ 'applephotosvariationidentifier' => { 394 => 'apple.photos.variation-identifier' },
+ 'applestoreaccount' => { 392 => 'apID' },
+ 'applestoreaccounttype' => { 392 => 'akID' },
+ 'applestorecatalogid' => { 392 => 'cnID' },
+ 'applestorecountry' => { 392 => 'sfID' },
'applicationkeystring' => { 138 => 0x400 },
- 'applicationnotes' => { 119 => 0x2bc, 342 => 0x2bc },
+ 'applicationnotes' => { 119 => 0x2bc, 345 => 0x2bc },
'applicationrecordversion' => { 131 => 0x0 },
'applyshootingmeteringmode' => { 84 => 0x10e },
- 'approved' => { 504 => 'Approved' },
- 'approvedby' => { 504 => 'ApprovedBy' },
- 'approximatefnumber' => { 332 => 0x313, 339 => 0x3406 },
- 'approximatefocusdistance' => { 493 => 'ApproximateFocusDistance' },
- 'appversion' => { 508 => 'AppVersion' },
- 'aps-csizecapture' => { 456 => 0x114, 457 => [0x114,0x1eb,0x1ee,0x21a,0x21c] },
+ 'approved' => { 508 => 'Approved' },
+ 'approvedby' => { 508 => 'ApprovedBy' },
+ 'approximatefnumber' => { 335 => 0x313, 342 => 0x3406 },
+ 'approximatefocusdistance' => { 497 => 'ApproximateFocusDistance' },
+ 'appversion' => { 512 => 'AppVersion' },
+ 'aps-csizecapture' => { 459 => 0x114, 460 => [0x114,0x1eb,0x1ee,0x21a,0x21c] },
'aquahsl' => { 103 => 0x20914 },
'armidentifier' => { 132 => 0x78 },
'armversion' => { 132 => 0x7a },
- 'arranger' => { 389 => "\xa9arg", 397 => "\xa9arg" },
- 'arrangerkeywords' => { 397 => "\xa9ark" },
- 'artdirector' => { 389 => "\xa9ard" },
- 'artfilter' => { 314 => 0x529 },
- 'artfiltereffect' => { 314 => 0x52f },
- 'artist' => { 119 => 0x13b, 327 => 'Artist', 342 => 0x13b, 372 => 0x22e, 389 => "\xa9ART", 391 => 'artist', 397 => "\xa9ART", 521 => 'Artist', 525 => 'artist' },
+ 'arranger' => { 392 => "\xa9arg", 400 => "\xa9arg" },
+ 'arrangerkeywords' => { 400 => "\xa9ark" },
+ 'artdirector' => { 392 => "\xa9ard" },
+ 'artfilter' => { 317 => 0x529 },
+ 'artfiltereffect' => { 317 => 0x52f },
+ 'artist' => { 119 => 0x13b, 330 => 'Artist', 345 => 0x13b, 375 => 0x22e, 392 => "\xa9ART", 394 => 'artist', 400 => "\xa9ART", 525 => 'Artist', 529 => 'artist' },
+ 'artistid' => { 392 => 'atID' },
'artmode' => { 113 => 0x301b },
'artmodeparameters' => { 113 => 0x310b },
- 'artwork' => { 391 => 'artwork' },
- 'artworkcircadatecreated' => { 510 => [\'ArtworkOrObject','ArtworkOrObjectAOCircaDateCreated'] },
- 'artworkcontentdescription' => { 510 => [\'ArtworkOrObject','ArtworkOrObjectAOContentDescription'] },
- 'artworkcontributiondescription' => { 510 => [\'ArtworkOrObject','ArtworkOrObjectAOContributionDescription'] },
- 'artworkcopyrightnotice' => { 510 => [\'ArtworkOrObject','ArtworkOrObjectAOCopyrightNotice'] },
- 'artworkcopyrightownerid' => { 510 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentCopyrightOwnerId'] },
- 'artworkcopyrightownername' => { 510 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentCopyrightOwnerName'] },
- 'artworkcreator' => { 510 => [\'ArtworkOrObject','ArtworkOrObjectAOCreator'] },
- 'artworkcreatorid' => { 510 => [\'ArtworkOrObject','ArtworkOrObjectAOCreatorId'] },
- 'artworkdatecreated' => { 510 => [\'ArtworkOrObject','ArtworkOrObjectAODateCreated'] },
- 'artworklicensorid' => { 510 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentLicensorId'] },
- 'artworklicensorname' => { 510 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentLicensorName'] },
- 'artworkorobject' => { 510 => 'ArtworkOrObject' },
- 'artworkphysicaldescription' => { 510 => [\'ArtworkOrObject','ArtworkOrObjectAOPhysicalDescription'] },
- 'artworksource' => { 510 => [\'ArtworkOrObject','ArtworkOrObjectAOSource'] },
- 'artworksourceinventoryno' => { 510 => [\'ArtworkOrObject','ArtworkOrObjectAOSourceInvNo'] },
- 'artworksourceinvurl' => { 510 => [\'ArtworkOrObject','ArtworkOrObjectAOSourceInvURL'] },
- 'artworkstyleperiod' => { 510 => [\'ArtworkOrObject','ArtworkOrObjectAOStylePeriod'] },
- 'artworktitle' => { 510 => [\'ArtworkOrObject','ArtworkOrObjectAOTitle'] },
- 'aspectframe' => { 318 => 0x1113 },
- 'aspectratio' => { 5 => 0x0, 318 => 0x1112, 372 => 0x80, 424 => 0x55, 425 => 0x55, 426 => 0xa, 450 => [0x192c,0x1a88], 451 => 0x192c, 452 => 0x1958, 453 => 0x192c, 454 => 0x188c },
- 'assetid' => { 486 => 'AssetID' },
+ 'artwork' => { 394 => 'artwork' },
+ 'artworkcircadatecreated' => { 514 => [\'ArtworkOrObject','ArtworkOrObjectAOCircaDateCreated'] },
+ 'artworkcontentdescription' => { 514 => [\'ArtworkOrObject','ArtworkOrObjectAOContentDescription'] },
+ 'artworkcontributiondescription' => { 514 => [\'ArtworkOrObject','ArtworkOrObjectAOContributionDescription'] },
+ 'artworkcopyrightnotice' => { 514 => [\'ArtworkOrObject','ArtworkOrObjectAOCopyrightNotice'] },
+ 'artworkcopyrightownerid' => { 514 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentCopyrightOwnerId'] },
+ 'artworkcopyrightownername' => { 514 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentCopyrightOwnerName'] },
+ 'artworkcreator' => { 514 => [\'ArtworkOrObject','ArtworkOrObjectAOCreator'] },
+ 'artworkcreatorid' => { 514 => [\'ArtworkOrObject','ArtworkOrObjectAOCreatorId'] },
+ 'artworkdatecreated' => { 514 => [\'ArtworkOrObject','ArtworkOrObjectAODateCreated'] },
+ 'artworklicensorid' => { 514 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentLicensorId'] },
+ 'artworklicensorname' => { 514 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentLicensorName'] },
+ 'artworkorobject' => { 514 => 'ArtworkOrObject' },
+ 'artworkphysicaldescription' => { 514 => [\'ArtworkOrObject','ArtworkOrObjectAOPhysicalDescription'] },
+ 'artworksource' => { 514 => [\'ArtworkOrObject','ArtworkOrObjectAOSource'] },
+ 'artworksourceinventoryno' => { 514 => [\'ArtworkOrObject','ArtworkOrObjectAOSourceInvNo'] },
+ 'artworksourceinvurl' => { 514 => [\'ArtworkOrObject','ArtworkOrObjectAOSourceInvURL'] },
+ 'artworkstyleperiod' => { 514 => [\'ArtworkOrObject','ArtworkOrObjectAOStylePeriod'] },
+ 'artworktitle' => { 514 => [\'ArtworkOrObject','ArtworkOrObjectAOTitle'] },
+ 'aspectframe' => { 321 => 0x1113 },
+ 'aspectratio' => { 5 => 0x0, 321 => 0x1112, 375 => 0x80, 427 => 0x55, 428 => 0x55, 429 => 0xa, 453 => [0x192c,0x1a88], 454 => 0x192c, 455 => 0x1958, 456 => 0x192c, 457 => 0x188c },
+ 'assetid' => { 490 => 'AssetID' },
'asshoticcprofile' => { 119 => 0xc68f },
'asshotneutral' => { 119 => 0xc628 },
'asshotpreprofilematrix' => { 119 => 0xc690 },
'asshotprofilename' => { 119 => 0xc6f6 },
'asshotwhitexy' => { 119 => 0xc629 },
- 'assignbktbutton' => { 296 => '4.2', 297 => '16.1', 299 => '16.1', 300 => '16.1', 309 => '16.1', 310 => '16.1' },
+ 'assignbktbutton' => { 297 => '4.2', 298 => '16.1', 300 => '16.1', 301 => '16.1', 310 => '16.1', 311 => '16.1' },
'assignfuncbutton' => { 84 => 0x70b },
- 'assignmb-d17af-onbutton' => { 300 => '79.1' },
- 'assignmb-d17funcbutton' => { 300 => '67.1' },
- 'assignmb-d17funcbuttonplusdials' => { 300 => '68.1' },
- 'assignmb-d18af-onbutton' => { 310 => '79.1' },
- 'assignmb-d18funcbutton' => { 310 => '67.1' },
- 'assignmb-d18funcbuttonplusdials' => { 310 => '68.1' },
- 'assignmoviefunc1buttonplusdials' => { 299 => '75.1', 300 => '75.1', 310 => '75.1' },
- 'assignmoviefunc2button' => { 299 => '82.1', 300 => '82.1', 310 => '82.1' },
- 'assignmoviepreviewbuttonplusdials' => { 299 => '75.2', 300 => '75.2', 310 => '75.2' },
- 'assignmovierecordbutton' => { 297 => '43.2', 309 => '45.1', 312 => 0x9b },
- 'assignmovierecordbuttonplusdials' => { 299 => '45.1', 300 => '45.1', 310 => '45.1' },
- 'assignmoviesubselector' => { 299 => '74.1', 300 => '74.1', 310 => '74.1' },
- 'assignmoviesubselectorplusdials' => { 299 => '76.1', 300 => '76.1', 310 => '76.1' },
- 'assignremotefnbutton' => { 297 => '54.1', 309 => '51.1' },
+ 'assignmb-d17af-onbutton' => { 301 => '79.1' },
+ 'assignmb-d17funcbutton' => { 301 => '67.1' },
+ 'assignmb-d17funcbuttonplusdials' => { 301 => '68.1' },
+ 'assignmb-d18af-onbutton' => { 311 => '79.1' },
+ 'assignmb-d18funcbutton' => { 311 => '67.1' },
+ 'assignmb-d18funcbuttonplusdials' => { 311 => '68.1' },
+ 'assignmoviefunc1buttonplusdials' => { 300 => '75.1', 301 => '75.1', 311 => '75.1' },
+ 'assignmoviefunc2button' => { 300 => '82.1', 301 => '82.1', 311 => '82.1' },
+ 'assignmoviepreviewbuttonplusdials' => { 300 => '75.2', 301 => '75.2', 311 => '75.2' },
+ 'assignmovierecordbutton' => { 298 => '43.2', 310 => '45.1', 313 => 0x9b, 314 => 0x9b, 315 => 0x9b },
+ 'assignmovierecordbuttonplusdials' => { 300 => '45.1', 301 => '45.1', 311 => '45.1' },
+ 'assignmoviesubselector' => { 300 => '74.1', 301 => '74.1', 311 => '74.1' },
+ 'assignmoviesubselectorplusdials' => { 300 => '76.1', 301 => '76.1', 311 => '76.1' },
+ 'assignremotefnbutton' => { 298 => '54.1', 310 => '51.1' },
'assistbuttonfunction' => { 82 => 0xd },
'atcaptureusercrop' => { 138 => 0x943 },
- 'attributionname' => { 494 => 'attributionName' },
- 'attributionurl' => { 494 => 'attributionURL' },
- 'audio' => { 337 => 0x20 },
- 'audiobitrate' => { 67 => 0x6c, 510 => 'audioBitRate' },
- 'audiobitratemode' => { 510 => 'audioBitRateMode' },
- 'audiobitspersample' => { 510 => 'audioBitsPerSample' },
- 'audiobutton' => { 312 => 0x17b },
- 'audiobuttonplaybackmode' => { 312 => 0x1b9 },
- 'audiochannelcount' => { 510 => 'audioChannelCount' },
+ 'attributionname' => { 498 => 'attributionName' },
+ 'attributionurl' => { 498 => 'attributionURL' },
+ 'audio' => { 340 => 0x20 },
+ 'audiobitrate' => { 67 => 0x6c, 514 => 'audioBitRate' },
+ 'audiobitratemode' => { 514 => 'audioBitRateMode' },
+ 'audiobitspersample' => { 514 => 'audioBitsPerSample' },
+ 'audiobutton' => { 314 => 0x17b, 315 => 0x193 },
+ 'audiobuttonplaybackmode' => { 314 => 0x1b9, 315 => 0x1d1 },
+ 'audiochannelcount' => { 514 => 'audioChannelCount' },
'audiochannels' => { 67 => 0x70 },
- 'audiochanneltype' => { 525 => 'audioChannelType' },
+ 'audiochanneltype' => { 529 => 'audioChannelType' },
'audiocompression' => { 84 => 0x816, 155 => 'Compression' },
- 'audiocompressor' => { 525 => 'audioCompressor' },
- 'audiodata' => { 478 => 'Data' },
+ 'audiocompressor' => { 529 => 'audioCompressor' },
+ 'audiodata' => { 482 => 'Data' },
'audioduration' => { 131 => 0x99 },
- 'audiogain' => { 391 => 'player.movie.audio.gain' },
- 'audiomimetype' => { 478 => 'Mime' },
- 'audiomoddate' => { 525 => 'audioModDate' },
+ 'audiogain' => { 394 => 'player.movie.audio.gain' },
+ 'audiomimetype' => { 482 => 'Mime' },
+ 'audiomoddate' => { 529 => 'audioModDate' },
'audiooutcue' => { 131 => 0x9a },
- 'audiosamplerate' => { 67 => 0x6e, 525 => 'audioSampleRate' },
- 'audiosampletype' => { 525 => 'audioSampleType' },
+ 'audiosamplerate' => { 67 => 0x6e, 529 => 'audioSampleRate' },
+ 'audiosampletype' => { 529 => 'audioSampleType' },
'audiosamplingrate' => { 131 => 0x97 },
'audiosamplingresolution' => { 131 => 0x98 },
'audiotype' => { 131 => 0x96 },
- 'author' => { 157 => 'Author', 323 => 'Author', 327 => 'Author', 388 => 'Author', 389 => ['auth',"\xa9aut"], 391 => 'author', 397 => 'auth', 491 => 'author', 512 => 'Author', 523 => 'Author' },
- 'authorsposition' => { 513 => 'AuthorsPosition' },
+ 'author' => { 157 => 'Author', 326 => 'Author', 330 => 'Author', 391 => 'Author', 392 => ['auth',"\xa9aut"], 394 => 'author', 400 => 'auth', 495 => 'author', 516 => 'Author', 527 => 'Author' },
+ 'authorsposition' => { 517 => 'AuthorsPosition' },
'authorurl' => { 179 => 'WM/AuthorURL' },
'autoafpointcolortracking' => { 84 => 0x51c },
'autoafpointseleositraf' => { 2 => 0xa },
- 'autoaperture' => { 363 => '0.1' },
- 'autobracket' => { 414 => 0x19 },
- 'autobracketing' => { 127 => 0x1100, 372 => 0x18, 404 => 0x1007 },
- 'autobracketingmode' => { 308 => '12.3' },
- 'autobracketingset' => { 308 => '12.1' },
- 'autobracketmodem' => { 296 => '21.2', 297 => '13.3', 299 => '13.2', 300 => '13.2', 305 => '26.2', 309 => '13.3', 310 => '13.2', 312 => 0x5f },
- 'autobracketorder' => { 184 => 0x43, 296 => '21.3', 297 => '13.2', 299 => '13.1', 300 => '13.1', 305 => '26.3', 306 => '12.2', 307 => '2.2', 308 => '12.2', 309 => '13.2', 310 => '13.1', 311 => '13.2', 312 => 0x61 },
- 'autobracketset' => { 296 => '21.1', 297 => '13.1', 301 => '11.1', 302 => '12.1', 303 => '12.1', 305 => '26.1', 306 => '12.1', 307 => '2.1', 309 => '13.1', 311 => '13.1' },
- 'autobrightness' => { 496 => 'AutoBrightness', 498 => 'AutoBrightness' },
+ 'autoaperture' => { 366 => '0.1' },
+ 'autobracket' => { 417 => 0x19 },
+ 'autobracketing' => { 127 => 0x1100, 375 => 0x18, 407 => 0x1007 },
+ 'autobracketingmode' => { 309 => '12.3' },
+ 'autobracketingset' => { 309 => '12.1' },
+ 'autobracketmodem' => { 297 => '21.2', 298 => '13.3', 300 => '13.2', 301 => '13.2', 306 => '26.2', 310 => '13.3', 311 => '13.2', 313 => 0x5f, 314 => 0x5f, 315 => 0x5f },
+ 'autobracketorder' => { 184 => 0x43, 297 => '21.3', 298 => '13.2', 300 => '13.1', 301 => '13.1', 306 => '26.3', 307 => '12.2', 308 => '2.2', 309 => '12.2', 310 => '13.2', 311 => '13.1', 312 => '13.2', 313 => 0x61, 314 => 0x61, 315 => 0x61 },
+ 'autobracketset' => { 297 => '21.1', 298 => '13.1', 302 => '11.1', 303 => '12.1', 304 => '12.1', 306 => '26.1', 307 => '12.1', 308 => '2.1', 310 => '13.1', 312 => '13.1' },
+ 'autobrightness' => { 500 => 'AutoBrightness', 502 => 'AutoBrightness' },
'autocapturecriteria' => { 196 => 0x1 },
'autocapturecriteriamotiondirection' => { 196 => 0x5f },
'autocapturecriteriamotionsize' => { 196 => 0x64 },
'autocapturecriteriamotionspeed' => { 196 => 0x63 },
'autocapturecriteriasubjectsize' => { 196 => 0x69 },
'autocapturecriteriasubjecttype' => { 196 => 0x6a },
+ 'autocapturedframe' => { 196 => 0x0 },
'autocapturedistancefar' => { 196 => 0x4a },
'autocapturedistancenear' => { 196 => 0x4e },
- 'autocapturepreset' => { 241 => 0x746 },
+ 'autocapturepreset' => { 242 => 0x746 },
'autocapturerecordingtime' => { 196 => 0x37 },
'autocapturewaittime' => { 196 => 0x38 },
- 'autocontrast' => { 496 => 'AutoContrast', 498 => 'AutoContrast' },
+ 'autocontrast' => { 500 => 'AutoContrast', 502 => 'AutoContrast' },
'autodistortioncontrol' => { 209 => 0x4, 238 => 0x143 },
'autodynamicrange' => { 127 => 0x140b },
- 'autoexposure' => { 496 => 'AutoExposure', 498 => 'AutoExposure' },
+ 'autoexposure' => { 500 => 'AutoExposure', 502 => 'AutoExposure' },
'autoexposurebracketing' => { 77 => 0x10 },
- 'autoflashisosensitivity' => { 299 => '38.5', 300 => '38.5', 310 => '38.5', 312 => 0x5b },
- 'autofocus' => { 317 => 0x209 },
- 'autofocusmoderestrictions' => { 312 => 0x107 },
- 'autofp' => { 307 => '7.3', 311 => '31.4' },
- 'autoiso' => { 77 => 0x1, 113 => 0x3008, 239 => 0x142, 240 => 0x156, 241 => 0x156, 298 => '1.1', 307 => '1.1' },
- 'autoisomax' => { 298 => '1.2', 307 => '1.2' },
- 'autoisominshutterspeed' => { 298 => '1.3', 307 => '1.3' },
- 'autolateralca' => { 496 => 'AutoLateralCA', 498 => 'AutoLateralCA' },
+ 'autoflashisosensitivity' => { 300 => '38.5', 301 => '38.5', 311 => '38.5', 313 => 0x5b, 314 => 0x5b, 315 => 0x5b },
+ 'autofocus' => { 320 => 0x209 },
+ 'autofocusmoderestrictions' => { 313 => 0x107, 314 => 0x107, 315 => 0x11d },
+ 'autofp' => { 308 => '7.3', 312 => '31.4' },
+ 'autoiso' => { 77 => 0x1, 113 => 0x3008, 239 => 0x152, 240 => 0x142, 241 => 0x156, 242 => 0x156, 299 => '1.1', 308 => '1.1' },
+ 'autoisomax' => { 299 => '1.2', 308 => '1.2' },
+ 'autoisominshutterspeed' => { 299 => '1.3', 308 => '1.3' },
+ 'autolateralca' => { 500 => 'AutoLateralCA', 502 => 'AutoLateralCA' },
'autolightingoptimizer' => { 16 => 0xbe, 17 => 0xbf, 20 => 0xbf, 62 => 0x2, 84 => 0x204, 103 => 0x20500, 109 => 0x6f },
'autolightingoptimizeron' => { 103 => '0x20500.0', 109 => 0x6e },
- 'autoportraitframed' => { 437 => 0x2016 },
- 'autoredeye' => { 289 => 0xfe28a44f },
+ 'autoportraitframed' => { 440 => 0x2016 },
+ 'autoredeye' => { 290 => 0xfe28a44f },
'autorotate' => { 77 => 0x1b },
- 'autoshadows' => { 496 => 'AutoShadows', 498 => 'AutoShadows' },
- 'autotone' => { 496 => 'AutoTone', 498 => 'AutoTone' },
- 'autotonedigest' => { 496 => 'AutoToneDigest', 498 => 'AutoToneDigest' },
- 'autotonedigestnosat' => { 496 => 'AutoToneDigestNoSat', 498 => 'AutoToneDigestNoSat' },
- 'autowhiteversion' => { 496 => 'AutoWhiteVersion', 498 => 'AutoWhiteVersion' },
+ 'autoshadows' => { 500 => 'AutoShadows', 502 => 'AutoShadows' },
+ 'autotone' => { 500 => 'AutoTone', 502 => 'AutoTone' },
+ 'autotonedigest' => { 500 => 'AutoToneDigest', 502 => 'AutoToneDigest' },
+ 'autotonedigestnosat' => { 500 => 'AutoToneDigestNoSat', 502 => 'AutoToneDigestNoSat' },
+ 'autowhiteversion' => { 500 => 'AutoWhiteVersion', 502 => 'AutoWhiteVersion' },
'auxiliarylens' => { 234 => 0x82 },
- 'avaperturesetting' => { 353 => 0x13 },
+ 'avaperturesetting' => { 356 => 0x13 },
'averageblacklevel' => { 45 => 0xe7, 47 => 0xfb, 48 => 0x114, 49 => 0x146 },
'averagelv' => { 187 => 0x38 },
'avsettingwithoutlens' => { 84 => 0x707 },
'azimuth' => { 165 => 'Azimuth' },
- 'babyage' => { 337 => [0x8010,0x33] },
- 'babyname' => { 337 => 0x66 },
- 'backgroundalpha' => { 520 => 'bgalpha' },
- 'balance' => { 391 => 'player.movie.audio.balance' },
- 'baseexposurecompensation' => { 353 => 0x15 },
- 'baseiso' => { 77 => 0x2, 97 => 0x101c, 138 => 0x903, 339 => 0x312a, 468 => 0x6 },
+ 'babyage' => { 340 => [0x8010,0x33] },
+ 'babyname' => { 340 => 0x66 },
+ 'backgroundalpha' => { 524 => 'bgalpha' },
+ 'balance' => { 394 => 'player.movie.audio.balance' },
+ 'baseexposurecompensation' => { 356 => 0x15 },
+ 'baseiso' => { 77 => 0x2, 97 => 0x101c, 138 => 0x903, 342 => 0x312a, 472 => 0x6 },
'baseisodaylight' => { 138 => 0x910 },
'baseisoflash' => { 138 => 0x913 },
'baseisofluorescent' => { 138 => 0x912 },
@@ -1132,135 +1138,135 @@ my %tagLookup = (
'baselineexposureoffset' => { 119 => 0xc7a5 },
'baselinenoise' => { 119 => 0xc62b },
'baselinesharpness' => { 119 => 0xc62c },
- 'baserenditionishdr' => { 507 => 'BaseRenditionIsHDR' },
- 'baseurl' => { 523 => 'BaseURL' },
- 'bass' => { 391 => 'player.movie.audio.bass' },
- 'batterylevel' => { 337 => 0x38, 424 => 0x51, 428 => 0xc, 429 => 0x4, 430 => 0x4, 469 => 0x7 },
- 'batterylevelgrip1' => { 469 => 0x6 },
- 'batterylevelgrip2' => { 469 => 0x8 },
- 'batteryorder' => { 296 => '12.5', 305 => '13.2', 306 => '2.1', 309 => '3.1' },
- 'batterystate' => { 184 => 0x60, 424 => 0x50, 430 => 0x14 },
- 'batterytemperature' => { 428 => 0x1, 430 => 0x2, 469 => 0x5 },
- 'batterytype' => { 64 => 0x38, 400 => 0x66 },
- 'batteryunknown' => { 428 => 0x2, 430 => 0x0 },
- 'batteryvoltage' => { 138 => 0x408, 398 => 0x2a, 399 => 0x49, 400 => 0x62, 428 => 0x8 },
- 'batteryvoltage1' => { 430 => 0x6 },
- 'batteryvoltage2' => { 430 => 0x8 },
- 'batteryvoltageavg' => { 400 => 0x64 },
+ 'baserenditionishdr' => { 511 => 'BaseRenditionIsHDR' },
+ 'baseurl' => { 527 => 'BaseURL' },
+ 'bass' => { 394 => 'player.movie.audio.bass' },
+ 'batterylevel' => { 340 => 0x38, 427 => 0x51, 431 => 0xc, 432 => 0x4, 433 => 0x4, 473 => [0x5,0x7] },
+ 'batterylevelgrip1' => { 473 => 0x6 },
+ 'batterylevelgrip2' => { 473 => 0x8 },
+ 'batteryorder' => { 297 => '12.5', 306 => '13.2', 307 => '2.1', 310 => '3.1' },
+ 'batterystate' => { 184 => 0x60, 427 => 0x50, 433 => 0x14 },
+ 'batterytemperature' => { 431 => 0x1, 433 => 0x2, 473 => 0x5 },
+ 'batterytype' => { 64 => 0x38, 403 => 0x66 },
+ 'batteryunknown' => { 431 => 0x2, 433 => 0x0 },
+ 'batteryvoltage' => { 138 => 0x408, 401 => 0x2a, 402 => 0x49, 403 => 0x62, 431 => 0x8 },
+ 'batteryvoltage1' => { 433 => 0x6 },
+ 'batteryvoltage2' => { 433 => 0x8 },
+ 'batteryvoltageavg' => { 403 => 0x64 },
'bayergreensplit' => { 119 => 0xc62d },
'bayerpattern' => { 137 => 0xf902, 188 => 0x17 },
- 'beatsperminute' => { 389 => 'tmpo' },
- 'beatspliceparams' => { 525 => 'beatSpliceParams' },
- 'beatspliceparamsriseindecibel' => { 525 => [\'beatSpliceParams','beatSpliceParamsRiseInDecibel'] },
- 'beatspliceparamsriseintimeduration' => { 525 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDuration'] },
- 'beatspliceparamsriseintimedurationscale' => { 525 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDurationScale'] },
- 'beatspliceparamsriseintimedurationvalue' => { 525 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDurationValue'] },
- 'beatspliceparamsusefilebeatsmarker' => { 525 => [\'beatSpliceParams','beatSpliceParamsUseFileBeatsMarker'] },
- 'beep' => { 296 => '13.1', 297 => '5.4', 298 => '0.1', 301 => '2.1', 302 => '3.1', 303 => '3.1', 305 => '10.1', 307 => '0.1', 309 => '5.5', 311 => '4.1' },
- 'beeppitch' => { 306 => '3.1' },
- 'beepvolume' => { 306 => '4.5' },
+ 'beatsperminute' => { 392 => 'tmpo' },
+ 'beatspliceparams' => { 529 => 'beatSpliceParams' },
+ 'beatspliceparamsriseindecibel' => { 529 => [\'beatSpliceParams','beatSpliceParamsRiseInDecibel'] },
+ 'beatspliceparamsriseintimeduration' => { 529 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDuration'] },
+ 'beatspliceparamsriseintimedurationscale' => { 529 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDurationScale'] },
+ 'beatspliceparamsriseintimedurationvalue' => { 529 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDurationValue'] },
+ 'beatspliceparamsusefilebeatsmarker' => { 529 => [\'beatSpliceParams','beatSpliceParamsUseFileBeatsMarker'] },
+ 'beep' => { 297 => '13.1', 298 => '5.4', 299 => '0.1', 302 => '2.1', 303 => '3.1', 304 => '3.1', 306 => '10.1', 308 => '0.1', 310 => '5.5', 312 => '4.1' },
+ 'beeppitch' => { 307 => '3.1' },
+ 'beepvolume' => { 307 => '4.5' },
'bestqualityscale' => { 119 => 0xc65c },
'bestshotmode' => { 113 => 0x3007 },
- 'bitdepth' => { 162 => 'BitDepth', 188 => 0x11, 256 => 0x41 },
+ 'bitdepth' => { 162 => 'BitDepth', 188 => 0x11, 257 => 0x41 },
'bitspercomponent' => { 133 => 0x87 },
- 'bitspersample' => { 119 => 0x102, 342 => 0xa, 521 => 'BitsPerSample' },
+ 'bitspersample' => { 119 => 0x102, 345 => 0xa, 525 => 'BitsPerSample' },
'blackacquirerows' => { 138 => 0x18ba },
- 'blacklevel' => { 119 => [0x7310,0xc61a], 207 => 0x20, 234 => 0x3d, 319 => [0x401,0x1012], 381 => 0x21d, 444 => [0x7300,0x7310] },
- 'blacklevel2' => { 318 => 0x600, 322 => 0x600 },
- 'blacklevelblue' => { 342 => 0x1e },
+ 'blacklevel' => { 119 => [0x7310,0xc61a], 207 => 0x20, 234 => 0x3d, 322 => [0x401,0x1012], 384 => 0x21d, 447 => [0x7300,0x7310] },
+ 'blacklevel2' => { 321 => 0x600, 325 => 0x600 },
+ 'blacklevelblue' => { 345 => 0x1e },
'blacklevelbottom' => { 138 => 0x3f0 },
- 'blackleveldata' => { 381 => 0x223 },
+ 'blackleveldata' => { 384 => 0x223 },
'blackleveldeltah' => { 119 => 0xc61b },
'blackleveldeltav' => { 119 => 0xc61c },
- 'blacklevelgreen' => { 342 => 0x1d },
- 'blacklevelred' => { 342 => 0x1c },
+ 'blacklevelgreen' => { 345 => 0x1d },
+ 'blacklevelred' => { 345 => 0x1c },
'blacklevelrepeatdim' => { 119 => 0xc619 },
'blacklevelrough' => { 138 => 0x40e },
'blacklevelroughafter' => { 138 => 0x416 },
'blacklevels' => { 35 => 0x1d },
'blackleveltop' => { 138 => 0x3ef },
- 'blackpoint' => { 372 => 0x200 },
- 'blacks2012' => { 496 => 'Blacks2012', 498 => 'Blacks2012' },
- 'blacksadj' => { 472 => 0x9018 },
- 'bleachbypasstoning' => { 372 => 0x7f },
- 'blockshotafresponse' => { 299 => '1.5', 300 => '1.5', 310 => '1.5', 312 => 0x7 },
- 'blogtitle' => { 515 => 'blogTitle' },
- 'blogurl' => { 515 => 'blogURL' },
- 'bluebalance' => { 319 => 0x1018, 342 => 0x12, 372 => 0x1b },
+ 'blackpoint' => { 375 => 0x200 },
+ 'blacks2012' => { 500 => 'Blacks2012', 502 => 'Blacks2012' },
+ 'blacksadj' => { 476 => 0x9018 },
+ 'bleachbypasstoning' => { 375 => 0x7f },
+ 'blockshotafresponse' => { 300 => '1.5', 301 => '1.5', 311 => '1.5', 313 => 0x7, 314 => 0x7, 315 => 0x7 },
+ 'blogtitle' => { 519 => 'blogTitle' },
+ 'blogurl' => { 519 => 'blogURL' },
+ 'bluebalance' => { 322 => 0x1018, 345 => 0x12, 375 => 0x1b },
'bluecurvelimits' => { 108 => 0x1fe },
'bluecurvepoints' => { 107 => 0x79, 108 => 0x1d4 },
'bluehsl' => { 103 => 0x20915 },
- 'bluehue' => { 496 => 'BlueHue', 498 => 'BlueHue' },
- 'bluesaturation' => { 496 => 'BlueSaturation', 498 => 'BlueSaturation' },
- 'bluratinfinity' => { 482 => 'BlurAtInfinity' },
- 'blurcontrol' => { 372 => 0x82 },
+ 'bluehue' => { 500 => 'BlueHue', 502 => 'BlueHue' },
+ 'bluesaturation' => { 500 => 'BlueSaturation', 502 => 'BlueSaturation' },
+ 'bluratinfinity' => { 486 => 'BlurAtInfinity' },
+ 'blurcontrol' => { 375 => 0x82 },
'blurwarning' => { 127 => 0x1300 },
- 'bodybatteryadload' => { 351 => 0x3 },
- 'bodybatteryadnoload' => { 351 => 0x2 },
- 'bodybatterystate' => { 351 => '1.1' },
- 'bodybatteryvoltage1' => { 351 => 0x2 },
- 'bodybatteryvoltage2' => { 351 => 0x4 },
- 'bodybatteryvoltage3' => { 351 => 0x6 },
- 'bodybatteryvoltage4' => { 351 => 0x8 },
- 'bodyfirmware' => { 405 => 0x0 },
- 'bodyfirmwareversion' => { 315 => 0x104, 316 => 0x100, 319 => 0x104 },
- 'bodyserialnumber' => { 405 => 0x10 },
- 'bookedition' => { 515 => 'bookEdition' },
- 'bootloaderversion' => { 399 => 0x26 },
- 'bracketbutton' => { 241 => 0x80c },
- 'bracketbuttonplaybackmode' => { 241 => 0x816 },
- 'bracketincrement' => { 239 => 0x21a, 240 => 0x22e, 241 => 0x22e },
+ 'bodybatteryadload' => { 354 => 0x3 },
+ 'bodybatteryadnoload' => { 354 => 0x2 },
+ 'bodybatterystate' => { 354 => '1.1' },
+ 'bodybatteryvoltage1' => { 354 => 0x2 },
+ 'bodybatteryvoltage2' => { 354 => 0x4 },
+ 'bodybatteryvoltage3' => { 354 => 0x6 },
+ 'bodybatteryvoltage4' => { 354 => 0x8 },
+ 'bodyfirmware' => { 408 => 0x0 },
+ 'bodyfirmwareversion' => { 318 => 0x104, 319 => 0x100, 322 => 0x104 },
+ 'bodyserialnumber' => { 408 => 0x10 },
+ 'bookedition' => { 519 => 'bookEdition' },
+ 'bootloaderversion' => { 402 => 0x26 },
+ 'bracketbutton' => { 242 => 0x80c },
+ 'bracketbuttonplaybackmode' => { 242 => 0x816 },
+ 'bracketincrement' => { 239 => 0x22e, 240 => 0x21a, 241 => 0x22e, 242 => 0x22e },
'bracketmode' => { 57 => 0x3 },
- 'bracketprogram' => { 239 => 0x218, 240 => 0x22c, 241 => 0x22c },
+ 'bracketprogram' => { 239 => 0x22c, 240 => 0x218, 241 => 0x22c, 242 => 0x22c },
'bracketsequence' => { 113 => 0x301d },
- 'bracketset' => { 239 => 0x216, 240 => 0x22a, 241 => 0x22a },
- 'bracketsettings' => { 337 => 0x45 },
- 'bracketshotnumber' => { 57 => 0x5, 353 => 0x9, 435 => 0x2b },
- 'bracketshotnumber2' => { 435 => 0x2d },
+ 'bracketset' => { 239 => 0x22a, 240 => 0x216, 241 => 0x22a, 242 => 0x22a },
+ 'bracketsettings' => { 340 => 0x45 },
+ 'bracketshotnumber' => { 57 => 0x5, 356 => 0x9, 438 => 0x2b },
+ 'bracketshotnumber2' => { 438 => 0x2d },
'bracketstep' => { 181 => 0xe },
'bracketvalue' => { 57 => 0x4 },
- 'brightness' => { 119 => 0xfe53, 156 => 'Brightness', 176 => 'Brightness', 181 => 0x2c, 248 => 0x34, 249 => 0x39, 250 => 0x41, 391 => 'player.movie.visual.brightness', 398 => 0x25, 400 => 0x54, 424 => 0x22, 437 => 0x2007, 496 => 'Brightness', 498 => 'Brightness' },
- 'brightnessadj' => { 108 => 0x114, 282 => 0x0, 292 => 0x2d, 472 => 0x8018 },
- 'brightnessvalue' => { 119 => 0x9203, 187 => [0x691,0x49c3], 319 => 0x1003, 442 => 0x1e, 446 => 0x1140, 447 => 0x1140, 448 => 0x111c, 449 => 0x1198, 450 => 0x1174, 451 => 0x102c, 452 => 0x224, 453 => 0x224, 454 => 0x219, 502 => 'BrightnessValue' },
+ 'brightness' => { 119 => 0xfe53, 156 => 'Brightness', 176 => 'Brightness', 181 => 0x2c, 249 => 0x34, 250 => 0x39, 251 => 0x41, 394 => 'player.movie.visual.brightness', 401 => 0x25, 403 => 0x54, 427 => 0x22, 440 => 0x2007, 500 => 'Brightness', 502 => 'Brightness' },
+ 'brightnessadj' => { 108 => 0x114, 283 => 0x0, 293 => 0x2d, 476 => 0x8018 },
+ 'brightnessvalue' => { 119 => 0x9203, 187 => [0x691,0x49c3], 322 => 0x1003, 445 => 0x1e, 449 => 0x1140, 450 => 0x1140, 451 => 0x111c, 452 => 0x1198, 453 => 0x1174, 454 => 0x102c, 455 => 0x224, 456 => 0x224, 457 => 0x219, 506 => 'BrightnessValue' },
'buildnumber' => { 191 => 0x5500 },
'bulbduration' => { 77 => 0x18 },
'burstcount' => { 138 => 0x40d },
'burstgroupid' => { 236 => 0x4 },
- 'burstid' => { 479 => 'BurstID' },
- 'burstmode' => { 140 => 0xa, 337 => 0x2a },
+ 'burstid' => { 483 => 'BurstID' },
+ 'burstmode' => { 140 => 0xa, 340 => 0x2a },
'burstmode2' => { 140 => 0x18 },
- 'burstprimary' => { 479 => 'BurstPrimary' },
- 'burstshot' => { 414 => 0x34 },
- 'burstspeed' => { 337 => 0x77 },
+ 'burstprimary' => { 483 => 'BurstPrimary' },
+ 'burstshot' => { 417 => 0x34 },
+ 'burstspeed' => { 340 => 0x77 },
'burstuuid' => { 1 => 0xb },
'buttonfunctioncontroloff' => { 84 => 0x70a },
'bwadjustment' => { 127 => 0x1049 },
'bwfilter' => { 181 => 0x2a, 189 => 0x39 },
'bwmagentagreen' => { 127 => 0x104b },
- 'bwmode' => { 319 => 0x203 },
+ 'bwmode' => { 322 => 0x203 },
'by-line' => { 131 => 0x50 },
'by-linetitle' => { 131 => 0x55 },
- 'bytecount' => { 515 => 'byteCount' },
+ 'bytecount' => { 519 => 'byteCount' },
'c14configuration' => { 138 => 0x1964 },
'cacheversion' => { 119 => 0xc7aa },
'calibratedfocallength' => { 116 => 'CalibratedFocalLength' },
'calibratedopticalcenterx' => { 116 => 'CalibratedOpticalCenterX' },
'calibratedopticalcentery' => { 116 => 'CalibratedOpticalCenterY' },
- 'calibration' => { 414 => [0x24,0x30] },
+ 'calibration' => { 417 => [0x24,0x30] },
'calibrationhistory' => { 138 => 0x9c9 },
'calibrationilluminant1' => { 119 => 0xc65a },
'calibrationilluminant2' => { 119 => 0xc65b },
'calibrationilluminant3' => { 119 => 0xcd31 },
'calibrationversion' => { 138 => 0x9c6 },
- 'callforimage' => { 486 => 'CallForImage' },
- 'camera' => { 475 => [\'Cameras','CamerasCamera'] },
- 'cameraangle' => { 397 => 'angl', 525 => 'cameraAngle' },
- 'cameraappinfo' => { 475 => [\'Cameras','CamerasCameraAppInfo'] },
- 'cameraappinfoapplication' => { 475 => [\'Cameras','CamerasCameraAppInfoApplication'] },
- 'cameraappinfoitemuri' => { 475 => [\'Cameras','CamerasCameraAppInfoItemURI'] },
- 'cameraappinfoversion' => { 475 => [\'Cameras','CamerasCameraAppInfoVersion'] },
- 'cameraburstid' => { 480 => 'CameraBurstID' },
- 'cameracalibration' => { 414 => 0x11f },
+ 'callforimage' => { 490 => 'CallForImage' },
+ 'camera' => { 479 => [\'Cameras','CamerasCamera'] },
+ 'cameraangle' => { 400 => 'angl', 529 => 'cameraAngle' },
+ 'cameraappinfo' => { 479 => [\'Cameras','CamerasCameraAppInfo'] },
+ 'cameraappinfoapplication' => { 479 => [\'Cameras','CamerasCameraAppInfoApplication'] },
+ 'cameraappinfoitemuri' => { 479 => [\'Cameras','CamerasCameraAppInfoItemURI'] },
+ 'cameraappinfoversion' => { 479 => [\'Cameras','CamerasCameraAppInfoVersion'] },
+ 'cameraburstid' => { 484 => 'CameraBurstID' },
+ 'cameracalibration' => { 417 => 0x11f },
'cameracalibration1' => { 119 => 0xc623 },
'cameracalibration2' => { 119 => 0xc624 },
'cameracalibration3' => { 119 => 0xcd32 },
@@ -1280,95 +1286,95 @@ my %tagLookup = (
'cameracolorcalibration13' => { 36 => 0x30, 37 => 0x3c },
'cameracolorcalibration14' => { 36 => 0x34, 37 => 0x41 },
'cameracolorcalibration15' => { 36 => 0x38, 37 => 0x46 },
- 'cameradepthmap' => { 475 => [\'Cameras','CamerasCameraDepthMap'] },
- 'cameradepthmapconfidenceuri' => { 475 => [\'Cameras','CamerasCameraDepthMapConfidenceURI'] },
- 'cameradepthmapdepthuri' => { 475 => [\'Cameras','CamerasCameraDepthMapDepthURI'] },
- 'cameradepthmapfar' => { 475 => [\'Cameras','CamerasCameraDepthMapFar'] },
- 'cameradepthmapfocaltable' => { 475 => [\'Cameras','CamerasCameraDepthMapFocalTable'] },
- 'cameradepthmapfocaltableentrycount' => { 475 => [\'Cameras','CamerasCameraDepthMapFocalTableEntryCount'] },
- 'cameradepthmapformat' => { 475 => [\'Cameras','CamerasCameraDepthMapFormat'] },
- 'cameradepthmapitemsemantic' => { 475 => [\'Cameras','CamerasCameraDepthMapItemSemantic'] },
- 'cameradepthmapmeasuretype' => { 475 => [\'Cameras','CamerasCameraDepthMapMeasureType'] },
- 'cameradepthmapnear' => { 475 => [\'Cameras','CamerasCameraDepthMapNear'] },
- 'cameradepthmapsoftware' => { 475 => [\'Cameras','CamerasCameraDepthMapSoftware'] },
- 'cameradepthmapunits' => { 475 => [\'Cameras','CamerasCameraDepthMapUnits'] },
- 'cameradirection' => { 391 => 'direction.facing' },
- 'camerae-mountversion' => { 471 => 0xb },
- 'cameraelevationangle' => { 119 => 0x9405, 503 => 'CameraElevationAngle' },
- 'camerafilename' => { 486 => 'CameraFilename' },
+ 'cameradepthmap' => { 479 => [\'Cameras','CamerasCameraDepthMap'] },
+ 'cameradepthmapconfidenceuri' => { 479 => [\'Cameras','CamerasCameraDepthMapConfidenceURI'] },
+ 'cameradepthmapdepthuri' => { 479 => [\'Cameras','CamerasCameraDepthMapDepthURI'] },
+ 'cameradepthmapfar' => { 479 => [\'Cameras','CamerasCameraDepthMapFar'] },
+ 'cameradepthmapfocaltable' => { 479 => [\'Cameras','CamerasCameraDepthMapFocalTable'] },
+ 'cameradepthmapfocaltableentrycount' => { 479 => [\'Cameras','CamerasCameraDepthMapFocalTableEntryCount'] },
+ 'cameradepthmapformat' => { 479 => [\'Cameras','CamerasCameraDepthMapFormat'] },
+ 'cameradepthmapitemsemantic' => { 479 => [\'Cameras','CamerasCameraDepthMapItemSemantic'] },
+ 'cameradepthmapmeasuretype' => { 479 => [\'Cameras','CamerasCameraDepthMapMeasureType'] },
+ 'cameradepthmapnear' => { 479 => [\'Cameras','CamerasCameraDepthMapNear'] },
+ 'cameradepthmapsoftware' => { 479 => [\'Cameras','CamerasCameraDepthMapSoftware'] },
+ 'cameradepthmapunits' => { 479 => [\'Cameras','CamerasCameraDepthMapUnits'] },
+ 'cameradirection' => { 394 => 'direction.facing' },
+ 'camerae-mountversion' => { 475 => 0xb },
+ 'cameraelevationangle' => { 119 => 0x9405, 507 => 'CameraElevationAngle' },
+ 'camerafilename' => { 490 => 'CameraFilename' },
'camerafirmware' => { 119 => 0xa439 },
- 'cameraid' => { 319 => 0x209, 397 => 'cmid', 413 => 0x209 },
- 'cameraidentifier' => { 391 => 'camera.identifier' },
- 'cameraimage' => { 475 => [\'Cameras','CamerasCameraImage'] },
- 'cameraimageitemsemantic' => { 475 => [\'Cameras','CamerasCameraImageItemSemantic'] },
- 'cameraimageitemuri' => { 475 => [\'Cameras','CamerasCameraImageItemURI'] },
- 'cameraimagingmodel' => { 475 => [\'Cameras','CamerasCameraImagingModel'] },
- 'cameraimagingmodeldistortion' => { 475 => [\'Cameras','CamerasCameraImagingModelDistortion'] },
- 'cameraimagingmodeldistortioncount' => { 475 => [\'Cameras','CamerasCameraImagingModelDistortionCount'] },
- 'cameraimagingmodelfocallengthx' => { 475 => [\'Cameras','CamerasCameraImagingModelFocalLengthX'] },
- 'cameraimagingmodelfocallengthy' => { 475 => [\'Cameras','CamerasCameraImagingModelFocalLengthY'] },
- 'cameraimagingmodelimageheight' => { 475 => [\'Cameras','CamerasCameraImagingModelImageHeight'] },
- 'cameraimagingmodelimagewidth' => { 475 => [\'Cameras','CamerasCameraImagingModelImageWidth'] },
- 'cameraimagingmodelpixelaspectratio' => { 475 => [\'Cameras','CamerasCameraImagingModelPixelAspectRatio'] },
- 'cameraimagingmodelprincipalpointx' => { 475 => [\'Cameras','CamerasCameraImagingModelPrincipalPointX'] },
- 'cameraimagingmodelprincipalpointy' => { 475 => [\'Cameras','CamerasCameraImagingModelPrincipalPointY'] },
- 'cameraimagingmodelskew' => { 475 => [\'Cameras','CamerasCameraImagingModelSkew'] },
+ 'cameraid' => { 322 => 0x209, 400 => 'cmid', 416 => 0x209 },
+ 'cameraidentifier' => { 394 => 'camera.identifier' },
+ 'cameraimage' => { 479 => [\'Cameras','CamerasCameraImage'] },
+ 'cameraimageitemsemantic' => { 479 => [\'Cameras','CamerasCameraImageItemSemantic'] },
+ 'cameraimageitemuri' => { 479 => [\'Cameras','CamerasCameraImageItemURI'] },
+ 'cameraimagingmodel' => { 479 => [\'Cameras','CamerasCameraImagingModel'] },
+ 'cameraimagingmodeldistortion' => { 479 => [\'Cameras','CamerasCameraImagingModelDistortion'] },
+ 'cameraimagingmodeldistortioncount' => { 479 => [\'Cameras','CamerasCameraImagingModelDistortionCount'] },
+ 'cameraimagingmodelfocallengthx' => { 479 => [\'Cameras','CamerasCameraImagingModelFocalLengthX'] },
+ 'cameraimagingmodelfocallengthy' => { 479 => [\'Cameras','CamerasCameraImagingModelFocalLengthY'] },
+ 'cameraimagingmodelimageheight' => { 479 => [\'Cameras','CamerasCameraImagingModelImageHeight'] },
+ 'cameraimagingmodelimagewidth' => { 479 => [\'Cameras','CamerasCameraImagingModelImageWidth'] },
+ 'cameraimagingmodelpixelaspectratio' => { 479 => [\'Cameras','CamerasCameraImagingModelPixelAspectRatio'] },
+ 'cameraimagingmodelprincipalpointx' => { 479 => [\'Cameras','CamerasCameraImagingModelPrincipalPointX'] },
+ 'cameraimagingmodelprincipalpointy' => { 479 => [\'Cameras','CamerasCameraImagingModelPrincipalPointY'] },
+ 'cameraimagingmodelskew' => { 479 => [\'Cameras','CamerasCameraImagingModelSkew'] },
'cameraiso' => { 34 => 0x10 },
- 'cameralabel' => { 119 => 0xc7a1, 525 => 'cameraLabel' },
- 'cameralightestimate' => { 475 => [\'Cameras','CamerasCameraLightEstimate'] },
- 'cameralightestimatecolorcorrectionb' => { 475 => [\'Cameras','CamerasCameraLightEstimateColorCorrectionB'] },
- 'cameralightestimatecolorcorrectiong' => { 475 => [\'Cameras','CamerasCameraLightEstimateColorCorrectionG'] },
- 'cameralightestimatecolorcorrectionr' => { 475 => [\'Cameras','CamerasCameraLightEstimateColorCorrectionR'] },
- 'cameralightestimatepixelintensity' => { 475 => [\'Cameras','CamerasCameraLightEstimatePixelIntensity'] },
- 'cameramakemodel' => { 486 => 'CameraMakeModel' },
- 'cameramodel' => { 381 => 0x410, 525 => 'cameraModel' },
+ 'cameralabel' => { 119 => 0xc7a1, 529 => 'cameraLabel' },
+ 'cameralightestimate' => { 479 => [\'Cameras','CamerasCameraLightEstimate'] },
+ 'cameralightestimatecolorcorrectionb' => { 479 => [\'Cameras','CamerasCameraLightEstimateColorCorrectionB'] },
+ 'cameralightestimatecolorcorrectiong' => { 479 => [\'Cameras','CamerasCameraLightEstimateColorCorrectionG'] },
+ 'cameralightestimatecolorcorrectionr' => { 479 => [\'Cameras','CamerasCameraLightEstimateColorCorrectionR'] },
+ 'cameralightestimatepixelintensity' => { 479 => [\'Cameras','CamerasCameraLightEstimatePixelIntensity'] },
+ 'cameramakemodel' => { 490 => 'CameraMakeModel' },
+ 'cameramodel' => { 384 => 0x410, 529 => 'cameraModel' },
'cameramodelid' => { 176 => 'CameraModelID' },
- 'cameramodelrestriction' => { 496 => 'CameraModelRestriction', 498 => 'CameraModelRestriction' },
- 'cameramotion' => { 391 => 'direction.motion' },
- 'cameramove' => { 525 => 'cameraMove' },
- 'cameraorientation' => { 7 => 0x30, 9 => 0x7d, 11 => 0x30, 13 => 0x35, 14 => 0x30, 15 => 0x30, 16 => 0x31, 17 => 0x31, 18 => 0x35, 19 => 0x27, 20 => 0x31, 21 => 0x7d, 22 => 0x38, 23 => [0x36,0x3a], 24 => 0x7d, 25 => 0x83, 26 => 0x84, 27 => 0x96, 28 => 0x35, 29 => 0x96, 337 => 0x8f, 376 => 0x1, 381 => 0x100, 430 => [0x16,0x18], 459 => 0x28, 460 => 0x24, 461 => 0x29 },
+ 'cameramodelrestriction' => { 500 => 'CameraModelRestriction', 502 => 'CameraModelRestriction' },
+ 'cameramotion' => { 394 => 'direction.motion' },
+ 'cameramove' => { 529 => 'cameraMove' },
+ 'cameraorientation' => { 7 => 0x30, 9 => 0x7d, 11 => 0x30, 13 => 0x35, 14 => 0x30, 15 => 0x30, 16 => 0x31, 17 => 0x31, 18 => 0x35, 19 => 0x27, 20 => 0x31, 21 => 0x7d, 22 => 0x38, 23 => [0x36,0x3a], 24 => 0x7d, 25 => 0x83, 26 => 0x84, 27 => 0x96, 28 => 0x35, 29 => 0x96, 340 => 0x8f, 379 => 0x1, 384 => 0x100, 433 => [0x16,0x18], 463 => 0x28, 464 => 0x24, 465 => 0x29 },
'cameraowner' => { 141 => 0xc353 },
- 'cameraparameters' => { 319 => 0x2050 },
+ 'cameraparameters' => { 322 => 0x2050 },
'camerapicturestyle' => { 28 => 0xaf },
- 'camerapitch' => { 115 => 0x9, 397 => "\xa9gpt" },
- 'camerapointcloud' => { 475 => [\'Cameras','CamerasCameraPointCloud'] },
- 'camerapointcloudmetric' => { 475 => [\'Cameras','CamerasCameraPointCloudMetric'] },
- 'camerapointcloudpointcloud' => { 475 => [\'Cameras','CamerasCameraPointCloudPointCloud'] },
- 'camerapointcloudpoints' => { 475 => [\'Cameras','CamerasCameraPointCloudPoints'] },
- 'camerapose' => { 475 => [\'Cameras','CamerasCameraPose'] },
- 'cameraposepositionx' => { 475 => [\'Cameras','CamerasCameraPosePositionX'] },
- 'cameraposepositiony' => { 475 => [\'Cameras','CamerasCameraPosePositionY'] },
- 'cameraposepositionz' => { 475 => [\'Cameras','CamerasCameraPosePositionZ'] },
- 'cameraposerotationw' => { 475 => [\'Cameras','CamerasCameraPoseRotationW'] },
- 'cameraposerotationx' => { 475 => [\'Cameras','CamerasCameraPoseRotationX'] },
- 'cameraposerotationy' => { 475 => [\'Cameras','CamerasCameraPoseRotationY'] },
- 'cameraposerotationz' => { 475 => [\'Cameras','CamerasCameraPoseRotationZ'] },
- 'cameraposetimestamp' => { 475 => [\'Cameras','CamerasCameraPoseTimestamp'] },
- 'cameraprofile' => { 496 => 'CameraProfile', 498 => 'CameraProfile' },
- 'cameraprofiledigest' => { 496 => 'CameraProfileDigest', 498 => 'CameraProfileDigest' },
- 'cameraprofiles' => { 513 => 'CameraProfiles' },
- 'cameraprofilesaperturevalue' => { 513 => [\'CameraProfiles','CameraProfilesApertureValue'] },
- 'cameraprofilesauthor' => { 513 => [\'CameraProfiles','CameraProfilesAuthor'] },
- 'cameraprofilesautoscale' => { 513 => [\'CameraProfiles','CameraProfilesAutoScale'] },
- 'cameraprofilescameraprettyname' => { 513 => [\'CameraProfiles','CameraProfilesCameraPrettyName'] },
- 'cameraprofilescamerarawprofile' => { 513 => [\'CameraProfiles','CameraProfilesCameraRawProfile'] },
- 'cameraprofilesfocallength' => { 513 => [\'CameraProfiles','CameraProfilesFocalLength'] },
- 'cameraprofilesfocusdistance' => { 513 => [\'CameraProfiles','CameraProfilesFocusDistance'] },
- 'cameraprofileslens' => { 513 => [\'CameraProfiles','CameraProfilesLens'] },
- 'cameraprofileslensprettyname' => { 513 => [\'CameraProfiles','CameraProfilesLensPrettyName'] },
- 'cameraprofilesmake' => { 513 => [\'CameraProfiles','CameraProfilesMake'] },
- 'cameraprofilesmodel' => { 513 => [\'CameraProfiles','CameraProfilesModel'] },
- 'cameraprofilesperspectivemodel' => { 513 => [\'CameraProfiles','CameraProfilesPerspectiveModel'] },
- 'cameraprofilesperspectivemodelimagexcenter' => { 513 => [\'CameraProfiles','CameraProfilesPerspectiveModelImageXCenter'] },
- 'cameraprofilesperspectivemodelimageycenter' => { 513 => [\'CameraProfiles','CameraProfilesPerspectiveModelImageYCenter'] },
- 'cameraprofilesperspectivemodelradialdistortparam1' => { 513 => [\'CameraProfiles','CameraProfilesPerspectiveModelRadialDistortParam1'] },
- 'cameraprofilesperspectivemodelradialdistortparam2' => { 513 => [\'CameraProfiles','CameraProfilesPerspectiveModelRadialDistortParam2'] },
- 'cameraprofilesperspectivemodelradialdistortparam3' => { 513 => [\'CameraProfiles','CameraProfilesPerspectiveModelRadialDistortParam3'] },
- 'cameraprofilesperspectivemodelscalefactor' => { 513 => [\'CameraProfiles','CameraProfilesPerspectiveModelScaleFactor'] },
- 'cameraprofilesperspectivemodelversion' => { 513 => [\'CameraProfiles','CameraProfilesPerspectiveModelVersion'] },
- 'cameraprofilesprofilename' => { 513 => [\'CameraProfiles','CameraProfilesProfileName'] },
- 'cameraprofilessensorformatfactor' => { 513 => [\'CameraProfiles','CameraProfilesSensorFormatFactor'] },
- 'cameraprofilesuniquecameramodel' => { 513 => [\'CameraProfiles','CameraProfilesUniqueCameraModel'] },
+ 'camerapitch' => { 115 => 0x9, 400 => "\xa9gpt" },
+ 'camerapointcloud' => { 479 => [\'Cameras','CamerasCameraPointCloud'] },
+ 'camerapointcloudmetric' => { 479 => [\'Cameras','CamerasCameraPointCloudMetric'] },
+ 'camerapointcloudpointcloud' => { 479 => [\'Cameras','CamerasCameraPointCloudPointCloud'] },
+ 'camerapointcloudpoints' => { 479 => [\'Cameras','CamerasCameraPointCloudPoints'] },
+ 'camerapose' => { 479 => [\'Cameras','CamerasCameraPose'] },
+ 'cameraposepositionx' => { 479 => [\'Cameras','CamerasCameraPosePositionX'] },
+ 'cameraposepositiony' => { 479 => [\'Cameras','CamerasCameraPosePositionY'] },
+ 'cameraposepositionz' => { 479 => [\'Cameras','CamerasCameraPosePositionZ'] },
+ 'cameraposerotationw' => { 479 => [\'Cameras','CamerasCameraPoseRotationW'] },
+ 'cameraposerotationx' => { 479 => [\'Cameras','CamerasCameraPoseRotationX'] },
+ 'cameraposerotationy' => { 479 => [\'Cameras','CamerasCameraPoseRotationY'] },
+ 'cameraposerotationz' => { 479 => [\'Cameras','CamerasCameraPoseRotationZ'] },
+ 'cameraposetimestamp' => { 479 => [\'Cameras','CamerasCameraPoseTimestamp'] },
+ 'cameraprofile' => { 500 => 'CameraProfile', 502 => 'CameraProfile' },
+ 'cameraprofiledigest' => { 500 => 'CameraProfileDigest', 502 => 'CameraProfileDigest' },
+ 'cameraprofiles' => { 517 => 'CameraProfiles' },
+ 'cameraprofilesaperturevalue' => { 517 => [\'CameraProfiles','CameraProfilesApertureValue'] },
+ 'cameraprofilesauthor' => { 517 => [\'CameraProfiles','CameraProfilesAuthor'] },
+ 'cameraprofilesautoscale' => { 517 => [\'CameraProfiles','CameraProfilesAutoScale'] },
+ 'cameraprofilescameraprettyname' => { 517 => [\'CameraProfiles','CameraProfilesCameraPrettyName'] },
+ 'cameraprofilescamerarawprofile' => { 517 => [\'CameraProfiles','CameraProfilesCameraRawProfile'] },
+ 'cameraprofilesfocallength' => { 517 => [\'CameraProfiles','CameraProfilesFocalLength'] },
+ 'cameraprofilesfocusdistance' => { 517 => [\'CameraProfiles','CameraProfilesFocusDistance'] },
+ 'cameraprofileslens' => { 517 => [\'CameraProfiles','CameraProfilesLens'] },
+ 'cameraprofileslensprettyname' => { 517 => [\'CameraProfiles','CameraProfilesLensPrettyName'] },
+ 'cameraprofilesmake' => { 517 => [\'CameraProfiles','CameraProfilesMake'] },
+ 'cameraprofilesmodel' => { 517 => [\'CameraProfiles','CameraProfilesModel'] },
+ 'cameraprofilesperspectivemodel' => { 517 => [\'CameraProfiles','CameraProfilesPerspectiveModel'] },
+ 'cameraprofilesperspectivemodelimagexcenter' => { 517 => [\'CameraProfiles','CameraProfilesPerspectiveModelImageXCenter'] },
+ 'cameraprofilesperspectivemodelimageycenter' => { 517 => [\'CameraProfiles','CameraProfilesPerspectiveModelImageYCenter'] },
+ 'cameraprofilesperspectivemodelradialdistortparam1' => { 517 => [\'CameraProfiles','CameraProfilesPerspectiveModelRadialDistortParam1'] },
+ 'cameraprofilesperspectivemodelradialdistortparam2' => { 517 => [\'CameraProfiles','CameraProfilesPerspectiveModelRadialDistortParam2'] },
+ 'cameraprofilesperspectivemodelradialdistortparam3' => { 517 => [\'CameraProfiles','CameraProfilesPerspectiveModelRadialDistortParam3'] },
+ 'cameraprofilesperspectivemodelscalefactor' => { 517 => [\'CameraProfiles','CameraProfilesPerspectiveModelScaleFactor'] },
+ 'cameraprofilesperspectivemodelversion' => { 517 => [\'CameraProfiles','CameraProfilesPerspectiveModelVersion'] },
+ 'cameraprofilesprofilename' => { 517 => [\'CameraProfiles','CameraProfilesProfileName'] },
+ 'cameraprofilessensorformatfactor' => { 517 => [\'CameraProfiles','CameraProfilesSensorFormatFactor'] },
+ 'cameraprofilesuniquecameramodel' => { 517 => [\'CameraProfiles','CameraProfilesUniqueCameraModel'] },
'camerarawcolortone' => { 109 => 0xe1 },
'camerarawcontrast' => { 109 => 0xe3 },
'camerarawhighlightpoint' => { 109 => 0xe6 },
@@ -1378,23 +1384,23 @@ my %tagLookup = (
'camerarawsaturation' => { 109 => 0xe2 },
'camerarawshadowpoint' => { 109 => 0xe7 },
'camerarawsharpness' => { 109 => 0xe5 },
- 'cameraroll' => { 115 => 0xb, 397 => "\xa9grl" },
- 'cameras' => { 475 => 'Cameras' },
- 'cameraserialnumber' => { 119 => 0xc62f, 178 => 'CameraSerialNumber', 486 => 'CameraSerialNumber' },
- 'camerasettingsversion' => { 314 => 0x0 },
- 'cameratemperature' => { 7 => 0x18, 9 => 0x1b, 11 => 0x18, 13 => 0x19, 14 => 0x18, 15 => 0x18, 16 => 0x19, 17 => 0x19, 18 => 0x19, 19 => 0x17, 20 => 0x19, 21 => 0x1b, 22 => 0x19, 23 => 0x19, 24 => 0x1b, 25 => 0x1b, 26 => 0x1b, 27 => 0x1b, 28 => 0x19, 29 => 0x1b, 30 => [0x87,0x91], 31 => [0x99,0x9f,0xa4,0xa8,0x105], 33 => ['-3',0x64,0x47,0x53,0x5b,0x5c], 77 => 0xc, 138 => 0x406, 318 => 0x1306, 332 => 0x320, 339 => 0x3402, 372 => 0x47, 411 => 0x43, 463 => 0x5 },
- 'cameratemperature4' => { 377 => 0x14 },
- 'cameratemperature5' => { 377 => 0x16 },
+ 'cameraroll' => { 115 => 0xb, 400 => "\xa9grl" },
+ 'cameras' => { 479 => 'Cameras' },
+ 'cameraserialnumber' => { 119 => 0xc62f, 178 => 'CameraSerialNumber', 490 => 'CameraSerialNumber' },
+ 'camerasettingsversion' => { 317 => 0x0 },
+ 'cameratemperature' => { 7 => 0x18, 9 => 0x1b, 11 => 0x18, 13 => 0x19, 14 => 0x18, 15 => 0x18, 16 => 0x19, 17 => 0x19, 18 => 0x19, 19 => 0x17, 20 => 0x19, 21 => 0x1b, 22 => 0x19, 23 => 0x19, 24 => 0x1b, 25 => 0x1b, 26 => 0x1b, 27 => 0x1b, 28 => 0x19, 29 => 0x1b, 30 => [0x87,0x91], 31 => [0x99,0x9f,0xa4,0xa8,0x105], 33 => ['-3',0x64,0x47,0x53,0x5b,0x5c], 77 => 0xc, 138 => 0x406, 321 => 0x1306, 335 => 0x320, 342 => 0x3402, 375 => 0x47, 414 => 0x43, 467 => 0x5 },
+ 'cameratemperature4' => { 380 => 0x14 },
+ 'cameratemperature5' => { 380 => 0x16 },
'cameratemperaturerangemax' => { 121 => 0x5 },
'cameratemperaturerangemin' => { 121 => 0x6 },
- 'cameratrait' => { 475 => [\'Cameras','CamerasCameraTrait'] },
- 'cameratype' => { 77 => 0x1a, 319 => 0x207 },
- 'cameratype2' => { 315 => 0x100 },
- 'cameravendorinfo' => { 475 => [\'Cameras','CamerasCameraVendorInfo'] },
- 'cameravendorinfomanufacturer' => { 475 => [\'Cameras','CamerasCameraVendorInfoManufacturer'] },
- 'cameravendorinfomodel' => { 475 => [\'Cameras','CamerasCameraVendorInfoModel'] },
- 'cameravendorinfonotes' => { 475 => [\'Cameras','CamerasCameraVendorInfoNotes'] },
- 'camerayaw' => { 115 => 0xa, 397 => "\xa9gyw" },
+ 'cameratrait' => { 479 => [\'Cameras','CamerasCameraTrait'] },
+ 'cameratype' => { 77 => 0x1a, 322 => 0x207 },
+ 'cameratype2' => { 318 => 0x100 },
+ 'cameravendorinfo' => { 479 => [\'Cameras','CamerasCameraVendorInfo'] },
+ 'cameravendorinfomanufacturer' => { 479 => [\'Cameras','CamerasCameraVendorInfoManufacturer'] },
+ 'cameravendorinfomodel' => { 479 => [\'Cameras','CamerasCameraVendorInfoModel'] },
+ 'cameravendorinfonotes' => { 479 => [\'Cameras','CamerasCameraVendorInfoNotes'] },
+ 'camerayaw' => { 115 => 0xa, 400 => "\xa9gyw" },
'camreverse' => { 116 => 'CamReverse' },
'canondr4' => { 120 => 'CanonDR4' },
'canonexposuremode' => { 34 => 0x14 },
@@ -1408,348 +1414,348 @@ my %tagLookup = (
'canonlogversion' => { 63 => 0xb },
'canonmodelid' => { 64 => 0x10, 97 => 0x1834 },
'canonvrd' => { 120 => 'CanonVRD' },
- 'caption' => { 491 => 'caption' },
+ 'caption' => { 495 => 'caption' },
'caption-abstract' => { 131 => 0x78 },
- 'captionsauthornames' => { 501 => 'CaptionsAuthorNames' },
- 'captionsdatetimestamps' => { 501 => 'CaptionsDateTimeStamps' },
- 'captionwriter' => { 513 => 'CaptionWriter' },
+ 'captionsauthornames' => { 505 => 'CaptionsAuthorNames' },
+ 'captionsdatetimestamps' => { 505 => 'CaptionsDateTimeStamps' },
+ 'captionwriter' => { 517 => 'CaptionWriter' },
'captureframerate' => { 113 => 0x4001 },
'captureheightnormal' => { 138 => 0x1839 },
'capturelook' => { 138 => 0xc48 },
- 'capturemode' => { 391 => 'com.apple.photos.captureMode' },
- 'capturesoftware' => { 484 => 'CaptureSoftware' },
+ 'capturemode' => { 394 => 'com.apple.photos.captureMode' },
+ 'capturesoftware' => { 488 => 'CaptureSoftware' },
'capturewidthnormal' => { 138 => 0x1838 },
'capturewidthtest' => { 138 => 0x1842 },
'cardshutterlock' => { 184 => 0x49 },
'casioimagesize' => { 113 => 0x9 },
- 'catalogsets' => { 131 => 0xff, 477 => 'CatalogSets', 489 => 'CatalogSets' },
- 'categories' => { 64 => 0x23, 491 => 'categories' },
- 'category' => { 131 => 0xf, 179 => 'WM/Category', 313 => 0x30, 389 => 'catg', 513 => 'Category' },
- 'cbcrgain' => { 411 => 0xa036 },
- 'cbcrgaindefault' => { 411 => 0xa035 },
- 'cbcrmatrix' => { 411 => 0xa034 },
- 'cbcrmatrixdefault' => { 411 => 0xa033 },
- 'ccdboardversion' => { 332 => 0x331 },
- 'ccdscanmode' => { 319 => 0x1039 },
- 'ccdsensitivity' => { 279 => 0x6 },
- 'ccdversion' => { 332 => 0x330 },
- 'ccvavgluminancenits' => { 506 => 'ccv_avg_luminance_nits' },
- 'ccvmaxluminancenits' => { 506 => 'ccv_max_luminance_nits' },
- 'ccvminluminancenits' => { 506 => 'ccv_min_luminance_nits' },
- 'ccvprimariesxy' => { 506 => 'ccv_primaries_xy' },
- 'ccvwhitexy' => { 506 => 'ccv_white_xy' },
- 'cellglobalid' => { 495 => 'cgi' },
+ 'catalogsets' => { 131 => 0xff, 481 => 'CatalogSets', 493 => 'CatalogSets' },
+ 'categories' => { 64 => 0x23, 495 => 'categories' },
+ 'category' => { 131 => 0xf, 179 => 'WM/Category', 316 => 0x30, 392 => 'catg', 517 => 'Category' },
+ 'cbcrgain' => { 414 => 0xa036 },
+ 'cbcrgaindefault' => { 414 => 0xa035 },
+ 'cbcrmatrix' => { 414 => 0xa034 },
+ 'cbcrmatrixdefault' => { 414 => 0xa033 },
+ 'ccdboardversion' => { 335 => 0x331 },
+ 'ccdscanmode' => { 322 => 0x1039 },
+ 'ccdsensitivity' => { 280 => 0x6 },
+ 'ccdversion' => { 335 => 0x330 },
+ 'ccvavgluminancenits' => { 510 => 'ccv_avg_luminance_nits' },
+ 'ccvmaxluminancenits' => { 510 => 'ccv_max_luminance_nits' },
+ 'ccvminluminancenits' => { 510 => 'ccv_min_luminance_nits' },
+ 'ccvprimariesxy' => { 510 => 'ccv_primaries_xy' },
+ 'ccvwhitexy' => { 510 => 'ccv_white_xy' },
+ 'cellglobalid' => { 499 => 'cgi' },
'celllength' => { 119 => 0x109 },
- 'cellr' => { 495 => 'r' },
- 'celltowerid' => { 495 => 'cellid' },
+ 'cellr' => { 499 => 'r' },
+ 'celltowerid' => { 499 => 'cellid' },
'cellwidth' => { 119 => 0x108 },
- 'centerafarea' => { 307 => '15.1' },
- 'centerfocuspoint' => { 311 => '2.2' },
+ 'centerafarea' => { 308 => '15.1' },
+ 'centerfocuspoint' => { 312 => '2.2' },
'centerpixel' => { 138 => 0x40c },
- 'centerweightedareasize' => { 296 => '7.1', 297 => '8.1', 299 => '8.1', 300 => '8.1', 304 => '7.1', 305 => '5.1', 306 => '7.1', 307 => '6.3', 309 => '8.1', 310 => '8.1', 311 => '8.1', 312 => 0x1f },
- 'certificate' => { 529 => 'Certificate' },
+ 'centerweightedareasize' => { 297 => '7.1', 298 => '8.1', 300 => '8.1', 301 => '8.1', 305 => '7.1', 306 => '5.1', 307 => '7.1', 308 => '6.3', 310 => '8.1', 311 => '8.1', 312 => '8.1', 313 => 0x1f, 314 => 0x1f, 315 => 0x1f },
+ 'certificate' => { 533 => 'Certificate' },
'cfainterpolationalgorithm' => { 138 => 0xe60 },
'cfainterpolationmetric' => { 138 => 0xe61 },
'cfaoffsetcols' => { 138 => 0xc71 },
'cfaoffsetrows' => { 138 => 0xc6f },
- 'cfapattern' => { 119 => 0xa302, 342 => 0x9, 502 => 'CFAPattern' },
+ 'cfapattern' => { 119 => 0xa302, 345 => 0x9, 506 => 'CFAPattern' },
'cfapattern2' => { 119 => 0x828e },
- 'cfapatterncolumns' => { 502 => [\'CFAPattern','CFAPatternColumns'] },
- 'cfapatternrows' => { 502 => [\'CFAPattern','CFAPatternRows'] },
- 'cfapatternvalues' => { 502 => [\'CFAPattern','CFAPatternValues'] },
+ 'cfapatterncolumns' => { 506 => [\'CFAPattern','CFAPatternColumns'] },
+ 'cfapatternrows' => { 506 => [\'CFAPattern','CFAPatternRows'] },
+ 'cfapatternvalues' => { 506 => [\'CFAPattern','CFAPatternValues'] },
'cfarepeatpatterndim' => { 119 => 0x828d },
'cfazipperfixthreshold' => { 138 => 0xe62 },
- 'channel' => { 515 => 'channel' },
- 'channela-lang' => { 515 => [\'channel','channelA-lang'] },
- 'channelchannel' => { 515 => [\'channel','channelChannel'] },
+ 'channel' => { 519 => 'channel' },
+ 'channela-lang' => { 519 => [\'channel','channelA-lang'] },
+ 'channelchannel' => { 519 => [\'channel','channelChannel'] },
'channels' => { 155 => 'Channels' },
- 'channelsubchannel1' => { 515 => [\'channel','channelSubchannel1'] },
- 'channelsubchannel2' => { 515 => [\'channel','channelSubchannel2'] },
- 'channelsubchannel3' => { 515 => [\'channel','channelSubchannel3'] },
- 'channelsubchannel4' => { 515 => [\'channel','channelSubchannel4'] },
- 'chapterlist' => { 397 => 'chpl' },
+ 'channelsubchannel1' => { 519 => [\'channel','channelSubchannel1'] },
+ 'channelsubchannel2' => { 519 => [\'channel','channelSubchannel2'] },
+ 'channelsubchannel3' => { 519 => [\'channel','channelSubchannel3'] },
+ 'channelsubchannel4' => { 519 => [\'channel','channelSubchannel4'] },
+ 'chapterlist' => { 400 => 'chpl' },
'checkmark' => { 103 => 0x10101, 108 => 0x26a },
'checkmark2' => { 109 => 0x8e },
- 'childfontfiles' => { 530 => [\'Fonts','FontsChildFontFiles'] },
- 'chmodeshootingspeed' => { 296 => '10.3', 297 => '11.2', 312 => 0x10b },
+ 'childfontfiles' => { 534 => [\'Fonts','FontsChildFontFiles'] },
+ 'chmodeshootingspeed' => { 297 => '10.3', 298 => '11.2', 313 => 0x10b, 314 => 0x10b, 315 => 0x121 },
'chromablurradius' => { 119 => 0xc631 },
'chromanoisecolorspace' => { 138 => 0xe6d },
'chromanoiseedgemapthresh' => { 138 => 0xe6c },
'chromanoisehighfthresh' => { 138 => 0xe6a },
'chromanoiselowfthresh' => { 138 => 0xe6b },
- 'chromaticaberration' => { 103 => 0x20703, 109 => 0x66, 411 => 0xa051 },
- 'chromaticaberrationb' => { 496 => 'ChromaticAberrationB', 498 => 'ChromaticAberrationB' },
+ 'chromaticaberration' => { 103 => 0x20703, 109 => 0x66, 414 => 0xa051 },
+ 'chromaticaberrationb' => { 500 => 'ChromaticAberrationB', 502 => 'ChromaticAberrationB' },
'chromaticaberrationblue' => { 103 => 0x20708, 109 => 0x6b },
'chromaticaberrationcorr' => { 79 => [0x4,0x5] },
- 'chromaticaberrationcorrection' => { 119 => 0x7034, 362 => 0x1, 472 => 0x900d },
- 'chromaticaberrationcorrparams' => { 119 => 0x7035, 467 => 0x66a, 468 => [0x37c,0x384,0x39c,0x3b0,0x3b8] },
+ 'chromaticaberrationcorrection' => { 119 => 0x7034, 365 => 0x1, 476 => 0x900d },
+ 'chromaticaberrationcorrparams' => { 119 => 0x7035, 471 => 0x66a, 472 => [0x37c,0x384,0x39c,0x3b0,0x3b8] },
'chromaticaberrationon' => { 103 => '0x20703.0', 109 => 0x62 },
- 'chromaticaberrationr' => { 496 => 'ChromaticAberrationR', 498 => 'ChromaticAberrationR' },
+ 'chromaticaberrationr' => { 500 => 'ChromaticAberrationR', 502 => 'ChromaticAberrationR' },
'chromaticaberrationred' => { 103 => 0x20707, 109 => 0x6a },
'chromaticaberrationsetting' => { 80 => 0x6 },
- 'chrominancenoisereduction' => { 103 => 0x20601, 109 => 0x5e, 414 => 0x1a },
+ 'chrominancenoisereduction' => { 103 => 0x20601, 109 => 0x5e, 417 => 0x1a },
'chrominancenr_tiff_jpeg' => { 109 => 0x60 },
- 'circadatecreated' => { 510 => 'CircaDateCreated' },
- 'circgradbasedcorractive' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionActive'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionActive'] },
- 'circgradbasedcorramount' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionAmount'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionAmount'] },
- 'circgradbasedcorrblacks2012' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalBlacks2012'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalBlacks2012'] },
- 'circgradbasedcorrbrightness' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalBrightness'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalBrightness'] },
- 'circgradbasedcorrclarity' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity'] },
- 'circgradbasedcorrclarity2012' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity2012'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity2012'] },
- 'circgradbasedcorrcontrast' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast'] },
- 'circgradbasedcorrcontrast2012' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast2012'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast2012'] },
- 'circgradbasedcorrcorrectionname' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionName'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionName'] },
- 'circgradbasedcorrcorrectionsyncid' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionSyncID'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionSyncID'] },
- 'circgradbasedcorrdefringe' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalDefringe'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalDefringe'] },
- 'circgradbasedcorrdehaze' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalDehaze'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalDehaze'] },
- 'circgradbasedcorrexposure' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure'] },
- 'circgradbasedcorrexposure2012' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure2012'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure2012'] },
- 'circgradbasedcorrhighlights2012' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalHighlights2012'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalHighlights2012'] },
- 'circgradbasedcorrhue' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalHue'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalHue'] },
- 'circgradbasedcorrluminancenoise' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalLuminanceNoise'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalLuminanceNoise'] },
- 'circgradbasedcorrmaskalpha' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAlpha'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAlpha'] },
- 'circgradbasedcorrmaskangle' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAngle'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAngle'] },
- 'circgradbasedcorrmaskbottom' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksBottom'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksBottom'] },
- 'circgradbasedcorrmaskcentervalue' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterValue'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterValue'] },
- 'circgradbasedcorrmaskcenterweight' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterWeight'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterWeight'] },
- 'circgradbasedcorrmaskdabs' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksDabs'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksDabs'] },
- 'circgradbasedcorrmaskfeather' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFeather'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFeather'] },
- 'circgradbasedcorrmaskflipped' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlipped'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlipped'] },
- 'circgradbasedcorrmaskflow' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlow'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlow'] },
- 'circgradbasedcorrmaskfullx' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullX'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullX'] },
- 'circgradbasedcorrmaskfully' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullY'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullY'] },
- 'circgradbasedcorrmaskinputdigest' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksInputDigest'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksInputDigest'] },
- 'circgradbasedcorrmaskleft' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksLeft'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksLeft'] },
- 'circgradbasedcorrmaskmaskactive' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskActive'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskActive'] },
- 'circgradbasedcorrmaskmaskblendmode' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskBlendMode'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskBlendMode'] },
- 'circgradbasedcorrmaskmaskdigest' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskDigest'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskDigest'] },
- 'circgradbasedcorrmaskmaskinverted' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskInverted'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskInverted'] },
- 'circgradbasedcorrmaskmaskname' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskName'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskName'] },
- 'circgradbasedcorrmaskmasks' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasks'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasks'] },
- 'circgradbasedcorrmaskmasksalpha' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksAlpha'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksAlpha'] },
- 'circgradbasedcorrmaskmasksangle' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksAngle'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksAngle'] },
- 'circgradbasedcorrmaskmasksbottom' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksBottom'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksBottom'] },
- 'circgradbasedcorrmaskmaskscentervalue' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksCenterValue'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksCenterValue'] },
- 'circgradbasedcorrmaskmaskscenterweight' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksCenterWeight'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksCenterWeight'] },
- 'circgradbasedcorrmaskmasksdabs' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksDabs'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksDabs'] },
- 'circgradbasedcorrmaskmasksfeather' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFeather'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFeather'] },
- 'circgradbasedcorrmaskmasksflipped' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFlipped'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFlipped'] },
- 'circgradbasedcorrmaskmasksflow' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFlow'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFlow'] },
- 'circgradbasedcorrmaskmasksfullx' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFullX'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFullX'] },
- 'circgradbasedcorrmaskmasksfully' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFullY'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFullY'] },
- 'circgradbasedcorrmaskmasksinputdigest' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksInputDigest'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksInputDigest'] },
- 'circgradbasedcorrmaskmasksleft' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksLeft'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksLeft'] },
- 'circgradbasedcorrmaskmasksmaskactive' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskActive'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskActive'] },
- 'circgradbasedcorrmaskmasksmaskblendmode' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskBlendMode'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskBlendMode'] },
- 'circgradbasedcorrmaskmasksmaskdigest' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskDigest'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskDigest'] },
- 'circgradbasedcorrmaskmasksmaskinverted' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskInverted'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskInverted'] },
- 'circgradbasedcorrmaskmasksmaskname' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskName'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskName'] },
- 'circgradbasedcorrmaskmasksmasksubtype' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskSubType'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskSubType'] },
- 'circgradbasedcorrmaskmasksmasksyncid' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskSyncID'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskSyncID'] },
- 'circgradbasedcorrmaskmasksmaskversion' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskVersion'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskVersion'] },
- 'circgradbasedcorrmaskmasksmidpoint' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMidpoint'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMidpoint'] },
- 'circgradbasedcorrmaskmasksorigin' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksOrigin'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksOrigin'] },
- 'circgradbasedcorrmaskmasksperimetervalue' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksPerimeterValue'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksPerimeterValue'] },
- 'circgradbasedcorrmaskmasksradius' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRadius'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRadius'] },
- 'circgradbasedcorrmaskmasksreferencepoint' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksReferencePoint'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksReferencePoint'] },
- 'circgradbasedcorrmaskmasksright' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRight'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRight'] },
- 'circgradbasedcorrmaskmasksroundness' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRoundness'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRoundness'] },
- 'circgradbasedcorrmaskmaskssizex' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksSizeX'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksSizeX'] },
- 'circgradbasedcorrmaskmaskssizey' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksSizeY'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksSizeY'] },
- 'circgradbasedcorrmaskmaskstop' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksTop'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksTop'] },
- 'circgradbasedcorrmaskmasksubtype' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskSubType'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskSubType'] },
- 'circgradbasedcorrmaskmasksvalue' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskValue'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskValue'] },
- 'circgradbasedcorrmaskmasksversion' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksVersion'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksVersion'] },
- 'circgradbasedcorrmaskmaskswhat' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksWhat'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksWhat'] },
- 'circgradbasedcorrmaskmaskswholeimagearea' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksWholeImageArea'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksWholeImageArea'] },
- 'circgradbasedcorrmaskmasksx' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksX'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksX'] },
- 'circgradbasedcorrmaskmasksy' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksY'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksY'] },
- 'circgradbasedcorrmaskmasksyncid' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskSyncID'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskSyncID'] },
- 'circgradbasedcorrmaskmaskszerox' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksZeroX'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksZeroX'] },
- 'circgradbasedcorrmaskmaskszeroy' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksZeroY'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksZeroY'] },
- 'circgradbasedcorrmaskmaskversion' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskVersion'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskVersion'] },
- 'circgradbasedcorrmaskmidpoint' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMidpoint'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMidpoint'] },
- 'circgradbasedcorrmaskorigin' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksOrigin'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksOrigin'] },
- 'circgradbasedcorrmaskperimetervalue' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksPerimeterValue'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksPerimeterValue'] },
- 'circgradbasedcorrmaskradius' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRadius'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRadius'] },
- 'circgradbasedcorrmaskrange' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMask'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMask'] },
- 'circgradbasedcorrmaskrangeareamodels' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'] },
- 'circgradbasedcorrmaskrangeareamodelscolorsampleinfo' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] },
- 'circgradbasedcorrmaskrangeareamodelscomponents' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'] },
- 'circgradbasedcorrmaskrangecoloramount' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'] },
- 'circgradbasedcorrmaskrangedepthfeather' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'] },
- 'circgradbasedcorrmaskrangedepthmax' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'] },
- 'circgradbasedcorrmaskrangedepthmin' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'] },
- 'circgradbasedcorrmaskrangeinvert' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'] },
- 'circgradbasedcorrmaskrangelumfeather' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'] },
- 'circgradbasedcorrmaskrangeluminancedepthsampleinfo' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'] },
- 'circgradbasedcorrmaskrangelummax' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'] },
- 'circgradbasedcorrmaskrangelummin' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'] },
- 'circgradbasedcorrmaskrangelumrange' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'] },
- 'circgradbasedcorrmaskrangesampletype' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'] },
- 'circgradbasedcorrmaskrangetype' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'] },
- 'circgradbasedcorrmaskrangeversion' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'] },
- 'circgradbasedcorrmaskreferencepoint' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksReferencePoint'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksReferencePoint'] },
- 'circgradbasedcorrmaskright' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRight'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRight'] },
- 'circgradbasedcorrmaskroundness' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRoundness'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRoundness'] },
- 'circgradbasedcorrmasks' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasks'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasks'] },
- 'circgradbasedcorrmasksizex' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeX'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeX'] },
- 'circgradbasedcorrmasksizey' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeY'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeY'] },
- 'circgradbasedcorrmasktop' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksTop'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksTop'] },
- 'circgradbasedcorrmaskvalue' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskValue'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskValue'] },
- 'circgradbasedcorrmaskversion' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksVersion'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksVersion'] },
- 'circgradbasedcorrmaskwhat' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksWhat'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksWhat'] },
- 'circgradbasedcorrmaskwholeimagearea' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksWholeImageArea'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksWholeImageArea'] },
- 'circgradbasedcorrmaskx' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksX'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksX'] },
- 'circgradbasedcorrmasky' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksY'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksY'] },
- 'circgradbasedcorrmaskzerox' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroX'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroX'] },
- 'circgradbasedcorrmaskzeroy' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroY'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroY'] },
- 'circgradbasedcorrmoire' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalMoire'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalMoire'] },
- 'circgradbasedcorrrangemask' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMask'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMask'] },
- 'circgradbasedcorrrangemaskareamodels' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModels'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModels'] },
- 'circgradbasedcorrrangemaskareamodelscolorsampleinfo' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] },
- 'circgradbasedcorrrangemaskareamodelscomponents' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'] },
- 'circgradbasedcorrrangemaskcoloramount' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskColorAmount'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskColorAmount'] },
- 'circgradbasedcorrrangemaskdepthfeather' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthFeather'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthFeather'] },
- 'circgradbasedcorrrangemaskdepthmax' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthMax'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthMax'] },
- 'circgradbasedcorrrangemaskdepthmin' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthMin'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthMin'] },
- 'circgradbasedcorrrangemaskinvert' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskInvert'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskInvert'] },
- 'circgradbasedcorrrangemasklumfeather' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumFeather'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumFeather'] },
- 'circgradbasedcorrrangemaskluminancedepthsampleinfo' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'] },
- 'circgradbasedcorrrangemasklummax' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumMax'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumMax'] },
- 'circgradbasedcorrrangemasklummin' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumMin'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumMin'] },
- 'circgradbasedcorrrangemasklumrange' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumRange'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumRange'] },
- 'circgradbasedcorrrangemasksampletype' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskSampleType'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskSampleType'] },
- 'circgradbasedcorrrangemasktype' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskType'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskType'] },
- 'circgradbasedcorrrangemaskversion' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskVersion'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskVersion'] },
- 'circgradbasedcorrsaturation' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSaturation'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSaturation'] },
- 'circgradbasedcorrshadows2012' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalShadows2012'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalShadows2012'] },
- 'circgradbasedcorrsharpness' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSharpness'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSharpness'] },
- 'circgradbasedcorrtemperature' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTemperature'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTemperature'] },
- 'circgradbasedcorrtexture' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTexture'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTexture'] },
- 'circgradbasedcorrtint' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTint'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTint'] },
- 'circgradbasedcorrtoninghue' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalToningHue'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalToningHue'] },
- 'circgradbasedcorrtoningsaturation' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalToningSaturation'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalToningSaturation'] },
- 'circgradbasedcorrwhat' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsWhat'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsWhat'] },
- 'circgradbasedcorrwhites2012' => { 496 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalWhites2012'], 498 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalWhites2012'] },
- 'circulargradientbasedcorrections' => { 496 => 'CircularGradientBasedCorrections', 498 => 'CircularGradientBasedCorrections' },
- 'city' => { 131 => 0x5a, 161 => 'City', 337 => 0x6d, 513 => 'City' },
- 'city2' => { 337 => 0x80 },
- 'clarity' => { 127 => 0x100f, 249 => 0x35, 250 => 0x3d, 437 => 0x2036, 496 => 'Clarity', 498 => 'Clarity' },
- 'clarity2012' => { 496 => 'Clarity2012', 498 => 'Clarity2012' },
- 'claritycontrol' => { 372 => 0x96 },
- 'classification' => { 397 => 'clsf' },
+ 'circadatecreated' => { 514 => 'CircaDateCreated' },
+ 'circgradbasedcorractive' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionActive'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionActive'] },
+ 'circgradbasedcorramount' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionAmount'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionAmount'] },
+ 'circgradbasedcorrblacks2012' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalBlacks2012'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalBlacks2012'] },
+ 'circgradbasedcorrbrightness' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalBrightness'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalBrightness'] },
+ 'circgradbasedcorrclarity' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity'] },
+ 'circgradbasedcorrclarity2012' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity2012'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity2012'] },
+ 'circgradbasedcorrcontrast' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast'] },
+ 'circgradbasedcorrcontrast2012' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast2012'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast2012'] },
+ 'circgradbasedcorrcorrectionname' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionName'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionName'] },
+ 'circgradbasedcorrcorrectionsyncid' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionSyncID'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionSyncID'] },
+ 'circgradbasedcorrdefringe' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalDefringe'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalDefringe'] },
+ 'circgradbasedcorrdehaze' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalDehaze'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalDehaze'] },
+ 'circgradbasedcorrexposure' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure'] },
+ 'circgradbasedcorrexposure2012' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure2012'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure2012'] },
+ 'circgradbasedcorrhighlights2012' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalHighlights2012'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalHighlights2012'] },
+ 'circgradbasedcorrhue' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalHue'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalHue'] },
+ 'circgradbasedcorrluminancenoise' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalLuminanceNoise'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalLuminanceNoise'] },
+ 'circgradbasedcorrmaskalpha' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAlpha'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAlpha'] },
+ 'circgradbasedcorrmaskangle' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAngle'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAngle'] },
+ 'circgradbasedcorrmaskbottom' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksBottom'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksBottom'] },
+ 'circgradbasedcorrmaskcentervalue' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterValue'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterValue'] },
+ 'circgradbasedcorrmaskcenterweight' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterWeight'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterWeight'] },
+ 'circgradbasedcorrmaskdabs' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksDabs'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksDabs'] },
+ 'circgradbasedcorrmaskfeather' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFeather'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFeather'] },
+ 'circgradbasedcorrmaskflipped' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlipped'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlipped'] },
+ 'circgradbasedcorrmaskflow' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlow'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlow'] },
+ 'circgradbasedcorrmaskfullx' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullX'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullX'] },
+ 'circgradbasedcorrmaskfully' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullY'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullY'] },
+ 'circgradbasedcorrmaskinputdigest' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksInputDigest'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksInputDigest'] },
+ 'circgradbasedcorrmaskleft' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksLeft'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksLeft'] },
+ 'circgradbasedcorrmaskmaskactive' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskActive'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskActive'] },
+ 'circgradbasedcorrmaskmaskblendmode' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskBlendMode'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskBlendMode'] },
+ 'circgradbasedcorrmaskmaskdigest' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskDigest'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskDigest'] },
+ 'circgradbasedcorrmaskmaskinverted' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskInverted'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskInverted'] },
+ 'circgradbasedcorrmaskmaskname' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskName'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskName'] },
+ 'circgradbasedcorrmaskmasks' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasks'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasks'] },
+ 'circgradbasedcorrmaskmasksalpha' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksAlpha'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksAlpha'] },
+ 'circgradbasedcorrmaskmasksangle' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksAngle'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksAngle'] },
+ 'circgradbasedcorrmaskmasksbottom' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksBottom'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksBottom'] },
+ 'circgradbasedcorrmaskmaskscentervalue' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksCenterValue'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksCenterValue'] },
+ 'circgradbasedcorrmaskmaskscenterweight' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksCenterWeight'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksCenterWeight'] },
+ 'circgradbasedcorrmaskmasksdabs' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksDabs'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksDabs'] },
+ 'circgradbasedcorrmaskmasksfeather' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFeather'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFeather'] },
+ 'circgradbasedcorrmaskmasksflipped' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFlipped'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFlipped'] },
+ 'circgradbasedcorrmaskmasksflow' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFlow'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFlow'] },
+ 'circgradbasedcorrmaskmasksfullx' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFullX'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFullX'] },
+ 'circgradbasedcorrmaskmasksfully' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFullY'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFullY'] },
+ 'circgradbasedcorrmaskmasksinputdigest' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksInputDigest'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksInputDigest'] },
+ 'circgradbasedcorrmaskmasksleft' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksLeft'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksLeft'] },
+ 'circgradbasedcorrmaskmasksmaskactive' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskActive'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskActive'] },
+ 'circgradbasedcorrmaskmasksmaskblendmode' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskBlendMode'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskBlendMode'] },
+ 'circgradbasedcorrmaskmasksmaskdigest' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskDigest'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskDigest'] },
+ 'circgradbasedcorrmaskmasksmaskinverted' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskInverted'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskInverted'] },
+ 'circgradbasedcorrmaskmasksmaskname' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskName'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskName'] },
+ 'circgradbasedcorrmaskmasksmasksubtype' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskSubType'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskSubType'] },
+ 'circgradbasedcorrmaskmasksmasksyncid' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskSyncID'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskSyncID'] },
+ 'circgradbasedcorrmaskmasksmaskversion' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskVersion'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskVersion'] },
+ 'circgradbasedcorrmaskmasksmidpoint' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMidpoint'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMidpoint'] },
+ 'circgradbasedcorrmaskmasksorigin' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksOrigin'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksOrigin'] },
+ 'circgradbasedcorrmaskmasksperimetervalue' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksPerimeterValue'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksPerimeterValue'] },
+ 'circgradbasedcorrmaskmasksradius' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRadius'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRadius'] },
+ 'circgradbasedcorrmaskmasksreferencepoint' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksReferencePoint'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksReferencePoint'] },
+ 'circgradbasedcorrmaskmasksright' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRight'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRight'] },
+ 'circgradbasedcorrmaskmasksroundness' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRoundness'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRoundness'] },
+ 'circgradbasedcorrmaskmaskssizex' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksSizeX'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksSizeX'] },
+ 'circgradbasedcorrmaskmaskssizey' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksSizeY'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksSizeY'] },
+ 'circgradbasedcorrmaskmaskstop' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksTop'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksTop'] },
+ 'circgradbasedcorrmaskmasksubtype' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskSubType'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskSubType'] },
+ 'circgradbasedcorrmaskmasksvalue' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskValue'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskValue'] },
+ 'circgradbasedcorrmaskmasksversion' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksVersion'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksVersion'] },
+ 'circgradbasedcorrmaskmaskswhat' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksWhat'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksWhat'] },
+ 'circgradbasedcorrmaskmaskswholeimagearea' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksWholeImageArea'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksWholeImageArea'] },
+ 'circgradbasedcorrmaskmasksx' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksX'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksX'] },
+ 'circgradbasedcorrmaskmasksy' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksY'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksY'] },
+ 'circgradbasedcorrmaskmasksyncid' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskSyncID'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskSyncID'] },
+ 'circgradbasedcorrmaskmaskszerox' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksZeroX'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksZeroX'] },
+ 'circgradbasedcorrmaskmaskszeroy' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksZeroY'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksZeroY'] },
+ 'circgradbasedcorrmaskmaskversion' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskVersion'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskVersion'] },
+ 'circgradbasedcorrmaskmidpoint' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMidpoint'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMidpoint'] },
+ 'circgradbasedcorrmaskorigin' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksOrigin'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksOrigin'] },
+ 'circgradbasedcorrmaskperimetervalue' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksPerimeterValue'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksPerimeterValue'] },
+ 'circgradbasedcorrmaskradius' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRadius'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRadius'] },
+ 'circgradbasedcorrmaskrange' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMask'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMask'] },
+ 'circgradbasedcorrmaskrangeareamodels' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'] },
+ 'circgradbasedcorrmaskrangeareamodelscolorsampleinfo' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] },
+ 'circgradbasedcorrmaskrangeareamodelscomponents' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'] },
+ 'circgradbasedcorrmaskrangecoloramount' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'] },
+ 'circgradbasedcorrmaskrangedepthfeather' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'] },
+ 'circgradbasedcorrmaskrangedepthmax' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'] },
+ 'circgradbasedcorrmaskrangedepthmin' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'] },
+ 'circgradbasedcorrmaskrangeinvert' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'] },
+ 'circgradbasedcorrmaskrangelumfeather' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'] },
+ 'circgradbasedcorrmaskrangeluminancedepthsampleinfo' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'] },
+ 'circgradbasedcorrmaskrangelummax' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'] },
+ 'circgradbasedcorrmaskrangelummin' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'] },
+ 'circgradbasedcorrmaskrangelumrange' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'] },
+ 'circgradbasedcorrmaskrangesampletype' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'] },
+ 'circgradbasedcorrmaskrangetype' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'] },
+ 'circgradbasedcorrmaskrangeversion' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'] },
+ 'circgradbasedcorrmaskreferencepoint' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksReferencePoint'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksReferencePoint'] },
+ 'circgradbasedcorrmaskright' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRight'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRight'] },
+ 'circgradbasedcorrmaskroundness' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRoundness'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRoundness'] },
+ 'circgradbasedcorrmasks' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasks'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasks'] },
+ 'circgradbasedcorrmasksizex' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeX'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeX'] },
+ 'circgradbasedcorrmasksizey' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeY'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeY'] },
+ 'circgradbasedcorrmasktop' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksTop'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksTop'] },
+ 'circgradbasedcorrmaskvalue' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskValue'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskValue'] },
+ 'circgradbasedcorrmaskversion' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksVersion'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksVersion'] },
+ 'circgradbasedcorrmaskwhat' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksWhat'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksWhat'] },
+ 'circgradbasedcorrmaskwholeimagearea' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksWholeImageArea'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksWholeImageArea'] },
+ 'circgradbasedcorrmaskx' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksX'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksX'] },
+ 'circgradbasedcorrmasky' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksY'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksY'] },
+ 'circgradbasedcorrmaskzerox' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroX'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroX'] },
+ 'circgradbasedcorrmaskzeroy' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroY'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroY'] },
+ 'circgradbasedcorrmoire' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalMoire'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalMoire'] },
+ 'circgradbasedcorrrangemask' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMask'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMask'] },
+ 'circgradbasedcorrrangemaskareamodels' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModels'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModels'] },
+ 'circgradbasedcorrrangemaskareamodelscolorsampleinfo' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] },
+ 'circgradbasedcorrrangemaskareamodelscomponents' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'] },
+ 'circgradbasedcorrrangemaskcoloramount' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskColorAmount'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskColorAmount'] },
+ 'circgradbasedcorrrangemaskdepthfeather' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthFeather'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthFeather'] },
+ 'circgradbasedcorrrangemaskdepthmax' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthMax'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthMax'] },
+ 'circgradbasedcorrrangemaskdepthmin' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthMin'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthMin'] },
+ 'circgradbasedcorrrangemaskinvert' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskInvert'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskInvert'] },
+ 'circgradbasedcorrrangemasklumfeather' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumFeather'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumFeather'] },
+ 'circgradbasedcorrrangemaskluminancedepthsampleinfo' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'] },
+ 'circgradbasedcorrrangemasklummax' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumMax'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumMax'] },
+ 'circgradbasedcorrrangemasklummin' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumMin'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumMin'] },
+ 'circgradbasedcorrrangemasklumrange' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumRange'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumRange'] },
+ 'circgradbasedcorrrangemasksampletype' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskSampleType'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskSampleType'] },
+ 'circgradbasedcorrrangemasktype' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskType'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskType'] },
+ 'circgradbasedcorrrangemaskversion' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskVersion'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskVersion'] },
+ 'circgradbasedcorrsaturation' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSaturation'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSaturation'] },
+ 'circgradbasedcorrshadows2012' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalShadows2012'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalShadows2012'] },
+ 'circgradbasedcorrsharpness' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSharpness'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSharpness'] },
+ 'circgradbasedcorrtemperature' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTemperature'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTemperature'] },
+ 'circgradbasedcorrtexture' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTexture'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTexture'] },
+ 'circgradbasedcorrtint' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTint'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTint'] },
+ 'circgradbasedcorrtoninghue' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalToningHue'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalToningHue'] },
+ 'circgradbasedcorrtoningsaturation' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalToningSaturation'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalToningSaturation'] },
+ 'circgradbasedcorrwhat' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsWhat'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsWhat'] },
+ 'circgradbasedcorrwhites2012' => { 500 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalWhites2012'], 502 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalWhites2012'] },
+ 'circulargradientbasedcorrections' => { 500 => 'CircularGradientBasedCorrections', 502 => 'CircularGradientBasedCorrections' },
+ 'city' => { 131 => 0x5a, 161 => 'City', 340 => 0x6d, 517 => 'City' },
+ 'city2' => { 340 => 0x80 },
+ 'clarity' => { 127 => 0x100f, 250 => 0x35, 251 => 0x3d, 440 => 0x2036, 500 => 'Clarity', 502 => 'Clarity' },
+ 'clarity2012' => { 500 => 'Clarity2012', 502 => 'Clarity2012' },
+ 'claritycontrol' => { 375 => 0x96 },
+ 'classification' => { 400 => 'clsf' },
'classifystate' => { 131 => 0xe1 },
- 'clearretouch' => { 337 => 0x7c },
- 'clearretouchvalue' => { 337 => 0xa3 },
- 'client' => { 525 => 'client' },
- 'clientname' => { 504 => 'ClientName' },
- 'clipboardaspectratio' => { 496 => 'ClipboardAspectRatio', 498 => 'ClipboardAspectRatio' },
- 'clipboardorientation' => { 496 => 'ClipboardOrientation', 498 => 'ClipboardOrientation' },
- 'clipfilename' => { 397 => 'clfn' },
- 'clipid' => { 397 => 'clid' },
- 'clmodeshootingspeed' => { 296 => '10.2', 297 => '11.3', 299 => '11.2', 300 => '11.2', 305 => '11.2', 306 => '10.2', 309 => '11.2', 310 => '11.2', 311 => '11.1', 312 => 0x3b },
- 'cluster' => { 496 => 'Cluster', 498 => 'Cluster' },
- 'cmcontrast' => { 322 => 0x2022 },
- 'cmddialsreverserotation' => { 312 => 0xba },
- 'cmexposurecompensation' => { 322 => 0x2000 },
- 'cmhue' => { 322 => 0x2021 },
- 'cmsaturation' => { 322 => 0x2020 },
- 'cmsharpness' => { 322 => 0x2023 },
- 'cmwhitebalance' => { 322 => 0x2001 },
- 'cmwhitebalancecomp' => { 322 => 0x2002 },
- 'cmwhitebalancegraypoint' => { 322 => 0x2010 },
+ 'clearretouch' => { 340 => 0x7c },
+ 'clearretouchvalue' => { 340 => 0xa3 },
+ 'client' => { 529 => 'client' },
+ 'clientname' => { 508 => 'ClientName' },
+ 'clipboardaspectratio' => { 500 => 'ClipboardAspectRatio', 502 => 'ClipboardAspectRatio' },
+ 'clipboardorientation' => { 500 => 'ClipboardOrientation', 502 => 'ClipboardOrientation' },
+ 'clipfilename' => { 400 => 'clfn' },
+ 'clipid' => { 400 => 'clid' },
+ 'clmodeshootingspeed' => { 297 => '10.2', 298 => '11.3', 300 => '11.2', 301 => '11.2', 306 => '11.2', 307 => '10.2', 310 => '11.2', 311 => '11.2', 312 => '11.1', 313 => 0x3b, 314 => 0x3b, 315 => 0x3b },
+ 'cluster' => { 500 => 'Cluster', 502 => 'Cluster' },
+ 'cmcontrast' => { 325 => 0x2022 },
+ 'cmddialsreverserotation' => { 313 => 0xba, 314 => 0xba, 315 => 0xba },
+ 'cmexposurecompensation' => { 325 => 0x2000 },
+ 'cmhue' => { 325 => 0x2021 },
+ 'cmsaturation' => { 325 => 0x2020 },
+ 'cmsharpness' => { 325 => 0x2023 },
+ 'cmwhitebalance' => { 325 => 0x2001 },
+ 'cmwhitebalancecomp' => { 325 => 0x2002 },
+ 'cmwhitebalancegraypoint' => { 325 => 0x2010 },
'codec' => { 169 => 'Codec' },
'codedcharacterset' => { 132 => 0x5a },
- 'codeversion' => { 397 => 'cver' },
- 'collection' => { 327 => 'Collection' },
- 'collectionname' => { 170 => [\'Collections','CollectionsCollectionName'], 397 => 'coll' },
- 'collections' => { 170 => 'Collections', 491 => 'collections' },
+ 'codeversion' => { 400 => 'cver' },
+ 'collection' => { 330 => 'Collection' },
+ 'collectionname' => { 170 => [\'Collections','CollectionsCollectionName'], 400 => 'coll' },
+ 'collections' => { 170 => 'Collections', 495 => 'collections' },
'collectionuri' => { 170 => [\'Collections','CollectionsCollectionURI'] },
- 'color' => { 391 => 'player.movie.visual.color', 514 => 'color' },
- 'coloraberrationcontrol' => { 289 => 0xc89224b },
- 'coloradjustment' => { 414 => 0x14 },
- 'coloradjustmentmode' => { 413 => 0x210 },
- 'coloranta' => { 530 => [\'Colorants','ColorantsA'] },
- 'colorantb' => { 530 => [\'Colorants','ColorantsB'] },
- 'colorantblack' => { 530 => [\'Colorants','ColorantsBlack'] },
- 'colorantblue' => { 530 => [\'Colorants','ColorantsBlue'] },
- 'colorantcyan' => { 530 => [\'Colorants','ColorantsCyan'] },
- 'colorantgray' => { 530 => [\'Colorants','ColorantsGray'] },
- 'colorantgreen' => { 530 => [\'Colorants','ColorantsGreen'] },
- 'colorantl' => { 530 => [\'Colorants','ColorantsL'] },
- 'colorantmagenta' => { 530 => [\'Colorants','ColorantsMagenta'] },
- 'colorantmode' => { 530 => [\'Colorants','ColorantsMode'] },
- 'colorantred' => { 530 => [\'Colorants','ColorantsRed'] },
- 'colorants' => { 530 => 'Colorants' },
- 'colorantswatchname' => { 530 => [\'Colorants','ColorantsSwatchName'] },
- 'coloranttint' => { 530 => [\'Colorants','ColorantsTint'] },
- 'coloranttype' => { 530 => [\'Colorants','ColorantsType'] },
- 'colorantyellow' => { 530 => [\'Colorants','ColorantsYellow'] },
+ 'color' => { 394 => 'player.movie.visual.color', 518 => 'color' },
+ 'coloraberrationcontrol' => { 290 => 0xc89224b },
+ 'coloradjustment' => { 417 => 0x14 },
+ 'coloradjustmentmode' => { 416 => 0x210 },
+ 'coloranta' => { 534 => [\'Colorants','ColorantsA'] },
+ 'colorantb' => { 534 => [\'Colorants','ColorantsB'] },
+ 'colorantblack' => { 534 => [\'Colorants','ColorantsBlack'] },
+ 'colorantblue' => { 534 => [\'Colorants','ColorantsBlue'] },
+ 'colorantcyan' => { 534 => [\'Colorants','ColorantsCyan'] },
+ 'colorantgray' => { 534 => [\'Colorants','ColorantsGray'] },
+ 'colorantgreen' => { 534 => [\'Colorants','ColorantsGreen'] },
+ 'colorantl' => { 534 => [\'Colorants','ColorantsL'] },
+ 'colorantmagenta' => { 534 => [\'Colorants','ColorantsMagenta'] },
+ 'colorantmode' => { 534 => [\'Colorants','ColorantsMode'] },
+ 'colorantred' => { 534 => [\'Colorants','ColorantsRed'] },
+ 'colorants' => { 534 => 'Colorants' },
+ 'colorantswatchname' => { 534 => [\'Colorants','ColorantsSwatchName'] },
+ 'coloranttint' => { 534 => [\'Colorants','ColorantsTint'] },
+ 'coloranttype' => { 534 => [\'Colorants','ColorantsType'] },
+ 'colorantyellow' => { 534 => [\'Colorants','ColorantsYellow'] },
'colorbalance' => { 156 => 'ColorBalance' },
- 'colorbalanceadj' => { 289 => 0x76a43202 },
+ 'colorbalanceadj' => { 290 => 0x76a43202 },
'colorbalanceblue' => { 181 => 0x1e },
'colorbalancegreen' => { 181 => 0x1d },
'colorbalancered' => { 181 => 0x1c },
'colorbalanceversion' => { 206 => 0x4, 207 => 0x4, 208 => 0x0 },
'colorblur' => { 109 => 0x65 },
'colorbluron' => { 103 => 0x20704 },
- 'colorbooster' => { 289 => 0x5f0e7d23 },
- 'colorboostlevel' => { 283 => 0x1 },
- 'colorboosttype' => { 283 => 0x0 },
+ 'colorbooster' => { 290 => 0x5f0e7d23 },
+ 'colorboostlevel' => { 284 => 0x1 },
+ 'colorboosttype' => { 284 => 0x0 },
'colorchromeeffect' => { 127 => 0x1048 },
'colorchromefxblue' => { 127 => 0x104e },
- 'colorclass' => { 383 => 0xde, 384 => 'ColorClass' },
- 'colorcompensationfilter' => { 184 => [0x3a,0x5f], 186 => 0x111, 437 => 0xb022 },
- 'colorcompensationfiltercustom' => { 424 => 0xd, 425 => 0xc },
- 'colorcompensationfilterset' => { 424 => 0x8, 425 => 0x7, 426 => 0x18, 442 => 0xf },
- 'colorcontrol' => { 319 => 0x102b },
- 'colorcorrection' => { 472 => 0x8015 },
+ 'colorclass' => { 386 => 0xde, 387 => 'ColorClass' },
+ 'colorcompensationfilter' => { 184 => [0x3a,0x5f], 186 => 0x111, 440 => 0xb022 },
+ 'colorcompensationfiltercustom' => { 427 => 0xd, 428 => 0xc },
+ 'colorcompensationfilterset' => { 427 => 0x8, 428 => 0x7, 429 => 0x18, 445 => 0xf },
+ 'colorcontrol' => { 322 => 0x102b },
+ 'colorcorrection' => { 476 => 0x8015 },
'colorcorrectionmatrix' => { 1 => 0x3e },
- 'colorcreatoreffect' => { 314 => 0x532 },
+ 'colorcreatoreffect' => { 317 => 0x532 },
'colordataversion' => { 41 => 0x0, 42 => 0x0, 44 => 0x0, 45 => 0x0, 46 => 0x0, 47 => 0x0, 48 => 0x0, 49 => 0x0, 50 => 0x0 },
- 'coloreffect' => { 337 => 0x28 },
- 'colorfilter' => { 112 => 0x17, 113 => 0x3017, 181 => 0x29, 189 => [0x38,0x4d,0x4f], 379 => 0x17 },
- 'colorgain' => { 256 => 0x51 },
- 'colorgradeblending' => { 496 => 'ColorGradeBlending', 498 => 'ColorGradeBlending' },
- 'colorgradeglobalhue' => { 496 => 'ColorGradeGlobalHue', 498 => 'ColorGradeGlobalHue' },
- 'colorgradegloballum' => { 496 => 'ColorGradeGlobalLum', 498 => 'ColorGradeGlobalLum' },
- 'colorgradeglobalsat' => { 496 => 'ColorGradeGlobalSat', 498 => 'ColorGradeGlobalSat' },
- 'colorgradehighlightlum' => { 496 => 'ColorGradeHighlightLum', 498 => 'ColorGradeHighlightLum' },
- 'colorgrademidtonehue' => { 496 => 'ColorGradeMidtoneHue', 498 => 'ColorGradeMidtoneHue' },
- 'colorgrademidtonelum' => { 496 => 'ColorGradeMidtoneLum', 498 => 'ColorGradeMidtoneLum' },
- 'colorgrademidtonesat' => { 496 => 'ColorGradeMidtoneSat', 498 => 'ColorGradeMidtoneSat' },
- 'colorgradeshadowlum' => { 496 => 'ColorGradeShadowLum', 498 => 'ColorGradeShadowLum' },
+ 'coloreffect' => { 340 => 0x28 },
+ 'colorfilter' => { 112 => 0x17, 113 => 0x3017, 181 => 0x29, 189 => [0x38,0x4d,0x4f], 382 => 0x17 },
+ 'colorgain' => { 257 => 0x51 },
+ 'colorgradeblending' => { 500 => 'ColorGradeBlending', 502 => 'ColorGradeBlending' },
+ 'colorgradeglobalhue' => { 500 => 'ColorGradeGlobalHue', 502 => 'ColorGradeGlobalHue' },
+ 'colorgradegloballum' => { 500 => 'ColorGradeGlobalLum', 502 => 'ColorGradeGlobalLum' },
+ 'colorgradeglobalsat' => { 500 => 'ColorGradeGlobalSat', 502 => 'ColorGradeGlobalSat' },
+ 'colorgradehighlightlum' => { 500 => 'ColorGradeHighlightLum', 502 => 'ColorGradeHighlightLum' },
+ 'colorgrademidtonehue' => { 500 => 'ColorGradeMidtoneHue', 502 => 'ColorGradeMidtoneHue' },
+ 'colorgrademidtonelum' => { 500 => 'ColorGradeMidtoneLum', 502 => 'ColorGradeMidtoneLum' },
+ 'colorgrademidtonesat' => { 500 => 'ColorGradeMidtoneSat', 502 => 'ColorGradeMidtoneSat' },
+ 'colorgradeshadowlum' => { 500 => 'ColorGradeShadowLum', 502 => 'ColorGradeShadowLum' },
'colorhue' => { 103 => 0x20900, 234 => 0x8d },
'colorimetricreference' => { 119 => 0xc6bf },
- 'colorlabel' => { 501 => 'ColorLabel' },
- 'colormatrix' => { 63 => 0xa, 318 => 0x200, 319 => 0x1011, 411 => 0xa030 },
- 'colormatrix1' => { 119 => 0xc621, 381 => 0x106 },
- 'colormatrix2' => { 119 => 0xc622, 322 => 0x200, 381 => 0x226 },
+ 'colorlabel' => { 505 => 'ColorLabel' },
+ 'colormatrix' => { 63 => 0xa, 321 => 0x200, 322 => 0x1011, 414 => 0xa030 },
+ 'colormatrix1' => { 119 => 0xc621, 384 => 0x106 },
+ 'colormatrix2' => { 119 => 0xc622, 325 => 0x200, 384 => 0x226 },
'colormatrix3' => { 119 => 0xcd33 },
- 'colormatrixa' => { 372 => 0x203 },
- 'colormatrixa2' => { 372 => 0x21c },
- 'colormatrixadobergb' => { 411 => 0xa032 },
- 'colormatrixb' => { 372 => 0x204 },
- 'colormatrixb2' => { 372 => 0x21d },
- 'colormatrixnumber' => { 319 => 0x1019 },
- 'colormatrixsrgb' => { 411 => 0xa031 },
- 'colormode' => { 113 => 0x3015, 127 => 0x1210, 140 => 0x66, 181 => 0x28, 184 => 0x16, 186 => 0x101, 187 => 0x36, 189 => 0x7, 234 => 0x3, 279 => 0x4, 337 => 0x32, 414 => 0x2c, 437 => 0xb029, 513 => 'ColorMode' },
- 'colormoirereduction' => { 103 => 0x20670, 290 => 0x15 },
- 'colormoirereductionmode' => { 290 => 0x5 },
+ 'colormatrixa' => { 375 => 0x203 },
+ 'colormatrixa2' => { 375 => 0x21c },
+ 'colormatrixadobergb' => { 414 => 0xa032 },
+ 'colormatrixb' => { 375 => 0x204 },
+ 'colormatrixb2' => { 375 => 0x21d },
+ 'colormatrixnumber' => { 322 => 0x1019 },
+ 'colormatrixsrgb' => { 414 => 0xa031 },
+ 'colormode' => { 113 => 0x3015, 127 => 0x1210, 140 => 0x66, 181 => 0x28, 184 => 0x16, 186 => 0x101, 187 => 0x36, 189 => 0x7, 234 => 0x3, 280 => 0x4, 340 => 0x32, 417 => 0x2c, 440 => 0xb029, 517 => 'ColorMode' },
+ 'colormoirereduction' => { 103 => 0x20670, 291 => 0x15 },
+ 'colormoirereductionmode' => { 291 => 0x5 },
'colormoirereductionon' => { 103 => '0x20670.0' },
- 'colornoisereduction' => { 472 => 0x8029, 496 => 'ColorNoiseReduction', 498 => 'ColorNoiseReduction' },
- 'colornoisereductiondetail' => { 496 => 'ColorNoiseReductionDetail', 498 => 'ColorNoiseReductionDetail' },
- 'colornoisereductionintensity' => { 290 => 0x18 },
- 'colornoisereductionsharpness' => { 290 => 0x1c },
- 'colornoisereductionsmoothness' => { 496 => 'ColorNoiseReductionSmoothness', 498 => 'ColorNoiseReductionSmoothness' },
+ 'colornoisereduction' => { 476 => 0x8029, 500 => 'ColorNoiseReduction', 502 => 'ColorNoiseReduction' },
+ 'colornoisereductiondetail' => { 500 => 'ColorNoiseReductionDetail', 502 => 'ColorNoiseReductionDetail' },
+ 'colornoisereductionintensity' => { 291 => 0x18 },
+ 'colornoisereductionsharpness' => { 291 => 0x1c },
+ 'colornoisereductionsmoothness' => { 500 => 'ColorNoiseReductionSmoothness', 502 => 'ColorNoiseReductionSmoothness' },
'colorplanes' => { 123 => 0x2 },
'colorprofile' => { 181 => 0x33 },
- 'colorprofilesettings' => { 314 => 0x539 },
+ 'colorprofilesettings' => { 317 => 0x539 },
'colorrepresentation' => { 133 => 0x3c },
'colorsaturationadj' => { 103 => 0x20305 },
'colorsequence' => { 133 => 0x41 },
- 'colorspace' => { 51 => 0x3, 64 => 0xb4, 97 => 0x10b4, 119 => 0xa001, 135 => 0x3, 162 => 'ColorSpace', 182 => 0x2f, 183 => 0x25, 184 => 0x17, 234 => 0x1e, 314 => 0x507, 372 => 0x37, 411 => 0xa011, 414 => 0xb, 424 => 0x1b, 425 => 0x83, 426 => 0xe, 442 => 0x6, 502 => 'ColorSpace' },
+ 'colorspace' => { 51 => 0x3, 64 => 0xb4, 97 => 0x10b4, 119 => 0xa001, 135 => 0x3, 162 => 'ColorSpace', 182 => 0x2f, 183 => 0x25, 184 => 0x17, 234 => 0x1e, 317 => 0x507, 375 => 0x37, 414 => 0xa011, 417 => 0xb, 427 => 0x1b, 428 => 0x83, 429 => 0xe, 445 => 0x6, 506 => 'ColorSpace' },
'colorspace2' => { 63 => 0x9 },
'colorspecapproximation' => { 135 => 0x2 },
'colorspecdata' => { 135 => 0x3 },
@@ -1757,32 +1763,32 @@ my %tagLookup = (
'colorspecprecedence' => { 135 => 0x1 },
'colortempasshot' => { 38 => 0x4, 39 => 0x7, 40 => 0x1d, 41 => 0x59, 42 => 0x6d, 43 => 0x26, 44 => 0x43, 47 => 0x43, 48 => 0x43, 49 => 0x43, 50 => 0x4b },
'colortempauto' => { 38 => 0x9, 39 => 0xf, 40 => 0x22, 41 => 0x5e, 42 => 0x72, 43 => 0x1c, 44 => 0x48, 47 => 0x48, 48 => 0x48, 49 => 0x48, 50 => 0x50 },
- 'colortempcloudy' => { 38 => 0x22, 39 => 0x37, 40 => 0x31, 41 => 0xa4, 42 => 0xdb, 43 => 0x35, 44 => 0x5c, 47 => 0x75, 48 => 0x8e, 49 => 0x93, 50 => 0x96, 372 => 0x55 },
+ 'colortempcloudy' => { 38 => 0x22, 39 => 0x37, 40 => 0x31, 41 => 0xa4, 42 => 0xdb, 43 => 0x35, 44 => 0x5c, 47 => 0x75, 48 => 0x8e, 49 => 0x93, 50 => 0x96, 375 => 0x55 },
'colortempcustom' => { 44 => 0x84 },
'colortempcustom1' => { 40 => 0x45 },
'colortempcustom2' => { 40 => 0x4a },
- 'colortempdaylight' => { 38 => 0x18, 39 => 0x27, 40 => 0x27, 41 => 0x9a, 42 => 0xd1, 43 => 0x2b, 44 => 0x52, 47 => 0x6b, 48 => 0x84, 49 => 0x89, 50 => 0x8c, 372 => 0x53 },
- 'colortemperature' => { 7 => 0x73, 8 => [0x48,0x4e], 9 => 0xc0, 10 => 0x37, 11 => 0x62, 12 => 0x37, 13 => 0x7c, 14 => 0x73, 15 => 0x73, 16 => 0x77, 17 => 0x73, 18 => 0x7c, 19 => 0x58, 20 => 0x73, 21 => 0xc0, 22 => 0x7f, 23 => 0x7d, 24 => 0xc0, 25 => 0xc6, 26 => 0xc7, 27 => 0x135, 28 => 0x7b, 29 => 0x13a, 64 => 0xae, 74 => 0x9, 97 => 0x10ae, 127 => 0x1005, 138 => 0x846, 156 => 'ColorTemperature', 182 => [0x6e,0x49], 183 => 0x3f, 184 => [0x39,0x5e], 186 => 0x10b, 189 => [0x3c,0x4c,0x4e], 332 => 0x321, 372 => 0x50, 404 => 0x1308, 437 => 0xb021, 496 => 'Temperature', 498 => 'Temperature' },
- 'colortemperatureadj' => { 472 => 0x8013 },
+ 'colortempdaylight' => { 38 => 0x18, 39 => 0x27, 40 => 0x27, 41 => 0x9a, 42 => 0xd1, 43 => 0x2b, 44 => 0x52, 47 => 0x6b, 48 => 0x84, 49 => 0x89, 50 => 0x8c, 375 => 0x53 },
+ 'colortemperature' => { 7 => 0x73, 8 => [0x48,0x4e], 9 => 0xc0, 10 => 0x37, 11 => 0x62, 12 => 0x37, 13 => 0x7c, 14 => 0x73, 15 => 0x73, 16 => 0x77, 17 => 0x73, 18 => 0x7c, 19 => 0x58, 20 => 0x73, 21 => 0xc0, 22 => 0x7f, 23 => 0x7d, 24 => 0xc0, 25 => 0xc6, 26 => 0xc7, 27 => 0x135, 28 => 0x7b, 29 => 0x13a, 64 => 0xae, 74 => 0x9, 97 => 0x10ae, 127 => 0x1005, 138 => 0x846, 156 => 'ColorTemperature', 182 => [0x6e,0x49], 183 => 0x3f, 184 => [0x39,0x5e], 186 => 0x10b, 189 => [0x3c,0x4c,0x4e], 335 => 0x321, 375 => 0x50, 407 => 0x1308, 440 => 0xb021, 500 => 'Temperature', 502 => 'Temperature' },
+ 'colortemperatureadj' => { 476 => 0x8013 },
'colortemperatureauto' => { 234 => 0x4f },
- 'colortemperaturebg' => { 319 => 0x1013 },
- 'colortemperaturecustom' => { 424 => 0xc, 425 => 0xb },
- 'colortemperaturerg' => { 319 => 0x1014 },
- 'colortemperatureset' => { 424 => 0x7, 425 => 0x6 },
- 'colortemperaturesetting' => { 184 => 0x25, 426 => 0x17, 442 => 0xe },
- 'colortempflash' => { 38 => 0x36, 39 => 0x57, 40 => 0x40, 41 => 0xb8, 42 => 0xef, 43 => 0x49, 44 => 0x70, 47 => 0x89, 48 => 0xa2, 49 => 0xa7, 50 => 0xaa, 372 => 0x5a },
+ 'colortemperaturebg' => { 322 => 0x1013 },
+ 'colortemperaturecustom' => { 427 => 0xc, 428 => 0xb },
+ 'colortemperaturerg' => { 322 => 0x1014 },
+ 'colortemperatureset' => { 427 => 0x7, 428 => 0x6 },
+ 'colortemperaturesetting' => { 184 => 0x25, 429 => 0x17, 445 => 0xe },
+ 'colortempflash' => { 38 => 0x36, 39 => 0x57, 40 => 0x40, 41 => 0xb8, 42 => 0xef, 43 => 0x49, 44 => 0x70, 47 => 0x89, 48 => 0xa2, 49 => 0xa7, 50 => 0xaa, 375 => 0x5a },
'colortempflashdata' => { 44 => 0x24a },
'colortempfluorescent' => { 38 => 0x2c, 39 => 0x47, 40 => 0x3b, 41 => 0xae, 42 => 0xe5, 43 => 0x3f, 44 => 0x66, 47 => 0x7f, 48 => 0x98, 49 => 0x9d, 50 => 0xa0 },
- 'colortempfluorescentd' => { 372 => 0x57 },
- 'colortempfluorescentn' => { 372 => 0x58 },
- 'colortempfluorescentw' => { 372 => 0x59 },
- 'colortempkelvin' => { 38 => 0x31, 39 => 0x4f, 41 => 0xb3, 42 => 0xea, 43 => 0x44, 44 => 0x6b, 47 => 0x84, 48 => 0x9d, 49 => 0xa2, 50 => 0xa5, 337 => 0x44, 404 => 0x1307 },
+ 'colortempfluorescentd' => { 375 => 0x57 },
+ 'colortempfluorescentn' => { 375 => 0x58 },
+ 'colortempfluorescentw' => { 375 => 0x59 },
+ 'colortempkelvin' => { 38 => 0x31, 39 => 0x4f, 41 => 0xb3, 42 => 0xea, 43 => 0x44, 44 => 0x6b, 47 => 0x84, 48 => 0x9d, 49 => 0xa2, 50 => 0xa5, 340 => 0x44, 407 => 0x1307 },
'colortempmeasured' => { 38 => 0xe, 39 => 0x17, 41 => 0x63, 42 => 0x77, 44 => 0x4d, 47 => 0x4d, 48 => 0x4d, 49 => 0x4d, 50 => 0x55 },
'colortemppc1' => { 43 => 0x94, 44 => 0x75 },
'colortemppc2' => { 43 => 0x99, 44 => 0x7a },
'colortemppc3' => { 43 => 0x9e, 44 => 0x7f },
- 'colortempshade' => { 38 => 0x1d, 39 => 0x2f, 40 => 0x2c, 41 => 0x9f, 42 => 0xd6, 43 => 0x30, 44 => 0x57, 47 => 0x70, 48 => 0x89, 49 => 0x8e, 50 => 0x91, 372 => 0x54 },
- 'colortemptungsten' => { 38 => 0x27, 39 => 0x3f, 40 => 0x36, 41 => 0xa9, 42 => 0xe0, 43 => 0x3a, 44 => 0x61, 47 => 0x7a, 48 => 0x93, 49 => 0x98, 50 => 0x9b, 372 => 0x56 },
+ 'colortempshade' => { 38 => 0x1d, 39 => 0x2f, 40 => 0x2c, 41 => 0x9f, 42 => 0xd6, 43 => 0x30, 44 => 0x57, 47 => 0x70, 48 => 0x89, 49 => 0x8e, 50 => 0x91, 375 => 0x54 },
+ 'colortemptungsten' => { 38 => 0x27, 39 => 0x3f, 40 => 0x36, 41 => 0xa9, 42 => 0xe0, 43 => 0x3a, 44 => 0x61, 47 => 0x7a, 48 => 0x93, 49 => 0x98, 50 => 0x9b, 375 => 0x56 },
'colortempunknown' => { 38 => 0x13, 39 => 0x1f, 41 => 0x68, 42 => 0x7c, 43 => 0x21, 47 => 0x52, 48 => 0x52, 49 => 0x52, 50 => 0x5a },
'colortempunknown10' => { 38 => 0x63, 39 => 0x9f, 41 => 0x95, 42 => 0xa9, 43 => 0x76, 47 => 0xa2, 48 => 0x7f, 49 => 0x7f, 50 => 0x87 },
'colortempunknown11' => { 38 => 0x68, 39 => 0xa7, 41 => 0xbd, 42 => [0xae,0xb3], 43 => 0x7b, 47 => 0xa7, 48 => 0xa7, 49 => 0x84, 50 => 0xaf },
@@ -1813,7 +1819,7 @@ my %tagLookup = (
'colortempunknown7' => { 38 => 0x54, 39 => 0x87, 41 => 0x86, 42 => 0x9a, 43 => 0x67, 47 => 0x93, 48 => 0x70, 49 => 0x70, 50 => 0x78 },
'colortempunknown8' => { 38 => 0x59, 39 => 0x8f, 41 => 0x8b, 42 => 0x9f, 43 => 0x6c, 47 => 0x98, 48 => 0x75, 49 => 0x75, 50 => 0x7d },
'colortempunknown9' => { 38 => 0x5e, 39 => 0x97, 41 => 0x90, 42 => 0xa4, 43 => 0x71, 47 => 0x9d, 48 => 0x7a, 49 => 0x7a, 50 => 0x82 },
- 'colortint' => { 336 => 0x35c },
+ 'colortint' => { 339 => 0x35c },
'colortone' => { 10 => 0x6f, 12 => 0x77, 34 => 0x2a, 51 => 0x2, 63 => 0x8 },
'colortoneadj' => { 103 => 0x20304, 108 => 0x11e },
'colortoneauto' => { 71 => 0x9c },
@@ -1827,62 +1833,63 @@ my %tagLookup = (
'colortoneuserdef2' => { 19 => 0x10a, 70 => 0xb4, 71 => 0xcc },
'colortoneuserdef3' => { 19 => 0x10b, 70 => 0xcc, 71 => 0xe4 },
'comlenblksize' => { 138 => 0xfde8 },
- 'commanddialplaybackmode' => { 312 => 0x1cb },
- 'commanddials' => { 307 => '5.1' },
- 'commanddialsaperturesetting' => { 296 => '17.3', 297 => '18.3', 299 => '18.3', 300 => '18.3', 305 => '33.3', 306 => '17.3', 309 => '18.3', 310 => '18.3' },
- 'commanddialschangemainsub' => { 296 => '17.2', 297 => '18.1', 299 => '18.1', 300 => '18.1', 305 => '33.2', 306 => '17.2', 309 => '18.1', 310 => '18.1' },
- 'commanddialsmenuandplayback' => { 296 => '17.4', 297 => '18.2', 299 => '18.2', 300 => '18.2', 305 => '33.4', 306 => '17.4', 309 => '18.2', 310 => '18.2' },
- 'commanddialsreverserotation' => { 296 => '17.1', 297 => '6.4', 299 => '6.2', 300 => '6.2', 301 => '16.2', 302 => '17.2', 305 => '33.1', 306 => '17.1', 309 => '6.2', 310 => '6.2', 311 => '18.1' },
- 'commanderchannel' => { 307 => '10.2', 308 => '25.2' },
- 'commandergroupa_ttl-aacomp' => { 307 => '13.1', 308 => '31.1' },
- 'commandergroupa_ttlcomp' => { 311 => '32.1' },
- 'commandergroupamanualoutput' => { 307 => '13.2', 308 => '28.2' },
- 'commandergroupamode' => { 307 => '11.2', 308 => '28.1' },
- 'commandergroupb_ttl-aacomp' => { 307 => '14.1', 308 => '32.1' },
- 'commandergroupb_ttlcomp' => { 311 => '33.1' },
- 'commandergroupbmanualoutput' => { 307 => '14.2', 308 => '29.2' },
- 'commandergroupbmode' => { 307 => '11.3', 308 => '29.1' },
- 'commanderinternalflash' => { 307 => '11.1', 308 => '27.1' },
- 'commanderinternalmanualoutput' => { 307 => '12.2', 308 => '27.2' },
- 'commanderinternalttlchannel' => { 305 => '18.2' },
- 'commanderinternalttlcomp' => { 307 => '12.1', 308 => '30.2', 311 => '31.2' },
- 'commanderinternalttlcompbuiltin' => { 305 => '20.1', 306 => '26.1' },
- 'commanderinternalttlcompgroupa' => { 305 => '21.1', 306 => '27.1' },
- 'commanderinternalttlcompgroupb' => { 305 => '22.1', 306 => '28.1' },
- 'comment' => { 0 => 0x2, 120 => 'Comment', 157 => 'Comment', 327 => 'Comment', 389 => "\xa9cmt", 391 => 'comment', 397 => "\xa9cmt" },
- 'compass' => { 407 => 0x4 },
- 'compatibleversion' => { 496 => 'CompatibleVersion', 498 => 'CompatibleVersion' },
- 'compilation' => { 389 => 'cpil' },
- 'compimageimagespersequence' => { 503 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesNumberOfImagesInSequences'] },
- 'compimagemaxexposureall' => { 503 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesMaxExposureTimesOfAll'] },
- 'compimagemaxexposureused' => { 503 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesMaxExposureTimesOfUsed'] },
- 'compimageminexposureall' => { 503 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesMinExposureTimesOfAll'] },
- 'compimageminexposureused' => { 503 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesMinExposureTimesOfUsed'] },
- 'compimagenumsequences' => { 503 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesNumberOfSequences'] },
- 'compimagesumexposureall' => { 503 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesSumOfExposureTimesOfAll'] },
- 'compimagesumexposureused' => { 503 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesSumOfExposureTimesOfUsed'] },
- 'compimagetotalexposureperiod' => { 503 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesTotalExposurePeriod'] },
- 'compimagevalues' => { 503 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesValues'] },
- 'complianceprofile' => { 515 => 'complianceProfile' },
- 'componentsconfiguration' => { 119 => 0x9101, 162 => 'Components', 502 => 'ComponentsConfiguration' },
+ 'commanddialplaybackmode' => { 313 => 0x1cb, 314 => 0x1cb, 315 => 0x1e3 },
+ 'commanddials' => { 308 => '5.1' },
+ 'commanddialsaperturesetting' => { 297 => '17.3', 298 => '18.3', 300 => '18.3', 301 => '18.3', 306 => '33.3', 307 => '17.3', 310 => '18.3', 311 => '18.3' },
+ 'commanddialschangemainsub' => { 297 => '17.2', 298 => '18.1', 300 => '18.1', 301 => '18.1', 306 => '33.2', 307 => '17.2', 310 => '18.1', 311 => '18.1' },
+ 'commanddialsmenuandplayback' => { 297 => '17.4', 298 => '18.2', 300 => '18.2', 301 => '18.2', 306 => '33.4', 307 => '17.4', 310 => '18.2', 311 => '18.2' },
+ 'commanddialsreverserotation' => { 297 => '17.1', 298 => '6.4', 300 => '6.2', 301 => '6.2', 302 => '16.2', 303 => '17.2', 306 => '33.1', 307 => '17.1', 310 => '6.2', 311 => '6.2', 312 => '18.1' },
+ 'commanderchannel' => { 308 => '10.2', 309 => '25.2' },
+ 'commandergroupa_ttl-aacomp' => { 308 => '13.1', 309 => '31.1' },
+ 'commandergroupa_ttlcomp' => { 312 => '32.1' },
+ 'commandergroupamanualoutput' => { 308 => '13.2', 309 => '28.2' },
+ 'commandergroupamode' => { 308 => '11.2', 309 => '28.1' },
+ 'commandergroupb_ttl-aacomp' => { 308 => '14.1', 309 => '32.1' },
+ 'commandergroupb_ttlcomp' => { 312 => '33.1' },
+ 'commandergroupbmanualoutput' => { 308 => '14.2', 309 => '29.2' },
+ 'commandergroupbmode' => { 308 => '11.3', 309 => '29.1' },
+ 'commanderinternalflash' => { 308 => '11.1', 309 => '27.1' },
+ 'commanderinternalmanualoutput' => { 308 => '12.2', 309 => '27.2' },
+ 'commanderinternalttlchannel' => { 306 => '18.2' },
+ 'commanderinternalttlcomp' => { 308 => '12.1', 309 => '30.2', 312 => '31.2' },
+ 'commanderinternalttlcompbuiltin' => { 306 => '20.1', 307 => '26.1' },
+ 'commanderinternalttlcompgroupa' => { 306 => '21.1', 307 => '27.1' },
+ 'commanderinternalttlcompgroupb' => { 306 => '22.1', 307 => '28.1' },
+ 'comment' => { 0 => 0x2, 120 => 'Comment', 157 => 'Comment', 330 => 'Comment', 392 => "\xa9cmt", 394 => 'comment', 400 => "\xa9cmt" },
+ 'compass' => { 410 => 0x4 },
+ 'compatibleversion' => { 500 => 'CompatibleVersion', 502 => 'CompatibleVersion' },
+ 'compilation' => { 392 => 'cpil' },
+ 'compimageimagespersequence' => { 507 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesNumberOfImagesInSequences'] },
+ 'compimagemaxexposureall' => { 507 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesMaxExposureTimesOfAll'] },
+ 'compimagemaxexposureused' => { 507 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesMaxExposureTimesOfUsed'] },
+ 'compimageminexposureall' => { 507 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesMinExposureTimesOfAll'] },
+ 'compimageminexposureused' => { 507 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesMinExposureTimesOfUsed'] },
+ 'compimagenumsequences' => { 507 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesNumberOfSequences'] },
+ 'compimagesumexposureall' => { 507 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesSumOfExposureTimesOfAll'] },
+ 'compimagesumexposureused' => { 507 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesSumOfExposureTimesOfUsed'] },
+ 'compimagetotalexposureperiod' => { 507 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesTotalExposurePeriod'] },
+ 'compimagevalues' => { 507 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesValues'] },
+ 'complianceprofile' => { 519 => 'complianceProfile' },
+ 'componentsconfiguration' => { 119 => 0x9101, 162 => 'Components', 506 => 'ComponentsConfiguration' },
'componentversion' => { 97 => 0x80c },
- 'composer' => { 179 => 'WM/Composer', 389 => ["\xa9com","\xa9wrt"], 397 => ["\xa9com","\xa9wrt"], 525 => 'composer' },
- 'composerkeywords' => { 397 => "\xa9cok" },
- 'compositeimage' => { 119 => 0xa460, 503 => 'CompositeImage' },
- 'compositeimagecount' => { 119 => 0xa461, 503 => 'CompositeImageCount' },
- 'compositeimageexposuretimes' => { 119 => 0xa462, 503 => 'CompositeImageExposureTimes' },
- 'composition' => { 486 => 'Composition' },
- 'compositionadjust' => { 371 => '0.1' },
- 'compositionadjustrotation' => { 371 => 0x7 },
- 'compositionadjustx' => { 371 => 0x5 },
- 'compositionadjusty' => { 371 => 0x6 },
- 'compressedbitsperpixel' => { 119 => 0x9102, 502 => 'CompressedBitsPerPixel' },
- 'compressedimagesize' => { 186 => 0x40, 319 => 0x40 },
- 'compression' => { 119 => 0x103, 342 => 0xb, 521 => 'Compression' },
- 'compressionfactor' => { 314 => 0x50d },
+ 'composer' => { 179 => 'WM/Composer', 392 => ["\xa9com","\xa9wrt"], 400 => ["\xa9com","\xa9wrt"], 529 => 'composer' },
+ 'composerid' => { 392 => 'cmID' },
+ 'composerkeywords' => { 400 => "\xa9cok" },
+ 'compositeimage' => { 119 => 0xa460, 507 => 'CompositeImage' },
+ 'compositeimagecount' => { 119 => 0xa461, 507 => 'CompositeImageCount' },
+ 'compositeimageexposuretimes' => { 119 => 0xa462, 507 => 'CompositeImageExposureTimes' },
+ 'composition' => { 490 => 'Composition' },
+ 'compositionadjust' => { 374 => '0.1' },
+ 'compositionadjustrotation' => { 374 => 0x7 },
+ 'compositionadjustx' => { 374 => 0x5 },
+ 'compositionadjusty' => { 374 => 0x6 },
+ 'compressedbitsperpixel' => { 119 => 0x9102, 506 => 'CompressedBitsPerPixel' },
+ 'compressedimagesize' => { 186 => 0x40, 322 => 0x40 },
+ 'compression' => { 119 => 0x103, 345 => 0xb, 525 => 'Compression' },
+ 'compressionfactor' => { 317 => 0x50d },
'compressionformat' => { 63 => 0x4 },
- 'compressionratio' => { 162 => 'Compression', 319 => 0x1034 },
- 'compressorversion' => { 397 => 'CNCV' },
+ 'compressionratio' => { 162 => 'Compression', 322 => 0x1034 },
+ 'compressorversion' => { 400 => 'CNCV' },
'condadobvfactor' => { 138 => 0xf3e },
'condadodaybvthresh' => { 138 => 0xf3c },
'condadodayoffsets' => { 138 => 0xf42 },
@@ -1892,216 +1899,217 @@ my %tagLookup = (
'condadoneurange' => { 138 => 0xf3d },
'condadotunoffsets' => { 138 => 0xf43 },
'condadotunthresh' => { 138 => 0xf40 },
- 'conductor' => { 179 => 'WM/Conductor', 389 => "\xa9con" },
- 'confidence' => { 481 => 'Confidence' },
- 'confidencelevel' => { 492 => 'ConfidenceLevel' },
- 'confidencemime' => { 481 => 'ConfidenceMime' },
- 'constrainedcropheight' => { 108 => 0x266, 383 => 0xd6 },
- 'constrainedcropwidth' => { 108 => 0x262, 383 => 0xd5 },
+ 'conductor' => { 179 => 'WM/Conductor', 392 => "\xa9con" },
+ 'confidence' => { 485 => 'Confidence' },
+ 'confidencelevel' => { 496 => 'ConfidenceLevel' },
+ 'confidencemime' => { 485 => 'ConfidenceMime' },
+ 'constrainedcropheight' => { 108 => 0x266, 386 => 0xd6 },
+ 'constrainedcropwidth' => { 108 => 0x262, 386 => 0xd5 },
'contact' => { 131 => 0x76 },
- 'contactinfo' => { 496 => 'ContactInfo', 498 => 'ContactInfo', 514 => 'contactInfo' },
- 'container' => { 475 => 'Container' },
- 'containerdirectory' => { 475 => [\'Container','ContainerDirectory'] },
- 'containerdirectoryitem' => { 475 => [\'Container','ContainerDirectoryItem'] },
- 'containerdirectoryitemdatauri' => { 475 => [\'Container','ContainerDirectoryItemDataURI'] },
- 'containerdirectoryitemlength' => { 475 => [\'Container','ContainerDirectoryItemLength'] },
- 'containerdirectoryitemmime' => { 475 => [\'Container','ContainerDirectoryItemMime'] },
- 'containerdirectoryitempadding' => { 475 => [\'Container','ContainerDirectoryItemPadding'] },
- 'containerformat' => { 510 => 'ContainerFormat' },
- 'containerformatidentifier' => { 510 => [\'ContainerFormat','ContainerFormatIdentifier'] },
- 'containerformatname' => { 510 => [\'ContainerFormat','ContainerFormatName'] },
- 'contentcreatedate' => { 389 => "\xa9day", 397 => ['@day',"\xa9day"] },
+ 'contactinfo' => { 500 => 'ContactInfo', 502 => 'ContactInfo', 518 => 'contactInfo' },
+ 'container' => { 479 => 'Container' },
+ 'containerdirectory' => { 479 => [\'Container','ContainerDirectory'] },
+ 'containerdirectoryitem' => { 479 => [\'Container','ContainerDirectoryItem'] },
+ 'containerdirectoryitemdatauri' => { 479 => [\'Container','ContainerDirectoryItemDataURI'] },
+ 'containerdirectoryitemlength' => { 479 => [\'Container','ContainerDirectoryItemLength'] },
+ 'containerdirectoryitemmime' => { 479 => [\'Container','ContainerDirectoryItemMime'] },
+ 'containerdirectoryitempadding' => { 479 => [\'Container','ContainerDirectoryItemPadding'] },
+ 'containerformat' => { 514 => 'ContainerFormat' },
+ 'containerformatidentifier' => { 514 => [\'ContainerFormat','ContainerFormatIdentifier'] },
+ 'containerformatname' => { 514 => [\'ContainerFormat','ContainerFormatName'] },
+ 'contentcreatedate' => { 392 => "\xa9day", 400 => ['@day',"\xa9day"] },
'contentdistributor' => { 179 => 'WM/ContentDistributor' },
- 'contentdistributorid' => { 397 => 'cdis' },
- 'contentid' => { 397 => 'ccid' },
+ 'contentdistributorid' => { 400 => 'cdis' },
+ 'contentid' => { 400 => 'ccid' },
+ 'contentidentifier' => { 1 => 0x11, 394 => 'content.identifier' },
'contentlocationcode' => { 131 => 0x1a },
'contentlocationname' => { 131 => 0x1b },
- 'contenttype' => { 515 => 'contentType' },
+ 'contenttype' => { 519 => 'contentType' },
'continuousbracketing' => { 184 => 0x20 },
'continuousdrive' => { 34 => 0x5 },
- 'continuousmodedisplay' => { 312 => 0x51 },
- 'continuousmodeliveview' => { 310 => '77.2' },
+ 'continuousmodedisplay' => { 313 => 0x51, 314 => 0x51, 315 => 0x51 },
+ 'continuousmodeliveview' => { 311 => '77.2' },
'continuousshootingspeed' => { 84 => 0x610 },
'continuousshotlimit' => { 84 => 0x611 },
- 'contrast' => { 10 => 0x73, 12 => 0x75, 34 => 0xd, 112 => 0xc, 113 => [0x3012,0x20], 119 => [0xa408,0xfe54], 127 => [0x1004,0x1006], 156 => 'Contrast', 176 => 'Contrast', 181 => 0x20, 182 => 0x31, 183 => 0x27, 184 => 0x19, 189 => 0x2, 248 => 0x33, 249 => 0x37, 250 => 0x3f, 319 => 0x1029, 337 => 0x39, 339 => 0x300a, 372 => 0x20, 379 => 0xc, 391 => 'player.movie.visual.contrast', 398 => 0x24, 400 => 0x52, 404 => 0x1012, 414 => 0xd, 424 => 0x1d, 425 => 0x1a, 437 => 0x2004, 496 => 'Contrast', 498 => 'Contrast', 502 => 'Contrast' },
- 'contrast2012' => { 496 => 'Contrast2012', 498 => 'Contrast2012' },
- 'contrastadj' => { 103 => 0x20303, 108 => 0x115, 292 => 0x2c, 472 => 0x8017 },
+ 'contrast' => { 10 => 0x73, 12 => 0x75, 34 => 0xd, 112 => 0xc, 113 => [0x3012,0x20], 119 => [0xa408,0xfe54], 127 => [0x1004,0x1006], 156 => 'Contrast', 176 => 'Contrast', 181 => 0x20, 182 => 0x31, 183 => 0x27, 184 => 0x19, 189 => 0x2, 249 => 0x33, 250 => 0x37, 251 => 0x3f, 322 => 0x1029, 340 => 0x39, 342 => 0x300a, 375 => 0x20, 382 => 0xc, 394 => 'player.movie.visual.contrast', 401 => 0x24, 403 => 0x52, 407 => 0x1012, 417 => 0xd, 427 => 0x1d, 428 => 0x1a, 440 => 0x2004, 500 => 'Contrast', 502 => 'Contrast', 506 => 'Contrast' },
+ 'contrast2012' => { 500 => 'Contrast2012', 502 => 'Contrast2012' },
+ 'contrastadj' => { 103 => 0x20303, 108 => 0x115, 293 => 0x2c, 476 => 0x8017 },
'contrastauto' => { 71 => 0x90 },
'contrastcurve' => { 234 => 0x8c },
'contrastdetectaf' => { 193 => 0x4 },
- 'contrastdetectafarea' => { 372 => 0x231 },
+ 'contrastdetectafarea' => { 375 => 0x231 },
'contrastdetectafinfocus' => { 193 => [0x1c,0x52] },
'contrastfaithful' => { 19 => 0xec, 70 => 0x60, 71 => 0x60 },
- 'contrasthighlight' => { 372 => 0x6d },
- 'contrasthighlightshadowadj' => { 372 => 0x6f },
+ 'contrasthighlight' => { 375 => 0x6d },
+ 'contrasthighlightshadowadj' => { 375 => 0x6f },
'contrastlandscape' => { 19 => 0xea, 70 => 0x30, 71 => 0x30 },
- 'contrastmode' => { 337 => 0x2c },
+ 'contrastmode' => { 340 => 0x2c },
'contrastmonochrome' => { 19 => 0xed, 70 => 0x78, 71 => 0x78 },
'contrastneutral' => { 19 => 0xeb, 70 => 0x48, 71 => 0x48 },
'contrastportrait' => { 19 => 0xe9, 70 => 0x18, 71 => 0x18 },
- 'contrastsetting' => { 314 => 0x505, 322 => 0x1012, 426 => 0x10, 442 => 0x8 },
- 'contrastshadow' => { 372 => 0x6e },
+ 'contrastsetting' => { 317 => 0x505, 325 => 0x1012, 429 => 0x10, 445 => 0x8 },
+ 'contrastshadow' => { 375 => 0x6e },
'contraststandard' => { 19 => 0xe8, 70 => 0x0, 71 => 0x0 },
'contrastuserdef1' => { 19 => 0xee, 70 => 0x90, 71 => 0xa8 },
'contrastuserdef2' => { 19 => 0xef, 70 => 0xa8, 71 => 0xc0 },
'contrastuserdef3' => { 19 => 0xf0, 70 => 0xc0, 71 => 0xd8 },
- 'contributedmedia' => { 525 => 'contributedMedia' },
- 'contributedmediaduration' => { 525 => [\'contributedMedia','contributedMediaDuration'] },
- 'contributedmediadurationscale' => { 525 => [\'contributedMedia','contributedMediaDurationScale'] },
- 'contributedmediadurationvalue' => { 525 => [\'contributedMedia','contributedMediaDurationValue'] },
- 'contributedmediamanaged' => { 525 => [\'contributedMedia','contributedMediaManaged'] },
- 'contributedmediapath' => { 525 => [\'contributedMedia','contributedMediaPath'] },
- 'contributedmediastarttime' => { 525 => [\'contributedMedia','contributedMediaStartTime'] },
- 'contributedmediastarttimescale' => { 525 => [\'contributedMedia','contributedMediaStartTimeScale'] },
- 'contributedmediastarttimevalue' => { 525 => [\'contributedMedia','contributedMediaStartTimeValue'] },
- 'contributedmediatrack' => { 525 => [\'contributedMedia','contributedMediaTrack'] },
- 'contributedmediawebstatement' => { 525 => [\'contributedMedia','contributedMediaWebStatement'] },
- 'contributor' => { 499 => 'contributor', 510 => 'Contributor' },
- 'contributoridentifier' => { 510 => [\'Contributor','ContributorIdentifier'] },
- 'contributorname' => { 510 => [\'Contributor','ContributorName'] },
- 'contributorrole' => { 510 => [\'Contributor','ContributorRole'] },
+ 'contributedmedia' => { 529 => 'contributedMedia' },
+ 'contributedmediaduration' => { 529 => [\'contributedMedia','contributedMediaDuration'] },
+ 'contributedmediadurationscale' => { 529 => [\'contributedMedia','contributedMediaDurationScale'] },
+ 'contributedmediadurationvalue' => { 529 => [\'contributedMedia','contributedMediaDurationValue'] },
+ 'contributedmediamanaged' => { 529 => [\'contributedMedia','contributedMediaManaged'] },
+ 'contributedmediapath' => { 529 => [\'contributedMedia','contributedMediaPath'] },
+ 'contributedmediastarttime' => { 529 => [\'contributedMedia','contributedMediaStartTime'] },
+ 'contributedmediastarttimescale' => { 529 => [\'contributedMedia','contributedMediaStartTimeScale'] },
+ 'contributedmediastarttimevalue' => { 529 => [\'contributedMedia','contributedMediaStartTimeValue'] },
+ 'contributedmediatrack' => { 529 => [\'contributedMedia','contributedMediaTrack'] },
+ 'contributedmediawebstatement' => { 529 => [\'contributedMedia','contributedMediaWebStatement'] },
+ 'contributor' => { 503 => 'contributor', 514 => 'Contributor' },
+ 'contributoridentifier' => { 514 => [\'Contributor','ContributorIdentifier'] },
+ 'contributorname' => { 514 => [\'Contributor','ContributorName'] },
+ 'contributorrole' => { 514 => [\'Contributor','ContributorRole'] },
'contributors' => { 157 => 'Contributors' },
'controldialset' => { 184 => 0x46 },
- 'controlledvocabularyterm' => { 510 => 'CVterm' },
- 'controllerboardversion' => { 332 => 0x332 },
+ 'controlledvocabularyterm' => { 514 => 'CVterm' },
+ 'controllerboardversion' => { 335 => 0x332 },
'controlmode' => { 77 => 0x12 },
- 'controlringresponse' => { 312 => 0x1d5 },
+ 'controlringresponse' => { 313 => 0x1d5, 314 => 0x1d5, 315 => 0x1ed },
'controlringrotation' => { 84 => 0x712 },
- 'conversionlens' => { 315 => 0x403, 337 => 0x35 },
- 'converter' => { 119 => 0xfe4d, 279 => 0xb, 496 => 'Converter', 498 => 'Converter' },
- 'converttograyscale' => { 496 => 'ConvertToGrayscale', 498 => 'ConvertToGrayscale' },
- 'cookingequipment' => { 517 => 'cookingEquipment' },
- 'cookingmethod' => { 517 => 'cookingMethod' },
- 'copyright' => { 0 => 0x3, 119 => 0x8298, 157 => 'Copyright', 327 => 'Copyright', 342 => 0x8298, 372 => 0x22f, 388 => 'Copyright', 389 => ['cprt',"\xa9cpy"], 391 => 'copyright', 397 => ['cprt',"\xa9cpy"], 496 => 'Copyright', 498 => 'Copyright', 512 => 'Copyright', 518 => 'copyright', 521 => 'Copyright', 525 => 'copyright' },
- 'copyrightflag' => { 386 => 0x40a },
+ 'conversionlens' => { 318 => 0x403, 340 => 0x35 },
+ 'converter' => { 119 => 0xfe4d, 280 => 0xb, 500 => 'Converter', 502 => 'Converter' },
+ 'converttograyscale' => { 500 => 'ConvertToGrayscale', 502 => 'ConvertToGrayscale' },
+ 'cookingequipment' => { 521 => 'cookingEquipment' },
+ 'cookingmethod' => { 521 => 'cookingMethod' },
+ 'copyright' => { 0 => 0x3, 119 => 0x8298, 157 => 'Copyright', 330 => 'Copyright', 345 => 0x8298, 375 => 0x22f, 391 => 'Copyright', 392 => ['cprt',"\xa9cpy"], 394 => 'copyright', 400 => ['cprt',"\xa9cpy"], 500 => 'Copyright', 502 => 'Copyright', 516 => 'Copyright', 522 => 'copyright', 525 => 'Copyright', 529 => 'copyright' },
+ 'copyrightflag' => { 389 => 0x40a },
'copyrightnotice' => { 131 => 0x74 },
- 'copyrightowner' => { 324 => 'CopyrightOwner' },
- 'copyrightownerid' => { 324 => [\'CopyrightOwner','CopyrightOwnerCopyrightOwnerID'] },
- 'copyrightownerimageid' => { 324 => 'CopyrightOwnerImageID' },
- 'copyrightownername' => { 324 => [\'CopyrightOwner','CopyrightOwnerCopyrightOwnerName'] },
- 'copyrightregistrationnumber' => { 324 => 'CopyrightRegistrationNumber' },
- 'copyrightstatus' => { 324 => 'CopyrightStatus' },
- 'copyrightyear' => { 510 => 'CopyrightYear', 515 => 'copyrightYear' },
- 'coringfilter' => { 318 => 0x310, 319 => 0x102d, 322 => 0x310 },
- 'coringvalues' => { 318 => 0x311, 322 => 0x311 },
- 'corporateentity' => { 515 => 'corporateEntity' },
- 'correlatedcolortemp' => { 336 => 0x35b },
- 'country' => { 161 => 'Country', 337 => 0x69, 513 => 'Country' },
+ 'copyrightowner' => { 327 => 'CopyrightOwner' },
+ 'copyrightownerid' => { 327 => [\'CopyrightOwner','CopyrightOwnerCopyrightOwnerID'] },
+ 'copyrightownerimageid' => { 327 => 'CopyrightOwnerImageID' },
+ 'copyrightownername' => { 327 => [\'CopyrightOwner','CopyrightOwnerCopyrightOwnerName'] },
+ 'copyrightregistrationnumber' => { 327 => 'CopyrightRegistrationNumber' },
+ 'copyrightstatus' => { 327 => 'CopyrightStatus' },
+ 'copyrightyear' => { 514 => 'CopyrightYear', 519 => 'copyrightYear' },
+ 'coringfilter' => { 321 => 0x310, 322 => 0x102d, 325 => 0x310 },
+ 'coringvalues' => { 321 => 0x311, 325 => 0x311 },
+ 'corporateentity' => { 519 => 'corporateEntity' },
+ 'correlatedcolortemp' => { 339 => 0x35b },
+ 'country' => { 161 => 'Country', 340 => 0x69, 517 => 'Country' },
'country-primarylocationcode' => { 131 => 0x64 },
'country-primarylocationname' => { 131 => 0x65 },
- 'countrycode' => { 233 => 0x5, 384 => 'CountryCode', 509 => 'CountryCode' },
- 'course' => { 517 => 'course' },
- 'coverage' => { 499 => 'coverage' },
- 'coverart' => { 389 => 'covr' },
- 'coverdate' => { 515 => 'coverDate' },
- 'coverdisplaydate' => { 515 => 'coverDisplayDate' },
- 'coveruri' => { 397 => 'cvru' },
- 'cpufirmwareversion' => { 372 => 0x28 },
- 'crc32' => { 500 => 'crc32' },
- 'createdate' => { 119 => 0x9004, 157 => 'CreateDate', 323 => 'CreationDate', 327 => 'create-date', 388 => 'CreationDate', 394 => 0x1, 523 => 'CreateDate' },
- 'creationdate' => { 391 => 'creationdate', 512 => 'CreationDate', 515 => 'creationDate' },
- 'creationtime' => { 327 => 'Creation Time' },
- 'creativestyle' => { 424 => 0x1a, 425 => 0x18, 435 => 0x41, 437 => 0xb020, 468 => 0x4a },
- 'creativestylesetting' => { 426 => 0xf, 442 => 0x7 },
- 'creativestylewaschanged' => { 472 => 0x8001 },
- 'creator' => { 323 => 'Creator', 388 => 'Creator', 499 => 'creator', 510 => 'Creator', 512 => 'Creator' },
- 'creatoraddress' => { 509 => [\'CreatorContactInfo','CreatorContactInfoCiAdrExtadr'] },
+ 'countrycode' => { 233 => 0x5, 387 => 'CountryCode', 513 => 'CountryCode' },
+ 'course' => { 521 => 'course' },
+ 'coverage' => { 503 => 'coverage' },
+ 'coverart' => { 392 => 'covr' },
+ 'coverdate' => { 519 => 'coverDate' },
+ 'coverdisplaydate' => { 519 => 'coverDisplayDate' },
+ 'coveruri' => { 400 => 'cvru' },
+ 'cpufirmwareversion' => { 375 => 0x28 },
+ 'crc32' => { 504 => 'crc32' },
+ 'createdate' => { 119 => 0x9004, 157 => 'CreateDate', 326 => 'CreationDate', 330 => 'create-date', 391 => 'CreationDate', 397 => 0x1, 527 => 'CreateDate' },
+ 'creationdate' => { 394 => 'creationdate', 516 => 'CreationDate', 519 => 'creationDate' },
+ 'creationtime' => { 330 => 'Creation Time' },
+ 'creativestyle' => { 427 => 0x1a, 428 => 0x18, 438 => 0x41, 440 => 0xb020, 472 => 0x4a },
+ 'creativestylesetting' => { 429 => 0xf, 445 => 0x7 },
+ 'creativestylewaschanged' => { 476 => 0x8001 },
+ 'creator' => { 326 => 'Creator', 391 => 'Creator', 503 => 'creator', 514 => 'Creator', 516 => 'Creator' },
+ 'creatoraddress' => { 513 => [\'CreatorContactInfo','CreatorContactInfoCiAdrExtadr'] },
'creatorappid' => { 178 => 'CreatorAppId' },
- 'creatorcity' => { 509 => [\'CreatorContactInfo','CreatorContactInfoCiAdrCity'] },
- 'creatorcontactinfo' => { 509 => 'CreatorContactInfo' },
- 'creatorcountry' => { 509 => [\'CreatorContactInfo','CreatorContactInfoCiAdrCtry'] },
- 'creatoridentifier' => { 510 => [\'Creator','CreatorIdentifier'] },
- 'creatorname' => { 510 => [\'Creator','CreatorName'] },
+ 'creatorcity' => { 513 => [\'CreatorContactInfo','CreatorContactInfoCiAdrCity'] },
+ 'creatorcontactinfo' => { 513 => 'CreatorContactInfo' },
+ 'creatorcountry' => { 513 => [\'CreatorContactInfo','CreatorContactInfoCiAdrCtry'] },
+ 'creatoridentifier' => { 514 => [\'Creator','CreatorIdentifier'] },
+ 'creatorname' => { 514 => [\'Creator','CreatorName'] },
'creatoropenwithuioptions' => { 178 => 'CreatorOpenWithUIOptions' },
- 'creatorpostalcode' => { 509 => [\'CreatorContactInfo','CreatorContactInfoCiAdrPcode'] },
- 'creatorregion' => { 509 => [\'CreatorContactInfo','CreatorContactInfoCiAdrRegion'] },
- 'creatorrole' => { 510 => [\'Creator','CreatorRole'] },
- 'creatortool' => { 523 => 'CreatorTool' },
- 'creatorworkemail' => { 509 => [\'CreatorContactInfo','CreatorContactInfoCiEmailWork'] },
- 'creatorworktelephone' => { 509 => [\'CreatorContactInfo','CreatorContactInfoCiTelWork'] },
- 'creatorworkurl' => { 509 => [\'CreatorContactInfo','CreatorContactInfoCiUrlWork'] },
- 'credit' => { 131 => 0x6e, 513 => 'Credit' },
- 'creditline' => { 518 => 'creditLine' },
- 'creditlinereq' => { 528 => 'CreditLineReq' },
- 'creditlinerequired' => { 324 => 'CreditLineRequired' },
+ 'creatorpostalcode' => { 513 => [\'CreatorContactInfo','CreatorContactInfoCiAdrPcode'] },
+ 'creatorregion' => { 513 => [\'CreatorContactInfo','CreatorContactInfoCiAdrRegion'] },
+ 'creatorrole' => { 514 => [\'Creator','CreatorRole'] },
+ 'creatortool' => { 527 => 'CreatorTool' },
+ 'creatorworkemail' => { 513 => [\'CreatorContactInfo','CreatorContactInfoCiEmailWork'] },
+ 'creatorworktelephone' => { 513 => [\'CreatorContactInfo','CreatorContactInfoCiTelWork'] },
+ 'creatorworkurl' => { 513 => [\'CreatorContactInfo','CreatorContactInfoCiUrlWork'] },
+ 'credit' => { 131 => 0x6e, 517 => 'Credit' },
+ 'creditline' => { 522 => 'creditLine' },
+ 'creditlinereq' => { 532 => 'CreditLineReq' },
+ 'creditlinerequired' => { 327 => 'CreditLineRequired' },
'cropactive' => { 101 => 0x0, 108 => 0x244 },
- 'cropangle' => { 496 => 'CropAngle', 498 => 'CropAngle' },
- 'croparea' => { 234 => 0x45, 472 => 0x9011 },
+ 'cropangle' => { 500 => 'CropAngle', 502 => 'CropAngle' },
+ 'croparea' => { 234 => 0x45, 476 => 0x9011 },
'cropaspectratio' => { 103 => 0x30101, 108 => 0x260 },
'cropaspectratiocustom' => { 103 => 0x30102 },
- 'cropbottom' => { 123 => 0x9, 284 => 0x36, 342 => 0x31, 383 => 0xdc, 496 => 'CropBottom', 498 => 'CropBottom' },
+ 'cropbottom' => { 123 => 0x9, 285 => 0x36, 345 => 0x31, 386 => 0xdc, 500 => 'CropBottom', 502 => 'CropBottom' },
'cropbottommargin' => { 53 => 0x3 },
'cropcircleactive' => { 109 => 0xd6 },
'cropcircleradius' => { 109 => 0xd9 },
'cropcirclex' => { 109 => 0xd7 },
'cropcircley' => { 109 => 0xd8 },
- 'cropconstraintowarp' => { 496 => 'CropConstrainToWarp', 498 => 'CropConstrainToWarp' },
- 'croph' => { 490 => 'CropH' },
- 'cropheight' => { 101 => 0x6, 108 => 0x24c, 318 => 0x615, 322 => 0x615, 496 => 'CropHeight', 498 => 'CropHeight' },
+ 'cropconstraintowarp' => { 500 => 'CropConstrainToWarp', 502 => 'CropConstrainToWarp' },
+ 'croph' => { 494 => 'CropH' },
+ 'cropheight' => { 101 => 0x6, 108 => 0x24c, 321 => 0x615, 325 => 0x615, 500 => 'CropHeight', 502 => 'CropHeight' },
'crophispeed' => { 234 => 0x1b },
- 'cropleft' => { 108 => 0x246, 123 => 0x6, 284 => 0x1e, 318 => 0x612, 322 => 0x612, 342 => 0x30, 383 => 0xd9, 496 => 'CropLeft', 498 => 'CropLeft' },
+ 'cropleft' => { 108 => 0x246, 123 => 0x6, 285 => 0x1e, 321 => 0x612, 325 => 0x612, 345 => 0x30, 386 => 0xd9, 500 => 'CropLeft', 502 => 'CropLeft' },
'cropleftmargin' => { 53 => 0x0 },
- 'cropmode' => { 127 => 0x104d, 404 => 0x1018 },
+ 'cropmode' => { 127 => 0x104d, 407 => 0x1018 },
'croporiginalheight' => { 101 => 0xb },
'croporiginalwidth' => { 101 => 0xa },
- 'cropoutputheight' => { 284 => 0xce },
- 'cropoutputheightinches' => { 284 => 0x96 },
- 'cropoutputpixels' => { 284 => 0xd6 },
- 'cropoutputresolution' => { 284 => 0xb6 },
- 'cropoutputscale' => { 284 => 0xbe },
- 'cropoutputwidth' => { 284 => 0xc6 },
- 'cropoutputwidthinches' => { 284 => 0x8e },
- 'croppedareaimageheightpixels' => { 484 => 'CroppedAreaImageHeightPixels', 485 => 'CroppedAreaImageHeightPixels' },
- 'croppedareaimagewidthpixels' => { 484 => 'CroppedAreaImageWidthPixels', 485 => 'CroppedAreaImageWidthPixels' },
- 'croppedarealeftpixels' => { 484 => 'CroppedAreaLeftPixels', 485 => 'CroppedAreaLeftPixels' },
- 'croppedareatoppixels' => { 484 => 'CroppedAreaTopPixels', 485 => 'CroppedAreaTopPixels' },
- 'croppedimageheight' => { 5 => 0x2, 404 => 0x1604 },
+ 'cropoutputheight' => { 285 => 0xce },
+ 'cropoutputheightinches' => { 285 => 0x96 },
+ 'cropoutputpixels' => { 285 => 0xd6 },
+ 'cropoutputresolution' => { 285 => 0xb6 },
+ 'cropoutputscale' => { 285 => 0xbe },
+ 'cropoutputwidth' => { 285 => 0xc6 },
+ 'cropoutputwidthinches' => { 285 => 0x8e },
+ 'croppedareaimageheightpixels' => { 488 => 'CroppedAreaImageHeightPixels', 489 => 'CroppedAreaImageHeightPixels' },
+ 'croppedareaimagewidthpixels' => { 488 => 'CroppedAreaImageWidthPixels', 489 => 'CroppedAreaImageWidthPixels' },
+ 'croppedarealeftpixels' => { 488 => 'CroppedAreaLeftPixels', 489 => 'CroppedAreaLeftPixels' },
+ 'croppedareatoppixels' => { 488 => 'CroppedAreaTopPixels', 489 => 'CroppedAreaTopPixels' },
+ 'croppedimageheight' => { 5 => 0x2, 407 => 0x1604 },
'croppedimageleft' => { 5 => 0x3 },
'croppedimagetop' => { 5 => 0x4 },
- 'croppedimagewidth' => { 5 => 0x1, 404 => 0x1603 },
- 'cropping' => { 472 => 0x9010 },
- 'cropright' => { 123 => 0x8, 284 => 0x2e, 342 => 0x32, 383 => 0xdb, 496 => 'CropRight', 498 => 'CropRight' },
+ 'croppedimagewidth' => { 5 => 0x1, 407 => 0x1603 },
+ 'cropping' => { 476 => 0x9010 },
+ 'cropright' => { 123 => 0x8, 285 => 0x2e, 345 => 0x32, 386 => 0xdb, 500 => 'CropRight', 502 => 'CropRight' },
'croprightmargin' => { 53 => 0x1 },
'croprotatedoriginalheight' => { 101 => 0x2 },
'croprotatedoriginalwidth' => { 101 => 0x1 },
'croprotation' => { 101 => 0x8, 123 => 0xb },
- 'cropscaledresolution' => { 284 => 0x9e },
- 'cropsourceresolution' => { 284 => 0xae },
- 'croptop' => { 108 => 0x248, 123 => 0x7, 284 => 0x26, 318 => 0x613, 322 => 0x613, 342 => 0x2f, 383 => 0xda, 496 => 'CropTop', 498 => 'CropTop' },
+ 'cropscaledresolution' => { 285 => 0x9e },
+ 'cropsourceresolution' => { 285 => 0xae },
+ 'croptop' => { 108 => 0x248, 123 => 0x7, 285 => 0x26, 321 => 0x613, 325 => 0x613, 345 => 0x2f, 386 => 0xda, 500 => 'CropTop', 502 => 'CropTop' },
'croptopmargin' => { 53 => 0x2 },
- 'cropunit' => { 496 => 'CropUnit', 498 => 'CropUnit' },
- 'cropunits' => { 496 => 'CropUnits', 498 => 'CropUnits' },
- 'cropw' => { 490 => 'CropW' },
- 'cropwidth' => { 101 => 0x5, 108 => 0x24a, 318 => 0x614, 322 => 0x614, 496 => 'CropWidth', 498 => 'CropWidth' },
- 'cropx' => { 101 => 0x3, 490 => 'CropX' },
- 'cropy' => { 101 => 0x4, 490 => 'CropY' },
- 'crossprocess' => { 372 => 0x7b },
- 'crossprocessparams' => { 372 => 0x235 },
- 'cuisine' => { 517 => 'cuisine' },
+ 'cropunit' => { 500 => 'CropUnit', 502 => 'CropUnit' },
+ 'cropunits' => { 500 => 'CropUnits', 502 => 'CropUnits' },
+ 'cropw' => { 494 => 'CropW' },
+ 'cropwidth' => { 101 => 0x5, 108 => 0x24a, 321 => 0x614, 325 => 0x614, 500 => 'CropWidth', 502 => 'CropWidth' },
+ 'cropx' => { 101 => 0x3, 494 => 'CropX' },
+ 'cropy' => { 101 => 0x4, 494 => 'CropY' },
+ 'crossprocess' => { 375 => 0x7b },
+ 'crossprocessparams' => { 375 => 0x235 },
+ 'cuisine' => { 521 => 'cuisine' },
'currenticcprofile' => { 119 => 0xc691 },
'currentpreprofilematrix' => { 119 => 0xc692 },
- 'currentversion' => { 472 => 0xd000 },
- 'curve0x' => { 490 => 'Curve0x' },
- 'curve0y' => { 490 => 'Curve0y' },
- 'curve1x' => { 490 => 'Curve1x' },
- 'curve1y' => { 490 => 'Curve1y' },
- 'curve2x' => { 490 => 'Curve2x' },
- 'curve2y' => { 490 => 'Curve2y' },
- 'curve3x' => { 490 => 'Curve3x' },
- 'curve3y' => { 490 => 'Curve3y' },
- 'curve4x' => { 490 => 'Curve4x' },
- 'curve4y' => { 490 => 'Curve4y' },
- 'curves' => { 289 => 0x76a43201 },
- 'custom1' => { 324 => 'Custom1' },
- 'custom10' => { 324 => 'Custom10' },
- 'custom2' => { 324 => 'Custom2' },
- 'custom3' => { 324 => 'Custom3' },
- 'custom4' => { 324 => 'Custom4' },
- 'custom5' => { 324 => 'Custom5' },
- 'custom6' => { 324 => 'Custom6' },
- 'custom7' => { 324 => 'Custom7' },
- 'custom8' => { 324 => 'Custom8' },
- 'custom9' => { 324 => 'Custom9' },
+ 'currentversion' => { 476 => 0xd000 },
+ 'curve0x' => { 494 => 'Curve0x' },
+ 'curve0y' => { 494 => 'Curve0y' },
+ 'curve1x' => { 494 => 'Curve1x' },
+ 'curve1y' => { 494 => 'Curve1y' },
+ 'curve2x' => { 494 => 'Curve2x' },
+ 'curve2y' => { 494 => 'Curve2y' },
+ 'curve3x' => { 494 => 'Curve3x' },
+ 'curve3y' => { 494 => 'Curve3y' },
+ 'curve4x' => { 494 => 'Curve4x' },
+ 'curve4y' => { 494 => 'Curve4y' },
+ 'curves' => { 290 => 0x76a43201 },
+ 'custom1' => { 327 => 'Custom1' },
+ 'custom10' => { 327 => 'Custom10' },
+ 'custom2' => { 327 => 'Custom2' },
+ 'custom3' => { 327 => 'Custom3' },
+ 'custom4' => { 327 => 'Custom4' },
+ 'custom5' => { 327 => 'Custom5' },
+ 'custom6' => { 327 => 'Custom6' },
+ 'custom7' => { 327 => 'Custom7' },
+ 'custom8' => { 327 => 'Custom8' },
+ 'custom9' => { 327 => 'Custom9' },
'customcolortone' => { 109 => 0x4c },
'customcontrast' => { 109 => 0x4e },
'customcontrols' => { 84 => 0x70c },
@@ -2120,69 +2128,69 @@ my %tagLookup = (
'customrawhighlightpoint' => { 109 => 0x51 },
'customrawshadow' => { 109 => 0x85 },
'customrawshadowpoint' => { 109 => 0x52 },
- 'customrendered' => { 119 => 0xa401, 191 => 0x6420, 502 => 'CustomRendered' },
- 'customsaturation' => { 109 => 0x4d, 314 => 0x503 },
- 'customsettingsalldefault' => { 296 => '0.2', 305 => '0.2' },
- 'customsettingsbank' => { 296 => '0.1', 297 => '0.1', 299 => '0.1', 300 => '0.1', 305 => '0.1', 309 => '0.2', 310 => '0.2', 312 => 0x1 },
+ 'customrendered' => { 119 => 0xa401, 191 => 0x6420, 506 => 'CustomRendered' },
+ 'customsaturation' => { 109 => 0x4d, 317 => 0x503 },
+ 'customsettingsalldefault' => { 297 => '0.2', 306 => '0.2' },
+ 'customsettingsbank' => { 297 => '0.1', 298 => '0.1', 300 => '0.1', 301 => '0.1', 306 => '0.1', 310 => '0.2', 311 => '0.2', 313 => 0x1, 314 => 0x1, 315 => 0x1 },
'customsharpness' => { 109 => 0x50 },
'customunsharpmaskfineness' => { 109 => 0xb8 },
'customunsharpmaskstrength' => { 109 => 0xb6 },
'customunsharpmaskthreshold' => { 109 => 0xba },
- 'customwb_rblevels' => { 442 => 0x1a },
- 'customwb_rgblevels' => { 425 => 0x8, 426 => 0x19 },
+ 'customwb_rblevels' => { 445 => 0x1a },
+ 'customwb_rgblevels' => { 428 => 0x8, 429 => 0x19 },
'customwbbluelevel' => { 184 => 0x36 },
'customwberror' => { 184 => 0x37 },
'customwbgreenlevel' => { 184 => 0x35 },
'customwbredlevel' => { 184 => 0x34 },
'customwbsetting' => { 184 => 0x26 },
- 'cx' => { 397 => '_cx_' },
- 'cy' => { 397 => '_cy_' },
- 'd-lightinghq' => { 289 => 0x2175eb78 },
- 'd-lightinghqcolorboost' => { 285 => 0x2 },
- 'd-lightinghqhighlight' => { 285 => 0x1 },
- 'd-lightinghqselected' => { 289 => 0x6a6e36b6 },
- 'd-lightinghqshadow' => { 285 => 0x0 },
- 'd-lightinghs' => { 289 => 0xce5554aa },
- 'd-lightinghsadjustment' => { 286 => 0x0 },
- 'd-lightinghscolorboost' => { 286 => 0x1 },
- 'd-rangeoptimizerhighlight' => { 472 => 0x8024 },
- 'd-rangeoptimizermode' => { 472 => 0x8022 },
- 'd-rangeoptimizershadow' => { 472 => 0x802d },
- 'd-rangeoptimizervalue' => { 472 => 0x8023 },
+ 'cx' => { 400 => '_cx_' },
+ 'cy' => { 400 => '_cy_' },
+ 'd-lightinghq' => { 290 => 0x2175eb78 },
+ 'd-lightinghqcolorboost' => { 286 => 0x2 },
+ 'd-lightinghqhighlight' => { 286 => 0x1 },
+ 'd-lightinghqselected' => { 290 => 0x6a6e36b6 },
+ 'd-lightinghqshadow' => { 286 => 0x0 },
+ 'd-lightinghs' => { 290 => 0xce5554aa },
+ 'd-lightinghsadjustment' => { 287 => 0x0 },
+ 'd-lightinghscolorboost' => { 287 => 0x1 },
+ 'd-rangeoptimizerhighlight' => { 476 => 0x8024 },
+ 'd-rangeoptimizermode' => { 476 => 0x8022 },
+ 'd-rangeoptimizershadow' => { 476 => 0x802d },
+ 'd-rangeoptimizervalue' => { 476 => 0x8023 },
'darkblacksegrows' => { 138 => 0x18d8 },
- 'darkfocusenvironment' => { 337 => 0x8003 },
+ 'darkfocusenvironment' => { 340 => 0x8003 },
'darkframecountfactor' => { 138 => 0xc85 },
'darkframelongexposure' => { 138 => 0xc84 },
'darkframeshortexposure' => { 138 => 0xc83 },
'darkpedestal' => { 138 => 0xc7f },
'datacompressionmethod' => { 133 => 0x6e },
'dataimprint' => { 181 => 0x34 },
- 'dataonscreen' => { 510 => 'DataOnScreen' },
- 'dataonscreenregion' => { 510 => [\'DataOnScreen','DataOnScreenRegion'] },
- 'dataonscreenregiond' => { 510 => [\'DataOnScreen','DataOnScreenRegionD'] },
- 'dataonscreenregionh' => { 510 => [\'DataOnScreen','DataOnScreenRegionH'] },
- 'dataonscreenregiontext' => { 510 => [\'DataOnScreen','DataOnScreenRegionText'] },
- 'dataonscreenregionunit' => { 510 => [\'DataOnScreen','DataOnScreenRegionUnit'] },
- 'dataonscreenregionw' => { 510 => [\'DataOnScreen','DataOnScreenRegionW'] },
- 'dataonscreenregionx' => { 510 => [\'DataOnScreen','DataOnScreenRegionX'] },
- 'dataonscreenregiony' => { 510 => [\'DataOnScreen','DataOnScreenRegionY'] },
- 'datascaling' => { 372 => 0x3d },
- 'date' => { 372 => 0x6, 499 => 'date' },
+ 'dataonscreen' => { 514 => 'DataOnScreen' },
+ 'dataonscreenregion' => { 514 => [\'DataOnScreen','DataOnScreenRegion'] },
+ 'dataonscreenregiond' => { 514 => [\'DataOnScreen','DataOnScreenRegionD'] },
+ 'dataonscreenregionh' => { 514 => [\'DataOnScreen','DataOnScreenRegionH'] },
+ 'dataonscreenregiontext' => { 514 => [\'DataOnScreen','DataOnScreenRegionText'] },
+ 'dataonscreenregionunit' => { 514 => [\'DataOnScreen','DataOnScreenRegionUnit'] },
+ 'dataonscreenregionw' => { 514 => [\'DataOnScreen','DataOnScreenRegionW'] },
+ 'dataonscreenregionx' => { 514 => [\'DataOnScreen','DataOnScreenRegionX'] },
+ 'dataonscreenregiony' => { 514 => [\'DataOnScreen','DataOnScreenRegionY'] },
+ 'datascaling' => { 375 => 0x3d },
+ 'date' => { 375 => 0x6, 503 => 'date' },
'dateacquired' => { 178 => 'DateAcquired', 179 => '{2CBAA8F5-D81F-47CA-B17A-F8D822300131} 100' },
- 'datecreated' => { 131 => 0x37, 513 => 'DateCreated' },
- 'datedisplayformat' => { 281 => 0x3 },
+ 'datecreated' => { 131 => 0x37, 517 => 'DateCreated' },
+ 'datedisplayformat' => { 282 => 0x3 },
'dateidentified' => { 118 => [\'Identification','IdentificationDateIdentified'] },
- 'dateimprint' => { 301 => '4.2' },
- 'daterecieved' => { 515 => 'dateRecieved' },
+ 'dateimprint' => { 302 => '4.2' },
+ 'daterecieved' => { 519 => 'dateRecieved' },
'datesent' => { 132 => 0x46 },
'datestampmode' => { 64 => 0x1c, 234 => 0x9d },
- 'datetime' => { 491 => 'datetime', 521 => 'DateTime' },
- 'datetimedigitized' => { 502 => 'DateTimeDigitized' },
- 'datetimeoriginal' => { 100 => 0x0, 119 => 0x9003, 154 => 0x14, 157 => 'OriginalDate', 392 => 'IDIT', 397 => 'date', 398 => 0xb, 399 => 0x3b, 400 => 0x3e, 502 => 'DateTimeOriginal' },
+ 'datetime' => { 495 => 'datetime', 525 => 'DateTime' },
+ 'datetimedigitized' => { 506 => 'DateTimeDigitized' },
+ 'datetimeoriginal' => { 100 => 0x0, 119 => 0x9003, 154 => 0x14, 157 => 'OriginalDate', 395 => 'IDIT', 400 => 'date', 401 => 0xb, 402 => 0x3b, 403 => 0x3e, 506 => 'DateTimeOriginal' },
'datetimestamp' => { 140 => 0x64 },
- 'datetimeutc' => { 314 => 0x908 },
- 'daylightsavings' => { 78 => 0x3, 281 => 0x2 },
- 'dayofweek' => { 399 => 0x42, 400 => 0x4a },
+ 'datetimeutc' => { 317 => 0x908 },
+ 'daylightsavings' => { 78 => 0x3, 282 => 0x2 },
+ 'dayofweek' => { 402 => 0x42, 403 => 0x4a },
'dccontinent' => { 118 => [\'dctermsLocation','dctermsLocationContinent'] },
'dccoordinateprecision' => { 118 => [\'dctermsLocation','dctermsLocationCoordinatePrecision'] },
'dccoordinateuncertaintyinmeters' => { 118 => [\'dctermsLocation','dctermsLocationCoordinateUncertaintyInMeters'] },
@@ -2232,62 +2240,62 @@ my %tagLookup = (
'dcwaterbody' => { 118 => [\'dctermsLocation','dctermsLocationWaterBody'] },
'declination' => { 165 => 'Declination' },
'decposition' => { 181 => 0x32 },
- 'defaultautogray' => { 496 => 'DefaultAutoGray', 498 => 'DefaultAutoGray' },
- 'defaultautotone' => { 496 => 'DefaultAutoTone', 498 => 'DefaultAutoTone' },
+ 'defaultautogray' => { 500 => 'DefaultAutoGray', 502 => 'DefaultAutoGray' },
+ 'defaultautotone' => { 500 => 'DefaultAutoTone', 502 => 'DefaultAutoTone' },
'defaultblackrender' => { 119 => 0xc7a6 },
'defaultcroporigin' => { 119 => 0xc61f },
'defaultcropsize' => { 119 => 0xc620 },
'defaulteraseoption' => { 84 => 0x813 },
'defaultscale' => { 119 => 0xc61e },
- 'defaultsspecifictoiso' => { 496 => 'DefaultsSpecificToISO', 498 => 'DefaultsSpecificToISO' },
- 'defaultsspecifictoserial' => { 496 => 'DefaultsSpecificToSerial', 498 => 'DefaultsSpecificToSerial' },
+ 'defaultsspecifictoiso' => { 500 => 'DefaultsSpecificToISO', 502 => 'DefaultsSpecificToISO' },
+ 'defaultsspecifictoserial' => { 500 => 'DefaultsSpecificToSerial', 502 => 'DefaultsSpecificToSerial' },
'defaultusercrop' => { 119 => 0xc7b5 },
'defectisocode' => { 138 => 0x90f },
- 'defringe' => { 496 => 'Defringe', 498 => 'Defringe' },
- 'defringegreenamount' => { 496 => 'DefringeGreenAmount', 498 => 'DefringeGreenAmount' },
- 'defringegreenhuehi' => { 496 => 'DefringeGreenHueHi', 498 => 'DefringeGreenHueHi' },
- 'defringegreenhuelo' => { 496 => 'DefringeGreenHueLo', 498 => 'DefringeGreenHueLo' },
- 'defringepurpleamount' => { 496 => 'DefringePurpleAmount', 498 => 'DefringePurpleAmount' },
- 'defringepurplehuehi' => { 496 => 'DefringePurpleHueHi', 498 => 'DefringePurpleHueHi' },
- 'defringepurplehuelo' => { 496 => 'DefringePurpleHueLo', 498 => 'DefringePurpleHueLo' },
- 'dehaze' => { 496 => 'Dehaze', 498 => 'Dehaze' },
- 'deletedimagecount' => { 234 => 0xa6, 261 => 0x6e },
- 'deprecatedon' => { 494 => 'deprecatedOn' },
+ 'defringe' => { 500 => 'Defringe', 502 => 'Defringe' },
+ 'defringegreenamount' => { 500 => 'DefringeGreenAmount', 502 => 'DefringeGreenAmount' },
+ 'defringegreenhuehi' => { 500 => 'DefringeGreenHueHi', 502 => 'DefringeGreenHueHi' },
+ 'defringegreenhuelo' => { 500 => 'DefringeGreenHueLo', 502 => 'DefringeGreenHueLo' },
+ 'defringepurpleamount' => { 500 => 'DefringePurpleAmount', 502 => 'DefringePurpleAmount' },
+ 'defringepurplehuehi' => { 500 => 'DefringePurpleHueHi', 502 => 'DefringePurpleHueHi' },
+ 'defringepurplehuelo' => { 500 => 'DefringePurpleHueLo', 502 => 'DefringePurpleHueLo' },
+ 'dehaze' => { 500 => 'Dehaze', 502 => 'Dehaze' },
+ 'deletedimagecount' => { 234 => 0xa6, 262 => 0x6e },
+ 'deprecatedon' => { 498 => 'deprecatedOn' },
'depthfar' => { 119 => 0xc7eb },
'depthformat' => { 119 => 0xc7e9 },
- 'depthimage' => { 481 => 'Data' },
+ 'depthimage' => { 485 => 'Data' },
'depthmeasuretype' => { 119 => 0xc7ed },
'depthnear' => { 119 => 0xc7ea },
'depthunits' => { 119 => 0xc7ec },
- 'derivedfrom' => { 526 => 'DerivedFrom' },
- 'derivedfromalternatepaths' => { 526 => [\'DerivedFrom','DerivedFromAlternatePaths'] },
- 'derivedfromdocumentid' => { 526 => [\'DerivedFrom','DerivedFromDocumentID'] },
- 'derivedfromfilepath' => { 526 => [\'DerivedFrom','DerivedFromFilePath'] },
- 'derivedfromfrompart' => { 526 => [\'DerivedFrom','DerivedFromFromPart'] },
- 'derivedfrominstanceid' => { 526 => [\'DerivedFrom','DerivedFromInstanceID'] },
- 'derivedfromlastmodifydate' => { 526 => [\'DerivedFrom','DerivedFromLastModifyDate'] },
- 'derivedfromlasturl' => { 526 => [\'DerivedFrom','DerivedFromLastURL'] },
- 'derivedfromlinkcategory' => { 526 => [\'DerivedFrom','DerivedFromLinkCategory'] },
- 'derivedfromlinkform' => { 526 => [\'DerivedFrom','DerivedFromLinkForm'] },
- 'derivedfrommanager' => { 526 => [\'DerivedFrom','DerivedFromManager'] },
- 'derivedfrommanagervariant' => { 526 => [\'DerivedFrom','DerivedFromManagerVariant'] },
- 'derivedfrommanageto' => { 526 => [\'DerivedFrom','DerivedFromManageTo'] },
- 'derivedfrommanageui' => { 526 => [\'DerivedFrom','DerivedFromManageUI'] },
- 'derivedfrommaskmarkers' => { 526 => [\'DerivedFrom','DerivedFromMaskMarkers'] },
- 'derivedfromoriginaldocumentid' => { 526 => [\'DerivedFrom','DerivedFromOriginalDocumentID'] },
- 'derivedfrompartmapping' => { 526 => [\'DerivedFrom','DerivedFromPartMapping'] },
- 'derivedfromplacedresolutionunit' => { 526 => [\'DerivedFrom','DerivedFromPlacedResolutionUnit'] },
- 'derivedfromplacedxresolution' => { 526 => [\'DerivedFrom','DerivedFromPlacedXResolution'] },
- 'derivedfromplacedyresolution' => { 526 => [\'DerivedFrom','DerivedFromPlacedYResolution'] },
- 'derivedfromrenditionclass' => { 526 => [\'DerivedFrom','DerivedFromRenditionClass'] },
- 'derivedfromrenditionparams' => { 526 => [\'DerivedFrom','DerivedFromRenditionParams'] },
- 'derivedfromtopart' => { 526 => [\'DerivedFrom','DerivedFromToPart'] },
- 'derivedfromversionid' => { 526 => [\'DerivedFrom','DerivedFromVersionID'] },
- 'description' => { 327 => 'Description', 389 => ['desc','dscp',"\xa9des"], 391 => 'description', 397 => 'dscp', 496 => 'Description', 498 => 'Description', 499 => 'description', 523 => 'Description' },
+ 'derivedfrom' => { 530 => 'DerivedFrom' },
+ 'derivedfromalternatepaths' => { 530 => [\'DerivedFrom','DerivedFromAlternatePaths'] },
+ 'derivedfromdocumentid' => { 530 => [\'DerivedFrom','DerivedFromDocumentID'] },
+ 'derivedfromfilepath' => { 530 => [\'DerivedFrom','DerivedFromFilePath'] },
+ 'derivedfromfrompart' => { 530 => [\'DerivedFrom','DerivedFromFromPart'] },
+ 'derivedfrominstanceid' => { 530 => [\'DerivedFrom','DerivedFromInstanceID'] },
+ 'derivedfromlastmodifydate' => { 530 => [\'DerivedFrom','DerivedFromLastModifyDate'] },
+ 'derivedfromlasturl' => { 530 => [\'DerivedFrom','DerivedFromLastURL'] },
+ 'derivedfromlinkcategory' => { 530 => [\'DerivedFrom','DerivedFromLinkCategory'] },
+ 'derivedfromlinkform' => { 530 => [\'DerivedFrom','DerivedFromLinkForm'] },
+ 'derivedfrommanager' => { 530 => [\'DerivedFrom','DerivedFromManager'] },
+ 'derivedfrommanagervariant' => { 530 => [\'DerivedFrom','DerivedFromManagerVariant'] },
+ 'derivedfrommanageto' => { 530 => [\'DerivedFrom','DerivedFromManageTo'] },
+ 'derivedfrommanageui' => { 530 => [\'DerivedFrom','DerivedFromManageUI'] },
+ 'derivedfrommaskmarkers' => { 530 => [\'DerivedFrom','DerivedFromMaskMarkers'] },
+ 'derivedfromoriginaldocumentid' => { 530 => [\'DerivedFrom','DerivedFromOriginalDocumentID'] },
+ 'derivedfrompartmapping' => { 530 => [\'DerivedFrom','DerivedFromPartMapping'] },
+ 'derivedfromplacedresolutionunit' => { 530 => [\'DerivedFrom','DerivedFromPlacedResolutionUnit'] },
+ 'derivedfromplacedxresolution' => { 530 => [\'DerivedFrom','DerivedFromPlacedXResolution'] },
+ 'derivedfromplacedyresolution' => { 530 => [\'DerivedFrom','DerivedFromPlacedYResolution'] },
+ 'derivedfromrenditionclass' => { 530 => [\'DerivedFrom','DerivedFromRenditionClass'] },
+ 'derivedfromrenditionparams' => { 530 => [\'DerivedFrom','DerivedFromRenditionParams'] },
+ 'derivedfromtopart' => { 530 => [\'DerivedFrom','DerivedFromToPart'] },
+ 'derivedfromversionid' => { 530 => [\'DerivedFrom','DerivedFromVersionID'] },
+ 'description' => { 330 => 'Description', 392 => ['desc','dscp',"\xa9des"], 394 => 'description', 400 => 'dscp', 500 => 'Description', 502 => 'Description', 503 => 'description', 527 => 'Description' },
'destination' => { 132 => 0x5 },
- 'destinationcity' => { 372 => 0x24, 378 => 0x3 },
- 'destinationcitycode' => { 379 => 0x1001 },
- 'destinationdst' => { 372 => 0x26, 378 => '0.3' },
+ 'destinationcity' => { 375 => 0x24, 381 => 0x3 },
+ 'destinationcitycode' => { 382 => 0x1001 },
+ 'destinationdst' => { 375 => 0x26, 381 => '0.3' },
'developmentdynamicrange' => { 127 => 0x1403 },
'deviantmatrixcustom' => { 138 => 0x7de },
'deviantmatrixdaylight' => { 138 => 0x7da },
@@ -2299,466 +2307,466 @@ my %tagLookup = (
'deviantwhiteflash' => { 138 => 0x841 },
'deviantwhitefluorescent' => { 138 => 0x840 },
'deviantwhitetungsten' => { 138 => 0x83f },
- 'device' => { 515 => 'device' },
- 'devicesettingdescription' => { 502 => 'DeviceSettingDescription' },
- 'devicesettingdescriptioncolumns' => { 502 => [\'DeviceSettingDescription','DeviceSettingDescriptionColumns'] },
- 'devicesettingdescriptionrows' => { 502 => [\'DeviceSettingDescription','DeviceSettingDescriptionRows'] },
- 'devicesettingdescriptionsettings' => { 502 => [\'DeviceSettingDescription','DeviceSettingDescriptionSettings'] },
- 'devicetype' => { 411 => 0x2 },
+ 'device' => { 519 => 'device' },
+ 'devicesettingdescription' => { 506 => 'DeviceSettingDescription' },
+ 'devicesettingdescriptioncolumns' => { 506 => [\'DeviceSettingDescription','DeviceSettingDescriptionColumns'] },
+ 'devicesettingdescriptionrows' => { 506 => [\'DeviceSettingDescription','DeviceSettingDescriptionRows'] },
+ 'devicesettingdescriptionsettings' => { 506 => [\'DeviceSettingDescription','DeviceSettingDescriptionSettings'] },
+ 'devicetype' => { 414 => 0x2 },
'dewarpdata' => { 116 => 'DewarpData' },
'dewarpflag' => { 116 => 'DewarpFlag' },
'dialdirectiontvav' => { 84 => 0x706 },
- 'dietaryneeds' => { 517 => 'dietaryNeeds' },
- 'diffractioncompensation' => { 223 => 0x20e, 238 => 0x142, 239 => 0x1a2, 240 => 0x1b6, 241 => 0x1b6 },
- 'diffractioncorrection' => { 337 => 0xbc, 362 => 0x3 },
+ 'dietaryneeds' => { 521 => 'dietaryNeeds' },
+ 'diffractioncompensation' => { 223 => 0x20e, 238 => 0x142, 239 => 0x1b2, 240 => 0x1a2, 241 => 0x1b6, 242 => 0x1b6 },
+ 'diffractioncorrection' => { 340 => 0xbc, 365 => 0x3 },
'diffractioncorrectionon' => { 103 => 0x2070b },
'digitalcreationdate' => { 131 => 0x3e },
'digitalcreationtime' => { 131 => 0x3f },
- 'digitaldeehighlightadj' => { 256 => 0x202 },
- 'digitaldeeshadowadj' => { 256 => 0x200 },
- 'digitaldeethreshold' => { 256 => 0x201 },
- 'digitalfilter' => { 414 => 0x59 },
- 'digitalfilter01' => { 359 => 0x5 },
- 'digitalfilter02' => { 359 => 0x16 },
- 'digitalfilter03' => { 359 => 0x27 },
- 'digitalfilter04' => { 359 => 0x38 },
- 'digitalfilter05' => { 359 => 0x49 },
- 'digitalfilter06' => { 359 => 0x5a },
- 'digitalfilter07' => { 359 => 0x6b },
- 'digitalfilter08' => { 359 => 0x7c },
- 'digitalfilter09' => { 359 => 0x8d },
- 'digitalfilter10' => { 359 => 0x9e },
- 'digitalfilter11' => { 359 => 0xaf },
- 'digitalfilter12' => { 359 => 0xc0 },
- 'digitalfilter13' => { 359 => 0xd1 },
- 'digitalfilter14' => { 359 => 0xe2 },
- 'digitalfilter15' => { 359 => 0xf3 },
- 'digitalfilter16' => { 359 => 0x104 },
- 'digitalfilter17' => { 359 => 0x115 },
- 'digitalfilter18' => { 359 => 0x126 },
- 'digitalfilter19' => { 359 => 0x137 },
- 'digitalfilter20' => { 359 => 0x148 },
+ 'digitaldeehighlightadj' => { 257 => 0x202 },
+ 'digitaldeeshadowadj' => { 257 => 0x200 },
+ 'digitaldeethreshold' => { 257 => 0x201 },
+ 'digitalfilter' => { 417 => 0x59 },
+ 'digitalfilter01' => { 362 => 0x5 },
+ 'digitalfilter02' => { 362 => 0x16 },
+ 'digitalfilter03' => { 362 => 0x27 },
+ 'digitalfilter04' => { 362 => 0x38 },
+ 'digitalfilter05' => { 362 => 0x49 },
+ 'digitalfilter06' => { 362 => 0x5a },
+ 'digitalfilter07' => { 362 => 0x6b },
+ 'digitalfilter08' => { 362 => 0x7c },
+ 'digitalfilter09' => { 362 => 0x8d },
+ 'digitalfilter10' => { 362 => 0x9e },
+ 'digitalfilter11' => { 362 => 0xaf },
+ 'digitalfilter12' => { 362 => 0xc0 },
+ 'digitalfilter13' => { 362 => 0xd1 },
+ 'digitalfilter14' => { 362 => 0xe2 },
+ 'digitalfilter15' => { 362 => 0xf3 },
+ 'digitalfilter16' => { 362 => 0x104 },
+ 'digitalfilter17' => { 362 => 0x115 },
+ 'digitalfilter18' => { 362 => 0x126 },
+ 'digitalfilter19' => { 362 => 0x137 },
+ 'digitalfilter20' => { 362 => 0x148 },
'digitalgain' => { 74 => 0xb },
'digitalgem' => { 218 => 0x0 },
- 'digitalice' => { 256 => 0x100 },
- 'digitalimageguid' => { 510 => 'DigImageGUID' },
+ 'digitalice' => { 257 => 0x100 },
+ 'digitalimageguid' => { 514 => 'DigImageGUID' },
'digitallensoptimizer' => { 62 => 0xa },
'digitallensoptimizersetting' => { 80 => 0x9 },
- 'digitalroc' => { 253 => 0x0 },
- 'digitalsourcefiletype' => { 510 => 'DigitalSourcefileType' },
- 'digitalsourcetype' => { 510 => 'DigitalSourceType' },
- 'digitalzoom' => { 34 => 0xc, 112 => 0xa, 127 => 0x1044, 140 => 0x68, 151 => 0x22, 152 => 0x1e, 156 => 'DigitalZoom', 181 => 0xc, 234 => 0x86, 279 => 0xa, 319 => 0x204, 372 => 0x1e, 379 => 0xa, 413 => 0x204, 459 => 0x12, 460 => 0x12 },
- 'digitalzoomon' => { 413 => 0x21b },
- 'digitalzoomratio' => { 119 => 0xa404, 448 => 0x200, 450 => 0x21c, 502 => 'DigitalZoomRatio' },
- 'director' => { 179 => 'WM/Director', 389 => "\xa9dir", 391 => 'director', 397 => "\xa9dir", 525 => 'director' },
- 'directorphotography' => { 525 => 'directorPhotography' },
+ 'digitalroc' => { 254 => 0x0 },
+ 'digitalsourcefiletype' => { 514 => 'DigitalSourcefileType' },
+ 'digitalsourcetype' => { 514 => 'DigitalSourceType' },
+ 'digitalzoom' => { 34 => 0xc, 112 => 0xa, 127 => 0x1044, 140 => 0x68, 151 => 0x22, 152 => 0x1e, 156 => 'DigitalZoom', 181 => 0xc, 234 => 0x86, 280 => 0xa, 322 => 0x204, 375 => 0x1e, 382 => 0xa, 416 => 0x204, 463 => 0x12, 464 => 0x12 },
+ 'digitalzoomon' => { 416 => 0x21b },
+ 'digitalzoomratio' => { 119 => 0xa404, 451 => 0x200, 453 => 0x21c, 506 => 'DigitalZoomRatio' },
+ 'director' => { 179 => 'WM/Director', 392 => "\xa9dir", 394 => 'director', 400 => "\xa9dir", 529 => 'director' },
+ 'directorphotography' => { 529 => 'directorPhotography' },
'directory' => { 120 => 'Directory' },
'directoryindex' => { 7 => 0x137, 9 => 0x2dc, 11 => 0x17e, 13 => 0x238, 14 => 0x13f, 15 => 0x133, 16 => 0x1df, 17 => 0x1a7, 18 => 0x1f0, 19 => 0xcc, 20 => 0x1c7, 21 => 0x298, 22 => 0x1e7, 23 => 0x1e5, 24 => [0x27c,0x280], 25 => 0x2b6, 26 => 0x2bf, 28 => 0x1f7, 29 => 0x4ba },
'directoryindex2' => { 21 => 0x29c },
- 'directorynumber' => { 211 => 0x3, 400 => 0x12 },
- 'disableautocreation' => { 479 => 'DisableAutoCreation' },
- 'disclaimer' => { 327 => 'Disclaimer' },
- 'discnumber' => { 525 => 'discNumber' },
- 'dishtype' => { 517 => 'dishType' },
- 'disknumber' => { 389 => 'disk' },
- 'dispbutton' => { 241 => 0x7d4 },
+ 'directorynumber' => { 211 => 0x3, 403 => 0x12 },
+ 'disableautocreation' => { 483 => 'DisableAutoCreation' },
+ 'disclaimer' => { 330 => 'Disclaimer' },
+ 'discnumber' => { 529 => 'discNumber' },
+ 'dishtype' => { 521 => 'dishType' },
+ 'disknumber' => { 392 => 'disk' },
+ 'dispbutton' => { 242 => 0x7d4, 313 => 0x2ab },
'displayallafpoints' => { 84 => 0x514 },
'displayaperture' => { 34 => 0x23 },
- 'displayedunitsx' => { 387 => 0x2 },
- 'displayedunitsy' => { 387 => 0x6 },
- 'displayname' => { 391 => 'displayname', 514 => 'displayName' },
+ 'displayedunitsx' => { 390 => 0x2 },
+ 'displayedunitsy' => { 390 => 0x6 },
+ 'displayname' => { 394 => 'displayname', 518 => 'displayName' },
'distance1' => { 140 => 0x28 },
'distance2' => { 140 => 0x2c },
'distance3' => { 140 => 0x30 },
'distance4' => { 140 => 0x34 },
- 'distortion' => { 411 => 0xa050 },
- 'distortioncompensation' => { 472 => 0x8040 },
- 'distortioncontrol' => { 261 => 0x10 },
- 'distortioncorrection' => { 79 => 0x3, 103 => 0x20705, 109 => 0x67, 119 => 0x7036, 314 => 0x50b, 341 => '7.1', 362 => 0x0, 467 => 0x601, 468 => 0x5b },
- 'distortioncorrection2' => { 318 => 0x1011 },
- 'distortioncorrectionalreadyapplied' => { 493 => 'DistortionCorrectionAlreadyApplied' },
+ 'distortion' => { 414 => 0xa050 },
+ 'distortioncompensation' => { 476 => 0x8040 },
+ 'distortioncontrol' => { 262 => 0x10 },
+ 'distortioncorrection' => { 79 => 0x3, 103 => 0x20705, 109 => 0x67, 119 => 0x7036, 317 => 0x50b, 344 => '7.1', 365 => 0x0, 471 => 0x601, 472 => 0x5b },
+ 'distortioncorrection2' => { 321 => 0x1011 },
+ 'distortioncorrectionalreadyapplied' => { 497 => 'DistortionCorrectionAlreadyApplied' },
'distortioncorrectionon' => { 103 => '0x20705.0', 109 => 0x63 },
- 'distortioncorrectionsetting' => { 80 => 0x7, 437 => 0x2013 },
+ 'distortioncorrectionsetting' => { 80 => 0x7, 440 => 0x2013 },
'distortioncorrectionvalue' => { 79 => 0x9 },
- 'distortioncorrparams' => { 119 => 0x7037, 447 => 0x1a23, 450 => 0x1870, 452 => 0x189c, 453 => 0x18cc, 454 => 0x17d0, 467 => 0x6ca, 468 => 0x64 },
- 'distortioncorrparamsnumber' => { 450 => 0x1899, 452 => 0x18c5, 453 => 0x18f5, 454 => 0x17f9 },
- 'distortioncorrparamspresent' => { 450 => 0x1898, 452 => 0x18c4, 453 => 0x18f4, 454 => 0x17f8, 456 => 0x10b, 457 => 0x10b, 467 => 0x600, 468 => 0x5a },
+ 'distortioncorrparams' => { 119 => 0x7037, 450 => 0x1a23, 453 => 0x1870, 455 => 0x189c, 456 => 0x18cc, 457 => 0x17d0, 471 => 0x6ca, 472 => 0x64 },
+ 'distortioncorrparamsnumber' => { 453 => 0x1899, 455 => 0x18c5, 456 => 0x18f5, 457 => 0x17f9 },
+ 'distortioncorrparamspresent' => { 453 => 0x1898, 455 => 0x18c4, 456 => 0x18f4, 457 => 0x17f8, 459 => 0x10b, 460 => 0x10b, 471 => 0x600, 472 => 0x5a },
'distortioneffect' => { 103 => 0x20709 },
- 'distortionn' => { 341 => 0xc },
- 'distortionparam02' => { 341 => 0x2 },
- 'distortionparam04' => { 341 => 0x4 },
- 'distortionparam08' => { 341 => 0x8 },
- 'distortionparam09' => { 341 => 0x9 },
- 'distortionparam11' => { 341 => 0xb },
- 'distortionscale' => { 341 => 0x5 },
- 'distributor' => { 515 => 'distributor' },
- 'distributorproductid' => { 514 => 'distributorProductID' },
+ 'distortionn' => { 344 => 0xc },
+ 'distortionparam02' => { 344 => 0x2 },
+ 'distortionparam04' => { 344 => 0x4 },
+ 'distortionparam08' => { 344 => 0x8 },
+ 'distortionparam09' => { 344 => 0x9 },
+ 'distortionparam11' => { 344 => 0xb },
+ 'distortionscale' => { 344 => 0x5 },
+ 'distributor' => { 519 => 'distributor' },
+ 'distributorproductid' => { 518 => 'distributorProductID' },
'dloon' => { 103 => '0x20706.0', 109 => 0xdc },
'dlosetting' => { 103 => 0x20706, 109 => 0xdd },
'dlosettingapplied' => { 102 => 0x4 },
'dloshootingdistance' => { 109 => 0xde },
'dloversion' => { 102 => 0x5 },
- 'dmcomment' => { 525 => 'comment' },
+ 'dmcomment' => { 529 => 'comment' },
'dmdithermatrix' => { 138 => 0xc7a },
'dmdithermatrixheight' => { 138 => 0xc7c },
'dmdithermatrixwidth' => { 138 => 0xc7b },
'dngadobedata' => { 119 => 0xc634 },
'dngbackwardversion' => { 119 => 0xc613 },
- 'dngignoresidecars' => { 496 => 'DNGIgnoreSidecars', 498 => 'DNGIgnoreSidecars' },
+ 'dngignoresidecars' => { 500 => 'DNGIgnoreSidecars', 502 => 'DNGIgnoreSidecars' },
'dnglensinfo' => { 119 => 0xc630 },
'dngprivatedata' => { 119 => 0xc634 },
'dngversion' => { 119 => 0xc612 },
- 'document' => { 327 => 'Document' },
- 'documentancestors' => { 513 => 'DocumentAncestors' },
+ 'document' => { 330 => 'Document' },
+ 'documentancestors' => { 517 => 'DocumentAncestors' },
'documenthistory' => { 131 => 0xe7 },
- 'documentid' => { 526 => 'DocumentID' },
+ 'documentid' => { 530 => 'DocumentID' },
'documentname' => { 119 => 0x10d },
'documentnotes' => { 131 => 0xe6 },
- 'doi' => { 515 => 'doi' },
- 'dopesheet' => { 510 => 'Dopesheet' },
- 'dopesheetlink' => { 510 => 'DopesheetLink' },
- 'dopesheetlinklink' => { 510 => [\'DopesheetLink','DopesheetLinkLink'] },
- 'dopesheetlinklinkqualifier' => { 510 => [\'DopesheetLink','DopesheetLinkLinkQualifier'] },
+ 'doi' => { 519 => 'doi' },
+ 'dopesheet' => { 514 => 'Dopesheet' },
+ 'dopesheetlink' => { 514 => 'DopesheetLink' },
+ 'dopesheetlinklink' => { 514 => [\'DopesheetLink','DopesheetLinkLink'] },
+ 'dopesheetlinklinkqualifier' => { 514 => [\'DopesheetLink','DopesheetLinkLinkQualifier'] },
'doublingmicrovolts' => { 138 => 0xc82 },
- 'dpp' => { 491 => 'dpp' },
+ 'dpp' => { 495 => 'dpp' },
'dr4cameramodel' => { 104 => 0x3 },
'drangepriority' => { 127 => 0x1443 },
'drangepriorityauto' => { 127 => 0x1444 },
'drangepriorityfixed' => { 127 => 0x1445 },
- 'drivemode' => { 113 => 0x3103, 125 => '0.1', 181 => 0x6, 184 => 0x1e, 187 => 0xe, 191 => 0x64d0, 314 => 0x600, 372 => 0x34, 404 => 0x1002, 414 => 0x3, 424 => 0x4, 425 => 0x7e, 426 => 0x34 },
- 'drivemode2' => { 184 => 0xa, 353 => 0x7, 435 => 0xe, 442 => 0x1 },
- 'drivemodesetting' => { 426 => 0x4 },
+ 'drivemode' => { 113 => 0x3103, 125 => '0.1', 181 => 0x6, 184 => 0x1e, 187 => 0xe, 191 => 0x64d0, 317 => 0x600, 375 => 0x34, 407 => 0x1002, 417 => 0x3, 427 => 0x4, 428 => 0x7e, 429 => 0x34 },
+ 'drivemode2' => { 184 => 0xa, 356 => 0x7, 438 => 0xe, 445 => 0x1 },
+ 'drivemodesetting' => { 429 => 0x4 },
'drivespeed' => { 125 => '0.2' },
- 'dspfirmwareversion' => { 372 => 0x27 },
- 'duration' => { 67 => 0x6a, 155 => 'Duration', 169 => 'Duration', 517 => 'duration', 525 => 'duration' },
- 'durationscale' => { 525 => [\'duration','durationScale'] },
- 'durationvalue' => { 525 => [\'duration','durationValue'] },
+ 'dspfirmwareversion' => { 375 => 0x27 },
+ 'duration' => { 67 => 0x6a, 155 => 'Duration', 169 => 'Duration', 521 => 'duration', 529 => 'duration' },
+ 'durationscale' => { 529 => [\'duration','durationScale'] },
+ 'durationvalue' => { 529 => [\'duration','durationValue'] },
'dustremovaldata' => { 64 => 0x97 },
- 'dxcropalert' => { 239 => 0x23c, 240 => 0x250, 241 => 0x250 },
- 'dynamicafarea' => { 296 => '1.4', 305 => '1.4' },
- 'dynamicafareasize' => { 239 => 0x240, 240 => 0x254, 241 => 0x254 },
- 'dynamicareaafassist' => { 312 => 0x18 },
- 'dynamicareaafdisplay' => { 297 => '46.1', 299 => '47.1', 300 => '47.1', 309 => '47.1', 310 => '47.1' },
+ 'dxcropalert' => { 239 => 0x250, 240 => 0x23c, 241 => 0x250, 242 => 0x250 },
+ 'dynamicafarea' => { 297 => '1.4', 306 => '1.4' },
+ 'dynamicafareasize' => { 239 => 0x254, 240 => 0x240, 241 => 0x254, 242 => 0x254 },
+ 'dynamicareaafassist' => { 313 => 0x18, 314 => 0x18, 315 => 0x18 },
+ 'dynamicareaafdisplay' => { 298 => '46.1', 300 => '47.1', 301 => '47.1', 310 => '47.1', 311 => '47.1' },
'dynamicrange' => { 127 => 0x1400 },
- 'dynamicrangeboost' => { 337 => 0xee },
- 'dynamicrangeexpansion' => { 372 => 0x69, 404 => 0x100e },
+ 'dynamicrangeboost' => { 340 => 0xee },
+ 'dynamicrangeexpansion' => { 375 => 0x69, 407 => 0x100e },
'dynamicrangemax' => { 108 => 0x7c },
'dynamicrangemin' => { 108 => 0x7a },
- 'dynamicrangeoptimizer' => { 184 => 0x15, 437 => [0xb025,0xb04f], 446 => 0x1144, 447 => [0x1144,0x324], 448 => [0x1120,0x300], 449 => [0x119c,0x37c], 450 => [0x1178,0x328], 451 => [0x1030,0x50], 452 => [0x228,0x50], 453 => [0x228,0x50], 454 => [0x21b,0x4e] },
- 'dynamicrangeoptimizerbracket' => { 435 => 0x2e },
- 'dynamicrangeoptimizerlevel' => { 424 => 0x19, 425 => 0x17, 426 => 0xd, 435 => 0x79, 442 => 0x5 },
- 'dynamicrangeoptimizermode' => { 187 => 0x15, 424 => 0x18, 425 => 0x16, 435 => [0x77,0x15] },
- 'dynamicrangeoptimizersetting' => { 184 => 0x27, 426 => 0xc, 442 => 0x4 },
+ 'dynamicrangeoptimizer' => { 184 => 0x15, 440 => [0xb025,0xb04f], 449 => 0x1144, 450 => [0x1144,0x324], 451 => [0x1120,0x300], 452 => [0x119c,0x37c], 453 => [0x1178,0x328], 454 => [0x1030,0x50], 455 => [0x228,0x50], 456 => [0x228,0x50], 457 => [0x21b,0x4e] },
+ 'dynamicrangeoptimizerbracket' => { 438 => 0x2e },
+ 'dynamicrangeoptimizerlevel' => { 427 => 0x19, 428 => 0x17, 429 => 0xd, 438 => 0x79, 445 => 0x5 },
+ 'dynamicrangeoptimizermode' => { 187 => 0x15, 427 => 0x18, 428 => 0x16, 438 => [0x77,0x15] },
+ 'dynamicrangeoptimizersetting' => { 184 => 0x27, 429 => 0xc, 445 => 0x4 },
'dynamicrangesetting' => { 127 => 0x1402 },
- 'e-dialinprogram' => { 353 => '1.3' },
+ 'e-dialinprogram' => { 356 => '1.3' },
'earliestageorloweststage' => { 118 => [\'GeologicalContext','GeologicalContextEarliestAgeOrLowestStage'] },
'earliesteonorlowesteonothem' => { 118 => [\'GeologicalContext','GeologicalContextEarliestEonOrLowestEonothem'] },
'earliestepochorlowestseries' => { 118 => [\'GeologicalContext','GeologicalContextEarliestEpochOrLowestSeries'] },
'earliesteraorlowesterathem' => { 118 => [\'GeologicalContext','GeologicalContextEarliestEraOrLowestErathem'] },
'earliestperiodorlowestsystem' => { 118 => [\'GeologicalContext','GeologicalContextEarliestPeriodOrLowestSystem'] },
- 'earthpos' => { 475 => 'EarthPos' },
- 'earthposaltitude' => { 475 => [\'EarthPos','EarthPosAltitude'] },
- 'earthposlatitude' => { 475 => [\'EarthPos','EarthPosLatitude'] },
- 'earthposlongitude' => { 475 => [\'EarthPos','EarthPosLongitude'] },
- 'earthposrotationw' => { 475 => [\'EarthPos','EarthPosRotationW'] },
- 'earthposrotationx' => { 475 => [\'EarthPos','EarthPosRotationX'] },
- 'earthposrotationy' => { 475 => [\'EarthPos','EarthPosRotationY'] },
- 'earthposrotationz' => { 475 => [\'EarthPos','EarthPosRotationZ'] },
- 'earthpostimestamp' => { 475 => [\'EarthPos','EarthPosTimestamp'] },
- 'easyexposurecomp' => { 311 => '6.1' },
- 'easyexposurecompensation' => { 296 => '6.4', 297 => '6.5', 299 => '6.3', 300 => '6.3', 304 => '5.1', 305 => '4.4', 306 => '5.2', 309 => '6.3', 310 => '6.3', 312 => 0x1d },
+ 'earthpos' => { 479 => 'EarthPos' },
+ 'earthposaltitude' => { 479 => [\'EarthPos','EarthPosAltitude'] },
+ 'earthposlatitude' => { 479 => [\'EarthPos','EarthPosLatitude'] },
+ 'earthposlongitude' => { 479 => [\'EarthPos','EarthPosLongitude'] },
+ 'earthposrotationw' => { 479 => [\'EarthPos','EarthPosRotationW'] },
+ 'earthposrotationx' => { 479 => [\'EarthPos','EarthPosRotationX'] },
+ 'earthposrotationy' => { 479 => [\'EarthPos','EarthPosRotationY'] },
+ 'earthposrotationz' => { 479 => [\'EarthPos','EarthPosRotationZ'] },
+ 'earthpostimestamp' => { 479 => [\'EarthPos','EarthPosTimestamp'] },
+ 'easyexposurecomp' => { 312 => '6.1' },
+ 'easyexposurecompensation' => { 297 => '6.4', 298 => '6.5', 300 => '6.3', 301 => '6.3', 305 => '5.1', 306 => '4.4', 307 => '5.2', 310 => '6.3', 311 => '6.3', 313 => 0x1d, 314 => 0x1d, 315 => 0x1d },
'easymode' => { 34 => 0xb },
'edgemapslope' => { 138 => 0x930 },
'edgemapx1' => { 138 => 0x931 },
'edgemapx2' => { 138 => 0x932 },
'edgemapx3' => { 138 => 0x934 },
'edgemapx4' => { 138 => 0x935 },
- 'edgenoisereduction' => { 290 => 0x4, 472 => 0x8028 },
- 'edit1' => { 397 => "\xa9ed1" },
- 'edit2' => { 397 => "\xa9ed2" },
- 'edit3' => { 397 => "\xa9ed3" },
- 'edit4' => { 397 => "\xa9ed4" },
- 'edit5' => { 397 => "\xa9ed5" },
- 'edit6' => { 397 => "\xa9ed6" },
- 'edit7' => { 397 => "\xa9ed7" },
- 'edit8' => { 397 => "\xa9ed8" },
- 'edit9' => { 397 => "\xa9ed9" },
- 'edition' => { 515 => 'edition' },
+ 'edgenoisereduction' => { 291 => 0x4, 476 => 0x8028 },
+ 'edit1' => { 400 => "\xa9ed1" },
+ 'edit2' => { 400 => "\xa9ed2" },
+ 'edit3' => { 400 => "\xa9ed3" },
+ 'edit4' => { 400 => "\xa9ed4" },
+ 'edit5' => { 400 => "\xa9ed5" },
+ 'edit6' => { 400 => "\xa9ed6" },
+ 'edit7' => { 400 => "\xa9ed7" },
+ 'edit8' => { 400 => "\xa9ed8" },
+ 'edit9' => { 400 => "\xa9ed9" },
+ 'edition' => { 519 => 'edition' },
'editorialupdate' => { 131 => 0x8 },
- 'editstatus' => { 131 => 0x7, 384 => 'EditStatus', 491 => 'EditStatus' },
- 'editversionname' => { 289 => 0x3d136244 },
- 'effectivelv' => { 372 => 0x2d },
+ 'editstatus' => { 131 => 0x7, 387 => 'EditStatus', 495 => 'EditStatus' },
+ 'editversionname' => { 290 => 0x3d136244 },
+ 'effectivelv' => { 375 => 0x2d },
'effectivemaxaperture' => { 227 => 0x12, 228 => 0x13, 232 => 0x14 },
- 'eissn' => { 515 => 'eIssn' },
+ 'eissn' => { 519 => 'eIssn' },
'electricalblackcolumns' => { 138 => 0x1810 },
- 'electronicfront-curtainshutter' => { 299 => '5.2', 300 => '5.2', 309 => '5.3', 310 => '5.2' },
- 'electronicfrontcurtainshutter' => { 437 => 0x201a },
+ 'electronicfront-curtainshutter' => { 300 => '5.2', 301 => '5.2', 310 => '5.3', 311 => '5.2' },
+ 'electronicfrontcurtainshutter' => { 440 => 0x201a },
'elevation' => { 165 => 'Elevation' },
'email' => { 157 => 'EMail' },
- 'embargodate' => { 518 => 'embargoDate' },
- 'embdencrightsexpr' => { 510 => 'EmbdEncRightsExpr' },
- 'embeddedencodedrightsexpr' => { 510 => [\'EmbdEncRightsExpr','EmbdEncRightsExprEncRightsExpr'] },
- 'embeddedencodedrightsexprlangid' => { 510 => [\'EmbdEncRightsExpr','EmbdEncRightsExprRightsExprLangId'] },
- 'embeddedencodedrightsexprtype' => { 510 => [\'EmbdEncRightsExpr','EmbdEncRightsExprRightsExprEncType'] },
- 'embeddedxmpdigest' => { 513 => 'EmbeddedXMPDigest' },
+ 'embargodate' => { 522 => 'embargoDate' },
+ 'embdencrightsexpr' => { 514 => 'EmbdEncRightsExpr' },
+ 'embeddedencodedrightsexpr' => { 514 => [\'EmbdEncRightsExpr','EmbdEncRightsExprEncRightsExpr'] },
+ 'embeddedencodedrightsexprlangid' => { 514 => [\'EmbdEncRightsExpr','EmbdEncRightsExprRightsExprLangId'] },
+ 'embeddedencodedrightsexprtype' => { 514 => [\'EmbdEncRightsExpr','EmbdEncRightsExprRightsExprEncType'] },
+ 'embeddedxmpdigest' => { 517 => 'EmbeddedXMPDigest' },
'emissivity' => { 121 => 0x3 },
- 'emptyslotrelease' => { 239 => 0x625, 240 => 0x655, 241 => 0x6bd },
+ 'emptyslotrelease' => { 239 => 0x723, 240 => 0x625, 241 => 0x655, 242 => 0x6bd },
'enablechromanoisereduction' => { 138 => 0xe6e },
'enablesharpening' => { 138 => 0x92e },
- 'encodedby' => { 179 => 'WM/EncodedBy', 389 => "\xa9enc" },
- 'encodedwith' => { 391 => 'Encoded_With' },
- 'encoder' => { 389 => "\xa9too", 397 => "\xa9too" },
- 'encoderid' => { 397 => "\xa9enc" },
+ 'encodedby' => { 179 => 'WM/EncodedBy', 392 => "\xa9enc" },
+ 'encodedwith' => { 394 => 'Encoded_With' },
+ 'encoder' => { 392 => "\xa9too", 400 => "\xa9too" },
+ 'encoderid' => { 400 => "\xa9enc" },
'encodingtime' => { 179 => 'WM/EncodingTime' },
- 'encryptionkey' => { 411 => 0xa020 },
- 'endingpage' => { 515 => 'endingPage' },
- 'enduser' => { 324 => 'EndUser' },
- 'enduserid' => { 324 => [\'EndUser','EndUserEndUserID'] },
- 'endusername' => { 324 => [\'EndUser','EndUserEndUserName'] },
- 'energysavingmode' => { 239 => 0x648, 240 => 0x678, 241 => 0x6e0 },
- 'engineer' => { 525 => 'engineer' },
- 'enhancedarktones' => { 282 => 0x8 },
- 'enhancedenoisealreadyapplied' => { 493 => 'EnhanceDenoiseAlreadyApplied' },
- 'enhancedenoiselumaamount' => { 493 => 'EnhanceDenoiseLumaAmount' },
- 'enhancedenoiseversion' => { 493 => 'EnhanceDenoiseVersion' },
- 'enhancedetailsalreadyapplied' => { 493 => 'EnhanceDetailsAlreadyApplied' },
- 'enhancedetailsversion' => { 493 => 'EnhanceDetailsVersion' },
+ 'encryptionkey' => { 414 => 0xa020 },
+ 'endingpage' => { 519 => 'endingPage' },
+ 'enduser' => { 327 => 'EndUser' },
+ 'enduserid' => { 327 => [\'EndUser','EndUserEndUserID'] },
+ 'endusername' => { 327 => [\'EndUser','EndUserEndUserName'] },
+ 'energysavingmode' => { 239 => 0x746, 240 => 0x648, 241 => 0x678, 242 => 0x6e0 },
+ 'engineer' => { 529 => 'engineer' },
+ 'enhancedarktones' => { 283 => 0x8 },
+ 'enhancedenoisealreadyapplied' => { 497 => 'EnhanceDenoiseAlreadyApplied' },
+ 'enhancedenoiselumaamount' => { 497 => 'EnhanceDenoiseLumaAmount' },
+ 'enhancedenoiseversion' => { 497 => 'EnhanceDenoiseVersion' },
+ 'enhancedetailsalreadyapplied' => { 497 => 'EnhanceDetailsAlreadyApplied' },
+ 'enhancedetailsversion' => { 497 => 'EnhanceDetailsVersion' },
'enhancement' => { 112 => 0x16, 113 => 0x3016 },
'enhanceparams' => { 119 => 0xc7ee },
- 'enhancer' => { 318 => 0x300 },
- 'enhancervalues' => { 318 => 0x301 },
- 'enhancesuperresolutionalreadyapplied' => { 493 => 'EnhanceSuperResolutionAlreadyApplied' },
- 'enhancesuperresolutionscale' => { 493 => 'EnhanceSuperResolutionScale' },
- 'enhancesuperresolutionversion' => { 493 => 'EnhanceSuperResolutionVersion' },
+ 'enhancer' => { 321 => 0x300 },
+ 'enhancervalues' => { 321 => 0x301 },
+ 'enhancesuperresolutionalreadyapplied' => { 497 => 'EnhanceSuperResolutionAlreadyApplied' },
+ 'enhancesuperresolutionscale' => { 497 => 'EnhanceSuperResolutionScale' },
+ 'enhancesuperresolutionversion' => { 497 => 'EnhanceSuperResolutionVersion' },
'envelopenumber' => { 132 => 0x28 },
'envelopepriority' => { 132 => 0x3c },
'enveloperecordversion' => { 132 => 0x0 },
- 'episode' => { 510 => 'Episode' },
- 'episodeglobaluniqueid' => { 389 => 'egid' },
- 'episodeidentifier' => { 510 => [\'Episode','EpisodeIdentifier'] },
- 'episodename' => { 510 => [\'Episode','EpisodeName'] },
- 'episodenumber' => { 510 => [\'Episode','EpisodeNumber'] },
- 'epsonimageheight' => { 319 => 0x20c },
- 'epsonimagewidth' => { 319 => 0x20b },
- 'epsonsoftware' => { 319 => 0x20d },
- 'equipmentinstitution' => { 474 => 'EquipmentInstitution' },
- 'equipmentmanufacturer' => { 474 => 'EquipmentManufacturer' },
- 'equipmentversion' => { 315 => 0x0 },
+ 'episode' => { 514 => 'Episode' },
+ 'episodeglobaluniqueid' => { 392 => 'egid' },
+ 'episodeidentifier' => { 514 => [\'Episode','EpisodeIdentifier'] },
+ 'episodename' => { 514 => [\'Episode','EpisodeName'] },
+ 'episodenumber' => { 514 => [\'Episode','EpisodeNumber'] },
+ 'epsonimageheight' => { 322 => 0x20c },
+ 'epsonimagewidth' => { 322 => 0x20b },
+ 'epsonsoftware' => { 322 => 0x20d },
+ 'equipmentinstitution' => { 478 => 'EquipmentInstitution' },
+ 'equipmentmanufacturer' => { 478 => 'EquipmentManufacturer' },
+ 'equipmentversion' => { 318 => 0x0 },
'ettlii' => { 84 => 0x304, 85 => 0xd, 86 => 0xe, 87 => 0x7, 88 => 0x7, 89 => 0xe },
- 'event' => { 477 => 'Event', 489 => 'Event', 510 => 'Event', 515 => 'event' },
- 'eventalias' => { 514 => 'eventAlias' },
+ 'event' => { 481 => 'Event', 493 => 'Event', 514 => 'Event', 519 => 'event' },
+ 'eventalias' => { 518 => 'eventAlias' },
'eventdate' => { 118 => [\'Event','EventEventDate'] },
'eventday' => { 118 => [\'Event','EventDay'] },
'eventearliestdate' => { 118 => [\'Event','EventEarliestDate'] },
- 'eventend' => { 514 => 'eventEnd' },
+ 'eventend' => { 518 => 'eventEnd' },
'eventenddayofyear' => { 118 => [\'Event','EventEndDayOfYear'] },
'eventfieldnotes' => { 118 => [\'Event','EventFieldNotes'] },
'eventfieldnumber' => { 118 => [\'Event','EventFieldNumber'] },
'eventhabitat' => { 118 => [\'Event','EventHabitat'] },
- 'eventid' => { 118 => [\'Event','EventEventID'], 510 => 'EventId' },
+ 'eventid' => { 118 => [\'Event','EventEventID'], 514 => 'EventId' },
'eventlatestdate' => { 118 => [\'Event','EventLatestDate'] },
'eventmonth' => { 118 => [\'Event','EventMonth'] },
- 'eventnumber' => { 398 => 0x9, 399 => 0x37, 400 => 0x3a },
+ 'eventnumber' => { 401 => 0x9, 402 => 0x37, 403 => 0x3a },
'eventparenteventid' => { 118 => [\'Event','EventParentEventID'] },
'eventremarks' => { 118 => [\'Event','EventEventRemarks'] },
'eventsamplesizeunit' => { 118 => [\'Event','EventSampleSizeUnit'] },
'eventsamplesizevalue' => { 118 => [\'Event','EventSampleSizeValue'] },
'eventsamplingeffort' => { 118 => [\'Event','EventSamplingEffort'] },
'eventsamplingprotocol' => { 118 => [\'Event','EventSamplingProtocol'] },
- 'eventstart' => { 514 => 'eventStart' },
+ 'eventstart' => { 518 => 'eventStart' },
'eventstartdayofyear' => { 118 => [\'Event','EventStartDayOfYear'] },
- 'eventsubtype' => { 514 => 'eventSubtype' },
+ 'eventsubtype' => { 518 => 'eventSubtype' },
'eventtime' => { 118 => [\'Event','EventEventTime'] },
- 'eventtype' => { 514 => 'eventType' },
+ 'eventtype' => { 518 => 'eventType' },
'eventverbatimeventdate' => { 118 => [\'Event','EventVerbatimEventDate'] },
'eventyear' => { 118 => [\'Event','EventYear'] },
- 'evfgrid' => { 312 => 0x165 },
- 'evfimageframe' => { 312 => 0x164 },
- 'evfreleaseindicator' => { 312 => 0x24f },
- 'evfwarmdisplaybrightness' => { 312 => 0x24d },
- 'evfwarmdisplaymode' => { 312 => 0x24b },
- 'evsteps' => { 353 => '1.2', 355 => 0x0 },
- 'evstepsize' => { 301 => '5.1', 302 => '6.1', 303 => '6.1', 307 => '0.7' },
- 'exclusivecoverage' => { 486 => 'ExclusiveCoverage' },
- 'exclusivityenddate' => { 518 => 'exclusivityEndDate' },
+ 'evfgrid' => { 313 => 0x165, 314 => 0x165, 315 => 0x17d },
+ 'evfimageframe' => { 313 => 0x164, 314 => 0x164, 315 => 0x17c },
+ 'evfreleaseindicator' => { 313 => 0x24f, 314 => 0x24f, 315 => 0x267 },
+ 'evfwarmdisplaybrightness' => { 313 => 0x24d, 314 => 0x24d, 315 => 0x265 },
+ 'evfwarmdisplaymode' => { 313 => 0x24b, 314 => 0x24b, 315 => 0x263 },
+ 'evsteps' => { 356 => '1.2', 358 => 0x0 },
+ 'evstepsize' => { 302 => '5.1', 303 => '6.1', 304 => '6.1', 308 => '0.7' },
+ 'exclusivecoverage' => { 490 => 'ExclusiveCoverage' },
+ 'exclusivityenddate' => { 522 => 'exclusivityEndDate' },
'excursiontolerance' => { 133 => 0x82 },
- 'executiveproducer' => { 389 => "\xa9xpd" },
+ 'executiveproducer' => { 392 => "\xa9xpd" },
'exif' => { 120 => 'EXIF' },
'exifbyteorder' => { 120 => 'ExifByteOrder' },
'exifcamerainfo' => { 131 => 0xe8 },
- 'exifimageheight' => { 119 => 0xa003, 502 => 'PixelYDimension' },
- 'exifimagewidth' => { 119 => 0xa002, 502 => 'PixelXDimension' },
+ 'exifimageheight' => { 119 => 0xa003, 506 => 'PixelYDimension' },
+ 'exifimagewidth' => { 119 => 0xa002, 506 => 'PixelXDimension' },
'exifunicodebyteorder' => { 120 => 'ExifUnicodeByteOrder' },
- 'exifversion' => { 119 => 0x9000, 502 => 'ExifVersion' },
+ 'exifversion' => { 119 => 0x9000, 506 => 'ExifVersion' },
'exitpupilposition' => { 227 => 0x4, 228 => 0x4, 232 => 0x4 },
- 'expirationdate' => { 131 => 0x25, 518 => 'expirationDate' },
+ 'expirationdate' => { 131 => 0x25, 522 => 'expirationDate' },
'expirationtime' => { 131 => 0x26 },
- 'exposure' => { 119 => 0xfe51, 496 => 'Exposure', 498 => 'Exposure' },
- 'exposure2012' => { 496 => 'Exposure2012', 498 => 'Exposure2012' },
- 'exposureadj' => { 287 => 0x0 },
- 'exposureadj2' => { 287 => 0x12 },
- 'exposureadjust' => { 414 => 0xc },
+ 'exposure' => { 119 => 0xfe51, 500 => 'Exposure', 502 => 'Exposure' },
+ 'exposure2012' => { 500 => 'Exposure2012', 502 => 'Exposure2012' },
+ 'exposureadj' => { 288 => 0x0 },
+ 'exposureadj2' => { 288 => 0x12 },
+ 'exposureadjust' => { 417 => 0xc },
'exposurebracketingindicatorlast' => { 184 => 0x52 },
- 'exposurebracketshotnumber' => { 187 => 0x2d, 435 => 0x2f },
- 'exposurebracketstepsize' => { 353 => 0x8 },
+ 'exposurebracketshotnumber' => { 187 => 0x2d, 438 => 0x2f },
+ 'exposurebracketstepsize' => { 356 => 0x8 },
'exposurebracketvalue' => { 234 => 0x19 },
'exposurecompautocancel' => { 84 => 0x113 },
- 'exposurecompensation' => { 77 => 0x6, 93 => 0x0, 119 => 0x9204, 140 => 0x24, 156 => 'ExposureComp', 176 => 'ExposureCompensation', 181 => 0xd, 182 => 0x53, 183 => 0x1e, 187 => 0x49c0, 319 => 0x1006, 372 => 0x16, 381 => 0x402, 411 => 0xa013, 414 => [0xc,0x35,0x4d], 446 => 0x114c, 447 => 0x114c, 448 => 0x1128, 450 => 0x1180, 451 => 0x1038, 452 => 0x230, 453 => 0x230, 454 => 0x223, 502 => 'ExposureBiasValue' },
- 'exposurecompensation2' => { 442 => [0x24,0x26,0x2a] },
- 'exposurecompensationbutton' => { 241 => 0x794 },
+ 'exposurecompensation' => { 77 => 0x6, 93 => 0x0, 119 => 0x9204, 140 => 0x24, 156 => 'ExposureComp', 176 => 'ExposureCompensation', 181 => 0xd, 182 => 0x53, 183 => 0x1e, 187 => 0x49c0, 322 => 0x1006, 375 => 0x16, 384 => 0x402, 414 => 0xa013, 417 => [0xc,0x35,0x4d], 449 => 0x114c, 450 => 0x114c, 451 => 0x1128, 453 => 0x1180, 454 => 0x1038, 455 => 0x230, 456 => 0x230, 457 => 0x223, 506 => 'ExposureBiasValue' },
+ 'exposurecompensation2' => { 445 => [0x24,0x26,0x2a] },
+ 'exposurecompensationbutton' => { 242 => 0x794 },
'exposurecompensationmode' => { 184 => 0x47, 187 => 0x2a },
- 'exposurecompensationset' => { 424 => 0x3, 425 => 0x3, 426 => 0x3, 442 => 0x1e },
+ 'exposurecompensationset' => { 427 => 0x3, 428 => 0x3, 429 => 0x3, 445 => 0x1e },
'exposurecompensationsetting' => { 184 => 0x1 },
- 'exposurecompstepsize' => { 296 => '6.3', 297 => '7.3', 299 => '7.3', 300 => '7.3', 305 => '4.3', 309 => '7.3', 310 => '7.3' },
- 'exposurecontrolstep' => { 304 => '6.1', 306 => '6.1' },
- 'exposurecontrolstepsize' => { 296 => '6.2', 297 => '7.1', 299 => '7.1', 300 => '7.1', 305 => '4.2', 309 => '7.1', 310 => '7.1', 311 => '7.1', 312 => 0x1b },
+ 'exposurecompstepsize' => { 297 => '6.3', 298 => '7.3', 300 => '7.3', 301 => '7.3', 306 => '4.3', 310 => '7.3', 311 => '7.3' },
+ 'exposurecontrolstep' => { 305 => '6.1', 307 => '6.1' },
+ 'exposurecontrolstepsize' => { 297 => '6.2', 298 => '7.1', 300 => '7.1', 301 => '7.1', 306 => '4.2', 310 => '7.1', 311 => '7.1', 312 => '7.1', 313 => 0x1b, 314 => 0x1b, 315 => 0x1b },
'exposurecount' => { 127 => 0x1032 },
- 'exposuredelay' => { 241 => 0x800 },
- 'exposuredelaymode' => { 296 => '10.1', 297 => '11.1', 299 => '11.1', 300 => '11.1', 301 => '9.1', 302 => '10.1', 303 => '10.1', 305 => '10.4', 306 => '10.1', 307 => '6.4', 309 => '11.1', 310 => '11.1', 311 => '11.2' },
+ 'exposuredelay' => { 242 => 0x800 },
+ 'exposuredelaymode' => { 297 => '10.1', 298 => '11.1', 300 => '11.1', 301 => '11.1', 302 => '9.1', 303 => '10.1', 304 => '10.1', 306 => '10.4', 307 => '10.1', 308 => '6.4', 310 => '11.1', 311 => '11.1', 312 => '11.2' },
'exposuredifference' => { 234 => 0xe },
'exposuregaincustom' => { 138 => 0x89c },
'exposuregaindaylight' => { 138 => 0x898 },
'exposuregainflash' => { 138 => 0x89b },
'exposuregainfluorescent' => { 138 => 0x89a },
'exposuregaintungsten' => { 138 => 0x899 },
- 'exposureindex' => { 119 => 0xa215, 502 => 'ExposureIndex' },
+ 'exposureindex' => { 119 => 0xa215, 506 => 'ExposureIndex' },
'exposureindicator' => { 184 => 0x50 },
- 'exposurelevelincrements' => { 82 => 0x6, 83 => 0x6, 84 => 0x101, 85 => 0x5, 86 => 0x6, 87 => 0x5, 88 => 0x5, 89 => 0x6, 90 => 0x4, 424 => 0x58, 425 => 0x58 },
- 'exposurelockused' => { 484 => 'ExposureLockUsed' },
- 'exposuremode' => { 119 => 0xa402, 156 => 'ExposureMode', 181 => 0x1, 182 => 0xa, 183 => 0x0, 184 => 0x0, 187 => 0x34, 314 => 0x200, 334 => 0x40d, 414 => 0x8, 437 => 0xb041, 502 => 'ExposureMode' },
+ 'exposurelevelincrements' => { 82 => 0x6, 83 => 0x6, 84 => 0x101, 85 => 0x5, 86 => 0x6, 87 => 0x5, 88 => 0x5, 89 => 0x6, 90 => 0x4, 427 => 0x58, 428 => 0x58 },
+ 'exposurelockused' => { 488 => 'ExposureLockUsed' },
+ 'exposuremode' => { 119 => 0xa402, 156 => 'ExposureMode', 181 => 0x1, 182 => 0xa, 183 => 0x0, 184 => 0x0, 187 => 0x34, 317 => 0x200, 337 => 0x40d, 417 => 0x8, 440 => 0xb041, 506 => 'ExposureMode' },
'exposuremodeinmanual' => { 84 => 0x10b },
- 'exposureprogram' => { 119 => 0x8822, 404 => 0x1001, 417 => [0x17e,0x43], 424 => 0x3c, 425 => 0x3c, 426 => 0x5, 430 => 0x14, 435 => 0x3f, 442 => 0x2, 446 => 0x1175, 447 => 0x1179, 448 => 0x1155, 449 => 0x11d1, 450 => 0x11ad, 451 => 0x1065, 452 => 0x25d, 453 => 0x25d, 454 => 0x24c, 464 => 0xb, 465 => 0xc, 466 => 0xb, 468 => 0x48, 502 => 'ExposureProgram' },
- 'exposureshift' => { 314 => 0x203 },
- 'exposurestandardadjustment' => { 437 => 0x202d },
- 'exposuretime' => { 7 => 0x4, 8 => 0x4, 9 => 0x4, 10 => 0x4, 11 => 0x4, 12 => 0x4, 13 => 0x4, 14 => 0x4, 15 => 0x4, 16 => 0x4, 17 => 0x4, 18 => 0x4, 19 => 0x4, 20 => 0x4, 21 => 0x4, 22 => 0x4, 23 => 0x4, 24 => 0x4, 25 => 0x4, 26 => 0x4, 27 => 0x4, 28 => 0x4, 29 => 0x4, 30 => 0x6, 31 => 0x7, 77 => 0x16, 119 => 0x829a, 137 => 0xfd05, 140 => 0x20, 142 => 0xfa24, 144 => 0xf104, 147 => 0x12, 149 => 0x38, 151 => 0x14, 152 => 0x10, 154 => 0x10, 156 => 'ExposureTime', 181 => 0x9, 182 => 0x35, 183 => 0x48, 184 => 0x8, 187 => 0x49b8, 372 => 0x12, 411 => 0xa018, 414 => [0x32,0x4a], 424 => 0x0, 425 => 0x0, 442 => [0x21,0x23,0x27], 468 => 0x10, 502 => 'ExposureTime' },
- 'exposuretime2' => { 414 => [0x33,0x4b] },
+ 'exposureprogram' => { 119 => 0x8822, 407 => 0x1001, 420 => [0x17e,0x43], 427 => 0x3c, 428 => 0x3c, 429 => 0x5, 433 => 0x14, 438 => 0x3f, 445 => 0x2, 449 => 0x1175, 450 => 0x1179, 451 => 0x1155, 452 => 0x11d1, 453 => 0x11ad, 454 => 0x1065, 455 => 0x25d, 456 => 0x25d, 457 => 0x24c, 468 => 0xb, 469 => 0xc, 470 => 0xb, 472 => 0x48, 506 => 'ExposureProgram' },
+ 'exposureshift' => { 317 => 0x203 },
+ 'exposurestandardadjustment' => { 440 => 0x202d },
+ 'exposuretime' => { 7 => 0x4, 8 => 0x4, 9 => 0x4, 10 => 0x4, 11 => 0x4, 12 => 0x4, 13 => 0x4, 14 => 0x4, 15 => 0x4, 16 => 0x4, 17 => 0x4, 18 => 0x4, 19 => 0x4, 20 => 0x4, 21 => 0x4, 22 => 0x4, 23 => 0x4, 24 => 0x4, 25 => 0x4, 26 => 0x4, 27 => 0x4, 28 => 0x4, 29 => 0x4, 30 => 0x6, 31 => 0x7, 77 => 0x16, 119 => 0x829a, 137 => 0xfd05, 140 => 0x20, 142 => 0xfa24, 144 => 0xf104, 147 => 0x12, 149 => 0x38, 151 => 0x14, 152 => 0x10, 154 => 0x10, 156 => 'ExposureTime', 181 => 0x9, 182 => 0x35, 183 => 0x48, 184 => 0x8, 187 => 0x49b8, 375 => 0x12, 414 => 0xa018, 417 => [0x32,0x4a], 427 => 0x0, 428 => 0x0, 445 => [0x21,0x23,0x27], 472 => 0x10, 506 => 'ExposureTime' },
+ 'exposuretime2' => { 417 => [0x33,0x4b] },
'exposuretuning' => { 234 => 0x1c },
'exposurevalue' => { 138 => 0x3 },
'exposurewarning' => { 127 => 0x1302 },
'exrauto' => { 127 => 0x1033 },
'exrmode' => { 127 => 0x1034 },
- 'extdescraccessibility' => { 509 => 'ExtDescrAccessibility' },
- 'extendedmenubanks' => { 239 => 0x114, 240 => 0x124, 241 => 0x124 },
- 'extendedshutterspeeds' => { 312 => 0x102 },
- 'extendedwbdetect' => { 314 => 0x902 },
- 'extender' => { 315 => 0x301 },
- 'extenderfirmwareversion' => { 315 => 0x304 },
+ 'extdescraccessibility' => { 513 => 'ExtDescrAccessibility' },
+ 'extendedmenubanks' => { 239 => 0x120, 240 => 0x114, 241 => 0x124, 242 => 0x124 },
+ 'extendedshutterspeeds' => { 313 => 0x102, 314 => 0x102, 315 => 0x118 },
+ 'extendedwbdetect' => { 317 => 0x902 },
+ 'extender' => { 318 => 0x301 },
+ 'extenderfirmwareversion' => { 318 => 0x304 },
'extendermagnification' => { 158 => 'Magnification' },
'extendermake' => { 158 => 'Make' },
- 'extendermodel' => { 158 => 'Model', 315 => 0x303 },
- 'extenderserialnumber' => { 158 => 'SerialNumber', 315 => 0x302 },
- 'extenderstatus' => { 370 => 0x3 },
- 'externalflash' => { 317 => 0x1201 },
- 'externalflashae1' => { 319 => 0x101f },
- 'externalflashae1_0' => { 319 => 0x101b },
- 'externalflashae2' => { 319 => 0x1020 },
- 'externalflashae2_0' => { 319 => 0x101c },
- 'externalflashbounce' => { 317 => 0x1204, 319 => 0x1026, 360 => 0x1a },
+ 'extendermodel' => { 158 => 'Model', 318 => 0x303 },
+ 'extenderserialnumber' => { 158 => 'SerialNumber', 318 => 0x302 },
+ 'extenderstatus' => { 373 => 0x3 },
+ 'externalflash' => { 320 => 0x1201 },
+ 'externalflashae1' => { 322 => 0x101f },
+ 'externalflashae1_0' => { 322 => 0x101b },
+ 'externalflashae2' => { 322 => 0x1020 },
+ 'externalflashae2_0' => { 322 => 0x101c },
+ 'externalflashbounce' => { 320 => 0x1204, 322 => 0x1026, 363 => 0x1a },
'externalflashcompensation' => { 214 => 0x1b },
- 'externalflashexposurecomp' => { 234 => 0x17, 360 => 0x19 },
+ 'externalflashexposurecomp' => { 234 => 0x17, 363 => 0x19 },
'externalflashfirmware' => { 212 => 0x6, 213 => 0x6, 214 => 0x6, 215 => 0x6, 216 => 0x6, 217 => 0x6 },
'externalflashflags' => { 212 => 0x8, 213 => 0x8, 214 => 0x8, 215 => 0x8, 217 => 0x8 },
- 'externalflashguidenumber' => { 317 => 0x1203, 360 => '24.1' },
- 'externalflashgvalue' => { 319 => 0x1025 },
- 'externalflashmode' => { 319 => 0x1028, 360 => 0x2 },
+ 'externalflashguidenumber' => { 320 => 0x1203, 363 => '24.1' },
+ 'externalflashgvalue' => { 322 => 0x1025 },
+ 'externalflashmode' => { 322 => 0x1028, 363 => 0x2 },
'externalflashreadystate' => { 216 => '9.1' },
'externalflashstatus' => { 216 => '8.2' },
- 'externalflashzoom' => { 317 => 0x1205, 319 => 0x1027 },
+ 'externalflashzoom' => { 320 => 0x1205, 322 => 0x1027 },
'externalflashzoomoverride' => { 216 => '8.1' },
- 'externalmetadatalink' => { 510 => 'ExternalMetadataLink' },
- 'externalsensorbrightnessvalue' => { 332 => 0x311, 335 => 0x311, 336 => 0x311, 339 => 0x3408 },
- 'extrainfoversion' => { 428 => 0x1a },
+ 'externalmetadatalink' => { 514 => 'ExternalMetadataLink' },
+ 'externalsensorbrightnessvalue' => { 335 => 0x311, 338 => 0x311, 339 => 0x311, 342 => 0x3408 },
+ 'extrainfoversion' => { 431 => 0x1a },
'eyestartaf' => { 184 => 0x40 },
'fac100per' => { 138 => 0xe94 },
'fac170per' => { 138 => 0xe93 },
'fac18per' => { 138 => 0xe92 },
- 'face10position' => { 110 => 0x3f4, 111 => 0x1ec, 210 => 0x28, 357 => 0x12 },
- 'face10size' => { 358 => 0x12 },
- 'face11position' => { 210 => 0x2c, 357 => 0x14 },
- 'face11size' => { 358 => 0x14 },
- 'face12position' => { 210 => 0x30, 357 => 0x16 },
- 'face12size' => { 358 => 0x16 },
- 'face13position' => { 357 => 0x18 },
- 'face13size' => { 358 => 0x18 },
- 'face14position' => { 357 => 0x1a },
- 'face14size' => { 358 => 0x1a },
- 'face15position' => { 357 => 0x1c },
- 'face15size' => { 358 => 0x1c },
- 'face16position' => { 357 => 0x1e },
- 'face16size' => { 358 => 0x1e },
- 'face17position' => { 357 => 0x20 },
- 'face17size' => { 358 => 0x20 },
- 'face18position' => { 357 => 0x22 },
- 'face18size' => { 358 => 0x22 },
- 'face19position' => { 357 => 0x24 },
- 'face19size' => { 358 => 0x24 },
- 'face1position' => { 54 => 0x8, 110 => 0xd, 111 => 0x18, 210 => 0x4, 329 => 0x1, 357 => 0x0, 401 => 0xbc, 431 => 0x1, 432 => 0x0, 433 => 0x0, 434 => 0x5b },
- 'face1size' => { 358 => 0x0 },
- 'face20position' => { 357 => 0x26 },
- 'face20size' => { 358 => 0x26 },
- 'face21position' => { 357 => 0x28 },
- 'face21size' => { 358 => 0x28 },
- 'face22position' => { 357 => 0x2a },
- 'face22size' => { 358 => 0x2a },
- 'face23position' => { 357 => 0x2c },
- 'face23size' => { 358 => 0x2c },
- 'face24position' => { 357 => 0x2e },
- 'face24size' => { 358 => 0x2e },
- 'face25position' => { 357 => 0x30 },
- 'face25size' => { 358 => 0x30 },
- 'face26position' => { 357 => 0x32 },
- 'face26size' => { 358 => 0x32 },
- 'face27position' => { 357 => 0x34 },
- 'face27size' => { 358 => 0x34 },
- 'face28position' => { 357 => 0x36 },
- 'face28size' => { 358 => 0x36 },
- 'face29position' => { 357 => 0x38 },
- 'face29size' => { 358 => 0x38 },
- 'face2position' => { 54 => 0xa, 110 => 0x7c, 111 => 0x4c, 210 => 0x8, 329 => 0x5, 357 => 0x2, 401 => 0xc8, 431 => 0x6, 432 => 0x20, 433 => 0x25, 434 => 0x65 },
- 'face2size' => { 358 => 0x2 },
- 'face30position' => { 357 => 0x3a },
- 'face30size' => { 358 => 0x3a },
- 'face31position' => { 357 => 0x3c },
- 'face31size' => { 358 => 0x3c },
- 'face32position' => { 357 => 0x3e },
- 'face32size' => { 358 => 0x3e },
- 'face3position' => { 54 => 0xc, 110 => 0xeb, 111 => 0x80, 210 => 0xc, 329 => 0x9, 357 => 0x4, 401 => 0xd4, 431 => 0xb, 432 => 0x40, 433 => 0x4a, 434 => 0x6f },
- 'face3size' => { 358 => 0x4 },
- 'face4position' => { 54 => 0xe, 110 => 0x15a, 111 => 0xb4, 210 => 0x10, 329 => 0xd, 357 => 0x6, 401 => 0xe0, 431 => 0x10, 432 => 0x60, 433 => 0x6f, 434 => 0x79 },
- 'face4size' => { 358 => 0x6 },
- 'face5position' => { 54 => 0x10, 110 => 0x1c9, 111 => 0xe8, 210 => 0x14, 329 => 0x11, 357 => 0x8, 401 => 0xec, 431 => 0x15, 432 => 0x80, 433 => 0x94 },
- 'face5size' => { 358 => 0x8 },
- 'face6position' => { 54 => 0x12, 110 => 0x238, 111 => 0x11c, 210 => 0x18, 357 => 0xa, 401 => 0xf8, 431 => 0x1a, 432 => 0xa0, 433 => 0xb9 },
- 'face6size' => { 358 => 0xa },
- 'face7position' => { 54 => 0x14, 110 => 0x2a7, 111 => 0x150, 210 => 0x1c, 357 => 0xc, 401 => 0x104, 431 => 0x1f, 432 => 0xc0, 433 => 0xde },
- 'face7size' => { 358 => 0xc },
- 'face8position' => { 54 => 0x16, 110 => 0x316, 111 => 0x184, 210 => 0x20, 357 => 0xe, 401 => 0x110, 431 => 0x24, 432 => 0xe0, 433 => 0x103 },
- 'face8size' => { 358 => 0xe },
- 'face9position' => { 54 => 0x18, 110 => 0x385, 111 => 0x1b8, 210 => 0x24, 357 => 0x10 },
- 'face9size' => { 358 => 0x10 },
- 'facebalanceorigi' => { 490 => 'FaceBalanceOrigI' },
- 'facebalanceorigq' => { 490 => 'FaceBalanceOrigQ' },
- 'facebalancestrength' => { 490 => 'FaceBalanceStrength' },
- 'facebalancewarmth' => { 490 => 'FaceBalanceWarmth' },
- 'facedetect' => { 372 => 0x76, 411 => 0x100 },
- 'facedetectarea' => { 318 => 0x1201 },
- 'facedetectframecrop' => { 318 => 0x1207 },
- 'facedetectframesize' => { 54 => 0x3, 110 => 0x1, 111 => 0x4, 210 => 0x1, 318 => 0x1203, 372 => 0x77, 401 => 0xb6 },
- 'facedetection' => { 426 => 0x30, 442 => 0x19 },
+ 'face10position' => { 110 => 0x3f4, 111 => 0x1ec, 210 => 0x28, 360 => 0x12 },
+ 'face10size' => { 361 => 0x12 },
+ 'face11position' => { 210 => 0x2c, 360 => 0x14 },
+ 'face11size' => { 361 => 0x14 },
+ 'face12position' => { 210 => 0x30, 360 => 0x16 },
+ 'face12size' => { 361 => 0x16 },
+ 'face13position' => { 360 => 0x18 },
+ 'face13size' => { 361 => 0x18 },
+ 'face14position' => { 360 => 0x1a },
+ 'face14size' => { 361 => 0x1a },
+ 'face15position' => { 360 => 0x1c },
+ 'face15size' => { 361 => 0x1c },
+ 'face16position' => { 360 => 0x1e },
+ 'face16size' => { 361 => 0x1e },
+ 'face17position' => { 360 => 0x20 },
+ 'face17size' => { 361 => 0x20 },
+ 'face18position' => { 360 => 0x22 },
+ 'face18size' => { 361 => 0x22 },
+ 'face19position' => { 360 => 0x24 },
+ 'face19size' => { 361 => 0x24 },
+ 'face1position' => { 54 => 0x8, 110 => 0xd, 111 => 0x18, 210 => 0x4, 332 => 0x1, 360 => 0x0, 404 => 0xbc, 434 => 0x1, 435 => 0x0, 436 => 0x0, 437 => 0x5b },
+ 'face1size' => { 361 => 0x0 },
+ 'face20position' => { 360 => 0x26 },
+ 'face20size' => { 361 => 0x26 },
+ 'face21position' => { 360 => 0x28 },
+ 'face21size' => { 361 => 0x28 },
+ 'face22position' => { 360 => 0x2a },
+ 'face22size' => { 361 => 0x2a },
+ 'face23position' => { 360 => 0x2c },
+ 'face23size' => { 361 => 0x2c },
+ 'face24position' => { 360 => 0x2e },
+ 'face24size' => { 361 => 0x2e },
+ 'face25position' => { 360 => 0x30 },
+ 'face25size' => { 361 => 0x30 },
+ 'face26position' => { 360 => 0x32 },
+ 'face26size' => { 361 => 0x32 },
+ 'face27position' => { 360 => 0x34 },
+ 'face27size' => { 361 => 0x34 },
+ 'face28position' => { 360 => 0x36 },
+ 'face28size' => { 361 => 0x36 },
+ 'face29position' => { 360 => 0x38 },
+ 'face29size' => { 361 => 0x38 },
+ 'face2position' => { 54 => 0xa, 110 => 0x7c, 111 => 0x4c, 210 => 0x8, 332 => 0x5, 360 => 0x2, 404 => 0xc8, 434 => 0x6, 435 => 0x20, 436 => 0x25, 437 => 0x65 },
+ 'face2size' => { 361 => 0x2 },
+ 'face30position' => { 360 => 0x3a },
+ 'face30size' => { 361 => 0x3a },
+ 'face31position' => { 360 => 0x3c },
+ 'face31size' => { 361 => 0x3c },
+ 'face32position' => { 360 => 0x3e },
+ 'face32size' => { 361 => 0x3e },
+ 'face3position' => { 54 => 0xc, 110 => 0xeb, 111 => 0x80, 210 => 0xc, 332 => 0x9, 360 => 0x4, 404 => 0xd4, 434 => 0xb, 435 => 0x40, 436 => 0x4a, 437 => 0x6f },
+ 'face3size' => { 361 => 0x4 },
+ 'face4position' => { 54 => 0xe, 110 => 0x15a, 111 => 0xb4, 210 => 0x10, 332 => 0xd, 360 => 0x6, 404 => 0xe0, 434 => 0x10, 435 => 0x60, 436 => 0x6f, 437 => 0x79 },
+ 'face4size' => { 361 => 0x6 },
+ 'face5position' => { 54 => 0x10, 110 => 0x1c9, 111 => 0xe8, 210 => 0x14, 332 => 0x11, 360 => 0x8, 404 => 0xec, 434 => 0x15, 435 => 0x80, 436 => 0x94 },
+ 'face5size' => { 361 => 0x8 },
+ 'face6position' => { 54 => 0x12, 110 => 0x238, 111 => 0x11c, 210 => 0x18, 360 => 0xa, 404 => 0xf8, 434 => 0x1a, 435 => 0xa0, 436 => 0xb9 },
+ 'face6size' => { 361 => 0xa },
+ 'face7position' => { 54 => 0x14, 110 => 0x2a7, 111 => 0x150, 210 => 0x1c, 360 => 0xc, 404 => 0x104, 434 => 0x1f, 435 => 0xc0, 436 => 0xde },
+ 'face7size' => { 361 => 0xc },
+ 'face8position' => { 54 => 0x16, 110 => 0x316, 111 => 0x184, 210 => 0x20, 360 => 0xe, 404 => 0x110, 434 => 0x24, 435 => 0xe0, 436 => 0x103 },
+ 'face8size' => { 361 => 0xe },
+ 'face9position' => { 54 => 0x18, 110 => 0x385, 111 => 0x1b8, 210 => 0x24, 360 => 0x10 },
+ 'face9size' => { 361 => 0x10 },
+ 'facebalanceorigi' => { 494 => 'FaceBalanceOrigI' },
+ 'facebalanceorigq' => { 494 => 'FaceBalanceOrigQ' },
+ 'facebalancestrength' => { 494 => 'FaceBalanceStrength' },
+ 'facebalancewarmth' => { 494 => 'FaceBalanceWarmth' },
+ 'facedetect' => { 375 => 0x76, 414 => 0x100 },
+ 'facedetectarea' => { 321 => 0x1201 },
+ 'facedetectframecrop' => { 321 => 0x1207 },
+ 'facedetectframesize' => { 54 => 0x3, 110 => 0x1, 111 => 0x4, 210 => 0x1, 321 => 0x1203, 375 => 0x77, 404 => 0xb6 },
+ 'facedetection' => { 429 => 0x30, 445 => 0x19 },
'faceelementpositions' => { 127 => 0x4203 },
'faceelementselected' => { 127 => 0x4005 },
'faceelementtypes' => { 127 => 0x4201 },
- 'faceid' => { 492 => 'FaceID' },
+ 'faceid' => { 496 => 'FaceID' },
'faceinfounknown' => { 113 => 0x2089 },
- 'facename' => { 411 => 0x123 },
+ 'facename' => { 414 => 0x123 },
'faceorientation' => { 111 => 0x8 },
- 'faceposition' => { 356 => 0x2, 412 => 0x4 },
+ 'faceposition' => { 359 => 0x2, 415 => 0x4 },
'facepositions' => { 127 => 0x4103 },
- 'facerecognition' => { 411 => 0x120 },
- 'facesdetected' => { 54 => 0x2, 55 => 0x2, 56 => 0x3, 110 => 0x0, 111 => 0x2, 113 => 0x211c, 127 => 0x4100, 210 => 0x3, 318 => 0x1200, 337 => 0x3f, 356 => 0x0, 401 => 0xb5, 412 => 0x0, 431 => 0x0, 434 => 0x3, 445 => 0x30 },
- 'facesrecognized' => { 330 => 0x0 },
+ 'facerecognition' => { 414 => 0x120 },
+ 'facesdetected' => { 54 => 0x2, 55 => 0x2, 56 => 0x3, 110 => 0x0, 111 => 0x2, 113 => 0x211c, 127 => 0x4100, 210 => 0x3, 321 => 0x1200, 340 => 0x3f, 359 => 0x0, 404 => 0xb5, 415 => 0x0, 434 => 0x0, 437 => 0x3, 448 => 0x30 },
+ 'facesrecognized' => { 333 => 0x0 },
'facewidth' => { 55 => 0x1 },
- 'fade' => { 437 => 0x2034 },
+ 'fade' => { 440 => 0x2034 },
'faithfuloutputhighlightpoint' => { 109 => 0x38 },
'faithfuloutputshadowpoint' => { 109 => 0x39 },
'faithfulrawcolortone' => { 109 => 0x31 },
@@ -2773,38 +2781,38 @@ my %tagLookup = (
'faithfulunsharpmaskfineness' => { 109 => 0xac },
'faithfulunsharpmaskstrength' => { 109 => 0xaa },
'faithfulunsharpmaskthreshold' => { 109 => 0xae },
- 'far' => { 481 => 'Far' },
+ 'far' => { 485 => 'Far' },
'fastresetlinetime' => { 138 => 0x1860 },
- 'feedidentifier' => { 510 => 'FeedIdentifier' },
+ 'feedidentifier' => { 514 => 'FeedIdentifier' },
'femicroadjustment' => { 84 => 0x111 },
- 'ffid' => { 500 => 'ffid' },
- 'field' => { 514 => 'field' },
- 'fieldcount' => { 319 => 0x103f },
- 'fieldofview' => { 397 => "FOV\x00" },
+ 'ffid' => { 504 => 'ffid' },
+ 'field' => { 518 => 'field' },
+ 'fieldcount' => { 322 => 0x103f },
+ 'fieldofview' => { 400 => "FOV\x00" },
'fifoenonepixeldelay' => { 138 => 0x1901 },
'filecreatedate' => { 120 => 'FileCreateDate' },
- 'filedatarate' => { 525 => 'fileDataRate' },
- 'fileformat' => { 95 => 0x0, 132 => 0x14, 414 => [0x22,0x26], 437 => 0xb000 },
+ 'filedatarate' => { 529 => 'fileDataRate' },
+ 'fileformat' => { 95 => 0x0, 132 => 0x14, 417 => [0x22,0x26], 440 => 0xb000 },
'filegroupid' => { 120 => 'FileGroupID' },
- 'fileindex' => { 7 => 0x143, 9 => 0x2d0, 11 => 0x172, 13 => 0x22c, 14 => 0x133, 15 => 0x13f, 16 => 0x1d3, 17 => 0x19b, 18 => 0x1e4, 19 => 0xd0, 20 => 0x1bb, 21 => 0x28c, 22 => 0x1db, 23 => 0x1d9, 24 => [0x270,0x274], 25 => 0x2aa, 26 => 0x2b3, 28 => 0x1eb, 29 => 0x4ae, 338 => 0x0 },
+ 'fileindex' => { 7 => 0x143, 9 => 0x2d0, 11 => 0x172, 13 => 0x22c, 14 => 0x133, 15 => 0x13f, 16 => 0x1d3, 17 => 0x19b, 18 => 0x1e4, 19 => 0xd0, 20 => 0x1bb, 21 => 0x28c, 22 => 0x1db, 23 => 0x1d9, 24 => [0x270,0x274], 25 => 0x2aa, 26 => 0x2b3, 28 => 0x1eb, 29 => 0x4ae, 341 => 0x0 },
'fileindex2' => { 21 => 0x290 },
'filemodifydate' => { 120 => 'FileModifyDate' },
'filename' => { 120 => 'FileName' },
- 'filenameasdelivered' => { 324 => 'FileNameAsDelivered' },
- 'filenumber' => { 57 => 0x1, 64 => 0x8, 97 => 0x1817, 114 => 'Canon-FileNumber', 211 => 0x4, 400 => 0x10 },
+ 'filenameasdelivered' => { 327 => 'FileNameAsDelivered' },
+ 'filenumber' => { 57 => 0x1, 64 => 0x8, 97 => 0x1817, 114 => 'Canon-FileNumber', 211 => 0x4, 403 => 0x10 },
'filenumbermemory' => { 181 => 0x1a },
- 'filenumbersequence' => { 296 => '12.2', 301 => '3.1', 302 => '4.1', 303 => '4.1', 305 => '11.1', 306 => '4.3', 311 => '5.2', 312 => 0x48 },
+ 'filenumbersequence' => { 297 => '12.2', 302 => '3.1', 303 => '4.1', 304 => '4.1', 306 => '11.1', 307 => '4.3', 312 => '5.2', 313 => 0x48, 314 => 0x48, 315 => 0x48 },
'filepermissions' => { 120 => 'FilePermissions' },
- 'filesource' => { 119 => 0xa300, 127 => 0x8000, 502 => 'FileSource' },
+ 'filesource' => { 119 => 0xa300, 127 => 0x8000, 506 => 'FileSource' },
'fileuserid' => { 120 => 'FileUserID' },
'fileversion' => { 132 => 0x16 },
'fillflashautoreduction' => { 82 => 0xe, 83 => 0xe, 90 => 0xa },
- 'filllight' => { 496 => 'FillLight', 498 => 'FillLight' },
+ 'filllight' => { 500 => 'FillLight', 502 => 'FillLight' },
'fillorder' => { 119 => 0x10a },
- 'filmgraineffect' => { 314 => 0x538 },
- 'filmmode' => { 127 => 0x1401, 334 => 0x412, 337 => 0x42 },
- 'filmtype' => { 256 => 0x2 },
- 'filtereffect' => { 57 => 0xe, 248 => 0x37, 249 => 0x3f, 250 => 0x47, 337 => 0xa1 },
+ 'filmgraineffect' => { 317 => 0x538 },
+ 'filmmode' => { 127 => 0x1401, 337 => 0x412, 340 => 0x42 },
+ 'filmtype' => { 257 => 0x2 },
+ 'filtereffect' => { 57 => 0xe, 249 => 0x37, 250 => 0x3f, 251 => 0x47, 340 => 0xa1 },
'filtereffectauto' => { 71 => 0xa0 },
'filtereffectfaithful' => { 70 => 0x70, 71 => 0x70 },
'filtereffectlandscape' => { 70 => 0x40, 71 => 0x40 },
@@ -2816,69 +2824,69 @@ my %tagLookup = (
'filtereffectuserdef2' => { 70 => 0xb8, 71 => 0xd0 },
'filtereffectuserdef3' => { 70 => 0xd0, 71 => 0xe8 },
'finderdisplayduringexposure' => { 83 => 0x1 },
- 'finesharpness' => { 372 => 0x70 },
- 'finetuneoptcenterweighted' => { 296 => '7.2', 297 => '9.1', 299 => '9.1', 300 => '9.1', 304 => '8.1', 309 => '9.1', 310 => '9.1', 311 => '9.1', 312 => 0x23 },
- 'finetuneopthighlightweighted' => { 299 => '46.1', 300 => '46.1', 309 => '46.1', 310 => '46.1', 312 => 0x27 },
- 'finetuneoptmatrixmetering' => { 296 => '8.1', 297 => '8.2', 299 => '8.2', 300 => '8.2', 304 => '7.2', 305 => '6.1', 309 => '8.2', 310 => '8.2', 311 => '8.2', 312 => 0x21 },
- 'finetuneoptspotmetering' => { 296 => '8.2', 297 => '9.2', 299 => '9.2', 300 => '9.2', 304 => '8.2', 305 => '6.2', 309 => '9.2', 310 => '9.2', 311 => '9.2', 312 => 0x25 },
+ 'finesharpness' => { 375 => 0x70 },
+ 'finetuneoptcenterweighted' => { 297 => '7.2', 298 => '9.1', 300 => '9.1', 301 => '9.1', 305 => '8.1', 310 => '9.1', 311 => '9.1', 312 => '9.1', 313 => 0x23, 314 => 0x23, 315 => 0x23 },
+ 'finetuneopthighlightweighted' => { 300 => '46.1', 301 => '46.1', 310 => '46.1', 311 => '46.1', 313 => 0x27, 314 => 0x27, 315 => 0x27 },
+ 'finetuneoptmatrixmetering' => { 297 => '8.1', 298 => '8.2', 300 => '8.2', 301 => '8.2', 305 => '7.2', 306 => '6.1', 310 => '8.2', 311 => '8.2', 312 => '8.2', 313 => 0x21, 314 => 0x21, 315 => 0x21 },
+ 'finetuneoptspotmetering' => { 297 => '8.2', 298 => '9.2', 300 => '9.2', 301 => '9.2', 305 => '8.2', 306 => '6.2', 310 => '9.2', 311 => '9.2', 312 => '9.2', 313 => 0x25, 314 => 0x25, 315 => 0x25 },
'finishexposure' => { 138 => 0xdbd },
'finishfiletype' => { 138 => 0xdb8 },
'finishlook' => { 138 => 0xdbc },
'finishnoise' => { 138 => 0xdba },
'finishresolution' => { 138 => 0xdb9 },
'finishsharpening' => { 138 => 0xdbb },
- 'firmware' => { 319 => 0x405, 414 => [0x8c,0x17,0x3b], 493 => 'Firmware' },
- 'firmware2' => { 414 => 0x57 },
- 'firmwaredate' => { 112 => 0x15, 113 => 0x2001, 398 => 0x4, 400 => 0x30 },
+ 'firmware' => { 322 => 0x405, 417 => [0x8c,0x17,0x3b], 497 => 'Firmware' },
+ 'firmware2' => { 417 => 0x57 },
+ 'firmwaredate' => { 112 => 0x15, 113 => 0x2001, 401 => 0x4, 403 => 0x30 },
'firmwareid' => { 188 => 0x0 },
- 'firmwarename' => { 411 => 0xa001 },
- 'firmwarerevision' => { 19 => 0xa4, 64 => 0x1e, 402 => 0x0 },
- 'firmwarerevision2' => { 402 => 0xc },
- 'firmwareversion' => { 7 => 0x10b, 11 => 0x136, 14 => 0xff, 15 => 0x107, 138 => [0x415,0xce5], 154 => 0x57, 156 => 'FirmwareVersion', 335 => 0x320, 337 => 0x2, 339 => 0x3109, 372 => 0x230, 397 => ['CNFV','FIRM'], 399 => 0x18, 400 => 0x2a, 404 => 0x2 },
- 'firmwareversions' => { 381 => 0x301 },
- 'firstphotodate' => { 484 => 'FirstPhotoDate' },
- 'firstpublicationdate' => { 324 => 'FirstPublicationDate' },
- 'fixtureidentifier' => { 131 => 0x16, 491 => 'FixtureIdentifier' },
- 'flash' => { 114 => 'XMP-Flash', 119 => 0x9209, 152 => 0x22, 182 => 0x1f, 183 => 0x15, 400 => 0x5a, 502 => 'Flash' },
- 'flashaction' => { 424 => 0x3e, 425 => 0x3e, 437 => 0x2017, 442 => [0x2a,0x2c,0x30] },
- 'flashaction2' => { 424 => 0x4c, 425 => 0x4c, 442 => 0x77 },
- 'flashactionexternal' => { 442 => [0x78,0x7c] },
+ 'firmwarename' => { 414 => 0xa001 },
+ 'firmwarerevision' => { 19 => 0xa4, 64 => 0x1e, 405 => 0x0 },
+ 'firmwarerevision2' => { 405 => 0xc },
+ 'firmwareversion' => { 7 => 0x10b, 11 => 0x136, 14 => 0xff, 15 => 0x107, 138 => [0x415,0xce5], 154 => 0x57, 156 => 'FirmwareVersion', 338 => 0x320, 340 => 0x2, 342 => 0x3109, 375 => 0x230, 400 => ['CNFV','FIRM'], 402 => 0x18, 403 => 0x2a, 407 => 0x2 },
+ 'firmwareversions' => { 384 => 0x301 },
+ 'firstphotodate' => { 488 => 'FirstPhotoDate' },
+ 'firstpublicationdate' => { 327 => 'FirstPublicationDate' },
+ 'fixtureidentifier' => { 131 => 0x16, 495 => 'FixtureIdentifier' },
+ 'flash' => { 114 => 'XMP-Flash', 119 => 0x9209, 152 => 0x22, 182 => 0x1f, 183 => 0x15, 403 => 0x5a, 506 => 'Flash' },
+ 'flashaction' => { 427 => 0x3e, 428 => 0x3e, 440 => 0x2017, 445 => [0x2a,0x2c,0x30] },
+ 'flashaction2' => { 427 => 0x4c, 428 => 0x4c, 445 => 0x77 },
+ 'flashactionexternal' => { 445 => [0x78,0x7c] },
'flashactivity' => { 34 => 0x1c },
'flashbatterylevel' => { 44 => 0x249 },
- 'flashbias' => { 337 => 0x24 },
+ 'flashbias' => { 340 => 0x24 },
'flashbits' => { 34 => 0x1d },
- 'flashburstpriority' => { 312 => 0x111 },
+ 'flashburstpriority' => { 313 => 0x111, 314 => 0x111, 315 => 0x129 },
'flashbuttonfunction' => { 84 => 0x70e },
- 'flashchargelevel' => { 319 => 0x1010 },
+ 'flashchargelevel' => { 322 => 0x1010 },
'flashcolorfilter' => { 214 => 0x10, 215 => 0x10, 217 => 0x10 },
'flashcommandermode' => { 212 => '9.1', 213 => '9.1', 214 => '9.1', 215 => '9.1', 217 => '9.1' },
- 'flashcompensation' => { 138 => 0x3f3, 212 => 0xa, 213 => 0xa, 214 => 0xa, 215 => 0x27, 216 => 0xa, 217 => 0xa, 493 => 'FlashCompensation' },
- 'flashcontrol' => { 424 => 0x23, 425 => 0x1f, 426 => 0x21 },
- 'flashcontrolbuilt-in' => { 305 => '16.1', 306 => '23.1', 308 => '23.1', 309 => '24.1' },
- 'flashcontrolmode' => { 212 => '9.2', 213 => '9.2', 214 => '9.2', 215 => '9.2', 217 => '9.2', 223 => 0x214, 238 => 0x148, 239 => 0x1a8, 240 => 0x1bc, 241 => 0x1bc, 314 => 0x404 },
- 'flashcurtain' => { 337 => 0x48 },
+ 'flashcompensation' => { 138 => 0x3f3, 212 => 0xa, 213 => 0xa, 214 => 0xa, 215 => 0x27, 216 => 0xa, 217 => 0xa, 497 => 'FlashCompensation' },
+ 'flashcontrol' => { 427 => 0x23, 428 => 0x1f, 429 => 0x21 },
+ 'flashcontrolbuilt-in' => { 306 => '16.1', 307 => '23.1', 309 => '23.1', 310 => '24.1' },
+ 'flashcontrolmode' => { 212 => '9.2', 213 => '9.2', 214 => '9.2', 215 => '9.2', 217 => '9.2', 223 => 0x214, 238 => 0x148, 239 => 0x1b8, 240 => 0x1a8, 241 => 0x1bc, 242 => 0x1bc, 317 => 0x404 },
+ 'flashcurtain' => { 340 => 0x48 },
'flashdefault' => { 184 => 0x42 },
- 'flashdevice' => { 319 => 0x1005 },
+ 'flashdevice' => { 322 => 0x1005 },
'flashdistance' => { 113 => 0x2034 },
- 'flashenergy' => { 119 => 0xa20b, 502 => 'FlashEnergy' },
+ 'flashenergy' => { 119 => 0xa20b, 506 => 'FlashEnergy' },
'flashexposurebracketvalue' => { 234 => 0x18 },
- 'flashexposurecomp' => { 77 => 0xf, 127 => 0x1011, 159 => 'ExposureComp', 181 => 0x23, 186 => 0x104, 187 => 0x49c1, 234 => 0x12, 314 => 0x401, 319 => 0x1023, 372 => 0x4d, 404 => 0x100b, 414 => [0x3a,0x56], 437 => 0x104 },
- 'flashexposurecomp2' => { 277 => 0x4d2 },
+ 'flashexposurecomp' => { 77 => 0xf, 127 => 0x1011, 159 => 'ExposureComp', 181 => 0x23, 186 => 0x104, 187 => 0x49c1, 234 => 0x12, 317 => 0x401, 322 => 0x1023, 375 => 0x4d, 407 => 0x100b, 417 => [0x3a,0x56], 440 => 0x104 },
+ 'flashexposurecomp2' => { 278 => 0x4d2 },
'flashexposurecomp3' => { 214 => 0x1d },
'flashexposurecomp4' => { 214 => 0x27 },
- 'flashexposurecomparea' => { 297 => '38.4', 299 => '38.4', 300 => '38.4', 309 => '38.4', 310 => '38.4', 312 => 0x59 },
- 'flashexposurecompset' => { 184 => 0x10, 345 => 0xe, 424 => 0x14, 425 => 0x12, 426 => 0x23, 442 => 0x1f },
- 'flashexposurecompset2' => { 442 => [0x26,0x2c] },
+ 'flashexposurecomparea' => { 298 => '38.4', 300 => '38.4', 301 => '38.4', 310 => '38.4', 311 => '38.4', 313 => 0x59, 314 => 0x59, 315 => 0x59 },
+ 'flashexposurecompset' => { 184 => 0x10, 348 => 0xe, 427 => 0x14, 428 => 0x12, 429 => 0x23, 445 => 0x1f },
+ 'flashexposurecompset2' => { 445 => [0x26,0x2c] },
'flashexposureindicator' => { 184 => 0x54 },
'flashexposureindicatorlast' => { 184 => 0x56 },
'flashexposureindicatornext' => { 184 => 0x55 },
'flashexposurelock' => { 57 => 0x19 },
- 'flashfired' => { 140 => 0x5d, 159 => 'Fired', 181 => 0x14, 276 => '590.3', 502 => [\'Flash','FlashFired'] },
+ 'flashfired' => { 140 => 0x5d, 159 => 'Fired', 181 => 0x14, 277 => '590.3', 506 => [\'Flash','FlashFired'] },
'flashfiring' => { 84 => 0x306, 85 => 0x6, 86 => 0x7, 89 => 0x7 },
- 'flashfirmwareversion' => { 315 => 0x1002 },
+ 'flashfirmwareversion' => { 318 => 0x1002 },
'flashfocallength' => { 212 => 0xb, 213 => 0xc, 214 => 0xc, 215 => 0xc, 216 => 0xc, 217 => 0x26 },
- 'flashfunction' => { 187 => 0x31, 502 => [\'Flash','FlashFunction'] },
- 'flashgndistance' => { 212 => 0xe, 213 => 0xf, 214 => 0xf, 215 => 0xf, 216 => 0xf, 217 => 0xf, 223 => 0x21a, 238 => 0x14e, 239 => 0x1ae, 240 => 0x1c2, 241 => 0x1c2 },
+ 'flashfunction' => { 187 => 0x31, 506 => [\'Flash','FlashFunction'] },
+ 'flashgndistance' => { 212 => 0xe, 213 => 0xf, 214 => 0xf, 215 => 0xf, 216 => 0xf, 217 => 0xf, 223 => 0x21a, 238 => 0x14e, 240 => 0x1ae, 241 => 0x1c2, 242 => 0x1c2 },
'flashgroupacompensation' => { 212 => 0x11, 213 => 0x12, 214 => 0x13, 215 => 0x28, 216 => 0x28, 217 => 0x28 },
'flashgroupacontrolmode' => { 212 => 0xf, 213 => '16.1', 214 => '17.1', 215 => '17.1', 216 => '17.1', 217 => '17.1' },
'flashgroupaoutput' => { 212 => 0x11, 213 => 0x12, 214 => 0x13, 215 => 0x28, 216 => 0x28, 217 => 0x28 },
@@ -2890,152 +2898,153 @@ my %tagLookup = (
'flashgroupcoutput' => { 213 => 0x14, 214 => 0x15, 215 => 0x2a, 216 => 0x2a, 217 => 0x2a },
'flashguidenumber' => { 77 => 0xd, 94 => 0x0, 159 => 'GuideNumber' },
'flashilluminationpattern' => { 217 => 0x25 },
- 'flashintensity' => { 112 => [0x19,0x5], 314 => 0x405 },
- 'flashlevel' => { 298 => 0x9, 437 => 0xb048 },
+ 'flashintensity' => { 112 => [0x19,0x5], 317 => 0x405 },
+ 'flashlevel' => { 299 => 0x9, 440 => 0xb048 },
'flashmake' => { 159 => 'Make' },
'flashmanufacturer' => { 178 => 'FlashManufacturer' },
- 'flashmastercompensation' => { 223 => 0x22e, 238 => 0x162, 239 => 0x1aa, 240 => 0x1be, 241 => 0x1be },
+ 'flashmastercompensation' => { 223 => 0x22e, 238 => 0x162, 240 => 0x1aa, 241 => 0x1be, 242 => 0x1be },
'flashmastercontrolmode' => { 223 => 0x22c, 238 => 0x160 },
'flashmasteroutput' => { 223 => 0x232, 238 => 0x166 },
'flashmetering' => { 181 => 0x3f, 184 => 0x1c },
'flashmeteringmode' => { 7 => 0x15, 13 => 0x15, 14 => 0x15, 15 => 0x15, 16 => 0x15, 17 => 0x15, 18 => 0x15, 20 => 0x15, 22 => 0x15, 28 => 0x15 },
- 'flashmeteringsegments' => { 372 => 0x20a },
- 'flashmode' => { 112 => 0x4, 138 => 0x3f2, 140 => 0x5c, 151 => 0x27, 159 => 'Mode', 181 => 0x2, 182 => 0x20, 183 => 0x16, 184 => 0xf, 234 => 0x87, 314 => 0x400, 319 => 0x1004, 372 => 0xc, 379 => 0x4, 403 => 0x20, 404 => 0x100a, 413 => 0x225, 424 => 0x13, 425 => 0x7f, 426 => 0x20, 442 => 0x10, 446 => 0x1138, 447 => 0x1138, 448 => 0x1114, 449 => 0x1190, 450 => 0x116c, 451 => 0x1024, 452 => 0x21c, 453 => 0x21c, 454 => 0x211, 502 => [\'Flash','FlashMode'] },
- 'flashmodebutton' => { 241 => 0x80e },
- 'flashmodebuttonplaybackmode' => { 241 => 0x818 },
- 'flashmodel' => { 159 => 'Model', 178 => 'FlashModel', 315 => 0x1001 },
- 'flashoptions' => { 353 => 0x2 },
- 'flashoptions2' => { 353 => 0x10 },
- 'flashoutput' => { 44 => 0x248, 77 => 0x21, 212 => 0xa, 213 => 0xa, 214 => 0xa, 215 => 0x27, 217 => 0x21, 223 => 0x21e, 238 => 0x152, 239 => 0x1b2, 240 => 0x1c6, 241 => 0x1c6 },
- 'flashpixversion' => { 119 => 0xa000, 502 => 'FlashpixVersion' },
- 'flashredeyemode' => { 502 => [\'Flash','FlashRedEyeMode'] },
- 'flashremotecontrol' => { 223 => 0x228, 238 => 0x15c, 239 => 0x1bc, 314 => 0x403 },
- 'flashreturn' => { 502 => [\'Flash','FlashReturn'] },
- 'flashserialnumber' => { 159 => 'SerialNumber', 315 => 0x1003 },
+ 'flashmeteringsegments' => { 375 => 0x20a },
+ 'flashmode' => { 112 => 0x4, 138 => 0x3f2, 140 => 0x5c, 151 => 0x27, 159 => 'Mode', 181 => 0x2, 182 => 0x20, 183 => 0x16, 184 => 0xf, 234 => 0x87, 317 => 0x400, 322 => 0x1004, 375 => 0xc, 382 => 0x4, 406 => 0x20, 407 => 0x100a, 416 => 0x225, 427 => 0x13, 428 => 0x7f, 429 => 0x20, 445 => 0x10, 449 => 0x1138, 450 => 0x1138, 451 => 0x1114, 452 => 0x1190, 453 => 0x116c, 454 => 0x1024, 455 => 0x21c, 456 => 0x21c, 457 => 0x211, 506 => [\'Flash','FlashMode'] },
+ 'flashmodebutton' => { 242 => 0x80e },
+ 'flashmodebuttonplaybackmode' => { 242 => 0x818 },
+ 'flashmodel' => { 159 => 'Model', 178 => 'FlashModel', 318 => 0x1001 },
+ 'flashoptions' => { 356 => 0x2 },
+ 'flashoptions2' => { 356 => 0x10 },
+ 'flashoutput' => { 44 => 0x248, 77 => 0x21, 212 => 0xa, 213 => 0xa, 214 => 0xa, 215 => 0x27, 217 => 0x21, 223 => 0x21e, 238 => 0x152, 240 => 0x1b2, 241 => 0x1c6, 242 => 0x1c6 },
+ 'flashpixversion' => { 119 => 0xa000, 506 => 'FlashpixVersion' },
+ 'flashredeyemode' => { 506 => [\'Flash','FlashRedEyeMode'] },
+ 'flashremotecontrol' => { 223 => 0x228, 238 => 0x15c, 240 => 0x1bc, 317 => 0x403 },
+ 'flashreturn' => { 506 => [\'Flash','FlashReturn'] },
+ 'flashserialnumber' => { 159 => 'SerialNumber', 318 => 0x1003 },
'flashsetting' => { 234 => 0x8 },
- 'flashshutterspeed' => { 296 => '20.2', 297 => '23.2', 299 => '23.2', 300 => '23.2', 305 => '15.2', 306 => '22.2', 307 => '7.2', 308 => '22.2', 309 => '23.2', 310 => '23.2', 311 => '23.1', 312 => 0x57 },
+ 'flashshutterspeed' => { 297 => '20.2', 298 => '23.2', 300 => '23.2', 301 => '23.2', 306 => '15.2', 307 => '22.2', 308 => '7.2', 309 => '22.2', 310 => '23.2', 311 => '23.2', 312 => '23.1', 313 => 0x57, 314 => 0x57, 315 => 0x57 },
'flashsource' => { 212 => 0x4, 213 => 0x4, 214 => 0x4, 215 => 0x4, 216 => 0x4, 217 => 0x4 },
- 'flashstatus' => { 360 => 0x0, 442 => [0x82,0x86], 456 => 0x31, 457 => 0x39, 458 => 0x39 },
- 'flashstatusbuilt-in' => { 426 => [0x87,0x287] },
- 'flashstatusexternal' => { 426 => [0x88,0x288] },
- 'flashsyncspeed' => { 296 => '20.1', 297 => '23.1', 299 => '23.1', 300 => '23.1', 305 => '15.1', 306 => '22.1', 308 => '22.1', 309 => '23.1', 310 => '23.1', 312 => 0x53 },
+ 'flashstatus' => { 363 => 0x0, 445 => [0x82,0x86], 459 => 0x31, 460 => 0x39, 461 => 0x39 },
+ 'flashstatusbuilt-in' => { 429 => [0x87,0x287] },
+ 'flashstatusexternal' => { 429 => [0x88,0x288] },
+ 'flashsyncspeed' => { 297 => '20.1', 298 => '23.1', 300 => '23.1', 301 => '23.1', 306 => '15.1', 307 => '22.1', 309 => '22.1', 310 => '23.1', 311 => '23.1', 313 => 0x53, 314 => 0x53, 315 => 0x53 },
'flashsyncspeedav' => { 82 => 0x3, 84 => 0x10f, 85 => 0x2, 86 => 0x3, 87 => 0x2, 88 => 0x2, 89 => 0x3, 90 => 0x6 },
'flashthreshold' => { 94 => 0x1 },
- 'flashtype' => { 159 => 'Type', 184 => 0x59, 234 => 0x9, 315 => 0x1000 },
- 'flashwarning' => { 306 => '30.1', 307 => '7.1', 311 => '31.1', 337 => 0x62 },
- 'flashwirelessoption' => { 223 => 0x234, 238 => 0x15a, 239 => 0x1c8 },
- 'flexiblespotposition' => { 437 => 0x201d },
- 'flickadvancedirection' => { 312 => 0x25f },
- 'flickerreduce' => { 413 => 0x218 },
- 'flickerreduction' => { 127 => 0x1446, 260 => 0x7 },
- 'flickerreductionindicator' => { 255 => 0x532 },
- 'flickerreductionshooting' => { 239 => 0x1a4, 240 => 0x1b8, 241 => 0x1b8 },
+ 'flashtype' => { 159 => 'Type', 184 => 0x59, 234 => 0x9, 318 => 0x1000 },
+ 'flashwarning' => { 307 => '30.1', 308 => '7.1', 312 => '31.1', 340 => 0x62 },
+ 'flashwirelessoption' => { 223 => 0x234, 238 => 0x15a, 240 => 0x1c8 },
+ 'flexiblespotposition' => { 440 => 0x201d },
+ 'flickadvancedirection' => { 313 => 0x25f, 314 => 0x25f, 315 => 0x277 },
+ 'flickerreduce' => { 416 => 0x218 },
+ 'flickerreduction' => { 127 => 0x1446, 261 => 0x7 },
+ 'flickerreductionindicator' => { 256 => 0x532 },
+ 'flickerreductionshooting' => { 239 => 0x1b4, 240 => 0x1a4, 241 => 0x1b8, 242 => 0x1b8 },
'flightpitchdegree' => { 116 => 'FlightPitchDegree' },
'flightrolldegree' => { 116 => 'FlightRollDegree' },
'flightxspeed' => { 116 => 'FlightXSpeed' },
'flightyawdegree' => { 116 => 'FlightYawDegree' },
'flightyspeed' => { 116 => 'FlightYSpeed' },
'flightzspeed' => { 116 => 'FlightZSpeed' },
- 'fliphorizontal' => { 289 => 0x76a43206 },
- 'fnumber' => { 7 => 0x3, 9 => 0x3, 11 => 0x3, 13 => 0x3, 14 => 0x3, 15 => 0x3, 16 => 0x3, 17 => 0x3, 18 => 0x3, 19 => 0x3, 20 => 0x3, 21 => 0x3, 22 => 0x3, 23 => 0x3, 24 => 0x3, 25 => 0x3, 26 => 0x3, 27 => 0x3, 28 => 0x3, 29 => 0x3, 30 => 0x5, 31 => 0x6, 77 => 0x15, 119 => 0x829d, 137 => 0xfd04, 140 => 0x1e, 142 => 0xfa23, 144 => 0xf103, 147 => 0x13, 149 => 0x3c, 151 => 0x1c, 152 => 0x18, 154 => 0xc, 163 => 'FNumber', 181 => 0xa, 182 => 0x36, 183 => 0x47, 184 => 0x9, 187 => 0x49c7, 232 => 0x38, 336 => 0x35a, 372 => 0x13, 411 => 0xa019, 414 => [0x31,0x49], 424 => 0x1, 425 => 0x1, 442 => [0x20,0x22,0x26], 502 => 'FNumber' },
- 'focaldistance' => { 482 => 'FocalDistance' },
- 'focallength' => { 7 => 0x1d, 8 => 0xa, 9 => 0x23, 10 => 0x9, 11 => 0x1d, 12 => 0x9, 13 => 0x1e, 14 => 0x1d, 15 => 0x1d, 16 => 0x1e, 17 => 0x1e, 18 => 0x1e, 19 => 0x28, 20 => 0x1e, 21 => 0x23, 22 => 0x1e, 23 => 0x1e, 24 => 0x23, 25 => 0x23, 26 => 0x23, 27 => 0x23, 28 => 0x1e, 29 => 0x23, 59 => 0x1, 113 => 0x1d, 119 => 0x920a, 147 => 0x1d, 163 => 'FocalLength', 181 => 0x12, 227 => 0xa, 228 => 0xb, 232 => [0xc,0x3c], 331 => 0x1, 372 => 0x1d, 381 => 0x403, 404 => 0x1500, 423 => 0xe, 450 => 0x1278, 451 => 0x1134, 452 => 0x32c, 453 => 0x32c, 454 => 0x30a, 502 => 'FocalLength' },
- 'focallength2' => { 442 => [0x23,0x25,0x29] },
- 'focallengthin35mmformat' => { 119 => 0xa405, 411 => 0xa01a, 502 => 'FocalLengthIn35mmFilm' },
- 'focallengthtelezoom' => { 423 => 0x10 },
- 'focalplaneafpointarea' => { 455 => 0x2 },
- 'focalplaneafpointlocation1' => { 455 => 0x6 },
- 'focalplaneafpointlocation10' => { 455 => 0x2a },
- 'focalplaneafpointlocation11' => { 455 => 0x2e },
- 'focalplaneafpointlocation12' => { 455 => 0x32 },
- 'focalplaneafpointlocation13' => { 455 => 0x36 },
- 'focalplaneafpointlocation14' => { 455 => 0x3a },
- 'focalplaneafpointlocation15' => { 455 => 0x3e },
- 'focalplaneafpointlocation2' => { 455 => 0xa },
- 'focalplaneafpointlocation3' => { 455 => 0xe },
- 'focalplaneafpointlocation4' => { 455 => 0x12 },
- 'focalplaneafpointlocation5' => { 455 => 0x16 },
- 'focalplaneafpointlocation6' => { 455 => 0x1a },
- 'focalplaneafpointlocation7' => { 455 => 0x1e },
- 'focalplaneafpointlocation8' => { 455 => 0x22 },
- 'focalplaneafpointlocation9' => { 455 => 0x26 },
- 'focalplaneafpointsused' => { 455 => 0x1 },
- 'focalplanediagonal' => { 315 => 0x103, 319 => 0x205 },
- 'focalplaneresolutionunit' => { 119 => 0xa210, 502 => 'FocalPlaneResolutionUnit' },
- 'focalplanexresolution' => { 119 => 0xa20e, 502 => 'FocalPlaneXResolution' },
+ 'fliphorizontal' => { 290 => 0x76a43206 },
+ 'fnumber' => { 7 => 0x3, 9 => 0x3, 11 => 0x3, 13 => 0x3, 14 => 0x3, 15 => 0x3, 16 => 0x3, 17 => 0x3, 18 => 0x3, 19 => 0x3, 20 => 0x3, 21 => 0x3, 22 => 0x3, 23 => 0x3, 24 => 0x3, 25 => 0x3, 26 => 0x3, 27 => 0x3, 28 => 0x3, 29 => 0x3, 30 => 0x5, 31 => 0x6, 77 => 0x15, 119 => 0x829d, 137 => 0xfd04, 140 => 0x1e, 142 => 0xfa23, 144 => 0xf103, 147 => 0x13, 149 => 0x3c, 151 => 0x1c, 152 => 0x18, 154 => 0xc, 163 => 'FNumber', 181 => 0xa, 182 => 0x36, 183 => 0x47, 184 => 0x9, 187 => 0x49c7, 232 => 0x38, 339 => 0x35a, 375 => 0x13, 414 => 0xa019, 417 => [0x31,0x49], 427 => 0x1, 428 => 0x1, 445 => [0x20,0x22,0x26], 506 => 'FNumber' },
+ 'focaldistance' => { 486 => 'FocalDistance' },
+ 'focallength' => { 7 => 0x1d, 8 => 0xa, 9 => 0x23, 10 => 0x9, 11 => 0x1d, 12 => 0x9, 13 => 0x1e, 14 => 0x1d, 15 => 0x1d, 16 => 0x1e, 17 => 0x1e, 18 => 0x1e, 19 => 0x28, 20 => 0x1e, 21 => 0x23, 22 => 0x1e, 23 => 0x1e, 24 => 0x23, 25 => 0x23, 26 => 0x23, 27 => 0x23, 28 => 0x1e, 29 => 0x23, 59 => 0x1, 113 => 0x1d, 119 => 0x920a, 147 => 0x1d, 163 => 'FocalLength', 181 => 0x12, 227 => 0xa, 228 => 0xb, 232 => [0xc,0x3c], 334 => 0x1, 375 => 0x1d, 384 => 0x403, 407 => 0x1500, 426 => 0xe, 453 => 0x1278, 454 => 0x1134, 455 => 0x32c, 456 => 0x32c, 457 => 0x30a, 506 => 'FocalLength' },
+ 'focallength2' => { 445 => [0x23,0x25,0x29] },
+ 'focallengthin35mmformat' => { 119 => 0xa405, 414 => 0xa01a, 506 => 'FocalLengthIn35mmFilm' },
+ 'focallengthtelezoom' => { 426 => 0x10 },
+ 'focalplaneafpointarea' => { 458 => 0x2 },
+ 'focalplaneafpointlocation1' => { 458 => 0x6 },
+ 'focalplaneafpointlocation10' => { 458 => 0x2a },
+ 'focalplaneafpointlocation11' => { 458 => 0x2e },
+ 'focalplaneafpointlocation12' => { 458 => 0x32 },
+ 'focalplaneafpointlocation13' => { 458 => 0x36 },
+ 'focalplaneafpointlocation14' => { 458 => 0x3a },
+ 'focalplaneafpointlocation15' => { 458 => 0x3e },
+ 'focalplaneafpointlocation2' => { 458 => 0xa },
+ 'focalplaneafpointlocation3' => { 458 => 0xe },
+ 'focalplaneafpointlocation4' => { 458 => 0x12 },
+ 'focalplaneafpointlocation5' => { 458 => 0x16 },
+ 'focalplaneafpointlocation6' => { 458 => 0x1a },
+ 'focalplaneafpointlocation7' => { 458 => 0x1e },
+ 'focalplaneafpointlocation8' => { 458 => 0x22 },
+ 'focalplaneafpointlocation9' => { 458 => 0x26 },
+ 'focalplaneafpointsused' => { 458 => 0x1 },
+ 'focalplanediagonal' => { 318 => 0x103, 322 => 0x205 },
+ 'focalplaneresolutionunit' => { 119 => 0xa210, 506 => 'FocalPlaneResolutionUnit' },
+ 'focalplanexresolution' => { 119 => 0xa20e, 506 => 'FocalPlaneXResolution' },
'focalplanexsize' => { 59 => 0x2 },
'focalplanexunknown' => { 59 => 0x2 },
- 'focalplaneyresolution' => { 119 => 0xa20f, 502 => 'FocalPlaneYResolution' },
+ 'focalplaneyresolution' => { 119 => 0xa20f, 506 => 'FocalPlaneYResolution' },
'focalplaneysize' => { 59 => 0x3 },
'focalplaneyunknown' => { 59 => 0x3 },
- 'focalpointx' => { 482 => 'FocalPointX' },
- 'focalpointy' => { 482 => 'FocalPointY' },
+ 'focalpointx' => { 486 => 'FocalPointX' },
+ 'focalpointy' => { 486 => 'FocalPointY' },
'focaltype' => { 10 => 0x2d, 59 => 0x0 },
'focalunits' => { 34 => 0x19 },
- 'focus' => { 279 => 0x8 },
+ 'focus' => { 280 => 0x8 },
'focusarea' => { 181 => 0x31 },
- 'focusareaselection' => { 307 => '15.2' },
- 'focusbracket' => { 337 => 0xbd },
- 'focusbracketstepsize' => { 314 => 0x308 },
+ 'focusareaselection' => { 308 => '15.2' },
+ 'focusbracket' => { 340 => 0xbd },
+ 'focusbracketstepsize' => { 317 => 0x308 },
'focuscontinuous' => { 34 => 0x20 },
'focusdisplayaiservoandmf' => { 84 => 0x515 },
- 'focusdistance' => { 163 => 'FocusDistance', 181 => 0x13, 187 => 0x49bb, 227 => 0x9, 228 => 0xa, 232 => [0xb,0x4e], 317 => 0x305, 331 => 0x0, 335 => 0x304, 336 => 0x304 },
+ 'focusdistance' => { 163 => 'FocusDistance', 181 => 0x13, 187 => 0x49bb, 227 => 0x9, 228 => 0xa, 232 => [0xb,0x4e], 320 => 0x305, 334 => 0x0, 338 => 0x304, 339 => 0x304 },
'focusdistancelower' => { 7 => 0x45, 9 => 0x8e, 11 => 0x45, 13 => 0x56, 14 => 0x45, 15 => 0x45, 16 => 0x52, 17 => 0x52, 18 => 0x56, 20 => 0x52, 21 => 0x8e, 22 => 0x59, 23 => 0x57, 24 => 0x8e, 25 => 0x94, 26 => 0x95, 27 => 0xa7, 28 => 0x56, 29 => 0xa7, 57 => 0x15, 77 => 0x14 },
'focusdistancerange' => { 1 => 0xc },
'focusdistancerangewidth' => { 232 => 0x4c },
'focusdistanceupper' => { 7 => 0x43, 9 => 0x8c, 11 => 0x43, 13 => 0x54, 14 => 0x43, 15 => 0x43, 16 => 0x50, 17 => 0x50, 18 => 0x54, 20 => 0x50, 21 => 0x8c, 22 => 0x57, 23 => 0x55, 24 => 0x8c, 25 => 0x92, 26 => 0x93, 27 => 0xa5, 28 => 0x54, 29 => 0xa5, 57 => 0x14, 77 => 0x13 },
'focusholdbutton' => { 184 => 0x44 },
- 'focusinfoversion' => { 317 => 0x0 },
+ 'focusinfoversion' => { 320 => 0x0 },
'focusingscreen' => { 83 => 0x0, 84 => 0x80b, 89 => 0x0 },
- 'focuslocation' => { 437 => 0x2027 },
+ 'focuslocation' => { 440 => 0x2027 },
'focuslocked' => { 180 => 0x14 },
- 'focusmode' => { 34 => 0x7, 112 => 0x3, 113 => [0x3003,0xd], 127 => 0x1021, 138 => 0x3f5, 140 => 0x38, 156 => 'FocusMode', 181 => 0x30, 183 => 0xe, 184 => 0xc, 234 => 0x7, 314 => 0x301, 319 => 0x100b, 337 => 0x7, 372 => 0xd, 379 => 0x3, 404 => 0x1006, 417 => [0xb,0x5], 423 => [0x15,0x1d], 424 => 0x4d, 425 => 0x4d, 437 => [0xb042,0xb04e,0x201b], 442 => 0x13, 462 => 0x16 },
- 'focusmode2' => { 126 => '0.1', 353 => '3.1', 442 => [0x2c,0x2e,0x32] },
- 'focusmodesetting' => { 298 => '10.1', 421 => 0x14, 422 => 0x15, 424 => 0x10, 425 => 0xf, 426 => 0x6 },
- 'focusmodeswitch' => { 184 => 0x58, 424 => 0x2e },
- 'focuspeakingdisplay' => { 312 => 0x235 },
- 'focuspeakinghighlightcolor' => { 312 => 0x4b },
- 'focuspeakinglevel' => { 312 => 0x49 },
+ 'focusmode' => { 34 => 0x7, 112 => 0x3, 113 => [0x3003,0xd], 127 => 0x1021, 138 => 0x3f5, 140 => 0x38, 156 => 'FocusMode', 181 => 0x30, 183 => 0xe, 184 => 0xc, 234 => 0x7, 317 => 0x301, 322 => 0x100b, 340 => 0x7, 375 => 0xd, 382 => 0x3, 407 => 0x1006, 420 => [0xb,0x5], 426 => [0x15,0x1d], 427 => 0x4d, 428 => 0x4d, 440 => [0xb042,0xb04e,0x201b], 445 => 0x13, 466 => 0x16 },
+ 'focusmode2' => { 126 => '0.1', 356 => '3.1', 445 => [0x2c,0x2e,0x32] },
+ 'focusmodesetting' => { 299 => '10.1', 424 => 0x14, 425 => 0x15, 427 => 0x10, 428 => 0xf, 429 => 0x6 },
+ 'focusmodeswitch' => { 184 => 0x58, 427 => 0x2e },
+ 'focuspeakingdisplay' => { 313 => 0x235, 314 => 0x235, 315 => 0x24d },
+ 'focuspeakinghighlightcolor' => { 313 => 0x4b, 314 => 0x4b, 315 => 0x4b },
+ 'focuspeakinglevel' => { 313 => 0x49, 314 => 0x49, 315 => 0x49 },
'focuspixel' => { 127 => 0x1023 },
- 'focuspointlock' => { 312 => 0x1d3 },
- 'focuspointpersistence' => { 312 => 0x105 },
- 'focuspointwrap' => { 296 => '2.2', 297 => '2.2', 299 => '2.1', 300 => '2.1', 304 => '1.1', 305 => '2.2', 306 => '1.1', 309 => '2.2', 310 => '2.1', 311 => '2.5', 312 => 0x16 },
- 'focusposition' => { 1 => 0x2f, 227 => 0x8, 228 => 0x8, 372 => 0x10, 435 => 0x9bb },
- 'focusposition2' => { 442 => [0x29,0x2b,0x2f], 462 => 0x2d, 465 => 0x20 },
+ 'focuspointlock' => { 313 => 0x1d3, 314 => 0x1d3, 315 => 0x1eb },
+ 'focuspointpersistence' => { 313 => 0x105, 314 => 0x105, 315 => 0x11b },
+ 'focuspointwrap' => { 297 => '2.2', 298 => '2.2', 300 => '2.1', 301 => '2.1', 305 => '1.1', 306 => '2.2', 307 => '1.1', 310 => '2.2', 311 => '2.1', 312 => '2.5', 313 => 0x16, 314 => 0x16, 315 => 0x16 },
+ 'focusposition' => { 1 => 0x2f, 227 => 0x8, 228 => 0x8, 375 => 0x10, 438 => 0x9bb },
+ 'focusposition2' => { 445 => [0x29,0x2b,0x2f], 466 => 0x2d, 469 => 0x20 },
'focuspositionhorizontal' => { 193 => 0x2f, 194 => 0x43 },
'focuspositionvertical' => { 193 => 0x31, 194 => 0x45 },
- 'focusprocess' => { 314 => 0x302 },
- 'focusrange' => { 34 => 0x12, 319 => 0x100a },
- 'focusrangeindex' => { 363 => '3.1' },
+ 'focusprocess' => { 317 => 0x302 },
+ 'focusrange' => { 34 => 0x12, 322 => 0x100a },
+ 'focusrangeindex' => { 366 => '3.1' },
'focusresult' => { 194 => 0x4a },
'focusringrotation' => { 84 => 0x713 },
- 'focussetting' => { 414 => 0x6 },
- 'focusshiftautoreset' => { 240 => 0x6da, 241 => 0x748 },
- 'focusshiftexposurelock' => { 223 => 0x1b4, 238 => 0xe8, 239 => 0xf4, 240 => 0x104, 241 => 0x104 },
- 'focusshiftinterval' => { 223 => 0x1b0, 238 => 0xe4, 239 => 0xf0, 240 => 0x100, 241 => 0x100 },
- 'focusshiftnumbershots' => { 223 => 0x1a8, 238 => 0xdc, 239 => 0xe8, 240 => 0xf8, 241 => 0xf8 },
- 'focusshiftshooting' => { 258 => 0x20 },
- 'focusshiftstepwidth' => { 223 => 0x1ac, 238 => 0xe0, 239 => 0xec, 240 => 0xfc, 241 => 0xfc },
- 'focusstatus' => { 423 => 0x19, 424 => 0x53, 425 => 0x53 },
- 'focusstepcount' => { 317 => 0x301, 319 => 0x100e },
- 'focusstepinfinity' => { 317 => 0x303, 319 => 0x103b },
- 'focusstepnear' => { 317 => 0x304, 319 => 0x103c },
- 'focustrackinglockon' => { 296 => ['1.5','4.1'], 297 => '1.4', 304 => '0.4', 305 => '3.1', 306 => '0.4', 309 => '1.4' },
+ 'focussetting' => { 417 => 0x6 },
+ 'focusshiftautoreset' => { 241 => 0x6da, 242 => 0x748 },
+ 'focusshiftexposurelock' => { 223 => 0x1b4, 238 => 0xe8, 239 => 0x100, 240 => 0xf4, 241 => 0x104, 242 => 0x104 },
+ 'focusshiftinterval' => { 223 => 0x1b0, 238 => 0xe4, 239 => 0xfc, 240 => 0xf0, 241 => 0x100, 242 => 0x100 },
+ 'focusshiftnumbershots' => { 223 => 0x1a8, 238 => 0xdc, 239 => 0xf4, 240 => 0xe8, 241 => 0xf8, 242 => 0xf8 },
+ 'focusshiftshooting' => { 259 => 0x20 },
+ 'focusshiftstepwidth' => { 223 => 0x1ac, 238 => 0xe0, 239 => 0xf8, 240 => 0xec, 241 => 0xfc, 242 => 0xfc },
+ 'focusstatus' => { 426 => 0x19, 427 => 0x53, 428 => 0x53 },
+ 'focusstepcount' => { 320 => 0x301, 322 => 0x100e },
+ 'focusstepinfinity' => { 320 => 0x303, 322 => 0x103b },
+ 'focusstepnear' => { 320 => 0x304, 322 => 0x103c },
+ 'focusstepsfrominfinity' => { 232 => 0x58 },
+ 'focustrackinglockon' => { 297 => ['1.5','4.1'], 298 => '1.4', 305 => '0.4', 306 => '3.1', 307 => '0.4', 310 => '1.4' },
'focuswarning' => { 127 => 0x1301 },
'foldername' => { 181 => 0x27 },
- 'foldernumber' => { 424 => 0x9a, 426 => [0x402,0x114,0x316] },
- 'fontcomposite' => { 530 => [\'Fonts','FontsComposite'] },
- 'fontface' => { 530 => [\'Fonts','FontsFontFace'] },
- 'fontfamily' => { 530 => [\'Fonts','FontsFontFamily'] },
- 'fontfilename' => { 530 => [\'Fonts','FontsFontFileName'] },
- 'fontname' => { 530 => [\'Fonts','FontsFontName'] },
- 'fonts' => { 530 => 'Fonts' },
- 'fonttype' => { 530 => [\'Fonts','FontsFontType'] },
- 'fontversion' => { 530 => [\'Fonts','FontsVersionString'] },
- 'for' => { 388 => 'For' },
+ 'foldernumber' => { 427 => 0x9a, 429 => [0x402,0x114,0x316] },
+ 'fontcomposite' => { 534 => [\'Fonts','FontsComposite'] },
+ 'fontface' => { 534 => [\'Fonts','FontsFontFace'] },
+ 'fontfamily' => { 534 => [\'Fonts','FontsFontFamily'] },
+ 'fontfilename' => { 534 => [\'Fonts','FontsFontFileName'] },
+ 'fontname' => { 534 => [\'Fonts','FontsFontName'] },
+ 'fonts' => { 534 => 'Fonts' },
+ 'fonttype' => { 534 => [\'Fonts','FontsFontType'] },
+ 'fontversion' => { 534 => [\'Fonts','FontsVersionString'] },
+ 'for' => { 391 => 'For' },
'forcewrite' => { 120 => 'ForceWrite' },
- 'format' => { 397 => "\xa9fmt", 481 => 'Format', 499 => 'format', 523 => 'Format' },
- 'forwardlock' => { 520 => 'forwardlock' },
+ 'format' => { 400 => "\xa9fmt", 485 => 'Format', 503 => 'format', 527 => 'Format' },
+ 'forwardlock' => { 524 => 'forwardlock' },
'forwardmatrix1' => { 119 => 0xc714 },
'forwardmatrix2' => { 119 => 0xc715 },
'forwardmatrix3' => { 119 => 0xcd34 },
@@ -3043,12 +3052,12 @@ my %tagLookup = (
'fossilspecimenmaterialsampleid' => { 118 => [\'FossilSpecimen','FossilSpecimenMaterialSampleID'] },
'framecount' => { 67 => [0x2,0x4] },
'frameheight' => { 127 => 0x3822 },
- 'framenum' => { 383 => 0xd7 },
- 'framenumber' => { 127 => 0x8003, 187 => 0x3c, 372 => 0x29 },
+ 'framenum' => { 386 => 0xd7 },
+ 'framenumber' => { 127 => 0x8003, 187 => 0x3c, 375 => 0x29 },
'framerate' => { 67 => [0x1,0x6], 119 => 0xc764, 127 => 0x3820 },
- 'framereadouttime' => { 391 => 'camera.framereadouttimeinmicroseconds' },
+ 'framereadouttime' => { 394 => 'camera.framereadouttimeinmicroseconds' },
'framewidth' => { 127 => 0x3821 },
- 'framing' => { 514 => 'framing' },
+ 'framing' => { 518 => 'framing' },
'freebytes' => { 97 => 0x1 },
'freememorycardimages' => { 182 => [0x37,0x54], 183 => [0x2d,0x4a], 184 => 0x32 },
'frontfacingcamera' => { 1 => 0x45 },
@@ -3056,31 +3065,31 @@ my %tagLookup = (
'fujimodel' => { 127 => 0x1447 },
'fujimodel2' => { 127 => 0x1448 },
'fullhdhighspeedrec' => { 127 => 0x3824 },
- 'fullimagesize' => { 437 => 0xb02b },
- 'fullpanoheightpixels' => { 484 => 'FullPanoHeightPixels', 485 => 'FullPanoHeightPixels' },
- 'fullpanowidthpixels' => { 484 => 'FullPanoWidthPixels', 485 => 'FullPanoWidthPixels' },
- 'fullpresssnap' => { 404 => 0x100d },
+ 'fullimagesize' => { 440 => 0xb02b },
+ 'fullpanoheightpixels' => { 488 => 'FullPanoHeightPixels', 489 => 'FullPanoHeightPixels' },
+ 'fullpanowidthpixels' => { 488 => 'FullPanoWidthPixels', 489 => 'FullPanoWidthPixels' },
+ 'fullpresssnap' => { 407 => 0x100d },
'fullsizeimage' => { 162 => 'data' },
'fullsizeimagename' => { 162 => '1Name' },
'fullsizeimagetype' => { 162 => '0Type' },
- 'func1button' => { 299 => '14.1', 300 => '14.1', 310 => '14.1', 312 => 0x63 },
- 'func1buttonplaybackmode' => { 312 => 0x1a5 },
- 'func1buttonplusdials' => { 299 => '42.1', 300 => '42.1', 310 => '42.1' },
- 'func2button' => { 299 => '80.1', 300 => '80.1', 310 => '80.1', 312 => 0x73 },
- 'func2buttonplaybackmode' => { 312 => 0x1a7 },
- 'func2buttonplusdials' => { 299 => '81.1' },
- 'func3button' => { 299 => '83.1', 312 => 0x119 },
- 'func3buttonplaybackmode' => { 312 => 0x1a9 },
- 'func4button' => { 312 => 0x175 },
- 'func4buttonplaybackmode' => { 312 => 0x1af },
- 'funcbutton' => { 296 => ['14.1','15.1'], 297 => '14.1', 305 => '28.1', 306 => '13.1', 309 => '14.1', 311 => '14.1' },
- 'funcbuttonplusdials' => { 296 => ['14.2','15.2'], 297 => '14.2', 305 => '31.1', 309 => '42.1' },
- 'functionbutton' => { 303 => '13.1', 307 => '5.2' },
- 'gainbase' => { 318 => 0x610 },
- 'gaincontrol' => { 119 => 0xa407, 502 => 'GainControl' },
- 'gainmapmax' => { 507 => 'GainMapMax' },
- 'gainmapmin' => { 507 => 'GainMapMin' },
- 'gamma' => { 119 => 0xa500, 138 => 0x8fe, 325 => 'gAMA', 342 => 0x11c, 503 => 'Gamma', 507 => 'Gamma' },
+ 'func1button' => { 300 => '14.1', 301 => '14.1', 311 => '14.1', 313 => 0x63, 314 => 0x63, 315 => 0x63 },
+ 'func1buttonplaybackmode' => { 313 => 0x1a5, 314 => 0x1a5, 315 => 0x1bd },
+ 'func1buttonplusdials' => { 300 => '42.1', 301 => '42.1', 311 => '42.1' },
+ 'func2button' => { 300 => '80.1', 301 => '80.1', 311 => '80.1', 313 => 0x73, 314 => 0x73, 315 => 0x73 },
+ 'func2buttonplaybackmode' => { 313 => 0x1a7, 314 => 0x1a7, 315 => 0x1bf },
+ 'func2buttonplusdials' => { 300 => '81.1' },
+ 'func3button' => { 300 => '83.1', 314 => 0x119, 315 => 0x131 },
+ 'func3buttonplaybackmode' => { 314 => 0x1a9, 315 => 0x1c1 },
+ 'func4button' => { 314 => 0x175, 315 => 0x18d },
+ 'func4buttonplaybackmode' => { 314 => 0x1af, 315 => 0x1c7 },
+ 'funcbutton' => { 297 => ['14.1','15.1'], 298 => '14.1', 306 => '28.1', 307 => '13.1', 310 => '14.1', 312 => '14.1' },
+ 'funcbuttonplusdials' => { 297 => ['14.2','15.2'], 298 => '14.2', 306 => '31.1', 310 => '42.1' },
+ 'functionbutton' => { 304 => '13.1', 308 => '5.2' },
+ 'gainbase' => { 321 => 0x610 },
+ 'gaincontrol' => { 119 => 0xa407, 506 => 'GainControl' },
+ 'gainmapmax' => { 511 => 'GainMapMax' },
+ 'gainmapmin' => { 511 => 'GainMapMin' },
+ 'gamma' => { 119 => 0xa500, 138 => 0x8fe, 328 => 'gAMA', 345 => 0x11c, 507 => 'Gamma', 511 => 'Gamma' },
'gammablackpoint' => { 105 => 0xc },
'gammacolortone' => { 105 => 0x3 },
'gammacompensatedvalue' => { 133 => 0x91 },
@@ -3096,20 +3105,20 @@ my %tagLookup = (
'gammaunsharpmaskstrength' => { 105 => 0x5 },
'gammaunsharpmaskthreshold' => { 105 => 0x7 },
'gammawhitepoint' => { 105 => 0xd },
- 'garminsettings' => { 397 => 'pmcc' },
- 'garminsoftware' => { 397 => 'uuid' },
+ 'garminsettings' => { 400 => 'pmcc' },
+ 'garminsoftware' => { 400 => 'uuid' },
'gdalmetadata' => { 119 => 0xa480 },
'gdalnodata' => { 119 => 0xa481 },
'geimagesize' => { 127 => 0x1304 },
'gemake' => { 129 => 0x300 },
'gemodel' => { 129 => 0x207 },
- 'genre' => { 389 => ['gnre',"\xa9gen"], 391 => 'genre', 397 => ['gnre',"\xa9gen"], 510 => 'Genre', 515 => 'genre', 525 => 'genre' },
- 'genrecvid' => { 510 => [\'Genre','GenreCvId'] },
- 'genrecvtermid' => { 510 => [\'Genre','GenreCvTermId'] },
- 'genrecvtermname' => { 510 => [\'Genre','GenreCvTermName'] },
- 'genrecvtermrefinedabout' => { 510 => [\'Genre','GenreCvTermRefinedAbout'] },
- 'genreid' => { 389 => 'geID' },
- 'geography' => { 516 => 'geography' },
+ 'genre' => { 392 => ['gnre',"\xa9gen"], 394 => 'genre', 400 => ['gnre',"\xa9gen"], 514 => 'Genre', 519 => 'genre', 529 => 'genre' },
+ 'genrecvid' => { 514 => [\'Genre','GenreCvId'] },
+ 'genrecvtermid' => { 514 => [\'Genre','GenreCvTermId'] },
+ 'genrecvtermname' => { 514 => [\'Genre','GenreCvTermName'] },
+ 'genrecvtermrefinedabout' => { 514 => [\'Genre','GenreCvTermRefinedAbout'] },
+ 'genreid' => { 392 => 'geID' },
+ 'geography' => { 520 => 'geography' },
'geologicalcontext' => { 118 => 'GeologicalContext' },
'geologicalcontextbed' => { 118 => [\'GeologicalContext','GeologicalContextBed'] },
'geologicalcontextformation' => { 118 => [\'GeologicalContext','GeologicalContextFormation'] },
@@ -3122,268 +3131,268 @@ my %tagLookup = (
'geotiffdirectory' => { 119 => 0x87af },
'geotiffdoubleparams' => { 119 => 0x87b0 },
'geotime' => { 120 => 'Geotime' },
- 'giftftppriority' => { 486 => 'GIFTFtpPriority' },
+ 'giftftppriority' => { 490 => 'GIFTFtpPriority' },
'gimbalpitchdegree' => { 116 => 'GimbalPitchDegree' },
'gimbalreverse' => { 116 => 'GimbalReverse' },
'gimbalrolldegree' => { 116 => 'GimbalRollDegree' },
'gimbalyawdegree' => { 116 => 'GimbalYawDegree' },
- 'globalaltitude' => { 386 => 0x419 },
- 'globalangle' => { 386 => 0x40d },
- 'good' => { 525 => 'good' },
- 'googlehostheader' => { 389 => 'gshh' },
- 'googlepingmessage' => { 389 => 'gspm' },
- 'googlepingurl' => { 389 => 'gspu' },
+ 'globalaltitude' => { 389 => 0x419 },
+ 'globalangle' => { 389 => 0x40d },
+ 'good' => { 529 => 'good' },
+ 'googlehostheader' => { 392 => 'gshh' },
+ 'googlepingmessage' => { 392 => 'gspm' },
+ 'googlepingurl' => { 392 => 'gspu' },
'googleplusuploadcode' => { 119 => 0x9009 },
- 'googlesourcedata' => { 389 => 'gssd' },
- 'googlestarttime' => { 389 => 'gsst' },
- 'googletrackduration' => { 389 => 'gstd' },
- 'goprotype' => { 397 => 'GoPr' },
- 'gpsaltitude' => { 130 => 0x6, 160 => 'Altitude', 502 => 'GPSAltitude' },
- 'gpsaltituderef' => { 130 => 0x5, 502 => 'GPSAltitudeRef' },
- 'gpsareainformation' => { 130 => 0x1c, 502 => 'GPSAreaInformation' },
- 'gpscoordinates' => { 389 => "\xa9xyz", 391 => 'location.ISO6709', 397 => ['@xyz',"\xa9xyz"] },
+ 'googlesourcedata' => { 392 => 'gssd' },
+ 'googlestarttime' => { 392 => 'gsst' },
+ 'googletrackduration' => { 392 => 'gstd' },
+ 'goprotype' => { 400 => 'GoPr' },
+ 'gpsaltitude' => { 130 => 0x6, 160 => 'Altitude', 506 => 'GPSAltitude' },
+ 'gpsaltituderef' => { 130 => 0x5, 506 => 'GPSAltitudeRef' },
+ 'gpsareainformation' => { 130 => 0x1c, 506 => 'GPSAreaInformation' },
+ 'gpscoordinates' => { 392 => "\xa9xyz", 394 => 'location.ISO6709', 400 => ['@xyz',"\xa9xyz"] },
'gpsdatestamp' => { 130 => 0x1d },
- 'gpsdatetime' => { 160 => 'DateTime', 502 => 'GPSTimeStamp' },
- 'gpsdestbearing' => { 130 => 0x18, 160 => 'Bearing', 502 => 'GPSDestBearing' },
- 'gpsdestbearingref' => { 130 => 0x17, 502 => 'GPSDestBearingRef' },
- 'gpsdestdistance' => { 130 => 0x1a, 160 => 'Distance', 502 => 'GPSDestDistance' },
- 'gpsdestdistanceref' => { 130 => 0x19, 502 => 'GPSDestDistanceRef' },
- 'gpsdestlatitude' => { 130 => 0x14, 502 => 'GPSDestLatitude' },
+ 'gpsdatetime' => { 160 => 'DateTime', 506 => 'GPSTimeStamp' },
+ 'gpsdestbearing' => { 130 => 0x18, 160 => 'Bearing', 506 => 'GPSDestBearing' },
+ 'gpsdestbearingref' => { 130 => 0x17, 506 => 'GPSDestBearingRef' },
+ 'gpsdestdistance' => { 130 => 0x1a, 160 => 'Distance', 506 => 'GPSDestDistance' },
+ 'gpsdestdistanceref' => { 130 => 0x19, 506 => 'GPSDestDistanceRef' },
+ 'gpsdestlatitude' => { 130 => 0x14, 506 => 'GPSDestLatitude' },
'gpsdestlatituderef' => { 130 => 0x13 },
- 'gpsdestlongitude' => { 130 => 0x16, 502 => 'GPSDestLongitude' },
+ 'gpsdestlongitude' => { 130 => 0x16, 506 => 'GPSDestLongitude' },
'gpsdestlongituderef' => { 130 => 0x15 },
- 'gpsdifferential' => { 130 => 0x1e, 160 => 'Differential', 502 => 'GPSDifferential' },
- 'gpsdop' => { 130 => 0xb, 502 => 'GPSDOP' },
- 'gpshpositioningerror' => { 130 => 0x1f, 502 => 'GPSHPositioningError' },
- 'gpsimgdirection' => { 130 => 0x11, 502 => 'GPSImgDirection' },
- 'gpsimgdirectionref' => { 130 => 0x10, 502 => 'GPSImgDirectionRef' },
- 'gpslatitude' => { 114 => 'GPS-GPSLatitude', 116 => 'GpsLatitude', 130 => 0x2, 160 => 'Latitude', 502 => 'GPSLatitude' },
+ 'gpsdifferential' => { 130 => 0x1e, 160 => 'Differential', 506 => 'GPSDifferential' },
+ 'gpsdop' => { 130 => 0xb, 506 => 'GPSDOP' },
+ 'gpshpositioningerror' => { 130 => 0x1f, 506 => 'GPSHPositioningError' },
+ 'gpsimgdirection' => { 130 => 0x11, 506 => 'GPSImgDirection' },
+ 'gpsimgdirectionref' => { 130 => 0x10, 506 => 'GPSImgDirectionRef' },
+ 'gpslatitude' => { 114 => 'GPS-GPSLatitude', 116 => 'GpsLatitude', 130 => 0x2, 160 => 'Latitude', 506 => 'GPSLatitude' },
'gpslatituderef' => { 130 => 0x1 },
- 'gpslongitude' => { 114 => 'GPS-GPSLongitude', 116 => 'GpsLongitude', 130 => 0x4, 160 => 'Longitude', 502 => 'GPSLongitude' },
+ 'gpslongitude' => { 114 => 'GPS-GPSLongitude', 116 => 'GpsLongitude', 130 => 0x4, 160 => 'Longitude', 506 => 'GPSLongitude' },
'gpslongituderef' => { 130 => 0x3 },
'gpslongtitude' => { 116 => 'GpsLongtitude' },
- 'gpsmapdatum' => { 130 => 0x12, 160 => 'Datum', 502 => 'GPSMapDatum' },
- 'gpsmeasuremode' => { 130 => 0xa, 160 => 'MeasureMode', 502 => 'GPSMeasureMode' },
+ 'gpsmapdatum' => { 130 => 0x12, 160 => 'Datum', 506 => 'GPSMapDatum' },
+ 'gpsmeasuremode' => { 130 => 0xa, 160 => 'MeasureMode', 506 => 'GPSMeasureMode' },
'gpsposition' => { 114 => 'Exif-GPSPosition' },
- 'gpsprocessingmethod' => { 130 => 0x1b, 502 => 'GPSProcessingMethod' },
- 'gpssatellites' => { 130 => 0x8, 160 => 'Satellites', 502 => 'GPSSatellites' },
- 'gpsspeed' => { 130 => 0xd, 160 => 'Speed', 502 => 'GPSSpeed' },
- 'gpsspeedref' => { 130 => 0xc, 502 => 'GPSSpeedRef' },
- 'gpsstatus' => { 130 => 0x9, 502 => 'GPSStatus' },
+ 'gpsprocessingmethod' => { 130 => 0x1b, 506 => 'GPSProcessingMethod' },
+ 'gpssatellites' => { 130 => 0x8, 160 => 'Satellites', 506 => 'GPSSatellites' },
+ 'gpsspeed' => { 130 => 0xd, 160 => 'Speed', 506 => 'GPSSpeed' },
+ 'gpsspeedref' => { 130 => 0xc, 506 => 'GPSSpeedRef' },
+ 'gpsstatus' => { 130 => 0x9, 506 => 'GPSStatus' },
'gpsstring' => { 138 => 0x402 },
'gpstimestamp' => { 130 => 0x7 },
- 'gpstrack' => { 130 => 0xf, 160 => 'Heading', 502 => 'GPSTrack' },
- 'gpstrackref' => { 130 => 0xe, 502 => 'GPSTrackRef' },
- 'gpsversionid' => { 130 => 0x0, 502 => 'GPSVersionID' },
- 'gradation' => { 314 => 0x50f },
- 'gradientbasedcorractive' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionActive'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionActive'] },
- 'gradientbasedcorramount' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionAmount'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionAmount'] },
- 'gradientbasedcorrblacks2012' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalBlacks2012'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalBlacks2012'] },
- 'gradientbasedcorrbrightness' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalBrightness'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalBrightness'] },
- 'gradientbasedcorrclarity' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity'] },
- 'gradientbasedcorrclarity2012' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity2012'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity2012'] },
- 'gradientbasedcorrcontrast' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast'] },
- 'gradientbasedcorrcontrast2012' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast2012'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast2012'] },
- 'gradientbasedcorrcorrectionname' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionName'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionName'] },
- 'gradientbasedcorrcorrectionsyncid' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionSyncID'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionSyncID'] },
- 'gradientbasedcorrdefringe' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalDefringe'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalDefringe'] },
- 'gradientbasedcorrdehaze' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalDehaze'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalDehaze'] },
- 'gradientbasedcorrections' => { 496 => 'GradientBasedCorrections', 498 => 'GradientBasedCorrections' },
- 'gradientbasedcorrexposure' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure'] },
- 'gradientbasedcorrexposure2012' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure2012'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure2012'] },
- 'gradientbasedcorrhighlights2012' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalHighlights2012'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalHighlights2012'] },
- 'gradientbasedcorrhue' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalHue'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalHue'] },
- 'gradientbasedcorrluminancenoise' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalLuminanceNoise'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalLuminanceNoise'] },
- 'gradientbasedcorrmaskalpha' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAlpha'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAlpha'] },
- 'gradientbasedcorrmaskangle' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAngle'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAngle'] },
- 'gradientbasedcorrmaskbottom' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksBottom'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksBottom'] },
- 'gradientbasedcorrmaskcentervalue' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterValue'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterValue'] },
- 'gradientbasedcorrmaskcenterweight' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterWeight'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterWeight'] },
- 'gradientbasedcorrmaskdabs' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksDabs'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksDabs'] },
- 'gradientbasedcorrmaskfeather' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFeather'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFeather'] },
- 'gradientbasedcorrmaskflipped' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlipped'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlipped'] },
- 'gradientbasedcorrmaskflow' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlow'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlow'] },
- 'gradientbasedcorrmaskfullx' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullX'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullX'] },
- 'gradientbasedcorrmaskfully' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullY'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullY'] },
- 'gradientbasedcorrmaskinputdigest' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksInputDigest'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksInputDigest'] },
- 'gradientbasedcorrmaskleft' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksLeft'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksLeft'] },
- 'gradientbasedcorrmaskmaskactive' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskActive'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskActive'] },
- 'gradientbasedcorrmaskmaskblendmode' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskBlendMode'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskBlendMode'] },
- 'gradientbasedcorrmaskmaskdigest' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskDigest'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskDigest'] },
- 'gradientbasedcorrmaskmaskinverted' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskInverted'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskInverted'] },
- 'gradientbasedcorrmaskmaskname' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskName'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskName'] },
- 'gradientbasedcorrmaskmasks' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasks'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasks'] },
- 'gradientbasedcorrmaskmasksalpha' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksAlpha'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksAlpha'] },
- 'gradientbasedcorrmaskmasksangle' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksAngle'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksAngle'] },
- 'gradientbasedcorrmaskmasksbottom' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksBottom'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksBottom'] },
- 'gradientbasedcorrmaskmaskscentervalue' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksCenterValue'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksCenterValue'] },
- 'gradientbasedcorrmaskmaskscenterweight' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksCenterWeight'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksCenterWeight'] },
- 'gradientbasedcorrmaskmasksdabs' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksDabs'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksDabs'] },
- 'gradientbasedcorrmaskmasksfeather' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFeather'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFeather'] },
- 'gradientbasedcorrmaskmasksflipped' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFlipped'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFlipped'] },
- 'gradientbasedcorrmaskmasksflow' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFlow'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFlow'] },
- 'gradientbasedcorrmaskmasksfullx' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFullX'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFullX'] },
- 'gradientbasedcorrmaskmasksfully' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFullY'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFullY'] },
- 'gradientbasedcorrmaskmasksinputdigest' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksInputDigest'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksInputDigest'] },
- 'gradientbasedcorrmaskmasksleft' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksLeft'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksLeft'] },
- 'gradientbasedcorrmaskmasksmaskactive' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskActive'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskActive'] },
- 'gradientbasedcorrmaskmasksmaskblendmode' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskBlendMode'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskBlendMode'] },
- 'gradientbasedcorrmaskmasksmaskdigest' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskDigest'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskDigest'] },
- 'gradientbasedcorrmaskmasksmaskinverted' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskInverted'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskInverted'] },
- 'gradientbasedcorrmaskmasksmaskname' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskName'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskName'] },
- 'gradientbasedcorrmaskmasksmasksubtype' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskSubType'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskSubType'] },
- 'gradientbasedcorrmaskmasksmasksyncid' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskSyncID'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskSyncID'] },
- 'gradientbasedcorrmaskmasksmaskversion' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskVersion'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskVersion'] },
- 'gradientbasedcorrmaskmasksmidpoint' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMidpoint'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMidpoint'] },
- 'gradientbasedcorrmaskmasksorigin' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksOrigin'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksOrigin'] },
- 'gradientbasedcorrmaskmasksperimetervalue' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksPerimeterValue'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksPerimeterValue'] },
- 'gradientbasedcorrmaskmasksradius' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRadius'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRadius'] },
- 'gradientbasedcorrmaskmasksreferencepoint' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksReferencePoint'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksReferencePoint'] },
- 'gradientbasedcorrmaskmasksright' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRight'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRight'] },
- 'gradientbasedcorrmaskmasksroundness' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRoundness'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRoundness'] },
- 'gradientbasedcorrmaskmaskssizex' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksSizeX'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksSizeX'] },
- 'gradientbasedcorrmaskmaskssizey' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksSizeY'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksSizeY'] },
- 'gradientbasedcorrmaskmaskstop' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksTop'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksTop'] },
- 'gradientbasedcorrmaskmasksubtype' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskSubType'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskSubType'] },
- 'gradientbasedcorrmaskmasksvalue' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskValue'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskValue'] },
- 'gradientbasedcorrmaskmasksversion' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksVersion'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksVersion'] },
- 'gradientbasedcorrmaskmaskswhat' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksWhat'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksWhat'] },
- 'gradientbasedcorrmaskmaskswholeimagearea' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksWholeImageArea'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksWholeImageArea'] },
- 'gradientbasedcorrmaskmasksx' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksX'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksX'] },
- 'gradientbasedcorrmaskmasksy' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksY'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksY'] },
- 'gradientbasedcorrmaskmasksyncid' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskSyncID'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskSyncID'] },
- 'gradientbasedcorrmaskmaskszerox' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksZeroX'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksZeroX'] },
- 'gradientbasedcorrmaskmaskszeroy' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksZeroY'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksZeroY'] },
- 'gradientbasedcorrmaskmaskversion' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskVersion'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskVersion'] },
- 'gradientbasedcorrmaskmidpoint' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMidpoint'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMidpoint'] },
- 'gradientbasedcorrmaskorigin' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksOrigin'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksOrigin'] },
- 'gradientbasedcorrmaskperimetervalue' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksPerimeterValue'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksPerimeterValue'] },
- 'gradientbasedcorrmaskradius' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRadius'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRadius'] },
- 'gradientbasedcorrmaskrange' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMask'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMask'] },
- 'gradientbasedcorrmaskrangeareamodels' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'] },
- 'gradientbasedcorrmaskrangeareamodelscolorsampleinfo' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] },
- 'gradientbasedcorrmaskrangeareamodelscomponents' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'] },
- 'gradientbasedcorrmaskrangecoloramount' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'] },
- 'gradientbasedcorrmaskrangedepthfeather' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'] },
- 'gradientbasedcorrmaskrangedepthmax' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'] },
- 'gradientbasedcorrmaskrangedepthmin' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'] },
- 'gradientbasedcorrmaskrangeinvert' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'] },
- 'gradientbasedcorrmaskrangelumfeather' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'] },
- 'gradientbasedcorrmaskrangeluminancedepthsampleinfo' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'] },
- 'gradientbasedcorrmaskrangelummax' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'] },
- 'gradientbasedcorrmaskrangelummin' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'] },
- 'gradientbasedcorrmaskrangelumrange' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'] },
- 'gradientbasedcorrmaskrangesampletype' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'] },
- 'gradientbasedcorrmaskrangetype' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'] },
- 'gradientbasedcorrmaskrangeversion' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'] },
- 'gradientbasedcorrmaskreferencepoint' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksReferencePoint'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksReferencePoint'] },
- 'gradientbasedcorrmaskright' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRight'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRight'] },
- 'gradientbasedcorrmaskroundness' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRoundness'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRoundness'] },
- 'gradientbasedcorrmasks' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasks'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasks'] },
- 'gradientbasedcorrmasksizex' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeX'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeX'] },
- 'gradientbasedcorrmasksizey' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeY'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeY'] },
- 'gradientbasedcorrmasktop' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksTop'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksTop'] },
- 'gradientbasedcorrmaskvalue' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskValue'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskValue'] },
- 'gradientbasedcorrmaskversion' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksVersion'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksVersion'] },
- 'gradientbasedcorrmaskwhat' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksWhat'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksWhat'] },
- 'gradientbasedcorrmaskwholeimagearea' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksWholeImageArea'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksWholeImageArea'] },
- 'gradientbasedcorrmaskx' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksX'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksX'] },
- 'gradientbasedcorrmasky' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksY'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksY'] },
- 'gradientbasedcorrmaskzerox' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroX'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroX'] },
- 'gradientbasedcorrmaskzeroy' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroY'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroY'] },
- 'gradientbasedcorrmoire' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalMoire'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalMoire'] },
- 'gradientbasedcorrrangemask' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMask'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMask'] },
- 'gradientbasedcorrrangemaskareamodels' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModels'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModels'] },
- 'gradientbasedcorrrangemaskareamodelscolorsampleinfo' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] },
- 'gradientbasedcorrrangemaskareamodelscomponents' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'] },
- 'gradientbasedcorrrangemaskcoloramount' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskColorAmount'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskColorAmount'] },
- 'gradientbasedcorrrangemaskdepthfeather' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthFeather'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthFeather'] },
- 'gradientbasedcorrrangemaskdepthmax' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthMax'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthMax'] },
- 'gradientbasedcorrrangemaskdepthmin' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthMin'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthMin'] },
- 'gradientbasedcorrrangemaskinvert' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskInvert'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskInvert'] },
- 'gradientbasedcorrrangemasklumfeather' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumFeather'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumFeather'] },
- 'gradientbasedcorrrangemaskluminancedepthsampleinfo' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'] },
- 'gradientbasedcorrrangemasklummax' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumMax'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumMax'] },
- 'gradientbasedcorrrangemasklummin' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumMin'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumMin'] },
- 'gradientbasedcorrrangemasklumrange' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumRange'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumRange'] },
- 'gradientbasedcorrrangemasksampletype' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskSampleType'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskSampleType'] },
- 'gradientbasedcorrrangemasktype' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskType'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskType'] },
- 'gradientbasedcorrrangemaskversion' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskVersion'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskVersion'] },
- 'gradientbasedcorrsaturation' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSaturation'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSaturation'] },
- 'gradientbasedcorrshadows2012' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalShadows2012'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalShadows2012'] },
- 'gradientbasedcorrsharpness' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSharpness'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSharpness'] },
- 'gradientbasedcorrtemperature' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTemperature'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTemperature'] },
- 'gradientbasedcorrtexture' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTexture'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTexture'] },
- 'gradientbasedcorrtint' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTint'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTint'] },
- 'gradientbasedcorrtoninghue' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalToningHue'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalToningHue'] },
- 'gradientbasedcorrtoningsaturation' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalToningSaturation'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalToningSaturation'] },
- 'gradientbasedcorrwhat' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsWhat'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsWhat'] },
- 'gradientbasedcorrwhites2012' => { 496 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalWhites2012'], 498 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalWhites2012'] },
- 'grainamount' => { 496 => 'GrainAmount', 498 => 'GrainAmount' },
+ 'gpstrack' => { 130 => 0xf, 160 => 'Heading', 506 => 'GPSTrack' },
+ 'gpstrackref' => { 130 => 0xe, 506 => 'GPSTrackRef' },
+ 'gpsversionid' => { 130 => 0x0, 506 => 'GPSVersionID' },
+ 'gradation' => { 317 => 0x50f },
+ 'gradientbasedcorractive' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionActive'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionActive'] },
+ 'gradientbasedcorramount' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionAmount'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionAmount'] },
+ 'gradientbasedcorrblacks2012' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalBlacks2012'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalBlacks2012'] },
+ 'gradientbasedcorrbrightness' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalBrightness'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalBrightness'] },
+ 'gradientbasedcorrclarity' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity'] },
+ 'gradientbasedcorrclarity2012' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity2012'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity2012'] },
+ 'gradientbasedcorrcontrast' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast'] },
+ 'gradientbasedcorrcontrast2012' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast2012'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast2012'] },
+ 'gradientbasedcorrcorrectionname' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionName'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionName'] },
+ 'gradientbasedcorrcorrectionsyncid' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionSyncID'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionSyncID'] },
+ 'gradientbasedcorrdefringe' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalDefringe'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalDefringe'] },
+ 'gradientbasedcorrdehaze' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalDehaze'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalDehaze'] },
+ 'gradientbasedcorrections' => { 500 => 'GradientBasedCorrections', 502 => 'GradientBasedCorrections' },
+ 'gradientbasedcorrexposure' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure'] },
+ 'gradientbasedcorrexposure2012' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure2012'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure2012'] },
+ 'gradientbasedcorrhighlights2012' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalHighlights2012'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalHighlights2012'] },
+ 'gradientbasedcorrhue' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalHue'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalHue'] },
+ 'gradientbasedcorrluminancenoise' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalLuminanceNoise'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalLuminanceNoise'] },
+ 'gradientbasedcorrmaskalpha' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAlpha'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAlpha'] },
+ 'gradientbasedcorrmaskangle' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAngle'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAngle'] },
+ 'gradientbasedcorrmaskbottom' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksBottom'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksBottom'] },
+ 'gradientbasedcorrmaskcentervalue' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterValue'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterValue'] },
+ 'gradientbasedcorrmaskcenterweight' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterWeight'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterWeight'] },
+ 'gradientbasedcorrmaskdabs' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksDabs'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksDabs'] },
+ 'gradientbasedcorrmaskfeather' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFeather'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFeather'] },
+ 'gradientbasedcorrmaskflipped' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlipped'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlipped'] },
+ 'gradientbasedcorrmaskflow' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlow'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlow'] },
+ 'gradientbasedcorrmaskfullx' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullX'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullX'] },
+ 'gradientbasedcorrmaskfully' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullY'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullY'] },
+ 'gradientbasedcorrmaskinputdigest' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksInputDigest'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksInputDigest'] },
+ 'gradientbasedcorrmaskleft' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksLeft'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksLeft'] },
+ 'gradientbasedcorrmaskmaskactive' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskActive'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskActive'] },
+ 'gradientbasedcorrmaskmaskblendmode' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskBlendMode'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskBlendMode'] },
+ 'gradientbasedcorrmaskmaskdigest' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskDigest'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskDigest'] },
+ 'gradientbasedcorrmaskmaskinverted' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskInverted'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskInverted'] },
+ 'gradientbasedcorrmaskmaskname' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskName'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskName'] },
+ 'gradientbasedcorrmaskmasks' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasks'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasks'] },
+ 'gradientbasedcorrmaskmasksalpha' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksAlpha'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksAlpha'] },
+ 'gradientbasedcorrmaskmasksangle' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksAngle'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksAngle'] },
+ 'gradientbasedcorrmaskmasksbottom' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksBottom'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksBottom'] },
+ 'gradientbasedcorrmaskmaskscentervalue' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksCenterValue'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksCenterValue'] },
+ 'gradientbasedcorrmaskmaskscenterweight' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksCenterWeight'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksCenterWeight'] },
+ 'gradientbasedcorrmaskmasksdabs' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksDabs'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksDabs'] },
+ 'gradientbasedcorrmaskmasksfeather' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFeather'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFeather'] },
+ 'gradientbasedcorrmaskmasksflipped' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFlipped'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFlipped'] },
+ 'gradientbasedcorrmaskmasksflow' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFlow'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFlow'] },
+ 'gradientbasedcorrmaskmasksfullx' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFullX'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFullX'] },
+ 'gradientbasedcorrmaskmasksfully' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFullY'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFullY'] },
+ 'gradientbasedcorrmaskmasksinputdigest' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksInputDigest'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksInputDigest'] },
+ 'gradientbasedcorrmaskmasksleft' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksLeft'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksLeft'] },
+ 'gradientbasedcorrmaskmasksmaskactive' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskActive'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskActive'] },
+ 'gradientbasedcorrmaskmasksmaskblendmode' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskBlendMode'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskBlendMode'] },
+ 'gradientbasedcorrmaskmasksmaskdigest' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskDigest'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskDigest'] },
+ 'gradientbasedcorrmaskmasksmaskinverted' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskInverted'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskInverted'] },
+ 'gradientbasedcorrmaskmasksmaskname' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskName'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskName'] },
+ 'gradientbasedcorrmaskmasksmasksubtype' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskSubType'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskSubType'] },
+ 'gradientbasedcorrmaskmasksmasksyncid' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskSyncID'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskSyncID'] },
+ 'gradientbasedcorrmaskmasksmaskversion' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskVersion'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskVersion'] },
+ 'gradientbasedcorrmaskmasksmidpoint' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMidpoint'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMidpoint'] },
+ 'gradientbasedcorrmaskmasksorigin' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksOrigin'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksOrigin'] },
+ 'gradientbasedcorrmaskmasksperimetervalue' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksPerimeterValue'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksPerimeterValue'] },
+ 'gradientbasedcorrmaskmasksradius' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRadius'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRadius'] },
+ 'gradientbasedcorrmaskmasksreferencepoint' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksReferencePoint'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksReferencePoint'] },
+ 'gradientbasedcorrmaskmasksright' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRight'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRight'] },
+ 'gradientbasedcorrmaskmasksroundness' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRoundness'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRoundness'] },
+ 'gradientbasedcorrmaskmaskssizex' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksSizeX'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksSizeX'] },
+ 'gradientbasedcorrmaskmaskssizey' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksSizeY'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksSizeY'] },
+ 'gradientbasedcorrmaskmaskstop' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksTop'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksTop'] },
+ 'gradientbasedcorrmaskmasksubtype' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskSubType'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskSubType'] },
+ 'gradientbasedcorrmaskmasksvalue' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskValue'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskValue'] },
+ 'gradientbasedcorrmaskmasksversion' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksVersion'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksVersion'] },
+ 'gradientbasedcorrmaskmaskswhat' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksWhat'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksWhat'] },
+ 'gradientbasedcorrmaskmaskswholeimagearea' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksWholeImageArea'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksWholeImageArea'] },
+ 'gradientbasedcorrmaskmasksx' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksX'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksX'] },
+ 'gradientbasedcorrmaskmasksy' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksY'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksY'] },
+ 'gradientbasedcorrmaskmasksyncid' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskSyncID'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskSyncID'] },
+ 'gradientbasedcorrmaskmaskszerox' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksZeroX'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksZeroX'] },
+ 'gradientbasedcorrmaskmaskszeroy' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksZeroY'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksZeroY'] },
+ 'gradientbasedcorrmaskmaskversion' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskVersion'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskVersion'] },
+ 'gradientbasedcorrmaskmidpoint' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMidpoint'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMidpoint'] },
+ 'gradientbasedcorrmaskorigin' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksOrigin'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksOrigin'] },
+ 'gradientbasedcorrmaskperimetervalue' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksPerimeterValue'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksPerimeterValue'] },
+ 'gradientbasedcorrmaskradius' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRadius'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRadius'] },
+ 'gradientbasedcorrmaskrange' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMask'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMask'] },
+ 'gradientbasedcorrmaskrangeareamodels' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'] },
+ 'gradientbasedcorrmaskrangeareamodelscolorsampleinfo' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] },
+ 'gradientbasedcorrmaskrangeareamodelscomponents' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'] },
+ 'gradientbasedcorrmaskrangecoloramount' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'] },
+ 'gradientbasedcorrmaskrangedepthfeather' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'] },
+ 'gradientbasedcorrmaskrangedepthmax' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'] },
+ 'gradientbasedcorrmaskrangedepthmin' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'] },
+ 'gradientbasedcorrmaskrangeinvert' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'] },
+ 'gradientbasedcorrmaskrangelumfeather' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'] },
+ 'gradientbasedcorrmaskrangeluminancedepthsampleinfo' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'] },
+ 'gradientbasedcorrmaskrangelummax' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'] },
+ 'gradientbasedcorrmaskrangelummin' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'] },
+ 'gradientbasedcorrmaskrangelumrange' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'] },
+ 'gradientbasedcorrmaskrangesampletype' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'] },
+ 'gradientbasedcorrmaskrangetype' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'] },
+ 'gradientbasedcorrmaskrangeversion' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'] },
+ 'gradientbasedcorrmaskreferencepoint' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksReferencePoint'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksReferencePoint'] },
+ 'gradientbasedcorrmaskright' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRight'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRight'] },
+ 'gradientbasedcorrmaskroundness' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRoundness'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRoundness'] },
+ 'gradientbasedcorrmasks' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasks'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasks'] },
+ 'gradientbasedcorrmasksizex' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeX'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeX'] },
+ 'gradientbasedcorrmasksizey' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeY'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeY'] },
+ 'gradientbasedcorrmasktop' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksTop'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksTop'] },
+ 'gradientbasedcorrmaskvalue' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskValue'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskValue'] },
+ 'gradientbasedcorrmaskversion' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksVersion'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksVersion'] },
+ 'gradientbasedcorrmaskwhat' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksWhat'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksWhat'] },
+ 'gradientbasedcorrmaskwholeimagearea' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksWholeImageArea'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksWholeImageArea'] },
+ 'gradientbasedcorrmaskx' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksX'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksX'] },
+ 'gradientbasedcorrmasky' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksY'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksY'] },
+ 'gradientbasedcorrmaskzerox' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroX'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroX'] },
+ 'gradientbasedcorrmaskzeroy' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroY'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroY'] },
+ 'gradientbasedcorrmoire' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalMoire'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalMoire'] },
+ 'gradientbasedcorrrangemask' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMask'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMask'] },
+ 'gradientbasedcorrrangemaskareamodels' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModels'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModels'] },
+ 'gradientbasedcorrrangemaskareamodelscolorsampleinfo' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] },
+ 'gradientbasedcorrrangemaskareamodelscomponents' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'] },
+ 'gradientbasedcorrrangemaskcoloramount' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskColorAmount'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskColorAmount'] },
+ 'gradientbasedcorrrangemaskdepthfeather' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthFeather'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthFeather'] },
+ 'gradientbasedcorrrangemaskdepthmax' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthMax'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthMax'] },
+ 'gradientbasedcorrrangemaskdepthmin' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthMin'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthMin'] },
+ 'gradientbasedcorrrangemaskinvert' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskInvert'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskInvert'] },
+ 'gradientbasedcorrrangemasklumfeather' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumFeather'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumFeather'] },
+ 'gradientbasedcorrrangemaskluminancedepthsampleinfo' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'] },
+ 'gradientbasedcorrrangemasklummax' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumMax'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumMax'] },
+ 'gradientbasedcorrrangemasklummin' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumMin'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumMin'] },
+ 'gradientbasedcorrrangemasklumrange' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumRange'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumRange'] },
+ 'gradientbasedcorrrangemasksampletype' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskSampleType'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskSampleType'] },
+ 'gradientbasedcorrrangemasktype' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskType'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskType'] },
+ 'gradientbasedcorrrangemaskversion' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskVersion'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskVersion'] },
+ 'gradientbasedcorrsaturation' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSaturation'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSaturation'] },
+ 'gradientbasedcorrshadows2012' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalShadows2012'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalShadows2012'] },
+ 'gradientbasedcorrsharpness' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSharpness'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSharpness'] },
+ 'gradientbasedcorrtemperature' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTemperature'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTemperature'] },
+ 'gradientbasedcorrtexture' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTexture'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTexture'] },
+ 'gradientbasedcorrtint' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTint'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTint'] },
+ 'gradientbasedcorrtoninghue' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalToningHue'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalToningHue'] },
+ 'gradientbasedcorrtoningsaturation' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalToningSaturation'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalToningSaturation'] },
+ 'gradientbasedcorrwhat' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsWhat'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsWhat'] },
+ 'gradientbasedcorrwhites2012' => { 500 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalWhites2012'], 502 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalWhites2012'] },
+ 'grainamount' => { 500 => 'GrainAmount', 502 => 'GrainAmount' },
'graineffectroughness' => { 127 => 0x1047 },
'graineffectsize' => { 127 => 0x104c },
- 'grainfrequency' => { 496 => 'GrainFrequency', 498 => 'GrainFrequency' },
- 'grainseed' => { 496 => 'GrainSeed', 498 => 'GrainSeed' },
- 'grainsize' => { 496 => 'GrainSize', 498 => 'GrainSize' },
- 'graymixeraqua' => { 496 => 'GrayMixerAqua', 498 => 'GrayMixerAqua' },
- 'graymixerblue' => { 496 => 'GrayMixerBlue', 498 => 'GrayMixerBlue' },
- 'graymixergreen' => { 496 => 'GrayMixerGreen', 498 => 'GrayMixerGreen' },
- 'graymixermagenta' => { 496 => 'GrayMixerMagenta', 498 => 'GrayMixerMagenta' },
- 'graymixerorange' => { 496 => 'GrayMixerOrange', 498 => 'GrayMixerOrange' },
- 'graymixerpurple' => { 496 => 'GrayMixerPurple', 498 => 'GrayMixerPurple' },
- 'graymixerred' => { 496 => 'GrayMixerRed', 498 => 'GrayMixerRed' },
- 'graymixeryellow' => { 496 => 'GrayMixerYellow', 498 => 'GrayMixerYellow' },
- 'graypoint' => { 472 => 0x8021 },
+ 'grainfrequency' => { 500 => 'GrainFrequency', 502 => 'GrainFrequency' },
+ 'grainseed' => { 500 => 'GrainSeed', 502 => 'GrainSeed' },
+ 'grainsize' => { 500 => 'GrainSize', 502 => 'GrainSize' },
+ 'graymixeraqua' => { 500 => 'GrayMixerAqua', 502 => 'GrayMixerAqua' },
+ 'graymixerblue' => { 500 => 'GrayMixerBlue', 502 => 'GrayMixerBlue' },
+ 'graymixergreen' => { 500 => 'GrayMixerGreen', 502 => 'GrayMixerGreen' },
+ 'graymixermagenta' => { 500 => 'GrayMixerMagenta', 502 => 'GrayMixerMagenta' },
+ 'graymixerorange' => { 500 => 'GrayMixerOrange', 502 => 'GrayMixerOrange' },
+ 'graymixerpurple' => { 500 => 'GrayMixerPurple', 502 => 'GrayMixerPurple' },
+ 'graymixerred' => { 500 => 'GrayMixerRed', 502 => 'GrayMixerRed' },
+ 'graymixeryellow' => { 500 => 'GrayMixerYellow', 502 => 'GrayMixerYellow' },
+ 'graypoint' => { 476 => 0x8021 },
'grayresponseunit' => { 119 => 0x122 },
'greencurvelimits' => { 108 => 0x1c4 },
'greencurvepoints' => { 107 => 0x53, 108 => 0x19a },
'greenghostmitigationstatus' => { 1 => 0x3f },
'greenhsl' => { 103 => 0x20913 },
- 'greenhue' => { 496 => 'GreenHue', 498 => 'GreenHue' },
- 'greensaturation' => { 496 => 'GreenSaturation', 498 => 'GreenSaturation' },
- 'griddisplay' => { 296 => '13.3', 297 => '4.3', 299 => '4.2', 300 => '4.2', 301 => '2.2', 305 => '10.5', 306 => '3.4', 307 => '6.1', 309 => '4.4', 310 => '4.2', 311 => '4.2' },
- 'gripbatteryadload' => { 351 => 0x5 },
- 'gripbatteryadnoload' => { 351 => 0x4 },
- 'gripbatterystate' => { 351 => '1.2' },
- 'group' => { 496 => 'Group', 498 => 'Group' },
- 'groupareaafillumination' => { 297 => '46.4', 300 => '47.4', 309 => '47.4' },
- 'grouping' => { 389 => ['grup',"\xa9grp"], 397 => "\xa9grp" },
- 'guid' => { 389 => 'GUID' },
+ 'greenhue' => { 500 => 'GreenHue', 502 => 'GreenHue' },
+ 'greensaturation' => { 500 => 'GreenSaturation', 502 => 'GreenSaturation' },
+ 'griddisplay' => { 297 => '13.3', 298 => '4.3', 300 => '4.2', 301 => '4.2', 302 => '2.2', 306 => '10.5', 307 => '3.4', 308 => '6.1', 310 => '4.4', 311 => '4.2', 312 => '4.2' },
+ 'gripbatteryadload' => { 354 => 0x5 },
+ 'gripbatteryadnoload' => { 354 => 0x4 },
+ 'gripbatterystate' => { 354 => '1.2' },
+ 'group' => { 500 => 'Group', 502 => 'Group' },
+ 'groupareaafillumination' => { 298 => '46.4', 301 => '47.4', 310 => '47.4' },
+ 'grouping' => { 392 => ['grup',"\xa9grp"], 400 => "\xa9grp" },
+ 'guid' => { 392 => 'GUID' },
'h2resetblackpixels' => { 138 => 0x18a6 },
'h3resetblackcolumns' => { 138 => 0x18ce },
'h3resetblackpixels' => { 138 => 0x18b0 },
'halftonehints' => { 119 => 0x141 },
'hardlink' => { 120 => 'HardLink' },
- 'hasalternative' => { 515 => 'hasAlternative' },
- 'hascorrection' => { 515 => 'hasCorrection' },
- 'hascorrectiona-lang' => { 515 => [\'hasCorrection','hasCorrectionA-lang'] },
- 'hascorrectiona-platform' => { 515 => [\'hasCorrection','hasCorrectionA-platform'] },
- 'hascorrectiontext' => { 515 => [\'hasCorrection','hasCorrectionText'] },
- 'hascrop' => { 496 => 'HasCrop', 498 => 'HasCrop' },
- 'hasextendedxmp' => { 527 => 'HasExtendedXMP' },
- 'hassettings' => { 496 => 'HasSettings', 498 => 'HasSettings' },
- 'hastranslation' => { 515 => 'hasTranslation' },
- 'hasvisibleoverprint' => { 530 => 'HasVisibleOverprint' },
- 'hasvisibletransparency' => { 530 => 'HasVisibleTransparency' },
+ 'hasalternative' => { 519 => 'hasAlternative' },
+ 'hascorrection' => { 519 => 'hasCorrection' },
+ 'hascorrectiona-lang' => { 519 => [\'hasCorrection','hasCorrectionA-lang'] },
+ 'hascorrectiona-platform' => { 519 => [\'hasCorrection','hasCorrectionA-platform'] },
+ 'hascorrectiontext' => { 519 => [\'hasCorrection','hasCorrectionText'] },
+ 'hascrop' => { 500 => 'HasCrop', 502 => 'HasCrop' },
+ 'hasextendedxmp' => { 531 => 'HasExtendedXMP' },
+ 'hassettings' => { 500 => 'HasSettings', 502 => 'HasSettings' },
+ 'hastranslation' => { 519 => 'hasTranslation' },
+ 'hasvisibleoverprint' => { 534 => 'HasVisibleOverprint' },
+ 'hasvisibletransparency' => { 534 => 'HasVisibleTransparency' },
'hdmioutputn-log' => { 238 => 0x35a },
- 'hdmioutputresolution' => { 239 => 0x610, 240 => 0x640, 241 => 0x6a8 },
- 'hdmiviewassist' => { 312 => 0x20f },
- 'hdr' => { 60 => 0x1, 219 => 0x4, 220 => 0x4, 337 => 0x9e, 372 => 0x85, 437 => 0x200a },
- 'hdrcapacitymax' => { 507 => 'HDRCapacityMax' },
- 'hdrcapacitymin' => { 507 => 'HDRCapacityMin' },
- 'hdreditmode' => { 496 => 'HDREditMode', 498 => 'HDREditMode' },
+ 'hdmioutputresolution' => { 239 => 0x710, 240 => 0x610, 241 => 0x640, 242 => 0x6a8 },
+ 'hdmiviewassist' => { 314 => 0x20f, 315 => 0x227 },
+ 'hdr' => { 60 => 0x1, 219 => 0x4, 220 => 0x4, 239 => 0x23a, 242 => 0x23a, 340 => 0x9e, 375 => 0x85, 440 => 0x200a },
+ 'hdrcapacitymax' => { 511 => 'HDRCapacityMax' },
+ 'hdrcapacitymin' => { 511 => 'HDRCapacityMin' },
+ 'hdreditmode' => { 500 => 'HDREditMode', 502 => 'HDREditMode' },
'hdreffect' => { 60 => 0x2 },
'hdrgain' => { 1 => 0x30 },
'hdrheadroom' => { 1 => 0x21 },
'hdrimagetype' => { 1 => 0xa },
- 'hdrlevel' => { 219 => 0x5, 220 => 0x5, 426 => 0x2e, 442 => 0x17 },
+ 'hdrlevel' => { 219 => 0x5, 220 => 0x5, 239 => 0x246, 242 => 0x246, 429 => 0x2e, 445 => 0x17 },
'hdrlevel2' => { 219 => 0x7 },
- 'hdrpmakernote' => { 479 => 'hdrp_makernote' },
- 'hdrsetting' => { 426 => 0x2d, 442 => 0x16, 446 => 0x1148, 447 => 0x1148, 448 => 0x1124, 449 => 0x11a0, 450 => 0x117c, 451 => 0x1034, 452 => 0x22c, 453 => 0x22c, 454 => 0x21f },
- 'hdrshot' => { 337 => 0x76 },
+ 'hdrpmakernote' => { 483 => 'hdrp_makernote' },
+ 'hdrsetting' => { 429 => 0x2d, 445 => 0x16, 449 => 0x1148, 450 => 0x1148, 451 => 0x1124, 452 => 0x11a0, 453 => 0x117c, 454 => 0x1034, 455 => 0x22c, 456 => 0x22c, 457 => 0x21f },
+ 'hdrshot' => { 340 => 0x76 },
'hdrsmoothing' => { 219 => 0x6 },
- 'hdvideo' => { 389 => 'hdvd' },
- 'headline' => { 131 => 0x69, 510 => 'Headline', 513 => 'Headline' },
+ 'hdvideo' => { 392 => 'hdvd' },
+ 'headline' => { 131 => 0x69, 514 => 'Headline', 517 => 'Headline' },
'hierarchicalkeywords' => { 171 => [\'Keywords','KeywordsHierarchy'] },
'hierarchicalkeywords1' => { 171 => [\'Keywords','KeywordsHierarchyKeyword'] },
'hierarchicalkeywords1applied' => { 171 => [\'Keywords','KeywordsHierarchyApplied'] },
@@ -3402,60 +3411,60 @@ my %tagLookup = (
'hierarchicalkeywords5children' => { 171 => [\'Keywords','KeywordsHierarchyChildrenChildrenChildrenChildrenChildren'] },
'hierarchicalkeywords6' => { 171 => [\'Keywords','KeywordsHierarchyChildrenChildrenChildrenChildrenChildrenKeyword'] },
'hierarchicalkeywords6applied' => { 171 => [\'Keywords','KeywordsHierarchyChildrenChildrenChildrenChildrenChildrenApplied'] },
- 'hierarchicalsubject' => { 488 => 'hierarchicalSubject' },
+ 'hierarchicalsubject' => { 492 => 'hierarchicalSubject' },
'highestbiostratigraphiczone' => { 118 => [\'GeologicalContext','GeologicalContextHighestBiostratigraphicZone'] },
- 'highframerate' => { 240 => 0x48, 241 => 0x48 },
- 'highfrequencyflickerreductionshooting' => { 240 => 0x27c, 241 => 0x27c },
- 'highisomultiplierblue' => { 342 => 0x1a },
- 'highisomultipliergreen' => { 342 => 0x19 },
- 'highisomultiplierred' => { 342 => 0x18 },
- 'highisonoisereduction' => { 16 => 0xbc, 17 => 0xbd, 20 => 0xbd, 28 => 0xc9, 62 => 0x5, 84 => 0x202, 234 => 0xb1, 372 => 0x71, 424 => 0x2c, 425 => 0x26, 426 => 0x26, 437 => 0x2009, 442 => 0x12, 468 => 0x42 },
- 'highisonoisereduction2' => { 437 => 0xb050 },
- 'highlight' => { 414 => 0xf },
- 'highlight2012' => { 496 => 'Highlight2012', 498 => 'Highlight2012' },
+ 'highframerate' => { 239 => 0x48, 241 => 0x48, 242 => 0x48 },
+ 'highfrequencyflickerreductionshooting' => { 239 => 0x27c, 241 => 0x27c, 242 => 0x27c },
+ 'highisomultiplierblue' => { 345 => 0x1a },
+ 'highisomultipliergreen' => { 345 => 0x19 },
+ 'highisomultiplierred' => { 345 => 0x18 },
+ 'highisonoisereduction' => { 16 => 0xbc, 17 => 0xbd, 20 => 0xbd, 28 => 0xc9, 62 => 0x5, 84 => 0x202, 234 => 0xb1, 375 => 0x71, 427 => 0x2c, 428 => 0x26, 429 => 0x26, 440 => 0x2009, 445 => 0x12, 472 => 0x42 },
+ 'highisonoisereduction2' => { 440 => 0xb050 },
+ 'highlight' => { 417 => 0xf },
+ 'highlight2012' => { 500 => 'Highlight2012', 502 => 'Highlight2012' },
'highlightadj' => { 103 => 0x2030c },
- 'highlightcolordistortreduct' => { 472 => 0x8026 },
- 'highlightlinearitylimit' => { 411 => 0xa025 },
- 'highlightprotection' => { 288 => 0x6 },
- 'highlightrecovery' => { 496 => 'HighlightRecovery', 498 => 'HighlightRecovery' },
- 'highlights' => { 437 => 0x2033, 490 => 'Highlights' },
- 'highlights2012' => { 496 => 'Highlights2012', 498 => 'Highlights2012' },
- 'highlightsadj' => { 472 => 0x9019 },
- 'highlightshadow' => { 337 => 0xad },
+ 'highlightcolordistortreduct' => { 476 => 0x8026 },
+ 'highlightlinearitylimit' => { 414 => 0xa025 },
+ 'highlightprotection' => { 289 => 0x6 },
+ 'highlightrecovery' => { 500 => 'HighlightRecovery', 502 => 'HighlightRecovery' },
+ 'highlights' => { 440 => 0x2033, 494 => 'Highlights' },
+ 'highlights2012' => { 500 => 'Highlights2012', 502 => 'Highlights2012' },
+ 'highlightsadj' => { 476 => 0x9019 },
+ 'highlightshadow' => { 340 => 0xad },
'highlighttone' => { 127 => 0x1041 },
'highlighttonepriority' => { 13 => 0x7, 16 => 0x7, 17 => 0x7, 18 => 0x7, 20 => 0x7, 22 => 0x7, 28 => 0x7, 62 => 0x3, 84 => 0x203 },
- 'highlightwarning' => { 337 => 0x8002 },
- 'highlowkeyadj' => { 372 => 0x6c },
- 'highspeedsync' => { 184 => 0x5, 312 => 0x55, 424 => 0x2, 425 => 0x2 },
- 'hintversion' => { 397 => 'hinv' },
- 'histogramxml' => { 289 => 0x83a1a25 },
- 'history' => { 513 => 'History', 526 => 'History' },
- 'historyaction' => { 526 => [\'History','HistoryAction'] },
- 'historychanged' => { 526 => [\'History','HistoryChanged'] },
- 'historyinstanceid' => { 526 => [\'History','HistoryInstanceID'] },
- 'historyparameters' => { 526 => [\'History','HistoryParameters'] },
- 'historysoftwareagent' => { 526 => [\'History','HistorySoftwareAgent'] },
- 'historywhen' => { 526 => [\'History','HistoryWhen'] },
+ 'highlightwarning' => { 340 => 0x8002 },
+ 'highlowkeyadj' => { 375 => 0x6c },
+ 'highspeedsync' => { 184 => 0x5, 313 => 0x55, 314 => 0x55, 315 => 0x55, 427 => 0x2, 428 => 0x2 },
+ 'hintversion' => { 400 => 'hinv' },
+ 'histogramxml' => { 290 => 0x83a1a25 },
+ 'history' => { 517 => 'History', 530 => 'History' },
+ 'historyaction' => { 530 => [\'History','HistoryAction'] },
+ 'historychanged' => { 530 => [\'History','HistoryChanged'] },
+ 'historyinstanceid' => { 530 => [\'History','HistoryInstanceID'] },
+ 'historyparameters' => { 530 => [\'History','HistoryParameters'] },
+ 'historysoftwareagent' => { 530 => [\'History','HistorySoftwareAgent'] },
+ 'historywhen' => { 530 => [\'History','HistoryWhen'] },
'holefilldarkdeltathreshold' => { 138 => 0xc88 },
'holefilldeltathreshold' => { 138 => 0xc7e },
- 'hometowncity' => { 113 => 0x3006, 372 => 0x23, 378 => 0x2 },
- 'hometowncitycode' => { 379 => 0x1000 },
- 'hometowndst' => { 372 => 0x25, 378 => '0.2' },
+ 'hometowncity' => { 113 => 0x3006, 375 => 0x23, 381 => 0x2 },
+ 'hometowncitycode' => { 382 => 0x1000 },
+ 'hometowndst' => { 375 => 0x25, 381 => '0.2' },
'hostcomputer' => { 119 => 0x13c },
'hostsoftwarerendering' => { 138 => 0xce7 },
- 'hue' => { 189 => 0x3b, 249 => 0x3d, 250 => 0x45, 372 => 0x67 },
- 'hueadj' => { 292 => 0x2f, 472 => 0x8019 },
- 'hueadjust' => { 404 => 0x1016 },
- 'hueadjustment' => { 182 => 0x4a, 183 => 0x40, 234 => 0x92, 248 => 0x36 },
- 'hueadjustmentaqua' => { 496 => 'HueAdjustmentAqua', 498 => 'HueAdjustmentAqua' },
- 'hueadjustmentblue' => { 496 => 'HueAdjustmentBlue', 498 => 'HueAdjustmentBlue' },
- 'hueadjustmentgreen' => { 496 => 'HueAdjustmentGreen', 498 => 'HueAdjustmentGreen' },
- 'hueadjustmentmagenta' => { 496 => 'HueAdjustmentMagenta', 498 => 'HueAdjustmentMagenta' },
- 'hueadjustmentorange' => { 496 => 'HueAdjustmentOrange', 498 => 'HueAdjustmentOrange' },
- 'hueadjustmentpurple' => { 496 => 'HueAdjustmentPurple', 498 => 'HueAdjustmentPurple' },
- 'hueadjustmentred' => { 496 => 'HueAdjustmentRed', 498 => 'HueAdjustmentRed' },
- 'hueadjustmentyellow' => { 496 => 'HueAdjustmentYellow', 498 => 'HueAdjustmentYellow' },
- 'huesetting' => { 322 => 0x1011 },
+ 'hue' => { 189 => 0x3b, 250 => 0x3d, 251 => 0x45, 375 => 0x67 },
+ 'hueadj' => { 293 => 0x2f, 476 => 0x8019 },
+ 'hueadjust' => { 407 => 0x1016 },
+ 'hueadjustment' => { 182 => 0x4a, 183 => 0x40, 234 => 0x92, 249 => 0x36 },
+ 'hueadjustmentaqua' => { 500 => 'HueAdjustmentAqua', 502 => 'HueAdjustmentAqua' },
+ 'hueadjustmentblue' => { 500 => 'HueAdjustmentBlue', 502 => 'HueAdjustmentBlue' },
+ 'hueadjustmentgreen' => { 500 => 'HueAdjustmentGreen', 502 => 'HueAdjustmentGreen' },
+ 'hueadjustmentmagenta' => { 500 => 'HueAdjustmentMagenta', 502 => 'HueAdjustmentMagenta' },
+ 'hueadjustmentorange' => { 500 => 'HueAdjustmentOrange', 502 => 'HueAdjustmentOrange' },
+ 'hueadjustmentpurple' => { 500 => 'HueAdjustmentPurple', 502 => 'HueAdjustmentPurple' },
+ 'hueadjustmentred' => { 500 => 'HueAdjustmentRed', 502 => 'HueAdjustmentRed' },
+ 'hueadjustmentyellow' => { 500 => 'HueAdjustmentYellow', 502 => 'HueAdjustmentYellow' },
+ 'huesetting' => { 325 => 0x1011 },
'humanobservation' => { 118 => 'HumanObservation' },
'humanobservationday' => { 118 => [\'HumanObservation','HumanObservationDay'] },
'humanobservationearliestdate' => { 118 => [\'HumanObservation','HumanObservationEarliestDate'] },
@@ -3477,13 +3486,13 @@ my %tagLookup = (
'humanobservationstartdayofyear' => { 118 => [\'HumanObservation','HumanObservationStartDayOfYear'] },
'humanobservationverbatimeventdate' => { 118 => [\'HumanObservation','HumanObservationVerbatimEventDate'] },
'humanobservationyear' => { 118 => [\'HumanObservation','HumanObservationYear'] },
- 'humidity' => { 119 => 0x9401, 503 => 'Humidity' },
+ 'humidity' => { 119 => 0x9401, 507 => 'Humidity' },
'icc_profile' => { 120 => 'ICC_Profile' },
- 'iccprofilename' => { 513 => 'ICCProfile' },
- 'iconuri' => { 397 => 'icnu' },
- 'idccreativestyle' => { 472 => 0x8000 },
- 'idcpreviewlength' => { 472 => 0x202 },
- 'idcpreviewstart' => { 472 => 0x201 },
+ 'iccprofilename' => { 517 => 'ICCProfile' },
+ 'iconuri' => { 400 => 'icnu' },
+ 'idccreativestyle' => { 476 => 0x8000 },
+ 'idcpreviewlength' => { 476 => 0x202 },
+ 'idcpreviewstart' => { 476 => 0x201 },
'identification' => { 118 => 'Identification' },
'identificationid' => { 118 => [\'Identification','IdentificationIdentificationID'] },
'identificationqualifier' => { 118 => [\'Identification','IdentificationIdentificationQualifier'] },
@@ -3492,48 +3501,48 @@ my %tagLookup = (
'identificationverificationstatus' => { 118 => [\'Identification','IdentificationIdentificationVerificationStatus'] },
'identifiedby' => { 118 => [\'Identification','IdentificationIdentifiedBy'] },
'identifiedbyid' => { 118 => [\'Identification','IdentificationIdentifiedByID'] },
- 'identifier' => { 499 => 'identifier', 523 => 'Identifier' },
+ 'identifier' => { 503 => 'identifier', 527 => 'Identifier' },
'ifcameramodel' => { 138 => 0x9c8 },
'illuminantdata1' => { 119 => 0xcd35 },
'illuminantdata2' => { 119 => 0xcd36 },
'illuminantdata3' => { 119 => 0xcd37 },
- 'illumination' => { 307 => '0.5', 399 => 0x48 },
+ 'illumination' => { 308 => '0.5', 402 => 0x48 },
'imageabsolutex' => { 138 => 0x3fe },
'imageabsolutey' => { 138 => 0x3ff },
- 'imageadjustment' => { 234 => 0x80, 279 => 0x5 },
- 'imagealterationconstraints' => { 324 => 'ImageAlterationConstraints' },
- 'imagearea' => { 265 => 0x10, 268 => 0x10 },
- 'imageareaoffset' => { 372 => 0x38 },
+ 'imageadjustment' => { 234 => 0x80, 280 => 0x5 },
+ 'imagealterationconstraints' => { 327 => 'ImageAlterationConstraints' },
+ 'imagearea' => { 266 => 0x10, 269 => 0x10 },
+ 'imageareaoffset' => { 375 => 0x38 },
'imageauthentication' => { 234 => 0x20 },
'imageboundary' => { 234 => 0x16 },
- 'imagecapturereqestid' => { 1 => 0x20 },
+ 'imagecapturerequestid' => { 1 => 0x20 },
'imagecapturetype' => { 1 => 0x14 },
- 'imagecount' => { 127 => 0x1438, 234 => 0xa5, 440 => 0x11b },
- 'imagecreator' => { 324 => 'ImageCreator' },
- 'imagecreatorid' => { 324 => [\'ImageCreator','ImageCreatorImageCreatorID'] },
- 'imagecreatorimageid' => { 324 => 'ImageCreatorImageID' },
- 'imagecreatorname' => { 324 => [\'ImageCreator','ImageCreatorImageCreatorName'] },
+ 'imagecount' => { 127 => 0x1438, 234 => 0xa5, 443 => 0x11b },
+ 'imagecreator' => { 327 => 'ImageCreator' },
+ 'imagecreatorid' => { 327 => [\'ImageCreator','ImageCreatorImageCreatorID'] },
+ 'imagecreatorimageid' => { 327 => 'ImageCreatorImageID' },
+ 'imagecreatorname' => { 327 => [\'ImageCreator','ImageCreatorImageCreatorName'] },
'imagecropx' => { 138 => 0x41f },
'imagecropy' => { 138 => 0x420 },
- 'imagedata' => { 483 => 'Data' },
+ 'imagedata' => { 487 => 'Data' },
'imagedatasize' => { 234 => 0xa2 },
- 'imagedescription' => { 119 => 0x10e, 521 => 'ImageDescription' },
- 'imageduplicationconstraints' => { 324 => 'ImageDuplicationConstraints' },
- 'imagedustoff' => { 289 => 0xfe443a45 },
- 'imageeditcount' => { 372 => 0x41 },
- 'imageediting' => { 372 => 0x32 },
+ 'imagedescription' => { 119 => 0x10e, 525 => 'ImageDescription' },
+ 'imageduplicationconstraints' => { 327 => 'ImageDuplicationConstraints' },
+ 'imagedustoff' => { 290 => 0xfe443a45 },
+ 'imageeditcount' => { 375 => 0x41 },
+ 'imageediting' => { 375 => 0x32 },
'imageeditingsoftware' => { 119 => 0xa43b },
'imageeditor' => { 119 => 0xa438 },
- 'imageeffects' => { 404 => 0x1010 },
- 'imagefileconstraints' => { 324 => 'ImageFileConstraints' },
- 'imagefileformatasdelivered' => { 324 => 'ImageFileFormatAsDelivered' },
- 'imagefilesizeasdelivered' => { 324 => 'ImageFileSizeAsDelivered' },
+ 'imageeffects' => { 407 => 0x1010 },
+ 'imagefileconstraints' => { 327 => 'ImageFileConstraints' },
+ 'imagefileformatasdelivered' => { 327 => 'ImageFileFormatAsDelivered' },
+ 'imagefilesizeasdelivered' => { 327 => 'ImageFileSizeAsDelivered' },
'imagegeneration' => { 127 => 0x1436 },
- 'imageheight' => { 119 => 0x101, 188 => 0xc, 381 => 0x10d, 481 => 'ImageHeight', 521 => 'ImageLength' },
- 'imagehistory' => { 119 => 0x9213, 501 => 'ImageHistory' },
- 'imageidnumber' => { 332 => 0x340 },
- 'imagemimetype' => { 483 => 'Mime' },
- 'imagenumber' => { 119 => 0x9211, 156 => 'ImageNumber', 182 => 0xae, 183 => 0x5e, 381 => 0x113, 424 => 0x9b, 426 => [0x400,'276.1',0x314], 493 => 'ImageNumber' },
+ 'imageheight' => { 119 => 0x101, 188 => 0xc, 384 => 0x10d, 485 => 'ImageHeight', 525 => 'ImageLength' },
+ 'imagehistory' => { 119 => 0x9213, 505 => 'ImageHistory' },
+ 'imageidnumber' => { 335 => 0x340 },
+ 'imagemimetype' => { 487 => 'Mime' },
+ 'imagenumber' => { 119 => 0x9211, 156 => 'ImageNumber', 182 => 0xae, 183 => 0x5e, 384 => 0x113, 427 => 0x9b, 429 => [0x400,'276.1',0x314], 497 => 'ImageNumber' },
'imagenumber2' => { 183 => 0x62 },
'imageoptimization' => { 234 => 0xa9 },
'imageorientation' => { 131 => 0x83 },
@@ -3541,39 +3550,39 @@ my %tagLookup = (
'imageprocessingfiledatecreated' => { 138 => 0xc81 },
'imageprocessingfiletagsversionnumber' => { 138 => 0xc80 },
'imageprocessingflags' => { 1 => 0x19 },
- 'imageprocessingversion' => { 318 => 0x0 },
- 'imagequality' => { 156 => 'ImageQuality', 267 => '723.2', 268 => '732.2', 276 => '708.1', 337 => 0x1 },
- 'imagequality2' => { 314 => 0x603 },
- 'imagerank' => { 486 => 'ImageRank' },
+ 'imageprocessingversion' => { 321 => 0x0 },
+ 'imagequality' => { 156 => 'ImageQuality', 268 => '723.2', 269 => '732.2', 277 => '708.1', 340 => 0x1 },
+ 'imagequality2' => { 317 => 0x603 },
+ 'imagerank' => { 490 => 'ImageRank' },
'imagerbiassettlingdelaymsec' => { 138 => 0x600 },
'imagerboardversion' => { 138 => 0x439 },
'imagercols' => { 138 => 0x17d4 },
- 'imageref' => { 508 => 'ImageRef' },
- 'imageregion' => { 510 => 'ImageRegion' },
- 'imageregionboundary' => { 510 => [\'ImageRegion','ImageRegionRegionBoundary'] },
- 'imageregionboundaryh' => { 510 => [\'ImageRegion','ImageRegionRegionBoundaryRbH'] },
- 'imageregionboundaryrx' => { 510 => [\'ImageRegion','ImageRegionRegionBoundaryRbRx'] },
- 'imageregionboundaryshape' => { 510 => [\'ImageRegion','ImageRegionRegionBoundaryRbShape'] },
- 'imageregionboundaryunit' => { 510 => [\'ImageRegion','ImageRegionRegionBoundaryRbUnit'] },
- 'imageregionboundaryvertices' => { 510 => [\'ImageRegion','ImageRegionRegionBoundaryRbVertices'] },
- 'imageregionboundaryverticesx' => { 510 => [\'ImageRegion','ImageRegionRegionBoundaryRbVerticesRbX'] },
- 'imageregionboundaryverticesy' => { 510 => [\'ImageRegion','ImageRegionRegionBoundaryRbVerticesRbY'] },
- 'imageregionboundaryw' => { 510 => [\'ImageRegion','ImageRegionRegionBoundaryRbW'] },
- 'imageregionboundaryx' => { 510 => [\'ImageRegion','ImageRegionRegionBoundaryRbX'] },
- 'imageregionboundaryy' => { 510 => [\'ImageRegion','ImageRegionRegionBoundaryRbY'] },
- 'imageregionctype' => { 510 => [\'ImageRegion','ImageRegionRCtype'] },
- 'imageregionctypeidentifier' => { 510 => [\'ImageRegion','ImageRegionRCtypeIdentifier'] },
- 'imageregionctypename' => { 510 => [\'ImageRegion','ImageRegionRCtypeName'] },
- 'imageregionid' => { 510 => [\'ImageRegion','ImageRegionRId'] },
- 'imageregionname' => { 510 => [\'ImageRegion','ImageRegionName'] },
- 'imageregionrole' => { 510 => [\'ImageRegion','ImageRegionRRole'] },
- 'imageregionroleidentifier' => { 510 => [\'ImageRegion','ImageRegionRRoleIdentifier'] },
- 'imageregionrolename' => { 510 => [\'ImageRegion','ImageRegionRRoleName'] },
+ 'imageref' => { 512 => 'ImageRef' },
+ 'imageregion' => { 514 => 'ImageRegion' },
+ 'imageregionboundary' => { 514 => [\'ImageRegion','ImageRegionRegionBoundary'] },
+ 'imageregionboundaryh' => { 514 => [\'ImageRegion','ImageRegionRegionBoundaryRbH'] },
+ 'imageregionboundaryrx' => { 514 => [\'ImageRegion','ImageRegionRegionBoundaryRbRx'] },
+ 'imageregionboundaryshape' => { 514 => [\'ImageRegion','ImageRegionRegionBoundaryRbShape'] },
+ 'imageregionboundaryunit' => { 514 => [\'ImageRegion','ImageRegionRegionBoundaryRbUnit'] },
+ 'imageregionboundaryvertices' => { 514 => [\'ImageRegion','ImageRegionRegionBoundaryRbVertices'] },
+ 'imageregionboundaryverticesx' => { 514 => [\'ImageRegion','ImageRegionRegionBoundaryRbVerticesRbX'] },
+ 'imageregionboundaryverticesy' => { 514 => [\'ImageRegion','ImageRegionRegionBoundaryRbVerticesRbY'] },
+ 'imageregionboundaryw' => { 514 => [\'ImageRegion','ImageRegionRegionBoundaryRbW'] },
+ 'imageregionboundaryx' => { 514 => [\'ImageRegion','ImageRegionRegionBoundaryRbX'] },
+ 'imageregionboundaryy' => { 514 => [\'ImageRegion','ImageRegionRegionBoundaryRbY'] },
+ 'imageregionctype' => { 514 => [\'ImageRegion','ImageRegionRCtype'] },
+ 'imageregionctypeidentifier' => { 514 => [\'ImageRegion','ImageRegionRCtypeIdentifier'] },
+ 'imageregionctypename' => { 514 => [\'ImageRegion','ImageRegionRCtypeName'] },
+ 'imageregionid' => { 514 => [\'ImageRegion','ImageRegionRId'] },
+ 'imageregionname' => { 514 => [\'ImageRegion','ImageRegionName'] },
+ 'imageregionrole' => { 514 => [\'ImageRegion','ImageRegionRRole'] },
+ 'imageregionroleidentifier' => { 514 => [\'ImageRegion','ImageRegionRRoleIdentifier'] },
+ 'imageregionrolename' => { 514 => [\'ImageRegion','ImageRegionRRoleName'] },
'imageresolution' => { 138 => 0x944 },
'imageresolutionjpg' => { 138 => 0x945 },
- 'imagereview' => { 298 => '0.4', 307 => '0.4' },
- 'imagereviewmonitorofftime' => { 297 => '21.1', 299 => '21.1', 300 => '21.1', 304 => '20.1', 309 => '21.1', 310 => '21.1', 312 => 0x39 },
- 'imagereviewtime' => { 296 => '25.1', 298 => '2.1', 301 => '19.1', 302 => '20.1', 303 => '20.1', 305 => '9.2', 306 => '20.1', 311 => '21.2' },
+ 'imagereview' => { 299 => '0.4', 308 => '0.4' },
+ 'imagereviewmonitorofftime' => { 298 => '21.1', 300 => '21.1', 301 => '21.1', 305 => '20.1', 310 => '21.1', 311 => '21.1', 313 => 0x39, 314 => 0x39, 315 => 0x39 },
+ 'imagereviewtime' => { 297 => '25.1', 299 => '2.1', 302 => '19.1', 303 => '20.1', 304 => '20.1', 306 => '9.2', 307 => '20.1', 312 => '21.2' },
'imagerfiledatecreated' => { 138 => 0x9c5 },
'imagerfileproductionlevel' => { 138 => 0x9c4 },
'imagerfiletagsversionstandard' => { 138 => 0x9c7 },
@@ -3584,213 +3593,213 @@ my %tagLookup = (
'imagesegmentstartline' => { 138 => 0x184c },
'imagesize' => { 162 => 'ImageSize' },
'imagesizeraw' => { 234 => 0x3e },
- 'imagesizerestriction' => { 518 => 'imageSizeRestriction' },
+ 'imagesizerestriction' => { 522 => 'imageSizeRestriction' },
'imagesourcedata' => { 119 => 0x935c },
'imagespace' => { 138 => 0x909 },
- 'imagestabilization' => { 34 => 0x22, 113 => 0x3020, 127 => 0x1422, 156 => 'ImageStabilization', 182 => 0xbd, 183 => 0x71, 184 => 0x57, 185 => 0x0, 186 => [0x18,0x107,0x113], 187 => 0x49c2, 234 => 0xac, 314 => 0x604, 317 => 0x1600, 337 => 0x1a, 429 => 0x12, 430 => 0x11, 437 => 0xb026 },
- 'imagestabilization2' => { 428 => 0xa },
- 'imagestabilizationsetting' => { 187 => 0x14, 424 => 0x3d, 425 => 0x3d, 435 => 0x14 },
- 'imagestyle' => { 424 => 0x2d, 425 => 0x27 },
- 'imagesupplier' => { 324 => 'ImageSupplier' },
- 'imagesupplierid' => { 324 => [\'ImageSupplier','ImageSupplierImageSupplierID'] },
- 'imagesupplierimageid' => { 324 => 'ImageSupplierImageID' },
- 'imagesuppliername' => { 324 => [\'ImageSupplier','ImageSupplierImageSupplierName'] },
+ 'imagestabilization' => { 34 => 0x22, 113 => 0x3020, 127 => 0x1422, 156 => 'ImageStabilization', 182 => 0xbd, 183 => 0x71, 184 => 0x57, 185 => 0x0, 186 => [0x18,0x107,0x113], 187 => 0x49c2, 234 => 0xac, 317 => 0x604, 320 => 0x1600, 340 => 0x1a, 432 => 0x12, 433 => 0x11, 440 => 0xb026 },
+ 'imagestabilization2' => { 431 => 0xa },
+ 'imagestabilizationsetting' => { 187 => 0x14, 427 => 0x3d, 428 => 0x3d, 438 => 0x14 },
+ 'imagestyle' => { 427 => 0x2d, 428 => 0x27 },
+ 'imagesupplier' => { 327 => 'ImageSupplier' },
+ 'imagesupplierid' => { 327 => [\'ImageSupplier','ImageSupplierImageSupplierID'] },
+ 'imagesupplierimageid' => { 327 => 'ImageSupplierImageID' },
+ 'imagesuppliername' => { 327 => [\'ImageSupplier','ImageSupplierImageSupplierName'] },
'imagetemperaturemax' => { 121 => 0x1 },
'imagetemperaturemin' => { 121 => 0x2 },
- 'imagetone' => { 372 => 0x4f },
- 'imagetype' => { 131 => 0x82, 324 => 'ImageType' },
- 'imageuniqueid' => { 1 => 0x15, 64 => 0x28, 119 => 0xa420, 501 => 'ImageUniqueID', 502 => 'ImageUniqueID' },
- 'imagewidth' => { 119 => 0x100, 188 => 0xe, 381 => 0x10c, 481 => 'ImageWidth', 521 => 'ImageWidth' },
- 'inclinationangle' => { 472 => 0x900f },
- 'inclinationcorrection' => { 472 => 0x900e },
- 'incrementaltemperature' => { 496 => 'IncrementalTemperature', 498 => 'IncrementalTemperature' },
- 'incrementaltint' => { 496 => 'IncrementalTint', 498 => 'IncrementalTint' },
- 'industry' => { 515 => 'industry', 516 => 'industry' },
+ 'imagetone' => { 375 => 0x4f },
+ 'imagetype' => { 131 => 0x82, 327 => 'ImageType' },
+ 'imageuniqueid' => { 1 => 0x15, 64 => 0x28, 119 => 0xa420, 505 => 'ImageUniqueID', 506 => 'ImageUniqueID' },
+ 'imagewidth' => { 119 => 0x100, 188 => 0xe, 384 => 0x10c, 485 => 'ImageWidth', 525 => 'ImageWidth' },
+ 'inclinationangle' => { 476 => 0x900f },
+ 'inclinationcorrection' => { 476 => 0x900e },
+ 'incrementaltemperature' => { 500 => 'IncrementalTemperature', 502 => 'IncrementalTemperature' },
+ 'incrementaltint' => { 500 => 'IncrementalTint', 502 => 'IncrementalTint' },
+ 'industry' => { 519 => 'industry', 520 => 'industry' },
'infobuttonwhenshooting' => { 84 => 0x409 },
- 'information' => { 391 => 'information', 397 => "\xa9inf" },
- 'infourl' => { 397 => 'infu' },
- 'infraredilluminator' => { 398 => 0x28 },
- 'ingredientexclusion' => { 517 => 'ingredientExclusion' },
- 'ingredients' => { 526 => 'Ingredients' },
- 'ingredientsalternatepaths' => { 526 => [\'Ingredients','IngredientsAlternatePaths'] },
- 'ingredientsdocumentid' => { 526 => [\'Ingredients','IngredientsDocumentID'] },
- 'ingredientsfilepath' => { 526 => [\'Ingredients','IngredientsFilePath'] },
- 'ingredientsfrompart' => { 526 => [\'Ingredients','IngredientsFromPart'] },
- 'ingredientsinstanceid' => { 526 => [\'Ingredients','IngredientsInstanceID'] },
- 'ingredientslastmodifydate' => { 526 => [\'Ingredients','IngredientsLastModifyDate'] },
- 'ingredientslasturl' => { 526 => [\'Ingredients','IngredientsLastURL'] },
- 'ingredientslinkcategory' => { 526 => [\'Ingredients','IngredientsLinkCategory'] },
- 'ingredientslinkform' => { 526 => [\'Ingredients','IngredientsLinkForm'] },
- 'ingredientsmanager' => { 526 => [\'Ingredients','IngredientsManager'] },
- 'ingredientsmanagervariant' => { 526 => [\'Ingredients','IngredientsManagerVariant'] },
- 'ingredientsmanageto' => { 526 => [\'Ingredients','IngredientsManageTo'] },
- 'ingredientsmanageui' => { 526 => [\'Ingredients','IngredientsManageUI'] },
- 'ingredientsmaskmarkers' => { 526 => [\'Ingredients','IngredientsMaskMarkers'] },
- 'ingredientsoriginaldocumentid' => { 526 => [\'Ingredients','IngredientsOriginalDocumentID'] },
- 'ingredientspartmapping' => { 526 => [\'Ingredients','IngredientsPartMapping'] },
- 'ingredientsplacedresolutionunit' => { 526 => [\'Ingredients','IngredientsPlacedResolutionUnit'] },
- 'ingredientsplacedxresolution' => { 526 => [\'Ingredients','IngredientsPlacedXResolution'] },
- 'ingredientsplacedyresolution' => { 526 => [\'Ingredients','IngredientsPlacedYResolution'] },
- 'ingredientsrenditionclass' => { 526 => [\'Ingredients','IngredientsRenditionClass'] },
- 'ingredientsrenditionparams' => { 526 => [\'Ingredients','IngredientsRenditionParams'] },
- 'ingredientstopart' => { 526 => [\'Ingredients','IngredientsToPart'] },
- 'ingredientsversionid' => { 526 => [\'Ingredients','IngredientsVersionID'] },
+ 'information' => { 394 => 'information', 400 => "\xa9inf" },
+ 'infourl' => { 400 => 'infu' },
+ 'infraredilluminator' => { 401 => 0x28 },
+ 'ingredientexclusion' => { 521 => 'ingredientExclusion' },
+ 'ingredients' => { 530 => 'Ingredients' },
+ 'ingredientsalternatepaths' => { 530 => [\'Ingredients','IngredientsAlternatePaths'] },
+ 'ingredientsdocumentid' => { 530 => [\'Ingredients','IngredientsDocumentID'] },
+ 'ingredientsfilepath' => { 530 => [\'Ingredients','IngredientsFilePath'] },
+ 'ingredientsfrompart' => { 530 => [\'Ingredients','IngredientsFromPart'] },
+ 'ingredientsinstanceid' => { 530 => [\'Ingredients','IngredientsInstanceID'] },
+ 'ingredientslastmodifydate' => { 530 => [\'Ingredients','IngredientsLastModifyDate'] },
+ 'ingredientslasturl' => { 530 => [\'Ingredients','IngredientsLastURL'] },
+ 'ingredientslinkcategory' => { 530 => [\'Ingredients','IngredientsLinkCategory'] },
+ 'ingredientslinkform' => { 530 => [\'Ingredients','IngredientsLinkForm'] },
+ 'ingredientsmanager' => { 530 => [\'Ingredients','IngredientsManager'] },
+ 'ingredientsmanagervariant' => { 530 => [\'Ingredients','IngredientsManagerVariant'] },
+ 'ingredientsmanageto' => { 530 => [\'Ingredients','IngredientsManageTo'] },
+ 'ingredientsmanageui' => { 530 => [\'Ingredients','IngredientsManageUI'] },
+ 'ingredientsmaskmarkers' => { 530 => [\'Ingredients','IngredientsMaskMarkers'] },
+ 'ingredientsoriginaldocumentid' => { 530 => [\'Ingredients','IngredientsOriginalDocumentID'] },
+ 'ingredientspartmapping' => { 530 => [\'Ingredients','IngredientsPartMapping'] },
+ 'ingredientsplacedresolutionunit' => { 530 => [\'Ingredients','IngredientsPlacedResolutionUnit'] },
+ 'ingredientsplacedxresolution' => { 530 => [\'Ingredients','IngredientsPlacedXResolution'] },
+ 'ingredientsplacedyresolution' => { 530 => [\'Ingredients','IngredientsPlacedYResolution'] },
+ 'ingredientsrenditionclass' => { 530 => [\'Ingredients','IngredientsRenditionClass'] },
+ 'ingredientsrenditionparams' => { 530 => [\'Ingredients','IngredientsRenditionParams'] },
+ 'ingredientstopart' => { 530 => [\'Ingredients','IngredientsToPart'] },
+ 'ingredientsversionid' => { 530 => [\'Ingredients','IngredientsVersionID'] },
'initialafpointaiservoaf' => { 84 => 0x51e },
'initialafpointinservo' => { 2 => 0x13 },
- 'initialcameradolly' => { 484 => 'InitialCameraDolly' },
- 'initialhorizontalfovdegrees' => { 484 => 'InitialHorizontalFOVDegrees' },
+ 'initialcameradolly' => { 488 => 'InitialCameraDolly' },
+ 'initialhorizontalfovdegrees' => { 488 => 'InitialHorizontalFOVDegrees' },
'initialkey' => { 179 => 'WM/InitialKey' },
- 'initialverticalfovdegrees' => { 484 => 'InitialVerticalFOVDegrees' },
- 'initialviewheadingdegrees' => { 484 => 'InitialViewHeadingDegrees', 485 => 'InitialViewHeadingDegrees' },
- 'initialviewpitchdegrees' => { 484 => 'InitialViewPitchDegrees', 485 => 'InitialViewPitchDegrees' },
- 'initialviewrolldegrees' => { 484 => 'InitialViewRollDegrees', 485 => 'InitialViewRollDegrees' },
- 'initialzoomliveview' => { 296 => '4.4' },
- 'initialzoomsetting' => { 296 => '9.3', 305 => '27.3' },
+ 'initialverticalfovdegrees' => { 488 => 'InitialVerticalFOVDegrees' },
+ 'initialviewheadingdegrees' => { 488 => 'InitialViewHeadingDegrees', 489 => 'InitialViewHeadingDegrees' },
+ 'initialviewpitchdegrees' => { 488 => 'InitialViewPitchDegrees', 489 => 'InitialViewPitchDegrees' },
+ 'initialviewrolldegrees' => { 488 => 'InitialViewRollDegrees', 489 => 'InitialViewRollDegrees' },
+ 'initialzoomliveview' => { 297 => '4.4' },
+ 'initialzoomsetting' => { 297 => '9.3', 306 => '27.3' },
'inkset' => { 119 => 0x14c },
'inputprofile' => { 138 => 0x1389 },
- 'instanceid' => { 526 => 'InstanceID' },
+ 'instanceid' => { 530 => 'InstanceID' },
'instantplaybacksetup' => { 184 => 0x3e },
'instantplaybacktime' => { 184 => 0x3d },
- 'instructions' => { 513 => 'Instructions' },
- 'instrument' => { 525 => 'instrument' },
+ 'instructions' => { 517 => 'Instructions' },
+ 'instrument' => { 529 => 'instrument' },
'integrationtime' => { 138 => 0x423 },
- 'intellectualgenre' => { 509 => 'IntellectualGenre' },
- 'intelligentauto' => { 437 => 0xb052, 464 => 0xd, 465 => 0xe, 466 => 0xd },
+ 'intellectualgenre' => { 513 => 'IntellectualGenre' },
+ 'intelligentauto' => { 440 => 0xb052, 468 => 0xd, 469 => 0xe, 470 => 0xd },
'intelligentcontrast' => { 52 => 0x4 },
- 'intelligentd-range' => { 337 => 0x79 },
- 'intelligentexposure' => { 337 => 0x5d },
- 'intelligentresolution' => { 337 => 0x70 },
+ 'intelligentd-range' => { 340 => 0x79 },
+ 'intelligentexposure' => { 340 => 0x5d },
+ 'intelligentresolution' => { 340 => 0x70 },
'interchangecolorspace' => { 133 => 0x40 },
'intergraphmatrix' => { 119 => 0x8480 },
- 'internalflash' => { 181 => 0x2b, 296 => '23.1', 298 => '8.1', 301 => '22.1', 303 => '23.1', 307 => '8.1', 311 => '24.1', 317 => 0x1208 },
- 'internalflashae1' => { 319 => 0x1021 },
- 'internalflashae1_0' => { 319 => 0x101d },
- 'internalflashae2' => { 319 => 0x1022 },
- 'internalflashae2_0' => { 319 => 0x101e },
- 'internalflashmode' => { 360 => 0x1 },
- 'internalflashstrength' => { 360 => 0x3 },
- 'internalflashtable' => { 319 => 0x1024 },
- 'internallensserialnumber' => { 411 => 0xa005 },
- 'internalndfilter' => { 337 => 0x9d },
- 'internalserialnumber' => { 64 => 0x96, 76 => 0x9, 127 => 0x10, 187 => 0x49dc, 313 => 0x18, 315 => 0x102, 334 => 0x500, 337 => 0x25, 352 => 0x4, 404 => 0x5, 456 => [0x7c,0xf0], 457 => 0x88, 458 => [0x88,0x8a] },
- 'interopindex' => { 119 => 0x1, 503 => 'InteroperabilityIndex' },
+ 'internalflash' => { 181 => 0x2b, 297 => '23.1', 299 => '8.1', 302 => '22.1', 304 => '23.1', 308 => '8.1', 312 => '24.1', 320 => 0x1208 },
+ 'internalflashae1' => { 322 => 0x1021 },
+ 'internalflashae1_0' => { 322 => 0x101d },
+ 'internalflashae2' => { 322 => 0x1022 },
+ 'internalflashae2_0' => { 322 => 0x101e },
+ 'internalflashmode' => { 363 => 0x1 },
+ 'internalflashstrength' => { 363 => 0x3 },
+ 'internalflashtable' => { 322 => 0x1024 },
+ 'internallensserialnumber' => { 414 => 0xa005 },
+ 'internalndfilter' => { 340 => 0x9d },
+ 'internalserialnumber' => { 64 => 0x96, 76 => 0x9, 127 => 0x10, 187 => 0x49dc, 316 => 0x18, 318 => 0x102, 337 => 0x500, 340 => 0x25, 355 => 0x4, 407 => 0x5, 459 => [0x7c,0xf0], 460 => 0x88, 461 => [0x88,0x8a], 462 => 0x38 },
+ 'interopindex' => { 119 => 0x1, 507 => 'InteroperabilityIndex' },
'interopversion' => { 119 => 0x2 },
- 'interval' => { 255 => 0x20 },
- 'intervaldurationhours' => { 238 => 0xa0 },
- 'intervaldurationminutes' => { 238 => 0xa4 },
- 'intervaldurationseconds' => { 238 => 0xa8 },
- 'intervalexposuresmoothing' => { 223 => 0x184, 238 => 0xb8 },
- 'intervalframe' => { 255 => 0x24 },
+ 'interval' => { 256 => 0x20 },
+ 'intervaldurationhours' => { 238 => 0xa0, 239 => 0xb8 },
+ 'intervaldurationminutes' => { 238 => 0xa4, 239 => 0xbc },
+ 'intervaldurationseconds' => { 238 => 0xa8, 239 => 0xc0 },
+ 'intervalexposuresmoothing' => { 223 => 0x184, 238 => 0xb8, 239 => 0xd0 },
+ 'intervalframe' => { 256 => 0x24 },
'intervallength' => { 181 => 0x10 },
'intervalmode' => { 181 => 0x26 },
'intervalnumber' => { 181 => 0x11 },
- 'intervalpriority' => { 223 => 0x186, 238 => 0xba },
- 'intervals' => { 223 => 0x17c, 238 => 0xb0, 239 => 0xbc, 240 => 0xcc, 241 => 0xcc },
- 'intervalshooting' => { 224 => 0x24, 257 => 0x24, 258 => 0x28, 372 => 0x92 },
- 'introtime' => { 525 => 'introTime' },
- 'introtimescale' => { 525 => [\'introTime','introTimeScale'] },
- 'introtimevalue' => { 525 => [\'introTime','introTimeValue'] },
+ 'intervalpriority' => { 223 => 0x186, 238 => 0xba, 239 => 0xd2 },
+ 'intervals' => { 223 => 0x17c, 238 => 0xb0, 239 => 0xc8, 240 => 0xbc, 241 => 0xcc, 242 => 0xcc },
+ 'intervalshooting' => { 224 => 0x24, 258 => 0x24, 259 => 0x28, 375 => 0x92 },
+ 'introtime' => { 529 => 'introTime' },
+ 'introtimescale' => { 529 => [\'introTime','introTimeScale'] },
+ 'introtimevalue' => { 529 => [\'introTime','introTimeValue'] },
'ipaversion' => { 138 => 0xdae },
'ipfcameramodel' => { 138 => 0xe4d },
'iptc' => { 120 => 'IPTC' },
- 'iptc-naa' => { 119 => 0x83bb, 342 => 0x83bb },
+ 'iptc-naa' => { 119 => 0x83bb, 345 => 0x83bb },
'iptcbitspersample' => { 133 => 0x56 },
- 'iptcdigest' => { 386 => 0x425 },
+ 'iptcdigest' => { 389 => 0x425 },
'iptcimageheight' => { 133 => 0x1e },
'iptcimagerotation' => { 133 => 0x66 },
'iptcimagewidth' => { 133 => 0x14 },
- 'iptclastedited' => { 510 => 'IptcLastEdited' },
+ 'iptclastedited' => { 514 => 'IptcLastEdited' },
'iptcpicturenumber' => { 133 => 0xa },
'iptcpixelheight' => { 133 => 0x32 },
'iptcpixelwidth' => { 133 => 0x28 },
- 'isalternativeof' => { 515 => 'isAlternativeOf' },
- 'isbn' => { 515 => 'isbn' },
- 'iscorrectionof' => { 515 => 'isCorrectionOf' },
+ 'isalternativeof' => { 519 => 'isAlternativeOf' },
+ 'isbn' => { 519 => 'isbn' },
+ 'iscorrectionof' => { 519 => 'isCorrectionOf' },
'iscustompicturestyle' => { 109 => 0x3 },
- 'ismergedhdr' => { 493 => 'IsMergedHDR' },
- 'ismergedpanorama' => { 493 => 'IsMergedPanorama' },
- 'iso' => { 7 => 0x6, 9 => 0x6, 10 => 0x75, 11 => 0x6, 12 => 0x79, 13 => 0x6, 14 => 0x6, 15 => 0x6, 16 => 0x6, 17 => 0x6, 18 => 0x6, 19 => 0x6, 20 => 0x6, 21 => 0x6, 22 => 0x6, 23 => 0x6, 24 => 0x6, 25 => 0x6, 26 => 0x6, 27 => 0x6, 28 => 0x6, 29 => 0x6, 30 => 0x0, 31 => 0x1, 112 => 0x14, 113 => [0x3014,0x14], 119 => 0x8827, 137 => 0xfd06, 138 => 0x1784, 140 => 0x60, 142 => [0xfa2e,0xfa46], 143 => [0x27,0x28], 144 => 0xf105, 147 => 0x14, 149 => 0x4e, 151 => 0x1e, 152 => 0x1a, 154 => 0x34, 156 => 'ISO', 181 => 0x8, 187 => 0x49ba, 222 => 0x0, 234 => 0x2, 337 => 0xd1, 342 => 0x17, 372 => [0x8b,0x14], 379 => 0x14, 381 => 0x105, 411 => 0xa014, 414 => 0x86, 435 => 0x6f, 442 => [0x1f,0x21,0x25], 502 => 'ISOSpeedRatings' },
- 'iso2' => { 222 => 0x6, 262 => 0x265, 263 => 0x25c, 264 => 0x265, 265 => 0x221, 266 => 0x25d, 267 => 0x256, 268 => 0x25d, 271 => 0x2b5, 274 => 0x265, 278 => 0x2b5 },
- 'isoauto' => { 353 => '14.4' },
- 'isoautoflashlimit' => { 239 => 0x146, 240 => 0x15a, 241 => 0x15a },
- 'isoautohilimit' => { 221 => 0x5, 239 => 0x144, 240 => 0x158, 241 => 0x158, 260 => 0x5, 270 => 0x18eb },
- 'isoautomax' => { 436 => 0x4 },
- 'isoautomin' => { 436 => 0x2 },
- 'isoautoparameters' => { 372 => 0x7a },
- 'isoautoshuttertime' => { 221 => 0x4, 239 => 0x14e, 240 => 0x162, 241 => 0x162, 260 => 0x4, 270 => 0x18ea },
- 'isobutton' => { 241 => 0x796 },
+ 'ismergedhdr' => { 497 => 'IsMergedHDR' },
+ 'ismergedpanorama' => { 497 => 'IsMergedPanorama' },
+ 'iso' => { 7 => 0x6, 9 => 0x6, 10 => 0x75, 11 => 0x6, 12 => 0x79, 13 => 0x6, 14 => 0x6, 15 => 0x6, 16 => 0x6, 17 => 0x6, 18 => 0x6, 19 => 0x6, 20 => 0x6, 21 => 0x6, 22 => 0x6, 23 => 0x6, 24 => 0x6, 25 => 0x6, 26 => 0x6, 27 => 0x6, 28 => 0x6, 29 => 0x6, 30 => 0x0, 31 => 0x1, 112 => 0x14, 113 => [0x3014,0x14], 119 => 0x8827, 137 => 0xfd06, 138 => 0x1784, 140 => 0x60, 142 => [0xfa2e,0xfa46], 143 => [0x27,0x28], 144 => 0xf105, 147 => 0x14, 149 => 0x4e, 151 => 0x1e, 152 => 0x1a, 154 => 0x34, 156 => 'ISO', 181 => 0x8, 187 => 0x49ba, 222 => 0x0, 234 => 0x2, 340 => 0xd1, 345 => 0x17, 375 => [0x8b,0x14], 382 => 0x14, 384 => 0x105, 414 => 0xa014, 417 => 0x86, 438 => 0x6f, 445 => [0x1f,0x21,0x25], 506 => 'ISOSpeedRatings' },
+ 'iso2' => { 222 => 0x6, 263 => 0x265, 264 => 0x25c, 265 => 0x265, 266 => 0x221, 267 => 0x25d, 268 => 0x256, 269 => 0x25d, 272 => 0x2b5, 275 => 0x265, 279 => 0x2b5 },
+ 'isoauto' => { 356 => '14.4' },
+ 'isoautoflashlimit' => { 239 => 0x156, 240 => 0x146, 241 => 0x15a, 242 => 0x15a },
+ 'isoautohilimit' => { 221 => 0x5, 239 => 0x154, 240 => 0x144, 241 => 0x158, 242 => 0x158, 261 => 0x5, 271 => 0x18eb },
+ 'isoautomax' => { 439 => 0x4 },
+ 'isoautomin' => { 439 => 0x2 },
+ 'isoautoparameters' => { 375 => 0x7a },
+ 'isoautoshuttertime' => { 221 => 0x4, 239 => 0x15e, 240 => 0x14e, 241 => 0x162, 242 => 0x162, 261 => 0x4, 271 => 0x18ea },
+ 'isobutton' => { 242 => 0x796 },
'isocalibrationgain' => { 138 => 0x89f },
- 'isodisplay' => { 299 => '4.1', 300 => '4.1', 301 => '2.3', 302 => '3.3', 303 => '3.3', 306 => '3.3', 309 => '4.3', 310 => '4.1', 311 => '4.3' },
+ 'isodisplay' => { 300 => '4.1', 301 => '4.1', 302 => '2.3', 303 => '3.3', 304 => '3.3', 307 => '3.3', 310 => '4.3', 311 => '4.1', 312 => '4.3' },
'isoexpansion' => { 84 => 0x103, 85 => 0x7, 86 => 0x8, 89 => 0x8, 222 => 0x4 },
'isoexpansion2' => { 222 => 0xa },
- 'isofloor' => { 353 => 0x6 },
- 'isoselected' => { 336 => 0x359 },
+ 'isofloor' => { 356 => 0x6 },
+ 'isoselected' => { 339 => 0x359 },
'isoselection' => { 234 => 0xf },
- 'isosensitivitystep' => { 304 => '6.2', 306 => '6.2' },
- 'isosetting' => { 140 => 0x5e, 152 => 0x14, 156 => 'ISOSetting', 181 => 0x24, 182 => 0x26, 183 => 0x1c, 184 => 0x13, 189 => 0x6, 234 => 0x13, 353 => '17.3', 403 => 0x27, 424 => 0x16, 425 => 0x14, 426 => 0x2, 435 => 0x6d, 436 => 0x0 },
- 'isospeed' => { 119 => 0x8833, 503 => 'ISOSpeed' },
+ 'isosensitivitystep' => { 305 => '6.2', 307 => '6.2' },
+ 'isosetting' => { 140 => 0x5e, 152 => 0x14, 156 => 'ISOSetting', 181 => 0x24, 182 => 0x26, 183 => 0x1c, 184 => 0x13, 189 => 0x6, 234 => 0x13, 356 => '17.3', 406 => 0x27, 427 => 0x16, 428 => 0x14, 429 => 0x2, 438 => 0x6d, 439 => 0x0 },
+ 'isospeed' => { 119 => 0x8833, 507 => 'ISOSpeed' },
'isospeedexpansion' => { 83 => 0x3 },
'isospeedincrements' => { 84 => 0x102 },
- 'isospeedlatitudeyyy' => { 119 => 0x8834, 503 => 'ISOSpeedLatitudeyyy' },
- 'isospeedlatitudezzz' => { 119 => 0x8835, 503 => 'ISOSpeedLatitudezzz' },
+ 'isospeedlatitudeyyy' => { 119 => 0x8834, 507 => 'ISOSpeedLatitudeyyy' },
+ 'isospeedlatitudezzz' => { 119 => 0x8835, 507 => 'ISOSpeedLatitudezzz' },
'isospeedrange' => { 84 => 0x103 },
- 'isostepsize' => { 296 => '6.1', 297 => '7.2', 299 => '7.2', 300 => '7.2', 305 => '4.1', 309 => '7.2', 310 => '7.2', 312 => 0x15d },
- 'isovalue' => { 319 => 0x1001 },
- 'isrccode' => { 397 => "\xa9isr" },
- 'issn' => { 515 => 'issn' },
- 'issueidentifier' => { 515 => 'issueIdentifier' },
- 'issuename' => { 515 => 'issueName' },
- 'issueteaser' => { 515 => 'issueTeaser' },
- 'issuetype' => { 515 => 'issueType' },
- 'istranslationof' => { 515 => 'isTranslationOf' },
+ 'isostepsize' => { 297 => '6.1', 298 => '7.2', 300 => '7.2', 301 => '7.2', 306 => '4.1', 310 => '7.2', 311 => '7.2', 313 => 0x15d, 314 => 0x15d, 315 => 0x175 },
+ 'isovalue' => { 322 => 0x1001 },
+ 'isrccode' => { 400 => "\xa9isr" },
+ 'issn' => { 519 => 'issn' },
+ 'issueidentifier' => { 519 => 'issueIdentifier' },
+ 'issuename' => { 519 => 'issueName' },
+ 'issueteaser' => { 519 => 'issueTeaser' },
+ 'issuetype' => { 519 => 'issueType' },
+ 'istranslationof' => { 519 => 'isTranslationOf' },
'itemsubtype' => { 178 => 'ItemSubType' },
- 'itunesu' => { 389 => 'itnu' },
+ 'itunesu' => { 392 => 'itnu' },
'jobid' => { 131 => 0xb8 },
- 'jobname' => { 504 => 'JobName' },
- 'jobref' => { 524 => 'JobRef' },
- 'jobrefid' => { 524 => [\'JobRef','JobRefId'] },
- 'jobrefname' => { 524 => [\'JobRef','JobRefName'] },
- 'jobrefurl' => { 524 => [\'JobRef','JobRefUrl'] },
- 'jobstatus' => { 504 => 'JobStatus' },
- 'jpeg-heifswitch' => { 437 => 0x2039 },
- 'jpeghandling' => { 496 => 'JPEGHandling', 498 => 'JPEGHandling' },
- 'jpegquality' => { 10 => 0x66, 337 => 0x43, 339 => 0x3034, 437 => 0xb047 },
- 'jpegsize' => { 339 => 0x303a },
+ 'jobname' => { 508 => 'JobName' },
+ 'jobref' => { 528 => 'JobRef' },
+ 'jobrefid' => { 528 => [\'JobRef','JobRefId'] },
+ 'jobrefname' => { 528 => [\'JobRef','JobRefName'] },
+ 'jobrefurl' => { 528 => [\'JobRef','JobRefUrl'] },
+ 'jobstatus' => { 508 => 'JobStatus' },
+ 'jpeg-heifswitch' => { 440 => 0x2039 },
+ 'jpeghandling' => { 500 => 'JPEGHandling', 502 => 'JPEGHandling' },
+ 'jpegquality' => { 10 => 0x66, 340 => 0x43, 342 => 0x3034, 440 => 0xb047 },
+ 'jpegsize' => { 342 => 0x303a },
'jpgcompression' => { 225 => 0x24 },
- 'jpgfromraw' => { 97 => 0x2007, 114 => 'Exif-JpgFromRaw', 342 => 0x2e },
+ 'jpgfromraw' => { 97 => 0x2007, 114 => 'Exif-JpgFromRaw', 345 => 0x2e },
'jpgfromrawlength' => { 119 => [0x117,0x202] },
'jpgfromrawstart' => { 119 => [0x111,0x201] },
- 'jpgrecordedpixels' => { 353 => '14.1' },
- 'jurisdiction' => { 494 => 'jurisdiction' },
- 'keepexposure' => { 312 => 0x237 },
- 'kelvinwb_01' => { 361 => 0x5 },
- 'kelvinwb_02' => { 361 => 0x9 },
- 'kelvinwb_03' => { 361 => 0xd },
- 'kelvinwb_04' => { 361 => 0x11 },
- 'kelvinwb_05' => { 361 => 0x15 },
- 'kelvinwb_06' => { 361 => 0x19 },
- 'kelvinwb_07' => { 361 => 0x1d },
- 'kelvinwb_08' => { 361 => 0x21 },
- 'kelvinwb_09' => { 361 => 0x25 },
- 'kelvinwb_10' => { 361 => 0x29 },
- 'kelvinwb_11' => { 361 => 0x2d },
- 'kelvinwb_12' => { 361 => 0x31 },
- 'kelvinwb_13' => { 361 => 0x35 },
- 'kelvinwb_14' => { 361 => 0x39 },
- 'kelvinwb_15' => { 361 => 0x3d },
- 'kelvinwb_16' => { 361 => 0x41 },
- 'kelvinwb_daylight' => { 361 => 0x1 },
+ 'jpgrecordedpixels' => { 356 => '14.1' },
+ 'jurisdiction' => { 498 => 'jurisdiction' },
+ 'keepexposure' => { 313 => 0x237, 314 => 0x237, 315 => 0x24f },
+ 'kelvinwb_01' => { 364 => 0x5 },
+ 'kelvinwb_02' => { 364 => 0x9 },
+ 'kelvinwb_03' => { 364 => 0xd },
+ 'kelvinwb_04' => { 364 => 0x11 },
+ 'kelvinwb_05' => { 364 => 0x15 },
+ 'kelvinwb_06' => { 364 => 0x19 },
+ 'kelvinwb_07' => { 364 => 0x1d },
+ 'kelvinwb_08' => { 364 => 0x21 },
+ 'kelvinwb_09' => { 364 => 0x25 },
+ 'kelvinwb_10' => { 364 => 0x29 },
+ 'kelvinwb_11' => { 364 => 0x2d },
+ 'kelvinwb_12' => { 364 => 0x31 },
+ 'kelvinwb_13' => { 364 => 0x35 },
+ 'kelvinwb_14' => { 364 => 0x39 },
+ 'kelvinwb_15' => { 364 => 0x3d },
+ 'kelvinwb_16' => { 364 => 0x41 },
+ 'kelvinwb_daylight' => { 364 => 0x1 },
'kerneldenominators' => { 138 => 0x933 },
- 'key' => { 525 => 'key' },
- 'keystonecompensation' => { 318 => 0x1900 },
- 'keystonedirection' => { 318 => 0x1901 },
- 'keystonevalue' => { 318 => 0x1906 },
- 'keyword' => { 389 => 'keyw', 515 => 'keyword' },
+ 'key' => { 529 => 'key' },
+ 'keystonecompensation' => { 321 => 0x1900 },
+ 'keystonedirection' => { 321 => 0x1901 },
+ 'keystonevalue' => { 321 => 0x1906 },
+ 'keyword' => { 392 => 'keyw', 519 => 'keyword' },
'keywordinfo' => { 171 => 'Keywords' },
- 'keywords' => { 131 => 0x19, 157 => 'Keywords', 323 => 'Keywords', 388 => 'Keywords', 391 => 'keywords', 491 => 'keywords', 512 => 'Keywords', 523 => 'Keywords' },
- 'killdate' => { 515 => 'killDate' },
- 'killdatea-platform' => { 515 => [\'killDate','killDateA-platform'] },
- 'killdatedate' => { 515 => [\'killDate','killDateDate'] },
+ 'keywords' => { 131 => 0x19, 157 => 'Keywords', 326 => 'Keywords', 391 => 'Keywords', 394 => 'keywords', 495 => 'keywords', 516 => 'Keywords', 527 => 'Keywords' },
+ 'killdate' => { 519 => 'killDate' },
+ 'killdatea-platform' => { 519 => [\'killDate','killDateA-platform'] },
+ 'killdatedate' => { 519 => [\'killDate','killDateDate'] },
'kodakimageheight' => { 137 => 0xf908, 140 => 0xe, 142 => [0xfa1e,0xfa52], 148 => 0x70 },
'kodakimagewidth' => { 137 => 0xf907, 140 => 0xc, 142 => [0xfa1d,0xfa51], 148 => 0x6c },
'kodakinfotype' => { 137 => 0xfa00 },
@@ -3800,14 +3809,14 @@ my %tagLookup = (
'kodakmodel' => { 140 => 0x0, 148 => 0x28 },
'kodaktag' => { 138 => 0x3ea },
'kodakversion' => { 138 => 0x0 },
- 'label' => { 327 => 'Label', 523 => 'Label' },
- 'labelname1' => { 508 => [\'TagStructure','TagStructureLabelName'] },
- 'labelname2' => { 508 => [\'TagStructure','TagStructureSubLabelsLabelName'] },
- 'labelname3' => { 508 => [\'TagStructure','TagStructureSubLabelsSubLabelsLabelName'] },
- 'labelname4' => { 508 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsLabelName'] },
- 'labelname5' => { 508 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsLabelName'] },
- 'labelname6' => { 508 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsLabelName'] },
- 'landmark' => { 337 => 0x6f },
+ 'label' => { 330 => 'Label', 527 => 'Label' },
+ 'labelname1' => { 512 => [\'TagStructure','TagStructureLabelName'] },
+ 'labelname2' => { 512 => [\'TagStructure','TagStructureSubLabelsLabelName'] },
+ 'labelname3' => { 512 => [\'TagStructure','TagStructureSubLabelsSubLabelsLabelName'] },
+ 'labelname4' => { 512 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsLabelName'] },
+ 'labelname5' => { 512 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsLabelName'] },
+ 'labelname6' => { 512 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsLabelName'] },
+ 'landmark' => { 340 => 0x6f },
'landscapeoutputhighlightpoint' => { 109 => 0x26 },
'landscapeoutputshadowpoint' => { 109 => 0x27 },
'landscaperawcolortone' => { 109 => 0x1f },
@@ -3822,298 +3831,298 @@ my %tagLookup = (
'landscapeunsharpmaskfineness' => { 109 => 0xa0 },
'landscapeunsharpmaskstrength' => { 109 => 0x9e },
'landscapeunsharpmaskthreshold' => { 109 => 0xa2 },
- 'language' => { 239 => 0x592, 240 => 0x5c2, 241 => 0x5c2, 499 => 'language' },
+ 'language' => { 239 => 0x692, 240 => 0x592, 241 => 0x5c2, 242 => 0x5da, 503 => 'language' },
'languageidentifier' => { 131 => 0x87 },
- 'largestvalidinteriorrectheight' => { 484 => 'LargestValidInteriorRectHeight' },
- 'largestvalidinteriorrectleft' => { 484 => 'LargestValidInteriorRectLeft' },
- 'largestvalidinteriorrecttop' => { 484 => 'LargestValidInteriorRectTop' },
- 'largestvalidinteriorrectwidth' => { 484 => 'LargestValidInteriorRectWidth' },
+ 'largestvalidinteriorrectheight' => { 488 => 'LargestValidInteriorRectHeight' },
+ 'largestvalidinteriorrectleft' => { 488 => 'LargestValidInteriorRectLeft' },
+ 'largestvalidinteriorrecttop' => { 488 => 'LargestValidInteriorRectTop' },
+ 'largestvalidinteriorrectwidth' => { 488 => 'LargestValidInteriorRectWidth' },
'lastfilenumber' => { 181 => 0x1b },
'lastkeywordiptc' => { 178 => 'LastKeywordIPTC' },
'lastkeywordxmp' => { 178 => 'LastKeywordXMP' },
- 'lastphotodate' => { 484 => 'LastPhotoDate' },
- 'lasturl' => { 526 => 'LastURL' },
- 'lateralchromaticaberration' => { 437 => 0x2012 },
- 'lateralchromaticaberrationcorrectionalreadyapplied' => { 493 => 'LateralChromaticAberrationCorrectionAlreadyApplied' },
+ 'lastphotodate' => { 488 => 'LastPhotoDate' },
+ 'lasturl' => { 530 => 'LastURL' },
+ 'lateralchromaticaberration' => { 440 => 0x2012 },
+ 'lateralchromaticaberrationcorrectionalreadyapplied' => { 497 => 'LateralChromaticAberrationCorrectionAlreadyApplied' },
'latestageorhigheststage' => { 118 => [\'GeologicalContext','GeologicalContextLatestAgeOrHighestStage'] },
'latesteonorhighesteonothem' => { 118 => [\'GeologicalContext','GeologicalContextLatestEonOrHighestEonothem'] },
'latestepochorhighestseries' => { 118 => [\'GeologicalContext','GeologicalContextLatestEpochOrHighestSeries'] },
'latesteraorhighesterathem' => { 118 => [\'GeologicalContext','GeologicalContextLatestEraOrHighestErathem'] },
'latestperiodorhighestsystem' => { 118 => [\'GeologicalContext','GeologicalContextLatestPeriodOrHighestSystem'] },
'latitude' => { 116 => 'Latitude' },
- 'lc1' => { 363 => 0x2 },
- 'lc10' => { 363 => 0xb },
- 'lc11' => { 363 => 0xc },
- 'lc12' => { 363 => 0xd },
- 'lc14' => { 363 => 0xf },
- 'lc15' => { 363 => 0x10 },
- 'lc3' => { 363 => 0x4 },
- 'lc4' => { 363 => 0x5 },
- 'lc5' => { 363 => 0x6 },
- 'lc6' => { 363 => 0x7 },
- 'lc7' => { 363 => 0x8 },
- 'lc8' => { 363 => 0x9 },
+ 'lc1' => { 366 => 0x2 },
+ 'lc10' => { 366 => 0xb },
+ 'lc11' => { 366 => 0xc },
+ 'lc12' => { 366 => 0xd },
+ 'lc14' => { 366 => 0xf },
+ 'lc15' => { 366 => 0x10 },
+ 'lc3' => { 366 => 0x4 },
+ 'lc4' => { 366 => 0x5 },
+ 'lc5' => { 366 => 0x6 },
+ 'lc6' => { 366 => 0x7 },
+ 'lc7' => { 366 => 0x8 },
+ 'lc8' => { 366 => 0x9 },
'lcddisplayatpoweron' => { 84 => 0x811, 88 => 0xa },
'lcddisplayreturntoshoot' => { 89 => 0x12 },
- 'lcdillumination' => { 296 => '17.5', 297 => '5.2', 299 => '5.1', 300 => '5.1', 305 => '10.3', 306 => '4.2', 309 => '5.2', 310 => '5.1', 311 => '5.4', 312 => 0x101 },
+ 'lcdillumination' => { 297 => '17.5', 298 => '5.2', 300 => '5.1', 301 => '5.1', 306 => '10.3', 307 => '4.2', 310 => '5.2', 311 => '5.1', 312 => '5.4', 313 => 0x101, 314 => 0x101, 315 => 0x117 },
'lcdilluminationduringbulb' => { 84 => 0x408 },
'lcdmatrix' => { 138 => 0xe74 },
'lcdmatrixchickfix' => { 138 => 0xe75 },
'lcdmatrixmarvin' => { 138 => 0xe76 },
'lcdpanels' => { 83 => 0x8 },
- 'lcheditor' => { 289 => 0x8ae85e },
- 'legacyiptcdigest' => { 513 => 'LegacyIPTCDigest' },
- 'legalcode' => { 494 => 'legalcode' },
- 'lens' => { 119 => 0xfdea, 234 => 0x84, 493 => 'Lens' },
+ 'lcheditor' => { 290 => 0x8ae85e },
+ 'legacyiptcdigest' => { 517 => 'LegacyIPTCDigest' },
+ 'legalcode' => { 498 => 'legalcode' },
+ 'lens' => { 119 => 0xfdea, 234 => 0x84, 497 => 'Lens' },
'lensafstopbutton' => { 82 => 0x11, 83 => 0x13, 84 => 0x506, 85 => 0x10, 86 => 0x12, 89 => 0x13, 90 => 0x9 },
- 'lensaperturerange' => { 414 => [0x30,0x48] },
- 'lenscontrolring' => { 312 => 0xad },
- 'lenscorrectionsettings' => { 501 => 'LensCorrectionSettings' },
- 'lensdistortinfo' => { 493 => 'LensDistortInfo' },
- 'lensdistortionparams' => { 319 => 0x206 },
+ 'lensaperturerange' => { 417 => [0x30,0x48] },
+ 'lenscontrolring' => { 313 => 0xad, 314 => 0xad, 315 => 0xad },
+ 'lenscorrectionsettings' => { 505 => 'LensCorrectionSettings' },
+ 'lensdistortinfo' => { 497 => 'LensDistortInfo' },
+ 'lensdistortionparams' => { 322 => 0x206 },
'lensdriveend' => { 232 => 0x56 },
'lensdrivenoaf' => { 84 => 0x505 },
'lensdrivewhenafimpossible' => { 2 => 0xb },
- 'lense-mountversion' => { 426 => 0x3f0, 471 => 0xd },
- 'lensfirmware' => { 405 => 0x20, 411 => 0xa004 },
- 'lensfirmwareversion' => { 315 => 0x204, 337 => 0x60, 426 => 0x3f3, 471 => 0x14 },
- 'lensfocallength' => { 103 => 0xf0512, 363 => 0x9 },
- 'lensfocalrange' => { 414 => [0xa,0x2a] },
- 'lensfocusfunctionbuttons' => { 297 => '55.1', 299 => '52.1', 300 => '52.1', 309 => '52.1', 310 => '52.1' },
- 'lensformat' => { 450 => 0x1891, 452 => 0x18bd, 453 => 0x18ed, 454 => 0x17f1, 456 => 0x106, 457 => 0x106, 467 => 0x603, 468 => 0x5d },
- 'lensfstops' => { 226 => 0x7, 227 => 0xc, 228 => 0xd, 232 => 0xe, 234 => 0x8b, 363 => '0.3' },
- 'lensfunc1button' => { 312 => 0x9f },
- 'lensfunc1buttonplaybackmode' => { 241 => 0x810 },
- 'lensfunc2button' => { 312 => 0xa7 },
- 'lensfunc2buttonplaybackmode' => { 241 => 0x812 },
- 'lensid' => { 232 => 0x30, 493 => 'LensID' },
+ 'lense-mountversion' => { 429 => 0x3f0, 475 => 0xd },
+ 'lensfirmware' => { 408 => 0x20, 414 => 0xa004 },
+ 'lensfirmwareversion' => { 318 => 0x204, 340 => 0x60, 429 => 0x3f3, 475 => 0x14 },
+ 'lensfocallength' => { 103 => 0xf0512, 366 => 0x9 },
+ 'lensfocalrange' => { 417 => [0xa,0x2a] },
+ 'lensfocusfunctionbuttons' => { 298 => '55.1', 300 => '52.1', 301 => '52.1', 310 => '52.1', 311 => '52.1' },
+ 'lensformat' => { 453 => 0x1891, 455 => 0x18bd, 456 => 0x18ed, 457 => 0x17f1, 459 => 0x106, 460 => 0x106, 471 => 0x603, 472 => 0x5d },
+ 'lensfstops' => { 226 => 0x7, 227 => 0xc, 228 => 0xd, 232 => 0xe, 234 => 0x8b, 366 => '0.3' },
+ 'lensfunc1button' => { 313 => 0x9f, 314 => 0x9f, 315 => 0x9f },
+ 'lensfunc1buttonplaybackmode' => { 242 => 0x810 },
+ 'lensfunc2button' => { 313 => 0xa7, 314 => 0xa7, 315 => 0xa7 },
+ 'lensfunc2buttonplaybackmode' => { 242 => 0x812 },
+ 'lensid' => { 232 => 0x30, 497 => 'LensID' },
'lensidnumber' => { 226 => 0x6, 227 => 0xb, 228 => 0xc, 232 => 0xd },
- 'lensinfo' => { 119 => 0xa432, 369 => 0x2a, 493 => 'LensInfo', 503 => 'LensSpecification' },
- 'lenskind' => { 363 => 0x1 },
- 'lensmake' => { 119 => 0xa433, 163 => 'Make', 503 => 'LensMake' },
- 'lensmanualdistortionamount' => { 496 => 'LensManualDistortionAmount', 498 => 'LensManualDistortionAmount' },
+ 'lensinfo' => { 119 => 0xa432, 372 => 0x2a, 497 => 'LensInfo', 507 => 'LensSpecification' },
+ 'lenskind' => { 366 => 0x1 },
+ 'lensmake' => { 119 => 0xa433, 163 => 'Make', 507 => 'LensMake' },
+ 'lensmanualdistortionamount' => { 500 => 'LensManualDistortionAmount', 502 => 'LensManualDistortionAmount' },
'lensmanufacturer' => { 178 => 'LensManufacturer' },
- 'lensmaxaperturerange' => { 414 => 0x2b },
- 'lensmodel' => { 7 => 0x937, 14 => 0x92b, 15 => 0x933, 64 => 0x95, 119 => 0xa434, 163 => 'Model', 178 => 'LensModel', 229 => 0x18a, 230 => 0x18b, 231 => 0x2ac, 315 => 0x203, 369 => 0xc, 381 => 0x412, 503 => 'LensModel' },
+ 'lensmaxaperturerange' => { 417 => 0x2b },
+ 'lensmodel' => { 7 => 0x937, 14 => 0x92b, 15 => 0x933, 64 => 0x95, 119 => 0xa434, 163 => 'Model', 178 => 'LensModel', 229 => 0x18a, 230 => 0x18b, 231 => 0x2ac, 318 => 0x203, 372 => 0xc, 384 => 0x412, 507 => 'LensModel' },
'lensmodulationoptimizer' => { 127 => 0x1045 },
- 'lensmount' => { 426 => 0x99, 450 => 0x1892, 452 => 0x18be, 453 => 0x18ee, 454 => 0x17f2, 456 => 0x105, 457 => 0x105, 467 => 0x604, 468 => 0x5e },
- 'lensmount2' => { 471 => 0x8 },
+ 'lensmount' => { 429 => 0x99, 453 => 0x1892, 455 => 0x18be, 456 => 0x18ee, 457 => 0x17f2, 459 => 0x105, 460 => 0x105, 471 => 0x604, 472 => 0x5e },
+ 'lensmount2' => { 475 => 0x8 },
'lensmounttype' => { 232 => 0x35 },
'lenspositionabsolute' => { 232 => 0x5a },
- 'lensprofilechromaticaberrationscale' => { 496 => 'LensProfileChromaticAberrationScale', 498 => 'LensProfileChromaticAberrationScale' },
- 'lensprofiledigest' => { 496 => 'LensProfileDigest', 498 => 'LensProfileDigest' },
- 'lensprofiledistortionscale' => { 496 => 'LensProfileDistortionScale', 498 => 'LensProfileDistortionScale' },
- 'lensprofileenable' => { 496 => 'LensProfileEnable', 498 => 'LensProfileEnable' },
- 'lensprofilefilename' => { 496 => 'LensProfileFilename', 498 => 'LensProfileFilename' },
- 'lensprofileisembedded' => { 496 => 'LensProfileIsEmbedded', 498 => 'LensProfileIsEmbedded' },
- 'lensprofilematchkeycameramodelname' => { 496 => 'LensProfileMatchKeyCameraModelName', 498 => 'LensProfileMatchKeyCameraModelName' },
- 'lensprofilematchkeyexifmake' => { 496 => 'LensProfileMatchKeyExifMake', 498 => 'LensProfileMatchKeyExifMake' },
- 'lensprofilematchkeyexifmodel' => { 496 => 'LensProfileMatchKeyExifModel', 498 => 'LensProfileMatchKeyExifModel' },
- 'lensprofilematchkeyisraw' => { 496 => 'LensProfileMatchKeyIsRaw', 498 => 'LensProfileMatchKeyIsRaw' },
- 'lensprofilematchkeylensid' => { 496 => 'LensProfileMatchKeyLensID', 498 => 'LensProfileMatchKeyLensID' },
- 'lensprofilematchkeylensinfo' => { 496 => 'LensProfileMatchKeyLensInfo', 498 => 'LensProfileMatchKeyLensInfo' },
- 'lensprofilematchkeylensname' => { 496 => 'LensProfileMatchKeyLensName', 498 => 'LensProfileMatchKeyLensName' },
- 'lensprofilematchkeysensorformatfactor' => { 496 => 'LensProfileMatchKeySensorFormatFactor', 498 => 'LensProfileMatchKeySensorFormatFactor' },
- 'lensprofilename' => { 496 => 'LensProfileName', 498 => 'LensProfileName' },
- 'lensprofilesetup' => { 496 => 'LensProfileSetup', 498 => 'LensProfileSetup' },
- 'lensprofilevignettingscale' => { 496 => 'LensProfileVignettingScale', 498 => 'LensProfileVignettingScale' },
- 'lensproperties' => { 315 => 0x20b },
- 'lensserialnumber' => { 21 => 0x164, 32 => 0x16b, 61 => 0x0, 119 => 0xa435, 163 => 'SerialNumber', 315 => 0x202, 335 => 0x321, 337 => 0x52, 397 => 'LENS', 405 => 0x30, 493 => 'LensSerialNumber', 503 => 'LensSerialNumber' },
+ 'lensprofilechromaticaberrationscale' => { 500 => 'LensProfileChromaticAberrationScale', 502 => 'LensProfileChromaticAberrationScale' },
+ 'lensprofiledigest' => { 500 => 'LensProfileDigest', 502 => 'LensProfileDigest' },
+ 'lensprofiledistortionscale' => { 500 => 'LensProfileDistortionScale', 502 => 'LensProfileDistortionScale' },
+ 'lensprofileenable' => { 500 => 'LensProfileEnable', 502 => 'LensProfileEnable' },
+ 'lensprofilefilename' => { 500 => 'LensProfileFilename', 502 => 'LensProfileFilename' },
+ 'lensprofileisembedded' => { 500 => 'LensProfileIsEmbedded', 502 => 'LensProfileIsEmbedded' },
+ 'lensprofilematchkeycameramodelname' => { 500 => 'LensProfileMatchKeyCameraModelName', 502 => 'LensProfileMatchKeyCameraModelName' },
+ 'lensprofilematchkeyexifmake' => { 500 => 'LensProfileMatchKeyExifMake', 502 => 'LensProfileMatchKeyExifMake' },
+ 'lensprofilematchkeyexifmodel' => { 500 => 'LensProfileMatchKeyExifModel', 502 => 'LensProfileMatchKeyExifModel' },
+ 'lensprofilematchkeyisraw' => { 500 => 'LensProfileMatchKeyIsRaw', 502 => 'LensProfileMatchKeyIsRaw' },
+ 'lensprofilematchkeylensid' => { 500 => 'LensProfileMatchKeyLensID', 502 => 'LensProfileMatchKeyLensID' },
+ 'lensprofilematchkeylensinfo' => { 500 => 'LensProfileMatchKeyLensInfo', 502 => 'LensProfileMatchKeyLensInfo' },
+ 'lensprofilematchkeylensname' => { 500 => 'LensProfileMatchKeyLensName', 502 => 'LensProfileMatchKeyLensName' },
+ 'lensprofilematchkeysensorformatfactor' => { 500 => 'LensProfileMatchKeySensorFormatFactor', 502 => 'LensProfileMatchKeySensorFormatFactor' },
+ 'lensprofilename' => { 500 => 'LensProfileName', 502 => 'LensProfileName' },
+ 'lensprofilesetup' => { 500 => 'LensProfileSetup', 502 => 'LensProfileSetup' },
+ 'lensprofilevignettingscale' => { 500 => 'LensProfileVignettingScale', 502 => 'LensProfileVignettingScale' },
+ 'lensproperties' => { 318 => 0x20b },
+ 'lensserialnumber' => { 21 => 0x164, 32 => 0x16b, 61 => 0x0, 119 => 0xa435, 163 => 'SerialNumber', 318 => 0x202, 338 => 0x321, 340 => 0x52, 400 => 'LENS', 408 => 0x30, 497 => 'LensSerialNumber', 507 => 'LensSerialNumber' },
'lensshutterlock' => { 184 => 0x4a },
- 'lensspec' => { 421 => 0x0, 422 => 0x0, 423 => 0x0, 437 => 0xb02a },
- 'lensspecfeatures' => { 456 => [0x115,0x116], 457 => [0x116,0x1ed,0x1f0,0x21c,0x21e] },
- 'lenstemperature' => { 319 => 0x1008 },
- 'lenstype' => { 7 => 0xe2, 8 => 0xd, 9 => 0x1a7, 10 => 0xc, 11 => 0x111, 12 => 0xc, 13 => 0x14f, 14 => 0xd6, 15 => 0xde, 16 => 0xf6, 17 => 0xea, 18 => 0xff, 19 => [0xc,0x97], 20 => 0xe6, 21 => 0x153, 22 => 0xea, 23 => 0xe8, 24 => 0x127, 25 => 0x161, 26 => 0x166, 27 => 0x184, 28 => 0x112, 29 => 0x189, 34 => 0x16, 186 => 0x10c, 187 => 0x49bd, 234 => 0x83, 315 => 0x201, 328 => 0x16, 332 => 0x310, 334 => 0x303, 335 => 0x303, 337 => 0x51, 339 => 0x3405, 364 => 0x0, 365 => 0x0, 366 => 0x1, 367 => 0x1, 368 => 0x1, 370 => 0x0, 411 => 0xa003, 414 => 0x27, 437 => 0xb027, 450 => 0x1896, 452 => 0x18c2, 453 => 0x18f2, 454 => 0x17f6, 456 => 0x109, 457 => 0x109, 467 => 0x608, 468 => 0x62 },
- 'lenstype2' => { 426 => 0x3f7, 450 => 0x1893, 452 => 0x18bf, 453 => 0x18ef, 454 => 0x17f3, 456 => 0x107, 457 => 0x107, 467 => 0x605, 468 => 0x60 },
- 'lenstype3' => { 471 => 0x9 },
- 'lenstypemake' => { 337 => 0xc4 },
- 'lenstypemodel' => { 337 => [0xc5,0xe4] },
- 'lenszoomposition' => { 464 => 0x19, 465 => 0x1e, 468 => [0x342,0x34e,0x35a] },
- 'levelindicator' => { 345 => 0x15 },
- 'levelmeter' => { 397 => ['Lvlm','lvlm'] },
- 'levelorientation' => { 371 => 0x0 },
- 'license' => { 494 => 'license' },
- 'licensee' => { 324 => 'Licensee' },
- 'licenseeid' => { 324 => [\'Licensee','LicenseeLicenseeID'] },
- 'licenseeimageid' => { 324 => 'LicenseeImageID' },
- 'licenseeimagenotes' => { 324 => 'LicenseeImageNotes' },
- 'licenseename' => { 324 => [\'Licensee','LicenseeLicenseeName'] },
- 'licenseenddate' => { 324 => 'LicenseEndDate' },
- 'licenseeprojectreference' => { 324 => 'LicenseeProjectReference' },
- 'licenseetransactionid' => { 324 => 'LicenseeTransactionID' },
- 'licenseid' => { 324 => 'LicenseID' },
- 'licensestartdate' => { 324 => 'LicenseStartDate' },
- 'licensetransactiondate' => { 324 => 'LicenseTransactionDate' },
- 'licensetype' => { 500 => 'licensetype' },
- 'licensor' => { 324 => 'Licensor' },
- 'licensorcity' => { 324 => [\'Licensor','LicensorLicensorCity'] },
- 'licensorcountry' => { 324 => [\'Licensor','LicensorLicensorCountry'] },
- 'licensoremail' => { 324 => [\'Licensor','LicensorLicensorEmail'] },
- 'licensorextendedaddress' => { 324 => [\'Licensor','LicensorLicensorExtendedAddress'] },
- 'licensorid' => { 324 => [\'Licensor','LicensorLicensorID'] },
- 'licensorimageid' => { 324 => 'LicensorImageID' },
- 'licensorname' => { 324 => [\'Licensor','LicensorLicensorName'] },
- 'licensornotes' => { 324 => 'LicensorNotes' },
- 'licensorpostalcode' => { 324 => [\'Licensor','LicensorLicensorPostalCode'] },
- 'licensorregion' => { 324 => [\'Licensor','LicensorLicensorRegion'] },
- 'licensorstreetaddress' => { 324 => [\'Licensor','LicensorLicensorStreetAddress'] },
- 'licensortelephone1' => { 324 => [\'Licensor','LicensorLicensorTelephone1'] },
- 'licensortelephone2' => { 324 => [\'Licensor','LicensorLicensorTelephone2'] },
- 'licensortelephonetype1' => { 324 => [\'Licensor','LicensorLicensorTelephoneType1'] },
- 'licensortelephonetype2' => { 324 => [\'Licensor','LicensorLicensorTelephoneType2'] },
- 'licensortransactionid' => { 324 => 'LicensorTransactionID' },
- 'licensorurl' => { 324 => [\'Licensor','LicensorLicensorURL'] },
- 'lightcondition' => { 319 => 0x1009 },
+ 'lensspec' => { 424 => 0x0, 425 => 0x0, 426 => 0x0, 440 => 0xb02a },
+ 'lensspecfeatures' => { 459 => [0x115,0x116], 460 => [0x116,0x1ed,0x1f0,0x21c,0x21e] },
+ 'lenstemperature' => { 322 => 0x1008 },
+ 'lenstype' => { 7 => 0xe2, 8 => 0xd, 9 => 0x1a7, 10 => 0xc, 11 => 0x111, 12 => 0xc, 13 => 0x14f, 14 => 0xd6, 15 => 0xde, 16 => 0xf6, 17 => 0xea, 18 => 0xff, 19 => [0xc,0x97], 20 => 0xe6, 21 => 0x153, 22 => 0xea, 23 => 0xe8, 24 => 0x127, 25 => 0x161, 26 => 0x166, 27 => 0x184, 28 => 0x112, 29 => 0x189, 34 => 0x16, 186 => 0x10c, 187 => 0x49bd, 234 => 0x83, 318 => 0x201, 331 => 0x16, 335 => 0x310, 337 => 0x303, 338 => 0x303, 340 => 0x51, 342 => 0x3405, 367 => 0x0, 368 => 0x0, 369 => 0x1, 370 => 0x1, 371 => 0x1, 373 => 0x0, 414 => 0xa003, 417 => 0x27, 440 => 0xb027, 453 => 0x1896, 455 => 0x18c2, 456 => 0x18f2, 457 => 0x17f6, 459 => 0x109, 460 => 0x109, 471 => 0x608, 472 => 0x62 },
+ 'lenstype2' => { 429 => 0x3f7, 453 => 0x1893, 455 => 0x18bf, 456 => 0x18ef, 457 => 0x17f3, 459 => 0x107, 460 => 0x107, 471 => 0x605, 472 => 0x60 },
+ 'lenstype3' => { 475 => 0x9 },
+ 'lenstypemake' => { 340 => 0xc4 },
+ 'lenstypemodel' => { 340 => [0xc5,0xe4] },
+ 'lenszoomposition' => { 468 => 0x19, 469 => 0x1e, 472 => [0x342,0x34e,0x35a] },
+ 'levelindicator' => { 348 => 0x15 },
+ 'levelmeter' => { 400 => ['Lvlm','lvlm'] },
+ 'levelorientation' => { 374 => 0x0 },
+ 'license' => { 498 => 'license' },
+ 'licensee' => { 327 => 'Licensee' },
+ 'licenseeid' => { 327 => [\'Licensee','LicenseeLicenseeID'] },
+ 'licenseeimageid' => { 327 => 'LicenseeImageID' },
+ 'licenseeimagenotes' => { 327 => 'LicenseeImageNotes' },
+ 'licenseename' => { 327 => [\'Licensee','LicenseeLicenseeName'] },
+ 'licenseenddate' => { 327 => 'LicenseEndDate' },
+ 'licenseeprojectreference' => { 327 => 'LicenseeProjectReference' },
+ 'licenseetransactionid' => { 327 => 'LicenseeTransactionID' },
+ 'licenseid' => { 327 => 'LicenseID' },
+ 'licensestartdate' => { 327 => 'LicenseStartDate' },
+ 'licensetransactiondate' => { 327 => 'LicenseTransactionDate' },
+ 'licensetype' => { 504 => 'licensetype' },
+ 'licensor' => { 327 => 'Licensor' },
+ 'licensorcity' => { 327 => [\'Licensor','LicensorLicensorCity'] },
+ 'licensorcountry' => { 327 => [\'Licensor','LicensorLicensorCountry'] },
+ 'licensoremail' => { 327 => [\'Licensor','LicensorLicensorEmail'] },
+ 'licensorextendedaddress' => { 327 => [\'Licensor','LicensorLicensorExtendedAddress'] },
+ 'licensorid' => { 327 => [\'Licensor','LicensorLicensorID'] },
+ 'licensorimageid' => { 327 => 'LicensorImageID' },
+ 'licensorname' => { 327 => [\'Licensor','LicensorLicensorName'] },
+ 'licensornotes' => { 327 => 'LicensorNotes' },
+ 'licensorpostalcode' => { 327 => [\'Licensor','LicensorLicensorPostalCode'] },
+ 'licensorregion' => { 327 => [\'Licensor','LicensorLicensorRegion'] },
+ 'licensorstreetaddress' => { 327 => [\'Licensor','LicensorLicensorStreetAddress'] },
+ 'licensortelephone1' => { 327 => [\'Licensor','LicensorLicensorTelephone1'] },
+ 'licensortelephone2' => { 327 => [\'Licensor','LicensorLicensorTelephone2'] },
+ 'licensortelephonetype1' => { 327 => [\'Licensor','LicensorLicensorTelephoneType1'] },
+ 'licensortelephonetype2' => { 327 => [\'Licensor','LicensorLicensorTelephoneType2'] },
+ 'licensortransactionid' => { 327 => 'LicensorTransactionID' },
+ 'licensorurl' => { 327 => [\'Licensor','LicensorLicensorURL'] },
+ 'lightcondition' => { 322 => 0x1009 },
'lightingmode' => { 113 => 0x302a },
- 'lightreading' => { 372 => 0x15 },
- 'lightsource' => { 119 => 0x9208, 234 => 0x90, 322 => 0x1000, 502 => 'LightSource' },
- 'lightsourcespecial' => { 413 => 0x21d },
- 'lightswitch' => { 309 => '0.1', 311 => '0.1' },
- 'lightvaluecenter' => { 319 => 0x103d },
- 'lightvalueperiphery' => { 319 => 0x103e },
- 'limitaf-areamodesel3dtracking' => { 312 => 0x153 },
- 'limitaf-areamodeseldynamic_l' => { 312 => 0x151 },
- 'limitaf-areamodeseldynamic_m' => { 312 => 0x150 },
- 'limitaf-areamodeseldynamic_s' => { 312 => 0x14f },
- 'limitaf-areamodeselpinpoint' => { 312 => 0x11 },
- 'limitaf-areamodeselwideaf_l' => { 312 => 0x14 },
- 'limitaf-areamodeselwideaf_s' => { 312 => 0x13 },
- 'limitafareamodeselauto' => { 312 => 0x15 },
- 'limitafareamodeselection' => { 297 => '51.1', 299 => '49.1', 300 => '49.1', 309 => '49.1', 310 => '49.1' },
- 'limitreleasemodeselc120' => { 312 => '269.4' },
- 'limitreleasemodeselc30' => { 312 => '269.3' },
- 'limitreleasemodeselch' => { 312 => '269.2' },
- 'limitreleasemodeselcl' => { 312 => '269.1' },
- 'limitreleasemodeselself' => { 312 => '269.5' },
- 'limitselectableimagearea16to9' => { 312 => 0x47 },
- 'limitselectableimagearea1to1' => { 312 => 0x46 },
- 'limitselectableimageareadx' => { 312 => 0x45 },
- 'linearitylimitblue' => { 342 => 0x10 },
- 'linearitylimitgreen' => { 342 => 0xf },
- 'linearitylimitred' => { 342 => 0xe },
+ 'lightreading' => { 375 => 0x15 },
+ 'lightsource' => { 119 => 0x9208, 234 => 0x90, 325 => 0x1000, 506 => 'LightSource' },
+ 'lightsourcespecial' => { 416 => 0x21d },
+ 'lightswitch' => { 310 => '0.1', 312 => '0.1' },
+ 'lightvaluecenter' => { 322 => 0x103d },
+ 'lightvalueperiphery' => { 322 => 0x103e },
+ 'limitaf-areamodesel3dtracking' => { 313 => 0x153, 314 => 0x153, 315 => 0x16b },
+ 'limitaf-areamodeseldynamic_l' => { 313 => 0x151, 314 => 0x151, 315 => 0x169 },
+ 'limitaf-areamodeseldynamic_m' => { 313 => 0x150, 314 => 0x150, 315 => 0x168 },
+ 'limitaf-areamodeseldynamic_s' => { 313 => 0x14f, 314 => 0x14f, 315 => 0x167 },
+ 'limitaf-areamodeselpinpoint' => { 313 => 0x11, 314 => 0x11, 315 => 0x11 },
+ 'limitaf-areamodeselwideaf_l' => { 313 => 0x14, 314 => 0x14, 315 => 0x14 },
+ 'limitaf-areamodeselwideaf_s' => { 313 => 0x13, 314 => 0x13, 315 => 0x13 },
+ 'limitafareamodeselauto' => { 313 => 0x15, 314 => 0x15, 315 => 0x15 },
+ 'limitafareamodeselection' => { 298 => '51.1', 300 => '49.1', 301 => '49.1', 310 => '49.1', 311 => '49.1' },
+ 'limitreleasemodeselc120' => { 314 => '269.4', 315 => '293.4' },
+ 'limitreleasemodeselc30' => { 314 => '269.3', 315 => '293.3' },
+ 'limitreleasemodeselch' => { 314 => '269.2', 315 => '293.2' },
+ 'limitreleasemodeselcl' => { 314 => '269.1', 315 => '293.1' },
+ 'limitreleasemodeselself' => { 314 => '269.5', 315 => '293.5' },
+ 'limitselectableimagearea16to9' => { 313 => 0x47, 314 => 0x47, 315 => 0x47 },
+ 'limitselectableimagearea1to1' => { 313 => 0x46, 314 => 0x46, 315 => 0x46 },
+ 'limitselectableimageareadx' => { 313 => 0x45, 314 => 0x45, 315 => 0x45 },
+ 'linearitylimitblue' => { 345 => 0x10 },
+ 'linearitylimitgreen' => { 345 => 0xf },
+ 'linearitylimitred' => { 345 => 0xe },
'linearityuppermargin' => { 41 => 0x32c, 42 => 0x282, 45 => [0x2ba,0x2d1,0x2d5], 47 => 0x1e5, 48 => [0x1fe,0x2de], 49 => [0x232,0x310], 50 => 0x31e },
'linearizationtable' => { 119 => 0xc618 },
'linearresponselimit' => { 119 => 0xc62e },
- 'link' => { 515 => 'link' },
- 'linkaetoafpoint' => { 353 => '14.2' },
- 'linkedencodedrightsexpr' => { 510 => [\'LinkedEncRightsExpr','LinkedEncRightsExprLinkedRightsExpr'] },
- 'linkedencodedrightsexprlangid' => { 510 => [\'LinkedEncRightsExpr','LinkedEncRightsExprRightsExprLangId'] },
- 'linkedencodedrightsexprtype' => { 510 => [\'LinkedEncRightsExpr','LinkedEncRightsExprRightsExprEncType'] },
- 'linkedencrightsexpr' => { 510 => 'LinkedEncRightsExpr' },
+ 'link' => { 519 => 'link' },
+ 'linkaetoafpoint' => { 356 => '14.2' },
+ 'linkedencodedrightsexpr' => { 514 => [\'LinkedEncRightsExpr','LinkedEncRightsExprLinkedRightsExpr'] },
+ 'linkedencodedrightsexprlangid' => { 514 => [\'LinkedEncRightsExpr','LinkedEncRightsExprRightsExprLangId'] },
+ 'linkedencodedrightsexprtype' => { 514 => [\'LinkedEncRightsExpr','LinkedEncRightsExprRightsExprEncType'] },
+ 'linkedencrightsexpr' => { 514 => 'LinkedEncRightsExpr' },
'linlogcoring' => { 138 => 0x904 },
'lithostratigraphicterms' => { 118 => [\'GeologicalContext','GeologicalContextLithostratigraphicTerms'] },
- 'livephotoauto' => { 391 => 'live-photo.auto' },
+ 'livephotoauto' => { 394 => 'live-photo.auto' },
'livephotovideoindex' => { 1 => 0x17 },
- 'livephotovitalityscore' => { 391 => 'live-photo.vitality-score' },
- 'livephotovitalityscoringversion' => { 391 => 'live-photo.vitality-scoring-version' },
- 'liveviewaf' => { 301 => '32.1', 311 => '34.1' },
- 'liveviewafareamode' => { 306 => '34.1' },
- 'liveviewafmethod' => { 442 => 0x20 },
- 'liveviewafmode' => { 306 => '34.2' },
- 'liveviewafsetting' => { 426 => 0x36 },
- 'liveviewbuttonoptions' => { 297 => '50.2', 299 => '48.2', 300 => '48.2', 309 => '48.2', 310 => '48.2' },
+ 'livephotovitalityscore' => { 394 => 'live-photo.vitality-score' },
+ 'livephotovitalityscoringversion' => { 394 => 'live-photo.vitality-scoring-version' },
+ 'liveviewaf' => { 302 => '32.1', 312 => '34.1' },
+ 'liveviewafareamode' => { 307 => '34.1' },
+ 'liveviewafmethod' => { 445 => 0x20 },
+ 'liveviewafmode' => { 307 => '34.2' },
+ 'liveviewafsetting' => { 429 => 0x36 },
+ 'liveviewbuttonoptions' => { 298 => '50.2', 300 => '48.2', 301 => '48.2', 310 => '48.2', 311 => '48.2' },
'liveviewexposuresimulation' => { 84 => 0x810 },
- 'liveviewfocusmode' => { 426 => [0x8b,0x28b] },
- 'liveviewmetering' => { 426 => [0x84,0x284] },
- 'liveviewmonitorofftime' => { 297 => '21.2', 299 => '21.2', 300 => '21.2', 302 => '20.2', 303 => '20.2', 304 => '20.2', 306 => '20.2', 309 => '21.2', 310 => '21.2' },
+ 'liveviewfocusmode' => { 429 => [0x8b,0x28b] },
+ 'liveviewmetering' => { 429 => [0x84,0x284] },
+ 'liveviewmonitorofftime' => { 298 => '21.2', 300 => '21.2', 301 => '21.2', 303 => '20.2', 304 => '20.2', 305 => '20.2', 307 => '20.2', 310 => '21.2', 311 => '21.2' },
'liveviewshooting' => { 57 => 0x13 },
'livingspecimen' => { 118 => 'LivingSpecimen' },
'livingspecimenmaterialsampleid' => { 118 => [\'LivingSpecimen','LivingSpecimenMaterialSampleID'] },
'localcaption' => { 131 => 0x79 },
'localizedcameramodel' => { 119 => 0xc615 },
- 'locallocationname' => { 411 => 0x30 },
- 'location' => { 233 => 0x9, 337 => 0x67, 489 => 'Location', 509 => 'Location', 514 => 'location', 515 => 'location' },
- 'locationaccuracyhorizontal' => { 391 => 'location.accuracy.horizontal' },
- 'locationareacode' => { 495 => 'lac' },
- 'locationbody' => { 391 => 'location.body' },
- 'locationcreated' => { 510 => 'LocationCreated' },
- 'locationcreatedcity' => { 510 => [\'LocationCreated','LocationCreatedCity'] },
- 'locationcreatedcountrycode' => { 510 => [\'LocationCreated','LocationCreatedCountryCode'] },
- 'locationcreatedcountryname' => { 510 => [\'LocationCreated','LocationCreatedCountryName'] },
- 'locationcreatedgpsaltitude' => { 510 => [\'LocationCreated','LocationCreatedGPSAltitude'] },
- 'locationcreatedgpslatitude' => { 510 => [\'LocationCreated','LocationCreatedGPSLatitude'] },
- 'locationcreatedgpslongitude' => { 510 => [\'LocationCreated','LocationCreatedGPSLongitude'] },
- 'locationcreatedidentifier' => { 510 => [\'LocationCreated','LocationCreatedIdentifier'] },
- 'locationcreatedlocationid' => { 510 => [\'LocationCreated','LocationCreatedLocationId'] },
- 'locationcreatedlocationname' => { 510 => [\'LocationCreated','LocationCreatedLocationName'] },
- 'locationcreatedprovincestate' => { 510 => [\'LocationCreated','LocationCreatedProvinceState'] },
- 'locationcreatedsublocation' => { 510 => [\'LocationCreated','LocationCreatedSublocation'] },
- 'locationcreatedworldregion' => { 510 => [\'LocationCreated','LocationCreatedWorldRegion'] },
- 'locationdate' => { 391 => 'location.date' },
- 'locationinformation' => { 397 => 'loci' },
+ 'locallocationname' => { 414 => 0x30 },
+ 'location' => { 233 => 0x9, 340 => 0x67, 493 => 'Location', 513 => 'Location', 518 => 'location', 519 => 'location' },
+ 'locationaccuracyhorizontal' => { 394 => 'location.accuracy.horizontal' },
+ 'locationareacode' => { 499 => 'lac' },
+ 'locationbody' => { 394 => 'location.body' },
+ 'locationcreated' => { 514 => 'LocationCreated' },
+ 'locationcreatedcity' => { 514 => [\'LocationCreated','LocationCreatedCity'] },
+ 'locationcreatedcountrycode' => { 514 => [\'LocationCreated','LocationCreatedCountryCode'] },
+ 'locationcreatedcountryname' => { 514 => [\'LocationCreated','LocationCreatedCountryName'] },
+ 'locationcreatedgpsaltitude' => { 514 => [\'LocationCreated','LocationCreatedGPSAltitude'] },
+ 'locationcreatedgpslatitude' => { 514 => [\'LocationCreated','LocationCreatedGPSLatitude'] },
+ 'locationcreatedgpslongitude' => { 514 => [\'LocationCreated','LocationCreatedGPSLongitude'] },
+ 'locationcreatedidentifier' => { 514 => [\'LocationCreated','LocationCreatedIdentifier'] },
+ 'locationcreatedlocationid' => { 514 => [\'LocationCreated','LocationCreatedLocationId'] },
+ 'locationcreatedlocationname' => { 514 => [\'LocationCreated','LocationCreatedLocationName'] },
+ 'locationcreatedprovincestate' => { 514 => [\'LocationCreated','LocationCreatedProvinceState'] },
+ 'locationcreatedsublocation' => { 514 => [\'LocationCreated','LocationCreatedSublocation'] },
+ 'locationcreatedworldregion' => { 514 => [\'LocationCreated','LocationCreatedWorldRegion'] },
+ 'locationdate' => { 394 => 'location.date' },
+ 'locationinformation' => { 400 => 'loci' },
'locationinfoversion' => { 233 => 0x0 },
- 'locationname' => { 391 => 'location.name', 411 => 0x31 },
- 'locationnote' => { 391 => 'location.note' },
- 'locationrole' => { 391 => 'location.role' },
- 'locationshown' => { 510 => 'LocationShown' },
- 'locationshowncity' => { 510 => [\'LocationShown','LocationShownCity'] },
- 'locationshowncountrycode' => { 510 => [\'LocationShown','LocationShownCountryCode'] },
- 'locationshowncountryname' => { 510 => [\'LocationShown','LocationShownCountryName'] },
- 'locationshowngpsaltitude' => { 510 => [\'LocationShown','LocationShownGPSAltitude'] },
- 'locationshowngpslatitude' => { 510 => [\'LocationShown','LocationShownGPSLatitude'] },
- 'locationshowngpslongitude' => { 510 => [\'LocationShown','LocationShownGPSLongitude'] },
- 'locationshownidentifier' => { 510 => [\'LocationShown','LocationShownIdentifier'] },
- 'locationshownlocationid' => { 510 => [\'LocationShown','LocationShownLocationId'] },
- 'locationshownlocationname' => { 510 => [\'LocationShown','LocationShownLocationName'] },
- 'locationshownprovincestate' => { 510 => [\'LocationShown','LocationShownProvinceState'] },
- 'locationshownsublocation' => { 510 => [\'LocationShown','LocationShownSublocation'] },
- 'locationshownworldregion' => { 510 => [\'LocationShown','LocationShownWorldRegion'] },
+ 'locationname' => { 394 => 'location.name', 414 => 0x31 },
+ 'locationnote' => { 394 => 'location.note' },
+ 'locationrole' => { 394 => 'location.role' },
+ 'locationshown' => { 514 => 'LocationShown' },
+ 'locationshowncity' => { 514 => [\'LocationShown','LocationShownCity'] },
+ 'locationshowncountrycode' => { 514 => [\'LocationShown','LocationShownCountryCode'] },
+ 'locationshowncountryname' => { 514 => [\'LocationShown','LocationShownCountryName'] },
+ 'locationshowngpsaltitude' => { 514 => [\'LocationShown','LocationShownGPSAltitude'] },
+ 'locationshowngpslatitude' => { 514 => [\'LocationShown','LocationShownGPSLatitude'] },
+ 'locationshowngpslongitude' => { 514 => [\'LocationShown','LocationShownGPSLongitude'] },
+ 'locationshownidentifier' => { 514 => [\'LocationShown','LocationShownIdentifier'] },
+ 'locationshownlocationid' => { 514 => [\'LocationShown','LocationShownLocationId'] },
+ 'locationshownlocationname' => { 514 => [\'LocationShown','LocationShownLocationName'] },
+ 'locationshownprovincestate' => { 514 => [\'LocationShown','LocationShownProvinceState'] },
+ 'locationshownsublocation' => { 514 => [\'LocationShown','LocationShownSublocation'] },
+ 'locationshownworldregion' => { 514 => [\'LocationShown','LocationShownWorldRegion'] },
'lockmicrophonebutton' => { 84 => 0x709 },
- 'logcomment' => { 525 => 'logComment' },
+ 'logcomment' => { 529 => 'logComment' },
'logscale' => { 138 => 0x902 },
- 'longdescription' => { 389 => 'ldes' },
- 'longexposurenoisereduction' => { 62 => 0x4, 84 => 0x201, 85 => 0x1, 86 => 0x2, 87 => 0x1, 88 => 0x1, 89 => 0x2, 90 => 0x1, 337 => 0x49, 424 => 0x2b, 425 => 0x25, 426 => 0x25, 437 => 0x2008, 442 => 0x11, 468 => 0x44 },
+ 'longdescription' => { 392 => 'ldes' },
+ 'longexposurenoisereduction' => { 62 => 0x4, 84 => 0x201, 85 => 0x1, 86 => 0x2, 87 => 0x1, 88 => 0x1, 89 => 0x2, 90 => 0x1, 340 => 0x49, 427 => 0x2b, 428 => 0x25, 429 => 0x25, 440 => 0x2008, 445 => 0x11, 472 => 0x44 },
'longexposurenoisereduction2' => { 57 => 0x8 },
- 'longexposurenrused' => { 337 => 0xbe },
+ 'longexposurenrused' => { 340 => 0xbe },
'longitude' => { 116 => 'Longitude' },
- 'look' => { 496 => 'Look', 498 => 'Look' },
- 'lookamount' => { 496 => [\'Look','LookAmount'], 498 => [\'Look','LookAmount'] },
- 'lookcluster' => { 496 => [\'Look','LookCluster'], 498 => [\'Look','LookCluster'] },
- 'lookcopyright' => { 496 => [\'Look','LookCopyright'], 498 => [\'Look','LookCopyright'] },
- 'lookgroup' => { 496 => [\'Look','LookGroup'], 498 => [\'Look','LookGroup'] },
- 'lookname' => { 496 => 'LookName', 498 => 'LookName' },
- 'lookparameters' => { 496 => [\'Look','LookParameters'], 498 => [\'Look','LookParameters'] },
- 'lookparameterscameraprofile' => { 496 => [\'Look','LookParametersCameraProfile'], 498 => [\'Look','LookParametersCameraProfile'] },
- 'lookparametersclarity2012' => { 496 => [\'Look','LookParametersClarity2012'], 498 => [\'Look','LookParametersClarity2012'] },
- 'lookparametersconverttograyscale' => { 496 => [\'Look','LookParametersConvertToGrayscale'], 498 => [\'Look','LookParametersConvertToGrayscale'] },
- 'lookparameterslooktable' => { 496 => [\'Look','LookParametersLookTable'], 498 => [\'Look','LookParametersLookTable'] },
- 'lookparametersprocessversion' => { 496 => [\'Look','LookParametersProcessVersion'], 498 => [\'Look','LookParametersProcessVersion'] },
- 'lookparameterstonecurvepv2012' => { 496 => [\'Look','LookParametersToneCurvePV2012'], 498 => [\'Look','LookParametersToneCurvePV2012'] },
- 'lookparameterstonecurvepv2012blue' => { 496 => [\'Look','LookParametersToneCurvePV2012Blue'], 498 => [\'Look','LookParametersToneCurvePV2012Blue'] },
- 'lookparameterstonecurvepv2012green' => { 496 => [\'Look','LookParametersToneCurvePV2012Green'], 498 => [\'Look','LookParametersToneCurvePV2012Green'] },
- 'lookparameterstonecurvepv2012red' => { 496 => [\'Look','LookParametersToneCurvePV2012Red'], 498 => [\'Look','LookParametersToneCurvePV2012Red'] },
- 'lookparametersversion' => { 496 => [\'Look','LookParametersVersion'], 498 => [\'Look','LookParametersVersion'] },
- 'looksupportsamount' => { 496 => [\'Look','LookSupportsAmount'], 498 => [\'Look','LookSupportsAmount'] },
- 'looksupportsmonochrome' => { 496 => [\'Look','LookSupportsMonochrome'], 498 => [\'Look','LookSupportsMonochrome'] },
- 'looksupportsoutputreferred' => { 496 => [\'Look','LookSupportsOutputReferred'], 498 => [\'Look','LookSupportsOutputReferred'] },
- 'lookuuid' => { 496 => [\'Look','LookUUID'], 498 => [\'Look','LookUUID'] },
- 'loop' => { 525 => 'loop' },
- 'loopstyle' => { 397 => 'LOOP' },
+ 'look' => { 500 => 'Look', 502 => 'Look' },
+ 'lookamount' => { 500 => [\'Look','LookAmount'], 502 => [\'Look','LookAmount'] },
+ 'lookcluster' => { 500 => [\'Look','LookCluster'], 502 => [\'Look','LookCluster'] },
+ 'lookcopyright' => { 500 => [\'Look','LookCopyright'], 502 => [\'Look','LookCopyright'] },
+ 'lookgroup' => { 500 => [\'Look','LookGroup'], 502 => [\'Look','LookGroup'] },
+ 'lookname' => { 500 => 'LookName', 502 => 'LookName' },
+ 'lookparameters' => { 500 => [\'Look','LookParameters'], 502 => [\'Look','LookParameters'] },
+ 'lookparameterscameraprofile' => { 500 => [\'Look','LookParametersCameraProfile'], 502 => [\'Look','LookParametersCameraProfile'] },
+ 'lookparametersclarity2012' => { 500 => [\'Look','LookParametersClarity2012'], 502 => [\'Look','LookParametersClarity2012'] },
+ 'lookparametersconverttograyscale' => { 500 => [\'Look','LookParametersConvertToGrayscale'], 502 => [\'Look','LookParametersConvertToGrayscale'] },
+ 'lookparameterslooktable' => { 500 => [\'Look','LookParametersLookTable'], 502 => [\'Look','LookParametersLookTable'] },
+ 'lookparametersprocessversion' => { 500 => [\'Look','LookParametersProcessVersion'], 502 => [\'Look','LookParametersProcessVersion'] },
+ 'lookparameterstonecurvepv2012' => { 500 => [\'Look','LookParametersToneCurvePV2012'], 502 => [\'Look','LookParametersToneCurvePV2012'] },
+ 'lookparameterstonecurvepv2012blue' => { 500 => [\'Look','LookParametersToneCurvePV2012Blue'], 502 => [\'Look','LookParametersToneCurvePV2012Blue'] },
+ 'lookparameterstonecurvepv2012green' => { 500 => [\'Look','LookParametersToneCurvePV2012Green'], 502 => [\'Look','LookParametersToneCurvePV2012Green'] },
+ 'lookparameterstonecurvepv2012red' => { 500 => [\'Look','LookParametersToneCurvePV2012Red'], 502 => [\'Look','LookParametersToneCurvePV2012Red'] },
+ 'lookparametersversion' => { 500 => [\'Look','LookParametersVersion'], 502 => [\'Look','LookParametersVersion'] },
+ 'looksupportsamount' => { 500 => [\'Look','LookSupportsAmount'], 502 => [\'Look','LookSupportsAmount'] },
+ 'looksupportsmonochrome' => { 500 => [\'Look','LookSupportsMonochrome'], 502 => [\'Look','LookSupportsMonochrome'] },
+ 'looksupportsoutputreferred' => { 500 => [\'Look','LookSupportsOutputReferred'], 502 => [\'Look','LookSupportsOutputReferred'] },
+ 'lookuuid' => { 500 => [\'Look','LookUUID'], 502 => [\'Look','LookUUID'] },
+ 'loop' => { 529 => 'loop' },
+ 'loopstyle' => { 400 => 'LOOP' },
'lowestbiostratigraphiczone' => { 118 => [\'GeologicalContext','GeologicalContextLowestBiostratigraphicZone'] },
- 'luminanceadjustmentaqua' => { 496 => 'LuminanceAdjustmentAqua', 498 => 'LuminanceAdjustmentAqua' },
- 'luminanceadjustmentblue' => { 496 => 'LuminanceAdjustmentBlue', 498 => 'LuminanceAdjustmentBlue' },
- 'luminanceadjustmentgreen' => { 496 => 'LuminanceAdjustmentGreen', 498 => 'LuminanceAdjustmentGreen' },
- 'luminanceadjustmentmagenta' => { 496 => 'LuminanceAdjustmentMagenta', 498 => 'LuminanceAdjustmentMagenta' },
- 'luminanceadjustmentorange' => { 496 => 'LuminanceAdjustmentOrange', 498 => 'LuminanceAdjustmentOrange' },
- 'luminanceadjustmentpurple' => { 496 => 'LuminanceAdjustmentPurple', 498 => 'LuminanceAdjustmentPurple' },
- 'luminanceadjustmentred' => { 496 => 'LuminanceAdjustmentRed', 498 => 'LuminanceAdjustmentRed' },
- 'luminanceadjustmentyellow' => { 496 => 'LuminanceAdjustmentYellow', 498 => 'LuminanceAdjustmentYellow' },
+ 'luminanceadjustmentaqua' => { 500 => 'LuminanceAdjustmentAqua', 502 => 'LuminanceAdjustmentAqua' },
+ 'luminanceadjustmentblue' => { 500 => 'LuminanceAdjustmentBlue', 502 => 'LuminanceAdjustmentBlue' },
+ 'luminanceadjustmentgreen' => { 500 => 'LuminanceAdjustmentGreen', 502 => 'LuminanceAdjustmentGreen' },
+ 'luminanceadjustmentmagenta' => { 500 => 'LuminanceAdjustmentMagenta', 502 => 'LuminanceAdjustmentMagenta' },
+ 'luminanceadjustmentorange' => { 500 => 'LuminanceAdjustmentOrange', 502 => 'LuminanceAdjustmentOrange' },
+ 'luminanceadjustmentpurple' => { 500 => 'LuminanceAdjustmentPurple', 502 => 'LuminanceAdjustmentPurple' },
+ 'luminanceadjustmentred' => { 500 => 'LuminanceAdjustmentRed', 502 => 'LuminanceAdjustmentRed' },
+ 'luminanceadjustmentyellow' => { 500 => 'LuminanceAdjustmentYellow', 502 => 'LuminanceAdjustmentYellow' },
'luminancecurvelimits' => { 108 => 0x150 },
'luminancecurvepoints' => { 108 => 0x126 },
'luminancenoiseamplitude' => { 1 => 0x1d },
- 'luminancenoisereduction' => { 103 => 0x20600, 109 => 0x5f, 414 => 0x1b },
- 'luminancenoisereductioncontrast' => { 496 => 'LuminanceNoiseReductionContrast', 498 => 'LuminanceNoiseReductionContrast' },
- 'luminancenoisereductiondetail' => { 496 => 'LuminanceNoiseReductionDetail', 498 => 'LuminanceNoiseReductionDetail' },
+ 'luminancenoisereduction' => { 103 => 0x20600, 109 => 0x5f, 417 => 0x1b },
+ 'luminancenoisereductioncontrast' => { 500 => 'LuminanceNoiseReductionContrast', 502 => 'LuminanceNoiseReductionContrast' },
+ 'luminancenoisereductiondetail' => { 500 => 'LuminanceNoiseReductionDetail', 502 => 'LuminanceNoiseReductionDetail' },
'luminancenr_tiff_jpeg' => { 109 => 0x6d },
- 'luminancesmoothing' => { 496 => 'LuminanceSmoothing', 498 => 'LuminanceSmoothing' },
+ 'luminancesmoothing' => { 500 => 'LuminanceSmoothing', 502 => 'LuminanceSmoothing' },
'lvshootingareadisplay' => { 84 => [0x40b,0x40c] },
- 'lyrics' => { 389 => "\xa9lyr", 397 => "\xa9lyr", 525 => 'lyrics' },
- 'lyricsuri' => { 397 => 'lrcu' },
- 'm16cversion' => { 332 => 0x333 },
- 'macatom' => { 497 => 'macAtom' },
- 'macatomapplicationcode' => { 497 => [\'macAtom','macAtomApplicationCode'] },
- 'macatominvocationappleevent' => { 497 => [\'macAtom','macAtomInvocationAppleEvent'] },
- 'macatomposixprojectpath' => { 497 => [\'macAtom','macAtomPosixProjectPath'] },
+ 'lyrics' => { 392 => "\xa9lyr", 400 => "\xa9lyr", 529 => 'lyrics' },
+ 'lyricsuri' => { 400 => 'lrcu' },
+ 'm16cversion' => { 335 => 0x333 },
+ 'macatom' => { 501 => 'macAtom' },
+ 'macatomapplicationcode' => { 501 => [\'macAtom','macAtomApplicationCode'] },
+ 'macatominvocationappleevent' => { 501 => [\'macAtom','macAtomInvocationAppleEvent'] },
+ 'macatomposixprojectpath' => { 501 => [\'macAtom','macAtomPosixProjectPath'] },
'machineobservation' => { 118 => 'MachineObservation' },
'machineobservationday' => { 118 => [\'MachineObservation','MachineObservationDay'] },
'machineobservationearliestdate' => { 118 => [\'MachineObservation','MachineObservationEarliestDate'] },
@@ -4135,19 +4144,19 @@ my %tagLookup = (
'machineobservationstartdayofyear' => { 118 => [\'MachineObservation','MachineObservationStartDayOfYear'] },
'machineobservationverbatimeventdate' => { 118 => [\'MachineObservation','MachineObservationVerbatimEventDate'] },
'machineobservationyear' => { 118 => [\'MachineObservation','MachineObservationYear'] },
- 'macro' => { 127 => 0x1020, 129 => 0x202, 151 => 0x2b, 319 => 0x202, 403 => 0x21, 413 => 0x202, 437 => 0xb040 },
- 'macroled' => { 317 => 0x120a },
+ 'macro' => { 127 => 0x1020, 129 => 0x202, 151 => 0x2b, 322 => 0x202, 406 => 0x21, 416 => 0x202, 440 => 0xb040 },
+ 'macroled' => { 320 => 0x120a },
'macromagnification' => { 7 => 0x1b, 11 => 0x1b, 14 => 0x1b, 15 => 0x1b, 19 => 0x1b, 20 => 0x1b, 57 => 0x10 },
- 'macromode' => { 34 => 0x1, 181 => 0xb, 314 => 0x300, 337 => 0x1c, 404 => 0x1009 },
+ 'macromode' => { 34 => 0x1, 181 => 0xb, 317 => 0x300, 340 => 0x1c, 407 => 0x1009 },
'magentahsl' => { 103 => 0x20917 },
- 'magicfilter' => { 314 => 0x52c },
+ 'magicfilter' => { 317 => 0x52c },
'magnifiedview' => { 86 => 0x11, 88 => 0x9 },
'mainboardversion' => { 138 => 0x438 },
- 'maindialexposurecomp' => { 307 => '0.6' },
- 'mainingredient' => { 517 => 'mainIngredient' },
- 'majorversion' => { 487 => 'MajorVersion' },
- 'make' => { 98 => 0x0, 115 => 0x1, 119 => 0x10f, 156 => 'Make', 327 => 'Make', 342 => 0x10f, 391 => 'make', 397 => ['@mak',"\xa9mak"], 514 => 'make', 521 => 'Make' },
- 'makernote' => { 502 => 'MakerNote' },
+ 'maindialexposurecomp' => { 308 => '0.6' },
+ 'mainingredient' => { 521 => 'mainIngredient' },
+ 'majorversion' => { 491 => 'MajorVersion' },
+ 'make' => { 98 => 0x0, 115 => 0x1, 119 => 0x10f, 156 => 'Make', 330 => 'Make', 345 => 0x10f, 394 => 'make', 400 => ['@mak',"\xa9mak"], 518 => 'make', 525 => 'Make' },
+ 'makernote' => { 506 => 'MakerNote' },
'makernoteapple' => { 117 => 'MakN', 119 => 0x927c },
'makernotecanon' => { 117 => 'MakN', 119 => 0x927c },
'makernotecasio' => { 117 => 'MakN', 119 => 0x927c },
@@ -4202,7 +4211,7 @@ my %tagLookup = (
'makernotenikon2' => { 117 => 'MakN', 119 => 0x927c },
'makernotenikon3' => { 117 => 'MakN', 119 => 0x927c },
'makernotenintendo' => { 117 => 'MakN', 119 => 0x927c },
- 'makernoteoffset' => { 413 => 0xff },
+ 'makernoteoffset' => { 416 => 0xff },
'makernoteolympus' => { 117 => 'MakN', 119 => 0x927c },
'makernoteolympus2' => { 117 => 'MakN', 119 => 0x927c },
'makernoteolympus3' => { 117 => 'MakN', 119 => 0x927c },
@@ -4215,7 +4224,7 @@ my %tagLookup = (
'makernotepentax4' => { 117 => 'MakN', 119 => 0x927c },
'makernotepentax5' => { 117 => 'MakN', 119 => 0x927c },
'makernotepentax6' => { 117 => 'MakN', 119 => 0x927c },
- 'makernotepentaxunknown' => { 397 => 'PXMN' },
+ 'makernotepentaxunknown' => { 400 => 'PXMN' },
'makernotephaseone' => { 117 => 'MakN', 119 => 0x927c },
'makernotereconyx' => { 117 => 'MakN', 119 => 0x927c },
'makernotereconyx2' => { 117 => 'MakN', 119 => 0x927c },
@@ -4239,292 +4248,292 @@ my %tagLookup = (
'makernotesony5' => { 117 => 'MakN', 119 => 0x927c },
'makernotesonyericsson' => { 117 => 'MakN', 119 => 0x927c },
'makernotesonysrf' => { 117 => 'MakN', 119 => 0x927c },
- 'makernotetype' => { 404 => 0x1 },
+ 'makernotetype' => { 407 => 0x1 },
'makernoteunknown' => { 117 => 'MakN', 119 => 0x927c },
'makernoteunknownbinary' => { 117 => 'MakN', 119 => 0x927c },
'makernoteunknowntext' => { 117 => 'MakN', 119 => 0x927c },
- 'makernoteversion' => { 1 => 0x1, 186 => 0x0, 234 => 0x1, 319 => 0x0, 337 => 0x8000, 408 => 0x0, 411 => 0x1, 414 => [0x1d,0x1f], 427 => 0x2000 },
- 'makerurl' => { 397 => "\xa9mal" },
- 'managedfrom' => { 526 => 'ManagedFrom' },
- 'managedfromalternatepaths' => { 526 => [\'ManagedFrom','ManagedFromAlternatePaths'] },
- 'managedfromdocumentid' => { 526 => [\'ManagedFrom','ManagedFromDocumentID'] },
- 'managedfromfilepath' => { 526 => [\'ManagedFrom','ManagedFromFilePath'] },
- 'managedfromfrompart' => { 526 => [\'ManagedFrom','ManagedFromFromPart'] },
- 'managedfrominstanceid' => { 526 => [\'ManagedFrom','ManagedFromInstanceID'] },
- 'managedfromlastmodifydate' => { 526 => [\'ManagedFrom','ManagedFromLastModifyDate'] },
- 'managedfromlasturl' => { 526 => [\'ManagedFrom','ManagedFromLastURL'] },
- 'managedfromlinkcategory' => { 526 => [\'ManagedFrom','ManagedFromLinkCategory'] },
- 'managedfromlinkform' => { 526 => [\'ManagedFrom','ManagedFromLinkForm'] },
- 'managedfrommanager' => { 526 => [\'ManagedFrom','ManagedFromManager'] },
- 'managedfrommanagervariant' => { 526 => [\'ManagedFrom','ManagedFromManagerVariant'] },
- 'managedfrommanageto' => { 526 => [\'ManagedFrom','ManagedFromManageTo'] },
- 'managedfrommanageui' => { 526 => [\'ManagedFrom','ManagedFromManageUI'] },
- 'managedfrommaskmarkers' => { 526 => [\'ManagedFrom','ManagedFromMaskMarkers'] },
- 'managedfromoriginaldocumentid' => { 526 => [\'ManagedFrom','ManagedFromOriginalDocumentID'] },
- 'managedfrompartmapping' => { 526 => [\'ManagedFrom','ManagedFromPartMapping'] },
- 'managedfromplacedresolutionunit' => { 526 => [\'ManagedFrom','ManagedFromPlacedResolutionUnit'] },
- 'managedfromplacedxresolution' => { 526 => [\'ManagedFrom','ManagedFromPlacedXResolution'] },
- 'managedfromplacedyresolution' => { 526 => [\'ManagedFrom','ManagedFromPlacedYResolution'] },
- 'managedfromrenditionclass' => { 526 => [\'ManagedFrom','ManagedFromRenditionClass'] },
- 'managedfromrenditionparams' => { 526 => [\'ManagedFrom','ManagedFromRenditionParams'] },
- 'managedfromtopart' => { 526 => [\'ManagedFrom','ManagedFromToPart'] },
- 'managedfromversionid' => { 526 => [\'ManagedFrom','ManagedFromVersionID'] },
- 'manager' => { 526 => 'Manager' },
- 'managervariant' => { 526 => 'ManagerVariant' },
- 'manageto' => { 526 => 'ManageTo' },
- 'manageui' => { 526 => 'ManageUI' },
- 'manifest' => { 526 => 'Manifest' },
- 'manifestlinkform' => { 526 => [\'Manifest','ManifestLinkForm'] },
- 'manifestplacedresolutionunit' => { 526 => [\'Manifest','ManifestPlacedResolutionUnit'] },
- 'manifestplacedxresolution' => { 526 => [\'Manifest','ManifestPlacedXResolution'] },
- 'manifestplacedyresolution' => { 526 => [\'Manifest','ManifestPlacedYResolution'] },
- 'manifestreference' => { 526 => [\'Manifest','ManifestReference'] },
- 'manifestreferencealternatepaths' => { 526 => [\'Manifest','ManifestReferenceAlternatePaths'] },
- 'manifestreferencedocumentid' => { 526 => [\'Manifest','ManifestReferenceDocumentID'] },
- 'manifestreferencefilepath' => { 526 => [\'Manifest','ManifestReferenceFilePath'] },
- 'manifestreferencefrompart' => { 526 => [\'Manifest','ManifestReferenceFromPart'] },
- 'manifestreferenceinstanceid' => { 526 => [\'Manifest','ManifestReferenceInstanceID'] },
- 'manifestreferencelastmodifydate' => { 526 => [\'Manifest','ManifestReferenceLastModifyDate'] },
- 'manifestreferencelasturl' => { 526 => [\'Manifest','ManifestReferenceLastURL'] },
- 'manifestreferencelinkcategory' => { 526 => [\'Manifest','ManifestReferenceLinkCategory'] },
- 'manifestreferencelinkform' => { 526 => [\'Manifest','ManifestReferenceLinkForm'] },
- 'manifestreferencemanager' => { 526 => [\'Manifest','ManifestReferenceManager'] },
- 'manifestreferencemanagervariant' => { 526 => [\'Manifest','ManifestReferenceManagerVariant'] },
- 'manifestreferencemanageto' => { 526 => [\'Manifest','ManifestReferenceManageTo'] },
- 'manifestreferencemanageui' => { 526 => [\'Manifest','ManifestReferenceManageUI'] },
- 'manifestreferencemaskmarkers' => { 526 => [\'Manifest','ManifestReferenceMaskMarkers'] },
- 'manifestreferenceoriginaldocumentid' => { 526 => [\'Manifest','ManifestReferenceOriginalDocumentID'] },
- 'manifestreferencepartmapping' => { 526 => [\'Manifest','ManifestReferencePartMapping'] },
- 'manifestreferenceplacedresolutionunit' => { 526 => [\'Manifest','ManifestReferencePlacedResolutionUnit'] },
- 'manifestreferenceplacedxresolution' => { 526 => [\'Manifest','ManifestReferencePlacedXResolution'] },
- 'manifestreferenceplacedyresolution' => { 526 => [\'Manifest','ManifestReferencePlacedYResolution'] },
- 'manifestreferencerenditionclass' => { 526 => [\'Manifest','ManifestReferenceRenditionClass'] },
- 'manifestreferencerenditionparams' => { 526 => [\'Manifest','ManifestReferenceRenditionParams'] },
- 'manifestreferencetopart' => { 526 => [\'Manifest','ManifestReferenceToPart'] },
- 'manifestreferenceversionid' => { 526 => [\'Manifest','ManifestReferenceVersionID'] },
- 'manometerpressure' => { 314 => 0x900, 337 => 0x86 },
- 'manometerreading' => { 314 => 0x901 },
+ 'makernoteversion' => { 1 => 0x1, 186 => 0x0, 234 => 0x1, 322 => 0x0, 340 => 0x8000, 411 => 0x0, 414 => 0x1, 417 => [0x1d,0x1f], 430 => 0x2000 },
+ 'makerurl' => { 400 => "\xa9mal" },
+ 'managedfrom' => { 530 => 'ManagedFrom' },
+ 'managedfromalternatepaths' => { 530 => [\'ManagedFrom','ManagedFromAlternatePaths'] },
+ 'managedfromdocumentid' => { 530 => [\'ManagedFrom','ManagedFromDocumentID'] },
+ 'managedfromfilepath' => { 530 => [\'ManagedFrom','ManagedFromFilePath'] },
+ 'managedfromfrompart' => { 530 => [\'ManagedFrom','ManagedFromFromPart'] },
+ 'managedfrominstanceid' => { 530 => [\'ManagedFrom','ManagedFromInstanceID'] },
+ 'managedfromlastmodifydate' => { 530 => [\'ManagedFrom','ManagedFromLastModifyDate'] },
+ 'managedfromlasturl' => { 530 => [\'ManagedFrom','ManagedFromLastURL'] },
+ 'managedfromlinkcategory' => { 530 => [\'ManagedFrom','ManagedFromLinkCategory'] },
+ 'managedfromlinkform' => { 530 => [\'ManagedFrom','ManagedFromLinkForm'] },
+ 'managedfrommanager' => { 530 => [\'ManagedFrom','ManagedFromManager'] },
+ 'managedfrommanagervariant' => { 530 => [\'ManagedFrom','ManagedFromManagerVariant'] },
+ 'managedfrommanageto' => { 530 => [\'ManagedFrom','ManagedFromManageTo'] },
+ 'managedfrommanageui' => { 530 => [\'ManagedFrom','ManagedFromManageUI'] },
+ 'managedfrommaskmarkers' => { 530 => [\'ManagedFrom','ManagedFromMaskMarkers'] },
+ 'managedfromoriginaldocumentid' => { 530 => [\'ManagedFrom','ManagedFromOriginalDocumentID'] },
+ 'managedfrompartmapping' => { 530 => [\'ManagedFrom','ManagedFromPartMapping'] },
+ 'managedfromplacedresolutionunit' => { 530 => [\'ManagedFrom','ManagedFromPlacedResolutionUnit'] },
+ 'managedfromplacedxresolution' => { 530 => [\'ManagedFrom','ManagedFromPlacedXResolution'] },
+ 'managedfromplacedyresolution' => { 530 => [\'ManagedFrom','ManagedFromPlacedYResolution'] },
+ 'managedfromrenditionclass' => { 530 => [\'ManagedFrom','ManagedFromRenditionClass'] },
+ 'managedfromrenditionparams' => { 530 => [\'ManagedFrom','ManagedFromRenditionParams'] },
+ 'managedfromtopart' => { 530 => [\'ManagedFrom','ManagedFromToPart'] },
+ 'managedfromversionid' => { 530 => [\'ManagedFrom','ManagedFromVersionID'] },
+ 'manager' => { 530 => 'Manager' },
+ 'managervariant' => { 530 => 'ManagerVariant' },
+ 'manageto' => { 530 => 'ManageTo' },
+ 'manageui' => { 530 => 'ManageUI' },
+ 'manifest' => { 530 => 'Manifest' },
+ 'manifestlinkform' => { 530 => [\'Manifest','ManifestLinkForm'] },
+ 'manifestplacedresolutionunit' => { 530 => [\'Manifest','ManifestPlacedResolutionUnit'] },
+ 'manifestplacedxresolution' => { 530 => [\'Manifest','ManifestPlacedXResolution'] },
+ 'manifestplacedyresolution' => { 530 => [\'Manifest','ManifestPlacedYResolution'] },
+ 'manifestreference' => { 530 => [\'Manifest','ManifestReference'] },
+ 'manifestreferencealternatepaths' => { 530 => [\'Manifest','ManifestReferenceAlternatePaths'] },
+ 'manifestreferencedocumentid' => { 530 => [\'Manifest','ManifestReferenceDocumentID'] },
+ 'manifestreferencefilepath' => { 530 => [\'Manifest','ManifestReferenceFilePath'] },
+ 'manifestreferencefrompart' => { 530 => [\'Manifest','ManifestReferenceFromPart'] },
+ 'manifestreferenceinstanceid' => { 530 => [\'Manifest','ManifestReferenceInstanceID'] },
+ 'manifestreferencelastmodifydate' => { 530 => [\'Manifest','ManifestReferenceLastModifyDate'] },
+ 'manifestreferencelasturl' => { 530 => [\'Manifest','ManifestReferenceLastURL'] },
+ 'manifestreferencelinkcategory' => { 530 => [\'Manifest','ManifestReferenceLinkCategory'] },
+ 'manifestreferencelinkform' => { 530 => [\'Manifest','ManifestReferenceLinkForm'] },
+ 'manifestreferencemanager' => { 530 => [\'Manifest','ManifestReferenceManager'] },
+ 'manifestreferencemanagervariant' => { 530 => [\'Manifest','ManifestReferenceManagerVariant'] },
+ 'manifestreferencemanageto' => { 530 => [\'Manifest','ManifestReferenceManageTo'] },
+ 'manifestreferencemanageui' => { 530 => [\'Manifest','ManifestReferenceManageUI'] },
+ 'manifestreferencemaskmarkers' => { 530 => [\'Manifest','ManifestReferenceMaskMarkers'] },
+ 'manifestreferenceoriginaldocumentid' => { 530 => [\'Manifest','ManifestReferenceOriginalDocumentID'] },
+ 'manifestreferencepartmapping' => { 530 => [\'Manifest','ManifestReferencePartMapping'] },
+ 'manifestreferenceplacedresolutionunit' => { 530 => [\'Manifest','ManifestReferencePlacedResolutionUnit'] },
+ 'manifestreferenceplacedxresolution' => { 530 => [\'Manifest','ManifestReferencePlacedXResolution'] },
+ 'manifestreferenceplacedyresolution' => { 530 => [\'Manifest','ManifestReferencePlacedYResolution'] },
+ 'manifestreferencerenditionclass' => { 530 => [\'Manifest','ManifestReferenceRenditionClass'] },
+ 'manifestreferencerenditionparams' => { 530 => [\'Manifest','ManifestReferenceRenditionParams'] },
+ 'manifestreferencetopart' => { 530 => [\'Manifest','ManifestReferenceToPart'] },
+ 'manifestreferenceversionid' => { 530 => [\'Manifest','ManifestReferenceVersionID'] },
+ 'manometerpressure' => { 317 => 0x900, 340 => 0x86 },
+ 'manometerreading' => { 317 => 0x901 },
'manualafpointselectpattern' => { 84 => 0x513 },
'manualafpointselpattern' => { 2 => 0xf },
- 'manualflash' => { 317 => 0x1209 },
- 'manualflashoutput' => { 34 => 0x29, 298 => '8.2', 301 => '22.2', 302 => '23.1', 303 => '23.2', 305 => '16.2', 306 => '23.2', 307 => '8.2', 308 => '23.2', 311 => '24.2', 404 => 0x100c },
- 'manualflashstrength' => { 314 => 0x406 },
- 'manualfocusdistance' => { 234 => 0x85, 319 => 0x100c, 413 => 0x223 },
- 'manualfocuspointillumination' => { 312 => 0x17 },
- 'manualfocusringinafmode' => { 312 => 0x1a },
+ 'manualflash' => { 320 => 0x1209 },
+ 'manualflashoutput' => { 34 => 0x29, 299 => '8.2', 302 => '22.2', 303 => '23.1', 304 => '23.2', 306 => '16.2', 307 => '23.2', 308 => '8.2', 309 => '23.2', 312 => '24.2', 407 => 0x100c },
+ 'manualflashstrength' => { 317 => 0x406 },
+ 'manualfocusdistance' => { 234 => 0x85, 322 => 0x100c, 416 => 0x223 },
+ 'manualfocuspointillumination' => { 313 => 0x17, 314 => 0x17, 315 => 0x17 },
+ 'manualfocusringinafmode' => { 313 => 0x1a, 314 => 0x1a, 315 => 0x1a },
'manualtv' => { 83 => 0x5, 84 => 0x705 },
- 'manufacturedate' => { 191 => 0x6705, 352 => 0x1 },
- 'manufacturedate1' => { 406 => 0x4 },
- 'manufacturedate2' => { 406 => 0x5 },
- 'manufacturer' => { 481 => 'Manufacturer', 514 => 'manufacturer' },
+ 'manufacturedate' => { 191 => 0x6705, 355 => 0x1 },
+ 'manufacturedate1' => { 409 => 0x4 },
+ 'manufacturedate2' => { 409 => 0x5 },
+ 'manufacturer' => { 485 => 'Manufacturer', 518 => 'manufacturer' },
'mariahchromablursize' => { 138 => 0xf0d },
'mariahmaphithreshold' => { 138 => 0xf0c },
'mariahmaplothreshold' => { 138 => 0xf0b },
'mariahsigmathreshold' => { 138 => 0xf0e },
'mariahtexturethreshold' => { 138 => 0xf0a },
- 'marked' => { 512 => 'Marked', 529 => 'Marked' },
- 'markers' => { 525 => 'markers' },
- 'markerscomment' => { 525 => [\'markers','markersComment'] },
- 'markerscuepointparams' => { 525 => [\'markers','markersCuePointParams'] },
- 'markerscuepointparamskey' => { 525 => [\'markers','markersCuePointParamsKey'] },
- 'markerscuepointparamsvalue' => { 525 => [\'markers','markersCuePointParamsValue'] },
- 'markerscuepointtype' => { 525 => [\'markers','markersCuePointType'] },
- 'markersduration' => { 525 => [\'markers','markersDuration'] },
- 'markerslocation' => { 525 => [\'markers','markersLocation'] },
- 'markersname' => { 525 => [\'markers','markersName'] },
- 'markersprobability' => { 525 => [\'markers','markersProbability'] },
- 'markersspeaker' => { 525 => [\'markers','markersSpeaker'] },
- 'markersstarttime' => { 525 => [\'markers','markersStartTime'] },
- 'markerstarget' => { 525 => [\'markers','markersTarget'] },
- 'markerstype' => { 525 => [\'markers','markersType'] },
+ 'marked' => { 516 => 'Marked', 533 => 'Marked' },
+ 'markers' => { 529 => 'markers' },
+ 'markerscomment' => { 529 => [\'markers','markersComment'] },
+ 'markerscuepointparams' => { 529 => [\'markers','markersCuePointParams'] },
+ 'markerscuepointparamskey' => { 529 => [\'markers','markersCuePointParamsKey'] },
+ 'markerscuepointparamsvalue' => { 529 => [\'markers','markersCuePointParamsValue'] },
+ 'markerscuepointtype' => { 529 => [\'markers','markersCuePointType'] },
+ 'markersduration' => { 529 => [\'markers','markersDuration'] },
+ 'markerslocation' => { 529 => [\'markers','markersLocation'] },
+ 'markersname' => { 529 => [\'markers','markersName'] },
+ 'markersprobability' => { 529 => [\'markers','markersProbability'] },
+ 'markersspeaker' => { 529 => [\'markers','markersSpeaker'] },
+ 'markersstarttime' => { 529 => [\'markers','markersStartTime'] },
+ 'markerstarget' => { 529 => [\'markers','markersTarget'] },
+ 'markerstype' => { 529 => [\'markers','markersType'] },
'maskedareas' => { 119 => 0xc68e },
- 'maskgroupbasedcorractive' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionActive'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionActive'] },
- 'maskgroupbasedcorramount' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionAmount'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionAmount'] },
- 'maskgroupbasedcorrblacks2012' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalBlacks2012'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalBlacks2012'] },
- 'maskgroupbasedcorrbrightness' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalBrightness'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalBrightness'] },
- 'maskgroupbasedcorrclarity' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalClarity'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalClarity'] },
- 'maskgroupbasedcorrclarity2012' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalClarity2012'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalClarity2012'] },
- 'maskgroupbasedcorrcontrast' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalContrast'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalContrast'] },
- 'maskgroupbasedcorrcontrast2012' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalContrast2012'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalContrast2012'] },
- 'maskgroupbasedcorrcorrectionname' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionName'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionName'] },
- 'maskgroupbasedcorrcorrectionsyncid' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionSyncID'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionSyncID'] },
- 'maskgroupbasedcorrdefringe' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalDefringe'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalDefringe'] },
- 'maskgroupbasedcorrdehaze' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalDehaze'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalDehaze'] },
- 'maskgroupbasedcorrections' => { 496 => 'MaskGroupBasedCorrections', 498 => 'MaskGroupBasedCorrections' },
- 'maskgroupbasedcorrexposure' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalExposure'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalExposure'] },
- 'maskgroupbasedcorrexposure2012' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalExposure2012'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalExposure2012'] },
- 'maskgroupbasedcorrhighlights2012' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalHighlights2012'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalHighlights2012'] },
- 'maskgroupbasedcorrhue' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalHue'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalHue'] },
- 'maskgroupbasedcorrluminancenoise' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalLuminanceNoise'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalLuminanceNoise'] },
- 'maskgroupbasedcorrmask' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasks'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasks'] },
- 'maskgroupbasedcorrmaskalpha' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksAlpha'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksAlpha'] },
- 'maskgroupbasedcorrmaskangle' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksAngle'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksAngle'] },
- 'maskgroupbasedcorrmaskbottom' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksBottom'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksBottom'] },
- 'maskgroupbasedcorrmaskcentervalue' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCenterValue'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCenterValue'] },
- 'maskgroupbasedcorrmaskcenterweight' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCenterWeight'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCenterWeight'] },
- 'maskgroupbasedcorrmaskdabs' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksDabs'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksDabs'] },
- 'maskgroupbasedcorrmaskfeather' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFeather'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFeather'] },
- 'maskgroupbasedcorrmaskflipped' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFlipped'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFlipped'] },
- 'maskgroupbasedcorrmaskflow' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFlow'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFlow'] },
- 'maskgroupbasedcorrmaskfullx' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFullX'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFullX'] },
- 'maskgroupbasedcorrmaskfully' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFullY'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFullY'] },
- 'maskgroupbasedcorrmaskinputdigest' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksInputDigest'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksInputDigest'] },
- 'maskgroupbasedcorrmaskleft' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksLeft'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksLeft'] },
- 'maskgroupbasedcorrmaskmaskactive' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskActive'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskActive'] },
- 'maskgroupbasedcorrmaskmaskblendmode' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskBlendMode'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskBlendMode'] },
- 'maskgroupbasedcorrmaskmaskdigest' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskDigest'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskDigest'] },
- 'maskgroupbasedcorrmaskmaskinverted' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskInverted'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskInverted'] },
- 'maskgroupbasedcorrmaskmaskname' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskName'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskName'] },
- 'maskgroupbasedcorrmaskmasks' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasks'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasks'] },
- 'maskgroupbasedcorrmaskmasksalpha' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksAlpha'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksAlpha'] },
- 'maskgroupbasedcorrmaskmasksangle' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksAngle'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksAngle'] },
- 'maskgroupbasedcorrmaskmasksbottom' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksBottom'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksBottom'] },
- 'maskgroupbasedcorrmaskmaskscentervalue' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksCenterValue'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksCenterValue'] },
- 'maskgroupbasedcorrmaskmaskscenterweight' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksCenterWeight'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksCenterWeight'] },
- 'maskgroupbasedcorrmaskmasksdabs' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksDabs'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksDabs'] },
- 'maskgroupbasedcorrmaskmasksfeather' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFeather'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFeather'] },
- 'maskgroupbasedcorrmaskmasksflipped' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFlipped'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFlipped'] },
- 'maskgroupbasedcorrmaskmasksflow' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFlow'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFlow'] },
- 'maskgroupbasedcorrmaskmasksfullx' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFullX'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFullX'] },
- 'maskgroupbasedcorrmaskmasksfully' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFullY'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFullY'] },
- 'maskgroupbasedcorrmaskmasksinputdigest' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksInputDigest'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksInputDigest'] },
- 'maskgroupbasedcorrmaskmasksleft' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksLeft'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksLeft'] },
- 'maskgroupbasedcorrmaskmasksmaskactive' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskActive'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskActive'] },
- 'maskgroupbasedcorrmaskmasksmaskblendmode' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskBlendMode'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskBlendMode'] },
- 'maskgroupbasedcorrmaskmasksmaskdigest' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskDigest'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskDigest'] },
- 'maskgroupbasedcorrmaskmasksmaskinverted' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskInverted'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskInverted'] },
- 'maskgroupbasedcorrmaskmasksmaskname' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskName'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskName'] },
- 'maskgroupbasedcorrmaskmasksmasksubtype' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskSubType'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskSubType'] },
- 'maskgroupbasedcorrmaskmasksmasksyncid' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskSyncID'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskSyncID'] },
- 'maskgroupbasedcorrmaskmasksmaskversion' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskVersion'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskVersion'] },
- 'maskgroupbasedcorrmaskmasksmidpoint' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMidpoint'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMidpoint'] },
- 'maskgroupbasedcorrmaskmasksorigin' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksOrigin'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksOrigin'] },
- 'maskgroupbasedcorrmaskmasksperimetervalue' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksPerimeterValue'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksPerimeterValue'] },
- 'maskgroupbasedcorrmaskmasksradius' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRadius'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRadius'] },
- 'maskgroupbasedcorrmaskmasksreferencepoint' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksReferencePoint'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksReferencePoint'] },
- 'maskgroupbasedcorrmaskmasksright' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRight'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRight'] },
- 'maskgroupbasedcorrmaskmasksroundness' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRoundness'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRoundness'] },
- 'maskgroupbasedcorrmaskmaskssizex' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksSizeX'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksSizeX'] },
- 'maskgroupbasedcorrmaskmaskssizey' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksSizeY'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksSizeY'] },
- 'maskgroupbasedcorrmaskmaskstop' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksTop'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksTop'] },
- 'maskgroupbasedcorrmaskmasksubtype' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskSubType'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskSubType'] },
- 'maskgroupbasedcorrmaskmasksvalue' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskValue'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskValue'] },
- 'maskgroupbasedcorrmaskmasksversion' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksVersion'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksVersion'] },
- 'maskgroupbasedcorrmaskmaskswhat' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksWhat'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksWhat'] },
- 'maskgroupbasedcorrmaskmaskswholeimagearea' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksWholeImageArea'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksWholeImageArea'] },
- 'maskgroupbasedcorrmaskmasksx' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksX'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksX'] },
- 'maskgroupbasedcorrmaskmasksy' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksY'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksY'] },
- 'maskgroupbasedcorrmaskmasksyncid' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskSyncID'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskSyncID'] },
- 'maskgroupbasedcorrmaskmaskszerox' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksZeroX'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksZeroX'] },
- 'maskgroupbasedcorrmaskmaskszeroy' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksZeroY'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksZeroY'] },
- 'maskgroupbasedcorrmaskmaskversion' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskVersion'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskVersion'] },
- 'maskgroupbasedcorrmaskmidpoint' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMidpoint'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMidpoint'] },
- 'maskgroupbasedcorrmaskorigin' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksOrigin'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksOrigin'] },
- 'maskgroupbasedcorrmaskperimetervalue' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksPerimeterValue'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksPerimeterValue'] },
- 'maskgroupbasedcorrmaskradius' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRadius'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRadius'] },
- 'maskgroupbasedcorrmaskrange' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMask'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMask'] },
- 'maskgroupbasedcorrmaskrangeareamodels' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'] },
- 'maskgroupbasedcorrmaskrangeareamodelscolorsampleinfo' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] },
- 'maskgroupbasedcorrmaskrangeareamodelscomponents' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'] },
- 'maskgroupbasedcorrmaskrangecoloramount' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'] },
- 'maskgroupbasedcorrmaskrangedepthfeather' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'] },
- 'maskgroupbasedcorrmaskrangedepthmax' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'] },
- 'maskgroupbasedcorrmaskrangedepthmin' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'] },
- 'maskgroupbasedcorrmaskrangeinvert' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'] },
- 'maskgroupbasedcorrmaskrangelumfeather' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'] },
- 'maskgroupbasedcorrmaskrangeluminancedepthsampleinfo' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'] },
- 'maskgroupbasedcorrmaskrangelummax' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'] },
- 'maskgroupbasedcorrmaskrangelummin' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'] },
- 'maskgroupbasedcorrmaskrangelumrange' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'] },
- 'maskgroupbasedcorrmaskrangesampletype' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'] },
- 'maskgroupbasedcorrmaskrangetype' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'] },
- 'maskgroupbasedcorrmaskrangeversion' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'] },
- 'maskgroupbasedcorrmaskreferencepoint' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksReferencePoint'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksReferencePoint'] },
- 'maskgroupbasedcorrmaskright' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRight'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRight'] },
- 'maskgroupbasedcorrmaskroundness' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRoundness'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRoundness'] },
- 'maskgroupbasedcorrmasksizex' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksSizeX'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksSizeX'] },
- 'maskgroupbasedcorrmasksizey' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksSizeY'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksSizeY'] },
- 'maskgroupbasedcorrmasktop' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksTop'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksTop'] },
- 'maskgroupbasedcorrmaskvalue' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskValue'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskValue'] },
- 'maskgroupbasedcorrmaskversion' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksVersion'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksVersion'] },
- 'maskgroupbasedcorrmaskwhat' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksWhat'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksWhat'] },
- 'maskgroupbasedcorrmaskwholeimagearea' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksWholeImageArea'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksWholeImageArea'] },
- 'maskgroupbasedcorrmaskx' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksX'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksX'] },
- 'maskgroupbasedcorrmasky' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksY'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksY'] },
- 'maskgroupbasedcorrmaskzerox' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksZeroX'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksZeroX'] },
- 'maskgroupbasedcorrmaskzeroy' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksZeroY'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksZeroY'] },
- 'maskgroupbasedcorrmoire' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalMoire'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalMoire'] },
- 'maskgroupbasedcorrrangemask' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMask'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMask'] },
- 'maskgroupbasedcorrrangemaskareamodels' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModels'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModels'] },
- 'maskgroupbasedcorrrangemaskareamodelscolorsampleinfo' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] },
- 'maskgroupbasedcorrrangemaskareamodelscomponents' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'] },
- 'maskgroupbasedcorrrangemaskcoloramount' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskColorAmount'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskColorAmount'] },
- 'maskgroupbasedcorrrangemaskdepthfeather' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthFeather'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthFeather'] },
- 'maskgroupbasedcorrrangemaskdepthmax' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthMax'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthMax'] },
- 'maskgroupbasedcorrrangemaskdepthmin' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthMin'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthMin'] },
- 'maskgroupbasedcorrrangemaskinvert' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskInvert'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskInvert'] },
- 'maskgroupbasedcorrrangemasklumfeather' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumFeather'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumFeather'] },
- 'maskgroupbasedcorrrangemaskluminancedepthsampleinfo' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'] },
- 'maskgroupbasedcorrrangemasklummax' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumMax'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumMax'] },
- 'maskgroupbasedcorrrangemasklummin' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumMin'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumMin'] },
- 'maskgroupbasedcorrrangemasklumrange' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumRange'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumRange'] },
- 'maskgroupbasedcorrrangemasksampletype' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskSampleType'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskSampleType'] },
- 'maskgroupbasedcorrrangemasktype' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskType'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskType'] },
- 'maskgroupbasedcorrrangemaskversion' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskVersion'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskVersion'] },
- 'maskgroupbasedcorrsaturation' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalSaturation'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalSaturation'] },
- 'maskgroupbasedcorrshadows2012' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalShadows2012'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalShadows2012'] },
- 'maskgroupbasedcorrsharpness' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalSharpness'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalSharpness'] },
- 'maskgroupbasedcorrtemperature' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTemperature'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTemperature'] },
- 'maskgroupbasedcorrtexture' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTexture'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTexture'] },
- 'maskgroupbasedcorrtint' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTint'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTint'] },
- 'maskgroupbasedcorrtoninghue' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalToningHue'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalToningHue'] },
- 'maskgroupbasedcorrtoningsaturation' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalToningSaturation'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalToningSaturation'] },
- 'maskgroupbasedcorrwhat' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsWhat'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsWhat'] },
- 'maskgroupbasedcorrwhites2012' => { 496 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalWhites2012'], 498 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalWhites2012'] },
+ 'maskgroupbasedcorractive' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionActive'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionActive'] },
+ 'maskgroupbasedcorramount' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionAmount'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionAmount'] },
+ 'maskgroupbasedcorrblacks2012' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalBlacks2012'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalBlacks2012'] },
+ 'maskgroupbasedcorrbrightness' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalBrightness'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalBrightness'] },
+ 'maskgroupbasedcorrclarity' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalClarity'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalClarity'] },
+ 'maskgroupbasedcorrclarity2012' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalClarity2012'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalClarity2012'] },
+ 'maskgroupbasedcorrcontrast' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalContrast'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalContrast'] },
+ 'maskgroupbasedcorrcontrast2012' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalContrast2012'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalContrast2012'] },
+ 'maskgroupbasedcorrcorrectionname' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionName'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionName'] },
+ 'maskgroupbasedcorrcorrectionsyncid' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionSyncID'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionSyncID'] },
+ 'maskgroupbasedcorrdefringe' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalDefringe'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalDefringe'] },
+ 'maskgroupbasedcorrdehaze' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalDehaze'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalDehaze'] },
+ 'maskgroupbasedcorrections' => { 500 => 'MaskGroupBasedCorrections', 502 => 'MaskGroupBasedCorrections' },
+ 'maskgroupbasedcorrexposure' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalExposure'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalExposure'] },
+ 'maskgroupbasedcorrexposure2012' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalExposure2012'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalExposure2012'] },
+ 'maskgroupbasedcorrhighlights2012' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalHighlights2012'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalHighlights2012'] },
+ 'maskgroupbasedcorrhue' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalHue'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalHue'] },
+ 'maskgroupbasedcorrluminancenoise' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalLuminanceNoise'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalLuminanceNoise'] },
+ 'maskgroupbasedcorrmask' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasks'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasks'] },
+ 'maskgroupbasedcorrmaskalpha' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksAlpha'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksAlpha'] },
+ 'maskgroupbasedcorrmaskangle' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksAngle'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksAngle'] },
+ 'maskgroupbasedcorrmaskbottom' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksBottom'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksBottom'] },
+ 'maskgroupbasedcorrmaskcentervalue' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCenterValue'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCenterValue'] },
+ 'maskgroupbasedcorrmaskcenterweight' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCenterWeight'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCenterWeight'] },
+ 'maskgroupbasedcorrmaskdabs' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksDabs'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksDabs'] },
+ 'maskgroupbasedcorrmaskfeather' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFeather'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFeather'] },
+ 'maskgroupbasedcorrmaskflipped' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFlipped'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFlipped'] },
+ 'maskgroupbasedcorrmaskflow' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFlow'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFlow'] },
+ 'maskgroupbasedcorrmaskfullx' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFullX'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFullX'] },
+ 'maskgroupbasedcorrmaskfully' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFullY'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFullY'] },
+ 'maskgroupbasedcorrmaskinputdigest' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksInputDigest'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksInputDigest'] },
+ 'maskgroupbasedcorrmaskleft' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksLeft'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksLeft'] },
+ 'maskgroupbasedcorrmaskmaskactive' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskActive'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskActive'] },
+ 'maskgroupbasedcorrmaskmaskblendmode' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskBlendMode'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskBlendMode'] },
+ 'maskgroupbasedcorrmaskmaskdigest' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskDigest'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskDigest'] },
+ 'maskgroupbasedcorrmaskmaskinverted' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskInverted'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskInverted'] },
+ 'maskgroupbasedcorrmaskmaskname' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskName'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskName'] },
+ 'maskgroupbasedcorrmaskmasks' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasks'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasks'] },
+ 'maskgroupbasedcorrmaskmasksalpha' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksAlpha'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksAlpha'] },
+ 'maskgroupbasedcorrmaskmasksangle' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksAngle'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksAngle'] },
+ 'maskgroupbasedcorrmaskmasksbottom' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksBottom'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksBottom'] },
+ 'maskgroupbasedcorrmaskmaskscentervalue' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksCenterValue'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksCenterValue'] },
+ 'maskgroupbasedcorrmaskmaskscenterweight' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksCenterWeight'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksCenterWeight'] },
+ 'maskgroupbasedcorrmaskmasksdabs' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksDabs'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksDabs'] },
+ 'maskgroupbasedcorrmaskmasksfeather' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFeather'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFeather'] },
+ 'maskgroupbasedcorrmaskmasksflipped' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFlipped'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFlipped'] },
+ 'maskgroupbasedcorrmaskmasksflow' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFlow'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFlow'] },
+ 'maskgroupbasedcorrmaskmasksfullx' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFullX'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFullX'] },
+ 'maskgroupbasedcorrmaskmasksfully' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFullY'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFullY'] },
+ 'maskgroupbasedcorrmaskmasksinputdigest' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksInputDigest'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksInputDigest'] },
+ 'maskgroupbasedcorrmaskmasksleft' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksLeft'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksLeft'] },
+ 'maskgroupbasedcorrmaskmasksmaskactive' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskActive'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskActive'] },
+ 'maskgroupbasedcorrmaskmasksmaskblendmode' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskBlendMode'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskBlendMode'] },
+ 'maskgroupbasedcorrmaskmasksmaskdigest' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskDigest'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskDigest'] },
+ 'maskgroupbasedcorrmaskmasksmaskinverted' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskInverted'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskInverted'] },
+ 'maskgroupbasedcorrmaskmasksmaskname' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskName'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskName'] },
+ 'maskgroupbasedcorrmaskmasksmasksubtype' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskSubType'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskSubType'] },
+ 'maskgroupbasedcorrmaskmasksmasksyncid' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskSyncID'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskSyncID'] },
+ 'maskgroupbasedcorrmaskmasksmaskversion' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskVersion'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskVersion'] },
+ 'maskgroupbasedcorrmaskmasksmidpoint' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMidpoint'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMidpoint'] },
+ 'maskgroupbasedcorrmaskmasksorigin' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksOrigin'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksOrigin'] },
+ 'maskgroupbasedcorrmaskmasksperimetervalue' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksPerimeterValue'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksPerimeterValue'] },
+ 'maskgroupbasedcorrmaskmasksradius' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRadius'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRadius'] },
+ 'maskgroupbasedcorrmaskmasksreferencepoint' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksReferencePoint'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksReferencePoint'] },
+ 'maskgroupbasedcorrmaskmasksright' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRight'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRight'] },
+ 'maskgroupbasedcorrmaskmasksroundness' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRoundness'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRoundness'] },
+ 'maskgroupbasedcorrmaskmaskssizex' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksSizeX'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksSizeX'] },
+ 'maskgroupbasedcorrmaskmaskssizey' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksSizeY'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksSizeY'] },
+ 'maskgroupbasedcorrmaskmaskstop' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksTop'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksTop'] },
+ 'maskgroupbasedcorrmaskmasksubtype' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskSubType'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskSubType'] },
+ 'maskgroupbasedcorrmaskmasksvalue' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskValue'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskValue'] },
+ 'maskgroupbasedcorrmaskmasksversion' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksVersion'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksVersion'] },
+ 'maskgroupbasedcorrmaskmaskswhat' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksWhat'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksWhat'] },
+ 'maskgroupbasedcorrmaskmaskswholeimagearea' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksWholeImageArea'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksWholeImageArea'] },
+ 'maskgroupbasedcorrmaskmasksx' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksX'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksX'] },
+ 'maskgroupbasedcorrmaskmasksy' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksY'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksY'] },
+ 'maskgroupbasedcorrmaskmasksyncid' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskSyncID'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskSyncID'] },
+ 'maskgroupbasedcorrmaskmaskszerox' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksZeroX'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksZeroX'] },
+ 'maskgroupbasedcorrmaskmaskszeroy' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksZeroY'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksZeroY'] },
+ 'maskgroupbasedcorrmaskmaskversion' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskVersion'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskVersion'] },
+ 'maskgroupbasedcorrmaskmidpoint' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMidpoint'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMidpoint'] },
+ 'maskgroupbasedcorrmaskorigin' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksOrigin'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksOrigin'] },
+ 'maskgroupbasedcorrmaskperimetervalue' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksPerimeterValue'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksPerimeterValue'] },
+ 'maskgroupbasedcorrmaskradius' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRadius'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRadius'] },
+ 'maskgroupbasedcorrmaskrange' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMask'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMask'] },
+ 'maskgroupbasedcorrmaskrangeareamodels' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'] },
+ 'maskgroupbasedcorrmaskrangeareamodelscolorsampleinfo' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] },
+ 'maskgroupbasedcorrmaskrangeareamodelscomponents' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'] },
+ 'maskgroupbasedcorrmaskrangecoloramount' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'] },
+ 'maskgroupbasedcorrmaskrangedepthfeather' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'] },
+ 'maskgroupbasedcorrmaskrangedepthmax' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'] },
+ 'maskgroupbasedcorrmaskrangedepthmin' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'] },
+ 'maskgroupbasedcorrmaskrangeinvert' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'] },
+ 'maskgroupbasedcorrmaskrangelumfeather' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'] },
+ 'maskgroupbasedcorrmaskrangeluminancedepthsampleinfo' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'] },
+ 'maskgroupbasedcorrmaskrangelummax' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'] },
+ 'maskgroupbasedcorrmaskrangelummin' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'] },
+ 'maskgroupbasedcorrmaskrangelumrange' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'] },
+ 'maskgroupbasedcorrmaskrangesampletype' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'] },
+ 'maskgroupbasedcorrmaskrangetype' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'] },
+ 'maskgroupbasedcorrmaskrangeversion' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'] },
+ 'maskgroupbasedcorrmaskreferencepoint' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksReferencePoint'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksReferencePoint'] },
+ 'maskgroupbasedcorrmaskright' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRight'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRight'] },
+ 'maskgroupbasedcorrmaskroundness' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRoundness'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRoundness'] },
+ 'maskgroupbasedcorrmasksizex' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksSizeX'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksSizeX'] },
+ 'maskgroupbasedcorrmasksizey' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksSizeY'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksSizeY'] },
+ 'maskgroupbasedcorrmasktop' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksTop'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksTop'] },
+ 'maskgroupbasedcorrmaskvalue' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskValue'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskValue'] },
+ 'maskgroupbasedcorrmaskversion' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksVersion'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksVersion'] },
+ 'maskgroupbasedcorrmaskwhat' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksWhat'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksWhat'] },
+ 'maskgroupbasedcorrmaskwholeimagearea' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksWholeImageArea'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksWholeImageArea'] },
+ 'maskgroupbasedcorrmaskx' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksX'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksX'] },
+ 'maskgroupbasedcorrmasky' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksY'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksY'] },
+ 'maskgroupbasedcorrmaskzerox' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksZeroX'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksZeroX'] },
+ 'maskgroupbasedcorrmaskzeroy' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksZeroY'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksZeroY'] },
+ 'maskgroupbasedcorrmoire' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalMoire'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalMoire'] },
+ 'maskgroupbasedcorrrangemask' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMask'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMask'] },
+ 'maskgroupbasedcorrrangemaskareamodels' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModels'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModels'] },
+ 'maskgroupbasedcorrrangemaskareamodelscolorsampleinfo' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] },
+ 'maskgroupbasedcorrrangemaskareamodelscomponents' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'] },
+ 'maskgroupbasedcorrrangemaskcoloramount' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskColorAmount'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskColorAmount'] },
+ 'maskgroupbasedcorrrangemaskdepthfeather' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthFeather'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthFeather'] },
+ 'maskgroupbasedcorrrangemaskdepthmax' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthMax'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthMax'] },
+ 'maskgroupbasedcorrrangemaskdepthmin' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthMin'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthMin'] },
+ 'maskgroupbasedcorrrangemaskinvert' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskInvert'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskInvert'] },
+ 'maskgroupbasedcorrrangemasklumfeather' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumFeather'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumFeather'] },
+ 'maskgroupbasedcorrrangemaskluminancedepthsampleinfo' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'] },
+ 'maskgroupbasedcorrrangemasklummax' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumMax'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumMax'] },
+ 'maskgroupbasedcorrrangemasklummin' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumMin'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumMin'] },
+ 'maskgroupbasedcorrrangemasklumrange' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumRange'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumRange'] },
+ 'maskgroupbasedcorrrangemasksampletype' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskSampleType'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskSampleType'] },
+ 'maskgroupbasedcorrrangemasktype' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskType'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskType'] },
+ 'maskgroupbasedcorrrangemaskversion' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskVersion'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskVersion'] },
+ 'maskgroupbasedcorrsaturation' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalSaturation'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalSaturation'] },
+ 'maskgroupbasedcorrshadows2012' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalShadows2012'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalShadows2012'] },
+ 'maskgroupbasedcorrsharpness' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalSharpness'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalSharpness'] },
+ 'maskgroupbasedcorrtemperature' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTemperature'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTemperature'] },
+ 'maskgroupbasedcorrtexture' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTexture'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTexture'] },
+ 'maskgroupbasedcorrtint' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTint'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTint'] },
+ 'maskgroupbasedcorrtoninghue' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalToningHue'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalToningHue'] },
+ 'maskgroupbasedcorrtoningsaturation' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalToningSaturation'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalToningSaturation'] },
+ 'maskgroupbasedcorrwhat' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsWhat'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsWhat'] },
+ 'maskgroupbasedcorrwhites2012' => { 500 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalWhites2012'], 502 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalWhites2012'] },
'masterdocumentid' => { 131 => 0xb9 },
- 'mastergain' => { 256 => 0x50 },
+ 'mastergain' => { 257 => 0x50 },
'materialsample' => { 118 => 'MaterialSample' },
'materialsampleid' => { 118 => [\'MaterialSample','MaterialSampleMaterialSampleID'] },
- 'matrixmetering' => { 297 => '50.1', 299 => '48.1', 300 => '48.1', 309 => '48.1', 310 => '48.1', 312 => 0x233 },
+ 'matrixmetering' => { 298 => '50.1', 300 => '48.1', 301 => '48.1', 310 => '48.1', 311 => '48.1', 313 => 0x233, 314 => 0x233, 315 => 0x24b },
'matrixselectk' => { 138 => 0x91b },
'matrixselectthreshold' => { 138 => 0x91a },
'matrixselectthreshold1' => { 138 => 0x91e },
'matrixselectthreshold2' => { 138 => 0x91f },
- 'matrixstructure' => { 396 => 0xa },
- 'maxaperture' => { 34 => 0x1a, 138 => 0x3f9, 144 => 0x6103, 163 => 'MaxAperture', 181 => 0x17, 187 => 0x49c5, 232 => 0x36, 315 => 0x20a, 363 => '14.1' },
- 'maxapertureatmaxfocal' => { 127 => 0x1407, 163 => 'MaxApertureAtMaxFocal', 226 => 0xb, 227 => 0x10, 228 => 0x11, 232 => 0x12, 315 => 0x206 },
- 'maxapertureatminfocal' => { 127 => 0x1406, 226 => 0xa, 227 => 0xf, 228 => 0x10, 232 => 0x11, 315 => 0x205 },
- 'maxaperturevalue' => { 119 => 0x9205, 381 => 0x414, 502 => 'MaxApertureValue' },
- 'maxavailheight' => { 510 => 'MaxAvailHeight' },
- 'maxavailwidth' => { 510 => 'MaxAvailWidth' },
- 'maxcontinuousrelease' => { 296 => 0xb, 297 => 0xc, 299 => '12.1', 300 => '12.1', 305 => 0xc, 306 => 0xb, 309 => '12.1', 310 => '12.1', 312 => 0x3d },
- 'maxfaces' => { 318 => 0x1202 },
- 'maxfocallength' => { 7 => 0xe6, 8 => 0x10, 9 => 0x1ab, 10 => 0x13, 11 => 0x115, 12 => 0x13, 13 => 0x153, 14 => 0xda, 16 => 0xfa, 17 => 0xee, 18 => 0x103, 19 => 0x95, 20 => 0xea, 21 => 0x157, 22 => 0xee, 23 => 0xec, 24 => 0x12b, 25 => 0x165, 26 => 0x16a, 27 => 0x188, 28 => 0x116, 29 => 0x18d, 34 => 0x17, 127 => 0x1405, 163 => 'MaxFocalLength', 226 => 0x9, 227 => 0xe, 228 => 0xf, 232 => 0x10, 315 => 0x208, 450 => 0x127c, 451 => 0x1138, 452 => 0x330, 453 => 0x330, 454 => 0x30e },
+ 'matrixstructure' => { 399 => 0xa },
+ 'maxaperture' => { 34 => 0x1a, 138 => 0x3f9, 144 => 0x6103, 163 => 'MaxAperture', 181 => 0x17, 187 => 0x49c5, 232 => 0x36, 318 => 0x20a, 366 => '14.1' },
+ 'maxapertureatmaxfocal' => { 127 => 0x1407, 163 => 'MaxApertureAtMaxFocal', 226 => 0xb, 227 => 0x10, 228 => 0x11, 232 => 0x12, 318 => 0x206 },
+ 'maxapertureatminfocal' => { 127 => 0x1406, 226 => 0xa, 227 => 0xf, 228 => 0x10, 232 => 0x11, 318 => 0x205 },
+ 'maxaperturevalue' => { 119 => 0x9205, 384 => 0x414, 506 => 'MaxApertureValue' },
+ 'maxavailheight' => { 514 => 'MaxAvailHeight' },
+ 'maxavailwidth' => { 514 => 'MaxAvailWidth' },
+ 'maxcontinuousrelease' => { 297 => 0xb, 298 => 0xc, 300 => '12.1', 301 => '12.1', 306 => 0xc, 307 => 0xb, 310 => '12.1', 311 => '12.1', 313 => 0x3d, 314 => 0x3d, 315 => 0x3d },
+ 'maxfaces' => { 321 => 0x1202 },
+ 'maxfocallength' => { 7 => 0xe6, 8 => 0x10, 9 => 0x1ab, 10 => 0x13, 11 => 0x115, 12 => 0x13, 13 => 0x153, 14 => 0xda, 16 => 0xfa, 17 => 0xee, 18 => 0x103, 19 => 0x95, 20 => 0xea, 21 => 0x157, 22 => 0xee, 23 => 0xec, 24 => 0x12b, 25 => 0x165, 26 => 0x16a, 27 => 0x188, 28 => 0x116, 29 => 0x18d, 34 => 0x17, 127 => 0x1405, 163 => 'MaxFocalLength', 226 => 0x9, 227 => 0xe, 228 => 0xf, 232 => 0x10, 318 => 0x208, 453 => 0x127c, 454 => 0x1138, 455 => 0x330, 456 => 0x330, 457 => 0x30e },
'maximumdensityrange' => { 133 => 0x8c },
- 'maxpagesize' => { 530 => 'MaxPageSize' },
- 'maxpagesizeh' => { 530 => [\'MaxPageSize','MaxPageSizeH'] },
- 'maxpagesizeunit' => { 530 => [\'MaxPageSize','MaxPageSizeUnit'] },
- 'maxpagesizew' => { 530 => [\'MaxPageSize','MaxPageSizeW'] },
+ 'maxpagesize' => { 534 => 'MaxPageSize' },
+ 'maxpagesizeh' => { 534 => [\'MaxPageSize','MaxPageSizeH'] },
+ 'maxpagesizeunit' => { 534 => [\'MaxPageSize','MaxPageSizeUnit'] },
+ 'maxpagesizew' => { 534 => [\'MaxPageSize','MaxPageSizeW'] },
'maxpixelvaluethreshold' => { 138 => 0xc7d },
'maxsamplevalue' => { 119 => 0x119 },
- 'maxstorage' => { 520 => 'maxstorage' },
- 'mb-d10batteries' => { 296 => '12.6' },
- 'mb-d10batterytype' => { 305 => '13.3' },
- 'mb-d11batterytype' => { 306 => '2.3' },
- 'mb-d12batterytype' => { 309 => '3.2' },
- 'mb-d80batteries' => { 307 => '6.5' },
- 'mb-d80batterytype' => { 311 => '3.2' },
+ 'maxstorage' => { 524 => 'maxstorage' },
+ 'mb-d10batteries' => { 297 => '12.6' },
+ 'mb-d10batterytype' => { 306 => '13.3' },
+ 'mb-d11batterytype' => { 307 => '2.3' },
+ 'mb-d12batterytype' => { 310 => '3.2' },
+ 'mb-d80batteries' => { 308 => '6.5' },
+ 'mb-d80batterytype' => { 312 => '3.2' },
'mcuversion' => { 226 => 0xc, 227 => 0x11, 228 => 0x12, 232 => 0x13 },
'md5digest' => { 164 => 'zmd5' },
'mditemfindercomment' => { 173 => 'MDItemFinderComment' },
'mditemfscreationdate' => { 173 => 'MDItemFSCreationDate' },
'mditemfslabel' => { 173 => 'MDItemFSLabel' },
'mditemusertags' => { 173 => 'MDItemUserTags' },
- 'meal' => { 517 => 'meal' },
+ 'meal' => { 521 => 'meal' },
'measuredev' => { 28 => 0x9, 77 => 0x3, 97 => 0x1814, 156 => 'MeasuredEV' },
'measuredev2' => { 13 => 0x8, 28 => 0x8, 77 => 0x17 },
'measuredev3' => { 13 => 0x9 },
- 'measuredlv' => { 187 => 0x690, 332 => 0x312, 335 => 0x312, 336 => 0x312, 339 => 0x3407 },
+ 'measuredlv' => { 187 => 0x690, 335 => 0x312, 338 => 0x312, 339 => 0x312, 342 => 0x3407 },
'measuredrggb' => { 65 => 0x1 },
'measuredrggbdata' => { 44 => 0x287 },
'measurementaccuracy' => { 118 => [\'MeasurementOrFact','MeasurementOrFactMeasurementAccuracy'] },
@@ -4537,104 +4546,103 @@ my %tagLookup = (
'measurementtype' => { 118 => [\'MeasurementOrFact','MeasurementOrFactMeasurementType'] },
'measurementunit' => { 118 => [\'MeasurementOrFact','MeasurementOrFactMeasurementUnit'] },
'measurementvalue' => { 118 => [\'MeasurementOrFact','MeasurementOrFactMeasurementValue'] },
- 'measuretype' => { 481 => 'MeasureType' },
+ 'measuretype' => { 485 => 'MeasureType' },
'mechanicalshuttercount' => { 234 => 0x37 },
'mediaclassprimaryid' => { 179 => 'WM/MediaClassPrimaryID' },
'mediaclasssecondaryid' => { 179 => 'WM/MediaClassSecondaryID' },
- 'mediaconstraints' => { 324 => 'MediaConstraints' },
- 'mediacreatedate' => { 393 => 0x1 },
- 'mediaeventiddate' => { 486 => 'MediaEventIdDate' },
- 'mediagroupuuid' => { 1 => 0x11 },
- 'mediamodifydate' => { 393 => 0x2 },
- 'mediasummarycode' => { 324 => 'MediaSummaryCode' },
- 'mediatype' => { 389 => 'stik' },
+ 'mediaconstraints' => { 327 => 'MediaConstraints' },
+ 'mediacreatedate' => { 396 => 0x1 },
+ 'mediaeventiddate' => { 490 => 'MediaEventIdDate' },
+ 'mediamodifydate' => { 396 => 0x2 },
+ 'mediasummarycode' => { 327 => 'MediaSummaryCode' },
+ 'mediatype' => { 392 => 'stik' },
'memoaudioquality' => { 84 => 0x812 },
- 'memorycardconfiguration' => { 430 => 0x16 },
+ 'memorycardconfiguration' => { 433 => 0x16 },
'memorycardnumber' => { 211 => 0x2 },
'menubuttondisplayposition' => { 82 => 0xb, 85 => 0xa, 86 => 0xb, 89 => 0xb },
'menubuttonreturn' => { 90 => 0xb },
- 'menumonitorofftime' => { 296 => '26.1', 297 => '22.1', 299 => '22.1', 300 => '22.1', 304 => '21.1', 305 => '8.2', 306 => '21.1', 309 => '22.1', 310 => '22.1', 311 => '22.1', 312 => 0x35 },
- 'metadataauthority' => { 510 => 'metadataAuthority' },
- 'metadataauthorityidentifier' => { 510 => [\'metadataAuthority','metadataAuthorityIdentifier'] },
- 'metadataauthorityname' => { 510 => [\'metadataAuthority','metadataAuthorityName'] },
- 'metadatadate' => { 523 => 'MetadataDate' },
+ 'menumonitorofftime' => { 297 => '26.1', 298 => '22.1', 300 => '22.1', 301 => '22.1', 305 => '21.1', 306 => '8.2', 307 => '21.1', 310 => '22.1', 311 => '22.1', 312 => '22.1', 313 => 0x35, 314 => 0x35, 315 => 0x35 },
+ 'metadataauthority' => { 514 => 'metadataAuthority' },
+ 'metadataauthorityidentifier' => { 514 => [\'metadataAuthority','metadataAuthorityIdentifier'] },
+ 'metadataauthorityname' => { 514 => [\'metadataAuthority','metadataAuthorityName'] },
+ 'metadatadate' => { 527 => 'MetadataDate' },
'metadataeditingsoftware' => { 119 => 0xa43c },
- 'metadatalastedited' => { 510 => 'metadataLastEdited' },
- 'metadatalasteditor' => { 510 => 'metadataLastEditor' },
- 'metadatalasteditoridentifier' => { 510 => [\'metadataLastEditor','metadataLastEditorIdentifier'] },
- 'metadatalasteditorname' => { 510 => [\'metadataLastEditor','metadataLastEditorName'] },
- 'metadatamoddate' => { 525 => 'metadataModDate' },
- 'metaversion' => { 445 => 0x34 },
- 'meterinfo1row1' => { 438 => 0x0, 439 => 0x0 },
- 'meterinfo1row2' => { 438 => 0x6c, 439 => 0x5a },
- 'meterinfo1row3' => { 438 => 0xd8, 439 => 0xb4 },
- 'meterinfo1row4' => { 438 => 0x144, 439 => 0x10e },
- 'meterinfo1row5' => { 438 => 0x1b0, 439 => 0x168 },
- 'meterinfo1row6' => { 438 => 0x21c, 439 => 0x1c2 },
- 'meterinfo1row7' => { 438 => 0x288, 439 => 0x21c },
- 'meterinfo2row1' => { 438 => 0x2f4, 439 => 0x276 },
- 'meterinfo2row2' => { 438 => 0x378, 439 => 0x2e4 },
- 'meterinfo2row3' => { 438 => 0x3fc, 439 => 0x352 },
- 'meterinfo2row4' => { 438 => 0x480, 439 => 0x3c0 },
- 'meterinfo2row5' => { 438 => 0x504, 439 => 0x42e },
- 'meterinfo2row6' => { 438 => 0x588, 439 => 0x49c },
- 'meterinfo2row7' => { 438 => 0x60c, 439 => 0x50a },
- 'meterinfo2row8' => { 438 => 0x690, 439 => 0x578 },
- 'meterinfo2row9' => { 438 => 0x714, 439 => 0x5e6 },
- 'metering' => { 298 => '6.1' },
- 'meteringmode' => { 34 => 0x11, 119 => 0x9207, 140 => 0x1c, 181 => 0x7, 182 => 0x25, 184 => 0x12, 314 => 0x202, 372 => 0x17, 414 => 0x9, 424 => 0x15, 425 => 0x13, 426 => 0x7, 442 => 0x3, 446 => 0x1174, 447 => 0x1178, 448 => 0x1154, 449 => 0x11d0, 450 => 0x11ac, 451 => 0x1064, 452 => 0x25c, 453 => 0x25c, 454 => 0x24b, 502 => 'MeteringMode' },
- 'meteringmode2' => { 353 => '2.1', 437 => 0x202c },
- 'meteringmode3' => { 353 => '16.1' },
+ 'metadatalastedited' => { 514 => 'metadataLastEdited' },
+ 'metadatalasteditor' => { 514 => 'metadataLastEditor' },
+ 'metadatalasteditoridentifier' => { 514 => [\'metadataLastEditor','metadataLastEditorIdentifier'] },
+ 'metadatalasteditorname' => { 514 => [\'metadataLastEditor','metadataLastEditorName'] },
+ 'metadatamoddate' => { 529 => 'metadataModDate' },
+ 'metaversion' => { 448 => 0x34 },
+ 'meterinfo1row1' => { 441 => 0x0, 442 => 0x0 },
+ 'meterinfo1row2' => { 441 => 0x6c, 442 => 0x5a },
+ 'meterinfo1row3' => { 441 => 0xd8, 442 => 0xb4 },
+ 'meterinfo1row4' => { 441 => 0x144, 442 => 0x10e },
+ 'meterinfo1row5' => { 441 => 0x1b0, 442 => 0x168 },
+ 'meterinfo1row6' => { 441 => 0x21c, 442 => 0x1c2 },
+ 'meterinfo1row7' => { 441 => 0x288, 442 => 0x21c },
+ 'meterinfo2row1' => { 441 => 0x2f4, 442 => 0x276 },
+ 'meterinfo2row2' => { 441 => 0x378, 442 => 0x2e4 },
+ 'meterinfo2row3' => { 441 => 0x3fc, 442 => 0x352 },
+ 'meterinfo2row4' => { 441 => 0x480, 442 => 0x3c0 },
+ 'meterinfo2row5' => { 441 => 0x504, 442 => 0x42e },
+ 'meterinfo2row6' => { 441 => 0x588, 442 => 0x49c },
+ 'meterinfo2row7' => { 441 => 0x60c, 442 => 0x50a },
+ 'meterinfo2row8' => { 441 => 0x690, 442 => 0x578 },
+ 'meterinfo2row9' => { 441 => 0x714, 442 => 0x5e6 },
+ 'metering' => { 299 => '6.1' },
+ 'meteringmode' => { 34 => 0x11, 119 => 0x9207, 140 => 0x1c, 181 => 0x7, 182 => 0x25, 184 => 0x12, 317 => 0x202, 375 => 0x17, 417 => 0x9, 427 => 0x15, 428 => 0x13, 429 => 0x7, 445 => 0x3, 449 => 0x1174, 450 => 0x1178, 451 => 0x1154, 452 => 0x11d0, 453 => 0x11ac, 454 => 0x1064, 455 => 0x25c, 456 => 0x25c, 457 => 0x24b, 506 => 'MeteringMode' },
+ 'meteringmode2' => { 356 => '2.1', 440 => 0x202c },
+ 'meteringmode3' => { 356 => '16.1' },
'meteringoffscaleindicator' => { 184 => 0x53 },
- 'meteringtime' => { 296 => '22.2', 298 => '3.2', 301 => '17.1', 302 => '18.1', 305 => '7.3', 306 => '18.1', 307 => '3.2', 311 => '19.1' },
- 'micro1version' => { 399 => 0x1f },
- 'micro2version' => { 399 => 0x2d },
- 'microphoneattenuator' => { 239 => 0x2d2, 240 => 0x2fa, 241 => 0x2fa },
- 'microphonefrequencyresponse' => { 239 => 0x2d4, 240 => 0x2fc, 241 => 0x2fc },
- 'microphonejackpower' => { 239 => 0x2fa, 240 => 0x322, 241 => 0x322 },
- 'microphonesensitivity' => { 239 => 0x2d0, 240 => 0x2f8, 241 => 0x2f8 },
- 'microvideo' => { 479 => 'MicroVideo' },
- 'microvideooffset' => { 479 => 'MicroVideoOffset' },
- 'microvideopresentationtimestampus' => { 479 => 'MicroVideoPresentationTimestampUs' },
- 'microvideoversion' => { 479 => 'MicroVideoVersion' },
- 'midrangesharpness' => { 250 => 0x3b },
+ 'meteringtime' => { 297 => '22.2', 299 => '3.2', 302 => '17.1', 303 => '18.1', 306 => '7.3', 307 => '18.1', 308 => '3.2', 312 => '19.1' },
+ 'micro1version' => { 402 => 0x1f },
+ 'micro2version' => { 402 => 0x2d },
+ 'microphoneattenuator' => { 239 => 0x34e, 240 => 0x2d2, 241 => 0x2fa, 242 => 0x2fa },
+ 'microphonefrequencyresponse' => { 239 => 0x350, 240 => 0x2d4, 241 => 0x2fc, 242 => 0x2fc },
+ 'microphonejackpower' => { 239 => 0x376, 240 => 0x2fa, 241 => 0x322, 242 => 0x322 },
+ 'microphonesensitivity' => { 239 => 0x34c, 240 => 0x2d0, 241 => 0x2f8, 242 => 0x2f8 },
+ 'microvideo' => { 483 => 'MicroVideo' },
+ 'microvideooffset' => { 483 => 'MicroVideoOffset' },
+ 'microvideopresentationtimestampus' => { 483 => 'MicroVideoPresentationTimestampUs' },
+ 'microvideoversion' => { 483 => 'MicroVideoVersion' },
+ 'midrangesharpness' => { 251 => 0x3b },
'mieversion' => { 164 => '0Vers' },
- 'mime' => { 481 => 'Mime' },
- 'minaperture' => { 34 => 0x1b, 138 => 0x3f8, 163 => 'MinAperture', 363 => '0.2' },
- 'minaperturevalue' => { 381 => 0x415 },
- 'minfocallength' => { 7 => 0xe4, 8 => 0xe, 9 => 0x1a9, 10 => 0x11, 11 => 0x113, 12 => 0x11, 13 => 0x151, 14 => 0xd8, 16 => 0xf8, 17 => 0xec, 18 => 0x101, 19 => 0x93, 20 => 0xe8, 21 => 0x155, 22 => 0xec, 23 => 0xea, 24 => 0x129, 25 => 0x163, 26 => 0x168, 27 => 0x186, 28 => 0x114, 29 => 0x18b, 34 => 0x18, 127 => 0x1404, 163 => 'MinFocalLength', 226 => 0x8, 227 => 0xd, 228 => 0xe, 232 => 0xf, 315 => 0x207, 450 => 0x127a, 451 => 0x1136, 452 => 0x32e, 453 => 0x32e, 454 => 0x30c },
- 'minfocusdistance' => { 363 => 0x3 },
- 'minimumiso' => { 337 => 0xe8 },
+ 'mime' => { 485 => 'Mime' },
+ 'minaperture' => { 34 => 0x1b, 138 => 0x3f8, 163 => 'MinAperture', 366 => '0.2' },
+ 'minaperturevalue' => { 384 => 0x415 },
+ 'minfocallength' => { 7 => 0xe4, 8 => 0xe, 9 => 0x1a9, 10 => 0x11, 11 => 0x113, 12 => 0x11, 13 => 0x151, 14 => 0xd8, 16 => 0xf8, 17 => 0xec, 18 => 0x101, 19 => 0x93, 20 => 0xe8, 21 => 0x155, 22 => 0xec, 23 => 0xea, 24 => 0x129, 25 => 0x163, 26 => 0x168, 27 => 0x186, 28 => 0x114, 29 => 0x18b, 34 => 0x18, 127 => 0x1404, 163 => 'MinFocalLength', 226 => 0x8, 227 => 0xd, 228 => 0xe, 232 => 0xf, 318 => 0x207, 453 => 0x127a, 454 => 0x1136, 455 => 0x32e, 456 => 0x32e, 457 => 0x30c },
+ 'minfocusdistance' => { 366 => 0x3 },
+ 'minimumiso' => { 340 => 0xe8 },
'minintegrationrows' => { 138 => 0x1874 },
'minoltadate' => { 181 => 0x15 },
'minoltaimagesize' => { 181 => 0x4, 182 => 0xc, 183 => 0x2, 186 => 0x103 },
'minoltamodelid' => { 181 => 0x25 },
'minoltaquality' => { 181 => 0x5, 182 => 0xd, 183 => 0x3, 186 => [0x102,0x103] },
'minoltatime' => { 181 => 0x16 },
- 'minormodelagedisclosure' => { 324 => 'MinorModelAgeDisclosure' },
- 'minorversion' => { 487 => 'MinorVersion' },
+ 'minormodelagedisclosure' => { 327 => 'MinorModelAgeDisclosure' },
+ 'minorversion' => { 491 => 'MinorVersion' },
'minsamplevalue' => { 119 => 0x118 },
'mirrorlockup' => { 82 => 0xc, 83 => 0xc, 84 => 0x60f, 85 => 0xb, 86 => 0xc, 87 => 0x6, 88 => 0x6, 89 => 0xc, 90 => 0x3 },
- 'mobilecountrycode' => { 495 => 'mcc' },
- 'mobilenetworkcode' => { 495 => 'mnc' },
- 'moddate' => { 327 => 'modify-date', 512 => 'ModDate' },
- 'modedialposition' => { 430 => 0x14 },
- 'model' => { 98 => 0x6, 119 => 0x110, 156 => 'Model', 327 => 'Model', 342 => 0x110, 372 => 0x23f, 391 => 'model', 397 => ['@mod','CNMN','cmnm',"\xa9mdl","\xa9mod"], 414 => 0x84, 481 => 'Model', 514 => 'model', 521 => 'Model' },
- 'modelage' => { 510 => 'ModelAge' },
- 'modelid' => { 313 => 0x0 },
- 'modelingflash' => { 296 => '21.4', 297 => '31.1', 299 => '31.1', 300 => '31.1', 305 => '26.4', 306 => '30.2', 307 => '7.4', 308 => '30.1', 309 => '31.1', 310 => '31.1', 311 => '31.3', 312 => 0x5d },
- 'modelreleaseid' => { 324 => 'ModelReleaseID' },
- 'modelreleasestatus' => { 324 => 'ModelReleaseStatus' },
- 'modelreleaseyear' => { 459 => 0x52, 460 => 0x46, 461 => 0x53 },
+ 'mobilecountrycode' => { 499 => 'mcc' },
+ 'mobilenetworkcode' => { 499 => 'mnc' },
+ 'moddate' => { 330 => 'modify-date', 516 => 'ModDate' },
+ 'modedialposition' => { 433 => 0x14 },
+ 'model' => { 98 => 0x6, 119 => 0x110, 156 => 'Model', 330 => 'Model', 345 => 0x110, 375 => 0x23f, 394 => 'model', 400 => ['@mod','CNMN','cmnm',"\xa9mdl","\xa9mod"], 417 => 0x84, 485 => 'Model', 518 => 'model', 525 => 'Model' },
+ 'modelage' => { 514 => 'ModelAge' },
+ 'modelid' => { 316 => 0x0 },
+ 'modelingflash' => { 297 => '21.4', 298 => '31.1', 300 => '31.1', 301 => '31.1', 306 => '26.4', 307 => '30.2', 308 => '7.4', 309 => '30.1', 310 => '31.1', 311 => '31.1', 312 => '31.3', 313 => 0x5d, 314 => 0x5d, 315 => 0x5d },
+ 'modelreleaseid' => { 327 => 'ModelReleaseID' },
+ 'modelreleasestatus' => { 327 => 'ModelReleaseStatus' },
+ 'modelreleaseyear' => { 463 => 0x52, 464 => 0x46, 465 => 0x53 },
'modeltiepoint' => { 119 => 0x8482 },
'modeltransform' => { 119 => 0x85d8 },
- 'modelyear' => { 514 => 'modelYear' },
- 'modificationdate' => { 515 => 'modificationDate' },
+ 'modelyear' => { 518 => 'modelYear' },
+ 'modificationdate' => { 519 => 'modificationDate' },
'modifiedcolortemp' => { 66 => 0x9 },
'modifieddigitalgain' => { 66 => 0xb },
'modifiedparamflag' => { 58 => 0x1 },
'modifiedpicturestyle' => { 66 => 0xa },
- 'modifiedsaturation' => { 314 => 0x504 },
+ 'modifiedsaturation' => { 317 => 0x504 },
'modifiedsensorbluelevel' => { 66 => 0x5 },
'modifiedsensorredlevel' => { 66 => 0x4 },
'modifiedsharpness' => { 66 => 0x2 },
@@ -4643,131 +4651,131 @@ my %tagLookup = (
'modifiedwhitebalance' => { 66 => 0x8 },
'modifiedwhitebalanceblue' => { 66 => 0x7 },
'modifiedwhitebalancered' => { 66 => 0x6 },
- 'modifydate' => { 119 => 0x132, 157 => 'ModifyDate', 323 => 'ModDate', 325 => 'tIME', 388 => 'ModDate', 394 => 0x2, 523 => 'ModifyDate' },
- 'moirefilter' => { 119 => 0xfe58, 496 => 'MoireFilter', 498 => 'MoireFilter' },
- 'monitorbrightness' => { 239 => 0x59a, 240 => 0x5ca, 241 => 0x5ca },
+ 'modifydate' => { 119 => 0x132, 157 => 'ModifyDate', 326 => 'ModDate', 328 => 'tIME', 391 => 'ModDate', 397 => 0x2, 527 => 'ModifyDate' },
+ 'moirefilter' => { 119 => 0xfe58, 500 => 'MoireFilter', 502 => 'MoireFilter' },
+ 'monitorbrightness' => { 239 => 0x69a, 240 => 0x59a, 241 => 0x5ca, 242 => 0x5e2 },
'monitordisplayoff' => { 184 => 0x4c },
'monitormatrix' => { 138 => 0x8fc },
- 'monitorofftime' => { 296 => '18.2', 298 => '3.1', 307 => '3.1' },
- 'monochromecolor' => { 314 => 0x53b },
+ 'monitorofftime' => { 297 => '18.2', 299 => '3.1', 308 => '3.1' },
+ 'monochromecolor' => { 317 => 0x53b },
'monochromecontrast' => { 109 => 0x3c },
- 'monochromefiltereffect' => { 103 => 0x20307, 109 => 0x3a, 337 => 0xac, 372 => 0x73 },
- 'monochromegraineffect' => { 337 => 0xd2 },
+ 'monochromefiltereffect' => { 103 => 0x20307, 109 => 0x3a, 340 => 0xac, 375 => 0x73 },
+ 'monochromegraineffect' => { 340 => 0xd2 },
'monochromelinear' => { 109 => 0x3d },
'monochromeoutputhighlightpoint' => { 109 => 0x41 },
'monochromeoutputshadowpoint' => { 109 => 0x42 },
- 'monochromeprofilesettings' => { 314 => 0x537 },
+ 'monochromeprofilesettings' => { 317 => 0x537 },
'monochromerawhighlight' => { 109 => 0x7a },
'monochromerawhighlightpoint' => { 109 => 0x3f },
'monochromerawshadow' => { 109 => 0x83 },
'monochromerawshadowpoint' => { 109 => 0x40 },
'monochromesharpness' => { 109 => 0x3e },
- 'monochrometoning' => { 372 => 0x74 },
+ 'monochrometoning' => { 375 => 0x74 },
'monochrometoningeffect' => { 103 => 0x20306, 109 => 0x3b },
'monochromeunsharpmaskfineness' => { 109 => 0xb2 },
'monochromeunsharpmaskstrength' => { 109 => 0xb0 },
'monochromeunsharpmaskthreshold' => { 109 => 0xb4 },
- 'monochromevignetting' => { 314 => 0x53a },
+ 'monochromevignetting' => { 317 => 0x53a },
'monthdaycreated' => { 140 => 0x12, 149 => 0xe },
'mood' => { 179 => 'WM/Mood' },
- 'moonphase' => { 398 => 0x12, 399 => 0x43, 400 => 0x4c },
- 'morepermissions' => { 494 => 'morePermissions' },
- 'motionphotovideo' => { 392 => 'mpvd' },
- 'motionsensitivity' => { 398 => 0x29, 400 => 0x60 },
- 'movementcount' => { 389 => "\xa9mvc" },
- 'movementname' => { 389 => "\xa9mvn" },
- 'movementnumber' => { 389 => "\xa9mvi" },
- 'movieactived-lighting' => { 238 => 0x238, 239 => 0x2b8, 240 => 0x2e0, 241 => 0x2e0 },
- 'movieaelockbuttonassignment' => { 309 => '40.1' },
- 'movieaf-onbutton' => { 312 => 0xcb },
- 'movieafareamode' => { 239 => 0x2c6, 240 => 0x2ee, 241 => 0x2ee, 312 => 0x203 },
- 'movieafspeed' => { 312 => 0xdd },
- 'movieafspeedapply' => { 312 => 0xdf },
- 'movieaftrackingsensitivity' => { 312 => 0xe1 },
- 'movieaperturelock' => { 312 => 0x259 },
+ 'moonphase' => { 401 => 0x12, 402 => 0x43, 403 => 0x4c },
+ 'morepermissions' => { 498 => 'morePermissions' },
+ 'motionphotovideo' => { 395 => 'mpvd' },
+ 'motionsensitivity' => { 401 => 0x29, 403 => 0x60 },
+ 'movementcount' => { 392 => "\xa9mvc" },
+ 'movementname' => { 392 => "\xa9mvn" },
+ 'movementnumber' => { 392 => "\xa9mvi" },
+ 'movieactived-lighting' => { 238 => 0x238, 239 => 0x334, 240 => 0x2b8, 241 => 0x2e0, 242 => 0x2e0 },
+ 'movieaelockbuttonassignment' => { 310 => '40.1' },
+ 'movieaf-onbutton' => { 313 => 0xcb, 314 => 0xcb, 315 => 0xcb },
+ 'movieafareamode' => { 239 => 0x342, 240 => 0x2c6, 241 => 0x2ee, 242 => 0x2ee, 313 => 0x203, 314 => 0x203, 315 => 0x21b },
+ 'movieafspeed' => { 313 => 0xdd, 314 => 0xdd, 315 => 0xdd },
+ 'movieafspeedapply' => { 313 => 0xdf, 314 => 0xdf, 315 => 0xdf },
+ 'movieaftrackingsensitivity' => { 313 => 0xe1, 314 => 0xe1, 315 => 0xe1 },
+ 'movieaperturelock' => { 313 => 0x259, 314 => 0x259, 315 => 0x271 },
'movieautodistortioncontrol' => { 238 => 0x242 },
'moviediffractioncompensation' => { 238 => 0x241 },
- 'moviedxcropalert' => { 239 => 0x2fb, 240 => 0x323, 241 => 0x323 },
- 'movieelectronicvr' => { 239 => 0x2cc, 240 => 0x2f4, 241 => 0x2f4 },
- 'movieevfgrid' => { 312 => 0x21d },
- 'movieflickerreduction' => { 239 => 0x2c0, 240 => 0x2e8, 241 => 0x2e8 },
- 'moviefocusmode' => { 238 => 0x248, 239 => 0x2c4, 240 => 0x2ec, 241 => 0x2ec },
- 'moviefocuspointlock' => { 312 => 0x226 },
- 'movieframerate' => { 238 => 0x1f8, 239 => 0x2f4, 240 => 0x31c, 241 => 0x31c },
- 'movieframesize' => { 238 => 0x1f6, 239 => 0x2f2, 240 => 0x31a, 241 => 0x31a },
- 'moviefunc1button' => { 299 => '41.1', 300 => '41.1', 310 => '41.1', 312 => 0xc3 },
- 'moviefunc2button' => { 312 => 0xc7 },
- 'moviefunc3button' => { 312 => 0x127 },
- 'moviefunctionbutton' => { 297 => '41.1', 309 => '41.1' },
- 'moviefunctionbuttonplusdials' => { 297 => '52.1' },
- 'moviehighisonoisereduction' => { 238 => 0x23c, 239 => 0x2ba, 240 => 0x2e2, 241 => 0x2e2 },
- 'moviehighlightdisplaythreshold' => { 312 => 0x215 },
- 'moviehighreszoom' => { 240 => 0x32c, 241 => 0x32c },
- 'movieimagearea' => { 239 => 0x25c, 240 => 0x286, 241 => 0x286 },
- 'movieisoautocontrolmanualmode' => { 239 => 0x26a, 240 => 0x294, 241 => 0x294 },
- 'movieisoautohilimit' => { 239 => 0x268, 240 => 0x292, 241 => 0x292 },
- 'movieisoautomanualmode' => { 238 => 0x204, 239 => 0x26c, 240 => 0x296, 241 => 0x296 },
- 'movielenscontrolring' => { 312 => 0xd7 },
- 'moviemeteringmode' => { 239 => 0x2c2, 240 => 0x2ea, 241 => 0x2ea },
- 'moviemidtonedisplayrange' => { 312 => 0x219 },
- 'moviemidtonedisplayvalue' => { 312 => 0x217 },
- 'moviemultiselector' => { 312 => 0xd9 },
- 'moviepreviewbutton' => { 297 => '41.2', 299 => '41.2', 300 => '41.2', 309 => '41.2', 310 => '41.2' },
- 'moviepreviewbuttonplusdials' => { 297 => '52.2' },
- 'movierecordbuttonplaybackmode' => { 312 => 0x1b5 },
- 'movieshutterbutton' => { 297 => '38.3', 299 => '38.3', 300 => '38.3', 309 => '38.3', 310 => '38.3' },
- 'movieshutterspeedlock' => { 312 => 0x225 },
+ 'moviedxcropalert' => { 239 => 0x377, 240 => 0x2fb, 241 => 0x323, 242 => 0x323 },
+ 'movieelectronicvr' => { 239 => 0x348, 240 => 0x2cc, 241 => 0x2f4, 242 => 0x2f4 },
+ 'movieevfgrid' => { 313 => 0x21d, 314 => 0x21d, 315 => 0x235 },
+ 'movieflickerreduction' => { 239 => 0x33c, 240 => 0x2c0, 241 => 0x2e8, 242 => 0x2e8 },
+ 'moviefocusmode' => { 238 => 0x248, 239 => 0x340, 240 => 0x2c4, 241 => 0x2ec, 242 => 0x2ec },
+ 'moviefocuspointlock' => { 313 => 0x226, 314 => 0x226, 315 => 0x23e },
+ 'movieframerate' => { 238 => 0x1f8, 239 => 0x374, 240 => 0x2f4, 241 => 0x31c, 242 => 0x31c },
+ 'movieframesize' => { 238 => 0x1f6, 239 => 0x372, 240 => 0x2f2, 241 => 0x31a, 242 => 0x31a },
+ 'moviefunc1button' => { 300 => '41.1', 301 => '41.1', 311 => '41.1', 313 => 0xc3, 314 => 0xc3, 315 => 0xc3 },
+ 'moviefunc2button' => { 313 => 0xc7, 314 => 0xc7, 315 => 0xc7 },
+ 'moviefunc3button' => { 314 => 0x127, 315 => 0x13f },
+ 'moviefunctionbutton' => { 298 => '41.1', 310 => '41.1' },
+ 'moviefunctionbuttonplusdials' => { 298 => '52.1' },
+ 'moviehighisonoisereduction' => { 238 => 0x23c, 239 => 0x336, 240 => 0x2ba, 241 => 0x2e2, 242 => 0x2e2 },
+ 'moviehighlightdisplaythreshold' => { 313 => 0x215, 314 => 0x215, 315 => 0x22d },
+ 'moviehighreszoom' => { 239 => 0x380, 241 => 0x32c, 242 => 0x32c },
+ 'movieimagearea' => { 239 => 0x2da, 240 => 0x25c, 241 => 0x286, 242 => 0x286 },
+ 'movieisoautocontrolmanualmode' => { 239 => 0x2e8, 240 => 0x26a, 241 => 0x294, 242 => 0x294 },
+ 'movieisoautohilimit' => { 239 => 0x2e6, 240 => 0x268, 241 => 0x292, 242 => 0x292 },
+ 'movieisoautomanualmode' => { 238 => 0x204, 239 => 0x2ea, 240 => 0x26c, 241 => 0x296, 242 => 0x296 },
+ 'movielenscontrolring' => { 313 => 0xd7, 314 => 0xd7, 315 => 0xd7 },
+ 'moviemeteringmode' => { 239 => 0x33e, 240 => 0x2c2, 241 => 0x2ea, 242 => 0x2ea },
+ 'moviemidtonedisplayrange' => { 313 => 0x219, 314 => 0x219, 315 => 0x231 },
+ 'moviemidtonedisplayvalue' => { 313 => 0x217, 314 => 0x217, 315 => 0x22f },
+ 'moviemultiselector' => { 313 => 0xd9, 314 => 0xcf, 315 => 0xcf },
+ 'moviepreviewbutton' => { 298 => '41.2', 300 => '41.2', 301 => '41.2', 310 => '41.2', 311 => '41.2' },
+ 'moviepreviewbuttonplusdials' => { 298 => '52.2' },
+ 'movierecordbuttonplaybackmode' => { 313 => 0x1b5, 314 => 0x1b5, 315 => 0x1cd },
+ 'movieshutterbutton' => { 298 => '38.3', 300 => '38.3', 301 => '38.3', 310 => '38.3', 311 => '38.3' },
+ 'movieshutterspeedlock' => { 313 => 0x225, 314 => 0x225, 315 => 0x23d },
'movieslowmotion' => { 238 => 0x1fa },
- 'moviesoundrecording' => { 239 => 0x2ce, 240 => 0x2f6, 241 => 0x2f6 },
- 'moviesubjectdetection' => { 239 => 0x2fc, 240 => 0x324, 241 => 0x324 },
- 'moviesubselectorassignment' => { 297 => '48.2' },
- 'moviesubselectorassignmentplusdials' => { 297 => '53.1' },
- 'movietonemap' => { 239 => 0x2ec, 240 => 0x314, 241 => 0x314 },
- 'movietype' => { 223 => 0x2ca, 238 => 0x1fe, 239 => 0x266, 240 => 0x290, 241 => 0x290 },
+ 'moviesoundrecording' => { 239 => 0x34a, 240 => 0x2ce, 241 => 0x2f6, 242 => 0x2f6 },
+ 'moviesubjectdetection' => { 239 => 0x378, 240 => 0x2fc, 241 => 0x324, 242 => 0x324 },
+ 'moviesubselectorassignment' => { 298 => '48.2' },
+ 'moviesubselectorassignmentplusdials' => { 298 => '53.1' },
+ 'movietonemap' => { 240 => 0x2ec, 241 => 0x314, 242 => 0x314 },
+ 'movietype' => { 223 => 0x2ca, 238 => 0x1fe, 239 => 0x2e4, 240 => 0x266, 241 => 0x290, 242 => 0x290 },
'movievibrationreduction' => { 238 => 0x24e },
'movievibrationreductionsameasphoto' => { 238 => 0x24f },
- 'movievignettecontrol' => { 238 => 0x23e, 239 => 0x1a0, 240 => 0x1b4, 241 => 0x1b4 },
+ 'movievignettecontrol' => { 238 => 0x23e, 239 => 0x1b0, 240 => 0x1a0, 241 => 0x1b4, 242 => 0x1b4 },
'movievignettecontrolsameasphoto' => { 238 => 0x240 },
- 'movievrmode' => { 239 => 0x2c8, 240 => 0x2f0, 241 => 0x2f0 },
- 'moviezebrapattern' => { 312 => 0x213 },
- 'multiburstimageheight' => { 437 => 0x1002 },
- 'multiburstimagewidth' => { 437 => 0x1001 },
- 'multiburstmode' => { 437 => 0x1000 },
+ 'movievrmode' => { 239 => 0x344, 240 => 0x2c8, 241 => 0x2f0, 242 => 0x2f0 },
+ 'moviezebrapattern' => { 313 => 0x213, 314 => 0x213, 315 => 0x22b },
+ 'multiburstimageheight' => { 440 => 0x1002 },
+ 'multiburstimagewidth' => { 440 => 0x1001 },
+ 'multiburstmode' => { 440 => 0x1000 },
'multicontrollerwhilemetering' => { 84 => 0x517 },
- 'multiexposure' => { 68 => 0x1, 337 => 0xb4 },
- 'multiexposureautogain' => { 243 => 0x3 },
+ 'multiexposure' => { 68 => 0x1, 340 => 0xb4 },
+ 'multiexposureautogain' => { 244 => 0x3 },
'multiexposurecontrol' => { 68 => 0x2 },
- 'multiexposuremode' => { 243 => 0x1, 244 => 0x1 },
- 'multiexposureoverlaymode' => { 244 => 0x3 },
- 'multiexposureshots' => { 68 => 0x3, 239 => 0x8e, 240 => 0x9c, 241 => 0x9c, 243 => 0x2, 244 => 0x2 },
- 'multiframenoisereduction' => { 426 => 0x35, 437 => 0x200b, 442 => 0x15 },
- 'multiframenreffect' => { 437 => 0x2023 },
+ 'multiexposuremode' => { 244 => 0x1, 245 => 0x1 },
+ 'multiexposureoverlaymode' => { 245 => 0x3 },
+ 'multiexposureshots' => { 68 => 0x3, 239 => 0x9a, 240 => 0x8e, 241 => 0x9c, 242 => 0x9c, 244 => 0x2, 245 => 0x2 },
+ 'multiframenoisereduction' => { 429 => 0x35, 440 => 0x200b, 445 => 0x15 },
+ 'multiframenreffect' => { 440 => 0x2023 },
'multifunctionlock' => { 84 => 0x70f },
- 'multipleexposuremode' => { 239 => 0x8c, 240 => 0x9a, 241 => 0x9a, 318 => 0x101c },
- 'multipleexposureset' => { 353 => '10.1' },
- 'multisample' => { 256 => 0x40 },
- 'multiselector' => { 296 => '9.4', 297 => '10.3', 299 => '10.3', 300 => '10.3', 305 => '27.4', 309 => '10.3', 310 => '10.3' },
- 'multiselectorliveview' => { 296 => '4.3', 299 => '37.1', 300 => '37.1', 309 => '37.1', 310 => '37.1' },
- 'multiselectorliveviewmode' => { 270 => 0x18c2 },
- 'multiselectorplaybackmode' => { 296 => ['13.5','9.2'], 297 => '10.2', 300 => '10.2', 305 => '27.2', 309 => '10.2', 310 => '10.2', 312 => 0xb3 },
- 'multiselectorshootmode' => { 296 => '9.1', 297 => '10.1', 299 => '10.1', 300 => '10.1', 305 => '27.1', 309 => '10.1', 310 => '10.1', 312 => 0xaf },
- 'multishot' => { 342 => 0x121 },
- 'mute' => { 391 => 'player.movie.audio.mute' },
+ 'multipleexposuremode' => { 239 => 0x98, 240 => 0x8c, 241 => 0x9a, 242 => 0x9a, 321 => 0x101c },
+ 'multipleexposureset' => { 356 => '10.1' },
+ 'multisample' => { 257 => 0x40 },
+ 'multiselector' => { 297 => '9.4', 298 => '10.3', 300 => '10.3', 301 => '10.3', 306 => '27.4', 310 => '10.3', 311 => '10.3' },
+ 'multiselectorliveview' => { 297 => '4.3', 300 => '37.1', 301 => '37.1', 310 => '37.1', 311 => '37.1' },
+ 'multiselectorliveviewmode' => { 271 => 0x18c2 },
+ 'multiselectorplaybackmode' => { 297 => ['13.5','9.2'], 298 => '10.2', 301 => '10.2', 306 => '27.2', 310 => '10.2', 311 => '10.2', 313 => 0xb3, 314 => 0xb3, 315 => 0xb3 },
+ 'multiselectorshootmode' => { 297 => '9.1', 298 => '10.1', 300 => '10.1', 301 => '10.1', 306 => '27.1', 310 => '10.1', 311 => '10.1', 313 => 0xaf, 314 => 0xaf, 315 => 0xaf },
+ 'multishot' => { 345 => 0x121 },
+ 'mute' => { 394 => 'player.movie.audio.mute' },
'mycolormode' => { 69 => 0x2 },
- 'name' => { 397 => 'name', 496 => 'Name', 498 => 'Name' },
- 'narrator' => { 389 => "\xa9nrt" },
- 'nationalcatalognumber' => { 515 => 'nationalCatalogNumber' },
- 'nativedigest' => { 502 => 'NativeDigest', 521 => 'NativeDigest' },
- 'ndfilter' => { 77 => 0x1c, 314 => 0x204, 404 => 0x1019 },
- 'near' => { 481 => 'Near' },
+ 'name' => { 400 => 'name', 500 => 'Name', 502 => 'Name' },
+ 'narrator' => { 392 => "\xa9nrt" },
+ 'nationalcatalognumber' => { 519 => 'nationalCatalogNumber' },
+ 'nativedigest' => { 506 => 'NativeDigest', 525 => 'NativeDigest' },
+ 'ndfilter' => { 77 => 0x1c, 317 => 0x204, 407 => 0x1019 },
+ 'near' => { 485 => 'Near' },
'nefbitdepth' => { 234 => 0xe22 },
'nefcompression' => { 234 => 0x93, 235 => 0xa },
'neflinearizationtable' => { 234 => 0x96 },
- 'negativecachelargepreviewsize' => { 496 => 'NegativeCacheLargePreviewSize', 498 => 'NegativeCacheLargePreviewSize' },
- 'negativecachemaximumsize' => { 496 => 'NegativeCacheMaximumSize', 498 => 'NegativeCacheMaximumSize' },
- 'negativecachepath' => { 496 => 'NegativeCachePath', 498 => 'NegativeCachePath' },
- 'neutraldensityfactor' => { 493 => 'NeutralDensityFactor' },
- 'neutraldensityfilter' => { 372 => 0x88 },
+ 'negativecachelargepreviewsize' => { 500 => 'NegativeCacheLargePreviewSize', 502 => 'NegativeCacheLargePreviewSize' },
+ 'negativecachemaximumsize' => { 500 => 'NegativeCacheMaximumSize', 502 => 'NegativeCacheMaximumSize' },
+ 'negativecachepath' => { 500 => 'NegativeCachePath', 502 => 'NegativeCachePath' },
+ 'neutraldensityfactor' => { 497 => 'NeutralDensityFactor' },
+ 'neutraldensityfilter' => { 375 => 0x88 },
'neutraloutputhighlightpoint' => { 109 => 0x2f },
'neutraloutputshadowpoint' => { 109 => 0x30 },
'neutralrawcolortone' => { 109 => 0x28 },
@@ -4785,24 +4793,24 @@ my %tagLookup = (
'newlensdata' => { 232 => 0x2f },
'newrawimagedigest' => { 119 => 0xc7a7 },
'newsphotoversion' => { 133 => 0x0 },
- 'nickname' => { 523 => 'Nickname' },
+ 'nickname' => { 527 => 'Nickname' },
'nikoncapturedata' => { 234 => 0xe01 },
'nikoncaptureeditversions' => { 234 => 0xe13 },
'nikoncaptureoffsets' => { 234 => 0xe0e },
'nikoncaptureoutput' => { 234 => 0xe1e },
'nikoncaptureversion' => { 234 => 0xe09 },
'nikoniccprofile' => { 234 => 0xe1d },
- 'nikonimagesize' => { 267 => '723.1', 268 => '732.1', 276 => 0x2c4 },
- 'nikonmeteringmode' => { 199 => 0x17, 238 => 0x146, 247 => 0x214 },
+ 'nikonimagesize' => { 268 => '723.1', 269 => '732.1', 277 => 0x2c4 },
+ 'nikonmeteringmode' => { 199 => 0x17, 238 => 0x146, 248 => 0x214 },
'nikonsettings' => { 234 => 0x4e },
- 'noisefilter' => { 314 => 0x527 },
+ 'noisefilter' => { 317 => 0x527 },
'noiseprofile' => { 119 => 0xc761 },
- 'noisereduction' => { 127 => [0x100b,0x100e], 182 => 0xb0, 183 => 0x60, 184 => 0x3f, 234 => 0x95, 289 => 0x753dcbc0, 290 => 0x17, 314 => 0x50a, 319 => 0x103a, 337 => 0x2d, 372 => 0x49, 404 => 0x100f, 406 => 0x2a },
- 'noisereduction2' => { 318 => 0x1010 },
+ 'noisereduction' => { 127 => [0x100b,0x100e], 182 => 0xb0, 183 => 0x60, 184 => 0x3f, 234 => 0x95, 290 => 0x753dcbc0, 291 => 0x17, 317 => 0x50a, 322 => 0x103a, 340 => 0x2d, 375 => 0x49, 407 => 0x100f, 409 => 0x2a },
+ 'noisereduction2' => { 321 => 0x1010 },
'noisereductionapplied' => { 119 => 0xc6f7 },
- 'noisereductionintensity' => { 290 => 0x9 },
- 'noisereductionmethod' => { 290 => 0x11 },
- 'noisereductionmode' => { 472 => 0x801e },
+ 'noisereductionintensity' => { 291 => 0x9 },
+ 'noisereductionmethod' => { 291 => 0x11 },
+ 'noisereductionmode' => { 476 => 0x801e },
'noisereductionparametersatcapture' => { 138 => 0xe73 },
'noisereductionparameterscamera' => { 138 => 0xe72 },
'noisereductionparametershost3mp' => { 138 => 0xe71 },
@@ -4811,77 +4819,77 @@ my %tagLookup = (
'noisereductionparameterskhufu3mp' => { 138 => 0xe65 },
'noisereductionparameterskhufu6mp' => { 138 => 0xe64 },
'noisereductionparameterskhufurgb' => { 138 => 0xe63 },
- 'noisereductionparams' => { 342 => 0x1b },
- 'noisereductionsharpness' => { 290 => 0xd },
- 'noisereductionstrength' => { 337 => 0xd6 },
- 'noisereductionvalue' => { 472 => 0x8027 },
- 'nomemorycard' => { 296 => '22.1', 297 => '4.2', 298 => '0.3', 301 => '2.4', 302 => '3.2', 303 => '3.2', 305 => '33.7', 306 => '3.2', 307 => '0.3', 309 => '4.2', 311 => '4.5' },
- 'nominalmaxaperture' => { 363 => 0xa },
- 'nominalminaperture' => { 363 => '10.1' },
- 'noncpulens10focallength' => { 241 => 0x620 },
- 'noncpulens10maxaperture' => { 241 => 0x670 },
- 'noncpulens11focallength' => { 241 => 0x624 },
- 'noncpulens11maxaperture' => { 241 => 0x674 },
- 'noncpulens12maxaperture' => { 241 => 0x678 },
- 'noncpulens13focallength' => { 241 => 0x62c },
- 'noncpulens13maxaperture' => { 241 => 0x67c },
- 'noncpulens14focallength' => { 241 => 0x630 },
- 'noncpulens14maxaperture' => { 241 => 0x680 },
- 'noncpulens15focallength' => { 241 => 0x634 },
- 'noncpulens15maxaperture' => { 241 => 0x684 },
- 'noncpulens16focallength' => { 241 => 0x638 },
- 'noncpulens16maxaperture' => { 241 => 0x688 },
- 'noncpulens17focallength' => { 241 => 0x63c },
- 'noncpulens17maxaperture' => { 241 => 0x68c },
- 'noncpulens18focallength' => { 241 => 0x640 },
- 'noncpulens18maxaperture' => { 241 => 0x690 },
- 'noncpulens19focallength' => { 241 => 0x644 },
- 'noncpulens19maxaperture' => { 241 => 0x694 },
- 'noncpulens1focallength' => { 241 => 0x5fc },
- 'noncpulens1maxaperture' => { 241 => 0x64c },
- 'noncpulens20focallength' => { 241 => 0x648 },
- 'noncpulens20maxaperture' => { 241 => 0x698 },
- 'noncpulens21focallength' => { 241 => 0x628 },
- 'noncpulens2focallength' => { 241 => 0x600 },
- 'noncpulens2maxaperture' => { 241 => 0x650 },
- 'noncpulens3focallength' => { 241 => 0x604 },
- 'noncpulens3maxaperture' => { 241 => 0x654 },
- 'noncpulens4focallength' => { 241 => 0x608 },
- 'noncpulens4maxaperture' => { 241 => 0x658 },
- 'noncpulens5focallength' => { 241 => 0x60c },
- 'noncpulens5maxaperture' => { 241 => 0x65c },
- 'noncpulens6focallength' => { 241 => 0x610 },
- 'noncpulens6maxaperture' => { 241 => 0x660 },
- 'noncpulens7focallength' => { 241 => 0x614 },
- 'noncpulens7maxaperture' => { 241 => 0x664 },
- 'noncpulens8focallength' => { 241 => 0x618 },
- 'noncpulens8maxaperture' => { 241 => 0x668 },
- 'noncpulens9focallength' => { 241 => 0x61c },
- 'noncpulens9maxaperture' => { 241 => 0x66c },
+ 'noisereductionparams' => { 345 => 0x1b },
+ 'noisereductionsharpness' => { 291 => 0xd },
+ 'noisereductionstrength' => { 340 => 0xd6 },
+ 'noisereductionvalue' => { 476 => 0x8027 },
+ 'nomemorycard' => { 297 => '22.1', 298 => '4.2', 299 => '0.3', 302 => '2.4', 303 => '3.2', 304 => '3.2', 306 => '33.7', 307 => '3.2', 308 => '0.3', 310 => '4.2', 312 => '4.5' },
+ 'nominalmaxaperture' => { 366 => 0xa },
+ 'nominalminaperture' => { 366 => '10.1' },
+ 'noncpulens10focallength' => { 239 => 0x6c6, 242 => 0x620 },
+ 'noncpulens10maxaperture' => { 239 => 0x6ee, 242 => 0x670 },
+ 'noncpulens11focallength' => { 239 => 0x6c8, 242 => 0x624 },
+ 'noncpulens11maxaperture' => { 239 => 0x6f0, 242 => 0x674 },
+ 'noncpulens12focallength' => { 239 => 0x6ca, 242 => 0x628 },
+ 'noncpulens12maxaperture' => { 239 => 0x6f2, 242 => 0x678 },
+ 'noncpulens13focallength' => { 239 => 0x6cc, 242 => 0x62c },
+ 'noncpulens13maxaperture' => { 239 => 0x6f4, 242 => 0x67c },
+ 'noncpulens14focallength' => { 239 => 0x6ce, 242 => 0x630 },
+ 'noncpulens14maxaperture' => { 239 => 0x6f6, 242 => 0x680 },
+ 'noncpulens15focallength' => { 239 => 0x6d0, 242 => 0x634 },
+ 'noncpulens15maxaperture' => { 239 => 0x6f8, 242 => 0x684 },
+ 'noncpulens16focallength' => { 239 => 0x6d2, 242 => 0x638 },
+ 'noncpulens16maxaperture' => { 239 => 0x6fa, 242 => 0x688 },
+ 'noncpulens17focallength' => { 239 => 0x6d4, 242 => 0x63c },
+ 'noncpulens17maxaperture' => { 239 => 0x6fc, 242 => 0x68c },
+ 'noncpulens18focallength' => { 239 => 0x6d6, 242 => 0x640 },
+ 'noncpulens18maxaperture' => { 239 => 0x6fe, 242 => 0x690 },
+ 'noncpulens19focallength' => { 239 => 0x6d8, 242 => 0x644 },
+ 'noncpulens19maxaperture' => { 239 => 0x700, 242 => 0x694 },
+ 'noncpulens1focallength' => { 239 => 0x6b4, 242 => 0x5fc },
+ 'noncpulens1maxaperture' => { 239 => 0x6dc, 242 => 0x64c },
+ 'noncpulens20focallength' => { 239 => 0x6da, 242 => 0x648 },
+ 'noncpulens20maxaperture' => { 239 => 0x702, 242 => 0x698 },
+ 'noncpulens2focallength' => { 239 => 0x6b6, 242 => 0x600 },
+ 'noncpulens2maxaperture' => { 239 => 0x6de, 242 => 0x650 },
+ 'noncpulens3focallength' => { 239 => 0x6b8, 242 => 0x604 },
+ 'noncpulens3maxaperture' => { 239 => 0x6e0, 242 => 0x654 },
+ 'noncpulens4focallength' => { 239 => 0x6ba, 242 => 0x608 },
+ 'noncpulens4maxaperture' => { 239 => 0x6e2, 242 => 0x658 },
+ 'noncpulens5focallength' => { 239 => 0x6bc, 242 => 0x60c },
+ 'noncpulens5maxaperture' => { 239 => 0x6e4, 242 => 0x65c },
+ 'noncpulens6focallength' => { 239 => 0x6be, 242 => 0x610 },
+ 'noncpulens6maxaperture' => { 239 => 0x6e6, 242 => 0x660 },
+ 'noncpulens7focallength' => { 239 => 0x6c0, 242 => 0x614 },
+ 'noncpulens7maxaperture' => { 239 => 0x6e8, 242 => 0x664 },
+ 'noncpulens8focallength' => { 239 => 0x6c2, 242 => 0x618 },
+ 'noncpulens8maxaperture' => { 239 => 0x6ea, 242 => 0x668 },
+ 'noncpulens9focallength' => { 239 => 0x6c4, 242 => 0x61c },
+ 'noncpulens9maxaperture' => { 239 => 0x6ec, 242 => 0x66c },
'normallinetime' => { 138 => 0x186a },
'normalwhitelevel' => { 41 => 0x32a, 42 => 0x280, 45 => [0x2b8,0x2cf,0x2d3], 46 => 0x569, 47 => 0x1e3, 48 => [0x1fc,0x2dc], 49 => [0x230,0x30e], 50 => 0x31c },
- 'notes' => { 473 => 'Notes', 491 => 'notes' },
- 'npages' => { 530 => 'NPages' },
+ 'notes' => { 477 => 'Notes', 495 => 'notes' },
+ 'npages' => { 534 => 'NPages' },
'nullrecord' => { 97 => 0x0 },
- 'numafpoints' => { 349 => 0x2 },
- 'number' => { 515 => 'number' },
- 'numberofbeats' => { 525 => 'numberOfBeats' },
- 'numberoffocuspoints' => { 299 => '1.3', 300 => '1.3', 303 => '0.2', 304 => '0.3', 306 => '0.3' },
+ 'numafpoints' => { 352 => 0x2 },
+ 'number' => { 519 => 'number' },
+ 'numberofbeats' => { 529 => 'numberOfBeats' },
+ 'numberoffocuspoints' => { 300 => '1.3', 301 => '1.3', 304 => '0.2', 305 => '0.3', 307 => '0.3' },
'numfaceelements' => { 127 => 0x4200 },
- 'numfacepositions' => { 329 => 0x0 },
+ 'numfacepositions' => { 332 => 0x0 },
'numindexentries' => { 133 => 0x54 },
- 'numwbentries' => { 343 => 0x0, 344 => 0x0 },
- 'object' => { 515 => 'object' },
+ 'numwbentries' => { 346 => 0x0, 347 => 0x0 },
+ 'object' => { 519 => 'object' },
'objectattributereference' => { 131 => 0x4 },
- 'objectcycle' => { 131 => 0x4b, 491 => 'ObjectCycle' },
- 'objectdescription' => { 514 => 'objectDescription' },
+ 'objectcycle' => { 131 => 0x4b, 495 => 'ObjectCycle' },
+ 'objectdescription' => { 518 => 'objectDescription' },
'objectdistance' => { 112 => 0x6, 113 => 0x2022 },
'objectname' => { 131 => 0x5 },
'objectpreviewdata' => { 131 => 0xca },
'objectpreviewfileformat' => { 131 => 0xc8 },
'objectpreviewfileversion' => { 131 => 0xc9 },
- 'objectsubtype' => { 514 => 'objectSubtype' },
- 'objecttype' => { 514 => 'objectType' },
+ 'objectsubtype' => { 518 => 'objectSubtype' },
+ 'objecttype' => { 518 => 'objectType' },
'objecttypereference' => { 131 => 0x3 },
'occurrence' => { 118 => 'Occurrence' },
'occurrenceassociatedmedia' => { 118 => [\'Occurrence','OccurrenceAssociatedMedia'] },
@@ -4913,25 +4921,25 @@ my %tagLookup = (
'occurrencereproductivecondition' => { 118 => [\'Occurrence','OccurrenceReproductiveCondition'] },
'occurrencesex' => { 118 => [\'Occurrence','OccurrenceSex'] },
'occurrencestatus' => { 118 => [\'Occurrence','OccurrenceOccurrenceStatus'] },
- 'oecfcolumns' => { 502 => [\'OECF','OECFColumns'] },
- 'oecfnames' => { 502 => [\'OECF','OECFNames'] },
- 'oecfrows' => { 502 => [\'OECF','OECFRows'] },
- 'oecfvalues' => { 502 => [\'OECF','OECFValues'] },
- 'offsaledate' => { 515 => 'offSaleDate' },
- 'offsaledatea-platform' => { 515 => [\'offSaleDate','offSaleDateA-platform'] },
- 'offsaledatedate' => { 515 => [\'offSaleDate','offSaleDateDate'] },
+ 'oecfcolumns' => { 506 => [\'OECF','OECFColumns'] },
+ 'oecfnames' => { 506 => [\'OECF','OECFNames'] },
+ 'oecfrows' => { 506 => [\'OECF','OECFRows'] },
+ 'oecfvalues' => { 506 => [\'OECF','OECFValues'] },
+ 'offsaledate' => { 519 => 'offSaleDate' },
+ 'offsaledatea-platform' => { 519 => [\'offSaleDate','offSaleDateA-platform'] },
+ 'offsaledatedate' => { 519 => [\'offSaleDate','offSaleDateDate'] },
'offsetdacvalue' => { 138 => 0x190a },
- 'offsethdr' => { 507 => 'OffsetHDR' },
+ 'offsethdr' => { 511 => 'OffsetHDR' },
'offsetschema' => { 119 => 0xea1d },
- 'offsetsdr' => { 507 => 'OffsetSDR' },
+ 'offsetsdr' => { 511 => 'OffsetSDR' },
'offsettime' => { 119 => 0x9010 },
'offsettimedigitized' => { 119 => 0x9012 },
'offsettimeoriginal' => { 119 => 0x9011 },
'oismode' => { 1 => 0xf },
- 'okbutton' => { 306 => '15.1', 311 => '16.1' },
+ 'okbutton' => { 307 => '15.1', 312 => '16.1' },
'oldsubfiletype' => { 119 => 0xff },
- 'olympusimageheight' => { 319 => 0x102f },
- 'olympusimagewidth' => { 319 => 0x102e },
+ 'olympusimageheight' => { 322 => 0x102f },
+ 'olympusimagewidth' => { 322 => 0x102e },
'omenatcapturestrength' => { 138 => 0xa60 },
'omenautostrength' => { 138 => 0xa5f },
'omenearlystrength' => { 138 => 0xa5e },
@@ -4939,26 +4947,26 @@ my %tagLookup = (
'omeninitialipfstrength' => { 138 => 0xa5d },
'omensurfaceindex' => { 138 => 0xa64 },
'oneshotafrelease' => { 2 => 0x9 },
- 'onetouchwb' => { 319 => 0x302 },
- 'onsaledate' => { 515 => 'onSaleDate' },
- 'onsaledatea-platform' => { 515 => [\'onSaleDate','onSaleDateA-platform'] },
- 'onsaledatedate' => { 515 => [\'onSaleDate','onSaleDateDate'] },
- 'onsaleday' => { 515 => 'onSaleDay' },
- 'onsaledaya-platform' => { 515 => [\'onSaleDay','onSaleDayA-platform'] },
- 'onsaledayday' => { 515 => [\'onSaleDay','onSaleDayDay'] },
+ 'onetouchwb' => { 322 => 0x302 },
+ 'onsaledate' => { 519 => 'onSaleDate' },
+ 'onsaledatea-platform' => { 519 => [\'onSaleDate','onSaleDateA-platform'] },
+ 'onsaledatedate' => { 519 => [\'onSaleDate','onSaleDateDate'] },
+ 'onsaleday' => { 519 => 'onSaleDay' },
+ 'onsaledaya-platform' => { 519 => [\'onSaleDay','onSaleDayA-platform'] },
+ 'onsaledayday' => { 519 => [\'onSaleDay','onSaleDayDay'] },
'opcodelist1' => { 119 => 0xc740 },
'opcodelist2' => { 119 => 0xc741 },
'opcodelist3' => { 119 => 0xc74e },
'opticalzoom' => { 142 => 0xfa3d, 144 => [0x6006,0xf006], 145 => 0x1000, 146 => 0xf, 149 => 0x1e, 151 => 0x20, 152 => 0x1c, 163 => 'OpticalZoom' },
'opticalzoomcode' => { 77 => 0xa },
- 'opticalzoommode' => { 337 => 0x34 },
- 'opticalzoomon' => { 413 => 0x219 },
- 'optionenddate' => { 518 => 'optionEndDate' },
- 'opto-electricconvfactor' => { 502 => 'OECF' },
+ 'opticalzoommode' => { 340 => 0x34 },
+ 'opticalzoomon' => { 416 => 0x219 },
+ 'optionenddate' => { 522 => 'optionEndDate' },
+ 'opto-electricconvfactor' => { 506 => 'OECF' },
'orangehsl' => { 103 => 0x20911 },
'ordernumber' => { 127 => 0x8002 },
- 'organisationinimagecode' => { 510 => 'OrganisationInImageCode' },
- 'organisationinimagename' => { 510 => 'OrganisationInImageName' },
+ 'organisationinimagecode' => { 514 => 'OrganisationInImageCode' },
+ 'organisationinimagename' => { 514 => 'OrganisationInImageName' },
'organism' => { 118 => 'Organism' },
'organismassociatedoccurrences' => { 118 => [\'Organism','OrganismAssociatedOccurrences'] },
'organismassociatedorganisms' => { 118 => [\'Organism','OrganismAssociatedOrganisms'] },
@@ -4967,26 +4975,26 @@ my %tagLookup = (
'organismpreviousidentifications' => { 118 => [\'Organism','OrganismPreviousIdentifications'] },
'organismremarks' => { 118 => [\'Organism','OrganismOrganismRemarks'] },
'organismscope' => { 118 => [\'Organism','OrganismOrganismScope'] },
- 'organization' => { 515 => 'organization' },
- 'orientation' => { 119 => 0x112, 342 => 0x112, 514 => 'orientation', 521 => 'Orientation' },
- 'orientation2' => { 442 => [0x28,0x2e] },
+ 'organization' => { 519 => 'organization' },
+ 'orientation' => { 119 => 0x112, 345 => 0x112, 518 => 'orientation', 525 => 'Orientation' },
+ 'orientation2' => { 445 => [0x28,0x2e] },
'orientationlinkedaf' => { 2 => 0xe },
'orientationlinkedafpoint' => { 84 => 0x516 },
'originalalbumtitle' => { 179 => 'WM/OriginalAlbumTitle' },
- 'originalartist' => { 179 => 'WM/OriginalArtist', 389 => "\xa9ope" },
+ 'originalartist' => { 179 => 'WM/OriginalArtist', 392 => "\xa9ope" },
'originalbestqualitysize' => { 119 => 0xc792 },
- 'originalcreatedatetime' => { 486 => 'OriginalCreateDateTime' },
+ 'originalcreatedatetime' => { 490 => 'OriginalCreateDateTime' },
'originaldecisiondata' => { 114 => 'Canon-OriginalDecisionData' },
'originaldecisiondataoffset' => { 64 => 0x83 },
'originaldefaultcropsize' => { 119 => 0xc793 },
'originaldefaultfinalsize' => { 119 => 0xc791 },
- 'originaldirectory' => { 334 => 0x408 },
- 'originaldocumentid' => { 526 => 'OriginalDocumentID' },
- 'originalfilename' => { 97 => 0x816, 138 => 0x3e9, 150 => 0x20, 334 => 0x407, 486 => 'OriginalFilename' },
- 'originalimagehash' => { 476 => 'OriginalImageHash' },
- 'originalimagehashtype' => { 476 => 'OriginalImageHashType' },
+ 'originaldirectory' => { 337 => 0x408 },
+ 'originaldocumentid' => { 530 => 'OriginalDocumentID' },
+ 'originalfilename' => { 97 => 0x816, 138 => 0x3e9, 150 => 0x20, 337 => 0x407, 490 => 'OriginalFilename' },
+ 'originalimagehash' => { 480 => 'OriginalImageHash' },
+ 'originalimagehashtype' => { 480 => 'OriginalImageHashType' },
'originalimageheight' => { 79 => 0xc, 123 => 0x1 },
- 'originalimagemd5' => { 476 => 'OriginalImageMD5' },
+ 'originalimagemd5' => { 480 => 'OriginalImageMD5' },
'originalimagesize' => { 162 => 'OriginalImageSize' },
'originalimagewidth' => { 79 => 0xb, 123 => 0x0 },
'originallyricist' => { 179 => 'WM/OriginalLyricist' },
@@ -4994,209 +5002,209 @@ my %tagLookup = (
'originalrawfiledigest' => { 119 => 0xc71d },
'originalrawfilename' => { 119 => 0xc68b },
'originaltransmissionreference' => { 131 => 0x67 },
- 'originatingprogram' => { 131 => 0x41, 491 => 'OriginatingProgram' },
- 'originplatform' => { 515 => 'originPlatform' },
- 'os' => { 500 => 'os' },
- 'otherconditions' => { 324 => 'OtherConditions' },
- 'otherconstraints' => { 324 => 'OtherConstraints' },
+ 'originatingprogram' => { 131 => 0x41, 495 => 'OriginatingProgram' },
+ 'originplatform' => { 519 => 'originPlatform' },
+ 'os' => { 504 => 'os' },
+ 'otherconditions' => { 327 => 'OtherConditions' },
+ 'otherconstraints' => { 327 => 'OtherConstraints' },
'otherimage' => { 114 => 'Exif-OtherImage' },
- 'otherimageinfo' => { 324 => 'OtherImageInfo' },
+ 'otherimageinfo' => { 327 => 'OtherImageInfo' },
'otherimagelength' => { 119 => 0x202 },
'otherimagestart' => { 119 => 0x201 },
- 'otherlicensedocuments' => { 324 => 'OtherLicenseDocuments' },
- 'otherlicenseinfo' => { 324 => 'OtherLicenseInfo' },
- 'otherlicenserequirements' => { 324 => 'OtherLicenseRequirements' },
- 'outcue' => { 525 => 'outCue' },
- 'outcuescale' => { 525 => [\'outCue','outCueScale'] },
- 'outcuevalue' => { 525 => [\'outCue','outCueValue'] },
+ 'otherlicensedocuments' => { 327 => 'OtherLicenseDocuments' },
+ 'otherlicenseinfo' => { 327 => 'OtherLicenseInfo' },
+ 'otherlicenserequirements' => { 327 => 'OtherLicenseRequirements' },
+ 'outcue' => { 529 => 'outCue' },
+ 'outcuescale' => { 529 => [\'outCue','outCueScale'] },
+ 'outcuevalue' => { 529 => [\'outCue','outCueValue'] },
'outputimageheight' => { 200 => 0x3 },
'outputimagewidth' => { 200 => 0x2 },
- 'outputlut' => { 337 => 0xa7 },
+ 'outputlut' => { 340 => 0xa7 },
'outputprofile' => { 138 => 0x138b },
'outputresolution' => { 200 => 0x4 },
'overclockcols' => { 138 => 0x189c },
'overclockrows' => { 138 => 0x18c4 },
- 'overridelookvignette' => { 496 => 'OverrideLookVignette', 498 => 'OverrideLookVignette' },
- 'owner' => { 529 => 'Owner' },
+ 'overridelookvignette' => { 500 => 'OverrideLookVignette', 502 => 'OverrideLookVignette' },
+ 'owner' => { 533 => 'Owner' },
'ownerid' => { 131 => 0xbc },
- 'ownername' => { 15 => 0x10f, 64 => 0x9, 97 => 0x810, 119 => [0xa430,0xfde8], 156 => 'OwnerName', 493 => 'OwnerName', 503 => 'CameraOwnerName' },
+ 'ownername' => { 15 => 0x10f, 64 => 0x9, 97 => 0x810, 119 => [0xa430,0xfde8], 156 => 'OwnerName', 497 => 'OwnerName', 507 => 'CameraOwnerName' },
'padding' => { 119 => 0xea1c },
- 'pagecount' => { 515 => 'pageCount' },
- 'pageimage' => { 523 => [\'PageInfo','PageInfoImage'] },
- 'pageimageformat' => { 523 => [\'PageInfo','PageInfoFormat'] },
- 'pageimageheight' => { 523 => [\'PageInfo','PageInfoHeight'] },
- 'pageimagepagenumber' => { 523 => [\'PageInfo','PageInfoPageNumber'] },
- 'pageimagewidth' => { 523 => [\'PageInfo','PageInfoWidth'] },
- 'pageinfo' => { 523 => 'PageInfo' },
+ 'pagecount' => { 519 => 'pageCount' },
+ 'pageimage' => { 527 => [\'PageInfo','PageInfoImage'] },
+ 'pageimageformat' => { 527 => [\'PageInfo','PageInfoFormat'] },
+ 'pageimageheight' => { 527 => [\'PageInfo','PageInfoHeight'] },
+ 'pageimagepagenumber' => { 527 => [\'PageInfo','PageInfoPageNumber'] },
+ 'pageimagewidth' => { 527 => [\'PageInfo','PageInfoWidth'] },
+ 'pageinfo' => { 527 => 'PageInfo' },
'pagename' => { 119 => 0x11d },
'pagenumber' => { 119 => 0x129 },
- 'pageprogressiondirection' => { 515 => 'pageProgressionDirection' },
- 'pagerange' => { 515 => 'pageRange' },
- 'paintbasedcorrectionmasks' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasks'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasks'] },
- 'paintbasedcorrections' => { 496 => 'PaintBasedCorrections', 498 => 'PaintBasedCorrections' },
- 'paintcorrectionactive' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionActive'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionActive'] },
- 'paintcorrectionamount' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionAmount'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionAmount'] },
- 'paintcorrectionblacks2012' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalBlacks2012'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalBlacks2012'] },
- 'paintcorrectionbrightness' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalBrightness'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalBrightness'] },
- 'paintcorrectionclarity' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity'] },
- 'paintcorrectionclarity2012' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity2012'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity2012'] },
- 'paintcorrectioncontrast' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast'] },
- 'paintcorrectioncontrast2012' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast2012'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast2012'] },
- 'paintcorrectioncorrectionname' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionName'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionName'] },
- 'paintcorrectioncorrectionsyncid' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionSyncID'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionSyncID'] },
- 'paintcorrectiondefringe' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalDefringe'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalDefringe'] },
- 'paintcorrectiondehaze' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalDehaze'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalDehaze'] },
- 'paintcorrectionexposure' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure'] },
- 'paintcorrectionexposure2012' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure2012'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure2012'] },
- 'paintcorrectionhighlights2012' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalHighlights2012'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalHighlights2012'] },
- 'paintcorrectionhue' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalHue'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalHue'] },
- 'paintcorrectionluminancenoise' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalLuminanceNoise'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalLuminanceNoise'] },
- 'paintcorrectionmaskalpha' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAlpha'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAlpha'] },
- 'paintcorrectionmaskangle' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAngle'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAngle'] },
- 'paintcorrectionmaskbottom' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksBottom'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksBottom'] },
- 'paintcorrectionmaskcentervalue' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterValue'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterValue'] },
- 'paintcorrectionmaskcenterweight' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterWeight'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterWeight'] },
- 'paintcorrectionmaskdabs' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksDabs'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksDabs'] },
- 'paintcorrectionmaskfeather' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFeather'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFeather'] },
- 'paintcorrectionmaskflipped' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlipped'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlipped'] },
- 'paintcorrectionmaskflow' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlow'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlow'] },
- 'paintcorrectionmaskfullx' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullX'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullX'] },
- 'paintcorrectionmaskfully' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullY'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullY'] },
- 'paintcorrectionmaskinputdigest' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksInputDigest'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksInputDigest'] },
- 'paintcorrectionmaskleft' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksLeft'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksLeft'] },
- 'paintcorrectionmaskmaskactive' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskActive'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskActive'] },
- 'paintcorrectionmaskmaskblendmode' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskBlendMode'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskBlendMode'] },
- 'paintcorrectionmaskmaskdigest' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskDigest'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskDigest'] },
- 'paintcorrectionmaskmaskinverted' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskInverted'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskInverted'] },
- 'paintcorrectionmaskmaskname' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskName'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskName'] },
- 'paintcorrectionmaskmasks' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasks'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasks'] },
- 'paintcorrectionmaskmasksalpha' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksAlpha'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksAlpha'] },
- 'paintcorrectionmaskmasksangle' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksAngle'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksAngle'] },
- 'paintcorrectionmaskmasksbottom' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksBottom'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksBottom'] },
- 'paintcorrectionmaskmaskscentervalue' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksCenterValue'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksCenterValue'] },
- 'paintcorrectionmaskmaskscenterweight' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksCenterWeight'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksCenterWeight'] },
- 'paintcorrectionmaskmasksdabs' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksDabs'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksDabs'] },
- 'paintcorrectionmaskmasksfeather' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFeather'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFeather'] },
- 'paintcorrectionmaskmasksflipped' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFlipped'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFlipped'] },
- 'paintcorrectionmaskmasksflow' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFlow'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFlow'] },
- 'paintcorrectionmaskmasksfullx' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFullX'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFullX'] },
- 'paintcorrectionmaskmasksfully' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFullY'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFullY'] },
- 'paintcorrectionmaskmasksinputdigest' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksInputDigest'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksInputDigest'] },
- 'paintcorrectionmaskmasksleft' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksLeft'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksLeft'] },
- 'paintcorrectionmaskmasksmaskactive' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskActive'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskActive'] },
- 'paintcorrectionmaskmasksmaskblendmode' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskBlendMode'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskBlendMode'] },
- 'paintcorrectionmaskmasksmaskdigest' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskDigest'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskDigest'] },
- 'paintcorrectionmaskmasksmaskinverted' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskInverted'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskInverted'] },
- 'paintcorrectionmaskmasksmaskname' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskName'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskName'] },
- 'paintcorrectionmaskmasksmasksubtype' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskSubType'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskSubType'] },
- 'paintcorrectionmaskmasksmasksyncid' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskSyncID'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskSyncID'] },
- 'paintcorrectionmaskmasksmaskversion' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskVersion'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskVersion'] },
- 'paintcorrectionmaskmasksmidpoint' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMidpoint'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMidpoint'] },
- 'paintcorrectionmaskmasksorigin' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksOrigin'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksOrigin'] },
- 'paintcorrectionmaskmasksperimetervalue' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksPerimeterValue'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksPerimeterValue'] },
- 'paintcorrectionmaskmasksradius' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRadius'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRadius'] },
- 'paintcorrectionmaskmasksreferencepoint' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksReferencePoint'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksReferencePoint'] },
- 'paintcorrectionmaskmasksright' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRight'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRight'] },
- 'paintcorrectionmaskmasksroundness' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRoundness'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRoundness'] },
- 'paintcorrectionmaskmaskssizex' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksSizeX'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksSizeX'] },
- 'paintcorrectionmaskmaskssizey' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksSizeY'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksSizeY'] },
- 'paintcorrectionmaskmaskstop' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksTop'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksTop'] },
- 'paintcorrectionmaskmasksubtype' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskSubType'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskSubType'] },
- 'paintcorrectionmaskmasksvalue' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskValue'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskValue'] },
- 'paintcorrectionmaskmasksversion' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksVersion'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksVersion'] },
- 'paintcorrectionmaskmaskswhat' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksWhat'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksWhat'] },
- 'paintcorrectionmaskmaskswholeimagearea' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksWholeImageArea'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksWholeImageArea'] },
- 'paintcorrectionmaskmasksx' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksX'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksX'] },
- 'paintcorrectionmaskmasksy' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksY'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksY'] },
- 'paintcorrectionmaskmasksyncid' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskSyncID'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskSyncID'] },
- 'paintcorrectionmaskmaskszerox' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksZeroX'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksZeroX'] },
- 'paintcorrectionmaskmaskszeroy' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksZeroY'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksZeroY'] },
- 'paintcorrectionmaskmaskversion' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskVersion'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskVersion'] },
- 'paintcorrectionmaskmidpoint' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMidpoint'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMidpoint'] },
- 'paintcorrectionmaskorigin' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksOrigin'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksOrigin'] },
- 'paintcorrectionmaskperimetervalue' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksPerimeterValue'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksPerimeterValue'] },
- 'paintcorrectionmaskradius' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRadius'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRadius'] },
- 'paintcorrectionmaskrange' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMask'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMask'] },
- 'paintcorrectionmaskrangeareamodels' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'] },
- 'paintcorrectionmaskrangeareamodelscolorsampleinfo' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] },
- 'paintcorrectionmaskrangeareamodelscomponents' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'] },
- 'paintcorrectionmaskrangecoloramount' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'] },
- 'paintcorrectionmaskrangedepthfeather' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'] },
- 'paintcorrectionmaskrangedepthmax' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'] },
- 'paintcorrectionmaskrangedepthmin' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'] },
- 'paintcorrectionmaskrangeinvert' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'] },
- 'paintcorrectionmaskrangelumfeather' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'] },
- 'paintcorrectionmaskrangeluminancedepthsampleinfo' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'] },
- 'paintcorrectionmaskrangelummax' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'] },
- 'paintcorrectionmaskrangelummin' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'] },
- 'paintcorrectionmaskrangelumrange' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'] },
- 'paintcorrectionmaskrangesampletype' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'] },
- 'paintcorrectionmaskrangetype' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'] },
- 'paintcorrectionmaskrangeversion' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'] },
- 'paintcorrectionmaskreferencepoint' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksReferencePoint'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksReferencePoint'] },
- 'paintcorrectionmaskright' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRight'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRight'] },
- 'paintcorrectionmaskroundness' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRoundness'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRoundness'] },
- 'paintcorrectionmasksizex' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeX'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeX'] },
- 'paintcorrectionmasksizey' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeY'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeY'] },
- 'paintcorrectionmasktop' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksTop'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksTop'] },
- 'paintcorrectionmaskvalue' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskValue'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskValue'] },
- 'paintcorrectionmaskversion' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksVersion'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksVersion'] },
- 'paintcorrectionmaskwhat' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksWhat'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksWhat'] },
- 'paintcorrectionmaskwholeimagearea' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksWholeImageArea'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksWholeImageArea'] },
- 'paintcorrectionmaskx' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksX'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksX'] },
- 'paintcorrectionmasky' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksY'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksY'] },
- 'paintcorrectionmaskzerox' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroX'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroX'] },
- 'paintcorrectionmaskzeroy' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroY'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroY'] },
- 'paintcorrectionmoire' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalMoire'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalMoire'] },
- 'paintcorrectionrangemask' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMask'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMask'] },
- 'paintcorrectionrangemaskareamodels' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModels'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModels'] },
- 'paintcorrectionrangemaskareamodelscolorsampleinfo' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] },
- 'paintcorrectionrangemaskareamodelscomponents' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'] },
- 'paintcorrectionrangemaskcoloramount' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskColorAmount'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskColorAmount'] },
- 'paintcorrectionrangemaskdepthfeather' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthFeather'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthFeather'] },
- 'paintcorrectionrangemaskdepthmax' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthMax'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthMax'] },
- 'paintcorrectionrangemaskdepthmin' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthMin'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthMin'] },
- 'paintcorrectionrangemaskinvert' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskInvert'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskInvert'] },
- 'paintcorrectionrangemasklumfeather' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumFeather'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumFeather'] },
- 'paintcorrectionrangemaskluminancedepthsampleinfo' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'] },
- 'paintcorrectionrangemasklummax' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumMax'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumMax'] },
- 'paintcorrectionrangemasklummin' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumMin'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumMin'] },
- 'paintcorrectionrangemasklumrange' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumRange'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumRange'] },
- 'paintcorrectionrangemasksampletype' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskSampleType'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskSampleType'] },
- 'paintcorrectionrangemasktype' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskType'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskType'] },
- 'paintcorrectionrangemaskversion' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskVersion'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskVersion'] },
- 'paintcorrectionsaturation' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSaturation'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSaturation'] },
- 'paintcorrectionshadows2012' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalShadows2012'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalShadows2012'] },
- 'paintcorrectionsharpness' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSharpness'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSharpness'] },
- 'paintcorrectiontemperature' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTemperature'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTemperature'] },
- 'paintcorrectiontexture' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTexture'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTexture'] },
- 'paintcorrectiontint' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTint'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTint'] },
- 'paintcorrectiontoninghue' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalToningHue'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalToningHue'] },
- 'paintcorrectiontoningsaturation' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalToningSaturation'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalToningSaturation'] },
- 'paintcorrectionwhat' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsWhat'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsWhat'] },
- 'paintcorrectionwhites2012' => { 496 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalWhites2012'], 498 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalWhites2012'] },
- 'panasonicdatetime' => { 340 => 0x0 },
- 'panasonicexifversion' => { 337 => 0x26 },
- 'panasonicimageheight' => { 337 => 0x4c },
- 'panasonicimagewidth' => { 337 => 0x4b },
- 'panasonicrawversion' => { 342 => 0x1 },
+ 'pageprogressiondirection' => { 519 => 'pageProgressionDirection' },
+ 'pagerange' => { 519 => 'pageRange' },
+ 'paintbasedcorrectionmasks' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasks'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasks'] },
+ 'paintbasedcorrections' => { 500 => 'PaintBasedCorrections', 502 => 'PaintBasedCorrections' },
+ 'paintcorrectionactive' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionActive'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionActive'] },
+ 'paintcorrectionamount' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionAmount'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionAmount'] },
+ 'paintcorrectionblacks2012' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalBlacks2012'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalBlacks2012'] },
+ 'paintcorrectionbrightness' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalBrightness'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalBrightness'] },
+ 'paintcorrectionclarity' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity'] },
+ 'paintcorrectionclarity2012' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity2012'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity2012'] },
+ 'paintcorrectioncontrast' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast'] },
+ 'paintcorrectioncontrast2012' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast2012'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast2012'] },
+ 'paintcorrectioncorrectionname' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionName'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionName'] },
+ 'paintcorrectioncorrectionsyncid' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionSyncID'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionSyncID'] },
+ 'paintcorrectiondefringe' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalDefringe'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalDefringe'] },
+ 'paintcorrectiondehaze' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalDehaze'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalDehaze'] },
+ 'paintcorrectionexposure' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure'] },
+ 'paintcorrectionexposure2012' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure2012'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure2012'] },
+ 'paintcorrectionhighlights2012' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalHighlights2012'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalHighlights2012'] },
+ 'paintcorrectionhue' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalHue'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalHue'] },
+ 'paintcorrectionluminancenoise' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalLuminanceNoise'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalLuminanceNoise'] },
+ 'paintcorrectionmaskalpha' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAlpha'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAlpha'] },
+ 'paintcorrectionmaskangle' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAngle'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAngle'] },
+ 'paintcorrectionmaskbottom' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksBottom'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksBottom'] },
+ 'paintcorrectionmaskcentervalue' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterValue'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterValue'] },
+ 'paintcorrectionmaskcenterweight' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterWeight'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterWeight'] },
+ 'paintcorrectionmaskdabs' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksDabs'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksDabs'] },
+ 'paintcorrectionmaskfeather' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFeather'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFeather'] },
+ 'paintcorrectionmaskflipped' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlipped'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlipped'] },
+ 'paintcorrectionmaskflow' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlow'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlow'] },
+ 'paintcorrectionmaskfullx' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullX'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullX'] },
+ 'paintcorrectionmaskfully' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullY'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullY'] },
+ 'paintcorrectionmaskinputdigest' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksInputDigest'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksInputDigest'] },
+ 'paintcorrectionmaskleft' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksLeft'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksLeft'] },
+ 'paintcorrectionmaskmaskactive' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskActive'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskActive'] },
+ 'paintcorrectionmaskmaskblendmode' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskBlendMode'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskBlendMode'] },
+ 'paintcorrectionmaskmaskdigest' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskDigest'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskDigest'] },
+ 'paintcorrectionmaskmaskinverted' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskInverted'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskInverted'] },
+ 'paintcorrectionmaskmaskname' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskName'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskName'] },
+ 'paintcorrectionmaskmasks' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasks'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasks'] },
+ 'paintcorrectionmaskmasksalpha' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksAlpha'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksAlpha'] },
+ 'paintcorrectionmaskmasksangle' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksAngle'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksAngle'] },
+ 'paintcorrectionmaskmasksbottom' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksBottom'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksBottom'] },
+ 'paintcorrectionmaskmaskscentervalue' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksCenterValue'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksCenterValue'] },
+ 'paintcorrectionmaskmaskscenterweight' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksCenterWeight'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksCenterWeight'] },
+ 'paintcorrectionmaskmasksdabs' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksDabs'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksDabs'] },
+ 'paintcorrectionmaskmasksfeather' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFeather'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFeather'] },
+ 'paintcorrectionmaskmasksflipped' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFlipped'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFlipped'] },
+ 'paintcorrectionmaskmasksflow' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFlow'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFlow'] },
+ 'paintcorrectionmaskmasksfullx' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFullX'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFullX'] },
+ 'paintcorrectionmaskmasksfully' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFullY'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFullY'] },
+ 'paintcorrectionmaskmasksinputdigest' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksInputDigest'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksInputDigest'] },
+ 'paintcorrectionmaskmasksleft' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksLeft'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksLeft'] },
+ 'paintcorrectionmaskmasksmaskactive' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskActive'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskActive'] },
+ 'paintcorrectionmaskmasksmaskblendmode' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskBlendMode'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskBlendMode'] },
+ 'paintcorrectionmaskmasksmaskdigest' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskDigest'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskDigest'] },
+ 'paintcorrectionmaskmasksmaskinverted' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskInverted'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskInverted'] },
+ 'paintcorrectionmaskmasksmaskname' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskName'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskName'] },
+ 'paintcorrectionmaskmasksmasksubtype' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskSubType'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskSubType'] },
+ 'paintcorrectionmaskmasksmasksyncid' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskSyncID'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskSyncID'] },
+ 'paintcorrectionmaskmasksmaskversion' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskVersion'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskVersion'] },
+ 'paintcorrectionmaskmasksmidpoint' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMidpoint'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMidpoint'] },
+ 'paintcorrectionmaskmasksorigin' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksOrigin'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksOrigin'] },
+ 'paintcorrectionmaskmasksperimetervalue' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksPerimeterValue'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksPerimeterValue'] },
+ 'paintcorrectionmaskmasksradius' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRadius'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRadius'] },
+ 'paintcorrectionmaskmasksreferencepoint' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksReferencePoint'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksReferencePoint'] },
+ 'paintcorrectionmaskmasksright' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRight'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRight'] },
+ 'paintcorrectionmaskmasksroundness' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRoundness'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRoundness'] },
+ 'paintcorrectionmaskmaskssizex' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksSizeX'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksSizeX'] },
+ 'paintcorrectionmaskmaskssizey' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksSizeY'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksSizeY'] },
+ 'paintcorrectionmaskmaskstop' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksTop'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksTop'] },
+ 'paintcorrectionmaskmasksubtype' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskSubType'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskSubType'] },
+ 'paintcorrectionmaskmasksvalue' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskValue'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskValue'] },
+ 'paintcorrectionmaskmasksversion' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksVersion'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksVersion'] },
+ 'paintcorrectionmaskmaskswhat' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksWhat'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksWhat'] },
+ 'paintcorrectionmaskmaskswholeimagearea' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksWholeImageArea'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksWholeImageArea'] },
+ 'paintcorrectionmaskmasksx' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksX'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksX'] },
+ 'paintcorrectionmaskmasksy' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksY'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksY'] },
+ 'paintcorrectionmaskmasksyncid' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskSyncID'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskSyncID'] },
+ 'paintcorrectionmaskmaskszerox' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksZeroX'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksZeroX'] },
+ 'paintcorrectionmaskmaskszeroy' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksZeroY'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksZeroY'] },
+ 'paintcorrectionmaskmaskversion' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskVersion'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskVersion'] },
+ 'paintcorrectionmaskmidpoint' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMidpoint'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMidpoint'] },
+ 'paintcorrectionmaskorigin' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksOrigin'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksOrigin'] },
+ 'paintcorrectionmaskperimetervalue' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksPerimeterValue'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksPerimeterValue'] },
+ 'paintcorrectionmaskradius' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRadius'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRadius'] },
+ 'paintcorrectionmaskrange' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMask'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMask'] },
+ 'paintcorrectionmaskrangeareamodels' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'] },
+ 'paintcorrectionmaskrangeareamodelscolorsampleinfo' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] },
+ 'paintcorrectionmaskrangeareamodelscomponents' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'] },
+ 'paintcorrectionmaskrangecoloramount' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'] },
+ 'paintcorrectionmaskrangedepthfeather' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'] },
+ 'paintcorrectionmaskrangedepthmax' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'] },
+ 'paintcorrectionmaskrangedepthmin' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'] },
+ 'paintcorrectionmaskrangeinvert' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'] },
+ 'paintcorrectionmaskrangelumfeather' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'] },
+ 'paintcorrectionmaskrangeluminancedepthsampleinfo' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'] },
+ 'paintcorrectionmaskrangelummax' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'] },
+ 'paintcorrectionmaskrangelummin' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'] },
+ 'paintcorrectionmaskrangelumrange' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'] },
+ 'paintcorrectionmaskrangesampletype' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'] },
+ 'paintcorrectionmaskrangetype' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'] },
+ 'paintcorrectionmaskrangeversion' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'] },
+ 'paintcorrectionmaskreferencepoint' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksReferencePoint'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksReferencePoint'] },
+ 'paintcorrectionmaskright' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRight'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRight'] },
+ 'paintcorrectionmaskroundness' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRoundness'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRoundness'] },
+ 'paintcorrectionmasksizex' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeX'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeX'] },
+ 'paintcorrectionmasksizey' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeY'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeY'] },
+ 'paintcorrectionmasktop' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksTop'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksTop'] },
+ 'paintcorrectionmaskvalue' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskValue'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskValue'] },
+ 'paintcorrectionmaskversion' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksVersion'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksVersion'] },
+ 'paintcorrectionmaskwhat' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksWhat'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksWhat'] },
+ 'paintcorrectionmaskwholeimagearea' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksWholeImageArea'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksWholeImageArea'] },
+ 'paintcorrectionmaskx' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksX'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksX'] },
+ 'paintcorrectionmasky' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksY'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksY'] },
+ 'paintcorrectionmaskzerox' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroX'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroX'] },
+ 'paintcorrectionmaskzeroy' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroY'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroY'] },
+ 'paintcorrectionmoire' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalMoire'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalMoire'] },
+ 'paintcorrectionrangemask' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMask'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMask'] },
+ 'paintcorrectionrangemaskareamodels' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModels'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModels'] },
+ 'paintcorrectionrangemaskareamodelscolorsampleinfo' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] },
+ 'paintcorrectionrangemaskareamodelscomponents' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'] },
+ 'paintcorrectionrangemaskcoloramount' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskColorAmount'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskColorAmount'] },
+ 'paintcorrectionrangemaskdepthfeather' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthFeather'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthFeather'] },
+ 'paintcorrectionrangemaskdepthmax' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthMax'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthMax'] },
+ 'paintcorrectionrangemaskdepthmin' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthMin'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthMin'] },
+ 'paintcorrectionrangemaskinvert' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskInvert'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskInvert'] },
+ 'paintcorrectionrangemasklumfeather' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumFeather'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumFeather'] },
+ 'paintcorrectionrangemaskluminancedepthsampleinfo' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'] },
+ 'paintcorrectionrangemasklummax' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumMax'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumMax'] },
+ 'paintcorrectionrangemasklummin' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumMin'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumMin'] },
+ 'paintcorrectionrangemasklumrange' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumRange'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumRange'] },
+ 'paintcorrectionrangemasksampletype' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskSampleType'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskSampleType'] },
+ 'paintcorrectionrangemasktype' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskType'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskType'] },
+ 'paintcorrectionrangemaskversion' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskVersion'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskVersion'] },
+ 'paintcorrectionsaturation' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSaturation'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSaturation'] },
+ 'paintcorrectionshadows2012' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalShadows2012'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalShadows2012'] },
+ 'paintcorrectionsharpness' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSharpness'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSharpness'] },
+ 'paintcorrectiontemperature' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTemperature'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTemperature'] },
+ 'paintcorrectiontexture' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTexture'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTexture'] },
+ 'paintcorrectiontint' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTint'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTint'] },
+ 'paintcorrectiontoninghue' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalToningHue'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalToningHue'] },
+ 'paintcorrectiontoningsaturation' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalToningSaturation'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalToningSaturation'] },
+ 'paintcorrectionwhat' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsWhat'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsWhat'] },
+ 'paintcorrectionwhites2012' => { 500 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalWhites2012'], 502 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalWhites2012'] },
+ 'panasonicdatetime' => { 343 => 0x0 },
+ 'panasonicexifversion' => { 340 => 0x26 },
+ 'panasonicimageheight' => { 340 => 0x4c },
+ 'panasonicimagewidth' => { 340 => 0x4b },
+ 'panasonicrawversion' => { 345 => 0x1 },
'panasonictitle' => { 119 => 0xc6d2 },
'panasonictitle2' => { 119 => 0xc6d3 },
'panoramaangle' => { 127 => 0x1153 },
- 'panoramacropbottom' => { 443 => 0x7 },
- 'panoramacropleft' => { 443 => 0x4 },
- 'panoramacropright' => { 443 => 0x6 },
- 'panoramacroptop' => { 443 => 0x5 },
- 'panoramadirection' => { 72 => 0x5, 127 => 0x1154, 443 => 0x3 },
- 'panoramaframeheight' => { 443 => 0x9 },
+ 'panoramacropbottom' => { 446 => 0x7 },
+ 'panoramacropleft' => { 446 => 0x4 },
+ 'panoramacropright' => { 446 => 0x6 },
+ 'panoramacroptop' => { 446 => 0x5 },
+ 'panoramadirection' => { 72 => 0x5, 127 => 0x1154, 446 => 0x3 },
+ 'panoramaframeheight' => { 446 => 0x9 },
'panoramaframenumber' => { 72 => 0x2 },
- 'panoramaframewidth' => { 443 => 0x8 },
- 'panoramafullheight' => { 443 => 0x2 },
- 'panoramafullwidth' => { 443 => 0x1 },
- 'panoramamode' => { 140 => 0x3c, 314 => 0x601 },
- 'panoramasize3d' => { 426 => 0x38 },
- 'panoramasourceheight' => { 443 => 0xb },
- 'panoramasourcewidth' => { 443 => 0xa },
+ 'panoramaframewidth' => { 446 => 0x8 },
+ 'panoramafullheight' => { 446 => 0x2 },
+ 'panoramafullwidth' => { 446 => 0x1 },
+ 'panoramamode' => { 140 => 0x3c, 317 => 0x601 },
+ 'panoramasize3d' => { 429 => 0x38 },
+ 'panoramasourceheight' => { 446 => 0xb },
+ 'panoramasourcewidth' => { 446 => 0xa },
'panoramicstitchcameramotion' => { 176 => 'PanoramicStitchCameraMotion', 177 => 0x1 },
'panoramicstitchmaptype' => { 176 => 'PanoramicStitchMapType', 177 => 0x2 },
'panoramicstitchphi0' => { 176 => 'PanoramicStitchPhi0', 177 => 0x5 },
@@ -5204,38 +5212,38 @@ my %tagLookup = (
'panoramicstitchtheta0' => { 176 => 'PanoramicStitchTheta0', 177 => 0x3 },
'panoramicstitchtheta1' => { 176 => 'PanoramicStitchTheta1', 177 => 0x4 },
'panoramicstitchversion' => { 177 => 0x0 },
- 'pantry' => { 526 => 'Pantry' },
- 'pantryinstanceid' => { 526 => [\'Pantry','PantryInstanceID'] },
- 'parallax' => { 127 => 0xb211, 313 => 0x28 },
- 'parametricdarks' => { 496 => 'ParametricDarks', 498 => 'ParametricDarks' },
- 'parametrichighlights' => { 496 => 'ParametricHighlights', 498 => 'ParametricHighlights' },
- 'parametrichighlightsplit' => { 496 => 'ParametricHighlightSplit', 498 => 'ParametricHighlightSplit' },
- 'parametriclights' => { 496 => 'ParametricLights', 498 => 'ParametricLights' },
- 'parametricmidtonesplit' => { 496 => 'ParametricMidtoneSplit', 498 => 'ParametricMidtoneSplit' },
- 'parametricshadows' => { 496 => 'ParametricShadows', 498 => 'ParametricShadows' },
- 'parametricshadowsplit' => { 496 => 'ParametricShadowSplit', 498 => 'ParametricShadowSplit' },
+ 'pantry' => { 530 => 'Pantry' },
+ 'pantryinstanceid' => { 530 => [\'Pantry','PantryInstanceID'] },
+ 'parallax' => { 127 => 0xb211, 316 => 0x28 },
+ 'parametricdarks' => { 500 => 'ParametricDarks', 502 => 'ParametricDarks' },
+ 'parametrichighlights' => { 500 => 'ParametricHighlights', 502 => 'ParametricHighlights' },
+ 'parametrichighlightsplit' => { 500 => 'ParametricHighlightSplit', 502 => 'ParametricHighlightSplit' },
+ 'parametriclights' => { 500 => 'ParametricLights', 502 => 'ParametricLights' },
+ 'parametricmidtonesplit' => { 500 => 'ParametricMidtoneSplit', 502 => 'ParametricMidtoneSplit' },
+ 'parametricshadows' => { 500 => 'ParametricShadows', 502 => 'ParametricShadows' },
+ 'parametricshadowsplit' => { 500 => 'ParametricShadowSplit', 502 => 'ParametricShadowSplit' },
'parentalrating' => { 179 => 'WM/ParentalRating' },
- 'parentid' => { 510 => 'parentId' },
- 'parentmediaeventid' => { 486 => 'ParentMediaEventID' },
- 'parentmeid' => { 486 => 'ParentMEID' },
- 'parentproductid' => { 389 => '@ppi' },
- 'parentreference1' => { 508 => [\'TagStructure','TagStructureParentReference'] },
- 'parentreference2' => { 508 => [\'TagStructure','TagStructureSubLabelsParentReference'] },
- 'parentreference3' => { 508 => [\'TagStructure','TagStructureSubLabelsSubLabelsParentReference'] },
- 'parentreference4' => { 508 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsParentReference'] },
- 'parentreference5' => { 508 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsParentReference'] },
- 'parentreference6' => { 508 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsParentReference'] },
- 'parentshorttitle' => { 389 => '@PST' },
- 'parenttitle' => { 389 => '@pti' },
+ 'parentid' => { 514 => 'parentId' },
+ 'parentmediaeventid' => { 490 => 'ParentMediaEventID' },
+ 'parentmeid' => { 490 => 'ParentMEID' },
+ 'parentproductid' => { 392 => '@ppi' },
+ 'parentreference1' => { 512 => [\'TagStructure','TagStructureParentReference'] },
+ 'parentreference2' => { 512 => [\'TagStructure','TagStructureSubLabelsParentReference'] },
+ 'parentreference3' => { 512 => [\'TagStructure','TagStructureSubLabelsSubLabelsParentReference'] },
+ 'parentreference4' => { 512 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsParentReference'] },
+ 'parentreference5' => { 512 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsParentReference'] },
+ 'parentreference6' => { 512 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsParentReference'] },
+ 'parentshorttitle' => { 392 => '@PST' },
+ 'parenttitle' => { 392 => '@pti' },
'partialactivecols1' => { 138 => 0x17e8 },
'partialactivecols2' => { 138 => 0x17f2 },
'partialactiverows1' => { 138 => 0x17fc },
'partialactiverows2' => { 138 => 0x1806 },
- 'partofcompilation' => { 525 => 'partOfCompilation' },
- 'patientbirthdate' => { 474 => 'PatientDOB' },
- 'patientid' => { 474 => 'PatientID' },
- 'patientname' => { 474 => 'PatientName' },
- 'patientsex' => { 474 => 'PatientSex' },
+ 'partofcompilation' => { 529 => 'partOfCompilation' },
+ 'patientbirthdate' => { 478 => 'PatientDOB' },
+ 'patientid' => { 478 => 'PatientID' },
+ 'patientname' => { 478 => 'PatientName' },
+ 'patientsex' => { 478 => 'PatientSex' },
'patternareaheight' => { 138 => 0x963 },
'patternareawidth' => { 138 => 0x962 },
'patterncorrectionfactorscale' => { 138 => 0x969 },
@@ -5247,52 +5255,52 @@ my %tagLookup = (
'patternimagerwidth' => { 138 => 0x960 },
'patternx' => { 138 => 0x966 },
'patterny' => { 138 => 0x967 },
- 'pdfversion' => { 512 => 'PDFVersion' },
- 'pentaximagesize' => { 372 => 0x9 },
- 'pentaxmodelid' => { 352 => 0x0, 372 => 0x5 },
- 'pentaxmodeltype' => { 372 => 0x1 },
- 'pentaxversion' => { 372 => 0x0 },
- 'people' => { 477 => 'People', 489 => 'People' },
+ 'pdfversion' => { 516 => 'PDFVersion' },
+ 'pentaximagesize' => { 375 => 0x9 },
+ 'pentaxmodelid' => { 355 => 0x0, 375 => 0x5 },
+ 'pentaxmodeltype' => { 375 => 0x1 },
+ 'pentaxversion' => { 375 => 0x0 },
+ 'people' => { 481 => 'People', 493 => 'People' },
'perchannelblacklevel' => { 41 => 0x157, 42 => 0x16b, 44 => 0xc4, 45 => [0x2b4,0x2cb,0x2cf], 46 => [0x108,0x14d], 47 => 0x1df, 48 => [0x1f8,0x2d8], 49 => [0x22c,0x30a], 50 => 0x149 },
- 'performer' => { 389 => 'perf', 397 => 'perf' },
- 'performerkeywords' => { 397 => "\xa9prk" },
- 'performers' => { 397 => "\xa9prf" },
- 'performerurl' => { 397 => "\xa9prl" },
+ 'performer' => { 392 => 'perf', 400 => 'perf' },
+ 'performerkeywords' => { 400 => "\xa9prk" },
+ 'performers' => { 400 => "\xa9prf" },
+ 'performerurl' => { 400 => "\xa9prl" },
'period' => { 179 => 'WM/Period' },
- 'peripheralillumcentralradius' => { 472 => 0x8030 },
- 'peripheralillumcentralvalue' => { 472 => 0x8031 },
+ 'peripheralillumcentralradius' => { 476 => 0x8030 },
+ 'peripheralillumcentralvalue' => { 476 => 0x8031 },
'peripheralillumination' => { 103 => 0x20702, 109 => 0x68 },
- 'peripheralilluminationcorr' => { 62 => 0x1, 362 => 0x2 },
+ 'peripheralilluminationcorr' => { 62 => 0x1, 365 => 0x2 },
'peripheralilluminationon' => { 103 => '0x20702.0', 109 => 0x64 },
- 'peripheralillumperiphvalue' => { 472 => 0x8032 },
+ 'peripheralillumperiphvalue' => { 476 => 0x8032 },
'peripherallighting' => { 79 => 0x2, 127 => 0x3804 },
'peripherallightingsetting' => { 80 => 0x5 },
'peripherallightingvalue' => { 79 => 0x6 },
- 'permissions' => { 518 => 'permissions' },
- 'permits' => { 494 => 'permits' },
- 'person' => { 515 => 'person' },
- 'personality' => { 486 => 'Personality' },
- 'personheard' => { 510 => 'PersonHeard' },
- 'personheardidentifier' => { 510 => [\'PersonHeard','PersonHeardIdentifier'] },
- 'personheardname' => { 510 => [\'PersonHeard','PersonHeardName'] },
- 'personinimage' => { 510 => 'PersonInImage' },
- 'personinimagecharacteristic' => { 510 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristic'] },
- 'personinimagecvtermcvid' => { 510 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvId'] },
- 'personinimagecvtermid' => { 510 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermId'] },
- 'personinimagecvtermname' => { 510 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermName'] },
- 'personinimagecvtermrefinedabout' => { 510 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermRefinedAbout'] },
- 'personinimagedescription' => { 510 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonDescription'] },
- 'personinimageid' => { 510 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonId'] },
- 'personinimagename' => { 510 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonName'] },
- 'personinimagewdetails' => { 510 => 'PersonInImageWDetails' },
- 'perspectiveaspect' => { 496 => 'PerspectiveAspect', 498 => 'PerspectiveAspect' },
- 'perspectivehorizontal' => { 496 => 'PerspectiveHorizontal', 498 => 'PerspectiveHorizontal' },
- 'perspectiverotate' => { 496 => 'PerspectiveRotate', 498 => 'PerspectiveRotate' },
- 'perspectivescale' => { 496 => 'PerspectiveScale', 498 => 'PerspectiveScale' },
- 'perspectiveupright' => { 496 => 'PerspectiveUpright', 498 => 'PerspectiveUpright' },
- 'perspectivevertical' => { 496 => 'PerspectiveVertical', 498 => 'PerspectiveVertical' },
- 'perspectivex' => { 496 => 'PerspectiveX', 498 => 'PerspectiveX' },
- 'perspectivey' => { 496 => 'PerspectiveY', 498 => 'PerspectiveY' },
+ 'permissions' => { 522 => 'permissions' },
+ 'permits' => { 498 => 'permits' },
+ 'person' => { 519 => 'person' },
+ 'personality' => { 490 => 'Personality' },
+ 'personheard' => { 514 => 'PersonHeard' },
+ 'personheardidentifier' => { 514 => [\'PersonHeard','PersonHeardIdentifier'] },
+ 'personheardname' => { 514 => [\'PersonHeard','PersonHeardName'] },
+ 'personinimage' => { 514 => 'PersonInImage' },
+ 'personinimagecharacteristic' => { 514 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristic'] },
+ 'personinimagecvtermcvid' => { 514 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvId'] },
+ 'personinimagecvtermid' => { 514 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermId'] },
+ 'personinimagecvtermname' => { 514 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermName'] },
+ 'personinimagecvtermrefinedabout' => { 514 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermRefinedAbout'] },
+ 'personinimagedescription' => { 514 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonDescription'] },
+ 'personinimageid' => { 514 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonId'] },
+ 'personinimagename' => { 514 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonName'] },
+ 'personinimagewdetails' => { 514 => 'PersonInImageWDetails' },
+ 'perspectiveaspect' => { 500 => 'PerspectiveAspect', 502 => 'PerspectiveAspect' },
+ 'perspectivehorizontal' => { 500 => 'PerspectiveHorizontal', 502 => 'PerspectiveHorizontal' },
+ 'perspectiverotate' => { 500 => 'PerspectiveRotate', 502 => 'PerspectiveRotate' },
+ 'perspectivescale' => { 500 => 'PerspectiveScale', 502 => 'PerspectiveScale' },
+ 'perspectiveupright' => { 500 => 'PerspectiveUpright', 502 => 'PerspectiveUpright' },
+ 'perspectivevertical' => { 500 => 'PerspectiveVertical', 502 => 'PerspectiveVertical' },
+ 'perspectivex' => { 500 => 'PerspectiveX', 502 => 'PerspectiveX' },
+ 'perspectivey' => { 500 => 'PerspectiveY', 502 => 'PerspectiveY' },
'pf0customfuncregistration' => { 92 => 0x1 },
'pf10retainprogramshift' => { 92 => 0xb },
'pf13drivepriority' => { 92 => 0xe },
@@ -5349,116 +5357,115 @@ my %tagLookup = (
'phasedetectaf' => { 193 => 0x6 },
'phonenumber' => { 157 => 'Phone' },
'photoeffect' => { 34 => 0x28 },
- 'photoeffecthistoryxml' => { 289 => 0xe9651831 },
- 'photoeffects' => { 289 => 0xab5eca5e },
- 'photoeffectsblue' => { 291 => 0x8 },
- 'photoeffectsgreen' => { 291 => 0x6 },
- 'photoeffectsred' => { 291 => 0x4 },
- 'photoeffectstype' => { 291 => 0x0 },
+ 'photoeffecthistoryxml' => { 290 => 0xe9651831 },
+ 'photoeffects' => { 290 => 0xab5eca5e },
+ 'photoeffectsblue' => { 292 => 0x8 },
+ 'photoeffectsgreen' => { 292 => 0x6 },
+ 'photoeffectsred' => { 292 => 0x4 },
+ 'photoeffectstype' => { 292 => 0x0 },
'photographer' => { 119 => 0xa437 },
- 'photographicsensitivity' => { 503 => 'PhotographicSensitivity' },
+ 'photographicsensitivity' => { 507 => 'PhotographicSensitivity' },
'photoidentifier' => { 1 => 0x2b },
- 'photoinfoplayback' => { 296 => '17.6', 305 => '33.6' },
- 'photometricinterpretation' => { 119 => 0x106, 521 => 'PhotometricInterpretation' },
- 'photoshootingmenubank' => { 239 => 0x112, 240 => 0x122, 241 => 0x122, 242 => 0x24, 260 => 0x0 },
- 'photoshootingmenubankimagearea' => { 237 => 0x6dd, 239 => 0x134, 240 => 0x148, 241 => 0x148, 260 => '7.1' },
- 'photoshopbgrthumbnail' => { 386 => 0x409 },
- 'photoshopquality' => { 385 => 0x0 },
- 'photoshopthumbnail' => { 386 => 0x40c },
- 'photostyle' => { 337 => 0x89 },
- 'picasawebgphotoid' => { 501 => 'picasawebGPhotoId' },
- 'picklabel' => { 501 => 'PickLabel' },
- 'pictinfo' => { 413 => 0x208 },
- 'picturecontrol' => { 289 => 0xe2173c47 },
- 'picturecontrolactive' => { 292 => 0x0 },
- 'picturecontroladjust' => { 248 => 0x30, 249 => 0x30, 250 => 0x36 },
- 'picturecontrolbase' => { 248 => 0x18, 249 => 0x18, 250 => 0x1c },
+ 'photoinfoplayback' => { 297 => '17.6', 306 => '33.6' },
+ 'photometricinterpretation' => { 119 => 0x106, 525 => 'PhotometricInterpretation' },
+ 'photoshootingmenubank' => { 239 => 0x11e, 240 => 0x112, 241 => 0x122, 242 => 0x122, 243 => 0x24, 261 => 0x0 },
+ 'photoshootingmenubankimagearea' => { 237 => 0x6dd, 239 => 0x144, 240 => 0x134, 241 => 0x148, 242 => 0x148, 261 => '7.1' },
+ 'photoshopbgrthumbnail' => { 389 => 0x409 },
+ 'photoshopquality' => { 388 => 0x0 },
+ 'photoshopthumbnail' => { 389 => 0x40c },
+ 'photostyle' => { 340 => 0x89 },
+ 'picasawebgphotoid' => { 505 => 'picasawebGPhotoId' },
+ 'picklabel' => { 505 => 'PickLabel' },
+ 'pictinfo' => { 416 => 0x208 },
+ 'picturecontrol' => { 290 => 0xe2173c47 },
+ 'picturecontrolactive' => { 293 => 0x0 },
+ 'picturecontroladjust' => { 249 => 0x30, 250 => 0x30, 251 => 0x36 },
+ 'picturecontrolbase' => { 249 => 0x18, 250 => 0x18, 251 => 0x1c },
'picturecontroldata' => { 234 => [0xbd,0x23] },
- 'picturecontrolmode' => { 292 => 0x13 },
- 'picturecontrolname' => { 248 => 0x4, 249 => 0x4, 250 => 0x8 },
- 'picturecontrolquickadjust' => { 248 => 0x31, 249 => 0x31, 250 => 0x37 },
- 'pictureeffect' => { 437 => 0x200e },
- 'pictureeffect2' => { 446 => 0x1163, 447 => 0x1167, 448 => 0x1143, 449 => 0x11bf, 450 => 0x119b, 451 => 0x1053, 452 => 0x24b, 453 => 0x24b, 454 => 0x23c, 468 => 0x46 },
+ 'picturecontrolmode' => { 293 => 0x13 },
+ 'picturecontrolname' => { 249 => 0x4, 250 => 0x4, 251 => 0x8 },
+ 'picturecontrolquickadjust' => { 249 => 0x31, 250 => 0x31, 251 => 0x37 },
+ 'pictureeffect' => { 440 => 0x200e },
+ 'pictureeffect2' => { 449 => 0x1163, 450 => 0x1167, 451 => 0x1143, 452 => 0x11bf, 453 => 0x119b, 454 => 0x1053, 455 => 0x24b, 456 => 0x24b, 457 => 0x23c, 472 => 0x46 },
'picturefinish' => { 182 => 0x71 },
- 'picturemode' => { 127 => 0x1031, 314 => 0x520, 372 => [0xb,0x33], 414 => 0x3d },
- 'picturemode2' => { 353 => 0x0 },
- 'picturemodebwfilter' => { 314 => 0x525 },
- 'picturemodecontrast' => { 314 => 0x523 },
- 'picturemodeeffect' => { 314 => 0x52d },
- 'picturemodehue' => { 314 => 0x522 },
- 'picturemodesaturation' => { 314 => 0x521 },
- 'picturemodesharpness' => { 314 => 0x524 },
- 'picturemodetone' => { 314 => 0x526 },
- 'pictureprofile' => { 446 => [0x115e,0x115f], 447 => [0x1162,0x1163], 448 => [0x113e,0x113f], 449 => [0x11ba,0x11bb], 450 => [0x1196,0x1197], 451 => [0x104e,0x104f], 452 => [0x246,0x247], 453 => [0x246,0x247], 454 => [0x237,0x238] },
+ 'picturemode' => { 127 => 0x1031, 317 => 0x520, 375 => [0xb,0x33], 417 => 0x3d },
+ 'picturemode2' => { 356 => 0x0 },
+ 'picturemodebwfilter' => { 317 => 0x525 },
+ 'picturemodecontrast' => { 317 => 0x523 },
+ 'picturemodeeffect' => { 317 => 0x52d },
+ 'picturemodehue' => { 317 => 0x522 },
+ 'picturemodesaturation' => { 317 => 0x521 },
+ 'picturemodesharpness' => { 317 => 0x524 },
+ 'picturemodetone' => { 317 => 0x526 },
+ 'pictureprofile' => { 449 => [0x115e,0x115f], 450 => [0x1162,0x1163], 451 => [0x113e,0x113f], 452 => [0x11ba,0x11bb], 453 => [0x1196,0x1197], 454 => [0x104e,0x104f], 455 => [0x246,0x247], 456 => [0x246,0x247], 457 => [0x237,0x238] },
'picturestyle' => { 8 => [0x4b,0x51], 9 => 0xf4, 10 => 0x6c, 11 => 0x86, 12 => 0x73, 16 => 0xab, 17 => 0xa7, 18 => 0xb0, 19 => 0x6c, 20 => 0xa7, 21 => 0xf4, 22 => 0xb3, 24 => 0xf4, 25 => 0xfa, 27 => 0x169, 74 => 0xa, 103 => 0x20301, 109 => 0x2 },
'picturestylepc' => { 64 => 0x4009 },
'picturestyleuserdef' => { 64 => 0x4008 },
- 'picturewizard' => { 411 => 0x21 },
- 'picturewizardcolor' => { 410 => 0x1 },
- 'picturewizardcontrast' => { 410 => 0x4 },
- 'picturewizardmode' => { 410 => 0x0 },
- 'picturewizardsaturation' => { 410 => 0x2 },
- 'picturewizardsharpness' => { 410 => 0x3 },
+ 'picturewizard' => { 414 => 0x21 },
+ 'picturewizardcolor' => { 413 => 0x1 },
+ 'picturewizardcontrast' => { 413 => 0x4 },
+ 'picturewizardmode' => { 413 => 0x0 },
+ 'picturewizardsaturation' => { 413 => 0x2 },
+ 'picturewizardsharpness' => { 413 => 0x3 },
'pipelineversion' => { 176 => 'PipelineVersion' },
- 'pitch' => { 115 => 0x6, 297 => '4.1', 309 => '4.1', 397 => ['ptch',"\xa9fpt"] },
- 'pitchangle' => { 246 => 0x4, 314 => 0x904, 337 => 0x91, 371 => 0x2, 409 => 0x1 },
- 'pitchshift' => { 391 => 'player.movie.audio.pitchshift' },
- 'pixelaspectratio' => { 390 => 'pasp' },
+ 'pitch' => { 115 => 0x6, 298 => '4.1', 310 => '4.1', 400 => ['ptch',"\xa9fpt"] },
+ 'pitchangle' => { 247 => 0x4, 317 => 0x904, 340 => 0x91, 374 => 0x2, 412 => 0x1 },
+ 'pitchshift' => { 394 => 'player.movie.audio.pitchshift' },
+ 'pixelaspectratio' => { 393 => 'pasp' },
'pixelclockfrequency' => { 138 => 0x40b },
'pixelcorrectionoffset' => { 138 => 0x972 },
'pixelcorrectionscale' => { 138 => 0x971 },
'pixelscale' => { 119 => 0x830e },
- 'pixelshiftinfo' => { 437 => 0x202f },
+ 'pixelshiftinfo' => { 440 => 0x202f },
'pixelshiftoffset' => { 127 => 0x1106 },
- 'pixelshiftresolution' => { 373 => 0x0 },
+ 'pixelshiftresolution' => { 376 => 0x0 },
'pixelshiftshots' => { 127 => 0x1105 },
- 'pixelsperunitx' => { 326 => 0x0 },
- 'pixelsperunity' => { 326 => 0x4 },
- 'pixelunits' => { 326 => 0x8 },
- 'planarconfiguration' => { 119 => 0x11c, 521 => 'PlanarConfiguration' },
- 'plane' => { 475 => [\'Planes','PlanesPlane'] },
- 'planeboundary' => { 475 => [\'Planes','PlanesPlaneBoundary'] },
- 'planeboundaryvertexcount' => { 475 => [\'Planes','PlanesPlaneBoundaryVertexCount'] },
- 'planeextentx' => { 475 => [\'Planes','PlanesPlaneExtentX'] },
- 'planeextentz' => { 475 => [\'Planes','PlanesPlaneExtentZ'] },
- 'planepose' => { 475 => [\'Planes','PlanesPlanePose'] },
- 'planeposepositionx' => { 475 => [\'Planes','PlanesPlanePosePositionX'] },
- 'planeposepositiony' => { 475 => [\'Planes','PlanesPlanePosePositionY'] },
- 'planeposepositionz' => { 475 => [\'Planes','PlanesPlanePosePositionZ'] },
- 'planeposerotationw' => { 475 => [\'Planes','PlanesPlanePoseRotationW'] },
- 'planeposerotationx' => { 475 => [\'Planes','PlanesPlanePoseRotationX'] },
- 'planeposerotationy' => { 475 => [\'Planes','PlanesPlanePoseRotationY'] },
- 'planeposerotationz' => { 475 => [\'Planes','PlanesPlanePoseRotationZ'] },
- 'planeposetimestamp' => { 475 => [\'Planes','PlanesPlanePoseTimestamp'] },
- 'planes' => { 475 => 'Planes' },
- 'planningref' => { 510 => 'PlanningRef' },
- 'planningrefidentifier' => { 510 => [\'PlanningRef','PlanningRefIdentifier'] },
- 'planningrefname' => { 510 => [\'PlanningRef','PlanningRefName'] },
- 'planningrefrole' => { 510 => [\'PlanningRef','PlanningRefRole'] },
- 'platenames' => { 530 => 'PlateNames' },
- 'platform' => { 515 => 'platform' },
- 'playallframes' => { 397 => 'AllF' },
- 'playbackbutton' => { 241 => 0x808 },
- 'playbackbuttonplaybackmode' => { 241 => 0x814 },
- 'playbackflickdown' => { 312 => 0x159 },
- 'playbackflickup' => { 312 => 0x155 },
- 'playbackmenustime' => { 301 => '20.1', 302 => '21.1', 303 => '21.1' },
- 'playbackmonitorofftime' => { 296 => '25.2', 297 => '36.1', 299 => '36.1', 300 => '36.1', 304 => '35.1', 305 => '8.1', 306 => '35.1', 309 => '36.1', 310 => '36.1', 311 => '21.1', 312 => 0x33 },
- 'playbackzoom' => { 297 => '37.1' },
+ 'pixelsperunitx' => { 329 => 0x0 },
+ 'pixelsperunity' => { 329 => 0x4 },
+ 'pixelunits' => { 329 => 0x8 },
+ 'planarconfiguration' => { 119 => 0x11c, 525 => 'PlanarConfiguration' },
+ 'plane' => { 479 => [\'Planes','PlanesPlane'] },
+ 'planeboundary' => { 479 => [\'Planes','PlanesPlaneBoundary'] },
+ 'planeboundaryvertexcount' => { 479 => [\'Planes','PlanesPlaneBoundaryVertexCount'] },
+ 'planeextentx' => { 479 => [\'Planes','PlanesPlaneExtentX'] },
+ 'planeextentz' => { 479 => [\'Planes','PlanesPlaneExtentZ'] },
+ 'planepose' => { 479 => [\'Planes','PlanesPlanePose'] },
+ 'planeposepositionx' => { 479 => [\'Planes','PlanesPlanePosePositionX'] },
+ 'planeposepositiony' => { 479 => [\'Planes','PlanesPlanePosePositionY'] },
+ 'planeposepositionz' => { 479 => [\'Planes','PlanesPlanePosePositionZ'] },
+ 'planeposerotationw' => { 479 => [\'Planes','PlanesPlanePoseRotationW'] },
+ 'planeposerotationx' => { 479 => [\'Planes','PlanesPlanePoseRotationX'] },
+ 'planeposerotationy' => { 479 => [\'Planes','PlanesPlanePoseRotationY'] },
+ 'planeposerotationz' => { 479 => [\'Planes','PlanesPlanePoseRotationZ'] },
+ 'planeposetimestamp' => { 479 => [\'Planes','PlanesPlanePoseTimestamp'] },
+ 'planes' => { 479 => 'Planes' },
+ 'planningref' => { 514 => 'PlanningRef' },
+ 'planningrefidentifier' => { 514 => [\'PlanningRef','PlanningRefIdentifier'] },
+ 'planningrefname' => { 514 => [\'PlanningRef','PlanningRefName'] },
+ 'planningrefrole' => { 514 => [\'PlanningRef','PlanningRefRole'] },
+ 'platenames' => { 534 => 'PlateNames' },
+ 'platform' => { 519 => 'platform' },
+ 'playallframes' => { 400 => 'AllF' },
+ 'playbackbutton' => { 242 => 0x808 },
+ 'playbackbuttonplaybackmode' => { 242 => 0x814 },
+ 'playbackflickdown' => { 313 => 0x159, 314 => 0x159, 315 => 0x171 },
+ 'playbackflickup' => { 313 => 0x155, 314 => 0x155, 315 => 0x16d },
+ 'playbackmenustime' => { 302 => '20.1', 303 => '21.1', 304 => '21.1' },
+ 'playbackmonitorofftime' => { 297 => '25.2', 298 => '36.1', 300 => '36.1', 301 => '36.1', 305 => '35.1', 306 => '8.1', 307 => '35.1', 310 => '36.1', 311 => '36.1', 312 => '21.1', 313 => 0x33, 314 => 0x33, 315 => 0x33 },
+ 'playbackzoom' => { 298 => '37.1' },
'playdisplay' => { 184 => 0x4e },
- 'playerversion' => { 391 => 'player.version' },
- 'playgap' => { 389 => 'pgap' },
- 'playlistid' => { 389 => 'plID' },
- 'playmode' => { 397 => 'SDLN' },
- 'playselection' => { 397 => 'SelO' },
- 'plusversion' => { 324 => 'Version' },
- 'pmversion' => { 384 => 'PMVersion' },
- 'pngwarning' => { 327 => 'Warning' },
- 'podcast' => { 389 => 'pcst' },
- 'podcasturl' => { 389 => 'purl' },
+ 'playerversion' => { 394 => 'player.version' },
+ 'playgap' => { 392 => 'pgap' },
+ 'playmode' => { 400 => 'SDLN' },
+ 'playselection' => { 400 => 'SelO' },
+ 'plusversion' => { 327 => 'Version' },
+ 'pmversion' => { 387 => 'PMVersion' },
+ 'pngwarning' => { 330 => 'Warning' },
+ 'podcast' => { 392 => 'pcst' },
+ 'podcasturl' => { 392 => 'purl' },
'poilevel' => { 233 => 0x8 },
- 'portraitimpressionbalance' => { 251 => 0xa0 },
- 'portraitnote' => { 479 => 'PortraitNote' },
+ 'portraitimpressionbalance' => { 239 => 0x26e, 252 => 0xa0 },
+ 'portraitnote' => { 483 => 'PortraitNote' },
'portraitoutputhighlightpoint' => { 109 => 0x1d },
'portraitoutputshadowpoint' => { 109 => 0x1e },
'portraitrawcolortone' => { 109 => 0x16 },
@@ -5471,112 +5478,112 @@ my %tagLookup = (
'portraitrawshadowpoint' => { 109 => 0x1c },
'portraitrawsharpness' => { 109 => 0x1a },
'portraitrefiner' => { 113 => 0x302b },
- 'portraitrequest' => { 479 => 'PortraitRequest' },
+ 'portraitrequest' => { 483 => 'PortraitRequest' },
'portraitunsharpmaskfineness' => { 109 => 0x9a },
'portraitunsharpmaskstrength' => { 109 => 0x98 },
'portraitunsharpmaskthreshold' => { 109 => 0x9c },
- 'portraitversion' => { 479 => 'PortraitVersion' },
- 'pose' => { 475 => 'Pose' },
- 'poseheadingdegrees' => { 484 => 'PoseHeadingDegrees' },
- 'posepitchdegrees' => { 484 => 'PosePitchDegrees' },
- 'posepositionx' => { 475 => [\'Pose','PosePositionX'] },
- 'posepositiony' => { 475 => [\'Pose','PosePositionY'] },
- 'posepositionz' => { 475 => [\'Pose','PosePositionZ'] },
- 'poserolldegrees' => { 484 => 'PoseRollDegrees' },
- 'poserotationw' => { 475 => [\'Pose','PoseRotationW'] },
- 'poserotationx' => { 475 => [\'Pose','PoseRotationX'] },
- 'poserotationy' => { 475 => [\'Pose','PoseRotationY'] },
- 'poserotationz' => { 475 => [\'Pose','PoseRotationZ'] },
- 'posetimestamp' => { 475 => [\'Pose','PoseTimestamp'] },
- 'positiondescriptor' => { 514 => 'positionDescriptor' },
+ 'portraitversion' => { 483 => 'PortraitVersion' },
+ 'pose' => { 479 => 'Pose' },
+ 'poseheadingdegrees' => { 488 => 'PoseHeadingDegrees' },
+ 'posepitchdegrees' => { 488 => 'PosePitchDegrees' },
+ 'posepositionx' => { 479 => [\'Pose','PosePositionX'] },
+ 'posepositiony' => { 479 => [\'Pose','PosePositionY'] },
+ 'posepositionz' => { 479 => [\'Pose','PosePositionZ'] },
+ 'poserolldegrees' => { 488 => 'PoseRollDegrees' },
+ 'poserotationw' => { 479 => [\'Pose','PoseRotationW'] },
+ 'poserotationx' => { 479 => [\'Pose','PoseRotationX'] },
+ 'poserotationy' => { 479 => [\'Pose','PoseRotationY'] },
+ 'poserotationz' => { 479 => [\'Pose','PoseRotationZ'] },
+ 'posetimestamp' => { 479 => [\'Pose','PoseTimestamp'] },
+ 'positiondescriptor' => { 518 => 'positionDescriptor' },
'postalcode' => { 161 => 'PostalCode' },
- 'postcropvignetteamount' => { 496 => 'PostCropVignetteAmount', 498 => 'PostCropVignetteAmount' },
- 'postcropvignettefeather' => { 496 => 'PostCropVignetteFeather', 498 => 'PostCropVignetteFeather' },
- 'postcropvignettehighlightcontrast' => { 496 => 'PostCropVignetteHighlightContrast', 498 => 'PostCropVignetteHighlightContrast' },
- 'postcropvignettemidpoint' => { 496 => 'PostCropVignetteMidpoint', 498 => 'PostCropVignetteMidpoint' },
- 'postcropvignetteroundness' => { 496 => 'PostCropVignetteRoundness', 498 => 'PostCropVignetteRoundness' },
- 'postcropvignettestyle' => { 496 => 'PostCropVignetteStyle', 498 => 'PostCropVignetteStyle' },
- 'postfocusmerging' => { 337 => 0xbf },
- 'postreleaseburstlength' => { 240 => 0x714, 241 => 0x784 },
- 'potentialface1position' => { 434 => 0xb },
- 'potentialface2position' => { 434 => 0x15 },
- 'potentialface3position' => { 434 => 0x1f },
- 'potentialface4position' => { 434 => 0x29 },
- 'potentialface5position' => { 434 => 0x33 },
- 'potentialface6position' => { 434 => 0x3d },
- 'potentialface7position' => { 434 => 0x47 },
- 'potentialface8position' => { 434 => 0x51 },
- 'powersource' => { 351 => '0.1' },
+ 'postcropvignetteamount' => { 500 => 'PostCropVignetteAmount', 502 => 'PostCropVignetteAmount' },
+ 'postcropvignettefeather' => { 500 => 'PostCropVignetteFeather', 502 => 'PostCropVignetteFeather' },
+ 'postcropvignettehighlightcontrast' => { 500 => 'PostCropVignetteHighlightContrast', 502 => 'PostCropVignetteHighlightContrast' },
+ 'postcropvignettemidpoint' => { 500 => 'PostCropVignetteMidpoint', 502 => 'PostCropVignetteMidpoint' },
+ 'postcropvignetteroundness' => { 500 => 'PostCropVignetteRoundness', 502 => 'PostCropVignetteRoundness' },
+ 'postcropvignettestyle' => { 500 => 'PostCropVignetteStyle', 502 => 'PostCropVignetteStyle' },
+ 'postfocusmerging' => { 340 => 0xbf },
+ 'postreleaseburstlength' => { 241 => 0x714, 242 => 0x784, 313 => 0x289 },
+ 'potentialface1position' => { 437 => 0xb },
+ 'potentialface2position' => { 437 => 0x15 },
+ 'potentialface3position' => { 437 => 0x1f },
+ 'potentialface4position' => { 437 => 0x29 },
+ 'potentialface5position' => { 437 => 0x33 },
+ 'potentialface6position' => { 437 => 0x3d },
+ 'potentialface7position' => { 437 => 0x47 },
+ 'potentialface8position' => { 437 => 0x51 },
+ 'powersource' => { 354 => '0.1' },
'poweruptime' => { 234 => 0xb6 },
'preaf' => { 126 => '0.2' },
- 'precaptureframes' => { 319 => 0x300 },
+ 'precaptureframes' => { 322 => 0x300 },
'predictor' => { 119 => 0x13d },
- 'preflashreturnstrength' => { 268 => 0x28a },
- 'prefs' => { 131 => 0xdd, 384 => 'Prefs' },
+ 'preflashreturnstrength' => { 269 => 0x28a },
+ 'prefs' => { 131 => 0xdd, 387 => 'Prefs' },
'prereadfastresetcount' => { 138 => 0x187e },
- 'prereleaseburstlength' => { 240 => 0x712, 241 => 0x782 },
- 'preservedfilename' => { 526 => 'PreservedFileName' },
+ 'prereleaseburstlength' => { 241 => 0x712, 242 => 0x782, 313 => 0x287 },
+ 'preservedfilename' => { 530 => 'PreservedFileName' },
'preservedspecimen' => { 118 => 'PreservedSpecimen' },
'preservedspecimenmaterialsampleid' => { 118 => [\'PreservedSpecimen','PreservedSpecimenMaterialSampleID'] },
- 'presettype' => { 496 => 'PresetType', 498 => 'PresetType' },
- 'presetwhitebalance' => { 184 => 0x24, 472 => 0x8002 },
- 'presetwhitebalanceadj' => { 472 => 0x8014 },
- 'pressure' => { 119 => 0x9402, 503 => 'Pressure' },
+ 'presettype' => { 500 => 'PresetType', 502 => 'PresetType' },
+ 'presetwhitebalance' => { 184 => 0x24, 476 => 0x8002 },
+ 'presetwhitebalanceadj' => { 476 => 0x8014 },
+ 'pressure' => { 119 => 0x9402, 507 => 'Pressure' },
'previewapplicationname' => { 119 => 0xc716 },
'previewapplicationversion' => { 119 => 0xc717 },
- 'previewbutton' => { 296 => ['14.1','15.1'], 297 => '15.1', 299 => '15.1', 300 => '15.1', 305 => '29.1', 306 => '14.1', 309 => '15.1', 310 => '15.1' },
- 'previewbuttonplusdials' => { 296 => ['14.2','15.2'], 297 => '15.2', 299 => '43.1', 300 => '43.1', 305 => '31.2', 309 => '43.1', 310 => '43.1' },
+ 'previewbutton' => { 297 => ['14.1','15.1'], 298 => '15.1', 300 => '15.1', 301 => '15.1', 306 => '29.1', 307 => '14.1', 310 => '15.1', 311 => '15.1' },
+ 'previewbuttonplusdials' => { 297 => ['14.2','15.2'], 298 => '15.2', 300 => '43.1', 301 => '43.1', 306 => '31.2', 310 => '43.1', 311 => '43.1' },
'previewcolorspace' => { 119 => 0xc71a },
- 'previewcropbottom' => { 383 => 0xef },
- 'previewcropleft' => { 383 => 0xec },
- 'previewcropright' => { 383 => 0xee },
- 'previewcroptop' => { 383 => 0xed },
- 'previewdate' => { 395 => 0x0 },
+ 'previewcropbottom' => { 386 => 0xef },
+ 'previewcropleft' => { 386 => 0xec },
+ 'previewcropright' => { 386 => 0xee },
+ 'previewcroptop' => { 386 => 0xed },
+ 'previewdate' => { 398 => 0x0 },
'previewdatetime' => { 119 => 0xc71b },
- 'previewimage' => { 113 => 0x2000, 114 => 'Exif-PreviewImage', 120 => 'PreviewImage', 122 => 0x4, 166 => 'data', 186 => 0x81, 319 => 0x280, 335 => 0x300, 397 => 'mcvr', 437 => 0x2001 },
- 'previewimageborders' => { 372 => 0x3e },
+ 'previewimage' => { 113 => 0x2000, 114 => 'Exif-PreviewImage', 120 => 'PreviewImage', 122 => 0x4, 166 => 'data', 186 => 0x81, 322 => 0x280, 338 => 0x300, 400 => 'mcvr', 440 => 0x2001 },
+ 'previewimageborders' => { 375 => 0x3e },
'previewimageheight' => { 73 => 0x4, 142 => 0xfa58 },
- 'previewimagelength' => { 73 => 0x2, 113 => 0x3, 119 => [0x117,0x202], 186 => 0x89, 252 => 0x202, 314 => 0x102, 319 => 0x1037, 372 => 0x3, 403 => 0x1e, 408 => 0x3, 414 => [0x1b,0x1d], 427 => 0x202 },
+ 'previewimagelength' => { 73 => 0x2, 113 => 0x3, 119 => [0x117,0x202], 186 => 0x89, 253 => 0x202, 317 => 0x102, 322 => 0x1037, 375 => 0x3, 406 => 0x1e, 411 => 0x3, 417 => [0x1b,0x1d], 430 => 0x202 },
'previewimagename' => { 166 => '1Name' },
- 'previewimagesize' => { 113 => 0x2, 147 => 0x2, 166 => 'ImageSize', 372 => 0x2, 414 => [0x1c,0x1e], 437 => 0xb02c, 472 => 0x9012 },
- 'previewimagestart' => { 73 => 0x5, 113 => 0x4, 119 => [0x111,0x201], 186 => 0x88, 252 => 0x201, 314 => 0x101, 319 => 0x1036, 372 => 0x4, 403 => 0x1c, 408 => 0x2, 414 => [0x1a,0x1c], 427 => 0x201 },
+ 'previewimagesize' => { 113 => 0x2, 147 => 0x2, 166 => 'ImageSize', 375 => 0x2, 417 => [0x1c,0x1e], 440 => 0xb02c, 476 => 0x9012 },
+ 'previewimagestart' => { 73 => 0x5, 113 => 0x4, 119 => [0x111,0x201], 186 => 0x88, 253 => 0x201, 317 => 0x101, 322 => 0x1036, 375 => 0x4, 406 => 0x1c, 411 => 0x2, 417 => [0x1a,0x1c], 430 => 0x201 },
'previewimagetype' => { 166 => '0Type' },
- 'previewimagevalid' => { 314 => 0x100, 319 => 0x1035 },
+ 'previewimagevalid' => { 317 => 0x100, 322 => 0x1035 },
'previewimagewidth' => { 73 => 0x3, 142 => 0xfa57 },
'previewquality' => { 73 => 0x1 },
'previewsettingsdigest' => { 119 => 0xc719 },
'previewsettingsname' => { 119 => 0xc718 },
'primaryafpoint' => { 193 => [0x38,0x44,0x7,0x8] },
- 'primarychromaticities' => { 119 => 0x13f, 521 => 'PrimaryChromaticities' },
- 'primaryftp' => { 486 => 'PrimaryFTP' },
- 'primaryslot' => { 242 => 0x25, 260 => 0x2 },
+ 'primarychromaticities' => { 119 => 0x13f, 525 => 'PrimaryChromaticities' },
+ 'primaryftp' => { 490 => 'PrimaryFTP' },
+ 'primaryslot' => { 243 => 0x25, 261 => 0x2 },
'printim' => { 119 => 0xc4a5 },
- 'prioritysetinawb' => { 437 => 0x202b },
- 'prioritysetupshutterrelease' => { 184 => 0x1d, 424 => 0x28 },
- 'privatertkinfo' => { 488 => 'privateRTKInfo' },
+ 'prioritysetinawb' => { 440 => 0x202b },
+ 'prioritysetupshutterrelease' => { 184 => 0x1d, 427 => 0x28 },
+ 'privatertkinfo' => { 492 => 'privateRTKInfo' },
'processbordercolsleft' => { 138 => 0xc61 },
'processbordercolsright' => { 138 => 0xc62 },
'processborderrowsbottom' => { 138 => 0xc64 },
'processborderrowstop' => { 138 => 0xc63 },
'processingsoftware' => { 119 => 0xb },
- 'processversion' => { 496 => 'ProcessVersion', 498 => 'ProcessVersion' },
- 'producer' => { 179 => 'WM/Producer', 323 => 'Producer', 389 => "\xa9prd", 391 => 'producer', 397 => "\xa9prd", 512 => 'Producer' },
- 'producerkeywords' => { 397 => "\xa9pdk" },
- 'productcode' => { 515 => 'productCode' },
- 'productid' => { 132 => 0x32, 389 => 'prID', 514 => 'productID' },
- 'productidtype' => { 514 => 'productIDType' },
- 'productinimage' => { 510 => 'ProductInImage' },
- 'productinimagedescription' => { 510 => [\'ProductInImage','ProductInImageProductDescription'] },
- 'productinimagegtin' => { 510 => [\'ProductInImage','ProductInImageProductGTIN'] },
- 'productinimagename' => { 510 => [\'ProductInImage','ProductInImageProductName'] },
- 'productinimageproductid' => { 510 => [\'ProductInImage','ProductInImageProductId'] },
- 'productioncode' => { 352 => 0x2 },
- 'productorserviceconstraints' => { 324 => 'ProductOrServiceConstraints' },
- 'productversion' => { 389 => 'VERS' },
- 'profession' => { 515 => 'profession' },
- 'profile' => { 475 => [\'Profiles','ProfilesProfile'] },
+ 'processversion' => { 500 => 'ProcessVersion', 502 => 'ProcessVersion' },
+ 'producer' => { 179 => 'WM/Producer', 326 => 'Producer', 392 => "\xa9prd", 394 => 'producer', 400 => "\xa9prd", 516 => 'Producer' },
+ 'producerkeywords' => { 400 => "\xa9pdk" },
+ 'productcode' => { 519 => 'productCode' },
+ 'productid' => { 132 => 0x32, 392 => 'prID', 518 => 'productID' },
+ 'productidtype' => { 518 => 'productIDType' },
+ 'productinimage' => { 514 => 'ProductInImage' },
+ 'productinimagedescription' => { 514 => [\'ProductInImage','ProductInImageProductDescription'] },
+ 'productinimagegtin' => { 514 => [\'ProductInImage','ProductInImageProductGTIN'] },
+ 'productinimagename' => { 514 => [\'ProductInImage','ProductInImageProductName'] },
+ 'productinimageproductid' => { 514 => [\'ProductInImage','ProductInImageProductId'] },
+ 'productioncode' => { 355 => 0x2 },
+ 'productorserviceconstraints' => { 327 => 'ProductOrServiceConstraints' },
+ 'productversion' => { 392 => 'VERS' },
+ 'profession' => { 519 => 'profession' },
+ 'profile' => { 479 => [\'Profiles','ProfilesProfile'] },
'profilecalibrationsig' => { 119 => 0xc6f4 },
- 'profilecameraindices' => { 475 => [\'Profiles','ProfilesProfileCameraIndices'] },
+ 'profilecameraindices' => { 479 => [\'Profiles','ProfilesProfileCameraIndices'] },
'profilecopyright' => { 119 => 0xc6fe },
'profileembedpolicy' => { 119 => 0xc6fd },
'profilegaintablemap' => { 119 => 0xcd2d },
@@ -5588,170 +5595,170 @@ my %tagLookup = (
'profilelooktabledata' => { 119 => 0xc726 },
'profilelooktabledims' => { 119 => 0xc725 },
'profilelooktableencoding' => { 119 => 0xc7a4 },
- 'profilename' => { 119 => 0xc6f8, 325 => 'iCCP-name' },
- 'profiles' => { 475 => 'Profiles' },
+ 'profilename' => { 119 => 0xc6f8, 328 => 'iCCP-name' },
+ 'profiles' => { 479 => 'Profiles' },
'profiletonecurve' => { 119 => 0xc6fc },
- 'profiletype' => { 475 => [\'Profiles','ProfilesProfileType'] },
- 'programiso' => { 337 => 0x3c },
- 'programline' => { 353 => '1.1' },
+ 'profiletype' => { 479 => [\'Profiles','ProfilesProfileType'] },
+ 'programiso' => { 340 => 0x3c },
+ 'programline' => { 356 => '1.1' },
'programmode' => { 189 => 0x5 },
'programshift' => { 234 => 0xd },
'programversion' => { 131 => 0x46 },
- 'prohibits' => { 494 => 'prohibits' },
- 'projectiontype' => { 484 => 'ProjectionType', 485 => 'ProjectionType' },
- 'projectname' => { 525 => 'projectName' },
- 'projectref' => { 525 => 'projectRef' },
- 'projectrefpath' => { 525 => [\'projectRef','projectRefPath'] },
- 'projectreftype' => { 525 => [\'projectRef','projectRefType'] },
+ 'prohibits' => { 498 => 'prohibits' },
+ 'projectiontype' => { 488 => 'ProjectionType', 489 => 'ProjectionType' },
+ 'projectname' => { 529 => 'projectName' },
+ 'projectref' => { 529 => 'projectRef' },
+ 'projectrefpath' => { 529 => [\'projectRef','projectRefPath'] },
+ 'projectreftype' => { 529 => [\'projectRef','projectRefType'] },
'promotionurl' => { 179 => 'WM/PromotionURL' },
- 'propertyreleaseid' => { 324 => 'PropertyReleaseID' },
- 'propertyreleasestatus' => { 324 => 'PropertyReleaseStatus' },
+ 'propertyreleaseid' => { 327 => 'PropertyReleaseID' },
+ 'propertyreleasestatus' => { 327 => 'PropertyReleaseStatus' },
'provider' => { 179 => 'WM/Provider' },
'province-state' => { 131 => 0x5f },
- 'publicationdate' => { 515 => 'publicationDate' },
- 'publicationdatea-platform' => { 515 => [\'publicationDate','publicationDateA-platform'] },
- 'publicationdatedate' => { 515 => [\'publicationDate','publicationDateDate'] },
- 'publicationdisplaydate' => { 515 => 'publicationDisplayDate' },
- 'publicationdisplaydatea-platform' => { 515 => [\'publicationDisplayDate','publicationDisplayDateA-platform'] },
- 'publicationdisplaydatedate' => { 515 => [\'publicationDisplayDate','publicationDisplayDateDate'] },
- 'publicationevent' => { 510 => 'PublicationEvent' },
- 'publicationeventdate' => { 510 => [\'PublicationEvent','PublicationEventDate'] },
- 'publicationeventidentifier' => { 510 => [\'PublicationEvent','PublicationEventIdentifier'] },
- 'publicationeventname' => { 510 => [\'PublicationEvent','PublicationEventName'] },
- 'publicationname' => { 515 => 'publicationName' },
- 'publisher' => { 179 => 'WM/Publisher', 389 => "\xa9pub", 391 => 'publisher', 499 => 'publisher' },
- 'publishingfrequency' => { 515 => 'publishingFrequency' },
- 'pulldown' => { 525 => 'pullDown' },
- 'purchasedate' => { 389 => 'purd' },
+ 'publicationdate' => { 519 => 'publicationDate' },
+ 'publicationdatea-platform' => { 519 => [\'publicationDate','publicationDateA-platform'] },
+ 'publicationdatedate' => { 519 => [\'publicationDate','publicationDateDate'] },
+ 'publicationdisplaydate' => { 519 => 'publicationDisplayDate' },
+ 'publicationdisplaydatea-platform' => { 519 => [\'publicationDisplayDate','publicationDisplayDateA-platform'] },
+ 'publicationdisplaydatedate' => { 519 => [\'publicationDisplayDate','publicationDisplayDateDate'] },
+ 'publicationevent' => { 514 => 'PublicationEvent' },
+ 'publicationeventdate' => { 514 => [\'PublicationEvent','PublicationEventDate'] },
+ 'publicationeventidentifier' => { 514 => [\'PublicationEvent','PublicationEventIdentifier'] },
+ 'publicationeventname' => { 514 => [\'PublicationEvent','PublicationEventName'] },
+ 'publicationname' => { 519 => 'publicationName' },
+ 'publisher' => { 179 => 'WM/Publisher', 392 => "\xa9pub", 394 => 'publisher', 503 => 'publisher' },
+ 'publishingfrequency' => { 519 => 'publishingFrequency' },
+ 'pulldown' => { 529 => 'pullDown' },
+ 'purchasedate' => { 392 => 'purd' },
'purplehsl' => { 103 => 0x20916 },
- 'pxshiftperiphedgenr' => { 472 => 0x9013 },
- 'pxshiftperiphedgenrvalue' => { 472 => 0x9014 },
- 'quality' => { 0 => 0x1, 34 => 0x3, 112 => 0x2, 113 => 0x3002, 127 => 0x1000, 140 => 0x9, 234 => 0x4, 279 => 0x3, 319 => 0x201, 332 => 0x300, 372 => 0x8, 379 => 0x2, 414 => 0x16, 424 => 0x56, 425 => 0x56, 426 => 0xb, 437 => [0x102,0x202e] },
- 'quality2' => { 446 => 0x1170, 447 => 0x1174, 448 => 0x1150, 450 => 0x11a8, 451 => 0x1060, 452 => 0x258, 453 => 0x258, 454 => 0x247, 459 => 0x29, 460 => 0x25, 461 => 0x2a },
- 'qualitybutton' => { 312 => 0x17d },
- 'qualitybuttonplaybackmode' => { 312 => 0x1bf },
+ 'pxshiftperiphedgenr' => { 476 => 0x9013 },
+ 'pxshiftperiphedgenrvalue' => { 476 => 0x9014 },
+ 'quality' => { 0 => 0x1, 34 => 0x3, 112 => 0x2, 113 => 0x3002, 127 => 0x1000, 140 => 0x9, 234 => 0x4, 280 => 0x3, 322 => 0x201, 335 => 0x300, 375 => 0x8, 382 => 0x2, 417 => 0x16, 427 => 0x56, 428 => 0x56, 429 => 0xb, 440 => [0x102,0x202e] },
+ 'quality2' => { 449 => 0x1170, 450 => 0x1174, 451 => 0x1150, 453 => 0x11a8, 454 => 0x1060, 455 => 0x258, 456 => 0x258, 457 => 0x247, 463 => 0x29, 464 => 0x25, 465 => 0x2a },
+ 'qualitybutton' => { 314 => 0x17d, 315 => 0x195 },
+ 'qualitybuttonplaybackmode' => { 314 => 0x1bf, 315 => 0x1d7 },
'qualityhint' => { 1 => 0x1a },
'qualitymode' => { 113 => 0x8 },
'quantizationmethod' => { 133 => 0x78 },
- 'quickadjust' => { 292 => 0x2a },
+ 'quickadjust' => { 293 => 0x2a },
'quickcontroldialinmeter' => { 84 => 0x703 },
- 'quickfix' => { 289 => 0x416391c6 },
- 'quickshot' => { 413 => 0x213 },
+ 'quickfix' => { 290 => 0x416391c6 },
+ 'quickshot' => { 416 => 0x213 },
'quiettime' => { 138 => 0x188a },
- 'rads' => { 397 => 'rads' },
- 'rangefinder' => { 301 => '4.1', 302 => '5.1', 303 => '5.1' },
- 'rangemask' => { 496 => 'RangeMaskMapInfo', 498 => 'RangeMaskMapInfo' },
- 'rangemaskmapinfo' => { 496 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfo'], 498 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfo'] },
- 'rangemaskmapinfolabmax' => { 496 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLabMax'], 498 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLabMax'] },
- 'rangemaskmapinfolabmin' => { 496 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLabMin'], 498 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLabMin'] },
- 'rangemaskmapinfolumeq' => { 496 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLumEq'], 498 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLumEq'] },
- 'rangemaskmapinforgbmax' => { 496 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoRGBMax'], 498 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoRGBMax'] },
- 'rangemaskmapinforgbmin' => { 496 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoRGBMin'], 498 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoRGBMin'] },
+ 'rads' => { 400 => 'rads' },
+ 'rangefinder' => { 302 => '4.1', 303 => '5.1', 304 => '5.1' },
+ 'rangemask' => { 500 => 'RangeMaskMapInfo', 502 => 'RangeMaskMapInfo' },
+ 'rangemaskmapinfo' => { 500 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfo'], 502 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfo'] },
+ 'rangemaskmapinfolabmax' => { 500 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLabMax'], 502 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLabMax'] },
+ 'rangemaskmapinfolabmin' => { 500 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLabMin'], 502 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLabMin'] },
+ 'rangemaskmapinfolumeq' => { 500 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLumEq'], 502 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLumEq'] },
+ 'rangemaskmapinforgbmax' => { 500 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoRGBMax'], 502 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoRGBMax'] },
+ 'rangemaskmapinforgbmin' => { 500 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoRGBMin'], 502 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoRGBMin'] },
'rasterizedcaption' => { 131 => 0x7d },
- 'rating' => { 119 => 0x4746, 127 => 0x1431, 383 => 0xdf, 389 => 'rtng', 397 => 'rtng', 437 => 0x2002, 491 => 'rating', 500 => 'rating', 510 => 'Rating', 515 => 'rating', 523 => 'Rating' },
- 'ratingpercent' => { 119 => 0x4749, 178 => 'Rating', 389 => 'rate', 523 => 'RatingPercent' },
- 'ratingregion' => { 510 => [\'Rating','RatingRatingRegion'] },
- 'ratingregioncity' => { 510 => [\'Rating','RatingRatingRegionCity'] },
- 'ratingregioncountrycode' => { 510 => [\'Rating','RatingRatingRegionCountryCode'] },
- 'ratingregioncountryname' => { 510 => [\'Rating','RatingRatingRegionCountryName'] },
- 'ratingregiongpsaltitude' => { 510 => [\'Rating','RatingRatingRegionGPSAltitude'] },
- 'ratingregiongpslatitude' => { 510 => [\'Rating','RatingRatingRegionGPSLatitude'] },
- 'ratingregiongpslongitude' => { 510 => [\'Rating','RatingRatingRegionGPSLongitude'] },
- 'ratingregionidentifier' => { 510 => [\'Rating','RatingRatingRegionIdentifier'] },
- 'ratingregionlocationid' => { 510 => [\'Rating','RatingRatingRegionLocationId'] },
- 'ratingregionlocationname' => { 510 => [\'Rating','RatingRatingRegionLocationName'] },
- 'ratingregionprovincestate' => { 510 => [\'Rating','RatingRatingRegionProvinceState'] },
- 'ratingregionsublocation' => { 510 => [\'Rating','RatingRatingRegionSublocation'] },
- 'ratingregionworldregion' => { 510 => [\'Rating','RatingRatingRegionWorldRegion'] },
- 'ratingscalemaxvalue' => { 510 => [\'Rating','RatingRatingScaleMaxValue'] },
- 'ratingscaleminvalue' => { 510 => [\'Rating','RatingRatingScaleMinValue'] },
- 'ratingsourcelink' => { 510 => [\'Rating','RatingRatingSourceLink'] },
- 'ratingvalue' => { 510 => [\'Rating','RatingRatingValue'] },
- 'ratingvaluelogolink' => { 510 => [\'Rating','RatingRatingValueLogoLink'] },
- 'rawandjpgrecording' => { 82 => 0x8, 186 => 0x109, 353 => 0xd },
+ 'rating' => { 119 => 0x4746, 127 => 0x1431, 386 => 0xdf, 392 => 'rtng', 400 => 'rtng', 440 => 0x2002, 495 => 'rating', 504 => 'rating', 514 => 'Rating', 519 => 'rating', 527 => 'Rating' },
+ 'ratingpercent' => { 119 => 0x4749, 178 => 'Rating', 392 => 'rate', 527 => 'RatingPercent' },
+ 'ratingregion' => { 514 => [\'Rating','RatingRatingRegion'] },
+ 'ratingregioncity' => { 514 => [\'Rating','RatingRatingRegionCity'] },
+ 'ratingregioncountrycode' => { 514 => [\'Rating','RatingRatingRegionCountryCode'] },
+ 'ratingregioncountryname' => { 514 => [\'Rating','RatingRatingRegionCountryName'] },
+ 'ratingregiongpsaltitude' => { 514 => [\'Rating','RatingRatingRegionGPSAltitude'] },
+ 'ratingregiongpslatitude' => { 514 => [\'Rating','RatingRatingRegionGPSLatitude'] },
+ 'ratingregiongpslongitude' => { 514 => [\'Rating','RatingRatingRegionGPSLongitude'] },
+ 'ratingregionidentifier' => { 514 => [\'Rating','RatingRatingRegionIdentifier'] },
+ 'ratingregionlocationid' => { 514 => [\'Rating','RatingRatingRegionLocationId'] },
+ 'ratingregionlocationname' => { 514 => [\'Rating','RatingRatingRegionLocationName'] },
+ 'ratingregionprovincestate' => { 514 => [\'Rating','RatingRatingRegionProvinceState'] },
+ 'ratingregionsublocation' => { 514 => [\'Rating','RatingRatingRegionSublocation'] },
+ 'ratingregionworldregion' => { 514 => [\'Rating','RatingRatingRegionWorldRegion'] },
+ 'ratingscalemaxvalue' => { 514 => [\'Rating','RatingRatingScaleMaxValue'] },
+ 'ratingscaleminvalue' => { 514 => [\'Rating','RatingRatingScaleMinValue'] },
+ 'ratingsourcelink' => { 514 => [\'Rating','RatingRatingSourceLink'] },
+ 'ratingvalue' => { 514 => [\'Rating','RatingRatingValue'] },
+ 'ratingvaluelogolink' => { 514 => [\'Rating','RatingRatingValueLogoLink'] },
+ 'rawandjpgrecording' => { 82 => 0x8, 186 => 0x109, 356 => 0xd },
'rawbrightnessadj' => { 103 => 0x20001, 108 => 0x38 },
'rawburstimagecount' => { 75 => 0x2 },
'rawburstimagenum' => { 75 => 0x1 },
'rawcoloradj' => { 108 => 0x2e },
- 'rawcropbottom' => { 383 => 0xd4 },
- 'rawcropleft' => { 383 => 0xd1 },
- 'rawcropright' => { 383 => 0xd3 },
- 'rawcroptop' => { 383 => 0xd2 },
+ 'rawcropbottom' => { 386 => 0xd4 },
+ 'rawcropleft' => { 386 => 0xd1 },
+ 'rawcropright' => { 386 => 0xd3 },
+ 'rawcroptop' => { 386 => 0xd2 },
'rawcustomsaturation' => { 108 => 0x30 },
'rawcustomtone' => { 108 => 0x34 },
- 'rawdata' => { 411 => 0xa048 },
- 'rawdatabyteorder' => { 411 => 0x40 },
- 'rawdatacfapattern' => { 411 => 0x50 },
+ 'rawdata' => { 414 => 0xa048 },
+ 'rawdatabyteorder' => { 414 => 0x40 },
+ 'rawdatacfapattern' => { 414 => 0x50 },
'rawdatauniqueid' => { 119 => 0xc65d },
'rawdepth' => { 188 => 0x10 },
- 'rawdevartfilter' => { 321 => 0x121 },
- 'rawdevautogradation' => { 321 => 0x119 },
- 'rawdevcolorspace' => { 320 => 0x108, 321 => 0x109 },
- 'rawdevcontrastvalue' => { 320 => 0x106, 321 => 0x105 },
- 'rawdeveditstatus' => { 320 => 0x10b },
+ 'rawdevartfilter' => { 324 => 0x121 },
+ 'rawdevautogradation' => { 324 => 0x119 },
+ 'rawdevcolorspace' => { 323 => 0x108, 324 => 0x109 },
+ 'rawdevcontrastvalue' => { 323 => 0x106, 324 => 0x105 },
+ 'rawdeveditstatus' => { 323 => 0x10b },
'rawdevelopingsoftware' => { 119 => 0xa43a },
- 'rawdevelopmentprocess' => { 372 => 0x62 },
- 'rawdevengine' => { 320 => 0x109, 321 => 0x10b },
- 'rawdevexposurebiasvalue' => { 320 => 0x100, 321 => 0x100 },
- 'rawdevgradation' => { 321 => 0x112 },
- 'rawdevgraypoint' => { 320 => 0x103, 321 => 0x104 },
- 'rawdevmemorycoloremphasis' => { 320 => 0x105, 321 => 0x108 },
- 'rawdevnoisereduction' => { 320 => 0x10a, 321 => 0x10a },
- 'rawdevpicturemode' => { 321 => 0x10c },
- 'rawdevpm_bwfilter' => { 321 => 0x110 },
- 'rawdevpmcontrast' => { 321 => 0x10e },
- 'rawdevpmnoisefilter' => { 321 => 0x120 },
- 'rawdevpmpicturetone' => { 321 => 0x111 },
- 'rawdevpmsaturation' => { 321 => 0x10d },
- 'rawdevpmsharpness' => { 321 => 0x10f },
- 'rawdevsaturation3' => { 321 => 0x113 },
- 'rawdevsaturationemphasis' => { 320 => 0x104, 321 => 0x107 },
- 'rawdevsettings' => { 320 => 0x10c },
- 'rawdevsharpnessvalue' => { 320 => 0x107, 321 => 0x106 },
- 'rawdevversion' => { 320 => 0x0, 321 => 0x0 },
- 'rawdevwbfineadjustment' => { 320 => 0x102, 321 => 0x103 },
- 'rawdevwhitebalance' => { 321 => 0x101 },
- 'rawdevwhitebalancevalue' => { 320 => 0x101, 321 => 0x102 },
+ 'rawdevelopmentprocess' => { 375 => 0x62 },
+ 'rawdevengine' => { 323 => 0x109, 324 => 0x10b },
+ 'rawdevexposurebiasvalue' => { 323 => 0x100, 324 => 0x100 },
+ 'rawdevgradation' => { 324 => 0x112 },
+ 'rawdevgraypoint' => { 323 => 0x103, 324 => 0x104 },
+ 'rawdevmemorycoloremphasis' => { 323 => 0x105, 324 => 0x108 },
+ 'rawdevnoisereduction' => { 323 => 0x10a, 324 => 0x10a },
+ 'rawdevpicturemode' => { 324 => 0x10c },
+ 'rawdevpm_bwfilter' => { 324 => 0x110 },
+ 'rawdevpmcontrast' => { 324 => 0x10e },
+ 'rawdevpmnoisefilter' => { 324 => 0x120 },
+ 'rawdevpmpicturetone' => { 324 => 0x111 },
+ 'rawdevpmsaturation' => { 324 => 0x10d },
+ 'rawdevpmsharpness' => { 324 => 0x10f },
+ 'rawdevsaturation3' => { 324 => 0x113 },
+ 'rawdevsaturationemphasis' => { 323 => 0x104, 324 => 0x107 },
+ 'rawdevsettings' => { 323 => 0x10c },
+ 'rawdevsharpnessvalue' => { 323 => 0x107, 324 => 0x106 },
+ 'rawdevversion' => { 323 => 0x0, 324 => 0x0 },
+ 'rawdevwbfineadjustment' => { 323 => 0x102, 324 => 0x103 },
+ 'rawdevwhitebalance' => { 324 => 0x101 },
+ 'rawdevwhitebalancevalue' => { 323 => 0x101, 324 => 0x102 },
'rawfile' => { 119 => 0xfe4c },
- 'rawfilename' => { 496 => 'RawFileName', 498 => 'RawFileName' },
- 'rawfiletype' => { 437 => 0x2029 },
- 'rawformat' => { 342 => 0x2d, 381 => 0x10e },
+ 'rawfilename' => { 500 => 'RawFileName', 502 => 'RawFileName' },
+ 'rawfiletype' => { 440 => 0x2029 },
+ 'rawformat' => { 345 => 0x2d, 384 => 0x10e },
'rawimagecenter' => { 234 => 0x99 },
'rawimagedigest' => { 119 => 0xc71c },
- 'rawimagesize' => { 372 => 0x39 },
- 'rawinfoversion' => { 322 => 0x0 },
+ 'rawimagesize' => { 375 => 0x39 },
+ 'rawinfoversion' => { 325 => 0x0 },
'rawjpgheight' => { 99 => 0x4 },
'rawjpgquality' => { 57 => 0x6, 99 => 0x1 },
'rawjpgsize' => { 57 => 0x7, 99 => 0x2 },
'rawjpgwidth' => { 99 => 0x3 },
'rawmeasuredrggb' => { 43 => 0x26a, 45 => 0x280, 47 => 0x194, 48 => [0x1ad,0x26b] },
- 'rawrppused' => { 491 => 'rawrppused' },
+ 'rawrppused' => { 495 => 'rawrppused' },
'rawtopreviewgain' => { 119 => 0xc7a8 },
'readouttypeactual' => { 138 => 0x1903 },
'readouttyperequested' => { 138 => 0x1902 },
- 'reardisplay' => { 296 => '12.3', 297 => '6.2' },
- 'recdevice' => { 510 => 'RecDevice' },
- 'recdeviceattlensdescription' => { 510 => [\'RecDevice','RecDeviceAttLensDescription'] },
- 'recdevicemanufacturer' => { 510 => [\'RecDevice','RecDeviceManufacturer'] },
- 'recdevicemodelname' => { 510 => [\'RecDevice','RecDeviceModelName'] },
- 'recdeviceownersdeviceid' => { 510 => [\'RecDevice','RecDeviceOwnersDeviceId'] },
- 'recdeviceserialnumber' => { 510 => [\'RecDevice','RecDeviceSerialNumber'] },
- 'recipeendingpage' => { 517 => 'recipeEndingPage' },
- 'recipepagerange' => { 517 => 'recipePageRange' },
- 'recipesource' => { 517 => 'recipeSource' },
- 'recipestartingpage' => { 517 => 'recipeStartingPage' },
- 'recipetitle' => { 517 => 'recipeTitle' },
- 'recognizedface1age' => { 330 => 0x20 },
- 'recognizedface1name' => { 330 => 0x4 },
- 'recognizedface1position' => { 330 => 0x18 },
- 'recognizedface2age' => { 330 => 0x50 },
- 'recognizedface2name' => { 330 => 0x34 },
- 'recognizedface2position' => { 330 => 0x48 },
- 'recognizedface3age' => { 330 => 0x80 },
- 'recognizedface3name' => { 330 => 0x64 },
- 'recognizedface3position' => { 330 => 0x78 },
- 'recognizedfaceflags' => { 337 => 0x63 },
- 'recommendedexposureindex' => { 119 => 0x8832, 503 => 'RecommendedExposureIndex' },
+ 'reardisplay' => { 297 => '12.3', 298 => '6.2' },
+ 'recdevice' => { 514 => 'RecDevice' },
+ 'recdeviceattlensdescription' => { 514 => [\'RecDevice','RecDeviceAttLensDescription'] },
+ 'recdevicemanufacturer' => { 514 => [\'RecDevice','RecDeviceManufacturer'] },
+ 'recdevicemodelname' => { 514 => [\'RecDevice','RecDeviceModelName'] },
+ 'recdeviceownersdeviceid' => { 514 => [\'RecDevice','RecDeviceOwnersDeviceId'] },
+ 'recdeviceserialnumber' => { 514 => [\'RecDevice','RecDeviceSerialNumber'] },
+ 'recipeendingpage' => { 521 => 'recipeEndingPage' },
+ 'recipepagerange' => { 521 => 'recipePageRange' },
+ 'recipesource' => { 521 => 'recipeSource' },
+ 'recipestartingpage' => { 521 => 'recipeStartingPage' },
+ 'recipetitle' => { 521 => 'recipeTitle' },
+ 'recognizedface1age' => { 333 => 0x20 },
+ 'recognizedface1name' => { 333 => 0x4 },
+ 'recognizedface1position' => { 333 => 0x18 },
+ 'recognizedface2age' => { 333 => 0x50 },
+ 'recognizedface2name' => { 333 => 0x34 },
+ 'recognizedface2position' => { 333 => 0x48 },
+ 'recognizedface3age' => { 333 => 0x80 },
+ 'recognizedface3name' => { 333 => 0x64 },
+ 'recognizedface3position' => { 333 => 0x78 },
+ 'recognizedfaceflags' => { 340 => 0x63 },
+ 'recommendedexposureindex' => { 119 => 0x8832, 507 => 'RecommendedExposureIndex' },
'record' => { 118 => 'Record' },
'recordbasisofrecord' => { 118 => [\'Record','RecordBasisOfRecord'] },
'recordcollectioncode' => { 118 => [\'Record','RecordCollectionCode'] },
@@ -5763,38 +5770,38 @@ my %tagLookup = (
'recorddynamicproperties' => { 118 => [\'Record','RecordDynamicProperties'] },
'recordid' => { 97 => 0x1804 },
'recordinformationwithheld' => { 118 => [\'Record','RecordInformationWithheld'] },
- 'recordingcopyright' => { 397 => "\xa9phg" },
- 'recordingformat' => { 404 => 0x1000 },
- 'recordingmode' => { 112 => 0x1, 379 => 0x1 },
+ 'recordingcopyright' => { 400 => "\xa9phg" },
+ 'recordingformat' => { 407 => 0x1000 },
+ 'recordingmode' => { 112 => 0x1, 382 => 0x1 },
'recordinstitutioncode' => { 118 => [\'Record','RecordInstitutionCode'] },
'recordinstitutionid' => { 118 => [\'Record','RecordInstitutionID'] },
- 'recordlabelname' => { 397 => "\xa9lab" },
- 'recordlabelurl' => { 397 => "\xa9lal" },
- 'recordlocationdata' => { 239 => 0x660, 240 => 0x690, 241 => 0x6f8 },
+ 'recordlabelname' => { 400 => "\xa9lab" },
+ 'recordlabelurl' => { 400 => "\xa9lal" },
+ 'recordlocationdata' => { 240 => 0x660, 241 => 0x690, 242 => 0x6f8 },
'recordmode' => { 34 => 0x9, 113 => 0x3000 },
'recordownerinstitutioncode' => { 118 => [\'Record','RecordOwnerInstitutionCode'] },
- 'recordshutterrelease' => { 413 => 0x217 },
- 'redbalance' => { 319 => 0x1017, 342 => 0x11, 372 => 0x1c },
+ 'recordshutterrelease' => { 416 => 0x217 },
+ 'redbalance' => { 322 => 0x1017, 345 => 0x11, 375 => 0x1c },
'redcurvelimits' => { 108 => 0x18a },
'redcurvepoints' => { 107 => 0x2d, 108 => 0x160 },
- 'redeyecorrection' => { 293 => 0x0 },
- 'redeyeinfo' => { 496 => 'RedEyeInfo', 498 => 'RedEyeInfo' },
- 'redeyereduction' => { 184 => 0x41, 424 => 0x6a, 426 => 0x28 },
- 'redeyeremoval' => { 337 => 0xb9 },
+ 'redeyecorrection' => { 294 => 0x0 },
+ 'redeyeinfo' => { 500 => 'RedEyeInfo', 502 => 'RedEyeInfo' },
+ 'redeyereduction' => { 184 => 0x41, 427 => 0x6a, 429 => 0x28 },
+ 'redeyeremoval' => { 340 => 0xb9 },
'redhsl' => { 103 => 0x20910 },
- 'redhue' => { 496 => 'RedHue', 498 => 'RedHue' },
- 'redsaturation' => { 496 => 'RedSaturation', 498 => 'RedSaturation' },
+ 'redhue' => { 500 => 'RedHue', 502 => 'RedHue' },
+ 'redsaturation' => { 500 => 'RedSaturation', 502 => 'RedSaturation' },
'reductionmatrix1' => { 119 => 0xc625 },
'reductionmatrix2' => { 119 => 0xc626 },
'reductionmatrix3' => { 119 => 0xcd3a },
- 'reelname' => { 119 => 0xc789, 397 => 'reel' },
- 'reference1' => { 508 => [\'TagStructure','TagStructureReference'] },
- 'reference2' => { 508 => [\'TagStructure','TagStructureSubLabelsReference'] },
- 'reference3' => { 508 => [\'TagStructure','TagStructureSubLabelsSubLabelsReference'] },
- 'reference4' => { 508 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsReference'] },
- 'reference5' => { 508 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsReference'] },
- 'reference6' => { 508 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsReference'] },
- 'referenceblackwhite' => { 119 => 0x214, 521 => 'ReferenceBlackWhite' },
+ 'reelname' => { 119 => 0xc789, 400 => 'reel' },
+ 'reference1' => { 512 => [\'TagStructure','TagStructureReference'] },
+ 'reference2' => { 512 => [\'TagStructure','TagStructureSubLabelsReference'] },
+ 'reference3' => { 512 => [\'TagStructure','TagStructureSubLabelsSubLabelsReference'] },
+ 'reference4' => { 512 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsReference'] },
+ 'reference5' => { 512 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsReference'] },
+ 'reference6' => { 512 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsReference'] },
+ 'referenceblackwhite' => { 119 => 0x214, 525 => 'ReferenceBlackWhite' },
'referencedate' => { 131 => 0x2f },
'referencenumber' => { 131 => 0x32 },
'references' => { 157 => 'References' },
@@ -5811,7 +5818,7 @@ my %tagLookup = (
'regionareax' => { 172 => [\'Regions','RegionsRegionListAreaX'] },
'regionareay' => { 172 => [\'Regions','RegionsRegionListAreaY'] },
'regionbarcodevalue' => { 172 => [\'Regions','RegionsRegionListBarCodeValue'] },
- 'regionconstraints' => { 324 => 'RegionConstraints' },
+ 'regionconstraints' => { 327 => 'RegionConstraints' },
'regiondescription' => { 172 => [\'Regions','RegionsRegionListDescription'] },
'regionextensions' => { 172 => [\'Regions','RegionsRegionListExtensions'] },
'regionfocususage' => { 172 => [\'Regions','RegionsRegionListFocusUsage'] },
@@ -5829,10 +5836,10 @@ my %tagLookup = (
'regionrotation' => { 172 => [\'Regions','RegionsRegionListRotation'] },
'regionseealso' => { 172 => [\'Regions','RegionsRegionListSeeAlso'] },
'regiontype' => { 172 => [\'Regions','RegionsRegionListType'] },
- 'registryentryrole' => { 510 => [\'RegistryId','RegistryIdRegEntryRole'] },
- 'registryid' => { 510 => 'RegistryId' },
- 'registryitemid' => { 510 => [\'RegistryId','RegistryIdRegItemId'] },
- 'registryorganisationid' => { 510 => [\'RegistryId','RegistryIdRegOrgId'] },
+ 'registryentryrole' => { 514 => [\'RegistryId','RegistryIdRegEntryRole'] },
+ 'registryid' => { 514 => 'RegistryId' },
+ 'registryitemid' => { 514 => [\'RegistryId','RegistryIdRegItemId'] },
+ 'registryorganisationid' => { 514 => [\'RegistryId','RegistryIdRegOrgId'] },
'relatedaudiofile' => { 155 => 'data' },
'relatedaudiofilename' => { 155 => '1Name' },
'relatedaudiofiletype' => { 155 => '0Type' },
@@ -5840,224 +5847,224 @@ my %tagLookup = (
'relatedimageheight' => { 119 => 0x1002 },
'relatedimagewidth' => { 119 => 0x1001 },
'relatedresourceid' => { 118 => [\'ResourceRelationship','ResourceRelationshipRelatedResourceID'] },
- 'relatedsoundfile' => { 119 => 0xa004, 502 => 'RelatedSoundFile' },
+ 'relatedsoundfile' => { 119 => 0xa004, 506 => 'RelatedSoundFile' },
'relatedvideofile' => { 169 => 'data' },
'relatedvideofilename' => { 169 => '1Name' },
'relatedvideofiletype' => { 169 => '0Type' },
- 'relation' => { 499 => 'relation' },
+ 'relation' => { 503 => 'relation' },
'relationshipaccordingto' => { 118 => [\'ResourceRelationship','ResourceRelationshipRelationshipAccordingTo'] },
'relationshipestablisheddate' => { 118 => [\'ResourceRelationship','ResourceRelationshipRelationshipEstablishedDate'] },
'relationshipofresource' => { 118 => [\'ResourceRelationship','ResourceRelationshipRelationshipOfResource'] },
'relationshipofresourceid' => { 118 => [\'ResourceRelationship','ResourceRelationshipRelationshipOfResourceID'] },
'relationshipremarks' => { 118 => [\'ResourceRelationship','ResourceRelationshipRelationshipRemarks'] },
'relativealtitude' => { 116 => 'RelativeAltitude' },
- 'relativepeakaudiofilepath' => { 525 => 'relativePeakAudioFilePath' },
- 'relativetimestamp' => { 525 => 'relativeTimestamp' },
- 'relativetimestampscale' => { 525 => [\'relativeTimestamp','relativeTimestampScale'] },
- 'relativetimestampvalue' => { 525 => [\'relativeTimestamp','relativeTimestampValue'] },
- 'releasebuttontousedial' => { 296 => '17.8', 297 => '18.5', 299 => '18.4', 300 => '18.4', 305 => '33.8', 306 => '17.6', 309 => '18.5', 310 => '18.4' },
- 'releasedate' => { 131 => 0x1e, 389 => 'rldt', 491 => 'ReleaseDate', 525 => 'releaseDate' },
- 'releasemode' => { 113 => 0x3001, 238 => 0x5c, 270 => 0x184d, 437 => 0xb049 },
- 'releasemode2' => { 446 => 0x112c, 447 => [0x112c,0x8], 448 => [0x1108,0x8], 449 => [0x1184,0x8], 450 => [0x1160,0x8], 451 => [0x4,0x1018], 452 => [0x4,0x210], 453 => [0x4,0x210], 454 => [0x4,0x208], 456 => [0x67,0x3f], 457 => [0x6b,0x6d,0x73,0x4b], 458 => [0x6b,0x4b], 459 => 0x10, 460 => 0x10, 461 => 0x9, 468 => 0x34 },
- 'releasemode3' => { 446 => 0x1128, 447 => 0x1128, 448 => 0x1104, 449 => 0x1180, 450 => 0x115c, 451 => 0x1014, 452 => 0x20c, 453 => 0x20c, 454 => 0x204 },
- 'releaseready' => { 510 => 'ReleaseReady' },
+ 'relativepeakaudiofilepath' => { 529 => 'relativePeakAudioFilePath' },
+ 'relativetimestamp' => { 529 => 'relativeTimestamp' },
+ 'relativetimestampscale' => { 529 => [\'relativeTimestamp','relativeTimestampScale'] },
+ 'relativetimestampvalue' => { 529 => [\'relativeTimestamp','relativeTimestampValue'] },
+ 'releasebuttontousedial' => { 297 => '17.8', 298 => '18.5', 300 => '18.4', 301 => '18.4', 306 => '33.8', 307 => '17.6', 310 => '18.5', 311 => '18.4' },
+ 'releasedate' => { 131 => 0x1e, 392 => 'rldt', 495 => 'ReleaseDate', 529 => 'releaseDate' },
+ 'releasemode' => { 113 => 0x3001, 238 => 0x5c, 271 => 0x184d, 440 => 0xb049 },
+ 'releasemode2' => { 449 => 0x112c, 450 => [0x112c,0x8], 451 => [0x1108,0x8], 452 => [0x1184,0x8], 453 => [0x1160,0x8], 454 => [0x4,0x1018], 455 => [0x4,0x210], 456 => [0x4,0x210], 457 => [0x4,0x208], 459 => [0x67,0x3f], 460 => [0x6b,0x6d,0x73,0x4b], 461 => [0x6b,0x4b], 462 => 0x1f, 463 => 0x10, 464 => 0x10, 465 => 0x9, 472 => 0x34 },
+ 'releasemode3' => { 449 => 0x1128, 450 => 0x1128, 451 => 0x1104, 452 => 0x1180, 453 => 0x115c, 454 => 0x1014, 455 => 0x20c, 456 => 0x20c, 457 => 0x204 },
+ 'releaseready' => { 514 => 'ReleaseReady' },
'releasesetting' => { 97 => 0x1016 },
- 'releasetime' => { 131 => 0x23, 491 => 'ReleaseTime' },
- 'remoteonduration' => { 298 => '3.4', 301 => '17.2', 302 => '18.2', 303 => '18.2', 304 => '18.2', 306 => '18.2', 307 => '4.3', 311 => '19.2' },
- 'renditionclass' => { 526 => 'RenditionClass' },
- 'renditionof' => { 526 => 'RenditionOf' },
- 'renditionofalternatepaths' => { 526 => [\'RenditionOf','RenditionOfAlternatePaths'] },
- 'renditionofdocumentid' => { 526 => [\'RenditionOf','RenditionOfDocumentID'] },
- 'renditionoffilepath' => { 526 => [\'RenditionOf','RenditionOfFilePath'] },
- 'renditionoffrompart' => { 526 => [\'RenditionOf','RenditionOfFromPart'] },
- 'renditionofinstanceid' => { 526 => [\'RenditionOf','RenditionOfInstanceID'] },
- 'renditionoflastmodifydate' => { 526 => [\'RenditionOf','RenditionOfLastModifyDate'] },
- 'renditionoflasturl' => { 526 => [\'RenditionOf','RenditionOfLastURL'] },
- 'renditionoflinkcategory' => { 526 => [\'RenditionOf','RenditionOfLinkCategory'] },
- 'renditionoflinkform' => { 526 => [\'RenditionOf','RenditionOfLinkForm'] },
- 'renditionofmanager' => { 526 => [\'RenditionOf','RenditionOfManager'] },
- 'renditionofmanagervariant' => { 526 => [\'RenditionOf','RenditionOfManagerVariant'] },
- 'renditionofmanageto' => { 526 => [\'RenditionOf','RenditionOfManageTo'] },
- 'renditionofmanageui' => { 526 => [\'RenditionOf','RenditionOfManageUI'] },
- 'renditionofmaskmarkers' => { 526 => [\'RenditionOf','RenditionOfMaskMarkers'] },
- 'renditionoforiginaldocumentid' => { 526 => [\'RenditionOf','RenditionOfOriginalDocumentID'] },
- 'renditionofpartmapping' => { 526 => [\'RenditionOf','RenditionOfPartMapping'] },
- 'renditionofplacedresolutionunit' => { 526 => [\'RenditionOf','RenditionOfPlacedResolutionUnit'] },
- 'renditionofplacedxresolution' => { 526 => [\'RenditionOf','RenditionOfPlacedXResolution'] },
- 'renditionofplacedyresolution' => { 526 => [\'RenditionOf','RenditionOfPlacedYResolution'] },
- 'renditionofrenditionclass' => { 526 => [\'RenditionOf','RenditionOfRenditionClass'] },
- 'renditionofrenditionparams' => { 526 => [\'RenditionOf','RenditionOfRenditionParams'] },
- 'renditionoftopart' => { 526 => [\'RenditionOf','RenditionOfToPart'] },
- 'renditionofversionid' => { 526 => [\'RenditionOf','RenditionOfVersionID'] },
- 'renditionparams' => { 526 => 'RenditionParams' },
- 'repeatingflashcount' => { 212 => 0xd, 213 => 0xe, 214 => 0xe, 215 => 0xe, 216 => 0xe, 217 => 0xe, 305 => '17.2', 306 => '24.2', 307 => '9.2', 308 => '24.2', 311 => '25.2' },
- 'repeatingflashcountbuilt-in' => { 277 => 0x4db },
- 'repeatingflashcountexternal' => { 277 => 0x4c3 },
- 'repeatingflashoutput' => { 305 => '17.1', 306 => '24.1', 307 => '9.1', 308 => '24.1', 311 => '25.1' },
- 'repeatingflashoutputexternal' => { 277 => 0x4c0 },
- 'repeatingflashrate' => { 212 => 0xc, 213 => 0xd, 214 => 0xd, 215 => 0xd, 216 => 0xd, 217 => 0xd, 305 => '18.1', 306 => '25.1', 307 => '10.1', 308 => '25.1', 311 => '26.1' },
- 'repeatingflashratebuilt-in' => { 277 => 0x4da },
- 'repeatingflashrateexternal' => { 277 => 0x4c2 },
- 'requirements' => { 397 => "\xa9req" },
- 'requires' => { 494 => 'requires' },
- 'resampleparams' => { 525 => 'resampleParams' },
- 'resampleparamsquality' => { 525 => [\'resampleParams','resampleParamsQuality'] },
+ 'releasetime' => { 131 => 0x23, 495 => 'ReleaseTime' },
+ 'remoteonduration' => { 299 => '3.4', 302 => '17.2', 303 => '18.2', 304 => '18.2', 305 => '18.2', 307 => '18.2', 308 => '4.3', 312 => '19.2' },
+ 'renditionclass' => { 530 => 'RenditionClass' },
+ 'renditionof' => { 530 => 'RenditionOf' },
+ 'renditionofalternatepaths' => { 530 => [\'RenditionOf','RenditionOfAlternatePaths'] },
+ 'renditionofdocumentid' => { 530 => [\'RenditionOf','RenditionOfDocumentID'] },
+ 'renditionoffilepath' => { 530 => [\'RenditionOf','RenditionOfFilePath'] },
+ 'renditionoffrompart' => { 530 => [\'RenditionOf','RenditionOfFromPart'] },
+ 'renditionofinstanceid' => { 530 => [\'RenditionOf','RenditionOfInstanceID'] },
+ 'renditionoflastmodifydate' => { 530 => [\'RenditionOf','RenditionOfLastModifyDate'] },
+ 'renditionoflasturl' => { 530 => [\'RenditionOf','RenditionOfLastURL'] },
+ 'renditionoflinkcategory' => { 530 => [\'RenditionOf','RenditionOfLinkCategory'] },
+ 'renditionoflinkform' => { 530 => [\'RenditionOf','RenditionOfLinkForm'] },
+ 'renditionofmanager' => { 530 => [\'RenditionOf','RenditionOfManager'] },
+ 'renditionofmanagervariant' => { 530 => [\'RenditionOf','RenditionOfManagerVariant'] },
+ 'renditionofmanageto' => { 530 => [\'RenditionOf','RenditionOfManageTo'] },
+ 'renditionofmanageui' => { 530 => [\'RenditionOf','RenditionOfManageUI'] },
+ 'renditionofmaskmarkers' => { 530 => [\'RenditionOf','RenditionOfMaskMarkers'] },
+ 'renditionoforiginaldocumentid' => { 530 => [\'RenditionOf','RenditionOfOriginalDocumentID'] },
+ 'renditionofpartmapping' => { 530 => [\'RenditionOf','RenditionOfPartMapping'] },
+ 'renditionofplacedresolutionunit' => { 530 => [\'RenditionOf','RenditionOfPlacedResolutionUnit'] },
+ 'renditionofplacedxresolution' => { 530 => [\'RenditionOf','RenditionOfPlacedXResolution'] },
+ 'renditionofplacedyresolution' => { 530 => [\'RenditionOf','RenditionOfPlacedYResolution'] },
+ 'renditionofrenditionclass' => { 530 => [\'RenditionOf','RenditionOfRenditionClass'] },
+ 'renditionofrenditionparams' => { 530 => [\'RenditionOf','RenditionOfRenditionParams'] },
+ 'renditionoftopart' => { 530 => [\'RenditionOf','RenditionOfToPart'] },
+ 'renditionofversionid' => { 530 => [\'RenditionOf','RenditionOfVersionID'] },
+ 'renditionparams' => { 530 => 'RenditionParams' },
+ 'repeatingflashcount' => { 212 => 0xd, 213 => 0xe, 214 => 0xe, 215 => 0xe, 216 => 0xe, 217 => 0xe, 306 => '17.2', 307 => '24.2', 308 => '9.2', 309 => '24.2', 312 => '25.2' },
+ 'repeatingflashcountbuilt-in' => { 278 => 0x4db },
+ 'repeatingflashcountexternal' => { 278 => 0x4c3 },
+ 'repeatingflashoutput' => { 306 => '17.1', 307 => '24.1', 308 => '9.1', 309 => '24.1', 312 => '25.1' },
+ 'repeatingflashoutputexternal' => { 278 => 0x4c0 },
+ 'repeatingflashrate' => { 212 => 0xc, 213 => 0xd, 214 => 0xd, 215 => 0xd, 216 => 0xd, 217 => 0xd, 306 => '18.1', 307 => '25.1', 308 => '10.1', 309 => '25.1', 312 => '26.1' },
+ 'repeatingflashratebuilt-in' => { 278 => 0x4da },
+ 'repeatingflashrateexternal' => { 278 => 0x4c2 },
+ 'requirements' => { 400 => "\xa9req" },
+ 'requires' => { 498 => 'requires' },
+ 'resampleparams' => { 529 => 'resampleParams' },
+ 'resampleparamsquality' => { 529 => [\'resampleParams','resampleParamsQuality'] },
'resamplingkerneldenominators050' => { 138 => 0xe50 },
'resamplingkerneldenominators067' => { 138 => 0xe4f },
'resamplingkerneldenominators100' => { 138 => 0xe51 },
- 'resaved' => { 413 => 0x21e },
+ 'resaved' => { 416 => 0x21e },
'resetblacksegrows' => { 138 => 0x181a },
'resolution' => { 162 => 'Resolution' },
- 'resolutionmode' => { 414 => [0x87,0x4] },
- 'resolutionunit' => { 119 => 0x128, 134 => 0x2, 521 => 'ResolutionUnit' },
+ 'resolutionmode' => { 417 => [0x87,0x4] },
+ 'resolutionunit' => { 119 => 0x128, 134 => 0x2, 525 => 'ResolutionUnit' },
'resourceid' => { 118 => [\'ResourceRelationship','ResourceRelationshipResourceID'] },
'resourcerelationship' => { 118 => 'ResourceRelationship' },
'resourcerelationshipid' => { 118 => [\'ResourceRelationship','ResourceRelationshipResourceRelationshipID'] },
'restrictdrivemodes' => { 84 => 0x612 },
- 'restrictions' => { 518 => 'restrictions' },
- 'retouchareafeather' => { 496 => [\'RetouchAreas','RetouchAreasFeather'], 498 => [\'RetouchAreas','RetouchAreasFeather'] },
- 'retouchareamaskalpha' => { 496 => [\'RetouchAreas','RetouchAreasMasksAlpha'], 498 => [\'RetouchAreas','RetouchAreasMasksAlpha'] },
- 'retouchareamaskangle' => { 496 => [\'RetouchAreas','RetouchAreasMasksAngle'], 498 => [\'RetouchAreas','RetouchAreasMasksAngle'] },
- 'retouchareamaskbottom' => { 496 => [\'RetouchAreas','RetouchAreasMasksBottom'], 498 => [\'RetouchAreas','RetouchAreasMasksBottom'] },
- 'retouchareamaskcentervalue' => { 496 => [\'RetouchAreas','RetouchAreasMasksCenterValue'], 498 => [\'RetouchAreas','RetouchAreasMasksCenterValue'] },
- 'retouchareamaskcenterweight' => { 496 => [\'RetouchAreas','RetouchAreasMasksCenterWeight'], 498 => [\'RetouchAreas','RetouchAreasMasksCenterWeight'] },
- 'retouchareamaskdabs' => { 496 => [\'RetouchAreas','RetouchAreasMasksDabs'], 498 => [\'RetouchAreas','RetouchAreasMasksDabs'] },
- 'retouchareamaskfeather' => { 496 => [\'RetouchAreas','RetouchAreasMasksFeather'], 498 => [\'RetouchAreas','RetouchAreasMasksFeather'] },
- 'retouchareamaskflipped' => { 496 => [\'RetouchAreas','RetouchAreasMasksFlipped'], 498 => [\'RetouchAreas','RetouchAreasMasksFlipped'] },
- 'retouchareamaskflow' => { 496 => [\'RetouchAreas','RetouchAreasMasksFlow'], 498 => [\'RetouchAreas','RetouchAreasMasksFlow'] },
- 'retouchareamaskfullx' => { 496 => [\'RetouchAreas','RetouchAreasMasksFullX'], 498 => [\'RetouchAreas','RetouchAreasMasksFullX'] },
- 'retouchareamaskfully' => { 496 => [\'RetouchAreas','RetouchAreasMasksFullY'], 498 => [\'RetouchAreas','RetouchAreasMasksFullY'] },
- 'retouchareamaskinputdigest' => { 496 => [\'RetouchAreas','RetouchAreasMasksInputDigest'], 498 => [\'RetouchAreas','RetouchAreasMasksInputDigest'] },
- 'retouchareamaskleft' => { 496 => [\'RetouchAreas','RetouchAreasMasksLeft'], 498 => [\'RetouchAreas','RetouchAreasMasksLeft'] },
- 'retouchareamaskmaskactive' => { 496 => [\'RetouchAreas','RetouchAreasMasksMaskActive'], 498 => [\'RetouchAreas','RetouchAreasMasksMaskActive'] },
- 'retouchareamaskmaskblendmode' => { 496 => [\'RetouchAreas','RetouchAreasMasksMaskBlendMode'], 498 => [\'RetouchAreas','RetouchAreasMasksMaskBlendMode'] },
- 'retouchareamaskmaskdigest' => { 496 => [\'RetouchAreas','RetouchAreasMasksMaskDigest'], 498 => [\'RetouchAreas','RetouchAreasMasksMaskDigest'] },
- 'retouchareamaskmaskinverted' => { 496 => [\'RetouchAreas','RetouchAreasMasksMaskInverted'], 498 => [\'RetouchAreas','RetouchAreasMasksMaskInverted'] },
- 'retouchareamaskmaskname' => { 496 => [\'RetouchAreas','RetouchAreasMasksMaskName'], 498 => [\'RetouchAreas','RetouchAreasMasksMaskName'] },
- 'retouchareamaskmasks' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasks'], 498 => [\'RetouchAreas','RetouchAreasMasksMasks'] },
- 'retouchareamaskmasksalpha' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksAlpha'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksAlpha'] },
- 'retouchareamaskmasksangle' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksAngle'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksAngle'] },
- 'retouchareamaskmasksbottom' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksBottom'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksBottom'] },
- 'retouchareamaskmaskscentervalue' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksCenterValue'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksCenterValue'] },
- 'retouchareamaskmaskscenterweight' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksCenterWeight'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksCenterWeight'] },
- 'retouchareamaskmasksdabs' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksDabs'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksDabs'] },
- 'retouchareamaskmasksfeather' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksFeather'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksFeather'] },
- 'retouchareamaskmasksflipped' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksFlipped'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksFlipped'] },
- 'retouchareamaskmasksflow' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksFlow'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksFlow'] },
- 'retouchareamaskmasksfullx' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksFullX'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksFullX'] },
- 'retouchareamaskmasksfully' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksFullY'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksFullY'] },
- 'retouchareamaskmasksinputdigest' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksInputDigest'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksInputDigest'] },
- 'retouchareamaskmasksleft' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksLeft'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksLeft'] },
- 'retouchareamaskmasksmaskactive' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksMaskActive'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksMaskActive'] },
- 'retouchareamaskmasksmaskblendmode' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksMaskBlendMode'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksMaskBlendMode'] },
- 'retouchareamaskmasksmaskdigest' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksMaskDigest'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksMaskDigest'] },
- 'retouchareamaskmasksmaskinverted' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksMaskInverted'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksMaskInverted'] },
- 'retouchareamaskmasksmaskname' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksMaskName'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksMaskName'] },
- 'retouchareamaskmasksmasksubtype' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksMaskSubType'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksMaskSubType'] },
- 'retouchareamaskmasksmasksyncid' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksMaskSyncID'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksMaskSyncID'] },
- 'retouchareamaskmasksmaskversion' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksMaskVersion'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksMaskVersion'] },
- 'retouchareamaskmasksmidpoint' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksMidpoint'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksMidpoint'] },
- 'retouchareamaskmasksorigin' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksOrigin'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksOrigin'] },
- 'retouchareamaskmasksperimetervalue' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksPerimeterValue'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksPerimeterValue'] },
- 'retouchareamaskmasksradius' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksRadius'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksRadius'] },
- 'retouchareamaskmasksreferencepoint' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksReferencePoint'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksReferencePoint'] },
- 'retouchareamaskmasksright' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksRight'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksRight'] },
- 'retouchareamaskmasksroundness' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksRoundness'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksRoundness'] },
- 'retouchareamaskmaskssizex' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksSizeX'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksSizeX'] },
- 'retouchareamaskmaskssizey' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksSizeY'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksSizeY'] },
- 'retouchareamaskmaskstop' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksTop'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksTop'] },
- 'retouchareamaskmasksubtype' => { 496 => [\'RetouchAreas','RetouchAreasMasksMaskSubType'], 498 => [\'RetouchAreas','RetouchAreasMasksMaskSubType'] },
- 'retouchareamaskmasksvalue' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksMaskValue'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksMaskValue'] },
- 'retouchareamaskmasksversion' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksVersion'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksVersion'] },
- 'retouchareamaskmaskswhat' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksWhat'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksWhat'] },
- 'retouchareamaskmaskswholeimagearea' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksWholeImageArea'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksWholeImageArea'] },
- 'retouchareamaskmasksx' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksX'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksX'] },
- 'retouchareamaskmasksy' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksY'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksY'] },
- 'retouchareamaskmasksyncid' => { 496 => [\'RetouchAreas','RetouchAreasMasksMaskSyncID'], 498 => [\'RetouchAreas','RetouchAreasMasksMaskSyncID'] },
- 'retouchareamaskmaskszerox' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksZeroX'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksZeroX'] },
- 'retouchareamaskmaskszeroy' => { 496 => [\'RetouchAreas','RetouchAreasMasksMasksZeroY'], 498 => [\'RetouchAreas','RetouchAreasMasksMasksZeroY'] },
- 'retouchareamaskmaskversion' => { 496 => [\'RetouchAreas','RetouchAreasMasksMaskVersion'], 498 => [\'RetouchAreas','RetouchAreasMasksMaskVersion'] },
- 'retouchareamaskmidpoint' => { 496 => [\'RetouchAreas','RetouchAreasMasksMidpoint'], 498 => [\'RetouchAreas','RetouchAreasMasksMidpoint'] },
- 'retouchareamaskorigin' => { 496 => [\'RetouchAreas','RetouchAreasMasksOrigin'], 498 => [\'RetouchAreas','RetouchAreasMasksOrigin'] },
- 'retouchareamaskperimetervalue' => { 496 => [\'RetouchAreas','RetouchAreasMasksPerimeterValue'], 498 => [\'RetouchAreas','RetouchAreasMasksPerimeterValue'] },
- 'retouchareamaskradius' => { 496 => [\'RetouchAreas','RetouchAreasMasksRadius'], 498 => [\'RetouchAreas','RetouchAreasMasksRadius'] },
- 'retouchareamaskrange' => { 496 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMask'], 498 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMask'] },
- 'retouchareamaskrangeareamodels' => { 496 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModels'], 498 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModels'] },
- 'retouchareamaskrangeareamodelscolorsampleinfo' => { 496 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 498 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] },
- 'retouchareamaskrangeareamodelscomponents' => { 496 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModelsAreaComponents'], 498 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModelsAreaComponents'] },
- 'retouchareamaskrangecoloramount' => { 496 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskColorAmount'], 498 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskColorAmount'] },
- 'retouchareamaskrangedepthfeather' => { 496 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthFeather'], 498 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthFeather'] },
- 'retouchareamaskrangedepthmax' => { 496 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthMax'], 498 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthMax'] },
- 'retouchareamaskrangedepthmin' => { 496 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthMin'], 498 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthMin'] },
- 'retouchareamaskrangeinvert' => { 496 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskInvert'], 498 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskInvert'] },
- 'retouchareamaskrangelumfeather' => { 496 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumFeather'], 498 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumFeather'] },
- 'retouchareamaskrangeluminancedepthsampleinfo' => { 496 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLuminanceDepthSampleInfo'], 498 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLuminanceDepthSampleInfo'] },
- 'retouchareamaskrangelummax' => { 496 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumMax'], 498 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumMax'] },
- 'retouchareamaskrangelummin' => { 496 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumMin'], 498 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumMin'] },
- 'retouchareamaskrangelumrange' => { 496 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumRange'], 498 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumRange'] },
- 'retouchareamaskrangesampletype' => { 496 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskSampleType'], 498 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskSampleType'] },
- 'retouchareamaskrangetype' => { 496 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskType'], 498 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskType'] },
- 'retouchareamaskrangeversion' => { 496 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskVersion'], 498 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskVersion'] },
- 'retouchareamaskreferencepoint' => { 496 => [\'RetouchAreas','RetouchAreasMasksReferencePoint'], 498 => [\'RetouchAreas','RetouchAreasMasksReferencePoint'] },
- 'retouchareamaskright' => { 496 => [\'RetouchAreas','RetouchAreasMasksRight'], 498 => [\'RetouchAreas','RetouchAreasMasksRight'] },
- 'retouchareamaskroundness' => { 496 => [\'RetouchAreas','RetouchAreasMasksRoundness'], 498 => [\'RetouchAreas','RetouchAreasMasksRoundness'] },
- 'retouchareamasks' => { 496 => [\'RetouchAreas','RetouchAreasMasks'], 498 => [\'RetouchAreas','RetouchAreasMasks'] },
- 'retouchareamasksizex' => { 496 => [\'RetouchAreas','RetouchAreasMasksSizeX'], 498 => [\'RetouchAreas','RetouchAreasMasksSizeX'] },
- 'retouchareamasksizey' => { 496 => [\'RetouchAreas','RetouchAreasMasksSizeY'], 498 => [\'RetouchAreas','RetouchAreasMasksSizeY'] },
- 'retouchareamasktop' => { 496 => [\'RetouchAreas','RetouchAreasMasksTop'], 498 => [\'RetouchAreas','RetouchAreasMasksTop'] },
- 'retouchareamaskvalue' => { 496 => [\'RetouchAreas','RetouchAreasMasksMaskValue'], 498 => [\'RetouchAreas','RetouchAreasMasksMaskValue'] },
- 'retouchareamaskversion' => { 496 => [\'RetouchAreas','RetouchAreasMasksVersion'], 498 => [\'RetouchAreas','RetouchAreasMasksVersion'] },
- 'retouchareamaskwhat' => { 496 => [\'RetouchAreas','RetouchAreasMasksWhat'], 498 => [\'RetouchAreas','RetouchAreasMasksWhat'] },
- 'retouchareamaskwholeimagearea' => { 496 => [\'RetouchAreas','RetouchAreasMasksWholeImageArea'], 498 => [\'RetouchAreas','RetouchAreasMasksWholeImageArea'] },
- 'retouchareamaskx' => { 496 => [\'RetouchAreas','RetouchAreasMasksX'], 498 => [\'RetouchAreas','RetouchAreasMasksX'] },
- 'retouchareamasky' => { 496 => [\'RetouchAreas','RetouchAreasMasksY'], 498 => [\'RetouchAreas','RetouchAreasMasksY'] },
- 'retouchareamaskzerox' => { 496 => [\'RetouchAreas','RetouchAreasMasksZeroX'], 498 => [\'RetouchAreas','RetouchAreasMasksZeroX'] },
- 'retouchareamaskzeroy' => { 496 => [\'RetouchAreas','RetouchAreasMasksZeroY'], 498 => [\'RetouchAreas','RetouchAreasMasksZeroY'] },
- 'retouchareamethod' => { 496 => [\'RetouchAreas','RetouchAreasMethod'], 498 => [\'RetouchAreas','RetouchAreasMethod'] },
- 'retouchareaoffsety' => { 496 => [\'RetouchAreas','RetouchAreasOffsetY'], 498 => [\'RetouchAreas','RetouchAreasOffsetY'] },
- 'retouchareaopacity' => { 496 => [\'RetouchAreas','RetouchAreasOpacity'], 498 => [\'RetouchAreas','RetouchAreasOpacity'] },
- 'retouchareas' => { 496 => 'RetouchAreas', 498 => 'RetouchAreas' },
- 'retouchareaseed' => { 496 => [\'RetouchAreas','RetouchAreasSeed'], 498 => [\'RetouchAreas','RetouchAreasSeed'] },
- 'retouchareasourcestate' => { 496 => [\'RetouchAreas','RetouchAreasSourceState'], 498 => [\'RetouchAreas','RetouchAreasSourceState'] },
- 'retouchareasourcex' => { 496 => [\'RetouchAreas','RetouchAreasSourceX'], 498 => [\'RetouchAreas','RetouchAreasSourceX'] },
- 'retouchareaspottype' => { 496 => [\'RetouchAreas','RetouchAreasSpotType'], 498 => [\'RetouchAreas','RetouchAreasSpotType'] },
+ 'restrictions' => { 522 => 'restrictions' },
+ 'retouchareafeather' => { 500 => [\'RetouchAreas','RetouchAreasFeather'], 502 => [\'RetouchAreas','RetouchAreasFeather'] },
+ 'retouchareamaskalpha' => { 500 => [\'RetouchAreas','RetouchAreasMasksAlpha'], 502 => [\'RetouchAreas','RetouchAreasMasksAlpha'] },
+ 'retouchareamaskangle' => { 500 => [\'RetouchAreas','RetouchAreasMasksAngle'], 502 => [\'RetouchAreas','RetouchAreasMasksAngle'] },
+ 'retouchareamaskbottom' => { 500 => [\'RetouchAreas','RetouchAreasMasksBottom'], 502 => [\'RetouchAreas','RetouchAreasMasksBottom'] },
+ 'retouchareamaskcentervalue' => { 500 => [\'RetouchAreas','RetouchAreasMasksCenterValue'], 502 => [\'RetouchAreas','RetouchAreasMasksCenterValue'] },
+ 'retouchareamaskcenterweight' => { 500 => [\'RetouchAreas','RetouchAreasMasksCenterWeight'], 502 => [\'RetouchAreas','RetouchAreasMasksCenterWeight'] },
+ 'retouchareamaskdabs' => { 500 => [\'RetouchAreas','RetouchAreasMasksDabs'], 502 => [\'RetouchAreas','RetouchAreasMasksDabs'] },
+ 'retouchareamaskfeather' => { 500 => [\'RetouchAreas','RetouchAreasMasksFeather'], 502 => [\'RetouchAreas','RetouchAreasMasksFeather'] },
+ 'retouchareamaskflipped' => { 500 => [\'RetouchAreas','RetouchAreasMasksFlipped'], 502 => [\'RetouchAreas','RetouchAreasMasksFlipped'] },
+ 'retouchareamaskflow' => { 500 => [\'RetouchAreas','RetouchAreasMasksFlow'], 502 => [\'RetouchAreas','RetouchAreasMasksFlow'] },
+ 'retouchareamaskfullx' => { 500 => [\'RetouchAreas','RetouchAreasMasksFullX'], 502 => [\'RetouchAreas','RetouchAreasMasksFullX'] },
+ 'retouchareamaskfully' => { 500 => [\'RetouchAreas','RetouchAreasMasksFullY'], 502 => [\'RetouchAreas','RetouchAreasMasksFullY'] },
+ 'retouchareamaskinputdigest' => { 500 => [\'RetouchAreas','RetouchAreasMasksInputDigest'], 502 => [\'RetouchAreas','RetouchAreasMasksInputDigest'] },
+ 'retouchareamaskleft' => { 500 => [\'RetouchAreas','RetouchAreasMasksLeft'], 502 => [\'RetouchAreas','RetouchAreasMasksLeft'] },
+ 'retouchareamaskmaskactive' => { 500 => [\'RetouchAreas','RetouchAreasMasksMaskActive'], 502 => [\'RetouchAreas','RetouchAreasMasksMaskActive'] },
+ 'retouchareamaskmaskblendmode' => { 500 => [\'RetouchAreas','RetouchAreasMasksMaskBlendMode'], 502 => [\'RetouchAreas','RetouchAreasMasksMaskBlendMode'] },
+ 'retouchareamaskmaskdigest' => { 500 => [\'RetouchAreas','RetouchAreasMasksMaskDigest'], 502 => [\'RetouchAreas','RetouchAreasMasksMaskDigest'] },
+ 'retouchareamaskmaskinverted' => { 500 => [\'RetouchAreas','RetouchAreasMasksMaskInverted'], 502 => [\'RetouchAreas','RetouchAreasMasksMaskInverted'] },
+ 'retouchareamaskmaskname' => { 500 => [\'RetouchAreas','RetouchAreasMasksMaskName'], 502 => [\'RetouchAreas','RetouchAreasMasksMaskName'] },
+ 'retouchareamaskmasks' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasks'], 502 => [\'RetouchAreas','RetouchAreasMasksMasks'] },
+ 'retouchareamaskmasksalpha' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksAlpha'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksAlpha'] },
+ 'retouchareamaskmasksangle' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksAngle'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksAngle'] },
+ 'retouchareamaskmasksbottom' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksBottom'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksBottom'] },
+ 'retouchareamaskmaskscentervalue' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksCenterValue'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksCenterValue'] },
+ 'retouchareamaskmaskscenterweight' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksCenterWeight'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksCenterWeight'] },
+ 'retouchareamaskmasksdabs' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksDabs'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksDabs'] },
+ 'retouchareamaskmasksfeather' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksFeather'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksFeather'] },
+ 'retouchareamaskmasksflipped' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksFlipped'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksFlipped'] },
+ 'retouchareamaskmasksflow' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksFlow'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksFlow'] },
+ 'retouchareamaskmasksfullx' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksFullX'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksFullX'] },
+ 'retouchareamaskmasksfully' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksFullY'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksFullY'] },
+ 'retouchareamaskmasksinputdigest' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksInputDigest'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksInputDigest'] },
+ 'retouchareamaskmasksleft' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksLeft'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksLeft'] },
+ 'retouchareamaskmasksmaskactive' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksMaskActive'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksMaskActive'] },
+ 'retouchareamaskmasksmaskblendmode' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksMaskBlendMode'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksMaskBlendMode'] },
+ 'retouchareamaskmasksmaskdigest' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksMaskDigest'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksMaskDigest'] },
+ 'retouchareamaskmasksmaskinverted' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksMaskInverted'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksMaskInverted'] },
+ 'retouchareamaskmasksmaskname' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksMaskName'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksMaskName'] },
+ 'retouchareamaskmasksmasksubtype' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksMaskSubType'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksMaskSubType'] },
+ 'retouchareamaskmasksmasksyncid' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksMaskSyncID'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksMaskSyncID'] },
+ 'retouchareamaskmasksmaskversion' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksMaskVersion'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksMaskVersion'] },
+ 'retouchareamaskmasksmidpoint' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksMidpoint'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksMidpoint'] },
+ 'retouchareamaskmasksorigin' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksOrigin'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksOrigin'] },
+ 'retouchareamaskmasksperimetervalue' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksPerimeterValue'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksPerimeterValue'] },
+ 'retouchareamaskmasksradius' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksRadius'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksRadius'] },
+ 'retouchareamaskmasksreferencepoint' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksReferencePoint'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksReferencePoint'] },
+ 'retouchareamaskmasksright' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksRight'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksRight'] },
+ 'retouchareamaskmasksroundness' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksRoundness'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksRoundness'] },
+ 'retouchareamaskmaskssizex' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksSizeX'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksSizeX'] },
+ 'retouchareamaskmaskssizey' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksSizeY'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksSizeY'] },
+ 'retouchareamaskmaskstop' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksTop'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksTop'] },
+ 'retouchareamaskmasksubtype' => { 500 => [\'RetouchAreas','RetouchAreasMasksMaskSubType'], 502 => [\'RetouchAreas','RetouchAreasMasksMaskSubType'] },
+ 'retouchareamaskmasksvalue' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksMaskValue'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksMaskValue'] },
+ 'retouchareamaskmasksversion' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksVersion'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksVersion'] },
+ 'retouchareamaskmaskswhat' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksWhat'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksWhat'] },
+ 'retouchareamaskmaskswholeimagearea' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksWholeImageArea'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksWholeImageArea'] },
+ 'retouchareamaskmasksx' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksX'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksX'] },
+ 'retouchareamaskmasksy' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksY'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksY'] },
+ 'retouchareamaskmasksyncid' => { 500 => [\'RetouchAreas','RetouchAreasMasksMaskSyncID'], 502 => [\'RetouchAreas','RetouchAreasMasksMaskSyncID'] },
+ 'retouchareamaskmaskszerox' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksZeroX'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksZeroX'] },
+ 'retouchareamaskmaskszeroy' => { 500 => [\'RetouchAreas','RetouchAreasMasksMasksZeroY'], 502 => [\'RetouchAreas','RetouchAreasMasksMasksZeroY'] },
+ 'retouchareamaskmaskversion' => { 500 => [\'RetouchAreas','RetouchAreasMasksMaskVersion'], 502 => [\'RetouchAreas','RetouchAreasMasksMaskVersion'] },
+ 'retouchareamaskmidpoint' => { 500 => [\'RetouchAreas','RetouchAreasMasksMidpoint'], 502 => [\'RetouchAreas','RetouchAreasMasksMidpoint'] },
+ 'retouchareamaskorigin' => { 500 => [\'RetouchAreas','RetouchAreasMasksOrigin'], 502 => [\'RetouchAreas','RetouchAreasMasksOrigin'] },
+ 'retouchareamaskperimetervalue' => { 500 => [\'RetouchAreas','RetouchAreasMasksPerimeterValue'], 502 => [\'RetouchAreas','RetouchAreasMasksPerimeterValue'] },
+ 'retouchareamaskradius' => { 500 => [\'RetouchAreas','RetouchAreasMasksRadius'], 502 => [\'RetouchAreas','RetouchAreasMasksRadius'] },
+ 'retouchareamaskrange' => { 500 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMask'], 502 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMask'] },
+ 'retouchareamaskrangeareamodels' => { 500 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModels'], 502 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModels'] },
+ 'retouchareamaskrangeareamodelscolorsampleinfo' => { 500 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 502 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] },
+ 'retouchareamaskrangeareamodelscomponents' => { 500 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModelsAreaComponents'], 502 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModelsAreaComponents'] },
+ 'retouchareamaskrangecoloramount' => { 500 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskColorAmount'], 502 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskColorAmount'] },
+ 'retouchareamaskrangedepthfeather' => { 500 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthFeather'], 502 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthFeather'] },
+ 'retouchareamaskrangedepthmax' => { 500 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthMax'], 502 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthMax'] },
+ 'retouchareamaskrangedepthmin' => { 500 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthMin'], 502 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthMin'] },
+ 'retouchareamaskrangeinvert' => { 500 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskInvert'], 502 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskInvert'] },
+ 'retouchareamaskrangelumfeather' => { 500 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumFeather'], 502 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumFeather'] },
+ 'retouchareamaskrangeluminancedepthsampleinfo' => { 500 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLuminanceDepthSampleInfo'], 502 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLuminanceDepthSampleInfo'] },
+ 'retouchareamaskrangelummax' => { 500 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumMax'], 502 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumMax'] },
+ 'retouchareamaskrangelummin' => { 500 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumMin'], 502 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumMin'] },
+ 'retouchareamaskrangelumrange' => { 500 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumRange'], 502 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumRange'] },
+ 'retouchareamaskrangesampletype' => { 500 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskSampleType'], 502 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskSampleType'] },
+ 'retouchareamaskrangetype' => { 500 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskType'], 502 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskType'] },
+ 'retouchareamaskrangeversion' => { 500 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskVersion'], 502 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskVersion'] },
+ 'retouchareamaskreferencepoint' => { 500 => [\'RetouchAreas','RetouchAreasMasksReferencePoint'], 502 => [\'RetouchAreas','RetouchAreasMasksReferencePoint'] },
+ 'retouchareamaskright' => { 500 => [\'RetouchAreas','RetouchAreasMasksRight'], 502 => [\'RetouchAreas','RetouchAreasMasksRight'] },
+ 'retouchareamaskroundness' => { 500 => [\'RetouchAreas','RetouchAreasMasksRoundness'], 502 => [\'RetouchAreas','RetouchAreasMasksRoundness'] },
+ 'retouchareamasks' => { 500 => [\'RetouchAreas','RetouchAreasMasks'], 502 => [\'RetouchAreas','RetouchAreasMasks'] },
+ 'retouchareamasksizex' => { 500 => [\'RetouchAreas','RetouchAreasMasksSizeX'], 502 => [\'RetouchAreas','RetouchAreasMasksSizeX'] },
+ 'retouchareamasksizey' => { 500 => [\'RetouchAreas','RetouchAreasMasksSizeY'], 502 => [\'RetouchAreas','RetouchAreasMasksSizeY'] },
+ 'retouchareamasktop' => { 500 => [\'RetouchAreas','RetouchAreasMasksTop'], 502 => [\'RetouchAreas','RetouchAreasMasksTop'] },
+ 'retouchareamaskvalue' => { 500 => [\'RetouchAreas','RetouchAreasMasksMaskValue'], 502 => [\'RetouchAreas','RetouchAreasMasksMaskValue'] },
+ 'retouchareamaskversion' => { 500 => [\'RetouchAreas','RetouchAreasMasksVersion'], 502 => [\'RetouchAreas','RetouchAreasMasksVersion'] },
+ 'retouchareamaskwhat' => { 500 => [\'RetouchAreas','RetouchAreasMasksWhat'], 502 => [\'RetouchAreas','RetouchAreasMasksWhat'] },
+ 'retouchareamaskwholeimagearea' => { 500 => [\'RetouchAreas','RetouchAreasMasksWholeImageArea'], 502 => [\'RetouchAreas','RetouchAreasMasksWholeImageArea'] },
+ 'retouchareamaskx' => { 500 => [\'RetouchAreas','RetouchAreasMasksX'], 502 => [\'RetouchAreas','RetouchAreasMasksX'] },
+ 'retouchareamasky' => { 500 => [\'RetouchAreas','RetouchAreasMasksY'], 502 => [\'RetouchAreas','RetouchAreasMasksY'] },
+ 'retouchareamaskzerox' => { 500 => [\'RetouchAreas','RetouchAreasMasksZeroX'], 502 => [\'RetouchAreas','RetouchAreasMasksZeroX'] },
+ 'retouchareamaskzeroy' => { 500 => [\'RetouchAreas','RetouchAreasMasksZeroY'], 502 => [\'RetouchAreas','RetouchAreasMasksZeroY'] },
+ 'retouchareamethod' => { 500 => [\'RetouchAreas','RetouchAreasMethod'], 502 => [\'RetouchAreas','RetouchAreasMethod'] },
+ 'retouchareaoffsety' => { 500 => [\'RetouchAreas','RetouchAreasOffsetY'], 502 => [\'RetouchAreas','RetouchAreasOffsetY'] },
+ 'retouchareaopacity' => { 500 => [\'RetouchAreas','RetouchAreasOpacity'], 502 => [\'RetouchAreas','RetouchAreasOpacity'] },
+ 'retouchareas' => { 500 => 'RetouchAreas', 502 => 'RetouchAreas' },
+ 'retouchareaseed' => { 500 => [\'RetouchAreas','RetouchAreasSeed'], 502 => [\'RetouchAreas','RetouchAreasSeed'] },
+ 'retouchareasourcestate' => { 500 => [\'RetouchAreas','RetouchAreasSourceState'], 502 => [\'RetouchAreas','RetouchAreasSourceState'] },
+ 'retouchareasourcex' => { 500 => [\'RetouchAreas','RetouchAreasSourceX'], 502 => [\'RetouchAreas','RetouchAreasSourceX'] },
+ 'retouchareaspottype' => { 500 => [\'RetouchAreas','RetouchAreasSpotType'], 502 => [\'RetouchAreas','RetouchAreasSpotType'] },
'retouchhistory' => { 234 => 0x9e },
- 'retouchinfo' => { 496 => 'RetouchInfo', 498 => 'RetouchInfo' },
- 'retouchnefprocessing' => { 254 => 0x5 },
+ 'retouchinfo' => { 500 => 'RetouchInfo', 502 => 'RetouchInfo' },
+ 'retouchnefprocessing' => { 255 => 0x5 },
'retractlensonpoweroff' => { 84 => 0x814 },
- 'reuse' => { 324 => 'Reuse' },
- 'reuseallowed' => { 528 => 'ReuseAllowed' },
- 'reuseprohibited' => { 518 => 'reuseProhibited' },
- 'reverseexposurecompdial' => { 303 => '5.2' },
- 'reversefocusring' => { 312 => 0x163 },
- 'reverseindicators' => { 296 => '12.1', 297 => '6.1', 299 => '6.1', 300 => '6.1', 301 => '4.3', 302 => '5.2', 303 => '5.4', 305 => '33.5', 306 => '5.1', 309 => '6.1', 310 => '6.1', 311 => '6.2', 312 => 0xc1 },
- 'reverseshutterspeedaperture' => { 303 => '5.3' },
- 'revision' => { 500 => 'revision' },
+ 'reuse' => { 327 => 'Reuse' },
+ 'reuseallowed' => { 532 => 'ReuseAllowed' },
+ 'reuseprohibited' => { 522 => 'reuseProhibited' },
+ 'reverseexposurecompdial' => { 304 => '5.2' },
+ 'reversefocusring' => { 313 => 0x163, 314 => 0x163, 315 => 0x17b },
+ 'reverseindicators' => { 297 => '12.1', 298 => '6.1', 300 => '6.1', 301 => '6.1', 302 => '4.3', 303 => '5.2', 304 => '5.4', 306 => '33.5', 307 => '5.1', 310 => '6.1', 311 => '6.1', 312 => '6.2', 313 => 0xc1, 314 => 0xc1, 315 => 0xc1 },
+ 'reverseshutterspeedaperture' => { 304 => '5.3' },
+ 'revision' => { 504 => 'revision' },
'rflensmffocusringsensitivity' => { 84 => 0x714 },
'rflenstype' => { 57 => 0x3d },
'rgbcurvelimits' => { 108 => 0x238 },
'rgbcurvepoints' => { 107 => 0x7, 108 => 0x20e },
'rgbtables' => { 119 => 0xcd3b },
- 'richtextcomment' => { 505 => 'RichTextComment' },
- 'ricohdate' => { 403 => 0x6 },
- 'ricohimageheight' => { 403 => 0x2 },
- 'ricohimagewidth' => { 403 => 0x0 },
- 'rightalbedo' => { 487 => 'RightAlbedo' },
+ 'richtextcomment' => { 509 => 'RichTextComment' },
+ 'ricohdate' => { 406 => 0x6 },
+ 'ricohimageheight' => { 406 => 0x2 },
+ 'ricohimagewidth' => { 406 => 0x0 },
+ 'rightalbedo' => { 491 => 'RightAlbedo' },
'rightascension' => { 165 => 'RightAscension' },
- 'rights' => { 499 => 'rights' },
- 'rightsagent' => { 518 => 'rightsAgent' },
- 'rightsowner' => { 518 => 'rightsOwner' },
- 'roll' => { 115 => 0x8, 397 => ['roll',"\xa9frl"] },
- 'rollangle' => { 127 => 0x144d, 246 => 0x0, 314 => 0x903, 337 => 0x90, 371 => 0x1, 409 => 0x2 },
+ 'rights' => { 503 => 'rights' },
+ 'rightsagent' => { 522 => 'rightsAgent' },
+ 'rightsowner' => { 522 => 'rightsOwner' },
+ 'roll' => { 115 => 0x8, 400 => ['roll',"\xa9frl"] },
+ 'rollangle' => { 127 => 0x144d, 247 => 0x0, 317 => 0x903, 340 => 0x90, 374 => 0x1, 412 => 0x2 },
'romoperationmode' => { 97 => 0x80d },
- 'rotation' => { 30 => 0x17, 31 => 0x18, 96 => 0x3, 103 => 0x10002, 108 => 0x26e, 114 => 'QuickTime-Rotation', 123 => 0x4, 165 => 'Rotation', 182 => [0x65,0x50], 183 => 0x46, 184 => 0x5a, 187 => 0x10, 255 => 0x1a, 270 => 0x3693, 276 => '590.1', 289 => 0x76a43207, 337 => 0x30, 353 => '17.2', 383 => 0xd8, 390 => 'irot', 424 => 0x3f, 425 => 0x3f, 435 => 0x10 },
- 'routedto' => { 504 => 'RoutedTo' },
- 'routing' => { 388 => 'Routing' },
- 'routingdestinations' => { 486 => 'RoutingDestinations' },
- 'routingexclusions' => { 486 => 'RoutingExclusions' },
- 'routingnotes' => { 504 => 'RoutingNotes' },
+ 'rotation' => { 30 => 0x17, 31 => 0x18, 96 => 0x3, 103 => 0x10002, 108 => 0x26e, 114 => 'QuickTime-Rotation', 123 => 0x4, 165 => 'Rotation', 182 => [0x65,0x50], 183 => 0x46, 184 => 0x5a, 187 => 0x10, 256 => 0x1a, 271 => 0x3693, 277 => '590.1', 290 => 0x76a43207, 340 => 0x30, 356 => '17.2', 386 => 0xd8, 393 => 'irot', 427 => 0x3f, 428 => 0x3f, 438 => 0x10 },
+ 'routedto' => { 508 => 'RoutedTo' },
+ 'routing' => { 391 => 'Routing' },
+ 'routingdestinations' => { 490 => 'RoutingDestinations' },
+ 'routingexclusions' => { 490 => 'RoutingExclusions' },
+ 'routingnotes' => { 508 => 'RoutingNotes' },
'rowsperstrip' => { 119 => 0x116 },
- 'rpp' => { 491 => 'rpp' },
+ 'rpp' => { 495 => 'rpp' },
'rtkflag' => { 116 => 'RtkFlag' },
'rtkstdhgt' => { 116 => 'RtkStdHgt' },
'rtkstdlat' => { 116 => 'RtkStdLat' },
@@ -6066,35 +6073,35 @@ my %tagLookup = (
'safetyshiftinavortv' => { 82 => 0x10, 83 => 0x10, 85 => 0xf, 86 => 0x10, 89 => 0x10 },
'sameexposurefornewaperture' => { 84 => 0x112 },
'samplebits' => { 155 => 'SampleBits' },
- 'samplepagerange' => { 515 => 'samplePageRange' },
+ 'samplepagerange' => { 519 => 'samplePageRange' },
'samplerate' => { 155 => 'SampleRate' },
- 'samplesperpixel' => { 119 => 0x115, 342 => 0x8, 521 => 'SamplesPerPixel' },
+ 'samplesperpixel' => { 119 => 0x115, 345 => 0x8, 525 => 'SamplesPerPixel' },
'samplestructure' => { 133 => 0x5a },
- 'samsungmodelid' => { 411 => 0x3 },
- 'sanyoquality' => { 413 => 0x201 },
- 'sanyothumbnail' => { 413 => 0x100 },
- 'saturation' => { 10 => 0x6e, 12 => 0x76, 34 => 0xe, 51 => 0x1, 63 => 0x7, 112 => 0xd, 113 => [0x3013,0x1f], 119 => [0xa409,0xfe55], 127 => 0x1003, 156 => 'Saturation', 181 => 0x1f, 182 => 0x32, 183 => 0x28, 184 => 0x1a, 189 => 0x1, 234 => 0xaa, 248 => 0x35, 249 => 0x3b, 250 => 0x43, 337 => 0x40, 339 => 0x300d, 372 => 0x1f, 379 => 0xd, 398 => 0x27, 400 => 0x58, 403 => 0x28, 404 => 0x1013, 414 => 0x10, 424 => 0x1e, 425 => 0x1b, 437 => 0x2005, 496 => 'Saturation', 498 => 'Saturation', 502 => 'Saturation' },
- 'saturationadj' => { 103 => 0x20901, 108 => 0x116, 234 => 0x94, 288 => 0x1, 292 => 0x2e, 472 => 0x8016 },
- 'saturationadjustmentaqua' => { 496 => 'SaturationAdjustmentAqua', 498 => 'SaturationAdjustmentAqua' },
- 'saturationadjustmentblue' => { 496 => 'SaturationAdjustmentBlue', 498 => 'SaturationAdjustmentBlue' },
- 'saturationadjustmentgreen' => { 496 => 'SaturationAdjustmentGreen', 498 => 'SaturationAdjustmentGreen' },
- 'saturationadjustmentmagenta' => { 496 => 'SaturationAdjustmentMagenta', 498 => 'SaturationAdjustmentMagenta' },
- 'saturationadjustmentorange' => { 496 => 'SaturationAdjustmentOrange', 498 => 'SaturationAdjustmentOrange' },
- 'saturationadjustmentpurple' => { 496 => 'SaturationAdjustmentPurple', 498 => 'SaturationAdjustmentPurple' },
- 'saturationadjustmentred' => { 496 => 'SaturationAdjustmentRed', 498 => 'SaturationAdjustmentRed' },
- 'saturationadjustmentyellow' => { 496 => 'SaturationAdjustmentYellow', 498 => 'SaturationAdjustmentYellow' },
+ 'samsungmodelid' => { 414 => 0x3 },
+ 'sanyoquality' => { 416 => 0x201 },
+ 'sanyothumbnail' => { 416 => 0x100 },
+ 'saturation' => { 10 => 0x6e, 12 => 0x76, 34 => 0xe, 51 => 0x1, 63 => 0x7, 112 => 0xd, 113 => [0x3013,0x1f], 119 => [0xa409,0xfe55], 127 => 0x1003, 156 => 'Saturation', 181 => 0x1f, 182 => 0x32, 183 => 0x28, 184 => 0x1a, 189 => 0x1, 234 => 0xaa, 249 => 0x35, 250 => 0x3b, 251 => 0x43, 340 => 0x40, 342 => 0x300d, 375 => 0x1f, 382 => 0xd, 401 => 0x27, 403 => 0x58, 406 => 0x28, 407 => 0x1013, 417 => 0x10, 427 => 0x1e, 428 => 0x1b, 440 => 0x2005, 500 => 'Saturation', 502 => 'Saturation', 506 => 'Saturation' },
+ 'saturationadj' => { 103 => 0x20901, 108 => 0x116, 234 => 0x94, 289 => 0x1, 293 => 0x2e, 476 => 0x8016 },
+ 'saturationadjustmentaqua' => { 500 => 'SaturationAdjustmentAqua', 502 => 'SaturationAdjustmentAqua' },
+ 'saturationadjustmentblue' => { 500 => 'SaturationAdjustmentBlue', 502 => 'SaturationAdjustmentBlue' },
+ 'saturationadjustmentgreen' => { 500 => 'SaturationAdjustmentGreen', 502 => 'SaturationAdjustmentGreen' },
+ 'saturationadjustmentmagenta' => { 500 => 'SaturationAdjustmentMagenta', 502 => 'SaturationAdjustmentMagenta' },
+ 'saturationadjustmentorange' => { 500 => 'SaturationAdjustmentOrange', 502 => 'SaturationAdjustmentOrange' },
+ 'saturationadjustmentpurple' => { 500 => 'SaturationAdjustmentPurple', 502 => 'SaturationAdjustmentPurple' },
+ 'saturationadjustmentred' => { 500 => 'SaturationAdjustmentRed', 502 => 'SaturationAdjustmentRed' },
+ 'saturationadjustmentyellow' => { 500 => 'SaturationAdjustmentYellow', 502 => 'SaturationAdjustmentYellow' },
'saturationauto' => { 71 => 0x98 },
'saturationfaithful' => { 19 => 0xfe, 70 => 0x68, 71 => 0x68 },
'saturationlandscape' => { 19 => 0xfc, 70 => 0x38, 71 => 0x38 },
'saturationmonochrome' => { 70 => 0x80, 71 => 0x80 },
'saturationneutral' => { 19 => 0xfd, 70 => 0x50, 71 => 0x50 },
'saturationportrait' => { 19 => 0xfb, 70 => 0x20, 71 => 0x20 },
- 'saturationsetting' => { 322 => 0x1010, 426 => 0x11, 442 => 0x9 },
+ 'saturationsetting' => { 325 => 0x1010, 429 => 0x11, 445 => 0x9 },
'saturationstandard' => { 19 => 0xfa, 70 => 0x8, 71 => 0x8 },
'saturationuserdef1' => { 19 => 0x100, 70 => 0x98, 71 => 0xb0 },
'saturationuserdef2' => { 19 => 0x101, 70 => 0xb0, 71 => 0xc8 },
'saturationuserdef3' => { 19 => 0x102, 70 => 0xc8, 71 => 0xe0 },
- 'saveid' => { 526 => 'SaveID' },
+ 'saveid' => { 530 => 'SaveID' },
'sbaanalysiscomplete' => { 138 => 0xc35 },
'sbablack' => { 138 => 0xc25 },
'sbagmoffset' => { 138 => 0xc4a },
@@ -6106,198 +6113,198 @@ my %tagLookup = (
'sbalowgray' => { 138 => 0xc47 },
'sbaneutralbal' => { 138 => 0xc32 },
'sbawhite' => { 138 => 0xc27 },
- 'scaletype' => { 525 => 'scaleType' },
- 'scanimageenhancer' => { 256 => 0x60 },
+ 'scaletype' => { 529 => 'scaleType' },
+ 'scanimageenhancer' => { 257 => 0x60 },
'scanningdirection' => { 133 => 0x64 },
- 'scene' => { 397 => 'scen', 509 => 'Scene', 525 => 'scene' },
- 'scenearea' => { 317 => 0x211, 319 => 0x1031 },
+ 'scene' => { 400 => 'scen', 513 => 'Scene', 529 => 'scene' },
+ 'scenearea' => { 320 => 0x211, 322 => 0x1031 },
'sceneassist' => { 234 => 0x9c },
- 'scenecapturetype' => { 119 => 0xa406, 502 => 'SceneCaptureType' },
- 'scenedetect' => { 317 => 0x210, 319 => 0x1030 },
- 'scenedetectdata' => { 317 => 0x212, 319 => 0x1033 },
+ 'scenecapturetype' => { 119 => 0xa406, 506 => 'SceneCaptureType' },
+ 'scenedetect' => { 320 => 0x210, 322 => 0x1030 },
+ 'scenedetectdata' => { 320 => 0x212, 322 => 0x1033 },
'sceneflags' => { 1 => 0x25 },
- 'scenemode' => { 142 => 0xfa02, 186 => 0x100, 234 => 0x8f, 314 => 0x509, 319 => 0x403, 337 => 0x8001, 346 => 0xf, 437 => 0xb023 },
+ 'scenemode' => { 142 => 0xfa02, 186 => 0x100, 234 => 0x8f, 317 => 0x509, 322 => 0x403, 340 => 0x8001, 349 => 0xf, 440 => 0xb023 },
'scenemodeused' => { 144 => [0x6002,0xf002] },
'scenerecognition' => { 127 => 0x1425 },
- 'scenereferred' => { 506 => 'scene_referred' },
- 'sceneselect' => { 413 => 0x21f },
- 'scenetype' => { 119 => 0xa301, 502 => 'SceneType' },
- 'screentips' => { 296 => '12.7', 297 => '5.3', 305 => '13.1', 306 => '4.4', 309 => '5.4', 311 => '5.1' },
+ 'scenereferred' => { 510 => 'scene_referred' },
+ 'sceneselect' => { 416 => 0x21f },
+ 'scenetype' => { 119 => 0xa301, 506 => 'SceneType' },
+ 'screentips' => { 297 => '12.7', 298 => '5.3', 306 => '13.1', 307 => '4.4', 310 => '5.4', 312 => '5.1' },
'scriptversion' => { 138 => 0x1770 },
- 'sdrblend' => { 496 => 'SDRBlend', 498 => 'SDRBlend' },
- 'sdrbrightness' => { 496 => 'SDRBrightness', 498 => 'SDRBrightness' },
- 'sdrcontrast' => { 496 => 'SDRContrast', 498 => 'SDRContrast' },
- 'sdrhighlights' => { 496 => 'SDRHighlights', 498 => 'SDRHighlights' },
- 'sdrshadows' => { 496 => 'SDRShadows', 498 => 'SDRShadows' },
- 'sdrwhites' => { 496 => 'SDRWhites', 498 => 'SDRWhites' },
- 'season' => { 510 => 'Season', 514 => 'season' },
- 'seasonidentifier' => { 510 => [\'Season','SeasonIdentifier'] },
- 'seasonname' => { 510 => [\'Season','SeasonName'] },
- 'seasonnumber' => { 510 => [\'Season','SeasonNumber'] },
- 'secondaryftp' => { 486 => 'SecondaryFTP' },
- 'secondaryslotfunction' => { 239 => 0x22c, 240 => 0x240, 241 => 0x240, 259 => 0x13c, 270 => 0x1d0 },
- 'section' => { 515 => 'section' },
+ 'sdrblend' => { 500 => 'SDRBlend', 502 => 'SDRBlend' },
+ 'sdrbrightness' => { 500 => 'SDRBrightness', 502 => 'SDRBrightness' },
+ 'sdrcontrast' => { 500 => 'SDRContrast', 502 => 'SDRContrast' },
+ 'sdrhighlights' => { 500 => 'SDRHighlights', 502 => 'SDRHighlights' },
+ 'sdrshadows' => { 500 => 'SDRShadows', 502 => 'SDRShadows' },
+ 'sdrwhites' => { 500 => 'SDRWhites', 502 => 'SDRWhites' },
+ 'season' => { 514 => 'Season', 518 => 'season' },
+ 'seasonidentifier' => { 514 => [\'Season','SeasonIdentifier'] },
+ 'seasonname' => { 514 => [\'Season','SeasonName'] },
+ 'seasonnumber' => { 514 => [\'Season','SeasonNumber'] },
+ 'secondaryftp' => { 490 => 'SecondaryFTP' },
+ 'secondaryslotfunction' => { 239 => 0x240, 240 => 0x22c, 241 => 0x240, 242 => 0x240, 260 => 0x13c, 271 => 0x1d0 },
+ 'section' => { 519 => 'section' },
'securityclassification' => { 119 => 0x9212 },
'selectableafpoint' => { 84 => 0x509 },
'selectafareaselectionmode' => { 2 => 0xc },
'selectafareaselectmode' => { 84 => 0x512 },
'selfdata' => { 116 => 'SelfData' },
- 'selftimer' => { 34 => 0x2, 337 => 0x2e, 413 => 0x214, 446 => 0x1134, 447 => 0x1134, 448 => 0x1110, 449 => 0x118c, 450 => 0x1168, 451 => 0x1020, 452 => 0x218, 453 => 0x218, 454 => 0x210 },
+ 'selftimer' => { 34 => 0x2, 340 => 0x2e, 416 => 0x214, 449 => 0x1134, 450 => 0x1134, 451 => 0x1110, 452 => 0x118c, 453 => 0x1168, 454 => 0x1020, 455 => 0x218, 456 => 0x218, 457 => 0x210 },
'selftimer2' => { 77 => 0x1d },
- 'selftimerinterval' => { 306 => '19.2' },
+ 'selftimerinterval' => { 307 => '19.2' },
'selftimermode' => { 119 => 0x882b },
- 'selftimershotcount' => { 297 => '20.2', 299 => '20.3', 300 => '20.3', 301 => '18.2', 302 => '19.2', 303 => '19.2', 304 => '19.3', 306 => '19.3', 309 => '20.3', 310 => '20.3', 311 => '20.2', 312 => 0x2d },
- 'selftimershotinterval' => { 297 => '20.3', 299 => '20.2', 300 => '20.2', 304 => '19.2', 309 => '20.2', 310 => '20.2', 312 => 0x31 },
- 'selftimertime' => { 97 => 0x1806, 184 => 0x1f, 296 => '18.1', 297 => '20.1', 298 => '3.3', 299 => '20.1', 300 => '20.1', 301 => '18.1', 302 => '19.1', 303 => '19.1', 304 => '19.1', 305 => '7.2', 306 => '19.1', 307 => '3.3', 309 => '20.1', 310 => '20.1', 311 => '20.1', 312 => 0x2b },
- 'sellingagency' => { 515 => 'sellingAgency' },
+ 'selftimershotcount' => { 298 => '20.2', 300 => '20.3', 301 => '20.3', 302 => '18.2', 303 => '19.2', 304 => '19.2', 305 => '19.3', 307 => '19.3', 310 => '20.3', 311 => '20.3', 312 => '20.2', 313 => 0x2d, 314 => 0x2d, 315 => 0x2d },
+ 'selftimershotinterval' => { 298 => '20.3', 300 => '20.2', 301 => '20.2', 305 => '19.2', 310 => '20.2', 311 => '20.2', 313 => 0x31, 314 => 0x31, 315 => 0x31 },
+ 'selftimertime' => { 97 => 0x1806, 184 => 0x1f, 297 => '18.1', 298 => '20.1', 299 => '3.3', 300 => '20.1', 301 => '20.1', 302 => '18.1', 303 => '19.1', 304 => '19.1', 305 => '19.1', 306 => '7.2', 307 => '19.1', 308 => '3.3', 310 => '20.1', 311 => '20.1', 312 => '20.1', 313 => 0x2b, 314 => 0x2b, 315 => 0x2b },
+ 'sellingagency' => { 519 => 'sellingAgency' },
'semanticstyle' => { 1 => 0x40 },
'semanticstylepreset' => { 1 => 0x42 },
'semanticstylerenderingver' => { 1 => 0x41 },
'seminfo' => { 119 => 0x8546 },
- 'sensingmethod' => { 119 => 0xa217, 502 => 'SensingMethod' },
- 'sensitivityadjust' => { 372 => 0x40 },
- 'sensitivitysteps' => { 353 => ['14.3','17.4'], 355 => 0x1 },
- 'sensitivitytype' => { 119 => 0x8830, 503 => 'SensitivityType' },
+ 'sensingmethod' => { 119 => 0xa217, 506 => 'SensingMethod' },
+ 'sensitivityadjust' => { 375 => 0x40 },
+ 'sensitivitysteps' => { 356 => ['14.3','17.4'], 358 => 0x1 },
+ 'sensitivitytype' => { 119 => 0x8830, 507 => 'SensitivityType' },
'sensor' => { 191 => 0x665e },
- 'sensorarea' => { 319 => 0x400 },
- 'sensorareas' => { 411 => 0xa010 },
- 'sensorbitdepth' => { 339 => 0x312d },
+ 'sensorarea' => { 322 => 0x400 },
+ 'sensorareas' => { 414 => 0xa010 },
+ 'sensorbitdepth' => { 342 => 0x312d },
'sensorbluelevel' => { 74 => 0x5 },
- 'sensorcalibration' => { 318 => 0x805 },
+ 'sensorcalibration' => { 321 => 0x805 },
'sensorcleaning' => { 90 => 0xd },
'sensorfullheight' => { 137 => 0xf904 },
'sensorfullwidth' => { 137 => 0xf903 },
- 'sensorheight' => { 137 => 0xf901, 142 => 0xfa21, 188 => 0x8, 339 => 0x312c, 381 => 0x109, 404 => 0x1602 },
+ 'sensorheight' => { 137 => 0xf901, 142 => 0xfa21, 188 => 0x8, 342 => 0x312c, 384 => 0x109, 407 => 0x1602 },
'sensorimageheight' => { 138 => 0x3ee },
'sensorimagewidth' => { 138 => 0x3ed },
'sensorleftborder' => { 138 => 0x3eb },
- 'sensorleftmargin' => { 381 => 0x10a },
+ 'sensorleftmargin' => { 384 => 0x10a },
'sensorpixelsize' => { 234 => 0x9a },
'sensorredlevel' => { 74 => 0x4 },
'sensorserialnumber' => { 138 => 0x9ce },
- 'sensorshield' => { 239 => 0x66d, 240 => 0x69d, 241 => 0x705 },
- 'sensorsize' => { 156 => 'SensorSize', 372 => 0x35 },
- 'sensortemperature' => { 317 => 0x1500, 319 => 0x1007, 377 => 0xc, 381 => 0x210, 414 => [0x39,0x55] },
- 'sensortemperature2' => { 377 => 0xe, 381 => 0x211 },
+ 'sensorshield' => { 239 => 0x76b, 240 => 0x66d, 241 => 0x69d, 242 => 0x705 },
+ 'sensorsize' => { 156 => 'SensorSize', 375 => 0x35 },
+ 'sensortemperature' => { 320 => 0x1500, 322 => 0x1007, 380 => 0xc, 384 => 0x210, 417 => [0x39,0x55] },
+ 'sensortemperature2' => { 380 => 0xe, 384 => 0x211 },
'sensortopborder' => { 138 => 0x3ec },
- 'sensortopmargin' => { 381 => 0x10b },
- 'sensortype' => { 337 => 0xca },
- 'sensorwidth' => { 137 => 0xf900, 142 => 0xfa20, 188 => 0xa, 339 => 0x312b, 381 => 0x108, 404 => 0x1601 },
- 'sequence' => { 398 => 0x7, 399 => 0x35, 400 => 0x36 },
- 'sequencefilenumber' => { 447 => 0x4, 448 => 0x4, 449 => 0x4, 450 => 0x4, 459 => 0xc, 460 => 0xc, 461 => 0x1a },
- 'sequenceimagenumber' => { 447 => 0x0, 448 => 0x0, 449 => 0x0, 450 => 0x0, 459 => 0x8, 460 => 0x8, 461 => 0x12, 468 => 0x24 },
- 'sequencelength' => { 459 => 0x22, 460 => 0x1e, 461 => [0x16,0x1e] },
- 'sequencename' => { 514 => 'sequenceName' },
- 'sequencenumber' => { 77 => 0x9, 113 => 0x301c, 127 => 0x1101, 140 => 0x1d, 277 => 0x51c, 337 => 0x2b, 426 => [0x10c,0x30c], 437 => 0xb04a, 514 => 'sequenceNumber' },
- 'sequenceshotinterval' => { 413 => 0x224 },
- 'sequencetotalnumber' => { 514 => 'sequenceTotalNumber' },
- 'sequentialshot' => { 413 => 0x20e },
- 'serialnumber' => { 64 => 0xc, 97 => 0x180b, 119 => [0xa431,0xfde9], 137 => 0xfa04, 139 => 0xfa00, 141 => 0xc354, 142 => 0xfa19, 153 => 0x0, 156 => 'SerialNumber', 191 => 0x5501, 234 => [0xa0,0x1d], 315 => 0x101, 319 => [0x404,0x101a], 332 => 0x303, 334 => 0x305, 339 => 0x3103, 372 => 0x229, 381 => 0x102, 382 => 0x407, 397 => ['SNum','slno'], 398 => 0x15, 399 => 0x4b, 400 => 0x7e, 404 => 0x5, 411 => 0xa002, 414 => 0x2, 437 => 0x2031, 493 => 'SerialNumber', 503 => 'BodySerialNumber' },
+ 'sensortopmargin' => { 384 => 0x10b },
+ 'sensortype' => { 340 => 0xca },
+ 'sensorwidth' => { 137 => 0xf900, 142 => 0xfa20, 188 => 0xa, 342 => 0x312b, 384 => 0x108, 407 => 0x1601 },
+ 'sequence' => { 401 => 0x7, 402 => 0x35, 403 => 0x36 },
+ 'sequencefilenumber' => { 450 => 0x4, 451 => 0x4, 452 => 0x4, 453 => 0x4, 463 => 0xc, 464 => 0xc, 465 => 0x1a },
+ 'sequenceimagenumber' => { 450 => 0x0, 451 => 0x0, 452 => 0x0, 453 => 0x0, 463 => 0x8, 464 => 0x8, 465 => 0x12, 472 => 0x24 },
+ 'sequencelength' => { 463 => 0x22, 464 => 0x1e, 465 => [0x16,0x1e] },
+ 'sequencename' => { 518 => 'sequenceName' },
+ 'sequencenumber' => { 77 => 0x9, 113 => 0x301c, 127 => 0x1101, 140 => 0x1d, 278 => 0x51c, 340 => 0x2b, 429 => [0x10c,0x30c], 440 => 0xb04a, 518 => 'sequenceNumber' },
+ 'sequenceshotinterval' => { 416 => 0x224 },
+ 'sequencetotalnumber' => { 518 => 'sequenceTotalNumber' },
+ 'sequentialshot' => { 416 => 0x20e },
+ 'serialnumber' => { 64 => 0xc, 97 => 0x180b, 119 => [0xa431,0xfde9], 137 => 0xfa04, 139 => 0xfa00, 141 => 0xc354, 142 => 0xfa19, 153 => 0x0, 156 => 'SerialNumber', 191 => 0x5501, 234 => [0xa0,0x1d], 318 => 0x101, 322 => [0x404,0x101a], 335 => 0x303, 337 => 0x305, 342 => 0x3103, 375 => 0x229, 384 => 0x102, 385 => 0x407, 400 => ['SNum','slno'], 401 => 0x15, 402 => 0x4b, 403 => 0x7e, 407 => 0x5, 414 => 0xa002, 417 => 0x2, 440 => 0x2031, 497 => 'SerialNumber', 507 => 'BodySerialNumber' },
'serialnumberformat' => { 64 => 0x15, 97 => 0x183b },
- 'serialnumberhash' => { 397 => 'CAME' },
- 'series' => { 510 => 'Series' },
- 'seriesdatetime' => { 474 => 'SeriesDateTime' },
- 'seriesdescription' => { 474 => 'SeriesDescription' },
- 'seriesidentifier' => { 510 => [\'Series','SeriesIdentifier'] },
- 'seriesmodality' => { 474 => 'SeriesModality' },
- 'seriesname' => { 510 => [\'Series','SeriesName'] },
- 'seriesnumber' => { 474 => 'SeriesNumber', 515 => 'seriesNumber' },
- 'seriestitle' => { 515 => 'seriesTitle' },
+ 'serialnumberhash' => { 400 => 'CAME' },
+ 'series' => { 514 => 'Series' },
+ 'seriesdatetime' => { 478 => 'SeriesDateTime' },
+ 'seriesdescription' => { 478 => 'SeriesDescription' },
+ 'seriesidentifier' => { 514 => [\'Series','SeriesIdentifier'] },
+ 'seriesmodality' => { 478 => 'SeriesModality' },
+ 'seriesname' => { 514 => [\'Series','SeriesName'] },
+ 'seriesnumber' => { 478 => 'SeriesNumber', 519 => 'seriesNumber' },
+ 'seriestitle' => { 519 => 'seriesTitle' },
'serviceidentifier' => { 132 => 0x1e },
- 'servingsize' => { 517 => 'servingSize' },
+ 'servingsize' => { 521 => 'servingSize' },
'setbuttoncrosskeysfunc' => { 87 => 0x0, 88 => 0x0 },
'setbuttonwhenshooting' => { 82 => 0x1, 84 => 0x704, 90 => 0xc },
- 'setclockfromlocationdata' => { 239 => 0x61d, 240 => 0x64d, 241 => 0x6b5 },
+ 'setclockfromlocationdata' => { 240 => 0x61d, 241 => 0x64d, 242 => 0x6b5 },
'setfunctionwhenshooting' => { 85 => 0x0, 86 => 0x1, 89 => 0x1 },
- 'setting' => { 514 => 'setting' },
- 'shadingcompensation' => { 314 => 0x50c, 337 => 0x8a },
- 'shadingcompensation2' => { 318 => 0x1012 },
- 'shadow' => { 414 => 0xe },
+ 'setting' => { 518 => 'setting' },
+ 'shadingcompensation' => { 317 => 0x50c, 340 => 0x8a },
+ 'shadingcompensation2' => { 321 => 0x1012 },
+ 'shadow' => { 417 => 0xe },
'shadowadj' => { 103 => 0x2030b },
- 'shadowcorrection' => { 372 => 0x79 },
- 'shadowprotection' => { 288 => 0x0 },
- 'shadows' => { 119 => 0xfe52, 437 => 0x2032, 490 => 'Shadows', 496 => 'Shadows', 498 => 'Shadows' },
- 'shadows2012' => { 496 => 'Shadows2012', 498 => 'Shadows2012' },
- 'shadowsadj' => { 472 => 0x901a },
+ 'shadowcorrection' => { 375 => 0x79 },
+ 'shadowprotection' => { 289 => 0x0 },
+ 'shadows' => { 119 => 0xfe52, 440 => 0x2032, 494 => 'Shadows', 500 => 'Shadows', 502 => 'Shadows' },
+ 'shadows2012' => { 500 => 'Shadows2012', 502 => 'Shadows2012' },
+ 'shadowsadj' => { 476 => 0x901a },
'shadowscale' => { 119 => 0xc633 },
- 'shadowtint' => { 496 => 'ShadowTint', 498 => 'ShadowTint' },
+ 'shadowtint' => { 500 => 'ShadowTint', 502 => 'ShadowTint' },
'shadowtone' => { 127 => 0x1040 },
- 'shakereduction' => { 374 => 0x1, 375 => 0x1 },
+ 'shakereduction' => { 377 => 0x1, 378 => 0x1 },
'shareduserrating' => { 179 => 'WM/SharedUserRating' },
- 'sharpendetail' => { 496 => 'SharpenDetail', 498 => 'SharpenDetail' },
- 'sharpenedgemasking' => { 496 => 'SharpenEdgeMasking', 498 => 'SharpenEdgeMasking' },
- 'sharpening' => { 339 => 0x300b },
- 'sharpeningadj' => { 292 => 0x2b },
+ 'sharpendetail' => { 500 => 'SharpenDetail', 502 => 'SharpenDetail' },
+ 'sharpenedgemasking' => { 500 => 'SharpenEdgeMasking', 502 => 'SharpenEdgeMasking' },
+ 'sharpening' => { 342 => 0x300b },
+ 'sharpeningadj' => { 293 => 0x2b },
'sharpeningkernel' => { 138 => 0x92f },
- 'sharpenradius' => { 496 => 'SharpenRadius', 498 => 'SharpenRadius' },
- 'sharpness' => { 8 => [0x42,0x48], 10 => 0x72, 12 => 0x74, 34 => 0xf, 63 => 0x6, 74 => 0x2, 112 => 0xb, 113 => [0x3011,0x21], 119 => [0xa40a,0xfe56], 127 => 0x1001, 140 => 0x6b, 149 => 0x37, 156 => 'Sharpness', 181 => 0x21, 182 => 0x30, 183 => 0x26, 184 => 0x18, 189 => 0x3, 234 => 0x6, 248 => 0x32, 249 => 0x33, 250 => 0x39, 319 => 0x100f, 337 => 0x41, 372 => 0x21, 379 => 0xb, 398 => 0x26, 400 => 0x56, 403 => 0x22, 404 => [0x1003,0x1014], 414 => 0x11, 424 => 0x1c, 425 => 0x19, 437 => 0x2006, 468 => 0x52, 496 => 'Sharpness', 498 => 'Sharpness', 502 => 'Sharpness' },
- 'sharpnessadj' => { 103 => 0x20310, 108 => 0x25a, 472 => 0x801a },
+ 'sharpenradius' => { 500 => 'SharpenRadius', 502 => 'SharpenRadius' },
+ 'sharpness' => { 8 => [0x42,0x48], 10 => 0x72, 12 => 0x74, 34 => 0xf, 63 => 0x6, 74 => 0x2, 112 => 0xb, 113 => [0x3011,0x21], 119 => [0xa40a,0xfe56], 127 => 0x1001, 140 => 0x6b, 149 => 0x37, 156 => 'Sharpness', 181 => 0x21, 182 => 0x30, 183 => 0x26, 184 => 0x18, 189 => 0x3, 234 => 0x6, 249 => 0x32, 250 => 0x33, 251 => 0x39, 322 => 0x100f, 340 => 0x41, 375 => 0x21, 382 => 0xb, 401 => 0x26, 403 => 0x56, 406 => 0x22, 407 => [0x1003,0x1014], 417 => 0x11, 427 => 0x1c, 428 => 0x19, 440 => 0x2006, 472 => 0x52, 500 => 'Sharpness', 502 => 'Sharpness', 506 => 'Sharpness' },
+ 'sharpnessadj' => { 103 => 0x20310, 108 => 0x25a, 476 => 0x801a },
'sharpnessadjon' => { 103 => '0x20310.0' },
'sharpnessauto' => { 71 => 0x94 },
- 'sharpnessfactor' => { 319 => 0x102a },
+ 'sharpnessfactor' => { 322 => 0x102a },
'sharpnessfaithful' => { 19 => 0xf5, 70 => 0x64, 71 => 0x64 },
'sharpnessfrequency' => { 8 => [0x41,0x47], 74 => 0x3 },
'sharpnesslandscape' => { 19 => 0xf3, 70 => 0x34, 71 => 0x34 },
'sharpnessmonochrome' => { 19 => 0xf6, 70 => 0x7c, 71 => 0x7c },
'sharpnessneutral' => { 19 => 0xf4, 70 => 0x4c, 71 => 0x4c },
- 'sharpnessovershoot' => { 472 => 0x801b },
+ 'sharpnessovershoot' => { 476 => 0x801b },
'sharpnessportrait' => { 19 => 0xf2, 70 => 0x1c, 71 => 0x1c },
- 'sharpnessrange' => { 437 => 0x2035 },
- 'sharpnesssetting' => { 314 => 0x506, 322 => 0x1013, 426 => 0x12, 442 => 0xa },
+ 'sharpnessrange' => { 440 => 0x2035 },
+ 'sharpnesssetting' => { 317 => 0x506, 325 => 0x1013, 429 => 0x12, 445 => 0xa },
'sharpnessstandard' => { 19 => 0xf1, 70 => 0x4, 71 => 0x4 },
'sharpnessstrength' => { 103 => 0x20311 },
- 'sharpnessthreshold' => { 472 => 0x801d },
- 'sharpnessundershoot' => { 472 => 0x801c },
+ 'sharpnessthreshold' => { 476 => 0x801d },
+ 'sharpnessundershoot' => { 476 => 0x801c },
'sharpnessuserdef1' => { 19 => 0xf7, 70 => 0x94, 71 => 0xac },
'sharpnessuserdef2' => { 19 => 0xf8, 70 => 0xac, 71 => 0xc4 },
'sharpnessuserdef3' => { 19 => 0xf9, 70 => 0xc4, 71 => 0xdc },
'shiftcols' => { 138 => 0xc70 },
- 'shootid' => { 514 => 'shootID' },
+ 'shootid' => { 518 => 'shootID' },
'shootingdistance' => { 103 => 0x20701 },
- 'shootinginfodisplay' => { 296 => '13.2', 297 => '5.1', 305 => '10.2', 306 => '4.1', 309 => '5.1', 311 => '5.3' },
- 'shootinginfomonitorofftime' => { 296 => '26.2', 297 => '22.2', 299 => '22.2', 300 => '22.2', 304 => '21.2', 305 => '9.1', 306 => '21.2', 309 => '22.2', 310 => '22.2', 311 => '22.2', 312 => 0x37 },
- 'shootingmode' => { 156 => 'ShootingMode', 234 => 0x89, 337 => 0x1f },
- 'shootingmodesetting' => { 298 => '5.1' },
- 'shortdescription' => { 500 => 'shortdescription' },
+ 'shootinginfodisplay' => { 297 => '13.2', 298 => '5.1', 306 => '10.2', 307 => '4.1', 310 => '5.1', 312 => '5.3' },
+ 'shootinginfomonitorofftime' => { 297 => '26.2', 298 => '22.2', 300 => '22.2', 301 => '22.2', 305 => '21.2', 306 => '9.1', 307 => '21.2', 310 => '22.2', 311 => '22.2', 312 => '22.2', 313 => 0x37, 314 => 0x37, 315 => 0x37 },
+ 'shootingmode' => { 156 => 'ShootingMode', 234 => 0x89, 340 => 0x1f },
+ 'shootingmodesetting' => { 299 => '5.1' },
+ 'shortdescription' => { 504 => 'shortdescription' },
'shortdocumentid' => { 131 => 0xba },
- 'shortname' => { 496 => 'ShortName', 498 => 'ShortName' },
+ 'shortname' => { 500 => 'ShortName', 502 => 'ShortName' },
'shortownername' => { 19 => 0xac },
'shortreleasetimelag' => { 84 => 0x80d },
- 'shorttitle' => { 389 => '@sti' },
- 'shotdate' => { 525 => 'shotDate' },
- 'shotday' => { 525 => 'shotDay' },
- 'shotlocation' => { 525 => 'shotLocation' },
- 'shotlogdata' => { 479 => 'shot_log_data' },
- 'shotname' => { 397 => 'shot', 525 => 'shotName' },
- 'shotnumber' => { 525 => 'shotNumber' },
- 'shotnumbersincepowerup' => { 441 => 0x44e, 459 => 0x1a, 460 => 0x16, 461 => 0xa },
- 'shotnumbersincepowerup2' => { 426 => 0x200 },
- 'shotsize' => { 525 => 'shotSize' },
- 'shotsperinterval' => { 223 => 0x180, 238 => 0xb4, 239 => 0xc0, 240 => 0xd0, 241 => 0xd0 },
- 'showmovement' => { 389 => 'shwm' },
- 'shownevent' => { 510 => 'EventExt' },
- 'showneventidentifier' => { 510 => [\'EventExt','EventExtIdentifier'] },
- 'showneventname' => { 510 => [\'EventExt','EventExtName'] },
- 'shutter' => { 456 => 0x20, 457 => 0x26, 458 => 0x26 },
+ 'shorttitle' => { 392 => '@sti' },
+ 'shotdate' => { 529 => 'shotDate' },
+ 'shotday' => { 529 => 'shotDay' },
+ 'shotlocation' => { 529 => 'shotLocation' },
+ 'shotlogdata' => { 483 => 'shot_log_data' },
+ 'shotname' => { 400 => 'shot', 529 => 'shotName' },
+ 'shotnumber' => { 529 => 'shotNumber' },
+ 'shotnumbersincepowerup' => { 444 => 0x44e, 463 => 0x1a, 464 => 0x16, 465 => 0xa },
+ 'shotnumbersincepowerup2' => { 429 => 0x200 },
+ 'shotsize' => { 529 => 'shotSize' },
+ 'shotsperinterval' => { 223 => 0x180, 238 => 0xb4, 239 => 0xcc, 240 => 0xc0, 241 => 0xd0, 242 => 0xd0 },
+ 'showmovement' => { 392 => 'shwm' },
+ 'shownevent' => { 514 => 'EventExt' },
+ 'showneventidentifier' => { 514 => [\'EventExt','EventExtIdentifier'] },
+ 'showneventname' => { 514 => [\'EventExt','EventExtName'] },
+ 'shutter' => { 459 => 0x20, 460 => 0x26, 461 => 0x26 },
'shutter-aelock' => { 82 => 0x4, 84 => 0x701, 85 => 0x3, 86 => 0x4, 87 => 0x3, 88 => 0x3, 89 => 0x4, 90 => 0x2 },
'shutteraelbutton' => { 83 => 0x4 },
'shutterbuttonafonbutton' => { 84 => 0x701 },
- 'shuttercount' => { 11 => 0x176, 57 => 0x1, 234 => 0xa7, 261 => [0x6a,0x157,0x24d], 262 => 0x286, 263 => 0x279, 264 => 0x284, 265 => 0x242, 266 => 0x280, 267 => 0x276, 268 => [0x27d,0x27f], 269 => 0x246, 271 => 0x2d6, 272 => 0x321, 273 => 0xbd8, 274 => 0x287, 275 => 0x320, 276 => 0x24a, 277 => 0x5fb, 278 => 0x2d5, 372 => 0x5d, 435 => 0x846, 440 => [0x125,0x14a], 456 => 0x32, 457 => 0x3a, 458 => 0x3a },
- 'shuttercount2' => { 456 => 0x4c, 457 => [0x50,0x52,0x58], 458 => 0x50 },
- 'shuttercount3' => { 456 => [0x1a0,0x1aa,0x1bd], 457 => [0x19f,0x1cb,0x1cd] },
+ 'shuttercount' => { 11 => 0x176, 57 => 0x1, 234 => 0xa7, 262 => [0x6a,0x157,0x24d], 263 => 0x286, 264 => 0x279, 265 => 0x284, 266 => 0x242, 267 => 0x280, 268 => 0x276, 269 => [0x27d,0x27f], 270 => 0x246, 272 => 0x2d6, 273 => 0x321, 274 => 0xbd8, 275 => 0x287, 276 => 0x320, 277 => 0x24a, 278 => 0x5fb, 279 => 0x2d5, 375 => 0x5d, 438 => 0x846, 443 => [0x125,0x14a], 459 => 0x32, 460 => 0x3a, 461 => 0x3a, 462 => 0xa },
+ 'shuttercount2' => { 459 => 0x4c, 460 => [0x50,0x52,0x58], 461 => 0x50 },
+ 'shuttercount3' => { 459 => [0x1a0,0x1aa,0x1bd], 460 => [0x19f,0x1cb,0x1cd] },
'shuttercurtainsync' => { 82 => 0xf, 83 => 0xf, 84 => 0x305, 85 => 0xe, 86 => 0xf, 87 => 0x8, 88 => 0x8, 89 => 0xf, 90 => 0x8 },
'shuttermode' => { 57 => 0x17, 140 => 0x1b, 234 => 0x34 },
- 'shutterreleasebuttonae-l' => { 296 => '17.7', 297 => '18.4', 299 => '78.4', 300 => '78.4', 301 => '16.1', 302 => '17.1', 303 => '17.1', 304 => '17.1', 305 => '7.1', 306 => '17.5', 309 => '18.4', 310 => '78.4', 311 => '18.2', 312 => 0x29 },
+ 'shutterreleasebuttonae-l' => { 297 => '17.7', 298 => '18.4', 300 => '78.4', 301 => '78.4', 302 => '16.1', 303 => '17.1', 304 => '17.1', 305 => '17.1', 306 => '7.1', 307 => '17.5', 310 => '18.4', 311 => '78.4', 312 => '18.2', 313 => 0x29, 314 => 0x29, 315 => 0x29 },
'shutterreleasemethod' => { 97 => 0x1010 },
'shutterreleasenocfcard' => { 82 => 0x2, 83 => 0x2, 90 => 0xf },
'shutterreleasetiming' => { 97 => 0x1011 },
'shutterreleasewithoutlens' => { 84 => 0x711 },
- 'shutterspeedlock' => { 297 => '38.1', 299 => '38.1', 300 => '38.1', 309 => '38.1', 310 => '38.1', 312 => 0xb7 },
+ 'shutterspeedlock' => { 298 => '38.1', 300 => '38.1', 301 => '38.1', 310 => '38.1', 311 => '38.1', 313 => 0xb7, 314 => 0xb7, 315 => 0xb7 },
'shutterspeedrange' => { 84 => 0x10c },
- 'shutterspeedsetting' => { 184 => 0x6, 424 => 0x2f, 425 => 0x28, 426 => 0x0 },
- 'shutterspeedvalue' => { 93 => 0x1, 119 => 0x9201, 319 => 0x1000, 381 => 0x400, 502 => 'ShutterSpeedValue' },
- 'shuttertype' => { 127 => 0x1050, 337 => 0x9f, 372 => 0x87, 461 => [0x133,0x139,0x13f] },
- 'sidecarforextension' => { 513 => 'SidecarForExtension' },
+ 'shutterspeedsetting' => { 184 => 0x6, 427 => 0x2f, 428 => 0x28, 429 => 0x0 },
+ 'shutterspeedvalue' => { 93 => 0x1, 119 => 0x9201, 322 => 0x1000, 384 => 0x400, 506 => 'ShutterSpeedValue' },
+ 'shuttertype' => { 127 => 0x1050, 340 => 0x9f, 375 => 0x87, 465 => [0x133,0x139,0x13f] },
+ 'sidecarforextension' => { 517 => 'SidecarForExtension' },
'sigmaimpulseparameters' => { 138 => 0xe0d },
'sigmascalingfactorcamera' => { 138 => 0xe0c },
'sigmascalingfactorlowres' => { 138 => 0xe0b },
@@ -6307,118 +6314,118 @@ my %tagLookup = (
'silentphotography' => { 234 => 0xbf },
'similarityindex' => { 131 => 0xe4 },
'singleframebracketing' => { 184 => 0x21 },
- 'skilllevel' => { 517 => 'skillLevel' },
- 'skintonecorrection' => { 372 => 0x95 },
+ 'skilllevel' => { 521 => 'skillLevel' },
+ 'skintonecorrection' => { 375 => 0x95 },
'skiplinetime' => { 138 => 0x184e },
- 'slaveflashmeteringsegments' => { 372 => 0x20b },
- 'slideshowname' => { 514 => 'slideshowName' },
- 'slideshownumber' => { 514 => 'slideshowNumber' },
- 'slideshowtotalnumber' => { 514 => 'slideshowTotalNumber' },
- 'slot2jpgsize' => { 241 => 0x24a },
+ 'slaveflashmeteringsegments' => { 375 => 0x20b },
+ 'slideshowname' => { 518 => 'slideshowName' },
+ 'slideshownumber' => { 518 => 'slideshowNumber' },
+ 'slideshowtotalnumber' => { 518 => 'slideshowTotalNumber' },
+ 'slot2jpgsize' => { 239 => 0x24a, 242 => 0x24a },
'slowshutter' => { 77 => 0x8 },
'slowsync' => { 127 => 0x1030 },
- 'smartalbumcolor' => { 411 => 0x20 },
- 'smartrange' => { 411 => 0xa012 },
- 'smileshutter' => { 426 => 0x31 },
- 'smileshuttermode' => { 426 => 0x27 },
- 'smoothness' => { 119 => 0xfe57, 496 => 'Smoothness', 498 => 'Smoothness' },
- 'snapshot' => { 510 => 'SnapshotLink' },
- 'snapshotformat' => { 510 => [\'SnapshotLink','SnapshotLinkFormat'] },
- 'snapshotheightpixels' => { 510 => [\'SnapshotLink','SnapshotLinkHeightPixels'] },
- 'snapshotimagerole' => { 510 => [\'SnapshotLink','SnapshotLinkImageRole'] },
- 'snapshotlink' => { 510 => [\'SnapshotLink','SnapshotLinkLink'] },
- 'snapshotlinkqualifier' => { 510 => [\'SnapshotLink','SnapshotLinkLinkQualifier'] },
- 'snapshots' => { 491 => 'Snapshots' },
- 'snapshotusedvideoframe' => { 510 => [\'SnapshotLink','SnapshotLinkUsedVideoFrame'] },
- 'snapshotusedvideoframetimeformat' => { 510 => [\'SnapshotLink','SnapshotLinkUsedVideoFrameTimeFormat'] },
- 'snapshotusedvideoframetimevalue' => { 510 => [\'SnapshotLink','SnapshotLinkUsedVideoFrameTimeValue'] },
- 'snapshotusedvideoframevalue' => { 510 => [\'SnapshotLink','SnapshotLinkUsedVideoFrameValue'] },
- 'snapshotwidthpixels' => { 510 => [\'SnapshotLink','SnapshotLinkWidthPixels'] },
- 'softskineffect' => { 437 => 0x200f },
- 'software' => { 119 => 0x131, 157 => 'Software', 327 => 'Software', 381 => 0x203, 391 => 'software', 414 => 0x18, 481 => 'Software', 521 => 'Software' },
- 'softwareversion' => { 397 => ['@swr',"\xa9swr"], 413 => 0x207 },
- 'soloist' => { 389 => "\xa9sol" },
- 'songwriter' => { 397 => "\xa9swf" },
- 'songwriterkeywords' => { 397 => "\xa9swk" },
+ 'smartalbumcolor' => { 414 => 0x20 },
+ 'smartrange' => { 414 => 0xa012 },
+ 'smileshutter' => { 429 => 0x31 },
+ 'smileshuttermode' => { 429 => 0x27 },
+ 'smoothness' => { 119 => 0xfe57, 500 => 'Smoothness', 502 => 'Smoothness' },
+ 'snapshot' => { 514 => 'SnapshotLink' },
+ 'snapshotformat' => { 514 => [\'SnapshotLink','SnapshotLinkFormat'] },
+ 'snapshotheightpixels' => { 514 => [\'SnapshotLink','SnapshotLinkHeightPixels'] },
+ 'snapshotimagerole' => { 514 => [\'SnapshotLink','SnapshotLinkImageRole'] },
+ 'snapshotlink' => { 514 => [\'SnapshotLink','SnapshotLinkLink'] },
+ 'snapshotlinkqualifier' => { 514 => [\'SnapshotLink','SnapshotLinkLinkQualifier'] },
+ 'snapshots' => { 495 => 'Snapshots' },
+ 'snapshotusedvideoframe' => { 514 => [\'SnapshotLink','SnapshotLinkUsedVideoFrame'] },
+ 'snapshotusedvideoframetimeformat' => { 514 => [\'SnapshotLink','SnapshotLinkUsedVideoFrameTimeFormat'] },
+ 'snapshotusedvideoframetimevalue' => { 514 => [\'SnapshotLink','SnapshotLinkUsedVideoFrameTimeValue'] },
+ 'snapshotusedvideoframevalue' => { 514 => [\'SnapshotLink','SnapshotLinkUsedVideoFrameValue'] },
+ 'snapshotwidthpixels' => { 514 => [\'SnapshotLink','SnapshotLinkWidthPixels'] },
+ 'softskineffect' => { 440 => 0x200f },
+ 'software' => { 119 => 0x131, 157 => 'Software', 330 => 'Software', 384 => 0x203, 394 => 'software', 417 => 0x18, 485 => 'Software', 525 => 'Software' },
+ 'softwareversion' => { 400 => ['@swr',"\xa9swr"], 416 => 0x207 },
+ 'soloist' => { 392 => "\xa9sol" },
+ 'songwriter' => { 400 => "\xa9swf" },
+ 'songwriterkeywords' => { 400 => "\xa9swk" },
'sonycropsize' => { 119 => 0x74c8 },
'sonycroptopleft' => { 119 => 0x74c7 },
- 'sonydatetime' => { 445 => 0x6, 447 => 0x1b6, 448 => 0x210, 449 => 0x1fe, 450 => 0x22c },
- 'sonydatetime2' => { 456 => 0x51 },
- 'sonyexposuretime' => { 456 => 0x3a, 457 => 0x46, 458 => [0x66,0x46] },
- 'sonyexposuretime2' => { 468 => 0xe },
- 'sonyfnumber' => { 456 => 0x3c, 457 => 0x48, 458 => [0x68,0x48], 468 => 0x14 },
- 'sonyimageheight' => { 445 => 0x1a, 459 => 0x44, 460 => 0x3f, 461 => 0x47 },
- 'sonyimageheightmax' => { 468 => 0x40 },
- 'sonyimagesize' => { 184 => 0x3b, 424 => 0x54, 425 => 0x54, 426 => 0x9 },
- 'sonyimagewidth' => { 445 => 0x1c },
- 'sonyimagewidthmax' => { 468 => 0x3e },
- 'sonyiso' => { 447 => 0x1218, 448 => 0x11f4, 449 => 0x1270, 450 => [0x1254,0x1258,0x1280], 451 => 0x113c, 452 => 0x344, 453 => 0x346, 454 => 0x320, 468 => 0x4 },
- 'sonymaxaperture' => { 456 => 0x0, 457 => 0x0 },
- 'sonymaxaperturevalue' => { 468 => 0x16 },
- 'sonyminaperture' => { 456 => 0x1, 457 => 0x1 },
- 'sonymodelid' => { 437 => 0xb001 },
+ 'sonydatetime' => { 448 => 0x6, 450 => 0x1b6, 451 => 0x210, 452 => 0x1fe, 453 => 0x22c },
+ 'sonydatetime2' => { 459 => 0x51 },
+ 'sonyexposuretime' => { 459 => 0x3a, 460 => 0x46, 461 => [0x66,0x46], 462 => 0x1a },
+ 'sonyexposuretime2' => { 472 => 0xe },
+ 'sonyfnumber' => { 459 => 0x3c, 460 => 0x48, 461 => [0x68,0x48], 462 => 0x1c, 472 => 0x14 },
+ 'sonyimageheight' => { 448 => 0x1a, 463 => 0x44, 464 => 0x3f, 465 => 0x47 },
+ 'sonyimageheightmax' => { 472 => 0x40 },
+ 'sonyimagesize' => { 184 => 0x3b, 427 => 0x54, 428 => 0x54, 429 => 0x9 },
+ 'sonyimagewidth' => { 448 => 0x1c },
+ 'sonyimagewidthmax' => { 472 => 0x3e },
+ 'sonyiso' => { 450 => 0x1218, 451 => 0x11f4, 452 => 0x1270, 453 => [0x1254,0x1258,0x1280], 454 => 0x113c, 455 => 0x344, 456 => 0x346, 457 => 0x320, 472 => 0x4 },
+ 'sonymaxaperture' => { 459 => 0x0, 460 => 0x0 },
+ 'sonymaxaperturevalue' => { 472 => 0x16 },
+ 'sonyminaperture' => { 459 => 0x1, 460 => 0x1 },
+ 'sonymodelid' => { 440 => 0xb001 },
'sonyquality' => { 184 => 0x3c },
'sonyrawimagesize' => { 119 => 0x7038 },
- 'sonytimeminsec' => { 457 => 0x61 },
- 'sortalbum' => { 389 => 'soal' },
- 'sortalbumartist' => { 389 => 'soaa' },
- 'sortartist' => { 389 => 'soar' },
- 'sortcomposer' => { 389 => 'soco' },
- 'sortname' => { 389 => 'sonm', 496 => 'SortName', 498 => 'SortName' },
- 'sortshow' => { 389 => 'sosn' },
- 'soundengineer' => { 389 => "\xa9sne" },
- 'source' => { 131 => 0x73, 327 => 'Source', 499 => 'source', 500 => 'source', 513 => 'Source' },
- 'sourcecount' => { 485 => 'SourceCount' },
- 'sourcecredits' => { 397 => "\xa9src" },
- 'sourcedirectoryindex' => { 359 => 0x0 },
- 'sourcefileindex' => { 359 => 0x2 },
- 'sourcephotoscount' => { 484 => 'SourcePhotosCount' },
+ 'sonytimeminsec' => { 460 => 0x61 },
+ 'sortalbum' => { 392 => 'soal' },
+ 'sortalbumartist' => { 392 => 'soaa' },
+ 'sortartist' => { 392 => 'soar' },
+ 'sortcomposer' => { 392 => 'soco' },
+ 'sortname' => { 392 => 'sonm', 500 => 'SortName', 502 => 'SortName' },
+ 'sortshow' => { 392 => 'sosn' },
+ 'soundengineer' => { 392 => "\xa9sne" },
+ 'source' => { 131 => 0x73, 330 => 'Source', 503 => 'source', 504 => 'source', 517 => 'Source' },
+ 'sourcecount' => { 489 => 'SourceCount' },
+ 'sourcecredits' => { 400 => "\xa9src" },
+ 'sourcedirectoryindex' => { 362 => 0x0 },
+ 'sourcefileindex' => { 362 => 0x2 },
+ 'sourcephotoscount' => { 488 => 'SourcePhotosCount' },
'sourceprofileprefix' => { 138 => 0x1390 },
- 'spatialfrequencyresponse' => { 502 => 'SpatialFrequencyResponse' },
- 'spatialfrequencyresponsecolumns' => { 502 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseColumns'] },
- 'spatialfrequencyresponsenames' => { 502 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseNames'] },
- 'spatialfrequencyresponserows' => { 502 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseRows'] },
- 'spatialfrequencyresponsevalues' => { 502 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseValues'] },
- 'speakerplacement' => { 525 => 'speakerPlacement' },
+ 'spatialfrequencyresponse' => { 506 => 'SpatialFrequencyResponse' },
+ 'spatialfrequencyresponsecolumns' => { 506 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseColumns'] },
+ 'spatialfrequencyresponsenames' => { 506 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseNames'] },
+ 'spatialfrequencyresponserows' => { 506 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseRows'] },
+ 'spatialfrequencyresponsevalues' => { 506 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseValues'] },
+ 'speakerplacement' => { 529 => 'speakerPlacement' },
'specialeffectlevel' => { 113 => 0x3030 },
'specialeffectmode' => { 113 => 0x2076 },
'specialeffectsetting' => { 113 => 0x3031 },
'specialinstructions' => { 131 => 0x28 },
- 'specialmode' => { 319 => 0x200, 413 => 0x200 },
- 'specialoccasion' => { 517 => 'specialOccasion' },
- 'specialtypeid' => { 479 => 'SpecialTypeID' },
- 'spectralsensitivity' => { 119 => 0x8824, 502 => 'SpectralSensitivity' },
+ 'specialmode' => { 322 => 0x200, 416 => 0x200 },
+ 'specialoccasion' => { 521 => 'specialOccasion' },
+ 'specialtypeid' => { 483 => 'SpecialTypeID' },
+ 'spectralsensitivity' => { 119 => 0x8824, 506 => 'SpectralSensitivity' },
'specularwhitelevel' => { 41 => 0x32b, 42 => 0x281, 45 => [0x2b9,0x2d0,0x2d4], 46 => 0x56a, 47 => 0x1e4, 48 => [0x1fd,0x2dd], 49 => [0x231,0x30f], 50 => 0x31d },
- 'speedx' => { 115 => 0x3, 397 => "\xa9xsp" },
- 'speedy' => { 115 => 0x4, 397 => "\xa9ysp" },
- 'speedz' => { 115 => 0x5, 397 => "\xa9zsp" },
- 'spherical' => { 485 => 'Spherical' },
+ 'speedx' => { 115 => 0x3, 400 => "\xa9xsp" },
+ 'speedy' => { 115 => 0x4, 400 => "\xa9ysp" },
+ 'speedz' => { 115 => 0x5, 400 => "\xa9zsp" },
+ 'spherical' => { 489 => 'Spherical' },
'sphericalvideoxml' => { 120 => 'SphericalVideoXML' },
- 'splitcolumn' => { 381 => 0x222 },
- 'splittoningbalance' => { 496 => 'SplitToningBalance', 498 => 'SplitToningBalance' },
- 'splittoninghighlighthue' => { 496 => 'SplitToningHighlightHue', 498 => 'SplitToningHighlightHue' },
- 'splittoninghighlightsaturation' => { 496 => 'SplitToningHighlightSaturation', 498 => 'SplitToningHighlightSaturation' },
- 'splittoningshadowhue' => { 496 => 'SplitToningShadowHue', 498 => 'SplitToningShadowHue' },
- 'splittoningshadowsaturation' => { 496 => 'SplitToningShadowSaturation', 498 => 'SplitToningShadowSaturation' },
- 'sport' => { 515 => 'sport' },
+ 'splitcolumn' => { 384 => 0x222 },
+ 'splittoningbalance' => { 500 => 'SplitToningBalance', 502 => 'SplitToningBalance' },
+ 'splittoninghighlighthue' => { 500 => 'SplitToningHighlightHue', 502 => 'SplitToningHighlightHue' },
+ 'splittoninghighlightsaturation' => { 500 => 'SplitToningHighlightSaturation', 502 => 'SplitToningHighlightSaturation' },
+ 'splittoningshadowhue' => { 500 => 'SplitToningShadowHue', 502 => 'SplitToningShadowHue' },
+ 'splittoningshadowsaturation' => { 500 => 'SplitToningShadowSaturation', 502 => 'SplitToningShadowSaturation' },
+ 'sport' => { 519 => 'sport' },
'spotfocuspointx' => { 181 => 0x2d },
'spotfocuspointy' => { 181 => 0x2e },
'spotmeteringmode' => { 34 => 0x27 },
'spotmeterlinktoafpoint' => { 84 => 0x107 },
- 'sractive' => { 353 => '17.1' },
+ 'sractive' => { 356 => '17.1' },
'srawquality' => { 34 => 0x2e },
- 'srfocallength' => { 374 => 0x3 },
- 'srgbrendering' => { 325 => 'sRGB' },
- 'srhalfpresstime' => { 374 => 0x2 },
- 'srresult' => { 374 => 0x0, 375 => 0x0 },
- 'stackedimage' => { 314 => 0x804 },
+ 'srfocallength' => { 377 => 0x3 },
+ 'srgbrendering' => { 328 => 'sRGB' },
+ 'srhalfpresstime' => { 377 => 0x2 },
+ 'srresult' => { 377 => 0x0, 378 => 0x0 },
+ 'stackedimage' => { 317 => 0x804 },
'standardmatrixcustom' => { 138 => 0x7d4 },
'standardmatrixdaylight' => { 138 => 0x7d0 },
'standardmatrixflash' => { 138 => 0x7d3 },
'standardmatrixfluorescent' => { 138 => 0x7d2 },
'standardmatrixtungsten' => { 138 => 0x7d1 },
'standardoutputhighlightpoint' => { 109 => 0x14 },
- 'standardoutputsensitivity' => { 119 => 0x8831, 503 => 'StandardOutputSensitivity' },
+ 'standardoutputsensitivity' => { 119 => 0x8831, 507 => 'StandardOutputSensitivity' },
'standardoutputshadowpoint' => { 109 => 0x15 },
'standardrawcolortone' => { 109 => 0xd },
'standardrawcontrast' => { 109 => 0xf },
@@ -6437,126 +6444,126 @@ my %tagLookup = (
'standardwhiteflash' => { 138 => 0x837 },
'standardwhitefluorescent' => { 138 => 0x836 },
'standardwhitetungsten' => { 138 => 0x835 },
- 'standbytimer' => { 297 => '19.1', 299 => '19.1', 300 => '19.1', 303 => '18.1', 304 => '18.1', 309 => '19.1', 310 => '19.1' },
- 'starlightview' => { 312 => 0x249 },
- 'startingpage' => { 515 => 'startingPage' },
+ 'standbytimer' => { 298 => '19.1', 300 => '19.1', 301 => '19.1', 304 => '18.1', 305 => '18.1', 310 => '19.1', 311 => '19.1' },
+ 'starlightview' => { 313 => 0x249, 314 => 0x249, 315 => 0x261 },
+ 'startingpage' => { 519 => 'startingPage' },
'startmovieshooting' => { 84 => 0x70d },
- 'starttimecode' => { 397 => "\xa9TIM", 525 => 'startTimecode' },
- 'starttimecodetimeformat' => { 525 => [\'startTimecode','startTimecodeTimeFormat'] },
- 'starttimecodetimevalue' => { 525 => [\'startTimecode','startTimecodeTimeValue'] },
- 'starttimecodevalue' => { 525 => [\'startTimecode','startTimecodeValue'] },
- 'starttimesamplesize' => { 397 => "\xa9TSZ", 525 => 'startTimeSampleSize' },
- 'starttimescale' => { 397 => "\xa9TSC", 525 => 'startTimeScale' },
- 'state' => { 161 => 'State', 337 => 0x6b, 513 => 'State' },
- 'status' => { 477 => 'Status', 489 => 'Status' },
- 'stereomode' => { 485 => 'StereoMode' },
- 'stitched' => { 485 => 'Stitched' },
- 'stitchingsoftware' => { 484 => 'StitchingSoftware', 485 => 'StitchingSoftware' },
- 'stopsabovebaseiso' => { 446 => 0x113e, 447 => 0x113e, 448 => 0x111a, 449 => 0x1196, 450 => 0x1172, 451 => 0x102a, 452 => 0x222, 453 => 0x222, 454 => 0x217, 468 => 0xa },
+ 'starttimecode' => { 400 => "\xa9TIM", 529 => 'startTimecode' },
+ 'starttimecodetimeformat' => { 529 => [\'startTimecode','startTimecodeTimeFormat'] },
+ 'starttimecodetimevalue' => { 529 => [\'startTimecode','startTimecodeTimeValue'] },
+ 'starttimecodevalue' => { 529 => [\'startTimecode','startTimecodeValue'] },
+ 'starttimesamplesize' => { 400 => "\xa9TSZ", 529 => 'startTimeSampleSize' },
+ 'starttimescale' => { 400 => "\xa9TSC", 529 => 'startTimeScale' },
+ 'state' => { 161 => 'State', 340 => 0x6b, 517 => 'State' },
+ 'status' => { 481 => 'Status', 493 => 'Status' },
+ 'stereomode' => { 489 => 'StereoMode' },
+ 'stitched' => { 489 => 'Stitched' },
+ 'stitchingsoftware' => { 488 => 'StitchingSoftware', 489 => 'StitchingSoftware' },
+ 'stopsabovebaseiso' => { 449 => 0x113e, 450 => 0x113e, 451 => 0x111a, 452 => 0x1196, 453 => 0x1172, 454 => 0x102a, 455 => 0x222, 456 => 0x222, 457 => 0x217, 472 => 0xa },
'storagemethod' => { 188 => 0x12 },
- 'storebyorientation' => { 297 => '46.3', 299 => '47.3', 300 => '47.3', 309 => '47.3', 310 => '47.3', 312 => 0xd },
- 'storedescription' => { 389 => 'sdes' },
- 'storylineidentifier' => { 510 => 'StorylineIdentifier' },
- 'straightenangle' => { 289 => 0x2fc08431 },
- 'streamready' => { 510 => 'StreamReady' },
+ 'storebyorientation' => { 298 => '46.3', 300 => '47.3', 301 => '47.3', 310 => '47.3', 311 => '47.3', 313 => 0xd, 314 => 0xd, 315 => 0xd },
+ 'storedescription' => { 392 => 'sdes' },
+ 'storylineidentifier' => { 514 => 'StorylineIdentifier' },
+ 'straightenangle' => { 290 => 0x2fc08431 },
+ 'streamready' => { 514 => 'StreamReady' },
'streamtype' => { 176 => 'StreamType' },
- 'stretchmode' => { 525 => 'stretchMode' },
- 'studydatetime' => { 474 => 'StudyDateTime' },
- 'studydescription' => { 474 => 'StudyDescription' },
- 'studyid' => { 474 => 'StudyID' },
- 'studyphysician' => { 474 => 'StudyPhysician' },
- 'styleperiod' => { 510 => 'StylePeriod' },
+ 'stretchmode' => { 529 => 'stretchMode' },
+ 'studydatetime' => { 478 => 'StudyDateTime' },
+ 'studydescription' => { 478 => 'StudyDescription' },
+ 'studyid' => { 478 => 'StudyID' },
+ 'studyphysician' => { 478 => 'StudyPhysician' },
+ 'styleperiod' => { 514 => 'StylePeriod' },
'sub-location' => { 131 => 0x5c },
- 'subcommanddialplaybackmode' => { 312 => 0x1cf },
+ 'subcommanddialplaybackmode' => { 313 => 0x1cf, 314 => 0x1cf, 315 => 0x1e7 },
'subfiledata' => { 164 => 'data' },
'subfiledirectory' => { 164 => '1Directory' },
'subfilemimetype' => { 164 => '2MIME' },
'subfilename' => { 164 => '1Name' },
'subfileresource' => { 164 => 'rsrc' },
'subfiletype' => { 119 => 0xfe, 164 => '0Type' },
- 'subject' => { 323 => 'Subject', 388 => 'Subject', 499 => 'subject', 512 => 'Subject', 526 => 'subject' },
- 'subjectarea' => { 119 => 0x9214, 502 => 'SubjectArea' },
- 'subjectcode' => { 509 => 'SubjectCode' },
- 'subjectdetection' => { 239 => 0x23e, 240 => 0x252, 241 => 0x252 },
- 'subjectdistance' => { 119 => 0x9206, 140 => 0x3e, 502 => 'SubjectDistance' },
- 'subjectdistancerange' => { 119 => 0xa40c, 502 => 'SubjectDistanceRange' },
- 'subjectlocation' => { 119 => 0xa214, 502 => 'SubjectLocation' },
- 'subjectmotion' => { 299 => '78.2', 300 => '78.2', 310 => '78.2', 312 => 0x103 },
+ 'subject' => { 326 => 'Subject', 391 => 'Subject', 503 => 'subject', 516 => 'Subject', 530 => 'subject' },
+ 'subjectarea' => { 119 => 0x9214, 506 => 'SubjectArea' },
+ 'subjectcode' => { 513 => 'SubjectCode' },
+ 'subjectdetection' => { 239 => 0x252, 240 => 0x23e, 241 => 0x252, 242 => 0x252 },
+ 'subjectdistance' => { 119 => 0x9206, 140 => 0x3e, 506 => 'SubjectDistance' },
+ 'subjectdistancerange' => { 119 => 0xa40c, 506 => 'SubjectDistanceRange' },
+ 'subjectlocation' => { 119 => 0xa214, 506 => 'SubjectLocation' },
+ 'subjectmotion' => { 300 => '78.2', 301 => '78.2', 311 => '78.2', 313 => 0x103, 314 => 0x103, 315 => 0x119 },
'subjectprogram' => { 181 => 0x22 },
'subjectreference' => { 131 => 0xc },
- 'sublabels1' => { 508 => [\'TagStructure','TagStructureSubLabels'] },
- 'sublabels2' => { 508 => [\'TagStructure','TagStructureSubLabelsSubLabels'] },
- 'sublabels3' => { 508 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabels'] },
- 'sublabels4' => { 508 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabels'] },
- 'sublabels5' => { 508 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabels'] },
+ 'sublabels1' => { 512 => [\'TagStructure','TagStructureSubLabels'] },
+ 'sublabels2' => { 512 => [\'TagStructure','TagStructureSubLabelsSubLabels'] },
+ 'sublabels3' => { 512 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabels'] },
+ 'sublabels4' => { 512 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabels'] },
+ 'sublabels5' => { 512 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabels'] },
'subseccreatedate' => { 114 => 'Exif-SubSecCreateDate' },
'subsecdatetimeoriginal' => { 114 => 'Exif-SubSecDateTimeOriginal' },
'subsecmodifydate' => { 114 => 'Exif-SubSecModifyDate' },
'subsectime' => { 119 => 0x9290 },
'subsectimedigitized' => { 119 => 0x9292 },
'subsectimeoriginal' => { 119 => 0x9291 },
- 'subsection1' => { 515 => 'subsection1' },
- 'subsection2' => { 515 => 'subsection2' },
- 'subsection3' => { 515 => 'subsection3' },
- 'subsection4' => { 515 => 'subsection4' },
- 'subselector' => { 297 => '49.1', 299 => '71.1', 300 => '71.1', 310 => '71.1', 312 => 0x8f },
- 'subselectorassignment' => { 297 => '48.1' },
- 'subselectorcenter' => { 299 => '72.1', 300 => '72.1', 310 => '72.1' },
- 'subselectorplusdials' => { 297 => '49.2', 299 => '73.1', 300 => '73.1', 310 => '73.1' },
- 'subtitle' => { 179 => 'WM/SubTitle', 389 => "\xa9st3", 397 => "\xa9snm", 515 => 'subtitle' },
- 'subtitlekeywords' => { 397 => "\xa9snk" },
- 'subversionfilename' => { 508 => [\'SubVersions','SubVersionsFileName'] },
- 'subversionreference' => { 508 => [\'SubVersions','SubVersionsVersRef'] },
- 'subversions' => { 508 => 'SubVersions' },
+ 'subsection1' => { 519 => 'subsection1' },
+ 'subsection2' => { 519 => 'subsection2' },
+ 'subsection3' => { 519 => 'subsection3' },
+ 'subsection4' => { 519 => 'subsection4' },
+ 'subselector' => { 298 => '49.1', 300 => '71.1', 301 => '71.1', 311 => '71.1', 313 => 0x8f, 314 => 0x8f, 315 => 0x8f },
+ 'subselectorassignment' => { 298 => '48.1' },
+ 'subselectorcenter' => { 300 => '72.1', 301 => '72.1', 311 => '72.1' },
+ 'subselectorplusdials' => { 298 => '49.2', 300 => '73.1', 301 => '73.1', 311 => '73.1' },
+ 'subtitle' => { 179 => 'WM/SubTitle', 392 => "\xa9st3", 400 => "\xa9snm", 519 => 'subtitle' },
+ 'subtitlekeywords' => { 400 => "\xa9snk" },
+ 'subversionfilename' => { 512 => [\'SubVersions','SubVersionsFileName'] },
+ 'subversionreference' => { 512 => [\'SubVersions','SubVersionsVersRef'] },
+ 'subversions' => { 512 => 'SubVersions' },
'superimposeddisplay' => { 82 => 0xa, 84 => 0x510, 85 => 0x9, 86 => 0xa, 89 => 0xa, 90 => 0xe },
'supermacro' => { 64 => 0x1a },
- 'supplementalcategories' => { 131 => 0x14, 513 => 'SupplementalCategories' },
+ 'supplementalcategories' => { 131 => 0x14, 517 => 'SupplementalCategories' },
'supplementaltype' => { 133 => 0x37 },
- 'supplementdisplayid' => { 515 => 'supplementDisplayID' },
- 'supplementstartingpage' => { 515 => 'supplementStartingPage' },
- 'supplementtitle' => { 515 => 'supplementTitle' },
- 'supplychainsource' => { 510 => 'SupplyChainSource' },
- 'supplychainsourceidentifier' => { 510 => [\'SupplyChainSource','SupplyChainSourceIdentifier'] },
- 'supplychainsourcename' => { 510 => [\'SupplyChainSource','SupplyChainSourceName'] },
- 'supportsamount' => { 496 => 'SupportsAmount', 498 => 'SupportsAmount' },
- 'supportscolor' => { 496 => 'SupportsColor', 498 => 'SupportsColor' },
- 'supportshighdynamicrange' => { 496 => 'SupportsHighDynamicRange', 498 => 'SupportsHighDynamicRange' },
- 'supportsmonochrome' => { 496 => 'SupportsMonochrome', 498 => 'SupportsMonochrome' },
- 'supportsnormaldynamicrange' => { 496 => 'SupportsNormalDynamicRange', 498 => 'SupportsNormalDynamicRange' },
- 'supportsoutputreferred' => { 496 => 'SupportsOutputReferred', 498 => 'SupportsOutputReferred' },
- 'supportsscenereferred' => { 496 => 'SupportsSceneReferred', 498 => 'SupportsSceneReferred' },
- 'svisosetting' => { 353 => 0x14 },
- 'swatchcoloranta' => { 530 => [\'SwatchGroups','SwatchGroupsColorantsA'] },
- 'swatchcolorantb' => { 530 => [\'SwatchGroups','SwatchGroupsColorantsB'] },
- 'swatchcolorantblack' => { 530 => [\'SwatchGroups','SwatchGroupsColorantsBlack'] },
- 'swatchcolorantblue' => { 530 => [\'SwatchGroups','SwatchGroupsColorantsBlue'] },
- 'swatchcolorantcyan' => { 530 => [\'SwatchGroups','SwatchGroupsColorantsCyan'] },
- 'swatchcolorantgray' => { 530 => [\'SwatchGroups','SwatchGroupsColorantsGray'] },
- 'swatchcolorantgreen' => { 530 => [\'SwatchGroups','SwatchGroupsColorantsGreen'] },
- 'swatchcolorantl' => { 530 => [\'SwatchGroups','SwatchGroupsColorantsL'] },
- 'swatchcolorantmagenta' => { 530 => [\'SwatchGroups','SwatchGroupsColorantsMagenta'] },
- 'swatchcolorantmode' => { 530 => [\'SwatchGroups','SwatchGroupsColorantsMode'] },
- 'swatchcolorantred' => { 530 => [\'SwatchGroups','SwatchGroupsColorantsRed'] },
- 'swatchcolorantswatchname' => { 530 => [\'SwatchGroups','SwatchGroupsColorantsSwatchName'] },
- 'swatchcoloranttint' => { 530 => [\'SwatchGroups','SwatchGroupsColorantsTint'] },
- 'swatchcoloranttype' => { 530 => [\'SwatchGroups','SwatchGroupsColorantsType'] },
- 'swatchcolorantyellow' => { 530 => [\'SwatchGroups','SwatchGroupsColorantsYellow'] },
- 'swatchgroupname' => { 530 => [\'SwatchGroups','SwatchGroupsGroupName'] },
- 'swatchgroups' => { 530 => 'SwatchGroups' },
- 'swatchgroupscolorants' => { 530 => [\'SwatchGroups','SwatchGroupsColorants'] },
- 'swatchgrouptype' => { 530 => [\'SwatchGroups','SwatchGroupsGroupType'] },
- 'sweeppanoramadirection' => { 337 => 0x93, 426 => 0x33 },
- 'sweeppanoramafieldofview' => { 337 => 0x94 },
- 'sweeppanoramasize' => { 426 => 0x32 },
+ 'supplementdisplayid' => { 519 => 'supplementDisplayID' },
+ 'supplementstartingpage' => { 519 => 'supplementStartingPage' },
+ 'supplementtitle' => { 519 => 'supplementTitle' },
+ 'supplychainsource' => { 514 => 'SupplyChainSource' },
+ 'supplychainsourceidentifier' => { 514 => [\'SupplyChainSource','SupplyChainSourceIdentifier'] },
+ 'supplychainsourcename' => { 514 => [\'SupplyChainSource','SupplyChainSourceName'] },
+ 'supportsamount' => { 500 => 'SupportsAmount', 502 => 'SupportsAmount' },
+ 'supportscolor' => { 500 => 'SupportsColor', 502 => 'SupportsColor' },
+ 'supportshighdynamicrange' => { 500 => 'SupportsHighDynamicRange', 502 => 'SupportsHighDynamicRange' },
+ 'supportsmonochrome' => { 500 => 'SupportsMonochrome', 502 => 'SupportsMonochrome' },
+ 'supportsnormaldynamicrange' => { 500 => 'SupportsNormalDynamicRange', 502 => 'SupportsNormalDynamicRange' },
+ 'supportsoutputreferred' => { 500 => 'SupportsOutputReferred', 502 => 'SupportsOutputReferred' },
+ 'supportsscenereferred' => { 500 => 'SupportsSceneReferred', 502 => 'SupportsSceneReferred' },
+ 'svisosetting' => { 356 => 0x14 },
+ 'swatchcoloranta' => { 534 => [\'SwatchGroups','SwatchGroupsColorantsA'] },
+ 'swatchcolorantb' => { 534 => [\'SwatchGroups','SwatchGroupsColorantsB'] },
+ 'swatchcolorantblack' => { 534 => [\'SwatchGroups','SwatchGroupsColorantsBlack'] },
+ 'swatchcolorantblue' => { 534 => [\'SwatchGroups','SwatchGroupsColorantsBlue'] },
+ 'swatchcolorantcyan' => { 534 => [\'SwatchGroups','SwatchGroupsColorantsCyan'] },
+ 'swatchcolorantgray' => { 534 => [\'SwatchGroups','SwatchGroupsColorantsGray'] },
+ 'swatchcolorantgreen' => { 534 => [\'SwatchGroups','SwatchGroupsColorantsGreen'] },
+ 'swatchcolorantl' => { 534 => [\'SwatchGroups','SwatchGroupsColorantsL'] },
+ 'swatchcolorantmagenta' => { 534 => [\'SwatchGroups','SwatchGroupsColorantsMagenta'] },
+ 'swatchcolorantmode' => { 534 => [\'SwatchGroups','SwatchGroupsColorantsMode'] },
+ 'swatchcolorantred' => { 534 => [\'SwatchGroups','SwatchGroupsColorantsRed'] },
+ 'swatchcolorantswatchname' => { 534 => [\'SwatchGroups','SwatchGroupsColorantsSwatchName'] },
+ 'swatchcoloranttint' => { 534 => [\'SwatchGroups','SwatchGroupsColorantsTint'] },
+ 'swatchcoloranttype' => { 534 => [\'SwatchGroups','SwatchGroupsColorantsType'] },
+ 'swatchcolorantyellow' => { 534 => [\'SwatchGroups','SwatchGroupsColorantsYellow'] },
+ 'swatchgroupname' => { 534 => [\'SwatchGroups','SwatchGroupsGroupName'] },
+ 'swatchgroups' => { 534 => 'SwatchGroups' },
+ 'swatchgroupscolorants' => { 534 => [\'SwatchGroups','SwatchGroupsColorants'] },
+ 'swatchgrouptype' => { 534 => [\'SwatchGroups','SwatchGroupsGroupType'] },
+ 'sweeppanoramadirection' => { 340 => 0x93, 429 => 0x33 },
+ 'sweeppanoramafieldofview' => { 340 => 0x94 },
+ 'sweeppanoramasize' => { 429 => 0x32 },
'switchtoregisteredafpoint' => { 83 => 0x12, 84 => 0x50a },
'symlink' => { 120 => 'SymLink' },
- 'syncreleasemode' => { 299 => '77.1', 300 => '77.1', 310 => '77.1', 312 => 0x41 },
- 'system' => { 381 => 0x204 },
- 'tagged' => { 383 => 0xdd, 384 => 'Tagged', 491 => 'tagged' },
- 'tagslist' => { 501 => 'TagsList' },
- 'tagstructure' => { 508 => 'TagStructure' },
- 'takenumber' => { 525 => 'takeNumber' },
- 'tapename' => { 525 => 'tapeName' },
+ 'syncreleasemode' => { 300 => '77.1', 301 => '77.1', 311 => '77.1', 313 => 0x41, 314 => 0x41, 315 => 0x41 },
+ 'system' => { 384 => 0x204 },
+ 'tagged' => { 386 => 0xdd, 387 => 'Tagged', 495 => 'tagged' },
+ 'tagslist' => { 505 => 'TagsList' },
+ 'tagstructure' => { 512 => 'TagStructure' },
+ 'takenumber' => { 529 => 'takeNumber' },
+ 'tapename' => { 529 => 'tapeName' },
'targetaperture' => { 77 => 0x4 },
'targetcompressionratio' => { 95 => 0x1 },
'targetdistancesetting' => { 97 => 0x1807 },
@@ -6614,111 +6621,112 @@ my %tagLookup = (
'tda4edgepolarity' => { 138 => 0x198f },
'tda4gain' => { 138 => 0x198e },
'tda4offset' => { 138 => 0x198c },
- 'teaser' => { 515 => 'teaser' },
- 'teleconverter' => { 186 => 0x105, 437 => 0x105 },
+ 'teaser' => { 519 => 'teaser' },
+ 'teleconverter' => { 186 => 0x105, 440 => 0x105 },
'tempampgainx100' => { 138 => 0x1914 },
- 'tempo' => { 525 => 'tempo' },
- 'temporalcoverage' => { 510 => 'TemporalCoverage' },
- 'temporalcoveragefrom' => { 510 => [\'TemporalCoverage','TemporalCoverageTempCoverageFrom'] },
- 'temporalcoverageto' => { 510 => [\'TemporalCoverage','TemporalCoverageTempCoverageTo'] },
- 'termsandconditionstext' => { 324 => 'TermsAndConditionsText' },
- 'termsandconditionsurl' => { 324 => 'TermsAndConditionsURL' },
+ 'tempo' => { 529 => 'tempo' },
+ 'temporalcoverage' => { 514 => 'TemporalCoverage' },
+ 'temporalcoveragefrom' => { 514 => [\'TemporalCoverage','TemporalCoverageTempCoverageFrom'] },
+ 'temporalcoverageto' => { 514 => [\'TemporalCoverage','TemporalCoverageTempCoverageTo'] },
+ 'termsandconditionstext' => { 327 => 'TermsAndConditionsText' },
+ 'termsandconditionsurl' => { 327 => 'TermsAndConditionsURL' },
'testname' => { 120 => 'TestName' },
'textencoding' => { 233 => 0x4 },
- 'textlayername' => { 513 => [\'TextLayers','TextLayersLayerName'] },
- 'textlayers' => { 513 => 'TextLayers' },
- 'textlayertext' => { 513 => [\'TextLayers','TextLayersLayerText'] },
- 'textstamp' => { 337 => [0x8008,0x8009,0x3b,0x3e] },
- 'texture' => { 496 => 'Texture', 498 => 'Texture' },
- 'three-dtrackingfacedetection' => { 299 => '1.4', 300 => '1.4', 310 => '1.4' },
- 'three-dtrackingwatcharea' => { 299 => '78.1', 300 => '78.1', 310 => '78.1' },
+ 'textlayername' => { 517 => [\'TextLayers','TextLayersLayerName'] },
+ 'textlayers' => { 517 => 'TextLayers' },
+ 'textlayertext' => { 517 => [\'TextLayers','TextLayersLayerText'] },
+ 'textstamp' => { 340 => [0x8008,0x8009,0x3b,0x3e] },
+ 'texture' => { 500 => 'Texture', 502 => 'Texture' },
+ 'three-dtrackingfacedetection' => { 300 => '1.4', 301 => '1.4', 311 => '1.4' },
+ 'three-dtrackingwatcharea' => { 300 => '78.1', 301 => '78.1', 311 => '78.1' },
'thresholding' => { 119 => 0x107 },
'thumbnailfilename' => { 97 => 0x817 },
- 'thumbnailformat' => { 523 => [\'Thumbnails','ThumbnailsFormat'] },
- 'thumbnailheight' => { 142 => 0xfa55, 523 => [\'Thumbnails','ThumbnailsHeight'] },
- 'thumbnailimage' => { 6 => 'CNDA', 97 => 0x2008, 114 => 'Exif-ThumbnailImage', 122 => 0x3, 167 => 'data', 319 => 0x100, 397 => 'thmb', 523 => [\'Thumbnails','ThumbnailsImage'] },
+ 'thumbnailformat' => { 527 => [\'Thumbnails','ThumbnailsFormat'] },
+ 'thumbnailheight' => { 142 => 0xfa55, 527 => [\'Thumbnails','ThumbnailsHeight'] },
+ 'thumbnailimage' => { 6 => 'CNDA', 97 => 0x2008, 114 => 'Exif-ThumbnailImage', 122 => 0x3, 167 => 'data', 322 => 0x100, 400 => 'thmb', 527 => [\'Thumbnails','ThumbnailsImage'] },
'thumbnailimagename' => { 167 => '1Name' },
'thumbnailimagesize' => { 167 => 'ImageSize' },
'thumbnailimagetype' => { 167 => '0Type' },
'thumbnailimagevalidarea' => { 64 => 0x13 },
'thumbnaillength' => { 119 => 0x202 },
'thumbnailoffset' => { 119 => 0x201 },
- 'thumbnailpng' => { 397 => 'thmb' },
- 'thumbnails' => { 523 => 'Thumbnails' },
- 'thumbnailwidth' => { 142 => 0xfa54, 523 => [\'Thumbnails','ThumbnailsWidth'] },
- 'ticker' => { 515 => 'ticker' },
- 'tiffhandling' => { 496 => 'TIFFHandling', 498 => 'TIFFHandling' },
- 'tiffmeteringimage' => { 187 => 0x104c, 435 => 0x1110 },
+ 'thumbnailpng' => { 400 => 'thmb' },
+ 'thumbnails' => { 527 => 'Thumbnails' },
+ 'thumbnailwidth' => { 142 => 0xfa54, 527 => [\'Thumbnails','ThumbnailsWidth'] },
+ 'ticker' => { 519 => 'ticker' },
+ 'tiffhandling' => { 500 => 'TIFFHandling', 502 => 'TIFFHandling' },
+ 'tiffmeteringimage' => { 187 => 0x104c, 438 => 0x1110 },
'tilelength' => { 119 => 0x143 },
'tilewidth' => { 119 => 0x142 },
- 'time' => { 138 => 0x401, 372 => 0x7 },
+ 'time' => { 138 => 0x401, 375 => 0x7 },
'timecodes' => { 119 => 0xc763 },
- 'timecreated' => { 131 => 0x3c, 140 => 0x14, 149 => 0x10, 384 => 'TimeCreated' },
- 'timelapseshotnumber' => { 340 => 0x10 },
- 'timeperiod' => { 515 => 'timePeriod' },
- 'timerfunctionbutton' => { 298 => '5.2', 301 => '12.1', 302 => '13.1' },
+ 'timecreated' => { 131 => 0x3c, 140 => 0x14, 149 => 0x10, 387 => 'TimeCreated' },
+ 'timelapseshotnumber' => { 343 => 0x10 },
+ 'timeperiod' => { 519 => 'timePeriod' },
+ 'timerfunctionbutton' => { 299 => '5.2', 302 => '12.1', 303 => '13.1' },
'timerlength' => { 84 => 0x80c },
- 'timerrecording' => { 337 => 0x96 },
- 'timescaleparams' => { 525 => 'timeScaleParams' },
- 'timescaleparamsframeoverlappingpercentage' => { 525 => [\'timeScaleParams','timeScaleParamsFrameOverlappingPercentage'] },
- 'timescaleparamsframesize' => { 525 => [\'timeScaleParams','timeScaleParamsFrameSize'] },
- 'timescaleparamsquality' => { 525 => [\'timeScaleParams','timeScaleParamsQuality'] },
+ 'timerrecording' => { 340 => 0x96 },
+ 'timescaleparams' => { 529 => 'timeScaleParams' },
+ 'timescaleparamsframeoverlappingpercentage' => { 529 => [\'timeScaleParams','timeScaleParamsFrameOverlappingPercentage'] },
+ 'timescaleparamsframesize' => { 529 => [\'timeScaleParams','timeScaleParamsFrameSize'] },
+ 'timescaleparamsquality' => { 529 => [\'timeScaleParams','timeScaleParamsQuality'] },
'timesent' => { 132 => 0x50 },
- 'timeshot' => { 486 => 'TimeShot' },
- 'timesignature' => { 525 => 'timeSignature' },
- 'timesincepoweron' => { 337 => 0x29 },
- 'timestamp' => { 11 => 0x45e, 19 => 0x11c, 313 => 0x8, 327 => 'TimeStamp', 337 => 0xaf, 485 => 'Timestamp', 492 => 'Timestamp', 508 => 'TimeStamp' },
+ 'timeshot' => { 490 => 'TimeShot' },
+ 'timesignature' => { 529 => 'timeSignature' },
+ 'timesincepoweron' => { 340 => 0x29 },
+ 'timestamp' => { 11 => 0x45e, 19 => 0x11c, 316 => 0x8, 330 => 'TimeStamp', 340 => 0xaf, 489 => 'Timestamp', 496 => 'Timestamp', 512 => 'TimeStamp' },
'timestamp1' => { 11 => 0x45a },
- 'timezone' => { 78 => 0x1, 239 => 0x594, 240 => 0x5c4, 241 => 0x5c4, 281 => 0x0, 407 => 0xa },
+ 'timezone' => { 78 => 0x1, 239 => 0x694, 240 => 0x594, 241 => 0x5c4, 242 => 0x5dc, 282 => 0x0, 410 => 0xa },
'timezonecity' => { 78 => 0x2 },
'timezonecode' => { 100 => 0x1 },
'timezoneinfo' => { 100 => 0x2 },
'timezoneoffset' => { 119 => 0x882a },
- 'tint' => { 391 => 'player.movie.visual.tint', 496 => 'Tint', 498 => 'Tint' },
- 'title' => { 119 => 0xa436, 157 => 'Title', 323 => 'Title', 327 => 'Title', 337 => 0x65, 388 => 'Title', 389 => ['titl',"\xa9nam"], 391 => 'title', 397 => ['titl',"\xa9nam"], 499 => 'title', 512 => 'Title', 523 => 'Title' },
- 'togglestyleamount' => { 496 => 'ToggleStyleAmount', 498 => 'ToggleStyleAmount' },
- 'togglestyledigest' => { 496 => 'ToggleStyleDigest', 498 => 'ToggleStyleDigest' },
+ 'tint' => { 394 => 'player.movie.visual.tint', 500 => 'Tint', 502 => 'Tint' },
+ 'title' => { 119 => 0xa436, 157 => 'Title', 326 => 'Title', 330 => 'Title', 340 => 0x65, 391 => 'Title', 392 => ['titl',"\xa9nam"], 394 => 'title', 400 => ['titl',"\xa9nam"], 503 => 'title', 516 => 'Title', 527 => 'Title' },
+ 'togglestyleamount' => { 500 => 'ToggleStyleAmount', 502 => 'ToggleStyleAmount' },
+ 'togglestyledigest' => { 500 => 'ToggleStyleDigest', 502 => 'ToggleStyleDigest' },
'tonecomp' => { 234 => 0x81 },
- 'tonecurve' => { 74 => 0x1, 372 => 0x402, 496 => 'ToneCurve', 498 => 'ToneCurve' },
+ 'tonecurve' => { 74 => 0x1, 375 => 0x402, 500 => 'ToneCurve', 502 => 'ToneCurve' },
'tonecurveactive' => { 108 => 0x110 },
- 'tonecurveadobergb' => { 411 => 0xa043 },
- 'tonecurveadobergbdefault' => { 411 => 0xa041 },
- 'tonecurveblue' => { 496 => 'ToneCurveBlue', 498 => 'ToneCurveBlue' },
- 'tonecurvebluex' => { 472 => 0x9003 },
- 'tonecurvebluey' => { 472 => 0x9007 },
+ 'tonecurveadobergb' => { 414 => 0xa043 },
+ 'tonecurveadobergbdefault' => { 414 => 0xa041 },
+ 'tonecurveblue' => { 500 => 'ToneCurveBlue', 502 => 'ToneCurveBlue' },
+ 'tonecurvebluex' => { 476 => 0x9003 },
+ 'tonecurvebluey' => { 476 => 0x9007 },
'tonecurvebrightness' => { 103 => 0x20410 },
- 'tonecurvebrightnessx' => { 472 => 0x9000 },
- 'tonecurvebrightnessy' => { 472 => 0x9004 },
+ 'tonecurvebrightnessx' => { 476 => 0x9000 },
+ 'tonecurvebrightnessy' => { 476 => 0x9004 },
'tonecurvecolorspace' => { 107 => 0x0 },
'tonecurvecontrast' => { 103 => 0x20411 },
- 'tonecurvegreen' => { 496 => 'ToneCurveGreen', 498 => 'ToneCurveGreen' },
- 'tonecurvegreenx' => { 472 => 0x9002 },
- 'tonecurvegreeny' => { 472 => 0x9006 },
+ 'tonecurvegreen' => { 500 => 'ToneCurveGreen', 502 => 'ToneCurveGreen' },
+ 'tonecurvegreenx' => { 476 => 0x9002 },
+ 'tonecurvegreeny' => { 476 => 0x9006 },
'tonecurveinputrange' => { 107 => 0x3 },
'tonecurveinterpolation' => { 108 => 0x159 },
'tonecurvemode' => { 108 => 0x113 },
- 'tonecurvename' => { 496 => 'ToneCurveName', 498 => 'ToneCurveName' },
- 'tonecurvename2012' => { 496 => 'ToneCurveName2012', 498 => 'ToneCurveName2012' },
+ 'tonecurvename' => { 500 => 'ToneCurveName', 502 => 'ToneCurveName' },
+ 'tonecurvename2012' => { 500 => 'ToneCurveName2012', 502 => 'ToneCurveName2012' },
'tonecurveoriginal' => { 103 => '0x20400.1' },
'tonecurveoutputrange' => { 107 => 0x5 },
'tonecurveprofilename' => { 138 => 0x1391 },
'tonecurveproperty' => { 108 => 0x3c },
- 'tonecurvepv2012' => { 496 => 'ToneCurvePV2012', 498 => 'ToneCurvePV2012' },
- 'tonecurvepv2012blue' => { 496 => 'ToneCurvePV2012Blue', 498 => 'ToneCurvePV2012Blue' },
- 'tonecurvepv2012green' => { 496 => 'ToneCurvePV2012Green', 498 => 'ToneCurvePV2012Green' },
- 'tonecurvepv2012red' => { 496 => 'ToneCurvePV2012Red', 498 => 'ToneCurvePV2012Red' },
- 'tonecurvered' => { 496 => 'ToneCurveRed', 498 => 'ToneCurveRed' },
- 'tonecurveredx' => { 472 => 0x9001 },
- 'tonecurveredy' => { 472 => 0x9005 },
- 'tonecurves' => { 372 => 0x403 },
+ 'tonecurvepv2012' => { 500 => 'ToneCurvePV2012', 502 => 'ToneCurvePV2012' },
+ 'tonecurvepv2012blue' => { 500 => 'ToneCurvePV2012Blue', 502 => 'ToneCurvePV2012Blue' },
+ 'tonecurvepv2012green' => { 500 => 'ToneCurvePV2012Green', 502 => 'ToneCurvePV2012Green' },
+ 'tonecurvepv2012red' => { 500 => 'ToneCurvePV2012Red', 502 => 'ToneCurvePV2012Red' },
+ 'tonecurvered' => { 500 => 'ToneCurveRed', 502 => 'ToneCurveRed' },
+ 'tonecurveredx' => { 476 => 0x9001 },
+ 'tonecurveredy' => { 476 => 0x9005 },
+ 'tonecurves' => { 375 => 0x403 },
'tonecurveshape' => { 107 => 0x1 },
- 'tonecurvesrgb' => { 411 => 0xa042 },
- 'tonecurvesrgbdefault' => { 411 => 0xa040 },
+ 'tonecurvesrgb' => { 414 => 0xa042 },
+ 'tonecurvesrgbdefault' => { 414 => 0xa040 },
'tonecurvex' => { 107 => 0xa },
'tonecurvey' => { 107 => 0xb },
- 'tonelevel' => { 314 => 0x52e },
- 'tonemapstrength' => { 496 => 'ToneMapStrength', 498 => 'ToneMapStrength' },
- 'toningeffect' => { 57 => 0xf, 234 => 0xb3, 248 => 0x38, 249 => 0x40, 250 => 0x48, 404 => 0x1015 },
+ 'tonelevel' => { 317 => 0x52e },
+ 'tonemap' => { 239 => 0x26a },
+ 'tonemapstrength' => { 500 => 'ToneMapStrength', 502 => 'ToneMapStrength' },
+ 'toningeffect' => { 57 => 0xf, 234 => 0xb3, 249 => 0x38, 250 => 0x40, 251 => 0x48, 407 => 0x1015 },
'toningeffectauto' => { 71 => 0xa4 },
'toningeffectfaithful' => { 70 => 0x74, 71 => 0x74 },
'toningeffectlandscape' => { 70 => 0x44, 71 => 0x44 },
@@ -6729,62 +6737,62 @@ my %tagLookup = (
'toningeffectuserdef1' => { 70 => 0xa4, 71 => 0xbc },
'toningeffectuserdef2' => { 70 => 0xbc, 71 => 0xd4 },
'toningeffectuserdef3' => { 70 => 0xd4, 71 => 0xec },
- 'toningsaturation' => { 248 => 0x39, 249 => 0x41, 250 => 0x49 },
+ 'toningsaturation' => { 249 => 0x39, 250 => 0x41, 251 => 0x49 },
'totalzoom' => { 140 => 0x62 },
- 'touchae' => { 337 => 0xab },
- 'track' => { 389 => "\xa9trk", 397 => "\xa9trk" },
- 'trackcreatedate' => { 396 => 0x1 },
- 'trackmodifydate' => { 396 => 0x2 },
- 'tracknumber' => { 389 => 'trkn', 525 => 'trackNumber' },
- 'tracks' => { 525 => 'Tracks' },
- 'tracksframerate' => { 525 => [\'Tracks','TracksFrameRate'] },
- 'tracksmarkers' => { 525 => [\'Tracks','TracksMarkers'] },
- 'tracksmarkerscomment' => { 525 => [\'Tracks','TracksMarkersComment'] },
- 'tracksmarkerscuepointparams' => { 525 => [\'Tracks','TracksMarkersCuePointParams'] },
- 'tracksmarkerscuepointparamskey' => { 525 => [\'Tracks','TracksMarkersCuePointParamsKey'] },
- 'tracksmarkerscuepointparamsvalue' => { 525 => [\'Tracks','TracksMarkersCuePointParamsValue'] },
- 'tracksmarkerscuepointtype' => { 525 => [\'Tracks','TracksMarkersCuePointType'] },
- 'tracksmarkersduration' => { 525 => [\'Tracks','TracksMarkersDuration'] },
- 'tracksmarkerslocation' => { 525 => [\'Tracks','TracksMarkersLocation'] },
- 'tracksmarkersname' => { 525 => [\'Tracks','TracksMarkersName'] },
- 'tracksmarkersprobability' => { 525 => [\'Tracks','TracksMarkersProbability'] },
- 'tracksmarkersspeaker' => { 525 => [\'Tracks','TracksMarkersSpeaker'] },
- 'tracksmarkersstarttime' => { 525 => [\'Tracks','TracksMarkersStartTime'] },
- 'tracksmarkerstarget' => { 525 => [\'Tracks','TracksMarkersTarget'] },
- 'tracksmarkerstype' => { 525 => [\'Tracks','TracksMarkersType'] },
- 'trackstrackname' => { 525 => [\'Tracks','TracksTrackName'] },
- 'trackstracktype' => { 525 => [\'Tracks','TracksTrackType'] },
- 'tracktype' => { 397 => 'kgtt' },
+ 'touchae' => { 340 => 0xab },
+ 'track' => { 392 => "\xa9trk", 400 => "\xa9trk" },
+ 'trackcreatedate' => { 399 => 0x1 },
+ 'trackmodifydate' => { 399 => 0x2 },
+ 'tracknumber' => { 392 => 'trkn', 529 => 'trackNumber' },
+ 'tracks' => { 529 => 'Tracks' },
+ 'tracksframerate' => { 529 => [\'Tracks','TracksFrameRate'] },
+ 'tracksmarkers' => { 529 => [\'Tracks','TracksMarkers'] },
+ 'tracksmarkerscomment' => { 529 => [\'Tracks','TracksMarkersComment'] },
+ 'tracksmarkerscuepointparams' => { 529 => [\'Tracks','TracksMarkersCuePointParams'] },
+ 'tracksmarkerscuepointparamskey' => { 529 => [\'Tracks','TracksMarkersCuePointParamsKey'] },
+ 'tracksmarkerscuepointparamsvalue' => { 529 => [\'Tracks','TracksMarkersCuePointParamsValue'] },
+ 'tracksmarkerscuepointtype' => { 529 => [\'Tracks','TracksMarkersCuePointType'] },
+ 'tracksmarkersduration' => { 529 => [\'Tracks','TracksMarkersDuration'] },
+ 'tracksmarkerslocation' => { 529 => [\'Tracks','TracksMarkersLocation'] },
+ 'tracksmarkersname' => { 529 => [\'Tracks','TracksMarkersName'] },
+ 'tracksmarkersprobability' => { 529 => [\'Tracks','TracksMarkersProbability'] },
+ 'tracksmarkersspeaker' => { 529 => [\'Tracks','TracksMarkersSpeaker'] },
+ 'tracksmarkersstarttime' => { 529 => [\'Tracks','TracksMarkersStartTime'] },
+ 'tracksmarkerstarget' => { 529 => [\'Tracks','TracksMarkersTarget'] },
+ 'tracksmarkerstype' => { 529 => [\'Tracks','TracksMarkersType'] },
+ 'trackstrackname' => { 529 => [\'Tracks','TracksTrackName'] },
+ 'trackstracktype' => { 529 => [\'Tracks','TracksTrackType'] },
+ 'tracktype' => { 400 => 'kgtt' },
'trailer' => { 120 => 'Trailer' },
'trailersignature' => { 164 => 'zmie' },
- 'transcript' => { 510 => 'Transcript' },
- 'transcriptlink' => { 510 => 'TranscriptLink' },
- 'transcriptlinklink' => { 510 => [\'TranscriptLink','TranscriptLinkLink'] },
- 'transcriptlinklinkqualifier' => { 510 => [\'TranscriptLink','TranscriptLinkLinkQualifier'] },
- 'transferfunction' => { 119 => 0x12d, 521 => 'TransferFunction' },
+ 'transcript' => { 514 => 'Transcript' },
+ 'transcriptlink' => { 514 => 'TranscriptLink' },
+ 'transcriptlinklink' => { 514 => [\'TranscriptLink','TranscriptLinkLink'] },
+ 'transcriptlinklinkqualifier' => { 514 => [\'TranscriptLink','TranscriptLinkLinkQualifier'] },
+ 'transferfunction' => { 119 => 0x12d, 525 => 'TransferFunction' },
'transfertimenormal' => { 138 => 0x1888 },
'transfertimetest' => { 138 => 0x1889 },
- 'transform' => { 337 => [0x8012,0x59] },
- 'transformation' => { 511 => 'Transformation' },
- 'transmissionreference' => { 513 => 'TransmissionReference' },
- 'trapped' => { 323 => 'Trapped', 512 => 'Trapped' },
+ 'transform' => { 340 => [0x8012,0x59] },
+ 'transformation' => { 515 => 'Transformation' },
+ 'transmissionreference' => { 517 => 'TransmissionReference' },
+ 'trapped' => { 326 => 'Trapped', 516 => 'Trapped' },
'trashbuttonfunction' => { 84 => 0x710 },
- 'travelday' => { 337 => 0x36 },
- 'treble' => { 391 => 'player.movie.audio.treble' },
- 'triggermode' => { 398 => 0x6, 399 => 0x34, 400 => 0x34 },
+ 'travelday' => { 340 => 0x36 },
+ 'treble' => { 394 => 'player.movie.audio.treble' },
+ 'triggermode' => { 401 => 0x6, 402 => 0x34, 403 => 0x34 },
'tstop' => { 119 => 0xc772 },
- 'ttl_da_adown' => { 360 => 0x5 },
- 'ttl_da_aup' => { 360 => 0x4 },
- 'ttl_da_bdown' => { 360 => 0x7 },
- 'ttl_da_bup' => { 360 => 0x6 },
- 'tungstenawb' => { 350 => 0x1 },
- 'tvepisode' => { 389 => 'tves' },
- 'tvepisodeid' => { 389 => 'tven' },
- 'tvexposuretimesetting' => { 353 => 0x12 },
- 'tvnetworkname' => { 389 => 'tvnn' },
- 'tvseason' => { 389 => 'tvsn' },
- 'tvshow' => { 389 => 'tvsh' },
- 'type' => { 480 => 'Type', 499 => 'type', 520 => 'type' },
+ 'ttl_da_adown' => { 363 => 0x5 },
+ 'ttl_da_aup' => { 363 => 0x4 },
+ 'ttl_da_bdown' => { 363 => 0x7 },
+ 'ttl_da_bup' => { 363 => 0x6 },
+ 'tungstenawb' => { 353 => 0x1 },
+ 'tvepisode' => { 392 => 'tves' },
+ 'tvepisodeid' => { 392 => 'tven' },
+ 'tvexposuretimesetting' => { 356 => 0x12 },
+ 'tvnetworkname' => { 392 => 'tvnn' },
+ 'tvseason' => { 392 => 'tvsn' },
+ 'tvshow' => { 392 => 'tvsh' },
+ 'type' => { 484 => 'Type', 503 => 'type', 524 => 'type' },
'typestatus' => { 118 => [\'Identification','IdentificationTypeStatus'] },
'uniquecameramodel' => { 119 => 0xc614 },
'uniquedocumentid' => { 131 => 0xbb },
@@ -6795,17 +6803,17 @@ my %tagLookup = (
'uniquematrixfluorescent' => { 138 => 0x7e6 },
'uniquematrixtungsten' => { 138 => 0x7e5 },
'uniqueobjectname' => { 132 => 0x64 },
- 'units' => { 481 => 'Units' },
- 'unknown_aacr' => { 389 => 'AACR' },
- 'unknown_cdek' => { 389 => 'CDEK' },
- 'unknown_cdet' => { 389 => 'CDET' },
- 'unknownblock' => { 372 => 0x405 },
- 'unknownblock1' => { 318 => 0x635 },
- 'unknownblock2' => { 318 => 0x636 },
- 'unknownblock3' => { 318 => 0x1103 },
- 'unknownblock4' => { 318 => 0x1104 },
+ 'units' => { 485 => 'Units' },
+ 'unknown_aacr' => { 392 => 'AACR' },
+ 'unknown_cdek' => { 392 => 'CDEK' },
+ 'unknown_cdet' => { 392 => 'CDET' },
+ 'unknownblock' => { 375 => 0x405 },
+ 'unknownblock1' => { 321 => 0x635 },
+ 'unknownblock2' => { 321 => 0x636 },
+ 'unknownblock3' => { 321 => 0x1103 },
+ 'unknownblock4' => { 321 => 0x1104 },
'unknowncontrast' => { 109 => 0x45 },
- 'unknowndate' => { 381 => 0x212 },
+ 'unknowndate' => { 384 => 0x212 },
'unknownev' => { 138 => 0x1 },
'unknownlinear' => { 109 => 0x46 },
'unknownnumber' => { 97 => 0x180b },
@@ -6816,200 +6824,200 @@ my %tagLookup = (
'unknownrawshadow' => { 109 => 0x84 },
'unknownrawshadowpoint' => { 109 => 0x49 },
'unknownsharpness' => { 109 => 0x47 },
- 'unknowntags' => { 397 => 'TAGS' },
+ 'unknowntags' => { 400 => 'TAGS' },
'unknowntemperature' => { 121 => 0x4 },
- 'unknownthumbnail' => { 397 => 'thmb' },
- 'unsharp1color' => { 294 => 0x13 },
- 'unsharp1halowidth' => { 294 => 0x19 },
- 'unsharp1intensity' => { 294 => 0x17 },
- 'unsharp1threshold' => { 294 => 0x1b },
- 'unsharp2color' => { 294 => 0x2e },
- 'unsharp2halowidth' => { 294 => 0x34 },
- 'unsharp2intensity' => { 294 => 0x32 },
- 'unsharp2threshold' => { 294 => 0x36 },
- 'unsharp3color' => { 294 => 0x49 },
- 'unsharp3halowidth' => { 294 => 0x4f },
- 'unsharp3intensity' => { 294 => 0x4d },
- 'unsharp3threshold' => { 294 => 0x51 },
- 'unsharp4color' => { 294 => 0x64 },
- 'unsharp4halowidth' => { 294 => 0x6a },
- 'unsharp4intensity' => { 294 => 0x68 },
- 'unsharp4threshold' => { 294 => 0x6c },
- 'unsharpcount' => { 294 => 0x0 },
- 'unsharpmask' => { 109 => 0x90, 289 => 0x76a43200 },
+ 'unknownthumbnail' => { 400 => 'thmb' },
+ 'unsharp1color' => { 295 => 0x13 },
+ 'unsharp1halowidth' => { 295 => 0x19 },
+ 'unsharp1intensity' => { 295 => 0x17 },
+ 'unsharp1threshold' => { 295 => 0x1b },
+ 'unsharp2color' => { 295 => 0x2e },
+ 'unsharp2halowidth' => { 295 => 0x34 },
+ 'unsharp2intensity' => { 295 => 0x32 },
+ 'unsharp2threshold' => { 295 => 0x36 },
+ 'unsharp3color' => { 295 => 0x49 },
+ 'unsharp3halowidth' => { 295 => 0x4f },
+ 'unsharp3intensity' => { 295 => 0x4d },
+ 'unsharp3threshold' => { 295 => 0x51 },
+ 'unsharp4color' => { 295 => 0x64 },
+ 'unsharp4halowidth' => { 295 => 0x6a },
+ 'unsharp4intensity' => { 295 => 0x68 },
+ 'unsharp4threshold' => { 295 => 0x6c },
+ 'unsharpcount' => { 295 => 0x0 },
+ 'unsharpmask' => { 109 => 0x90, 290 => 0x76a43200 },
'unsharpmaskfineness' => { 103 => 0x20309 },
'unsharpmaskstrength' => { 103 => 0x20308 },
'unsharpmaskthreshold' => { 103 => 0x2030a },
- 'uprightcentermode' => { 496 => 'UprightCenterMode', 498 => 'UprightCenterMode' },
- 'uprightcenternormx' => { 496 => 'UprightCenterNormX', 498 => 'UprightCenterNormX' },
- 'uprightcenternormy' => { 496 => 'UprightCenterNormY', 498 => 'UprightCenterNormY' },
- 'uprightdependentdigest' => { 496 => 'UprightDependentDigest', 498 => 'UprightDependentDigest' },
- 'uprightfocallength35mm' => { 496 => 'UprightFocalLength35mm', 498 => 'UprightFocalLength35mm' },
- 'uprightfocalmode' => { 496 => 'UprightFocalMode', 498 => 'UprightFocalMode' },
- 'uprightfoursegments_0' => { 496 => 'UprightFourSegments_0', 498 => 'UprightFourSegments_0' },
- 'uprightfoursegments_1' => { 496 => 'UprightFourSegments_1', 498 => 'UprightFourSegments_1' },
- 'uprightfoursegments_2' => { 496 => 'UprightFourSegments_2', 498 => 'UprightFourSegments_2' },
- 'uprightfoursegments_3' => { 496 => 'UprightFourSegments_3', 498 => 'UprightFourSegments_3' },
- 'uprightfoursegmentscount' => { 496 => 'UprightFourSegmentsCount', 498 => 'UprightFourSegmentsCount' },
- 'uprightguideddependentdigest' => { 496 => 'UprightGuidedDependentDigest', 498 => 'UprightGuidedDependentDigest' },
- 'uprightpreview' => { 496 => 'UprightPreview', 498 => 'UprightPreview' },
- 'uprighttransform_0' => { 496 => 'UprightTransform_0', 498 => 'UprightTransform_0' },
- 'uprighttransform_1' => { 496 => 'UprightTransform_1', 498 => 'UprightTransform_1' },
- 'uprighttransform_2' => { 496 => 'UprightTransform_2', 498 => 'UprightTransform_2' },
- 'uprighttransform_3' => { 496 => 'UprightTransform_3', 498 => 'UprightTransform_3' },
- 'uprighttransform_4' => { 496 => 'UprightTransform_4', 498 => 'UprightTransform_4' },
- 'uprighttransform_5' => { 496 => 'UprightTransform_5', 498 => 'UprightTransform_5' },
- 'uprighttransformcount' => { 496 => 'UprightTransformCount', 498 => 'UprightTransformCount' },
- 'uprightversion' => { 496 => 'UprightVersion', 498 => 'UprightVersion' },
- 'urgency' => { 131 => 0xa, 513 => 'Urgency' },
- 'url' => { 157 => 'URL', 327 => 'URL', 386 => 0x40b, 515 => 'url' },
- 'url_list' => { 386 => 0x41e },
- 'urla-platform' => { 515 => [\'url','urlA-platform'] },
- 'urlurl' => { 515 => [\'url','urlUrl'] },
+ 'uprightcentermode' => { 500 => 'UprightCenterMode', 502 => 'UprightCenterMode' },
+ 'uprightcenternormx' => { 500 => 'UprightCenterNormX', 502 => 'UprightCenterNormX' },
+ 'uprightcenternormy' => { 500 => 'UprightCenterNormY', 502 => 'UprightCenterNormY' },
+ 'uprightdependentdigest' => { 500 => 'UprightDependentDigest', 502 => 'UprightDependentDigest' },
+ 'uprightfocallength35mm' => { 500 => 'UprightFocalLength35mm', 502 => 'UprightFocalLength35mm' },
+ 'uprightfocalmode' => { 500 => 'UprightFocalMode', 502 => 'UprightFocalMode' },
+ 'uprightfoursegments_0' => { 500 => 'UprightFourSegments_0', 502 => 'UprightFourSegments_0' },
+ 'uprightfoursegments_1' => { 500 => 'UprightFourSegments_1', 502 => 'UprightFourSegments_1' },
+ 'uprightfoursegments_2' => { 500 => 'UprightFourSegments_2', 502 => 'UprightFourSegments_2' },
+ 'uprightfoursegments_3' => { 500 => 'UprightFourSegments_3', 502 => 'UprightFourSegments_3' },
+ 'uprightfoursegmentscount' => { 500 => 'UprightFourSegmentsCount', 502 => 'UprightFourSegmentsCount' },
+ 'uprightguideddependentdigest' => { 500 => 'UprightGuidedDependentDigest', 502 => 'UprightGuidedDependentDigest' },
+ 'uprightpreview' => { 500 => 'UprightPreview', 502 => 'UprightPreview' },
+ 'uprighttransform_0' => { 500 => 'UprightTransform_0', 502 => 'UprightTransform_0' },
+ 'uprighttransform_1' => { 500 => 'UprightTransform_1', 502 => 'UprightTransform_1' },
+ 'uprighttransform_2' => { 500 => 'UprightTransform_2', 502 => 'UprightTransform_2' },
+ 'uprighttransform_3' => { 500 => 'UprightTransform_3', 502 => 'UprightTransform_3' },
+ 'uprighttransform_4' => { 500 => 'UprightTransform_4', 502 => 'UprightTransform_4' },
+ 'uprighttransform_5' => { 500 => 'UprightTransform_5', 502 => 'UprightTransform_5' },
+ 'uprighttransformcount' => { 500 => 'UprightTransformCount', 502 => 'UprightTransformCount' },
+ 'uprightversion' => { 500 => 'UprightVersion', 502 => 'UprightVersion' },
+ 'urgency' => { 131 => 0xa, 517 => 'Urgency' },
+ 'url' => { 157 => 'URL', 330 => 'URL', 389 => 0x40b, 519 => 'url' },
+ 'url_list' => { 389 => 0x41e },
+ 'urla-platform' => { 519 => [\'url','urlA-platform'] },
+ 'urlurl' => { 519 => [\'url','urlUrl'] },
'usablemeteringmodes' => { 84 => 0x10a },
'usableshootingmodes' => { 84 => 0x109 },
- 'usage' => { 516 => 'usage' },
- 'usageterms' => { 529 => 'UsageTerms' },
- 'usbpowerdelivery' => { 239 => 0x664, 240 => 0x694, 241 => 0x6fc },
- 'usedialwithouthold' => { 312 => 0xbf },
- 'useguidelines' => { 494 => 'useGuidelines' },
- 'usepanoramaviewer' => { 484 => 'UsePanoramaViewer' },
- 'usercollection' => { 391 => 'collection.user' },
- 'usercomment' => { 97 => 0x805, 119 => 0x9286, 502 => 'UserComment' },
+ 'usage' => { 520 => 'usage' },
+ 'usageterms' => { 533 => 'UsageTerms' },
+ 'usbpowerdelivery' => { 239 => 0x762, 240 => 0x664, 241 => 0x694, 242 => 0x6fc },
+ 'usedialwithouthold' => { 313 => 0xbf, 314 => 0xbf, 315 => 0xbf },
+ 'useguidelines' => { 498 => 'useGuidelines' },
+ 'usepanoramaviewer' => { 488 => 'UsePanoramaViewer' },
+ 'usercollection' => { 394 => 'collection.user' },
+ 'usercomment' => { 97 => 0x805, 119 => 0x9286, 506 => 'UserComment' },
'userdef1picturestyle' => { 19 => 0x10c, 70 => 0xd8, 71 => 0xf0 },
'userdef2picturestyle' => { 19 => 0x10e, 70 => 0xda, 71 => 0xf2 },
'userdef3picturestyle' => { 19 => 0x110, 70 => 0xdc, 71 => 0xf4 },
- 'userfields' => { 489 => 'UserFields' },
- 'userlabel' => { 398 => 0x2b, 399 => 0x5a, 400 => 0x68 },
- 'userprofile' => { 332 => 0x302, 336 => 0x34c, 339 => 0x3038 },
- 'userrating' => { 391 => 'rating.user', 397 => 'urat' },
+ 'userfields' => { 493 => 'UserFields' },
+ 'userlabel' => { 401 => 0x2b, 402 => 0x5a, 403 => 0x68 },
+ 'userprofile' => { 335 => 0x302, 339 => 0x34c, 342 => 0x3038 },
+ 'userrating' => { 394 => 'rating.user', 400 => 'urat' },
'usmlenselectronicmf' => { 2 => 0x7, 83 => 0x7, 84 => 0x501 },
- 'uspsnumber' => { 515 => 'uspsNumber' },
+ 'uspsnumber' => { 519 => 'uspsNumber' },
'utmeasting' => { 168 => 'Easting' },
'utmmapdatum' => { 168 => 'Datum' },
'utmnorthing' => { 168 => 'Northing' },
'utmzone' => { 168 => 'Zone' },
- 'uuid' => { 496 => 'UUID', 498 => 'UUID' },
- 'uv-irfiltercorrection' => { 332 => 0x325 },
- 'validbits' => { 318 => 0x611, 319 => 0x102c },
- 'validpixeldepth' => { 322 => 0x611 },
- 'variablelowpassfilter' => { 437 => 0x2028 },
+ 'uuid' => { 500 => 'UUID', 502 => 'UUID' },
+ 'uv-irfiltercorrection' => { 335 => 0x325 },
+ 'validbits' => { 321 => 0x611, 322 => 0x102c },
+ 'validpixeldepth' => { 325 => 0x611 },
+ 'variablelowpassfilter' => { 440 => 0x2028 },
'variousmodes' => { 140 => 0x26 },
'variousmodes2' => { 140 => 0x3a },
'variprogram' => { 234 => 0xab },
'varraydacnominalvalues' => { 138 => 0x191e },
- 'vendor' => { 397 => 'vndr' },
- 'vendorinfo' => { 475 => 'VendorInfo' },
- 'vendorinfomanufacturer' => { 475 => [\'VendorInfo','VendorInfoManufacturer'] },
- 'vendorinfomodel' => { 475 => [\'VendorInfo','VendorInfoModel'] },
- 'vendorinfonotes' => { 475 => [\'VendorInfo','VendorInfoNotes'] },
+ 'vendor' => { 400 => 'vndr' },
+ 'vendorinfo' => { 479 => 'VendorInfo' },
+ 'vendorinfomanufacturer' => { 479 => [\'VendorInfo','VendorInfoManufacturer'] },
+ 'vendorinfomodel' => { 479 => [\'VendorInfo','VendorInfoModel'] },
+ 'vendorinfonotes' => { 479 => [\'VendorInfo','VendorInfoNotes'] },
'verbatimidentification' => { 118 => [\'Identification','IdentificationVerbatimIdentification'] },
- 'version' => { 127 => 0x0, 388 => 'Version', 391 => 'version', 496 => 'Version', 498 => 'Version', 507 => 'Version' },
- 'versioncreatedate' => { 472 => 0xd100 },
- 'versionid' => { 526 => 'VersionID' },
- 'versionidentifier' => { 515 => 'versionIdentifier' },
- 'versionmodifydate' => { 472 => 0xd101 },
- 'versions' => { 526 => 'Versions' },
- 'versionscomments' => { 526 => [\'Versions','VersionsComments'] },
- 'versionsevent' => { 526 => [\'Versions','VersionsEvent'] },
- 'versionseventaction' => { 526 => [\'Versions','VersionsEventAction'] },
- 'versionseventchanged' => { 526 => [\'Versions','VersionsEventChanged'] },
- 'versionseventinstanceid' => { 526 => [\'Versions','VersionsEventInstanceID'] },
- 'versionseventparameters' => { 526 => [\'Versions','VersionsEventParameters'] },
- 'versionseventsoftwareagent' => { 526 => [\'Versions','VersionsEventSoftwareAgent'] },
- 'versionseventwhen' => { 526 => [\'Versions','VersionsEventWhen'] },
- 'versionsmodifier' => { 526 => [\'Versions','VersionsModifier'] },
- 'versionsmodifydate' => { 526 => [\'Versions','VersionsModifyDate'] },
- 'versionsversion' => { 526 => [\'Versions','VersionsVersion'] },
- 'verticalafonbutton' => { 296 => '3.2', 297 => '47.2', 299 => '79.1', 312 => 0x11d },
+ 'version' => { 127 => 0x0, 391 => 'Version', 394 => 'version', 500 => 'Version', 502 => 'Version', 511 => 'Version' },
+ 'versioncreatedate' => { 476 => 0xd100 },
+ 'versionid' => { 530 => 'VersionID' },
+ 'versionidentifier' => { 519 => 'versionIdentifier' },
+ 'versionmodifydate' => { 476 => 0xd101 },
+ 'versions' => { 530 => 'Versions' },
+ 'versionscomments' => { 530 => [\'Versions','VersionsComments'] },
+ 'versionsevent' => { 530 => [\'Versions','VersionsEvent'] },
+ 'versionseventaction' => { 530 => [\'Versions','VersionsEventAction'] },
+ 'versionseventchanged' => { 530 => [\'Versions','VersionsEventChanged'] },
+ 'versionseventinstanceid' => { 530 => [\'Versions','VersionsEventInstanceID'] },
+ 'versionseventparameters' => { 530 => [\'Versions','VersionsEventParameters'] },
+ 'versionseventsoftwareagent' => { 530 => [\'Versions','VersionsEventSoftwareAgent'] },
+ 'versionseventwhen' => { 530 => [\'Versions','VersionsEventWhen'] },
+ 'versionsmodifier' => { 530 => [\'Versions','VersionsModifier'] },
+ 'versionsmodifydate' => { 530 => [\'Versions','VersionsModifyDate'] },
+ 'versionsversion' => { 530 => [\'Versions','VersionsVersion'] },
+ 'verticalafonbutton' => { 297 => '3.2', 298 => '47.2', 300 => '79.1', 314 => 0x11d, 315 => 0x135 },
'verticalclockoverlaps' => { 138 => 0x412 },
- 'verticalfuncbutton' => { 297 => '42.2', 299 => '67.1', 312 => 0x115 },
- 'verticalfuncbuttonplaybackmode' => { 312 => 0x1b7 },
- 'verticalfuncbuttonplusdials' => { 297 => '43.1' },
- 'verticalfuncplusdials' => { 299 => '68.1' },
- 'verticalisobutton' => { 241 => 0x792 },
- 'verticalmovieafonbutton' => { 312 => 0x1f9 },
- 'verticalmoviefuncbutton' => { 312 => 0x1e1 },
- 'verticalmultiselector' => { 297 => '42.1', 299 => '66.1', 300 => '66.1', 310 => '66.1', 312 => 0x18f },
- 'verticalmultiselectorplaybackmode' => { 312 => 0x125 },
+ 'verticalfuncbutton' => { 298 => '42.2', 300 => '67.1', 314 => 0x115, 315 => 0x12d },
+ 'verticalfuncbuttonplaybackmode' => { 314 => 0x1b7, 315 => 0x1cf },
+ 'verticalfuncbuttonplusdials' => { 298 => '43.1' },
+ 'verticalfuncplusdials' => { 300 => '68.1' },
+ 'verticalisobutton' => { 242 => 0x792 },
+ 'verticalmovieafonbutton' => { 314 => 0x1f9, 315 => 0x211 },
+ 'verticalmoviefuncbutton' => { 314 => 0x1e1, 315 => 0x1f9 },
+ 'verticalmultiselector' => { 298 => '42.1', 300 => '66.1', 301 => '66.1', 311 => '66.1', 314 => 0x18f, 315 => 0x1a7 },
+ 'verticalmultiselectorplaybackmode' => { 314 => 0x125, 315 => 0x13d },
'vfdisplayillumination' => { 2 => 0x11, 84 => [0x510,0x51d] },
- 'vibrance' => { 490 => 'Vibrance', 496 => 'Vibrance', 498 => 'Vibrance' },
- 'vibrationreduction' => { 261 => [0x75,0x82,0x1ae], 269 => '586.1', 276 => '590.2', 280 => 0x4 },
- 'videoalphamode' => { 525 => 'videoAlphaMode' },
- 'videoalphapremultiplecolor' => { 525 => 'videoAlphaPremultipleColor' },
- 'videoalphapremultiplecolora' => { 525 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorA'] },
- 'videoalphapremultiplecolorb' => { 525 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorB'] },
- 'videoalphapremultiplecolorblack' => { 525 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorBlack'] },
- 'videoalphapremultiplecolorblue' => { 525 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorBlue'] },
- 'videoalphapremultiplecolorcyan' => { 525 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorCyan'] },
- 'videoalphapremultiplecolorgray' => { 525 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorGray'] },
- 'videoalphapremultiplecolorgreen' => { 525 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorGreen'] },
- 'videoalphapremultiplecolorl' => { 525 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorL'] },
- 'videoalphapremultiplecolormagenta' => { 525 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorMagenta'] },
- 'videoalphapremultiplecolormode' => { 525 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorMode'] },
- 'videoalphapremultiplecolorred' => { 525 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorRed'] },
- 'videoalphapremultiplecolorswatchname' => { 525 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorSwatchName'] },
- 'videoalphapremultiplecolortint' => { 525 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorTint'] },
- 'videoalphapremultiplecolortype' => { 525 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorType'] },
- 'videoalphapremultiplecoloryellow' => { 525 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorYellow'] },
- 'videoalphaunityistransparent' => { 525 => 'videoAlphaUnityIsTransparent' },
- 'videobitrate' => { 510 => 'videoBitRate' },
- 'videobitratemode' => { 510 => 'videoBitRateMode' },
- 'videoburstmode' => { 337 => 0xbb },
- 'videoburstresolution' => { 337 => 0xb3 },
+ 'vibrance' => { 494 => 'Vibrance', 500 => 'Vibrance', 502 => 'Vibrance' },
+ 'vibrationreduction' => { 262 => [0x75,0x82,0x1ae], 270 => '586.1', 277 => '590.2', 281 => 0x4 },
+ 'videoalphamode' => { 529 => 'videoAlphaMode' },
+ 'videoalphapremultiplecolor' => { 529 => 'videoAlphaPremultipleColor' },
+ 'videoalphapremultiplecolora' => { 529 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorA'] },
+ 'videoalphapremultiplecolorb' => { 529 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorB'] },
+ 'videoalphapremultiplecolorblack' => { 529 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorBlack'] },
+ 'videoalphapremultiplecolorblue' => { 529 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorBlue'] },
+ 'videoalphapremultiplecolorcyan' => { 529 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorCyan'] },
+ 'videoalphapremultiplecolorgray' => { 529 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorGray'] },
+ 'videoalphapremultiplecolorgreen' => { 529 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorGreen'] },
+ 'videoalphapremultiplecolorl' => { 529 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorL'] },
+ 'videoalphapremultiplecolormagenta' => { 529 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorMagenta'] },
+ 'videoalphapremultiplecolormode' => { 529 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorMode'] },
+ 'videoalphapremultiplecolorred' => { 529 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorRed'] },
+ 'videoalphapremultiplecolorswatchname' => { 529 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorSwatchName'] },
+ 'videoalphapremultiplecolortint' => { 529 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorTint'] },
+ 'videoalphapremultiplecolortype' => { 529 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorType'] },
+ 'videoalphapremultiplecoloryellow' => { 529 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorYellow'] },
+ 'videoalphaunityistransparent' => { 529 => 'videoAlphaUnityIsTransparent' },
+ 'videobitrate' => { 514 => 'videoBitRate' },
+ 'videobitratemode' => { 514 => 'videoBitRateMode' },
+ 'videoburstmode' => { 340 => 0xbb },
+ 'videoburstresolution' => { 340 => 0xb3 },
'videocodec' => { 67 => 0x74 },
- 'videocolorspace' => { 525 => 'videoColorSpace' },
+ 'videocolorspace' => { 529 => 'videoColorSpace' },
'videocompression' => { 127 => 0x3806 },
- 'videocompressor' => { 525 => 'videoCompressor' },
- 'videodisplayaspectratio' => { 510 => 'videoDisplayAspectRatio' },
- 'videoencodingprofile' => { 510 => 'videoEncodingProfile' },
- 'videofieldorder' => { 525 => 'videoFieldOrder' },
- 'videoframerate' => { 337 => 0x27, 525 => 'videoFrameRate' },
- 'videoframesize' => { 525 => 'videoFrameSize' },
- 'videoframesizeh' => { 525 => [\'videoFrameSize','videoFrameSizeH'] },
- 'videoframesizeunit' => { 525 => [\'videoFrameSize','videoFrameSizeUnit'] },
- 'videoframesizew' => { 525 => [\'videoFrameSize','videoFrameSizeW'] },
- 'videomoddate' => { 525 => 'videoModDate' },
- 'videopixelaspectratio' => { 525 => 'videoPixelAspectRatio' },
- 'videopixeldepth' => { 525 => 'videoPixelDepth' },
- 'videopreburst' => { 337 => 0xc1 },
+ 'videocompressor' => { 529 => 'videoCompressor' },
+ 'videodisplayaspectratio' => { 514 => 'videoDisplayAspectRatio' },
+ 'videoencodingprofile' => { 514 => 'videoEncodingProfile' },
+ 'videofieldorder' => { 529 => 'videoFieldOrder' },
+ 'videoframerate' => { 340 => 0x27, 529 => 'videoFrameRate' },
+ 'videoframesize' => { 529 => 'videoFrameSize' },
+ 'videoframesizeh' => { 529 => [\'videoFrameSize','videoFrameSizeH'] },
+ 'videoframesizeunit' => { 529 => [\'videoFrameSize','videoFrameSizeUnit'] },
+ 'videoframesizew' => { 529 => [\'videoFrameSize','videoFrameSizeW'] },
+ 'videomoddate' => { 529 => 'videoModDate' },
+ 'videopixelaspectratio' => { 529 => 'videoPixelAspectRatio' },
+ 'videopixeldepth' => { 529 => 'videoPixelDepth' },
+ 'videopreburst' => { 340 => 0xc1 },
'videoquality' => { 113 => 0x4003 },
'videorecordingmode' => { 127 => 0x3803 },
- 'videoshottype' => { 510 => 'VideoShotType' },
- 'videoshottypeidentifier' => { 510 => [\'VideoShotType','VideoShotTypeIdentifier'] },
- 'videoshottypename' => { 510 => [\'VideoShotType','VideoShotTypeName'] },
- 'videostreamscount' => { 510 => 'videoStreamsCount' },
- 'viewfinder' => { 381 => 0x455 },
- 'viewfinderdisplay' => { 296 => '12.4', 297 => '6.3' },
- 'viewfinderwarning' => { 296 => '13.4', 306 => '3.5', 307 => '6.2', 311 => '4.4' },
+ 'videoshottype' => { 514 => 'VideoShotType' },
+ 'videoshottypeidentifier' => { 514 => [\'VideoShotType','VideoShotTypeIdentifier'] },
+ 'videoshottypename' => { 514 => [\'VideoShotType','VideoShotTypeName'] },
+ 'videostreamscount' => { 514 => 'videoStreamsCount' },
+ 'viewfinder' => { 384 => 0x455 },
+ 'viewfinderdisplay' => { 297 => '12.4', 298 => '6.3' },
+ 'viewfinderwarning' => { 297 => '13.4', 307 => '3.5', 308 => '6.2', 312 => '4.4' },
'viewfinderwarnings' => { 84 => 0x40a },
'viewinfoduringexposure' => { 84 => 0x407 },
- 'viewingmode' => { 426 => 0x2f, 442 => 0x18 },
- 'viewingmode2' => { 426 => [0x85,0x285] },
- 'viewmodeshoweffectsofsettings' => { 241 => 0x7d2 },
- 'viewpoint' => { 514 => 'viewpoint' },
- 'vignetteamount' => { 496 => 'VignetteAmount', 498 => 'VignetteAmount' },
- 'vignettecontrol' => { 234 => 0x2a, 289 => 0x76a43205 },
- 'vignettecontrolintensity' => { 289 => 0xac6bd5c0 },
- 'vignettecorrectionalreadyapplied' => { 493 => 'VignetteCorrectionAlreadyApplied' },
- 'vignettemidpoint' => { 496 => 'VignetteMidpoint', 498 => 'VignetteMidpoint' },
- 'vignetting' => { 404 => 0x1011, 411 => 0xa052 },
- 'vignettingcorrection' => { 119 => 0x7031, 411 => 0xa053, 437 => 0x2011 },
- 'vignettingcorrparams' => { 119 => 0x7032, 467 => 0x64a, 468 => [0x34a,0x350,0x35c,0x368] },
- 'vignettingsetting' => { 411 => 0xa054 },
- 'virtualfocallength' => { 511 => 'VirtualFocalLength' },
- 'virtualhorizonstyle' => { 312 => 0x167 },
- 'virtualimagexcenter' => { 511 => 'VirtualImageXCenter' },
- 'virtualimageycenter' => { 511 => 'VirtualImageYCenter' },
- 'visualcolor' => { 510 => 'VisualColour' },
- 'visualtechnique' => { 514 => 'visualTechnique' },
- 'voicememo' => { 413 => 0x216 },
- 'volume' => { 515 => 'volume' },
- 'vr_0x66' => { 261 => 0x66 },
+ 'viewingmode' => { 429 => 0x2f, 445 => 0x18 },
+ 'viewingmode2' => { 429 => [0x85,0x285] },
+ 'viewmodeshoweffectsofsettings' => { 242 => 0x7d2, 313 => 0x2a9 },
+ 'viewpoint' => { 518 => 'viewpoint' },
+ 'vignetteamount' => { 500 => 'VignetteAmount', 502 => 'VignetteAmount' },
+ 'vignettecontrol' => { 234 => 0x2a, 290 => 0x76a43205 },
+ 'vignettecontrolintensity' => { 290 => 0xac6bd5c0 },
+ 'vignettecorrectionalreadyapplied' => { 497 => 'VignetteCorrectionAlreadyApplied' },
+ 'vignettemidpoint' => { 500 => 'VignetteMidpoint', 502 => 'VignetteMidpoint' },
+ 'vignetting' => { 407 => 0x1011, 414 => 0xa052 },
+ 'vignettingcorrection' => { 119 => 0x7031, 414 => 0xa053, 440 => 0x2011 },
+ 'vignettingcorrparams' => { 119 => 0x7032, 471 => 0x64a, 472 => [0x34a,0x350,0x35c,0x368] },
+ 'vignettingsetting' => { 414 => 0xa054 },
+ 'virtualfocallength' => { 515 => 'VirtualFocalLength' },
+ 'virtualhorizonstyle' => { 313 => 0x167, 314 => 0x167, 315 => 0x17f },
+ 'virtualimagexcenter' => { 515 => 'VirtualImageXCenter' },
+ 'virtualimageycenter' => { 515 => 'VirtualImageYCenter' },
+ 'visualcolor' => { 514 => 'VisualColour' },
+ 'visualtechnique' => { 518 => 'visualTechnique' },
+ 'voicememo' => { 416 => 0x216 },
+ 'volume' => { 519 => 'volume' },
+ 'vr_0x66' => { 262 => 0x66 },
'vrdoffset' => { 64 => 0xd0 },
- 'vrmode' => { 239 => 0x212, 240 => 0x226, 241 => 0x226, 280 => 0x6 },
- 'vrtype' => { 280 => 0x8 },
- 'waterdepth' => { 119 => 0x9403, 503 => 'WaterDepth' },
+ 'vrmode' => { 239 => 0x226, 240 => 0x212, 241 => 0x226, 242 => 0x226, 281 => 0x6 },
+ 'vrtype' => { 281 => 0x8 },
+ 'waterdepth' => { 119 => 0x9403, 507 => 'WaterDepth' },
'wb_bluelevel3500k' => { 187 => 0x19a },
'wb_bluelevel6500k' => { 187 => 0x18a },
'wb_bluelevelcustom' => { 187 => 0x18e },
@@ -7021,21 +7029,21 @@ my %tagLookup = (
'wb_bluelevelsshade' => { 187 => 0x176 },
'wb_bluelevelstungsten' => { 187 => 0xce },
'wb_gbrglevels' => { 187 => 0xae, 190 => 0x4 },
- 'wb_glevel' => { 318 => 0x11f },
- 'wb_glevel3000k' => { 318 => 0x113 },
- 'wb_glevel3300k' => { 318 => 0x114 },
- 'wb_glevel3600k' => { 318 => 0x115 },
- 'wb_glevel3900k' => { 318 => 0x116 },
- 'wb_glevel4000k' => { 318 => 0x117 },
- 'wb_glevel4300k' => { 318 => 0x118 },
- 'wb_glevel4500k' => { 318 => 0x119 },
- 'wb_glevel4800k' => { 318 => 0x11a },
- 'wb_glevel5300k' => { 318 => 0x11b },
- 'wb_glevel6000k' => { 318 => 0x11c },
- 'wb_glevel6600k' => { 318 => 0x11d },
- 'wb_glevel7500k' => { 318 => 0x11e },
- 'wb_grbglevels' => { 204 => 0x0, 444 => 0x7303 },
- 'wb_grbglevelsauto' => { 81 => 0x2, 444 => 0x7302 },
+ 'wb_glevel' => { 321 => 0x11f },
+ 'wb_glevel3000k' => { 321 => 0x113 },
+ 'wb_glevel3300k' => { 321 => 0x114 },
+ 'wb_glevel3600k' => { 321 => 0x115 },
+ 'wb_glevel3900k' => { 321 => 0x116 },
+ 'wb_glevel4000k' => { 321 => 0x117 },
+ 'wb_glevel4300k' => { 321 => 0x118 },
+ 'wb_glevel4500k' => { 321 => 0x119 },
+ 'wb_glevel4800k' => { 321 => 0x11a },
+ 'wb_glevel5300k' => { 321 => 0x11b },
+ 'wb_glevel6000k' => { 321 => 0x11c },
+ 'wb_glevel6600k' => { 321 => 0x11d },
+ 'wb_glevel7500k' => { 321 => 0x11e },
+ 'wb_grbglevels' => { 204 => 0x0, 447 => 0x7303 },
+ 'wb_grbglevelsauto' => { 81 => 0x2, 447 => 0x7302 },
'wb_grbglevelscloudy' => { 81 => 0x12 },
'wb_grbglevelscustom1' => { 81 => 0x42 },
'wb_grbglevelscustom2' => { 81 => 0x4a },
@@ -7046,52 +7054,52 @@ my %tagLookup = (
'wb_grbglevelstungsten' => { 81 => 0x1a },
'wb_grbglevelsunderwater' => { 81 => 0x3a },
'wb_rbgglevels' => { 201 => 0x0 },
- 'wb_rblevels' => { 205 => 0x270, 234 => 0xc, 318 => 0x100 },
- 'wb_rblevels1' => { 343 => 0x2 },
- 'wb_rblevels2' => { 343 => 0x5 },
- 'wb_rblevels3' => { 343 => 0x8 },
- 'wb_rblevels3000k' => { 318 => 0x102 },
- 'wb_rblevels3300k' => { 318 => 0x103 },
+ 'wb_rblevels' => { 205 => 0x270, 234 => 0xc, 321 => 0x100 },
+ 'wb_rblevels1' => { 346 => 0x2 },
+ 'wb_rblevels2' => { 346 => 0x5 },
+ 'wb_rblevels3' => { 346 => 0x8 },
+ 'wb_rblevels3000k' => { 321 => 0x102 },
+ 'wb_rblevels3300k' => { 321 => 0x103 },
'wb_rblevels3500k' => { 187 => 0x430 },
- 'wb_rblevels3600k' => { 318 => 0x104 },
- 'wb_rblevels3900k' => { 318 => 0x105 },
- 'wb_rblevels4' => { 343 => 0xb },
- 'wb_rblevels4000k' => { 318 => 0x106 },
- 'wb_rblevels4300k' => { 318 => 0x107 },
- 'wb_rblevels4500k' => { 318 => 0x108 },
- 'wb_rblevels4800k' => { 318 => 0x109 },
- 'wb_rblevels5' => { 343 => 0xe },
- 'wb_rblevels5300k' => { 318 => 0x10a },
- 'wb_rblevels6' => { 343 => 0x11 },
- 'wb_rblevels6000k' => { 318 => 0x10b },
+ 'wb_rblevels3600k' => { 321 => 0x104 },
+ 'wb_rblevels3900k' => { 321 => 0x105 },
+ 'wb_rblevels4' => { 346 => 0xb },
+ 'wb_rblevels4000k' => { 321 => 0x106 },
+ 'wb_rblevels4300k' => { 321 => 0x107 },
+ 'wb_rblevels4500k' => { 321 => 0x108 },
+ 'wb_rblevels4800k' => { 321 => 0x109 },
+ 'wb_rblevels5' => { 346 => 0xe },
+ 'wb_rblevels5300k' => { 321 => 0x10a },
+ 'wb_rblevels6' => { 346 => 0x11 },
+ 'wb_rblevels6000k' => { 321 => 0x10b },
'wb_rblevels6500k' => { 187 => 0x420 },
- 'wb_rblevels6600k' => { 318 => 0x10c },
- 'wb_rblevels7' => { 343 => 0x14 },
- 'wb_rblevels7500k' => { 318 => 0x10d },
- 'wb_rblevelsauto' => { 205 => 0x272, 322 => 0x110 },
- 'wb_rblevelscloudy' => { 187 => 0x3f0, 189 => 0x10, 205 => 0x296, 322 => 0x121 },
+ 'wb_rblevels6600k' => { 321 => 0x10c },
+ 'wb_rblevels7' => { 346 => 0x14 },
+ 'wb_rblevels7500k' => { 321 => 0x10d },
+ 'wb_rblevelsauto' => { 205 => 0x272, 325 => 0x110 },
+ 'wb_rblevelscloudy' => { 187 => 0x3f0, 189 => 0x10, 205 => 0x296, 325 => 0x121 },
'wb_rblevelscoolwhitef' => { 187 => 0x308, 189 => 0x14 },
- 'wb_rblevelscoolwhitefluor' => { 322 => 0x132 },
+ 'wb_rblevelscoolwhitefluor' => { 325 => 0x132 },
'wb_rblevelscustom' => { 187 => 0x424, 189 => 0x1c },
- 'wb_rblevelscwb1' => { 318 => 0x10e },
- 'wb_rblevelscwb2' => { 318 => 0x10f },
- 'wb_rblevelscwb3' => { 318 => 0x110 },
- 'wb_rblevelscwb4' => { 318 => 0x111 },
+ 'wb_rblevelscwb1' => { 321 => 0x10e },
+ 'wb_rblevelscwb2' => { 321 => 0x10f },
+ 'wb_rblevelscwb3' => { 321 => 0x110 },
+ 'wb_rblevelscwb4' => { 321 => 0x111 },
'wb_rblevelsdaylight' => { 187 => [0x3ec,0x528], 189 => 0xc, 205 => 0x274 },
'wb_rblevelsdaylightf' => { 189 => 0x24 },
- 'wb_rblevelsdaylightfluor' => { 322 => 0x130 },
+ 'wb_rblevelsdaylightfluor' => { 325 => 0x130 },
'wb_rblevelsdaywhitef' => { 189 => 0x28 },
- 'wb_rblevelsdaywhitefluor' => { 322 => 0x131 },
- 'wb_rblevelseveningsunlight' => { 322 => 0x124 },
- 'wb_rblevelsfineweather' => { 322 => 0x122 },
+ 'wb_rblevelsdaywhitefluor' => { 325 => 0x131 },
+ 'wb_rblevelseveningsunlight' => { 325 => 0x124 },
+ 'wb_rblevelsfineweather' => { 325 => 0x122 },
'wb_rblevelsflash' => { 187 => [0x3f4,0x304], 189 => 0x18, 205 => 0x2a4 },
'wb_rblevelsfluorescent' => { 205 => 0x290 },
'wb_rblevelsincandescent' => { 205 => 0x282 },
- 'wb_rblevelsshade' => { 187 => 0x418, 189 => 0x20, 205 => 0x2b2, 322 => 0x120 },
- 'wb_rblevelstungsten' => { 187 => 0x3e8, 189 => 0x8, 322 => 0x123 },
- 'wb_rblevelsused' => { 322 => 0x100 },
+ 'wb_rblevelsshade' => { 187 => 0x418, 189 => 0x20, 205 => 0x2b2, 325 => 0x120 },
+ 'wb_rblevelstungsten' => { 187 => 0x3e8, 189 => 0x8, 325 => 0x123 },
+ 'wb_rblevelsused' => { 325 => 0x100 },
'wb_rblevelswhitef' => { 189 => 0x2c },
- 'wb_rblevelswhitefluorescent' => { 322 => 0x133 },
+ 'wb_rblevelswhitefluorescent' => { 325 => 0x133 },
'wb_redlevel3500k' => { 187 => 0x198 },
'wb_redlevel6500k' => { 187 => 0x188 },
'wb_redlevelcustom' => { 187 => 0x18c },
@@ -7103,76 +7111,76 @@ my %tagLookup = (
'wb_redlevelsshade' => { 187 => 0x168 },
'wb_redlevelstungsten' => { 187 => 0xc0 },
'wb_rgbglevels' => { 203 => 0x0 },
- 'wb_rgblevels' => { 187 => [0x546,0x96], 333 => 0xd, 334 => 0x413, 339 => 0x3036, 381 => 0x107, 446 => 0x117c, 447 => 0x1180, 448 => 0x115c, 449 => 0x11d8, 450 => 0x11b4, 451 => 0x106c, 452 => 0x264, 453 => 0x264, 454 => 0x252 },
- 'wb_rgblevels1' => { 344 => 0x2 },
- 'wb_rgblevels2' => { 344 => 0x6 },
- 'wb_rgblevels2500k' => { 444 => 0x782d },
- 'wb_rgblevels3' => { 344 => 0xa },
- 'wb_rgblevels3200k' => { 444 => 0x782c },
- 'wb_rgblevels4' => { 344 => 0xe },
- 'wb_rgblevels4500k' => { 444 => [0x7484,0x7824] },
- 'wb_rgblevels5' => { 344 => 0x12 },
- 'wb_rgblevels6' => { 344 => 0x16 },
- 'wb_rgblevels6000k' => { 444 => 0x782b },
- 'wb_rgblevels7' => { 344 => 0x1a },
- 'wb_rgblevels8500k' => { 444 => 0x782a },
- 'wb_rgblevelsauto' => { 415 => 0x0 },
- 'wb_rgblevelscloudy' => { 444 => [0x7481,0x7821] },
- 'wb_rgblevelscustom1' => { 415 => 0x15 },
- 'wb_rgblevelscustom2' => { 415 => 0x18 },
- 'wb_rgblevelscustom3' => { 415 => 0x1b },
- 'wb_rgblevelsdaylight' => { 415 => 0x3, 444 => [0x7480,0x7820] },
- 'wb_rgblevelsflash' => { 415 => 0x12, 444 => [0x7483,0x7823] },
- 'wb_rgblevelsfluorescent' => { 415 => 0xf, 444 => [0x7486,0x7826] },
- 'wb_rgblevelsfluorescentm1' => { 444 => 0x7829 },
- 'wb_rgblevelsfluorescentp1' => { 444 => 0x7827 },
- 'wb_rgblevelsfluorescentp2' => { 444 => 0x7828 },
- 'wb_rgblevelsincandescent' => { 415 => 0xc },
- 'wb_rgblevelsovercast' => { 415 => 0x9 },
- 'wb_rgblevelsshade' => { 415 => 0x6, 444 => 0x7825 },
- 'wb_rgblevelstungsten' => { 444 => [0x7482,0x7822] },
- 'wb_rgblevelsunknown0' => { 416 => 0x0 },
- 'wb_rgblevelsunknown1' => { 416 => 0x3 },
- 'wb_rgblevelsunknown2' => { 416 => 0x6 },
- 'wb_rgblevelsunknown3' => { 416 => 0x9 },
- 'wb_rgblevelsunknown4' => { 416 => 0xc },
- 'wb_rgblevelsunknown5' => { 416 => 0xf },
- 'wb_rgblevelsunknown6' => { 416 => 0x12 },
- 'wb_rgblevelsunknown7' => { 416 => 0x15 },
- 'wb_rgblevelsunknown8' => { 416 => 0x18 },
- 'wb_rgblevelsunknown9' => { 416 => 0x1b },
+ 'wb_rgblevels' => { 187 => [0x546,0x96], 336 => 0xd, 337 => 0x413, 342 => 0x3036, 384 => 0x107, 449 => 0x117c, 450 => 0x1180, 451 => 0x115c, 452 => 0x11d8, 453 => 0x11b4, 454 => 0x106c, 455 => 0x264, 456 => 0x264, 457 => 0x252 },
+ 'wb_rgblevels1' => { 347 => 0x2 },
+ 'wb_rgblevels2' => { 347 => 0x6 },
+ 'wb_rgblevels2500k' => { 447 => 0x782d },
+ 'wb_rgblevels3' => { 347 => 0xa },
+ 'wb_rgblevels3200k' => { 447 => 0x782c },
+ 'wb_rgblevels4' => { 347 => 0xe },
+ 'wb_rgblevels4500k' => { 447 => [0x7484,0x7824] },
+ 'wb_rgblevels5' => { 347 => 0x12 },
+ 'wb_rgblevels6' => { 347 => 0x16 },
+ 'wb_rgblevels6000k' => { 447 => 0x782b },
+ 'wb_rgblevels7' => { 347 => 0x1a },
+ 'wb_rgblevels8500k' => { 447 => 0x782a },
+ 'wb_rgblevelsauto' => { 418 => 0x0 },
+ 'wb_rgblevelscloudy' => { 447 => [0x7481,0x7821] },
+ 'wb_rgblevelscustom1' => { 418 => 0x15 },
+ 'wb_rgblevelscustom2' => { 418 => 0x18 },
+ 'wb_rgblevelscustom3' => { 418 => 0x1b },
+ 'wb_rgblevelsdaylight' => { 418 => 0x3, 447 => [0x7480,0x7820] },
+ 'wb_rgblevelsflash' => { 418 => 0x12, 447 => [0x7483,0x7823] },
+ 'wb_rgblevelsfluorescent' => { 418 => 0xf, 447 => [0x7486,0x7826] },
+ 'wb_rgblevelsfluorescentm1' => { 447 => 0x7829 },
+ 'wb_rgblevelsfluorescentp1' => { 447 => 0x7827 },
+ 'wb_rgblevelsfluorescentp2' => { 447 => 0x7828 },
+ 'wb_rgblevelsincandescent' => { 418 => 0xc },
+ 'wb_rgblevelsovercast' => { 418 => 0x9 },
+ 'wb_rgblevelsshade' => { 418 => 0x6, 447 => 0x7825 },
+ 'wb_rgblevelstungsten' => { 447 => [0x7482,0x7822] },
+ 'wb_rgblevelsunknown0' => { 419 => 0x0 },
+ 'wb_rgblevelsunknown1' => { 419 => 0x3 },
+ 'wb_rgblevelsunknown2' => { 419 => 0x6 },
+ 'wb_rgblevelsunknown3' => { 419 => 0x9 },
+ 'wb_rgblevelsunknown4' => { 419 => 0xc },
+ 'wb_rgblevelsunknown5' => { 419 => 0xf },
+ 'wb_rgblevelsunknown6' => { 419 => 0x12 },
+ 'wb_rgblevelsunknown7' => { 419 => 0x15 },
+ 'wb_rgblevelsunknown8' => { 419 => 0x18 },
+ 'wb_rgblevelsunknown9' => { 419 => 0x1b },
'wb_rgbmuldaylight' => { 138 => 0x852 },
'wb_rgbmulflash' => { 138 => 0x855 },
'wb_rgbmulfluorescent' => { 138 => 0x854 },
'wb_rgbmultungsten' => { 138 => 0x853 },
'wb_rggbblacklevels' => { 35 => 0x25 },
- 'wb_rggblevels' => { 119 => 0x7313, 190 => 0x4, 202 => 0x0, 206 => 0x13e8, 207 => 0x38, 444 => 0x7313 },
+ 'wb_rggblevels' => { 119 => 0x7313, 190 => 0x4, 202 => 0x0, 206 => 0x13e8, 207 => 0x38, 447 => 0x7313 },
'wb_rggblevelsasshot' => { 38 => 0x0, 39 => 0x0, 40 => 0x19, 41 => 0x55, 42 => 0x69, 43 => 0x22, 44 => 0x3f, 47 => 0x3f, 48 => 0x3f, 49 => 0x3f, 50 => 0x47 },
- 'wb_rggblevelsauto' => { 35 => 0x1, 38 => 0x5, 39 => 0x8, 40 => 0x1e, 41 => 0x5a, 42 => 0x6e, 43 => 0x18, 44 => 0x44, 47 => 0x44, 48 => 0x44, 49 => 0x44, 50 => 0x4c, 206 => 0x1478, 207 => 0x114, 411 => 0xa022, 444 => 0x7312 },
- 'wb_rggblevelsblack' => { 411 => 0xa028 },
- 'wb_rggblevelscloudy' => { 35 => 0xd, 38 => 0x1e, 39 => 0x30, 40 => 0x2d, 41 => 0xa0, 42 => 0xd7, 43 => 0x31, 44 => 0x58, 47 => 0x71, 48 => 0x8a, 49 => 0x8f, 50 => 0x92, 206 => 0x1408, 207 => 0x60, 372 => 0x20f, 380 => 0x14 },
+ 'wb_rggblevelsauto' => { 35 => 0x1, 38 => 0x5, 39 => 0x8, 40 => 0x1e, 41 => 0x5a, 42 => 0x6e, 43 => 0x18, 44 => 0x44, 47 => 0x44, 48 => 0x44, 49 => 0x44, 50 => 0x4c, 206 => 0x1478, 207 => 0x114, 414 => 0xa022, 447 => 0x7312 },
+ 'wb_rggblevelsblack' => { 414 => 0xa028 },
+ 'wb_rggblevelscloudy' => { 35 => 0xd, 38 => 0x1e, 39 => 0x30, 40 => 0x2d, 41 => 0xa0, 42 => 0xd7, 43 => 0x31, 44 => 0x58, 47 => 0x71, 48 => 0x8a, 49 => 0x8f, 50 => 0x92, 206 => 0x1408, 207 => 0x60, 375 => 0x20f, 383 => 0x14 },
'wb_rggblevelscustom' => { 35 => 0x1d, 44 => 0x80, 206 => 0x1468, 207 => 0x100 },
'wb_rggblevelscustom1' => { 40 => 0x41 },
'wb_rggblevelscustom2' => { 40 => 0x46 },
- 'wb_rggblevelsdaylight' => { 35 => 0x5, 38 => 0x14, 39 => 0x20, 40 => 0x23, 41 => 0x96, 42 => 0xcd, 43 => 0x27, 44 => 0x4e, 47 => 0x67, 48 => 0x80, 49 => 0x85, 50 => 0x88, 206 => 0x13f8, 207 => 0x4c, 372 => 0x20d, 380 => 0x2 },
- 'wb_rggblevelsflash' => { 35 => 0x19, 38 => 0x32, 39 => 0x50, 40 => 0x3c, 41 => 0xb4, 42 => 0xeb, 43 => 0x45, 44 => 0x6c, 47 => 0x85, 48 => 0x9e, 49 => 0xa3, 50 => 0xa6, 206 => 0x1448, 372 => 0x214, 380 => 0x41 },
+ 'wb_rggblevelsdaylight' => { 35 => 0x5, 38 => 0x14, 39 => 0x20, 40 => 0x23, 41 => 0x96, 42 => 0xcd, 43 => 0x27, 44 => 0x4e, 47 => 0x67, 48 => 0x80, 49 => 0x85, 50 => 0x88, 206 => 0x13f8, 207 => 0x4c, 375 => 0x20d, 383 => 0x2 },
+ 'wb_rggblevelsflash' => { 35 => 0x19, 38 => 0x32, 39 => 0x50, 40 => 0x3c, 41 => 0xb4, 42 => 0xeb, 43 => 0x45, 44 => 0x6c, 47 => 0x85, 48 => 0x9e, 49 => 0xa3, 50 => 0xa6, 206 => 0x1448, 375 => 0x214, 383 => 0x41 },
'wb_rggblevelsfluorescent' => { 35 => 0x15, 38 => 0x28, 39 => 0x40, 40 => 0x37, 41 => 0xaa, 42 => 0xe1, 43 => 0x3b, 44 => 0x62, 47 => 0x7b, 48 => 0x94, 49 => 0x99, 50 => 0x9c },
- 'wb_rggblevelsfluorescentd' => { 207 => 0xc4, 372 => 0x211, 380 => 0x26 },
- 'wb_rggblevelsfluorescentl' => { 380 => 0x4a },
- 'wb_rggblevelsfluorescentn' => { 207 => 0xb0, 372 => 0x212, 380 => 0x2f },
- 'wb_rggblevelsfluorescentw' => { 206 => 0x1438, 207 => 0x9c, 372 => 0x213, 380 => 0x38 },
+ 'wb_rggblevelsfluorescentd' => { 207 => 0xc4, 375 => 0x211, 383 => 0x26 },
+ 'wb_rggblevelsfluorescentl' => { 383 => 0x4a },
+ 'wb_rggblevelsfluorescentn' => { 207 => 0xb0, 375 => 0x212, 383 => 0x2f },
+ 'wb_rggblevelsfluorescentw' => { 206 => 0x1438, 207 => 0x9c, 375 => 0x213, 383 => 0x38 },
'wb_rggblevelshtmercury' => { 207 => 0xd8 },
- 'wb_rggblevelsilluminator1' => { 411 => 0xa023 },
- 'wb_rggblevelsilluminator2' => { 411 => 0xa024 },
+ 'wb_rggblevelsilluminator1' => { 414 => 0xa023 },
+ 'wb_rggblevelsilluminator2' => { 414 => 0xa024 },
'wb_rggblevelskelvin' => { 35 => 0x21, 38 => 0x2d, 39 => 0x48, 41 => 0xaf, 42 => 0xe6, 43 => 0x40, 44 => 0x67, 47 => 0x80, 48 => 0x99, 49 => 0x9e, 50 => 0xa1 },
'wb_rggblevelsmeasured' => { 38 => 0xa, 39 => 0x10, 41 => 0x5f, 42 => 0x73, 44 => 0x49, 47 => 0x49, 48 => 0x49, 49 => 0x49, 50 => 0x51 },
'wb_rggblevelspc1' => { 43 => 0x90, 44 => 0x71 },
'wb_rggblevelspc2' => { 43 => 0x95, 44 => 0x76 },
'wb_rggblevelspc3' => { 43 => 0x9a, 44 => 0x7b },
- 'wb_rggblevelsshade' => { 35 => 0x9, 38 => 0x19, 39 => 0x28, 40 => 0x28, 41 => 0x9b, 42 => 0xd2, 43 => 0x2c, 44 => 0x53, 47 => 0x6c, 48 => 0x85, 49 => 0x8a, 50 => 0x8d, 207 => 0x74, 372 => 0x20e, 380 => 0xb },
- 'wb_rggblevelstungsten' => { 35 => 0x11, 38 => 0x23, 39 => 0x38, 40 => 0x32, 41 => 0xa5, 42 => 0xdc, 43 => 0x36, 44 => 0x5d, 47 => 0x76, 48 => 0x8f, 49 => 0x94, 50 => 0x97, 206 => 0x1428, 207 => 0x88, 372 => 0x210, 380 => 0x1d },
- 'wb_rggblevelsuncorrected' => { 411 => 0xa021 },
- 'wb_rggblevelsunknown' => { 38 => 0xf, 39 => 0x18, 41 => 0x64, 42 => 0x78, 43 => 0x1d, 47 => 0x4e, 48 => 0x4e, 49 => 0x4e, 50 => 0x56, 380 => 0x53 },
+ 'wb_rggblevelsshade' => { 35 => 0x9, 38 => 0x19, 39 => 0x28, 40 => 0x28, 41 => 0x9b, 42 => 0xd2, 43 => 0x2c, 44 => 0x53, 47 => 0x6c, 48 => 0x85, 49 => 0x8a, 50 => 0x8d, 207 => 0x74, 375 => 0x20e, 383 => 0xb },
+ 'wb_rggblevelstungsten' => { 35 => 0x11, 38 => 0x23, 39 => 0x38, 40 => 0x32, 41 => 0xa5, 42 => 0xdc, 43 => 0x36, 44 => 0x5d, 47 => 0x76, 48 => 0x8f, 49 => 0x94, 50 => 0x97, 206 => 0x1428, 207 => 0x88, 375 => 0x210, 383 => 0x1d },
+ 'wb_rggblevelsuncorrected' => { 414 => 0xa021 },
+ 'wb_rggblevelsunknown' => { 38 => 0xf, 39 => 0x18, 41 => 0x64, 42 => 0x78, 43 => 0x1d, 47 => 0x4e, 48 => 0x4e, 49 => 0x4e, 50 => 0x56, 383 => 0x53 },
'wb_rggblevelsunknown10' => { 38 => 0x5f, 39 => 0x98, 41 => 0x91, 42 => 0xa5, 43 => 0x72, 47 => 0x9e, 48 => 0x7b, 49 => 0x7b, 50 => 0x83 },
'wb_rggblevelsunknown11' => { 38 => 0x64, 39 => 0xa0, 41 => 0xb9, 42 => [0xaa,0xaf], 43 => 0x77, 47 => 0xa3, 48 => 0xa3, 49 => 0x80, 50 => 0xab },
'wb_rggblevelsunknown12' => { 38 => 0x69, 39 => 0xa8, 41 => 0xbe, 42 => 0xb4, 43 => 0x7c, 47 => 0xa8, 48 => 0xa8, 49 => 0xa8, 50 => 0xb0 },
@@ -7202,131 +7210,131 @@ my %tagLookup = (
'wb_rggblevelsunknown7' => { 38 => 0x50, 39 => 0x80, 41 => 0x82, 42 => 0x96, 43 => 0x63, 47 => 0x8f, 48 => 0x6c, 49 => 0x6c, 50 => 0x74 },
'wb_rggblevelsunknown8' => { 38 => 0x55, 39 => 0x88, 41 => 0x87, 42 => 0x9b, 43 => 0x68, 47 => 0x94, 48 => 0x71, 49 => 0x71, 50 => 0x79 },
'wb_rggblevelsunknown9' => { 38 => 0x5a, 39 => 0x90, 41 => 0x8c, 42 => 0xa0, 43 => 0x6d, 47 => 0x99, 48 => 0x76, 49 => 0x76, 50 => 0x7e },
- 'wb_rggblevelsuserselected' => { 380 => 0x5c },
+ 'wb_rggblevelsuserselected' => { 383 => 0x5c },
'wbadjblueamber' => { 103 => 0x20106 },
- 'wbadjbluebalance' => { 295 => 0x8 },
+ 'wbadjbluebalance' => { 296 => 0x8 },
'wbadjcolortemp' => { 103 => 0x20102, 108 => 0x1a },
- 'wbadjlighting' => { 295 => 0x14 },
+ 'wbadjlighting' => { 296 => 0x14 },
'wbadjmagentagreen' => { 103 => 0x20105 },
- 'wbadjmode' => { 295 => 0x10 },
- 'wbadjredbalance' => { 295 => 0x0 },
+ 'wbadjmode' => { 296 => 0x10 },
+ 'wbadjredbalance' => { 296 => 0x0 },
'wbadjrggblevels' => { 103 => 0x20125, 108 => 0x6 },
- 'wbadjtemperature' => { 295 => 0x18 },
- 'wbadjtint' => { 295 => 0x25 },
- 'wbbluelevel' => { 332 => 0x324, 337 => 0x8006, 342 => 0x26 },
- 'wbbracketingsteps' => { 198 => 0x10, 199 => 0x10, 270 => 0x174d },
+ 'wbadjtemperature' => { 296 => 0x18 },
+ 'wbadjtint' => { 296 => 0x25 },
+ 'wbbluelevel' => { 335 => 0x324, 340 => 0x8006, 345 => 0x26 },
+ 'wbbracketingsteps' => { 198 => 0x10, 199 => 0x10, 271 => 0x174d },
'wbbracketmode' => { 57 => 0x9 },
- 'wbbracketshotnumber' => { 187 => 0x2b, 404 => 0x101a },
+ 'wbbracketshotnumber' => { 187 => 0x2b, 407 => 0x101a },
'wbbracketvalueab' => { 57 => 0xc },
'wbbracketvaluegm' => { 57 => 0xd },
- 'wbbutton' => { 241 => 0x80a },
+ 'wbbutton' => { 242 => 0x80a },
'wbfinetuneactive' => { 108 => 0x24 },
'wbfinetunesaturation' => { 108 => 0x28 },
'wbfinetunetone' => { 108 => 0x2c },
- 'wbgreenlevel' => { 332 => 0x323, 337 => 0x8005, 342 => 0x25 },
+ 'wbgreenlevel' => { 335 => 0x323, 340 => 0x8005, 345 => 0x25 },
'wbmediaimagesizesetting' => { 84 => 0x708 },
- 'wbmode' => { 189 => 0x4, 319 => 0x1015 },
- 'wbredlevel' => { 332 => 0x322, 337 => 0x8004, 342 => 0x24 },
+ 'wbmode' => { 189 => 0x4, 322 => 0x1015 },
+ 'wbredlevel' => { 335 => 0x322, 340 => 0x8004, 345 => 0x24 },
'wbscale' => { 190 => 0x0 },
- 'wbshiftab' => { 74 => 0xc, 337 => 0x46, 354 => 0x10 },
- 'wbshiftab_gm' => { 437 => 0x2014 },
- 'wbshiftab_gm_precise' => { 437 => 0x2026 },
- 'wbshiftcreativecontrol' => { 337 => 0x92 },
- 'wbshiftgm' => { 74 => 0xd, 337 => 0x47, 354 => 0x11 },
- 'wbshiftintelligentauto' => { 337 => 0x8b },
- 'wbtype1' => { 343 => 0x1, 344 => 0x1 },
- 'wbtype2' => { 343 => 0x4, 344 => 0x5 },
- 'wbtype3' => { 343 => 0x7, 344 => 0x9 },
- 'wbtype4' => { 343 => 0xa, 344 => 0xd },
- 'wbtype5' => { 343 => 0xd, 344 => 0x11 },
- 'wbtype6' => { 343 => 0x10, 344 => 0x15 },
- 'wbtype7' => { 343 => 0x13, 344 => 0x19 },
- 'webstatement' => { 529 => 'WebStatement' },
- 'weightedflatsubject' => { 488 => 'weightedFlatSubject' },
- 'what' => { 496 => 'What', 498 => 'What' },
- 'whitebalance' => { 7 => 0x6f, 8 => [0x44,0x4a], 9 => 0xbc, 10 => 0x36, 11 => 0x5e, 12 => 0x36, 13 => 0x78, 14 => 0x6f, 15 => 0x6f, 16 => 0x73, 17 => 0x6f, 18 => 0x78, 19 => 0x54, 20 => 0x6f, 21 => 0xbc, 22 => 0x7b, 24 => 0xbc, 25 => 0xc2, 27 => 0x131, 28 => 0x77, 74 => 0x8, 77 => 0x7, 112 => 0x7, 113 => [0x19,0x2012], 119 => [0xa403,0xfe4e], 127 => 0x1002, 138 => 0x3fc, 139 => 0xfa0d, 140 => 0x40, 151 => 0x1a, 181 => 0x3, 182 => 0xe, 183 => 0x4, 184 => 0xb, 186 => 0x115, 234 => 0x5, 279 => 0x7, 332 => 0x304, 337 => 0x3, 339 => 0x3033, 372 => 0x19, 379 => 0x7, 403 => 0x26, 404 => 0x1003, 414 => [0x88,0x3c,0x7,0x58], 424 => 0xf, 425 => 0xe, 437 => [0x115,0xb054], 496 => 'WhiteBalance', 498 => 'WhiteBalance', 502 => 'WhiteBalance' },
+ 'wbshiftab' => { 74 => 0xc, 340 => 0x46, 357 => 0x10 },
+ 'wbshiftab_gm' => { 440 => 0x2014 },
+ 'wbshiftab_gm_precise' => { 440 => 0x2026 },
+ 'wbshiftcreativecontrol' => { 340 => 0x92 },
+ 'wbshiftgm' => { 74 => 0xd, 340 => 0x47, 357 => 0x11 },
+ 'wbshiftintelligentauto' => { 340 => 0x8b },
+ 'wbtype1' => { 346 => 0x1, 347 => 0x1 },
+ 'wbtype2' => { 346 => 0x4, 347 => 0x5 },
+ 'wbtype3' => { 346 => 0x7, 347 => 0x9 },
+ 'wbtype4' => { 346 => 0xa, 347 => 0xd },
+ 'wbtype5' => { 346 => 0xd, 347 => 0x11 },
+ 'wbtype6' => { 346 => 0x10, 347 => 0x15 },
+ 'wbtype7' => { 346 => 0x13, 347 => 0x19 },
+ 'webstatement' => { 533 => 'WebStatement' },
+ 'weightedflatsubject' => { 492 => 'weightedFlatSubject' },
+ 'what' => { 500 => 'What', 502 => 'What' },
+ 'whitebalance' => { 7 => 0x6f, 8 => [0x44,0x4a], 9 => 0xbc, 10 => 0x36, 11 => 0x5e, 12 => 0x36, 13 => 0x78, 14 => 0x6f, 15 => 0x6f, 16 => 0x73, 17 => 0x6f, 18 => 0x78, 19 => 0x54, 20 => 0x6f, 21 => 0xbc, 22 => 0x7b, 24 => 0xbc, 25 => 0xc2, 27 => 0x131, 28 => 0x77, 74 => 0x8, 77 => 0x7, 112 => 0x7, 113 => [0x19,0x2012], 119 => [0xa403,0xfe4e], 127 => 0x1002, 138 => 0x3fc, 139 => 0xfa0d, 140 => 0x40, 151 => 0x1a, 181 => 0x3, 182 => 0xe, 183 => 0x4, 184 => 0xb, 186 => 0x115, 234 => 0x5, 280 => 0x7, 335 => 0x304, 340 => 0x3, 342 => 0x3033, 375 => 0x19, 382 => 0x7, 406 => 0x26, 407 => 0x1003, 417 => [0x88,0x3c,0x7,0x58], 427 => 0xf, 428 => 0xe, 440 => [0x115,0xb054], 500 => 'WhiteBalance', 502 => 'WhiteBalance', 506 => 'WhiteBalance' },
'whitebalance0' => { 176 => 'WhiteBalance0' },
'whitebalance1' => { 176 => 'WhiteBalance1' },
- 'whitebalance2' => { 176 => 'WhiteBalance2', 314 => 0x500 },
- 'whitebalanceadj' => { 103 => 0x20101, 108 => 0x18, 289 => 0x76a43204 },
- 'whitebalanceautoadjustment' => { 350 => 0x0 },
- 'whitebalancebias' => { 113 => 0x2011, 319 => 0x304, 337 => 0x23 },
+ 'whitebalance2' => { 176 => 'WhiteBalance2', 317 => 0x500 },
+ 'whitebalanceadj' => { 103 => 0x20101, 108 => 0x18, 290 => 0x76a43204 },
+ 'whitebalanceautoadjustment' => { 353 => 0x0 },
+ 'whitebalancebias' => { 113 => 0x2011, 322 => 0x304, 340 => 0x23 },
'whitebalanceblue' => { 74 => 0x7 },
- 'whitebalancebracket' => { 314 => 0x502, 319 => 0x303 },
- 'whitebalancebracketing' => { 184 => 0x22, 187 => 0x2c, 435 => 0x2c },
- 'whitebalancebuttonplaybackmode' => { 312 => 0x1c5 },
- 'whitebalancecomp' => { 322 => 0x1001 },
+ 'whitebalancebracket' => { 317 => 0x502, 322 => 0x303 },
+ 'whitebalancebracketing' => { 184 => 0x22, 187 => 0x2c, 438 => 0x2c },
+ 'whitebalancebuttonplaybackmode' => { 314 => 0x1c5, 315 => 0x1dd },
+ 'whitebalancecomp' => { 325 => 0x1001 },
'whitebalancedetected' => { 138 => 0x3fb },
- 'whitebalancefinetune' => { 127 => 0x100a, 184 => 0x38, 186 => 0x112, 234 => [0xb,0x3f], 404 => 0x1004, 424 => 0x6, 425 => 0x5, 437 => 0x112 },
- 'whitebalancemode' => { 138 => 0x3fa, 372 => 0x1a },
+ 'whitebalancefinetune' => { 127 => 0x100a, 184 => 0x38, 186 => 0x112, 234 => [0xb,0x3f], 407 => 0x1004, 427 => 0x6, 428 => 0x5, 440 => 0x112 },
+ 'whitebalancemode' => { 138 => 0x3fa, 375 => 0x1a },
'whitebalancered' => { 74 => 0x6 },
- 'whitebalanceset' => { 353 => 0xa },
- 'whitebalancesetting' => { 184 => 0x23, 424 => 0x5, 425 => 0x4, 426 => 0x16, 442 => 0xd },
- 'whitebalancesetup' => { 411 => 0x41 },
- 'whitebalancetemperature' => { 314 => 0x501 },
- 'whiteboard' => { 319 => 0x301 },
- 'whitelevel' => { 119 => 0xc61d, 372 => 0x7e, 444 => 0x787f },
- 'whitepoint' => { 119 => 0x13e, 336 => 0x35d, 372 => 0x201, 521 => 'WhitePoint' },
- 'whites2012' => { 496 => 'Whites2012', 498 => 'Whites2012' },
- 'whitesadj' => { 472 => 0x9017 },
- 'wideadapter' => { 404 => 0x1017 },
+ 'whitebalanceset' => { 356 => 0xa },
+ 'whitebalancesetting' => { 184 => 0x23, 427 => 0x5, 428 => 0x4, 429 => 0x16, 445 => 0xd },
+ 'whitebalancesetup' => { 414 => 0x41 },
+ 'whitebalancetemperature' => { 317 => 0x501 },
+ 'whiteboard' => { 322 => 0x301 },
+ 'whitelevel' => { 119 => 0xc61d, 375 => 0x7e, 447 => 0x787f },
+ 'whitepoint' => { 119 => 0x13e, 339 => 0x35d, 375 => 0x201, 525 => 'WhitePoint' },
+ 'whites2012' => { 500 => 'Whites2012', 502 => 'Whites2012' },
+ 'whitesadj' => { 476 => 0x9017 },
+ 'wideadapter' => { 407 => 0x1017 },
'widefocuszone' => { 181 => 0x2f },
- 'widerange' => { 413 => 0x20f },
+ 'widerange' => { 416 => 0x20f },
'windmode' => { 138 => 0x3f4 },
- 'windnoisereduction' => { 239 => 0x2d6, 240 => 0x2fe, 241 => 0x2fe },
- 'windowlocation' => { 397 => 'WLOC' },
- 'windowsatom' => { 497 => 'windowsAtom' },
- 'windowsatomextension' => { 497 => [\'windowsAtom','windowsAtomExtension'] },
- 'windowsatominvocationflags' => { 497 => [\'windowsAtom','windowsAtomInvocationFlags'] },
- 'windowsatomuncprojectpath' => { 497 => [\'windowsAtom','windowsAtomUncProjectPath'] },
- 'wordcount' => { 515 => 'wordCount' },
- 'work' => { 389 => "\xa9wrk" },
+ 'windnoisereduction' => { 239 => 0x352, 240 => 0x2d6, 241 => 0x2fe, 242 => 0x2fe },
+ 'windowlocation' => { 400 => 'WLOC' },
+ 'windowsatom' => { 501 => 'windowsAtom' },
+ 'windowsatomextension' => { 501 => [\'windowsAtom','windowsAtomExtension'] },
+ 'windowsatominvocationflags' => { 501 => [\'windowsAtom','windowsAtomInvocationFlags'] },
+ 'windowsatomuncprojectpath' => { 501 => [\'windowsAtom','windowsAtomUncProjectPath'] },
+ 'wordcount' => { 519 => 'wordCount' },
+ 'work' => { 392 => "\xa9wrk" },
'workcolorspace' => { 103 => 0x10200, 108 => 0x270 },
- 'workflowtag' => { 510 => 'WorkflowTag' },
- 'workflowtagcvid' => { 510 => [\'WorkflowTag','WorkflowTagCvId'] },
- 'workflowtagcvtermid' => { 510 => [\'WorkflowTag','WorkflowTagCvTermId'] },
- 'workflowtagcvtermname' => { 510 => [\'WorkflowTag','WorkflowTagCvTermName'] },
- 'workflowtagcvtermrefinedabout' => { 510 => [\'WorkflowTag','WorkflowTagCvTermRefinedAbout'] },
- 'worktodo' => { 504 => 'WorkToDo' },
- 'worldtimelocation' => { 337 => 0x3a, 372 => 0x22, 378 => '0.1' },
+ 'workflowtag' => { 514 => 'WorkflowTag' },
+ 'workflowtagcvid' => { 514 => [\'WorkflowTag','WorkflowTagCvId'] },
+ 'workflowtagcvtermid' => { 514 => [\'WorkflowTag','WorkflowTagCvTermId'] },
+ 'workflowtagcvtermname' => { 514 => [\'WorkflowTag','WorkflowTagCvTermName'] },
+ 'workflowtagcvtermrefinedabout' => { 514 => [\'WorkflowTag','WorkflowTagCvTermRefinedAbout'] },
+ 'worktodo' => { 508 => 'WorkToDo' },
+ 'worldtimelocation' => { 340 => 0x3a, 375 => 0x22, 381 => '0.1' },
'writer' => { 179 => 'WM/Writer' },
'writer-editor' => { 131 => 0x7a },
- 'x3filllight' => { 414 => 0x12 },
+ 'x3filllight' => { 417 => 0x12 },
'xattrquarantine' => { 174 => 'com.apple.quarantine' },
'xilinxversion' => { 138 => 0x414 },
'xml' => { 136 => 'xml ' },
'xmp' => { 106 => 0xffff00f6, 120 => 'XMP' },
- 'xmptoolkit' => { 522 => 'xmptk' },
+ 'xmptoolkit' => { 526 => 'xmptk' },
'xpauthor' => { 119 => 0x9c9d },
'xpcomment' => { 119 => 0x9c9c },
'xpkeywords' => { 119 => 0x9c9e },
'xposition' => { 119 => 0x11e },
'xpsubject' => { 119 => 0x9c9f },
'xptitle' => { 119 => 0x9c9b },
- 'xresolution' => { 119 => 0x11a, 134 => 0x3, 387 => 0x0, 521 => 'XResolution' },
+ 'xresolution' => { 119 => 0x11a, 134 => 0x3, 390 => 0x0, 525 => 'XResolution' },
'xyresolution' => { 123 => 0x3 },
- 'yaw' => { 115 => 0x7, 397 => ['_yaw',"\xa9fyw"] },
- 'yawangle' => { 246 => 0x8, 409 => 0x0 },
- 'ycbcrcoefficients' => { 119 => 0x211, 521 => 'YCbCrCoefficients' },
- 'ycbcrpositioning' => { 119 => 0x213, 521 => 'YCbCrPositioning' },
- 'ycbcrsubsampling' => { 119 => 0x212, 521 => 'YCbCrSubSampling' },
- 'year' => { 389 => 'yrrc', 391 => 'year', 397 => 'yrrc' },
+ 'yaw' => { 115 => 0x7, 400 => ['_yaw',"\xa9fyw"] },
+ 'yawangle' => { 247 => 0x8, 412 => 0x0 },
+ 'ycbcrcoefficients' => { 119 => 0x211, 525 => 'YCbCrCoefficients' },
+ 'ycbcrpositioning' => { 119 => 0x213, 525 => 'YCbCrPositioning' },
+ 'ycbcrsubsampling' => { 119 => 0x212, 525 => 'YCbCrSubSampling' },
+ 'year' => { 392 => 'yrrc', 394 => 'year', 400 => 'yrrc' },
'yearcreated' => { 140 => 0x10, 149 => 0xc },
'yellowhsl' => { 103 => 0x20912 },
- 'yield' => { 517 => 'yield' },
+ 'yield' => { 521 => 'yield' },
'yposition' => { 119 => 0x11f },
- 'yresolution' => { 119 => 0x11b, 134 => 0x5, 387 => 0x4, 521 => 'YResolution' },
- 'zebrapatterntonerange' => { 312 => 0x211 },
+ 'yresolution' => { 119 => 0x11b, 134 => 0x5, 390 => 0x4, 525 => 'YResolution' },
+ 'zebrapatterntonerange' => { 313 => 0x211, 314 => 0x211, 315 => 0x229 },
'zoneidentifier' => { 120 => 'ZoneIdentifier' },
- 'zonematching' => { 186 => 0x10a, 189 => [0x3a,0x4a], 437 => 0xb024 },
+ 'zonematching' => { 186 => 0x10a, 189 => [0x3a,0x4a], 440 => 0xb024 },
'zonematchingmode' => { 184 => 0x14 },
'zonematchingon' => { 183 => 0x75 },
- 'zonematchingvalue' => { 424 => 0x1f },
- 'zoomedpreviewlength' => { 319 => 0xf05 },
- 'zoomedpreviewsize' => { 319 => 0xf06 },
- 'zoomedpreviewstart' => { 319 => 0xf04 },
+ 'zonematchingvalue' => { 427 => 0x1f },
+ 'zoomedpreviewlength' => { 322 => 0xf05 },
+ 'zoomedpreviewsize' => { 322 => 0xf06 },
+ 'zoomedpreviewstart' => { 322 => 0xf04 },
'zoomsourcewidth' => { 34 => 0x24 },
- 'zoomstepcount' => { 317 => 0x300, 319 => 0x100d },
+ 'zoomstepcount' => { 320 => 0x300, 322 => 0x100d },
'zoomtargetwidth' => { 34 => 0x25 },
);
@@ -7454,7 +7462,6 @@ my %tagExists = (
'aitargetresolution' => 1,
'album2' => 1,
'albumartistsortorder' => 1,
- 'albumid' => 1,
'albumidalbumartist' => 1,
'albumname' => 1,
'albumsortorder' => 1,
@@ -8379,6 +8386,7 @@ my %tagExists = (
'contentrating' => 1,
'contents' => 1,
'contentscripttype' => 1,
+ 'contentstatus' => 1,
'contentstyletype' => 1,
'contiguouscodestream' => 1,
'contrastadjustment' => 1,
@@ -8513,7 +8521,9 @@ my %tagExists = (
'customsettingsd800' => 1,
'customsettingsd90' => 1,
'customsettingsoffset' => 1,
+ 'customsettingsz8' => 1,
'customsettingsz9' => 1,
+ 'customsettingsz9v4' => 1,
'customtostandardpcc' => 1,
'cxf' => 1,
'd-lightinghqdata' => 1,
@@ -8753,6 +8763,7 @@ my %tagExists = (
'documentinfo' => 1,
'documentnumber' => 1,
'documentusagerights' => 1,
+ 'docversion' => 1,
'dof' => 1,
'donotshow' => 1,
'dop' => 1,
@@ -9117,6 +9128,7 @@ my %tagExists = (
'finishipaversion' => 1,
'finishipfversion' => 1,
'firmwareinfo' => 1,
+ 'firmwareversion51' => 1,
'firstchar' => 1,
'firstflushsequence' => 1,
'firstlanguage' => 1,
@@ -10382,8 +10394,10 @@ my %tagExists = (
'menuoffset' => 1,
'menusettingsoffset' => 1,
'menusettingsoffsetz7ii' => 1,
+ 'menusettingsoffsetz8' => 1,
'menusettingsoffsetz9' => 1,
'menusettingsoffsetz9v3' => 1,
+ 'menusettingsoffsetz9v4' => 1,
'message' => 1,
'meta' => 1,
'metadata' => 1,
@@ -11709,6 +11723,7 @@ my %tagExists = (
'shotinfounknown' => 1,
'shotinfoversion' => 1,
'shotinfoz7ii' => 1,
+ 'shotinfoz8' => 1,
'shotinfoz9' => 1,
'showmode' => 1,
'showobjects' => 1,
@@ -11996,6 +12011,7 @@ my %tagExists = (
'tag9050a' => 1,
'tag9050b' => 1,
'tag9050c' => 1,
+ 'tag9050d' => 1,
'tag9400a' => 1,
'tag9400b' => 1,
'tag9400c' => 1,
diff --git a/lib/Image/ExifTool/TagNames.pod b/lib/Image/ExifTool/TagNames.pod
index 13fc0bae..a83200f5 100644
--- a/lib/Image/ExifTool/TagNames.pod
+++ b/lib/Image/ExifTool/TagNames.pod
@@ -12,7 +12,7 @@ meta information extracted from or written to a file.
=head1 TAG TABLES
The tables listed below give the names of all tags recognized by ExifTool.
-They contain a total of 26591 tags, with 16966 unique tag names.
+They contain a total of 26990 tags, with 16972 unique tag names.
B<Tag ID>, B<Index#> or B<Sequence> is given in the first column of each
table. A B<Tag ID> is the computer-readable equivalent of a tag name, and
@@ -7187,14 +7187,14 @@ Tags extracted from the maker notes of iPhone images.
0x000b BurstUUID string
0x000c FocusDistanceRange rational64s[2]
0x000f OISMode int32s
- 0x0011 MediaGroupUUID string
+ 0x0011 ContentIdentifier string
0x0014 ImageCaptureType? int32s
0x0015 ImageUniqueID string
0x0017 LivePhotoVideoIndex yes
0x0019 ImageProcessingFlags? int32s
0x001a QualityHint? string
0x001d LuminanceNoiseAmplitude rational64s
- 0x0020 ImageCaptureReqestID? string
+ 0x0020 ImageCaptureRequestID? string
0x0021 HDRHeadroom rational64s
0x0025 SceneFlags? int32s
0x0026 SignalToNoiseRatioType? int32s
@@ -13809,6 +13809,7 @@ DiMAGE X and Xt.
ShotInfoD6 Nikon ShotInfoD6
ShotInfoD610 Nikon ShotInfoD610
ShotInfoZ7II Nikon ShotInfoZ7II
+ ShotInfoZ8 Nikon ShotInfoZ8
ShotInfoZ9 Nikon ShotInfoZ9
ShotInfo02xx Nikon ShotInfo
ShotInfoUnknown Nikon ShotInfo
@@ -14166,7 +14167,7 @@ Tags written by some Nikon GPS-equipped cameras like the AW100.
Index1 Tag Name Writable
------ -------- --------
- 0 FirmwareVersion no
+ 0 FirmwareVersion51 no
10 NEFCompression int16u[0.5]
=head3 Nikon MakerNotes0x56 Tags
@@ -14706,19 +14707,17 @@ These tags are used by the Z5, Z6, Z7, Z6II, Z7II, Z50 and Zfc.
591 MovieVibrationReductionSameAsPhoto? int8u
858 HDMIOutputN-Log? int8u
-=head3 Nikon ShotInfoZ9 Tags
+=head3 Nikon ShotInfoZ8 Tags
-These tags are extracted from encrypted data in images from the Z9.
+These tags are extracted from encrypted data in images from the Z8.
Index Tag Name Writable
----- -------- --------
0 ShotInfoVersion no
4 FirmwareVersion no
48 SequenceOffset Nikon SeqInfoZ9
- 88 Offset13 Nikon Offset13InfoZ9
- 128 AutoCaptureOffset Nikon AutoCaptureInfo
132 OrientOffset Nikon OrientationInfo
- 140 MenuOffset Nikon MenuInfoZ9
+ 140 MenuOffset Nikon MenuInfoZ8
=head3 Nikon SeqInfoZ9 Tags
@@ -14727,6 +14726,148 @@ These tags are extracted from encrypted data in images from the Z9.
32 FocusShiftShooting int8u~
40 IntervalShooting int16u~
+=head3 Nikon MenuInfoZ8 Tags
+
+ Index1 Tag Name Writable
+ ------ -------- --------
+ 16 MenuSettingsOffsetZ8 Nikon MenuSettingsZ8
+
+=head3 Nikon MenuSettingsZ8 Tags
+
+These tags are used by the Z8 firmware 1.00.
+
+ Index1 Tag Name Writable
+ --------------- --------
+ 72 HighFrameRate int8u
+ 152 MultipleExposureMode int8u
+ 154 MultiExposureShots int8u
+ 184 IntervalDurationHours int32u
+ 188 IntervalDurationMinutes int32u
+ 192 IntervalDurationSeconds int32u
+ 200 Intervals int32u
+ 204 ShotsPerInterval int32u
+ 208 IntervalExposureSmoothing int8u
+ 210 IntervalPriority int8u
+ 244 FocusShiftNumberShots int8u
+ 248 FocusShiftStepWidth int8u
+ 252 FocusShiftInterval int8u~
+ 256 FocusShiftExposureLock? int8u
+ 286 PhotoShootingMenuBank int8u
+ 288 ExtendedMenuBanks int8u
+ 324 PhotoShootingMenuBankImageArea int8u
+ 338 AutoISO int8u
+ 340 ISOAutoHiLimit? int16u
+ 342 ISOAutoFlashLimit? int16u
+ 350 ISOAutoShutterTime no
+ 432 MovieVignetteControl? int8u
+ 434 DiffractionCompensation int8u
+ 436 FlickerReductionShooting int8u
+ 440 FlashControlMode int8u
+ 548 AFAreaMode int8u
+ 550 VRMode int8u
+ 554 BracketSet int8u
+ 556 BracketProgram int8u
+ 558 BracketIncrement int8u
+ 570 HDR int8u
+ 576 SecondarySlotFunction int8u
+ 582 HDRLevel int8u
+ 586 Slot2JpgSize? int8u
+ 592 DXCropAlert int8u
+ 594 SubjectDetection int8u
+ 596 DynamicAFAreaSize int8u
+ 618 ToneMap? int8u
+ 622 PortraitImpressionBalance int8u
+ 636 HighFrequencyFlickerReductionShooting? int8u
+ 730 MovieImageArea? int8u & 0x01
+ 740 MovieType? int8u
+ 742 MovieISOAutoHiLimit? int16u
+ 744 MovieISOAutoControlManualMode? int8u
+ 746 MovieISOAutoManualMode? int16u
+ 820 MovieActiveD-Lighting? int8u
+ 822 MovieHighISONoiseReduction? int8u
+ 828 MovieFlickerReduction int8u
+ 830 MovieMeteringMode? int8u
+ 832 MovieFocusMode? int8u
+ 834 MovieAFAreaMode int8u
+ 836 MovieVRMode? int8u
+ 840 MovieElectronicVR? int8u
+ 842 MovieSoundRecording? int8u
+ 844 MicrophoneSensitivity? int8u
+ 846 MicrophoneAttenuator? int8u
+ 848 MicrophoneFrequencyResponse? int8u
+ 850 WindNoiseReduction? int8u
+ 882 MovieFrameSize? int8u
+ 884 MovieFrameRate? int8u
+ 886 MicrophoneJackPower? int8u
+ 887 MovieDXCropAlert? int8u
+ 888 MovieSubjectDetection? int8u
+ 896 MovieHighResZoom? int8u
+ 943 CustomSettingsZ8 NikonCustom SettingsZ8
+ 1682 Language? int8u
+ 1684 TimeZone int8u
+ 1690 MonitorBrightness? int8u
+ 1712 AFFineTune? int8u
+ 1716 NonCPULens1FocalLength? int16u~
+ 1718 NonCPULens2FocalLength? int16u~
+ 1720 NonCPULens3FocalLength? int16u~
+ 1722 NonCPULens4FocalLength? int16u~
+ 1724 NonCPULens5FocalLength? int16u~
+ 1726 NonCPULens6FocalLength? int16u~
+ 1728 NonCPULens7FocalLength? int16u~
+ 1730 NonCPULens8FocalLength? int16u~
+ 1732 NonCPULens9FocalLength? int16u~
+ 1734 NonCPULens10FocalLength? int16u~
+ 1736 NonCPULens11FocalLength? int16u~
+ 1738 NonCPULens12FocalLength? int16u~
+ 1740 NonCPULens13FocalLength? int16u~
+ 1742 NonCPULens14FocalLength? int16u~
+ 1744 NonCPULens15FocalLength? int16u~
+ 1746 NonCPULens16FocalLength? int16u~
+ 1748 NonCPULens17FocalLength? int16u~
+ 1750 NonCPULens18FocalLength? int16u~
+ 1752 NonCPULens19FocalLength? int16u~
+ 1754 NonCPULens20FocalLength? int16u~
+ 1756 NonCPULens1MaxAperture? int16u
+ 1758 NonCPULens2MaxAperture? int16u
+ 1760 NonCPULens3MaxAperture? int16u
+ 1762 NonCPULens4MaxAperture? int16u
+ 1764 NonCPULens5MaxAperture? int16u
+ 1766 NonCPULens6MaxAperture? int16u
+ 1768 NonCPULens7MaxAperture? int16u
+ 1770 NonCPULens8MaxAperture? int16u
+ 1772 NonCPULens9MaxAperture? int16u
+ 1774 NonCPULens10MaxAperture? int16u
+ 1776 NonCPULens11MaxAperture? int16u
+ 1778 NonCPULens12MaxAperture? int16u
+ 1780 NonCPULens13MaxAperture? int16u
+ 1782 NonCPULens14MaxAperture? int16u
+ 1784 NonCPULens15MaxAperture? int16u
+ 1786 NonCPULens16MaxAperture? int16u
+ 1788 NonCPULens17MaxAperture? int16u
+ 1790 NonCPULens18MaxAperture? int16u
+ 1792 NonCPULens19MaxAperture? int16u
+ 1794 NonCPULens20MaxAperture? int16u
+ 1808 HDMIOutputResolution int8u
+ 1826 AirplaneMode? int8u
+ 1827 EmptySlotRelease? int8u
+ 1862 EnergySavingMode? int8u
+ 1890 USBPowerDelivery? int8u
+ 1899 SensorShield? int8u
+
+=head3 Nikon ShotInfoZ9 Tags
+
+These tags are extracted from encrypted data in images from the Z9.
+
+ Index Tag Name Writable
+ ----- -------- --------
+ 0 ShotInfoVersion no
+ 4 FirmwareVersion no
+ 48 SequenceOffset Nikon SeqInfoZ9
+ 88 Offset13 Nikon Offset13InfoZ9
+ 128 AutoCaptureOffset Nikon AutoCaptureInfo
+ 132 OrientOffset Nikon OrientationInfo
+ 140 MenuOffset Nikon MenuInfoZ9
+
=head3 Nikon Offset13InfoZ9 Tags
Index1 Tag Name Writable
@@ -14740,6 +14881,7 @@ These tags are extracted from encrypted data in images from the Z9.
Index1 Tag Name Writable
------ -------- --------
+ 0 AutoCapturedFrame int8u
1 AutoCaptureCriteria int8u~
55 AutoCaptureRecordingTime int8u
56 AutoCaptureWaitTime int8u
@@ -14757,7 +14899,7 @@ These tags are extracted from encrypted data in images from the Z9.
------ -------- --------
16 MenuSettingsOffsetZ9 Nikon MenuSettingsZ9
MenuSettingsOffsetZ9v3 -
- Nikon MenuSettingsZ9v3
+ MenuSettingsOffsetZ9v4 Nikon MenuSettingsZ9v3
-
Nikon MenuSettingsZ9v4
@@ -14953,7 +15095,9 @@ These tags are used by the Z9 firmware 3.00.
554 BracketSet int8u
556 BracketProgram int8u
558 BracketIncrement int8u
+ 570 HDR int8u
576 SecondarySlotFunction int8u
+ 582 HDRLevel int8u
586 Slot2JpgSize? int8u
592 DXCropAlert int8u
594 SubjectDetection int8u
@@ -14984,11 +15128,11 @@ These tags are used by the Z9 firmware 3.00.
803 MovieDXCropAlert? int8u
804 MovieSubjectDetection? int8u
812 MovieHighResZoom? int8u
- 847 CustomSettingsZ9 NikonCustom SettingsZ9
- 1474 Language? int8u
- 1476 TimeZone int8u
- 1482 MonitorBrightness? int8u
- 1504 AFFineTune? int8u
+ 847 CustomSettingsZ9v4 NikonCustom SettingsZ9v4
+ 1498 Language? int8u
+ 1500 TimeZone int8u
+ 1506 MonitorBrightness? int8u
+ 1528 AFFineTune? int8u
1532 NonCPULens1FocalLength? int16s~
1536 NonCPULens2FocalLength? int16s~
1540 NonCPULens3FocalLength? int16s~
@@ -15000,7 +15144,7 @@ These tags are used by the Z9 firmware 3.00.
1564 NonCPULens9FocalLength? int16s~
1568 NonCPULens10FocalLength? int16s~
1572 NonCPULens11FocalLength? int16s~
- 1576 NonCPULens21FocalLength? int16s~
+ 1576 NonCPULens12FocalLength? int16s~
1580 NonCPULens13FocalLength? int16s~
1584 NonCPULens14FocalLength? int16s~
1588 NonCPULens15FocalLength? int16s~
@@ -15224,6 +15368,7 @@ Tags found in the encrypted LensData from cameras such as the Z6 and Z7.
76 FocusDistanceRangeWidth? int8u
78 FocusDistance int16u~
86 LensDriveEnd? int8u
+ 88 FocusStepsFromInfinity? int8u
90 LensPositionAbsolute int32s
=head3 Nikon LensDataUnknown Tags
@@ -15436,6 +15581,7 @@ These tags are used by the D4S, D750, D810, D5500, D7200 (FlashInfoVersion
------ -------- --------
0 AFInfo2Version no
5 AFAreaMode int8u
+ 10 AFPointsUsed undef[51]
62 AFImageWidth int16u
64 AFImageHeight int16u
66 AFAreaXPosition int16u
@@ -16801,6 +16947,134 @@ Custom settings for the D610.
21.2 ShootingInfoMonitorOffTime int8u & 0x1c
35.1 PlaybackMonitorOffTime int8u & 0xe0
+=head3 NikonCustom SettingsZ8 Tags
+
+Custom settings for the Z8.
+
+ Index1 Tag Name Writable
+ ------ -------- --------
+ 1 CustomSettingsBank int8u
+ 3 AF-CPrioritySelection int8u
+ 5 AF-SPrioritySelection int8u
+ 7 BlockShotAFResponse int8u
+ 11 AFPointSel int8u
+ 13 StoreByOrientation int8u
+ 15 AFActivation int8u
+ 16 AF-OnOutOfFocusRelease? int8u
+ 17 LimitAF-AreaModeSelPinpoint? int8u
+ 19 LimitAF-AreaModeSelWideAF_S? int8u
+ 20 LimitAF-AreaModeSelWideAF_L? int8u
+ 21 LimitAFAreaModeSelAuto? int8u
+ 22 FocusPointWrap? int8u
+ 23 ManualFocusPointIllumination? int8u
+ 24 DynamicAreaAFAssist? int8u
+ 25 AF-AssistIlluminator int8u
+ 26 ManualFocusRingInAFMode int8u
+ 27 ExposureControlStepSize int8u
+ 29 EasyExposureCompensation int8u
+ 31 CenterWeightedAreaSize int8u
+ 33 FineTuneOptMatrixMetering int8s
+ 35 FineTuneOptCenterWeighted int8s
+ 37 FineTuneOptSpotMetering int8s
+ 39 FineTuneOptHighlightWeighted int8s
+ 41 ShutterReleaseButtonAE-L int8u
+ 43 SelfTimerTime int8u
+ 45 SelfTimerShotCount int8u
+ 49 SelfTimerShotInterval int8u
+ 51 PlaybackMonitorOffTime int8u
+ 53 MenuMonitorOffTime int8u
+ 55 ShootingInfoMonitorOffTime int8u
+ 57 ImageReviewMonitorOffTime int8u
+ 59 CLModeShootingSpeed int8u
+ 61 MaxContinuousRelease no
+ 65 SyncReleaseMode? int8u
+ 69 LimitSelectableImageAreaDX? int8u
+ 70 LimitSelectableImageArea1To1? int8u
+ 71 LimitSelectableImageArea16To9? int8u
+ 72 FileNumberSequence int8u
+ 73 FocusPeakingLevel? int8u
+ 75 FocusPeakingHighlightColor? int8u
+ 81 ContinuousModeDisplay int8u
+ 83 FlashSyncSpeed no
+ 85 HighSpeedSync int8u
+ 87 FlashShutterSpeed no
+ 89 FlashExposureCompArea int8u
+ 91 AutoFlashISOSensitivity int8u
+ 93 ModelingFlash int8u
+ 95 AutoBracketModeM int8u
+ 97 AutoBracketOrder int8u
+ 99 Func1Button int8u
+ 115 Func2Button int8u
+ 131 AFOnButton int8u
+ 143 SubSelector? int8u
+ 155 AssignMovieRecordButton? int8u
+ 159 LensFunc1Button int8u
+ 167 LensFunc2Button int8u
+ 173 LensControlRing int8u
+ 175 MultiSelectorShootMode int8u
+ 179 MultiSelectorPlaybackMode int8u
+ 183 ShutterSpeedLock int8u
+ 184 ApertureLock int8u
+ 186 CmdDialsReverseRotation int8u
+ 191 UseDialWithoutHold? int8u
+ 193 ReverseIndicators? int8u
+ 195 MovieFunc1Button int8u
+ 199 MovieFunc2Button int8u
+ 203 MovieAF-OnButton int8u
+ 215 MovieLensControlRing int8u
+ 217 MovieMultiSelector? int8u
+ 221 MovieAFSpeed int8u
+ 223 MovieAFSpeedApply int8u
+ 225 MovieAFTrackingSensitivity int8u
+ 257 LCDIllumination? int8u
+ 258 ExtendedShutterSpeeds int8u
+ 259 SubjectMotion int8u
+ 261 FocusPointPersistence int8u
+ 263 AutoFocusModeRestrictions? int8u
+ 267 CHModeShootingSpeed int8u
+ 273 FlashBurstPriority? int8u
+ 335 LimitAF-AreaModeSelDynamic_S? int8u
+ 336 LimitAF-AreaModeSelDynamic_M? int8u
+ 337 LimitAF-AreaModeSelDynamic_L? int8u
+ 339 LimitAF-AreaModeSel3DTracking? int8u
+ 341 PlaybackFlickUp? int8u
+ 345 PlaybackFlickDown? int8u
+ 349 ISOStepSize int8u
+ 355 ReverseFocusRing int8u
+ 356 EVFImageFrame? int8u
+ 357 EVFGrid? int8u
+ 359 VirtualHorizonStyle? int8u
+ 421 Func1ButtonPlaybackMode? int8u
+ 423 Func2ButtonPlaybackMode? int8u
+ 437 MovieRecordButtonPlaybackMode? int8u
+ 459 CommandDialPlaybackMode? int8u
+ 463 SubCommandDialPlaybackMode? int8u
+ 467 FocusPointLock? int8u
+ 469 ControlRingResponse int8u
+ 515 MovieAFAreaMode? int8u
+ 529 ZebraPatternToneRange? int8u
+ 531 MovieZebraPattern? int8u
+ 533 MovieHighlightDisplayThreshold? int8u
+ 535 MovieMidtoneDisplayValue? int8u
+ 537 MovieMidtoneDisplayRange? int8u~
+ 541 MovieEVFGrid? int8u
+ 549 MovieShutterSpeedLock? int8u
+ 550 MovieFocusPointLock? int8u
+ 563 MatrixMetering? int8u
+ 564 AF-CFocusDisplay int8u
+ 565 FocusPeakingDisplay? int8u
+ 567 KeepExposure int8u
+ 585 StarlightView? int8u
+ 587 EVFWarmDisplayMode? int8u
+ 589 EVFWarmDisplayBrightness? int8s
+ 591 EVFReleaseIndicator? int8u
+ 601 MovieApertureLock? int8u
+ 607 FlickAdvanceDirection? int8u
+ 647 PreReleaseBurstLength int8u
+ 649 PostReleaseBurstLength int8u
+ 681 ViewModeShowEffectsOfSettings? int8u
+ 683 DispButton int8u
+
=head3 NikonCustom SettingsZ9 Tags
Custom settings for the Z9.
@@ -16875,8 +17149,8 @@ Custom settings for the Z9.
195 MovieFunc1Button int8u
199 MovieFunc2Button int8u
203 MovieAF-OnButton int8u
+ 207 MovieMultiSelector? int8u
215 MovieLensControlRing int8u
- 217 MovieMultiSelector? int8u
221 MovieAFSpeed int8u
223 MovieAFSpeedApply int8u
225 MovieAFTrackingSensitivity int8u
@@ -16948,6 +17222,153 @@ Custom settings for the Z9.
601 MovieApertureLock? int8u
607 FlickAdvanceDirection? int8u
+=head3 NikonCustom SettingsZ9v4 Tags
+
+Custom settings for the Z9.
+
+ Index1 Tag Name Writable
+ ------ -------- --------
+ 1 CustomSettingsBank int8u
+ 3 AF-CPrioritySelection int8u
+ 5 AF-SPrioritySelection int8u
+ 7 BlockShotAFResponse int8u
+ 11 AFPointSel int8u
+ 13 StoreByOrientation int8u
+ 15 AFActivation int8u
+ 16 AF-OnOutOfFocusRelease? int8u
+ 17 LimitAF-AreaModeSelPinpoint? int8u
+ 19 LimitAF-AreaModeSelWideAF_S? int8u
+ 20 LimitAF-AreaModeSelWideAF_L? int8u
+ 21 LimitAFAreaModeSelAuto? int8u
+ 22 FocusPointWrap? int8u
+ 23 ManualFocusPointIllumination? int8u
+ 24 DynamicAreaAFAssist? int8u
+ 25 AF-AssistIlluminator int8u
+ 26 ManualFocusRingInAFMode int8u
+ 27 ExposureControlStepSize int8u
+ 29 EasyExposureCompensation int8u
+ 31 CenterWeightedAreaSize int8u
+ 33 FineTuneOptMatrixMetering int8s
+ 35 FineTuneOptCenterWeighted int8s
+ 37 FineTuneOptSpotMetering int8s
+ 39 FineTuneOptHighlightWeighted int8s
+ 41 ShutterReleaseButtonAE-L int8u
+ 43 SelfTimerTime int8u
+ 45 SelfTimerShotCount int8u
+ 49 SelfTimerShotInterval int8u
+ 51 PlaybackMonitorOffTime int8u
+ 53 MenuMonitorOffTime int8u
+ 55 ShootingInfoMonitorOffTime int8u
+ 57 ImageReviewMonitorOffTime int8u
+ 59 CLModeShootingSpeed int8u
+ 61 MaxContinuousRelease no
+ 65 SyncReleaseMode? int8u
+ 69 LimitSelectableImageAreaDX? int8u
+ 70 LimitSelectableImageArea1To1? int8u
+ 71 LimitSelectableImageArea16To9? int8u
+ 72 FileNumberSequence int8u
+ 73 FocusPeakingLevel? int8u
+ 75 FocusPeakingHighlightColor? int8u
+ 81 ContinuousModeDisplay int8u
+ 83 FlashSyncSpeed no
+ 85 HighSpeedSync int8u
+ 87 FlashShutterSpeed no
+ 89 FlashExposureCompArea int8u
+ 91 AutoFlashISOSensitivity int8u
+ 93 ModelingFlash int8u
+ 95 AutoBracketModeM int8u
+ 97 AutoBracketOrder int8u
+ 99 Func1Button int8u
+ 115 Func2Button int8u
+ 131 AFOnButton int8u
+ 143 SubSelector? int8u
+ 155 AssignMovieRecordButton? int8u
+ 159 LensFunc1Button int8u
+ 167 LensFunc2Button int8u
+ 173 LensControlRing int8u
+ 175 MultiSelectorShootMode int8u
+ 179 MultiSelectorPlaybackMode int8u
+ 183 ShutterSpeedLock int8u
+ 184 ApertureLock int8u
+ 186 CmdDialsReverseRotation int8u
+ 191 UseDialWithoutHold? int8u
+ 193 ReverseIndicators? int8u
+ 195 MovieFunc1Button int8u
+ 199 MovieFunc2Button int8u
+ 203 MovieAF-OnButton int8u
+ 207 MovieMultiSelector? int8u
+ 215 MovieLensControlRing int8u
+ 221 MovieAFSpeed int8u
+ 223 MovieAFSpeedApply int8u
+ 225 MovieAFTrackingSensitivity int8u
+ 279 LCDIllumination? int8u
+ 280 ExtendedShutterSpeeds int8u
+ 281 SubjectMotion int8u
+ 283 FocusPointPersistence int8u
+ 285 AutoFocusModeRestrictions? int8u
+ 289 CHModeShootingSpeed int8u
+ 293.1 LimitReleaseModeSelCL? int8u & 0x02
+ 293.2 LimitReleaseModeSelCH? int8u & 0x04
+ 293.3 LimitReleaseModeSelC30? int8u & 0x10
+ 293.4 LimitReleaseModeSelC120? int8u & 0x40
+ 293.5 LimitReleaseModeSelSelf? int8u & 0x80
+ 297 FlashBurstPriority? int8u
+ 301 VerticalFuncButton int8u
+ 305 Func3Button int8u
+ 309 VerticalAFOnButton int8u
+ 317 VerticalMultiSelectorPlaybackMode? int8u
+ 319 MovieFunc3Button int8u
+ 359 LimitAF-AreaModeSelDynamic_S? int8u
+ 360 LimitAF-AreaModeSelDynamic_M? int8u
+ 361 LimitAF-AreaModeSelDynamic_L? int8u
+ 363 LimitAF-AreaModeSel3DTracking? int8u
+ 365 PlaybackFlickUp? int8u
+ 369 PlaybackFlickDown? int8u
+ 373 ISOStepSize int8u
+ 379 ReverseFocusRing int8u
+ 380 EVFImageFrame? int8u
+ 381 EVFGrid? int8u
+ 383 VirtualHorizonStyle? int8u
+ 397 Func4Button? int8u
+ 403 AudioButton? int8u
+ 405 QualityButton? int8u
+ 423 VerticalMultiSelector? int8u
+ 445 Func1ButtonPlaybackMode? int8u
+ 447 Func2ButtonPlaybackMode? int8u
+ 449 Func3ButtonPlaybackMode? int8u
+ 455 Func4ButtonPlaybackMode? int8u
+ 461 MovieRecordButtonPlaybackMode? int8u
+ 463 VerticalFuncButtonPlaybackMode? int8u
+ 465 AudioButtonPlaybackMode? int8u
+ 471 QualityButtonPlaybackMode? int8u
+ 477 WhiteBalanceButtonPlaybackMode? int8u
+ 483 CommandDialPlaybackMode? int8u
+ 487 SubCommandDialPlaybackMode? int8u
+ 491 FocusPointLock? int8u
+ 493 ControlRingResponse int8u
+ 505 VerticalMovieFuncButton? int8u
+ 529 VerticalMovieAFOnButton? int8u
+ 539 MovieAFAreaMode? int8u
+ 551 HDMIViewAssist? int8u
+ 553 ZebraPatternToneRange? int8u
+ 555 MovieZebraPattern? int8u
+ 557 MovieHighlightDisplayThreshold? int8u
+ 559 MovieMidtoneDisplayValue? int8u
+ 561 MovieMidtoneDisplayRange? int8u~
+ 565 MovieEVFGrid? int8u
+ 573 MovieShutterSpeedLock? int8u
+ 574 MovieFocusPointLock? int8u
+ 587 MatrixMetering? int8u
+ 588 AF-CFocusDisplay int8u
+ 589 FocusPeakingDisplay? int8u
+ 591 KeepExposure int8u
+ 609 StarlightView? int8u
+ 611 EVFWarmDisplayMode? int8u
+ 613 EVFWarmDisplayBrightness? int8s
+ 615 EVFReleaseIndicator? int8u
+ 625 MovieApertureLock? int8u
+ 631 FlickAdvanceDirection? int8u
+
=head2 NikonCapture Tags
This information is written by the Nikon Capture software in tag 0x0e01 of
@@ -19872,6 +20293,7 @@ MakerNotes.
0x9050 Tag9050a Sony Tag9050a
Tag9050b Sony Tag9050b
Tag9050c Sony Tag9050c
+ Tag9050d Sony Tag9050d
0x9400 Tag9400a Sony Tag9400a
Tag9400b Sony Tag9400b
Tag9400c Sony Tag9400c
@@ -20976,6 +21398,18 @@ Valid from July 2020 for ILCE-1/7SM3, ILME-FX3.
136 InternalSerialNumber int8u[6]~
138 InternalSerialNumber int8u[6]~
+=head3 Sony Tag9050d Tags
+
+Valid for ILCE-6700/ZV-E1.
+
+ Index1 Tag Name Writable
+ ------ -------- --------
+ 10 ShutterCount int32u
+ 26 SonyExposureTime int16u
+ 28 SonyFNumber int16u
+ 31 ReleaseMode2 int8u
+ 56 InternalSerialNumber int8u[6]~
+
=head3 Sony Tag9400a Tags
Valid for many DSC, NEX and SLT models
@@ -21169,6 +21603,7 @@ ILCE-7/7M2/7M3/7R/7RM2/7RM3/7RM4/7S/7SM2/9/9M2/5000/5100/6000/6100/6300/
Index1 Tag Name Writable
------ -------- --------
5 BatteryTemperature int8u
+ BatteryLevel int8u
6 BatteryLevelGrip1 int8u
7 BatteryLevel int8u
8 BatteryLevelGrip2 int8u
@@ -21373,7 +21808,7 @@ E-mount models.
=head3 Sony Tag9416 Tags
-Valid for the ILCE-1/7M4/7RM5/7SM3, ILME-FX3.
+Valid for the ILCE-1/6700/7M4/7RM5/7SM3, ILME-FX3/FX30, ZV-E1.
Index1 Tag Name Writable
------ -------- --------
@@ -21398,7 +21833,10 @@ Valid for the ILCE-1/7M4/7RM5/7SM3, ILME-FX3.
117 MaxFocalLength no
2191 VignettingCorrParams no
2193 VignettingCorrParams no
- 2203 VignettingCorrParams no
+ 2205 VignettingCorrParams no
+ 2229 APS-CSizeCapture no
+ 2231 APS-CSizeCapture no
+ 2277 APS-CSizeCapture no
2324 ChromaticAberrationCorrParams no
2326 ChromaticAberrationCorrParams no
2373 ChromaticAberrationCorrParams no
@@ -22460,6 +22898,10 @@ UserDefined properties.
0x0013 SharedDoc no
0x0016 HyperlinksChanged no
0x0017 AppVersion no
+ 0x001a ContentType no
+ 0x001b ContentStatus no
+ 0x001c Language no
+ 0x001d DocVersion no
'_PID_HLINKS' Hyperlinks no
'_PID_LINKBASE' HyperlinkBase no
@@ -28424,6 +28866,7 @@ changed via the config file.
'com.android.version' AndroidVersion yes
'com.apple.photos.captureMode' CaptureMode yes
'comment' Comment yes
+ 'content.identifier' ContentIdentifier yes
'copyright' Copyright yes
'creationdate' CreationDate yes
'description' Description yes
@@ -28635,9 +29078,10 @@ QuickTimeHandler option may be set to 0 to avoid this.
'akID' AppleStoreAccountType int8s
'albm' Album string/
'apID' AppleStoreAccount string
- 'atID' AlbumTitleID int32s
+ 'atID' ArtistID int32s
'auth' Author string
'catg' Category string
+ 'cmID' ComposerID string
'cnID' AppleStoreCatalogID int32s
'covr' CoverArt string
'cpil' Compilation int8s
@@ -28662,7 +29106,7 @@ QuickTimeHandler option may be set to 0 to avoid this.
'pcst' Podcast int8s
'perf' Performer string
'pgap' PlayGap int8s
- 'plID' PlayListID int32s[2]
+ 'plID' AlbumID int32s[2]
'prID' ProductID string
'purd' PurchaseDate string
'purl' PodcastURL string
diff --git a/lib/Image/ExifTool/Writer.pl b/lib/Image/ExifTool/Writer.pl
index 3d30ce24..2254fe5d 100644
--- a/lib/Image/ExifTool/Writer.pl
+++ b/lib/Image/ExifTool/Writer.pl
@@ -2025,7 +2025,7 @@ sub SetFileName($$;$$$)
# protect against empty file name
length $newName or $self->Warn('New file name is empty'), return -1;
# don't replace existing file
- if ($self->Exists($newName) and (not defined $usedFlag or $usedFlag)) {
+ if ($self->Exists($newName, 1) and (not defined $usedFlag or $usedFlag)) {
if ($file ne $newName or $opt =~ /Link$/) {
# allow for case-insensitive filesystem
if ($opt =~ /Link$/ or not $self->IsSameFile($file, $newName)) {
@@ -2404,7 +2404,7 @@ sub WriteInfo($$;$$)
$outBuff = '';
$outRef = \$outBuff;
$outPos = 0;
- } elsif ($self->Exists($outfile)) {
+ } elsif ($self->Exists($outfile, 1)) {
$self->Error("File already exists: $outfile");
} elsif ($self->Open(\*EXIFTOOL_OUTFILE, $outfile, '>')) {
$outRef = \*EXIFTOOL_OUTFILE;
@@ -4919,6 +4919,11 @@ sub InverseDateTime($$;$$)
my $fs = ($fmt =~ s/%f$// and $val =~ s/(\.\d+)\s*$//) ? $1 : '';
my ($lib, $wrn, @a);
TryLib: for ($lib=$strptimeLib; ; $lib='') {
+ # handle %s format ourself (not supported in Fedora, see forum15032)
+ if ($fmt eq '%s') {
+ $val = ConvertUnixTime($val, 1);
+ last;
+ }
if (not $lib) {
last unless $$self{OPTIONS}{StrictDate};
warn $wrn || "Install POSIX::strptime or Time::Piece for inverse date/time conversions\n";
diff --git a/perl-Image-ExifTool.spec b/perl-Image-ExifTool.spec
index 2e684eee..d22346ca 100644
--- a/perl-Image-ExifTool.spec
+++ b/perl-Image-ExifTool.spec
@@ -1,6 +1,6 @@
Summary: perl module for image data extraction
Name: perl-Image-ExifTool
-Version: 12.64
+Version: 12.65
Release: 1
License: Artistic/GPL
Group: Development/Libraries/Perl
diff --git a/pp_build_exe.args b/pp_build_exe.args
index 6175dc15..712c1918 100644
--- a/pp_build_exe.args
+++ b/pp_build_exe.args
@@ -21,10 +21,10 @@
# 10) Copy zip archive to web servers.
# 11) Update zip file version in link and text of html/index.html.
#------------------------------------------------------------------------------
--T exiftool-12.64
-#--info=FileVersion=12.6.4.0
-#--info=ProductVersion=12.6.4.0
-##"--info=Build Date=2023:06:28 11:03:40-04:00"
+-T exiftool-12.65
+#--info=FileVersion=12.6.5.0
+#--info=ProductVersion=12.6.5.0
+##"--info=Build Date=2023:08:10 12:36:19-04:00"
##"--info=Bundled Perl Version=ActivePerl 5.24.0"
##"--info=LegalCopyright=Copyright (c) 2003-2023, Phil Harvey"
##"--info=ProductName=ExifTool"
diff --git a/windows_exiftool b/windows_exiftool
index 3d051a8c..42b4c591 100755
--- a/windows_exiftool
+++ b/windows_exiftool
@@ -11,7 +11,7 @@ use strict;
use warnings;
require 5.004;
-my $version = '12.64';
+my $version = '12.65';
# add our 'lib' directory to the include list BEFORE 'use Image::ExifTool'
my $exePath;
@@ -827,11 +827,17 @@ for (;;) {
/^(-?)(a|duplicates)$/i and $mt->Options(Duplicates => ($1 ? 0 : 1)), next;
if ($a eq 'api') {
my $opt = shift;
- defined $opt or Error("Expected OPT[=VAL] argument for -api option\n"), $badCmd=1, next;
- my $val = ($opt =~ s/=(.*)//s) ? $1 : 1;
- # empty string means an undefined value unless ^= is used
- $val = undef unless $opt =~ s/\^$// or length $val;
- $mt->Options($opt => $val);
+ if (defined $opt and length $opt) {
+ my $val = ($opt =~ s/=(.*)//s) ? $1 : 1;
+ # empty string means an undefined value unless ^= is used
+ $val = undef unless $opt =~ s/\^$// or length $val;
+ $mt->Options($opt => $val);
+ } else {
+ print "Available API Options:\n";
+ my $availableOptions = Image::ExifTool::AvailableOptions();
+ printf(" %-17s - %s\n", $$_[0], $$_[2]) foreach @$availableOptions;
+ $helped = 1;
+ }
next;
}
/^arg(s|format)$/i and $argFormat = 1, next;
@@ -2871,7 +2877,7 @@ sub SetImageInfo($$$)
}
unless ($isStdout) {
$outfile = NextUnusedFilename($outfile);
- if ($et->Exists($outfile) and not $doSetFileName) {
+ if ($et->Exists($outfile, 1) and not $doSetFileName) {
Warn "Error: '${outfile}' already exists - $infile\n";
EFile($infile);
++$countBadWr;
@@ -3002,7 +3008,7 @@ sub SetImageInfo($$$)
$outfile = Image::ExifTool::GetNewFileName(defined $outfile ? $outfile : $file, $newDir);
}
$outfile = NextUnusedFilename($outfile, $infile);
- if ($et->Exists($outfile)) {
+ if ($et->Exists($outfile, 1)) {
if ($infile eq $outfile) {
undef $outfile; # not changing the file name after all
# (allow for case-insensitive filesystems)
@@ -4230,7 +4236,7 @@ sub NextUnusedFilename($;$)
}
$filename .= substr($fmt, $pos); # add rest of file name
# return now with filename unless file exists
- return $filename unless ($mt->Exists($filename) and not defined $usedFileName{$filename}) or $usedFileName{$filename};
+ return $filename unless ($mt->Exists($filename, 1) and not defined $usedFileName{$filename}) or $usedFileName{$filename};
if (defined $okfile) {
return $filename if $filename eq $okfile;
my ($fn, $ok) = (AbsPath($filename), AbsPath($okfile));
@@ -4310,7 +4316,7 @@ sub OpenOutputFile($;@)
$outfile .= $textOut;
}
my $mode = '>';
- if ($mt->Exists($outfile)) {
+ if ($mt->Exists($outfile, 1)) {
unless ($textOverwrite) {
Warn "Output file $outfile already exists for $file\n";
return ();
@@ -5598,7 +5604,7 @@ OPTIONS
produces output like this:
- -- Generated by ExifTool 12.64 --
+ -- Generated by ExifTool 12.65 --
File: a.jpg - 2003:10:31 15:44:19
(f/5.6, 1/60s, ISO 100)
File: b.jpg - 2006:05:23 11:57:38
@@ -6522,12 +6528,13 @@ OPTIONS
improve performance in multi-pass processing by reducing the overhead
required to load exiftool for each invocation.
- -api *OPT[[^]=[VAL]]*
+ -api [*OPT[[^]=[VAL]]*]
Set ExifTool API option. *OPT* is an API option name. The option
value is set to 1 if *=VAL* is omitted. If *VAL* is omitted, the
option value is set to undef if "=" is used, or an empty string
- with "^=". See Image::ExifTool Options for a list of available API
- options. This overrides API options set via the config file.
+ with "^=". If *OPT* is not specified a list of available options is
+ returned. See Image::ExifTool Options for option details. This
+ overrides API options set via the config file.
-common_args
Specifies that all arguments following this option are common to