diff --git a/bin/Changes b/bin/Changes index fda8d33..52f69e3 100644 --- a/bin/Changes +++ b/bin/Changes @@ -7,6 +7,29 @@ RSS feed: https://exiftool.org/rss.xml Note: The most recent production release is Version 12.76. (Other versions are considered development releases, and are not uploaded to MetaCPAN.) +Mar. 27, 2024 - Version 12.81 + + - Added ability to read EXIF and XMP from EXR images + - Added ability to delete unknown trailer when writing MOV/MP4 videos + - Added ability to write a couple of Stable Diffusion PNG tags + - Added ability to write one of the Microsoft Xtra Description tags (github + #248) + - Added support for using alternate city names in reverse Geolocation + - Added support for reading timed GPS from DOD LS600W TS videos + - Added support for new version of Canon DR4 files + - Added a number of new iTunesInfo tags + - Added a new Olympus LensType + - Allow regular expressions to be used when writing Geolocate tag + - Decode a number of new Nikon tags (thanks Warren Hatch) + - Enhanced writing of Geolocate tag to also write Keys:LocationName + - Cache the results of the last reverse geolocation search to speed batch + processing when multiple files have the same search parameters + - Patched problem that could cause runtime errors with some invaid tag names + - Fixed a couple of newly added FujiFilm tags + - Fixed decoding of FujiFilm AFAreaZoneSize + - API Changes: + - Added GeolocAltNames option + Mar. 19, 2024 - Version 12.80 - Added GeolocationFeatureCode tag @@ -19,6 +42,8 @@ Mar. 19, 2024 - Version 12.80 - Improved accuracy of Geolocation distance/bearing calculations - Changed structure of Geolocation database (now version 1.02) - Minor change to key format for user-defined Geolocation name translations + - Ignore API Geolocation option when copying tags if none of the Geolocation + tags are being copied - Fixed case/spacing of "C2PA" in some CBOR tag descriptions - Fixed bug extracting binary data from EXR files - API Changes: @@ -29,6 +54,7 @@ Mar. 15, 2024 - Version 12.79 - Improvements to new Geolocation feature: - Added reverse Geolocation ability (obtain GPS coordinates from city name), with support for regular expressions + - Added ability to geolocate while geotagging - Added -listgeo option to list the Geolocation database - Added the ability to include user-defined cities in the Geolocation database diff --git a/bin/MANIFEST b/bin/MANIFEST index 32a3472..f429a21 100644 --- a/bin/MANIFEST +++ b/bin/MANIFEST @@ -626,6 +626,8 @@ t/Geolocation_3.out t/Geolocation_4.out t/Geolocation_5.out t/Geolocation_6.out +t/Geolocation_7.out +t/Geolocation_8.out t/Geotag.t t/Geotag_10.out t/Geotag_11.out diff --git a/bin/META.json b/bin/META.json index 29ed328..dc67c5d 100644 --- a/bin/META.json +++ b/bin/META.json @@ -50,5 +50,5 @@ } }, "release_status" : "stable", - "version" : "12.80" + "version" : "12.81" } diff --git a/bin/META.yml b/bin/META.yml index b6cdc34..5ea629f 100644 --- a/bin/META.yml +++ b/bin/META.yml @@ -31,4 +31,4 @@ recommends: Time::HiRes: 0 requires: perl: 5.004 -version: 12.80 +version: 12.81 diff --git a/bin/README b/bin/README index 4f977f2..ab8aa9d 100644 --- a/bin/README +++ b/bin/README @@ -109,8 +109,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.80.tar.gz | tar -xf - - cd Image-ExifTool-12.80 + gzip -dc Image-ExifTool-12.81.tar.gz | tar -xf - + cd Image-ExifTool-12.81 ./exiftool t/images/ExifTool.jpg Note: These commands extract meta information from one of the test images. @@ -238,6 +238,7 @@ information: html/ExifTool.html - API documentation html/TagNames/index.html - Tag name documentation html/geotag.html - Geotag feature + html/geolocation.html - Geolocation feature html/faq.html - Frequently asked questions html/filename.html - Renaming/moving files html/metafiles.html - Working with metadata sidecar files diff --git a/bin/exiftool b/bin/exiftool index 4ce4eeb..7ca001f 100755 --- a/bin/exiftool +++ b/bin/exiftool @@ -11,7 +11,7 @@ use strict; use warnings; require 5.004; -my $version = '12.80'; +my $version = '12.81'; # add our 'lib' directory to the include list BEFORE 'use Image::ExifTool' my $exePath; @@ -723,17 +723,22 @@ for (;;) { require Image::ExifTool::Geolocation; my ($i, $entry); print "Geolocation database:\n" unless $quiet; - print "City,Region,Subregion,CountryCode,Country,TimeZone,FeatureCode,Population,Latitude,Longitude\n"; + my $isAlt = $mt->Options('GeolocAltNames') ? ',AltNames' : ''; + $isAlt = '' if $isAlt and not Image::ExifTool::Geolocation::ReadAltNames(); + print "City,Region,Subregion,CountryCode,Country,TimeZone,FeatureCode,Population,Latitude,Longitude$isAlt\n"; Image::ExifTool::Geolocation::SortDatabase('City') if $sortOpt; my $minPop = $mt->Options('GeolocMinPop'); my $feature = $mt->Options('GeolocFeature') || ''; my $neg = $feature =~ s/^-//; my %fcodes = map { lc($_) => 1 } split /\s*,\s*/, $feature; + my @isUTF8 = (0,1,2,4); # items that need converting from UTF8 + push @isUTF8, 10 if $isAlt; for ($i=0; ; ++$i) { - my @entry = Image::ExifTool::Geolocation::GetEntry($i,$langOpt) or last; + my @entry = Image::ExifTool::Geolocation::GetEntry($i,$langOpt,1) or last; + push @entry, Image::ExifTool::Geolocation::GetAltNames($i,1) if $isAlt; next if $minPop and $entry[7] < $minPop; next if %fcodes and $neg ? $fcodes{lc $entry[6]} : not $fcodes{lc $entry[6]}; - $_ = defined $_ ? $mt->Decode($_, 'UTF8') : '' foreach @entry[0,1,2,4]; + $_ = defined $_ ? $mt->Decode($_, 'UTF8') : '' foreach @entry[@isUTF8]; print join(',', @entry), "\n"; } } else { # 'g(\d*)' @@ -1365,11 +1370,11 @@ for (;;) { $useMWG = 1; } elsif (/^([-\w]+:)*(filename|directory|testname)\b/i) { $doSetFileName = 1; - } elsif (/^([-\w]+:)*(geotag|geotime|geosync)\b/i) { + } elsif (/^([-\w]+:)*(geotag|geotime|geosync|geolocate)\b/i) { if (lc $2 eq 'geotime') { $addGeotime = ''; } else { - # add geotag/geosync commands first + # add geotag/geosync/geolocate commands first unshift @newValues, pop @newValues; if (lc $2 eq 'geotag' and (not defined $addGeotime or $addGeotime) and length $val) { $addGeotime = ($1 || '') . 'Geotime option may be combined with B<-listf>, B<-listr> or B<-listwf> to add file descriptions to the list. The B<-lang> option may be combined with B<-listx> to output descriptions in a single language, and the B<-sort> and/or B<-lang> options may be combined -with B<-listgeo>. Also, the API GeolocMinPop and GeolocFeature options -apply to the B<-listgeo> output. Here are some examples: +with B<-listgeo>. Also, the API GeolocMinPop, GeolocFeature and +GeolocAltNames options apply to the B<-listgeo> output. Here are some +examples: -list # list all tag names -list -EXIF:All # list all EXIF tags @@ -6538,6 +6544,10 @@ examples. Also see "geotag.html" in the full ExifTool distribution and the L for more details and for information about geotag configuration options. +The API Geolocation option may be set to the value "geotag" to also write +the name, province/state and country of the nearest city while geotagging. +See L for details. + =item B<-globalTimeShift> I Shift all formatted date/time values by the specified amount when reading. @@ -7435,6 +7445,12 @@ Geotag an image (C) from position information in a GPS track log DateTimeOriginal is used for geotagging. Local system time is assumed unless DateTimeOriginal contains a timezone. +=item exiftool -geotag track.log -geolocate=geotag a.jpg + +Geotag an image and also write geolocation information of the nearest city +(city name, state/province and country). Read here for more details about +the Geolocation feature: L + =item exiftool -geotag t.log -geotime='2009:04:02 13:41:12-05:00' a.jpg Geotag an image with the GPS position for a specific time. diff --git a/bin/lib/Image/ExifTool.pm b/bin/lib/Image/ExifTool.pm index 60feee8..71b6fea 100644 --- a/bin/lib/Image/ExifTool.pm +++ b/bin/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.80'; +$VERSION = '12.81'; $RELEASE = ''; @ISA = qw(Exporter); %EXPORT_TAGS = ( @@ -921,7 +921,7 @@ $testLen = 1024; # number of bytes to read when testing for magic number DICOM=> '(.{128}DICM|\0[\x02\x04\x06\x08]\0[\0-\x20]|[\x02\x04\x06\x08]\0[\0-\x20]\0)', DOCX => 'PK\x03\x04', DPX => '(SDPX|XPDS)', - DR4 => 'IIII\x04\0\x04\0', + DR4 => 'IIII[\x04|\x05]\0\x04\0', DSS => '(\x02dss|\x03ds2)', DV => '\x1f\x07\0[\x3f\xbf]', # (not tested if extension recognized) DWF => '\(DWF V\d', @@ -1103,6 +1103,7 @@ my @availableOptions = ( [ 'FilterW', undef, 'input filter when writing tag values' ], [ 'FixBase', undef, 'fix maker notes base offsets' ], [ 'Geolocation', undef, 'generate geolocation tags' ], + [ 'GeolocAltNames', 1, 'search alternate city names if available' ], [ 'GeolocFeature', undef, 'regular expression of geolocation features to match' ], [ 'GeolocMinPop', undef, 'minimum geolocation population' ], [ 'GeolocMaxDist', undef, 'maximum geolocation distance' ], @@ -1691,7 +1692,7 @@ my %systemTagsNotes = ( Flags => ['Writable' ,'Protected', 'Binary'], Permanent => 0, # (this is 1 by default for MakerNotes tags) WriteCheck => q{ - return undef if $val =~ /^IIII\x04\0\x04\0/; + return undef if $val =~ /^IIII[\x04|\x05]\0\x04\0/; return 'Invalid CanonDR4 data'; }, }, @@ -1988,27 +1989,34 @@ my %systemTagsNotes = ( }, ValueConvInv => q{ require Image::ExifTool::Geolocation; - return $val if lc($val) eq 'geotag'; + # write this tag later if geotagging + return $val if $val =~ /\bgeotag\b/i; + $val .= ',both'; my $opts = $$self{OPTIONS}; - my $geo = Image::ExifTool::Geolocation::Geolocate($self->Encode($val,'UTF8'), - $$opts{GeolocMinPop}, $$opts{GeolocMaxDist}, $$opts{Lang}, undef, $$opts{GeolocFeature}); - return '' unless $geo; - if ($$geo[12] and $self->Warn('Multiple matching cities found',2)) { + my ($n, $i, $km, $be) = Image::ExifTool::Geolocation::Geolocate($self->Encode($val,'UTF8'), $opts); + return '' unless $n; + if ($n > 1 and $self->Warn('Multiple matching cities found',2)) { warn "$$self{VALUE}{Warning}\n"; return ''; } - my @tags = $self->GetGeolocateTags($wantGroup, defined $$geo[10] ? 0 : 1); + my @geo = Image::ExifTool::Geolocation::GetEntry($i, $$opts{Lang}); + my @tags = $self->GetGeolocateTags($wantGroup, $km ? 0 : 1); my %geoNum = ( City => 0, Province => 1, State => 1, Code => 3, Country => 4, Coordinates => 89, Latitude => 8, Longitude => 9 ); my ($tag, $value); foreach $tag (@tags) { if ($tag =~ /GPS(Coordinates|Latitude|Longitude)?/) { - $value = $geoNum{$1} == 89 ? "$$geo[8],$$geo[9]" : $$geo[$geoNum{$1}]; + $value = $geoNum{$1} == 89 ? "$geo[8],$geo[9]" : $geo[$geoNum{$1}]; } elsif ($tag =~ /(Code)/ or $tag =~ /(City|Province|State|Country)/) { - $value = $$geo[$geoNum{$1}]; + $value = $geo[$geoNum{$1}]; next unless defined $value; $value = $self->Decode($value,'UTF8'); $value .= ' ' if $tag eq 'iptc:Country-PrimaryLocationCode'; # (IPTC requires 3-char code) + } elsif ($tag =~ /LocationName/) { + $value = $geo[0] or next; + $value .= ', ' . $geo[1] if $geo[1]; + $value .= ', ' . $geo[4] if $geo[4]; + $value = $self->Decode($value, 'UTF8'); } else { next; # (shouldn't happen) } @@ -2017,13 +2025,15 @@ my %systemTagsNotes = ( return ''; }, PrintConvInv => q{ - return $val unless $val =~ /^([-+]?\d.*?[NS]?), ?([-+]?\d.*?[EW]?)$/ or - $val =~ /^\s*(-?\d+(?:\.\d+)?)\s*(-?\d+(?:\.\d+)?)\s*$/; - my ($lat, $lon) = ($1, $2); - require Image::ExifTool::GPS; - $lat = Image::ExifTool::GPS::ToDegrees($lat, 1, "lat"); - $lon = Image::ExifTool::GPS::ToDegrees($lon, 1, "lon"); - return "$lat, $lon"; + my @args = split /\s*,\s*/, $val; + my $lat = 1; + foreach (@args) { + next unless /^[-+]?\d/; + require Image::ExifTool::GPS; + $_ = Image::ExifTool::GPS::ToDegrees($_, 1, $lat ? 'lat' : 'lon'); + $lat ^= 1; + } + return join(',', @args); }, }, GeolocationBearing => { %geoInfo, @@ -4338,25 +4348,27 @@ sub DoneExtract($) } local $SIG{'__WARN__'} = \&SetWarning; undef $evalWarning; - my $geo = Image::ExifTool::Geolocation::Geolocate($arg, $$opts{GeolocMinPop}, - $$opts{GeolocMaxDist}, $$opts{Lang}, $$opts{Duplicates}, - $$opts{GeolocFeature}); - # ($$geo[0] will be an ARRAY ref if multiple matches were found and the Duplicates option is set) - if ($geo and (ref $$geo[0] or not $$geo[12] or not $self->Warn('Multiple Geolocation cities are possible',2))) { - my $geoList = ref $$geo[0] ? $geo : [ $geo ]; # make a list if not done alreaday - foreach $geo (@$geoList) { - $self->FoundTag(GeolocationCity => $$geo[0]); - $self->FoundTag(GeolocationRegion => $$geo[1]) if $$geo[1]; - $self->FoundTag(GeolocationSubregion => $$geo[2]) if $$geo[2]; - $self->FoundTag(GeolocationCountryCode => $$geo[3]); - $self->FoundTag(GeolocationCountry => $$geo[4]) if $$geo[4]; - $self->FoundTag(GeolocationTimeZone => $$geo[5]) if $$geo[5]; - $self->FoundTag(GeolocationFeatureCode => $$geo[6]); - $self->FoundTag(GeolocationPopulation => $$geo[7]); - $self->FoundTag(GeolocationPosition => "$$geo[8] $$geo[9]"); - $self->FoundTag(GeolocationDistance => $$geo[10]) if defined $$geo[10]; - $self->FoundTag(GeolocationBearing => $$geo[11]) if defined $$geo[11]; - $self->FoundTag(GeolocationWarning => "Search matched $$geo[12] cities") if $$geo[12] and $geo eq $$geoList[0]; + $$opts{GeolocMulti} = $$opts{Duplicates}; + my ($n, $i, $km, $be) = Image::ExifTool::Geolocation::Geolocate($arg, $opts); + delete $$opts{GeolocMulti}; + # ($i will be an ARRAY ref if multiple matches were found and the Duplicates option is set) + if ($n and (ref $i or $n < 2 or not $self->Warn('Multiple Geolocation cities are possible',2))) { + my $list = ref $i ? $i : [ $i ]; # make a list if not done alreaday + foreach $i (@$list) { + my @geo = Image::ExifTool::Geolocation::GetEntry($i, $$opts{Lang}); + $self->FoundTag(GeolocationCity => $geo[0]); + $self->FoundTag(GeolocationRegion => $geo[1]) if $geo[1]; + $self->FoundTag(GeolocationSubregion => $geo[2]) if $geo[2]; + $self->FoundTag(GeolocationCountryCode => $geo[3]); + $self->FoundTag(GeolocationCountry => $geo[4]) if $geo[4]; + $self->FoundTag(GeolocationTimeZone => $geo[5]) if $geo[5]; + $self->FoundTag(GeolocationFeatureCode => $geo[6]); + $self->FoundTag(GeolocationPopulation => $geo[7]); + $self->FoundTag(GeolocationPosition => "$geo[8] $geo[9]"); + next if $i != $$list[0]; + $self->FoundTag(GeolocationDistance => $km) if defined $km; + $self->FoundTag(GeolocationBearing => $be) if defined $be; + $self->FoundTag(GeolocationWarning => "Search matched $n cities") if $n > 1; } } elsif ($evalWarning) { $self->Warn(CleanWarning()); @@ -5040,6 +5052,7 @@ sub SetFoundTags($) $allTag = 1; } elsif ($tag =~ /[*?]/) { # allow wildcards in tag names + $tag =~ tr/-_A-Za-z0-9*?//dc; # sterilize $tag =~ s/\*/[-\\w]*/g; $tag =~ s/\?/[-\\w]/g; $tag .= '( \\(.*)?' if $doDups or $allGrp; @@ -5047,6 +5060,7 @@ sub SetFoundTags($) next unless @matches; # don't want entry in list for wildcard tags $allTag = 1; } elsif ($doDups or defined $group) { + $tag =~ tr/-_A-Za-z0-9//dc; # sterilize # must also look for tags like "Tag (1)" # (but be sure not to match temporary ValueConv entries like "Tag #") @matches = grep(/^$tag( \(|$)/i, keys %$tagHash); diff --git a/bin/lib/Image/ExifTool.pod b/bin/lib/Image/ExifTool.pod index 2459f2e..d4def34 100644 --- a/bin/lib/Image/ExifTool.pod +++ b/bin/lib/Image/ExifTool.pod @@ -728,6 +728,12 @@ to use for the geolocation input. May also include regular expressions for more flexible matching. See L for more details. Default is undef. +=item GeolocAltNames + +Flag to search alternate Geolocation city names if available (ie. if +$Image::ExifTool::Geolocation::altDir has been set). Set to 0 to disable +use of the alternate names. Default is 1. + =item GeolocFeature Comma-separated list of feature codes to include in city search, or exclude diff --git a/bin/lib/Image/ExifTool/CanonVRD.pm b/bin/lib/Image/ExifTool/CanonVRD.pm index 9b5aedc..afd0b07 100644 --- a/bin/lib/Image/ExifTool/CanonVRD.pm +++ b/bin/lib/Image/ExifTool/CanonVRD.pm @@ -23,7 +23,7 @@ use vars qw($VERSION); use Image::ExifTool qw(:DataAccess :Utils); use Image::ExifTool::Canon; -$VERSION = '1.38'; +$VERSION = '1.39'; sub ProcessCanonVRD($$;$); sub WriteCanonVRD($$;$); @@ -1758,7 +1758,7 @@ sub ProcessDR4($$;$) } else { # load DR4 file into memory my $buff; - $raf->Read($buff, 8) == 8 and $buff eq "IIII\x04\0\x04\0" or return 0; + $raf->Read($buff, 8) == 8 and $buff =~ /^IIII[\x04|\x05]\0\x04\0/ or return 0; $et->SetFileType(); $raf->Seek(0, 2) or return $err = 1; $dirLen = $raf->Tell(); diff --git a/bin/lib/Image/ExifTool/FujiFilm.pm b/bin/lib/Image/ExifTool/FujiFilm.pm index 2a0c636..a452a2d 100644 --- a/bin/lib/Image/ExifTool/FujiFilm.pm +++ b/bin/lib/Image/ExifTool/FujiFilm.pm @@ -31,7 +31,7 @@ use vars qw($VERSION); use Image::ExifTool qw(:DataAccess :Utils); use Image::ExifTool::Exif; -$VERSION = '1.92'; +$VERSION = '1.93'; sub ProcessFujiDir($$$); sub ProcessFaceRec($$$); @@ -550,8 +550,9 @@ my %faceCategories = ( 3 => 'Electronic Front Curtain', #10 }, }, - 0x1051 => { Name => 'CropTopLeft', Writable => 'int32u' }, #forum15784 - 0x1052 => { Name => 'CropCenter', Writable => 'int32u' }, #forum15784 + 0x1051 => { Name => 'Cropped', Writable => 'int8u', PrintConv => { 0 => 'No', 1 => 'Yes' } }, #forum15784 + 0x1052 => { Name => 'CropTopLeft', Writable => 'int32u' }, #forum15784 + 0x1053 => { Name => 'CropSize', Writable => 'int32u' }, #forum15784 # 0x1100 - This may not work well for newer cameras (ref forum12682) 0x1100 => [{ Name => 'AutoBracketing', @@ -1033,14 +1034,19 @@ my %faceCategories = ( }, 0.5 => { Name => 'AFAreaZoneSize', - Mask => 0xf0000, + Mask => 0xff0000, PrintConv => { 0 => 'n/a', OTHER => sub { my ($val, $inv) = @_; - return "$val x $val" unless $inv; - $val =~ s/ ?x.*//; - return $val; + my ($w, $h); + if ($inv) { + my ($w, $h) = $val =~ /(\d+)/g; + return 0 unless $w and $h; + return((($h << 5) & 0xf0) | ($w & 0x0f)); + } + ($w, $h) = ($val & 0x0f, $val >> 5); + return "$w x $h"; }, }, }, diff --git a/bin/lib/Image/ExifTool/Geolocation.pm b/bin/lib/Image/ExifTool/Geolocation.pm index 3d27848..758c40b 100644 --- a/bin/lib/Image/ExifTool/Geolocation.pm +++ b/bin/lib/Image/ExifTool/Geolocation.pm @@ -1,9 +1,11 @@ #------------------------------------------------------------------------------ # File: Geolocation.pm # -# Description: Look up geolocation information based on a GPS position +# Description: Determine geolocation from GPS and visa-versa # # Revisions: 2024-03-03 - P. Harvey Created +# 2024-03-21 - PH Significant restructuring and addition of +# several new features. # # References: https://download.geonames.org/export/ # @@ -11,10 +13,17 @@ # default directory for the database file Geolocation.dat # and language directory GeoLang. # -# Based on data from geonames.org Creative Commons databases, -# reformatted as follows in the Geolocation.dat file: +# Set $Image::ExifTool::Geolocation::altDir to use a database +# of alternate city names. The file is called AltNames.dat +# with entries in the same order as Geolocation.dat. Each +# entry is a newline-separated list of alternate names +# terminated by a null byte. # -# Header: +# Databases are based on data from geonames.org with a +# Creative Commons license, reformatted as follows in the +# Geolocation.dat file: +# +# Header: # "GeolocationV.VV\tNNNN\n" (V.VV=version, NNNN=num city entries) # "# \n" # NNNN City entries: @@ -54,20 +63,24 @@ package Image::ExifTool::Geolocation; use strict; -use vars qw($VERSION $geoDir $dbInfo); +use vars qw($VERSION $geoDir $altDir $dbInfo); -$VERSION = '1.02'; +$VERSION = '1.03'; my $databaseVersion = '1.02'; +my $debug; # set to output processing time for testing + sub ReadDatabase($); sub SortDatabase($); sub AddEntry(@); -sub GetEntry($;$); +sub GetEntry($;$$); sub Geolocate($;$$$$$); my (@cityList, @countryList, @regionList, @subregionList, @timezoneList); -my (%countryNum, %regionNum, %subregionNum, %timezoneNum, %langLookup); +my (%countryNum, %regionNum, %subregionNum, %timezoneNum); # reverse lookups +my (@sortOrder, @altNames, %langLookup, $nCity); +my ($lastArgs, %lastFound, @lastByPop, @lastByLat); # cached city matches my $sortedBy = 'Latitude'; my $pi = 3.1415926536; my $earthRadius = 6371; # earth radius in km @@ -115,7 +128,7 @@ sub ReadDatabase($) { my $datfile = shift; # open geolocation database and verify header - open DATFILE, "<$datfile" or warn("Error reading $datfile\n"), return 0; + open DATFILE, "< $datfile" or warn("Error reading $datfile\n"), return 0; binmode DATFILE; my $line = ; unless ($line =~ /^Geolocation(\d+\.\d+)\t(\d+)/) { @@ -129,14 +142,17 @@ sub ReadDatabase($) close(DATFILE); return 0; } - my $ncity = $2; + $nCity = $2; my $comment = ; defined $comment and $comment =~ /(\d+)/ or close(DATFILE), return 0; - $dbInfo = "$datfile v$databaseVersion: $ncity cities with population > $1"; + $dbInfo = "$datfile v$databaseVersion: $nCity cities with population > $1"; my $isUserDefined = @Image::ExifTool::UserDefined::Geolocation; - + + undef @altNames; # reset altNames + # read city database undef @cityList; + my $i = 0; for (;;) { $line = ; last if length($line) == 6 and $line =~ /\0\0\0\0/; @@ -144,7 +160,7 @@ sub ReadDatabase($) chomp $line; push @cityList, $line; } - @cityList == $ncity or warn("Bad number of entries in Geolocation database\n"), return 0; + @cityList == $nCity or warn("Bad number of entries in Geolocation database\n"), return 0; # read countries for (;;) { $line = ; @@ -181,6 +197,44 @@ sub ReadDatabase($) return 1; } +#------------------------------------------------------------------------------ +# Read alternate-names database +# Returns: True on success +# Notes: Must be called after ReadDatabase(). Resets $altDir on exit. +sub ReadAltNames() +{ + my $success; + if ($altDir and $nCity) { + if (open ALTFILE, "< $altDir/AltNames.dat") { + binmode ALTFILE; + local $/ = "\0"; + my $i = 0; + while () { chop; $altNames[$i++] = $_; } + close ALTFILE; + if ($i == $nCity) { + $success = 1; + } else { + warn("Bad number of entries in AltNames database\n"); + undef @altNames; + } + } else { + warn "Error reading $altDir/AltNames.dat\n"; + } + undef $altDir; + } + return $success; +} + +#------------------------------------------------------------------------------ +# Clear last city matches cache +sub ClearLastMatches() +{ + undef $lastArgs; + undef %lastFound; + undef @lastByPop; + undef @lastByLat; +} + #------------------------------------------------------------------------------ # Sort database by specified field # Inputs: 0) Field name to sort (Latitude,City,Country) @@ -189,37 +243,36 @@ sub SortDatabase($) { my $field = shift; return 1 if $field eq $sortedBy; # already sorted? + undef @sortOrder; if ($field eq 'Latitude') { - @cityList = sort { $a cmp $b } @cityList; + @sortOrder = sort { $cityList[$a] cmp $cityList[$b] } 0..$#cityList; } elsif ($field eq 'City') { - @cityList = sort { substr($a,13) cmp substr($b,13) } @cityList; + @sortOrder = sort { substr($cityList[$a],13) cmp substr($cityList[$b],13) } 0..$#cityList; } elsif ($field eq 'Country') { my %lkup; - foreach (@cityList) { - my $city = substr($_,13); - my $ctry = substr($countryList[ord substr($_,5,1)], 2); + foreach (0..$#cityList) { + my $city = substr($cityList[$_],13); + my $ctry = substr($countryList[ord substr($cityList[$_],5,1)], 2); $lkup{$_} = "$ctry $city"; } - @cityList = sort { $lkup{$a} cmp $lkup{$b} } @cityList; + @sortOrder = sort { $lkup{$a} cmp $lkup{$b} } 0..$#cityList; } else { return 0; } $sortedBy = $field; + ClearLastMatches(); return 1; } #------------------------------------------------------------------------------ # Add cities to the Geolocation database -# Inputs: 0-8) city,region,subregion,country_code,country,timezone,feature_code,population,lat,lon +# Inputs: 0-8) city,region,subregion,country_code,country,timezone,feature_code,population,lat,lon,altNames # eg. AddEntry('Sinemorets','Burgas','Obshtina Tsarevo','BG','Bulgaria','Europe/Sofia','',400,42.06115,27.97833) sub AddEntry(@) { - my ($city, $region, $subregion, $cc, $country, $timezone, $fc, $pop, $lat, $lon) = @_; + my ($city, $region, $subregion, $cc, $country, $timezone, $fc, $pop, $lat, $lon, $altNames) = @_; @_ < 10 and warn("Too few arguments in $city definition (check for updated format)\n"), return; - if (@_ != 10 or length($cc) != 2) { - warn "Country code '${cc}' in UserDefined::Geolocation is not 2 characters\n"; - return; - } + length($cc) != 2 and warn("Country code '${cc}' is not 2 characters\n"), return; $fc = $featureCodes{lc $fc} || 0; chomp $lon; # (just in case it was read from file) # create reverse lookups for country/region/subregion/timezone if not done already @@ -262,17 +315,32 @@ sub AddEntry(@) $lon = int(($lon + 180) / 360 * 0x100000 + 0.5) & 0xfffff; my $hdr = pack('nCnNnCC', $lat>>4, (($lat&0x0f)<<4)|($lon&0x0f), $lon>>4, $code, $sn, $tn, $fc); push @cityList, "$hdr$city"; + # add altNames entry if provided + if ($altNames) { + chomp $altNames; # (just in case) + $altNames =~ tr/,/\n/; + # add any more arguments in case altNames were passed separately (undocumented) + foreach (11..$#_) { + chomp $_[$_]; + $altNames .= "\n$_[$_]"; + } + $altNames[$#cityList] = $altNames; + } $sortedBy = ''; + undef $lastArgs; # (faster than ClearLastArgs) } #------------------------------------------------------------------------------ # Unpack entry in database -# Inputs: 0) entry number, 1) optional language code -# Returns: 0-9) city,region,subregion,country_code,country,timezone,feature_code,pop,lat,lon -sub GetEntry($;$) +# Inputs: 0) entry number or index into sorted database, +# 1) optional language code, 2) flag to use index into sorted database +# Returns: 0-10) city,region,subregion,country_code,country,timezone, +# feature_code,pop,lat,lon,altNames +sub GetEntry($;$$) { - my ($entryNum, $lang) = @_; + my ($entryNum, $lang, $sort) = @_; return() if $entryNum > $#cityList; + $entryNum = $sortOrder[$entryNum] if $sort and @sortOrder > $entryNum; my ($lt,$f,$ln,$code,$sb,$tn,$fc) = unpack('nCnNnCC', $cityList[$entryNum]); my $city = substr($cityList[$entryNum],13); my $ctry = $countryList[$code >> 24]; @@ -325,31 +393,45 @@ sub GetEntry($;$) return($city,$rgn,$sub,$cc,$country,$timezoneList[$tn],$fc,$pop,$lt,$ln); } +#------------------------------------------------------------------------------ +# Get alternate names for specified database entry +# Inputs: 0) entry number or index into sorted database, 1) sort flag +# Returns: comma-separated list of alternate names, or empty string if no names +# Notes: ReadAltNames() must be called before this +sub GetAltNames($;$) +{ + my ($entryNum, $sort) = @_; + $entryNum = $sortOrder[$entryNum] if $sort and @sortOrder > $entryNum; + my $alt = $altNames[$entryNum] or return ''; + $alt =~ tr/\n/,/; + return $alt; +} + #------------------------------------------------------------------------------ # Look up lat,lon or city in geolocation database # Inputs: 0) "lat,lon", "city,region,country", etc, (city must be first) -# 1) optional min population, 2) optional max distance (km) -# 3) optional language code, 4) flag to return multiple cities -# 5) comma-separated list of feature codes to match (or ignore if leading "-") -# Returns: Reference to list of city information, or list of city information -# lists if returning multiple cities. -# City information list elements: -# 0) UTF8 city name (or undef if geolocation is unsuccessful), -# 1) UTF8 state, province or region (or empty), -# 2) UTF8 subregion (or empty) -# 3) country code, 4) country name, -# 5) time zone name (empty string possible), 6) feature code, 7) population, -# 8/9) approx lat/lon (or undef if geolocation is unsuccessful, -# 10) approx distance (km), 11) compass bearing to city, -# 12) non-zero if multiple matches were possible (and city with -# the largest population is returned) +# 1) options hash reference (or undef for no options) +# Options: GeolocMinPop, GeolocMaxDist, GeolocMulti, GeolocFeature, GeolocAltNames +# Returns: 0) number of matching cities (0 if no matches), +# 1) index of matching city in database, or undef if no matches, or +# reference to list of indices if multiple matches were found and +# the flag to return multiple matches was set, +# 2) approx distance (km), 3) compass bearing to city sub Geolocate($;$$$$$) { - my ($arg, $pop, $maxDist, $lang, $multi, $fcodes) = @_; - my ($city, $i, %found, @exact, %regex, @multiCity, $other, $idx); - my ($minPop, $minDistU, $minDistC, @matchParms, @matches, @coords, $fcmask, $both); + my ($arg, $opts) = @_; + my ($city, @exact, %regex, @multiCity, $other, $idx, @cargs, $useLastFound); + my ($minPop, $minDistU, $minDistC, @matchParms, @coords, $fcmask, $both); + my ($pop, $maxDist, $multi, $fcodes, $altNames, @startTime); + + $opts and ($pop, $maxDist, $multi, $fcodes, $altNames) = + @$opts{qw(GeolocMinPop GeolocMaxDist GeolocMulti GeolocFeature GeolocAltNames)}; - @cityList or warn('No Geolocation database'), return(); + if ($debug) { + require Time::HiRes; + @startTime = Time::HiRes::gettimeofday(); + } + @cityList or warn('No Geolocation database'), return 0; # make population code for comparing with 2 bytes at offset 6 in database if ($pop) { $pop = sprintf('%.1e', $pop); @@ -376,23 +458,28 @@ sub Geolocate($;$$$$$) if (m{^(-)?(\w{2})?/(.*)/(i?)$}) { my $re = $4 ? qr/$3/im : qr/$3/m; next if not defined($idx = $ri{$2}); + push @cargs, $_; $other = 1 if $idx < 5; $idx += 10 if $1; # add 10 for negative matches + $regex{$idx} or $regex{$idx} = [ ]; push @{$regex{$idx}}, $re; $city = '' unless defined $city; } elsif (/^[-+]?\d+(\.\d+)?$/) { # coordinate format push @coords, $_ if @coords < 2; - } elsif (lc eq 'both') { + } elsif (lc $_ eq 'both') { $both = 1; - } elsif ($city) { - push @exact, lc $_; - } else { - $city = lc $_; + } elsif ($_) { + push @cargs, $_; + if ($city) { + push @exact, lc $_; + } else { + $city = lc $_; + } } } unless (defined $city or @coords == 2) { warn("Insufficient information to determine geolocation\n"); - return(); + return 0; } # sort database by logitude if finding entry based on coordinates SortDatabase('Latitude') if @coords == 2 and ($both or not defined $city); @@ -400,9 +487,26 @@ sub Geolocate($;$$$$$) # perform reverse Geolocation lookup to determine GPS based on city, country, etc. # while (defined $city and (@coords != 2 or $both)) { -Entry: for ($i=0; $i<@cityList; ++$i) { + my $cargs = join(',', @cargs, $pop||'', $maxDist||'', $fcodes||''); + my $i = 0; + if ($lastArgs and $lastArgs eq $cargs) { + $i = @cityList; # bypass search + } else { + ClearLastMatches(); + $lastArgs = $cargs; + } + # read alternate names database if an exact city match is specified + if ($altNames) { + ReadAltNames() if $city and $altDir; + $altNames = \@altNames; + } else { + $altNames = [ ]; # (don't search alt names) + } +Entry: for (; $i<@cityList; ++$i) { my $cty = substr($cityList[$i],13); - next if $city and $city ne lc $cty; # test exact city name first + if ($city and $city ne lc $cty) { # test exact city name first + next unless $$altNames[$i] and $$altNames[$i] =~ /^$city$/im; + } # test with city-specific regexes if ($regex{8}) { $cty =~ $_ or next Entry foreach @{$regex{8}} } if ($regex{18}) { $cty !~ $_ or next Entry foreach @{$regex{18}} } @@ -430,23 +534,24 @@ Entry: for ($i=0; $i<@cityList; ++$i) { # test feature code and population next if $fcmask and not $fcmask & (1 << (ord(substr($cityList[$i],12,1)) & 0x0f)); my $pc = substr($cityList[$i],6,2); - $found{$i} = $pc if not defined $minPop or $pc ge $minPop; + if (not defined $minPop or $pc ge $minPop) { + $lastFound{$i} = $pc; + push @lastByLat, $i if @coords == 2; + } } - if (%found) { - @matches = keys %found; - @coords == 2 and @matches = sort({ $a <=> $b } @matches), last; # continue to use coords - scalar(keys %found) > 200 and warn("Too many matching cities\n"), return(); - @matches = sort { $found{$b} cmp $found{$a} or $cityList[$a] cmp $cityList[$b] } @matches if @matches > 1; - foreach (@matches) { - my @cityInfo = GetEntry($_, $lang); - $cityInfo[12] = @matches if @matches > 1; - return \@cityInfo unless @matches > 1 and $multi; - push @multiCity, \@cityInfo; + @startTime and printf("= Processing time: %.3f sec\n", Time::HiRes::tv_interval(\@startTime)); + if (%lastFound) { + @coords == 2 and $useLastFound = 1, last; # continue to use coords with last city matches + scalar(keys %lastFound) > 200 and warn("Too many matching cities\n"), return 0; + unless (@lastByPop) { + @lastByPop = sort { $lastFound{$b} cmp $lastFound{$a} or $cityList[$a] cmp $cityList[$b] } keys %lastFound; } - return \@multiCity; + my $n = scalar @lastByPop; + return($n, [ @lastByPop ]) if $n > 1 and $multi; + return($n, $lastByPop[0]); } warn "No such city in Geolocation database\n"; - return(); + return 0; } # # determine Geolocation based on GPS coordinates @@ -465,12 +570,14 @@ Entry: for ($i=0; $i<@cityList; ++$i) { $lon = int(($lon + 180) / 360 * 0x100000 + 0.5) & 0xfffff; $lat or $lat = $coords[0] < 0 ? 1 : 0xfffff; # (zero latitude is a problem for our calculations) my $coord = pack('nCn',$lat>>4,(($lat&0x0f)<<4)|($lon&0x0f),$lon>>4);; + # start from cached city matches if also using city information + my $numEntries = @lastByLat || @cityList; # binary search to find closest longitude - my $numEntries = @matches || @cityList; my ($n0, $n1) = (0, $numEntries - 1); + my $sorted = @lastByLat ? \@lastByLat : (@sortOrder ? \@sortOrder : undef); while ($n1 - $n0 > 1) { my $n = int(($n0 + $n1) / 2); - if ($coord lt $cityList[@matches ? $matches[$n] : $n]) { + if ($coord lt $cityList[$sorted ? $$sorted[$n] : $n]) { $n1 = $n; } else { $n0 = $n; @@ -485,15 +592,15 @@ Entry: for ($i=0; $i<@cityList; ++$i) { last if $inc == 1; ($inc, $end, $n) = (1, $numEntries, $n1); } - my $entryNum = @matches ? $matches[$n] : $n; + my $i = $sorted ? $$sorted[$n] : $n; # get city latitude/longitude - my ($lt,$f,$ln) = unpack('nCn', $cityList[$entryNum]); + my ($lt,$f,$ln) = unpack('nCn', $cityList[$i]); $lt = ($lt << 4) | ($f >> 4); # searched far enough if latitude alone is further than best distance abs($lt - $lat) > $minDistC and $n = $end - $inc, next; # ignore if population is below threshold - next if defined $minPop and $minPop ge substr($cityList[$entryNum],6,2); - next if $fcmask and not $fcmask & (1 << (ord(substr($cityList[$entryNum],12,1)) & 0x0f)); + next if defined $minPop and $minPop ge substr($cityList[$i],6,2); + next if $fcmask and not $fcmask & (1 << (ord(substr($cityList[$i],12,1)) & 0x0f)); $ln = ($ln << 4) | ($f & 0x0f); # calculate great circle distance to this city on unit sphere my ($p1, $t1) = ($lt*$pi/0x100000 - $pi/2, $ln*$pi/0x080000 - $pi); @@ -503,20 +610,18 @@ Entry: for ($i=0; $i<@cityList; ++$i) { next if $distU > $minDistU; $minDistU = $distU; $minDistC = $minDistU * 0x200000 / $pi; - @matchParms = ($entryNum, $p1, $t1, $distU); + @matchParms = ($i, $p1, $t1, $distU); } - @matchParms or warn("No suitable location in Geolocation database\n"), return(); + @matchParms or warn("No suitable location in Geolocation database\n"), return 0; # calculate distance in km and bearing to matching city - my ($en, $p1, $t1, $distU) = @matchParms; + my ($ii, $p1, $t1, $distU) = @matchParms; my $km = sprintf('%.2f', 2 * $earthRadius * $distU); my $be = atan2(sin($t1-$t0)*cos($p1-$p0), $cp0*sin($p1)-sin($p0)*cos($p1)*cos($t1-$t0)); $be = int($be * 180 / $pi + 360.5) % 360; # convert from radians to integer degrees - # unpack return values from database entry - my @cityInfo = GetEntry($en, $lang); - @cityInfo[10,11] = ($km, $be); # add distance and heading - return \@cityInfo; + @startTime and printf("- Processing time: %.3f sec\n", Time::HiRes::tv_interval(\@startTime)); + return(1, $ii, $km, $be) } 1; #end @@ -525,11 +630,13 @@ __END__ =head1 NAME -Image::ExifTool::Geolocation - Look up geolocation based on GPS position +Image::ExifTool::Geolocation - Determine geolocation from GPS and visa-versa =head1 SYNOPSIS -This module is used by the Image::ExifTool Geolocation feature. +Look up geolocation information (city, region, subregion, country, etc) +based on input GPS coordinates, or determine GPS coordinates based on city +name, etc. =head1 DESCRIPTION @@ -562,6 +669,29 @@ True on success. =back +=head2 ReadAltNames + +Load the alternate names database. Before calling this method the $altDir +package variable must be set to a directory containing the AltNames.dat +database that matches the current Geolocation.dat. This method is called +automatically by L if $altDir is set and the GeolocAltNames +option is used and an input city name is provided. + + Image::ExifTool::Geolocation::ReadAltNames(); + +=over 4 + +=item Inputs: + +(none) + +=item Return Value: + +True on success. Resets the value of $altDir to prevent further attempts at +re-loading the same database. + +=back + =head2 SortDatabase Sort database in specified order. @@ -585,8 +715,8 @@ Sort database in specified order. Add entry to Geolocation database. Image::ExifTool::Geolocation::AddEntry($city, $region, - $countryCode, $country, $timezone, $featureCode - $population, $lat, $lon); + $subregion, $countryCode, $country, $timezone, + $featureCode, $population, $lat, $lon, $altNames); =over 4 @@ -614,23 +744,28 @@ database, then the database entry is updated with the new country name. 9) GPS longitude +10) Optional comma-separated list of alternate names for the city + =back =head2 GetEntry Get entry from Geolocation database. - my @vals = Image::ExifTool::Geolocation::GetEntry($num,$lang); + my @vals = Image::ExifTool::Geolocation::GetEntry($num,$lang,$sort); =over 4 =item Inputs: -0) Entry number in database +0) Entry number in database, or index into sorted database 1) Optional language code -=item Return Values: +2) Optional flag to treat first argument as an index into the sorted +database + +item Return Values: 0) City name, or undef if the entry didn't exist @@ -652,11 +787,31 @@ Get entry from Geolocation database. 9) GPS longitude +=back + +=head2 GetAltNames + +Get alternate names for specified city. + + my $str = Image::ExifTool::Geolocation::GetAltNames($num,$sort); + +=over 4 + +=item Inputs: + +0) Entry number in database or index into the sorted database + +1) Optional flag to treat first argument as an index into the sorted +database + +=item Return value: + +Comma-separated string of alternate names for this city. + =item Notes: -The alternate-language feature of this method (and of L) -requires the installation of optional GeoLang modules. See -L for more information. +Must set the $altDir package variable and call L before +calling this routine. =back @@ -664,8 +819,7 @@ L for more information. Return geolocation information for specified GPS coordinates or city name. - my @cityInfo = - Image::ExifTool::Geolocation::Geolocate($arg,$pop,$dist,$lang,$multi,$codes); + my @rtnInfo = Image::ExifTool::Geolocation::Geolocate($arg,$opts); =over 4 @@ -680,54 +834,67 @@ expressions in C format are also allowed, optionally prefixed by Subregion, CountryCode or Country name. See L for details. -1) Minimum city population (cities smaller than this are ignored) - -2) Maximum distance to city (farther cities are not considered) - -3) Language code +1) Optional reference to hash of options: -4) Flag to return multiple cities if there is more than one match. In this -case the return value is a list of city information lists. + GeolocMinPop - minimum population of cities to consider in search -5) Comma-separated list of feature codes to include in search, or to exclude -if the list starts with a dash (-). + GeolocMaxDist - maximum distance (km) to search for cities when an input + GPS position is used -=item Return Value: + GeolocMulti - flag to return multiple cities if there is more than one + match. In this case the return value is a list of city + information lists. -Reference to list of information about the matching city. If multiple -matches were found, the city with the highest population is returned unless -the flag is set to allow multiple cities to be returned, in which case all -cities are turned as a list of city lists in order of decreasing population. + GeolocFeature - comma-separated list of feature codes to include in + search, or exclude if the list starts with a dash (-) -The city information list contains the following entries: + GeolocAltNames - flag to search alternate names database if available + for matching city name (see ALTERNATE DATABASES below) -0) Name of matching city (UTF8), or undef if no match +=item Return Value: -1) Region, state or province name (UTF8), or "" if no region +0) Number of matching entries, or 0 if no matches -2) Subregion name (UTF8), or "" if no region +1) Entry number for matching city in database, or undef if no matches, or a +reference to a list of entry numbers of matching cities if multiple matches +were found and the flag was set to return multiple matches -3) Country code +2) Distance to closest city in km if "lat,lon" specified -4) Country name (UTF8) +3) Compass bearing for direction to closest city if "lat,lon" specified -5) Standard time zone identifier name - -6) Feature code +=back -7) City population rounded to 2 significant figures +=head1 ALTERNATE DATABASES -8) Approximate city latitude (signed degrees) +A different version of the cities database may be specified setting the +package $geoDir variable before loading this module. This directory should +contain the Geolocation.dat file, and optionally a GeoLang directory for the +language translations. The $geoDir variable may be set to an empty string +to disable loading of a database. -9) Approximate city longitude +A database of alternate city names may be loaded by setting the package +$altDir variable. This directory should contain the AltNames.dat database +that matches the version of Geolocation.dat being used. When searching for +a city by name, the alternate-names database is checked to provide +additional possibilities for matches. -10) Distance to city in km if "lat,lon" specified +=head1 ADDING USER-DEFINED DATABASE ENTRIES -11) Compass bearing for direction to city if "lat,lon" specified +User-defined entries may be created by defining them using the following +technique before the Geolocation module is loaded. -12) Flag set if multiple matches were found + @Image::ExifTool::UserDefined::Geolocation = ( + # city, region, subregion, country code, country, timezone, + ['Sinemorets','burgas','Obshtina Tsarevo','BG','','Europe/Sofia', + # feature code, population, lat, lon + '',400,42.06115,27.97833], + ); -=back +Similarly, user-defined language translations may be defined, and will +override any existing translations. Translations for the default 'en' +language may also be specified. See +L for more information. =head1 USING A CUSTOM DATABASE @@ -737,24 +904,17 @@ the input arguments of the AddEntry method. $Image::ExifTool::Geolocation::geoDir = ''; require Image::ExifTool::Geolocation; - open DFILE, "<$filename"; + open DFILE, "< $filename"; Image::ExifTool::Geolocation::AddEntry(split /,/) foreach ; close DFILE; -=head1 CUSTOM LANGUAGE TRANSLATIONS - -User-defined language translations may be added by defining -%Image::ExifTool::Geolocation::geoLang before calling GetEntry() or -Geolocate(). See L for -details. - =head1 AUTHOR Copyright 2003-2024, Phil Harvey (philharvey66 at gmail.com) This library is free software; you can redistribute it and/or modify it -under the same terms as Perl itself. Geolocation.dat is based on data -from geonames.org with a Creative Commons license. +under the same terms as Perl itself. The associated database files are +based on data from geonames.org with a Creative Commons license. =head1 REFERENCES diff --git a/bin/lib/Image/ExifTool/Geotag.pm b/bin/lib/Image/ExifTool/Geotag.pm index 9a76dd8..aa1bd67 100644 --- a/bin/lib/Image/ExifTool/Geotag.pm +++ b/bin/lib/Image/ExifTool/Geotag.pm @@ -29,7 +29,7 @@ use vars qw($VERSION); use Image::ExifTool qw(:Public); use Image::ExifTool::GPS; -$VERSION = '1.74'; +$VERSION = '1.75'; sub JITTER() { return 2 } # maximum time jitter @@ -1221,9 +1221,14 @@ Category: foreach $category (qw{pos track alt orient atemp}) { # also Geolocate if specified my $nvHash; my $geoloc = $et->GetNewValue('Geolocate', \$nvHash); - if ($geoloc and lc($geoloc) eq 'geotag') { - $geoloc = ($$nvHash{WantGroup} ? "$$nvHash{WantGroup}:" : '') . 'Geolocate'; - $et->SetNewValue($geoloc => "$$fix{lat},$$fix{lon}"); + if ($geoloc and $geoloc =~ /\bgeotag\b/i) { + my $tag = ($$nvHash{WantGroup} ? "$$nvHash{WantGroup}:" : '') . 'Geolocate'; + # pass along any regular expressions to qualify geolocation search + my $parms = join ',', grep m(/), split /\s*,\s*/, $geoloc; + $parms and $parms = ",$parms,both"; + $et->SetNewValue($tag => "$$fix{lat},$$fix{lon}$parms"); + # (the Geolocate tag will be restored to its original value + # by RestoreNewValues before the next file in batch processing) } return $err if $qt; # all done if writing to QuickTime only # (capture error messages by calling SetNewValue in list context) diff --git a/bin/lib/Image/ExifTool/M2TS.pm b/bin/lib/Image/ExifTool/M2TS.pm index e1ed7f6..6b769da 100644 --- a/bin/lib/Image/ExifTool/M2TS.pm +++ b/bin/lib/Image/ExifTool/M2TS.pm @@ -32,7 +32,7 @@ use strict; use vars qw($VERSION); use Image::ExifTool qw(:DataAccess :Utils); -$VERSION = '1.24'; +$VERSION = '1.25'; # program map table "stream_type" lookup (ref 6/1/9) my %streamType = ( @@ -379,7 +379,7 @@ sub ParsePID($$$$$) $et->HandleTag($tagTbl, Accelerometer => "@acc"); } SetByteOrder('MM'); - $$et{HasINNOV} = 1; # (necessary to skip over empty/unknown INNOV records) + $$et{FoundGoodGPS} = 1; # (necessary to skip over empty/unknown INNOV records) $more = 1; } elsif ($$dataPt =~ /^\$(GPSINFO|GSNRINFO),/) { # $GPSINFO,0x0004,2021.08.09 13:27:36,2341.54561,12031.70135,8.0,51,153,0,0,\x0d @@ -481,7 +481,35 @@ sub ParsePID($$$$$) $et->HandleTag($tagTbl, GPSTrackRef => 'T'); SetByteOrder('MM'); $more = 1; - } elsif ($$et{HasINNOV}) { + } elsif (length($$dataPt) >= 64 and substr($$dataPt, 32, 2) eq '$S') { + # DOD_LS600W.TS + my $tagTbl = GetTagTable('Image::ExifTool::QuickTime::Stream'); + # find the earliest sample time in the cyclical list + my ($n, $last) = (32, "\0"); + for (my $i=32; $i length($$dataPt)-32; + last unless substr($$dataPt, $n, 2) eq '$S'; + my @a = unpack("x${n}nnnnCCCCnCNNC", $$dataPt); + $a[8] /= 10; # 1/10 sec + $a[2] += (36000 - 65536) if $a[2] & 0x8000; # convert signed integer into range 0-36000 + $$et{DOC_NUM} = ++$$et{DOC_COUNT}; + $et->HandleTag($tagTbl, GPSDateTime => sprintf('%.4d:%.2d:%.2d %.2d:%.2d:%04.1fZ', @a[3..8])); + $et->HandleTag($tagTbl, GPSLatitude => $a[10] * 1e-7); + $et->HandleTag($tagTbl, GPSLongitude => $a[11] * 1e-7); + $et->HandleTag($tagTbl, GPSSpeed => $a[1] * 0.036); # convert from metres per 100 s + $et->HandleTag($tagTbl, GPSTrack => $a[2] / 100); + } + # Note: 10 bytes after last GPS record look like a single 3-axis accelerometer reading: + # eg. fd ff 00 00 ff ff 00 00 01 00 + $$et{FoundGoodGPS} = 1; # so we skip over unrecognized packets + $more = 1; + } elsif ($$et{FoundGoodGPS}) { $more = 1; } delete $$et{DOC_NUM}; @@ -538,7 +566,7 @@ sub ProcessM2TS($$) my %needPID = ( 0 => 1 ); # lookup for stream PID's that we still need to parse # PID's that may contain GPS info my %gpsPID = ( - 0x0300 => 1, # Novatek INNOVV + 0x0300 => 1, # Novatek INNOVV, DOD_LS600W 0x01e4 => 1, # vsys a6l dashcam 0x0e1b => 1, # Jomise T860S-GM dashcam ); diff --git a/bin/lib/Image/ExifTool/MakerNotes.pm b/bin/lib/Image/ExifTool/MakerNotes.pm index 6f975ba..317c739 100644 --- a/bin/lib/Image/ExifTool/MakerNotes.pm +++ b/bin/lib/Image/ExifTool/MakerNotes.pm @@ -21,7 +21,7 @@ sub ProcessKodakPatch($$$); sub WriteUnknownOrPreview($$$); sub FixLeicaBase($$;$); -$VERSION = '2.15'; +$VERSION = '2.16'; my $debug; # set to 1 to enable debugging code @@ -195,7 +195,7 @@ my $debug; # set to 1 to enable debugging code }, { Name => 'MakerNoteHP4', # PhotoSmart M627 - Condition => '$$valPt =~ /^IIII\x04\0/', + Condition => '$$valPt =~ /^IIII[\x04|\x05]\0/', NotIFD => 1, SubDirectory => { TagTable => 'Image::ExifTool::HP::Type4', diff --git a/bin/lib/Image/ExifTool/Microsoft.pm b/bin/lib/Image/ExifTool/Microsoft.pm index 343ef9c..417caf3 100644 --- a/bin/lib/Image/ExifTool/Microsoft.pm +++ b/bin/lib/Image/ExifTool/Microsoft.pm @@ -245,7 +245,7 @@ my %sRegions = ( Copyright => { Groups => { 2 => 'Author' } }, Count => { }, CurrentBitrate => { }, - Description => { }, + Description => { Writable => 'Unicode', Avoid => 1 }, DisplayArtist => { }, DLNAServerUDN => { }, DLNASourceURI => { }, diff --git a/bin/lib/Image/ExifTool/Nikon.pm b/bin/lib/Image/ExifTool/Nikon.pm index 350a250..86da5f0 100644 --- a/bin/lib/Image/ExifTool/Nikon.pm +++ b/bin/lib/Image/ExifTool/Nikon.pm @@ -65,7 +65,7 @@ use Image::ExifTool::Exif; use Image::ExifTool::GPS; use Image::ExifTool::XMP; -$VERSION = '4.30'; +$VERSION = '4.31'; sub LensIDConv($$$); sub ProcessNikonAVI($$$); @@ -890,6 +890,12 @@ my %bracketProgramZ9 = ( 9 => '9F', ); +my %dialsFrameAdvanceZoomPositionZ9 = ( + 0 => 'Hold', + 1 => 'Focus Point', + 2 => 'Face Priority', +); + my %dynamicAfAreaModesZ9 = ( 0 => 'Small', 1 => 'Medium', @@ -949,6 +955,7 @@ my %highFrameRateZ9 = ( 3 => 'C30', 5 => 'C60', 4 => 'C120', + 6 => 'C15', ); my %imageAreaD6 = ( @@ -1118,6 +1125,12 @@ my %movieFrameSizeZ9 = ( 3 => '7680x4320', ); +my %movieSlowMotion = ( + 0 => 'Off', + 1 => 'On (4x)', # 120p recording with playback @ 30p [1920 x 1080; 30p x 4] or 100p recording with playback @ 25p [1920 x 1080; 25p x 4] + 2 => 'On (5x)', # 120p recording with playback @ 24p [1920 x 1080; 20p x 5] +); + my %movieToneMapZ9 = ( 0 => 'SDR', 1 => 'HLG', @@ -1125,7 +1138,7 @@ my %movieToneMapZ9 = ( ); my %movieTypeZ9 = ( - 1 => 'H.265 8-bit (MP4)', + 1 => 'H.264 8-bit (MP4)', 2 => 'H.265 8-bit (MOV)', 3 => 'H.265 10-bit (MOV)', 4 => 'ProRes 422 HQ 10-bit (MOV)', @@ -1172,6 +1185,22 @@ my %offLowNormalHighZ7 = ( 3 => 'High', ); +my %pixelShiftDelay = ( + 0 => 'Off', + 1 => '1 s', + 2 => '2 s', + 3 => '3 s', + 4 => '5 s', + 5 => '10 s', +); + +my %pixelShiftNumberShots = ( + 0 => '4', + 1 => '8', + 2 => '16', + 3 => '32', +); + my %portraitImpressionBalanceZ8 = ( 0 => 'Off', 1 => 'Mode 1', @@ -8382,7 +8411,7 @@ my %nikonFocalConversions = ( CHECK_PROC => \&Image::ExifTool::CheckBinaryData, VARS => { ID_LABEL => 'Index', NIKON_OFFSETS => 0x24 }, DATAMEMBER => [ 0x04 ], - IS_SUBDIR => [ 0x30, 0x84, 0x8c ], + IS_SUBDIR => [ 0x30, 0x80, 0x84, 0x8c ], WRITABLE => 1, GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' }, NOTES => 'These tags are extracted from encrypted data in images from the Z8.', @@ -8425,6 +8454,16 @@ my %nikonFocalConversions = ( Start => '$val', }, }, + 0x80 => { + Name => 'AutoCaptureOffset', + Condition => '$$self{FirmwareVersion} and $$self{FirmwareVersion} ge "02.00"', + Format => 'int32u', + AlwaysDecrypt => 1, # (necessary because FirmwareVersion is extracted after decryption time) + SubDirectory => { + TagTable => 'Image::ExifTool::Nikon::AutoCaptureInfo', + Start => '$val', + }, + }, 0x84 => { Name => 'OrientOffset', Condition => '$$self{ShutterMode} and $$self{ShutterMode} ne 96', #not valid for C30/C60/C120 @@ -8709,13 +8748,24 @@ my %nikonFocalConversions = ( 0x10 => [ { Name => 'MenuSettingsOffsetZ8', + Condition => '$$self{FirmwareVersion} and $$self{FirmwareVersion} lt "02.00"', Format => 'int32u', - Notes => 'Firmware versions 1.0.0', + Notes => 'Firmware versions 1.0.0 and 1.1.0', SubDirectory => { TagTable => 'Image::ExifTool::Nikon::MenuSettingsZ8', Start => '$dirStart + $val', }, }, + { + Name => 'MenuSettingsOffsetZ8v2', + Condition => '$$self{FirmwareVersion} and $$self{FirmwareVersion} ge "02.00"', + Notes => 'Firmware version 2.0', + Format => 'int32u', + SubDirectory => { + TagTable => 'Image::ExifTool::Nikon::MenuSettingsZ8v2', + Start => '$dirStart + $val', + }, + }, ], ); @@ -9065,15 +9115,7 @@ my %nikonFocalConversions = ( #463 => SilentPhotography 502 => { Name => 'MovieFrameSize', PrintConv => \%movieFrameSizeZ9, Unknown => 1 }, 504 => { Name => 'MovieFrameRate', PrintConv => \%movieFrameRateZ7, Unknown => 1 }, - 506 => { - Name => 'MovieSlowMotion', - Unknown => 1, - PrintConv => { - 0 => 'Off', - 1 => 'On (4x)', # 120p recording with playback @ 30p [1920 x 1080; 30p x 4] or 100p recording with playback @ 25p [1920 x 1080; 25p x 4] - 2 => 'On (5x)', # 120p recording with playback @ 24p [1920 x 1080; 20p x 5] - }, - }, + 506 => { Name => 'MovieSlowMotion', PrintConv => \%movieSlowMotion, Unknown => 1 }, 510 => { Name => 'MovieType', Unknown => 1, @@ -9284,7 +9326,7 @@ my %nikonFocalConversions = ( }, 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 + 636 => { Name => 'HighFrequencyFlickerReduction', PrintConv => \%offOn, Unknown => 1 }, # new with firmware 3.0 730 => { Name => 'MovieImageArea', Unknown => 1, @@ -9333,7 +9375,7 @@ my %nikonFocalConversions = ( Format => 'undef[730]', SubDirectory => { TagTable => 'Image::ExifTool::NikonCustom::SettingsZ8' }, }, - 1682 => { Name => 'Language', PrintConv => \%languageZ9, Unknown => 1 }, + 1698 => { 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 }, @@ -9384,6 +9426,260 @@ my %nikonFocalConversions = ( 1890 => { Name => 'USBPowerDelivery', PrintConv => \%offOn, Unknown => 1 }, 1899 => { Name => 'SensorShield', PrintConv => { 0 => 'Stays Open', 1 => 'Closes' }, Unknown => 1 }, ); +%Image::ExifTool::Nikon::MenuSettingsZ8v2 = ( + %binaryDataAttrs, + GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' }, + DATAMEMBER => [ 152, 200, 204, 244, 440, 548, 554, 570, 596, 2046 ], + 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 => 'HighFrequencyFlickerReduction', 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, + }, + #736 => { Name => 'MovieSlowMotion', PrintConv => \%movieSlowMotion, Unknown => 1 }, #only valid for MovieType H.264 8-bit + 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 }, + 878 => { Name => 'MovieFrameSize', PrintConv => \%movieFrameSizeZ9, Unknown => 1 }, + 880 => { 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[755]', + SubDirectory => { TagTable => 'Image::ExifTool::NikonCustom::SettingsZ8' }, + }, + 1698 => { Name => 'Language', PrintConv => \%languageZ9, Unknown => 1 }, + 1700 => { Name => 'TimeZone', PrintConv => \%timeZoneZ9 }, + 1706 => { Name => 'MonitorBrightness', PrintConv => \%monitorBrightnessZ9, Unknown => 1 }, # settings: -5 to +5. Added with firmware 3.0: Lo1, Lo2, Hi1, Hi2 + 1728 => { Name => 'AFFineTune', PrintConv => \%offOn, Unknown => 1 }, + 1732 => { Name => 'NonCPULens1FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1}, #should probably hide altogther if $val is 0 + 1734 => { Name => 'NonCPULens2FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1}, + 1736 => { Name => 'NonCPULens3FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1}, + 1738 => { Name => 'NonCPULens4FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1}, + 1740 => { Name => 'NonCPULens5FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1}, + 1742 => { Name => 'NonCPULens6FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1}, + 1744 => { Name => 'NonCPULens7FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1}, + 1746 => { Name => 'NonCPULens8FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1}, + 1748 => { Name => 'NonCPULens9FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1}, + 1750 => { Name => 'NonCPULens10FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1}, + 1752 => { Name => 'NonCPULens11FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1}, + 1754 => { Name => 'NonCPULens12FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1}, + 1756 => { Name => 'NonCPULens13FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1}, + 1758 => { Name => 'NonCPULens14FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1}, + 1760 => { Name => 'NonCPULens15FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1}, + 1762 => { Name => 'NonCPULens16FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1}, + 1764 => { Name => 'NonCPULens17FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1}, + 1766 => { Name => 'NonCPULens18FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1}, + 1768 => { Name => 'NonCPULens19FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1}, + 1770 => { Name => 'NonCPULens20FocalLength', Format => 'int16u', PrintConv => 'sprintf("%.1fmm",$val/10)', Unknown => 1}, + 1812 => { Name => 'NonCPULens1MaxAperture', Format => 'int32u', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1}, + 1816 => { Name => 'NonCPULens2MaxAperture', Format => 'int32u', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1}, + 1820 => { Name => 'NonCPULens3MaxAperture', Format => 'int32u', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1}, + 1824 => { Name => 'NonCPULens4MaxAperture', Format => 'int32u', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1}, + 1828 => { Name => 'NonCPULens5MaxAperture', Format => 'int32u', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1}, + 1832 => { Name => 'NonCPULens6MaxAperture', Format => 'int32u', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1}, + 1836 => { Name => 'NonCPULens7MaxAperture', Format => 'int32u', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1}, + 1840 => { Name => 'NonCPULens8MaxAperture', Format => 'int32u', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1}, + 1844 => { Name => 'NonCPULens9MaxAperture', Format => 'int32u', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1}, + 1848 => { Name => 'NonCPULens10MaxAperture', Format => 'int32u', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1}, + 1852 => { Name => 'NonCPULens11MaxAperture', Format => 'int32u', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1}, + 1856 => { Name => 'NonCPULens12MaxAperture', Format => 'int32u', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1}, + 1860 => { Name => 'NonCPULens13MaxAperture', Format => 'int32u', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1}, + 1864 => { Name => 'NonCPULens14MaxAperture', Format => 'int32u', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1}, + 1868 => { Name => 'NonCPULens15MaxAperture', Format => 'int32u', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1}, + 1872 => { Name => 'NonCPULens16MaxAperture', Format => 'int32u', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1}, + 1876 => { Name => 'NonCPULens17MaxAperture', Format => 'int32u', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1}, + 1880 => { Name => 'NonCPULens18MaxAperture', Format => 'int32u', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1}, + 1884 => { Name => 'NonCPULens19MaxAperture', Format => 'int32u', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1}, + 1888 => { Name => 'NonCPULens20MaxAperture', Format => 'int32u', PrintConv => 'sprintf("%.1fmm",$val/100)', Unknown => 1}, + 1824 => { Name => 'HDMIOutputResolution', PrintConv => \%hDMIOutputResolutionZ9 }, + 1842 => { Name => 'AirplaneMode', PrintConv => \%offOn, Unknown => 1 }, + 1843 => { Name => 'EmptySlotRelease', PrintConv => { 0 => 'Disable Release', 1 => 'Enable Release' }, Unknown => 1 }, + 1878 => { Name => 'EnergySavingMode', PrintConv => \%offOn, Unknown => 1 }, + 1906 => { Name => 'USBPowerDelivery', PrintConv => \%offOn, Unknown => 1 }, + 1915 => { Name => 'SensorShield', PrintConv => { 0 => 'Stays Open', 1 => 'Closes' }, Unknown => 1 }, + 2046 => { Name => 'PixelShiftShooting', RawConv => '$$self{PixelShiftShooting} = $val', PrintConv => \%multipleExposureModeZ9 }, #off/on/on (series) + 2048 => { Name => 'PixelShiftNumberShots', Condition => '$$self{PixelShiftShooting} > 0', PrintConv => \%pixelShiftNumberShots }, + 2050 => { Name => 'PixelShiftDelay', Condition => '$$self{PixelShiftShooting} > 0', PrintConv => \%pixelShiftDelay }, + 2052 => { Name => 'PlaybackButton', %buttonsZ9 }, #CSf2 + 2054 => { Name => 'WBButton', %buttonsZ9}, #CSf2 + 2056 => { Name => 'BracketButton', %buttonsZ9}, #CSf2 + 2058 => { Name => 'LensFunc1ButtonPlaybackMode', %buttonsZ9}, #CSf2 + 2060 => { Name => 'LensFunc2ButtonPlaybackMode', %buttonsZ9}, #CSf2 + 2062 => { Name => 'PlaybackButtonPlaybackMode', %buttonsZ9}, #CSf2 + 2064 => { Name => 'BracketButtonPlaybackMode', %buttonsZ9}, #CSf2 +); %Image::ExifTool::Nikon::MenuSettingsZ9 = ( %binaryDataAttrs, GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' }, @@ -9733,7 +10029,7 @@ my %nikonFocalConversions = ( RawConv => '$$self{DynamicAFAreaSize} = $val', PrintConv => \%dynamicAfAreaModesZ9, }, - 636 => { Name => 'HighFrequencyFlickerReductionShooting', PrintConv => \%offOn, Unknown => 1 }, # new with firmware 3.0 + 636 => { Name => 'HighFrequencyFlickerReduction', PrintConv => \%offOn, Unknown => 1 }, # new with firmware 3.0 646 => { Name => 'MovieImageArea', Unknown => 1, @@ -9833,7 +10129,7 @@ my %nikonFocalConversions = ( GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' }, DATAMEMBER => [ 154, 204, 208, 248, 328, 444, 548, 554, 570, 596 ], IS_SUBDIR => [ 847 ], - NOTES => 'These tags are used by the Z9 firmware 3.00.', + NOTES => 'These tags are used by the Z9 firmware 4.0.0 and 4.1.0', 72 => { Name => 'HighFrameRate', #CH and C30/C60/C120 but not CL PrintConv => \%highFrameRateZ9, @@ -9970,7 +10266,7 @@ my %nikonFocalConversions = ( RawConv => '$$self{DynamicAFAreaSize} = $val', PrintConv => \%dynamicAfAreaModesZ9, }, - 636 => { Name => 'HighFrequencyFlickerReductionShooting', PrintConv => \%offOn, Unknown => 1 }, # new with firmware 3.0 + 636 => { Name => 'HighFrequencyFlickerReduction', PrintConv => \%offOn, Unknown => 1 }, # new with firmware 3.0 646 => { Name => 'MovieImageArea', Unknown => 1, @@ -10116,6 +10412,18 @@ my %nikonFocalConversions = ( Format => 'fixed32u', PrintConv => '$val ? sprintf("%.1f sec",$val/1000) : "Off"', }, + 2052 => { #CSf2-m3 + Name => 'CommandDialFrameAdvanceZoom', + Condition => '$$self{FirmwareVersion} and $$self{FirmwareVersion} ge "05.00"', + PrintConv => \%dialsFrameAdvanceZoomPositionZ9, + Unknown => 1 + }, + 2054 => { #CSf2-n3 + Name => 'SubCommandDialFrameAdvanceZoom', + Condition => '$$self{FirmwareVersion} and $$self{FirmwareVersion} ge "05.00"', + PrintConv => \%dialsFrameAdvanceZoomPositionZ9, + Unknown => 1 + }, 2056 => { Name => 'PlaybackButton', %buttonsZ9}, #CSf2 2058 => { Name => 'WBButton', %buttonsZ9}, #CSf2 2060 => { Name => 'BracketButton', %buttonsZ9}, #CSf2 @@ -11406,7 +11714,7 @@ my %nikonFocalConversions = ( }, ); -# MakerNotes0x56 - burst info for Z9 +# MakerNotes0x56 - burst info for Z8 and Z9 %Image::ExifTool::Nikon::MakerNotes0x56 = ( %binaryDataAttrs, GROUPS => { 0 => 'MakerNotes' }, @@ -11416,7 +11724,7 @@ my %nikonFocalConversions = ( Writable => 0, }, 4 => { - Name => 'BurstGroupID', #all frames shot within a burst (using CL/CH/C30/C60/C120) will share the same BurstGroupID. Value will be > 0 for all images shot in continuous modes. 0 for single-frame. + Name => 'BurstGroupID', #all frames shot within a burst (using CL/CH/C30/C60/C120) will share the same BurstGroupID. Value will be > 0 for all images shot in continuous modes (or via Pixel Shift). 0 for single-frame. Format => 'int16u' }, ); @@ -11440,7 +11748,7 @@ my %nikonFocalConversions = ( Name => 'VignetteInfo', # Z-series vignette correction information SubDirectory => { TagTable => 'Image::ExifTool::Nikon::VignetteInfo' }, }, - # 0x07 - undef[104] + # 0x07 - undef[104] #possibly Z-series diffration correction information (#28) # 0x08 - undef[24] # 0x09 - undef[36] ); diff --git a/bin/lib/Image/ExifTool/NikonCustom.pm b/bin/lib/Image/ExifTool/NikonCustom.pm index 8fbc76a..3a908cb 100644 --- a/bin/lib/Image/ExifTool/NikonCustom.pm +++ b/bin/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.24'; +$VERSION = '1.25'; @ISA = qw(Exporter); @EXPORT_OK = qw(%buttonsZ9); @@ -77,6 +77,7 @@ $VERSION = '1.24'; 66 => 'Voice Memo', 70 => 'Photo Shooting Bank', 71 => 'ISO', + 72 => 'Shooting Mode', 73 => 'Exposure Compensation', 76 => 'Silent Mode', 78 => 'LiveView Information', @@ -90,6 +91,9 @@ $VERSION = '1.24'; 86 => 'Save Focus Position', 87 => 'Recall Focus Position', 88 => 'Recall Shooting Functions (Hold)', + 89 => 'Set Picture Control (HLG)', + 90 => 'Skin Softening', + 91 => 'Portrait Impression Balance', 97 => 'High Frequency Flicker Reduction', 98 => 'Switch FX/DX', 99 => 'View Mode (Photo LV)', @@ -104,7 +108,25 @@ $VERSION = '1.24'; 110 => 'DISP - Cycle Information Display (playback)', # Playback mode 111 => 'Resume Shooting', 112 => 'Switch Eyes', + 113 => 'Power Zoom +', + 114 => 'Power Zoom -', 115 => 'Delete', + 116 => 'Pixel Shift Shooting', + 117 => 'Cycle AF-area Mode', + 118 => 'Raw Processing (Current)', #118-131 are Retouch options + 119 => 'Raw Processing (Multiple)', + 120 => 'Trim', + 121 => 'Resize (Current)', + 122 => 'Resize (Multiple)', + 123 => 'D-Lighting', + 124 => 'Straighten', + 125 => 'Distortion Control', + 126 => 'Perspective Control', + 127 => 'Monochrome', + 128 => 'Overlay (Add)', + 129 => 'Lighten', + 130 => 'Darken', + 131 => 'Motion Blend', }, ); my %dialsZ9 = ( @@ -118,6 +140,18 @@ my %dialsZ9 = ( 7 => 'Rating', 8 => 'Page', 9 => 'Skip To First Shot In Series', + 10 => 'Uploaded to FTP', + 11 => 'Uploaded to Computer', +); +my %dialsVideoZ9 = ( + 0 => '2 s', + 1 => '5 s', + 2 => '10 s', + 3 => '1 Frame', + 4 => '5 Frames', + 5 => '10 Frames', + 6 => 'First/Last Frame', + 7 => 'Playback Speed', ); my %evfGridsZ9 = ( 0 => '3x3', @@ -9974,6 +10008,9 @@ my %noYes = ( 0 => 'No', 1 => 'Yes' ); 421 => { Name => 'Func1ButtonPlaybackMode', %buttonsZ9, Unknown => 1}, # CSf3-a 423 => { Name => 'Func2ButtonPlaybackMode', %buttonsZ9, Unknown => 1}, # CSf3-b 437 => { Name => 'MovieRecordButtonPlaybackMode', %buttonsZ9, Unknown => 1}, # CSf3-m + 453 => { Name => 'WBButtonPlaybackMode', %buttonsZ9}, #CSf2 + 461 => { Name => 'CommandDialVideoPlaybackMode', PrintConv => \%dialsVideoZ9, Unknown => 1}, # CSf3-b + 465 => { Name => 'SubCommandDialVideoPlaybackMode', PrintConv => \%dialsVideoZ9, Unknown => 1}, # CSf3-b 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 @@ -10055,6 +10092,11 @@ my %noYes = ( 0 => 'No', 1 => 'Yes' ); }, 681 => { Name => 'ViewModeShowEffectsOfSettings', PrintConv => { 0=>'Always', 1=> 'Only When Flash Not Used'}, Unknown => 1 }, #CS8-a 683 => { Name => 'DispButton', %buttonsZ9}, #CSf2 + 753 => { #CSd5 + Name => 'ExposureDelay', + Format => 'int16u', + PrintConv => '$val ? sprintf("%.1f sec",$val/1000) : "Off"', + }, ); # Z9 custom settings (ref 1) #base at offset26 + 1035 (firmware 1.0.0) @@ -10806,7 +10848,19 @@ my %noYes = ( 0 => 'No', 1 => 'Yes' ); 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 + 485 => { # CSf3-m2 + Name => 'CommandDialVideoPlaybackMode', + Condition => '$$self{FirmwareVersion} and $$self{FirmwareVersion} ge "05.00"', + PrintConv => \%dialsVideoZ9, + Unknown => 1 + }, 487 => { Name => 'SubCommandDialPlaybackMode', PrintConv => \%dialsZ9, Unknown => 1}, # CSf3-l + 489 => { # CSf3-n2 + Name => 'SubCommandDialVideoPlaybackMode', + Condition => '$$self{FirmwareVersion} and $$self{FirmwareVersion} ge "05.00"', + PrintConv => \%dialsVideoZ9, + Unknown => 1 + }, 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 diff --git a/bin/lib/Image/ExifTool/Olympus.pm b/bin/lib/Image/ExifTool/Olympus.pm index a2fd736..201188a 100644 --- a/bin/lib/Image/ExifTool/Olympus.pm +++ b/bin/lib/Image/ExifTool/Olympus.pm @@ -197,6 +197,7 @@ my %olympusLensTypes = ( # '65535 07 40' - Seen for LUMIX S 16-35/F4 on Panasonic DC-S1H (ref PH) # Other makes '24 01 10' => 'Venus Optics Laowa 50mm F2.8 2x Macro', #DonKomarechka + 'f7 03 10' => 'LAOWA C&D-Dreamer MFT 7.5mm F2.0', #forum3833 ); # lookup for Olympus camera types (ref PH) diff --git a/bin/lib/Image/ExifTool/OpenEXR.pm b/bin/lib/Image/ExifTool/OpenEXR.pm index ce550e5..74d551d 100644 --- a/bin/lib/Image/ExifTool/OpenEXR.pm +++ b/bin/lib/Image/ExifTool/OpenEXR.pm @@ -16,7 +16,7 @@ use vars qw($VERSION); use Image::ExifTool qw(:DataAccess :Utils); use Image::ExifTool::GPS; -$VERSION = '1.05'; +$VERSION = '1.06'; # supported EXR value format types (other types are extracted as undef binary data) my %formatType = ( @@ -154,6 +154,19 @@ my %formatType = ( type => { }, version => { }, chunkCount => { }, + # exif and xmp written by PanoramaStudio4.0.2Pro + exif => { + Name => 'EXIF', + SubDirectory => { + TagTable => 'Image::ExifTool::Exif::Main', + ProcessProc => \&Image::ExifTool::ProcessTIFF, + Start => 4, # (skip leading 4 bytes with data length) + }, + }, + xmp => { + Name => 'XMP', + SubDirectory => { TagTable => 'Image::ExifTool::XMP::Main' }, + }, # also observed: # ilut ); @@ -221,9 +234,14 @@ sub ProcessEXR($$) } my ($val, $success, $buf2); my $format = $formatType{$type}; - if ($format or $binary) { + my $subdir = $$tagInfo{SubDirectory}; + if ($format or $binary or $subdir) { $raf->Read($buf2, $size) == $size and $success = 1; - if (not $format) { + if ($subdir) { + $et->HandleTag($tagTablePtr, $tag, undef, + DataPt => \$buf2, DataPos => $raf->Tell() - length($buf2)); + next if $success; + } elsif (not $format) { $val = \$buf2; # treat as undef binary data } elsif ($format ne '1') { # handle formats which map nicely into ExifTool format codes diff --git a/bin/lib/Image/ExifTool/PNG.pm b/bin/lib/Image/ExifTool/PNG.pm index b072c73..bc5f2c5 100644 --- a/bin/lib/Image/ExifTool/PNG.pm +++ b/bin/lib/Image/ExifTool/PNG.pm @@ -36,7 +36,7 @@ use strict; use vars qw($VERSION $AUTOLOAD %stdCase); use Image::ExifTool qw(:DataAccess :Utils); -$VERSION = '1.66'; +$VERSION = '1.67'; sub ProcessPNG_tEXt($$$); sub ProcessPNG_iTXt($$$); @@ -642,8 +642,8 @@ my %unreg = ( Notes => 'unregistered' ); Label => { %unreg }, Make => { %unreg, Groups => { 2 => 'Camera' } }, Model => { %unreg, Groups => { 2 => 'Camera' } }, - # parameters (written by Stable Diffusion) - # aesthetic_score (written by Stable Diffusion) + parameters => { %unreg }, # (written by Stable Diffusion) + aesthetic_score => { Name => 'AestheticScore', %unreg }, # (written by Stable Diffusion) 'create-date'=> { Name => 'CreateDate', Groups => { 2 => 'Time' }, diff --git a/bin/lib/Image/ExifTool/QuickTime.pm b/bin/lib/Image/ExifTool/QuickTime.pm index a4bc263..a3ab3c6 100644 --- a/bin/lib/Image/ExifTool/QuickTime.pm +++ b/bin/lib/Image/ExifTool/QuickTime.pm @@ -6728,7 +6728,7 @@ my %isImageData = ( av01 => 1, avc1 => 1, hvc1 => 1, lhv1 => 1, hvt1 => 1 ); %Image::ExifTool::QuickTime::iTunesInfo = ( PROCESS_PROC => \&ProcessMOV, GROUPS => { 1 => 'iTunes', 2 => 'Audio' }, - VARS => { LONG_TAGS => 0 }, # (hack for discrepancy in the way long tags are counted in BuildTagLookup) + VARS => { LONG_TAGS => 1 }, # (hack for discrepancy in the way long tags are counted in BuildTagLookup) NOTES => q{ ExifTool will extract any iTunesInfo tags that exist, even if they are not defined in this table. These tags belong to the family 1 "iTunes" group, @@ -6804,6 +6804,17 @@ my %isImageData = ( av01 => 1, avc1 => 1, hvc1 => 1, lhv1 => 1, hvt1 => 1 ); BARCODE => 'Barcode', LABEL => 'Label', MOOD => 'Mood', + DIRECTOR => 'Director', + DIRECTOR_OF_PHOTOGRAPHY => 'DirectorOfPhotography', + PRODUCTION_DESIGNER => 'ProductionDesigner', + COSTUME_DESIGNER => 'CostumeDesigner', + SCREENPLAY_BY => 'ScreenplayBy', + EDITED_BY => 'EditedBy', + PRODUCER => 'Producer', + IMDB_ID => { }, + TMDB_ID => { }, + Actors => { }, + TIPL => { }, popularimeter => 'Popularimeter', 'Dynamic Range (DR)'=> 'DynamicRange', initialkey => 'InitialKey', diff --git a/bin/lib/Image/ExifTool/QuickTimeStream.pl b/bin/lib/Image/ExifTool/QuickTimeStream.pl index 8a7a80d..008aa9e 100644 --- a/bin/lib/Image/ExifTool/QuickTimeStream.pl +++ b/bin/lib/Image/ExifTool/QuickTimeStream.pl @@ -109,7 +109,7 @@ package Image::ExifTool::QuickTime; The tags below are extracted from timed metadata in QuickTime and other formats of video files when the ExtractEmbedded option is used. Although most of these tags are combined into the single table below, ExifTool - currently reads 71 different formats of timed GPS metadata from video files. + currently reads 72 different formats of timed GPS metadata from video files. }, VARS => { NO_ID => 1 }, GPSLatitude => { PrintConv => 'Image::ExifTool::GPS::ToDMS($self, $val, 1, "N")', RawConv => '$$self{FoundGPSLatitude} = 1; $val' }, diff --git a/bin/lib/Image/ExifTool/Sony.pm b/bin/lib/Image/ExifTool/Sony.pm index 4172e71..fdb853b 100644 --- a/bin/lib/Image/ExifTool/Sony.pm +++ b/bin/lib/Image/ExifTool/Sony.pm @@ -10553,7 +10553,7 @@ my %isoSetting2010 = ( ValueConv => '2 ** (8-$val/8192)', PrintConv => 'Image::ExifTool::Exif::PrintFNumber($val)', }, - 0x8001 => { Name => 'Sony_rtmd_0x8001', Format => 'int16u', %hidUnk }, + 0x8001 => { Name => 'Sony_rtmd_0x8001', Format => 'int16u', %hidUnk }, # (perhaps related to focus distance? forum15856) 0x8004 => { Name => 'Sony_rtmd_0x8004', Format => 'int16u', %hidUnk }, # (FocalLength35efl?, forum14315) 0x8005 => { Name => 'Sony_rtmd_0x8005', Format => 'int16u', %hidUnk }, # (FocalLength?, forum14315) 0x800a => { Name => 'Sony_rtmd_0x800a', Format => 'int16u', %hidUnk }, # (FocusRingPosition?, forum14315) diff --git a/bin/lib/Image/ExifTool/TagLookup.pm b/bin/lib/Image/ExifTool/TagLookup.pm index 41a9119..3f70676 100644 --- a/bin/lib/Image/ExifTool/TagLookup.pm +++ b/bin/lib/Image/ExifTool/TagLookup.pm @@ -277,6 +277,7 @@ my @tableList = ( 'Image::ExifTool::Nikon::MenuSettingsD850', 'Image::ExifTool::Nikon::MenuSettingsZ7II', 'Image::ExifTool::Nikon::MenuSettingsZ8', + 'Image::ExifTool::Nikon::MenuSettingsZ8v2', 'Image::ExifTool::Nikon::MenuSettingsZ9', 'Image::ExifTool::Nikon::MenuSettingsZ9v3', 'Image::ExifTool::Nikon::MenuSettingsZ9v4', @@ -582,374 +583,375 @@ my @tableList = ( # lookup for all writable tags my %tagLookup = ( 'aberrationcorrectiondistance' => { 112 => 0x69 }, - 'about' => { 533 => 'about' }, - 'aboutcvterm' => { 524 => 'AboutCvTerm' }, - 'aboutcvtermcvid' => { 524 => [\'AboutCvTerm','AboutCvTermCvId'] }, - 'aboutcvtermid' => { 524 => [\'AboutCvTerm','AboutCvTermCvTermId'] }, - 'aboutcvtermname' => { 524 => [\'AboutCvTerm','AboutCvTermCvTermName'] }, - 'aboutcvtermrefinedabout' => { 524 => [\'AboutCvTerm','AboutCvTermCvTermRefinedAbout'] }, + 'about' => { 534 => 'about' }, + 'aboutcvterm' => { 525 => 'AboutCvTerm' }, + 'aboutcvtermcvid' => { 525 => [\'AboutCvTerm','AboutCvTermCvId'] }, + 'aboutcvtermid' => { 525 => [\'AboutCvTerm','AboutCvTermCvTermId'] }, + 'aboutcvtermname' => { 525 => [\'AboutCvTerm','AboutCvTermCvTermName'] }, + 'aboutcvtermrefinedabout' => { 525 => [\'AboutCvTerm','AboutCvTermCvTermRefinedAbout'] }, 'absolutealtitude' => { 119 => 'AbsoluteAltitude' }, - 'abspeakaudiofilepath' => { 539 => 'absPeakAudioFilePath' }, - 'academicfield' => { 529 => 'academicField' }, - 'acceleration' => { 122 => 0x9404, 517 => 'Acceleration' }, + 'abspeakaudiofilepath' => { 540 => 'absPeakAudioFilePath' }, + 'academicfield' => { 530 => 'academicField' }, + 'acceleration' => { 122 => 0x9404, 518 => 'Acceleration' }, 'accelerationtracking' => { 87 => 0x518 }, 'accelerationvector' => { 1 => 0x8 }, - 'accelerometer' => { 417 => 0x3 }, - 'accelerometerdata' => { 407 => 'vrot' }, - 'accelerometerx' => { 347 => 0x8d }, - 'accelerometery' => { 347 => 0x8e }, - 'accelerometerz' => { 347 => 0x8c }, - 'accessoryserialnumber' => { 347 => 0x54 }, - 'accessorytype' => { 347 => 0x53 }, - 'acdseeregion' => { 486 => [\'Regions','RegionsRegionList'] }, - 'acdseeregionalgarea' => { 486 => [\'Regions','RegionsRegionListALGArea'] }, - 'acdseeregionalgareah' => { 486 => [\'Regions','RegionsRegionListALGAreaH'] }, - 'acdseeregionalgareaw' => { 486 => [\'Regions','RegionsRegionListALGAreaW'] }, - 'acdseeregionalgareax' => { 486 => [\'Regions','RegionsRegionListALGAreaX'] }, - 'acdseeregionalgareay' => { 486 => [\'Regions','RegionsRegionListALGAreaY'] }, - 'acdseeregionappliedtodimensions' => { 486 => [\'Regions','RegionsAppliedToDimensions'] }, - 'acdseeregionappliedtodimensionsh' => { 486 => [\'Regions','RegionsAppliedToDimensionsH'] }, - 'acdseeregionappliedtodimensionsunit' => { 486 => [\'Regions','RegionsAppliedToDimensionsUnit'] }, - 'acdseeregionappliedtodimensionsw' => { 486 => [\'Regions','RegionsAppliedToDimensionsW'] }, - 'acdseeregiondlyarea' => { 486 => [\'Regions','RegionsRegionListDLYArea'] }, - 'acdseeregiondlyareah' => { 486 => [\'Regions','RegionsRegionListDLYAreaH'] }, - 'acdseeregiondlyareaw' => { 486 => [\'Regions','RegionsRegionListDLYAreaW'] }, - 'acdseeregiondlyareax' => { 486 => [\'Regions','RegionsRegionListDLYAreaX'] }, - 'acdseeregiondlyareay' => { 486 => [\'Regions','RegionsRegionListDLYAreaY'] }, - 'acdseeregionname' => { 486 => [\'Regions','RegionsRegionListName'] }, - 'acdseeregionnameassigntype' => { 486 => [\'Regions','RegionsRegionListNameAssignType'] }, - 'acdseeregiontype' => { 486 => [\'Regions','RegionsRegionListType'] }, + 'accelerometer' => { 418 => 0x3 }, + 'accelerometerdata' => { 408 => 'vrot' }, + 'accelerometerx' => { 348 => 0x8d }, + 'accelerometery' => { 348 => 0x8e }, + 'accelerometerz' => { 348 => 0x8c }, + 'accessoryserialnumber' => { 348 => 0x54 }, + 'accessorytype' => { 348 => 0x53 }, + 'acdseeregion' => { 487 => [\'Regions','RegionsRegionList'] }, + 'acdseeregionalgarea' => { 487 => [\'Regions','RegionsRegionListALGArea'] }, + 'acdseeregionalgareah' => { 487 => [\'Regions','RegionsRegionListALGAreaH'] }, + 'acdseeregionalgareaw' => { 487 => [\'Regions','RegionsRegionListALGAreaW'] }, + 'acdseeregionalgareax' => { 487 => [\'Regions','RegionsRegionListALGAreaX'] }, + 'acdseeregionalgareay' => { 487 => [\'Regions','RegionsRegionListALGAreaY'] }, + 'acdseeregionappliedtodimensions' => { 487 => [\'Regions','RegionsAppliedToDimensions'] }, + 'acdseeregionappliedtodimensionsh' => { 487 => [\'Regions','RegionsAppliedToDimensionsH'] }, + 'acdseeregionappliedtodimensionsunit' => { 487 => [\'Regions','RegionsAppliedToDimensionsUnit'] }, + 'acdseeregionappliedtodimensionsw' => { 487 => [\'Regions','RegionsAppliedToDimensionsW'] }, + 'acdseeregiondlyarea' => { 487 => [\'Regions','RegionsRegionListDLYArea'] }, + 'acdseeregiondlyareah' => { 487 => [\'Regions','RegionsRegionListDLYAreaH'] }, + 'acdseeregiondlyareaw' => { 487 => [\'Regions','RegionsRegionListDLYAreaW'] }, + 'acdseeregiondlyareax' => { 487 => [\'Regions','RegionsRegionListDLYAreaX'] }, + 'acdseeregiondlyareay' => { 487 => [\'Regions','RegionsRegionListDLYAreaY'] }, + 'acdseeregionname' => { 487 => [\'Regions','RegionsRegionListName'] }, + 'acdseeregionnameassigntype' => { 487 => [\'Regions','RegionsRegionListNameAssignType'] }, + 'acdseeregiontype' => { 487 => [\'Regions','RegionsRegionListType'] }, 'actionadvised' => { 134 => 0x2a }, 'activearea' => { 122 => 0xc68d }, - 'actived-lighting' => { 239 => 0x22, 294 => 0x24 }, - 'actived-lightingmode' => { 294 => 0x25 }, + 'actived-lighting' => { 239 => 0x22, 295 => 0x24 }, + 'actived-lightingmode' => { 295 => 0x25 }, 'adaptervoltage' => { 141 => 0x407 }, 'addaspectratioinfo' => { 87 => 0x80e }, 'addiptcinformation' => { 87 => 0x815 }, - 'additionalmodelinformation' => { 524 => 'AddlModelInfo' }, + 'additionalmodelinformation' => { 525 => 'AddlModelInfo' }, 'addoriginaldecisiondata' => { 87 => 0x80f, 88 => 0x11, 89 => 0x13, 92 => 0x14 }, 'address' => { 164 => 'Address' }, - 'adjustmentmode' => { 424 => 0x15 }, + 'adjustmentmode' => { 425 => 0x15 }, 'adlbracketingstep' => { 201 => 0x17 }, 'adlbracketingtype' => { 201 => 0x18 }, 'adobe' => { 123 => 'Adobe' }, - 'adultcontentwarning' => { 333 => 'AdultContentWarning', 532 => 'adultContentWarning' }, + 'adultcontentwarning' => { 334 => 'AdultContentWarning', 533 => 'adultContentWarning' }, 'advancedfilter' => { 130 => 0x1201 }, - 'advancedraw' => { 296 => 0x76a43203 }, - 'advancedscenetype' => { 347 => 0x3d }, - 'advisory' => { 537 => 'Advisory' }, - 'ae_iso' => { 355 => 0x2, 356 => 0x4, 357 => 0x12 }, - 'aeaperture' => { 355 => 0x1, 356 => 0x3, 357 => 0x11 }, - 'aeaperturesteps' => { 355 => 0x8, 356 => 0xb }, + 'advancedraw' => { 297 => 0x76a43203 }, + 'advancedscenetype' => { 348 => 0x3d }, + 'advisory' => { 538 => 'Advisory' }, + 'ae_iso' => { 356 => 0x2, 357 => 0x4, 358 => 0x12 }, + 'aeaperture' => { 356 => 0x1, 357 => 0x3, 358 => 0x11 }, + 'aeaperturesteps' => { 356 => 0x8, 357 => 0xb }, 'aeaverage' => { 1 => 0x6 }, 'aebautocancel' => { 87 => 0x104 }, 'aebbracketvalue' => { 79 => 0x11 }, - 'aebracketingsteps' => { 201 => 0xf, 202 => 0xf, 276 => 0x174c }, + 'aebracketingsteps' => { 201 => 0xf, 202 => 0xf, 277 => 0x174c }, 'aebsequence' => { 87 => 0x105 }, 'aebsequenceautocancel' => { 85 => 0x9, 86 => 0x9, 88 => 0x8, 89 => 0x9, 92 => 0x9, 93 => 0x7 }, 'aebshotcount' => { 87 => 0x106 }, - 'aebxv' => { 355 => 0x4, 356 => 0x6 }, - 'aeerror' => { 356 => 0x8 }, - 'aeexposuretime' => { 355 => 0x0, 356 => 0x2, 357 => 0x10 }, + 'aebxv' => { 356 => 0x4, 357 => 0x6 }, + 'aeerror' => { 357 => 0x8 }, + 'aeexposuretime' => { 356 => 0x0, 357 => 0x2, 358 => 0x10 }, 'aelbutton' => { 187 => 0x45 }, 'aelexposureindicator' => { 187 => 0x51 }, - 'aelock' => { 187 => 0x5b, 305 => '4.2', 314 => '4.2', 323 => 0x201, 382 => 0x48, 434 => 0x40, 435 => 0x40, 436 => [0x86,0x286] }, - 'aelockbutton' => { 303 => '16.1', 305 => '4.1', 308 => '15.1', 309 => '16.1', 310 => '16.1', 312 => '30.1', 313 => '16.1', 314 => '4.1', 316 => '17.1', 318 => '17.1' }, - 'aelockbuttonplusdials' => { 303 => '16.2', 312 => '32.1', 316 => '44.1' }, - 'aelockformb-d80' => { 318 => '3.1' }, + 'aelock' => { 187 => 0x5b, 306 => '4.2', 315 => '4.2', 324 => 0x201, 383 => 0x48, 435 => 0x40, 436 => 0x40, 437 => [0x86,0x286] }, + 'aelockbutton' => { 304 => '16.1', 306 => '4.1', 309 => '15.1', 310 => '16.1', 311 => '16.1', 313 => '30.1', 314 => '16.1', 315 => '4.1', 317 => '17.1', 319 => '17.1' }, + 'aelockbuttonplusdials' => { 304 => '16.2', 313 => '32.1', 317 => '44.1' }, + 'aelockformb-d80' => { 319 => '3.1' }, 'aelockmetermodeafterfocus' => { 87 => 0x114 }, 'aematrix' => { 1 => 0x2 }, - 'aemaxaperture' => { 355 => 0x9, 356 => 0x10, 357 => 0x1c }, - 'aemaxaperture2' => { 355 => 0xa, 356 => 0x11, 357 => 0x1d }, - 'aemeteringmode' => { 355 => 0xc }, - 'aemeteringmode2' => { 355 => '13.1' }, - 'aemeteringsegments' => { 190 => 0x628, 382 => 0x209 }, + 'aemaxaperture' => { 356 => 0x9, 357 => 0x10, 358 => 0x1c }, + 'aemaxaperture2' => { 356 => 0xa, 357 => 0x11, 358 => 0x1d }, + 'aemeteringmode' => { 356 => 0xc }, + 'aemeteringmode2' => { 356 => '13.1' }, + 'aemeteringsegments' => { 190 => 0x628, 383 => 0x209 }, 'aemicroadjustment' => { 87 => 0x110 }, - 'aeminaperture' => { 355 => 0xb, 356 => 0x12, 357 => 0x1e }, - 'aeminexposuretime' => { 355 => 0x5, 356 => 0x13, 357 => 0x1f }, - 'aeprogrammode' => { 355 => 0x6 }, - 'aeprojectlink' => { 511 => 'aeProjectLink' }, - 'aeprojectlinkcompositionid' => { 511 => [\'aeProjectLink','aeProjectLinkCompositionID'] }, - 'aeprojectlinkfullpath' => { 511 => [\'aeProjectLink','aeProjectLinkFullPath'] }, - 'aeprojectlinkrenderoutputmoduleindex' => { 511 => [\'aeProjectLink','aeProjectLinkRenderOutputModuleIndex'] }, - 'aeprojectlinkrenderqueueitemid' => { 511 => [\'aeProjectLink','aeProjectLinkRenderQueueItemID'] }, - 'aeprojectlinkrendertimestamp' => { 511 => [\'aeProjectLink','aeProjectLinkRenderTimeStamp'] }, + 'aeminaperture' => { 356 => 0xb, 357 => 0x12, 358 => 0x1e }, + 'aeminexposuretime' => { 356 => 0x5, 357 => 0x13, 358 => 0x1f }, + 'aeprogrammode' => { 356 => 0x6 }, + 'aeprojectlink' => { 512 => 'aeProjectLink' }, + 'aeprojectlinkcompositionid' => { 512 => [\'aeProjectLink','aeProjectLinkCompositionID'] }, + 'aeprojectlinkfullpath' => { 512 => [\'aeProjectLink','aeProjectLinkFullPath'] }, + 'aeprojectlinkrenderoutputmoduleindex' => { 512 => [\'aeProjectLink','aeProjectLinkRenderOutputModuleIndex'] }, + 'aeprojectlinkrenderqueueitemid' => { 512 => [\'aeProjectLink','aeProjectLinkRenderQueueItemID'] }, + 'aeprojectlinkrendertimestamp' => { 512 => [\'aeProjectLink','aeProjectLinkRenderTimeStamp'] }, 'aesetting' => { 36 => 0x21 }, 'aestable' => { 1 => 0x4 }, + 'aestheticscore' => { 337 => 'aesthetic_score' }, 'aetarget' => { 1 => 0x5 }, - 'aewhitebalance' => { 355 => 0xd }, - 'aexv' => { 355 => 0x3, 356 => 0x5 }, - 'af-assistilluminator' => { 319 => 0x19, 320 => 0x19, 321 => 0x19 }, - 'af-cfocusdisplay' => { 319 => 0x234, 320 => 0x234, 321 => 0x24c }, + 'aewhitebalance' => { 356 => 0xd }, + 'aexv' => { 356 => 0x3, 357 => 0x5 }, + 'af-assistilluminator' => { 320 => 0x19, 321 => 0x19, 322 => 0x19 }, + 'af-cfocusdisplay' => { 320 => 0x234, 321 => 0x234, 322 => 0x24c }, 'af-cpriority' => { 131 => '0.2' }, - 'af-cpriorityselection' => { 303 => '1.1', 304 => '1.1', 306 => '1.1', 307 => '1.1', 309 => '0.1', 310 => '0.1', 311 => '0.1', 312 => '1.1', 313 => '0.1', 316 => '1.1', 317 => '1.1', 319 => 0x3, 320 => 0x3, 321 => 0x3 }, + 'af-cpriorityselection' => { 304 => '1.1', 305 => '1.1', 307 => '1.1', 308 => '1.1', 310 => '0.1', 311 => '0.1', 312 => '0.1', 313 => '1.1', 314 => '0.1', 317 => '1.1', 318 => '1.1', 320 => 0x3, 321 => 0x3, 322 => 0x3 }, 'af-csetting' => { 127 => 0x0 }, 'af-cspeedtrackingsensitivity' => { 127 => '0.2' }, 'af-ctrackingsensitivity' => { 127 => '0.1' }, 'af-czoneareaswitching' => { 127 => '0.3' }, - 'af-onbutton' => { 306 => '70.1', 307 => '70.1', 317 => '70.1' }, - 'af-onformb-d10' => { 303 => '3.3', 312 => '3.2' }, - 'af-onformb-d11' => { 313 => '2.2' }, - 'af-onformb-d12' => { 316 => '50.1' }, - 'af-onoutoffocusrelease' => { 319 => 0x10, 320 => 0x10, 321 => 0x10 }, + 'af-onbutton' => { 307 => '70.1', 308 => '70.1', 318 => '70.1' }, + 'af-onformb-d10' => { 304 => '3.3', 313 => '3.2' }, + 'af-onformb-d11' => { 314 => '2.2' }, + 'af-onformb-d12' => { 317 => '50.1' }, + 'af-onoutoffocusrelease' => { 320 => 0x10, 321 => 0x10, 322 => 0x10 }, 'af-spriority' => { 131 => '0.1' }, - 'af-spriorityselection' => { 303 => '1.2', 304 => '1.2', 306 => '1.2', 307 => '1.2', 311 => '0.2', 312 => '1.2', 313 => '0.2', 316 => '1.2', 317 => '1.2', 319 => 0x5, 320 => 0x5, 321 => 0x5 }, + 'af-spriorityselection' => { 304 => '1.2', 305 => '1.2', 307 => '1.2', 308 => '1.2', 312 => '0.2', 313 => '1.2', 314 => '0.2', 317 => '1.2', 318 => '1.2', 320 => 0x5, 321 => 0x5, 322 => 0x5 }, 'afacceldeceltracking' => { 2 => 0x3 }, - 'afactivation' => { 303 => '2.1', 304 => '2.1', 306 => '78.3', 307 => '78.3', 312 => '2.1', 316 => '2.1', 317 => '78.3', 319 => 0xf, 320 => 0xf, 321 => 0xf }, - 'afadjustment' => { 382 => 0x72, 391 => 0x267 }, + 'afactivation' => { 304 => '2.1', 305 => '2.1', 307 => '78.3', 308 => '78.3', 313 => '2.1', 317 => '2.1', 318 => '78.3', 320 => 0xf, 321 => 0xf, 322 => 0xf }, + 'afadjustment' => { 383 => 0x72, 392 => 0x267 }, 'afandmeteringbuttons' => { 87 => 0x701 }, 'afaperture' => { 232 => 0x5, 233 => 0x5, 237 => 0x5 }, 'afareaheight' => { 196 => [0x1a,0x34,0x50], 197 => 0x48 }, - 'afareaillumination' => { 187 => 0x4b, 314 => '15.3' }, - 'afareainitialheight' => { 251 => 0xbeb }, - 'afareainitialwidth' => { 251 => 0xbea }, - 'afareainitialxposition' => { 251 => 0xbe8 }, - 'afareainitialyposition' => { 251 => 0xbe9 }, - 'afareamode' => { 129 => '0.3', 183 => 0x33, 187 => 0xe, 195 => 0x0, 196 => 0x5, 197 => 0x5, 244 => 0x224, 245 => 0x210, 246 => 0x224, 247 => 0x224, 347 => 0xf, 414 => 0x1205, 427 => [0xa,0x3a], 434 => 0x11, 435 => 0x10, 436 => 0x24, 448 => 0xb043, 474 => 0x17 }, - 'afareamodesetting' => { 305 => '11.1', 308 => '0.1', 314 => '16.1', 318 => '2.1', 448 => 0x201c }, + 'afareaillumination' => { 187 => 0x4b, 315 => '15.3' }, + 'afareainitialheight' => { 252 => 0xbeb }, + 'afareainitialwidth' => { 252 => 0xbea }, + 'afareainitialxposition' => { 252 => 0xbe8 }, + 'afareainitialyposition' => { 252 => 0xbe9 }, + 'afareamode' => { 129 => '0.3', 183 => 0x33, 187 => 0xe, 195 => 0x0, 196 => 0x5, 197 => 0x5, 244 => 0x224, 245 => 0x224, 246 => 0x210, 247 => 0x224, 248 => 0x224, 348 => 0xf, 415 => 0x1205, 428 => [0xa,0x3a], 435 => 0x11, 436 => 0x10, 437 => 0x24, 449 => 0xb043, 475 => 0x17 }, + 'afareamodesetting' => { 306 => '11.1', 309 => '0.1', 315 => '16.1', 319 => '2.1', 449 => 0x201c }, 'afareapointsize' => { 129 => '0.4' }, - 'afareas' => { 323 => 0x304 }, + 'afareas' => { 324 => 0x304 }, 'afareaselectionmethod' => { 2 => 0xd }, 'afareaselectmethod' => { 87 => 0x51b }, 'afareawidth' => { 196 => [0x18,0x32,0x4e], 197 => 0x46 }, - 'afareaxposition' => { 196 => [0x14,0x2e,0x4a], 197 => 0x42, 414 => 0x1203 }, - 'afareaxposition1' => { 414 => 0x1201 }, - 'afareayposition' => { 196 => [0x16,0x30,0x4c], 197 => 0x44, 414 => 0x1204 }, - 'afareayposition1' => { 414 => 0x1202 }, + 'afareaxposition' => { 196 => [0x14,0x2e,0x4a], 197 => 0x42, 415 => 0x1203 }, + 'afareaxposition1' => { 415 => 0x1201 }, + 'afareayposition' => { 196 => [0x16,0x30,0x4c], 197 => 0x44, 415 => 0x1204 }, + 'afareayposition1' => { 415 => 0x1202 }, 'afareazonesize' => { 129 => '0.5' }, - 'afassist' => { 85 => 0x5, 93 => 0x5, 187 => 0x48, 303 => '2.5', 305 => '0.2', 308 => '0.2', 309 => '1.1', 310 => '1.1', 311 => '1.3', 312 => '2.4', 313 => '1.3', 314 => '0.2', 316 => '2.4', 318 => '2.3' }, + 'afassist' => { 85 => 0x5, 93 => 0x5, 187 => 0x48, 304 => '2.5', 306 => '0.2', 309 => '0.2', 310 => '1.1', 311 => '1.1', 312 => '1.3', 313 => '2.4', 314 => '1.3', 315 => '0.2', 317 => '2.4', 319 => '2.3' }, 'afassistbeam' => { 2 => 0x8, 87 => 0x50e, 88 => 0x4, 89 => 0x5, 90 => 0x4, 91 => 0x4, 92 => 0x5 }, - 'afassistlamp' => { 347 => 0x31 }, - 'afbuttonpressed' => { 436 => [0x83,0x283] }, + 'afassistlamp' => { 348 => 0x31 }, + 'afbuttonpressed' => { 437 => [0x83,0x283] }, 'afconfidence' => { 1 => 0x3d }, 'afconfigtool' => { 2 => 0x1 }, - 'afdefocus' => { 358 => 0x6 }, + 'afdefocus' => { 359 => 0x6 }, 'afduringliveview' => { 87 => 0x511 }, - 'affinea' => { 504 => 'AffineA' }, - 'affineb' => { 504 => 'AffineB' }, - 'affinec' => { 504 => 'AffineC' }, - 'affined' => { 504 => 'AffineD' }, - 'affinetune' => { 198 => 0x0, 244 => 0x6b0, 245 => 0x5b0, 246 => 0x5e0, 247 => 0x5f8, 323 => 0x306 }, - 'affinetuneadj' => { 198 => 0x2, 269 => 0x2d1, 270 => 0x2dc, 323 => 0x307 }, + 'affinea' => { 505 => 'AffineA' }, + 'affineb' => { 505 => 'AffineB' }, + 'affinec' => { 505 => 'AffineC' }, + 'affined' => { 505 => 'AffineD' }, + 'affinetune' => { 198 => 0x0, 244 => 0x6b0, 245 => 0x6c0, 246 => 0x5b0, 247 => 0x5e0, 248 => 0x5f8, 324 => 0x306 }, + 'affinetuneadj' => { 198 => 0x2, 270 => 0x2d1, 271 => 0x2dc, 324 => 0x307 }, 'affinetuneadjtele' => { 198 => 0x3 }, 'affinetuneindex' => { 198 => 0x1 }, - 'affinex' => { 504 => 'AffineX' }, - 'affiney' => { 504 => 'AffineY' }, - 'afhold' => { 358 => 0x1fd }, - 'afilluminator' => { 434 => 0x29, 448 => 0xb044 }, + 'affinex' => { 505 => 'AffineX' }, + 'affiney' => { 505 => 'AffineY' }, + 'afhold' => { 359 => 0x1fd }, + 'afilluminator' => { 435 => 0x29, 449 => 0xb044 }, 'afimageheight' => { 196 => [0x12,0x2c,0x48], 197 => 0x40 }, 'afimagewidth' => { 196 => [0x10,0x2a,0x46], 197 => 0x3e }, - 'afintegrationtime' => { 358 => 0x7 }, + 'afintegrationtime' => { 359 => 0x7 }, 'afmeasureddepth' => { 1 => 0x38 }, - 'afmicroadj' => { 427 => [0x17d,0x50] }, - 'afmicroadjmode' => { 3 => 0x1, 431 => 0x131 }, - 'afmicroadjregisteredlenses' => { 431 => '305.1' }, + 'afmicroadj' => { 428 => [0x17d,0x50] }, + 'afmicroadjmode' => { 3 => 0x1, 432 => 0x131 }, + 'afmicroadjregisteredlenses' => { 432 => '305.1' }, 'afmicroadjustment' => { 87 => 0x507 }, - 'afmicroadjvalue' => { 3 => 0x2, 431 => 0x130 }, - 'afmode' => { 116 => 0x3009, 130 => 0x1022, 183 => 0x16, 424 => 0x5 }, - 'afmoderestrictions' => { 304 => '50.3', 306 => '48.3', 307 => '48.3', 316 => '48.3', 317 => '48.3' }, + 'afmicroadjvalue' => { 3 => 0x2, 432 => 0x130 }, + 'afmode' => { 116 => 0x3009, 130 => 0x1022, 183 => 0x16, 425 => 0x5 }, + 'afmoderestrictions' => { 305 => '50.3', 307 => '48.3', 308 => '48.3', 317 => '48.3', 318 => '48.3' }, 'afonaelockbuttonswitch' => { 87 => 0x702 }, - 'afonbutton' => { 303 => '3.1', 304 => '47.1', 319 => 0x83, 320 => 0x83, 321 => 0x83 }, - 'afpoint' => { 36 => 0x13, 115 => 0x18, 183 => 0x15, 195 => 0x1, 326 => 0x308, 424 => 0x1f, 427 => [0x37,0x7], 431 => 0x19, 432 => 0x18, 433 => [0x18,0x20] }, + 'afonbutton' => { 304 => '3.1', 305 => '47.1', 320 => 0x83, 321 => 0x83, 322 => 0x83 }, + 'afpoint' => { 36 => 0x13, 115 => 0x18, 183 => 0x15, 195 => 0x1, 327 => 0x308, 425 => 0x1f, 428 => [0x37,0x7], 432 => 0x19, 433 => 0x18, 434 => [0x18,0x20] }, 'afpointactivationarea' => { 86 => 0x11, 92 => 0x11 }, 'afpointareaexpansion' => { 87 => 0x508 }, - 'afpointatshutterrelease' => { 427 => [0x39,0x9] }, + 'afpointatshutterrelease' => { 428 => [0x39,0x9] }, 'afpointautoselection' => { 87 => 0x50b }, - 'afpointbrightness' => { 87 => 0x50d, 303 => '2.4', 304 => '46.5', 306 => '2.2', 307 => '2.2', 316 => '2.3', 317 => '2.2' }, - 'afpointdetails' => { 326 => 0x31b }, + 'afpointbrightness' => { 87 => 0x50d, 304 => '2.4', 305 => '46.5', 307 => '2.2', 308 => '2.2', 317 => '2.3', 318 => '2.2' }, + 'afpointdetails' => { 327 => 0x31b }, 'afpointdisplayduringfocus' => { 2 => 0x10, 87 => 0x50c }, - 'afpointillumination' => { 86 => 0xa, 303 => '2.3', 304 => '46.2', 306 => '47.2', 307 => '47.2', 311 => '1.2', 312 => '2.3', 313 => '1.2', 316 => '47.2', 317 => '47.2', 318 => '2.4' }, - 'afpointinfocus' => { 427 => [0x38,0x8] }, - 'afpointmode' => { 363 => 0x3 }, - 'afpointposition' => { 116 => 0x2021, 347 => 0x4d }, + 'afpointillumination' => { 86 => 0xa, 304 => '2.3', 305 => '46.2', 307 => '47.2', 308 => '47.2', 312 => '1.2', 313 => '2.3', 314 => '1.2', 317 => '47.2', 318 => '47.2', 319 => '2.4' }, + 'afpointinfocus' => { 428 => [0x38,0x8] }, + 'afpointmode' => { 364 => 0x3 }, + 'afpointposition' => { 116 => 0x2021, 348 => 0x4d }, 'afpointregistration' => { 85 => 0x7 }, 'afpoints' => { 186 => 0x10 }, - 'afpointsel' => { 319 => 0xb, 320 => 0xb, 321 => 0xb }, - 'afpointselected' => { 187 => 0xd, 323 => 0x305, 382 => 0xe, 431 => 0x15, 432 => 0x14, 433 => [0x14,0x1c], 448 => 0x201e }, - 'afpointselected2' => { 363 => 0x4 }, - 'afpointselection' => { 86 => 0xb, 303 => '1.3', 304 => '1.3', 312 => '1.3', 316 => '1.3', 317 => '1.3' }, + 'afpointsel' => { 320 => 0xb, 321 => 0xb, 322 => 0xb }, + 'afpointselected' => { 187 => 0xd, 324 => 0x305, 383 => 0xe, 432 => 0x15, 433 => 0x14, 434 => [0x14,0x1c], 449 => 0x201e }, + 'afpointselected2' => { 364 => 0x4 }, + 'afpointselection' => { 86 => 0xb, 304 => '1.3', 305 => '1.3', 313 => '1.3', 317 => '1.3', 318 => '1.3' }, 'afpointselectionmethod' => { 87 => 0x50f, 88 => 0xc, 89 => 0xd, 92 => 0xd }, - 'afpointsetting' => { 434 => 0x12, 435 => 0x11 }, - 'afpointsinfocus' => { 79 => 0xe, 195 => 0x2, 196 => 0x30, 358 => 0xb, 359 => 0x4, 382 => [0xf,0x3c] }, + 'afpointsetting' => { 435 => 0x12, 436 => 0x11 }, + 'afpointsinfocus' => { 79 => 0xe, 195 => 0x2, 196 => 0x30, 359 => 0xb, 360 => 0x4, 383 => [0xf,0x3c] }, 'afpointsinfocus5d' => { 19 => 0x38 }, 'afpointspotmetering' => { 86 => 0xd }, - 'afpointsselected' => { 196 => 0x1c, 359 => '4.1', 483 => 0x4 }, - 'afpointsspecial' => { 359 => '4.2' }, - 'afpointsunknown1' => { 358 => 0x0 }, - 'afpointsunknown2' => { 358 => 0x2 }, - 'afpointsused' => { 196 => [0xa,0x8], 197 => 0xa, 427 => [0x10,0x16e] }, + 'afpointsselected' => { 196 => 0x1c, 360 => '4.1', 484 => 0x4 }, + 'afpointsspecial' => { 360 => '4.2' }, + 'afpointsunknown1' => { 359 => 0x0 }, + 'afpointsunknown2' => { 359 => 0x2 }, + 'afpointsused' => { 196 => [0xa,0x8], 197 => 0xa, 428 => [0x10,0x16e] }, 'afpointswitching' => { 2 => 0x4 }, - 'afpredictor' => { 358 => 0x4 }, + 'afpredictor' => { 359 => 0x4 }, 'afresponse' => { 239 => 0xad }, - 'afresult' => { 328 => 0x1038 }, - 'afsearch' => { 323 => 0x303 }, + 'afresult' => { 329 => 0x1038 }, + 'afsearch' => { 324 => 0x303 }, 'afsensoractive' => { 183 => 0x1 }, 'afstable' => { 1 => 0x7 }, - 'afstatus' => { 414 => 0x1200 }, - 'afstatus_00_b4' => { 430 => 0x0 }, - 'afstatus_01_c4' => { 430 => 0x2 }, - 'afstatus_02_d4' => { 430 => 0x4 }, - 'afstatus_03_e4' => { 430 => 0x6 }, - 'afstatus_04_f4' => { 430 => 0x8 }, - 'afstatus_05_g4' => { 430 => 0xa }, - 'afstatus_06_h4' => { 430 => 0xc }, - 'afstatus_07_b3' => { 430 => 0xe }, - 'afstatus_08_c3' => { 430 => 0x10 }, - 'afstatus_09_d3' => { 430 => 0x12 }, - 'afstatus_10_e3' => { 430 => 0x14 }, - 'afstatus_11_f3' => { 430 => 0x16 }, - 'afstatus_12_g3' => { 430 => 0x18 }, - 'afstatus_13_h3' => { 430 => 0x1a }, - 'afstatus_14_b2' => { 430 => 0x1c }, - 'afstatus_15_c2' => { 430 => 0x1e }, - 'afstatus_16_d2' => { 430 => 0x20 }, - 'afstatus_17_e2' => { 430 => 0x22 }, - 'afstatus_18_f2' => { 430 => 0x24 }, - 'afstatus_19_g2' => { 430 => 0x26 }, - 'afstatus_20_h2' => { 430 => 0x28 }, - 'afstatus_21_c1' => { 430 => 0x2a }, - 'afstatus_22_d1' => { 430 => 0x2c }, - 'afstatus_23_e1' => { 430 => 0x2e }, - 'afstatus_24_f1' => { 430 => 0x30 }, - 'afstatus_25_g1' => { 430 => 0x32 }, - 'afstatus_26_a7_vertical' => { 430 => 0x34 }, - 'afstatus_27_a6_vertical' => { 430 => 0x36 }, - 'afstatus_28_a5_vertical' => { 430 => 0x38 }, - 'afstatus_29_c7_vertical' => { 430 => 0x3a }, - 'afstatus_30_c6_vertical' => { 430 => 0x3c }, - 'afstatus_31_c5_vertical' => { 430 => 0x3e }, - 'afstatus_32_e7_vertical' => { 430 => 0x40 }, - 'afstatus_33_e6_center_vertical' => { 430 => 0x42 }, - 'afstatus_34_e5_vertical' => { 430 => 0x44 }, - 'afstatus_35_g7_vertical' => { 430 => 0x46 }, - 'afstatus_36_g6_vertical' => { 430 => 0x48 }, - 'afstatus_37_g5_vertical' => { 430 => 0x4a }, - 'afstatus_38_i7_vertical' => { 430 => 0x4c }, - 'afstatus_39_i6_vertical' => { 430 => 0x4e }, - 'afstatus_40_i5_vertical' => { 430 => 0x50 }, - 'afstatus_41_a7' => { 430 => 0x52 }, - 'afstatus_42_b7' => { 430 => 0x54 }, - 'afstatus_43_c7' => { 430 => 0x56 }, - 'afstatus_44_d7' => { 430 => 0x58 }, - 'afstatus_45_e7' => { 430 => 0x5a }, - 'afstatus_46_f7' => { 430 => 0x5c }, - 'afstatus_47_g7' => { 430 => 0x5e }, - 'afstatus_48_h7' => { 430 => 0x60 }, - 'afstatus_49_i7' => { 430 => 0x62 }, - 'afstatus_50_a6' => { 430 => 0x64 }, - 'afstatus_51_b6' => { 430 => 0x66 }, - 'afstatus_52_c6' => { 430 => 0x68 }, - 'afstatus_53_d6' => { 430 => 0x6a }, - 'afstatus_54_e6_center' => { 430 => 0x6c }, - 'afstatus_55_f6' => { 430 => 0x6e }, - 'afstatus_56_g6' => { 430 => 0x70 }, - 'afstatus_57_h6' => { 430 => 0x72 }, - 'afstatus_58_i6' => { 430 => 0x74 }, - 'afstatus_59_a5' => { 430 => 0x76 }, - 'afstatus_60_b5' => { 430 => 0x78 }, - 'afstatus_61_c5' => { 430 => 0x7a }, - 'afstatus_62_d5' => { 430 => 0x7c }, - 'afstatus_63_e5' => { 430 => 0x7e }, - 'afstatus_64_f5' => { 430 => 0x80 }, - 'afstatus_65_g5' => { 430 => 0x82 }, - 'afstatus_66_h5' => { 430 => 0x84 }, - 'afstatus_67_i5' => { 430 => 0x86 }, - 'afstatus_68_c11' => { 430 => 0x88 }, - 'afstatus_69_d11' => { 430 => 0x8a }, - 'afstatus_70_e11' => { 430 => 0x8c }, - 'afstatus_71_f11' => { 430 => 0x8e }, - 'afstatus_72_g11' => { 430 => 0x90 }, - 'afstatus_73_b10' => { 430 => 0x92 }, - 'afstatus_74_c10' => { 430 => 0x94 }, - 'afstatus_75_d10' => { 430 => 0x96 }, - 'afstatus_76_e10' => { 430 => 0x98 }, - 'afstatus_77_f10' => { 430 => 0x9a }, - 'afstatus_78_g10' => { 430 => 0x9c }, - 'afstatus_79_h10' => { 430 => 0x9e }, - 'afstatus_80_b9' => { 430 => 0xa0 }, - 'afstatus_81_c9' => { 430 => 0xa2 }, - 'afstatus_82_d9' => { 430 => 0xa4 }, - 'afstatus_83_e9' => { 430 => 0xa6 }, - 'afstatus_84_f9' => { 430 => 0xa8 }, - 'afstatus_85_g9' => { 430 => 0xaa }, - 'afstatus_86_h9' => { 430 => 0xac }, - 'afstatus_87_b8' => { 430 => 0xae }, - 'afstatus_88_c8' => { 430 => 0xb0 }, - 'afstatus_89_d8' => { 430 => 0xb2 }, - 'afstatus_90_e8' => { 430 => 0xb4 }, - 'afstatus_91_f8' => { 430 => 0xb6 }, - 'afstatus_92_g8' => { 430 => 0xb8 }, - 'afstatus_93_h8' => { 430 => 0xba }, - 'afstatus_94_e6_center_f2-8' => { 430 => 0xbc }, - 'afstatusactivesensor' => { 183 => 0x2, 427 => [0x4,0x3b], 431 => 0x1e, 432 => 0x1b, 433 => [0x1b,0x21] }, - 'afstatusbottom' => { 183 => 0x8, 431 => 0x2a, 432 => 0x21, 433 => 0x21 }, - 'afstatusbottom-left' => { 183 => 0x12, 432 => 0x2b, 433 => 0x2b }, - 'afstatusbottom-right' => { 183 => 0x6, 432 => 0x1f, 433 => 0x1f }, - 'afstatusbottomassist-left' => { 431 => 0x28 }, - 'afstatusbottomassist-right' => { 431 => 0x2c }, - 'afstatusbottomhorizontal' => { 428 => 0x10, 429 => 0x1c }, - 'afstatusbottomvertical' => { 428 => 0x16, 429 => 0x26 }, - 'afstatuscenter-10' => { 431 => 0x34 }, - 'afstatuscenter-11' => { 431 => 0x36 }, - 'afstatuscenter-12' => { 431 => 0x38 }, - 'afstatuscenter-14' => { 431 => 0x3c }, - 'afstatuscenter-7' => { 431 => 0x2e }, - 'afstatuscenter-9' => { 431 => 0x32 }, - 'afstatuscenter-horizontal' => { 431 => 0x30 }, - 'afstatuscenter-vertical' => { 431 => 0x3a }, - 'afstatuscenterf2-8' => { 431 => 0x4c }, - 'afstatuscenterhorizontal' => { 183 => 0x2f, 428 => 0xc, 429 => 0x18, 432 => 0x2f, 433 => 0x2f }, - 'afstatuscentervertical' => { 183 => 0xc, 428 => 0x14, 429 => 0x22, 432 => 0x25, 433 => 0x25 }, - 'afstatusfarleft' => { 428 => 0x6, 431 => 0x26 }, - 'afstatusfarlefthorizontal' => { 429 => 0x4 }, - 'afstatusfarleftvertical' => { 429 => 0x12 }, - 'afstatusfarright' => { 428 => 0x18, 431 => 0x44 }, - 'afstatusfarrighthorizontal' => { 429 => 0x2c }, - 'afstatusfarrightvertical' => { 429 => 0x34 }, - 'afstatusleft' => { 183 => 0x2d, 428 => 0x2, 431 => 0x22, 432 => 0x2d, 433 => 0x2d }, - 'afstatuslefthorizontal' => { 429 => 0x6 }, - 'afstatusleftvertical' => { 429 => 0xe }, - 'afstatuslower-left' => { 428 => 0x4, 431 => 0x24 }, - 'afstatuslower-lefthorizontal' => { 429 => 0xa }, - 'afstatuslower-leftvertical' => { 429 => 0x10 }, - 'afstatuslower-middle' => { 428 => 0x22, 429 => 0x24 }, - 'afstatuslower-right' => { 428 => 0x1e, 431 => 0x4a }, - 'afstatuslower-righthorizontal' => { 429 => 0x32 }, - 'afstatuslower-rightvertical' => { 429 => 0x3a }, - 'afstatuslowerfarleft' => { 429 => 0x8 }, - 'afstatuslowerfarright' => { 429 => 0x30 }, - 'afstatusmiddlehorizontal' => { 183 => 0xa, 432 => 0x23, 433 => 0x23 }, - 'afstatusnearleft' => { 428 => 0xe, 429 => 0x1a }, - 'afstatusnearright' => { 428 => 0xa, 429 => 0x16 }, - 'afstatusright' => { 183 => 0x31, 428 => 0x1c, 431 => 0x48, 432 => 0x31, 433 => 0x31 }, - 'afstatusrighthorizontal' => { 429 => 0x2e }, - 'afstatusrightvertical' => { 429 => 0x38 }, - 'afstatustop' => { 183 => 0xe, 431 => 0x40, 432 => 0x27, 433 => 0x27 }, - 'afstatustop-left' => { 183 => 0x10, 432 => 0x29, 433 => 0x29 }, - 'afstatustop-right' => { 183 => 0x4, 432 => 0x1d, 433 => 0x1d }, - 'afstatustopassist-left' => { 431 => 0x3e }, - 'afstatustopassist-right' => { 431 => 0x42 }, - 'afstatustophorizontal' => { 428 => 0x8, 429 => 0x14 }, - 'afstatustopvertical' => { 428 => 0x12, 429 => 0x1e }, - 'afstatusupper-left' => { 428 => 0x0, 431 => 0x20 }, - 'afstatusupper-lefthorizontal' => { 429 => 0x2 }, - 'afstatusupper-leftvertical' => { 429 => 0xc }, - 'afstatusupper-middle' => { 428 => 0x20, 429 => 0x20 }, - 'afstatusupper-right' => { 428 => 0x1a, 431 => 0x46 }, - 'afstatusupper-righthorizontal' => { 429 => 0x2a }, - 'afstatusupper-rightvertical' => { 429 => 0x36 }, - 'afstatusupperfarleft' => { 429 => 0x0 }, - 'afstatusupperfarright' => { 429 => 0x28 }, + 'afstatus' => { 415 => 0x1200 }, + 'afstatus_00_b4' => { 431 => 0x0 }, + 'afstatus_01_c4' => { 431 => 0x2 }, + 'afstatus_02_d4' => { 431 => 0x4 }, + 'afstatus_03_e4' => { 431 => 0x6 }, + 'afstatus_04_f4' => { 431 => 0x8 }, + 'afstatus_05_g4' => { 431 => 0xa }, + 'afstatus_06_h4' => { 431 => 0xc }, + 'afstatus_07_b3' => { 431 => 0xe }, + 'afstatus_08_c3' => { 431 => 0x10 }, + 'afstatus_09_d3' => { 431 => 0x12 }, + 'afstatus_10_e3' => { 431 => 0x14 }, + 'afstatus_11_f3' => { 431 => 0x16 }, + 'afstatus_12_g3' => { 431 => 0x18 }, + 'afstatus_13_h3' => { 431 => 0x1a }, + 'afstatus_14_b2' => { 431 => 0x1c }, + 'afstatus_15_c2' => { 431 => 0x1e }, + 'afstatus_16_d2' => { 431 => 0x20 }, + 'afstatus_17_e2' => { 431 => 0x22 }, + 'afstatus_18_f2' => { 431 => 0x24 }, + 'afstatus_19_g2' => { 431 => 0x26 }, + 'afstatus_20_h2' => { 431 => 0x28 }, + 'afstatus_21_c1' => { 431 => 0x2a }, + 'afstatus_22_d1' => { 431 => 0x2c }, + 'afstatus_23_e1' => { 431 => 0x2e }, + 'afstatus_24_f1' => { 431 => 0x30 }, + 'afstatus_25_g1' => { 431 => 0x32 }, + 'afstatus_26_a7_vertical' => { 431 => 0x34 }, + 'afstatus_27_a6_vertical' => { 431 => 0x36 }, + 'afstatus_28_a5_vertical' => { 431 => 0x38 }, + 'afstatus_29_c7_vertical' => { 431 => 0x3a }, + 'afstatus_30_c6_vertical' => { 431 => 0x3c }, + 'afstatus_31_c5_vertical' => { 431 => 0x3e }, + 'afstatus_32_e7_vertical' => { 431 => 0x40 }, + 'afstatus_33_e6_center_vertical' => { 431 => 0x42 }, + 'afstatus_34_e5_vertical' => { 431 => 0x44 }, + 'afstatus_35_g7_vertical' => { 431 => 0x46 }, + 'afstatus_36_g6_vertical' => { 431 => 0x48 }, + 'afstatus_37_g5_vertical' => { 431 => 0x4a }, + 'afstatus_38_i7_vertical' => { 431 => 0x4c }, + 'afstatus_39_i6_vertical' => { 431 => 0x4e }, + 'afstatus_40_i5_vertical' => { 431 => 0x50 }, + 'afstatus_41_a7' => { 431 => 0x52 }, + 'afstatus_42_b7' => { 431 => 0x54 }, + 'afstatus_43_c7' => { 431 => 0x56 }, + 'afstatus_44_d7' => { 431 => 0x58 }, + 'afstatus_45_e7' => { 431 => 0x5a }, + 'afstatus_46_f7' => { 431 => 0x5c }, + 'afstatus_47_g7' => { 431 => 0x5e }, + 'afstatus_48_h7' => { 431 => 0x60 }, + 'afstatus_49_i7' => { 431 => 0x62 }, + 'afstatus_50_a6' => { 431 => 0x64 }, + 'afstatus_51_b6' => { 431 => 0x66 }, + 'afstatus_52_c6' => { 431 => 0x68 }, + 'afstatus_53_d6' => { 431 => 0x6a }, + 'afstatus_54_e6_center' => { 431 => 0x6c }, + 'afstatus_55_f6' => { 431 => 0x6e }, + 'afstatus_56_g6' => { 431 => 0x70 }, + 'afstatus_57_h6' => { 431 => 0x72 }, + 'afstatus_58_i6' => { 431 => 0x74 }, + 'afstatus_59_a5' => { 431 => 0x76 }, + 'afstatus_60_b5' => { 431 => 0x78 }, + 'afstatus_61_c5' => { 431 => 0x7a }, + 'afstatus_62_d5' => { 431 => 0x7c }, + 'afstatus_63_e5' => { 431 => 0x7e }, + 'afstatus_64_f5' => { 431 => 0x80 }, + 'afstatus_65_g5' => { 431 => 0x82 }, + 'afstatus_66_h5' => { 431 => 0x84 }, + 'afstatus_67_i5' => { 431 => 0x86 }, + 'afstatus_68_c11' => { 431 => 0x88 }, + 'afstatus_69_d11' => { 431 => 0x8a }, + 'afstatus_70_e11' => { 431 => 0x8c }, + 'afstatus_71_f11' => { 431 => 0x8e }, + 'afstatus_72_g11' => { 431 => 0x90 }, + 'afstatus_73_b10' => { 431 => 0x92 }, + 'afstatus_74_c10' => { 431 => 0x94 }, + 'afstatus_75_d10' => { 431 => 0x96 }, + 'afstatus_76_e10' => { 431 => 0x98 }, + 'afstatus_77_f10' => { 431 => 0x9a }, + 'afstatus_78_g10' => { 431 => 0x9c }, + 'afstatus_79_h10' => { 431 => 0x9e }, + 'afstatus_80_b9' => { 431 => 0xa0 }, + 'afstatus_81_c9' => { 431 => 0xa2 }, + 'afstatus_82_d9' => { 431 => 0xa4 }, + 'afstatus_83_e9' => { 431 => 0xa6 }, + 'afstatus_84_f9' => { 431 => 0xa8 }, + 'afstatus_85_g9' => { 431 => 0xaa }, + 'afstatus_86_h9' => { 431 => 0xac }, + 'afstatus_87_b8' => { 431 => 0xae }, + 'afstatus_88_c8' => { 431 => 0xb0 }, + 'afstatus_89_d8' => { 431 => 0xb2 }, + 'afstatus_90_e8' => { 431 => 0xb4 }, + 'afstatus_91_f8' => { 431 => 0xb6 }, + 'afstatus_92_g8' => { 431 => 0xb8 }, + 'afstatus_93_h8' => { 431 => 0xba }, + 'afstatus_94_e6_center_f2-8' => { 431 => 0xbc }, + 'afstatusactivesensor' => { 183 => 0x2, 428 => [0x4,0x3b], 432 => 0x1e, 433 => 0x1b, 434 => [0x1b,0x21] }, + 'afstatusbottom' => { 183 => 0x8, 432 => 0x2a, 433 => 0x21, 434 => 0x21 }, + 'afstatusbottom-left' => { 183 => 0x12, 433 => 0x2b, 434 => 0x2b }, + 'afstatusbottom-right' => { 183 => 0x6, 433 => 0x1f, 434 => 0x1f }, + 'afstatusbottomassist-left' => { 432 => 0x28 }, + 'afstatusbottomassist-right' => { 432 => 0x2c }, + 'afstatusbottomhorizontal' => { 429 => 0x10, 430 => 0x1c }, + 'afstatusbottomvertical' => { 429 => 0x16, 430 => 0x26 }, + 'afstatuscenter-10' => { 432 => 0x34 }, + 'afstatuscenter-11' => { 432 => 0x36 }, + 'afstatuscenter-12' => { 432 => 0x38 }, + 'afstatuscenter-14' => { 432 => 0x3c }, + 'afstatuscenter-7' => { 432 => 0x2e }, + 'afstatuscenter-9' => { 432 => 0x32 }, + 'afstatuscenter-horizontal' => { 432 => 0x30 }, + 'afstatuscenter-vertical' => { 432 => 0x3a }, + 'afstatuscenterf2-8' => { 432 => 0x4c }, + 'afstatuscenterhorizontal' => { 183 => 0x2f, 429 => 0xc, 430 => 0x18, 433 => 0x2f, 434 => 0x2f }, + 'afstatuscentervertical' => { 183 => 0xc, 429 => 0x14, 430 => 0x22, 433 => 0x25, 434 => 0x25 }, + 'afstatusfarleft' => { 429 => 0x6, 432 => 0x26 }, + 'afstatusfarlefthorizontal' => { 430 => 0x4 }, + 'afstatusfarleftvertical' => { 430 => 0x12 }, + 'afstatusfarright' => { 429 => 0x18, 432 => 0x44 }, + 'afstatusfarrighthorizontal' => { 430 => 0x2c }, + 'afstatusfarrightvertical' => { 430 => 0x34 }, + 'afstatusleft' => { 183 => 0x2d, 429 => 0x2, 432 => 0x22, 433 => 0x2d, 434 => 0x2d }, + 'afstatuslefthorizontal' => { 430 => 0x6 }, + 'afstatusleftvertical' => { 430 => 0xe }, + 'afstatuslower-left' => { 429 => 0x4, 432 => 0x24 }, + 'afstatuslower-lefthorizontal' => { 430 => 0xa }, + 'afstatuslower-leftvertical' => { 430 => 0x10 }, + 'afstatuslower-middle' => { 429 => 0x22, 430 => 0x24 }, + 'afstatuslower-right' => { 429 => 0x1e, 432 => 0x4a }, + 'afstatuslower-righthorizontal' => { 430 => 0x32 }, + 'afstatuslower-rightvertical' => { 430 => 0x3a }, + 'afstatuslowerfarleft' => { 430 => 0x8 }, + 'afstatuslowerfarright' => { 430 => 0x30 }, + 'afstatusmiddlehorizontal' => { 183 => 0xa, 433 => 0x23, 434 => 0x23 }, + 'afstatusnearleft' => { 429 => 0xe, 430 => 0x1a }, + 'afstatusnearright' => { 429 => 0xa, 430 => 0x16 }, + 'afstatusright' => { 183 => 0x31, 429 => 0x1c, 432 => 0x48, 433 => 0x31, 434 => 0x31 }, + 'afstatusrighthorizontal' => { 430 => 0x2e }, + 'afstatusrightvertical' => { 430 => 0x38 }, + 'afstatustop' => { 183 => 0xe, 432 => 0x40, 433 => 0x27, 434 => 0x27 }, + 'afstatustop-left' => { 183 => 0x10, 433 => 0x29, 434 => 0x29 }, + 'afstatustop-right' => { 183 => 0x4, 433 => 0x1d, 434 => 0x1d }, + 'afstatustopassist-left' => { 432 => 0x3e }, + 'afstatustopassist-right' => { 432 => 0x42 }, + 'afstatustophorizontal' => { 429 => 0x8, 430 => 0x14 }, + 'afstatustopvertical' => { 429 => 0x12, 430 => 0x1e }, + 'afstatusupper-left' => { 429 => 0x0, 432 => 0x20 }, + 'afstatusupper-lefthorizontal' => { 430 => 0x2 }, + 'afstatusupper-leftvertical' => { 430 => 0xc }, + 'afstatusupper-middle' => { 429 => 0x20, 430 => 0x20 }, + 'afstatusupper-right' => { 429 => 0x1a, 432 => 0x46 }, + 'afstatusupper-righthorizontal' => { 430 => 0x2a }, + 'afstatusupper-rightvertical' => { 430 => 0x36 }, + 'afstatusupperfarleft' => { 430 => 0x0 }, + 'afstatusupperfarright' => { 430 => 0x28 }, 'afstatusviewfinder' => { 2 => 0x12 }, - 'aftracking' => { 448 => 0x2021 }, + 'aftracking' => { 449 => 0x2021 }, 'aftrackingsensitivity' => { 2 => 0x2 }, - 'aftype' => { 427 => 0x2 }, - 'afwithshutter' => { 434 => 0x2a }, - 'aggregateissuenumber' => { 529 => 'aggregateIssueNumber' }, - 'aggregationtype' => { 529 => 'aggregationType' }, - 'agreement' => { 532 => 'agreement' }, + 'aftype' => { 428 => 0x2 }, + 'afwithshutter' => { 435 => 0x2a }, + 'aggregateissuenumber' => { 530 => 'aggregateIssueNumber' }, + 'aggregationtype' => { 530 => 'aggregationType' }, + 'agreement' => { 533 => 'agreement' }, 'ah2greeninterpolationthreshold' => { 141 => 0xe4e }, - 'airplanemode' => { 244 => 0x722, 245 => 0x624, 246 => 0x654, 247 => 0x6bc }, + 'airplanemode' => { 244 => 0x722, 245 => 0x732, 246 => 0x624, 247 => 0x654, 248 => 0x6bc }, 'aiservocontinuousshooting' => { 86 => 0x15 }, 'aiservofirstimage' => { 2 => 0x5 }, 'aiservofirstimagepriority' => { 87 => 0x519 }, @@ -958,161 +960,161 @@ my %tagLookup = ( 'aiservosecondimagepriority' => { 87 => 0x51a }, 'aiservotrackingmethod' => { 87 => 0x504 }, 'aiservotrackingsensitivity' => { 86 => 0x14, 87 => 0x502 }, - 'aisubjecttrackingmode' => { 323 => 0x309 }, - 'album' => { 399 => ['albm',"\xa9alb"], 401 => 'album', 407 => ['albm',"\xa9alb"], 539 => 'album' }, - 'albumartist' => { 182 => 'WM/AlbumArtist', 399 => 'aART', 407 => 'albr' }, + 'aisubjecttrackingmode' => { 324 => 0x309 }, + 'album' => { 400 => ['albm',"\xa9alb"], 402 => 'album', 408 => ['albm',"\xa9alb"], 540 => 'album' }, + 'albumartist' => { 182 => 'WM/AlbumArtist', 400 => 'aART', 408 => 'albr' }, 'albumcoverurl' => { 182 => 'WM/AlbumCoverURL' }, - 'albumid' => { 399 => 'plID' }, + 'albumid' => { 400 => 'plID' }, 'albumtitle' => { 182 => 'WM/AlbumTitle' }, - 'alreadyapplied' => { 510 => 'AlreadyApplied', 512 => 'AlreadyApplied' }, - 'alternatetitle' => { 529 => 'alternateTitle' }, - 'alternatetitlea-lang' => { 529 => [\'alternateTitle','alternateTitleA-lang'] }, - 'alternatetitlea-platform' => { 529 => [\'alternateTitle','alternateTitleA-platform'] }, - 'alternatetitletext' => { 529 => [\'alternateTitle','alternateTitleText'] }, + 'alreadyapplied' => { 511 => 'AlreadyApplied', 513 => 'AlreadyApplied' }, + 'alternatetitle' => { 530 => 'alternateTitle' }, + 'alternatetitlea-lang' => { 530 => [\'alternateTitle','alternateTitleA-lang'] }, + 'alternatetitlea-platform' => { 530 => [\'alternateTitle','alternateTitleA-platform'] }, + 'alternatetitletext' => { 530 => [\'alternateTitle','alternateTitleText'] }, 'altitude' => { 200 => 0x6 }, - 'alttapename' => { 539 => 'altTapeName' }, - 'alttextaccessibility' => { 523 => 'AltTextAccessibility' }, - 'alttimecode' => { 539 => 'altTimecode' }, - 'alttimecodetimeformat' => { 539 => [\'altTimecode','altTimecodeTimeFormat'] }, - 'alttimecodetimevalue' => { 539 => [\'altTimecode','altTimecodeTimeValue'] }, - 'alttimecodevalue' => { 539 => [\'altTimecode','altTimecodeValue'] }, + 'alttapename' => { 540 => 'altTapeName' }, + 'alttextaccessibility' => { 524 => 'AltTextAccessibility' }, + 'alttimecode' => { 540 => 'altTimecode' }, + 'alttimecodetimeformat' => { 540 => [\'altTimecode','altTimecodeTimeFormat'] }, + 'alttimecodetimevalue' => { 540 => [\'altTimecode','altTimecodeTimeValue'] }, + 'alttimecodevalue' => { 540 => [\'altTimecode','altTimecodeValue'] }, 'ambienceselection' => { 4 => 0x1 }, - 'ambientinfrared' => { 410 => 0x5c }, - 'ambientlight' => { 410 => 0x5e }, - 'ambienttemperature' => { 122 => 0x9400, 408 => 0x14, 409 => 0x46, 410 => 0x50, 474 => 0x4, 517 => 'Temperature' }, - 'ambienttemperaturefahrenheit' => { 408 => 0x13, 409 => 0x44, 410 => 0x4e }, + 'ambientinfrared' => { 411 => 0x5c }, + 'ambientlight' => { 411 => 0x5e }, + 'ambienttemperature' => { 122 => 0x9400, 409 => 0x14, 410 => 0x46, 411 => 0x50, 475 => 0x4, 518 => 'Temperature' }, + 'ambienttemperaturefahrenheit' => { 409 => 0x13, 410 => 0x44, 411 => 0x4e }, 'analogbalance' => { 122 => 0xc627 }, 'analogcaptureiso' => { 141 => 0x89e }, 'analogisotable' => { 141 => 0x89d }, - 'androidcapturefps' => { 401 => 'com.android.capture.fps' }, - 'androidversion' => { 401 => 'com.android.version' }, + 'androidcapturefps' => { 402 => 'com.android.capture.fps' }, + 'androidversion' => { 402 => 'com.android.version' }, 'angleadj' => { 106 => 0x10003, 112 => 0x8b }, - 'angleinforoll' => { 506 => 'AngleInfoRoll' }, - 'angleinfoyaw' => { 506 => 'AngleInfoYaw' }, - 'anti-blur' => { 448 => 0xb04b }, + 'angleinforoll' => { 507 => 'AngleInfoRoll' }, + 'angleinfoyaw' => { 507 => 'AngleInfoYaw' }, + 'anti-blur' => { 449 => 0xb04b }, 'antialiasstrength' => { 122 => 0xc632 }, - 'aperturelock' => { 304 => '38.2', 306 => '38.2', 307 => '38.2', 316 => '38.2', 317 => '38.2', 319 => 0xb8, 320 => 0xb8, 321 => 0xb8 }, - 'aperturemode' => { 407 => 'apmd' }, + 'aperturelock' => { 305 => '38.2', 307 => '38.2', 308 => '38.2', 317 => '38.2', 318 => '38.2', 320 => 0xb8, 321 => 0xb8, 322 => 0xb8 }, + 'aperturemode' => { 408 => 'apmd' }, 'aperturerange' => { 87 => 0x10d }, - 'apertureringuse' => { 363 => '1.4' }, - 'aperturesetting' => { 187 => 0x7, 434 => 0x30, 435 => 0x29, 436 => 0x1 }, - 'aperturevalue' => { 96 => 0x2, 122 => 0x9202, 328 => 0x1002, 391 => 0x401, 516 => 'ApertureValue' }, - 'appinfo' => { 489 => 'AppInfo' }, - 'appinfoapplication' => { 489 => [\'AppInfo','AppInfoApplication'] }, - 'appinfoitemuri' => { 489 => [\'AppInfo','AppInfoItemURI'] }, - 'appinfoversion' => { 489 => [\'AppInfo','AppInfoVersion'] }, - 'applekeywords' => { 332 => 'AAPL:Keywords' }, - 'applephotosvariationidentifier' => { 401 => 'apple.photos.variation-identifier' }, - 'applestoreaccount' => { 399 => 'apID' }, - 'applestoreaccounttype' => { 399 => 'akID' }, - 'applestorecatalogid' => { 399 => 'cnID' }, - 'applestorecountry' => { 399 => 'sfID' }, + 'apertureringuse' => { 364 => '1.4' }, + 'aperturesetting' => { 187 => 0x7, 435 => 0x30, 436 => 0x29, 437 => 0x1 }, + 'aperturevalue' => { 96 => 0x2, 122 => 0x9202, 329 => 0x1002, 392 => 0x401, 517 => 'ApertureValue' }, + 'appinfo' => { 490 => 'AppInfo' }, + 'appinfoapplication' => { 490 => [\'AppInfo','AppInfoApplication'] }, + 'appinfoitemuri' => { 490 => [\'AppInfo','AppInfoItemURI'] }, + 'appinfoversion' => { 490 => [\'AppInfo','AppInfoVersion'] }, + 'applekeywords' => { 333 => 'AAPL:Keywords' }, + 'applephotosvariationidentifier' => { 402 => 'apple.photos.variation-identifier' }, + 'applestoreaccount' => { 400 => 'apID' }, + 'applestoreaccounttype' => { 400 => 'akID' }, + 'applestorecatalogid' => { 400 => 'cnID' }, + 'applestorecountry' => { 400 => 'sfID' }, 'applicationkeystring' => { 141 => 0x400 }, - 'applicationnotes' => { 122 => 0x2bc, 352 => 0x2bc }, + 'applicationnotes' => { 122 => 0x2bc, 353 => 0x2bc }, 'applicationrecordversion' => { 134 => 0x0 }, - 'applyautomatically' => { 337 => 'ApplyAutomatically' }, + 'applyautomatically' => { 338 => 'ApplyAutomatically' }, 'applyshootingmeteringmode' => { 87 => 0x10e }, - 'approved' => { 518 => 'Approved' }, - 'approvedby' => { 518 => 'ApprovedBy' }, - 'approximatefnumber' => { 342 => 0x313, 349 => 0x3406 }, - 'approximatefocusdistance' => { 507 => 'ApproximateFocusDistance' }, - 'appversion' => { 522 => 'AppVersion' }, - 'aps-csizecapture' => { 467 => 0x114, 468 => [0x114,0x1eb,0x1ee,0x21a,0x21c] }, + 'approved' => { 519 => 'Approved' }, + 'approvedby' => { 519 => 'ApprovedBy' }, + 'approximatefnumber' => { 343 => 0x313, 350 => 0x3406 }, + 'approximatefocusdistance' => { 508 => 'ApproximateFocusDistance' }, + 'appversion' => { 523 => 'AppVersion' }, + 'aps-csizecapture' => { 468 => 0x114, 469 => [0x114,0x1eb,0x1ee,0x21a,0x21c] }, 'aquahsl' => { 106 => 0x20914 }, 'armidentifier' => { 135 => 0x78 }, 'armversion' => { 135 => 0x7a }, - 'arranger' => { 399 => "\xa9arg", 407 => "\xa9arg" }, - 'arrangerkeywords' => { 407 => "\xa9ark" }, - 'artdirector' => { 399 => "\xa9ard" }, - 'artfilter' => { 323 => 0x529 }, - 'artfiltereffect' => { 323 => 0x52f }, - 'artist' => { 122 => 0x13b, 336 => 'Artist', 352 => 0x13b, 382 => 0x22e, 399 => "\xa9ART", 401 => 'artist', 407 => "\xa9ART", 535 => 'Artist', 539 => 'artist' }, - 'artistid' => { 399 => 'atID' }, + 'arranger' => { 400 => "\xa9arg", 408 => "\xa9arg" }, + 'arrangerkeywords' => { 408 => "\xa9ark" }, + 'artdirector' => { 400 => "\xa9ard" }, + 'artfilter' => { 324 => 0x529 }, + 'artfiltereffect' => { 324 => 0x52f }, + 'artist' => { 122 => 0x13b, 337 => 'Artist', 353 => 0x13b, 383 => 0x22e, 400 => "\xa9ART", 402 => 'artist', 408 => "\xa9ART", 536 => 'Artist', 540 => 'artist' }, + 'artistid' => { 400 => 'atID' }, 'artmode' => { 116 => 0x301b }, 'artmodeparameters' => { 116 => 0x310b }, - 'artwork' => { 401 => 'artwork' }, - 'artworkcircadatecreated' => { 524 => [\'ArtworkOrObject','ArtworkOrObjectAOCircaDateCreated'] }, - 'artworkcontentdescription' => { 524 => [\'ArtworkOrObject','ArtworkOrObjectAOContentDescription'] }, - 'artworkcontributiondescription' => { 524 => [\'ArtworkOrObject','ArtworkOrObjectAOContributionDescription'] }, - 'artworkcopyrightnotice' => { 524 => [\'ArtworkOrObject','ArtworkOrObjectAOCopyrightNotice'] }, - 'artworkcopyrightownerid' => { 524 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentCopyrightOwnerId'] }, - 'artworkcopyrightownername' => { 524 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentCopyrightOwnerName'] }, - 'artworkcreator' => { 524 => [\'ArtworkOrObject','ArtworkOrObjectAOCreator'] }, - 'artworkcreatorid' => { 524 => [\'ArtworkOrObject','ArtworkOrObjectAOCreatorId'] }, - 'artworkdatecreated' => { 524 => [\'ArtworkOrObject','ArtworkOrObjectAODateCreated'] }, - 'artworklicensorid' => { 524 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentLicensorId'] }, - 'artworklicensorname' => { 524 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentLicensorName'] }, - 'artworkorobject' => { 524 => 'ArtworkOrObject' }, - 'artworkphysicaldescription' => { 524 => [\'ArtworkOrObject','ArtworkOrObjectAOPhysicalDescription'] }, - 'artworksource' => { 524 => [\'ArtworkOrObject','ArtworkOrObjectAOSource'] }, - 'artworksourceinventoryno' => { 524 => [\'ArtworkOrObject','ArtworkOrObjectAOSourceInvNo'] }, - 'artworksourceinvurl' => { 524 => [\'ArtworkOrObject','ArtworkOrObjectAOSourceInvURL'] }, - 'artworkstyleperiod' => { 524 => [\'ArtworkOrObject','ArtworkOrObjectAOStylePeriod'] }, - 'artworktitle' => { 524 => [\'ArtworkOrObject','ArtworkOrObjectAOTitle'] }, - 'aspectframe' => { 327 => 0x1113 }, - 'aspectratio' => { 5 => 0x0, 327 => 0x1112, 382 => 0x80, 434 => 0x55, 435 => 0x55, 436 => 0xa, 461 => [0x192c,0x1a88], 462 => 0x192c, 463 => 0x1958, 464 => 0x192c, 465 => 0x188c }, - 'assetid' => { 500 => 'AssetID' }, + 'artwork' => { 402 => 'artwork' }, + 'artworkcircadatecreated' => { 525 => [\'ArtworkOrObject','ArtworkOrObjectAOCircaDateCreated'] }, + 'artworkcontentdescription' => { 525 => [\'ArtworkOrObject','ArtworkOrObjectAOContentDescription'] }, + 'artworkcontributiondescription' => { 525 => [\'ArtworkOrObject','ArtworkOrObjectAOContributionDescription'] }, + 'artworkcopyrightnotice' => { 525 => [\'ArtworkOrObject','ArtworkOrObjectAOCopyrightNotice'] }, + 'artworkcopyrightownerid' => { 525 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentCopyrightOwnerId'] }, + 'artworkcopyrightownername' => { 525 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentCopyrightOwnerName'] }, + 'artworkcreator' => { 525 => [\'ArtworkOrObject','ArtworkOrObjectAOCreator'] }, + 'artworkcreatorid' => { 525 => [\'ArtworkOrObject','ArtworkOrObjectAOCreatorId'] }, + 'artworkdatecreated' => { 525 => [\'ArtworkOrObject','ArtworkOrObjectAODateCreated'] }, + 'artworklicensorid' => { 525 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentLicensorId'] }, + 'artworklicensorname' => { 525 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentLicensorName'] }, + 'artworkorobject' => { 525 => 'ArtworkOrObject' }, + 'artworkphysicaldescription' => { 525 => [\'ArtworkOrObject','ArtworkOrObjectAOPhysicalDescription'] }, + 'artworksource' => { 525 => [\'ArtworkOrObject','ArtworkOrObjectAOSource'] }, + 'artworksourceinventoryno' => { 525 => [\'ArtworkOrObject','ArtworkOrObjectAOSourceInvNo'] }, + 'artworksourceinvurl' => { 525 => [\'ArtworkOrObject','ArtworkOrObjectAOSourceInvURL'] }, + 'artworkstyleperiod' => { 525 => [\'ArtworkOrObject','ArtworkOrObjectAOStylePeriod'] }, + 'artworktitle' => { 525 => [\'ArtworkOrObject','ArtworkOrObjectAOTitle'] }, + 'aspectframe' => { 328 => 0x1113 }, + 'aspectratio' => { 5 => 0x0, 328 => 0x1112, 383 => 0x80, 435 => 0x55, 436 => 0x55, 437 => 0xa, 462 => [0x192c,0x1a88], 463 => 0x192c, 464 => 0x1958, 465 => 0x192c, 466 => 0x188c }, + 'assetid' => { 501 => 'AssetID' }, 'asshoticcprofile' => { 122 => 0xc68f }, 'asshotneutral' => { 122 => 0xc628 }, 'asshotpreprofilematrix' => { 122 => 0xc690 }, 'asshotprofilename' => { 122 => 0xc6f6 }, 'asshotwhitexy' => { 122 => 0xc629 }, - 'assignbktbutton' => { 303 => '4.2', 304 => '16.1', 306 => '16.1', 307 => '16.1', 316 => '16.1', 317 => '16.1' }, + 'assignbktbutton' => { 304 => '4.2', 305 => '16.1', 307 => '16.1', 308 => '16.1', 317 => '16.1', 318 => '16.1' }, 'assignfuncbutton' => { 87 => 0x70b }, - 'assignmb-d17af-onbutton' => { 307 => '79.1' }, - 'assignmb-d17funcbutton' => { 307 => '67.1' }, - 'assignmb-d17funcbuttonplusdials' => { 307 => '68.1' }, - 'assignmb-d18af-onbutton' => { 317 => '79.1' }, - 'assignmb-d18funcbutton' => { 317 => '67.1' }, - 'assignmb-d18funcbuttonplusdials' => { 317 => '68.1' }, - 'assignmoviefunc1buttonplusdials' => { 306 => '75.1', 307 => '75.1', 317 => '75.1' }, - 'assignmoviefunc2button' => { 306 => '82.1', 307 => '82.1', 317 => '82.1' }, - 'assignmoviepreviewbuttonplusdials' => { 306 => '75.2', 307 => '75.2', 317 => '75.2' }, - 'assignmovierecordbutton' => { 304 => '43.2', 316 => '45.1', 319 => 0x9b, 320 => 0x9b, 321 => 0x9b }, - 'assignmovierecordbuttonplusdials' => { 306 => '45.1', 307 => '45.1', 317 => '45.1' }, - 'assignmoviesubselector' => { 306 => '74.1', 307 => '74.1', 317 => '74.1' }, - 'assignmoviesubselectorplusdials' => { 306 => '76.1', 307 => '76.1', 317 => '76.1' }, - 'assignremotefnbutton' => { 304 => '54.1', 316 => '51.1' }, + 'assignmb-d17af-onbutton' => { 308 => '79.1' }, + 'assignmb-d17funcbutton' => { 308 => '67.1' }, + 'assignmb-d17funcbuttonplusdials' => { 308 => '68.1' }, + 'assignmb-d18af-onbutton' => { 318 => '79.1' }, + 'assignmb-d18funcbutton' => { 318 => '67.1' }, + 'assignmb-d18funcbuttonplusdials' => { 318 => '68.1' }, + 'assignmoviefunc1buttonplusdials' => { 307 => '75.1', 308 => '75.1', 318 => '75.1' }, + 'assignmoviefunc2button' => { 307 => '82.1', 308 => '82.1', 318 => '82.1' }, + 'assignmoviepreviewbuttonplusdials' => { 307 => '75.2', 308 => '75.2', 318 => '75.2' }, + 'assignmovierecordbutton' => { 305 => '43.2', 317 => '45.1', 320 => 0x9b, 321 => 0x9b, 322 => 0x9b }, + 'assignmovierecordbuttonplusdials' => { 307 => '45.1', 308 => '45.1', 318 => '45.1' }, + 'assignmoviesubselector' => { 307 => '74.1', 308 => '74.1', 318 => '74.1' }, + 'assignmoviesubselectorplusdials' => { 307 => '76.1', 308 => '76.1', 318 => '76.1' }, + 'assignremotefnbutton' => { 305 => '54.1', 317 => '51.1' }, 'assistbuttonfunction' => { 85 => 0xd }, 'atcaptureusercrop' => { 141 => 0x943 }, - 'attributionname' => { 508 => 'attributionName' }, - 'attributionurl' => { 508 => 'attributionURL' }, - 'audio' => { 347 => 0x20 }, - 'audiobitrate' => { 69 => 0x6c, 524 => 'audioBitRate' }, - 'audiobitratemode' => { 524 => 'audioBitRateMode' }, - 'audiobitspersample' => { 524 => 'audioBitsPerSample' }, - 'audiobutton' => { 320 => 0x17b, 321 => 0x193 }, - 'audiobuttonplaybackmode' => { 320 => 0x1b9, 321 => 0x1d1 }, - 'audiochannelcount' => { 524 => 'audioChannelCount' }, + 'attributionname' => { 509 => 'attributionName' }, + 'attributionurl' => { 509 => 'attributionURL' }, + 'audio' => { 348 => 0x20 }, + 'audiobitrate' => { 69 => 0x6c, 525 => 'audioBitRate' }, + 'audiobitratemode' => { 525 => 'audioBitRateMode' }, + 'audiobitspersample' => { 525 => 'audioBitsPerSample' }, + 'audiobutton' => { 321 => 0x17b, 322 => 0x193 }, + 'audiobuttonplaybackmode' => { 321 => 0x1b9, 322 => 0x1d1 }, + 'audiochannelcount' => { 525 => 'audioChannelCount' }, 'audiochannels' => { 69 => 0x70 }, - 'audiochanneltype' => { 539 => 'audioChannelType' }, + 'audiochanneltype' => { 540 => 'audioChannelType' }, 'audiocompression' => { 87 => 0x816, 158 => 'Compression' }, - 'audiocompressor' => { 539 => 'audioCompressor' }, - 'audiodata' => { 492 => 'Data' }, + 'audiocompressor' => { 540 => 'audioCompressor' }, + 'audiodata' => { 493 => 'Data' }, 'audioduration' => { 134 => 0x99 }, - 'audiogain' => { 401 => 'player.movie.audio.gain' }, - 'audiomimetype' => { 492 => 'Mime' }, - 'audiomoddate' => { 539 => 'audioModDate' }, + 'audiogain' => { 402 => 'player.movie.audio.gain' }, + 'audiomimetype' => { 493 => 'Mime' }, + 'audiomoddate' => { 540 => 'audioModDate' }, 'audiooutcue' => { 134 => 0x9a }, - 'audiosamplerate' => { 69 => 0x6e, 539 => 'audioSampleRate' }, - 'audiosampletype' => { 539 => 'audioSampleType' }, + 'audiosamplerate' => { 69 => 0x6e, 540 => 'audioSampleRate' }, + 'audiosampletype' => { 540 => 'audioSampleType' }, 'audiosamplingrate' => { 134 => 0x97 }, 'audiosamplingresolution' => { 134 => 0x98 }, 'audiotype' => { 134 => 0x96 }, - 'author' => { 160 => 'Author', 332 => 'Author', 336 => 'Author', 398 => 'Author', 399 => ['auth',"\xa9aut"], 401 => 'author', 407 => 'auth', 505 => 'author', 526 => 'Author', 537 => 'Author' }, - 'authorsposition' => { 527 => 'AuthorsPosition' }, + 'author' => { 160 => 'Author', 333 => 'Author', 337 => 'Author', 399 => 'Author', 400 => ['auth',"\xa9aut"], 402 => 'author', 408 => 'auth', 506 => 'author', 527 => 'Author', 538 => 'Author' }, + 'authorsposition' => { 528 => 'AuthorsPosition' }, 'authorurl' => { 182 => 'WM/AuthorURL' }, 'autoafpointcolortracking' => { 87 => 0x51c }, 'autoafpointseleositraf' => { 2 => 0xa }, - 'autoaperture' => { 373 => '0.1' }, - 'autobracket' => { 424 => 0x19 }, - 'autobracketing' => { 130 => 0x1100, 382 => 0x18, 414 => 0x1007 }, - 'autobracketingmode' => { 315 => '12.3' }, - 'autobracketingset' => { 315 => '12.1' }, - 'autobracketmodem' => { 303 => '21.2', 304 => '13.3', 306 => '13.2', 307 => '13.2', 312 => '26.2', 316 => '13.3', 317 => '13.2', 319 => 0x5f, 320 => 0x5f, 321 => 0x5f }, - 'autobracketorder' => { 187 => 0x43, 303 => '21.3', 304 => '13.2', 306 => '13.1', 307 => '13.1', 312 => '26.3', 313 => '12.2', 314 => '2.2', 315 => '12.2', 316 => '13.2', 317 => '13.1', 318 => '13.2', 319 => 0x61, 320 => 0x61, 321 => 0x61 }, - 'autobracketset' => { 303 => '21.1', 304 => '13.1', 308 => '11.1', 309 => '12.1', 310 => '12.1', 312 => '26.1', 313 => '12.1', 314 => '2.1', 316 => '13.1', 318 => '13.1' }, - 'autobrightness' => { 510 => 'AutoBrightness', 512 => 'AutoBrightness' }, + 'autoaperture' => { 374 => '0.1' }, + 'autobracket' => { 425 => 0x19 }, + 'autobracketing' => { 130 => 0x1100, 383 => 0x18, 415 => 0x1007 }, + 'autobracketingmode' => { 316 => '12.3' }, + 'autobracketingset' => { 316 => '12.1' }, + 'autobracketmodem' => { 304 => '21.2', 305 => '13.3', 307 => '13.2', 308 => '13.2', 313 => '26.2', 317 => '13.3', 318 => '13.2', 320 => 0x5f, 321 => 0x5f, 322 => 0x5f }, + 'autobracketorder' => { 187 => 0x43, 304 => '21.3', 305 => '13.2', 307 => '13.1', 308 => '13.1', 313 => '26.3', 314 => '12.2', 315 => '2.2', 316 => '12.2', 317 => '13.2', 318 => '13.1', 319 => '13.2', 320 => 0x61, 321 => 0x61, 322 => 0x61 }, + 'autobracketset' => { 304 => '21.1', 305 => '13.1', 309 => '11.1', 310 => '12.1', 311 => '12.1', 313 => '26.1', 314 => '12.1', 315 => '2.1', 317 => '13.1', 319 => '13.1' }, + 'autobrightness' => { 511 => 'AutoBrightness', 513 => 'AutoBrightness' }, 'autocapturecriteria' => { 199 => 0x1 }, 'autocapturecriteriamotiondirection' => { 199 => 0x5f }, 'autocapturecriteriamotionsize' => { 199 => 0x64 }, @@ -1122,44 +1124,44 @@ my %tagLookup = ( 'autocapturedframe' => { 199 => 0x0 }, 'autocapturedistancefar' => { 199 => 0x4a }, 'autocapturedistancenear' => { 199 => 0x4e }, - 'autocapturepreset' => { 247 => 0x746 }, + 'autocapturepreset' => { 248 => 0x746 }, 'autocapturerecordingtime' => { 199 => 0x37 }, 'autocapturewaittime' => { 199 => 0x38 }, - 'autocontrast' => { 510 => 'AutoContrast', 512 => 'AutoContrast' }, + 'autocontrast' => { 511 => 'AutoContrast', 513 => 'AutoContrast' }, 'autodistortioncontrol' => { 213 => 0x4, 243 => 0x143 }, 'autodynamicrange' => { 130 => 0x140b }, - 'autoexposure' => { 510 => 'AutoExposure', 512 => 'AutoExposure' }, + 'autoexposure' => { 511 => 'AutoExposure', 513 => 'AutoExposure' }, 'autoexposurebracketing' => { 79 => 0x10 }, - 'autoflashisosensitivity' => { 306 => '38.5', 307 => '38.5', 317 => '38.5', 319 => 0x5b, 320 => 0x5b, 321 => 0x5b }, - 'autofocus' => { 326 => 0x209 }, - 'autofocusmoderestrictions' => { 319 => 0x107, 320 => 0x107, 321 => 0x11d }, - 'autofp' => { 314 => '7.3', 318 => '31.4' }, - 'autoiso' => { 79 => 0x1, 116 => 0x3008, 244 => 0x152, 245 => 0x142, 246 => 0x156, 247 => 0x156, 305 => '1.1', 314 => '1.1' }, - 'autoisomax' => { 305 => '1.2', 314 => '1.2' }, - 'autoisominshutterspeed' => { 305 => '1.3', 314 => '1.3' }, - 'autolateralca' => { 510 => 'AutoLateralCA', 512 => 'AutoLateralCA' }, + 'autoflashisosensitivity' => { 307 => '38.5', 308 => '38.5', 318 => '38.5', 320 => 0x5b, 321 => 0x5b, 322 => 0x5b }, + 'autofocus' => { 327 => 0x209 }, + 'autofocusmoderestrictions' => { 320 => 0x107, 321 => 0x107, 322 => 0x11d }, + 'autofp' => { 315 => '7.3', 319 => '31.4' }, + 'autoiso' => { 79 => 0x1, 116 => 0x3008, 244 => 0x152, 245 => 0x152, 246 => 0x142, 247 => 0x156, 248 => 0x156, 306 => '1.1', 315 => '1.1' }, + 'autoisomax' => { 306 => '1.2', 315 => '1.2' }, + 'autoisominshutterspeed' => { 306 => '1.3', 315 => '1.3' }, + 'autolateralca' => { 511 => 'AutoLateralCA', 513 => 'AutoLateralCA' }, 'autolightingoptimizer' => { 16 => 0xbe, 17 => 0xbf, 20 => 0xbf, 64 => 0x2, 87 => 0x204, 106 => 0x20500, 112 => 0x6f }, 'autolightingoptimizeron' => { 106 => '0x20500.0', 112 => 0x6e }, - 'autoportraitframed' => { 448 => 0x2016 }, - 'autoredeye' => { 296 => 0xfe28a44f }, + 'autoportraitframed' => { 449 => 0x2016 }, + 'autoredeye' => { 297 => 0xfe28a44f }, 'autorotate' => { 79 => 0x1b }, - 'autoshadows' => { 510 => 'AutoShadows', 512 => 'AutoShadows' }, - 'autotone' => { 510 => 'AutoTone', 512 => 'AutoTone' }, - 'autotonedigest' => { 510 => 'AutoToneDigest', 512 => 'AutoToneDigest' }, - 'autotonedigestnosat' => { 510 => 'AutoToneDigestNoSat', 512 => 'AutoToneDigestNoSat' }, - 'autowhiteversion' => { 510 => 'AutoWhiteVersion', 512 => 'AutoWhiteVersion' }, + 'autoshadows' => { 511 => 'AutoShadows', 513 => 'AutoShadows' }, + 'autotone' => { 511 => 'AutoTone', 513 => 'AutoTone' }, + 'autotonedigest' => { 511 => 'AutoToneDigest', 513 => 'AutoToneDigest' }, + 'autotonedigestnosat' => { 511 => 'AutoToneDigestNoSat', 513 => 'AutoToneDigestNoSat' }, + 'autowhiteversion' => { 511 => 'AutoWhiteVersion', 513 => 'AutoWhiteVersion' }, 'auxiliarylens' => { 239 => 0x82 }, - 'avaperturesetting' => { 363 => 0x13 }, + 'avaperturesetting' => { 364 => 0x13 }, 'averageblacklevel' => { 47 => 0xe7, 49 => 0xfb, 50 => 0x114, 51 => 0x146 }, 'averagelv' => { 190 => 0x38 }, 'avsettingwithoutlens' => { 87 => 0x707 }, 'azimuth' => { 168 => 'Azimuth' }, - 'babyage' => { 347 => [0x8010,0x33] }, - 'babyname' => { 347 => 0x66 }, - 'backgroundalpha' => { 534 => 'bgalpha' }, - 'balance' => { 401 => 'player.movie.audio.balance' }, - 'baseexposurecompensation' => { 363 => 0x15 }, - 'baseiso' => { 79 => 0x2, 100 => 0x101c, 141 => 0x903, 349 => 0x312a, 480 => 0x6 }, + 'babyage' => { 348 => [0x8010,0x33] }, + 'babyname' => { 348 => 0x66 }, + 'backgroundalpha' => { 535 => 'bgalpha' }, + 'balance' => { 402 => 'player.movie.audio.balance' }, + 'baseexposurecompensation' => { 364 => 0x15 }, + 'baseiso' => { 79 => 0x2, 100 => 0x101c, 141 => 0x903, 350 => 0x312a, 481 => 0x6 }, 'baseisodaylight' => { 141 => 0x910 }, 'baseisoflash' => { 141 => 0x913 }, 'baseisofluorescent' => { 141 => 0x912 }, @@ -1168,136 +1170,136 @@ my %tagLookup = ( 'baselineexposureoffset' => { 122 => 0xc7a5 }, 'baselinenoise' => { 122 => 0xc62b }, 'baselinesharpness' => { 122 => 0xc62c }, - 'baserenditionishdr' => { 521 => 'BaseRenditionIsHDR' }, - 'baseurl' => { 537 => 'BaseURL' }, - 'bass' => { 401 => 'player.movie.audio.bass' }, - 'batterylevel' => { 347 => 0x38, 434 => 0x51, 438 => 0xc, 439 => 0x4, 440 => 0x4, 481 => 0x7, 482 => 0x5 }, - 'batterylevel2' => { 482 => 0x7 }, - 'batterylevelgrip1' => { 481 => 0x6 }, - 'batterylevelgrip2' => { 481 => 0x8 }, - 'batteryorder' => { 303 => '12.5', 312 => '13.2', 313 => '2.1', 316 => '3.1' }, - 'batterystate' => { 187 => 0x60, 434 => 0x50, 440 => 0x14 }, - 'batterytemperature' => { 438 => 0x1, 440 => 0x2, 481 => 0x5 }, - 'batterytype' => { 66 => 0x38, 410 => 0x66 }, - 'batteryunknown' => { 438 => 0x2, 440 => 0x0 }, - 'batteryvoltage' => { 141 => 0x408, 408 => 0x2a, 409 => 0x49, 410 => 0x62, 438 => 0x8 }, - 'batteryvoltage1' => { 440 => 0x6 }, - 'batteryvoltage2' => { 440 => 0x8 }, - 'batteryvoltageavg' => { 410 => 0x64 }, + 'baserenditionishdr' => { 522 => 'BaseRenditionIsHDR' }, + 'baseurl' => { 538 => 'BaseURL' }, + 'bass' => { 402 => 'player.movie.audio.bass' }, + 'batterylevel' => { 348 => 0x38, 435 => 0x51, 439 => 0xc, 440 => 0x4, 441 => 0x4, 482 => 0x7, 483 => 0x5 }, + 'batterylevel2' => { 483 => 0x7 }, + 'batterylevelgrip1' => { 482 => 0x6 }, + 'batterylevelgrip2' => { 482 => 0x8 }, + 'batteryorder' => { 304 => '12.5', 313 => '13.2', 314 => '2.1', 317 => '3.1' }, + 'batterystate' => { 187 => 0x60, 435 => 0x50, 441 => 0x14 }, + 'batterytemperature' => { 439 => 0x1, 441 => 0x2, 482 => 0x5 }, + 'batterytype' => { 66 => 0x38, 411 => 0x66 }, + 'batteryunknown' => { 439 => 0x2, 441 => 0x0 }, + 'batteryvoltage' => { 141 => 0x408, 409 => 0x2a, 410 => 0x49, 411 => 0x62, 439 => 0x8 }, + 'batteryvoltage1' => { 441 => 0x6 }, + 'batteryvoltage2' => { 441 => 0x8 }, + 'batteryvoltageavg' => { 411 => 0x64 }, 'bayergreensplit' => { 122 => 0xc62d }, 'bayerpattern' => { 140 => 0xf902, 191 => 0x17 }, - 'beatsperminute' => { 399 => 'tmpo' }, - 'beatspliceparams' => { 539 => 'beatSpliceParams' }, - 'beatspliceparamsriseindecibel' => { 539 => [\'beatSpliceParams','beatSpliceParamsRiseInDecibel'] }, - 'beatspliceparamsriseintimeduration' => { 539 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDuration'] }, - 'beatspliceparamsriseintimedurationscale' => { 539 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDurationScale'] }, - 'beatspliceparamsriseintimedurationvalue' => { 539 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDurationValue'] }, - 'beatspliceparamsusefilebeatsmarker' => { 539 => [\'beatSpliceParams','beatSpliceParamsUseFileBeatsMarker'] }, - 'beep' => { 303 => '13.1', 304 => '5.4', 305 => '0.1', 308 => '2.1', 309 => '3.1', 310 => '3.1', 312 => '10.1', 314 => '0.1', 316 => '5.5', 318 => '4.1' }, - 'beeppitch' => { 313 => '3.1' }, - 'beepvolume' => { 313 => '4.5' }, + 'beatsperminute' => { 400 => 'tmpo' }, + 'beatspliceparams' => { 540 => 'beatSpliceParams' }, + 'beatspliceparamsriseindecibel' => { 540 => [\'beatSpliceParams','beatSpliceParamsRiseInDecibel'] }, + 'beatspliceparamsriseintimeduration' => { 540 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDuration'] }, + 'beatspliceparamsriseintimedurationscale' => { 540 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDurationScale'] }, + 'beatspliceparamsriseintimedurationvalue' => { 540 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDurationValue'] }, + 'beatspliceparamsusefilebeatsmarker' => { 540 => [\'beatSpliceParams','beatSpliceParamsUseFileBeatsMarker'] }, + 'beep' => { 304 => '13.1', 305 => '5.4', 306 => '0.1', 309 => '2.1', 310 => '3.1', 311 => '3.1', 313 => '10.1', 315 => '0.1', 317 => '5.5', 319 => '4.1' }, + 'beeppitch' => { 314 => '3.1' }, + 'beepvolume' => { 314 => '4.5' }, 'bestqualityscale' => { 122 => 0xc65c }, 'bestshotmode' => { 116 => 0x3007 }, - 'bitdepth' => { 165 => 'BitDepth', 191 => 0x11, 262 => 0x41 }, + 'bitdepth' => { 165 => 'BitDepth', 191 => 0x11, 263 => 0x41 }, 'bitspercomponent' => { 136 => 0x87 }, - 'bitspersample' => { 122 => 0x102, 352 => 0xa, 535 => 'BitsPerSample' }, + 'bitspersample' => { 122 => 0x102, 353 => 0xa, 536 => 'BitsPerSample' }, 'blackacquirerows' => { 141 => 0x18ba }, - 'blacklevel' => { 122 => [0x7310,0xc61a], 210 => 0x20, 239 => 0x3d, 328 => [0x401,0x1012], 391 => 0x21d, 455 => [0x7300,0x7310] }, - 'blacklevel2' => { 327 => 0x600, 331 => 0x600 }, - 'blacklevelblue' => { 352 => 0x1e }, + 'blacklevel' => { 122 => [0x7310,0xc61a], 210 => 0x20, 239 => 0x3d, 329 => [0x401,0x1012], 392 => 0x21d, 456 => [0x7300,0x7310] }, + 'blacklevel2' => { 328 => 0x600, 332 => 0x600 }, + 'blacklevelblue' => { 353 => 0x1e }, 'blacklevelbottom' => { 141 => 0x3f0 }, - 'blackleveldata' => { 391 => 0x223 }, + 'blackleveldata' => { 392 => 0x223 }, 'blackleveldeltah' => { 122 => 0xc61b }, 'blackleveldeltav' => { 122 => 0xc61c }, - 'blacklevelgreen' => { 352 => 0x1d }, - 'blacklevelred' => { 352 => 0x1c }, + 'blacklevelgreen' => { 353 => 0x1d }, + 'blacklevelred' => { 353 => 0x1c }, 'blacklevelrepeatdim' => { 122 => 0xc619 }, 'blacklevelrough' => { 141 => 0x40e }, 'blacklevelroughafter' => { 141 => 0x416 }, 'blacklevels' => { 37 => 0x1d }, 'blackleveltop' => { 141 => 0x3ef }, - 'blackpoint' => { 382 => 0x200 }, - 'blacks2012' => { 510 => 'Blacks2012', 512 => 'Blacks2012' }, - 'blacksadj' => { 485 => 0x9018 }, - 'bleachbypasstoning' => { 382 => 0x7f }, - 'blockshotafresponse' => { 306 => '1.5', 307 => '1.5', 317 => '1.5', 319 => 0x7, 320 => 0x7, 321 => 0x7 }, - 'blogtitle' => { 529 => 'blogTitle' }, - 'blogurl' => { 529 => 'blogURL' }, - 'bluebalance' => { 328 => 0x1018, 352 => 0x12, 382 => 0x1b }, + 'blackpoint' => { 383 => 0x200 }, + 'blacks2012' => { 511 => 'Blacks2012', 513 => 'Blacks2012' }, + 'blacksadj' => { 486 => 0x9018 }, + 'bleachbypasstoning' => { 383 => 0x7f }, + 'blockshotafresponse' => { 307 => '1.5', 308 => '1.5', 318 => '1.5', 320 => 0x7, 321 => 0x7, 322 => 0x7 }, + 'blogtitle' => { 530 => 'blogTitle' }, + 'blogurl' => { 530 => 'blogURL' }, + 'bluebalance' => { 329 => 0x1018, 353 => 0x12, 383 => 0x1b }, 'bluecurvelimits' => { 111 => 0x1fe }, 'bluecurvepoints' => { 110 => 0x79, 111 => 0x1d4 }, 'bluehsl' => { 106 => 0x20915 }, - 'bluehue' => { 510 => 'BlueHue', 512 => 'BlueHue' }, - 'bluesaturation' => { 510 => 'BlueSaturation', 512 => 'BlueSaturation' }, - 'bluratinfinity' => { 496 => 'BlurAtInfinity' }, - 'blurcontrol' => { 382 => 0x82 }, + 'bluehue' => { 511 => 'BlueHue', 513 => 'BlueHue' }, + 'bluesaturation' => { 511 => 'BlueSaturation', 513 => 'BlueSaturation' }, + 'bluratinfinity' => { 497 => 'BlurAtInfinity' }, + 'blurcontrol' => { 383 => 0x82 }, 'blurwarning' => { 130 => 0x1300 }, - 'bodybatteryadload' => { 361 => 0x3 }, - 'bodybatteryadnoload' => { 361 => 0x2 }, - 'bodybatterystate' => { 361 => '1.1' }, - 'bodybatteryvoltage1' => { 361 => 0x2 }, - 'bodybatteryvoltage2' => { 361 => 0x4 }, - 'bodybatteryvoltage3' => { 361 => 0x6 }, - 'bodybatteryvoltage4' => { 361 => 0x8 }, - 'bodyfirmware' => { 415 => 0x0 }, - 'bodyfirmwareversion' => { 324 => 0x104, 325 => 0x100, 328 => 0x104 }, - 'bodyserialnumber' => { 415 => 0x10 }, - 'bookedition' => { 529 => 'bookEdition' }, - 'bootloaderversion' => { 409 => 0x26 }, - 'bracketbutton' => { 247 => 0x80c }, - 'bracketbuttonplaybackmode' => { 247 => 0x816 }, - 'bracketincrement' => { 244 => 0x22e, 245 => 0x21a, 246 => 0x22e, 247 => 0x22e }, + 'bodybatteryadload' => { 362 => 0x3 }, + 'bodybatteryadnoload' => { 362 => 0x2 }, + 'bodybatterystate' => { 362 => '1.1' }, + 'bodybatteryvoltage1' => { 362 => 0x2 }, + 'bodybatteryvoltage2' => { 362 => 0x4 }, + 'bodybatteryvoltage3' => { 362 => 0x6 }, + 'bodybatteryvoltage4' => { 362 => 0x8 }, + 'bodyfirmware' => { 416 => 0x0 }, + 'bodyfirmwareversion' => { 325 => 0x104, 326 => 0x100, 329 => 0x104 }, + 'bodyserialnumber' => { 416 => 0x10 }, + 'bookedition' => { 530 => 'bookEdition' }, + 'bootloaderversion' => { 410 => 0x26 }, + 'bracketbutton' => { 245 => 0x808, 248 => 0x80c }, + 'bracketbuttonplaybackmode' => { 245 => 0x810, 248 => 0x816 }, + 'bracketincrement' => { 244 => 0x22e, 245 => 0x22e, 246 => 0x21a, 247 => 0x22e, 248 => 0x22e }, 'bracketmode' => { 59 => 0x3 }, - 'bracketprogram' => { 244 => 0x22c, 245 => 0x218, 246 => 0x22c, 247 => 0x22c }, + 'bracketprogram' => { 244 => 0x22c, 245 => 0x22c, 246 => 0x218, 247 => 0x22c, 248 => 0x22c }, 'bracketsequence' => { 116 => 0x301d }, - 'bracketset' => { 244 => 0x22a, 245 => 0x216, 246 => 0x22a, 247 => 0x22a }, - 'bracketsettings' => { 347 => 0x45 }, - 'bracketshotnumber' => { 59 => 0x5, 363 => 0x9, 445 => 0x2b }, - 'bracketshotnumber2' => { 445 => 0x2d }, + 'bracketset' => { 244 => 0x22a, 245 => 0x22a, 246 => 0x216, 247 => 0x22a, 248 => 0x22a }, + 'bracketsettings' => { 348 => 0x45 }, + 'bracketshotnumber' => { 59 => 0x5, 364 => 0x9, 446 => 0x2b }, + 'bracketshotnumber2' => { 446 => 0x2d }, 'bracketstep' => { 184 => 0xe }, 'bracketvalue' => { 59 => 0x4 }, - 'brightness' => { 122 => 0xfe53, 159 => 'Brightness', 179 => 'Brightness', 184 => 0x2c, 254 => 0x34, 255 => 0x39, 256 => 0x41, 401 => 'player.movie.visual.brightness', 408 => 0x25, 410 => 0x54, 434 => 0x22, 448 => 0x2007, 510 => 'Brightness', 512 => 'Brightness' }, - 'brightnessadj' => { 111 => 0x114, 289 => 0x0, 299 => 0x2d, 485 => 0x8018 }, - 'brightnessvalue' => { 122 => 0x9203, 190 => [0x691,0x49c3], 328 => 0x1003, 453 => 0x1e, 457 => 0x1140, 458 => 0x1140, 459 => 0x111c, 460 => 0x1198, 461 => 0x1174, 462 => 0x102c, 463 => 0x224, 464 => 0x224, 465 => 0x219, 516 => 'BrightnessValue' }, + 'brightness' => { 122 => 0xfe53, 159 => 'Brightness', 179 => 'Brightness', 184 => 0x2c, 255 => 0x34, 256 => 0x39, 257 => 0x41, 402 => 'player.movie.visual.brightness', 409 => 0x25, 411 => 0x54, 435 => 0x22, 449 => 0x2007, 511 => 'Brightness', 513 => 'Brightness' }, + 'brightnessadj' => { 111 => 0x114, 290 => 0x0, 300 => 0x2d, 486 => 0x8018 }, + 'brightnessvalue' => { 122 => 0x9203, 190 => [0x691,0x49c3], 329 => 0x1003, 454 => 0x1e, 458 => 0x1140, 459 => 0x1140, 460 => 0x111c, 461 => 0x1198, 462 => 0x1174, 463 => 0x102c, 464 => 0x224, 465 => 0x224, 466 => 0x219, 517 => 'BrightnessValue' }, 'buildnumber' => { 194 => 0x5500 }, 'bulbduration' => { 79 => 0x18 }, 'burstcount' => { 141 => 0x40d }, 'burstgroupid' => { 241 => 0x4 }, - 'burstid' => { 493 => 'BurstID' }, - 'burstmode' => { 143 => 0xa, 347 => 0x2a }, + 'burstid' => { 494 => 'BurstID' }, + 'burstmode' => { 143 => 0xa, 348 => 0x2a }, 'burstmode2' => { 143 => 0x18 }, - 'burstprimary' => { 493 => 'BurstPrimary' }, - 'burstshot' => { 424 => 0x34 }, - 'burstspeed' => { 347 => 0x77 }, + 'burstprimary' => { 494 => 'BurstPrimary' }, + 'burstshot' => { 425 => 0x34 }, + 'burstspeed' => { 348 => 0x77 }, 'burstuuid' => { 1 => 0xb }, 'buttonfunctioncontroloff' => { 87 => 0x70a }, 'bwadjustment' => { 130 => 0x1049 }, 'bwfilter' => { 184 => 0x2a, 192 => 0x39 }, 'bwmagentagreen' => { 130 => 0x104b }, - 'bwmode' => { 328 => 0x203 }, + 'bwmode' => { 329 => 0x203 }, 'by-line' => { 134 => 0x50 }, 'by-linetitle' => { 134 => 0x55 }, - 'bytecount' => { 529 => 'byteCount' }, + 'bytecount' => { 530 => 'byteCount' }, 'c14configuration' => { 141 => 0x1964 }, 'cacheversion' => { 122 => 0xc7aa }, 'calibratedfocallength' => { 119 => 'CalibratedFocalLength' }, 'calibratedopticalcenterx' => { 119 => 'CalibratedOpticalCenterX' }, 'calibratedopticalcentery' => { 119 => 'CalibratedOpticalCenterY' }, - 'calibration' => { 424 => [0x24,0x30] }, + 'calibration' => { 425 => [0x24,0x30] }, 'calibrationhistory' => { 141 => 0x9c9 }, 'calibrationilluminant1' => { 122 => 0xc65a }, 'calibrationilluminant2' => { 122 => 0xc65b }, 'calibrationilluminant3' => { 122 => 0xcd31 }, 'calibrationversion' => { 141 => 0x9c6 }, - 'callforimage' => { 500 => 'CallForImage' }, - 'camera' => { 489 => [\'Cameras','CamerasCamera'] }, - 'cameraangle' => { 407 => 'angl', 539 => 'cameraAngle' }, - 'cameraappinfo' => { 489 => [\'Cameras','CamerasCameraAppInfo'] }, - 'cameraappinfoapplication' => { 489 => [\'Cameras','CamerasCameraAppInfoApplication'] }, - 'cameraappinfoitemuri' => { 489 => [\'Cameras','CamerasCameraAppInfoItemURI'] }, - 'cameraappinfoversion' => { 489 => [\'Cameras','CamerasCameraAppInfoVersion'] }, - 'cameraburstid' => { 494 => 'CameraBurstID' }, - 'cameracalibration' => { 424 => 0x11f }, + 'callforimage' => { 501 => 'CallForImage' }, + 'camera' => { 490 => [\'Cameras','CamerasCamera'] }, + 'cameraangle' => { 408 => 'angl', 540 => 'cameraAngle' }, + 'cameraappinfo' => { 490 => [\'Cameras','CamerasCameraAppInfo'] }, + 'cameraappinfoapplication' => { 490 => [\'Cameras','CamerasCameraAppInfoApplication'] }, + 'cameraappinfoitemuri' => { 490 => [\'Cameras','CamerasCameraAppInfoItemURI'] }, + 'cameraappinfoversion' => { 490 => [\'Cameras','CamerasCameraAppInfoVersion'] }, + 'cameraburstid' => { 495 => 'CameraBurstID' }, + 'cameracalibration' => { 425 => 0x11f }, 'cameracalibration1' => { 122 => 0xc623 }, 'cameracalibration2' => { 122 => 0xc624 }, 'cameracalibration3' => { 122 => 0xcd32 }, @@ -1317,95 +1319,95 @@ my %tagLookup = ( 'cameracolorcalibration13' => { 38 => 0x30, 39 => 0x3c }, 'cameracolorcalibration14' => { 38 => 0x34, 39 => 0x41 }, 'cameracolorcalibration15' => { 38 => 0x38, 39 => 0x46 }, - 'cameradepthmap' => { 489 => [\'Cameras','CamerasCameraDepthMap'] }, - 'cameradepthmapconfidenceuri' => { 489 => [\'Cameras','CamerasCameraDepthMapConfidenceURI'] }, - 'cameradepthmapdepthuri' => { 489 => [\'Cameras','CamerasCameraDepthMapDepthURI'] }, - 'cameradepthmapfar' => { 489 => [\'Cameras','CamerasCameraDepthMapFar'] }, - 'cameradepthmapfocaltable' => { 489 => [\'Cameras','CamerasCameraDepthMapFocalTable'] }, - 'cameradepthmapfocaltableentrycount' => { 489 => [\'Cameras','CamerasCameraDepthMapFocalTableEntryCount'] }, - 'cameradepthmapformat' => { 489 => [\'Cameras','CamerasCameraDepthMapFormat'] }, - 'cameradepthmapitemsemantic' => { 489 => [\'Cameras','CamerasCameraDepthMapItemSemantic'] }, - 'cameradepthmapmeasuretype' => { 489 => [\'Cameras','CamerasCameraDepthMapMeasureType'] }, - 'cameradepthmapnear' => { 489 => [\'Cameras','CamerasCameraDepthMapNear'] }, - 'cameradepthmapsoftware' => { 489 => [\'Cameras','CamerasCameraDepthMapSoftware'] }, - 'cameradepthmapunits' => { 489 => [\'Cameras','CamerasCameraDepthMapUnits'] }, - 'cameradirection' => { 401 => 'direction.facing' }, - 'camerae-mountversion' => { 484 => 0xb }, - 'cameraelevationangle' => { 122 => 0x9405, 517 => 'CameraElevationAngle' }, - 'camerafilename' => { 500 => 'CameraFilename' }, + 'cameradepthmap' => { 490 => [\'Cameras','CamerasCameraDepthMap'] }, + 'cameradepthmapconfidenceuri' => { 490 => [\'Cameras','CamerasCameraDepthMapConfidenceURI'] }, + 'cameradepthmapdepthuri' => { 490 => [\'Cameras','CamerasCameraDepthMapDepthURI'] }, + 'cameradepthmapfar' => { 490 => [\'Cameras','CamerasCameraDepthMapFar'] }, + 'cameradepthmapfocaltable' => { 490 => [\'Cameras','CamerasCameraDepthMapFocalTable'] }, + 'cameradepthmapfocaltableentrycount' => { 490 => [\'Cameras','CamerasCameraDepthMapFocalTableEntryCount'] }, + 'cameradepthmapformat' => { 490 => [\'Cameras','CamerasCameraDepthMapFormat'] }, + 'cameradepthmapitemsemantic' => { 490 => [\'Cameras','CamerasCameraDepthMapItemSemantic'] }, + 'cameradepthmapmeasuretype' => { 490 => [\'Cameras','CamerasCameraDepthMapMeasureType'] }, + 'cameradepthmapnear' => { 490 => [\'Cameras','CamerasCameraDepthMapNear'] }, + 'cameradepthmapsoftware' => { 490 => [\'Cameras','CamerasCameraDepthMapSoftware'] }, + 'cameradepthmapunits' => { 490 => [\'Cameras','CamerasCameraDepthMapUnits'] }, + 'cameradirection' => { 402 => 'direction.facing' }, + 'camerae-mountversion' => { 485 => 0xb }, + 'cameraelevationangle' => { 122 => 0x9405, 518 => 'CameraElevationAngle' }, + 'camerafilename' => { 501 => 'CameraFilename' }, 'camerafirmware' => { 122 => 0xa439 }, - 'cameraid' => { 328 => 0x209, 407 => 'cmid', 423 => 0x209 }, - 'cameraidentifier' => { 401 => 'camera.identifier' }, - 'cameraimage' => { 489 => [\'Cameras','CamerasCameraImage'] }, - 'cameraimageitemsemantic' => { 489 => [\'Cameras','CamerasCameraImageItemSemantic'] }, - 'cameraimageitemuri' => { 489 => [\'Cameras','CamerasCameraImageItemURI'] }, - 'cameraimagingmodel' => { 489 => [\'Cameras','CamerasCameraImagingModel'] }, - 'cameraimagingmodeldistortion' => { 489 => [\'Cameras','CamerasCameraImagingModelDistortion'] }, - 'cameraimagingmodeldistortioncount' => { 489 => [\'Cameras','CamerasCameraImagingModelDistortionCount'] }, - 'cameraimagingmodelfocallengthx' => { 489 => [\'Cameras','CamerasCameraImagingModelFocalLengthX'] }, - 'cameraimagingmodelfocallengthy' => { 489 => [\'Cameras','CamerasCameraImagingModelFocalLengthY'] }, - 'cameraimagingmodelimageheight' => { 489 => [\'Cameras','CamerasCameraImagingModelImageHeight'] }, - 'cameraimagingmodelimagewidth' => { 489 => [\'Cameras','CamerasCameraImagingModelImageWidth'] }, - 'cameraimagingmodelpixelaspectratio' => { 489 => [\'Cameras','CamerasCameraImagingModelPixelAspectRatio'] }, - 'cameraimagingmodelprincipalpointx' => { 489 => [\'Cameras','CamerasCameraImagingModelPrincipalPointX'] }, - 'cameraimagingmodelprincipalpointy' => { 489 => [\'Cameras','CamerasCameraImagingModelPrincipalPointY'] }, - 'cameraimagingmodelskew' => { 489 => [\'Cameras','CamerasCameraImagingModelSkew'] }, + 'cameraid' => { 329 => 0x209, 408 => 'cmid', 424 => 0x209 }, + 'cameraidentifier' => { 402 => 'camera.identifier' }, + 'cameraimage' => { 490 => [\'Cameras','CamerasCameraImage'] }, + 'cameraimageitemsemantic' => { 490 => [\'Cameras','CamerasCameraImageItemSemantic'] }, + 'cameraimageitemuri' => { 490 => [\'Cameras','CamerasCameraImageItemURI'] }, + 'cameraimagingmodel' => { 490 => [\'Cameras','CamerasCameraImagingModel'] }, + 'cameraimagingmodeldistortion' => { 490 => [\'Cameras','CamerasCameraImagingModelDistortion'] }, + 'cameraimagingmodeldistortioncount' => { 490 => [\'Cameras','CamerasCameraImagingModelDistortionCount'] }, + 'cameraimagingmodelfocallengthx' => { 490 => [\'Cameras','CamerasCameraImagingModelFocalLengthX'] }, + 'cameraimagingmodelfocallengthy' => { 490 => [\'Cameras','CamerasCameraImagingModelFocalLengthY'] }, + 'cameraimagingmodelimageheight' => { 490 => [\'Cameras','CamerasCameraImagingModelImageHeight'] }, + 'cameraimagingmodelimagewidth' => { 490 => [\'Cameras','CamerasCameraImagingModelImageWidth'] }, + 'cameraimagingmodelpixelaspectratio' => { 490 => [\'Cameras','CamerasCameraImagingModelPixelAspectRatio'] }, + 'cameraimagingmodelprincipalpointx' => { 490 => [\'Cameras','CamerasCameraImagingModelPrincipalPointX'] }, + 'cameraimagingmodelprincipalpointy' => { 490 => [\'Cameras','CamerasCameraImagingModelPrincipalPointY'] }, + 'cameraimagingmodelskew' => { 490 => [\'Cameras','CamerasCameraImagingModelSkew'] }, 'cameraiso' => { 36 => 0x10 }, - 'cameralabel' => { 122 => 0xc7a1, 539 => 'cameraLabel' }, - 'cameralightestimate' => { 489 => [\'Cameras','CamerasCameraLightEstimate'] }, - 'cameralightestimatecolorcorrectionb' => { 489 => [\'Cameras','CamerasCameraLightEstimateColorCorrectionB'] }, - 'cameralightestimatecolorcorrectiong' => { 489 => [\'Cameras','CamerasCameraLightEstimateColorCorrectionG'] }, - 'cameralightestimatecolorcorrectionr' => { 489 => [\'Cameras','CamerasCameraLightEstimateColorCorrectionR'] }, - 'cameralightestimatepixelintensity' => { 489 => [\'Cameras','CamerasCameraLightEstimatePixelIntensity'] }, - 'cameramakemodel' => { 500 => 'CameraMakeModel' }, - 'cameramodel' => { 391 => 0x410, 539 => 'cameraModel' }, + 'cameralabel' => { 122 => 0xc7a1, 540 => 'cameraLabel' }, + 'cameralightestimate' => { 490 => [\'Cameras','CamerasCameraLightEstimate'] }, + 'cameralightestimatecolorcorrectionb' => { 490 => [\'Cameras','CamerasCameraLightEstimateColorCorrectionB'] }, + 'cameralightestimatecolorcorrectiong' => { 490 => [\'Cameras','CamerasCameraLightEstimateColorCorrectionG'] }, + 'cameralightestimatecolorcorrectionr' => { 490 => [\'Cameras','CamerasCameraLightEstimateColorCorrectionR'] }, + 'cameralightestimatepixelintensity' => { 490 => [\'Cameras','CamerasCameraLightEstimatePixelIntensity'] }, + 'cameramakemodel' => { 501 => 'CameraMakeModel' }, + 'cameramodel' => { 392 => 0x410, 540 => 'cameraModel' }, 'cameramodelid' => { 179 => 'CameraModelID' }, - 'cameramodelrestriction' => { 510 => 'CameraModelRestriction', 512 => 'CameraModelRestriction' }, - 'cameramotion' => { 401 => 'direction.motion' }, - 'cameramove' => { 539 => '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, 347 => 0x8f, 386 => 0x1, 391 => 0x100, 440 => [0x16,0x18], 471 => 0x28, 472 => 0x24, 473 => 0x29 }, + 'cameramodelrestriction' => { 511 => 'CameraModelRestriction', 513 => 'CameraModelRestriction' }, + 'cameramotion' => { 402 => 'direction.motion' }, + 'cameramove' => { 540 => '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, 348 => 0x8f, 387 => 0x1, 392 => 0x100, 441 => [0x16,0x18], 472 => 0x28, 473 => 0x24, 474 => 0x29 }, 'cameraowner' => { 144 => 0xc353 }, - 'cameraparameters' => { 328 => 0x2050 }, + 'cameraparameters' => { 329 => 0x2050 }, 'camerapicturestyle' => { 28 => 0xaf }, - 'camerapitch' => { 118 => 0x9, 407 => "\xa9gpt" }, - 'camerapointcloud' => { 489 => [\'Cameras','CamerasCameraPointCloud'] }, - 'camerapointcloudmetric' => { 489 => [\'Cameras','CamerasCameraPointCloudMetric'] }, - 'camerapointcloudpointcloud' => { 489 => [\'Cameras','CamerasCameraPointCloudPointCloud'] }, - 'camerapointcloudpoints' => { 489 => [\'Cameras','CamerasCameraPointCloudPoints'] }, - 'camerapose' => { 489 => [\'Cameras','CamerasCameraPose'] }, - 'cameraposepositionx' => { 489 => [\'Cameras','CamerasCameraPosePositionX'] }, - 'cameraposepositiony' => { 489 => [\'Cameras','CamerasCameraPosePositionY'] }, - 'cameraposepositionz' => { 489 => [\'Cameras','CamerasCameraPosePositionZ'] }, - 'cameraposerotationw' => { 489 => [\'Cameras','CamerasCameraPoseRotationW'] }, - 'cameraposerotationx' => { 489 => [\'Cameras','CamerasCameraPoseRotationX'] }, - 'cameraposerotationy' => { 489 => [\'Cameras','CamerasCameraPoseRotationY'] }, - 'cameraposerotationz' => { 489 => [\'Cameras','CamerasCameraPoseRotationZ'] }, - 'cameraposetimestamp' => { 489 => [\'Cameras','CamerasCameraPoseTimestamp'] }, - 'cameraprofile' => { 510 => 'CameraProfile', 512 => 'CameraProfile' }, - 'cameraprofiledigest' => { 510 => 'CameraProfileDigest', 512 => 'CameraProfileDigest' }, - 'cameraprofiles' => { 527 => 'CameraProfiles' }, - 'cameraprofilesaperturevalue' => { 527 => [\'CameraProfiles','CameraProfilesApertureValue'] }, - 'cameraprofilesauthor' => { 527 => [\'CameraProfiles','CameraProfilesAuthor'] }, - 'cameraprofilesautoscale' => { 527 => [\'CameraProfiles','CameraProfilesAutoScale'] }, - 'cameraprofilescameraprettyname' => { 527 => [\'CameraProfiles','CameraProfilesCameraPrettyName'] }, - 'cameraprofilescamerarawprofile' => { 527 => [\'CameraProfiles','CameraProfilesCameraRawProfile'] }, - 'cameraprofilesfocallength' => { 527 => [\'CameraProfiles','CameraProfilesFocalLength'] }, - 'cameraprofilesfocusdistance' => { 527 => [\'CameraProfiles','CameraProfilesFocusDistance'] }, - 'cameraprofileslens' => { 527 => [\'CameraProfiles','CameraProfilesLens'] }, - 'cameraprofileslensprettyname' => { 527 => [\'CameraProfiles','CameraProfilesLensPrettyName'] }, - 'cameraprofilesmake' => { 527 => [\'CameraProfiles','CameraProfilesMake'] }, - 'cameraprofilesmodel' => { 527 => [\'CameraProfiles','CameraProfilesModel'] }, - 'cameraprofilesperspectivemodel' => { 527 => [\'CameraProfiles','CameraProfilesPerspectiveModel'] }, - 'cameraprofilesperspectivemodelimagexcenter' => { 527 => [\'CameraProfiles','CameraProfilesPerspectiveModelImageXCenter'] }, - 'cameraprofilesperspectivemodelimageycenter' => { 527 => [\'CameraProfiles','CameraProfilesPerspectiveModelImageYCenter'] }, - 'cameraprofilesperspectivemodelradialdistortparam1' => { 527 => [\'CameraProfiles','CameraProfilesPerspectiveModelRadialDistortParam1'] }, - 'cameraprofilesperspectivemodelradialdistortparam2' => { 527 => [\'CameraProfiles','CameraProfilesPerspectiveModelRadialDistortParam2'] }, - 'cameraprofilesperspectivemodelradialdistortparam3' => { 527 => [\'CameraProfiles','CameraProfilesPerspectiveModelRadialDistortParam3'] }, - 'cameraprofilesperspectivemodelscalefactor' => { 527 => [\'CameraProfiles','CameraProfilesPerspectiveModelScaleFactor'] }, - 'cameraprofilesperspectivemodelversion' => { 527 => [\'CameraProfiles','CameraProfilesPerspectiveModelVersion'] }, - 'cameraprofilesprofilename' => { 527 => [\'CameraProfiles','CameraProfilesProfileName'] }, - 'cameraprofilessensorformatfactor' => { 527 => [\'CameraProfiles','CameraProfilesSensorFormatFactor'] }, - 'cameraprofilesuniquecameramodel' => { 527 => [\'CameraProfiles','CameraProfilesUniqueCameraModel'] }, + 'camerapitch' => { 118 => 0x9, 408 => "\xa9gpt" }, + 'camerapointcloud' => { 490 => [\'Cameras','CamerasCameraPointCloud'] }, + 'camerapointcloudmetric' => { 490 => [\'Cameras','CamerasCameraPointCloudMetric'] }, + 'camerapointcloudpointcloud' => { 490 => [\'Cameras','CamerasCameraPointCloudPointCloud'] }, + 'camerapointcloudpoints' => { 490 => [\'Cameras','CamerasCameraPointCloudPoints'] }, + 'camerapose' => { 490 => [\'Cameras','CamerasCameraPose'] }, + 'cameraposepositionx' => { 490 => [\'Cameras','CamerasCameraPosePositionX'] }, + 'cameraposepositiony' => { 490 => [\'Cameras','CamerasCameraPosePositionY'] }, + 'cameraposepositionz' => { 490 => [\'Cameras','CamerasCameraPosePositionZ'] }, + 'cameraposerotationw' => { 490 => [\'Cameras','CamerasCameraPoseRotationW'] }, + 'cameraposerotationx' => { 490 => [\'Cameras','CamerasCameraPoseRotationX'] }, + 'cameraposerotationy' => { 490 => [\'Cameras','CamerasCameraPoseRotationY'] }, + 'cameraposerotationz' => { 490 => [\'Cameras','CamerasCameraPoseRotationZ'] }, + 'cameraposetimestamp' => { 490 => [\'Cameras','CamerasCameraPoseTimestamp'] }, + 'cameraprofile' => { 511 => 'CameraProfile', 513 => 'CameraProfile' }, + 'cameraprofiledigest' => { 511 => 'CameraProfileDigest', 513 => 'CameraProfileDigest' }, + 'cameraprofiles' => { 528 => 'CameraProfiles' }, + 'cameraprofilesaperturevalue' => { 528 => [\'CameraProfiles','CameraProfilesApertureValue'] }, + 'cameraprofilesauthor' => { 528 => [\'CameraProfiles','CameraProfilesAuthor'] }, + 'cameraprofilesautoscale' => { 528 => [\'CameraProfiles','CameraProfilesAutoScale'] }, + 'cameraprofilescameraprettyname' => { 528 => [\'CameraProfiles','CameraProfilesCameraPrettyName'] }, + 'cameraprofilescamerarawprofile' => { 528 => [\'CameraProfiles','CameraProfilesCameraRawProfile'] }, + 'cameraprofilesfocallength' => { 528 => [\'CameraProfiles','CameraProfilesFocalLength'] }, + 'cameraprofilesfocusdistance' => { 528 => [\'CameraProfiles','CameraProfilesFocusDistance'] }, + 'cameraprofileslens' => { 528 => [\'CameraProfiles','CameraProfilesLens'] }, + 'cameraprofileslensprettyname' => { 528 => [\'CameraProfiles','CameraProfilesLensPrettyName'] }, + 'cameraprofilesmake' => { 528 => [\'CameraProfiles','CameraProfilesMake'] }, + 'cameraprofilesmodel' => { 528 => [\'CameraProfiles','CameraProfilesModel'] }, + 'cameraprofilesperspectivemodel' => { 528 => [\'CameraProfiles','CameraProfilesPerspectiveModel'] }, + 'cameraprofilesperspectivemodelimagexcenter' => { 528 => [\'CameraProfiles','CameraProfilesPerspectiveModelImageXCenter'] }, + 'cameraprofilesperspectivemodelimageycenter' => { 528 => [\'CameraProfiles','CameraProfilesPerspectiveModelImageYCenter'] }, + 'cameraprofilesperspectivemodelradialdistortparam1' => { 528 => [\'CameraProfiles','CameraProfilesPerspectiveModelRadialDistortParam1'] }, + 'cameraprofilesperspectivemodelradialdistortparam2' => { 528 => [\'CameraProfiles','CameraProfilesPerspectiveModelRadialDistortParam2'] }, + 'cameraprofilesperspectivemodelradialdistortparam3' => { 528 => [\'CameraProfiles','CameraProfilesPerspectiveModelRadialDistortParam3'] }, + 'cameraprofilesperspectivemodelscalefactor' => { 528 => [\'CameraProfiles','CameraProfilesPerspectiveModelScaleFactor'] }, + 'cameraprofilesperspectivemodelversion' => { 528 => [\'CameraProfiles','CameraProfilesPerspectiveModelVersion'] }, + 'cameraprofilesprofilename' => { 528 => [\'CameraProfiles','CameraProfilesProfileName'] }, + 'cameraprofilessensorformatfactor' => { 528 => [\'CameraProfiles','CameraProfilesSensorFormatFactor'] }, + 'cameraprofilesuniquecameramodel' => { 528 => [\'CameraProfiles','CameraProfilesUniqueCameraModel'] }, 'camerarawcolortone' => { 112 => 0xe1 }, 'camerarawcontrast' => { 112 => 0xe3 }, 'camerarawhighlightpoint' => { 112 => 0xe6 }, @@ -1415,23 +1417,23 @@ my %tagLookup = ( 'camerarawsaturation' => { 112 => 0xe2 }, 'camerarawshadowpoint' => { 112 => 0xe7 }, 'camerarawsharpness' => { 112 => 0xe5 }, - 'cameraroll' => { 118 => 0xb, 407 => "\xa9grl" }, - 'cameras' => { 489 => 'Cameras' }, - 'cameraserialnumber' => { 122 => 0xc62f, 181 => 'CameraSerialNumber', 500 => 'CameraSerialNumber' }, - 'camerasettingsversion' => { 323 => 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, 31 => [0x87,0x91], 32 => [0x99,0x9f,0xa4,0xa8,0x105], 35 => ['-3',0x64,0x47,0x53,0x5b,0x5c], 79 => 0xc, 141 => 0x406, 327 => 0x1306, 342 => 0x320, 349 => 0x3402, 382 => 0x47, 421 => 0x43, 475 => 0x5 }, - 'cameratemperature4' => { 387 => 0x14 }, - 'cameratemperature5' => { 387 => 0x16 }, + 'cameraroll' => { 118 => 0xb, 408 => "\xa9grl" }, + 'cameras' => { 490 => 'Cameras' }, + 'cameraserialnumber' => { 122 => 0xc62f, 181 => 'CameraSerialNumber', 501 => 'CameraSerialNumber' }, + 'camerasettingsversion' => { 324 => 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, 31 => [0x87,0x91], 32 => [0x99,0x9f,0xa4,0xa8,0x105], 35 => ['-3',0x64,0x47,0x53,0x5b,0x5c], 79 => 0xc, 141 => 0x406, 328 => 0x1306, 343 => 0x320, 350 => 0x3402, 383 => 0x47, 422 => 0x43, 476 => 0x5 }, + 'cameratemperature4' => { 388 => 0x14 }, + 'cameratemperature5' => { 388 => 0x16 }, 'cameratemperaturerangemax' => { 124 => 0x5 }, 'cameratemperaturerangemin' => { 124 => 0x6 }, - 'cameratrait' => { 489 => [\'Cameras','CamerasCameraTrait'] }, - 'cameratype' => { 79 => 0x1a, 328 => 0x207 }, - 'cameratype2' => { 324 => 0x100 }, - 'cameravendorinfo' => { 489 => [\'Cameras','CamerasCameraVendorInfo'] }, - 'cameravendorinfomanufacturer' => { 489 => [\'Cameras','CamerasCameraVendorInfoManufacturer'] }, - 'cameravendorinfomodel' => { 489 => [\'Cameras','CamerasCameraVendorInfoModel'] }, - 'cameravendorinfonotes' => { 489 => [\'Cameras','CamerasCameraVendorInfoNotes'] }, - 'camerayaw' => { 118 => 0xa, 407 => "\xa9gyw" }, + 'cameratrait' => { 490 => [\'Cameras','CamerasCameraTrait'] }, + 'cameratype' => { 79 => 0x1a, 329 => 0x207 }, + 'cameratype2' => { 325 => 0x100 }, + 'cameravendorinfo' => { 490 => [\'Cameras','CamerasCameraVendorInfo'] }, + 'cameravendorinfomanufacturer' => { 490 => [\'Cameras','CamerasCameraVendorInfoManufacturer'] }, + 'cameravendorinfomodel' => { 490 => [\'Cameras','CamerasCameraVendorInfoModel'] }, + 'cameravendorinfonotes' => { 490 => [\'Cameras','CamerasCameraVendorInfoNotes'] }, + 'camerayaw' => { 118 => 0xa, 408 => "\xa9gyw" }, 'camreverse' => { 119 => 'CamReverse' }, 'canondr4' => { 123 => 'CanonDR4' }, 'canonexposuremode' => { 36 => 0x14 }, @@ -1445,348 +1447,348 @@ my %tagLookup = ( 'canonlogversion' => { 65 => 0xb }, 'canonmodelid' => { 66 => 0x10, 100 => 0x1834 }, 'canonvrd' => { 123 => 'CanonVRD' }, - 'caption' => { 505 => 'caption' }, + 'caption' => { 506 => 'caption' }, 'caption-abstract' => { 134 => 0x78 }, - 'captionsauthornames' => { 515 => 'CaptionsAuthorNames' }, - 'captionsdatetimestamps' => { 515 => 'CaptionsDateTimeStamps' }, - 'captionwriter' => { 527 => 'CaptionWriter' }, + 'captionsauthornames' => { 516 => 'CaptionsAuthorNames' }, + 'captionsdatetimestamps' => { 516 => 'CaptionsDateTimeStamps' }, + 'captionwriter' => { 528 => 'CaptionWriter' }, 'captureframerate' => { 116 => 0x4001 }, 'captureheightnormal' => { 141 => 0x1839 }, 'capturelook' => { 141 => 0xc48 }, - 'capturemode' => { 401 => 'com.apple.photos.captureMode' }, - 'capturesoftware' => { 498 => 'CaptureSoftware' }, + 'capturemode' => { 402 => 'com.apple.photos.captureMode' }, + 'capturesoftware' => { 499 => 'CaptureSoftware' }, 'capturewidthnormal' => { 141 => 0x1838 }, 'capturewidthtest' => { 141 => 0x1842 }, 'cardshutterlock' => { 187 => 0x49 }, 'casioimagesize' => { 116 => 0x9 }, - 'catalogsets' => { 134 => 0xff, 491 => 'CatalogSets', 503 => 'CatalogSets' }, - 'categories' => { 66 => 0x23, 505 => 'categories' }, - 'category' => { 134 => 0xf, 182 => 'WM/Category', 322 => 0x30, 399 => 'catg', 527 => 'Category' }, - 'cbcrgain' => { 421 => 0xa036 }, - 'cbcrgaindefault' => { 421 => 0xa035 }, - 'cbcrmatrix' => { 421 => 0xa034 }, - 'cbcrmatrixdefault' => { 421 => 0xa033 }, - 'ccdboardversion' => { 342 => 0x331 }, - 'ccdscanmode' => { 328 => 0x1039 }, - 'ccdsensitivity' => { 285 => 0x6 }, - 'ccdversion' => { 342 => 0x330 }, - 'ccvavgluminancenits' => { 520 => 'ccv_avg_luminance_nits' }, - 'ccvmaxluminancenits' => { 520 => 'ccv_max_luminance_nits' }, - 'ccvminluminancenits' => { 520 => 'ccv_min_luminance_nits' }, - 'ccvprimariesxy' => { 520 => 'ccv_primaries_xy' }, - 'ccvwhitexy' => { 520 => 'ccv_white_xy' }, - 'cellglobalid' => { 509 => 'cgi' }, + 'catalogsets' => { 134 => 0xff, 492 => 'CatalogSets', 504 => 'CatalogSets' }, + 'categories' => { 66 => 0x23, 506 => 'categories' }, + 'category' => { 134 => 0xf, 182 => 'WM/Category', 323 => 0x30, 400 => 'catg', 528 => 'Category' }, + 'cbcrgain' => { 422 => 0xa036 }, + 'cbcrgaindefault' => { 422 => 0xa035 }, + 'cbcrmatrix' => { 422 => 0xa034 }, + 'cbcrmatrixdefault' => { 422 => 0xa033 }, + 'ccdboardversion' => { 343 => 0x331 }, + 'ccdscanmode' => { 329 => 0x1039 }, + 'ccdsensitivity' => { 286 => 0x6 }, + 'ccdversion' => { 343 => 0x330 }, + 'ccvavgluminancenits' => { 521 => 'ccv_avg_luminance_nits' }, + 'ccvmaxluminancenits' => { 521 => 'ccv_max_luminance_nits' }, + 'ccvminluminancenits' => { 521 => 'ccv_min_luminance_nits' }, + 'ccvprimariesxy' => { 521 => 'ccv_primaries_xy' }, + 'ccvwhitexy' => { 521 => 'ccv_white_xy' }, + 'cellglobalid' => { 510 => 'cgi' }, 'celllength' => { 122 => 0x109 }, - 'cellr' => { 509 => 'r' }, - 'celltowerid' => { 509 => 'cellid' }, + 'cellr' => { 510 => 'r' }, + 'celltowerid' => { 510 => 'cellid' }, 'cellwidth' => { 122 => 0x108 }, - 'centerafarea' => { 314 => '15.1' }, - 'centerfocuspoint' => { 318 => '2.2' }, + 'centerafarea' => { 315 => '15.1' }, + 'centerfocuspoint' => { 319 => '2.2' }, 'centerpixel' => { 141 => 0x40c }, - 'centerweightedareasize' => { 303 => '7.1', 304 => '8.1', 306 => '8.1', 307 => '8.1', 311 => '7.1', 312 => '5.1', 313 => '7.1', 314 => '6.3', 316 => '8.1', 317 => '8.1', 318 => '8.1', 319 => 0x1f, 320 => 0x1f, 321 => 0x1f }, - 'certificate' => { 543 => 'Certificate' }, + 'centerweightedareasize' => { 304 => '7.1', 305 => '8.1', 307 => '8.1', 308 => '8.1', 312 => '7.1', 313 => '5.1', 314 => '7.1', 315 => '6.3', 317 => '8.1', 318 => '8.1', 319 => '8.1', 320 => 0x1f, 321 => 0x1f, 322 => 0x1f }, + 'certificate' => { 544 => 'Certificate' }, 'cfainterpolationalgorithm' => { 141 => 0xe60 }, 'cfainterpolationmetric' => { 141 => 0xe61 }, 'cfaoffsetcols' => { 141 => 0xc71 }, 'cfaoffsetrows' => { 141 => 0xc6f }, - 'cfapattern' => { 122 => 0xa302, 352 => 0x9, 516 => 'CFAPattern' }, + 'cfapattern' => { 122 => 0xa302, 353 => 0x9, 517 => 'CFAPattern' }, 'cfapattern2' => { 122 => 0x828e }, - 'cfapatterncolumns' => { 516 => [\'CFAPattern','CFAPatternColumns'] }, - 'cfapatternrows' => { 516 => [\'CFAPattern','CFAPatternRows'] }, - 'cfapatternvalues' => { 516 => [\'CFAPattern','CFAPatternValues'] }, + 'cfapatterncolumns' => { 517 => [\'CFAPattern','CFAPatternColumns'] }, + 'cfapatternrows' => { 517 => [\'CFAPattern','CFAPatternRows'] }, + 'cfapatternvalues' => { 517 => [\'CFAPattern','CFAPatternValues'] }, 'cfarepeatpatterndim' => { 122 => 0x828d }, 'cfazipperfixthreshold' => { 141 => 0xe62 }, - 'channel' => { 529 => 'channel' }, - 'channela-lang' => { 529 => [\'channel','channelA-lang'] }, - 'channelchannel' => { 529 => [\'channel','channelChannel'] }, + 'channel' => { 530 => 'channel' }, + 'channela-lang' => { 530 => [\'channel','channelA-lang'] }, + 'channelchannel' => { 530 => [\'channel','channelChannel'] }, 'channels' => { 158 => 'Channels' }, - 'channelsubchannel1' => { 529 => [\'channel','channelSubchannel1'] }, - 'channelsubchannel2' => { 529 => [\'channel','channelSubchannel2'] }, - 'channelsubchannel3' => { 529 => [\'channel','channelSubchannel3'] }, - 'channelsubchannel4' => { 529 => [\'channel','channelSubchannel4'] }, - 'chapterlist' => { 407 => 'chpl' }, + 'channelsubchannel1' => { 530 => [\'channel','channelSubchannel1'] }, + 'channelsubchannel2' => { 530 => [\'channel','channelSubchannel2'] }, + 'channelsubchannel3' => { 530 => [\'channel','channelSubchannel3'] }, + 'channelsubchannel4' => { 530 => [\'channel','channelSubchannel4'] }, + 'chapterlist' => { 408 => 'chpl' }, 'checkmark' => { 106 => 0x10101, 111 => 0x26a }, 'checkmark2' => { 112 => 0x8e }, - 'childfontfiles' => { 544 => [\'Fonts','FontsChildFontFiles'] }, - 'chmodeshootingspeed' => { 303 => '10.3', 304 => '11.2', 319 => 0x10b, 320 => 0x10b, 321 => 0x121 }, + 'childfontfiles' => { 545 => [\'Fonts','FontsChildFontFiles'] }, + 'chmodeshootingspeed' => { 304 => '10.3', 305 => '11.2', 320 => 0x10b, 321 => 0x10b, 322 => 0x121 }, 'chromablurradius' => { 122 => 0xc631 }, 'chromanoisecolorspace' => { 141 => 0xe6d }, 'chromanoiseedgemapthresh' => { 141 => 0xe6c }, 'chromanoisehighfthresh' => { 141 => 0xe6a }, 'chromanoiselowfthresh' => { 141 => 0xe6b }, - 'chromaticaberration' => { 106 => 0x20703, 112 => 0x66, 421 => 0xa051 }, - 'chromaticaberrationb' => { 510 => 'ChromaticAberrationB', 512 => 'ChromaticAberrationB' }, + 'chromaticaberration' => { 106 => 0x20703, 112 => 0x66, 422 => 0xa051 }, + 'chromaticaberrationb' => { 511 => 'ChromaticAberrationB', 513 => 'ChromaticAberrationB' }, 'chromaticaberrationblue' => { 106 => 0x20708, 112 => 0x6b }, 'chromaticaberrationcorr' => { 81 => [0x4,0x5] }, - 'chromaticaberrationcorrection' => { 122 => 0x7034, 372 => 0x1, 485 => 0x900d }, - 'chromaticaberrationcorrparams' => { 122 => 0x7035, 479 => 0x66a, 480 => [0x37c,0x384,0x39c,0x3b0,0x3b8] }, + 'chromaticaberrationcorrection' => { 122 => 0x7034, 373 => 0x1, 486 => 0x900d }, + 'chromaticaberrationcorrparams' => { 122 => 0x7035, 480 => 0x66a, 481 => [0x37c,0x384,0x39c,0x3b0,0x3b8] }, 'chromaticaberrationon' => { 106 => '0x20703.0', 112 => 0x62 }, - 'chromaticaberrationr' => { 510 => 'ChromaticAberrationR', 512 => 'ChromaticAberrationR' }, + 'chromaticaberrationr' => { 511 => 'ChromaticAberrationR', 513 => 'ChromaticAberrationR' }, 'chromaticaberrationred' => { 106 => 0x20707, 112 => 0x6a }, 'chromaticaberrationsetting' => { 82 => 0x6 }, - 'chrominancenoisereduction' => { 106 => 0x20601, 112 => 0x5e, 424 => 0x1a }, + 'chrominancenoisereduction' => { 106 => 0x20601, 112 => 0x5e, 425 => 0x1a }, 'chrominancenr_tiff_jpeg' => { 112 => 0x60 }, - 'circadatecreated' => { 524 => 'CircaDateCreated' }, - 'circgradbasedcorractive' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionActive'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionActive'] }, - 'circgradbasedcorramount' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionAmount'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionAmount'] }, - 'circgradbasedcorrblacks2012' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalBlacks2012'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalBlacks2012'] }, - 'circgradbasedcorrbrightness' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalBrightness'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalBrightness'] }, - 'circgradbasedcorrclarity' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity'] }, - 'circgradbasedcorrclarity2012' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity2012'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity2012'] }, - 'circgradbasedcorrcontrast' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast'] }, - 'circgradbasedcorrcontrast2012' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast2012'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast2012'] }, - 'circgradbasedcorrcorrectionname' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionName'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionName'] }, - 'circgradbasedcorrcorrectionsyncid' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionSyncID'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionSyncID'] }, - 'circgradbasedcorrdefringe' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalDefringe'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalDefringe'] }, - 'circgradbasedcorrdehaze' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalDehaze'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalDehaze'] }, - 'circgradbasedcorrexposure' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure'] }, - 'circgradbasedcorrexposure2012' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure2012'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure2012'] }, - 'circgradbasedcorrhighlights2012' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalHighlights2012'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalHighlights2012'] }, - 'circgradbasedcorrhue' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalHue'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalHue'] }, - 'circgradbasedcorrluminancenoise' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalLuminanceNoise'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalLuminanceNoise'] }, - 'circgradbasedcorrmaskalpha' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAlpha'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAlpha'] }, - 'circgradbasedcorrmaskangle' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAngle'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAngle'] }, - 'circgradbasedcorrmaskbottom' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksBottom'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksBottom'] }, - 'circgradbasedcorrmaskcentervalue' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterValue'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterValue'] }, - 'circgradbasedcorrmaskcenterweight' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterWeight'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterWeight'] }, - 'circgradbasedcorrmaskdabs' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksDabs'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksDabs'] }, - 'circgradbasedcorrmaskfeather' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFeather'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFeather'] }, - 'circgradbasedcorrmaskflipped' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlipped'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlipped'] }, - 'circgradbasedcorrmaskflow' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlow'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlow'] }, - 'circgradbasedcorrmaskfullx' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullX'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullX'] }, - 'circgradbasedcorrmaskfully' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullY'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullY'] }, - 'circgradbasedcorrmaskinputdigest' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksInputDigest'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksInputDigest'] }, - 'circgradbasedcorrmaskleft' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksLeft'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksLeft'] }, - 'circgradbasedcorrmaskmaskactive' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskActive'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskActive'] }, - 'circgradbasedcorrmaskmaskblendmode' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskBlendMode'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskBlendMode'] }, - 'circgradbasedcorrmaskmaskdigest' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskDigest'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskDigest'] }, - 'circgradbasedcorrmaskmaskinverted' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskInverted'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskInverted'] }, - 'circgradbasedcorrmaskmaskname' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskName'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskName'] }, - 'circgradbasedcorrmaskmasks' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasks'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasks'] }, - 'circgradbasedcorrmaskmasksalpha' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksAlpha'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksAlpha'] }, - 'circgradbasedcorrmaskmasksangle' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksAngle'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksAngle'] }, - 'circgradbasedcorrmaskmasksbottom' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksBottom'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksBottom'] }, - 'circgradbasedcorrmaskmaskscentervalue' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksCenterValue'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksCenterValue'] }, - 'circgradbasedcorrmaskmaskscenterweight' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksCenterWeight'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksCenterWeight'] }, - 'circgradbasedcorrmaskmasksdabs' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksDabs'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksDabs'] }, - 'circgradbasedcorrmaskmasksfeather' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFeather'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFeather'] }, - 'circgradbasedcorrmaskmasksflipped' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFlipped'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFlipped'] }, - 'circgradbasedcorrmaskmasksflow' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFlow'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFlow'] }, - 'circgradbasedcorrmaskmasksfullx' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFullX'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFullX'] }, - 'circgradbasedcorrmaskmasksfully' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFullY'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFullY'] }, - 'circgradbasedcorrmaskmasksinputdigest' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksInputDigest'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksInputDigest'] }, - 'circgradbasedcorrmaskmasksleft' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksLeft'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksLeft'] }, - 'circgradbasedcorrmaskmasksmaskactive' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskActive'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskActive'] }, - 'circgradbasedcorrmaskmasksmaskblendmode' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskBlendMode'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskBlendMode'] }, - 'circgradbasedcorrmaskmasksmaskdigest' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskDigest'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskDigest'] }, - 'circgradbasedcorrmaskmasksmaskinverted' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskInverted'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskInverted'] }, - 'circgradbasedcorrmaskmasksmaskname' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskName'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskName'] }, - 'circgradbasedcorrmaskmasksmasksubtype' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskSubType'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskSubType'] }, - 'circgradbasedcorrmaskmasksmasksyncid' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskSyncID'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskSyncID'] }, - 'circgradbasedcorrmaskmasksmaskversion' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskVersion'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskVersion'] }, - 'circgradbasedcorrmaskmasksmidpoint' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMidpoint'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMidpoint'] }, - 'circgradbasedcorrmaskmasksorigin' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksOrigin'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksOrigin'] }, - 'circgradbasedcorrmaskmasksperimetervalue' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksPerimeterValue'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksPerimeterValue'] }, - 'circgradbasedcorrmaskmasksradius' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRadius'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRadius'] }, - 'circgradbasedcorrmaskmasksreferencepoint' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksReferencePoint'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksReferencePoint'] }, - 'circgradbasedcorrmaskmasksright' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRight'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRight'] }, - 'circgradbasedcorrmaskmasksroundness' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRoundness'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRoundness'] }, - 'circgradbasedcorrmaskmaskssizex' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksSizeX'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksSizeX'] }, - 'circgradbasedcorrmaskmaskssizey' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksSizeY'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksSizeY'] }, - 'circgradbasedcorrmaskmaskstop' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksTop'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksTop'] }, - 'circgradbasedcorrmaskmasksubtype' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskSubType'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskSubType'] }, - 'circgradbasedcorrmaskmasksvalue' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskValue'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskValue'] }, - 'circgradbasedcorrmaskmasksversion' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksVersion'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksVersion'] }, - 'circgradbasedcorrmaskmaskswhat' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksWhat'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksWhat'] }, - 'circgradbasedcorrmaskmaskswholeimagearea' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksWholeImageArea'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksWholeImageArea'] }, - 'circgradbasedcorrmaskmasksx' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksX'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksX'] }, - 'circgradbasedcorrmaskmasksy' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksY'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksY'] }, - 'circgradbasedcorrmaskmasksyncid' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskSyncID'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskSyncID'] }, - 'circgradbasedcorrmaskmaskszerox' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksZeroX'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksZeroX'] }, - 'circgradbasedcorrmaskmaskszeroy' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksZeroY'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksZeroY'] }, - 'circgradbasedcorrmaskmaskversion' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskVersion'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskVersion'] }, - 'circgradbasedcorrmaskmidpoint' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMidpoint'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMidpoint'] }, - 'circgradbasedcorrmaskorigin' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksOrigin'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksOrigin'] }, - 'circgradbasedcorrmaskperimetervalue' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksPerimeterValue'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksPerimeterValue'] }, - 'circgradbasedcorrmaskradius' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRadius'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRadius'] }, - 'circgradbasedcorrmaskrange' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMask'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMask'] }, - 'circgradbasedcorrmaskrangeareamodels' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'] }, - 'circgradbasedcorrmaskrangeareamodelscolorsampleinfo' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, - 'circgradbasedcorrmaskrangeareamodelscomponents' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'] }, - 'circgradbasedcorrmaskrangecoloramount' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'] }, - 'circgradbasedcorrmaskrangedepthfeather' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'] }, - 'circgradbasedcorrmaskrangedepthmax' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'] }, - 'circgradbasedcorrmaskrangedepthmin' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'] }, - 'circgradbasedcorrmaskrangeinvert' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'] }, - 'circgradbasedcorrmaskrangelumfeather' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'] }, - 'circgradbasedcorrmaskrangeluminancedepthsampleinfo' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'] }, - 'circgradbasedcorrmaskrangelummax' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'] }, - 'circgradbasedcorrmaskrangelummin' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'] }, - 'circgradbasedcorrmaskrangelumrange' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'] }, - 'circgradbasedcorrmaskrangesampletype' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'] }, - 'circgradbasedcorrmaskrangetype' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'] }, - 'circgradbasedcorrmaskrangeversion' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'] }, - 'circgradbasedcorrmaskreferencepoint' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksReferencePoint'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksReferencePoint'] }, - 'circgradbasedcorrmaskright' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRight'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRight'] }, - 'circgradbasedcorrmaskroundness' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRoundness'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRoundness'] }, - 'circgradbasedcorrmasks' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasks'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasks'] }, - 'circgradbasedcorrmasksizex' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeX'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeX'] }, - 'circgradbasedcorrmasksizey' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeY'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeY'] }, - 'circgradbasedcorrmasktop' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksTop'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksTop'] }, - 'circgradbasedcorrmaskvalue' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskValue'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskValue'] }, - 'circgradbasedcorrmaskversion' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksVersion'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksVersion'] }, - 'circgradbasedcorrmaskwhat' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksWhat'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksWhat'] }, - 'circgradbasedcorrmaskwholeimagearea' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksWholeImageArea'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksWholeImageArea'] }, - 'circgradbasedcorrmaskx' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksX'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksX'] }, - 'circgradbasedcorrmasky' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksY'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksY'] }, - 'circgradbasedcorrmaskzerox' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroX'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroX'] }, - 'circgradbasedcorrmaskzeroy' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroY'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroY'] }, - 'circgradbasedcorrmoire' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalMoire'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalMoire'] }, - 'circgradbasedcorrrangemask' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMask'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMask'] }, - 'circgradbasedcorrrangemaskareamodels' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModels'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModels'] }, - 'circgradbasedcorrrangemaskareamodelscolorsampleinfo' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, - 'circgradbasedcorrrangemaskareamodelscomponents' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'] }, - 'circgradbasedcorrrangemaskcoloramount' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskColorAmount'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskColorAmount'] }, - 'circgradbasedcorrrangemaskdepthfeather' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthFeather'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthFeather'] }, - 'circgradbasedcorrrangemaskdepthmax' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthMax'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthMax'] }, - 'circgradbasedcorrrangemaskdepthmin' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthMin'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthMin'] }, - 'circgradbasedcorrrangemaskinvert' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskInvert'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskInvert'] }, - 'circgradbasedcorrrangemasklumfeather' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumFeather'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumFeather'] }, - 'circgradbasedcorrrangemaskluminancedepthsampleinfo' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'] }, - 'circgradbasedcorrrangemasklummax' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumMax'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumMax'] }, - 'circgradbasedcorrrangemasklummin' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumMin'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumMin'] }, - 'circgradbasedcorrrangemasklumrange' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumRange'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumRange'] }, - 'circgradbasedcorrrangemasksampletype' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskSampleType'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskSampleType'] }, - 'circgradbasedcorrrangemasktype' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskType'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskType'] }, - 'circgradbasedcorrrangemaskversion' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskVersion'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskVersion'] }, - 'circgradbasedcorrsaturation' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSaturation'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSaturation'] }, - 'circgradbasedcorrshadows2012' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalShadows2012'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalShadows2012'] }, - 'circgradbasedcorrsharpness' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSharpness'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSharpness'] }, - 'circgradbasedcorrtemperature' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTemperature'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTemperature'] }, - 'circgradbasedcorrtexture' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTexture'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTexture'] }, - 'circgradbasedcorrtint' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTint'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTint'] }, - 'circgradbasedcorrtoninghue' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalToningHue'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalToningHue'] }, - 'circgradbasedcorrtoningsaturation' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalToningSaturation'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalToningSaturation'] }, - 'circgradbasedcorrwhat' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsWhat'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsWhat'] }, - 'circgradbasedcorrwhites2012' => { 510 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalWhites2012'], 512 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalWhites2012'] }, - 'circulargradientbasedcorrections' => { 510 => 'CircularGradientBasedCorrections', 512 => 'CircularGradientBasedCorrections' }, - 'city' => { 134 => 0x5a, 164 => 'City', 347 => 0x6d, 527 => 'City' }, - 'city2' => { 347 => 0x80 }, - 'clarity' => { 130 => 0x100f, 255 => 0x35, 256 => 0x3d, 448 => 0x2036, 510 => 'Clarity', 512 => 'Clarity' }, - 'clarity2012' => { 510 => 'Clarity2012', 512 => 'Clarity2012' }, - 'claritycontrol' => { 382 => 0x96 }, - 'classification' => { 407 => 'clsf' }, + 'circadatecreated' => { 525 => 'CircaDateCreated' }, + 'circgradbasedcorractive' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionActive'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionActive'] }, + 'circgradbasedcorramount' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionAmount'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionAmount'] }, + 'circgradbasedcorrblacks2012' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalBlacks2012'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalBlacks2012'] }, + 'circgradbasedcorrbrightness' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalBrightness'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalBrightness'] }, + 'circgradbasedcorrclarity' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity'] }, + 'circgradbasedcorrclarity2012' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity2012'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity2012'] }, + 'circgradbasedcorrcontrast' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast'] }, + 'circgradbasedcorrcontrast2012' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast2012'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast2012'] }, + 'circgradbasedcorrcorrectionname' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionName'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionName'] }, + 'circgradbasedcorrcorrectionsyncid' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionSyncID'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionSyncID'] }, + 'circgradbasedcorrdefringe' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalDefringe'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalDefringe'] }, + 'circgradbasedcorrdehaze' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalDehaze'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalDehaze'] }, + 'circgradbasedcorrexposure' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure'] }, + 'circgradbasedcorrexposure2012' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure2012'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure2012'] }, + 'circgradbasedcorrhighlights2012' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalHighlights2012'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalHighlights2012'] }, + 'circgradbasedcorrhue' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalHue'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalHue'] }, + 'circgradbasedcorrluminancenoise' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalLuminanceNoise'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalLuminanceNoise'] }, + 'circgradbasedcorrmaskalpha' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAlpha'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAlpha'] }, + 'circgradbasedcorrmaskangle' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAngle'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAngle'] }, + 'circgradbasedcorrmaskbottom' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksBottom'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksBottom'] }, + 'circgradbasedcorrmaskcentervalue' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterValue'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterValue'] }, + 'circgradbasedcorrmaskcenterweight' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterWeight'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterWeight'] }, + 'circgradbasedcorrmaskdabs' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksDabs'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksDabs'] }, + 'circgradbasedcorrmaskfeather' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFeather'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFeather'] }, + 'circgradbasedcorrmaskflipped' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlipped'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlipped'] }, + 'circgradbasedcorrmaskflow' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlow'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlow'] }, + 'circgradbasedcorrmaskfullx' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullX'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullX'] }, + 'circgradbasedcorrmaskfully' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullY'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullY'] }, + 'circgradbasedcorrmaskinputdigest' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksInputDigest'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksInputDigest'] }, + 'circgradbasedcorrmaskleft' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksLeft'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksLeft'] }, + 'circgradbasedcorrmaskmaskactive' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskActive'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskActive'] }, + 'circgradbasedcorrmaskmaskblendmode' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskBlendMode'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskBlendMode'] }, + 'circgradbasedcorrmaskmaskdigest' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskDigest'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskDigest'] }, + 'circgradbasedcorrmaskmaskinverted' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskInverted'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskInverted'] }, + 'circgradbasedcorrmaskmaskname' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskName'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskName'] }, + 'circgradbasedcorrmaskmasks' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasks'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasks'] }, + 'circgradbasedcorrmaskmasksalpha' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksAlpha'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksAlpha'] }, + 'circgradbasedcorrmaskmasksangle' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksAngle'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksAngle'] }, + 'circgradbasedcorrmaskmasksbottom' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksBottom'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksBottom'] }, + 'circgradbasedcorrmaskmaskscentervalue' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksCenterValue'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksCenterValue'] }, + 'circgradbasedcorrmaskmaskscenterweight' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksCenterWeight'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksCenterWeight'] }, + 'circgradbasedcorrmaskmasksdabs' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksDabs'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksDabs'] }, + 'circgradbasedcorrmaskmasksfeather' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFeather'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFeather'] }, + 'circgradbasedcorrmaskmasksflipped' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFlipped'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFlipped'] }, + 'circgradbasedcorrmaskmasksflow' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFlow'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFlow'] }, + 'circgradbasedcorrmaskmasksfullx' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFullX'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFullX'] }, + 'circgradbasedcorrmaskmasksfully' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFullY'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFullY'] }, + 'circgradbasedcorrmaskmasksinputdigest' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksInputDigest'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksInputDigest'] }, + 'circgradbasedcorrmaskmasksleft' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksLeft'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksLeft'] }, + 'circgradbasedcorrmaskmasksmaskactive' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskActive'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskActive'] }, + 'circgradbasedcorrmaskmasksmaskblendmode' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskBlendMode'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskBlendMode'] }, + 'circgradbasedcorrmaskmasksmaskdigest' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskDigest'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskDigest'] }, + 'circgradbasedcorrmaskmasksmaskinverted' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskInverted'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskInverted'] }, + 'circgradbasedcorrmaskmasksmaskname' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskName'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskName'] }, + 'circgradbasedcorrmaskmasksmasksubtype' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskSubType'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskSubType'] }, + 'circgradbasedcorrmaskmasksmasksyncid' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskSyncID'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskSyncID'] }, + 'circgradbasedcorrmaskmasksmaskversion' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskVersion'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskVersion'] }, + 'circgradbasedcorrmaskmasksmidpoint' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMidpoint'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMidpoint'] }, + 'circgradbasedcorrmaskmasksorigin' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksOrigin'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksOrigin'] }, + 'circgradbasedcorrmaskmasksperimetervalue' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksPerimeterValue'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksPerimeterValue'] }, + 'circgradbasedcorrmaskmasksradius' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRadius'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRadius'] }, + 'circgradbasedcorrmaskmasksreferencepoint' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksReferencePoint'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksReferencePoint'] }, + 'circgradbasedcorrmaskmasksright' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRight'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRight'] }, + 'circgradbasedcorrmaskmasksroundness' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRoundness'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRoundness'] }, + 'circgradbasedcorrmaskmaskssizex' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksSizeX'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksSizeX'] }, + 'circgradbasedcorrmaskmaskssizey' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksSizeY'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksSizeY'] }, + 'circgradbasedcorrmaskmaskstop' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksTop'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksTop'] }, + 'circgradbasedcorrmaskmasksubtype' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskSubType'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskSubType'] }, + 'circgradbasedcorrmaskmasksvalue' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskValue'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskValue'] }, + 'circgradbasedcorrmaskmasksversion' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksVersion'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksVersion'] }, + 'circgradbasedcorrmaskmaskswhat' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksWhat'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksWhat'] }, + 'circgradbasedcorrmaskmaskswholeimagearea' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksWholeImageArea'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksWholeImageArea'] }, + 'circgradbasedcorrmaskmasksx' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksX'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksX'] }, + 'circgradbasedcorrmaskmasksy' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksY'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksY'] }, + 'circgradbasedcorrmaskmasksyncid' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskSyncID'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskSyncID'] }, + 'circgradbasedcorrmaskmaskszerox' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksZeroX'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksZeroX'] }, + 'circgradbasedcorrmaskmaskszeroy' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksZeroY'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksZeroY'] }, + 'circgradbasedcorrmaskmaskversion' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskVersion'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskVersion'] }, + 'circgradbasedcorrmaskmidpoint' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMidpoint'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMidpoint'] }, + 'circgradbasedcorrmaskorigin' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksOrigin'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksOrigin'] }, + 'circgradbasedcorrmaskperimetervalue' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksPerimeterValue'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksPerimeterValue'] }, + 'circgradbasedcorrmaskradius' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRadius'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRadius'] }, + 'circgradbasedcorrmaskrange' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMask'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMask'] }, + 'circgradbasedcorrmaskrangeareamodels' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'] }, + 'circgradbasedcorrmaskrangeareamodelscolorsampleinfo' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, + 'circgradbasedcorrmaskrangeareamodelscomponents' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'] }, + 'circgradbasedcorrmaskrangecoloramount' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'] }, + 'circgradbasedcorrmaskrangedepthfeather' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'] }, + 'circgradbasedcorrmaskrangedepthmax' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'] }, + 'circgradbasedcorrmaskrangedepthmin' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'] }, + 'circgradbasedcorrmaskrangeinvert' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'] }, + 'circgradbasedcorrmaskrangelumfeather' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'] }, + 'circgradbasedcorrmaskrangeluminancedepthsampleinfo' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'] }, + 'circgradbasedcorrmaskrangelummax' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'] }, + 'circgradbasedcorrmaskrangelummin' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'] }, + 'circgradbasedcorrmaskrangelumrange' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'] }, + 'circgradbasedcorrmaskrangesampletype' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'] }, + 'circgradbasedcorrmaskrangetype' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'] }, + 'circgradbasedcorrmaskrangeversion' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'] }, + 'circgradbasedcorrmaskreferencepoint' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksReferencePoint'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksReferencePoint'] }, + 'circgradbasedcorrmaskright' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRight'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRight'] }, + 'circgradbasedcorrmaskroundness' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRoundness'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRoundness'] }, + 'circgradbasedcorrmasks' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasks'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasks'] }, + 'circgradbasedcorrmasksizex' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeX'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeX'] }, + 'circgradbasedcorrmasksizey' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeY'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeY'] }, + 'circgradbasedcorrmasktop' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksTop'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksTop'] }, + 'circgradbasedcorrmaskvalue' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskValue'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskValue'] }, + 'circgradbasedcorrmaskversion' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksVersion'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksVersion'] }, + 'circgradbasedcorrmaskwhat' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksWhat'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksWhat'] }, + 'circgradbasedcorrmaskwholeimagearea' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksWholeImageArea'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksWholeImageArea'] }, + 'circgradbasedcorrmaskx' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksX'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksX'] }, + 'circgradbasedcorrmasky' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksY'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksY'] }, + 'circgradbasedcorrmaskzerox' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroX'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroX'] }, + 'circgradbasedcorrmaskzeroy' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroY'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroY'] }, + 'circgradbasedcorrmoire' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalMoire'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalMoire'] }, + 'circgradbasedcorrrangemask' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMask'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMask'] }, + 'circgradbasedcorrrangemaskareamodels' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModels'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModels'] }, + 'circgradbasedcorrrangemaskareamodelscolorsampleinfo' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, + 'circgradbasedcorrrangemaskareamodelscomponents' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'] }, + 'circgradbasedcorrrangemaskcoloramount' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskColorAmount'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskColorAmount'] }, + 'circgradbasedcorrrangemaskdepthfeather' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthFeather'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthFeather'] }, + 'circgradbasedcorrrangemaskdepthmax' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthMax'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthMax'] }, + 'circgradbasedcorrrangemaskdepthmin' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthMin'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthMin'] }, + 'circgradbasedcorrrangemaskinvert' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskInvert'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskInvert'] }, + 'circgradbasedcorrrangemasklumfeather' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumFeather'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumFeather'] }, + 'circgradbasedcorrrangemaskluminancedepthsampleinfo' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'] }, + 'circgradbasedcorrrangemasklummax' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumMax'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumMax'] }, + 'circgradbasedcorrrangemasklummin' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumMin'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumMin'] }, + 'circgradbasedcorrrangemasklumrange' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumRange'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumRange'] }, + 'circgradbasedcorrrangemasksampletype' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskSampleType'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskSampleType'] }, + 'circgradbasedcorrrangemasktype' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskType'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskType'] }, + 'circgradbasedcorrrangemaskversion' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskVersion'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskVersion'] }, + 'circgradbasedcorrsaturation' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSaturation'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSaturation'] }, + 'circgradbasedcorrshadows2012' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalShadows2012'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalShadows2012'] }, + 'circgradbasedcorrsharpness' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSharpness'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSharpness'] }, + 'circgradbasedcorrtemperature' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTemperature'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTemperature'] }, + 'circgradbasedcorrtexture' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTexture'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTexture'] }, + 'circgradbasedcorrtint' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTint'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTint'] }, + 'circgradbasedcorrtoninghue' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalToningHue'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalToningHue'] }, + 'circgradbasedcorrtoningsaturation' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalToningSaturation'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalToningSaturation'] }, + 'circgradbasedcorrwhat' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsWhat'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsWhat'] }, + 'circgradbasedcorrwhites2012' => { 511 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalWhites2012'], 513 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalWhites2012'] }, + 'circulargradientbasedcorrections' => { 511 => 'CircularGradientBasedCorrections', 513 => 'CircularGradientBasedCorrections' }, + 'city' => { 134 => 0x5a, 164 => 'City', 348 => 0x6d, 528 => 'City' }, + 'city2' => { 348 => 0x80 }, + 'clarity' => { 130 => 0x100f, 256 => 0x35, 257 => 0x3d, 449 => 0x2036, 511 => 'Clarity', 513 => 'Clarity' }, + 'clarity2012' => { 511 => 'Clarity2012', 513 => 'Clarity2012' }, + 'claritycontrol' => { 383 => 0x96 }, + 'classification' => { 408 => 'clsf' }, 'classifystate' => { 134 => 0xe1 }, - 'clearretouch' => { 347 => 0x7c }, - 'clearretouchvalue' => { 347 => 0xa3 }, - 'client' => { 539 => 'client' }, - 'clientname' => { 518 => 'ClientName' }, - 'clipboardaspectratio' => { 510 => 'ClipboardAspectRatio', 512 => 'ClipboardAspectRatio' }, - 'clipboardorientation' => { 510 => 'ClipboardOrientation', 512 => 'ClipboardOrientation' }, - 'clipfilename' => { 407 => 'clfn' }, - 'clipid' => { 407 => 'clid' }, - 'clmodeshootingspeed' => { 303 => '10.2', 304 => '11.3', 306 => '11.2', 307 => '11.2', 312 => '11.2', 313 => '10.2', 316 => '11.2', 317 => '11.2', 318 => '11.1', 319 => 0x3b, 320 => 0x3b, 321 => 0x3b }, - 'cluster' => { 510 => 'Cluster', 512 => 'Cluster' }, - 'cmcontrast' => { 331 => 0x2022 }, - 'cmddialsreverserotation' => { 319 => 0xba, 320 => 0xba, 321 => 0xba }, - 'cmexposurecompensation' => { 331 => 0x2000 }, - 'cmhue' => { 331 => 0x2021 }, - 'cmsaturation' => { 331 => 0x2020 }, - 'cmsharpness' => { 331 => 0x2023 }, - 'cmwhitebalance' => { 331 => 0x2001 }, - 'cmwhitebalancecomp' => { 331 => 0x2002 }, - 'cmwhitebalancegraypoint' => { 331 => 0x2010 }, + 'clearretouch' => { 348 => 0x7c }, + 'clearretouchvalue' => { 348 => 0xa3 }, + 'client' => { 540 => 'client' }, + 'clientname' => { 519 => 'ClientName' }, + 'clipboardaspectratio' => { 511 => 'ClipboardAspectRatio', 513 => 'ClipboardAspectRatio' }, + 'clipboardorientation' => { 511 => 'ClipboardOrientation', 513 => 'ClipboardOrientation' }, + 'clipfilename' => { 408 => 'clfn' }, + 'clipid' => { 408 => 'clid' }, + 'clmodeshootingspeed' => { 304 => '10.2', 305 => '11.3', 307 => '11.2', 308 => '11.2', 313 => '11.2', 314 => '10.2', 317 => '11.2', 318 => '11.2', 319 => '11.1', 320 => 0x3b, 321 => 0x3b, 322 => 0x3b }, + 'cluster' => { 511 => 'Cluster', 513 => 'Cluster' }, + 'cmcontrast' => { 332 => 0x2022 }, + 'cmddialsreverserotation' => { 320 => 0xba, 321 => 0xba, 322 => 0xba }, + 'cmexposurecompensation' => { 332 => 0x2000 }, + 'cmhue' => { 332 => 0x2021 }, + 'cmsaturation' => { 332 => 0x2020 }, + 'cmsharpness' => { 332 => 0x2023 }, + 'cmwhitebalance' => { 332 => 0x2001 }, + 'cmwhitebalancecomp' => { 332 => 0x2002 }, + 'cmwhitebalancegraypoint' => { 332 => 0x2010 }, 'codec' => { 172 => 'Codec' }, 'codedcharacterset' => { 135 => 0x5a }, - 'codeversion' => { 407 => 'cver' }, - 'collection' => { 336 => 'Collection' }, - 'collectionname' => { 173 => [\'Collections','CollectionsCollectionName'], 407 => 'coll' }, - 'collections' => { 173 => 'Collections', 505 => 'collections' }, + 'codeversion' => { 408 => 'cver' }, + 'collection' => { 337 => 'Collection' }, + 'collectionname' => { 173 => [\'Collections','CollectionsCollectionName'], 408 => 'coll' }, + 'collections' => { 173 => 'Collections', 506 => 'collections' }, 'collectionuri' => { 173 => [\'Collections','CollectionsCollectionURI'] }, - 'color' => { 401 => 'player.movie.visual.color', 528 => 'color' }, - 'coloraberrationcontrol' => { 296 => 0xc89224b }, - 'coloradjustment' => { 424 => 0x14 }, - 'coloradjustmentmode' => { 423 => 0x210 }, - 'coloranta' => { 544 => [\'Colorants','ColorantsA'] }, - 'colorantb' => { 544 => [\'Colorants','ColorantsB'] }, - 'colorantblack' => { 544 => [\'Colorants','ColorantsBlack'] }, - 'colorantblue' => { 544 => [\'Colorants','ColorantsBlue'] }, - 'colorantcyan' => { 544 => [\'Colorants','ColorantsCyan'] }, - 'colorantgray' => { 544 => [\'Colorants','ColorantsGray'] }, - 'colorantgreen' => { 544 => [\'Colorants','ColorantsGreen'] }, - 'colorantl' => { 544 => [\'Colorants','ColorantsL'] }, - 'colorantmagenta' => { 544 => [\'Colorants','ColorantsMagenta'] }, - 'colorantmode' => { 544 => [\'Colorants','ColorantsMode'] }, - 'colorantred' => { 544 => [\'Colorants','ColorantsRed'] }, - 'colorants' => { 544 => 'Colorants' }, - 'colorantswatchname' => { 544 => [\'Colorants','ColorantsSwatchName'] }, - 'coloranttint' => { 544 => [\'Colorants','ColorantsTint'] }, - 'coloranttype' => { 544 => [\'Colorants','ColorantsType'] }, - 'colorantyellow' => { 544 => [\'Colorants','ColorantsYellow'] }, + 'color' => { 402 => 'player.movie.visual.color', 529 => 'color' }, + 'coloraberrationcontrol' => { 297 => 0xc89224b }, + 'coloradjustment' => { 425 => 0x14 }, + 'coloradjustmentmode' => { 424 => 0x210 }, + 'coloranta' => { 545 => [\'Colorants','ColorantsA'] }, + 'colorantb' => { 545 => [\'Colorants','ColorantsB'] }, + 'colorantblack' => { 545 => [\'Colorants','ColorantsBlack'] }, + 'colorantblue' => { 545 => [\'Colorants','ColorantsBlue'] }, + 'colorantcyan' => { 545 => [\'Colorants','ColorantsCyan'] }, + 'colorantgray' => { 545 => [\'Colorants','ColorantsGray'] }, + 'colorantgreen' => { 545 => [\'Colorants','ColorantsGreen'] }, + 'colorantl' => { 545 => [\'Colorants','ColorantsL'] }, + 'colorantmagenta' => { 545 => [\'Colorants','ColorantsMagenta'] }, + 'colorantmode' => { 545 => [\'Colorants','ColorantsMode'] }, + 'colorantred' => { 545 => [\'Colorants','ColorantsRed'] }, + 'colorants' => { 545 => 'Colorants' }, + 'colorantswatchname' => { 545 => [\'Colorants','ColorantsSwatchName'] }, + 'coloranttint' => { 545 => [\'Colorants','ColorantsTint'] }, + 'coloranttype' => { 545 => [\'Colorants','ColorantsType'] }, + 'colorantyellow' => { 545 => [\'Colorants','ColorantsYellow'] }, 'colorbalance' => { 159 => 'ColorBalance' }, - 'colorbalanceadj' => { 296 => 0x76a43202 }, + 'colorbalanceadj' => { 297 => 0x76a43202 }, 'colorbalanceblue' => { 184 => 0x1e }, 'colorbalancegreen' => { 184 => 0x1d }, 'colorbalancered' => { 184 => 0x1c }, 'colorbalanceversion' => { 209 => 0x4, 210 => 0x4, 211 => 0x0, 212 => 0x0 }, 'colorblur' => { 112 => 0x65 }, 'colorbluron' => { 106 => 0x20704 }, - 'colorbooster' => { 296 => 0x5f0e7d23 }, - 'colorboostlevel' => { 290 => 0x1 }, - 'colorboosttype' => { 290 => 0x0 }, + 'colorbooster' => { 297 => 0x5f0e7d23 }, + 'colorboostlevel' => { 291 => 0x1 }, + 'colorboosttype' => { 291 => 0x0 }, 'colorchromeeffect' => { 130 => 0x1048 }, 'colorchromefxblue' => { 130 => 0x104e }, - 'colorclass' => { 393 => 0xde, 394 => 'ColorClass' }, - 'colorcompensationfilter' => { 187 => [0x3a,0x5f], 189 => 0x111, 448 => 0xb022 }, - 'colorcompensationfiltercustom' => { 434 => 0xd, 435 => 0xc }, - 'colorcompensationfilterset' => { 434 => 0x8, 435 => 0x7, 436 => 0x18, 453 => 0xf }, - 'colorcontrol' => { 328 => 0x102b }, - 'colorcorrection' => { 485 => 0x8015 }, + 'colorclass' => { 394 => 0xde, 395 => 'ColorClass' }, + 'colorcompensationfilter' => { 187 => [0x3a,0x5f], 189 => 0x111, 449 => 0xb022 }, + 'colorcompensationfiltercustom' => { 435 => 0xd, 436 => 0xc }, + 'colorcompensationfilterset' => { 435 => 0x8, 436 => 0x7, 437 => 0x18, 454 => 0xf }, + 'colorcontrol' => { 329 => 0x102b }, + 'colorcorrection' => { 486 => 0x8015 }, 'colorcorrectionmatrix' => { 1 => 0x3e }, - 'colorcreatoreffect' => { 323 => 0x532 }, + 'colorcreatoreffect' => { 324 => 0x532 }, 'colordataversion' => { 43 => 0x0, 44 => 0x0, 46 => 0x0, 47 => 0x0, 48 => 0x0, 49 => 0x0, 50 => 0x0, 51 => 0x0, 52 => 0x0 }, - 'coloreffect' => { 347 => 0x28 }, - 'colorfilter' => { 115 => 0x17, 116 => 0x3017, 184 => 0x29, 192 => [0x38,0x4d,0x4f], 389 => 0x17 }, - 'colorgain' => { 262 => 0x51 }, - 'colorgradeblending' => { 510 => 'ColorGradeBlending', 512 => 'ColorGradeBlending' }, - 'colorgradeglobalhue' => { 510 => 'ColorGradeGlobalHue', 512 => 'ColorGradeGlobalHue' }, - 'colorgradegloballum' => { 510 => 'ColorGradeGlobalLum', 512 => 'ColorGradeGlobalLum' }, - 'colorgradeglobalsat' => { 510 => 'ColorGradeGlobalSat', 512 => 'ColorGradeGlobalSat' }, - 'colorgradehighlightlum' => { 510 => 'ColorGradeHighlightLum', 512 => 'ColorGradeHighlightLum' }, - 'colorgrademidtonehue' => { 510 => 'ColorGradeMidtoneHue', 512 => 'ColorGradeMidtoneHue' }, - 'colorgrademidtonelum' => { 510 => 'ColorGradeMidtoneLum', 512 => 'ColorGradeMidtoneLum' }, - 'colorgrademidtonesat' => { 510 => 'ColorGradeMidtoneSat', 512 => 'ColorGradeMidtoneSat' }, - 'colorgradeshadowlum' => { 510 => 'ColorGradeShadowLum', 512 => 'ColorGradeShadowLum' }, + 'coloreffect' => { 348 => 0x28 }, + 'colorfilter' => { 115 => 0x17, 116 => 0x3017, 184 => 0x29, 192 => [0x38,0x4d,0x4f], 390 => 0x17 }, + 'colorgain' => { 263 => 0x51 }, + 'colorgradeblending' => { 511 => 'ColorGradeBlending', 513 => 'ColorGradeBlending' }, + 'colorgradeglobalhue' => { 511 => 'ColorGradeGlobalHue', 513 => 'ColorGradeGlobalHue' }, + 'colorgradegloballum' => { 511 => 'ColorGradeGlobalLum', 513 => 'ColorGradeGlobalLum' }, + 'colorgradeglobalsat' => { 511 => 'ColorGradeGlobalSat', 513 => 'ColorGradeGlobalSat' }, + 'colorgradehighlightlum' => { 511 => 'ColorGradeHighlightLum', 513 => 'ColorGradeHighlightLum' }, + 'colorgrademidtonehue' => { 511 => 'ColorGradeMidtoneHue', 513 => 'ColorGradeMidtoneHue' }, + 'colorgrademidtonelum' => { 511 => 'ColorGradeMidtoneLum', 513 => 'ColorGradeMidtoneLum' }, + 'colorgrademidtonesat' => { 511 => 'ColorGradeMidtoneSat', 513 => 'ColorGradeMidtoneSat' }, + 'colorgradeshadowlum' => { 511 => 'ColorGradeShadowLum', 513 => 'ColorGradeShadowLum' }, 'colorhue' => { 106 => 0x20900, 239 => 0x8d }, 'colorimetricreference' => { 122 => 0xc6bf }, - 'colorlabel' => { 515 => 'ColorLabel' }, - 'colormatrix' => { 65 => 0xa, 327 => 0x200, 328 => 0x1011, 421 => 0xa030 }, - 'colormatrix1' => { 122 => 0xc621, 391 => 0x106 }, - 'colormatrix2' => { 122 => 0xc622, 331 => 0x200, 391 => 0x226 }, + 'colorlabel' => { 516 => 'ColorLabel' }, + 'colormatrix' => { 65 => 0xa, 328 => 0x200, 329 => 0x1011, 422 => 0xa030 }, + 'colormatrix1' => { 122 => 0xc621, 392 => 0x106 }, + 'colormatrix2' => { 122 => 0xc622, 332 => 0x200, 392 => 0x226 }, 'colormatrix3' => { 122 => 0xcd33 }, - 'colormatrixa' => { 382 => 0x203 }, - 'colormatrixa2' => { 382 => 0x21c }, - 'colormatrixadobergb' => { 421 => 0xa032 }, - 'colormatrixb' => { 382 => 0x204 }, - 'colormatrixb2' => { 382 => 0x21d }, - 'colormatrixnumber' => { 328 => 0x1019 }, - 'colormatrixsrgb' => { 421 => 0xa031 }, - 'colormode' => { 116 => 0x3015, 130 => 0x1210, 143 => 0x66, 184 => 0x28, 187 => 0x16, 189 => 0x101, 190 => 0x36, 192 => 0x7, 239 => 0x3, 285 => 0x4, 347 => 0x32, 424 => 0x2c, 448 => 0xb029, 527 => 'ColorMode' }, - 'colormoirereduction' => { 106 => 0x20670, 297 => 0x15 }, - 'colormoirereductionmode' => { 297 => 0x5 }, + 'colormatrixa' => { 383 => 0x203 }, + 'colormatrixa2' => { 383 => 0x21c }, + 'colormatrixadobergb' => { 422 => 0xa032 }, + 'colormatrixb' => { 383 => 0x204 }, + 'colormatrixb2' => { 383 => 0x21d }, + 'colormatrixnumber' => { 329 => 0x1019 }, + 'colormatrixsrgb' => { 422 => 0xa031 }, + 'colormode' => { 116 => 0x3015, 130 => 0x1210, 143 => 0x66, 184 => 0x28, 187 => 0x16, 189 => 0x101, 190 => 0x36, 192 => 0x7, 239 => 0x3, 286 => 0x4, 348 => 0x32, 425 => 0x2c, 449 => 0xb029, 528 => 'ColorMode' }, + 'colormoirereduction' => { 106 => 0x20670, 298 => 0x15 }, + 'colormoirereductionmode' => { 298 => 0x5 }, 'colormoirereductionon' => { 106 => '0x20670.0' }, - 'colornoisereduction' => { 485 => 0x8029, 510 => 'ColorNoiseReduction', 512 => 'ColorNoiseReduction' }, - 'colornoisereductiondetail' => { 510 => 'ColorNoiseReductionDetail', 512 => 'ColorNoiseReductionDetail' }, - 'colornoisereductionintensity' => { 297 => 0x18 }, - 'colornoisereductionsharpness' => { 297 => 0x1c }, - 'colornoisereductionsmoothness' => { 510 => 'ColorNoiseReductionSmoothness', 512 => 'ColorNoiseReductionSmoothness' }, + 'colornoisereduction' => { 486 => 0x8029, 511 => 'ColorNoiseReduction', 513 => 'ColorNoiseReduction' }, + 'colornoisereductiondetail' => { 511 => 'ColorNoiseReductionDetail', 513 => 'ColorNoiseReductionDetail' }, + 'colornoisereductionintensity' => { 298 => 0x18 }, + 'colornoisereductionsharpness' => { 298 => 0x1c }, + 'colornoisereductionsmoothness' => { 511 => 'ColorNoiseReductionSmoothness', 513 => 'ColorNoiseReductionSmoothness' }, 'colorplanes' => { 126 => 0x2 }, 'colorprofile' => { 184 => 0x33 }, - 'colorprofilesettings' => { 323 => 0x539 }, + 'colorprofilesettings' => { 324 => 0x539 }, 'colorrepresentation' => { 136 => 0x3c }, 'colorsaturationadj' => { 106 => 0x20305 }, 'colorsequence' => { 136 => 0x41 }, - 'colorspace' => { 53 => 0x3, 66 => 0xb4, 100 => 0x10b4, 122 => 0xa001, 138 => 0x3, 165 => 'ColorSpace', 185 => 0x2f, 186 => 0x25, 187 => 0x17, 239 => 0x1e, 323 => 0x507, 382 => 0x37, 421 => 0xa011, 424 => 0xb, 434 => 0x1b, 435 => 0x83, 436 => 0xe, 453 => 0x6, 516 => 'ColorSpace' }, + 'colorspace' => { 53 => 0x3, 66 => 0xb4, 100 => 0x10b4, 122 => 0xa001, 138 => 0x3, 165 => 'ColorSpace', 185 => 0x2f, 186 => 0x25, 187 => 0x17, 239 => 0x1e, 324 => 0x507, 383 => 0x37, 422 => 0xa011, 425 => 0xb, 435 => 0x1b, 436 => 0x83, 437 => 0xe, 454 => 0x6, 517 => 'ColorSpace' }, 'colorspace2' => { 65 => 0x9 }, 'colorspecapproximation' => { 138 => 0x2 }, 'colorspecdata' => { 138 => 0x3 }, @@ -1794,32 +1796,32 @@ my %tagLookup = ( 'colorspecprecedence' => { 138 => 0x1 }, 'colortempasshot' => { 40 => 0x4, 41 => 0x7, 42 => 0x1d, 43 => 0x59, 44 => 0x6d, 45 => 0x26, 46 => 0x43, 49 => 0x43, 50 => 0x43, 51 => 0x43, 52 => 0x4b }, 'colortempauto' => { 40 => 0x9, 41 => 0xf, 42 => 0x22, 43 => 0x5e, 44 => 0x72, 45 => 0x1c, 46 => 0x48, 49 => 0x48, 50 => 0x48, 51 => 0x48, 52 => 0x50 }, - 'colortempcloudy' => { 40 => 0x22, 41 => 0x37, 42 => 0x31, 43 => 0xa4, 44 => 0xdb, 45 => 0x35, 46 => 0x5c, 49 => 0x75, 50 => 0x8e, 51 => 0x93, 52 => 0x96, 382 => 0x55 }, + 'colortempcloudy' => { 40 => 0x22, 41 => 0x37, 42 => 0x31, 43 => 0xa4, 44 => 0xdb, 45 => 0x35, 46 => 0x5c, 49 => 0x75, 50 => 0x8e, 51 => 0x93, 52 => 0x96, 383 => 0x55 }, 'colortempcustom' => { 46 => 0x84 }, 'colortempcustom1' => { 42 => 0x45 }, 'colortempcustom2' => { 42 => 0x4a }, - 'colortempdaylight' => { 40 => 0x18, 41 => 0x27, 42 => 0x27, 43 => 0x9a, 44 => 0xd1, 45 => 0x2b, 46 => 0x52, 49 => 0x6b, 50 => 0x84, 51 => 0x89, 52 => 0x8c, 382 => 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, 66 => 0xae, 76 => 0x9, 100 => 0x10ae, 130 => 0x1005, 141 => 0x846, 159 => 'ColorTemperature', 185 => [0x6e,0x49], 186 => 0x3f, 187 => [0x39,0x5e], 189 => 0x10b, 192 => [0x3c,0x4c,0x4e], 342 => 0x321, 382 => 0x50, 414 => 0x1308, 448 => 0xb021, 510 => 'Temperature', 512 => 'Temperature' }, - 'colortemperatureadj' => { 485 => 0x8013 }, + 'colortempdaylight' => { 40 => 0x18, 41 => 0x27, 42 => 0x27, 43 => 0x9a, 44 => 0xd1, 45 => 0x2b, 46 => 0x52, 49 => 0x6b, 50 => 0x84, 51 => 0x89, 52 => 0x8c, 383 => 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, 66 => 0xae, 76 => 0x9, 100 => 0x10ae, 130 => 0x1005, 141 => 0x846, 159 => 'ColorTemperature', 185 => [0x6e,0x49], 186 => 0x3f, 187 => [0x39,0x5e], 189 => 0x10b, 192 => [0x3c,0x4c,0x4e], 343 => 0x321, 383 => 0x50, 415 => 0x1308, 449 => 0xb021, 511 => 'Temperature', 513 => 'Temperature' }, + 'colortemperatureadj' => { 486 => 0x8013 }, 'colortemperatureauto' => { 239 => 0x4f }, - 'colortemperaturebg' => { 328 => 0x1013 }, - 'colortemperaturecustom' => { 434 => 0xc, 435 => 0xb }, - 'colortemperaturerg' => { 328 => 0x1014 }, - 'colortemperatureset' => { 434 => 0x7, 435 => 0x6 }, - 'colortemperaturesetting' => { 187 => 0x25, 436 => 0x17, 453 => 0xe }, - 'colortempflash' => { 40 => 0x36, 41 => 0x57, 42 => 0x40, 43 => 0xb8, 44 => 0xef, 45 => 0x49, 46 => 0x70, 49 => 0x89, 50 => 0xa2, 51 => 0xa7, 52 => 0xaa, 382 => 0x5a }, + 'colortemperaturebg' => { 329 => 0x1013 }, + 'colortemperaturecustom' => { 435 => 0xc, 436 => 0xb }, + 'colortemperaturerg' => { 329 => 0x1014 }, + 'colortemperatureset' => { 435 => 0x7, 436 => 0x6 }, + 'colortemperaturesetting' => { 187 => 0x25, 437 => 0x17, 454 => 0xe }, + 'colortempflash' => { 40 => 0x36, 41 => 0x57, 42 => 0x40, 43 => 0xb8, 44 => 0xef, 45 => 0x49, 46 => 0x70, 49 => 0x89, 50 => 0xa2, 51 => 0xa7, 52 => 0xaa, 383 => 0x5a }, 'colortempflashdata' => { 46 => 0x24a }, 'colortempfluorescent' => { 40 => 0x2c, 41 => 0x47, 42 => 0x3b, 43 => 0xae, 44 => 0xe5, 45 => 0x3f, 46 => 0x66, 49 => 0x7f, 50 => 0x98, 51 => 0x9d, 52 => 0xa0 }, - 'colortempfluorescentd' => { 382 => 0x57 }, - 'colortempfluorescentn' => { 382 => 0x58 }, - 'colortempfluorescentw' => { 382 => 0x59 }, - 'colortempkelvin' => { 40 => 0x31, 41 => 0x4f, 43 => 0xb3, 44 => 0xea, 45 => 0x44, 46 => 0x6b, 49 => 0x84, 50 => 0x9d, 51 => 0xa2, 52 => 0xa5, 347 => 0x44, 414 => 0x1307 }, + 'colortempfluorescentd' => { 383 => 0x57 }, + 'colortempfluorescentn' => { 383 => 0x58 }, + 'colortempfluorescentw' => { 383 => 0x59 }, + 'colortempkelvin' => { 40 => 0x31, 41 => 0x4f, 43 => 0xb3, 44 => 0xea, 45 => 0x44, 46 => 0x6b, 49 => 0x84, 50 => 0x9d, 51 => 0xa2, 52 => 0xa5, 348 => 0x44, 415 => 0x1307 }, 'colortempmeasured' => { 40 => 0xe, 41 => 0x17, 43 => 0x63, 44 => 0x77, 46 => 0x4d, 49 => 0x4d, 50 => 0x4d, 51 => 0x4d, 52 => 0x55 }, 'colortemppc1' => { 45 => 0x94, 46 => 0x75 }, 'colortemppc2' => { 45 => 0x99, 46 => 0x7a }, 'colortemppc3' => { 45 => 0x9e, 46 => 0x7f }, - 'colortempshade' => { 40 => 0x1d, 41 => 0x2f, 42 => 0x2c, 43 => 0x9f, 44 => 0xd6, 45 => 0x30, 46 => 0x57, 49 => 0x70, 50 => 0x89, 51 => 0x8e, 52 => 0x91, 382 => 0x54 }, - 'colortemptungsten' => { 40 => 0x27, 41 => 0x3f, 42 => 0x36, 43 => 0xa9, 44 => 0xe0, 45 => 0x3a, 46 => 0x61, 49 => 0x7a, 50 => 0x93, 51 => 0x98, 52 => 0x9b, 382 => 0x56 }, + 'colortempshade' => { 40 => 0x1d, 41 => 0x2f, 42 => 0x2c, 43 => 0x9f, 44 => 0xd6, 45 => 0x30, 46 => 0x57, 49 => 0x70, 50 => 0x89, 51 => 0x8e, 52 => 0x91, 383 => 0x54 }, + 'colortemptungsten' => { 40 => 0x27, 41 => 0x3f, 42 => 0x36, 43 => 0xa9, 44 => 0xe0, 45 => 0x3a, 46 => 0x61, 49 => 0x7a, 50 => 0x93, 51 => 0x98, 52 => 0x9b, 383 => 0x56 }, 'colortempunknown' => { 40 => 0x13, 41 => 0x1f, 43 => 0x68, 44 => 0x7c, 45 => 0x21, 49 => 0x52, 50 => 0x52, 51 => 0x52, 52 => 0x5a }, 'colortempunknown10' => { 40 => 0x63, 41 => 0x9f, 43 => 0x95, 44 => 0xa9, 45 => 0x76, 49 => 0xa2, 50 => 0x7f, 51 => 0x7f, 52 => 0x87 }, 'colortempunknown11' => { 40 => 0x68, 41 => 0xa7, 43 => 0xbd, 44 => [0xae,0xb3], 45 => 0x7b, 49 => 0xa7, 50 => 0xa7, 51 => 0x84, 52 => 0xaf }, @@ -1850,7 +1852,7 @@ my %tagLookup = ( 'colortempunknown7' => { 40 => 0x54, 41 => 0x87, 43 => 0x86, 44 => 0x9a, 45 => 0x67, 49 => 0x93, 50 => 0x70, 51 => 0x70, 52 => 0x78 }, 'colortempunknown8' => { 40 => 0x59, 41 => 0x8f, 43 => 0x8b, 44 => 0x9f, 45 => 0x6c, 49 => 0x98, 50 => 0x75, 51 => 0x75, 52 => 0x7d }, 'colortempunknown9' => { 40 => 0x5e, 41 => 0x97, 43 => 0x90, 44 => 0xa4, 45 => 0x71, 49 => 0x9d, 50 => 0x7a, 51 => 0x7a, 52 => 0x82 }, - 'colortint' => { 346 => 0x35c }, + 'colortint' => { 347 => 0x35c }, 'colortone' => { 10 => 0x6f, 12 => 0x77, 36 => 0x2a, 53 => 0x2, 65 => 0x8 }, 'colortoneadj' => { 106 => 0x20304, 111 => 0x11e }, 'colortoneauto' => { 73 => 0x9c }, @@ -1865,64 +1867,66 @@ my %tagLookup = ( 'colortoneuserdef3' => { 19 => 0x10b, 72 => 0xcc, 73 => 0xe4 }, 'columninterleavefactor' => { 122 => 0xcd43 }, 'comlenblksize' => { 141 => 0xfde8 }, - 'commanddialplaybackmode' => { 319 => 0x1cb, 320 => 0x1cb, 321 => 0x1e3 }, - 'commanddials' => { 314 => '5.1' }, - 'commanddialsaperturesetting' => { 303 => '17.3', 304 => '18.3', 306 => '18.3', 307 => '18.3', 312 => '33.3', 313 => '17.3', 316 => '18.3', 317 => '18.3' }, - 'commanddialschangemainsub' => { 303 => '17.2', 304 => '18.1', 306 => '18.1', 307 => '18.1', 312 => '33.2', 313 => '17.2', 316 => '18.1', 317 => '18.1' }, - 'commanddialsmenuandplayback' => { 303 => '17.4', 304 => '18.2', 306 => '18.2', 307 => '18.2', 312 => '33.4', 313 => '17.4', 316 => '18.2', 317 => '18.2' }, - 'commanddialsreverserotation' => { 303 => '17.1', 304 => '6.4', 306 => '6.2', 307 => '6.2', 308 => '16.2', 309 => '17.2', 312 => '33.1', 313 => '17.1', 316 => '6.2', 317 => '6.2', 318 => '18.1' }, - 'commanderchannel' => { 314 => '10.2', 315 => '25.2' }, - 'commandergroupa_ttl-aacomp' => { 314 => '13.1', 315 => '31.1' }, - 'commandergroupa_ttlcomp' => { 318 => '32.1' }, - 'commandergroupamanualoutput' => { 314 => '13.2', 315 => '28.2' }, - 'commandergroupamode' => { 314 => '11.2', 315 => '28.1' }, - 'commandergroupb_ttl-aacomp' => { 314 => '14.1', 315 => '32.1' }, - 'commandergroupb_ttlcomp' => { 318 => '33.1' }, - 'commandergroupbmanualoutput' => { 314 => '14.2', 315 => '29.2' }, - 'commandergroupbmode' => { 314 => '11.3', 315 => '29.1' }, - 'commanderinternalflash' => { 314 => '11.1', 315 => '27.1' }, - 'commanderinternalmanualoutput' => { 314 => '12.2', 315 => '27.2' }, - 'commanderinternalttlchannel' => { 312 => '18.2' }, - 'commanderinternalttlcomp' => { 314 => '12.1', 315 => '30.2', 318 => '31.2' }, - 'commanderinternalttlcompbuiltin' => { 312 => '20.1', 313 => '26.1' }, - 'commanderinternalttlcompgroupa' => { 312 => '21.1', 313 => '27.1' }, - 'commanderinternalttlcompgroupb' => { 312 => '22.1', 313 => '28.1' }, - 'comment' => { 0 => 0x2, 123 => 'Comment', 160 => 'Comment', 336 => 'Comment', 399 => "\xa9cmt", 401 => 'comment', 407 => "\xa9cmt" }, - 'compass' => { 417 => 0x4 }, - 'compatiblebrands' => { 401 => 'compatible_brands' }, - 'compatibleversion' => { 510 => 'CompatibleVersion', 512 => 'CompatibleVersion' }, - 'compilation' => { 399 => 'cpil' }, - 'compimageimagespersequence' => { 517 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesNumberOfImagesInSequences'] }, - 'compimagemaxexposureall' => { 517 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesMaxExposureTimesOfAll'] }, - 'compimagemaxexposureused' => { 517 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesMaxExposureTimesOfUsed'] }, - 'compimageminexposureall' => { 517 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesMinExposureTimesOfAll'] }, - 'compimageminexposureused' => { 517 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesMinExposureTimesOfUsed'] }, - 'compimagenumsequences' => { 517 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesNumberOfSequences'] }, - 'compimagesumexposureall' => { 517 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesSumOfExposureTimesOfAll'] }, - 'compimagesumexposureused' => { 517 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesSumOfExposureTimesOfUsed'] }, - 'compimagetotalexposureperiod' => { 517 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesTotalExposurePeriod'] }, - 'compimagevalues' => { 517 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesValues'] }, - 'complianceprofile' => { 529 => 'complianceProfile' }, - 'componentsconfiguration' => { 122 => 0x9101, 165 => 'Components', 516 => 'ComponentsConfiguration' }, + 'commanddialframeadvancezoom' => { 248 => 0x804 }, + 'commanddialplaybackmode' => { 320 => 0x1cb, 321 => 0x1cb, 322 => 0x1e3 }, + 'commanddials' => { 315 => '5.1' }, + 'commanddialsaperturesetting' => { 304 => '17.3', 305 => '18.3', 307 => '18.3', 308 => '18.3', 313 => '33.3', 314 => '17.3', 317 => '18.3', 318 => '18.3' }, + 'commanddialschangemainsub' => { 304 => '17.2', 305 => '18.1', 307 => '18.1', 308 => '18.1', 313 => '33.2', 314 => '17.2', 317 => '18.1', 318 => '18.1' }, + 'commanddialsmenuandplayback' => { 304 => '17.4', 305 => '18.2', 307 => '18.2', 308 => '18.2', 313 => '33.4', 314 => '17.4', 317 => '18.2', 318 => '18.2' }, + 'commanddialsreverserotation' => { 304 => '17.1', 305 => '6.4', 307 => '6.2', 308 => '6.2', 309 => '16.2', 310 => '17.2', 313 => '33.1', 314 => '17.1', 317 => '6.2', 318 => '6.2', 319 => '18.1' }, + 'commanddialvideoplaybackmode' => { 320 => 0x1cd, 322 => 0x1e5 }, + 'commanderchannel' => { 315 => '10.2', 316 => '25.2' }, + 'commandergroupa_ttl-aacomp' => { 315 => '13.1', 316 => '31.1' }, + 'commandergroupa_ttlcomp' => { 319 => '32.1' }, + 'commandergroupamanualoutput' => { 315 => '13.2', 316 => '28.2' }, + 'commandergroupamode' => { 315 => '11.2', 316 => '28.1' }, + 'commandergroupb_ttl-aacomp' => { 315 => '14.1', 316 => '32.1' }, + 'commandergroupb_ttlcomp' => { 319 => '33.1' }, + 'commandergroupbmanualoutput' => { 315 => '14.2', 316 => '29.2' }, + 'commandergroupbmode' => { 315 => '11.3', 316 => '29.1' }, + 'commanderinternalflash' => { 315 => '11.1', 316 => '27.1' }, + 'commanderinternalmanualoutput' => { 315 => '12.2', 316 => '27.2' }, + 'commanderinternalttlchannel' => { 313 => '18.2' }, + 'commanderinternalttlcomp' => { 315 => '12.1', 316 => '30.2', 319 => '31.2' }, + 'commanderinternalttlcompbuiltin' => { 313 => '20.1', 314 => '26.1' }, + 'commanderinternalttlcompgroupa' => { 313 => '21.1', 314 => '27.1' }, + 'commanderinternalttlcompgroupb' => { 313 => '22.1', 314 => '28.1' }, + 'comment' => { 0 => 0x2, 123 => 'Comment', 160 => 'Comment', 337 => 'Comment', 400 => "\xa9cmt", 402 => 'comment', 408 => "\xa9cmt" }, + 'compass' => { 418 => 0x4 }, + 'compatiblebrands' => { 402 => 'compatible_brands' }, + 'compatibleversion' => { 511 => 'CompatibleVersion', 513 => 'CompatibleVersion' }, + 'compilation' => { 400 => 'cpil' }, + 'compimageimagespersequence' => { 518 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesNumberOfImagesInSequences'] }, + 'compimagemaxexposureall' => { 518 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesMaxExposureTimesOfAll'] }, + 'compimagemaxexposureused' => { 518 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesMaxExposureTimesOfUsed'] }, + 'compimageminexposureall' => { 518 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesMinExposureTimesOfAll'] }, + 'compimageminexposureused' => { 518 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesMinExposureTimesOfUsed'] }, + 'compimagenumsequences' => { 518 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesNumberOfSequences'] }, + 'compimagesumexposureall' => { 518 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesSumOfExposureTimesOfAll'] }, + 'compimagesumexposureused' => { 518 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesSumOfExposureTimesOfUsed'] }, + 'compimagetotalexposureperiod' => { 518 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesTotalExposurePeriod'] }, + 'compimagevalues' => { 518 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesValues'] }, + 'complianceprofile' => { 530 => 'complianceProfile' }, + 'componentsconfiguration' => { 122 => 0x9101, 165 => 'Components', 517 => 'ComponentsConfiguration' }, 'componentversion' => { 100 => 0x80c }, - 'composer' => { 182 => 'WM/Composer', 399 => ["\xa9com","\xa9wrt"], 407 => ["\xa9com","\xa9wrt"], 539 => 'composer' }, - 'composerid' => { 399 => 'cmID' }, - 'composerkeywords' => { 407 => "\xa9cok" }, - 'compositeimage' => { 122 => 0xa460, 517 => 'CompositeImage' }, - 'compositeimagecount' => { 122 => 0xa461, 517 => 'CompositeImageCount' }, - 'compositeimageexposuretimes' => { 122 => 0xa462, 517 => 'CompositeImageExposureTimes' }, - 'composition' => { 500 => 'Composition' }, - 'compositionadjust' => { 381 => '0.1' }, - 'compositionadjustrotation' => { 381 => 0x7 }, - 'compositionadjustx' => { 381 => 0x5 }, - 'compositionadjusty' => { 381 => 0x6 }, - 'compressedbitsperpixel' => { 122 => 0x9102, 516 => 'CompressedBitsPerPixel' }, - 'compressedimagesize' => { 189 => 0x40, 328 => 0x40 }, - 'compression' => { 122 => 0x103, 352 => 0xb, 535 => 'Compression' }, - 'compressionfactor' => { 323 => 0x50d }, + 'composer' => { 182 => 'WM/Composer', 400 => ["\xa9com","\xa9wrt"], 408 => ["\xa9com","\xa9wrt"], 540 => 'composer' }, + 'composerid' => { 400 => 'cmID' }, + 'composerkeywords' => { 408 => "\xa9cok" }, + 'compositeimage' => { 122 => 0xa460, 518 => 'CompositeImage' }, + 'compositeimagecount' => { 122 => 0xa461, 518 => 'CompositeImageCount' }, + 'compositeimageexposuretimes' => { 122 => 0xa462, 518 => 'CompositeImageExposureTimes' }, + 'composition' => { 501 => 'Composition' }, + 'compositionadjust' => { 382 => '0.1' }, + 'compositionadjustrotation' => { 382 => 0x7 }, + 'compositionadjustx' => { 382 => 0x5 }, + 'compositionadjusty' => { 382 => 0x6 }, + 'compressedbitsperpixel' => { 122 => 0x9102, 517 => 'CompressedBitsPerPixel' }, + 'compressedimagesize' => { 189 => 0x40, 329 => 0x40 }, + 'compression' => { 122 => 0x103, 353 => 0xb, 536 => 'Compression' }, + 'compressionfactor' => { 324 => 0x50d }, 'compressionformat' => { 65 => 0x4 }, - 'compressionratio' => { 165 => 'Compression', 328 => 0x1034 }, - 'compressorversion' => { 407 => 'CNCV' }, + 'compressionratio' => { 165 => 'Compression', 329 => 0x1034 }, + 'compressorversion' => { 408 => 'CNCV' }, 'condadobvfactor' => { 141 => 0xf3e }, 'condadodaybvthresh' => { 141 => 0xf3c }, 'condadodayoffsets' => { 141 => 0xf42 }, @@ -1932,221 +1936,222 @@ my %tagLookup = ( 'condadoneurange' => { 141 => 0xf3d }, 'condadotunoffsets' => { 141 => 0xf43 }, 'condadotunthresh' => { 141 => 0xf40 }, - 'conductor' => { 182 => 'WM/Conductor', 399 => "\xa9con" }, - 'confidence' => { 495 => 'Confidence' }, - 'confidencelevel' => { 506 => 'ConfidenceLevel' }, - 'confidencemime' => { 495 => 'ConfidenceMime' }, - 'constrainedcropheight' => { 111 => 0x266, 393 => 0xd6 }, - 'constrainedcropwidth' => { 111 => 0x262, 393 => 0xd5 }, + 'conductor' => { 182 => 'WM/Conductor', 400 => "\xa9con" }, + 'confidence' => { 496 => 'Confidence' }, + 'confidencelevel' => { 507 => 'ConfidenceLevel' }, + 'confidencemime' => { 496 => 'ConfidenceMime' }, + 'constrainedcropheight' => { 111 => 0x266, 394 => 0xd6 }, + 'constrainedcropwidth' => { 111 => 0x262, 394 => 0xd5 }, 'contact' => { 134 => 0x76 }, - 'contactinfo' => { 510 => 'ContactInfo', 512 => 'ContactInfo', 528 => 'contactInfo' }, - 'container' => { 489 => 'Container' }, - 'containerdirectory' => { 489 => [\'Container','ContainerDirectory'] }, - 'containerdirectoryitem' => { 489 => [\'Container','ContainerDirectoryItem'] }, - 'containerdirectoryitemdatauri' => { 489 => [\'Container','ContainerDirectoryItemDataURI'] }, - 'containerdirectoryitemlength' => { 489 => [\'Container','ContainerDirectoryItemLength'] }, - 'containerdirectoryitemmime' => { 489 => [\'Container','ContainerDirectoryItemMime'] }, - 'containerdirectoryitempadding' => { 489 => [\'Container','ContainerDirectoryItemPadding'] }, - 'containerformat' => { 524 => 'ContainerFormat' }, - 'containerformatidentifier' => { 524 => [\'ContainerFormat','ContainerFormatIdentifier'] }, - 'containerformatname' => { 524 => [\'ContainerFormat','ContainerFormatName'] }, - 'contentcreatedate' => { 399 => "\xa9day", 407 => ['@day',"\xa9day"] }, + 'contactinfo' => { 511 => 'ContactInfo', 513 => 'ContactInfo', 529 => 'contactInfo' }, + 'container' => { 490 => 'Container' }, + 'containerdirectory' => { 490 => [\'Container','ContainerDirectory'] }, + 'containerdirectoryitem' => { 490 => [\'Container','ContainerDirectoryItem'] }, + 'containerdirectoryitemdatauri' => { 490 => [\'Container','ContainerDirectoryItemDataURI'] }, + 'containerdirectoryitemlength' => { 490 => [\'Container','ContainerDirectoryItemLength'] }, + 'containerdirectoryitemmime' => { 490 => [\'Container','ContainerDirectoryItemMime'] }, + 'containerdirectoryitempadding' => { 490 => [\'Container','ContainerDirectoryItemPadding'] }, + 'containerformat' => { 525 => 'ContainerFormat' }, + 'containerformatidentifier' => { 525 => [\'ContainerFormat','ContainerFormatIdentifier'] }, + 'containerformatname' => { 525 => [\'ContainerFormat','ContainerFormatName'] }, + 'contentcreatedate' => { 400 => "\xa9day", 408 => ['@day',"\xa9day"] }, 'contentdistributor' => { 182 => 'WM/ContentDistributor' }, - 'contentdistributorid' => { 407 => 'cdis' }, - 'contentid' => { 407 => 'ccid' }, - 'contentidentifier' => { 1 => 0x11, 401 => 'content.identifier' }, + 'contentdistributorid' => { 408 => 'cdis' }, + 'contentid' => { 408 => 'ccid' }, + 'contentidentifier' => { 1 => 0x11, 402 => 'content.identifier' }, 'contentlocationcode' => { 134 => 0x1a }, 'contentlocationname' => { 134 => 0x1b }, - 'contenttype' => { 529 => 'contentType' }, + 'contenttype' => { 530 => 'contentType' }, 'continuousbracketing' => { 187 => 0x20 }, 'continuousdrive' => { 36 => 0x5 }, - 'continuousmodedisplay' => { 319 => 0x51, 320 => 0x51, 321 => 0x51 }, - 'continuousmodeliveview' => { 317 => '77.2' }, + 'continuousmodedisplay' => { 320 => 0x51, 321 => 0x51, 322 => 0x51 }, + 'continuousmodeliveview' => { 318 => '77.2' }, 'continuousshootingspeed' => { 87 => 0x610 }, 'continuousshotlimit' => { 87 => 0x611 }, - 'contrast' => { 10 => 0x73, 12 => 0x75, 36 => 0xd, 115 => 0xc, 116 => [0x3012,0x20], 122 => [0xa408,0xfe54], 130 => [0x1004,0x1006], 159 => 'Contrast', 179 => 'Contrast', 184 => 0x20, 185 => 0x31, 186 => 0x27, 187 => 0x19, 192 => 0x2, 254 => 0x33, 255 => 0x37, 256 => 0x3f, 328 => 0x1029, 347 => 0x39, 349 => 0x300a, 382 => 0x20, 389 => 0xc, 401 => 'player.movie.visual.contrast', 408 => 0x24, 410 => 0x52, 414 => 0x1012, 424 => 0xd, 434 => 0x1d, 435 => 0x1a, 448 => 0x2004, 510 => 'Contrast', 512 => 'Contrast', 516 => 'Contrast' }, - 'contrast2012' => { 510 => 'Contrast2012', 512 => 'Contrast2012' }, - 'contrastadj' => { 106 => 0x20303, 111 => 0x115, 299 => 0x2c, 485 => 0x8017 }, + 'contrast' => { 10 => 0x73, 12 => 0x75, 36 => 0xd, 115 => 0xc, 116 => [0x3012,0x20], 122 => [0xa408,0xfe54], 130 => [0x1004,0x1006], 159 => 'Contrast', 179 => 'Contrast', 184 => 0x20, 185 => 0x31, 186 => 0x27, 187 => 0x19, 192 => 0x2, 255 => 0x33, 256 => 0x37, 257 => 0x3f, 329 => 0x1029, 348 => 0x39, 350 => 0x300a, 383 => 0x20, 390 => 0xc, 402 => 'player.movie.visual.contrast', 409 => 0x24, 411 => 0x52, 415 => 0x1012, 425 => 0xd, 435 => 0x1d, 436 => 0x1a, 449 => 0x2004, 511 => 'Contrast', 513 => 'Contrast', 517 => 'Contrast' }, + 'contrast2012' => { 511 => 'Contrast2012', 513 => 'Contrast2012' }, + 'contrastadj' => { 106 => 0x20303, 111 => 0x115, 300 => 0x2c, 486 => 0x8017 }, 'contrastauto' => { 73 => 0x90 }, 'contrastcurve' => { 239 => 0x8c }, 'contrastdetectaf' => { 196 => 0x4 }, - 'contrastdetectafarea' => { 382 => 0x231 }, + 'contrastdetectafarea' => { 383 => 0x231 }, 'contrastdetectafinfocus' => { 196 => [0x1c,0x52] }, 'contrastfaithful' => { 19 => 0xec, 72 => 0x60, 73 => 0x60 }, - 'contrasthighlight' => { 382 => 0x6d }, - 'contrasthighlightshadowadj' => { 382 => 0x6f }, + 'contrasthighlight' => { 383 => 0x6d }, + 'contrasthighlightshadowadj' => { 383 => 0x6f }, 'contrastlandscape' => { 19 => 0xea, 72 => 0x30, 73 => 0x30 }, - 'contrastmode' => { 347 => 0x2c }, + 'contrastmode' => { 348 => 0x2c }, 'contrastmonochrome' => { 19 => 0xed, 72 => 0x78, 73 => 0x78 }, 'contrastneutral' => { 19 => 0xeb, 72 => 0x48, 73 => 0x48 }, 'contrastportrait' => { 19 => 0xe9, 72 => 0x18, 73 => 0x18 }, - 'contrastsetting' => { 323 => 0x505, 331 => 0x1012, 436 => 0x10, 453 => 0x8 }, - 'contrastshadow' => { 382 => 0x6e }, + 'contrastsetting' => { 324 => 0x505, 332 => 0x1012, 437 => 0x10, 454 => 0x8 }, + 'contrastshadow' => { 383 => 0x6e }, 'contraststandard' => { 19 => 0xe8, 72 => 0x0, 73 => 0x0 }, 'contrastuserdef1' => { 19 => 0xee, 72 => 0x90, 73 => 0xa8 }, 'contrastuserdef2' => { 19 => 0xef, 72 => 0xa8, 73 => 0xc0 }, 'contrastuserdef3' => { 19 => 0xf0, 72 => 0xc0, 73 => 0xd8 }, - 'contributedmedia' => { 539 => 'contributedMedia' }, - 'contributedmediaduration' => { 539 => [\'contributedMedia','contributedMediaDuration'] }, - 'contributedmediadurationscale' => { 539 => [\'contributedMedia','contributedMediaDurationScale'] }, - 'contributedmediadurationvalue' => { 539 => [\'contributedMedia','contributedMediaDurationValue'] }, - 'contributedmediamanaged' => { 539 => [\'contributedMedia','contributedMediaManaged'] }, - 'contributedmediapath' => { 539 => [\'contributedMedia','contributedMediaPath'] }, - 'contributedmediastarttime' => { 539 => [\'contributedMedia','contributedMediaStartTime'] }, - 'contributedmediastarttimescale' => { 539 => [\'contributedMedia','contributedMediaStartTimeScale'] }, - 'contributedmediastarttimevalue' => { 539 => [\'contributedMedia','contributedMediaStartTimeValue'] }, - 'contributedmediatrack' => { 539 => [\'contributedMedia','contributedMediaTrack'] }, - 'contributedmediawebstatement' => { 539 => [\'contributedMedia','contributedMediaWebStatement'] }, - 'contributor' => { 513 => 'contributor', 524 => 'Contributor' }, - 'contributoridentifier' => { 524 => [\'Contributor','ContributorIdentifier'] }, - 'contributorname' => { 524 => [\'Contributor','ContributorName'] }, - 'contributorrole' => { 524 => [\'Contributor','ContributorRole'] }, + 'contributedmedia' => { 540 => 'contributedMedia' }, + 'contributedmediaduration' => { 540 => [\'contributedMedia','contributedMediaDuration'] }, + 'contributedmediadurationscale' => { 540 => [\'contributedMedia','contributedMediaDurationScale'] }, + 'contributedmediadurationvalue' => { 540 => [\'contributedMedia','contributedMediaDurationValue'] }, + 'contributedmediamanaged' => { 540 => [\'contributedMedia','contributedMediaManaged'] }, + 'contributedmediapath' => { 540 => [\'contributedMedia','contributedMediaPath'] }, + 'contributedmediastarttime' => { 540 => [\'contributedMedia','contributedMediaStartTime'] }, + 'contributedmediastarttimescale' => { 540 => [\'contributedMedia','contributedMediaStartTimeScale'] }, + 'contributedmediastarttimevalue' => { 540 => [\'contributedMedia','contributedMediaStartTimeValue'] }, + 'contributedmediatrack' => { 540 => [\'contributedMedia','contributedMediaTrack'] }, + 'contributedmediawebstatement' => { 540 => [\'contributedMedia','contributedMediaWebStatement'] }, + 'contributor' => { 514 => 'contributor', 525 => 'Contributor' }, + 'contributoridentifier' => { 525 => [\'Contributor','ContributorIdentifier'] }, + 'contributorname' => { 525 => [\'Contributor','ContributorName'] }, + 'contributorrole' => { 525 => [\'Contributor','ContributorRole'] }, 'contributors' => { 160 => 'Contributors' }, 'controldialset' => { 187 => 0x46 }, - 'controlledvocabularyterm' => { 524 => 'CVterm' }, - 'controllerboardversion' => { 342 => 0x332 }, + 'controlledvocabularyterm' => { 525 => 'CVterm' }, + 'controllerboardversion' => { 343 => 0x332 }, 'controlmode' => { 79 => 0x12 }, - 'controlringresponse' => { 319 => 0x1d5, 320 => 0x1d5, 321 => 0x1ed }, + 'controlringresponse' => { 320 => 0x1d5, 321 => 0x1d5, 322 => 0x1ed }, 'controlringrotation' => { 87 => 0x712 }, - 'conversionlens' => { 324 => 0x403, 347 => 0x35 }, - 'converter' => { 122 => 0xfe4d, 285 => 0xb, 510 => 'Converter', 512 => 'Converter' }, - 'converttograyscale' => { 510 => 'ConvertToGrayscale', 512 => 'ConvertToGrayscale' }, - 'cookingequipment' => { 531 => 'cookingEquipment' }, - 'cookingmethod' => { 531 => 'cookingMethod' }, - 'copyright' => { 0 => 0x3, 122 => 0x8298, 160 => 'Copyright', 336 => 'Copyright', 352 => 0x8298, 382 => 0x22f, 398 => 'Copyright', 399 => ['cprt',"\xa9cpy"], 401 => 'copyright', 407 => ['cprt',"\xa9cpy"], 510 => 'Copyright', 512 => 'Copyright', 526 => 'Copyright', 532 => 'copyright', 535 => 'Copyright', 539 => 'copyright' }, - 'copyrightflag' => { 396 => 0x40a }, + 'conversionlens' => { 325 => 0x403, 348 => 0x35 }, + 'converter' => { 122 => 0xfe4d, 286 => 0xb, 511 => 'Converter', 513 => 'Converter' }, + 'converttograyscale' => { 511 => 'ConvertToGrayscale', 513 => 'ConvertToGrayscale' }, + 'cookingequipment' => { 532 => 'cookingEquipment' }, + 'cookingmethod' => { 532 => 'cookingMethod' }, + 'copyright' => { 0 => 0x3, 122 => 0x8298, 160 => 'Copyright', 337 => 'Copyright', 353 => 0x8298, 383 => 0x22f, 399 => 'Copyright', 400 => ['cprt',"\xa9cpy"], 402 => 'copyright', 408 => ['cprt',"\xa9cpy"], 511 => 'Copyright', 513 => 'Copyright', 527 => 'Copyright', 533 => 'copyright', 536 => 'Copyright', 540 => 'copyright' }, + 'copyrightflag' => { 397 => 0x40a }, 'copyrightnotice' => { 134 => 0x74 }, - 'copyrightowner' => { 333 => 'CopyrightOwner' }, - 'copyrightownerid' => { 333 => [\'CopyrightOwner','CopyrightOwnerCopyrightOwnerID'] }, - 'copyrightownerimageid' => { 333 => 'CopyrightOwnerImageID' }, - 'copyrightownername' => { 333 => [\'CopyrightOwner','CopyrightOwnerCopyrightOwnerName'] }, - 'copyrightregistrationnumber' => { 333 => 'CopyrightRegistrationNumber' }, - 'copyrightstatus' => { 333 => 'CopyrightStatus' }, - 'copyrightyear' => { 524 => 'CopyrightYear', 529 => 'copyrightYear' }, - 'coringfilter' => { 327 => 0x310, 328 => 0x102d, 331 => 0x310 }, - 'coringvalues' => { 327 => 0x311, 331 => 0x311 }, - 'corporateentity' => { 529 => 'corporateEntity' }, - 'correctionalreadyapplied' => { 337 => 'CorrectionAlreadyApplied' }, - 'correlatedcolortemp' => { 346 => 0x35b }, - 'country' => { 164 => 'Country', 347 => 0x69, 527 => 'Country' }, + 'copyrightowner' => { 334 => 'CopyrightOwner' }, + 'copyrightownerid' => { 334 => [\'CopyrightOwner','CopyrightOwnerCopyrightOwnerID'] }, + 'copyrightownerimageid' => { 334 => 'CopyrightOwnerImageID' }, + 'copyrightownername' => { 334 => [\'CopyrightOwner','CopyrightOwnerCopyrightOwnerName'] }, + 'copyrightregistrationnumber' => { 334 => 'CopyrightRegistrationNumber' }, + 'copyrightstatus' => { 334 => 'CopyrightStatus' }, + 'copyrightyear' => { 525 => 'CopyrightYear', 530 => 'copyrightYear' }, + 'coringfilter' => { 328 => 0x310, 329 => 0x102d, 332 => 0x310 }, + 'coringvalues' => { 328 => 0x311, 332 => 0x311 }, + 'corporateentity' => { 530 => 'corporateEntity' }, + 'correctionalreadyapplied' => { 338 => 'CorrectionAlreadyApplied' }, + 'correlatedcolortemp' => { 347 => 0x35b }, + 'country' => { 164 => 'Country', 348 => 0x69, 528 => 'Country' }, 'country-primarylocationcode' => { 134 => 0x64 }, 'country-primarylocationname' => { 134 => 0x65 }, - 'countrycode' => { 238 => 0x5, 394 => 'CountryCode', 523 => 'CountryCode' }, - 'course' => { 531 => 'course' }, - 'coverage' => { 513 => 'coverage' }, - 'coverart' => { 399 => 'covr' }, - 'coverdate' => { 529 => 'coverDate' }, - 'coverdisplaydate' => { 529 => 'coverDisplayDate' }, - 'coveruri' => { 407 => 'cvru' }, - 'cpufirmwareversion' => { 382 => 0x28 }, - 'crc32' => { 514 => 'crc32' }, - 'createdate' => { 122 => 0x9004, 160 => 'CreateDate', 332 => 'CreationDate', 336 => 'create-date', 398 => 'CreationDate', 404 => 0x1, 537 => 'CreateDate' }, - 'creationdate' => { 401 => 'creationdate', 526 => 'CreationDate', 529 => 'creationDate' }, - 'creationtime' => { 336 => 'Creation Time', 401 => 'creation_time' }, - 'creativestyle' => { 434 => 0x1a, 435 => 0x18, 445 => 0x41, 448 => 0xb020, 480 => 0x4a }, - 'creativestylesetting' => { 436 => 0xf, 453 => 0x7 }, - 'creativestylewaschanged' => { 485 => 0x8001 }, - 'creator' => { 332 => 'Creator', 398 => 'Creator', 513 => 'creator', 524 => 'Creator', 526 => 'Creator' }, - 'creatoraddress' => { 523 => [\'CreatorContactInfo','CreatorContactInfoCiAdrExtadr'] }, + 'countrycode' => { 238 => 0x5, 395 => 'CountryCode', 524 => 'CountryCode' }, + 'course' => { 532 => 'course' }, + 'coverage' => { 514 => 'coverage' }, + 'coverart' => { 400 => 'covr' }, + 'coverdate' => { 530 => 'coverDate' }, + 'coverdisplaydate' => { 530 => 'coverDisplayDate' }, + 'coveruri' => { 408 => 'cvru' }, + 'cpufirmwareversion' => { 383 => 0x28 }, + 'crc32' => { 515 => 'crc32' }, + 'createdate' => { 122 => 0x9004, 160 => 'CreateDate', 333 => 'CreationDate', 337 => 'create-date', 399 => 'CreationDate', 405 => 0x1, 538 => 'CreateDate' }, + 'creationdate' => { 402 => 'creationdate', 527 => 'CreationDate', 530 => 'creationDate' }, + 'creationtime' => { 337 => 'Creation Time', 402 => 'creation_time' }, + 'creativestyle' => { 435 => 0x1a, 436 => 0x18, 446 => 0x41, 449 => 0xb020, 481 => 0x4a }, + 'creativestylesetting' => { 437 => 0xf, 454 => 0x7 }, + 'creativestylewaschanged' => { 486 => 0x8001 }, + 'creator' => { 333 => 'Creator', 399 => 'Creator', 514 => 'creator', 525 => 'Creator', 527 => 'Creator' }, + 'creatoraddress' => { 524 => [\'CreatorContactInfo','CreatorContactInfoCiAdrExtadr'] }, 'creatorappid' => { 181 => 'CreatorAppId' }, - 'creatorcity' => { 523 => [\'CreatorContactInfo','CreatorContactInfoCiAdrCity'] }, - 'creatorcontactinfo' => { 523 => 'CreatorContactInfo' }, - 'creatorcountry' => { 523 => [\'CreatorContactInfo','CreatorContactInfoCiAdrCtry'] }, - 'creatoridentifier' => { 524 => [\'Creator','CreatorIdentifier'] }, - 'creatoridentity' => { 394 => 'CreatorIdentity' }, - 'creatorname' => { 524 => [\'Creator','CreatorName'] }, + 'creatorcity' => { 524 => [\'CreatorContactInfo','CreatorContactInfoCiAdrCity'] }, + 'creatorcontactinfo' => { 524 => 'CreatorContactInfo' }, + 'creatorcountry' => { 524 => [\'CreatorContactInfo','CreatorContactInfoCiAdrCtry'] }, + 'creatoridentifier' => { 525 => [\'Creator','CreatorIdentifier'] }, + 'creatoridentity' => { 395 => 'CreatorIdentity' }, + 'creatorname' => { 525 => [\'Creator','CreatorName'] }, 'creatoropenwithuioptions' => { 181 => 'CreatorOpenWithUIOptions' }, - 'creatorpostalcode' => { 523 => [\'CreatorContactInfo','CreatorContactInfoCiAdrPcode'] }, - 'creatorregion' => { 523 => [\'CreatorContactInfo','CreatorContactInfoCiAdrRegion'] }, - 'creatorrole' => { 524 => [\'Creator','CreatorRole'] }, - 'creatortool' => { 537 => 'CreatorTool' }, - 'creatorworkemail' => { 523 => [\'CreatorContactInfo','CreatorContactInfoCiEmailWork'] }, - 'creatorworktelephone' => { 523 => [\'CreatorContactInfo','CreatorContactInfoCiTelWork'] }, - 'creatorworkurl' => { 523 => [\'CreatorContactInfo','CreatorContactInfoCiUrlWork'] }, - 'credit' => { 134 => 0x6e, 527 => 'Credit' }, - 'creditline' => { 532 => 'creditLine' }, - 'creditlinereq' => { 542 => 'CreditLineReq' }, - 'creditlinerequired' => { 333 => 'CreditLineRequired' }, + 'creatorpostalcode' => { 524 => [\'CreatorContactInfo','CreatorContactInfoCiAdrPcode'] }, + 'creatorregion' => { 524 => [\'CreatorContactInfo','CreatorContactInfoCiAdrRegion'] }, + 'creatorrole' => { 525 => [\'Creator','CreatorRole'] }, + 'creatortool' => { 538 => 'CreatorTool' }, + 'creatorworkemail' => { 524 => [\'CreatorContactInfo','CreatorContactInfoCiEmailWork'] }, + 'creatorworktelephone' => { 524 => [\'CreatorContactInfo','CreatorContactInfoCiTelWork'] }, + 'creatorworkurl' => { 524 => [\'CreatorContactInfo','CreatorContactInfoCiUrlWork'] }, + 'credit' => { 134 => 0x6e, 528 => 'Credit' }, + 'creditline' => { 533 => 'creditLine' }, + 'creditlinereq' => { 543 => 'CreditLineReq' }, + 'creditlinerequired' => { 334 => 'CreditLineRequired' }, 'cropactive' => { 104 => 0x0, 111 => 0x244 }, - 'cropangle' => { 510 => 'CropAngle', 512 => 'CropAngle' }, - 'croparea' => { 239 => 0x45, 485 => 0x9011 }, + 'cropangle' => { 511 => 'CropAngle', 513 => 'CropAngle' }, + 'croparea' => { 239 => 0x45, 486 => 0x9011 }, 'cropaspectratio' => { 106 => 0x30101, 111 => 0x260 }, 'cropaspectratiocustom' => { 106 => 0x30102 }, - 'cropbottom' => { 126 => 0x9, 291 => 0x36, 352 => 0x31, 393 => 0xdc, 510 => 'CropBottom', 512 => 'CropBottom' }, + 'cropbottom' => { 126 => 0x9, 292 => 0x36, 353 => 0x31, 394 => 0xdc, 511 => 'CropBottom', 513 => 'CropBottom' }, 'cropbottommargin' => { 55 => 0x3 }, - 'cropcenter' => { 130 => 0x1052 }, 'cropcircleactive' => { 112 => 0xd6 }, 'cropcircleradius' => { 112 => 0xd9 }, 'cropcirclex' => { 112 => 0xd7 }, 'cropcircley' => { 112 => 0xd8 }, - 'cropconstraintowarp' => { 510 => 'CropConstrainToWarp', 512 => 'CropConstrainToWarp' }, - 'croph' => { 504 => 'CropH' }, - 'cropheight' => { 104 => 0x6, 111 => 0x24c, 327 => 0x615, 331 => 0x615, 510 => 'CropHeight', 512 => 'CropHeight' }, + 'cropconstraintowarp' => { 511 => 'CropConstrainToWarp', 513 => 'CropConstrainToWarp' }, + 'croph' => { 505 => 'CropH' }, + 'cropheight' => { 104 => 0x6, 111 => 0x24c, 328 => 0x615, 332 => 0x615, 511 => 'CropHeight', 513 => 'CropHeight' }, 'crophispeed' => { 239 => 0x1b }, - 'cropleft' => { 111 => 0x246, 126 => 0x6, 291 => 0x1e, 327 => 0x612, 331 => 0x612, 352 => 0x30, 393 => 0xd9, 510 => 'CropLeft', 512 => 'CropLeft' }, + 'cropleft' => { 111 => 0x246, 126 => 0x6, 292 => 0x1e, 328 => 0x612, 332 => 0x612, 353 => 0x30, 394 => 0xd9, 511 => 'CropLeft', 513 => 'CropLeft' }, 'cropleftmargin' => { 55 => 0x0 }, - 'cropmode' => { 130 => 0x104d, 414 => 0x1018 }, + 'cropmode' => { 130 => 0x104d, 415 => 0x1018 }, 'croporiginalheight' => { 104 => 0xb }, 'croporiginalwidth' => { 104 => 0xa }, - 'cropoutputheight' => { 291 => 0xce }, - 'cropoutputheightinches' => { 291 => 0x96 }, - 'cropoutputpixels' => { 291 => 0xd6 }, - 'cropoutputresolution' => { 291 => 0xb6 }, - 'cropoutputscale' => { 291 => 0xbe }, - 'cropoutputwidth' => { 291 => 0xc6 }, - 'cropoutputwidthinches' => { 291 => 0x8e }, - 'croppedareaimageheightpixels' => { 498 => 'CroppedAreaImageHeightPixels', 499 => 'CroppedAreaImageHeightPixels' }, - 'croppedareaimagewidthpixels' => { 498 => 'CroppedAreaImageWidthPixels', 499 => 'CroppedAreaImageWidthPixels' }, - 'croppedarealeftpixels' => { 498 => 'CroppedAreaLeftPixels', 499 => 'CroppedAreaLeftPixels' }, - 'croppedareatoppixels' => { 498 => 'CroppedAreaTopPixels', 499 => 'CroppedAreaTopPixels' }, - 'croppedimageheight' => { 5 => 0x2, 414 => 0x1604 }, + 'cropoutputheight' => { 292 => 0xce }, + 'cropoutputheightinches' => { 292 => 0x96 }, + 'cropoutputpixels' => { 292 => 0xd6 }, + 'cropoutputresolution' => { 292 => 0xb6 }, + 'cropoutputscale' => { 292 => 0xbe }, + 'cropoutputwidth' => { 292 => 0xc6 }, + 'cropoutputwidthinches' => { 292 => 0x8e }, + 'cropped' => { 130 => 0x1051 }, + 'croppedareaimageheightpixels' => { 499 => 'CroppedAreaImageHeightPixels', 500 => 'CroppedAreaImageHeightPixels' }, + 'croppedareaimagewidthpixels' => { 499 => 'CroppedAreaImageWidthPixels', 500 => 'CroppedAreaImageWidthPixels' }, + 'croppedarealeftpixels' => { 499 => 'CroppedAreaLeftPixels', 500 => 'CroppedAreaLeftPixels' }, + 'croppedareatoppixels' => { 499 => 'CroppedAreaTopPixels', 500 => 'CroppedAreaTopPixels' }, + 'croppedimageheight' => { 5 => 0x2, 415 => 0x1604 }, 'croppedimageleft' => { 5 => 0x3 }, 'croppedimagetop' => { 5 => 0x4 }, - 'croppedimagewidth' => { 5 => 0x1, 414 => 0x1603 }, - 'cropping' => { 485 => 0x9010 }, - 'cropright' => { 126 => 0x8, 291 => 0x2e, 352 => 0x32, 393 => 0xdb, 510 => 'CropRight', 512 => 'CropRight' }, + 'croppedimagewidth' => { 5 => 0x1, 415 => 0x1603 }, + 'cropping' => { 486 => 0x9010 }, + 'cropright' => { 126 => 0x8, 292 => 0x2e, 353 => 0x32, 394 => 0xdb, 511 => 'CropRight', 513 => 'CropRight' }, 'croprightmargin' => { 55 => 0x1 }, 'croprotatedoriginalheight' => { 104 => 0x2 }, 'croprotatedoriginalwidth' => { 104 => 0x1 }, 'croprotation' => { 104 => 0x8, 126 => 0xb }, - 'cropscaledresolution' => { 291 => 0x9e }, - 'cropsourceresolution' => { 291 => 0xae }, - 'croptop' => { 111 => 0x248, 126 => 0x7, 291 => 0x26, 327 => 0x613, 331 => 0x613, 352 => 0x2f, 393 => 0xda, 510 => 'CropTop', 512 => 'CropTop' }, - 'croptopleft' => { 130 => 0x1051 }, + 'cropscaledresolution' => { 292 => 0x9e }, + 'cropsize' => { 130 => 0x1053 }, + 'cropsourceresolution' => { 292 => 0xae }, + 'croptop' => { 111 => 0x248, 126 => 0x7, 292 => 0x26, 328 => 0x613, 332 => 0x613, 353 => 0x2f, 394 => 0xda, 511 => 'CropTop', 513 => 'CropTop' }, + 'croptopleft' => { 130 => 0x1052 }, 'croptopmargin' => { 55 => 0x2 }, - 'cropunit' => { 510 => 'CropUnit', 512 => 'CropUnit' }, - 'cropunits' => { 510 => 'CropUnits', 512 => 'CropUnits' }, - 'cropw' => { 504 => 'CropW' }, - 'cropwidth' => { 104 => 0x5, 111 => 0x24a, 327 => 0x614, 331 => 0x614, 510 => 'CropWidth', 512 => 'CropWidth' }, - 'cropx' => { 104 => 0x3, 504 => 'CropX' }, - 'cropy' => { 104 => 0x4, 504 => 'CropY' }, - 'crossprocess' => { 382 => 0x7b }, - 'crossprocessparams' => { 382 => 0x235 }, - 'cuisine' => { 531 => 'cuisine' }, + 'cropunit' => { 511 => 'CropUnit', 513 => 'CropUnit' }, + 'cropunits' => { 511 => 'CropUnits', 513 => 'CropUnits' }, + 'cropw' => { 505 => 'CropW' }, + 'cropwidth' => { 104 => 0x5, 111 => 0x24a, 328 => 0x614, 332 => 0x614, 511 => 'CropWidth', 513 => 'CropWidth' }, + 'cropx' => { 104 => 0x3, 505 => 'CropX' }, + 'cropy' => { 104 => 0x4, 505 => 'CropY' }, + 'crossprocess' => { 383 => 0x7b }, + 'crossprocessparams' => { 383 => 0x235 }, + 'cuisine' => { 532 => 'cuisine' }, 'currenticcprofile' => { 122 => 0xc691 }, 'currentpreprofilematrix' => { 122 => 0xc692 }, - 'currentversion' => { 485 => 0xd000 }, - 'curve0x' => { 504 => 'Curve0x' }, - 'curve0y' => { 504 => 'Curve0y' }, - 'curve1x' => { 504 => 'Curve1x' }, - 'curve1y' => { 504 => 'Curve1y' }, - 'curve2x' => { 504 => 'Curve2x' }, - 'curve2y' => { 504 => 'Curve2y' }, - 'curve3x' => { 504 => 'Curve3x' }, - 'curve3y' => { 504 => 'Curve3y' }, - 'curve4x' => { 504 => 'Curve4x' }, - 'curve4y' => { 504 => 'Curve4y' }, - 'curves' => { 296 => 0x76a43201 }, - 'custom1' => { 333 => 'Custom1' }, - 'custom10' => { 333 => 'Custom10' }, - 'custom2' => { 333 => 'Custom2' }, - 'custom3' => { 333 => 'Custom3' }, - 'custom4' => { 333 => 'Custom4' }, - 'custom5' => { 333 => 'Custom5' }, - 'custom6' => { 333 => 'Custom6' }, - 'custom7' => { 333 => 'Custom7' }, - 'custom8' => { 333 => 'Custom8' }, - 'custom9' => { 333 => 'Custom9' }, + 'currentversion' => { 486 => 0xd000 }, + 'curve0x' => { 505 => 'Curve0x' }, + 'curve0y' => { 505 => 'Curve0y' }, + 'curve1x' => { 505 => 'Curve1x' }, + 'curve1y' => { 505 => 'Curve1y' }, + 'curve2x' => { 505 => 'Curve2x' }, + 'curve2y' => { 505 => 'Curve2y' }, + 'curve3x' => { 505 => 'Curve3x' }, + 'curve3y' => { 505 => 'Curve3y' }, + 'curve4x' => { 505 => 'Curve4x' }, + 'curve4y' => { 505 => 'Curve4y' }, + 'curves' => { 297 => 0x76a43201 }, + 'custom1' => { 334 => 'Custom1' }, + 'custom10' => { 334 => 'Custom10' }, + 'custom2' => { 334 => 'Custom2' }, + 'custom3' => { 334 => 'Custom3' }, + 'custom4' => { 334 => 'Custom4' }, + 'custom5' => { 334 => 'Custom5' }, + 'custom6' => { 334 => 'Custom6' }, + 'custom7' => { 334 => 'Custom7' }, + 'custom8' => { 334 => 'Custom8' }, + 'custom9' => { 334 => 'Custom9' }, 'customcolortone' => { 112 => 0x4c }, 'customcontrast' => { 112 => 0x4e }, 'customcontrols' => { 87 => 0x70c }, @@ -2165,70 +2170,70 @@ my %tagLookup = ( 'customrawhighlightpoint' => { 112 => 0x51 }, 'customrawshadow' => { 112 => 0x85 }, 'customrawshadowpoint' => { 112 => 0x52 }, - 'customrendered' => { 122 => 0xa401, 194 => 0x6420, 516 => 'CustomRendered' }, - 'customsaturation' => { 112 => 0x4d, 323 => 0x503 }, - 'customsettingsalldefault' => { 303 => '0.2', 312 => '0.2' }, - 'customsettingsbank' => { 303 => '0.1', 304 => '0.1', 306 => '0.1', 307 => '0.1', 312 => '0.1', 316 => '0.2', 317 => '0.2', 319 => 0x1, 320 => 0x1, 321 => 0x1 }, + 'customrendered' => { 122 => 0xa401, 194 => 0x6420, 517 => 'CustomRendered' }, + 'customsaturation' => { 112 => 0x4d, 324 => 0x503 }, + 'customsettingsalldefault' => { 304 => '0.2', 313 => '0.2' }, + 'customsettingsbank' => { 304 => '0.1', 305 => '0.1', 307 => '0.1', 308 => '0.1', 313 => '0.1', 317 => '0.2', 318 => '0.2', 320 => 0x1, 321 => 0x1, 322 => 0x1 }, 'customsharpness' => { 112 => 0x50 }, 'customunsharpmaskfineness' => { 112 => 0xb8 }, 'customunsharpmaskstrength' => { 112 => 0xb6 }, 'customunsharpmaskthreshold' => { 112 => 0xba }, - 'customwb_rblevels' => { 453 => 0x1a }, - 'customwb_rgblevels' => { 435 => 0x8, 436 => 0x19 }, + 'customwb_rblevels' => { 454 => 0x1a }, + 'customwb_rgblevels' => { 436 => 0x8, 437 => 0x19 }, 'customwbbluelevel' => { 187 => 0x36 }, 'customwberror' => { 187 => 0x37 }, 'customwbgreenlevel' => { 187 => 0x35 }, 'customwbredlevel' => { 187 => 0x34 }, 'customwbsetting' => { 187 => 0x26 }, - 'cx' => { 407 => '_cx_' }, - 'cy' => { 407 => '_cy_' }, - 'd-lightinghq' => { 296 => 0x2175eb78 }, - 'd-lightinghqcolorboost' => { 292 => 0x2 }, - 'd-lightinghqhighlight' => { 292 => 0x1 }, - 'd-lightinghqselected' => { 296 => 0x6a6e36b6 }, - 'd-lightinghqshadow' => { 292 => 0x0 }, - 'd-lightinghs' => { 296 => 0xce5554aa }, - 'd-lightinghsadjustment' => { 293 => 0x0 }, - 'd-lightinghscolorboost' => { 293 => 0x1 }, - 'd-rangeoptimizerhighlight' => { 485 => 0x8024 }, - 'd-rangeoptimizermode' => { 485 => 0x8022 }, - 'd-rangeoptimizershadow' => { 485 => 0x802d }, - 'd-rangeoptimizervalue' => { 485 => 0x8023 }, + 'cx' => { 408 => '_cx_' }, + 'cy' => { 408 => '_cy_' }, + 'd-lightinghq' => { 297 => 0x2175eb78 }, + 'd-lightinghqcolorboost' => { 293 => 0x2 }, + 'd-lightinghqhighlight' => { 293 => 0x1 }, + 'd-lightinghqselected' => { 297 => 0x6a6e36b6 }, + 'd-lightinghqshadow' => { 293 => 0x0 }, + 'd-lightinghs' => { 297 => 0xce5554aa }, + 'd-lightinghsadjustment' => { 294 => 0x0 }, + 'd-lightinghscolorboost' => { 294 => 0x1 }, + 'd-rangeoptimizerhighlight' => { 486 => 0x8024 }, + 'd-rangeoptimizermode' => { 486 => 0x8022 }, + 'd-rangeoptimizershadow' => { 486 => 0x802d }, + 'd-rangeoptimizervalue' => { 486 => 0x8023 }, 'darkblacksegrows' => { 141 => 0x18d8 }, - 'darkfocusenvironment' => { 347 => 0x8003 }, + 'darkfocusenvironment' => { 348 => 0x8003 }, 'darkframecountfactor' => { 141 => 0xc85 }, 'darkframelongexposure' => { 141 => 0xc84 }, 'darkframeshortexposure' => { 141 => 0xc83 }, 'darkpedestal' => { 141 => 0xc7f }, 'datacompressionmethod' => { 136 => 0x6e }, 'dataimprint' => { 184 => 0x34 }, - 'datamining' => { 333 => 'DataMining' }, - 'dataonscreen' => { 524 => 'DataOnScreen' }, - 'dataonscreenregion' => { 524 => [\'DataOnScreen','DataOnScreenRegion'] }, - 'dataonscreenregiond' => { 524 => [\'DataOnScreen','DataOnScreenRegionD'] }, - 'dataonscreenregionh' => { 524 => [\'DataOnScreen','DataOnScreenRegionH'] }, - 'dataonscreenregiontext' => { 524 => [\'DataOnScreen','DataOnScreenRegionText'] }, - 'dataonscreenregionunit' => { 524 => [\'DataOnScreen','DataOnScreenRegionUnit'] }, - 'dataonscreenregionw' => { 524 => [\'DataOnScreen','DataOnScreenRegionW'] }, - 'dataonscreenregionx' => { 524 => [\'DataOnScreen','DataOnScreenRegionX'] }, - 'dataonscreenregiony' => { 524 => [\'DataOnScreen','DataOnScreenRegionY'] }, - 'datascaling' => { 382 => 0x3d }, - 'date' => { 382 => 0x6, 513 => 'date' }, + 'datamining' => { 334 => 'DataMining' }, + 'dataonscreen' => { 525 => 'DataOnScreen' }, + 'dataonscreenregion' => { 525 => [\'DataOnScreen','DataOnScreenRegion'] }, + 'dataonscreenregiond' => { 525 => [\'DataOnScreen','DataOnScreenRegionD'] }, + 'dataonscreenregionh' => { 525 => [\'DataOnScreen','DataOnScreenRegionH'] }, + 'dataonscreenregiontext' => { 525 => [\'DataOnScreen','DataOnScreenRegionText'] }, + 'dataonscreenregionunit' => { 525 => [\'DataOnScreen','DataOnScreenRegionUnit'] }, + 'dataonscreenregionw' => { 525 => [\'DataOnScreen','DataOnScreenRegionW'] }, + 'dataonscreenregionx' => { 525 => [\'DataOnScreen','DataOnScreenRegionX'] }, + 'dataonscreenregiony' => { 525 => [\'DataOnScreen','DataOnScreenRegionY'] }, + 'datascaling' => { 383 => 0x3d }, + 'date' => { 383 => 0x6, 514 => 'date' }, 'dateacquired' => { 181 => 'DateAcquired', 182 => '{2CBAA8F5-D81F-47CA-B17A-F8D822300131} 100' }, - 'datecreated' => { 134 => 0x37, 527 => 'DateCreated' }, - 'datedisplayformat' => { 288 => 0x3 }, + 'datecreated' => { 134 => 0x37, 528 => 'DateCreated' }, + 'datedisplayformat' => { 289 => 0x3 }, 'dateidentified' => { 121 => [\'Identification','IdentificationDateIdentified'] }, - 'dateimprint' => { 308 => '4.2' }, - 'daterecieved' => { 529 => 'dateRecieved' }, + 'dateimprint' => { 309 => '4.2' }, + 'daterecieved' => { 530 => 'dateRecieved' }, 'datesent' => { 135 => 0x46 }, 'datestampmode' => { 66 => 0x1c, 239 => 0x9d }, - 'datetime' => { 505 => 'datetime', 535 => 'DateTime' }, - 'datetimedigitized' => { 516 => 'DateTimeDigitized' }, - 'datetimeoriginal' => { 103 => 0x0, 122 => 0x9003, 157 => 0x14, 160 => 'OriginalDate', 402 => 'IDIT', 407 => 'date', 408 => 0xb, 409 => 0x3b, 410 => 0x3e, 516 => 'DateTimeOriginal' }, + 'datetime' => { 506 => 'datetime', 536 => 'DateTime' }, + 'datetimedigitized' => { 517 => 'DateTimeDigitized' }, + 'datetimeoriginal' => { 103 => 0x0, 122 => 0x9003, 157 => 0x14, 160 => 'OriginalDate', 403 => 'IDIT', 408 => 'date', 409 => 0xb, 410 => 0x3b, 411 => 0x3e, 517 => 'DateTimeOriginal' }, 'datetimestamp' => { 143 => 0x64 }, - 'datetimeutc' => { 323 => 0x908 }, - 'daylightsavings' => { 80 => 0x3, 288 => 0x2 }, - 'dayofweek' => { 409 => 0x42, 410 => 0x4a }, + 'datetimeutc' => { 324 => 0x908 }, + 'daylightsavings' => { 80 => 0x3, 289 => 0x2 }, + 'dayofweek' => { 410 => 0x42, 411 => 0x4a }, 'dccontinent' => { 121 => [\'dctermsLocation','dctermsLocationContinent'] }, 'dccoordinateprecision' => { 121 => [\'dctermsLocation','dctermsLocationCoordinatePrecision'] }, 'dccoordinateuncertaintyinmeters' => { 121 => [\'dctermsLocation','dctermsLocationCoordinateUncertaintyInMeters'] }, @@ -2278,177 +2283,177 @@ my %tagLookup = ( 'dcwaterbody' => { 121 => [\'dctermsLocation','dctermsLocationWaterBody'] }, 'declination' => { 168 => 'Declination' }, 'decposition' => { 184 => 0x32 }, - 'defaultautogray' => { 510 => 'DefaultAutoGray', 512 => 'DefaultAutoGray' }, - 'defaultautotone' => { 510 => 'DefaultAutoTone', 512 => 'DefaultAutoTone' }, + 'defaultautogray' => { 511 => 'DefaultAutoGray', 513 => 'DefaultAutoGray' }, + 'defaultautotone' => { 511 => 'DefaultAutoTone', 513 => 'DefaultAutoTone' }, 'defaultblackrender' => { 122 => 0xc7a6 }, 'defaultcroporigin' => { 122 => 0xc61f }, 'defaultcropsize' => { 122 => 0xc620 }, 'defaulteraseoption' => { 87 => 0x813 }, 'defaultscale' => { 122 => 0xc61e }, - 'defaultsspecifictoiso' => { 510 => 'DefaultsSpecificToISO', 512 => 'DefaultsSpecificToISO' }, - 'defaultsspecifictoserial' => { 510 => 'DefaultsSpecificToSerial', 512 => 'DefaultsSpecificToSerial' }, + 'defaultsspecifictoiso' => { 511 => 'DefaultsSpecificToISO', 513 => 'DefaultsSpecificToISO' }, + 'defaultsspecifictoserial' => { 511 => 'DefaultsSpecificToSerial', 513 => 'DefaultsSpecificToSerial' }, 'defaultusercrop' => { 122 => 0xc7b5 }, 'defectisocode' => { 141 => 0x90f }, - 'defringe' => { 510 => 'Defringe', 512 => 'Defringe' }, - 'defringegreenamount' => { 510 => 'DefringeGreenAmount', 512 => 'DefringeGreenAmount' }, - 'defringegreenhuehi' => { 510 => 'DefringeGreenHueHi', 512 => 'DefringeGreenHueHi' }, - 'defringegreenhuelo' => { 510 => 'DefringeGreenHueLo', 512 => 'DefringeGreenHueLo' }, - 'defringepurpleamount' => { 510 => 'DefringePurpleAmount', 512 => 'DefringePurpleAmount' }, - 'defringepurplehuehi' => { 510 => 'DefringePurpleHueHi', 512 => 'DefringePurpleHueHi' }, - 'defringepurplehuelo' => { 510 => 'DefringePurpleHueLo', 512 => 'DefringePurpleHueLo' }, - 'dehaze' => { 510 => 'Dehaze', 512 => 'Dehaze' }, - 'deletedimagecount' => { 239 => 0xa6, 267 => 0x6e }, - 'deprecatedon' => { 508 => 'deprecatedOn' }, - 'depthbasedcorrcorrectionactive' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionActive'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionActive'] }, - 'depthbasedcorrcorrectionamount' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionAmount'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionAmount'] }, - 'depthbasedcorrcorrectionsyncid' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionSyncID'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionSyncID'] }, - 'depthbasedcorrections' => { 510 => 'DepthBasedCorrections', 512 => 'DepthBasedCorrections' }, - 'depthbasedcorrlocalcorrecteddepth' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsLocalCorrectedDepth'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsLocalCorrectedDepth'] }, - 'depthbasedcorrlocalcurverefinesaturation' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsLocalCurveRefineSaturation'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsLocalCurveRefineSaturation'] }, - 'depthbasedcorrmask' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasks'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasks'] }, - 'depthbasedcorrmaskalpha' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksAlpha'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksAlpha'] }, - 'depthbasedcorrmaskangle' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksAngle'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksAngle'] }, - 'depthbasedcorrmaskbottom' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksBottom'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksBottom'] }, - 'depthbasedcorrmaskcentervalue' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCenterValue'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCenterValue'] }, - 'depthbasedcorrmaskcenterweight' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCenterWeight'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCenterWeight'] }, - 'depthbasedcorrmaskdabs' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksDabs'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksDabs'] }, - 'depthbasedcorrmaskfeather' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFeather'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFeather'] }, - 'depthbasedcorrmaskflipped' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFlipped'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFlipped'] }, - 'depthbasedcorrmaskflow' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFlow'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFlow'] }, - 'depthbasedcorrmaskfullx' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFullX'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFullX'] }, - 'depthbasedcorrmaskfully' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFullY'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFullY'] }, - 'depthbasedcorrmaskinputdigest' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksInputDigest'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksInputDigest'] }, - 'depthbasedcorrmaskleft' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksLeft'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksLeft'] }, - 'depthbasedcorrmaskmaskactive' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskActive'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskActive'] }, - 'depthbasedcorrmaskmaskblendmode' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskBlendMode'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskBlendMode'] }, - 'depthbasedcorrmaskmaskdigest' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskDigest'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskDigest'] }, - 'depthbasedcorrmaskmaskinverted' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskInverted'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskInverted'] }, - 'depthbasedcorrmaskmaskname' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskName'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskName'] }, - 'depthbasedcorrmaskmasks' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasks'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasks'] }, - 'depthbasedcorrmaskmasksalpha' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksAlpha'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksAlpha'] }, - 'depthbasedcorrmaskmasksangle' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksAngle'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksAngle'] }, - 'depthbasedcorrmaskmasksbottom' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksBottom'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksBottom'] }, - 'depthbasedcorrmaskmaskscentervalue' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksCenterValue'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksCenterValue'] }, - 'depthbasedcorrmaskmaskscenterweight' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksCenterWeight'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksCenterWeight'] }, - 'depthbasedcorrmaskmasksdabs' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksDabs'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksDabs'] }, - 'depthbasedcorrmaskmasksfeather' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFeather'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFeather'] }, - 'depthbasedcorrmaskmasksflipped' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFlipped'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFlipped'] }, - 'depthbasedcorrmaskmasksflow' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFlow'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFlow'] }, - 'depthbasedcorrmaskmasksfullx' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFullX'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFullX'] }, - 'depthbasedcorrmaskmasksfully' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFullY'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFullY'] }, - 'depthbasedcorrmaskmasksinputdigest' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksInputDigest'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksInputDigest'] }, - 'depthbasedcorrmaskmasksleft' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksLeft'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksLeft'] }, - 'depthbasedcorrmaskmasksmaskactive' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskActive'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskActive'] }, - 'depthbasedcorrmaskmasksmaskblendmode' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskBlendMode'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskBlendMode'] }, - 'depthbasedcorrmaskmasksmaskdigest' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskDigest'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskDigest'] }, - 'depthbasedcorrmaskmasksmaskinverted' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskInverted'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskInverted'] }, - 'depthbasedcorrmaskmasksmaskname' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskName'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskName'] }, - 'depthbasedcorrmaskmasksmasksubtype' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskSubType'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskSubType'] }, - 'depthbasedcorrmaskmasksmasksyncid' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskSyncID'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskSyncID'] }, - 'depthbasedcorrmaskmasksmaskversion' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskVersion'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskVersion'] }, - 'depthbasedcorrmaskmasksmidpoint' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMidpoint'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMidpoint'] }, - 'depthbasedcorrmaskmasksorigin' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksOrigin'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksOrigin'] }, - 'depthbasedcorrmaskmasksperimetervalue' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksPerimeterValue'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksPerimeterValue'] }, - 'depthbasedcorrmaskmasksradius' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksRadius'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksRadius'] }, - 'depthbasedcorrmaskmasksreferencepoint' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksReferencePoint'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksReferencePoint'] }, - 'depthbasedcorrmaskmasksright' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksRight'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksRight'] }, - 'depthbasedcorrmaskmasksroundness' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksRoundness'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksRoundness'] }, - 'depthbasedcorrmaskmaskssizex' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksSizeX'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksSizeX'] }, - 'depthbasedcorrmaskmaskssizey' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksSizeY'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksSizeY'] }, - 'depthbasedcorrmaskmaskstop' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksTop'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksTop'] }, - 'depthbasedcorrmaskmasksubtype' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskSubType'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskSubType'] }, - 'depthbasedcorrmaskmasksvalue' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskValue'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskValue'] }, - 'depthbasedcorrmaskmasksversion' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksVersion'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksVersion'] }, - 'depthbasedcorrmaskmaskswhat' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksWhat'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksWhat'] }, - 'depthbasedcorrmaskmaskswholeimagearea' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksWholeImageArea'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksWholeImageArea'] }, - 'depthbasedcorrmaskmasksx' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksX'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksX'] }, - 'depthbasedcorrmaskmasksy' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksY'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksY'] }, - 'depthbasedcorrmaskmasksyncid' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskSyncID'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskSyncID'] }, - 'depthbasedcorrmaskmaskszerox' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksZeroX'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksZeroX'] }, - 'depthbasedcorrmaskmaskszeroy' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksZeroY'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksZeroY'] }, - 'depthbasedcorrmaskmaskversion' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskVersion'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskVersion'] }, - 'depthbasedcorrmaskmidpoint' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMidpoint'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMidpoint'] }, - 'depthbasedcorrmaskorigin' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksOrigin'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksOrigin'] }, - 'depthbasedcorrmaskperimetervalue' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksPerimeterValue'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksPerimeterValue'] }, - 'depthbasedcorrmaskradius' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksRadius'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksRadius'] }, - 'depthbasedcorrmaskrange' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMask'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMask'] }, - 'depthbasedcorrmaskrangeareamodels' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'] }, - 'depthbasedcorrmaskrangeareamodelscolorsampleinfo' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, - 'depthbasedcorrmaskrangeareamodelscomponents' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'] }, - 'depthbasedcorrmaskrangecoloramount' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'] }, - 'depthbasedcorrmaskrangedepthfeather' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'] }, - 'depthbasedcorrmaskrangedepthmax' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'] }, - 'depthbasedcorrmaskrangedepthmin' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'] }, - 'depthbasedcorrmaskrangeinvert' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'] }, - 'depthbasedcorrmaskrangelumfeather' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'] }, - 'depthbasedcorrmaskrangeluminancedepthsampleinfo' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'] }, - 'depthbasedcorrmaskrangelummax' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'] }, - 'depthbasedcorrmaskrangelummin' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'] }, - 'depthbasedcorrmaskrangelumrange' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'] }, - 'depthbasedcorrmaskrangesampletype' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'] }, - 'depthbasedcorrmaskrangetype' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'] }, - 'depthbasedcorrmaskrangeversion' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'] }, - 'depthbasedcorrmaskreferencepoint' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksReferencePoint'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksReferencePoint'] }, - 'depthbasedcorrmaskright' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksRight'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksRight'] }, - 'depthbasedcorrmaskroundness' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksRoundness'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksRoundness'] }, - 'depthbasedcorrmasksizex' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksSizeX'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksSizeX'] }, - 'depthbasedcorrmasksizey' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksSizeY'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksSizeY'] }, - 'depthbasedcorrmasktop' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksTop'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksTop'] }, - 'depthbasedcorrmaskvalue' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskValue'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskValue'] }, - 'depthbasedcorrmaskversion' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksVersion'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksVersion'] }, - 'depthbasedcorrmaskwhat' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksWhat'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksWhat'] }, - 'depthbasedcorrmaskwholeimagearea' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksWholeImageArea'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksWholeImageArea'] }, - 'depthbasedcorrmaskx' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksX'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksX'] }, - 'depthbasedcorrmasky' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksY'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksY'] }, - 'depthbasedcorrmaskzerox' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksZeroX'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksZeroX'] }, - 'depthbasedcorrmaskzeroy' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksZeroY'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksZeroY'] }, - 'depthbasedcorrwhat' => { 510 => [\'DepthBasedCorrections','DepthBasedCorrectionsWhat'], 512 => [\'DepthBasedCorrections','DepthBasedCorrectionsWhat'] }, + 'defringe' => { 511 => 'Defringe', 513 => 'Defringe' }, + 'defringegreenamount' => { 511 => 'DefringeGreenAmount', 513 => 'DefringeGreenAmount' }, + 'defringegreenhuehi' => { 511 => 'DefringeGreenHueHi', 513 => 'DefringeGreenHueHi' }, + 'defringegreenhuelo' => { 511 => 'DefringeGreenHueLo', 513 => 'DefringeGreenHueLo' }, + 'defringepurpleamount' => { 511 => 'DefringePurpleAmount', 513 => 'DefringePurpleAmount' }, + 'defringepurplehuehi' => { 511 => 'DefringePurpleHueHi', 513 => 'DefringePurpleHueHi' }, + 'defringepurplehuelo' => { 511 => 'DefringePurpleHueLo', 513 => 'DefringePurpleHueLo' }, + 'dehaze' => { 511 => 'Dehaze', 513 => 'Dehaze' }, + 'deletedimagecount' => { 239 => 0xa6, 268 => 0x6e }, + 'deprecatedon' => { 509 => 'deprecatedOn' }, + 'depthbasedcorrcorrectionactive' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionActive'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionActive'] }, + 'depthbasedcorrcorrectionamount' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionAmount'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionAmount'] }, + 'depthbasedcorrcorrectionsyncid' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionSyncID'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionSyncID'] }, + 'depthbasedcorrections' => { 511 => 'DepthBasedCorrections', 513 => 'DepthBasedCorrections' }, + 'depthbasedcorrlocalcorrecteddepth' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsLocalCorrectedDepth'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsLocalCorrectedDepth'] }, + 'depthbasedcorrlocalcurverefinesaturation' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsLocalCurveRefineSaturation'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsLocalCurveRefineSaturation'] }, + 'depthbasedcorrmask' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasks'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasks'] }, + 'depthbasedcorrmaskalpha' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksAlpha'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksAlpha'] }, + 'depthbasedcorrmaskangle' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksAngle'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksAngle'] }, + 'depthbasedcorrmaskbottom' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksBottom'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksBottom'] }, + 'depthbasedcorrmaskcentervalue' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCenterValue'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCenterValue'] }, + 'depthbasedcorrmaskcenterweight' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCenterWeight'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCenterWeight'] }, + 'depthbasedcorrmaskdabs' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksDabs'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksDabs'] }, + 'depthbasedcorrmaskfeather' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFeather'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFeather'] }, + 'depthbasedcorrmaskflipped' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFlipped'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFlipped'] }, + 'depthbasedcorrmaskflow' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFlow'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFlow'] }, + 'depthbasedcorrmaskfullx' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFullX'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFullX'] }, + 'depthbasedcorrmaskfully' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFullY'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFullY'] }, + 'depthbasedcorrmaskinputdigest' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksInputDigest'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksInputDigest'] }, + 'depthbasedcorrmaskleft' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksLeft'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksLeft'] }, + 'depthbasedcorrmaskmaskactive' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskActive'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskActive'] }, + 'depthbasedcorrmaskmaskblendmode' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskBlendMode'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskBlendMode'] }, + 'depthbasedcorrmaskmaskdigest' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskDigest'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskDigest'] }, + 'depthbasedcorrmaskmaskinverted' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskInverted'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskInverted'] }, + 'depthbasedcorrmaskmaskname' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskName'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskName'] }, + 'depthbasedcorrmaskmasks' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasks'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasks'] }, + 'depthbasedcorrmaskmasksalpha' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksAlpha'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksAlpha'] }, + 'depthbasedcorrmaskmasksangle' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksAngle'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksAngle'] }, + 'depthbasedcorrmaskmasksbottom' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksBottom'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksBottom'] }, + 'depthbasedcorrmaskmaskscentervalue' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksCenterValue'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksCenterValue'] }, + 'depthbasedcorrmaskmaskscenterweight' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksCenterWeight'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksCenterWeight'] }, + 'depthbasedcorrmaskmasksdabs' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksDabs'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksDabs'] }, + 'depthbasedcorrmaskmasksfeather' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFeather'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFeather'] }, + 'depthbasedcorrmaskmasksflipped' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFlipped'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFlipped'] }, + 'depthbasedcorrmaskmasksflow' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFlow'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFlow'] }, + 'depthbasedcorrmaskmasksfullx' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFullX'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFullX'] }, + 'depthbasedcorrmaskmasksfully' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFullY'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFullY'] }, + 'depthbasedcorrmaskmasksinputdigest' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksInputDigest'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksInputDigest'] }, + 'depthbasedcorrmaskmasksleft' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksLeft'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksLeft'] }, + 'depthbasedcorrmaskmasksmaskactive' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskActive'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskActive'] }, + 'depthbasedcorrmaskmasksmaskblendmode' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskBlendMode'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskBlendMode'] }, + 'depthbasedcorrmaskmasksmaskdigest' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskDigest'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskDigest'] }, + 'depthbasedcorrmaskmasksmaskinverted' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskInverted'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskInverted'] }, + 'depthbasedcorrmaskmasksmaskname' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskName'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskName'] }, + 'depthbasedcorrmaskmasksmasksubtype' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskSubType'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskSubType'] }, + 'depthbasedcorrmaskmasksmasksyncid' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskSyncID'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskSyncID'] }, + 'depthbasedcorrmaskmasksmaskversion' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskVersion'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskVersion'] }, + 'depthbasedcorrmaskmasksmidpoint' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMidpoint'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMidpoint'] }, + 'depthbasedcorrmaskmasksorigin' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksOrigin'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksOrigin'] }, + 'depthbasedcorrmaskmasksperimetervalue' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksPerimeterValue'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksPerimeterValue'] }, + 'depthbasedcorrmaskmasksradius' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksRadius'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksRadius'] }, + 'depthbasedcorrmaskmasksreferencepoint' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksReferencePoint'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksReferencePoint'] }, + 'depthbasedcorrmaskmasksright' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksRight'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksRight'] }, + 'depthbasedcorrmaskmasksroundness' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksRoundness'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksRoundness'] }, + 'depthbasedcorrmaskmaskssizex' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksSizeX'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksSizeX'] }, + 'depthbasedcorrmaskmaskssizey' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksSizeY'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksSizeY'] }, + 'depthbasedcorrmaskmaskstop' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksTop'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksTop'] }, + 'depthbasedcorrmaskmasksubtype' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskSubType'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskSubType'] }, + 'depthbasedcorrmaskmasksvalue' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskValue'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskValue'] }, + 'depthbasedcorrmaskmasksversion' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksVersion'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksVersion'] }, + 'depthbasedcorrmaskmaskswhat' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksWhat'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksWhat'] }, + 'depthbasedcorrmaskmaskswholeimagearea' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksWholeImageArea'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksWholeImageArea'] }, + 'depthbasedcorrmaskmasksx' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksX'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksX'] }, + 'depthbasedcorrmaskmasksy' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksY'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksY'] }, + 'depthbasedcorrmaskmasksyncid' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskSyncID'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskSyncID'] }, + 'depthbasedcorrmaskmaskszerox' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksZeroX'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksZeroX'] }, + 'depthbasedcorrmaskmaskszeroy' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksZeroY'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksZeroY'] }, + 'depthbasedcorrmaskmaskversion' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskVersion'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskVersion'] }, + 'depthbasedcorrmaskmidpoint' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMidpoint'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMidpoint'] }, + 'depthbasedcorrmaskorigin' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksOrigin'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksOrigin'] }, + 'depthbasedcorrmaskperimetervalue' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksPerimeterValue'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksPerimeterValue'] }, + 'depthbasedcorrmaskradius' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksRadius'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksRadius'] }, + 'depthbasedcorrmaskrange' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMask'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMask'] }, + 'depthbasedcorrmaskrangeareamodels' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'] }, + 'depthbasedcorrmaskrangeareamodelscolorsampleinfo' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, + 'depthbasedcorrmaskrangeareamodelscomponents' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'] }, + 'depthbasedcorrmaskrangecoloramount' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'] }, + 'depthbasedcorrmaskrangedepthfeather' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'] }, + 'depthbasedcorrmaskrangedepthmax' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'] }, + 'depthbasedcorrmaskrangedepthmin' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'] }, + 'depthbasedcorrmaskrangeinvert' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'] }, + 'depthbasedcorrmaskrangelumfeather' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'] }, + 'depthbasedcorrmaskrangeluminancedepthsampleinfo' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'] }, + 'depthbasedcorrmaskrangelummax' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'] }, + 'depthbasedcorrmaskrangelummin' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'] }, + 'depthbasedcorrmaskrangelumrange' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'] }, + 'depthbasedcorrmaskrangesampletype' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'] }, + 'depthbasedcorrmaskrangetype' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'] }, + 'depthbasedcorrmaskrangeversion' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'] }, + 'depthbasedcorrmaskreferencepoint' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksReferencePoint'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksReferencePoint'] }, + 'depthbasedcorrmaskright' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksRight'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksRight'] }, + 'depthbasedcorrmaskroundness' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksRoundness'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksRoundness'] }, + 'depthbasedcorrmasksizex' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksSizeX'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksSizeX'] }, + 'depthbasedcorrmasksizey' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksSizeY'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksSizeY'] }, + 'depthbasedcorrmasktop' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksTop'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksTop'] }, + 'depthbasedcorrmaskvalue' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskValue'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskValue'] }, + 'depthbasedcorrmaskversion' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksVersion'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksVersion'] }, + 'depthbasedcorrmaskwhat' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksWhat'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksWhat'] }, + 'depthbasedcorrmaskwholeimagearea' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksWholeImageArea'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksWholeImageArea'] }, + 'depthbasedcorrmaskx' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksX'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksX'] }, + 'depthbasedcorrmasky' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksY'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksY'] }, + 'depthbasedcorrmaskzerox' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksZeroX'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksZeroX'] }, + 'depthbasedcorrmaskzeroy' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksZeroY'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksZeroY'] }, + 'depthbasedcorrwhat' => { 511 => [\'DepthBasedCorrections','DepthBasedCorrectionsWhat'], 513 => [\'DepthBasedCorrections','DepthBasedCorrectionsWhat'] }, 'depthfar' => { 122 => 0xc7eb }, 'depthformat' => { 122 => 0xc7e9 }, - 'depthimage' => { 495 => 'Data' }, - 'depthmapinfo' => { 510 => 'DepthMapInfo', 512 => 'DepthMapInfo' }, - 'depthmapinfobasehighlightguideinputdigest' => { 510 => [\'DepthMapInfo','DepthMapInfoBaseHighlightGuideInputDigest'], 512 => [\'DepthMapInfo','DepthMapInfoBaseHighlightGuideInputDigest'] }, - 'depthmapinfobasehighlightguidetable' => { 510 => [\'DepthMapInfo','DepthMapInfoBaseHighlightGuideTable'], 512 => [\'DepthMapInfo','DepthMapInfoBaseHighlightGuideTable'] }, - 'depthmapinfobasehighlightguideversion' => { 510 => [\'DepthMapInfo','DepthMapInfoBaseHighlightGuideVersion'], 512 => [\'DepthMapInfo','DepthMapInfoBaseHighlightGuideVersion'] }, - 'depthmapinfobaselayereddepthinputdigest' => { 510 => [\'DepthMapInfo','DepthMapInfoBaseLayeredDepthInputDigest'], 512 => [\'DepthMapInfo','DepthMapInfoBaseLayeredDepthInputDigest'] }, - 'depthmapinfobaselayereddepthtable' => { 510 => [\'DepthMapInfo','DepthMapInfoBaseLayeredDepthTable'], 512 => [\'DepthMapInfo','DepthMapInfoBaseLayeredDepthTable'] }, - 'depthmapinfobaselayereddepthversion' => { 510 => [\'DepthMapInfo','DepthMapInfoBaseLayeredDepthVersion'], 512 => [\'DepthMapInfo','DepthMapInfoBaseLayeredDepthVersion'] }, - 'depthmapinfobaserawdepthinputdigest' => { 510 => [\'DepthMapInfo','DepthMapInfoBaseRawDepthInputDigest'], 512 => [\'DepthMapInfo','DepthMapInfoBaseRawDepthInputDigest'] }, - 'depthmapinfobaserawdepthtable' => { 510 => [\'DepthMapInfo','DepthMapInfoBaseRawDepthTable'], 512 => [\'DepthMapInfo','DepthMapInfoBaseRawDepthTable'] }, - 'depthmapinfobaserawdepthversion' => { 510 => [\'DepthMapInfo','DepthMapInfoBaseRawDepthVersion'], 512 => [\'DepthMapInfo','DepthMapInfoBaseRawDepthVersion'] }, - 'depthmapinfodepthsource' => { 510 => [\'DepthMapInfo','DepthMapInfoDepthSource'], 512 => [\'DepthMapInfo','DepthMapInfoDepthSource'] }, + 'depthimage' => { 496 => 'Data' }, + 'depthmapinfo' => { 511 => 'DepthMapInfo', 513 => 'DepthMapInfo' }, + 'depthmapinfobasehighlightguideinputdigest' => { 511 => [\'DepthMapInfo','DepthMapInfoBaseHighlightGuideInputDigest'], 513 => [\'DepthMapInfo','DepthMapInfoBaseHighlightGuideInputDigest'] }, + 'depthmapinfobasehighlightguidetable' => { 511 => [\'DepthMapInfo','DepthMapInfoBaseHighlightGuideTable'], 513 => [\'DepthMapInfo','DepthMapInfoBaseHighlightGuideTable'] }, + 'depthmapinfobasehighlightguideversion' => { 511 => [\'DepthMapInfo','DepthMapInfoBaseHighlightGuideVersion'], 513 => [\'DepthMapInfo','DepthMapInfoBaseHighlightGuideVersion'] }, + 'depthmapinfobaselayereddepthinputdigest' => { 511 => [\'DepthMapInfo','DepthMapInfoBaseLayeredDepthInputDigest'], 513 => [\'DepthMapInfo','DepthMapInfoBaseLayeredDepthInputDigest'] }, + 'depthmapinfobaselayereddepthtable' => { 511 => [\'DepthMapInfo','DepthMapInfoBaseLayeredDepthTable'], 513 => [\'DepthMapInfo','DepthMapInfoBaseLayeredDepthTable'] }, + 'depthmapinfobaselayereddepthversion' => { 511 => [\'DepthMapInfo','DepthMapInfoBaseLayeredDepthVersion'], 513 => [\'DepthMapInfo','DepthMapInfoBaseLayeredDepthVersion'] }, + 'depthmapinfobaserawdepthinputdigest' => { 511 => [\'DepthMapInfo','DepthMapInfoBaseRawDepthInputDigest'], 513 => [\'DepthMapInfo','DepthMapInfoBaseRawDepthInputDigest'] }, + 'depthmapinfobaserawdepthtable' => { 511 => [\'DepthMapInfo','DepthMapInfoBaseRawDepthTable'], 513 => [\'DepthMapInfo','DepthMapInfoBaseRawDepthTable'] }, + 'depthmapinfobaserawdepthversion' => { 511 => [\'DepthMapInfo','DepthMapInfoBaseRawDepthVersion'], 513 => [\'DepthMapInfo','DepthMapInfoBaseRawDepthVersion'] }, + 'depthmapinfodepthsource' => { 511 => [\'DepthMapInfo','DepthMapInfoDepthSource'], 513 => [\'DepthMapInfo','DepthMapInfoDepthSource'] }, 'depthmeasuretype' => { 122 => 0xc7ed }, 'depthnear' => { 122 => 0xc7ea }, 'depthunits' => { 122 => 0xc7ec }, - 'derivedfrom' => { 540 => 'DerivedFrom' }, - 'derivedfromalternatepaths' => { 540 => [\'DerivedFrom','DerivedFromAlternatePaths'] }, - 'derivedfromdocumentid' => { 540 => [\'DerivedFrom','DerivedFromDocumentID'] }, - 'derivedfromfilepath' => { 540 => [\'DerivedFrom','DerivedFromFilePath'] }, - 'derivedfromfrompart' => { 540 => [\'DerivedFrom','DerivedFromFromPart'] }, - 'derivedfrominstanceid' => { 540 => [\'DerivedFrom','DerivedFromInstanceID'] }, - 'derivedfromlastmodifydate' => { 540 => [\'DerivedFrom','DerivedFromLastModifyDate'] }, - 'derivedfromlasturl' => { 540 => [\'DerivedFrom','DerivedFromLastURL'] }, - 'derivedfromlinkcategory' => { 540 => [\'DerivedFrom','DerivedFromLinkCategory'] }, - 'derivedfromlinkform' => { 540 => [\'DerivedFrom','DerivedFromLinkForm'] }, - 'derivedfrommanager' => { 540 => [\'DerivedFrom','DerivedFromManager'] }, - 'derivedfrommanagervariant' => { 540 => [\'DerivedFrom','DerivedFromManagerVariant'] }, - 'derivedfrommanageto' => { 540 => [\'DerivedFrom','DerivedFromManageTo'] }, - 'derivedfrommanageui' => { 540 => [\'DerivedFrom','DerivedFromManageUI'] }, - 'derivedfrommaskmarkers' => { 540 => [\'DerivedFrom','DerivedFromMaskMarkers'] }, - 'derivedfromoriginaldocumentid' => { 540 => [\'DerivedFrom','DerivedFromOriginalDocumentID'] }, - 'derivedfrompartmapping' => { 540 => [\'DerivedFrom','DerivedFromPartMapping'] }, - 'derivedfromplacedresolutionunit' => { 540 => [\'DerivedFrom','DerivedFromPlacedResolutionUnit'] }, - 'derivedfromplacedxresolution' => { 540 => [\'DerivedFrom','DerivedFromPlacedXResolution'] }, - 'derivedfromplacedyresolution' => { 540 => [\'DerivedFrom','DerivedFromPlacedYResolution'] }, - 'derivedfromrenditionclass' => { 540 => [\'DerivedFrom','DerivedFromRenditionClass'] }, - 'derivedfromrenditionparams' => { 540 => [\'DerivedFrom','DerivedFromRenditionParams'] }, - 'derivedfromtopart' => { 540 => [\'DerivedFrom','DerivedFromToPart'] }, - 'derivedfromversionid' => { 540 => [\'DerivedFrom','DerivedFromVersionID'] }, - 'description' => { 336 => 'Description', 399 => ['desc','dscp',"\xa9des"], 401 => 'description', 407 => 'dscp', 510 => 'Description', 512 => 'Description', 513 => 'description', 537 => 'Description' }, + 'derivedfrom' => { 541 => 'DerivedFrom' }, + 'derivedfromalternatepaths' => { 541 => [\'DerivedFrom','DerivedFromAlternatePaths'] }, + 'derivedfromdocumentid' => { 541 => [\'DerivedFrom','DerivedFromDocumentID'] }, + 'derivedfromfilepath' => { 541 => [\'DerivedFrom','DerivedFromFilePath'] }, + 'derivedfromfrompart' => { 541 => [\'DerivedFrom','DerivedFromFromPart'] }, + 'derivedfrominstanceid' => { 541 => [\'DerivedFrom','DerivedFromInstanceID'] }, + 'derivedfromlastmodifydate' => { 541 => [\'DerivedFrom','DerivedFromLastModifyDate'] }, + 'derivedfromlasturl' => { 541 => [\'DerivedFrom','DerivedFromLastURL'] }, + 'derivedfromlinkcategory' => { 541 => [\'DerivedFrom','DerivedFromLinkCategory'] }, + 'derivedfromlinkform' => { 541 => [\'DerivedFrom','DerivedFromLinkForm'] }, + 'derivedfrommanager' => { 541 => [\'DerivedFrom','DerivedFromManager'] }, + 'derivedfrommanagervariant' => { 541 => [\'DerivedFrom','DerivedFromManagerVariant'] }, + 'derivedfrommanageto' => { 541 => [\'DerivedFrom','DerivedFromManageTo'] }, + 'derivedfrommanageui' => { 541 => [\'DerivedFrom','DerivedFromManageUI'] }, + 'derivedfrommaskmarkers' => { 541 => [\'DerivedFrom','DerivedFromMaskMarkers'] }, + 'derivedfromoriginaldocumentid' => { 541 => [\'DerivedFrom','DerivedFromOriginalDocumentID'] }, + 'derivedfrompartmapping' => { 541 => [\'DerivedFrom','DerivedFromPartMapping'] }, + 'derivedfromplacedresolutionunit' => { 541 => [\'DerivedFrom','DerivedFromPlacedResolutionUnit'] }, + 'derivedfromplacedxresolution' => { 541 => [\'DerivedFrom','DerivedFromPlacedXResolution'] }, + 'derivedfromplacedyresolution' => { 541 => [\'DerivedFrom','DerivedFromPlacedYResolution'] }, + 'derivedfromrenditionclass' => { 541 => [\'DerivedFrom','DerivedFromRenditionClass'] }, + 'derivedfromrenditionparams' => { 541 => [\'DerivedFrom','DerivedFromRenditionParams'] }, + 'derivedfromtopart' => { 541 => [\'DerivedFrom','DerivedFromToPart'] }, + 'derivedfromversionid' => { 541 => [\'DerivedFrom','DerivedFromVersionID'] }, + 'description' => { 182 => 'Description', 337 => 'Description', 400 => ['desc','dscp',"\xa9des"], 402 => 'description', 408 => 'dscp', 511 => 'Description', 513 => 'Description', 514 => 'description', 538 => 'Description' }, 'destination' => { 135 => 0x5 }, - 'destinationcity' => { 382 => 0x24, 388 => 0x3 }, - 'destinationcitycode' => { 389 => 0x1001 }, - 'destinationdst' => { 382 => 0x26, 388 => '0.3' }, + 'destinationcity' => { 383 => 0x24, 389 => 0x3 }, + 'destinationcitycode' => { 390 => 0x1001 }, + 'destinationdst' => { 383 => 0x26, 389 => '0.3' }, 'developmentdynamicrange' => { 130 => 0x1403 }, 'deviantmatrixcustom' => { 141 => 0x7de }, 'deviantmatrixdaylight' => { 141 => 0x7da }, @@ -2460,129 +2465,129 @@ my %tagLookup = ( 'deviantwhiteflash' => { 141 => 0x841 }, 'deviantwhitefluorescent' => { 141 => 0x840 }, 'deviantwhitetungsten' => { 141 => 0x83f }, - 'device' => { 529 => 'device' }, - 'devicesettingdescription' => { 516 => 'DeviceSettingDescription' }, - 'devicesettingdescriptioncolumns' => { 516 => [\'DeviceSettingDescription','DeviceSettingDescriptionColumns'] }, - 'devicesettingdescriptionrows' => { 516 => [\'DeviceSettingDescription','DeviceSettingDescriptionRows'] }, - 'devicesettingdescriptionsettings' => { 516 => [\'DeviceSettingDescription','DeviceSettingDescriptionSettings'] }, - 'devicetype' => { 421 => 0x2 }, + 'device' => { 530 => 'device' }, + 'devicesettingdescription' => { 517 => 'DeviceSettingDescription' }, + 'devicesettingdescriptioncolumns' => { 517 => [\'DeviceSettingDescription','DeviceSettingDescriptionColumns'] }, + 'devicesettingdescriptionrows' => { 517 => [\'DeviceSettingDescription','DeviceSettingDescriptionRows'] }, + 'devicesettingdescriptionsettings' => { 517 => [\'DeviceSettingDescription','DeviceSettingDescriptionSettings'] }, + 'devicetype' => { 422 => 0x2 }, 'dewarpdata' => { 119 => 'DewarpData' }, 'dewarpflag' => { 119 => 'DewarpFlag' }, 'dialdirectiontvav' => { 87 => 0x706 }, - 'dietaryneeds' => { 531 => 'dietaryNeeds' }, - 'diffractioncompensation' => { 228 => 0x20e, 243 => 0x142, 244 => 0x1b2, 245 => 0x1a2, 246 => 0x1b6, 247 => 0x1b6 }, - 'diffractioncorrection' => { 347 => 0xbc, 372 => 0x3 }, + 'dietaryneeds' => { 532 => 'dietaryNeeds' }, + 'diffractioncompensation' => { 228 => 0x20e, 243 => 0x142, 244 => 0x1b2, 245 => 0x1b2, 246 => 0x1a2, 247 => 0x1b6, 248 => 0x1b6 }, + 'diffractioncorrection' => { 348 => 0xbc, 373 => 0x3 }, 'diffractioncorrectionon' => { 106 => 0x2070b }, 'digitalcreationdate' => { 134 => 0x3e }, 'digitalcreationtime' => { 134 => 0x3f }, - 'digitaldeehighlightadj' => { 262 => 0x202 }, - 'digitaldeeshadowadj' => { 262 => 0x200 }, - 'digitaldeethreshold' => { 262 => 0x201 }, - 'digitalfilter' => { 424 => 0x59 }, - 'digitalfilter01' => { 369 => 0x5 }, - 'digitalfilter02' => { 369 => 0x16 }, - 'digitalfilter03' => { 369 => 0x27 }, - 'digitalfilter04' => { 369 => 0x38 }, - 'digitalfilter05' => { 369 => 0x49 }, - 'digitalfilter06' => { 369 => 0x5a }, - 'digitalfilter07' => { 369 => 0x6b }, - 'digitalfilter08' => { 369 => 0x7c }, - 'digitalfilter09' => { 369 => 0x8d }, - 'digitalfilter10' => { 369 => 0x9e }, - 'digitalfilter11' => { 369 => 0xaf }, - 'digitalfilter12' => { 369 => 0xc0 }, - 'digitalfilter13' => { 369 => 0xd1 }, - 'digitalfilter14' => { 369 => 0xe2 }, - 'digitalfilter15' => { 369 => 0xf3 }, - 'digitalfilter16' => { 369 => 0x104 }, - 'digitalfilter17' => { 369 => 0x115 }, - 'digitalfilter18' => { 369 => 0x126 }, - 'digitalfilter19' => { 369 => 0x137 }, - 'digitalfilter20' => { 369 => 0x148 }, + 'digitaldeehighlightadj' => { 263 => 0x202 }, + 'digitaldeeshadowadj' => { 263 => 0x200 }, + 'digitaldeethreshold' => { 263 => 0x201 }, + 'digitalfilter' => { 425 => 0x59 }, + 'digitalfilter01' => { 370 => 0x5 }, + 'digitalfilter02' => { 370 => 0x16 }, + 'digitalfilter03' => { 370 => 0x27 }, + 'digitalfilter04' => { 370 => 0x38 }, + 'digitalfilter05' => { 370 => 0x49 }, + 'digitalfilter06' => { 370 => 0x5a }, + 'digitalfilter07' => { 370 => 0x6b }, + 'digitalfilter08' => { 370 => 0x7c }, + 'digitalfilter09' => { 370 => 0x8d }, + 'digitalfilter10' => { 370 => 0x9e }, + 'digitalfilter11' => { 370 => 0xaf }, + 'digitalfilter12' => { 370 => 0xc0 }, + 'digitalfilter13' => { 370 => 0xd1 }, + 'digitalfilter14' => { 370 => 0xe2 }, + 'digitalfilter15' => { 370 => 0xf3 }, + 'digitalfilter16' => { 370 => 0x104 }, + 'digitalfilter17' => { 370 => 0x115 }, + 'digitalfilter18' => { 370 => 0x126 }, + 'digitalfilter19' => { 370 => 0x137 }, + 'digitalfilter20' => { 370 => 0x148 }, 'digitalgain' => { 76 => 0xb }, 'digitalgem' => { 223 => 0x0 }, - 'digitalice' => { 262 => 0x100 }, - 'digitalimageguid' => { 524 => 'DigImageGUID' }, + 'digitalice' => { 263 => 0x100 }, + 'digitalimageguid' => { 525 => 'DigImageGUID' }, 'digitallensoptimizer' => { 64 => 0xa }, 'digitallensoptimizersetting' => { 82 => 0x9 }, - 'digitalroc' => { 259 => 0x0 }, - 'digitalsourcefiletype' => { 524 => 'DigitalSourcefileType' }, - 'digitalsourcetype' => { 524 => 'DigitalSourceType' }, - 'digitalzoom' => { 36 => 0xc, 115 => 0xa, 130 => 0x1044, 143 => 0x68, 154 => 0x22, 155 => 0x1e, 159 => 'DigitalZoom', 184 => 0xc, 239 => 0x86, 285 => 0xa, 328 => 0x204, 382 => 0x1e, 389 => 0xa, 423 => 0x204, 471 => 0x12, 472 => 0x12 }, - 'digitalzoomon' => { 423 => 0x21b }, - 'digitalzoomratio' => { 122 => 0xa404, 459 => 0x200, 461 => 0x21c, 516 => 'DigitalZoomRatio' }, - 'director' => { 182 => 'WM/Director', 399 => "\xa9dir", 401 => 'director', 407 => "\xa9dir", 539 => 'director' }, - 'directorphotography' => { 539 => 'directorPhotography' }, + 'digitalroc' => { 260 => 0x0 }, + 'digitalsourcefiletype' => { 525 => 'DigitalSourcefileType' }, + 'digitalsourcetype' => { 525 => 'DigitalSourceType' }, + 'digitalzoom' => { 36 => 0xc, 115 => 0xa, 130 => 0x1044, 143 => 0x68, 154 => 0x22, 155 => 0x1e, 159 => 'DigitalZoom', 184 => 0xc, 239 => 0x86, 286 => 0xa, 329 => 0x204, 383 => 0x1e, 390 => 0xa, 424 => 0x204, 472 => 0x12, 473 => 0x12 }, + 'digitalzoomon' => { 424 => 0x21b }, + 'digitalzoomratio' => { 122 => 0xa404, 460 => 0x200, 462 => 0x21c, 517 => 'DigitalZoomRatio' }, + 'director' => { 182 => 'WM/Director', 400 => "\xa9dir", 402 => 'director', 408 => "\xa9dir", 540 => 'director' }, + 'directorphotography' => { 540 => 'directorPhotography' }, 'directory' => { 123 => '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, 30 => 0xb21 }, 'directoryindex2' => { 21 => 0x29c }, - 'directorynumber' => { 216 => 0x3, 410 => 0x12 }, - 'disableautocreation' => { 493 => 'DisableAutoCreation' }, - 'disclaimer' => { 336 => 'Disclaimer' }, - 'discnumber' => { 539 => 'discNumber' }, - 'dishtype' => { 531 => 'dishType' }, - 'disknumber' => { 399 => 'disk' }, - 'dispbutton' => { 247 => 0x7d4, 319 => 0x2ab }, + 'directorynumber' => { 216 => 0x3, 411 => 0x12 }, + 'disableautocreation' => { 494 => 'DisableAutoCreation' }, + 'disclaimer' => { 337 => 'Disclaimer' }, + 'discnumber' => { 540 => 'discNumber' }, + 'dishtype' => { 532 => 'dishType' }, + 'disknumber' => { 400 => 'disk' }, + 'dispbutton' => { 248 => 0x7d4, 320 => 0x2ab }, 'displayallafpoints' => { 87 => 0x514 }, 'displayaperture' => { 36 => 0x23 }, - 'displayedunitsx' => { 397 => 0x2 }, - 'displayedunitsy' => { 397 => 0x6 }, - 'displayname' => { 401 => 'displayname', 528 => 'displayName' }, + 'displayedunitsx' => { 398 => 0x2 }, + 'displayedunitsy' => { 398 => 0x6 }, + 'displayname' => { 402 => 'displayname', 529 => 'displayName' }, 'distance1' => { 143 => 0x28 }, 'distance2' => { 143 => 0x2c }, 'distance3' => { 143 => 0x30 }, 'distance4' => { 143 => 0x34 }, - 'distortion' => { 421 => 0xa050 }, - 'distortioncompensation' => { 485 => 0x8040 }, - 'distortioncontrol' => { 267 => 0x10 }, - 'distortioncorrection' => { 81 => 0x3, 106 => 0x20705, 112 => 0x67, 122 => 0x7036, 214 => 0x4, 323 => 0x50b, 351 => '7.1', 372 => 0x0, 479 => 0x601, 480 => 0x5b }, - 'distortioncorrection2' => { 327 => 0x1011 }, - 'distortioncorrectionalreadyapplied' => { 507 => 'DistortionCorrectionAlreadyApplied' }, + 'distortion' => { 422 => 0xa050 }, + 'distortioncompensation' => { 486 => 0x8040 }, + 'distortioncontrol' => { 268 => 0x10 }, + 'distortioncorrection' => { 81 => 0x3, 106 => 0x20705, 112 => 0x67, 122 => 0x7036, 214 => 0x4, 324 => 0x50b, 352 => '7.1', 373 => 0x0, 480 => 0x601, 481 => 0x5b }, + 'distortioncorrection2' => { 328 => 0x1011 }, + 'distortioncorrectionalreadyapplied' => { 508 => 'DistortionCorrectionAlreadyApplied' }, 'distortioncorrectionon' => { 106 => '0x20705.0', 112 => 0x63 }, - 'distortioncorrectionsetting' => { 82 => 0x7, 448 => 0x2013 }, + 'distortioncorrectionsetting' => { 82 => 0x7, 449 => 0x2013 }, 'distortioncorrectionvalue' => { 81 => 0x9 }, 'distortioncorrectionversion' => { 214 => 0x0 }, - 'distortioncorrparams' => { 122 => 0x7037, 458 => 0x1a23, 461 => 0x1870, 463 => 0x189c, 464 => 0x18cc, 465 => 0x17d0, 479 => 0x6ca, 480 => 0x64 }, - 'distortioncorrparamsnumber' => { 461 => 0x1899, 463 => 0x18c5, 464 => 0x18f5, 465 => 0x17f9 }, - 'distortioncorrparamspresent' => { 461 => 0x1898, 463 => 0x18c4, 464 => 0x18f4, 465 => 0x17f8, 467 => 0x10b, 468 => 0x10b, 479 => 0x600, 480 => 0x5a }, + 'distortioncorrparams' => { 122 => 0x7037, 459 => 0x1a23, 462 => 0x1870, 464 => 0x189c, 465 => 0x18cc, 466 => 0x17d0, 480 => 0x6ca, 481 => 0x64 }, + 'distortioncorrparamsnumber' => { 462 => 0x1899, 464 => 0x18c5, 465 => 0x18f5, 466 => 0x17f9 }, + 'distortioncorrparamspresent' => { 462 => 0x1898, 464 => 0x18c4, 465 => 0x18f4, 466 => 0x17f8, 468 => 0x10b, 469 => 0x10b, 480 => 0x600, 481 => 0x5a }, 'distortioneffect' => { 106 => 0x20709 }, - 'distortionn' => { 351 => 0xc }, - 'distortionparam02' => { 351 => 0x2 }, - 'distortionparam04' => { 351 => 0x4 }, - 'distortionparam08' => { 351 => 0x8 }, - 'distortionparam09' => { 351 => 0x9 }, - 'distortionparam11' => { 351 => 0xb }, - 'distortionscale' => { 351 => 0x5 }, - 'distributor' => { 529 => 'distributor' }, - 'distributorproductid' => { 528 => 'distributorProductID' }, + 'distortionn' => { 352 => 0xc }, + 'distortionparam02' => { 352 => 0x2 }, + 'distortionparam04' => { 352 => 0x4 }, + 'distortionparam08' => { 352 => 0x8 }, + 'distortionparam09' => { 352 => 0x9 }, + 'distortionparam11' => { 352 => 0xb }, + 'distortionscale' => { 352 => 0x5 }, + 'distributor' => { 530 => 'distributor' }, + 'distributorproductid' => { 529 => 'distributorProductID' }, 'dloon' => { 106 => '0x20706.0', 112 => 0xdc }, 'dlosetting' => { 106 => 0x20706, 112 => 0xdd }, 'dlosettingapplied' => { 105 => 0x4 }, 'dloshootingdistance' => { 112 => 0xde }, 'dloversion' => { 105 => 0x5 }, - 'dmcomment' => { 539 => 'comment' }, + 'dmcomment' => { 540 => 'comment' }, 'dmdithermatrix' => { 141 => 0xc7a }, 'dmdithermatrixheight' => { 141 => 0xc7c }, 'dmdithermatrixwidth' => { 141 => 0xc7b }, 'dngadobedata' => { 122 => 0xc634 }, 'dngbackwardversion' => { 122 => 0xc613 }, - 'dngignoresidecars' => { 510 => 'DNGIgnoreSidecars', 512 => 'DNGIgnoreSidecars' }, + 'dngignoresidecars' => { 511 => 'DNGIgnoreSidecars', 513 => 'DNGIgnoreSidecars' }, 'dnglensinfo' => { 122 => 0xc630 }, 'dngprivatedata' => { 122 => 0xc634 }, 'dngversion' => { 122 => 0xc612 }, - 'document' => { 336 => 'Document' }, - 'documentancestors' => { 527 => 'DocumentAncestors' }, + 'document' => { 337 => 'Document' }, + 'documentancestors' => { 528 => 'DocumentAncestors' }, 'documenthistory' => { 134 => 0xe7 }, - 'documentid' => { 540 => 'DocumentID' }, + 'documentid' => { 541 => 'DocumentID' }, 'documentname' => { 122 => 0x10d }, 'documentnotes' => { 134 => 0xe6 }, - 'doi' => { 529 => 'doi' }, - 'dopesheet' => { 524 => 'Dopesheet' }, - 'dopesheetlink' => { 524 => 'DopesheetLink' }, - 'dopesheetlinklink' => { 524 => [\'DopesheetLink','DopesheetLinkLink'] }, - 'dopesheetlinklinkqualifier' => { 524 => [\'DopesheetLink','DopesheetLinkLinkQualifier'] }, + 'doi' => { 530 => 'doi' }, + 'dopesheet' => { 525 => 'Dopesheet' }, + 'dopesheetlink' => { 525 => 'DopesheetLink' }, + 'dopesheetlinklink' => { 525 => [\'DopesheetLink','DopesheetLinkLink'] }, + 'dopesheetlinklinkqualifier' => { 525 => [\'DopesheetLink','DopesheetLinkLinkQualifier'] }, 'doublingmicrovolts' => { 141 => 0xc82 }, - 'dpp' => { 505 => 'dpp' }, + 'dpp' => { 506 => 'dpp' }, 'dprawbokehshift' => { 106 => 0x20b20 }, 'dprawbokehshiftarea' => { 106 => 0x20b21 }, 'dprawghostingreductionarea' => { 106 => 0x20b30 }, @@ -2592,341 +2597,341 @@ my %tagLookup = ( 'drangepriority' => { 130 => 0x1443 }, 'drangepriorityauto' => { 130 => 0x1444 }, 'drangepriorityfixed' => { 130 => 0x1445 }, - 'drivemode' => { 116 => 0x3103, 128 => '0.1', 184 => 0x6, 187 => 0x1e, 190 => 0xe, 194 => 0x64d0, 323 => 0x600, 382 => 0x34, 414 => 0x1002, 424 => 0x3, 434 => 0x4, 435 => 0x7e, 436 => 0x34 }, - 'drivemode2' => { 187 => 0xa, 363 => 0x7, 445 => 0xe, 453 => 0x1 }, - 'drivemodesetting' => { 436 => 0x4 }, + 'drivemode' => { 116 => 0x3103, 128 => '0.1', 184 => 0x6, 187 => 0x1e, 190 => 0xe, 194 => 0x64d0, 324 => 0x600, 383 => 0x34, 415 => 0x1002, 425 => 0x3, 435 => 0x4, 436 => 0x7e, 437 => 0x34 }, + 'drivemode2' => { 187 => 0xa, 364 => 0x7, 446 => 0xe, 454 => 0x1 }, + 'drivemodesetting' => { 437 => 0x4 }, 'drivespeed' => { 128 => '0.2' }, - 'dspfirmwareversion' => { 382 => 0x27 }, + 'dspfirmwareversion' => { 383 => 0x27 }, 'dualpixelraw' => { 64 => 0xb }, - 'duration' => { 69 => 0x6a, 158 => 'Duration', 172 => 'Duration', 531 => 'duration', 539 => 'duration' }, - 'durationscale' => { 539 => [\'duration','durationScale'] }, - 'durationvalue' => { 539 => [\'duration','durationValue'] }, + 'duration' => { 69 => 0x6a, 158 => 'Duration', 172 => 'Duration', 532 => 'duration', 540 => 'duration' }, + 'durationscale' => { 540 => [\'duration','durationScale'] }, + 'durationvalue' => { 540 => [\'duration','durationValue'] }, 'dustremovaldata' => { 66 => 0x97 }, - 'dxcropalert' => { 244 => 0x250, 245 => 0x23c, 246 => 0x250, 247 => 0x250 }, - 'dynamicafarea' => { 303 => '1.4', 312 => '1.4' }, - 'dynamicafareasize' => { 244 => 0x254, 245 => 0x240, 246 => 0x254, 247 => 0x254 }, - 'dynamicareaafassist' => { 319 => 0x18, 320 => 0x18, 321 => 0x18 }, - 'dynamicareaafdisplay' => { 304 => '46.1', 306 => '47.1', 307 => '47.1', 316 => '47.1', 317 => '47.1' }, + 'dxcropalert' => { 244 => 0x250, 245 => 0x250, 246 => 0x23c, 247 => 0x250, 248 => 0x250 }, + 'dynamicafarea' => { 304 => '1.4', 313 => '1.4' }, + 'dynamicafareasize' => { 244 => 0x254, 245 => 0x254, 246 => 0x240, 247 => 0x254, 248 => 0x254 }, + 'dynamicareaafassist' => { 320 => 0x18, 321 => 0x18, 322 => 0x18 }, + 'dynamicareaafdisplay' => { 305 => '46.1', 307 => '47.1', 308 => '47.1', 317 => '47.1', 318 => '47.1' }, 'dynamicrange' => { 130 => 0x1400 }, - 'dynamicrangeboost' => { 347 => 0xee }, - 'dynamicrangeexpansion' => { 382 => 0x69, 414 => 0x100e }, + 'dynamicrangeboost' => { 348 => 0xee }, + 'dynamicrangeexpansion' => { 383 => 0x69, 415 => 0x100e }, 'dynamicrangemax' => { 111 => 0x7c }, 'dynamicrangemin' => { 111 => 0x7a }, - 'dynamicrangeoptimizer' => { 187 => 0x15, 448 => [0xb025,0xb04f], 457 => 0x1144, 458 => [0x1144,0x324], 459 => [0x1120,0x300], 460 => [0x119c,0x37c], 461 => [0x1178,0x328], 462 => [0x1030,0x50], 463 => [0x228,0x50], 464 => [0x228,0x50], 465 => [0x21b,0x4e] }, - 'dynamicrangeoptimizerbracket' => { 445 => 0x2e }, - 'dynamicrangeoptimizerlevel' => { 434 => 0x19, 435 => 0x17, 436 => 0xd, 445 => 0x79, 453 => 0x5 }, - 'dynamicrangeoptimizermode' => { 190 => 0x15, 434 => 0x18, 435 => 0x16, 445 => [0x77,0x15] }, - 'dynamicrangeoptimizersetting' => { 187 => 0x27, 436 => 0xc, 453 => 0x4 }, + 'dynamicrangeoptimizer' => { 187 => 0x15, 449 => [0xb025,0xb04f], 458 => 0x1144, 459 => [0x1144,0x324], 460 => [0x1120,0x300], 461 => [0x119c,0x37c], 462 => [0x1178,0x328], 463 => [0x1030,0x50], 464 => [0x228,0x50], 465 => [0x228,0x50], 466 => [0x21b,0x4e] }, + 'dynamicrangeoptimizerbracket' => { 446 => 0x2e }, + 'dynamicrangeoptimizerlevel' => { 435 => 0x19, 436 => 0x17, 437 => 0xd, 446 => 0x79, 454 => 0x5 }, + 'dynamicrangeoptimizermode' => { 190 => 0x15, 435 => 0x18, 436 => 0x16, 446 => [0x77,0x15] }, + 'dynamicrangeoptimizersetting' => { 187 => 0x27, 437 => 0xc, 454 => 0x4 }, 'dynamicrangesetting' => { 130 => 0x1402 }, - 'e-dialinprogram' => { 363 => '1.3' }, + 'e-dialinprogram' => { 364 => '1.3' }, 'earliestageorloweststage' => { 121 => [\'GeologicalContext','GeologicalContextEarliestAgeOrLowestStage'] }, 'earliesteonorlowesteonothem' => { 121 => [\'GeologicalContext','GeologicalContextEarliestEonOrLowestEonothem'] }, 'earliestepochorlowestseries' => { 121 => [\'GeologicalContext','GeologicalContextEarliestEpochOrLowestSeries'] }, 'earliesteraorlowesterathem' => { 121 => [\'GeologicalContext','GeologicalContextEarliestEraOrLowestErathem'] }, 'earliestperiodorlowestsystem' => { 121 => [\'GeologicalContext','GeologicalContextEarliestPeriodOrLowestSystem'] }, - 'earthpos' => { 489 => 'EarthPos' }, - 'earthposaltitude' => { 489 => [\'EarthPos','EarthPosAltitude'] }, - 'earthposlatitude' => { 489 => [\'EarthPos','EarthPosLatitude'] }, - 'earthposlongitude' => { 489 => [\'EarthPos','EarthPosLongitude'] }, - 'earthposrotationw' => { 489 => [\'EarthPos','EarthPosRotationW'] }, - 'earthposrotationx' => { 489 => [\'EarthPos','EarthPosRotationX'] }, - 'earthposrotationy' => { 489 => [\'EarthPos','EarthPosRotationY'] }, - 'earthposrotationz' => { 489 => [\'EarthPos','EarthPosRotationZ'] }, - 'earthpostimestamp' => { 489 => [\'EarthPos','EarthPosTimestamp'] }, - 'easyexposurecomp' => { 318 => '6.1' }, - 'easyexposurecompensation' => { 303 => '6.4', 304 => '6.5', 306 => '6.3', 307 => '6.3', 311 => '5.1', 312 => '4.4', 313 => '5.2', 316 => '6.3', 317 => '6.3', 319 => 0x1d, 320 => 0x1d, 321 => 0x1d }, + 'earthpos' => { 490 => 'EarthPos' }, + 'earthposaltitude' => { 490 => [\'EarthPos','EarthPosAltitude'] }, + 'earthposlatitude' => { 490 => [\'EarthPos','EarthPosLatitude'] }, + 'earthposlongitude' => { 490 => [\'EarthPos','EarthPosLongitude'] }, + 'earthposrotationw' => { 490 => [\'EarthPos','EarthPosRotationW'] }, + 'earthposrotationx' => { 490 => [\'EarthPos','EarthPosRotationX'] }, + 'earthposrotationy' => { 490 => [\'EarthPos','EarthPosRotationY'] }, + 'earthposrotationz' => { 490 => [\'EarthPos','EarthPosRotationZ'] }, + 'earthpostimestamp' => { 490 => [\'EarthPos','EarthPosTimestamp'] }, + 'easyexposurecomp' => { 319 => '6.1' }, + 'easyexposurecompensation' => { 304 => '6.4', 305 => '6.5', 307 => '6.3', 308 => '6.3', 312 => '5.1', 313 => '4.4', 314 => '5.2', 317 => '6.3', 318 => '6.3', 320 => 0x1d, 321 => 0x1d, 322 => 0x1d }, 'easymode' => { 36 => 0xb }, 'edgemapslope' => { 141 => 0x930 }, 'edgemapx1' => { 141 => 0x931 }, 'edgemapx2' => { 141 => 0x932 }, 'edgemapx3' => { 141 => 0x934 }, 'edgemapx4' => { 141 => 0x935 }, - 'edgenoisereduction' => { 297 => 0x4, 485 => 0x8028 }, - 'edit1' => { 407 => "\xa9ed1" }, - 'edit2' => { 407 => "\xa9ed2" }, - 'edit3' => { 407 => "\xa9ed3" }, - 'edit4' => { 407 => "\xa9ed4" }, - 'edit5' => { 407 => "\xa9ed5" }, - 'edit6' => { 407 => "\xa9ed6" }, - 'edit7' => { 407 => "\xa9ed7" }, - 'edit8' => { 407 => "\xa9ed8" }, - 'edit9' => { 407 => "\xa9ed9" }, - 'edition' => { 529 => 'edition' }, + 'edgenoisereduction' => { 298 => 0x4, 486 => 0x8028 }, + 'edit1' => { 408 => "\xa9ed1" }, + 'edit2' => { 408 => "\xa9ed2" }, + 'edit3' => { 408 => "\xa9ed3" }, + 'edit4' => { 408 => "\xa9ed4" }, + 'edit5' => { 408 => "\xa9ed5" }, + 'edit6' => { 408 => "\xa9ed6" }, + 'edit7' => { 408 => "\xa9ed7" }, + 'edit8' => { 408 => "\xa9ed8" }, + 'edit9' => { 408 => "\xa9ed9" }, + 'edition' => { 530 => 'edition' }, 'editorialupdate' => { 134 => 0x8 }, - 'editstatus' => { 134 => 0x7, 394 => 'EditStatus', 505 => 'EditStatus' }, - 'editversionname' => { 296 => 0x3d136244 }, - 'effectivelv' => { 382 => 0x2d }, + 'editstatus' => { 134 => 0x7, 395 => 'EditStatus', 506 => 'EditStatus' }, + 'editversionname' => { 297 => 0x3d136244 }, + 'effectivelv' => { 383 => 0x2d }, 'effectivemaxaperture' => { 232 => 0x12, 233 => 0x13, 237 => 0x14 }, - 'eissn' => { 529 => 'eIssn' }, + 'eissn' => { 530 => 'eIssn' }, 'electricalblackcolumns' => { 141 => 0x1810 }, - 'electronicfront-curtainshutter' => { 306 => '5.2', 307 => '5.2', 316 => '5.3', 317 => '5.2' }, - 'electronicfrontcurtainshutter' => { 448 => 0x201a }, + 'electronicfront-curtainshutter' => { 307 => '5.2', 308 => '5.2', 317 => '5.3', 318 => '5.2' }, + 'electronicfrontcurtainshutter' => { 449 => 0x201a }, 'elevation' => { 168 => 'Elevation' }, 'email' => { 160 => 'EMail' }, - 'embargodate' => { 532 => 'embargoDate' }, - 'embdencrightsexpr' => { 524 => 'EmbdEncRightsExpr' }, - 'embeddedencodedrightsexpr' => { 524 => [\'EmbdEncRightsExpr','EmbdEncRightsExprEncRightsExpr'] }, - 'embeddedencodedrightsexprlangid' => { 524 => [\'EmbdEncRightsExpr','EmbdEncRightsExprRightsExprLangId'] }, - 'embeddedencodedrightsexprtype' => { 524 => [\'EmbdEncRightsExpr','EmbdEncRightsExprRightsExprEncType'] }, - 'embeddedxmpdigest' => { 527 => 'EmbeddedXMPDigest' }, + 'embargodate' => { 533 => 'embargoDate' }, + 'embdencrightsexpr' => { 525 => 'EmbdEncRightsExpr' }, + 'embeddedencodedrightsexpr' => { 525 => [\'EmbdEncRightsExpr','EmbdEncRightsExprEncRightsExpr'] }, + 'embeddedencodedrightsexprlangid' => { 525 => [\'EmbdEncRightsExpr','EmbdEncRightsExprRightsExprLangId'] }, + 'embeddedencodedrightsexprtype' => { 525 => [\'EmbdEncRightsExpr','EmbdEncRightsExprRightsExprEncType'] }, + 'embeddedxmpdigest' => { 528 => 'EmbeddedXMPDigest' }, 'emissivity' => { 124 => 0x3 }, - 'emptyslotrelease' => { 244 => 0x723, 245 => 0x625, 246 => 0x655, 247 => 0x6bd }, + 'emptyslotrelease' => { 244 => 0x723, 245 => 0x733, 246 => 0x625, 247 => 0x655, 248 => 0x6bd }, 'enablechromanoisereduction' => { 141 => 0xe6e }, 'enablesharpening' => { 141 => 0x92e }, - 'encodedby' => { 182 => 'WM/EncodedBy', 399 => "\xa9enc" }, - 'encodedwith' => { 401 => 'Encoded_With' }, - 'encoder' => { 399 => "\xa9too", 401 => 'encoder', 407 => "\xa9too" }, - 'encoderid' => { 407 => "\xa9enc" }, + 'encodedby' => { 182 => 'WM/EncodedBy', 400 => "\xa9enc" }, + 'encodedwith' => { 402 => 'Encoded_With' }, + 'encoder' => { 400 => "\xa9too", 402 => 'encoder', 408 => "\xa9too" }, + 'encoderid' => { 408 => "\xa9enc" }, 'encodingtime' => { 182 => 'WM/EncodingTime' }, - 'encryptionkey' => { 421 => 0xa020 }, - 'endingpage' => { 529 => 'endingPage' }, - 'enduser' => { 333 => 'EndUser' }, - 'enduserid' => { 333 => [\'EndUser','EndUserEndUserID'] }, - 'endusername' => { 333 => [\'EndUser','EndUserEndUserName'] }, - 'energysavingmode' => { 244 => 0x746, 245 => 0x648, 246 => 0x678, 247 => 0x6e0 }, - 'engineer' => { 539 => 'engineer' }, - 'enhancedarktones' => { 289 => 0x8 }, - 'enhancedenoisealreadyapplied' => { 507 => 'EnhanceDenoiseAlreadyApplied' }, - 'enhancedenoiselumaamount' => { 507 => 'EnhanceDenoiseLumaAmount' }, - 'enhancedenoiseversion' => { 507 => 'EnhanceDenoiseVersion' }, - 'enhancedetailsalreadyapplied' => { 507 => 'EnhanceDetailsAlreadyApplied' }, - 'enhancedetailsversion' => { 507 => 'EnhanceDetailsVersion' }, + 'encryptionkey' => { 422 => 0xa020 }, + 'endingpage' => { 530 => 'endingPage' }, + 'enduser' => { 334 => 'EndUser' }, + 'enduserid' => { 334 => [\'EndUser','EndUserEndUserID'] }, + 'endusername' => { 334 => [\'EndUser','EndUserEndUserName'] }, + 'energysavingmode' => { 244 => 0x746, 245 => 0x756, 246 => 0x648, 247 => 0x678, 248 => 0x6e0 }, + 'engineer' => { 540 => 'engineer' }, + 'enhancedarktones' => { 290 => 0x8 }, + 'enhancedenoisealreadyapplied' => { 508 => 'EnhanceDenoiseAlreadyApplied' }, + 'enhancedenoiselumaamount' => { 508 => 'EnhanceDenoiseLumaAmount' }, + 'enhancedenoiseversion' => { 508 => 'EnhanceDenoiseVersion' }, + 'enhancedetailsalreadyapplied' => { 508 => 'EnhanceDetailsAlreadyApplied' }, + 'enhancedetailsversion' => { 508 => 'EnhanceDetailsVersion' }, 'enhancement' => { 115 => 0x16, 116 => 0x3016 }, 'enhanceparams' => { 122 => 0xc7ee }, - 'enhancer' => { 327 => 0x300 }, - 'enhancervalues' => { 327 => 0x301 }, - 'enhancesuperresolutionalreadyapplied' => { 507 => 'EnhanceSuperResolutionAlreadyApplied' }, - 'enhancesuperresolutionscale' => { 507 => 'EnhanceSuperResolutionScale' }, - 'enhancesuperresolutionversion' => { 507 => 'EnhanceSuperResolutionVersion' }, + 'enhancer' => { 328 => 0x300 }, + 'enhancervalues' => { 328 => 0x301 }, + 'enhancesuperresolutionalreadyapplied' => { 508 => 'EnhanceSuperResolutionAlreadyApplied' }, + 'enhancesuperresolutionscale' => { 508 => 'EnhanceSuperResolutionScale' }, + 'enhancesuperresolutionversion' => { 508 => 'EnhanceSuperResolutionVersion' }, 'envelopenumber' => { 135 => 0x28 }, 'envelopepriority' => { 135 => 0x3c }, 'enveloperecordversion' => { 135 => 0x0 }, - 'episode' => { 524 => 'Episode' }, - 'episodeglobaluniqueid' => { 399 => 'egid' }, - 'episodeidentifier' => { 524 => [\'Episode','EpisodeIdentifier'] }, - 'episodename' => { 524 => [\'Episode','EpisodeName'] }, - 'episodenumber' => { 524 => [\'Episode','EpisodeNumber'] }, - 'epsonimageheight' => { 328 => 0x20c }, - 'epsonimagewidth' => { 328 => 0x20b }, - 'epsonsoftware' => { 328 => 0x20d }, - 'equipmentinstitution' => { 488 => 'EquipmentInstitution' }, - 'equipmentmanufacturer' => { 488 => 'EquipmentManufacturer' }, - 'equipmentversion' => { 324 => 0x0 }, + 'episode' => { 525 => 'Episode' }, + 'episodeglobaluniqueid' => { 400 => 'egid' }, + 'episodeidentifier' => { 525 => [\'Episode','EpisodeIdentifier'] }, + 'episodename' => { 525 => [\'Episode','EpisodeName'] }, + 'episodenumber' => { 525 => [\'Episode','EpisodeNumber'] }, + 'epsonimageheight' => { 329 => 0x20c }, + 'epsonimagewidth' => { 329 => 0x20b }, + 'epsonsoftware' => { 329 => 0x20d }, + 'equipmentinstitution' => { 489 => 'EquipmentInstitution' }, + 'equipmentmanufacturer' => { 489 => 'EquipmentManufacturer' }, + 'equipmentversion' => { 325 => 0x0 }, 'ettlii' => { 87 => 0x304, 88 => 0xd, 89 => 0xe, 90 => 0x7, 91 => 0x7, 92 => 0xe }, - 'event' => { 491 => 'Event', 503 => 'Event', 524 => 'Event', 529 => 'event' }, - 'eventalias' => { 528 => 'eventAlias' }, + 'event' => { 492 => 'Event', 504 => 'Event', 525 => 'Event', 530 => 'event' }, + 'eventalias' => { 529 => 'eventAlias' }, 'eventdate' => { 121 => [\'Event','EventEventDate'] }, 'eventday' => { 121 => [\'Event','EventDay'] }, 'eventearliestdate' => { 121 => [\'Event','EventEarliestDate'] }, - 'eventend' => { 528 => 'eventEnd' }, + 'eventend' => { 529 => 'eventEnd' }, 'eventenddayofyear' => { 121 => [\'Event','EventEndDayOfYear'] }, 'eventfieldnotes' => { 121 => [\'Event','EventFieldNotes'] }, 'eventfieldnumber' => { 121 => [\'Event','EventFieldNumber'] }, 'eventhabitat' => { 121 => [\'Event','EventHabitat'] }, - 'eventid' => { 121 => [\'Event','EventEventID'], 524 => 'EventId' }, + 'eventid' => { 121 => [\'Event','EventEventID'], 525 => 'EventId' }, 'eventlatestdate' => { 121 => [\'Event','EventLatestDate'] }, 'eventmonth' => { 121 => [\'Event','EventMonth'] }, - 'eventnumber' => { 408 => 0x9, 409 => 0x37, 410 => 0x3a }, + 'eventnumber' => { 409 => 0x9, 410 => 0x37, 411 => 0x3a }, 'eventparenteventid' => { 121 => [\'Event','EventParentEventID'] }, 'eventremarks' => { 121 => [\'Event','EventEventRemarks'] }, 'eventsamplesizeunit' => { 121 => [\'Event','EventSampleSizeUnit'] }, 'eventsamplesizevalue' => { 121 => [\'Event','EventSampleSizeValue'] }, 'eventsamplingeffort' => { 121 => [\'Event','EventSamplingEffort'] }, 'eventsamplingprotocol' => { 121 => [\'Event','EventSamplingProtocol'] }, - 'eventstart' => { 528 => 'eventStart' }, + 'eventstart' => { 529 => 'eventStart' }, 'eventstartdayofyear' => { 121 => [\'Event','EventStartDayOfYear'] }, - 'eventsubtype' => { 528 => 'eventSubtype' }, + 'eventsubtype' => { 529 => 'eventSubtype' }, 'eventtime' => { 121 => [\'Event','EventEventTime'] }, - 'eventtype' => { 528 => 'eventType' }, + 'eventtype' => { 529 => 'eventType' }, 'eventverbatimeventdate' => { 121 => [\'Event','EventVerbatimEventDate'] }, 'eventyear' => { 121 => [\'Event','EventYear'] }, - 'evfgrid' => { 319 => 0x165, 320 => 0x165, 321 => 0x17d }, - 'evfimageframe' => { 319 => 0x164, 320 => 0x164, 321 => 0x17c }, - 'evfreleaseindicator' => { 319 => 0x24f, 320 => 0x24f, 321 => 0x267 }, - 'evfwarmdisplaybrightness' => { 319 => 0x24d, 320 => 0x24d, 321 => 0x265 }, - 'evfwarmdisplaymode' => { 319 => 0x24b, 320 => 0x24b, 321 => 0x263 }, - 'evsteps' => { 363 => '1.2', 365 => 0x0 }, - 'evstepsize' => { 308 => '5.1', 309 => '6.1', 310 => '6.1', 314 => '0.7' }, - 'exclusivecoverage' => { 500 => 'ExclusiveCoverage' }, - 'exclusivityenddate' => { 532 => 'exclusivityEndDate' }, + 'evfgrid' => { 320 => 0x165, 321 => 0x165, 322 => 0x17d }, + 'evfimageframe' => { 320 => 0x164, 321 => 0x164, 322 => 0x17c }, + 'evfreleaseindicator' => { 320 => 0x24f, 321 => 0x24f, 322 => 0x267 }, + 'evfwarmdisplaybrightness' => { 320 => 0x24d, 321 => 0x24d, 322 => 0x265 }, + 'evfwarmdisplaymode' => { 320 => 0x24b, 321 => 0x24b, 322 => 0x263 }, + 'evsteps' => { 364 => '1.2', 366 => 0x0 }, + 'evstepsize' => { 309 => '5.1', 310 => '6.1', 311 => '6.1', 315 => '0.7' }, + 'exclusivecoverage' => { 501 => 'ExclusiveCoverage' }, + 'exclusivityenddate' => { 533 => 'exclusivityEndDate' }, 'excursiontolerance' => { 136 => 0x82 }, - 'executiveproducer' => { 399 => "\xa9xpd" }, + 'executiveproducer' => { 400 => "\xa9xpd" }, 'exif' => { 123 => 'EXIF' }, 'exifbyteorder' => { 123 => 'ExifByteOrder' }, 'exifcamerainfo' => { 134 => 0xe8 }, - 'exifimageheight' => { 122 => 0xa003, 516 => 'PixelYDimension' }, - 'exifimagewidth' => { 122 => 0xa002, 516 => 'PixelXDimension' }, + 'exifimageheight' => { 122 => 0xa003, 517 => 'PixelYDimension' }, + 'exifimagewidth' => { 122 => 0xa002, 517 => 'PixelXDimension' }, 'exifunicodebyteorder' => { 123 => 'ExifUnicodeByteOrder' }, - 'exifversion' => { 122 => 0x9000, 516 => 'ExifVersion' }, + 'exifversion' => { 122 => 0x9000, 517 => 'ExifVersion' }, 'exitpupilposition' => { 232 => 0x4, 233 => 0x4, 237 => 0x4 }, - 'expirationdate' => { 134 => 0x25, 532 => 'expirationDate' }, + 'expirationdate' => { 134 => 0x25, 533 => 'expirationDate' }, 'expirationtime' => { 134 => 0x26 }, - 'exposure' => { 122 => 0xfe51, 510 => 'Exposure', 512 => 'Exposure' }, - 'exposure2012' => { 510 => 'Exposure2012', 512 => 'Exposure2012' }, - 'exposureadj' => { 294 => 0x0 }, - 'exposureadj2' => { 294 => 0x12 }, - 'exposureadjust' => { 424 => 0xc }, + 'exposure' => { 122 => 0xfe51, 511 => 'Exposure', 513 => 'Exposure' }, + 'exposure2012' => { 511 => 'Exposure2012', 513 => 'Exposure2012' }, + 'exposureadj' => { 295 => 0x0 }, + 'exposureadj2' => { 295 => 0x12 }, + 'exposureadjust' => { 425 => 0xc }, 'exposurebracketingindicatorlast' => { 187 => 0x52 }, - 'exposurebracketshotnumber' => { 190 => 0x2d, 445 => 0x2f }, - 'exposurebracketstepsize' => { 363 => 0x8 }, + 'exposurebracketshotnumber' => { 190 => 0x2d, 446 => 0x2f }, + 'exposurebracketstepsize' => { 364 => 0x8 }, 'exposurebracketvalue' => { 239 => 0x19 }, 'exposurecompautocancel' => { 87 => 0x113 }, - 'exposurecompensation' => { 79 => 0x6, 96 => 0x0, 122 => 0x9204, 143 => 0x24, 159 => 'ExposureComp', 179 => 'ExposureCompensation', 184 => 0xd, 185 => 0x53, 186 => 0x1e, 190 => 0x49c0, 328 => 0x1006, 382 => 0x16, 391 => 0x402, 421 => 0xa013, 424 => [0xc,0x35,0x4d], 457 => 0x114c, 458 => 0x114c, 459 => 0x1128, 461 => 0x1180, 462 => 0x1038, 463 => 0x230, 464 => 0x230, 465 => 0x223, 516 => 'ExposureBiasValue' }, - 'exposurecompensation2' => { 453 => [0x24,0x26,0x2a] }, - 'exposurecompensationbutton' => { 247 => 0x794 }, + 'exposurecompensation' => { 79 => 0x6, 96 => 0x0, 122 => 0x9204, 143 => 0x24, 159 => 'ExposureComp', 179 => 'ExposureCompensation', 184 => 0xd, 185 => 0x53, 186 => 0x1e, 190 => 0x49c0, 329 => 0x1006, 383 => 0x16, 392 => 0x402, 422 => 0xa013, 425 => [0xc,0x35,0x4d], 458 => 0x114c, 459 => 0x114c, 460 => 0x1128, 462 => 0x1180, 463 => 0x1038, 464 => 0x230, 465 => 0x230, 466 => 0x223, 517 => 'ExposureBiasValue' }, + 'exposurecompensation2' => { 454 => [0x24,0x26,0x2a] }, + 'exposurecompensationbutton' => { 248 => 0x794 }, 'exposurecompensationmode' => { 187 => 0x47, 190 => 0x2a }, - 'exposurecompensationset' => { 434 => 0x3, 435 => 0x3, 436 => 0x3, 453 => 0x1e }, + 'exposurecompensationset' => { 435 => 0x3, 436 => 0x3, 437 => 0x3, 454 => 0x1e }, 'exposurecompensationsetting' => { 187 => 0x1 }, - 'exposurecompstepsize' => { 303 => '6.3', 304 => '7.3', 306 => '7.3', 307 => '7.3', 312 => '4.3', 316 => '7.3', 317 => '7.3' }, - 'exposurecontrolstep' => { 311 => '6.1', 313 => '6.1' }, - 'exposurecontrolstepsize' => { 303 => '6.2', 304 => '7.1', 306 => '7.1', 307 => '7.1', 312 => '4.2', 316 => '7.1', 317 => '7.1', 318 => '7.1', 319 => 0x1b, 320 => 0x1b, 321 => 0x1b }, + 'exposurecompstepsize' => { 304 => '6.3', 305 => '7.3', 307 => '7.3', 308 => '7.3', 313 => '4.3', 317 => '7.3', 318 => '7.3' }, + 'exposurecontrolstep' => { 312 => '6.1', 314 => '6.1' }, + 'exposurecontrolstepsize' => { 304 => '6.2', 305 => '7.1', 307 => '7.1', 308 => '7.1', 313 => '4.2', 317 => '7.1', 318 => '7.1', 319 => '7.1', 320 => 0x1b, 321 => 0x1b, 322 => 0x1b }, 'exposurecount' => { 130 => 0x1032 }, - 'exposuredelay' => { 247 => 0x800 }, - 'exposuredelaymode' => { 303 => '10.1', 304 => '11.1', 306 => '11.1', 307 => '11.1', 308 => '9.1', 309 => '10.1', 310 => '10.1', 312 => '10.4', 313 => '10.1', 314 => '6.4', 316 => '11.1', 317 => '11.1', 318 => '11.2' }, + 'exposuredelay' => { 248 => 0x800, 320 => 0x2f1 }, + 'exposuredelaymode' => { 304 => '10.1', 305 => '11.1', 307 => '11.1', 308 => '11.1', 309 => '9.1', 310 => '10.1', 311 => '10.1', 313 => '10.4', 314 => '10.1', 315 => '6.4', 317 => '11.1', 318 => '11.1', 319 => '11.2' }, 'exposuredifference' => { 239 => 0xe }, 'exposuregaincustom' => { 141 => 0x89c }, 'exposuregaindaylight' => { 141 => 0x898 }, 'exposuregainflash' => { 141 => 0x89b }, 'exposuregainfluorescent' => { 141 => 0x89a }, 'exposuregaintungsten' => { 141 => 0x899 }, - 'exposureindex' => { 122 => 0xa215, 516 => 'ExposureIndex' }, + 'exposureindex' => { 122 => 0xa215, 517 => 'ExposureIndex' }, 'exposureindicator' => { 187 => 0x50 }, - 'exposurelevelincrements' => { 85 => 0x6, 86 => 0x6, 87 => 0x101, 88 => 0x5, 89 => 0x6, 90 => 0x5, 91 => 0x5, 92 => 0x6, 93 => 0x4, 434 => 0x58, 435 => 0x58 }, - 'exposurelockused' => { 498 => 'ExposureLockUsed' }, - 'exposuremode' => { 122 => 0xa402, 159 => 'ExposureMode', 184 => 0x1, 185 => 0xa, 186 => 0x0, 187 => 0x0, 190 => 0x34, 323 => 0x200, 344 => 0x40d, 424 => 0x8, 448 => 0xb041, 516 => 'ExposureMode' }, + 'exposurelevelincrements' => { 85 => 0x6, 86 => 0x6, 87 => 0x101, 88 => 0x5, 89 => 0x6, 90 => 0x5, 91 => 0x5, 92 => 0x6, 93 => 0x4, 435 => 0x58, 436 => 0x58 }, + 'exposurelockused' => { 499 => 'ExposureLockUsed' }, + 'exposuremode' => { 122 => 0xa402, 159 => 'ExposureMode', 184 => 0x1, 185 => 0xa, 186 => 0x0, 187 => 0x0, 190 => 0x34, 324 => 0x200, 345 => 0x40d, 425 => 0x8, 449 => 0xb041, 517 => 'ExposureMode' }, 'exposuremodeinmanual' => { 87 => 0x10b }, - 'exposureprogram' => { 122 => 0x8822, 414 => 0x1001, 427 => [0x17e,0x43], 434 => 0x3c, 435 => 0x3c, 436 => 0x5, 440 => 0x14, 445 => 0x3f, 453 => 0x2, 457 => 0x1175, 458 => 0x1179, 459 => 0x1155, 460 => 0x11d1, 461 => 0x11ad, 462 => 0x1065, 463 => 0x25d, 464 => 0x25d, 465 => 0x24c, 476 => 0xb, 477 => 0xc, 478 => 0xb, 480 => 0x48, 516 => 'ExposureProgram' }, - 'exposureshift' => { 323 => 0x203 }, - 'exposurestandardadjustment' => { 448 => 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, 31 => 0x6, 32 => 0x7, 79 => 0x16, 122 => 0x829a, 140 => 0xfd05, 143 => 0x20, 145 => 0xfa24, 147 => 0xf104, 150 => 0x12, 152 => 0x38, 154 => 0x14, 155 => 0x10, 157 => 0x10, 159 => 'ExposureTime', 184 => 0x9, 185 => 0x35, 186 => 0x48, 187 => 0x8, 190 => 0x49b8, 382 => 0x12, 421 => 0xa018, 424 => [0x32,0x4a], 434 => 0x0, 435 => 0x0, 453 => [0x21,0x23,0x27], 480 => 0x10, 516 => 'ExposureTime' }, - 'exposuretime2' => { 424 => [0x33,0x4b] }, + 'exposureprogram' => { 122 => 0x8822, 415 => 0x1001, 428 => [0x17e,0x43], 435 => 0x3c, 436 => 0x3c, 437 => 0x5, 441 => 0x14, 446 => 0x3f, 454 => 0x2, 458 => 0x1175, 459 => 0x1179, 460 => 0x1155, 461 => 0x11d1, 462 => 0x11ad, 463 => 0x1065, 464 => 0x25d, 465 => 0x25d, 466 => 0x24c, 477 => 0xb, 478 => 0xc, 479 => 0xb, 481 => 0x48, 517 => 'ExposureProgram' }, + 'exposureshift' => { 324 => 0x203 }, + 'exposurestandardadjustment' => { 449 => 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, 31 => 0x6, 32 => 0x7, 79 => 0x16, 122 => 0x829a, 140 => 0xfd05, 143 => 0x20, 145 => 0xfa24, 147 => 0xf104, 150 => 0x12, 152 => 0x38, 154 => 0x14, 155 => 0x10, 157 => 0x10, 159 => 'ExposureTime', 184 => 0x9, 185 => 0x35, 186 => 0x48, 187 => 0x8, 190 => 0x49b8, 383 => 0x12, 422 => 0xa018, 425 => [0x32,0x4a], 435 => 0x0, 436 => 0x0, 454 => [0x21,0x23,0x27], 481 => 0x10, 517 => 'ExposureTime' }, + 'exposuretime2' => { 425 => [0x33,0x4b] }, 'exposuretuning' => { 239 => 0x1c }, 'exposurevalue' => { 141 => 0x3 }, 'exposurewarning' => { 130 => 0x1302 }, 'exrauto' => { 130 => 0x1033 }, 'exrmode' => { 130 => 0x1034 }, - 'extdescraccessibility' => { 523 => 'ExtDescrAccessibility' }, - 'extendedmenubanks' => { 244 => 0x120, 245 => 0x114, 246 => 0x124, 247 => 0x124 }, - 'extendedshutterspeeds' => { 319 => 0x102, 320 => 0x102, 321 => 0x118 }, - 'extendedwbdetect' => { 323 => 0x902 }, - 'extender' => { 324 => 0x301 }, - 'extenderfirmwareversion' => { 324 => 0x304 }, + 'extdescraccessibility' => { 524 => 'ExtDescrAccessibility' }, + 'extendedmenubanks' => { 244 => 0x120, 245 => 0x120, 246 => 0x114, 247 => 0x124, 248 => 0x124 }, + 'extendedshutterspeeds' => { 320 => 0x102, 321 => 0x102, 322 => 0x118 }, + 'extendedwbdetect' => { 324 => 0x902 }, + 'extender' => { 325 => 0x301 }, + 'extenderfirmwareversion' => { 325 => 0x304 }, 'extendermagnification' => { 161 => 'Magnification' }, 'extendermake' => { 161 => 'Make' }, - 'extendermodel' => { 161 => 'Model', 324 => 0x303 }, - 'extenderserialnumber' => { 161 => 'SerialNumber', 324 => 0x302 }, - 'extenderstatus' => { 380 => 0x3 }, - 'externalflash' => { 326 => 0x1201 }, - 'externalflashae1' => { 328 => 0x101f }, - 'externalflashae1_0' => { 328 => 0x101b }, - 'externalflashae2' => { 328 => 0x1020 }, - 'externalflashae2_0' => { 328 => 0x101c }, - 'externalflashbounce' => { 326 => 0x1204, 328 => 0x1026, 370 => 0x1a }, + 'extendermodel' => { 161 => 'Model', 325 => 0x303 }, + 'extenderserialnumber' => { 161 => 'SerialNumber', 325 => 0x302 }, + 'extenderstatus' => { 381 => 0x3 }, + 'externalflash' => { 327 => 0x1201 }, + 'externalflashae1' => { 329 => 0x101f }, + 'externalflashae1_0' => { 329 => 0x101b }, + 'externalflashae2' => { 329 => 0x1020 }, + 'externalflashae2_0' => { 329 => 0x101c }, + 'externalflashbounce' => { 327 => 0x1204, 329 => 0x1026, 371 => 0x1a }, 'externalflashcompensation' => { 219 => 0x1b }, - 'externalflashexposurecomp' => { 239 => 0x17, 370 => 0x19 }, + 'externalflashexposurecomp' => { 239 => 0x17, 371 => 0x19 }, 'externalflashfirmware' => { 217 => 0x6, 218 => 0x6, 219 => 0x6, 220 => 0x6, 221 => 0x6, 222 => 0x6 }, 'externalflashflags' => { 217 => 0x8, 218 => 0x8, 219 => 0x8, 220 => 0x8, 222 => 0x8 }, - 'externalflashguidenumber' => { 326 => 0x1203, 370 => '24.1' }, - 'externalflashgvalue' => { 328 => 0x1025 }, - 'externalflashmode' => { 328 => 0x1028, 370 => 0x2 }, + 'externalflashguidenumber' => { 327 => 0x1203, 371 => '24.1' }, + 'externalflashgvalue' => { 329 => 0x1025 }, + 'externalflashmode' => { 329 => 0x1028, 371 => 0x2 }, 'externalflashreadystate' => { 221 => '9.1' }, 'externalflashstatus' => { 221 => '8.2' }, - 'externalflashzoom' => { 326 => 0x1205, 328 => 0x1027 }, + 'externalflashzoom' => { 327 => 0x1205, 329 => 0x1027 }, 'externalflashzoomoverride' => { 221 => '8.1' }, - 'externalmetadatalink' => { 524 => 'ExternalMetadataLink' }, - 'externalsensorbrightnessvalue' => { 342 => 0x311, 345 => 0x311, 346 => 0x311, 349 => 0x3408 }, - 'extrainfoversion' => { 438 => 0x1a }, + 'externalmetadatalink' => { 525 => 'ExternalMetadataLink' }, + 'externalsensorbrightnessvalue' => { 343 => 0x311, 346 => 0x311, 347 => 0x311, 350 => 0x3408 }, + 'extrainfoversion' => { 439 => 0x1a }, 'eyestartaf' => { 187 => 0x40 }, 'fac100per' => { 141 => 0xe94 }, 'fac170per' => { 141 => 0xe93 }, 'fac18per' => { 141 => 0xe92 }, - 'face10position' => { 113 => 0x3f4, 114 => 0x1ec, 215 => 0x28, 367 => 0x12 }, - 'face10size' => { 368 => 0x12 }, - 'face11position' => { 215 => 0x2c, 367 => 0x14 }, - 'face11size' => { 368 => 0x14 }, - 'face12position' => { 215 => 0x30, 367 => 0x16 }, - 'face12size' => { 368 => 0x16 }, - 'face13position' => { 367 => 0x18 }, - 'face13size' => { 368 => 0x18 }, - 'face14position' => { 367 => 0x1a }, - 'face14size' => { 368 => 0x1a }, - 'face15position' => { 367 => 0x1c }, - 'face15size' => { 368 => 0x1c }, - 'face16position' => { 367 => 0x1e }, - 'face16size' => { 368 => 0x1e }, - 'face17position' => { 367 => 0x20 }, - 'face17size' => { 368 => 0x20 }, - 'face18position' => { 367 => 0x22 }, - 'face18size' => { 368 => 0x22 }, - 'face19position' => { 367 => 0x24 }, - 'face19size' => { 368 => 0x24 }, - 'face1position' => { 56 => 0x8, 113 => 0xd, 114 => 0x18, 215 => 0x4, 339 => 0x1, 367 => 0x0, 411 => 0xbc, 441 => 0x1, 442 => 0x0, 443 => 0x0, 444 => 0x5b }, - 'face1size' => { 368 => 0x0 }, - 'face20position' => { 367 => 0x26 }, - 'face20size' => { 368 => 0x26 }, - 'face21position' => { 367 => 0x28 }, - 'face21size' => { 368 => 0x28 }, - 'face22position' => { 367 => 0x2a }, - 'face22size' => { 368 => 0x2a }, - 'face23position' => { 367 => 0x2c }, - 'face23size' => { 368 => 0x2c }, - 'face24position' => { 367 => 0x2e }, - 'face24size' => { 368 => 0x2e }, - 'face25position' => { 367 => 0x30 }, - 'face25size' => { 368 => 0x30 }, - 'face26position' => { 367 => 0x32 }, - 'face26size' => { 368 => 0x32 }, - 'face27position' => { 367 => 0x34 }, - 'face27size' => { 368 => 0x34 }, - 'face28position' => { 367 => 0x36 }, - 'face28size' => { 368 => 0x36 }, - 'face29position' => { 367 => 0x38 }, - 'face29size' => { 368 => 0x38 }, - 'face2position' => { 56 => 0xa, 113 => 0x7c, 114 => 0x4c, 215 => 0x8, 339 => 0x5, 367 => 0x2, 411 => 0xc8, 441 => 0x6, 442 => 0x20, 443 => 0x25, 444 => 0x65 }, - 'face2size' => { 368 => 0x2 }, - 'face30position' => { 367 => 0x3a }, - 'face30size' => { 368 => 0x3a }, - 'face31position' => { 367 => 0x3c }, - 'face31size' => { 368 => 0x3c }, - 'face32position' => { 367 => 0x3e }, - 'face32size' => { 368 => 0x3e }, - 'face3position' => { 56 => 0xc, 113 => 0xeb, 114 => 0x80, 215 => 0xc, 339 => 0x9, 367 => 0x4, 411 => 0xd4, 441 => 0xb, 442 => 0x40, 443 => 0x4a, 444 => 0x6f }, - 'face3size' => { 368 => 0x4 }, - 'face4position' => { 56 => 0xe, 113 => 0x15a, 114 => 0xb4, 215 => 0x10, 339 => 0xd, 367 => 0x6, 411 => 0xe0, 441 => 0x10, 442 => 0x60, 443 => 0x6f, 444 => 0x79 }, - 'face4size' => { 368 => 0x6 }, - 'face5position' => { 56 => 0x10, 113 => 0x1c9, 114 => 0xe8, 215 => 0x14, 339 => 0x11, 367 => 0x8, 411 => 0xec, 441 => 0x15, 442 => 0x80, 443 => 0x94 }, - 'face5size' => { 368 => 0x8 }, - 'face6position' => { 56 => 0x12, 113 => 0x238, 114 => 0x11c, 215 => 0x18, 367 => 0xa, 411 => 0xf8, 441 => 0x1a, 442 => 0xa0, 443 => 0xb9 }, - 'face6size' => { 368 => 0xa }, - 'face7position' => { 56 => 0x14, 113 => 0x2a7, 114 => 0x150, 215 => 0x1c, 367 => 0xc, 411 => 0x104, 441 => 0x1f, 442 => 0xc0, 443 => 0xde }, - 'face7size' => { 368 => 0xc }, - 'face8position' => { 56 => 0x16, 113 => 0x316, 114 => 0x184, 215 => 0x20, 367 => 0xe, 411 => 0x110, 441 => 0x24, 442 => 0xe0, 443 => 0x103 }, - 'face8size' => { 368 => 0xe }, - 'face9position' => { 56 => 0x18, 113 => 0x385, 114 => 0x1b8, 215 => 0x24, 367 => 0x10 }, - 'face9size' => { 368 => 0x10 }, - 'facebalanceorigi' => { 504 => 'FaceBalanceOrigI' }, - 'facebalanceorigq' => { 504 => 'FaceBalanceOrigQ' }, - 'facebalancestrength' => { 504 => 'FaceBalanceStrength' }, - 'facebalancewarmth' => { 504 => 'FaceBalanceWarmth' }, - 'facedetect' => { 382 => 0x76, 421 => 0x100 }, - 'facedetectarea' => { 327 => 0x1201 }, - 'facedetectframecrop' => { 327 => 0x1207 }, - 'facedetectframesize' => { 56 => 0x3, 113 => 0x1, 114 => 0x4, 215 => 0x1, 327 => 0x1203, 382 => 0x77, 411 => 0xb6 }, - 'facedetection' => { 436 => 0x30, 453 => 0x19 }, + 'face10position' => { 113 => 0x3f4, 114 => 0x1ec, 215 => 0x28, 368 => 0x12 }, + 'face10size' => { 369 => 0x12 }, + 'face11position' => { 215 => 0x2c, 368 => 0x14 }, + 'face11size' => { 369 => 0x14 }, + 'face12position' => { 215 => 0x30, 368 => 0x16 }, + 'face12size' => { 369 => 0x16 }, + 'face13position' => { 368 => 0x18 }, + 'face13size' => { 369 => 0x18 }, + 'face14position' => { 368 => 0x1a }, + 'face14size' => { 369 => 0x1a }, + 'face15position' => { 368 => 0x1c }, + 'face15size' => { 369 => 0x1c }, + 'face16position' => { 368 => 0x1e }, + 'face16size' => { 369 => 0x1e }, + 'face17position' => { 368 => 0x20 }, + 'face17size' => { 369 => 0x20 }, + 'face18position' => { 368 => 0x22 }, + 'face18size' => { 369 => 0x22 }, + 'face19position' => { 368 => 0x24 }, + 'face19size' => { 369 => 0x24 }, + 'face1position' => { 56 => 0x8, 113 => 0xd, 114 => 0x18, 215 => 0x4, 340 => 0x1, 368 => 0x0, 412 => 0xbc, 442 => 0x1, 443 => 0x0, 444 => 0x0, 445 => 0x5b }, + 'face1size' => { 369 => 0x0 }, + 'face20position' => { 368 => 0x26 }, + 'face20size' => { 369 => 0x26 }, + 'face21position' => { 368 => 0x28 }, + 'face21size' => { 369 => 0x28 }, + 'face22position' => { 368 => 0x2a }, + 'face22size' => { 369 => 0x2a }, + 'face23position' => { 368 => 0x2c }, + 'face23size' => { 369 => 0x2c }, + 'face24position' => { 368 => 0x2e }, + 'face24size' => { 369 => 0x2e }, + 'face25position' => { 368 => 0x30 }, + 'face25size' => { 369 => 0x30 }, + 'face26position' => { 368 => 0x32 }, + 'face26size' => { 369 => 0x32 }, + 'face27position' => { 368 => 0x34 }, + 'face27size' => { 369 => 0x34 }, + 'face28position' => { 368 => 0x36 }, + 'face28size' => { 369 => 0x36 }, + 'face29position' => { 368 => 0x38 }, + 'face29size' => { 369 => 0x38 }, + 'face2position' => { 56 => 0xa, 113 => 0x7c, 114 => 0x4c, 215 => 0x8, 340 => 0x5, 368 => 0x2, 412 => 0xc8, 442 => 0x6, 443 => 0x20, 444 => 0x25, 445 => 0x65 }, + 'face2size' => { 369 => 0x2 }, + 'face30position' => { 368 => 0x3a }, + 'face30size' => { 369 => 0x3a }, + 'face31position' => { 368 => 0x3c }, + 'face31size' => { 369 => 0x3c }, + 'face32position' => { 368 => 0x3e }, + 'face32size' => { 369 => 0x3e }, + 'face3position' => { 56 => 0xc, 113 => 0xeb, 114 => 0x80, 215 => 0xc, 340 => 0x9, 368 => 0x4, 412 => 0xd4, 442 => 0xb, 443 => 0x40, 444 => 0x4a, 445 => 0x6f }, + 'face3size' => { 369 => 0x4 }, + 'face4position' => { 56 => 0xe, 113 => 0x15a, 114 => 0xb4, 215 => 0x10, 340 => 0xd, 368 => 0x6, 412 => 0xe0, 442 => 0x10, 443 => 0x60, 444 => 0x6f, 445 => 0x79 }, + 'face4size' => { 369 => 0x6 }, + 'face5position' => { 56 => 0x10, 113 => 0x1c9, 114 => 0xe8, 215 => 0x14, 340 => 0x11, 368 => 0x8, 412 => 0xec, 442 => 0x15, 443 => 0x80, 444 => 0x94 }, + 'face5size' => { 369 => 0x8 }, + 'face6position' => { 56 => 0x12, 113 => 0x238, 114 => 0x11c, 215 => 0x18, 368 => 0xa, 412 => 0xf8, 442 => 0x1a, 443 => 0xa0, 444 => 0xb9 }, + 'face6size' => { 369 => 0xa }, + 'face7position' => { 56 => 0x14, 113 => 0x2a7, 114 => 0x150, 215 => 0x1c, 368 => 0xc, 412 => 0x104, 442 => 0x1f, 443 => 0xc0, 444 => 0xde }, + 'face7size' => { 369 => 0xc }, + 'face8position' => { 56 => 0x16, 113 => 0x316, 114 => 0x184, 215 => 0x20, 368 => 0xe, 412 => 0x110, 442 => 0x24, 443 => 0xe0, 444 => 0x103 }, + 'face8size' => { 369 => 0xe }, + 'face9position' => { 56 => 0x18, 113 => 0x385, 114 => 0x1b8, 215 => 0x24, 368 => 0x10 }, + 'face9size' => { 369 => 0x10 }, + 'facebalanceorigi' => { 505 => 'FaceBalanceOrigI' }, + 'facebalanceorigq' => { 505 => 'FaceBalanceOrigQ' }, + 'facebalancestrength' => { 505 => 'FaceBalanceStrength' }, + 'facebalancewarmth' => { 505 => 'FaceBalanceWarmth' }, + 'facedetect' => { 383 => 0x76, 422 => 0x100 }, + 'facedetectarea' => { 328 => 0x1201 }, + 'facedetectframecrop' => { 328 => 0x1207 }, + 'facedetectframesize' => { 56 => 0x3, 113 => 0x1, 114 => 0x4, 215 => 0x1, 328 => 0x1203, 383 => 0x77, 412 => 0xb6 }, + 'facedetection' => { 437 => 0x30, 454 => 0x19 }, 'faceelementpositions' => { 130 => 0x4203 }, 'faceelementselected' => { 130 => 0x4005 }, 'faceelementtypes' => { 130 => 0x4201 }, - 'faceid' => { 506 => 'FaceID' }, + 'faceid' => { 507 => 'FaceID' }, 'faceinfounknown' => { 116 => 0x2089 }, - 'facename' => { 421 => 0x123 }, + 'facename' => { 422 => 0x123 }, 'faceorientation' => { 114 => 0x8 }, - 'faceposition' => { 366 => 0x2, 422 => 0x4 }, + 'faceposition' => { 367 => 0x2, 423 => 0x4 }, 'facepositions' => { 130 => 0x4103 }, - 'facerecognition' => { 421 => 0x120 }, - 'facesdetected' => { 56 => 0x2, 57 => 0x2, 58 => 0x3, 113 => 0x0, 114 => 0x2, 116 => 0x211c, 130 => 0x4100, 215 => 0x3, 327 => 0x1200, 347 => 0x3f, 366 => 0x0, 411 => 0xb5, 422 => 0x0, 441 => 0x0, 444 => 0x3, 456 => 0x30 }, - 'facesrecognized' => { 340 => 0x0 }, + 'facerecognition' => { 422 => 0x120 }, + 'facesdetected' => { 56 => 0x2, 57 => 0x2, 58 => 0x3, 113 => 0x0, 114 => 0x2, 116 => 0x211c, 130 => 0x4100, 215 => 0x3, 328 => 0x1200, 348 => 0x3f, 367 => 0x0, 412 => 0xb5, 423 => 0x0, 442 => 0x0, 445 => 0x3, 457 => 0x30 }, + 'facesrecognized' => { 341 => 0x0 }, 'facewidth' => { 57 => 0x1 }, - 'fade' => { 448 => 0x2034 }, + 'fade' => { 449 => 0x2034 }, 'faithfuloutputhighlightpoint' => { 112 => 0x38 }, 'faithfuloutputshadowpoint' => { 112 => 0x39 }, 'faithfulrawcolortone' => { 112 => 0x31 }, @@ -2941,38 +2946,38 @@ my %tagLookup = ( 'faithfulunsharpmaskfineness' => { 112 => 0xac }, 'faithfulunsharpmaskstrength' => { 112 => 0xaa }, 'faithfulunsharpmaskthreshold' => { 112 => 0xae }, - 'far' => { 495 => 'Far' }, + 'far' => { 496 => 'Far' }, 'fastresetlinetime' => { 141 => 0x1860 }, - 'feedidentifier' => { 524 => 'FeedIdentifier' }, + 'feedidentifier' => { 525 => 'FeedIdentifier' }, 'femicroadjustment' => { 87 => 0x111 }, - 'ffid' => { 514 => 'ffid' }, - 'field' => { 528 => 'field' }, - 'fieldcount' => { 328 => 0x103f }, - 'fieldofview' => { 407 => "FOV\x00" }, + 'ffid' => { 515 => 'ffid' }, + 'field' => { 529 => 'field' }, + 'fieldcount' => { 329 => 0x103f }, + 'fieldofview' => { 408 => "FOV\x00" }, 'fifoenonepixeldelay' => { 141 => 0x1901 }, 'filecreatedate' => { 123 => 'FileCreateDate' }, - 'filedatarate' => { 539 => 'fileDataRate' }, - 'fileformat' => { 98 => 0x0, 135 => 0x14, 424 => [0x22,0x26], 448 => 0xb000 }, + 'filedatarate' => { 540 => 'fileDataRate' }, + 'fileformat' => { 98 => 0x0, 135 => 0x14, 425 => [0x22,0x26], 449 => 0xb000 }, 'filegroupid' => { 123 => '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, 30 => 0xb2d, 348 => 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, 30 => 0xb2d, 349 => 0x0 }, 'fileindex2' => { 21 => 0x290 }, 'filemodifydate' => { 123 => 'FileModifyDate' }, 'filename' => { 123 => 'FileName' }, - 'filenameasdelivered' => { 333 => 'FileNameAsDelivered' }, - 'filenumber' => { 59 => 0x1, 66 => 0x8, 100 => 0x1817, 117 => 'Canon-FileNumber', 216 => 0x4, 410 => 0x10 }, + 'filenameasdelivered' => { 334 => 'FileNameAsDelivered' }, + 'filenumber' => { 59 => 0x1, 66 => 0x8, 100 => 0x1817, 117 => 'Canon-FileNumber', 216 => 0x4, 411 => 0x10 }, 'filenumbermemory' => { 184 => 0x1a }, - 'filenumbersequence' => { 303 => '12.2', 308 => '3.1', 309 => '4.1', 310 => '4.1', 312 => '11.1', 313 => '4.3', 318 => '5.2', 319 => 0x48, 320 => 0x48, 321 => 0x48 }, + 'filenumbersequence' => { 304 => '12.2', 309 => '3.1', 310 => '4.1', 311 => '4.1', 313 => '11.1', 314 => '4.3', 319 => '5.2', 320 => 0x48, 321 => 0x48, 322 => 0x48 }, 'filepermissions' => { 123 => 'FilePermissions' }, - 'filesource' => { 122 => 0xa300, 130 => 0x8000, 516 => 'FileSource' }, + 'filesource' => { 122 => 0xa300, 130 => 0x8000, 517 => 'FileSource' }, 'fileuserid' => { 123 => 'FileUserID' }, 'fileversion' => { 135 => 0x16 }, 'fillflashautoreduction' => { 85 => 0xe, 86 => 0xe, 93 => 0xa }, - 'filllight' => { 510 => 'FillLight', 512 => 'FillLight' }, + 'filllight' => { 511 => 'FillLight', 513 => 'FillLight' }, 'fillorder' => { 122 => 0x10a }, - 'filmgraineffect' => { 323 => 0x538 }, - 'filmmode' => { 130 => 0x1401, 344 => 0x412, 347 => 0x42 }, - 'filmtype' => { 262 => 0x2 }, - 'filtereffect' => { 59 => 0xe, 254 => 0x37, 255 => 0x3f, 256 => 0x47, 347 => 0xa1 }, + 'filmgraineffect' => { 324 => 0x538 }, + 'filmmode' => { 130 => 0x1401, 345 => 0x412, 348 => 0x42 }, + 'filmtype' => { 263 => 0x2 }, + 'filtereffect' => { 59 => 0xe, 255 => 0x37, 256 => 0x3f, 257 => 0x47, 348 => 0xa1 }, 'filtereffectauto' => { 73 => 0xa0 }, 'filtereffectfaithful' => { 72 => 0x70, 73 => 0x70 }, 'filtereffectlandscape' => { 72 => 0x40, 73 => 0x40 }, @@ -2984,69 +2989,69 @@ my %tagLookup = ( 'filtereffectuserdef2' => { 72 => 0xb8, 73 => 0xd0 }, 'filtereffectuserdef3' => { 72 => 0xd0, 73 => 0xe8 }, 'finderdisplayduringexposure' => { 86 => 0x1 }, - 'finesharpness' => { 382 => 0x70 }, - 'finetuneoptcenterweighted' => { 303 => '7.2', 304 => '9.1', 306 => '9.1', 307 => '9.1', 311 => '8.1', 316 => '9.1', 317 => '9.1', 318 => '9.1', 319 => 0x23, 320 => 0x23, 321 => 0x23 }, - 'finetuneopthighlightweighted' => { 306 => '46.1', 307 => '46.1', 316 => '46.1', 317 => '46.1', 319 => 0x27, 320 => 0x27, 321 => 0x27 }, - 'finetuneoptmatrixmetering' => { 303 => '8.1', 304 => '8.2', 306 => '8.2', 307 => '8.2', 311 => '7.2', 312 => '6.1', 316 => '8.2', 317 => '8.2', 318 => '8.2', 319 => 0x21, 320 => 0x21, 321 => 0x21 }, - 'finetuneoptspotmetering' => { 303 => '8.2', 304 => '9.2', 306 => '9.2', 307 => '9.2', 311 => '8.2', 312 => '6.2', 316 => '9.2', 317 => '9.2', 318 => '9.2', 319 => 0x25, 320 => 0x25, 321 => 0x25 }, + 'finesharpness' => { 383 => 0x70 }, + 'finetuneoptcenterweighted' => { 304 => '7.2', 305 => '9.1', 307 => '9.1', 308 => '9.1', 312 => '8.1', 317 => '9.1', 318 => '9.1', 319 => '9.1', 320 => 0x23, 321 => 0x23, 322 => 0x23 }, + 'finetuneopthighlightweighted' => { 307 => '46.1', 308 => '46.1', 317 => '46.1', 318 => '46.1', 320 => 0x27, 321 => 0x27, 322 => 0x27 }, + 'finetuneoptmatrixmetering' => { 304 => '8.1', 305 => '8.2', 307 => '8.2', 308 => '8.2', 312 => '7.2', 313 => '6.1', 317 => '8.2', 318 => '8.2', 319 => '8.2', 320 => 0x21, 321 => 0x21, 322 => 0x21 }, + 'finetuneoptspotmetering' => { 304 => '8.2', 305 => '9.2', 307 => '9.2', 308 => '9.2', 312 => '8.2', 313 => '6.2', 317 => '9.2', 318 => '9.2', 319 => '9.2', 320 => 0x25, 321 => 0x25, 322 => 0x25 }, 'finishexposure' => { 141 => 0xdbd }, 'finishfiletype' => { 141 => 0xdb8 }, 'finishlook' => { 141 => 0xdbc }, 'finishnoise' => { 141 => 0xdba }, 'finishresolution' => { 141 => 0xdb9 }, 'finishsharpening' => { 141 => 0xdbb }, - 'firmware' => { 328 => 0x405, 424 => [0x8c,0x17,0x3b], 507 => 'Firmware' }, - 'firmware2' => { 424 => 0x57 }, - 'firmwaredate' => { 115 => 0x15, 116 => 0x2001, 408 => 0x4, 410 => 0x30 }, + 'firmware' => { 329 => 0x405, 425 => [0x8c,0x17,0x3b], 508 => 'Firmware' }, + 'firmware2' => { 425 => 0x57 }, + 'firmwaredate' => { 115 => 0x15, 116 => 0x2001, 409 => 0x4, 411 => 0x30 }, 'firmwareid' => { 191 => 0x0 }, - 'firmwarename' => { 421 => 0xa001 }, - 'firmwarerevision' => { 19 => 0xa4, 66 => 0x1e, 412 => 0x0 }, - 'firmwarerevision2' => { 412 => 0xc }, - 'firmwareversion' => { 7 => 0x10b, 11 => 0x136, 14 => 0xff, 15 => 0x107, 141 => [0x415,0xce5], 157 => 0x57, 159 => 'FirmwareVersion', 345 => 0x320, 347 => 0x2, 349 => 0x3109, 382 => 0x230, 407 => ['CNFV','FIRM','info'], 409 => 0x18, 410 => 0x2a, 414 => 0x2 }, - 'firmwareversions' => { 391 => 0x301 }, - 'firstphotodate' => { 498 => 'FirstPhotoDate' }, - 'firstpublicationdate' => { 333 => 'FirstPublicationDate' }, - 'fixtureidentifier' => { 134 => 0x16, 505 => 'FixtureIdentifier' }, - 'flash' => { 117 => 'XMP-Flash', 122 => 0x9209, 155 => 0x22, 185 => 0x1f, 186 => 0x15, 410 => 0x5a, 516 => 'Flash' }, - 'flashaction' => { 434 => 0x3e, 435 => 0x3e, 448 => 0x2017, 453 => [0x2a,0x2c,0x30] }, - 'flashaction2' => { 434 => 0x4c, 435 => 0x4c, 453 => 0x77 }, - 'flashactionexternal' => { 453 => [0x78,0x7c] }, + 'firmwarename' => { 422 => 0xa001 }, + 'firmwarerevision' => { 19 => 0xa4, 66 => 0x1e, 413 => 0x0 }, + 'firmwarerevision2' => { 413 => 0xc }, + 'firmwareversion' => { 7 => 0x10b, 11 => 0x136, 14 => 0xff, 15 => 0x107, 141 => [0x415,0xce5], 157 => 0x57, 159 => 'FirmwareVersion', 346 => 0x320, 348 => 0x2, 350 => 0x3109, 383 => 0x230, 408 => ['CNFV','FIRM','info'], 410 => 0x18, 411 => 0x2a, 415 => 0x2 }, + 'firmwareversions' => { 392 => 0x301 }, + 'firstphotodate' => { 499 => 'FirstPhotoDate' }, + 'firstpublicationdate' => { 334 => 'FirstPublicationDate' }, + 'fixtureidentifier' => { 134 => 0x16, 506 => 'FixtureIdentifier' }, + 'flash' => { 117 => 'XMP-Flash', 122 => 0x9209, 155 => 0x22, 185 => 0x1f, 186 => 0x15, 411 => 0x5a, 517 => 'Flash' }, + 'flashaction' => { 435 => 0x3e, 436 => 0x3e, 449 => 0x2017, 454 => [0x2a,0x2c,0x30] }, + 'flashaction2' => { 435 => 0x4c, 436 => 0x4c, 454 => 0x77 }, + 'flashactionexternal' => { 454 => [0x78,0x7c] }, 'flashactivity' => { 36 => 0x1c }, 'flashbatterylevel' => { 46 => 0x249 }, - 'flashbias' => { 347 => 0x24 }, + 'flashbias' => { 348 => 0x24 }, 'flashbits' => { 36 => 0x1d }, - 'flashburstpriority' => { 319 => 0x111, 320 => 0x111, 321 => 0x129 }, + 'flashburstpriority' => { 320 => 0x111, 321 => 0x111, 322 => 0x129 }, 'flashbuttonfunction' => { 87 => 0x70e }, - 'flashchargelevel' => { 328 => 0x1010 }, + 'flashchargelevel' => { 329 => 0x1010 }, 'flashcolorfilter' => { 219 => 0x10, 220 => 0x10, 222 => 0x10 }, 'flashcommandermode' => { 217 => '9.1', 218 => '9.1', 219 => '9.1', 220 => '9.1', 222 => '9.1' }, - 'flashcompensation' => { 141 => 0x3f3, 217 => 0xa, 218 => 0xa, 219 => 0xa, 220 => 0x27, 221 => 0xa, 222 => 0xa, 507 => 'FlashCompensation' }, - 'flashcontrol' => { 434 => 0x23, 435 => 0x1f, 436 => 0x21 }, - 'flashcontrolbuilt-in' => { 312 => '16.1', 313 => '23.1', 315 => '23.1', 316 => '24.1' }, - 'flashcontrolmode' => { 217 => '9.2', 218 => '9.2', 219 => '9.2', 220 => '9.2', 222 => '9.2', 228 => 0x214, 243 => 0x148, 244 => 0x1b8, 245 => 0x1a8, 246 => 0x1bc, 247 => 0x1bc, 323 => 0x404 }, - 'flashcurtain' => { 347 => 0x48 }, + 'flashcompensation' => { 141 => 0x3f3, 217 => 0xa, 218 => 0xa, 219 => 0xa, 220 => 0x27, 221 => 0xa, 222 => 0xa, 508 => 'FlashCompensation' }, + 'flashcontrol' => { 435 => 0x23, 436 => 0x1f, 437 => 0x21 }, + 'flashcontrolbuilt-in' => { 313 => '16.1', 314 => '23.1', 316 => '23.1', 317 => '24.1' }, + 'flashcontrolmode' => { 217 => '9.2', 218 => '9.2', 219 => '9.2', 220 => '9.2', 222 => '9.2', 228 => 0x214, 243 => 0x148, 244 => 0x1b8, 245 => 0x1b8, 246 => 0x1a8, 247 => 0x1bc, 248 => 0x1bc, 324 => 0x404 }, + 'flashcurtain' => { 348 => 0x48 }, 'flashdefault' => { 187 => 0x42 }, - 'flashdevice' => { 328 => 0x1005 }, + 'flashdevice' => { 329 => 0x1005 }, 'flashdistance' => { 116 => 0x2034 }, - 'flashenergy' => { 122 => 0xa20b, 516 => 'FlashEnergy' }, + 'flashenergy' => { 122 => 0xa20b, 517 => 'FlashEnergy' }, 'flashexposurebracketvalue' => { 239 => 0x18 }, - 'flashexposurecomp' => { 79 => 0xf, 130 => 0x1011, 162 => 'ExposureComp', 184 => 0x23, 189 => 0x104, 190 => 0x49c1, 239 => 0x12, 323 => 0x401, 328 => 0x1023, 382 => 0x4d, 414 => 0x100b, 424 => [0x3a,0x56], 448 => 0x104 }, - 'flashexposurecomp2' => { 283 => 0x4d2 }, + 'flashexposurecomp' => { 79 => 0xf, 130 => 0x1011, 162 => 'ExposureComp', 184 => 0x23, 189 => 0x104, 190 => 0x49c1, 239 => 0x12, 324 => 0x401, 329 => 0x1023, 383 => 0x4d, 415 => 0x100b, 425 => [0x3a,0x56], 449 => 0x104 }, + 'flashexposurecomp2' => { 284 => 0x4d2 }, 'flashexposurecomp3' => { 219 => 0x1d }, 'flashexposurecomp4' => { 219 => 0x27 }, - 'flashexposurecomparea' => { 304 => '38.4', 306 => '38.4', 307 => '38.4', 316 => '38.4', 317 => '38.4', 319 => 0x59, 320 => 0x59, 321 => 0x59 }, - 'flashexposurecompset' => { 187 => 0x10, 355 => 0xe, 434 => 0x14, 435 => 0x12, 436 => 0x23, 453 => 0x1f }, - 'flashexposurecompset2' => { 453 => [0x26,0x2c] }, + 'flashexposurecomparea' => { 305 => '38.4', 307 => '38.4', 308 => '38.4', 317 => '38.4', 318 => '38.4', 320 => 0x59, 321 => 0x59, 322 => 0x59 }, + 'flashexposurecompset' => { 187 => 0x10, 356 => 0xe, 435 => 0x14, 436 => 0x12, 437 => 0x23, 454 => 0x1f }, + 'flashexposurecompset2' => { 454 => [0x26,0x2c] }, 'flashexposureindicator' => { 187 => 0x54 }, 'flashexposureindicatorlast' => { 187 => 0x56 }, 'flashexposureindicatornext' => { 187 => 0x55 }, 'flashexposurelock' => { 59 => 0x19 }, - 'flashfired' => { 143 => 0x5d, 162 => 'Fired', 184 => 0x14, 282 => '590.3', 516 => [\'Flash','FlashFired'] }, + 'flashfired' => { 143 => 0x5d, 162 => 'Fired', 184 => 0x14, 283 => '590.3', 517 => [\'Flash','FlashFired'] }, 'flashfiring' => { 87 => 0x306, 88 => 0x6, 89 => 0x7, 92 => 0x7 }, - 'flashfirmwareversion' => { 324 => 0x1002 }, + 'flashfirmwareversion' => { 325 => 0x1002 }, 'flashfocallength' => { 217 => 0xb, 218 => 0xc, 219 => 0xc, 220 => 0xc, 221 => 0xc, 222 => 0x26 }, - 'flashfunction' => { 190 => 0x31, 516 => [\'Flash','FlashFunction'] }, - 'flashgndistance' => { 217 => 0xe, 218 => 0xf, 219 => 0xf, 220 => 0xf, 221 => 0xf, 222 => 0xf, 228 => 0x21a, 243 => 0x14e, 245 => 0x1ae, 246 => 0x1c2, 247 => 0x1c2 }, + 'flashfunction' => { 190 => 0x31, 517 => [\'Flash','FlashFunction'] }, + 'flashgndistance' => { 217 => 0xe, 218 => 0xf, 219 => 0xf, 220 => 0xf, 221 => 0xf, 222 => 0xf, 228 => 0x21a, 243 => 0x14e, 246 => 0x1ae, 247 => 0x1c2, 248 => 0x1c2 }, 'flashgroupacompensation' => { 217 => 0x11, 218 => 0x12, 219 => 0x13, 220 => 0x28, 221 => 0x28, 222 => 0x28 }, 'flashgroupacontrolmode' => { 217 => 0xf, 218 => '16.1', 219 => '17.1', 220 => '17.1', 221 => '17.1', 222 => '17.1' }, 'flashgroupaoutput' => { 217 => 0x11, 218 => 0x12, 219 => 0x13, 220 => 0x28, 221 => 0x28, 222 => 0x28 }, @@ -3058,155 +3063,155 @@ my %tagLookup = ( 'flashgroupcoutput' => { 218 => 0x14, 219 => 0x15, 220 => 0x2a, 221 => 0x2a, 222 => 0x2a }, 'flashguidenumber' => { 79 => 0xd, 97 => 0x0, 162 => 'GuideNumber' }, 'flashilluminationpattern' => { 222 => 0x25 }, - 'flashintensity' => { 115 => [0x19,0x5], 323 => 0x405 }, - 'flashlevel' => { 305 => 0x9, 448 => 0xb048 }, + 'flashintensity' => { 115 => [0x19,0x5], 324 => 0x405 }, + 'flashlevel' => { 306 => 0x9, 449 => 0xb048 }, 'flashmake' => { 162 => 'Make' }, 'flashmanufacturer' => { 181 => 'FlashManufacturer' }, - 'flashmastercompensation' => { 228 => 0x22e, 243 => 0x162, 245 => 0x1aa, 246 => 0x1be, 247 => 0x1be }, + 'flashmastercompensation' => { 228 => 0x22e, 243 => 0x162, 246 => 0x1aa, 247 => 0x1be, 248 => 0x1be }, 'flashmastercontrolmode' => { 228 => 0x22c, 243 => 0x160 }, 'flashmasteroutput' => { 228 => 0x232, 243 => 0x166 }, 'flashmetering' => { 184 => 0x3f, 187 => 0x1c }, 'flashmeteringmode' => { 7 => 0x15, 13 => 0x15, 14 => 0x15, 15 => 0x15, 16 => 0x15, 17 => 0x15, 18 => 0x15, 20 => 0x15, 22 => 0x15, 28 => 0x15 }, - 'flashmeteringsegments' => { 382 => 0x20a }, - 'flashmode' => { 115 => 0x4, 141 => 0x3f2, 143 => 0x5c, 154 => 0x27, 162 => 'Mode', 184 => 0x2, 185 => 0x20, 186 => 0x16, 187 => 0xf, 239 => 0x87, 323 => 0x400, 328 => 0x1004, 382 => 0xc, 389 => 0x4, 413 => 0x20, 414 => 0x100a, 423 => 0x225, 434 => 0x13, 435 => 0x7f, 436 => 0x20, 453 => 0x10, 457 => 0x1138, 458 => 0x1138, 459 => 0x1114, 460 => 0x1190, 461 => 0x116c, 462 => 0x1024, 463 => 0x21c, 464 => 0x21c, 465 => 0x211, 516 => [\'Flash','FlashMode'] }, - 'flashmodebutton' => { 247 => 0x80e }, - 'flashmodebuttonplaybackmode' => { 247 => 0x818 }, - 'flashmodel' => { 162 => 'Model', 181 => 'FlashModel', 324 => 0x1001 }, - 'flashoptions' => { 363 => 0x2 }, - 'flashoptions2' => { 363 => 0x10 }, - 'flashoutput' => { 46 => 0x248, 79 => 0x21, 217 => 0xa, 218 => 0xa, 219 => 0xa, 220 => 0x27, 222 => 0x21, 228 => 0x21e, 243 => 0x152, 245 => 0x1b2, 246 => 0x1c6, 247 => 0x1c6 }, - 'flashpixversion' => { 122 => 0xa000, 516 => 'FlashpixVersion' }, - 'flashredeyemode' => { 516 => [\'Flash','FlashRedEyeMode'] }, - 'flashremotecontrol' => { 228 => 0x228, 243 => 0x15c, 245 => 0x1bc, 323 => 0x403 }, - 'flashreturn' => { 516 => [\'Flash','FlashReturn'] }, - 'flashserialnumber' => { 162 => 'SerialNumber', 324 => 0x1003 }, + 'flashmeteringsegments' => { 383 => 0x20a }, + 'flashmode' => { 115 => 0x4, 141 => 0x3f2, 143 => 0x5c, 154 => 0x27, 162 => 'Mode', 184 => 0x2, 185 => 0x20, 186 => 0x16, 187 => 0xf, 239 => 0x87, 324 => 0x400, 329 => 0x1004, 383 => 0xc, 390 => 0x4, 414 => 0x20, 415 => 0x100a, 424 => 0x225, 435 => 0x13, 436 => 0x7f, 437 => 0x20, 454 => 0x10, 458 => 0x1138, 459 => 0x1138, 460 => 0x1114, 461 => 0x1190, 462 => 0x116c, 463 => 0x1024, 464 => 0x21c, 465 => 0x21c, 466 => 0x211, 517 => [\'Flash','FlashMode'] }, + 'flashmodebutton' => { 248 => 0x80e }, + 'flashmodebuttonplaybackmode' => { 248 => 0x818 }, + 'flashmodel' => { 162 => 'Model', 181 => 'FlashModel', 325 => 0x1001 }, + 'flashoptions' => { 364 => 0x2 }, + 'flashoptions2' => { 364 => 0x10 }, + 'flashoutput' => { 46 => 0x248, 79 => 0x21, 217 => 0xa, 218 => 0xa, 219 => 0xa, 220 => 0x27, 222 => 0x21, 228 => 0x21e, 243 => 0x152, 246 => 0x1b2, 247 => 0x1c6, 248 => 0x1c6 }, + 'flashpixversion' => { 122 => 0xa000, 517 => 'FlashpixVersion' }, + 'flashredeyemode' => { 517 => [\'Flash','FlashRedEyeMode'] }, + 'flashremotecontrol' => { 228 => 0x228, 243 => 0x15c, 246 => 0x1bc, 324 => 0x403 }, + 'flashreturn' => { 517 => [\'Flash','FlashReturn'] }, + 'flashserialnumber' => { 162 => 'SerialNumber', 325 => 0x1003 }, 'flashsetting' => { 239 => 0x8 }, - 'flashshutterspeed' => { 303 => '20.2', 304 => '23.2', 306 => '23.2', 307 => '23.2', 312 => '15.2', 313 => '22.2', 314 => '7.2', 315 => '22.2', 316 => '23.2', 317 => '23.2', 318 => '23.1', 319 => 0x57, 320 => 0x57, 321 => 0x57 }, + 'flashshutterspeed' => { 304 => '20.2', 305 => '23.2', 307 => '23.2', 308 => '23.2', 313 => '15.2', 314 => '22.2', 315 => '7.2', 316 => '22.2', 317 => '23.2', 318 => '23.2', 319 => '23.1', 320 => 0x57, 321 => 0x57, 322 => 0x57 }, 'flashsource' => { 217 => 0x4, 218 => 0x4, 219 => 0x4, 220 => 0x4, 221 => 0x4, 222 => 0x4 }, - 'flashstatus' => { 370 => 0x0, 453 => [0x82,0x86], 467 => 0x31, 468 => 0x39, 469 => 0x39 }, - 'flashstatusbuilt-in' => { 436 => [0x87,0x287] }, - 'flashstatusexternal' => { 436 => [0x88,0x288] }, - 'flashsyncspeed' => { 303 => '20.1', 304 => '23.1', 306 => '23.1', 307 => '23.1', 312 => '15.1', 313 => '22.1', 315 => '22.1', 316 => '23.1', 317 => '23.1', 319 => 0x53, 320 => 0x53, 321 => 0x53 }, + 'flashstatus' => { 371 => 0x0, 454 => [0x82,0x86], 468 => 0x31, 469 => 0x39, 470 => 0x39 }, + 'flashstatusbuilt-in' => { 437 => [0x87,0x287] }, + 'flashstatusexternal' => { 437 => [0x88,0x288] }, + 'flashsyncspeed' => { 304 => '20.1', 305 => '23.1', 307 => '23.1', 308 => '23.1', 313 => '15.1', 314 => '22.1', 316 => '22.1', 317 => '23.1', 318 => '23.1', 320 => 0x53, 321 => 0x53, 322 => 0x53 }, 'flashsyncspeedav' => { 85 => 0x3, 87 => 0x10f, 88 => 0x2, 89 => 0x3, 90 => 0x2, 91 => 0x2, 92 => 0x3, 93 => 0x6 }, 'flashthreshold' => { 97 => 0x1 }, - 'flashtype' => { 162 => 'Type', 187 => 0x59, 239 => 0x9, 324 => 0x1000 }, - 'flashwarning' => { 313 => '30.1', 314 => '7.1', 318 => '31.1', 347 => 0x62 }, - 'flashwirelessoption' => { 228 => 0x234, 243 => 0x15a, 245 => 0x1c8 }, - 'flexiblespotposition' => { 448 => 0x201d }, - 'flickadvancedirection' => { 319 => 0x25f, 320 => 0x25f, 321 => 0x277 }, - 'flickerreduce' => { 423 => 0x218 }, - 'flickerreduction' => { 130 => 0x1446, 266 => 0x7 }, - 'flickerreductionindicator' => { 261 => 0x532 }, - 'flickerreductionshooting' => { 244 => 0x1b4, 245 => 0x1a4, 246 => 0x1b8, 247 => 0x1b8 }, + 'flashtype' => { 162 => 'Type', 187 => 0x59, 239 => 0x9, 325 => 0x1000 }, + 'flashwarning' => { 314 => '30.1', 315 => '7.1', 319 => '31.1', 348 => 0x62 }, + 'flashwirelessoption' => { 228 => 0x234, 243 => 0x15a, 246 => 0x1c8 }, + 'flexiblespotposition' => { 449 => 0x201d }, + 'flickadvancedirection' => { 320 => 0x25f, 321 => 0x25f, 322 => 0x277 }, + 'flickerreduce' => { 424 => 0x218 }, + 'flickerreduction' => { 130 => 0x1446, 267 => 0x7 }, + 'flickerreductionindicator' => { 262 => 0x532 }, + 'flickerreductionshooting' => { 244 => 0x1b4, 245 => 0x1b4, 246 => 0x1a4, 247 => 0x1b8, 248 => 0x1b8 }, 'flightpitchdegree' => { 119 => 'FlightPitchDegree' }, 'flightrolldegree' => { 119 => 'FlightRollDegree' }, 'flightxspeed' => { 119 => 'FlightXSpeed' }, 'flightyawdegree' => { 119 => 'FlightYawDegree' }, 'flightyspeed' => { 119 => 'FlightYSpeed' }, 'flightzspeed' => { 119 => 'FlightZSpeed' }, - 'fliphorizontal' => { 296 => 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, 31 => 0x5, 32 => 0x6, 79 => 0x15, 122 => 0x829d, 140 => 0xfd04, 143 => 0x1e, 145 => 0xfa23, 147 => 0xf103, 150 => 0x13, 152 => 0x3c, 154 => 0x1c, 155 => 0x18, 157 => 0xc, 166 => 'FNumber', 184 => 0xa, 185 => 0x36, 186 => 0x47, 187 => 0x9, 190 => 0x49c7, 237 => 0x38, 346 => 0x35a, 382 => 0x13, 421 => 0xa019, 424 => [0x31,0x49], 434 => 0x1, 435 => 0x1, 453 => [0x20,0x22,0x26], 516 => 'FNumber' }, - 'focaldistance' => { 496 => '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, 61 => 0x1, 116 => 0x1d, 122 => 0x920a, 150 => 0x1d, 166 => 'FocalLength', 184 => 0x12, 232 => 0xa, 233 => 0xb, 237 => [0xc,0x3c], 341 => 0x1, 382 => 0x1d, 391 => 0x403, 414 => 0x1500, 433 => 0xe, 461 => 0x1278, 462 => 0x1134, 463 => 0x32c, 464 => 0x32c, 465 => 0x30a, 516 => 'FocalLength' }, - 'focallength2' => { 453 => [0x23,0x25,0x29] }, - 'focallength35mm' => { 337 => 'FocalLength35mm' }, - 'focallengthin35mmformat' => { 122 => 0xa405, 421 => 0xa01a, 516 => 'FocalLengthIn35mmFilm' }, - 'focallengthtelezoom' => { 433 => 0x10 }, - 'focalplaneafpointarea' => { 466 => 0x2 }, - 'focalplaneafpointlocation1' => { 466 => 0x6 }, - 'focalplaneafpointlocation10' => { 466 => 0x2a }, - 'focalplaneafpointlocation11' => { 466 => 0x2e }, - 'focalplaneafpointlocation12' => { 466 => 0x32 }, - 'focalplaneafpointlocation13' => { 466 => 0x36 }, - 'focalplaneafpointlocation14' => { 466 => 0x3a }, - 'focalplaneafpointlocation15' => { 466 => 0x3e }, - 'focalplaneafpointlocation2' => { 466 => 0xa }, - 'focalplaneafpointlocation3' => { 466 => 0xe }, - 'focalplaneafpointlocation4' => { 466 => 0x12 }, - 'focalplaneafpointlocation5' => { 466 => 0x16 }, - 'focalplaneafpointlocation6' => { 466 => 0x1a }, - 'focalplaneafpointlocation7' => { 466 => 0x1e }, - 'focalplaneafpointlocation8' => { 466 => 0x22 }, - 'focalplaneafpointlocation9' => { 466 => 0x26 }, - 'focalplaneafpointsused' => { 466 => 0x1 }, - 'focalplanediagonal' => { 324 => 0x103, 328 => 0x205 }, - 'focalplaneresolutionunit' => { 122 => 0xa210, 516 => 'FocalPlaneResolutionUnit' }, - 'focalplanexresolution' => { 122 => 0xa20e, 516 => 'FocalPlaneXResolution' }, + 'fliphorizontal' => { 297 => 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, 31 => 0x5, 32 => 0x6, 79 => 0x15, 122 => 0x829d, 140 => 0xfd04, 143 => 0x1e, 145 => 0xfa23, 147 => 0xf103, 150 => 0x13, 152 => 0x3c, 154 => 0x1c, 155 => 0x18, 157 => 0xc, 166 => 'FNumber', 184 => 0xa, 185 => 0x36, 186 => 0x47, 187 => 0x9, 190 => 0x49c7, 237 => 0x38, 347 => 0x35a, 383 => 0x13, 422 => 0xa019, 425 => [0x31,0x49], 435 => 0x1, 436 => 0x1, 454 => [0x20,0x22,0x26], 517 => 'FNumber' }, + 'focaldistance' => { 497 => '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, 61 => 0x1, 116 => 0x1d, 122 => 0x920a, 150 => 0x1d, 166 => 'FocalLength', 184 => 0x12, 232 => 0xa, 233 => 0xb, 237 => [0xc,0x3c], 342 => 0x1, 383 => 0x1d, 392 => 0x403, 415 => 0x1500, 434 => 0xe, 462 => 0x1278, 463 => 0x1134, 464 => 0x32c, 465 => 0x32c, 466 => 0x30a, 517 => 'FocalLength' }, + 'focallength2' => { 454 => [0x23,0x25,0x29] }, + 'focallength35mm' => { 338 => 'FocalLength35mm' }, + 'focallengthin35mmformat' => { 122 => 0xa405, 422 => 0xa01a, 517 => 'FocalLengthIn35mmFilm' }, + 'focallengthtelezoom' => { 434 => 0x10 }, + 'focalplaneafpointarea' => { 467 => 0x2 }, + 'focalplaneafpointlocation1' => { 467 => 0x6 }, + 'focalplaneafpointlocation10' => { 467 => 0x2a }, + 'focalplaneafpointlocation11' => { 467 => 0x2e }, + 'focalplaneafpointlocation12' => { 467 => 0x32 }, + 'focalplaneafpointlocation13' => { 467 => 0x36 }, + 'focalplaneafpointlocation14' => { 467 => 0x3a }, + 'focalplaneafpointlocation15' => { 467 => 0x3e }, + 'focalplaneafpointlocation2' => { 467 => 0xa }, + 'focalplaneafpointlocation3' => { 467 => 0xe }, + 'focalplaneafpointlocation4' => { 467 => 0x12 }, + 'focalplaneafpointlocation5' => { 467 => 0x16 }, + 'focalplaneafpointlocation6' => { 467 => 0x1a }, + 'focalplaneafpointlocation7' => { 467 => 0x1e }, + 'focalplaneafpointlocation8' => { 467 => 0x22 }, + 'focalplaneafpointlocation9' => { 467 => 0x26 }, + 'focalplaneafpointsused' => { 467 => 0x1 }, + 'focalplanediagonal' => { 325 => 0x103, 329 => 0x205 }, + 'focalplaneresolutionunit' => { 122 => 0xa210, 517 => 'FocalPlaneResolutionUnit' }, + 'focalplanexresolution' => { 122 => 0xa20e, 517 => 'FocalPlaneXResolution' }, 'focalplanexsize' => { 61 => 0x2 }, 'focalplanexunknown' => { 61 => 0x2 }, - 'focalplaneyresolution' => { 122 => 0xa20f, 516 => 'FocalPlaneYResolution' }, + 'focalplaneyresolution' => { 122 => 0xa20f, 517 => 'FocalPlaneYResolution' }, 'focalplaneysize' => { 61 => 0x3 }, 'focalplaneyunknown' => { 61 => 0x3 }, - 'focalpointx' => { 496 => 'FocalPointX' }, - 'focalpointy' => { 496 => 'FocalPointY' }, + 'focalpointx' => { 497 => 'FocalPointX' }, + 'focalpointy' => { 497 => 'FocalPointY' }, 'focaltype' => { 10 => 0x2d, 61 => 0x0 }, 'focalunits' => { 36 => 0x19 }, - 'focus' => { 285 => 0x8 }, + 'focus' => { 286 => 0x8 }, 'focusarea' => { 184 => 0x31 }, - 'focusareaselection' => { 314 => '15.2' }, - 'focusbracket' => { 347 => 0xbd }, - 'focusbracketstepsize' => { 323 => 0x308 }, + 'focusareaselection' => { 315 => '15.2' }, + 'focusbracket' => { 348 => 0xbd }, + 'focusbracketstepsize' => { 324 => 0x308 }, 'focuscontinuous' => { 36 => 0x20 }, 'focusdisplayaiservoandmf' => { 87 => 0x515 }, - 'focusdistance' => { 166 => 'FocusDistance', 184 => 0x13, 190 => 0x49bb, 232 => 0x9, 233 => 0xa, 237 => [0xb,0x4e], 326 => 0x305, 341 => 0x0, 345 => 0x304, 346 => 0x304 }, + 'focusdistance' => { 166 => 'FocusDistance', 184 => 0x13, 190 => 0x49bb, 232 => 0x9, 233 => 0xa, 237 => [0xb,0x4e], 327 => 0x305, 342 => 0x0, 346 => 0x304, 347 => 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, 59 => 0x15, 79 => 0x14 }, 'focusdistancerange' => { 1 => 0xc }, 'focusdistancerangewidth' => { 237 => 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, 59 => 0x14, 79 => 0x13 }, 'focusholdbutton' => { 187 => 0x44 }, - 'focusinfoversion' => { 326 => 0x0 }, + 'focusinfoversion' => { 327 => 0x0 }, 'focusingscreen' => { 86 => 0x0, 87 => 0x80b, 92 => 0x0 }, - 'focuslocation' => { 448 => 0x2027 }, - 'focuslocation2' => { 448 => 0x204a }, + 'focuslocation' => { 449 => 0x2027 }, + 'focuslocation2' => { 449 => 0x204a }, 'focuslocked' => { 183 => 0x14 }, - 'focusmode' => { 36 => 0x7, 115 => 0x3, 116 => [0x3003,0xd], 130 => 0x1021, 141 => 0x3f5, 143 => 0x38, 159 => 'FocusMode', 184 => 0x30, 186 => 0xe, 187 => 0xc, 239 => 0x7, 323 => 0x301, 328 => 0x100b, 347 => 0x7, 382 => 0xd, 389 => 0x3, 414 => 0x1006, 427 => [0xb,0x5], 433 => [0x15,0x1d], 434 => 0x4d, 435 => 0x4d, 448 => [0xb042,0xb04e,0x201b], 453 => 0x13, 474 => 0x16 }, - 'focusmode2' => { 129 => '0.1', 363 => '3.1', 453 => [0x2c,0x2e,0x32] }, - 'focusmodesetting' => { 305 => '10.1', 431 => 0x14, 432 => 0x15, 434 => 0x10, 435 => 0xf, 436 => 0x6 }, - 'focusmodeswitch' => { 187 => 0x58, 434 => 0x2e }, - 'focuspeakingdisplay' => { 319 => 0x235, 320 => 0x235, 321 => 0x24d }, - 'focuspeakinghighlightcolor' => { 319 => 0x4b, 320 => 0x4b, 321 => 0x4b }, - 'focuspeakinglevel' => { 319 => 0x49, 320 => 0x49, 321 => 0x49 }, + 'focusmode' => { 36 => 0x7, 115 => 0x3, 116 => [0x3003,0xd], 130 => 0x1021, 141 => 0x3f5, 143 => 0x38, 159 => 'FocusMode', 184 => 0x30, 186 => 0xe, 187 => 0xc, 239 => 0x7, 324 => 0x301, 329 => 0x100b, 348 => 0x7, 383 => 0xd, 390 => 0x3, 415 => 0x1006, 428 => [0xb,0x5], 434 => [0x15,0x1d], 435 => 0x4d, 436 => 0x4d, 449 => [0xb042,0xb04e,0x201b], 454 => 0x13, 475 => 0x16 }, + 'focusmode2' => { 129 => '0.1', 364 => '3.1', 454 => [0x2c,0x2e,0x32] }, + 'focusmodesetting' => { 306 => '10.1', 432 => 0x14, 433 => 0x15, 435 => 0x10, 436 => 0xf, 437 => 0x6 }, + 'focusmodeswitch' => { 187 => 0x58, 435 => 0x2e }, + 'focuspeakingdisplay' => { 320 => 0x235, 321 => 0x235, 322 => 0x24d }, + 'focuspeakinghighlightcolor' => { 320 => 0x4b, 321 => 0x4b, 322 => 0x4b }, + 'focuspeakinglevel' => { 320 => 0x49, 321 => 0x49, 322 => 0x49 }, 'focuspixel' => { 130 => 0x1023 }, - 'focuspointlock' => { 319 => 0x1d3, 320 => 0x1d3, 321 => 0x1eb }, - 'focuspointpersistence' => { 319 => 0x105, 320 => 0x105, 321 => 0x11b }, - 'focuspointwrap' => { 303 => '2.2', 304 => '2.2', 306 => '2.1', 307 => '2.1', 311 => '1.1', 312 => '2.2', 313 => '1.1', 316 => '2.2', 317 => '2.1', 318 => '2.5', 319 => 0x16, 320 => 0x16, 321 => 0x16 }, - 'focusposition' => { 1 => 0x2f, 232 => 0x8, 233 => 0x8, 382 => 0x10, 445 => 0x9bb }, - 'focusposition2' => { 453 => [0x29,0x2b,0x2f], 474 => 0x2d, 477 => 0x20 }, + 'focuspointlock' => { 320 => 0x1d3, 321 => 0x1d3, 322 => 0x1eb }, + 'focuspointpersistence' => { 320 => 0x105, 321 => 0x105, 322 => 0x11b }, + 'focuspointwrap' => { 304 => '2.2', 305 => '2.2', 307 => '2.1', 308 => '2.1', 312 => '1.1', 313 => '2.2', 314 => '1.1', 317 => '2.2', 318 => '2.1', 319 => '2.5', 320 => 0x16, 321 => 0x16, 322 => 0x16 }, + 'focusposition' => { 1 => 0x2f, 232 => 0x8, 233 => 0x8, 383 => 0x10, 446 => 0x9bb }, + 'focusposition2' => { 454 => [0x29,0x2b,0x2f], 475 => 0x2d, 478 => 0x20 }, 'focuspositionhorizontal' => { 196 => 0x2f, 197 => 0x43 }, 'focuspositionvertical' => { 196 => 0x31, 197 => 0x45 }, - 'focusprocess' => { 323 => 0x302 }, - 'focusrange' => { 36 => 0x12, 328 => 0x100a }, - 'focusrangeindex' => { 373 => '3.1' }, + 'focusprocess' => { 324 => 0x302 }, + 'focusrange' => { 36 => 0x12, 329 => 0x100a }, + 'focusrangeindex' => { 374 => '3.1' }, 'focusresult' => { 197 => 0x4a }, 'focusringrotation' => { 87 => 0x713 }, - 'focussetting' => { 424 => 0x6 }, - 'focusshiftautoreset' => { 246 => 0x6da, 247 => 0x748 }, - 'focusshiftexposurelock' => { 228 => 0x1b4, 243 => 0xe8, 244 => 0x100, 245 => 0xf4, 246 => 0x104, 247 => 0x104 }, - 'focusshiftinterval' => { 228 => 0x1b0, 243 => 0xe4, 244 => 0xfc, 245 => 0xf0, 246 => 0x100, 247 => 0x100 }, - 'focusshiftnumbershots' => { 228 => 0x1a8, 243 => 0xdc, 244 => 0xf4, 245 => 0xe8, 246 => 0xf8, 247 => 0xf8 }, - 'focusshiftshooting' => { 264 => 0x20 }, - 'focusshiftstepwidth' => { 228 => 0x1ac, 243 => 0xe0, 244 => 0xf8, 245 => 0xec, 246 => 0xfc, 247 => 0xfc }, - 'focusstatus' => { 433 => 0x19, 434 => 0x53, 435 => 0x53 }, - 'focusstepcount' => { 326 => 0x301, 328 => 0x100e }, - 'focusstepinfinity' => { 326 => 0x303, 328 => 0x103b }, - 'focusstepnear' => { 326 => 0x304, 328 => 0x103c }, + 'focussetting' => { 425 => 0x6 }, + 'focusshiftautoreset' => { 247 => 0x6da, 248 => 0x748 }, + 'focusshiftexposurelock' => { 228 => 0x1b4, 243 => 0xe8, 244 => 0x100, 245 => 0x100, 246 => 0xf4, 247 => 0x104, 248 => 0x104 }, + 'focusshiftinterval' => { 228 => 0x1b0, 243 => 0xe4, 244 => 0xfc, 245 => 0xfc, 246 => 0xf0, 247 => 0x100, 248 => 0x100 }, + 'focusshiftnumbershots' => { 228 => 0x1a8, 243 => 0xdc, 244 => 0xf4, 245 => 0xf4, 246 => 0xe8, 247 => 0xf8, 248 => 0xf8 }, + 'focusshiftshooting' => { 265 => 0x20 }, + 'focusshiftstepwidth' => { 228 => 0x1ac, 243 => 0xe0, 244 => 0xf8, 245 => 0xf8, 246 => 0xec, 247 => 0xfc, 248 => 0xfc }, + 'focusstatus' => { 434 => 0x19, 435 => 0x53, 436 => 0x53 }, + 'focusstepcount' => { 327 => 0x301, 329 => 0x100e }, + 'focusstepinfinity' => { 327 => 0x303, 329 => 0x103b }, + 'focusstepnear' => { 327 => 0x304, 329 => 0x103c }, 'focusstepsfrominfinity' => { 237 => 0x58 }, - 'focustrackinglockon' => { 303 => ['1.5','4.1'], 304 => '1.4', 311 => '0.4', 312 => '3.1', 313 => '0.4', 316 => '1.4' }, + 'focustrackinglockon' => { 304 => ['1.5','4.1'], 305 => '1.4', 312 => '0.4', 313 => '3.1', 314 => '0.4', 317 => '1.4' }, 'focuswarning' => { 130 => 0x1301 }, 'foldername' => { 184 => 0x27 }, - 'foldernumber' => { 434 => 0x9a, 436 => [0x402,0x114,0x316] }, - 'fontcomposite' => { 544 => [\'Fonts','FontsComposite'] }, - 'fontface' => { 544 => [\'Fonts','FontsFontFace'] }, - 'fontfamily' => { 544 => [\'Fonts','FontsFontFamily'] }, - 'fontfilename' => { 544 => [\'Fonts','FontsFontFileName'] }, - 'fontname' => { 544 => [\'Fonts','FontsFontName'] }, - 'fonts' => { 544 => 'Fonts' }, - 'fonttype' => { 544 => [\'Fonts','FontsFontType'] }, - 'fontversion' => { 544 => [\'Fonts','FontsVersionString'] }, - 'for' => { 398 => 'For' }, + 'foldernumber' => { 435 => 0x9a, 437 => [0x402,0x114,0x316] }, + 'fontcomposite' => { 545 => [\'Fonts','FontsComposite'] }, + 'fontface' => { 545 => [\'Fonts','FontsFontFace'] }, + 'fontfamily' => { 545 => [\'Fonts','FontsFontFamily'] }, + 'fontfilename' => { 545 => [\'Fonts','FontsFontFileName'] }, + 'fontname' => { 545 => [\'Fonts','FontsFontName'] }, + 'fonts' => { 545 => 'Fonts' }, + 'fonttype' => { 545 => [\'Fonts','FontsFontType'] }, + 'fontversion' => { 545 => [\'Fonts','FontsVersionString'] }, + 'for' => { 399 => 'For' }, 'forcewrite' => { 123 => 'ForceWrite' }, - 'format' => { 407 => "\xa9fmt", 495 => 'Format', 513 => 'format', 537 => 'Format' }, - 'forwardlock' => { 534 => 'forwardlock' }, + 'format' => { 408 => "\xa9fmt", 496 => 'Format', 514 => 'format', 538 => 'Format' }, + 'forwardlock' => { 535 => 'forwardlock' }, 'forwardmatrix1' => { 122 => 0xc714 }, 'forwardmatrix2' => { 122 => 0xc715 }, 'forwardmatrix3' => { 122 => 0xcd34 }, @@ -3214,12 +3219,12 @@ my %tagLookup = ( 'fossilspecimenmaterialsampleid' => { 121 => [\'FossilSpecimen','FossilSpecimenMaterialSampleID'] }, 'framecount' => { 69 => [0x2,0x4] }, 'frameheight' => { 130 => 0x3822 }, - 'framenum' => { 393 => 0xd7 }, - 'framenumber' => { 130 => 0x8003, 190 => 0x3c, 382 => 0x29 }, + 'framenum' => { 394 => 0xd7 }, + 'framenumber' => { 130 => 0x8003, 190 => 0x3c, 383 => 0x29 }, 'framerate' => { 69 => [0x1,0x6], 122 => 0xc764, 130 => 0x3820 }, - 'framereadouttime' => { 401 => 'camera.framereadouttimeinmicroseconds' }, + 'framereadouttime' => { 402 => 'camera.framereadouttimeinmicroseconds' }, 'framewidth' => { 130 => 0x3821 }, - 'framing' => { 528 => 'framing' }, + 'framing' => { 529 => 'framing' }, 'freebytes' => { 100 => 0x1 }, 'freememorycardimages' => { 185 => [0x37,0x54], 186 => [0x2d,0x4a], 187 => 0x32 }, 'frontfacingcamera' => { 1 => 0x45 }, @@ -3227,31 +3232,31 @@ my %tagLookup = ( 'fujimodel' => { 130 => 0x1447 }, 'fujimodel2' => { 130 => 0x1448 }, 'fullhdhighspeedrec' => { 130 => 0x3824 }, - 'fullimagesize' => { 448 => 0xb02b }, - 'fullpanoheightpixels' => { 498 => 'FullPanoHeightPixels', 499 => 'FullPanoHeightPixels' }, - 'fullpanowidthpixels' => { 498 => 'FullPanoWidthPixels', 499 => 'FullPanoWidthPixels' }, - 'fullpresssnap' => { 414 => 0x100d }, + 'fullimagesize' => { 449 => 0xb02b }, + 'fullpanoheightpixels' => { 499 => 'FullPanoHeightPixels', 500 => 'FullPanoHeightPixels' }, + 'fullpanowidthpixels' => { 499 => 'FullPanoWidthPixels', 500 => 'FullPanoWidthPixels' }, + 'fullpresssnap' => { 415 => 0x100d }, 'fullsizeimage' => { 165 => 'data' }, 'fullsizeimagename' => { 165 => '1Name' }, 'fullsizeimagetype' => { 165 => '0Type' }, - 'func1button' => { 306 => '14.1', 307 => '14.1', 317 => '14.1', 319 => 0x63, 320 => 0x63, 321 => 0x63 }, - 'func1buttonplaybackmode' => { 319 => 0x1a5, 320 => 0x1a5, 321 => 0x1bd }, - 'func1buttonplusdials' => { 306 => '42.1', 307 => '42.1', 317 => '42.1' }, - 'func2button' => { 306 => '80.1', 307 => '80.1', 317 => '80.1', 319 => 0x73, 320 => 0x73, 321 => 0x73 }, - 'func2buttonplaybackmode' => { 319 => 0x1a7, 320 => 0x1a7, 321 => 0x1bf }, - 'func2buttonplusdials' => { 306 => '81.1' }, - 'func3button' => { 306 => '83.1', 320 => 0x119, 321 => 0x131 }, - 'func3buttonplaybackmode' => { 320 => 0x1a9, 321 => 0x1c1 }, - 'func4button' => { 320 => 0x175, 321 => 0x18d }, - 'func4buttonplaybackmode' => { 320 => 0x1af, 321 => 0x1c7 }, - 'funcbutton' => { 303 => ['14.1','15.1'], 304 => '14.1', 312 => '28.1', 313 => '13.1', 316 => '14.1', 318 => '14.1' }, - 'funcbuttonplusdials' => { 303 => ['14.2','15.2'], 304 => '14.2', 312 => '31.1', 316 => '42.1' }, - 'functionbutton' => { 310 => '13.1', 314 => '5.2' }, - 'gainbase' => { 327 => 0x610 }, - 'gaincontrol' => { 122 => 0xa407, 516 => 'GainControl' }, - 'gainmapmax' => { 521 => 'GainMapMax' }, - 'gainmapmin' => { 521 => 'GainMapMin' }, - 'gamma' => { 122 => 0xa500, 141 => 0x8fe, 334 => 'gAMA', 352 => 0x11c, 517 => 'Gamma', 521 => 'Gamma' }, + 'func1button' => { 307 => '14.1', 308 => '14.1', 318 => '14.1', 320 => 0x63, 321 => 0x63, 322 => 0x63 }, + 'func1buttonplaybackmode' => { 320 => 0x1a5, 321 => 0x1a5, 322 => 0x1bd }, + 'func1buttonplusdials' => { 307 => '42.1', 308 => '42.1', 318 => '42.1' }, + 'func2button' => { 307 => '80.1', 308 => '80.1', 318 => '80.1', 320 => 0x73, 321 => 0x73, 322 => 0x73 }, + 'func2buttonplaybackmode' => { 320 => 0x1a7, 321 => 0x1a7, 322 => 0x1bf }, + 'func2buttonplusdials' => { 307 => '81.1' }, + 'func3button' => { 307 => '83.1', 321 => 0x119, 322 => 0x131 }, + 'func3buttonplaybackmode' => { 321 => 0x1a9, 322 => 0x1c1 }, + 'func4button' => { 321 => 0x175, 322 => 0x18d }, + 'func4buttonplaybackmode' => { 321 => 0x1af, 322 => 0x1c7 }, + 'funcbutton' => { 304 => ['14.1','15.1'], 305 => '14.1', 313 => '28.1', 314 => '13.1', 317 => '14.1', 319 => '14.1' }, + 'funcbuttonplusdials' => { 304 => ['14.2','15.2'], 305 => '14.2', 313 => '31.1', 317 => '42.1' }, + 'functionbutton' => { 311 => '13.1', 315 => '5.2' }, + 'gainbase' => { 328 => 0x610 }, + 'gaincontrol' => { 122 => 0xa407, 517 => 'GainControl' }, + 'gainmapmax' => { 522 => 'GainMapMax' }, + 'gainmapmin' => { 522 => 'GainMapMin' }, + 'gamma' => { 122 => 0xa500, 141 => 0x8fe, 335 => 'gAMA', 353 => 0x11c, 518 => 'Gamma', 522 => 'Gamma' }, 'gammablackpoint' => { 108 => 0xc }, 'gammacolortone' => { 108 => 0x3 }, 'gammacompensatedvalue' => { 136 => 0x91 }, @@ -3267,20 +3272,20 @@ my %tagLookup = ( 'gammaunsharpmaskstrength' => { 108 => 0x5 }, 'gammaunsharpmaskthreshold' => { 108 => 0x7 }, 'gammawhitepoint' => { 108 => 0xd }, - 'garminsettings' => { 407 => 'pmcc' }, - 'garminsoftware' => { 407 => 'uuid' }, + 'garminsettings' => { 408 => 'pmcc' }, + 'garminsoftware' => { 408 => 'uuid' }, 'gdalmetadata' => { 122 => 0xa480 }, 'gdalnodata' => { 122 => 0xa481 }, 'geimagesize' => { 130 => 0x1304 }, 'gemake' => { 132 => 0x300 }, 'gemodel' => { 132 => 0x207 }, - 'genre' => { 399 => ['gnre',"\xa9gen"], 401 => 'genre', 407 => ['gnre',"\xa9gen"], 524 => 'Genre', 529 => 'genre', 539 => 'genre' }, - 'genrecvid' => { 524 => [\'Genre','GenreCvId'] }, - 'genrecvtermid' => { 524 => [\'Genre','GenreCvTermId'] }, - 'genrecvtermname' => { 524 => [\'Genre','GenreCvTermName'] }, - 'genrecvtermrefinedabout' => { 524 => [\'Genre','GenreCvTermRefinedAbout'] }, - 'genreid' => { 399 => 'geID' }, - 'geography' => { 530 => 'geography' }, + 'genre' => { 400 => ['gnre',"\xa9gen"], 402 => 'genre', 408 => ['gnre',"\xa9gen"], 525 => 'Genre', 530 => 'genre', 540 => 'genre' }, + 'genrecvid' => { 525 => [\'Genre','GenreCvId'] }, + 'genrecvtermid' => { 525 => [\'Genre','GenreCvTermId'] }, + 'genrecvtermname' => { 525 => [\'Genre','GenreCvTermName'] }, + 'genrecvtermrefinedabout' => { 525 => [\'Genre','GenreCvTermRefinedAbout'] }, + 'genreid' => { 400 => 'geID' }, + 'geography' => { 531 => 'geography' }, 'geolocate' => { 123 => 'Geolocate' }, 'geologicalcontext' => { 121 => 'GeologicalContext' }, 'geologicalcontextbed' => { 121 => [\'GeologicalContext','GeologicalContextBed'] }, @@ -3294,270 +3299,270 @@ my %tagLookup = ( 'geotiffdirectory' => { 122 => 0x87af }, 'geotiffdoubleparams' => { 122 => 0x87b0 }, 'geotime' => { 123 => 'Geotime' }, - 'giftftppriority' => { 500 => 'GIFTFtpPriority' }, + 'giftftppriority' => { 501 => 'GIFTFtpPriority' }, 'gimbalpitchdegree' => { 119 => 'GimbalPitchDegree' }, 'gimbalreverse' => { 119 => 'GimbalReverse' }, 'gimbalrolldegree' => { 119 => 'GimbalRollDegree' }, 'gimbalyawdegree' => { 119 => 'GimbalYawDegree' }, - 'globalaltitude' => { 396 => 0x419 }, - 'globalangle' => { 396 => 0x40d }, - 'good' => { 539 => 'good' }, - 'googlehostheader' => { 399 => 'gshh' }, - 'googlepingmessage' => { 399 => 'gspm' }, - 'googlepingurl' => { 399 => 'gspu' }, + 'globalaltitude' => { 397 => 0x419 }, + 'globalangle' => { 397 => 0x40d }, + 'good' => { 540 => 'good' }, + 'googlehostheader' => { 400 => 'gshh' }, + 'googlepingmessage' => { 400 => 'gspm' }, + 'googlepingurl' => { 400 => 'gspu' }, 'googleplusuploadcode' => { 122 => 0x9009 }, - 'googlesourcedata' => { 399 => 'gssd' }, - 'googlestarttime' => { 399 => 'gsst' }, - 'googletrackduration' => { 399 => 'gstd' }, - 'goprotype' => { 407 => 'GoPr' }, - 'gpsaltitude' => { 133 => 0x6, 163 => 'Altitude', 516 => 'GPSAltitude' }, - 'gpsaltituderef' => { 133 => 0x5, 516 => 'GPSAltitudeRef' }, - 'gpsareainformation' => { 133 => 0x1c, 516 => 'GPSAreaInformation' }, - 'gpscoordinates' => { 399 => "\xa9xyz", 401 => 'location.ISO6709', 407 => ['@xyz',"\xa9xyz"] }, + 'googlesourcedata' => { 400 => 'gssd' }, + 'googlestarttime' => { 400 => 'gsst' }, + 'googletrackduration' => { 400 => 'gstd' }, + 'goprotype' => { 408 => 'GoPr' }, + 'gpsaltitude' => { 133 => 0x6, 163 => 'Altitude', 517 => 'GPSAltitude' }, + 'gpsaltituderef' => { 133 => 0x5, 517 => 'GPSAltitudeRef' }, + 'gpsareainformation' => { 133 => 0x1c, 517 => 'GPSAreaInformation' }, + 'gpscoordinates' => { 400 => "\xa9xyz", 402 => 'location.ISO6709', 408 => ['@xyz',"\xa9xyz"] }, 'gpsdatestamp' => { 133 => 0x1d }, - 'gpsdatetime' => { 163 => 'DateTime', 516 => 'GPSTimeStamp' }, - 'gpsdestbearing' => { 133 => 0x18, 163 => 'Bearing', 516 => 'GPSDestBearing' }, - 'gpsdestbearingref' => { 133 => 0x17, 516 => 'GPSDestBearingRef' }, - 'gpsdestdistance' => { 133 => 0x1a, 163 => 'Distance', 516 => 'GPSDestDistance' }, - 'gpsdestdistanceref' => { 133 => 0x19, 516 => 'GPSDestDistanceRef' }, - 'gpsdestlatitude' => { 133 => 0x14, 516 => 'GPSDestLatitude' }, + 'gpsdatetime' => { 163 => 'DateTime', 517 => 'GPSTimeStamp' }, + 'gpsdestbearing' => { 133 => 0x18, 163 => 'Bearing', 517 => 'GPSDestBearing' }, + 'gpsdestbearingref' => { 133 => 0x17, 517 => 'GPSDestBearingRef' }, + 'gpsdestdistance' => { 133 => 0x1a, 163 => 'Distance', 517 => 'GPSDestDistance' }, + 'gpsdestdistanceref' => { 133 => 0x19, 517 => 'GPSDestDistanceRef' }, + 'gpsdestlatitude' => { 133 => 0x14, 517 => 'GPSDestLatitude' }, 'gpsdestlatituderef' => { 133 => 0x13 }, - 'gpsdestlongitude' => { 133 => 0x16, 516 => 'GPSDestLongitude' }, + 'gpsdestlongitude' => { 133 => 0x16, 517 => 'GPSDestLongitude' }, 'gpsdestlongituderef' => { 133 => 0x15 }, - 'gpsdifferential' => { 133 => 0x1e, 163 => 'Differential', 516 => 'GPSDifferential' }, - 'gpsdop' => { 133 => 0xb, 516 => 'GPSDOP' }, - 'gpshpositioningerror' => { 133 => 0x1f, 516 => 'GPSHPositioningError' }, - 'gpsimgdirection' => { 133 => 0x11, 516 => 'GPSImgDirection' }, - 'gpsimgdirectionref' => { 133 => 0x10, 516 => 'GPSImgDirectionRef' }, - 'gpslatitude' => { 117 => 'GPS-GPSLatitude', 119 => 'GpsLatitude', 133 => 0x2, 163 => 'Latitude', 516 => 'GPSLatitude' }, + 'gpsdifferential' => { 133 => 0x1e, 163 => 'Differential', 517 => 'GPSDifferential' }, + 'gpsdop' => { 133 => 0xb, 517 => 'GPSDOP' }, + 'gpshpositioningerror' => { 133 => 0x1f, 517 => 'GPSHPositioningError' }, + 'gpsimgdirection' => { 133 => 0x11, 517 => 'GPSImgDirection' }, + 'gpsimgdirectionref' => { 133 => 0x10, 517 => 'GPSImgDirectionRef' }, + 'gpslatitude' => { 117 => 'GPS-GPSLatitude', 119 => 'GpsLatitude', 133 => 0x2, 163 => 'Latitude', 517 => 'GPSLatitude' }, 'gpslatituderef' => { 133 => 0x1 }, - 'gpslongitude' => { 117 => 'GPS-GPSLongitude', 119 => 'GpsLongitude', 133 => 0x4, 163 => 'Longitude', 516 => 'GPSLongitude' }, + 'gpslongitude' => { 117 => 'GPS-GPSLongitude', 119 => 'GpsLongitude', 133 => 0x4, 163 => 'Longitude', 517 => 'GPSLongitude' }, 'gpslongituderef' => { 133 => 0x3 }, 'gpslongtitude' => { 119 => 'GpsLongtitude' }, - 'gpsmapdatum' => { 133 => 0x12, 163 => 'Datum', 516 => 'GPSMapDatum' }, - 'gpsmeasuremode' => { 133 => 0xa, 163 => 'MeasureMode', 516 => 'GPSMeasureMode' }, + 'gpsmapdatum' => { 133 => 0x12, 163 => 'Datum', 517 => 'GPSMapDatum' }, + 'gpsmeasuremode' => { 133 => 0xa, 163 => 'MeasureMode', 517 => 'GPSMeasureMode' }, 'gpsposition' => { 117 => 'Exif-GPSPosition' }, - 'gpsprocessingmethod' => { 133 => 0x1b, 516 => 'GPSProcessingMethod' }, - 'gpssatellites' => { 133 => 0x8, 163 => 'Satellites', 516 => 'GPSSatellites' }, - 'gpsspeed' => { 133 => 0xd, 163 => 'Speed', 516 => 'GPSSpeed' }, - 'gpsspeedref' => { 133 => 0xc, 516 => 'GPSSpeedRef' }, - 'gpsstatus' => { 133 => 0x9, 516 => 'GPSStatus' }, + 'gpsprocessingmethod' => { 133 => 0x1b, 517 => 'GPSProcessingMethod' }, + 'gpssatellites' => { 133 => 0x8, 163 => 'Satellites', 517 => 'GPSSatellites' }, + 'gpsspeed' => { 133 => 0xd, 163 => 'Speed', 517 => 'GPSSpeed' }, + 'gpsspeedref' => { 133 => 0xc, 517 => 'GPSSpeedRef' }, + 'gpsstatus' => { 133 => 0x9, 517 => 'GPSStatus' }, 'gpsstring' => { 141 => 0x402 }, 'gpstimestamp' => { 133 => 0x7 }, - 'gpstrack' => { 133 => 0xf, 163 => 'Heading', 516 => 'GPSTrack' }, - 'gpstrackref' => { 133 => 0xe, 516 => 'GPSTrackRef' }, - 'gpsversionid' => { 133 => 0x0, 516 => 'GPSVersionID' }, - 'gradation' => { 323 => 0x50f }, - 'gradientbasedcorractive' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionActive'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionActive'] }, - 'gradientbasedcorramount' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionAmount'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionAmount'] }, - 'gradientbasedcorrblacks2012' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalBlacks2012'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalBlacks2012'] }, - 'gradientbasedcorrbrightness' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalBrightness'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalBrightness'] }, - 'gradientbasedcorrclarity' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity'] }, - 'gradientbasedcorrclarity2012' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity2012'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity2012'] }, - 'gradientbasedcorrcontrast' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast'] }, - 'gradientbasedcorrcontrast2012' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast2012'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast2012'] }, - 'gradientbasedcorrcorrectionname' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionName'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionName'] }, - 'gradientbasedcorrcorrectionsyncid' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionSyncID'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionSyncID'] }, - 'gradientbasedcorrdefringe' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalDefringe'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalDefringe'] }, - 'gradientbasedcorrdehaze' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalDehaze'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalDehaze'] }, - 'gradientbasedcorrections' => { 510 => 'GradientBasedCorrections', 512 => 'GradientBasedCorrections' }, - 'gradientbasedcorrexposure' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure'] }, - 'gradientbasedcorrexposure2012' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure2012'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure2012'] }, - 'gradientbasedcorrhighlights2012' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalHighlights2012'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalHighlights2012'] }, - 'gradientbasedcorrhue' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalHue'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalHue'] }, - 'gradientbasedcorrluminancenoise' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalLuminanceNoise'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalLuminanceNoise'] }, - 'gradientbasedcorrmaskalpha' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAlpha'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAlpha'] }, - 'gradientbasedcorrmaskangle' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAngle'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAngle'] }, - 'gradientbasedcorrmaskbottom' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksBottom'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksBottom'] }, - 'gradientbasedcorrmaskcentervalue' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterValue'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterValue'] }, - 'gradientbasedcorrmaskcenterweight' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterWeight'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterWeight'] }, - 'gradientbasedcorrmaskdabs' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksDabs'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksDabs'] }, - 'gradientbasedcorrmaskfeather' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFeather'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFeather'] }, - 'gradientbasedcorrmaskflipped' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlipped'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlipped'] }, - 'gradientbasedcorrmaskflow' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlow'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlow'] }, - 'gradientbasedcorrmaskfullx' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullX'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullX'] }, - 'gradientbasedcorrmaskfully' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullY'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullY'] }, - 'gradientbasedcorrmaskinputdigest' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksInputDigest'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksInputDigest'] }, - 'gradientbasedcorrmaskleft' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksLeft'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksLeft'] }, - 'gradientbasedcorrmaskmaskactive' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskActive'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskActive'] }, - 'gradientbasedcorrmaskmaskblendmode' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskBlendMode'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskBlendMode'] }, - 'gradientbasedcorrmaskmaskdigest' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskDigest'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskDigest'] }, - 'gradientbasedcorrmaskmaskinverted' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskInverted'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskInverted'] }, - 'gradientbasedcorrmaskmaskname' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskName'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskName'] }, - 'gradientbasedcorrmaskmasks' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasks'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasks'] }, - 'gradientbasedcorrmaskmasksalpha' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksAlpha'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksAlpha'] }, - 'gradientbasedcorrmaskmasksangle' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksAngle'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksAngle'] }, - 'gradientbasedcorrmaskmasksbottom' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksBottom'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksBottom'] }, - 'gradientbasedcorrmaskmaskscentervalue' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksCenterValue'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksCenterValue'] }, - 'gradientbasedcorrmaskmaskscenterweight' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksCenterWeight'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksCenterWeight'] }, - 'gradientbasedcorrmaskmasksdabs' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksDabs'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksDabs'] }, - 'gradientbasedcorrmaskmasksfeather' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFeather'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFeather'] }, - 'gradientbasedcorrmaskmasksflipped' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFlipped'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFlipped'] }, - 'gradientbasedcorrmaskmasksflow' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFlow'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFlow'] }, - 'gradientbasedcorrmaskmasksfullx' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFullX'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFullX'] }, - 'gradientbasedcorrmaskmasksfully' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFullY'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFullY'] }, - 'gradientbasedcorrmaskmasksinputdigest' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksInputDigest'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksInputDigest'] }, - 'gradientbasedcorrmaskmasksleft' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksLeft'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksLeft'] }, - 'gradientbasedcorrmaskmasksmaskactive' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskActive'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskActive'] }, - 'gradientbasedcorrmaskmasksmaskblendmode' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskBlendMode'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskBlendMode'] }, - 'gradientbasedcorrmaskmasksmaskdigest' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskDigest'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskDigest'] }, - 'gradientbasedcorrmaskmasksmaskinverted' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskInverted'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskInverted'] }, - 'gradientbasedcorrmaskmasksmaskname' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskName'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskName'] }, - 'gradientbasedcorrmaskmasksmasksubtype' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskSubType'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskSubType'] }, - 'gradientbasedcorrmaskmasksmasksyncid' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskSyncID'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskSyncID'] }, - 'gradientbasedcorrmaskmasksmaskversion' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskVersion'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskVersion'] }, - 'gradientbasedcorrmaskmasksmidpoint' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMidpoint'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMidpoint'] }, - 'gradientbasedcorrmaskmasksorigin' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksOrigin'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksOrigin'] }, - 'gradientbasedcorrmaskmasksperimetervalue' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksPerimeterValue'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksPerimeterValue'] }, - 'gradientbasedcorrmaskmasksradius' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRadius'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRadius'] }, - 'gradientbasedcorrmaskmasksreferencepoint' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksReferencePoint'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksReferencePoint'] }, - 'gradientbasedcorrmaskmasksright' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRight'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRight'] }, - 'gradientbasedcorrmaskmasksroundness' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRoundness'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRoundness'] }, - 'gradientbasedcorrmaskmaskssizex' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksSizeX'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksSizeX'] }, - 'gradientbasedcorrmaskmaskssizey' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksSizeY'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksSizeY'] }, - 'gradientbasedcorrmaskmaskstop' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksTop'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksTop'] }, - 'gradientbasedcorrmaskmasksubtype' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskSubType'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskSubType'] }, - 'gradientbasedcorrmaskmasksvalue' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskValue'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskValue'] }, - 'gradientbasedcorrmaskmasksversion' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksVersion'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksVersion'] }, - 'gradientbasedcorrmaskmaskswhat' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksWhat'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksWhat'] }, - 'gradientbasedcorrmaskmaskswholeimagearea' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksWholeImageArea'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksWholeImageArea'] }, - 'gradientbasedcorrmaskmasksx' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksX'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksX'] }, - 'gradientbasedcorrmaskmasksy' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksY'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksY'] }, - 'gradientbasedcorrmaskmasksyncid' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskSyncID'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskSyncID'] }, - 'gradientbasedcorrmaskmaskszerox' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksZeroX'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksZeroX'] }, - 'gradientbasedcorrmaskmaskszeroy' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksZeroY'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksZeroY'] }, - 'gradientbasedcorrmaskmaskversion' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskVersion'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskVersion'] }, - 'gradientbasedcorrmaskmidpoint' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMidpoint'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMidpoint'] }, - 'gradientbasedcorrmaskorigin' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksOrigin'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksOrigin'] }, - 'gradientbasedcorrmaskperimetervalue' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksPerimeterValue'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksPerimeterValue'] }, - 'gradientbasedcorrmaskradius' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRadius'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRadius'] }, - 'gradientbasedcorrmaskrange' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMask'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMask'] }, - 'gradientbasedcorrmaskrangeareamodels' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'] }, - 'gradientbasedcorrmaskrangeareamodelscolorsampleinfo' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, - 'gradientbasedcorrmaskrangeareamodelscomponents' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'] }, - 'gradientbasedcorrmaskrangecoloramount' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'] }, - 'gradientbasedcorrmaskrangedepthfeather' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'] }, - 'gradientbasedcorrmaskrangedepthmax' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'] }, - 'gradientbasedcorrmaskrangedepthmin' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'] }, - 'gradientbasedcorrmaskrangeinvert' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'] }, - 'gradientbasedcorrmaskrangelumfeather' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'] }, - 'gradientbasedcorrmaskrangeluminancedepthsampleinfo' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'] }, - 'gradientbasedcorrmaskrangelummax' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'] }, - 'gradientbasedcorrmaskrangelummin' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'] }, - 'gradientbasedcorrmaskrangelumrange' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'] }, - 'gradientbasedcorrmaskrangesampletype' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'] }, - 'gradientbasedcorrmaskrangetype' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'] }, - 'gradientbasedcorrmaskrangeversion' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'] }, - 'gradientbasedcorrmaskreferencepoint' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksReferencePoint'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksReferencePoint'] }, - 'gradientbasedcorrmaskright' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRight'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRight'] }, - 'gradientbasedcorrmaskroundness' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRoundness'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRoundness'] }, - 'gradientbasedcorrmasks' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasks'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasks'] }, - 'gradientbasedcorrmasksizex' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeX'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeX'] }, - 'gradientbasedcorrmasksizey' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeY'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeY'] }, - 'gradientbasedcorrmasktop' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksTop'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksTop'] }, - 'gradientbasedcorrmaskvalue' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskValue'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskValue'] }, - 'gradientbasedcorrmaskversion' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksVersion'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksVersion'] }, - 'gradientbasedcorrmaskwhat' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksWhat'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksWhat'] }, - 'gradientbasedcorrmaskwholeimagearea' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksWholeImageArea'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksWholeImageArea'] }, - 'gradientbasedcorrmaskx' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksX'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksX'] }, - 'gradientbasedcorrmasky' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksY'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksY'] }, - 'gradientbasedcorrmaskzerox' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroX'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroX'] }, - 'gradientbasedcorrmaskzeroy' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroY'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroY'] }, - 'gradientbasedcorrmoire' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalMoire'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalMoire'] }, - 'gradientbasedcorrrangemask' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMask'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMask'] }, - 'gradientbasedcorrrangemaskareamodels' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModels'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModels'] }, - 'gradientbasedcorrrangemaskareamodelscolorsampleinfo' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, - 'gradientbasedcorrrangemaskareamodelscomponents' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'] }, - 'gradientbasedcorrrangemaskcoloramount' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskColorAmount'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskColorAmount'] }, - 'gradientbasedcorrrangemaskdepthfeather' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthFeather'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthFeather'] }, - 'gradientbasedcorrrangemaskdepthmax' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthMax'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthMax'] }, - 'gradientbasedcorrrangemaskdepthmin' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthMin'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthMin'] }, - 'gradientbasedcorrrangemaskinvert' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskInvert'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskInvert'] }, - 'gradientbasedcorrrangemasklumfeather' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumFeather'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumFeather'] }, - 'gradientbasedcorrrangemaskluminancedepthsampleinfo' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'] }, - 'gradientbasedcorrrangemasklummax' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumMax'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumMax'] }, - 'gradientbasedcorrrangemasklummin' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumMin'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumMin'] }, - 'gradientbasedcorrrangemasklumrange' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumRange'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumRange'] }, - 'gradientbasedcorrrangemasksampletype' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskSampleType'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskSampleType'] }, - 'gradientbasedcorrrangemasktype' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskType'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskType'] }, - 'gradientbasedcorrrangemaskversion' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskVersion'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskVersion'] }, - 'gradientbasedcorrsaturation' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSaturation'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSaturation'] }, - 'gradientbasedcorrshadows2012' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalShadows2012'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalShadows2012'] }, - 'gradientbasedcorrsharpness' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSharpness'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSharpness'] }, - 'gradientbasedcorrtemperature' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTemperature'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTemperature'] }, - 'gradientbasedcorrtexture' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTexture'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTexture'] }, - 'gradientbasedcorrtint' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTint'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTint'] }, - 'gradientbasedcorrtoninghue' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalToningHue'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalToningHue'] }, - 'gradientbasedcorrtoningsaturation' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalToningSaturation'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalToningSaturation'] }, - 'gradientbasedcorrwhat' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsWhat'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsWhat'] }, - 'gradientbasedcorrwhites2012' => { 510 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalWhites2012'], 512 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalWhites2012'] }, - 'grainamount' => { 510 => 'GrainAmount', 512 => 'GrainAmount' }, + 'gpstrack' => { 133 => 0xf, 163 => 'Heading', 517 => 'GPSTrack' }, + 'gpstrackref' => { 133 => 0xe, 517 => 'GPSTrackRef' }, + 'gpsversionid' => { 133 => 0x0, 517 => 'GPSVersionID' }, + 'gradation' => { 324 => 0x50f }, + 'gradientbasedcorractive' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionActive'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionActive'] }, + 'gradientbasedcorramount' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionAmount'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionAmount'] }, + 'gradientbasedcorrblacks2012' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalBlacks2012'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalBlacks2012'] }, + 'gradientbasedcorrbrightness' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalBrightness'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalBrightness'] }, + 'gradientbasedcorrclarity' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity'] }, + 'gradientbasedcorrclarity2012' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity2012'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity2012'] }, + 'gradientbasedcorrcontrast' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast'] }, + 'gradientbasedcorrcontrast2012' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast2012'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast2012'] }, + 'gradientbasedcorrcorrectionname' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionName'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionName'] }, + 'gradientbasedcorrcorrectionsyncid' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionSyncID'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionSyncID'] }, + 'gradientbasedcorrdefringe' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalDefringe'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalDefringe'] }, + 'gradientbasedcorrdehaze' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalDehaze'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalDehaze'] }, + 'gradientbasedcorrections' => { 511 => 'GradientBasedCorrections', 513 => 'GradientBasedCorrections' }, + 'gradientbasedcorrexposure' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure'] }, + 'gradientbasedcorrexposure2012' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure2012'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure2012'] }, + 'gradientbasedcorrhighlights2012' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalHighlights2012'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalHighlights2012'] }, + 'gradientbasedcorrhue' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalHue'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalHue'] }, + 'gradientbasedcorrluminancenoise' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalLuminanceNoise'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalLuminanceNoise'] }, + 'gradientbasedcorrmaskalpha' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAlpha'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAlpha'] }, + 'gradientbasedcorrmaskangle' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAngle'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAngle'] }, + 'gradientbasedcorrmaskbottom' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksBottom'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksBottom'] }, + 'gradientbasedcorrmaskcentervalue' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterValue'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterValue'] }, + 'gradientbasedcorrmaskcenterweight' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterWeight'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterWeight'] }, + 'gradientbasedcorrmaskdabs' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksDabs'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksDabs'] }, + 'gradientbasedcorrmaskfeather' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFeather'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFeather'] }, + 'gradientbasedcorrmaskflipped' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlipped'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlipped'] }, + 'gradientbasedcorrmaskflow' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlow'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlow'] }, + 'gradientbasedcorrmaskfullx' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullX'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullX'] }, + 'gradientbasedcorrmaskfully' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullY'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullY'] }, + 'gradientbasedcorrmaskinputdigest' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksInputDigest'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksInputDigest'] }, + 'gradientbasedcorrmaskleft' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksLeft'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksLeft'] }, + 'gradientbasedcorrmaskmaskactive' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskActive'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskActive'] }, + 'gradientbasedcorrmaskmaskblendmode' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskBlendMode'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskBlendMode'] }, + 'gradientbasedcorrmaskmaskdigest' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskDigest'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskDigest'] }, + 'gradientbasedcorrmaskmaskinverted' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskInverted'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskInverted'] }, + 'gradientbasedcorrmaskmaskname' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskName'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskName'] }, + 'gradientbasedcorrmaskmasks' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasks'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasks'] }, + 'gradientbasedcorrmaskmasksalpha' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksAlpha'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksAlpha'] }, + 'gradientbasedcorrmaskmasksangle' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksAngle'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksAngle'] }, + 'gradientbasedcorrmaskmasksbottom' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksBottom'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksBottom'] }, + 'gradientbasedcorrmaskmaskscentervalue' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksCenterValue'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksCenterValue'] }, + 'gradientbasedcorrmaskmaskscenterweight' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksCenterWeight'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksCenterWeight'] }, + 'gradientbasedcorrmaskmasksdabs' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksDabs'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksDabs'] }, + 'gradientbasedcorrmaskmasksfeather' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFeather'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFeather'] }, + 'gradientbasedcorrmaskmasksflipped' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFlipped'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFlipped'] }, + 'gradientbasedcorrmaskmasksflow' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFlow'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFlow'] }, + 'gradientbasedcorrmaskmasksfullx' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFullX'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFullX'] }, + 'gradientbasedcorrmaskmasksfully' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFullY'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFullY'] }, + 'gradientbasedcorrmaskmasksinputdigest' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksInputDigest'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksInputDigest'] }, + 'gradientbasedcorrmaskmasksleft' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksLeft'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksLeft'] }, + 'gradientbasedcorrmaskmasksmaskactive' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskActive'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskActive'] }, + 'gradientbasedcorrmaskmasksmaskblendmode' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskBlendMode'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskBlendMode'] }, + 'gradientbasedcorrmaskmasksmaskdigest' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskDigest'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskDigest'] }, + 'gradientbasedcorrmaskmasksmaskinverted' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskInverted'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskInverted'] }, + 'gradientbasedcorrmaskmasksmaskname' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskName'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskName'] }, + 'gradientbasedcorrmaskmasksmasksubtype' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskSubType'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskSubType'] }, + 'gradientbasedcorrmaskmasksmasksyncid' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskSyncID'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskSyncID'] }, + 'gradientbasedcorrmaskmasksmaskversion' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskVersion'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskVersion'] }, + 'gradientbasedcorrmaskmasksmidpoint' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMidpoint'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMidpoint'] }, + 'gradientbasedcorrmaskmasksorigin' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksOrigin'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksOrigin'] }, + 'gradientbasedcorrmaskmasksperimetervalue' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksPerimeterValue'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksPerimeterValue'] }, + 'gradientbasedcorrmaskmasksradius' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRadius'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRadius'] }, + 'gradientbasedcorrmaskmasksreferencepoint' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksReferencePoint'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksReferencePoint'] }, + 'gradientbasedcorrmaskmasksright' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRight'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRight'] }, + 'gradientbasedcorrmaskmasksroundness' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRoundness'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRoundness'] }, + 'gradientbasedcorrmaskmaskssizex' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksSizeX'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksSizeX'] }, + 'gradientbasedcorrmaskmaskssizey' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksSizeY'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksSizeY'] }, + 'gradientbasedcorrmaskmaskstop' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksTop'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksTop'] }, + 'gradientbasedcorrmaskmasksubtype' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskSubType'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskSubType'] }, + 'gradientbasedcorrmaskmasksvalue' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskValue'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskValue'] }, + 'gradientbasedcorrmaskmasksversion' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksVersion'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksVersion'] }, + 'gradientbasedcorrmaskmaskswhat' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksWhat'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksWhat'] }, + 'gradientbasedcorrmaskmaskswholeimagearea' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksWholeImageArea'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksWholeImageArea'] }, + 'gradientbasedcorrmaskmasksx' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksX'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksX'] }, + 'gradientbasedcorrmaskmasksy' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksY'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksY'] }, + 'gradientbasedcorrmaskmasksyncid' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskSyncID'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskSyncID'] }, + 'gradientbasedcorrmaskmaskszerox' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksZeroX'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksZeroX'] }, + 'gradientbasedcorrmaskmaskszeroy' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksZeroY'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksZeroY'] }, + 'gradientbasedcorrmaskmaskversion' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskVersion'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskVersion'] }, + 'gradientbasedcorrmaskmidpoint' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMidpoint'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMidpoint'] }, + 'gradientbasedcorrmaskorigin' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksOrigin'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksOrigin'] }, + 'gradientbasedcorrmaskperimetervalue' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksPerimeterValue'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksPerimeterValue'] }, + 'gradientbasedcorrmaskradius' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRadius'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRadius'] }, + 'gradientbasedcorrmaskrange' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMask'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMask'] }, + 'gradientbasedcorrmaskrangeareamodels' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'] }, + 'gradientbasedcorrmaskrangeareamodelscolorsampleinfo' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, + 'gradientbasedcorrmaskrangeareamodelscomponents' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'] }, + 'gradientbasedcorrmaskrangecoloramount' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'] }, + 'gradientbasedcorrmaskrangedepthfeather' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'] }, + 'gradientbasedcorrmaskrangedepthmax' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'] }, + 'gradientbasedcorrmaskrangedepthmin' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'] }, + 'gradientbasedcorrmaskrangeinvert' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'] }, + 'gradientbasedcorrmaskrangelumfeather' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'] }, + 'gradientbasedcorrmaskrangeluminancedepthsampleinfo' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'] }, + 'gradientbasedcorrmaskrangelummax' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'] }, + 'gradientbasedcorrmaskrangelummin' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'] }, + 'gradientbasedcorrmaskrangelumrange' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'] }, + 'gradientbasedcorrmaskrangesampletype' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'] }, + 'gradientbasedcorrmaskrangetype' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'] }, + 'gradientbasedcorrmaskrangeversion' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'] }, + 'gradientbasedcorrmaskreferencepoint' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksReferencePoint'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksReferencePoint'] }, + 'gradientbasedcorrmaskright' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRight'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRight'] }, + 'gradientbasedcorrmaskroundness' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRoundness'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRoundness'] }, + 'gradientbasedcorrmasks' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasks'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasks'] }, + 'gradientbasedcorrmasksizex' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeX'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeX'] }, + 'gradientbasedcorrmasksizey' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeY'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeY'] }, + 'gradientbasedcorrmasktop' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksTop'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksTop'] }, + 'gradientbasedcorrmaskvalue' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskValue'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskValue'] }, + 'gradientbasedcorrmaskversion' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksVersion'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksVersion'] }, + 'gradientbasedcorrmaskwhat' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksWhat'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksWhat'] }, + 'gradientbasedcorrmaskwholeimagearea' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksWholeImageArea'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksWholeImageArea'] }, + 'gradientbasedcorrmaskx' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksX'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksX'] }, + 'gradientbasedcorrmasky' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksY'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksY'] }, + 'gradientbasedcorrmaskzerox' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroX'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroX'] }, + 'gradientbasedcorrmaskzeroy' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroY'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroY'] }, + 'gradientbasedcorrmoire' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalMoire'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalMoire'] }, + 'gradientbasedcorrrangemask' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMask'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMask'] }, + 'gradientbasedcorrrangemaskareamodels' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModels'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModels'] }, + 'gradientbasedcorrrangemaskareamodelscolorsampleinfo' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, + 'gradientbasedcorrrangemaskareamodelscomponents' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'] }, + 'gradientbasedcorrrangemaskcoloramount' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskColorAmount'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskColorAmount'] }, + 'gradientbasedcorrrangemaskdepthfeather' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthFeather'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthFeather'] }, + 'gradientbasedcorrrangemaskdepthmax' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthMax'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthMax'] }, + 'gradientbasedcorrrangemaskdepthmin' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthMin'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthMin'] }, + 'gradientbasedcorrrangemaskinvert' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskInvert'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskInvert'] }, + 'gradientbasedcorrrangemasklumfeather' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumFeather'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumFeather'] }, + 'gradientbasedcorrrangemaskluminancedepthsampleinfo' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'] }, + 'gradientbasedcorrrangemasklummax' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumMax'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumMax'] }, + 'gradientbasedcorrrangemasklummin' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumMin'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumMin'] }, + 'gradientbasedcorrrangemasklumrange' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumRange'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumRange'] }, + 'gradientbasedcorrrangemasksampletype' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskSampleType'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskSampleType'] }, + 'gradientbasedcorrrangemasktype' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskType'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskType'] }, + 'gradientbasedcorrrangemaskversion' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskVersion'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskVersion'] }, + 'gradientbasedcorrsaturation' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSaturation'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSaturation'] }, + 'gradientbasedcorrshadows2012' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalShadows2012'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalShadows2012'] }, + 'gradientbasedcorrsharpness' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSharpness'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSharpness'] }, + 'gradientbasedcorrtemperature' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTemperature'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTemperature'] }, + 'gradientbasedcorrtexture' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTexture'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTexture'] }, + 'gradientbasedcorrtint' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTint'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTint'] }, + 'gradientbasedcorrtoninghue' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalToningHue'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalToningHue'] }, + 'gradientbasedcorrtoningsaturation' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalToningSaturation'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalToningSaturation'] }, + 'gradientbasedcorrwhat' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsWhat'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsWhat'] }, + 'gradientbasedcorrwhites2012' => { 511 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalWhites2012'], 513 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalWhites2012'] }, + 'grainamount' => { 511 => 'GrainAmount', 513 => 'GrainAmount' }, 'graineffectroughness' => { 130 => 0x1047 }, 'graineffectsize' => { 130 => 0x104c }, - 'grainfrequency' => { 510 => 'GrainFrequency', 512 => 'GrainFrequency' }, - 'grainseed' => { 510 => 'GrainSeed', 512 => 'GrainSeed' }, - 'grainsize' => { 510 => 'GrainSize', 512 => 'GrainSize' }, - 'graymixeraqua' => { 510 => 'GrayMixerAqua', 512 => 'GrayMixerAqua' }, - 'graymixerblue' => { 510 => 'GrayMixerBlue', 512 => 'GrayMixerBlue' }, - 'graymixergreen' => { 510 => 'GrayMixerGreen', 512 => 'GrayMixerGreen' }, - 'graymixermagenta' => { 510 => 'GrayMixerMagenta', 512 => 'GrayMixerMagenta' }, - 'graymixerorange' => { 510 => 'GrayMixerOrange', 512 => 'GrayMixerOrange' }, - 'graymixerpurple' => { 510 => 'GrayMixerPurple', 512 => 'GrayMixerPurple' }, - 'graymixerred' => { 510 => 'GrayMixerRed', 512 => 'GrayMixerRed' }, - 'graymixeryellow' => { 510 => 'GrayMixerYellow', 512 => 'GrayMixerYellow' }, - 'graypoint' => { 485 => 0x8021 }, + 'grainfrequency' => { 511 => 'GrainFrequency', 513 => 'GrainFrequency' }, + 'grainseed' => { 511 => 'GrainSeed', 513 => 'GrainSeed' }, + 'grainsize' => { 511 => 'GrainSize', 513 => 'GrainSize' }, + 'graymixeraqua' => { 511 => 'GrayMixerAqua', 513 => 'GrayMixerAqua' }, + 'graymixerblue' => { 511 => 'GrayMixerBlue', 513 => 'GrayMixerBlue' }, + 'graymixergreen' => { 511 => 'GrayMixerGreen', 513 => 'GrayMixerGreen' }, + 'graymixermagenta' => { 511 => 'GrayMixerMagenta', 513 => 'GrayMixerMagenta' }, + 'graymixerorange' => { 511 => 'GrayMixerOrange', 513 => 'GrayMixerOrange' }, + 'graymixerpurple' => { 511 => 'GrayMixerPurple', 513 => 'GrayMixerPurple' }, + 'graymixerred' => { 511 => 'GrayMixerRed', 513 => 'GrayMixerRed' }, + 'graymixeryellow' => { 511 => 'GrayMixerYellow', 513 => 'GrayMixerYellow' }, + 'graypoint' => { 486 => 0x8021 }, 'grayresponseunit' => { 122 => 0x122 }, 'greencurvelimits' => { 111 => 0x1c4 }, 'greencurvepoints' => { 110 => 0x53, 111 => 0x19a }, 'greenghostmitigationstatus' => { 1 => 0x3f }, 'greenhsl' => { 106 => 0x20913 }, - 'greenhue' => { 510 => 'GreenHue', 512 => 'GreenHue' }, - 'greensaturation' => { 510 => 'GreenSaturation', 512 => 'GreenSaturation' }, - 'griddisplay' => { 303 => '13.3', 304 => '4.3', 306 => '4.2', 307 => '4.2', 308 => '2.2', 312 => '10.5', 313 => '3.4', 314 => '6.1', 316 => '4.4', 317 => '4.2', 318 => '4.2' }, - 'gripbatteryadload' => { 361 => 0x5 }, - 'gripbatteryadnoload' => { 361 => 0x4 }, - 'gripbatterystate' => { 361 => '1.2' }, - 'group' => { 510 => 'Group', 512 => 'Group' }, - 'groupareaafillumination' => { 304 => '46.4', 307 => '47.4', 316 => '47.4' }, - 'grouping' => { 399 => ['grup',"\xa9grp"], 407 => "\xa9grp" }, - 'guid' => { 399 => 'GUID' }, + 'greenhue' => { 511 => 'GreenHue', 513 => 'GreenHue' }, + 'greensaturation' => { 511 => 'GreenSaturation', 513 => 'GreenSaturation' }, + 'griddisplay' => { 304 => '13.3', 305 => '4.3', 307 => '4.2', 308 => '4.2', 309 => '2.2', 313 => '10.5', 314 => '3.4', 315 => '6.1', 317 => '4.4', 318 => '4.2', 319 => '4.2' }, + 'gripbatteryadload' => { 362 => 0x5 }, + 'gripbatteryadnoload' => { 362 => 0x4 }, + 'gripbatterystate' => { 362 => '1.2' }, + 'group' => { 511 => 'Group', 513 => 'Group' }, + 'groupareaafillumination' => { 305 => '46.4', 308 => '47.4', 317 => '47.4' }, + 'grouping' => { 400 => ['grup',"\xa9grp"], 408 => "\xa9grp" }, + 'guid' => { 400 => 'GUID' }, 'h2resetblackpixels' => { 141 => 0x18a6 }, 'h3resetblackcolumns' => { 141 => 0x18ce }, 'h3resetblackpixels' => { 141 => 0x18b0 }, 'halftonehints' => { 122 => 0x141 }, 'hardlink' => { 123 => 'HardLink' }, - 'hasalternative' => { 529 => 'hasAlternative' }, - 'hascorrection' => { 529 => 'hasCorrection' }, - 'hascorrectiona-lang' => { 529 => [\'hasCorrection','hasCorrectionA-lang'] }, - 'hascorrectiona-platform' => { 529 => [\'hasCorrection','hasCorrectionA-platform'] }, - 'hascorrectiontext' => { 529 => [\'hasCorrection','hasCorrectionText'] }, - 'hascrop' => { 510 => 'HasCrop', 512 => 'HasCrop' }, - 'hasextendedxmp' => { 541 => 'HasExtendedXMP' }, - 'hassettings' => { 510 => 'HasSettings', 512 => 'HasSettings' }, - 'hastranslation' => { 529 => 'hasTranslation' }, - 'hasvisibleoverprint' => { 544 => 'HasVisibleOverprint' }, - 'hasvisibletransparency' => { 544 => 'HasVisibleTransparency' }, + 'hasalternative' => { 530 => 'hasAlternative' }, + 'hascorrection' => { 530 => 'hasCorrection' }, + 'hascorrectiona-lang' => { 530 => [\'hasCorrection','hasCorrectionA-lang'] }, + 'hascorrectiona-platform' => { 530 => [\'hasCorrection','hasCorrectionA-platform'] }, + 'hascorrectiontext' => { 530 => [\'hasCorrection','hasCorrectionText'] }, + 'hascrop' => { 511 => 'HasCrop', 513 => 'HasCrop' }, + 'hasextendedxmp' => { 542 => 'HasExtendedXMP' }, + 'hassettings' => { 511 => 'HasSettings', 513 => 'HasSettings' }, + 'hastranslation' => { 530 => 'hasTranslation' }, + 'hasvisibleoverprint' => { 545 => 'HasVisibleOverprint' }, + 'hasvisibletransparency' => { 545 => 'HasVisibleTransparency' }, 'hdmioutputn-log' => { 243 => 0x35a }, - 'hdmioutputresolution' => { 244 => 0x710, 245 => 0x610, 246 => 0x640, 247 => 0x6a8 }, - 'hdmiviewassist' => { 320 => 0x20f, 321 => 0x227 }, - 'hdr' => { 62 => 0x1, 224 => 0x4, 225 => 0x4, 244 => 0x23a, 247 => 0x23a, 347 => 0x9e, 382 => 0x85, 448 => 0x200a }, - 'hdrcapacitymax' => { 521 => 'HDRCapacityMax' }, - 'hdrcapacitymin' => { 521 => 'HDRCapacityMin' }, - 'hdreditmode' => { 510 => 'HDREditMode', 512 => 'HDREditMode' }, + 'hdmioutputresolution' => { 244 => 0x710, 245 => 0x720, 246 => 0x610, 247 => 0x640, 248 => 0x6a8 }, + 'hdmiviewassist' => { 321 => 0x20f, 322 => 0x227 }, + 'hdr' => { 62 => 0x1, 224 => 0x4, 225 => 0x4, 244 => 0x23a, 245 => 0x23a, 248 => 0x23a, 348 => 0x9e, 383 => 0x85, 449 => 0x200a }, + 'hdrcapacitymax' => { 522 => 'HDRCapacityMax' }, + 'hdrcapacitymin' => { 522 => 'HDRCapacityMin' }, + 'hdreditmode' => { 511 => 'HDREditMode', 513 => 'HDREditMode' }, 'hdreffect' => { 62 => 0x2 }, 'hdrgain' => { 1 => 0x30 }, 'hdrheadroom' => { 1 => 0x21 }, 'hdrimagetype' => { 1 => 0xa }, - 'hdrlevel' => { 224 => 0x5, 225 => 0x5, 244 => 0x246, 247 => 0x246, 436 => 0x2e, 453 => 0x17 }, + 'hdrlevel' => { 224 => 0x5, 225 => 0x5, 244 => 0x246, 245 => 0x246, 248 => 0x246, 437 => 0x2e, 454 => 0x17 }, 'hdrlevel2' => { 224 => 0x7 }, - 'hdrplusmakernote' => { 493 => 'HdrPlusMakernote' }, - 'hdrpmakernote' => { 493 => 'hdrp_makernote' }, - 'hdrsetting' => { 436 => 0x2d, 453 => 0x16, 457 => 0x1148, 458 => 0x1148, 459 => 0x1124, 460 => 0x11a0, 461 => 0x117c, 462 => 0x1034, 463 => 0x22c, 464 => 0x22c, 465 => 0x21f }, + 'hdrplusmakernote' => { 494 => 'HdrPlusMakernote' }, + 'hdrpmakernote' => { 494 => 'hdrp_makernote' }, + 'hdrsetting' => { 437 => 0x2d, 454 => 0x16, 458 => 0x1148, 459 => 0x1148, 460 => 0x1124, 461 => 0x11a0, 462 => 0x117c, 463 => 0x1034, 464 => 0x22c, 465 => 0x22c, 466 => 0x21f }, 'hdrsmoothing' => { 224 => 0x6 }, - 'hdvideo' => { 399 => 'hdvd' }, - 'headline' => { 134 => 0x69, 524 => 'Headline', 527 => 'Headline' }, - 'hiddendatalength' => { 446 => 0x1 }, - 'hiddendataoffset' => { 446 => 0x0 }, + 'hdvideo' => { 400 => 'hdvd' }, + 'headline' => { 134 => 0x69, 525 => 'Headline', 528 => 'Headline' }, + 'hiddendatalength' => { 447 => 0x1 }, + 'hiddendataoffset' => { 447 => 0x0 }, 'hierarchicalkeywords' => { 174 => [\'Keywords','KeywordsHierarchy'] }, 'hierarchicalkeywords1' => { 174 => [\'Keywords','KeywordsHierarchyKeyword'] }, 'hierarchicalkeywords1applied' => { 174 => [\'Keywords','KeywordsHierarchyApplied'] }, @@ -3576,60 +3581,60 @@ my %tagLookup = ( 'hierarchicalkeywords5children' => { 174 => [\'Keywords','KeywordsHierarchyChildrenChildrenChildrenChildrenChildren'] }, 'hierarchicalkeywords6' => { 174 => [\'Keywords','KeywordsHierarchyChildrenChildrenChildrenChildrenChildrenKeyword'] }, 'hierarchicalkeywords6applied' => { 174 => [\'Keywords','KeywordsHierarchyChildrenChildrenChildrenChildrenChildrenApplied'] }, - 'hierarchicalsubject' => { 502 => 'hierarchicalSubject' }, + 'hierarchicalsubject' => { 503 => 'hierarchicalSubject' }, 'highestbiostratigraphiczone' => { 121 => [\'GeologicalContext','GeologicalContextHighestBiostratigraphicZone'] }, - 'highframerate' => { 244 => 0x48, 246 => 0x48, 247 => 0x48 }, - 'highfrequencyflickerreductionshooting' => { 244 => 0x27c, 246 => 0x27c, 247 => 0x27c }, - 'highisomultiplierblue' => { 352 => 0x1a }, - 'highisomultipliergreen' => { 352 => 0x19 }, - 'highisomultiplierred' => { 352 => 0x18 }, - 'highisonoisereduction' => { 16 => 0xbc, 17 => 0xbd, 20 => 0xbd, 28 => 0xc9, 64 => 0x5, 87 => 0x202, 239 => 0xb1, 382 => 0x71, 434 => 0x2c, 435 => 0x26, 436 => 0x26, 448 => 0x2009, 453 => 0x12, 480 => 0x42 }, - 'highisonoisereduction2' => { 448 => 0xb050 }, - 'highlight' => { 424 => 0xf }, - 'highlight2012' => { 510 => 'Highlight2012', 512 => 'Highlight2012' }, + 'highframerate' => { 244 => 0x48, 245 => 0x48, 247 => 0x48, 248 => 0x48 }, + 'highfrequencyflickerreduction' => { 244 => 0x27c, 245 => 0x27c, 247 => 0x27c, 248 => 0x27c }, + 'highisomultiplierblue' => { 353 => 0x1a }, + 'highisomultipliergreen' => { 353 => 0x19 }, + 'highisomultiplierred' => { 353 => 0x18 }, + 'highisonoisereduction' => { 16 => 0xbc, 17 => 0xbd, 20 => 0xbd, 28 => 0xc9, 64 => 0x5, 87 => 0x202, 239 => 0xb1, 383 => 0x71, 435 => 0x2c, 436 => 0x26, 437 => 0x26, 449 => 0x2009, 454 => 0x12, 481 => 0x42 }, + 'highisonoisereduction2' => { 449 => 0xb050 }, + 'highlight' => { 425 => 0xf }, + 'highlight2012' => { 511 => 'Highlight2012', 513 => 'Highlight2012' }, 'highlightadj' => { 106 => 0x2030c }, - 'highlightcolordistortreduct' => { 485 => 0x8026 }, - 'highlightlinearitylimit' => { 421 => 0xa025 }, - 'highlightprotection' => { 295 => 0x6 }, - 'highlightrecovery' => { 510 => 'HighlightRecovery', 512 => 'HighlightRecovery' }, - 'highlights' => { 448 => 0x2033, 504 => 'Highlights' }, - 'highlights2012' => { 510 => 'Highlights2012', 512 => 'Highlights2012' }, - 'highlightsadj' => { 485 => 0x9019 }, - 'highlightshadow' => { 347 => 0xad }, + 'highlightcolordistortreduct' => { 486 => 0x8026 }, + 'highlightlinearitylimit' => { 422 => 0xa025 }, + 'highlightprotection' => { 296 => 0x6 }, + 'highlightrecovery' => { 511 => 'HighlightRecovery', 513 => 'HighlightRecovery' }, + 'highlights' => { 449 => 0x2033, 505 => 'Highlights' }, + 'highlights2012' => { 511 => 'Highlights2012', 513 => 'Highlights2012' }, + 'highlightsadj' => { 486 => 0x9019 }, + 'highlightshadow' => { 348 => 0xad }, 'highlighttone' => { 130 => 0x1041 }, 'highlighttonepriority' => { 13 => 0x7, 16 => 0x7, 17 => 0x7, 18 => 0x7, 20 => 0x7, 22 => 0x7, 28 => 0x7, 64 => 0x3, 87 => 0x203 }, - 'highlightwarning' => { 347 => 0x8002 }, - 'highlowkeyadj' => { 382 => 0x6c }, - 'highspeedsync' => { 187 => 0x5, 319 => 0x55, 320 => 0x55, 321 => 0x55, 434 => 0x2, 435 => 0x2 }, - 'hintversion' => { 407 => 'hinv' }, - 'histogramxml' => { 296 => 0x83a1a25 }, - 'history' => { 527 => 'History', 540 => 'History' }, - 'historyaction' => { 540 => [\'History','HistoryAction'] }, - 'historychanged' => { 540 => [\'History','HistoryChanged'] }, - 'historyinstanceid' => { 540 => [\'History','HistoryInstanceID'] }, - 'historyparameters' => { 540 => [\'History','HistoryParameters'] }, - 'historysoftwareagent' => { 540 => [\'History','HistorySoftwareAgent'] }, - 'historywhen' => { 540 => [\'History','HistoryWhen'] }, + 'highlightwarning' => { 348 => 0x8002 }, + 'highlowkeyadj' => { 383 => 0x6c }, + 'highspeedsync' => { 187 => 0x5, 320 => 0x55, 321 => 0x55, 322 => 0x55, 435 => 0x2, 436 => 0x2 }, + 'hintversion' => { 408 => 'hinv' }, + 'histogramxml' => { 297 => 0x83a1a25 }, + 'history' => { 528 => 'History', 541 => 'History' }, + 'historyaction' => { 541 => [\'History','HistoryAction'] }, + 'historychanged' => { 541 => [\'History','HistoryChanged'] }, + 'historyinstanceid' => { 541 => [\'History','HistoryInstanceID'] }, + 'historyparameters' => { 541 => [\'History','HistoryParameters'] }, + 'historysoftwareagent' => { 541 => [\'History','HistorySoftwareAgent'] }, + 'historywhen' => { 541 => [\'History','HistoryWhen'] }, 'holefilldarkdeltathreshold' => { 141 => 0xc88 }, 'holefilldeltathreshold' => { 141 => 0xc7e }, - 'hometowncity' => { 116 => 0x3006, 382 => 0x23, 388 => 0x2 }, - 'hometowncitycode' => { 389 => 0x1000 }, - 'hometowndst' => { 382 => 0x25, 388 => '0.2' }, + 'hometowncity' => { 116 => 0x3006, 383 => 0x23, 389 => 0x2 }, + 'hometowncitycode' => { 390 => 0x1000 }, + 'hometowndst' => { 383 => 0x25, 389 => '0.2' }, 'hostcomputer' => { 122 => 0x13c }, 'hostsoftwarerendering' => { 141 => 0xce7 }, - 'hue' => { 192 => 0x3b, 255 => 0x3d, 256 => 0x45, 382 => 0x67 }, - 'hueadj' => { 299 => 0x2f, 485 => 0x8019 }, - 'hueadjust' => { 414 => 0x1016 }, - 'hueadjustment' => { 185 => 0x4a, 186 => 0x40, 239 => 0x92, 254 => 0x36 }, - 'hueadjustmentaqua' => { 510 => 'HueAdjustmentAqua', 512 => 'HueAdjustmentAqua' }, - 'hueadjustmentblue' => { 510 => 'HueAdjustmentBlue', 512 => 'HueAdjustmentBlue' }, - 'hueadjustmentgreen' => { 510 => 'HueAdjustmentGreen', 512 => 'HueAdjustmentGreen' }, - 'hueadjustmentmagenta' => { 510 => 'HueAdjustmentMagenta', 512 => 'HueAdjustmentMagenta' }, - 'hueadjustmentorange' => { 510 => 'HueAdjustmentOrange', 512 => 'HueAdjustmentOrange' }, - 'hueadjustmentpurple' => { 510 => 'HueAdjustmentPurple', 512 => 'HueAdjustmentPurple' }, - 'hueadjustmentred' => { 510 => 'HueAdjustmentRed', 512 => 'HueAdjustmentRed' }, - 'hueadjustmentyellow' => { 510 => 'HueAdjustmentYellow', 512 => 'HueAdjustmentYellow' }, - 'huesetting' => { 331 => 0x1011 }, + 'hue' => { 192 => 0x3b, 256 => 0x3d, 257 => 0x45, 383 => 0x67 }, + 'hueadj' => { 300 => 0x2f, 486 => 0x8019 }, + 'hueadjust' => { 415 => 0x1016 }, + 'hueadjustment' => { 185 => 0x4a, 186 => 0x40, 239 => 0x92, 255 => 0x36 }, + 'hueadjustmentaqua' => { 511 => 'HueAdjustmentAqua', 513 => 'HueAdjustmentAqua' }, + 'hueadjustmentblue' => { 511 => 'HueAdjustmentBlue', 513 => 'HueAdjustmentBlue' }, + 'hueadjustmentgreen' => { 511 => 'HueAdjustmentGreen', 513 => 'HueAdjustmentGreen' }, + 'hueadjustmentmagenta' => { 511 => 'HueAdjustmentMagenta', 513 => 'HueAdjustmentMagenta' }, + 'hueadjustmentorange' => { 511 => 'HueAdjustmentOrange', 513 => 'HueAdjustmentOrange' }, + 'hueadjustmentpurple' => { 511 => 'HueAdjustmentPurple', 513 => 'HueAdjustmentPurple' }, + 'hueadjustmentred' => { 511 => 'HueAdjustmentRed', 513 => 'HueAdjustmentRed' }, + 'hueadjustmentyellow' => { 511 => 'HueAdjustmentYellow', 513 => 'HueAdjustmentYellow' }, + 'huesetting' => { 332 => 0x1011 }, 'humanobservation' => { 121 => 'HumanObservation' }, 'humanobservationday' => { 121 => [\'HumanObservation','HumanObservationDay'] }, 'humanobservationearliestdate' => { 121 => [\'HumanObservation','HumanObservationEarliestDate'] }, @@ -3651,13 +3656,13 @@ my %tagLookup = ( 'humanobservationstartdayofyear' => { 121 => [\'HumanObservation','HumanObservationStartDayOfYear'] }, 'humanobservationverbatimeventdate' => { 121 => [\'HumanObservation','HumanObservationVerbatimEventDate'] }, 'humanobservationyear' => { 121 => [\'HumanObservation','HumanObservationYear'] }, - 'humidity' => { 122 => 0x9401, 517 => 'Humidity' }, + 'humidity' => { 122 => 0x9401, 518 => 'Humidity' }, 'icc_profile' => { 123 => 'ICC_Profile' }, - 'iccprofilename' => { 527 => 'ICCProfile' }, - 'iconuri' => { 407 => 'icnu' }, - 'idccreativestyle' => { 485 => 0x8000 }, - 'idcpreviewlength' => { 485 => 0x202 }, - 'idcpreviewstart' => { 485 => 0x201 }, + 'iccprofilename' => { 528 => 'ICCProfile' }, + 'iconuri' => { 408 => 'icnu' }, + 'idccreativestyle' => { 486 => 0x8000 }, + 'idcpreviewlength' => { 486 => 0x202 }, + 'idcpreviewstart' => { 486 => 0x201 }, 'identification' => { 121 => 'Identification' }, 'identificationid' => { 121 => [\'Identification','IdentificationIdentificationID'] }, 'identificationqualifier' => { 121 => [\'Identification','IdentificationIdentificationQualifier'] }, @@ -3666,48 +3671,48 @@ my %tagLookup = ( 'identificationverificationstatus' => { 121 => [\'Identification','IdentificationIdentificationVerificationStatus'] }, 'identifiedby' => { 121 => [\'Identification','IdentificationIdentifiedBy'] }, 'identifiedbyid' => { 121 => [\'Identification','IdentificationIdentifiedByID'] }, - 'identifier' => { 513 => 'identifier', 537 => 'Identifier' }, + 'identifier' => { 514 => 'identifier', 538 => 'Identifier' }, 'ifcameramodel' => { 141 => 0x9c8 }, 'illuminantdata1' => { 122 => 0xcd35 }, 'illuminantdata2' => { 122 => 0xcd36 }, 'illuminantdata3' => { 122 => 0xcd37 }, - 'illumination' => { 314 => '0.5', 409 => 0x48 }, + 'illumination' => { 315 => '0.5', 410 => 0x48 }, 'imageabsolutex' => { 141 => 0x3fe }, 'imageabsolutey' => { 141 => 0x3ff }, - 'imageadjustment' => { 239 => 0x80, 285 => 0x5 }, - 'imagealterationconstraints' => { 333 => 'ImageAlterationConstraints' }, - 'imagearea' => { 229 => 0x2b, 263 => 0x2b, 271 => 0x10, 274 => 0x10 }, - 'imageareaoffset' => { 382 => 0x38 }, + 'imageadjustment' => { 239 => 0x80, 286 => 0x5 }, + 'imagealterationconstraints' => { 334 => 'ImageAlterationConstraints' }, + 'imagearea' => { 229 => 0x2b, 264 => 0x2b, 272 => 0x10, 275 => 0x10 }, + 'imageareaoffset' => { 383 => 0x38 }, 'imageauthentication' => { 239 => 0x20 }, 'imageboundary' => { 239 => 0x16 }, 'imagecapturerequestid' => { 1 => 0x20 }, 'imagecapturetype' => { 1 => 0x14 }, - 'imagecount' => { 130 => 0x1438, 239 => 0xa5, 451 => 0x11b }, - 'imagecreator' => { 333 => 'ImageCreator' }, - 'imagecreatorid' => { 333 => [\'ImageCreator','ImageCreatorImageCreatorID'] }, - 'imagecreatorimageid' => { 333 => 'ImageCreatorImageID' }, - 'imagecreatorname' => { 333 => [\'ImageCreator','ImageCreatorImageCreatorName'] }, + 'imagecount' => { 130 => 0x1438, 239 => 0xa5, 452 => 0x11b }, + 'imagecreator' => { 334 => 'ImageCreator' }, + 'imagecreatorid' => { 334 => [\'ImageCreator','ImageCreatorImageCreatorID'] }, + 'imagecreatorimageid' => { 334 => 'ImageCreatorImageID' }, + 'imagecreatorname' => { 334 => [\'ImageCreator','ImageCreatorImageCreatorName'] }, 'imagecropx' => { 141 => 0x41f }, 'imagecropy' => { 141 => 0x420 }, - 'imagedata' => { 497 => 'Data' }, + 'imagedata' => { 498 => 'Data' }, 'imagedatasize' => { 239 => 0xa2 }, - 'imagedescription' => { 122 => 0x10e, 535 => 'ImageDescription' }, - 'imageduplicationconstraints' => { 333 => 'ImageDuplicationConstraints' }, - 'imagedustoff' => { 296 => 0xfe443a45 }, - 'imageeditcount' => { 382 => 0x41 }, - 'imageediting' => { 382 => 0x32 }, + 'imagedescription' => { 122 => 0x10e, 536 => 'ImageDescription' }, + 'imageduplicationconstraints' => { 334 => 'ImageDuplicationConstraints' }, + 'imagedustoff' => { 297 => 0xfe443a45 }, + 'imageeditcount' => { 383 => 0x41 }, + 'imageediting' => { 383 => 0x32 }, 'imageeditingsoftware' => { 122 => 0xa43b }, 'imageeditor' => { 122 => 0xa438 }, - 'imageeffects' => { 414 => 0x1010 }, - 'imagefileconstraints' => { 333 => 'ImageFileConstraints' }, - 'imagefileformatasdelivered' => { 333 => 'ImageFileFormatAsDelivered' }, - 'imagefilesizeasdelivered' => { 333 => 'ImageFileSizeAsDelivered' }, + 'imageeffects' => { 415 => 0x1010 }, + 'imagefileconstraints' => { 334 => 'ImageFileConstraints' }, + 'imagefileformatasdelivered' => { 334 => 'ImageFileFormatAsDelivered' }, + 'imagefilesizeasdelivered' => { 334 => 'ImageFileSizeAsDelivered' }, 'imagegeneration' => { 130 => 0x1436 }, - 'imageheight' => { 122 => 0x101, 191 => 0xc, 391 => 0x10d, 495 => 'ImageHeight', 535 => 'ImageLength' }, - 'imagehistory' => { 122 => 0x9213, 515 => 'ImageHistory' }, - 'imageidnumber' => { 342 => 0x340 }, - 'imagemimetype' => { 497 => 'Mime' }, - 'imagenumber' => { 122 => 0x9211, 159 => 'ImageNumber', 185 => 0xae, 186 => 0x5e, 391 => 0x113, 434 => 0x9b, 436 => [0x400,'276.1',0x314], 507 => 'ImageNumber' }, + 'imageheight' => { 122 => 0x101, 191 => 0xc, 392 => 0x10d, 496 => 'ImageHeight', 536 => 'ImageLength' }, + 'imagehistory' => { 122 => 0x9213, 516 => 'ImageHistory' }, + 'imageidnumber' => { 343 => 0x340 }, + 'imagemimetype' => { 498 => 'Mime' }, + 'imagenumber' => { 122 => 0x9211, 159 => 'ImageNumber', 185 => 0xae, 186 => 0x5e, 392 => 0x113, 435 => 0x9b, 437 => [0x400,'276.1',0x314], 508 => 'ImageNumber' }, 'imagenumber2' => { 186 => 0x62 }, 'imageoptimization' => { 239 => 0xa9 }, 'imageorientation' => { 134 => 0x83 }, @@ -3715,39 +3720,39 @@ my %tagLookup = ( 'imageprocessingfiledatecreated' => { 141 => 0xc81 }, 'imageprocessingfiletagsversionnumber' => { 141 => 0xc80 }, 'imageprocessingflags' => { 1 => 0x19 }, - 'imageprocessingversion' => { 327 => 0x0 }, - 'imagequality' => { 159 => 'ImageQuality', 273 => '723.2', 274 => '732.2', 282 => '708.1', 347 => 0x1 }, - 'imagequality2' => { 323 => 0x603 }, - 'imagerank' => { 500 => 'ImageRank' }, + 'imageprocessingversion' => { 328 => 0x0 }, + 'imagequality' => { 159 => 'ImageQuality', 274 => '723.2', 275 => '732.2', 283 => '708.1', 348 => 0x1 }, + 'imagequality2' => { 324 => 0x603 }, + 'imagerank' => { 501 => 'ImageRank' }, 'imagerbiassettlingdelaymsec' => { 141 => 0x600 }, 'imagerboardversion' => { 141 => 0x439 }, 'imagercols' => { 141 => 0x17d4 }, - 'imageref' => { 522 => 'ImageRef' }, - 'imageregion' => { 524 => 'ImageRegion' }, - 'imageregionboundary' => { 524 => [\'ImageRegion','ImageRegionRegionBoundary'] }, - 'imageregionboundaryh' => { 524 => [\'ImageRegion','ImageRegionRegionBoundaryRbH'] }, - 'imageregionboundaryrx' => { 524 => [\'ImageRegion','ImageRegionRegionBoundaryRbRx'] }, - 'imageregionboundaryshape' => { 524 => [\'ImageRegion','ImageRegionRegionBoundaryRbShape'] }, - 'imageregionboundaryunit' => { 524 => [\'ImageRegion','ImageRegionRegionBoundaryRbUnit'] }, - 'imageregionboundaryvertices' => { 524 => [\'ImageRegion','ImageRegionRegionBoundaryRbVertices'] }, - 'imageregionboundaryverticesx' => { 524 => [\'ImageRegion','ImageRegionRegionBoundaryRbVerticesRbX'] }, - 'imageregionboundaryverticesy' => { 524 => [\'ImageRegion','ImageRegionRegionBoundaryRbVerticesRbY'] }, - 'imageregionboundaryw' => { 524 => [\'ImageRegion','ImageRegionRegionBoundaryRbW'] }, - 'imageregionboundaryx' => { 524 => [\'ImageRegion','ImageRegionRegionBoundaryRbX'] }, - 'imageregionboundaryy' => { 524 => [\'ImageRegion','ImageRegionRegionBoundaryRbY'] }, - 'imageregionctype' => { 524 => [\'ImageRegion','ImageRegionRCtype'] }, - 'imageregionctypeidentifier' => { 524 => [\'ImageRegion','ImageRegionRCtypeIdentifier'] }, - 'imageregionctypename' => { 524 => [\'ImageRegion','ImageRegionRCtypeName'] }, - 'imageregionid' => { 524 => [\'ImageRegion','ImageRegionRId'] }, - 'imageregionname' => { 524 => [\'ImageRegion','ImageRegionName'] }, - 'imageregionrole' => { 524 => [\'ImageRegion','ImageRegionRRole'] }, - 'imageregionroleidentifier' => { 524 => [\'ImageRegion','ImageRegionRRoleIdentifier'] }, - 'imageregionrolename' => { 524 => [\'ImageRegion','ImageRegionRRoleName'] }, + 'imageref' => { 523 => 'ImageRef' }, + 'imageregion' => { 525 => 'ImageRegion' }, + 'imageregionboundary' => { 525 => [\'ImageRegion','ImageRegionRegionBoundary'] }, + 'imageregionboundaryh' => { 525 => [\'ImageRegion','ImageRegionRegionBoundaryRbH'] }, + 'imageregionboundaryrx' => { 525 => [\'ImageRegion','ImageRegionRegionBoundaryRbRx'] }, + 'imageregionboundaryshape' => { 525 => [\'ImageRegion','ImageRegionRegionBoundaryRbShape'] }, + 'imageregionboundaryunit' => { 525 => [\'ImageRegion','ImageRegionRegionBoundaryRbUnit'] }, + 'imageregionboundaryvertices' => { 525 => [\'ImageRegion','ImageRegionRegionBoundaryRbVertices'] }, + 'imageregionboundaryverticesx' => { 525 => [\'ImageRegion','ImageRegionRegionBoundaryRbVerticesRbX'] }, + 'imageregionboundaryverticesy' => { 525 => [\'ImageRegion','ImageRegionRegionBoundaryRbVerticesRbY'] }, + 'imageregionboundaryw' => { 525 => [\'ImageRegion','ImageRegionRegionBoundaryRbW'] }, + 'imageregionboundaryx' => { 525 => [\'ImageRegion','ImageRegionRegionBoundaryRbX'] }, + 'imageregionboundaryy' => { 525 => [\'ImageRegion','ImageRegionRegionBoundaryRbY'] }, + 'imageregionctype' => { 525 => [\'ImageRegion','ImageRegionRCtype'] }, + 'imageregionctypeidentifier' => { 525 => [\'ImageRegion','ImageRegionRCtypeIdentifier'] }, + 'imageregionctypename' => { 525 => [\'ImageRegion','ImageRegionRCtypeName'] }, + 'imageregionid' => { 525 => [\'ImageRegion','ImageRegionRId'] }, + 'imageregionname' => { 525 => [\'ImageRegion','ImageRegionName'] }, + 'imageregionrole' => { 525 => [\'ImageRegion','ImageRegionRRole'] }, + 'imageregionroleidentifier' => { 525 => [\'ImageRegion','ImageRegionRRoleIdentifier'] }, + 'imageregionrolename' => { 525 => [\'ImageRegion','ImageRegionRRoleName'] }, 'imageresolution' => { 141 => 0x944 }, 'imageresolutionjpg' => { 141 => 0x945 }, - 'imagereview' => { 305 => '0.4', 314 => '0.4' }, - 'imagereviewmonitorofftime' => { 304 => '21.1', 306 => '21.1', 307 => '21.1', 311 => '20.1', 316 => '21.1', 317 => '21.1', 319 => 0x39, 320 => 0x39, 321 => 0x39 }, - 'imagereviewtime' => { 303 => '25.1', 305 => '2.1', 308 => '19.1', 309 => '20.1', 310 => '20.1', 312 => '9.2', 313 => '20.1', 318 => '21.2' }, + 'imagereview' => { 306 => '0.4', 315 => '0.4' }, + 'imagereviewmonitorofftime' => { 305 => '21.1', 307 => '21.1', 308 => '21.1', 312 => '20.1', 317 => '21.1', 318 => '21.1', 320 => 0x39, 321 => 0x39, 322 => 0x39 }, + 'imagereviewtime' => { 304 => '25.1', 306 => '2.1', 309 => '19.1', 310 => '20.1', 311 => '20.1', 313 => '9.2', 314 => '20.1', 319 => '21.2' }, 'imagerfiledatecreated' => { 141 => 0x9c5 }, 'imagerfileproductionlevel' => { 141 => 0x9c4 }, 'imagerfiletagsversionstandard' => { 141 => 0x9c7 }, @@ -3759,215 +3764,215 @@ my %tagLookup = ( 'imagesequenceinfo' => { 122 => 0xcd44 }, 'imagesize' => { 165 => 'ImageSize' }, 'imagesizeraw' => { 239 => 0x3e }, - 'imagesizerestriction' => { 532 => 'imageSizeRestriction' }, + 'imagesizerestriction' => { 533 => 'imageSizeRestriction' }, 'imagesourcedata' => { 122 => 0x935c }, 'imagespace' => { 141 => 0x909 }, - 'imagestabilization' => { 36 => 0x22, 116 => 0x3020, 130 => 0x1422, 159 => 'ImageStabilization', 185 => 0xbd, 186 => 0x71, 187 => 0x57, 188 => 0x0, 189 => [0x18,0x107,0x113], 190 => 0x49c2, 239 => 0xac, 323 => 0x604, 326 => 0x1600, 347 => 0x1a, 439 => 0x12, 440 => 0x11, 448 => 0xb026 }, - 'imagestabilization2' => { 438 => 0xa }, - 'imagestabilizationsetting' => { 190 => 0x14, 434 => 0x3d, 435 => 0x3d, 445 => 0x14 }, + 'imagestabilization' => { 36 => 0x22, 116 => 0x3020, 130 => 0x1422, 159 => 'ImageStabilization', 185 => 0xbd, 186 => 0x71, 187 => 0x57, 188 => 0x0, 189 => [0x18,0x107,0x113], 190 => 0x49c2, 239 => 0xac, 324 => 0x604, 327 => 0x1600, 348 => 0x1a, 440 => 0x12, 441 => 0x11, 449 => 0xb026 }, + 'imagestabilization2' => { 439 => 0xa }, + 'imagestabilizationsetting' => { 190 => 0x14, 435 => 0x3d, 436 => 0x3d, 446 => 0x14 }, 'imagestats' => { 122 => 0xcd46 }, - 'imagestyle' => { 434 => 0x2d, 435 => 0x27 }, - 'imagesupplier' => { 333 => 'ImageSupplier' }, - 'imagesupplierid' => { 333 => [\'ImageSupplier','ImageSupplierImageSupplierID'] }, - 'imagesupplierimageid' => { 333 => 'ImageSupplierImageID' }, - 'imagesuppliername' => { 333 => [\'ImageSupplier','ImageSupplierImageSupplierName'] }, + 'imagestyle' => { 435 => 0x2d, 436 => 0x27 }, + 'imagesupplier' => { 334 => 'ImageSupplier' }, + 'imagesupplierid' => { 334 => [\'ImageSupplier','ImageSupplierImageSupplierID'] }, + 'imagesupplierimageid' => { 334 => 'ImageSupplierImageID' }, + 'imagesuppliername' => { 334 => [\'ImageSupplier','ImageSupplierImageSupplierName'] }, 'imagetemperaturemax' => { 124 => 0x1 }, 'imagetemperaturemin' => { 124 => 0x2 }, - 'imagetone' => { 382 => 0x4f }, - 'imagetype' => { 134 => 0x82, 333 => 'ImageType' }, - 'imageuniqueid' => { 1 => 0x15, 66 => 0x28, 122 => 0xa420, 515 => 'ImageUniqueID', 516 => 'ImageUniqueID' }, - 'imagewidth' => { 122 => 0x100, 191 => 0xe, 391 => 0x10c, 495 => 'ImageWidth', 535 => 'ImageWidth' }, - 'inclinationangle' => { 485 => 0x900f }, - 'inclinationcorrection' => { 485 => 0x900e }, - 'incrementaltemperature' => { 510 => 'IncrementalTemperature', 512 => 'IncrementalTemperature' }, - 'incrementaltint' => { 510 => 'IncrementalTint', 512 => 'IncrementalTint' }, - 'industry' => { 529 => 'industry', 530 => 'industry' }, + 'imagetone' => { 383 => 0x4f }, + 'imagetype' => { 134 => 0x82, 334 => 'ImageType' }, + 'imageuniqueid' => { 1 => 0x15, 66 => 0x28, 122 => 0xa420, 516 => 'ImageUniqueID', 517 => 'ImageUniqueID' }, + 'imagewidth' => { 122 => 0x100, 191 => 0xe, 392 => 0x10c, 496 => 'ImageWidth', 536 => 'ImageWidth' }, + 'inclinationangle' => { 486 => 0x900f }, + 'inclinationcorrection' => { 486 => 0x900e }, + 'incrementaltemperature' => { 511 => 'IncrementalTemperature', 513 => 'IncrementalTemperature' }, + 'incrementaltint' => { 511 => 'IncrementalTint', 513 => 'IncrementalTint' }, + 'industry' => { 530 => 'industry', 531 => 'industry' }, 'infobuttonwhenshooting' => { 87 => 0x409 }, - 'information' => { 401 => 'information', 407 => "\xa9inf" }, - 'infourl' => { 407 => 'infu' }, - 'infraredilluminator' => { 408 => 0x28 }, - 'ingredientexclusion' => { 531 => 'ingredientExclusion' }, - 'ingredients' => { 540 => 'Ingredients' }, - 'ingredientsalternatepaths' => { 540 => [\'Ingredients','IngredientsAlternatePaths'] }, - 'ingredientsdocumentid' => { 540 => [\'Ingredients','IngredientsDocumentID'] }, - 'ingredientsfilepath' => { 540 => [\'Ingredients','IngredientsFilePath'] }, - 'ingredientsfrompart' => { 540 => [\'Ingredients','IngredientsFromPart'] }, - 'ingredientsinstanceid' => { 540 => [\'Ingredients','IngredientsInstanceID'] }, - 'ingredientslastmodifydate' => { 540 => [\'Ingredients','IngredientsLastModifyDate'] }, - 'ingredientslasturl' => { 540 => [\'Ingredients','IngredientsLastURL'] }, - 'ingredientslinkcategory' => { 540 => [\'Ingredients','IngredientsLinkCategory'] }, - 'ingredientslinkform' => { 540 => [\'Ingredients','IngredientsLinkForm'] }, - 'ingredientsmanager' => { 540 => [\'Ingredients','IngredientsManager'] }, - 'ingredientsmanagervariant' => { 540 => [\'Ingredients','IngredientsManagerVariant'] }, - 'ingredientsmanageto' => { 540 => [\'Ingredients','IngredientsManageTo'] }, - 'ingredientsmanageui' => { 540 => [\'Ingredients','IngredientsManageUI'] }, - 'ingredientsmaskmarkers' => { 540 => [\'Ingredients','IngredientsMaskMarkers'] }, - 'ingredientsoriginaldocumentid' => { 540 => [\'Ingredients','IngredientsOriginalDocumentID'] }, - 'ingredientspartmapping' => { 540 => [\'Ingredients','IngredientsPartMapping'] }, - 'ingredientsplacedresolutionunit' => { 540 => [\'Ingredients','IngredientsPlacedResolutionUnit'] }, - 'ingredientsplacedxresolution' => { 540 => [\'Ingredients','IngredientsPlacedXResolution'] }, - 'ingredientsplacedyresolution' => { 540 => [\'Ingredients','IngredientsPlacedYResolution'] }, - 'ingredientsrenditionclass' => { 540 => [\'Ingredients','IngredientsRenditionClass'] }, - 'ingredientsrenditionparams' => { 540 => [\'Ingredients','IngredientsRenditionParams'] }, - 'ingredientstopart' => { 540 => [\'Ingredients','IngredientsToPart'] }, - 'ingredientsversionid' => { 540 => [\'Ingredients','IngredientsVersionID'] }, + 'information' => { 402 => 'information', 408 => "\xa9inf" }, + 'infourl' => { 408 => 'infu' }, + 'infraredilluminator' => { 409 => 0x28 }, + 'ingredientexclusion' => { 532 => 'ingredientExclusion' }, + 'ingredients' => { 541 => 'Ingredients' }, + 'ingredientsalternatepaths' => { 541 => [\'Ingredients','IngredientsAlternatePaths'] }, + 'ingredientsdocumentid' => { 541 => [\'Ingredients','IngredientsDocumentID'] }, + 'ingredientsfilepath' => { 541 => [\'Ingredients','IngredientsFilePath'] }, + 'ingredientsfrompart' => { 541 => [\'Ingredients','IngredientsFromPart'] }, + 'ingredientsinstanceid' => { 541 => [\'Ingredients','IngredientsInstanceID'] }, + 'ingredientslastmodifydate' => { 541 => [\'Ingredients','IngredientsLastModifyDate'] }, + 'ingredientslasturl' => { 541 => [\'Ingredients','IngredientsLastURL'] }, + 'ingredientslinkcategory' => { 541 => [\'Ingredients','IngredientsLinkCategory'] }, + 'ingredientslinkform' => { 541 => [\'Ingredients','IngredientsLinkForm'] }, + 'ingredientsmanager' => { 541 => [\'Ingredients','IngredientsManager'] }, + 'ingredientsmanagervariant' => { 541 => [\'Ingredients','IngredientsManagerVariant'] }, + 'ingredientsmanageto' => { 541 => [\'Ingredients','IngredientsManageTo'] }, + 'ingredientsmanageui' => { 541 => [\'Ingredients','IngredientsManageUI'] }, + 'ingredientsmaskmarkers' => { 541 => [\'Ingredients','IngredientsMaskMarkers'] }, + 'ingredientsoriginaldocumentid' => { 541 => [\'Ingredients','IngredientsOriginalDocumentID'] }, + 'ingredientspartmapping' => { 541 => [\'Ingredients','IngredientsPartMapping'] }, + 'ingredientsplacedresolutionunit' => { 541 => [\'Ingredients','IngredientsPlacedResolutionUnit'] }, + 'ingredientsplacedxresolution' => { 541 => [\'Ingredients','IngredientsPlacedXResolution'] }, + 'ingredientsplacedyresolution' => { 541 => [\'Ingredients','IngredientsPlacedYResolution'] }, + 'ingredientsrenditionclass' => { 541 => [\'Ingredients','IngredientsRenditionClass'] }, + 'ingredientsrenditionparams' => { 541 => [\'Ingredients','IngredientsRenditionParams'] }, + 'ingredientstopart' => { 541 => [\'Ingredients','IngredientsToPart'] }, + 'ingredientsversionid' => { 541 => [\'Ingredients','IngredientsVersionID'] }, 'initialafpointaiservoaf' => { 87 => 0x51e }, 'initialafpointinservo' => { 2 => 0x13 }, - 'initialcameradolly' => { 498 => 'InitialCameraDolly' }, - 'initialhorizontalfovdegrees' => { 498 => 'InitialHorizontalFOVDegrees' }, + 'initialcameradolly' => { 499 => 'InitialCameraDolly' }, + 'initialhorizontalfovdegrees' => { 499 => 'InitialHorizontalFOVDegrees' }, 'initialkey' => { 182 => 'WM/InitialKey' }, - 'initialverticalfovdegrees' => { 498 => 'InitialVerticalFOVDegrees' }, - 'initialviewheadingdegrees' => { 498 => 'InitialViewHeadingDegrees', 499 => 'InitialViewHeadingDegrees' }, - 'initialviewpitchdegrees' => { 498 => 'InitialViewPitchDegrees', 499 => 'InitialViewPitchDegrees' }, - 'initialviewrolldegrees' => { 498 => 'InitialViewRollDegrees', 499 => 'InitialViewRollDegrees' }, - 'initialzoomliveview' => { 303 => '4.4' }, - 'initialzoomsetting' => { 303 => '9.3', 312 => '27.3' }, + 'initialverticalfovdegrees' => { 499 => 'InitialVerticalFOVDegrees' }, + 'initialviewheadingdegrees' => { 499 => 'InitialViewHeadingDegrees', 500 => 'InitialViewHeadingDegrees' }, + 'initialviewpitchdegrees' => { 499 => 'InitialViewPitchDegrees', 500 => 'InitialViewPitchDegrees' }, + 'initialviewrolldegrees' => { 499 => 'InitialViewRollDegrees', 500 => 'InitialViewRollDegrees' }, + 'initialzoomliveview' => { 304 => '4.4' }, + 'initialzoomsetting' => { 304 => '9.3', 313 => '27.3' }, 'inkset' => { 122 => 0x14c }, 'inputprofile' => { 141 => 0x1389 }, - 'instanceid' => { 540 => 'InstanceID' }, + 'instanceid' => { 541 => 'InstanceID' }, 'instantplaybacksetup' => { 187 => 0x3e }, 'instantplaybacktime' => { 187 => 0x3d }, - 'instructions' => { 527 => 'Instructions' }, - 'instrument' => { 539 => 'instrument' }, + 'instructions' => { 528 => 'Instructions' }, + 'instrument' => { 540 => 'instrument' }, 'integrationtime' => { 141 => 0x423 }, - 'intellectualgenre' => { 523 => 'IntellectualGenre' }, - 'intelligentauto' => { 448 => 0xb052, 476 => 0xd, 477 => 0xe, 478 => 0xd }, + 'intellectualgenre' => { 524 => 'IntellectualGenre' }, + 'intelligentauto' => { 449 => 0xb052, 477 => 0xd, 478 => 0xe, 479 => 0xd }, 'intelligentcontrast' => { 54 => 0x4 }, - 'intelligentd-range' => { 347 => 0x79 }, - 'intelligentexposure' => { 347 => 0x5d }, - 'intelligentresolution' => { 347 => 0x70 }, + 'intelligentd-range' => { 348 => 0x79 }, + 'intelligentexposure' => { 348 => 0x5d }, + 'intelligentresolution' => { 348 => 0x70 }, 'interchangecolorspace' => { 136 => 0x40 }, 'intergraphmatrix' => { 122 => 0x8480 }, - 'internalflash' => { 184 => 0x2b, 303 => '23.1', 305 => '8.1', 308 => '22.1', 310 => '23.1', 314 => '8.1', 318 => '24.1', 326 => 0x1208 }, - 'internalflashae1' => { 328 => 0x1021 }, - 'internalflashae1_0' => { 328 => 0x101d }, - 'internalflashae2' => { 328 => 0x1022 }, - 'internalflashae2_0' => { 328 => 0x101e }, - 'internalflashmode' => { 370 => 0x1 }, - 'internalflashstrength' => { 370 => 0x3 }, - 'internalflashtable' => { 328 => 0x1024 }, - 'internallensserialnumber' => { 421 => 0xa005 }, - 'internalndfilter' => { 347 => 0x9d }, - 'internalserialnumber' => { 66 => 0x96, 78 => 0x9, 130 => 0x10, 190 => 0x49dc, 322 => 0x18, 324 => 0x102, 344 => 0x500, 347 => 0x25, 362 => 0x4, 414 => 0x5, 467 => [0x7c,0xf0], 468 => 0x88, 469 => [0x88,0x8a], 470 => 0x38 }, - 'interopindex' => { 122 => 0x1, 517 => 'InteroperabilityIndex' }, + 'internalflash' => { 184 => 0x2b, 304 => '23.1', 306 => '8.1', 309 => '22.1', 311 => '23.1', 315 => '8.1', 319 => '24.1', 327 => 0x1208 }, + 'internalflashae1' => { 329 => 0x1021 }, + 'internalflashae1_0' => { 329 => 0x101d }, + 'internalflashae2' => { 329 => 0x1022 }, + 'internalflashae2_0' => { 329 => 0x101e }, + 'internalflashmode' => { 371 => 0x1 }, + 'internalflashstrength' => { 371 => 0x3 }, + 'internalflashtable' => { 329 => 0x1024 }, + 'internallensserialnumber' => { 422 => 0xa005 }, + 'internalndfilter' => { 348 => 0x9d }, + 'internalserialnumber' => { 66 => 0x96, 78 => 0x9, 130 => 0x10, 190 => 0x49dc, 323 => 0x18, 325 => 0x102, 345 => 0x500, 348 => 0x25, 363 => 0x4, 415 => 0x5, 468 => [0x7c,0xf0], 469 => 0x88, 470 => [0x88,0x8a], 471 => 0x38 }, + 'interopindex' => { 122 => 0x1, 518 => 'InteroperabilityIndex' }, 'interopversion' => { 122 => 0x2 }, - 'interval' => { 261 => 0x20 }, - 'intervaldurationhours' => { 243 => 0xa0, 244 => 0xb8 }, - 'intervaldurationminutes' => { 243 => 0xa4, 244 => 0xbc }, - 'intervaldurationseconds' => { 243 => 0xa8, 244 => 0xc0 }, - 'intervalexposuresmoothing' => { 228 => 0x184, 243 => 0xb8, 244 => 0xd0 }, - 'intervalframe' => { 261 => 0x24 }, + 'interval' => { 262 => 0x20 }, + 'intervaldurationhours' => { 243 => 0xa0, 244 => 0xb8, 245 => 0xb8 }, + 'intervaldurationminutes' => { 243 => 0xa4, 244 => 0xbc, 245 => 0xbc }, + 'intervaldurationseconds' => { 243 => 0xa8, 244 => 0xc0, 245 => 0xc0 }, + 'intervalexposuresmoothing' => { 228 => 0x184, 243 => 0xb8, 244 => 0xd0, 245 => 0xd0 }, + 'intervalframe' => { 262 => 0x24 }, 'intervallength' => { 184 => 0x10 }, 'intervalmode' => { 184 => 0x26 }, 'intervalnumber' => { 184 => 0x11 }, - 'intervalpriority' => { 228 => 0x186, 243 => 0xba, 244 => 0xd2 }, - 'intervals' => { 228 => 0x17c, 243 => 0xb0, 244 => 0xc8, 245 => 0xbc, 246 => 0xcc, 247 => 0xcc }, - 'intervalshooting' => { 229 => 0x24, 263 => 0x24, 264 => 0x28, 382 => 0x92 }, - 'introtime' => { 539 => 'introTime' }, - 'introtimescale' => { 539 => [\'introTime','introTimeScale'] }, - 'introtimevalue' => { 539 => [\'introTime','introTimeValue'] }, + 'intervalpriority' => { 228 => 0x186, 243 => 0xba, 244 => 0xd2, 245 => 0xd2 }, + 'intervals' => { 228 => 0x17c, 243 => 0xb0, 244 => 0xc8, 245 => 0xc8, 246 => 0xbc, 247 => 0xcc, 248 => 0xcc }, + 'intervalshooting' => { 229 => 0x24, 264 => 0x24, 265 => 0x28, 383 => 0x92 }, + 'introtime' => { 540 => 'introTime' }, + 'introtimescale' => { 540 => [\'introTime','introTimeScale'] }, + 'introtimevalue' => { 540 => [\'introTime','introTimeValue'] }, 'ipaversion' => { 141 => 0xdae }, 'ipfcameramodel' => { 141 => 0xe4d }, 'iptc' => { 123 => 'IPTC' }, - 'iptc-naa' => { 122 => 0x83bb, 352 => 0x83bb }, + 'iptc-naa' => { 122 => 0x83bb, 353 => 0x83bb }, 'iptcbitspersample' => { 136 => 0x56 }, - 'iptcdigest' => { 396 => 0x425 }, + 'iptcdigest' => { 397 => 0x425 }, 'iptcimageheight' => { 136 => 0x1e }, 'iptcimagerotation' => { 136 => 0x66 }, 'iptcimagewidth' => { 136 => 0x14 }, - 'iptclastedited' => { 524 => 'IptcLastEdited' }, + 'iptclastedited' => { 525 => 'IptcLastEdited' }, 'iptcpicturenumber' => { 136 => 0xa }, 'iptcpixelheight' => { 136 => 0x32 }, 'iptcpixelwidth' => { 136 => 0x28 }, - 'isalternativeof' => { 529 => 'isAlternativeOf' }, - 'isbn' => { 529 => 'isbn' }, - 'iscorrectionof' => { 529 => 'isCorrectionOf' }, + 'isalternativeof' => { 530 => 'isAlternativeOf' }, + 'isbn' => { 530 => 'isbn' }, + 'iscorrectionof' => { 530 => 'isCorrectionOf' }, 'iscustompicturestyle' => { 112 => 0x3 }, - 'ismergedhdr' => { 507 => 'IsMergedHDR' }, - 'ismergedpanorama' => { 507 => '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, 31 => 0x0, 32 => 0x1, 115 => 0x14, 116 => [0x3014,0x14], 122 => 0x8827, 140 => 0xfd06, 141 => 0x1784, 143 => 0x60, 145 => [0xfa2e,0xfa46], 146 => [0x27,0x28], 147 => 0xf105, 150 => 0x14, 152 => 0x4e, 154 => 0x1e, 155 => 0x1a, 157 => 0x34, 159 => 'ISO', 184 => 0x8, 190 => 0x49ba, 227 => 0x0, 239 => 0x2, 347 => 0xd1, 352 => 0x17, 382 => [0x8b,0x14], 389 => 0x14, 391 => 0x105, 421 => 0xa014, 424 => 0x86, 445 => 0x6f, 453 => [0x1f,0x21,0x25], 516 => 'ISOSpeedRatings' }, - 'iso2' => { 227 => 0x6, 268 => 0x265, 269 => 0x25c, 270 => 0x265, 271 => 0x221, 272 => 0x25d, 273 => 0x256, 274 => 0x25d, 277 => 0x2b5, 280 => 0x265, 284 => 0x2b5 }, - 'isoauto' => { 363 => '14.4' }, - 'isoautoflashlimit' => { 244 => 0x156, 245 => 0x146, 246 => 0x15a, 247 => 0x15a }, - 'isoautohilimit' => { 226 => 0x5, 244 => 0x154, 245 => 0x144, 246 => 0x158, 247 => 0x158, 266 => 0x5, 276 => 0x18eb }, - 'isoautomax' => { 447 => 0x4 }, - 'isoautomin' => { 447 => 0x2 }, - 'isoautominspeed' => { 382 => 0x7a }, - 'isoautoshuttertime' => { 226 => 0x4, 244 => 0x15e, 245 => 0x14e, 246 => 0x162, 247 => 0x162, 266 => 0x4, 276 => 0x18ea }, - 'isobutton' => { 247 => 0x796 }, + 'ismergedhdr' => { 508 => 'IsMergedHDR' }, + 'ismergedpanorama' => { 508 => '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, 31 => 0x0, 32 => 0x1, 115 => 0x14, 116 => [0x3014,0x14], 122 => 0x8827, 140 => 0xfd06, 141 => 0x1784, 143 => 0x60, 145 => [0xfa2e,0xfa46], 146 => [0x27,0x28], 147 => 0xf105, 150 => 0x14, 152 => 0x4e, 154 => 0x1e, 155 => 0x1a, 157 => 0x34, 159 => 'ISO', 184 => 0x8, 190 => 0x49ba, 227 => 0x0, 239 => 0x2, 348 => 0xd1, 353 => 0x17, 383 => [0x8b,0x14], 390 => 0x14, 392 => 0x105, 422 => 0xa014, 425 => 0x86, 446 => 0x6f, 454 => [0x1f,0x21,0x25], 517 => 'ISOSpeedRatings' }, + 'iso2' => { 227 => 0x6, 269 => 0x265, 270 => 0x25c, 271 => 0x265, 272 => 0x221, 273 => 0x25d, 274 => 0x256, 275 => 0x25d, 278 => 0x2b5, 281 => 0x265, 285 => 0x2b5 }, + 'isoauto' => { 364 => '14.4' }, + 'isoautoflashlimit' => { 244 => 0x156, 245 => 0x156, 246 => 0x146, 247 => 0x15a, 248 => 0x15a }, + 'isoautohilimit' => { 226 => 0x5, 244 => 0x154, 245 => 0x154, 246 => 0x144, 247 => 0x158, 248 => 0x158, 267 => 0x5, 277 => 0x18eb }, + 'isoautomax' => { 448 => 0x4 }, + 'isoautomin' => { 448 => 0x2 }, + 'isoautominspeed' => { 383 => 0x7a }, + 'isoautoshuttertime' => { 226 => 0x4, 244 => 0x15e, 245 => 0x15e, 246 => 0x14e, 247 => 0x162, 248 => 0x162, 267 => 0x4, 277 => 0x18ea }, + 'isobutton' => { 248 => 0x796 }, 'isocalibrationgain' => { 141 => 0x89f }, - 'isodisplay' => { 306 => '4.1', 307 => '4.1', 308 => '2.3', 309 => '3.3', 310 => '3.3', 313 => '3.3', 316 => '4.3', 317 => '4.1', 318 => '4.3' }, + 'isodisplay' => { 307 => '4.1', 308 => '4.1', 309 => '2.3', 310 => '3.3', 311 => '3.3', 314 => '3.3', 317 => '4.3', 318 => '4.1', 319 => '4.3' }, 'isoexpansion' => { 87 => 0x103, 88 => 0x7, 89 => 0x8, 92 => 0x8, 227 => 0x4 }, 'isoexpansion2' => { 227 => 0xa }, - 'isofloor' => { 363 => 0x6 }, - 'isoselected' => { 346 => 0x359 }, + 'isofloor' => { 364 => 0x6 }, + 'isoselected' => { 347 => 0x359 }, 'isoselection' => { 239 => 0xf }, - 'isosensitivitystep' => { 311 => '6.2', 313 => '6.2' }, - 'isosetting' => { 143 => 0x5e, 155 => 0x14, 159 => 'ISOSetting', 184 => 0x24, 185 => 0x26, 186 => 0x1c, 187 => 0x13, 192 => 0x6, 239 => 0x13, 363 => '17.3', 413 => 0x27, 434 => 0x16, 435 => 0x14, 436 => 0x2, 445 => 0x6d, 447 => 0x0 }, - 'isospeed' => { 122 => 0x8833, 517 => 'ISOSpeed' }, + 'isosensitivitystep' => { 312 => '6.2', 314 => '6.2' }, + 'isosetting' => { 143 => 0x5e, 155 => 0x14, 159 => 'ISOSetting', 184 => 0x24, 185 => 0x26, 186 => 0x1c, 187 => 0x13, 192 => 0x6, 239 => 0x13, 364 => '17.3', 414 => 0x27, 435 => 0x16, 436 => 0x14, 437 => 0x2, 446 => 0x6d, 448 => 0x0 }, + 'isospeed' => { 122 => 0x8833, 518 => 'ISOSpeed' }, 'isospeedexpansion' => { 86 => 0x3 }, 'isospeedincrements' => { 87 => 0x102 }, - 'isospeedlatitudeyyy' => { 122 => 0x8834, 517 => 'ISOSpeedLatitudeyyy' }, - 'isospeedlatitudezzz' => { 122 => 0x8835, 517 => 'ISOSpeedLatitudezzz' }, + 'isospeedlatitudeyyy' => { 122 => 0x8834, 518 => 'ISOSpeedLatitudeyyy' }, + 'isospeedlatitudezzz' => { 122 => 0x8835, 518 => 'ISOSpeedLatitudezzz' }, 'isospeedrange' => { 87 => 0x103 }, - 'isostepsize' => { 303 => '6.1', 304 => '7.2', 306 => '7.2', 307 => '7.2', 312 => '4.1', 316 => '7.2', 317 => '7.2', 319 => 0x15d, 320 => 0x15d, 321 => 0x175 }, - 'isovalue' => { 328 => 0x1001 }, - 'isrc' => { 399 => 'xid ' }, - 'isrccode' => { 407 => "\xa9isr" }, - 'issn' => { 529 => 'issn' }, - 'issueidentifier' => { 529 => 'issueIdentifier' }, - 'issuename' => { 529 => 'issueName' }, - 'issueteaser' => { 529 => 'issueTeaser' }, - 'issuetype' => { 529 => 'issueType' }, - 'istranslationof' => { 529 => 'isTranslationOf' }, + 'isostepsize' => { 304 => '6.1', 305 => '7.2', 307 => '7.2', 308 => '7.2', 313 => '4.1', 317 => '7.2', 318 => '7.2', 320 => 0x15d, 321 => 0x15d, 322 => 0x175 }, + 'isovalue' => { 329 => 0x1001 }, + 'isrc' => { 400 => 'xid ' }, + 'isrccode' => { 408 => "\xa9isr" }, + 'issn' => { 530 => 'issn' }, + 'issueidentifier' => { 530 => 'issueIdentifier' }, + 'issuename' => { 530 => 'issueName' }, + 'issueteaser' => { 530 => 'issueTeaser' }, + 'issuetype' => { 530 => 'issueType' }, + 'istranslationof' => { 530 => 'isTranslationOf' }, 'itemsubtype' => { 181 => 'ItemSubType' }, - 'itunesu' => { 399 => 'itnu' }, + 'itunesu' => { 400 => 'itnu' }, 'jobid' => { 134 => 0xb8 }, - 'jobname' => { 518 => 'JobName' }, - 'jobref' => { 538 => 'JobRef' }, - 'jobrefid' => { 538 => [\'JobRef','JobRefId'] }, - 'jobrefname' => { 538 => [\'JobRef','JobRefName'] }, - 'jobrefurl' => { 538 => [\'JobRef','JobRefUrl'] }, - 'jobstatus' => { 518 => 'JobStatus' }, - 'jpeg-heifswitch' => { 448 => 0x2039 }, - 'jpeghandling' => { 510 => 'JPEGHandling', 512 => 'JPEGHandling' }, - 'jpegquality' => { 10 => 0x66, 347 => 0x43, 349 => 0x3034, 448 => 0xb047 }, - 'jpegsize' => { 349 => 0x303a }, - 'jpgcompression' => { 230 => 0x24, 239 => 0x44, 271 => '671.1' }, - 'jpgfromraw' => { 100 => 0x2007, 117 => 'Exif-JpgFromRaw', 352 => 0x2e }, + 'jobname' => { 519 => 'JobName' }, + 'jobref' => { 539 => 'JobRef' }, + 'jobrefid' => { 539 => [\'JobRef','JobRefId'] }, + 'jobrefname' => { 539 => [\'JobRef','JobRefName'] }, + 'jobrefurl' => { 539 => [\'JobRef','JobRefUrl'] }, + 'jobstatus' => { 519 => 'JobStatus' }, + 'jpeg-heifswitch' => { 449 => 0x2039 }, + 'jpeghandling' => { 511 => 'JPEGHandling', 513 => 'JPEGHandling' }, + 'jpegquality' => { 10 => 0x66, 348 => 0x43, 350 => 0x3034, 449 => 0xb047 }, + 'jpegsize' => { 350 => 0x303a }, + 'jpgcompression' => { 230 => 0x24, 239 => 0x44, 272 => '671.1' }, + 'jpgfromraw' => { 100 => 0x2007, 117 => 'Exif-JpgFromRaw', 353 => 0x2e }, 'jpgfromrawlength' => { 122 => [0x117,0x202] }, 'jpgfromrawstart' => { 122 => [0x111,0x201] }, - 'jpgrecordedpixels' => { 363 => '14.1' }, - 'jurisdiction' => { 508 => 'jurisdiction' }, - 'keepexposure' => { 319 => 0x237, 320 => 0x237, 321 => 0x24f }, - 'kelvinwb_01' => { 371 => 0x5 }, - 'kelvinwb_02' => { 371 => 0x9 }, - 'kelvinwb_03' => { 371 => 0xd }, - 'kelvinwb_04' => { 371 => 0x11 }, - 'kelvinwb_05' => { 371 => 0x15 }, - 'kelvinwb_06' => { 371 => 0x19 }, - 'kelvinwb_07' => { 371 => 0x1d }, - 'kelvinwb_08' => { 371 => 0x21 }, - 'kelvinwb_09' => { 371 => 0x25 }, - 'kelvinwb_10' => { 371 => 0x29 }, - 'kelvinwb_11' => { 371 => 0x2d }, - 'kelvinwb_12' => { 371 => 0x31 }, - 'kelvinwb_13' => { 371 => 0x35 }, - 'kelvinwb_14' => { 371 => 0x39 }, - 'kelvinwb_15' => { 371 => 0x3d }, - 'kelvinwb_16' => { 371 => 0x41 }, - 'kelvinwb_daylight' => { 371 => 0x1 }, + 'jpgrecordedpixels' => { 364 => '14.1' }, + 'jurisdiction' => { 509 => 'jurisdiction' }, + 'keepexposure' => { 320 => 0x237, 321 => 0x237, 322 => 0x24f }, + 'kelvinwb_01' => { 372 => 0x5 }, + 'kelvinwb_02' => { 372 => 0x9 }, + 'kelvinwb_03' => { 372 => 0xd }, + 'kelvinwb_04' => { 372 => 0x11 }, + 'kelvinwb_05' => { 372 => 0x15 }, + 'kelvinwb_06' => { 372 => 0x19 }, + 'kelvinwb_07' => { 372 => 0x1d }, + 'kelvinwb_08' => { 372 => 0x21 }, + 'kelvinwb_09' => { 372 => 0x25 }, + 'kelvinwb_10' => { 372 => 0x29 }, + 'kelvinwb_11' => { 372 => 0x2d }, + 'kelvinwb_12' => { 372 => 0x31 }, + 'kelvinwb_13' => { 372 => 0x35 }, + 'kelvinwb_14' => { 372 => 0x39 }, + 'kelvinwb_15' => { 372 => 0x3d }, + 'kelvinwb_16' => { 372 => 0x41 }, + 'kelvinwb_daylight' => { 372 => 0x1 }, 'kerneldenominators' => { 141 => 0x933 }, - 'key' => { 539 => 'key' }, - 'keystonecompensation' => { 327 => 0x1900 }, - 'keystonedirection' => { 327 => 0x1901 }, - 'keystonevalue' => { 327 => 0x1906 }, - 'keyword' => { 399 => 'keyw', 529 => 'keyword' }, + 'key' => { 540 => 'key' }, + 'keystonecompensation' => { 328 => 0x1900 }, + 'keystonedirection' => { 328 => 0x1901 }, + 'keystonevalue' => { 328 => 0x1906 }, + 'keyword' => { 400 => 'keyw', 530 => 'keyword' }, 'keywordinfo' => { 174 => 'Keywords' }, - 'keywords' => { 134 => 0x19, 160 => 'Keywords', 332 => 'Keywords', 398 => 'Keywords', 401 => 'keywords', 505 => 'keywords', 526 => 'Keywords', 537 => 'Keywords' }, - 'killdate' => { 529 => 'killDate' }, - 'killdatea-platform' => { 529 => [\'killDate','killDateA-platform'] }, - 'killdatedate' => { 529 => [\'killDate','killDateDate'] }, + 'keywords' => { 134 => 0x19, 160 => 'Keywords', 333 => 'Keywords', 399 => 'Keywords', 402 => 'keywords', 506 => 'keywords', 527 => 'Keywords', 538 => 'Keywords' }, + 'killdate' => { 530 => 'killDate' }, + 'killdatea-platform' => { 530 => [\'killDate','killDateA-platform'] }, + 'killdatedate' => { 530 => [\'killDate','killDateDate'] }, 'kodakimageheight' => { 140 => 0xf908, 143 => 0xe, 145 => [0xfa1e,0xfa52], 151 => 0x70 }, 'kodakimagewidth' => { 140 => 0xf907, 143 => 0xc, 145 => [0xfa1d,0xfa51], 151 => 0x6c }, 'kodakinfotype' => { 140 => 0xfa00 }, @@ -3977,14 +3982,14 @@ my %tagLookup = ( 'kodakmodel' => { 143 => 0x0, 151 => 0x28 }, 'kodaktag' => { 141 => 0x3ea }, 'kodakversion' => { 141 => 0x0 }, - 'label' => { 336 => 'Label', 537 => 'Label' }, - 'labelname1' => { 522 => [\'TagStructure','TagStructureLabelName'] }, - 'labelname2' => { 522 => [\'TagStructure','TagStructureSubLabelsLabelName'] }, - 'labelname3' => { 522 => [\'TagStructure','TagStructureSubLabelsSubLabelsLabelName'] }, - 'labelname4' => { 522 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsLabelName'] }, - 'labelname5' => { 522 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsLabelName'] }, - 'labelname6' => { 522 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsLabelName'] }, - 'landmark' => { 347 => 0x6f }, + 'label' => { 337 => 'Label', 538 => 'Label' }, + 'labelname1' => { 523 => [\'TagStructure','TagStructureLabelName'] }, + 'labelname2' => { 523 => [\'TagStructure','TagStructureSubLabelsLabelName'] }, + 'labelname3' => { 523 => [\'TagStructure','TagStructureSubLabelsSubLabelsLabelName'] }, + 'labelname4' => { 523 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsLabelName'] }, + 'labelname5' => { 523 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsLabelName'] }, + 'labelname6' => { 523 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsLabelName'] }, + 'landmark' => { 348 => 0x6f }, 'landscapeoutputhighlightpoint' => { 112 => 0x26 }, 'landscapeoutputshadowpoint' => { 112 => 0x27 }, 'landscaperawcolortone' => { 112 => 0x1f }, @@ -3999,320 +4004,320 @@ my %tagLookup = ( 'landscapeunsharpmaskfineness' => { 112 => 0xa0 }, 'landscapeunsharpmaskstrength' => { 112 => 0x9e }, 'landscapeunsharpmaskthreshold' => { 112 => 0xa2 }, - 'language' => { 244 => 0x692, 245 => 0x592, 246 => 0x5c2, 247 => 0x5da, 513 => 'language' }, + 'language' => { 244 => 0x6a2, 245 => 0x6a2, 246 => 0x592, 247 => 0x5c2, 248 => 0x5da, 514 => 'language' }, 'languageidentifier' => { 134 => 0x87 }, - 'largestvalidinteriorrectheight' => { 498 => 'LargestValidInteriorRectHeight' }, - 'largestvalidinteriorrectleft' => { 498 => 'LargestValidInteriorRectLeft' }, - 'largestvalidinteriorrecttop' => { 498 => 'LargestValidInteriorRectTop' }, - 'largestvalidinteriorrectwidth' => { 498 => 'LargestValidInteriorRectWidth' }, + 'largestvalidinteriorrectheight' => { 499 => 'LargestValidInteriorRectHeight' }, + 'largestvalidinteriorrectleft' => { 499 => 'LargestValidInteriorRectLeft' }, + 'largestvalidinteriorrecttop' => { 499 => 'LargestValidInteriorRectTop' }, + 'largestvalidinteriorrectwidth' => { 499 => 'LargestValidInteriorRectWidth' }, 'lastfilenumber' => { 184 => 0x1b }, 'lastkeywordiptc' => { 181 => 'LastKeywordIPTC' }, 'lastkeywordxmp' => { 181 => 'LastKeywordXMP' }, - 'lastphotodate' => { 498 => 'LastPhotoDate' }, - 'lasturl' => { 540 => 'LastURL' }, - 'lateralchromaticaberration' => { 448 => 0x2012 }, - 'lateralchromaticaberrationcorrectionalreadyapplied' => { 507 => 'LateralChromaticAberrationCorrectionAlreadyApplied' }, + 'lastphotodate' => { 499 => 'LastPhotoDate' }, + 'lasturl' => { 541 => 'LastURL' }, + 'lateralchromaticaberration' => { 449 => 0x2012 }, + 'lateralchromaticaberrationcorrectionalreadyapplied' => { 508 => 'LateralChromaticAberrationCorrectionAlreadyApplied' }, 'latestageorhigheststage' => { 121 => [\'GeologicalContext','GeologicalContextLatestAgeOrHighestStage'] }, 'latesteonorhighesteonothem' => { 121 => [\'GeologicalContext','GeologicalContextLatestEonOrHighestEonothem'] }, 'latestepochorhighestseries' => { 121 => [\'GeologicalContext','GeologicalContextLatestEpochOrHighestSeries'] }, 'latesteraorhighesterathem' => { 121 => [\'GeologicalContext','GeologicalContextLatestEraOrHighestErathem'] }, 'latestperiodorhighestsystem' => { 121 => [\'GeologicalContext','GeologicalContextLatestPeriodOrHighestSystem'] }, 'latitude' => { 119 => 'Latitude' }, - 'lc1' => { 373 => 0x2 }, - 'lc10' => { 373 => 0xb }, - 'lc11' => { 373 => 0xc }, - 'lc12' => { 373 => 0xd }, - 'lc14' => { 373 => 0xf }, - 'lc15' => { 373 => 0x10 }, - 'lc3' => { 373 => 0x4 }, - 'lc4' => { 373 => 0x5 }, - 'lc5' => { 373 => 0x6 }, - 'lc6' => { 373 => 0x7 }, - 'lc7' => { 373 => 0x8 }, - 'lc8' => { 373 => 0x9 }, + 'lc1' => { 374 => 0x2 }, + 'lc10' => { 374 => 0xb }, + 'lc11' => { 374 => 0xc }, + 'lc12' => { 374 => 0xd }, + 'lc14' => { 374 => 0xf }, + 'lc15' => { 374 => 0x10 }, + 'lc3' => { 374 => 0x4 }, + 'lc4' => { 374 => 0x5 }, + 'lc5' => { 374 => 0x6 }, + 'lc6' => { 374 => 0x7 }, + 'lc7' => { 374 => 0x8 }, + 'lc8' => { 374 => 0x9 }, 'lcddisplayatpoweron' => { 87 => 0x811, 91 => 0xa }, 'lcddisplayreturntoshoot' => { 92 => 0x12 }, - 'lcdillumination' => { 303 => '17.5', 304 => '5.2', 306 => '5.1', 307 => '5.1', 312 => '10.3', 313 => '4.2', 316 => '5.2', 317 => '5.1', 318 => '5.4', 319 => 0x101, 320 => 0x101, 321 => 0x117 }, + 'lcdillumination' => { 304 => '17.5', 305 => '5.2', 307 => '5.1', 308 => '5.1', 313 => '10.3', 314 => '4.2', 317 => '5.2', 318 => '5.1', 319 => '5.4', 320 => 0x101, 321 => 0x101, 322 => 0x117 }, 'lcdilluminationduringbulb' => { 87 => 0x408 }, 'lcdmatrix' => { 141 => 0xe74 }, 'lcdmatrixchickfix' => { 141 => 0xe75 }, 'lcdmatrixmarvin' => { 141 => 0xe76 }, 'lcdpanels' => { 86 => 0x8 }, - 'lcheditor' => { 296 => 0x8ae85e }, - 'legacyiptcdigest' => { 527 => 'LegacyIPTCDigest' }, - 'legalcode' => { 508 => 'legalcode' }, - 'lens' => { 122 => 0xfdea, 239 => 0x84, 507 => 'Lens' }, + 'lcheditor' => { 297 => 0x8ae85e }, + 'legacyiptcdigest' => { 528 => 'LegacyIPTCDigest' }, + 'legalcode' => { 509 => 'legalcode' }, + 'lens' => { 122 => 0xfdea, 239 => 0x84, 508 => 'Lens' }, 'lensafstopbutton' => { 85 => 0x11, 86 => 0x13, 87 => 0x506, 88 => 0x10, 89 => 0x12, 92 => 0x13, 93 => 0x9 }, - 'lensaperturerange' => { 424 => [0x30,0x48] }, - 'lensblur' => { 510 => 'LensBlur', 512 => 'LensBlur' }, - 'lensbluractive' => { 510 => [\'LensBlur','LensBlurActive'], 512 => [\'LensBlur','LensBlurActive'] }, - 'lensbluramount' => { 510 => [\'LensBlur','LensBlurBlurAmount'], 512 => [\'LensBlur','LensBlurBlurAmount'] }, - 'lensblurbokehaspect' => { 510 => [\'LensBlur','LensBlurBokehAspect'], 512 => [\'LensBlur','LensBlurBokehAspect'] }, - 'lensblurbokehrotation' => { 510 => [\'LensBlur','LensBlurBokehRotation'], 512 => [\'LensBlur','LensBlurBokehRotation'] }, - 'lensblurbokehshape' => { 510 => [\'LensBlur','LensBlurBokehShape'], 512 => [\'LensBlur','LensBlurBokehShape'] }, - 'lensblurbokehshapedetail' => { 510 => [\'LensBlur','LensBlurBokehShapeDetail'], 512 => [\'LensBlur','LensBlurBokehShapeDetail'] }, - 'lensblurcateyeamount' => { 510 => [\'LensBlur','LensBlurCatEyeAmount'], 512 => [\'LensBlur','LensBlurCatEyeAmount'] }, - 'lensblurcateyescale' => { 510 => [\'LensBlur','LensBlurCatEyeScale'], 512 => [\'LensBlur','LensBlurCatEyeScale'] }, - 'lensblurfocalrange' => { 510 => [\'LensBlur','LensBlurFocalRange'], 512 => [\'LensBlur','LensBlurFocalRange'] }, - 'lensblurfocalrangesource' => { 510 => [\'LensBlur','LensBlurFocalRangeSource'], 512 => [\'LensBlur','LensBlurFocalRangeSource'] }, - 'lensblurhighlightsboost' => { 510 => [\'LensBlur','LensBlurHighlightsBoost'], 512 => [\'LensBlur','LensBlurHighlightsBoost'] }, - 'lensblurhighlightsthreshold' => { 510 => [\'LensBlur','LensBlurHighlightsThreshold'], 512 => [\'LensBlur','LensBlurHighlightsThreshold'] }, - 'lensblursampledarea' => { 510 => [\'LensBlur','LensBlurSampledArea'], 512 => [\'LensBlur','LensBlurSampledArea'] }, - 'lensblursampledrange' => { 510 => [\'LensBlur','LensBlurSampledRange'], 512 => [\'LensBlur','LensBlurSampledRange'] }, - 'lensblursphericalaberration' => { 510 => [\'LensBlur','LensBlurSphericalAberration'], 512 => [\'LensBlur','LensBlurSphericalAberration'] }, - 'lensblursubjectrange' => { 510 => [\'LensBlur','LensBlurSubjectRange'], 512 => [\'LensBlur','LensBlurSubjectRange'] }, - 'lensblurversion' => { 510 => [\'LensBlur','LensBlurVersion'], 512 => [\'LensBlur','LensBlurVersion'] }, - 'lenscontrolring' => { 319 => 0xad, 320 => 0xad, 321 => 0xad }, - 'lenscorrectionsettings' => { 515 => 'LensCorrectionSettings' }, - 'lensdistortinfo' => { 507 => 'LensDistortInfo' }, - 'lensdistortionparams' => { 328 => 0x206 }, + 'lensaperturerange' => { 425 => [0x30,0x48] }, + 'lensblur' => { 511 => 'LensBlur', 513 => 'LensBlur' }, + 'lensbluractive' => { 511 => [\'LensBlur','LensBlurActive'], 513 => [\'LensBlur','LensBlurActive'] }, + 'lensbluramount' => { 511 => [\'LensBlur','LensBlurBlurAmount'], 513 => [\'LensBlur','LensBlurBlurAmount'] }, + 'lensblurbokehaspect' => { 511 => [\'LensBlur','LensBlurBokehAspect'], 513 => [\'LensBlur','LensBlurBokehAspect'] }, + 'lensblurbokehrotation' => { 511 => [\'LensBlur','LensBlurBokehRotation'], 513 => [\'LensBlur','LensBlurBokehRotation'] }, + 'lensblurbokehshape' => { 511 => [\'LensBlur','LensBlurBokehShape'], 513 => [\'LensBlur','LensBlurBokehShape'] }, + 'lensblurbokehshapedetail' => { 511 => [\'LensBlur','LensBlurBokehShapeDetail'], 513 => [\'LensBlur','LensBlurBokehShapeDetail'] }, + 'lensblurcateyeamount' => { 511 => [\'LensBlur','LensBlurCatEyeAmount'], 513 => [\'LensBlur','LensBlurCatEyeAmount'] }, + 'lensblurcateyescale' => { 511 => [\'LensBlur','LensBlurCatEyeScale'], 513 => [\'LensBlur','LensBlurCatEyeScale'] }, + 'lensblurfocalrange' => { 511 => [\'LensBlur','LensBlurFocalRange'], 513 => [\'LensBlur','LensBlurFocalRange'] }, + 'lensblurfocalrangesource' => { 511 => [\'LensBlur','LensBlurFocalRangeSource'], 513 => [\'LensBlur','LensBlurFocalRangeSource'] }, + 'lensblurhighlightsboost' => { 511 => [\'LensBlur','LensBlurHighlightsBoost'], 513 => [\'LensBlur','LensBlurHighlightsBoost'] }, + 'lensblurhighlightsthreshold' => { 511 => [\'LensBlur','LensBlurHighlightsThreshold'], 513 => [\'LensBlur','LensBlurHighlightsThreshold'] }, + 'lensblursampledarea' => { 511 => [\'LensBlur','LensBlurSampledArea'], 513 => [\'LensBlur','LensBlurSampledArea'] }, + 'lensblursampledrange' => { 511 => [\'LensBlur','LensBlurSampledRange'], 513 => [\'LensBlur','LensBlurSampledRange'] }, + 'lensblursphericalaberration' => { 511 => [\'LensBlur','LensBlurSphericalAberration'], 513 => [\'LensBlur','LensBlurSphericalAberration'] }, + 'lensblursubjectrange' => { 511 => [\'LensBlur','LensBlurSubjectRange'], 513 => [\'LensBlur','LensBlurSubjectRange'] }, + 'lensblurversion' => { 511 => [\'LensBlur','LensBlurVersion'], 513 => [\'LensBlur','LensBlurVersion'] }, + 'lenscontrolring' => { 320 => 0xad, 321 => 0xad, 322 => 0xad }, + 'lenscorrectionsettings' => { 516 => 'LensCorrectionSettings' }, + 'lensdistortinfo' => { 508 => 'LensDistortInfo' }, + 'lensdistortionparams' => { 329 => 0x206 }, 'lensdriveend' => { 237 => 0x56 }, 'lensdrivenoaf' => { 87 => 0x505 }, 'lensdrivewhenafimpossible' => { 2 => 0xb }, - 'lense-mountversion' => { 436 => 0x3f0, 484 => 0xd }, - 'lensfirmware' => { 415 => 0x20, 421 => 0xa004 }, - 'lensfirmwareversion' => { 324 => 0x204, 347 => 0x60, 436 => 0x3f3, 484 => 0x14 }, - 'lensfocallength' => { 106 => 0xf0512, 373 => 0x9 }, - 'lensfocalrange' => { 424 => [0xa,0x2a] }, - 'lensfocusfunctionbuttons' => { 304 => '55.1', 306 => '52.1', 307 => '52.1', 316 => '52.1', 317 => '52.1' }, - 'lensformat' => { 461 => 0x1891, 463 => 0x18bd, 464 => 0x18ed, 465 => 0x17f1, 467 => 0x106, 468 => 0x106, 479 => 0x603, 480 => 0x5d }, - 'lensfstops' => { 231 => 0x7, 232 => 0xc, 233 => 0xd, 237 => 0xe, 239 => 0x8b, 373 => '0.3' }, - 'lensfunc1button' => { 319 => 0x9f, 320 => 0x9f, 321 => 0x9f }, - 'lensfunc1buttonplaybackmode' => { 247 => 0x810 }, - 'lensfunc2button' => { 319 => 0xa7, 320 => 0xa7, 321 => 0xa7 }, - 'lensfunc2buttonplaybackmode' => { 247 => 0x812 }, - 'lensid' => { 237 => 0x30, 507 => 'LensID' }, + 'lense-mountversion' => { 437 => 0x3f0, 485 => 0xd }, + 'lensfirmware' => { 416 => 0x20, 422 => 0xa004 }, + 'lensfirmwareversion' => { 325 => 0x204, 348 => 0x60, 437 => 0x3f3, 485 => 0x14 }, + 'lensfocallength' => { 106 => 0xf0512, 374 => 0x9 }, + 'lensfocalrange' => { 425 => [0xa,0x2a] }, + 'lensfocusfunctionbuttons' => { 305 => '55.1', 307 => '52.1', 308 => '52.1', 317 => '52.1', 318 => '52.1' }, + 'lensformat' => { 462 => 0x1891, 464 => 0x18bd, 465 => 0x18ed, 466 => 0x17f1, 468 => 0x106, 469 => 0x106, 480 => 0x603, 481 => 0x5d }, + 'lensfstops' => { 231 => 0x7, 232 => 0xc, 233 => 0xd, 237 => 0xe, 239 => 0x8b, 374 => '0.3' }, + 'lensfunc1button' => { 320 => 0x9f, 321 => 0x9f, 322 => 0x9f }, + 'lensfunc1buttonplaybackmode' => { 245 => 0x80a, 248 => 0x810 }, + 'lensfunc2button' => { 320 => 0xa7, 321 => 0xa7, 322 => 0xa7 }, + 'lensfunc2buttonplaybackmode' => { 245 => 0x80c, 248 => 0x812 }, + 'lensid' => { 237 => 0x30, 508 => 'LensID' }, 'lensidnumber' => { 231 => 0x6, 232 => 0xb, 233 => 0xc, 237 => 0xd }, - 'lensinfo' => { 122 => 0xa432, 379 => 0x2a, 507 => 'LensInfo', 517 => 'LensSpecification' }, - 'lenskind' => { 373 => 0x1 }, - 'lensmake' => { 122 => 0xa433, 166 => 'Make', 517 => 'LensMake' }, - 'lensmanualdistortionamount' => { 510 => 'LensManualDistortionAmount', 512 => 'LensManualDistortionAmount' }, + 'lensinfo' => { 122 => 0xa432, 380 => 0x2a, 508 => 'LensInfo', 518 => 'LensSpecification' }, + 'lenskind' => { 374 => 0x1 }, + 'lensmake' => { 122 => 0xa433, 166 => 'Make', 518 => 'LensMake' }, + 'lensmanualdistortionamount' => { 511 => 'LensManualDistortionAmount', 513 => 'LensManualDistortionAmount' }, 'lensmanufacturer' => { 181 => 'LensManufacturer' }, - 'lensmaxaperturerange' => { 424 => 0x2b }, - 'lensmodel' => { 7 => 0x937, 14 => 0x92b, 15 => 0x933, 66 => 0x95, 122 => 0xa434, 166 => 'Model', 181 => 'LensModel', 234 => 0x18a, 235 => 0x18b, 236 => 0x2ac, 324 => 0x203, 379 => 0xc, 391 => 0x412, 517 => 'LensModel' }, + 'lensmaxaperturerange' => { 425 => 0x2b }, + 'lensmodel' => { 7 => 0x937, 14 => 0x92b, 15 => 0x933, 66 => 0x95, 122 => 0xa434, 166 => 'Model', 181 => 'LensModel', 234 => 0x18a, 235 => 0x18b, 236 => 0x2ac, 325 => 0x203, 380 => 0xc, 392 => 0x412, 518 => 'LensModel' }, 'lensmodulationoptimizer' => { 130 => 0x1045 }, - 'lensmount' => { 436 => 0x99, 461 => 0x1892, 463 => 0x18be, 464 => 0x18ee, 465 => 0x17f2, 467 => 0x105, 468 => 0x105, 479 => 0x604, 480 => 0x5e }, - 'lensmount2' => { 484 => 0x8 }, + 'lensmount' => { 437 => 0x99, 462 => 0x1892, 464 => 0x18be, 465 => 0x18ee, 466 => 0x17f2, 468 => 0x105, 469 => 0x105, 480 => 0x604, 481 => 0x5e }, + 'lensmount2' => { 485 => 0x8 }, 'lensmounttype' => { 237 => 0x35 }, 'lenspositionabsolute' => { 237 => 0x5a }, - 'lensprofilechromaticaberrationscale' => { 510 => 'LensProfileChromaticAberrationScale', 512 => 'LensProfileChromaticAberrationScale' }, - 'lensprofiledigest' => { 510 => 'LensProfileDigest', 512 => 'LensProfileDigest' }, - 'lensprofiledistortionscale' => { 510 => 'LensProfileDistortionScale', 512 => 'LensProfileDistortionScale' }, - 'lensprofileenable' => { 510 => 'LensProfileEnable', 512 => 'LensProfileEnable' }, - 'lensprofilefilename' => { 510 => 'LensProfileFilename', 512 => 'LensProfileFilename' }, - 'lensprofileisembedded' => { 510 => 'LensProfileIsEmbedded', 512 => 'LensProfileIsEmbedded' }, - 'lensprofilematchkeycameramodelname' => { 510 => 'LensProfileMatchKeyCameraModelName', 512 => 'LensProfileMatchKeyCameraModelName' }, - 'lensprofilematchkeyexifmake' => { 510 => 'LensProfileMatchKeyExifMake', 512 => 'LensProfileMatchKeyExifMake' }, - 'lensprofilematchkeyexifmodel' => { 510 => 'LensProfileMatchKeyExifModel', 512 => 'LensProfileMatchKeyExifModel' }, - 'lensprofilematchkeyisraw' => { 510 => 'LensProfileMatchKeyIsRaw', 512 => 'LensProfileMatchKeyIsRaw' }, - 'lensprofilematchkeylensid' => { 510 => 'LensProfileMatchKeyLensID', 512 => 'LensProfileMatchKeyLensID' }, - 'lensprofilematchkeylensinfo' => { 510 => 'LensProfileMatchKeyLensInfo', 512 => 'LensProfileMatchKeyLensInfo' }, - 'lensprofilematchkeylensname' => { 510 => 'LensProfileMatchKeyLensName', 512 => 'LensProfileMatchKeyLensName' }, - 'lensprofilematchkeysensorformatfactor' => { 510 => 'LensProfileMatchKeySensorFormatFactor', 512 => 'LensProfileMatchKeySensorFormatFactor' }, - 'lensprofilename' => { 346 => 0x370, 510 => 'LensProfileName', 512 => 'LensProfileName' }, - 'lensprofilesetup' => { 510 => 'LensProfileSetup', 512 => 'LensProfileSetup' }, - 'lensprofilevignettingscale' => { 510 => 'LensProfileVignettingScale', 512 => 'LensProfileVignettingScale' }, - 'lensproperties' => { 324 => 0x20b }, - 'lensserialnumber' => { 21 => 0x164, 34 => 0x16b, 63 => 0x0, 122 => 0xa435, 166 => 'SerialNumber', 324 => 0x202, 345 => 0x321, 347 => 0x52, 407 => 'LENS', 415 => 0x30, 507 => 'LensSerialNumber', 517 => 'LensSerialNumber' }, + 'lensprofilechromaticaberrationscale' => { 511 => 'LensProfileChromaticAberrationScale', 513 => 'LensProfileChromaticAberrationScale' }, + 'lensprofiledigest' => { 511 => 'LensProfileDigest', 513 => 'LensProfileDigest' }, + 'lensprofiledistortionscale' => { 511 => 'LensProfileDistortionScale', 513 => 'LensProfileDistortionScale' }, + 'lensprofileenable' => { 511 => 'LensProfileEnable', 513 => 'LensProfileEnable' }, + 'lensprofilefilename' => { 511 => 'LensProfileFilename', 513 => 'LensProfileFilename' }, + 'lensprofileisembedded' => { 511 => 'LensProfileIsEmbedded', 513 => 'LensProfileIsEmbedded' }, + 'lensprofilematchkeycameramodelname' => { 511 => 'LensProfileMatchKeyCameraModelName', 513 => 'LensProfileMatchKeyCameraModelName' }, + 'lensprofilematchkeyexifmake' => { 511 => 'LensProfileMatchKeyExifMake', 513 => 'LensProfileMatchKeyExifMake' }, + 'lensprofilematchkeyexifmodel' => { 511 => 'LensProfileMatchKeyExifModel', 513 => 'LensProfileMatchKeyExifModel' }, + 'lensprofilematchkeyisraw' => { 511 => 'LensProfileMatchKeyIsRaw', 513 => 'LensProfileMatchKeyIsRaw' }, + 'lensprofilematchkeylensid' => { 511 => 'LensProfileMatchKeyLensID', 513 => 'LensProfileMatchKeyLensID' }, + 'lensprofilematchkeylensinfo' => { 511 => 'LensProfileMatchKeyLensInfo', 513 => 'LensProfileMatchKeyLensInfo' }, + 'lensprofilematchkeylensname' => { 511 => 'LensProfileMatchKeyLensName', 513 => 'LensProfileMatchKeyLensName' }, + 'lensprofilematchkeysensorformatfactor' => { 511 => 'LensProfileMatchKeySensorFormatFactor', 513 => 'LensProfileMatchKeySensorFormatFactor' }, + 'lensprofilename' => { 347 => 0x370, 511 => 'LensProfileName', 513 => 'LensProfileName' }, + 'lensprofilesetup' => { 511 => 'LensProfileSetup', 513 => 'LensProfileSetup' }, + 'lensprofilevignettingscale' => { 511 => 'LensProfileVignettingScale', 513 => 'LensProfileVignettingScale' }, + 'lensproperties' => { 325 => 0x20b }, + 'lensserialnumber' => { 21 => 0x164, 34 => 0x16b, 63 => 0x0, 122 => 0xa435, 166 => 'SerialNumber', 325 => 0x202, 346 => 0x321, 348 => 0x52, 408 => 'LENS', 416 => 0x30, 508 => 'LensSerialNumber', 518 => 'LensSerialNumber' }, 'lensshutterlock' => { 187 => 0x4a }, - 'lensspec' => { 431 => 0x0, 432 => 0x0, 433 => 0x0, 448 => 0xb02a }, - 'lensspecfeatures' => { 467 => [0x115,0x116], 468 => [0x116,0x1ed,0x1f0,0x21c,0x21e] }, - 'lenstemperature' => { 328 => 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, 36 => 0x16, 189 => 0x10c, 190 => 0x49bd, 239 => 0x83, 324 => 0x201, 338 => 0x16, 342 => 0x310, 344 => 0x303, 345 => 0x303, 347 => 0x51, 349 => 0x3405, 374 => 0x0, 375 => 0x0, 376 => 0x1, 377 => 0x1, 378 => 0x1, 380 => 0x0, 421 => 0xa003, 424 => 0x27, 448 => 0xb027, 461 => 0x1896, 463 => 0x18c2, 464 => 0x18f2, 465 => 0x17f6, 467 => 0x109, 468 => 0x109, 479 => 0x608, 480 => 0x62 }, - 'lenstype2' => { 436 => 0x3f7, 461 => 0x1893, 463 => 0x18bf, 464 => 0x18ef, 465 => 0x17f3, 467 => 0x107, 468 => 0x107, 479 => 0x605, 480 => 0x60 }, - 'lenstype3' => { 484 => 0x9 }, - 'lenstypemake' => { 347 => 0xc4 }, - 'lenstypemodel' => { 347 => [0xc5,0xe4] }, - 'lenszoomposition' => { 476 => 0x19, 477 => 0x1e, 480 => [0x342,0x34e,0x35a] }, - 'levelindicator' => { 355 => 0x15 }, - 'levelmeter' => { 407 => ['Lvlm','lvlm'] }, - 'levelorientation' => { 381 => 0x0 }, - 'license' => { 508 => 'license' }, - 'licensee' => { 333 => 'Licensee' }, - 'licenseeid' => { 333 => [\'Licensee','LicenseeLicenseeID'] }, - 'licenseeimageid' => { 333 => 'LicenseeImageID' }, - 'licenseeimagenotes' => { 333 => 'LicenseeImageNotes' }, - 'licenseename' => { 333 => [\'Licensee','LicenseeLicenseeName'] }, - 'licenseenddate' => { 333 => 'LicenseEndDate' }, - 'licenseeprojectreference' => { 333 => 'LicenseeProjectReference' }, - 'licenseetransactionid' => { 333 => 'LicenseeTransactionID' }, - 'licenseid' => { 333 => 'LicenseID' }, - 'licensestartdate' => { 333 => 'LicenseStartDate' }, - 'licensetransactiondate' => { 333 => 'LicenseTransactionDate' }, - 'licensetype' => { 514 => 'licensetype' }, - 'licensor' => { 333 => 'Licensor' }, - 'licensorcity' => { 333 => [\'Licensor','LicensorLicensorCity'] }, - 'licensorcountry' => { 333 => [\'Licensor','LicensorLicensorCountry'] }, - 'licensoremail' => { 333 => [\'Licensor','LicensorLicensorEmail'] }, - 'licensorextendedaddress' => { 333 => [\'Licensor','LicensorLicensorExtendedAddress'] }, - 'licensorid' => { 333 => [\'Licensor','LicensorLicensorID'] }, - 'licensorimageid' => { 333 => 'LicensorImageID' }, - 'licensorname' => { 333 => [\'Licensor','LicensorLicensorName'] }, - 'licensornotes' => { 333 => 'LicensorNotes' }, - 'licensorpostalcode' => { 333 => [\'Licensor','LicensorLicensorPostalCode'] }, - 'licensorregion' => { 333 => [\'Licensor','LicensorLicensorRegion'] }, - 'licensorstreetaddress' => { 333 => [\'Licensor','LicensorLicensorStreetAddress'] }, - 'licensortelephone1' => { 333 => [\'Licensor','LicensorLicensorTelephone1'] }, - 'licensortelephone2' => { 333 => [\'Licensor','LicensorLicensorTelephone2'] }, - 'licensortelephonetype1' => { 333 => [\'Licensor','LicensorLicensorTelephoneType1'] }, - 'licensortelephonetype2' => { 333 => [\'Licensor','LicensorLicensorTelephoneType2'] }, - 'licensortransactionid' => { 333 => 'LicensorTransactionID' }, - 'licensorurl' => { 333 => [\'Licensor','LicensorLicensorURL'] }, - 'lightcondition' => { 328 => 0x1009 }, + 'lensspec' => { 432 => 0x0, 433 => 0x0, 434 => 0x0, 449 => 0xb02a }, + 'lensspecfeatures' => { 468 => [0x115,0x116], 469 => [0x116,0x1ed,0x1f0,0x21c,0x21e] }, + 'lenstemperature' => { 329 => 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, 36 => 0x16, 189 => 0x10c, 190 => 0x49bd, 239 => 0x83, 325 => 0x201, 339 => 0x16, 343 => 0x310, 345 => 0x303, 346 => 0x303, 348 => 0x51, 350 => 0x3405, 375 => 0x0, 376 => 0x0, 377 => 0x1, 378 => 0x1, 379 => 0x1, 381 => 0x0, 422 => 0xa003, 425 => 0x27, 449 => 0xb027, 462 => 0x1896, 464 => 0x18c2, 465 => 0x18f2, 466 => 0x17f6, 468 => 0x109, 469 => 0x109, 480 => 0x608, 481 => 0x62 }, + 'lenstype2' => { 437 => 0x3f7, 462 => 0x1893, 464 => 0x18bf, 465 => 0x18ef, 466 => 0x17f3, 468 => 0x107, 469 => 0x107, 480 => 0x605, 481 => 0x60 }, + 'lenstype3' => { 485 => 0x9 }, + 'lenstypemake' => { 348 => 0xc4 }, + 'lenstypemodel' => { 348 => [0xc5,0xe4] }, + 'lenszoomposition' => { 477 => 0x19, 478 => 0x1e, 481 => [0x342,0x34e,0x35a] }, + 'levelindicator' => { 356 => 0x15 }, + 'levelmeter' => { 408 => ['Lvlm','lvlm'] }, + 'levelorientation' => { 382 => 0x0 }, + 'license' => { 509 => 'license' }, + 'licensee' => { 334 => 'Licensee' }, + 'licenseeid' => { 334 => [\'Licensee','LicenseeLicenseeID'] }, + 'licenseeimageid' => { 334 => 'LicenseeImageID' }, + 'licenseeimagenotes' => { 334 => 'LicenseeImageNotes' }, + 'licenseename' => { 334 => [\'Licensee','LicenseeLicenseeName'] }, + 'licenseenddate' => { 334 => 'LicenseEndDate' }, + 'licenseeprojectreference' => { 334 => 'LicenseeProjectReference' }, + 'licenseetransactionid' => { 334 => 'LicenseeTransactionID' }, + 'licenseid' => { 334 => 'LicenseID' }, + 'licensestartdate' => { 334 => 'LicenseStartDate' }, + 'licensetransactiondate' => { 334 => 'LicenseTransactionDate' }, + 'licensetype' => { 515 => 'licensetype' }, + 'licensor' => { 334 => 'Licensor' }, + 'licensorcity' => { 334 => [\'Licensor','LicensorLicensorCity'] }, + 'licensorcountry' => { 334 => [\'Licensor','LicensorLicensorCountry'] }, + 'licensoremail' => { 334 => [\'Licensor','LicensorLicensorEmail'] }, + 'licensorextendedaddress' => { 334 => [\'Licensor','LicensorLicensorExtendedAddress'] }, + 'licensorid' => { 334 => [\'Licensor','LicensorLicensorID'] }, + 'licensorimageid' => { 334 => 'LicensorImageID' }, + 'licensorname' => { 334 => [\'Licensor','LicensorLicensorName'] }, + 'licensornotes' => { 334 => 'LicensorNotes' }, + 'licensorpostalcode' => { 334 => [\'Licensor','LicensorLicensorPostalCode'] }, + 'licensorregion' => { 334 => [\'Licensor','LicensorLicensorRegion'] }, + 'licensorstreetaddress' => { 334 => [\'Licensor','LicensorLicensorStreetAddress'] }, + 'licensortelephone1' => { 334 => [\'Licensor','LicensorLicensorTelephone1'] }, + 'licensortelephone2' => { 334 => [\'Licensor','LicensorLicensorTelephone2'] }, + 'licensortelephonetype1' => { 334 => [\'Licensor','LicensorLicensorTelephoneType1'] }, + 'licensortelephonetype2' => { 334 => [\'Licensor','LicensorLicensorTelephoneType2'] }, + 'licensortransactionid' => { 334 => 'LicensorTransactionID' }, + 'licensorurl' => { 334 => [\'Licensor','LicensorLicensorURL'] }, + 'lightcondition' => { 329 => 0x1009 }, 'lightingmode' => { 116 => 0x302a }, - 'lightreading' => { 382 => 0x15 }, - 'lightsource' => { 122 => 0x9208, 239 => 0x90, 331 => 0x1000, 516 => 'LightSource' }, - 'lightsourcespecial' => { 423 => 0x21d }, - 'lightswitch' => { 316 => '0.1', 318 => '0.1' }, - 'lightvaluecenter' => { 328 => 0x103d }, - 'lightvalueperiphery' => { 328 => 0x103e }, - 'limitaf-areamodesel3dtracking' => { 319 => 0x153, 320 => 0x153, 321 => 0x16b }, - 'limitaf-areamodeseldynamic_l' => { 319 => 0x151, 320 => 0x151, 321 => 0x169 }, - 'limitaf-areamodeseldynamic_m' => { 319 => 0x150, 320 => 0x150, 321 => 0x168 }, - 'limitaf-areamodeseldynamic_s' => { 319 => 0x14f, 320 => 0x14f, 321 => 0x167 }, - 'limitaf-areamodeselpinpoint' => { 319 => 0x11, 320 => 0x11, 321 => 0x11 }, - 'limitaf-areamodeselwideaf_l' => { 319 => 0x14, 320 => 0x14, 321 => 0x14 }, - 'limitaf-areamodeselwideaf_s' => { 319 => 0x13, 320 => 0x13, 321 => 0x13 }, - 'limitafareamodeselauto' => { 319 => 0x15, 320 => 0x15, 321 => 0x15 }, - 'limitafareamodeselection' => { 304 => '51.1', 306 => '49.1', 307 => '49.1', 316 => '49.1', 317 => '49.1' }, - 'limitreleasemodeselc120' => { 320 => '269.4', 321 => '293.4' }, - 'limitreleasemodeselc30' => { 320 => '269.3', 321 => '293.3' }, - 'limitreleasemodeselch' => { 320 => '269.2', 321 => '293.2' }, - 'limitreleasemodeselcl' => { 320 => '269.1', 321 => '293.1' }, - 'limitreleasemodeselself' => { 320 => '269.5', 321 => '293.5' }, - 'limitselectableimagearea16to9' => { 319 => 0x47, 320 => 0x47, 321 => 0x47 }, - 'limitselectableimagearea1to1' => { 319 => 0x46, 320 => 0x46, 321 => 0x46 }, - 'limitselectableimageareadx' => { 319 => 0x45, 320 => 0x45, 321 => 0x45 }, - 'linearitylimitblue' => { 352 => 0x10 }, - 'linearitylimitgreen' => { 352 => 0xf }, - 'linearitylimitred' => { 352 => 0xe }, + 'lightreading' => { 383 => 0x15 }, + 'lightsource' => { 122 => 0x9208, 239 => 0x90, 332 => 0x1000, 517 => 'LightSource' }, + 'lightsourcespecial' => { 424 => 0x21d }, + 'lightswitch' => { 317 => '0.1', 319 => '0.1' }, + 'lightvaluecenter' => { 329 => 0x103d }, + 'lightvalueperiphery' => { 329 => 0x103e }, + 'limitaf-areamodesel3dtracking' => { 320 => 0x153, 321 => 0x153, 322 => 0x16b }, + 'limitaf-areamodeseldynamic_l' => { 320 => 0x151, 321 => 0x151, 322 => 0x169 }, + 'limitaf-areamodeseldynamic_m' => { 320 => 0x150, 321 => 0x150, 322 => 0x168 }, + 'limitaf-areamodeseldynamic_s' => { 320 => 0x14f, 321 => 0x14f, 322 => 0x167 }, + 'limitaf-areamodeselpinpoint' => { 320 => 0x11, 321 => 0x11, 322 => 0x11 }, + 'limitaf-areamodeselwideaf_l' => { 320 => 0x14, 321 => 0x14, 322 => 0x14 }, + 'limitaf-areamodeselwideaf_s' => { 320 => 0x13, 321 => 0x13, 322 => 0x13 }, + 'limitafareamodeselauto' => { 320 => 0x15, 321 => 0x15, 322 => 0x15 }, + 'limitafareamodeselection' => { 305 => '51.1', 307 => '49.1', 308 => '49.1', 317 => '49.1', 318 => '49.1' }, + 'limitreleasemodeselc120' => { 321 => '269.4', 322 => '293.4' }, + 'limitreleasemodeselc30' => { 321 => '269.3', 322 => '293.3' }, + 'limitreleasemodeselch' => { 321 => '269.2', 322 => '293.2' }, + 'limitreleasemodeselcl' => { 321 => '269.1', 322 => '293.1' }, + 'limitreleasemodeselself' => { 321 => '269.5', 322 => '293.5' }, + 'limitselectableimagearea16to9' => { 320 => 0x47, 321 => 0x47, 322 => 0x47 }, + 'limitselectableimagearea1to1' => { 320 => 0x46, 321 => 0x46, 322 => 0x46 }, + 'limitselectableimageareadx' => { 320 => 0x45, 321 => 0x45, 322 => 0x45 }, + 'linearitylimitblue' => { 353 => 0x10 }, + 'linearitylimitgreen' => { 353 => 0xf }, + 'linearitylimitred' => { 353 => 0xe }, 'linearityuppermargin' => { 43 => 0x32c, 44 => 0x282, 47 => [0x2ba,0x2d1,0x2d5], 49 => 0x1e5, 50 => [0x1fe,0x2de], 51 => [0x232,0x310], 52 => 0x31e }, 'linearizationtable' => { 122 => 0xc618 }, 'linearresponselimit' => { 122 => 0xc62e }, - 'link' => { 529 => 'link' }, - 'linkaetoafpoint' => { 363 => '14.2' }, - 'linkedencodedrightsexpr' => { 524 => [\'LinkedEncRightsExpr','LinkedEncRightsExprLinkedRightsExpr'] }, - 'linkedencodedrightsexprlangid' => { 524 => [\'LinkedEncRightsExpr','LinkedEncRightsExprRightsExprLangId'] }, - 'linkedencodedrightsexprtype' => { 524 => [\'LinkedEncRightsExpr','LinkedEncRightsExprRightsExprEncType'] }, - 'linkedencrightsexpr' => { 524 => 'LinkedEncRightsExpr' }, + 'link' => { 530 => 'link' }, + 'linkaetoafpoint' => { 364 => '14.2' }, + 'linkedencodedrightsexpr' => { 525 => [\'LinkedEncRightsExpr','LinkedEncRightsExprLinkedRightsExpr'] }, + 'linkedencodedrightsexprlangid' => { 525 => [\'LinkedEncRightsExpr','LinkedEncRightsExprRightsExprLangId'] }, + 'linkedencodedrightsexprtype' => { 525 => [\'LinkedEncRightsExpr','LinkedEncRightsExprRightsExprEncType'] }, + 'linkedencrightsexpr' => { 525 => 'LinkedEncRightsExpr' }, 'linlogcoring' => { 141 => 0x904 }, 'lithostratigraphicterms' => { 121 => [\'GeologicalContext','GeologicalContextLithostratigraphicTerms'] }, - 'livephotoauto' => { 401 => 'live-photo.auto' }, + 'livephotoauto' => { 402 => 'live-photo.auto' }, 'livephotovideoindex' => { 1 => 0x17 }, - 'livephotovitalityscore' => { 401 => 'live-photo.vitality-score' }, - 'livephotovitalityscoringversion' => { 401 => 'live-photo.vitality-scoring-version' }, - 'liveviewaf' => { 308 => '32.1', 318 => '34.1' }, - 'liveviewafareamode' => { 313 => '34.1' }, - 'liveviewafmethod' => { 453 => 0x20 }, - 'liveviewafmode' => { 313 => '34.2' }, - 'liveviewafsetting' => { 436 => 0x36 }, - 'liveviewbuttonoptions' => { 304 => '50.2', 306 => '48.2', 307 => '48.2', 316 => '48.2', 317 => '48.2' }, + 'livephotovitalityscore' => { 402 => 'live-photo.vitality-score' }, + 'livephotovitalityscoringversion' => { 402 => 'live-photo.vitality-scoring-version' }, + 'liveviewaf' => { 309 => '32.1', 319 => '34.1' }, + 'liveviewafareamode' => { 314 => '34.1' }, + 'liveviewafmethod' => { 454 => 0x20 }, + 'liveviewafmode' => { 314 => '34.2' }, + 'liveviewafsetting' => { 437 => 0x36 }, + 'liveviewbuttonoptions' => { 305 => '50.2', 307 => '48.2', 308 => '48.2', 317 => '48.2', 318 => '48.2' }, 'liveviewexposuresimulation' => { 87 => 0x810 }, - 'liveviewfocusmode' => { 436 => [0x8b,0x28b] }, - 'liveviewmetering' => { 436 => [0x84,0x284] }, - 'liveviewmonitorofftime' => { 304 => '21.2', 306 => '21.2', 307 => '21.2', 309 => '20.2', 310 => '20.2', 311 => '20.2', 313 => '20.2', 316 => '21.2', 317 => '21.2' }, + 'liveviewfocusmode' => { 437 => [0x8b,0x28b] }, + 'liveviewmetering' => { 437 => [0x84,0x284] }, + 'liveviewmonitorofftime' => { 305 => '21.2', 307 => '21.2', 308 => '21.2', 310 => '20.2', 311 => '20.2', 312 => '20.2', 314 => '20.2', 317 => '21.2', 318 => '21.2' }, 'liveviewshooting' => { 59 => 0x13 }, 'livingspecimen' => { 121 => 'LivingSpecimen' }, 'livingspecimenmaterialsampleid' => { 121 => [\'LivingSpecimen','LivingSpecimenMaterialSampleID'] }, 'localcaption' => { 134 => 0x79 }, 'localizedcameramodel' => { 122 => 0xc615 }, - 'locallocationname' => { 421 => 0x30 }, - 'location' => { 238 => 0x9, 347 => 0x67, 503 => 'Location', 523 => 'Location', 528 => 'location', 529 => 'location' }, - 'locationaccuracyhorizontal' => { 401 => 'location.accuracy.horizontal' }, - 'locationareacode' => { 509 => 'lac' }, - 'locationbody' => { 401 => 'location.body' }, - 'locationcreated' => { 524 => 'LocationCreated' }, - 'locationcreatedcity' => { 524 => [\'LocationCreated','LocationCreatedCity'] }, - 'locationcreatedcountrycode' => { 524 => [\'LocationCreated','LocationCreatedCountryCode'] }, - 'locationcreatedcountryname' => { 524 => [\'LocationCreated','LocationCreatedCountryName'] }, - 'locationcreatedgpsaltitude' => { 524 => [\'LocationCreated','LocationCreatedGPSAltitude'] }, - 'locationcreatedgpsaltituderef' => { 524 => [\'LocationCreated','LocationCreatedGPSAltitudeRef'] }, - 'locationcreatedgpslatitude' => { 524 => [\'LocationCreated','LocationCreatedGPSLatitude'] }, - 'locationcreatedgpslongitude' => { 524 => [\'LocationCreated','LocationCreatedGPSLongitude'] }, - 'locationcreatedidentifier' => { 524 => [\'LocationCreated','LocationCreatedIdentifier'] }, - 'locationcreatedlocationid' => { 524 => [\'LocationCreated','LocationCreatedLocationId'] }, - 'locationcreatedlocationname' => { 524 => [\'LocationCreated','LocationCreatedLocationName'] }, - 'locationcreatedprovincestate' => { 524 => [\'LocationCreated','LocationCreatedProvinceState'] }, - 'locationcreatedsublocation' => { 524 => [\'LocationCreated','LocationCreatedSublocation'] }, - 'locationcreatedworldregion' => { 524 => [\'LocationCreated','LocationCreatedWorldRegion'] }, - 'locationdate' => { 401 => 'location.date' }, - 'locationinformation' => { 407 => 'loci' }, + 'locallocationname' => { 422 => 0x30 }, + 'location' => { 238 => 0x9, 348 => 0x67, 504 => 'Location', 524 => 'Location', 529 => 'location', 530 => 'location' }, + 'locationaccuracyhorizontal' => { 402 => 'location.accuracy.horizontal' }, + 'locationareacode' => { 510 => 'lac' }, + 'locationbody' => { 402 => 'location.body' }, + 'locationcreated' => { 525 => 'LocationCreated' }, + 'locationcreatedcity' => { 525 => [\'LocationCreated','LocationCreatedCity'] }, + 'locationcreatedcountrycode' => { 525 => [\'LocationCreated','LocationCreatedCountryCode'] }, + 'locationcreatedcountryname' => { 525 => [\'LocationCreated','LocationCreatedCountryName'] }, + 'locationcreatedgpsaltitude' => { 525 => [\'LocationCreated','LocationCreatedGPSAltitude'] }, + 'locationcreatedgpsaltituderef' => { 525 => [\'LocationCreated','LocationCreatedGPSAltitudeRef'] }, + 'locationcreatedgpslatitude' => { 525 => [\'LocationCreated','LocationCreatedGPSLatitude'] }, + 'locationcreatedgpslongitude' => { 525 => [\'LocationCreated','LocationCreatedGPSLongitude'] }, + 'locationcreatedidentifier' => { 525 => [\'LocationCreated','LocationCreatedIdentifier'] }, + 'locationcreatedlocationid' => { 525 => [\'LocationCreated','LocationCreatedLocationId'] }, + 'locationcreatedlocationname' => { 525 => [\'LocationCreated','LocationCreatedLocationName'] }, + 'locationcreatedprovincestate' => { 525 => [\'LocationCreated','LocationCreatedProvinceState'] }, + 'locationcreatedsublocation' => { 525 => [\'LocationCreated','LocationCreatedSublocation'] }, + 'locationcreatedworldregion' => { 525 => [\'LocationCreated','LocationCreatedWorldRegion'] }, + 'locationdate' => { 402 => 'location.date' }, + 'locationinformation' => { 408 => 'loci' }, 'locationinfoversion' => { 238 => 0x0 }, - 'locationname' => { 401 => 'location.name', 421 => 0x31 }, - 'locationnote' => { 401 => 'location.note' }, - 'locationrole' => { 401 => 'location.role' }, - 'locationshown' => { 524 => 'LocationShown' }, - 'locationshowncity' => { 524 => [\'LocationShown','LocationShownCity'] }, - 'locationshowncountrycode' => { 524 => [\'LocationShown','LocationShownCountryCode'] }, - 'locationshowncountryname' => { 524 => [\'LocationShown','LocationShownCountryName'] }, - 'locationshowngpsaltitude' => { 524 => [\'LocationShown','LocationShownGPSAltitude'] }, - 'locationshowngpsaltituderef' => { 524 => [\'LocationShown','LocationShownGPSAltitudeRef'] }, - 'locationshowngpslatitude' => { 524 => [\'LocationShown','LocationShownGPSLatitude'] }, - 'locationshowngpslongitude' => { 524 => [\'LocationShown','LocationShownGPSLongitude'] }, - 'locationshownidentifier' => { 524 => [\'LocationShown','LocationShownIdentifier'] }, - 'locationshownlocationid' => { 524 => [\'LocationShown','LocationShownLocationId'] }, - 'locationshownlocationname' => { 524 => [\'LocationShown','LocationShownLocationName'] }, - 'locationshownprovincestate' => { 524 => [\'LocationShown','LocationShownProvinceState'] }, - 'locationshownsublocation' => { 524 => [\'LocationShown','LocationShownSublocation'] }, - 'locationshownworldregion' => { 524 => [\'LocationShown','LocationShownWorldRegion'] }, + 'locationname' => { 402 => 'location.name', 422 => 0x31 }, + 'locationnote' => { 402 => 'location.note' }, + 'locationrole' => { 402 => 'location.role' }, + 'locationshown' => { 525 => 'LocationShown' }, + 'locationshowncity' => { 525 => [\'LocationShown','LocationShownCity'] }, + 'locationshowncountrycode' => { 525 => [\'LocationShown','LocationShownCountryCode'] }, + 'locationshowncountryname' => { 525 => [\'LocationShown','LocationShownCountryName'] }, + 'locationshowngpsaltitude' => { 525 => [\'LocationShown','LocationShownGPSAltitude'] }, + 'locationshowngpsaltituderef' => { 525 => [\'LocationShown','LocationShownGPSAltitudeRef'] }, + 'locationshowngpslatitude' => { 525 => [\'LocationShown','LocationShownGPSLatitude'] }, + 'locationshowngpslongitude' => { 525 => [\'LocationShown','LocationShownGPSLongitude'] }, + 'locationshownidentifier' => { 525 => [\'LocationShown','LocationShownIdentifier'] }, + 'locationshownlocationid' => { 525 => [\'LocationShown','LocationShownLocationId'] }, + 'locationshownlocationname' => { 525 => [\'LocationShown','LocationShownLocationName'] }, + 'locationshownprovincestate' => { 525 => [\'LocationShown','LocationShownProvinceState'] }, + 'locationshownsublocation' => { 525 => [\'LocationShown','LocationShownSublocation'] }, + 'locationshownworldregion' => { 525 => [\'LocationShown','LocationShownWorldRegion'] }, 'lockmicrophonebutton' => { 87 => 0x709 }, - 'logcomment' => { 539 => 'logComment' }, + 'logcomment' => { 540 => 'logComment' }, 'logscale' => { 141 => 0x902 }, - 'longdescription' => { 399 => 'ldes' }, - 'longexposurenoisereduction' => { 64 => 0x4, 87 => 0x201, 88 => 0x1, 89 => 0x2, 90 => 0x1, 91 => 0x1, 92 => 0x2, 93 => 0x1, 347 => 0x49, 434 => 0x2b, 435 => 0x25, 436 => 0x25, 448 => 0x2008, 453 => 0x11, 480 => 0x44 }, + 'longdescription' => { 400 => 'ldes' }, + 'longexposurenoisereduction' => { 64 => 0x4, 87 => 0x201, 88 => 0x1, 89 => 0x2, 90 => 0x1, 91 => 0x1, 92 => 0x2, 93 => 0x1, 348 => 0x49, 435 => 0x2b, 436 => 0x25, 437 => 0x25, 449 => 0x2008, 454 => 0x11, 481 => 0x44 }, 'longexposurenoisereduction2' => { 59 => 0x8 }, - 'longexposurenrused' => { 347 => 0xbe }, + 'longexposurenrused' => { 348 => 0xbe }, 'longitude' => { 119 => 'Longitude' }, - 'look' => { 510 => 'Look', 512 => 'Look' }, - 'lookamount' => { 510 => [\'Look','LookAmount'], 512 => [\'Look','LookAmount'] }, - 'lookcluster' => { 510 => [\'Look','LookCluster'], 512 => [\'Look','LookCluster'] }, - 'lookcopyright' => { 510 => [\'Look','LookCopyright'], 512 => [\'Look','LookCopyright'] }, - 'lookgroup' => { 510 => [\'Look','LookGroup'], 512 => [\'Look','LookGroup'] }, - 'lookname' => { 510 => 'LookName', 512 => 'LookName' }, - 'lookparameters' => { 510 => [\'Look','LookParameters'], 512 => [\'Look','LookParameters'] }, - 'lookparameterscameraprofile' => { 510 => [\'Look','LookParametersCameraProfile'], 512 => [\'Look','LookParametersCameraProfile'] }, - 'lookparametersclarity2012' => { 510 => [\'Look','LookParametersClarity2012'], 512 => [\'Look','LookParametersClarity2012'] }, - 'lookparametersconverttograyscale' => { 510 => [\'Look','LookParametersConvertToGrayscale'], 512 => [\'Look','LookParametersConvertToGrayscale'] }, - 'lookparametershighlights2012' => { 510 => [\'Look','LookParametersHighlights2012'], 512 => [\'Look','LookParametersHighlights2012'] }, - 'lookparameterslooktable' => { 510 => [\'Look','LookParametersLookTable'], 512 => [\'Look','LookParametersLookTable'] }, - 'lookparametersprocessversion' => { 510 => [\'Look','LookParametersProcessVersion'], 512 => [\'Look','LookParametersProcessVersion'] }, - 'lookparametersshadows2012' => { 510 => [\'Look','LookParametersShadows2012'], 512 => [\'Look','LookParametersShadows2012'] }, - 'lookparameterstonecurvepv2012' => { 510 => [\'Look','LookParametersToneCurvePV2012'], 512 => [\'Look','LookParametersToneCurvePV2012'] }, - 'lookparameterstonecurvepv2012blue' => { 510 => [\'Look','LookParametersToneCurvePV2012Blue'], 512 => [\'Look','LookParametersToneCurvePV2012Blue'] }, - 'lookparameterstonecurvepv2012green' => { 510 => [\'Look','LookParametersToneCurvePV2012Green'], 512 => [\'Look','LookParametersToneCurvePV2012Green'] }, - 'lookparameterstonecurvepv2012red' => { 510 => [\'Look','LookParametersToneCurvePV2012Red'], 512 => [\'Look','LookParametersToneCurvePV2012Red'] }, - 'lookparametersversion' => { 510 => [\'Look','LookParametersVersion'], 512 => [\'Look','LookParametersVersion'] }, - 'looksupportsamount' => { 510 => [\'Look','LookSupportsAmount'], 512 => [\'Look','LookSupportsAmount'] }, - 'looksupportsmonochrome' => { 510 => [\'Look','LookSupportsMonochrome'], 512 => [\'Look','LookSupportsMonochrome'] }, - 'looksupportsoutputreferred' => { 510 => [\'Look','LookSupportsOutputReferred'], 512 => [\'Look','LookSupportsOutputReferred'] }, - 'lookuuid' => { 510 => [\'Look','LookUUID'], 512 => [\'Look','LookUUID'] }, - 'loop' => { 539 => 'loop' }, - 'loopstyle' => { 407 => 'LOOP' }, + 'look' => { 511 => 'Look', 513 => 'Look' }, + 'lookamount' => { 511 => [\'Look','LookAmount'], 513 => [\'Look','LookAmount'] }, + 'lookcluster' => { 511 => [\'Look','LookCluster'], 513 => [\'Look','LookCluster'] }, + 'lookcopyright' => { 511 => [\'Look','LookCopyright'], 513 => [\'Look','LookCopyright'] }, + 'lookgroup' => { 511 => [\'Look','LookGroup'], 513 => [\'Look','LookGroup'] }, + 'lookname' => { 511 => 'LookName', 513 => 'LookName' }, + 'lookparameters' => { 511 => [\'Look','LookParameters'], 513 => [\'Look','LookParameters'] }, + 'lookparameterscameraprofile' => { 511 => [\'Look','LookParametersCameraProfile'], 513 => [\'Look','LookParametersCameraProfile'] }, + 'lookparametersclarity2012' => { 511 => [\'Look','LookParametersClarity2012'], 513 => [\'Look','LookParametersClarity2012'] }, + 'lookparametersconverttograyscale' => { 511 => [\'Look','LookParametersConvertToGrayscale'], 513 => [\'Look','LookParametersConvertToGrayscale'] }, + 'lookparametershighlights2012' => { 511 => [\'Look','LookParametersHighlights2012'], 513 => [\'Look','LookParametersHighlights2012'] }, + 'lookparameterslooktable' => { 511 => [\'Look','LookParametersLookTable'], 513 => [\'Look','LookParametersLookTable'] }, + 'lookparametersprocessversion' => { 511 => [\'Look','LookParametersProcessVersion'], 513 => [\'Look','LookParametersProcessVersion'] }, + 'lookparametersshadows2012' => { 511 => [\'Look','LookParametersShadows2012'], 513 => [\'Look','LookParametersShadows2012'] }, + 'lookparameterstonecurvepv2012' => { 511 => [\'Look','LookParametersToneCurvePV2012'], 513 => [\'Look','LookParametersToneCurvePV2012'] }, + 'lookparameterstonecurvepv2012blue' => { 511 => [\'Look','LookParametersToneCurvePV2012Blue'], 513 => [\'Look','LookParametersToneCurvePV2012Blue'] }, + 'lookparameterstonecurvepv2012green' => { 511 => [\'Look','LookParametersToneCurvePV2012Green'], 513 => [\'Look','LookParametersToneCurvePV2012Green'] }, + 'lookparameterstonecurvepv2012red' => { 511 => [\'Look','LookParametersToneCurvePV2012Red'], 513 => [\'Look','LookParametersToneCurvePV2012Red'] }, + 'lookparametersversion' => { 511 => [\'Look','LookParametersVersion'], 513 => [\'Look','LookParametersVersion'] }, + 'looksupportsamount' => { 511 => [\'Look','LookSupportsAmount'], 513 => [\'Look','LookSupportsAmount'] }, + 'looksupportsmonochrome' => { 511 => [\'Look','LookSupportsMonochrome'], 513 => [\'Look','LookSupportsMonochrome'] }, + 'looksupportsoutputreferred' => { 511 => [\'Look','LookSupportsOutputReferred'], 513 => [\'Look','LookSupportsOutputReferred'] }, + 'lookuuid' => { 511 => [\'Look','LookUUID'], 513 => [\'Look','LookUUID'] }, + 'loop' => { 540 => 'loop' }, + 'loopstyle' => { 408 => 'LOOP' }, 'lowestbiostratigraphiczone' => { 121 => [\'GeologicalContext','GeologicalContextLowestBiostratigraphicZone'] }, - 'luminanceadjustmentaqua' => { 510 => 'LuminanceAdjustmentAqua', 512 => 'LuminanceAdjustmentAqua' }, - 'luminanceadjustmentblue' => { 510 => 'LuminanceAdjustmentBlue', 512 => 'LuminanceAdjustmentBlue' }, - 'luminanceadjustmentgreen' => { 510 => 'LuminanceAdjustmentGreen', 512 => 'LuminanceAdjustmentGreen' }, - 'luminanceadjustmentmagenta' => { 510 => 'LuminanceAdjustmentMagenta', 512 => 'LuminanceAdjustmentMagenta' }, - 'luminanceadjustmentorange' => { 510 => 'LuminanceAdjustmentOrange', 512 => 'LuminanceAdjustmentOrange' }, - 'luminanceadjustmentpurple' => { 510 => 'LuminanceAdjustmentPurple', 512 => 'LuminanceAdjustmentPurple' }, - 'luminanceadjustmentred' => { 510 => 'LuminanceAdjustmentRed', 512 => 'LuminanceAdjustmentRed' }, - 'luminanceadjustmentyellow' => { 510 => 'LuminanceAdjustmentYellow', 512 => 'LuminanceAdjustmentYellow' }, + 'luminanceadjustmentaqua' => { 511 => 'LuminanceAdjustmentAqua', 513 => 'LuminanceAdjustmentAqua' }, + 'luminanceadjustmentblue' => { 511 => 'LuminanceAdjustmentBlue', 513 => 'LuminanceAdjustmentBlue' }, + 'luminanceadjustmentgreen' => { 511 => 'LuminanceAdjustmentGreen', 513 => 'LuminanceAdjustmentGreen' }, + 'luminanceadjustmentmagenta' => { 511 => 'LuminanceAdjustmentMagenta', 513 => 'LuminanceAdjustmentMagenta' }, + 'luminanceadjustmentorange' => { 511 => 'LuminanceAdjustmentOrange', 513 => 'LuminanceAdjustmentOrange' }, + 'luminanceadjustmentpurple' => { 511 => 'LuminanceAdjustmentPurple', 513 => 'LuminanceAdjustmentPurple' }, + 'luminanceadjustmentred' => { 511 => 'LuminanceAdjustmentRed', 513 => 'LuminanceAdjustmentRed' }, + 'luminanceadjustmentyellow' => { 511 => 'LuminanceAdjustmentYellow', 513 => 'LuminanceAdjustmentYellow' }, 'luminancecurvelimits' => { 111 => 0x150 }, 'luminancecurvepoints' => { 111 => 0x126 }, 'luminancenoiseamplitude' => { 1 => 0x1d }, - 'luminancenoisereduction' => { 106 => 0x20600, 112 => 0x5f, 424 => 0x1b }, - 'luminancenoisereductioncontrast' => { 510 => 'LuminanceNoiseReductionContrast', 512 => 'LuminanceNoiseReductionContrast' }, - 'luminancenoisereductiondetail' => { 510 => 'LuminanceNoiseReductionDetail', 512 => 'LuminanceNoiseReductionDetail' }, + 'luminancenoisereduction' => { 106 => 0x20600, 112 => 0x5f, 425 => 0x1b }, + 'luminancenoisereductioncontrast' => { 511 => 'LuminanceNoiseReductionContrast', 513 => 'LuminanceNoiseReductionContrast' }, + 'luminancenoisereductiondetail' => { 511 => 'LuminanceNoiseReductionDetail', 513 => 'LuminanceNoiseReductionDetail' }, 'luminancenr_tiff_jpeg' => { 112 => 0x6d }, - 'luminancesmoothing' => { 510 => 'LuminanceSmoothing', 512 => 'LuminanceSmoothing' }, + 'luminancesmoothing' => { 511 => 'LuminanceSmoothing', 513 => 'LuminanceSmoothing' }, 'lvshootingareadisplay' => { 87 => [0x40b,0x40c] }, - 'lyrics' => { 399 => "\xa9lyr", 407 => "\xa9lyr", 539 => 'lyrics' }, - 'lyricsuri' => { 407 => 'lrcu' }, - 'm16cversion' => { 342 => 0x333 }, - 'macatom' => { 511 => 'macAtom' }, - 'macatomapplicationcode' => { 511 => [\'macAtom','macAtomApplicationCode'] }, - 'macatominvocationappleevent' => { 511 => [\'macAtom','macAtomInvocationAppleEvent'] }, - 'macatomposixprojectpath' => { 511 => [\'macAtom','macAtomPosixProjectPath'] }, + 'lyrics' => { 400 => "\xa9lyr", 408 => "\xa9lyr", 540 => 'lyrics' }, + 'lyricsuri' => { 408 => 'lrcu' }, + 'm16cversion' => { 343 => 0x333 }, + 'macatom' => { 512 => 'macAtom' }, + 'macatomapplicationcode' => { 512 => [\'macAtom','macAtomApplicationCode'] }, + 'macatominvocationappleevent' => { 512 => [\'macAtom','macAtomInvocationAppleEvent'] }, + 'macatomposixprojectpath' => { 512 => [\'macAtom','macAtomPosixProjectPath'] }, 'machineobservation' => { 121 => 'MachineObservation' }, 'machineobservationday' => { 121 => [\'MachineObservation','MachineObservationDay'] }, 'machineobservationearliestdate' => { 121 => [\'MachineObservation','MachineObservationEarliestDate'] }, @@ -4334,20 +4339,20 @@ my %tagLookup = ( 'machineobservationstartdayofyear' => { 121 => [\'MachineObservation','MachineObservationStartDayOfYear'] }, 'machineobservationverbatimeventdate' => { 121 => [\'MachineObservation','MachineObservationVerbatimEventDate'] }, 'machineobservationyear' => { 121 => [\'MachineObservation','MachineObservationYear'] }, - 'macro' => { 130 => 0x1020, 132 => 0x202, 154 => 0x2b, 328 => 0x202, 413 => 0x21, 423 => 0x202, 448 => 0xb040 }, - 'macroled' => { 326 => 0x120a }, + 'macro' => { 130 => 0x1020, 132 => 0x202, 154 => 0x2b, 329 => 0x202, 414 => 0x21, 424 => 0x202, 449 => 0xb040 }, + 'macroled' => { 327 => 0x120a }, 'macromagnification' => { 7 => 0x1b, 11 => 0x1b, 14 => 0x1b, 15 => 0x1b, 19 => 0x1b, 20 => 0x1b, 59 => 0x10 }, - 'macromode' => { 36 => 0x1, 184 => 0xb, 323 => 0x300, 347 => 0x1c, 414 => 0x1009 }, + 'macromode' => { 36 => 0x1, 184 => 0xb, 324 => 0x300, 348 => 0x1c, 415 => 0x1009 }, 'magentahsl' => { 106 => 0x20917 }, - 'magicfilter' => { 323 => 0x52c }, + 'magicfilter' => { 324 => 0x52c }, 'magnifiedview' => { 89 => 0x11, 91 => 0x9 }, 'mainboardversion' => { 141 => 0x438 }, - 'maindialexposurecomp' => { 314 => '0.6' }, - 'mainingredient' => { 531 => 'mainIngredient' }, - 'majorbrand' => { 401 => 'major_brand' }, - 'majorversion' => { 501 => 'MajorVersion' }, - 'make' => { 101 => 0x0, 118 => 0x1, 122 => 0x10f, 159 => 'Make', 336 => 'Make', 352 => 0x10f, 401 => 'make', 407 => ['@mak',"\xa9mak"], 528 => 'make', 535 => 'Make' }, - 'makernote' => { 516 => 'MakerNote' }, + 'maindialexposurecomp' => { 315 => '0.6' }, + 'mainingredient' => { 532 => 'mainIngredient' }, + 'majorbrand' => { 402 => 'major_brand' }, + 'majorversion' => { 502 => 'MajorVersion' }, + 'make' => { 101 => 0x0, 118 => 0x1, 122 => 0x10f, 159 => 'Make', 337 => 'Make', 353 => 0x10f, 402 => 'make', 408 => ['@mak',"\xa9mak"], 529 => 'make', 536 => 'Make' }, + 'makernote' => { 517 => 'MakerNote' }, 'makernoteapple' => { 120 => 'MakN', 122 => 0x927c }, 'makernotecanon' => { 84 => 'CMT3', 120 => 'MakN', 122 => 0x927c }, 'makernotecasio' => { 120 => 'MakN', 122 => 0x927c }, @@ -4402,7 +4407,7 @@ my %tagLookup = ( 'makernotenikon2' => { 120 => 'MakN', 122 => 0x927c }, 'makernotenikon3' => { 120 => 'MakN', 122 => 0x927c }, 'makernotenintendo' => { 120 => 'MakN', 122 => 0x927c }, - 'makernoteoffset' => { 423 => 0xff }, + 'makernoteoffset' => { 424 => 0xff }, 'makernoteolympus' => { 120 => 'MakN', 122 => 0x927c }, 'makernoteolympus2' => { 120 => 'MakN', 122 => 0x927c }, 'makernoteolympus3' => { 120 => 'MakN', 122 => 0x927c }, @@ -4415,7 +4420,7 @@ my %tagLookup = ( 'makernotepentax4' => { 120 => 'MakN', 122 => 0x927c }, 'makernotepentax5' => { 120 => 'MakN', 122 => 0x927c }, 'makernotepentax6' => { 120 => 'MakN', 122 => 0x927c }, - 'makernotepentaxunknown' => { 407 => 'PXMN' }, + 'makernotepentaxunknown' => { 408 => 'PXMN' }, 'makernotephaseone' => { 120 => 'MakN', 122 => 0x927c }, 'makernotereconyx' => { 120 => 'MakN', 122 => 0x927c }, 'makernotereconyx2' => { 120 => 'MakN', 122 => 0x927c }, @@ -4439,292 +4444,292 @@ my %tagLookup = ( 'makernotesony5' => { 120 => 'MakN', 122 => 0x927c }, 'makernotesonyericsson' => { 120 => 'MakN', 122 => 0x927c }, 'makernotesonysrf' => { 120 => 'MakN', 122 => 0x927c }, - 'makernotetype' => { 414 => 0x1 }, + 'makernotetype' => { 415 => 0x1 }, 'makernoteunknown' => { 120 => 'MakN', 122 => 0x927c }, 'makernoteunknownbinary' => { 120 => 'MakN', 122 => 0x927c }, 'makernoteunknowntext' => { 120 => 'MakN', 122 => 0x927c }, - 'makernoteversion' => { 1 => 0x1, 189 => 0x0, 239 => 0x1, 328 => 0x0, 347 => 0x8000, 418 => 0x0, 421 => 0x1, 424 => [0x1d,0x1f], 437 => 0x2000 }, - 'makerurl' => { 407 => "\xa9mal" }, - 'managedfrom' => { 540 => 'ManagedFrom' }, - 'managedfromalternatepaths' => { 540 => [\'ManagedFrom','ManagedFromAlternatePaths'] }, - 'managedfromdocumentid' => { 540 => [\'ManagedFrom','ManagedFromDocumentID'] }, - 'managedfromfilepath' => { 540 => [\'ManagedFrom','ManagedFromFilePath'] }, - 'managedfromfrompart' => { 540 => [\'ManagedFrom','ManagedFromFromPart'] }, - 'managedfrominstanceid' => { 540 => [\'ManagedFrom','ManagedFromInstanceID'] }, - 'managedfromlastmodifydate' => { 540 => [\'ManagedFrom','ManagedFromLastModifyDate'] }, - 'managedfromlasturl' => { 540 => [\'ManagedFrom','ManagedFromLastURL'] }, - 'managedfromlinkcategory' => { 540 => [\'ManagedFrom','ManagedFromLinkCategory'] }, - 'managedfromlinkform' => { 540 => [\'ManagedFrom','ManagedFromLinkForm'] }, - 'managedfrommanager' => { 540 => [\'ManagedFrom','ManagedFromManager'] }, - 'managedfrommanagervariant' => { 540 => [\'ManagedFrom','ManagedFromManagerVariant'] }, - 'managedfrommanageto' => { 540 => [\'ManagedFrom','ManagedFromManageTo'] }, - 'managedfrommanageui' => { 540 => [\'ManagedFrom','ManagedFromManageUI'] }, - 'managedfrommaskmarkers' => { 540 => [\'ManagedFrom','ManagedFromMaskMarkers'] }, - 'managedfromoriginaldocumentid' => { 540 => [\'ManagedFrom','ManagedFromOriginalDocumentID'] }, - 'managedfrompartmapping' => { 540 => [\'ManagedFrom','ManagedFromPartMapping'] }, - 'managedfromplacedresolutionunit' => { 540 => [\'ManagedFrom','ManagedFromPlacedResolutionUnit'] }, - 'managedfromplacedxresolution' => { 540 => [\'ManagedFrom','ManagedFromPlacedXResolution'] }, - 'managedfromplacedyresolution' => { 540 => [\'ManagedFrom','ManagedFromPlacedYResolution'] }, - 'managedfromrenditionclass' => { 540 => [\'ManagedFrom','ManagedFromRenditionClass'] }, - 'managedfromrenditionparams' => { 540 => [\'ManagedFrom','ManagedFromRenditionParams'] }, - 'managedfromtopart' => { 540 => [\'ManagedFrom','ManagedFromToPart'] }, - 'managedfromversionid' => { 540 => [\'ManagedFrom','ManagedFromVersionID'] }, - 'manager' => { 540 => 'Manager' }, - 'managervariant' => { 540 => 'ManagerVariant' }, - 'manageto' => { 540 => 'ManageTo' }, - 'manageui' => { 540 => 'ManageUI' }, - 'manifest' => { 540 => 'Manifest' }, - 'manifestlinkform' => { 540 => [\'Manifest','ManifestLinkForm'] }, - 'manifestplacedresolutionunit' => { 540 => [\'Manifest','ManifestPlacedResolutionUnit'] }, - 'manifestplacedxresolution' => { 540 => [\'Manifest','ManifestPlacedXResolution'] }, - 'manifestplacedyresolution' => { 540 => [\'Manifest','ManifestPlacedYResolution'] }, - 'manifestreference' => { 540 => [\'Manifest','ManifestReference'] }, - 'manifestreferencealternatepaths' => { 540 => [\'Manifest','ManifestReferenceAlternatePaths'] }, - 'manifestreferencedocumentid' => { 540 => [\'Manifest','ManifestReferenceDocumentID'] }, - 'manifestreferencefilepath' => { 540 => [\'Manifest','ManifestReferenceFilePath'] }, - 'manifestreferencefrompart' => { 540 => [\'Manifest','ManifestReferenceFromPart'] }, - 'manifestreferenceinstanceid' => { 540 => [\'Manifest','ManifestReferenceInstanceID'] }, - 'manifestreferencelastmodifydate' => { 540 => [\'Manifest','ManifestReferenceLastModifyDate'] }, - 'manifestreferencelasturl' => { 540 => [\'Manifest','ManifestReferenceLastURL'] }, - 'manifestreferencelinkcategory' => { 540 => [\'Manifest','ManifestReferenceLinkCategory'] }, - 'manifestreferencelinkform' => { 540 => [\'Manifest','ManifestReferenceLinkForm'] }, - 'manifestreferencemanager' => { 540 => [\'Manifest','ManifestReferenceManager'] }, - 'manifestreferencemanagervariant' => { 540 => [\'Manifest','ManifestReferenceManagerVariant'] }, - 'manifestreferencemanageto' => { 540 => [\'Manifest','ManifestReferenceManageTo'] }, - 'manifestreferencemanageui' => { 540 => [\'Manifest','ManifestReferenceManageUI'] }, - 'manifestreferencemaskmarkers' => { 540 => [\'Manifest','ManifestReferenceMaskMarkers'] }, - 'manifestreferenceoriginaldocumentid' => { 540 => [\'Manifest','ManifestReferenceOriginalDocumentID'] }, - 'manifestreferencepartmapping' => { 540 => [\'Manifest','ManifestReferencePartMapping'] }, - 'manifestreferenceplacedresolutionunit' => { 540 => [\'Manifest','ManifestReferencePlacedResolutionUnit'] }, - 'manifestreferenceplacedxresolution' => { 540 => [\'Manifest','ManifestReferencePlacedXResolution'] }, - 'manifestreferenceplacedyresolution' => { 540 => [\'Manifest','ManifestReferencePlacedYResolution'] }, - 'manifestreferencerenditionclass' => { 540 => [\'Manifest','ManifestReferenceRenditionClass'] }, - 'manifestreferencerenditionparams' => { 540 => [\'Manifest','ManifestReferenceRenditionParams'] }, - 'manifestreferencetopart' => { 540 => [\'Manifest','ManifestReferenceToPart'] }, - 'manifestreferenceversionid' => { 540 => [\'Manifest','ManifestReferenceVersionID'] }, - 'manometerpressure' => { 323 => 0x900, 347 => 0x86 }, - 'manometerreading' => { 323 => 0x901 }, + 'makernoteversion' => { 1 => 0x1, 189 => 0x0, 239 => 0x1, 329 => 0x0, 348 => 0x8000, 419 => 0x0, 422 => 0x1, 425 => [0x1d,0x1f], 438 => 0x2000 }, + 'makerurl' => { 408 => "\xa9mal" }, + 'managedfrom' => { 541 => 'ManagedFrom' }, + 'managedfromalternatepaths' => { 541 => [\'ManagedFrom','ManagedFromAlternatePaths'] }, + 'managedfromdocumentid' => { 541 => [\'ManagedFrom','ManagedFromDocumentID'] }, + 'managedfromfilepath' => { 541 => [\'ManagedFrom','ManagedFromFilePath'] }, + 'managedfromfrompart' => { 541 => [\'ManagedFrom','ManagedFromFromPart'] }, + 'managedfrominstanceid' => { 541 => [\'ManagedFrom','ManagedFromInstanceID'] }, + 'managedfromlastmodifydate' => { 541 => [\'ManagedFrom','ManagedFromLastModifyDate'] }, + 'managedfromlasturl' => { 541 => [\'ManagedFrom','ManagedFromLastURL'] }, + 'managedfromlinkcategory' => { 541 => [\'ManagedFrom','ManagedFromLinkCategory'] }, + 'managedfromlinkform' => { 541 => [\'ManagedFrom','ManagedFromLinkForm'] }, + 'managedfrommanager' => { 541 => [\'ManagedFrom','ManagedFromManager'] }, + 'managedfrommanagervariant' => { 541 => [\'ManagedFrom','ManagedFromManagerVariant'] }, + 'managedfrommanageto' => { 541 => [\'ManagedFrom','ManagedFromManageTo'] }, + 'managedfrommanageui' => { 541 => [\'ManagedFrom','ManagedFromManageUI'] }, + 'managedfrommaskmarkers' => { 541 => [\'ManagedFrom','ManagedFromMaskMarkers'] }, + 'managedfromoriginaldocumentid' => { 541 => [\'ManagedFrom','ManagedFromOriginalDocumentID'] }, + 'managedfrompartmapping' => { 541 => [\'ManagedFrom','ManagedFromPartMapping'] }, + 'managedfromplacedresolutionunit' => { 541 => [\'ManagedFrom','ManagedFromPlacedResolutionUnit'] }, + 'managedfromplacedxresolution' => { 541 => [\'ManagedFrom','ManagedFromPlacedXResolution'] }, + 'managedfromplacedyresolution' => { 541 => [\'ManagedFrom','ManagedFromPlacedYResolution'] }, + 'managedfromrenditionclass' => { 541 => [\'ManagedFrom','ManagedFromRenditionClass'] }, + 'managedfromrenditionparams' => { 541 => [\'ManagedFrom','ManagedFromRenditionParams'] }, + 'managedfromtopart' => { 541 => [\'ManagedFrom','ManagedFromToPart'] }, + 'managedfromversionid' => { 541 => [\'ManagedFrom','ManagedFromVersionID'] }, + 'manager' => { 541 => 'Manager' }, + 'managervariant' => { 541 => 'ManagerVariant' }, + 'manageto' => { 541 => 'ManageTo' }, + 'manageui' => { 541 => 'ManageUI' }, + 'manifest' => { 541 => 'Manifest' }, + 'manifestlinkform' => { 541 => [\'Manifest','ManifestLinkForm'] }, + 'manifestplacedresolutionunit' => { 541 => [\'Manifest','ManifestPlacedResolutionUnit'] }, + 'manifestplacedxresolution' => { 541 => [\'Manifest','ManifestPlacedXResolution'] }, + 'manifestplacedyresolution' => { 541 => [\'Manifest','ManifestPlacedYResolution'] }, + 'manifestreference' => { 541 => [\'Manifest','ManifestReference'] }, + 'manifestreferencealternatepaths' => { 541 => [\'Manifest','ManifestReferenceAlternatePaths'] }, + 'manifestreferencedocumentid' => { 541 => [\'Manifest','ManifestReferenceDocumentID'] }, + 'manifestreferencefilepath' => { 541 => [\'Manifest','ManifestReferenceFilePath'] }, + 'manifestreferencefrompart' => { 541 => [\'Manifest','ManifestReferenceFromPart'] }, + 'manifestreferenceinstanceid' => { 541 => [\'Manifest','ManifestReferenceInstanceID'] }, + 'manifestreferencelastmodifydate' => { 541 => [\'Manifest','ManifestReferenceLastModifyDate'] }, + 'manifestreferencelasturl' => { 541 => [\'Manifest','ManifestReferenceLastURL'] }, + 'manifestreferencelinkcategory' => { 541 => [\'Manifest','ManifestReferenceLinkCategory'] }, + 'manifestreferencelinkform' => { 541 => [\'Manifest','ManifestReferenceLinkForm'] }, + 'manifestreferencemanager' => { 541 => [\'Manifest','ManifestReferenceManager'] }, + 'manifestreferencemanagervariant' => { 541 => [\'Manifest','ManifestReferenceManagerVariant'] }, + 'manifestreferencemanageto' => { 541 => [\'Manifest','ManifestReferenceManageTo'] }, + 'manifestreferencemanageui' => { 541 => [\'Manifest','ManifestReferenceManageUI'] }, + 'manifestreferencemaskmarkers' => { 541 => [\'Manifest','ManifestReferenceMaskMarkers'] }, + 'manifestreferenceoriginaldocumentid' => { 541 => [\'Manifest','ManifestReferenceOriginalDocumentID'] }, + 'manifestreferencepartmapping' => { 541 => [\'Manifest','ManifestReferencePartMapping'] }, + 'manifestreferenceplacedresolutionunit' => { 541 => [\'Manifest','ManifestReferencePlacedResolutionUnit'] }, + 'manifestreferenceplacedxresolution' => { 541 => [\'Manifest','ManifestReferencePlacedXResolution'] }, + 'manifestreferenceplacedyresolution' => { 541 => [\'Manifest','ManifestReferencePlacedYResolution'] }, + 'manifestreferencerenditionclass' => { 541 => [\'Manifest','ManifestReferenceRenditionClass'] }, + 'manifestreferencerenditionparams' => { 541 => [\'Manifest','ManifestReferenceRenditionParams'] }, + 'manifestreferencetopart' => { 541 => [\'Manifest','ManifestReferenceToPart'] }, + 'manifestreferenceversionid' => { 541 => [\'Manifest','ManifestReferenceVersionID'] }, + 'manometerpressure' => { 324 => 0x900, 348 => 0x86 }, + 'manometerreading' => { 324 => 0x901 }, 'manualafpointselectpattern' => { 87 => 0x513 }, 'manualafpointselpattern' => { 2 => 0xf }, - 'manualflash' => { 326 => 0x1209 }, - 'manualflashoutput' => { 36 => 0x29, 305 => '8.2', 308 => '22.2', 309 => '23.1', 310 => '23.2', 312 => '16.2', 313 => '23.2', 314 => '8.2', 315 => '23.2', 318 => '24.2', 414 => 0x100c }, - 'manualflashstrength' => { 323 => 0x406 }, - 'manualfocusdistance' => { 239 => 0x85, 328 => 0x100c, 423 => 0x223 }, - 'manualfocuspointillumination' => { 319 => 0x17, 320 => 0x17, 321 => 0x17 }, - 'manualfocusringinafmode' => { 319 => 0x1a, 320 => 0x1a, 321 => 0x1a }, + 'manualflash' => { 327 => 0x1209 }, + 'manualflashoutput' => { 36 => 0x29, 306 => '8.2', 309 => '22.2', 310 => '23.1', 311 => '23.2', 313 => '16.2', 314 => '23.2', 315 => '8.2', 316 => '23.2', 319 => '24.2', 415 => 0x100c }, + 'manualflashstrength' => { 324 => 0x406 }, + 'manualfocusdistance' => { 239 => 0x85, 329 => 0x100c, 424 => 0x223 }, + 'manualfocuspointillumination' => { 320 => 0x17, 321 => 0x17, 322 => 0x17 }, + 'manualfocusringinafmode' => { 320 => 0x1a, 321 => 0x1a, 322 => 0x1a }, 'manualtv' => { 86 => 0x5, 87 => 0x705 }, - 'manufacturedate' => { 194 => 0x6705, 362 => 0x1 }, - 'manufacturedate1' => { 416 => 0x4 }, - 'manufacturedate2' => { 416 => 0x5 }, - 'manufacturer' => { 495 => 'Manufacturer', 528 => 'manufacturer' }, + 'manufacturedate' => { 194 => 0x6705, 363 => 0x1 }, + 'manufacturedate1' => { 417 => 0x4 }, + 'manufacturedate2' => { 417 => 0x5 }, + 'manufacturer' => { 496 => 'Manufacturer', 529 => 'manufacturer' }, 'mariahchromablursize' => { 141 => 0xf0d }, 'mariahmaphithreshold' => { 141 => 0xf0c }, 'mariahmaplothreshold' => { 141 => 0xf0b }, 'mariahsigmathreshold' => { 141 => 0xf0e }, 'mariahtexturethreshold' => { 141 => 0xf0a }, - 'marked' => { 526 => 'Marked', 543 => 'Marked' }, - 'markers' => { 539 => 'markers' }, - 'markerscomment' => { 539 => [\'markers','markersComment'] }, - 'markerscuepointparams' => { 539 => [\'markers','markersCuePointParams'] }, - 'markerscuepointparamskey' => { 539 => [\'markers','markersCuePointParamsKey'] }, - 'markerscuepointparamsvalue' => { 539 => [\'markers','markersCuePointParamsValue'] }, - 'markerscuepointtype' => { 539 => [\'markers','markersCuePointType'] }, - 'markersduration' => { 539 => [\'markers','markersDuration'] }, - 'markerslocation' => { 539 => [\'markers','markersLocation'] }, - 'markersname' => { 539 => [\'markers','markersName'] }, - 'markersprobability' => { 539 => [\'markers','markersProbability'] }, - 'markersspeaker' => { 539 => [\'markers','markersSpeaker'] }, - 'markersstarttime' => { 539 => [\'markers','markersStartTime'] }, - 'markerstarget' => { 539 => [\'markers','markersTarget'] }, - 'markerstype' => { 539 => [\'markers','markersType'] }, + 'marked' => { 527 => 'Marked', 544 => 'Marked' }, + 'markers' => { 540 => 'markers' }, + 'markerscomment' => { 540 => [\'markers','markersComment'] }, + 'markerscuepointparams' => { 540 => [\'markers','markersCuePointParams'] }, + 'markerscuepointparamskey' => { 540 => [\'markers','markersCuePointParamsKey'] }, + 'markerscuepointparamsvalue' => { 540 => [\'markers','markersCuePointParamsValue'] }, + 'markerscuepointtype' => { 540 => [\'markers','markersCuePointType'] }, + 'markersduration' => { 540 => [\'markers','markersDuration'] }, + 'markerslocation' => { 540 => [\'markers','markersLocation'] }, + 'markersname' => { 540 => [\'markers','markersName'] }, + 'markersprobability' => { 540 => [\'markers','markersProbability'] }, + 'markersspeaker' => { 540 => [\'markers','markersSpeaker'] }, + 'markersstarttime' => { 540 => [\'markers','markersStartTime'] }, + 'markerstarget' => { 540 => [\'markers','markersTarget'] }, + 'markerstype' => { 540 => [\'markers','markersType'] }, 'maskedareas' => { 122 => 0xc68e }, - 'maskgroupbasedcorractive' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionActive'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionActive'] }, - 'maskgroupbasedcorramount' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionAmount'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionAmount'] }, - 'maskgroupbasedcorrblacks2012' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalBlacks2012'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalBlacks2012'] }, - 'maskgroupbasedcorrbrightness' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalBrightness'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalBrightness'] }, - 'maskgroupbasedcorrclarity' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalClarity'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalClarity'] }, - 'maskgroupbasedcorrclarity2012' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalClarity2012'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalClarity2012'] }, - 'maskgroupbasedcorrcontrast' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalContrast'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalContrast'] }, - 'maskgroupbasedcorrcontrast2012' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalContrast2012'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalContrast2012'] }, - 'maskgroupbasedcorrcorrectionname' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionName'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionName'] }, - 'maskgroupbasedcorrcorrectionsyncid' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionSyncID'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionSyncID'] }, - 'maskgroupbasedcorrdefringe' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalDefringe'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalDefringe'] }, - 'maskgroupbasedcorrdehaze' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalDehaze'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalDehaze'] }, - 'maskgroupbasedcorrections' => { 510 => 'MaskGroupBasedCorrections', 512 => 'MaskGroupBasedCorrections' }, - 'maskgroupbasedcorrexposure' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalExposure'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalExposure'] }, - 'maskgroupbasedcorrexposure2012' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalExposure2012'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalExposure2012'] }, - 'maskgroupbasedcorrhighlights2012' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalHighlights2012'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalHighlights2012'] }, - 'maskgroupbasedcorrhue' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalHue'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalHue'] }, - 'maskgroupbasedcorrluminancenoise' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalLuminanceNoise'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalLuminanceNoise'] }, - 'maskgroupbasedcorrmask' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasks'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasks'] }, - 'maskgroupbasedcorrmaskalpha' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksAlpha'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksAlpha'] }, - 'maskgroupbasedcorrmaskangle' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksAngle'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksAngle'] }, - 'maskgroupbasedcorrmaskbottom' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksBottom'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksBottom'] }, - 'maskgroupbasedcorrmaskcentervalue' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCenterValue'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCenterValue'] }, - 'maskgroupbasedcorrmaskcenterweight' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCenterWeight'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCenterWeight'] }, - 'maskgroupbasedcorrmaskdabs' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksDabs'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksDabs'] }, - 'maskgroupbasedcorrmaskfeather' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFeather'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFeather'] }, - 'maskgroupbasedcorrmaskflipped' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFlipped'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFlipped'] }, - 'maskgroupbasedcorrmaskflow' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFlow'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFlow'] }, - 'maskgroupbasedcorrmaskfullx' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFullX'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFullX'] }, - 'maskgroupbasedcorrmaskfully' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFullY'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFullY'] }, - 'maskgroupbasedcorrmaskinputdigest' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksInputDigest'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksInputDigest'] }, - 'maskgroupbasedcorrmaskleft' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksLeft'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksLeft'] }, - 'maskgroupbasedcorrmaskmaskactive' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskActive'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskActive'] }, - 'maskgroupbasedcorrmaskmaskblendmode' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskBlendMode'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskBlendMode'] }, - 'maskgroupbasedcorrmaskmaskdigest' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskDigest'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskDigest'] }, - 'maskgroupbasedcorrmaskmaskinverted' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskInverted'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskInverted'] }, - 'maskgroupbasedcorrmaskmaskname' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskName'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskName'] }, - 'maskgroupbasedcorrmaskmasks' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasks'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasks'] }, - 'maskgroupbasedcorrmaskmasksalpha' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksAlpha'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksAlpha'] }, - 'maskgroupbasedcorrmaskmasksangle' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksAngle'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksAngle'] }, - 'maskgroupbasedcorrmaskmasksbottom' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksBottom'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksBottom'] }, - 'maskgroupbasedcorrmaskmaskscentervalue' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksCenterValue'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksCenterValue'] }, - 'maskgroupbasedcorrmaskmaskscenterweight' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksCenterWeight'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksCenterWeight'] }, - 'maskgroupbasedcorrmaskmasksdabs' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksDabs'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksDabs'] }, - 'maskgroupbasedcorrmaskmasksfeather' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFeather'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFeather'] }, - 'maskgroupbasedcorrmaskmasksflipped' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFlipped'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFlipped'] }, - 'maskgroupbasedcorrmaskmasksflow' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFlow'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFlow'] }, - 'maskgroupbasedcorrmaskmasksfullx' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFullX'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFullX'] }, - 'maskgroupbasedcorrmaskmasksfully' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFullY'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFullY'] }, - 'maskgroupbasedcorrmaskmasksinputdigest' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksInputDigest'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksInputDigest'] }, - 'maskgroupbasedcorrmaskmasksleft' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksLeft'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksLeft'] }, - 'maskgroupbasedcorrmaskmasksmaskactive' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskActive'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskActive'] }, - 'maskgroupbasedcorrmaskmasksmaskblendmode' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskBlendMode'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskBlendMode'] }, - 'maskgroupbasedcorrmaskmasksmaskdigest' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskDigest'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskDigest'] }, - 'maskgroupbasedcorrmaskmasksmaskinverted' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskInverted'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskInverted'] }, - 'maskgroupbasedcorrmaskmasksmaskname' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskName'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskName'] }, - 'maskgroupbasedcorrmaskmasksmasksubtype' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskSubType'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskSubType'] }, - 'maskgroupbasedcorrmaskmasksmasksyncid' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskSyncID'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskSyncID'] }, - 'maskgroupbasedcorrmaskmasksmaskversion' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskVersion'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskVersion'] }, - 'maskgroupbasedcorrmaskmasksmidpoint' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMidpoint'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMidpoint'] }, - 'maskgroupbasedcorrmaskmasksorigin' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksOrigin'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksOrigin'] }, - 'maskgroupbasedcorrmaskmasksperimetervalue' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksPerimeterValue'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksPerimeterValue'] }, - 'maskgroupbasedcorrmaskmasksradius' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRadius'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRadius'] }, - 'maskgroupbasedcorrmaskmasksreferencepoint' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksReferencePoint'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksReferencePoint'] }, - 'maskgroupbasedcorrmaskmasksright' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRight'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRight'] }, - 'maskgroupbasedcorrmaskmasksroundness' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRoundness'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRoundness'] }, - 'maskgroupbasedcorrmaskmaskssizex' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksSizeX'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksSizeX'] }, - 'maskgroupbasedcorrmaskmaskssizey' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksSizeY'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksSizeY'] }, - 'maskgroupbasedcorrmaskmaskstop' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksTop'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksTop'] }, - 'maskgroupbasedcorrmaskmasksubtype' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskSubType'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskSubType'] }, - 'maskgroupbasedcorrmaskmasksvalue' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskValue'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskValue'] }, - 'maskgroupbasedcorrmaskmasksversion' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksVersion'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksVersion'] }, - 'maskgroupbasedcorrmaskmaskswhat' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksWhat'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksWhat'] }, - 'maskgroupbasedcorrmaskmaskswholeimagearea' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksWholeImageArea'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksWholeImageArea'] }, - 'maskgroupbasedcorrmaskmasksx' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksX'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksX'] }, - 'maskgroupbasedcorrmaskmasksy' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksY'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksY'] }, - 'maskgroupbasedcorrmaskmasksyncid' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskSyncID'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskSyncID'] }, - 'maskgroupbasedcorrmaskmaskszerox' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksZeroX'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksZeroX'] }, - 'maskgroupbasedcorrmaskmaskszeroy' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksZeroY'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksZeroY'] }, - 'maskgroupbasedcorrmaskmaskversion' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskVersion'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskVersion'] }, - 'maskgroupbasedcorrmaskmidpoint' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMidpoint'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMidpoint'] }, - 'maskgroupbasedcorrmaskorigin' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksOrigin'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksOrigin'] }, - 'maskgroupbasedcorrmaskperimetervalue' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksPerimeterValue'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksPerimeterValue'] }, - 'maskgroupbasedcorrmaskradius' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRadius'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRadius'] }, - 'maskgroupbasedcorrmaskrange' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMask'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMask'] }, - 'maskgroupbasedcorrmaskrangeareamodels' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'] }, - 'maskgroupbasedcorrmaskrangeareamodelscolorsampleinfo' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, - 'maskgroupbasedcorrmaskrangeareamodelscomponents' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'] }, - 'maskgroupbasedcorrmaskrangecoloramount' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'] }, - 'maskgroupbasedcorrmaskrangedepthfeather' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'] }, - 'maskgroupbasedcorrmaskrangedepthmax' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'] }, - 'maskgroupbasedcorrmaskrangedepthmin' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'] }, - 'maskgroupbasedcorrmaskrangeinvert' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'] }, - 'maskgroupbasedcorrmaskrangelumfeather' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'] }, - 'maskgroupbasedcorrmaskrangeluminancedepthsampleinfo' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'] }, - 'maskgroupbasedcorrmaskrangelummax' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'] }, - 'maskgroupbasedcorrmaskrangelummin' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'] }, - 'maskgroupbasedcorrmaskrangelumrange' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'] }, - 'maskgroupbasedcorrmaskrangesampletype' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'] }, - 'maskgroupbasedcorrmaskrangetype' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'] }, - 'maskgroupbasedcorrmaskrangeversion' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'] }, - 'maskgroupbasedcorrmaskreferencepoint' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksReferencePoint'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksReferencePoint'] }, - 'maskgroupbasedcorrmaskright' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRight'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRight'] }, - 'maskgroupbasedcorrmaskroundness' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRoundness'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRoundness'] }, - 'maskgroupbasedcorrmasksizex' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksSizeX'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksSizeX'] }, - 'maskgroupbasedcorrmasksizey' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksSizeY'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksSizeY'] }, - 'maskgroupbasedcorrmasktop' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksTop'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksTop'] }, - 'maskgroupbasedcorrmaskvalue' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskValue'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskValue'] }, - 'maskgroupbasedcorrmaskversion' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksVersion'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksVersion'] }, - 'maskgroupbasedcorrmaskwhat' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksWhat'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksWhat'] }, - 'maskgroupbasedcorrmaskwholeimagearea' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksWholeImageArea'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksWholeImageArea'] }, - 'maskgroupbasedcorrmaskx' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksX'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksX'] }, - 'maskgroupbasedcorrmasky' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksY'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksY'] }, - 'maskgroupbasedcorrmaskzerox' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksZeroX'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksZeroX'] }, - 'maskgroupbasedcorrmaskzeroy' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksZeroY'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksZeroY'] }, - 'maskgroupbasedcorrmoire' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalMoire'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalMoire'] }, - 'maskgroupbasedcorrrangemask' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMask'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMask'] }, - 'maskgroupbasedcorrrangemaskareamodels' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModels'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModels'] }, - 'maskgroupbasedcorrrangemaskareamodelscolorsampleinfo' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, - 'maskgroupbasedcorrrangemaskareamodelscomponents' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'] }, - 'maskgroupbasedcorrrangemaskcoloramount' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskColorAmount'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskColorAmount'] }, - 'maskgroupbasedcorrrangemaskdepthfeather' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthFeather'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthFeather'] }, - 'maskgroupbasedcorrrangemaskdepthmax' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthMax'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthMax'] }, - 'maskgroupbasedcorrrangemaskdepthmin' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthMin'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthMin'] }, - 'maskgroupbasedcorrrangemaskinvert' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskInvert'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskInvert'] }, - 'maskgroupbasedcorrrangemasklumfeather' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumFeather'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumFeather'] }, - 'maskgroupbasedcorrrangemaskluminancedepthsampleinfo' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'] }, - 'maskgroupbasedcorrrangemasklummax' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumMax'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumMax'] }, - 'maskgroupbasedcorrrangemasklummin' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumMin'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumMin'] }, - 'maskgroupbasedcorrrangemasklumrange' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumRange'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumRange'] }, - 'maskgroupbasedcorrrangemasksampletype' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskSampleType'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskSampleType'] }, - 'maskgroupbasedcorrrangemasktype' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskType'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskType'] }, - 'maskgroupbasedcorrrangemaskversion' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskVersion'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskVersion'] }, - 'maskgroupbasedcorrsaturation' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalSaturation'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalSaturation'] }, - 'maskgroupbasedcorrshadows2012' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalShadows2012'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalShadows2012'] }, - 'maskgroupbasedcorrsharpness' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalSharpness'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalSharpness'] }, - 'maskgroupbasedcorrtemperature' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTemperature'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTemperature'] }, - 'maskgroupbasedcorrtexture' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTexture'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTexture'] }, - 'maskgroupbasedcorrtint' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTint'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTint'] }, - 'maskgroupbasedcorrtoninghue' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalToningHue'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalToningHue'] }, - 'maskgroupbasedcorrtoningsaturation' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalToningSaturation'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalToningSaturation'] }, - 'maskgroupbasedcorrwhat' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsWhat'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsWhat'] }, - 'maskgroupbasedcorrwhites2012' => { 510 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalWhites2012'], 512 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalWhites2012'] }, + 'maskgroupbasedcorractive' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionActive'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionActive'] }, + 'maskgroupbasedcorramount' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionAmount'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionAmount'] }, + 'maskgroupbasedcorrblacks2012' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalBlacks2012'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalBlacks2012'] }, + 'maskgroupbasedcorrbrightness' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalBrightness'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalBrightness'] }, + 'maskgroupbasedcorrclarity' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalClarity'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalClarity'] }, + 'maskgroupbasedcorrclarity2012' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalClarity2012'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalClarity2012'] }, + 'maskgroupbasedcorrcontrast' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalContrast'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalContrast'] }, + 'maskgroupbasedcorrcontrast2012' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalContrast2012'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalContrast2012'] }, + 'maskgroupbasedcorrcorrectionname' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionName'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionName'] }, + 'maskgroupbasedcorrcorrectionsyncid' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionSyncID'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionSyncID'] }, + 'maskgroupbasedcorrdefringe' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalDefringe'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalDefringe'] }, + 'maskgroupbasedcorrdehaze' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalDehaze'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalDehaze'] }, + 'maskgroupbasedcorrections' => { 511 => 'MaskGroupBasedCorrections', 513 => 'MaskGroupBasedCorrections' }, + 'maskgroupbasedcorrexposure' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalExposure'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalExposure'] }, + 'maskgroupbasedcorrexposure2012' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalExposure2012'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalExposure2012'] }, + 'maskgroupbasedcorrhighlights2012' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalHighlights2012'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalHighlights2012'] }, + 'maskgroupbasedcorrhue' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalHue'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalHue'] }, + 'maskgroupbasedcorrluminancenoise' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalLuminanceNoise'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalLuminanceNoise'] }, + 'maskgroupbasedcorrmask' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasks'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasks'] }, + 'maskgroupbasedcorrmaskalpha' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksAlpha'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksAlpha'] }, + 'maskgroupbasedcorrmaskangle' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksAngle'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksAngle'] }, + 'maskgroupbasedcorrmaskbottom' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksBottom'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksBottom'] }, + 'maskgroupbasedcorrmaskcentervalue' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCenterValue'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCenterValue'] }, + 'maskgroupbasedcorrmaskcenterweight' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCenterWeight'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCenterWeight'] }, + 'maskgroupbasedcorrmaskdabs' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksDabs'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksDabs'] }, + 'maskgroupbasedcorrmaskfeather' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFeather'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFeather'] }, + 'maskgroupbasedcorrmaskflipped' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFlipped'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFlipped'] }, + 'maskgroupbasedcorrmaskflow' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFlow'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFlow'] }, + 'maskgroupbasedcorrmaskfullx' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFullX'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFullX'] }, + 'maskgroupbasedcorrmaskfully' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFullY'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFullY'] }, + 'maskgroupbasedcorrmaskinputdigest' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksInputDigest'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksInputDigest'] }, + 'maskgroupbasedcorrmaskleft' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksLeft'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksLeft'] }, + 'maskgroupbasedcorrmaskmaskactive' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskActive'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskActive'] }, + 'maskgroupbasedcorrmaskmaskblendmode' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskBlendMode'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskBlendMode'] }, + 'maskgroupbasedcorrmaskmaskdigest' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskDigest'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskDigest'] }, + 'maskgroupbasedcorrmaskmaskinverted' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskInverted'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskInverted'] }, + 'maskgroupbasedcorrmaskmaskname' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskName'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskName'] }, + 'maskgroupbasedcorrmaskmasks' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasks'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasks'] }, + 'maskgroupbasedcorrmaskmasksalpha' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksAlpha'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksAlpha'] }, + 'maskgroupbasedcorrmaskmasksangle' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksAngle'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksAngle'] }, + 'maskgroupbasedcorrmaskmasksbottom' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksBottom'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksBottom'] }, + 'maskgroupbasedcorrmaskmaskscentervalue' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksCenterValue'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksCenterValue'] }, + 'maskgroupbasedcorrmaskmaskscenterweight' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksCenterWeight'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksCenterWeight'] }, + 'maskgroupbasedcorrmaskmasksdabs' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksDabs'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksDabs'] }, + 'maskgroupbasedcorrmaskmasksfeather' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFeather'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFeather'] }, + 'maskgroupbasedcorrmaskmasksflipped' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFlipped'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFlipped'] }, + 'maskgroupbasedcorrmaskmasksflow' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFlow'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFlow'] }, + 'maskgroupbasedcorrmaskmasksfullx' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFullX'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFullX'] }, + 'maskgroupbasedcorrmaskmasksfully' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFullY'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFullY'] }, + 'maskgroupbasedcorrmaskmasksinputdigest' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksInputDigest'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksInputDigest'] }, + 'maskgroupbasedcorrmaskmasksleft' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksLeft'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksLeft'] }, + 'maskgroupbasedcorrmaskmasksmaskactive' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskActive'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskActive'] }, + 'maskgroupbasedcorrmaskmasksmaskblendmode' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskBlendMode'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskBlendMode'] }, + 'maskgroupbasedcorrmaskmasksmaskdigest' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskDigest'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskDigest'] }, + 'maskgroupbasedcorrmaskmasksmaskinverted' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskInverted'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskInverted'] }, + 'maskgroupbasedcorrmaskmasksmaskname' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskName'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskName'] }, + 'maskgroupbasedcorrmaskmasksmasksubtype' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskSubType'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskSubType'] }, + 'maskgroupbasedcorrmaskmasksmasksyncid' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskSyncID'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskSyncID'] }, + 'maskgroupbasedcorrmaskmasksmaskversion' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskVersion'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskVersion'] }, + 'maskgroupbasedcorrmaskmasksmidpoint' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMidpoint'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMidpoint'] }, + 'maskgroupbasedcorrmaskmasksorigin' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksOrigin'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksOrigin'] }, + 'maskgroupbasedcorrmaskmasksperimetervalue' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksPerimeterValue'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksPerimeterValue'] }, + 'maskgroupbasedcorrmaskmasksradius' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRadius'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRadius'] }, + 'maskgroupbasedcorrmaskmasksreferencepoint' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksReferencePoint'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksReferencePoint'] }, + 'maskgroupbasedcorrmaskmasksright' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRight'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRight'] }, + 'maskgroupbasedcorrmaskmasksroundness' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRoundness'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRoundness'] }, + 'maskgroupbasedcorrmaskmaskssizex' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksSizeX'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksSizeX'] }, + 'maskgroupbasedcorrmaskmaskssizey' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksSizeY'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksSizeY'] }, + 'maskgroupbasedcorrmaskmaskstop' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksTop'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksTop'] }, + 'maskgroupbasedcorrmaskmasksubtype' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskSubType'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskSubType'] }, + 'maskgroupbasedcorrmaskmasksvalue' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskValue'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskValue'] }, + 'maskgroupbasedcorrmaskmasksversion' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksVersion'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksVersion'] }, + 'maskgroupbasedcorrmaskmaskswhat' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksWhat'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksWhat'] }, + 'maskgroupbasedcorrmaskmaskswholeimagearea' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksWholeImageArea'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksWholeImageArea'] }, + 'maskgroupbasedcorrmaskmasksx' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksX'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksX'] }, + 'maskgroupbasedcorrmaskmasksy' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksY'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksY'] }, + 'maskgroupbasedcorrmaskmasksyncid' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskSyncID'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskSyncID'] }, + 'maskgroupbasedcorrmaskmaskszerox' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksZeroX'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksZeroX'] }, + 'maskgroupbasedcorrmaskmaskszeroy' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksZeroY'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksZeroY'] }, + 'maskgroupbasedcorrmaskmaskversion' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskVersion'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskVersion'] }, + 'maskgroupbasedcorrmaskmidpoint' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMidpoint'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMidpoint'] }, + 'maskgroupbasedcorrmaskorigin' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksOrigin'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksOrigin'] }, + 'maskgroupbasedcorrmaskperimetervalue' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksPerimeterValue'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksPerimeterValue'] }, + 'maskgroupbasedcorrmaskradius' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRadius'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRadius'] }, + 'maskgroupbasedcorrmaskrange' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMask'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMask'] }, + 'maskgroupbasedcorrmaskrangeareamodels' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'] }, + 'maskgroupbasedcorrmaskrangeareamodelscolorsampleinfo' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, + 'maskgroupbasedcorrmaskrangeareamodelscomponents' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'] }, + 'maskgroupbasedcorrmaskrangecoloramount' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'] }, + 'maskgroupbasedcorrmaskrangedepthfeather' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'] }, + 'maskgroupbasedcorrmaskrangedepthmax' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'] }, + 'maskgroupbasedcorrmaskrangedepthmin' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'] }, + 'maskgroupbasedcorrmaskrangeinvert' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'] }, + 'maskgroupbasedcorrmaskrangelumfeather' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'] }, + 'maskgroupbasedcorrmaskrangeluminancedepthsampleinfo' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'] }, + 'maskgroupbasedcorrmaskrangelummax' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'] }, + 'maskgroupbasedcorrmaskrangelummin' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'] }, + 'maskgroupbasedcorrmaskrangelumrange' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'] }, + 'maskgroupbasedcorrmaskrangesampletype' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'] }, + 'maskgroupbasedcorrmaskrangetype' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'] }, + 'maskgroupbasedcorrmaskrangeversion' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'] }, + 'maskgroupbasedcorrmaskreferencepoint' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksReferencePoint'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksReferencePoint'] }, + 'maskgroupbasedcorrmaskright' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRight'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRight'] }, + 'maskgroupbasedcorrmaskroundness' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRoundness'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRoundness'] }, + 'maskgroupbasedcorrmasksizex' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksSizeX'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksSizeX'] }, + 'maskgroupbasedcorrmasksizey' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksSizeY'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksSizeY'] }, + 'maskgroupbasedcorrmasktop' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksTop'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksTop'] }, + 'maskgroupbasedcorrmaskvalue' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskValue'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskValue'] }, + 'maskgroupbasedcorrmaskversion' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksVersion'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksVersion'] }, + 'maskgroupbasedcorrmaskwhat' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksWhat'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksWhat'] }, + 'maskgroupbasedcorrmaskwholeimagearea' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksWholeImageArea'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksWholeImageArea'] }, + 'maskgroupbasedcorrmaskx' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksX'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksX'] }, + 'maskgroupbasedcorrmasky' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksY'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksY'] }, + 'maskgroupbasedcorrmaskzerox' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksZeroX'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksZeroX'] }, + 'maskgroupbasedcorrmaskzeroy' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksZeroY'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksZeroY'] }, + 'maskgroupbasedcorrmoire' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalMoire'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalMoire'] }, + 'maskgroupbasedcorrrangemask' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMask'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMask'] }, + 'maskgroupbasedcorrrangemaskareamodels' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModels'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModels'] }, + 'maskgroupbasedcorrrangemaskareamodelscolorsampleinfo' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, + 'maskgroupbasedcorrrangemaskareamodelscomponents' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'] }, + 'maskgroupbasedcorrrangemaskcoloramount' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskColorAmount'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskColorAmount'] }, + 'maskgroupbasedcorrrangemaskdepthfeather' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthFeather'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthFeather'] }, + 'maskgroupbasedcorrrangemaskdepthmax' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthMax'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthMax'] }, + 'maskgroupbasedcorrrangemaskdepthmin' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthMin'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthMin'] }, + 'maskgroupbasedcorrrangemaskinvert' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskInvert'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskInvert'] }, + 'maskgroupbasedcorrrangemasklumfeather' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumFeather'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumFeather'] }, + 'maskgroupbasedcorrrangemaskluminancedepthsampleinfo' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'] }, + 'maskgroupbasedcorrrangemasklummax' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumMax'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumMax'] }, + 'maskgroupbasedcorrrangemasklummin' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumMin'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumMin'] }, + 'maskgroupbasedcorrrangemasklumrange' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumRange'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumRange'] }, + 'maskgroupbasedcorrrangemasksampletype' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskSampleType'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskSampleType'] }, + 'maskgroupbasedcorrrangemasktype' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskType'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskType'] }, + 'maskgroupbasedcorrrangemaskversion' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskVersion'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskVersion'] }, + 'maskgroupbasedcorrsaturation' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalSaturation'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalSaturation'] }, + 'maskgroupbasedcorrshadows2012' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalShadows2012'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalShadows2012'] }, + 'maskgroupbasedcorrsharpness' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalSharpness'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalSharpness'] }, + 'maskgroupbasedcorrtemperature' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTemperature'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTemperature'] }, + 'maskgroupbasedcorrtexture' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTexture'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTexture'] }, + 'maskgroupbasedcorrtint' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTint'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTint'] }, + 'maskgroupbasedcorrtoninghue' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalToningHue'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalToningHue'] }, + 'maskgroupbasedcorrtoningsaturation' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalToningSaturation'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalToningSaturation'] }, + 'maskgroupbasedcorrwhat' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsWhat'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsWhat'] }, + 'maskgroupbasedcorrwhites2012' => { 511 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalWhites2012'], 513 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalWhites2012'] }, 'masterdocumentid' => { 134 => 0xb9 }, - 'mastergain' => { 262 => 0x50 }, + 'mastergain' => { 263 => 0x50 }, 'materialsample' => { 121 => 'MaterialSample' }, 'materialsampleid' => { 121 => [\'MaterialSample','MaterialSampleMaterialSampleID'] }, - 'matrixmetering' => { 304 => '50.1', 306 => '48.1', 307 => '48.1', 316 => '48.1', 317 => '48.1', 319 => 0x233, 320 => 0x233, 321 => 0x24b }, + 'matrixmetering' => { 305 => '50.1', 307 => '48.1', 308 => '48.1', 317 => '48.1', 318 => '48.1', 320 => 0x233, 321 => 0x233, 322 => 0x24b }, 'matrixselectk' => { 141 => 0x91b }, 'matrixselectthreshold' => { 141 => 0x91a }, 'matrixselectthreshold1' => { 141 => 0x91e }, 'matrixselectthreshold2' => { 141 => 0x91f }, - 'matrixstructure' => { 406 => 0xa }, - 'maxaperture' => { 36 => 0x1a, 141 => 0x3f9, 147 => 0x6103, 166 => 'MaxAperture', 184 => 0x17, 190 => 0x49c5, 237 => 0x36, 324 => 0x20a, 373 => '14.1' }, - 'maxapertureatmaxfocal' => { 130 => 0x1407, 166 => 'MaxApertureAtMaxFocal', 231 => 0xb, 232 => 0x10, 233 => 0x11, 237 => 0x12, 324 => 0x206 }, - 'maxapertureatminfocal' => { 130 => 0x1406, 231 => 0xa, 232 => 0xf, 233 => 0x10, 237 => 0x11, 324 => 0x205 }, - 'maxaperturevalue' => { 122 => 0x9205, 391 => 0x414, 516 => 'MaxApertureValue' }, - 'maxavailheight' => { 524 => 'MaxAvailHeight' }, - 'maxavailwidth' => { 524 => 'MaxAvailWidth' }, - 'maxcontinuousrelease' => { 303 => 0xb, 304 => 0xc, 306 => '12.1', 307 => '12.1', 312 => 0xc, 313 => 0xb, 316 => '12.1', 317 => '12.1', 319 => 0x3d, 320 => 0x3d, 321 => 0x3d }, - 'maxfaces' => { 327 => 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, 36 => 0x17, 130 => 0x1405, 166 => 'MaxFocalLength', 231 => 0x9, 232 => 0xe, 233 => 0xf, 237 => 0x10, 324 => 0x208, 461 => 0x127c, 462 => 0x1138, 463 => 0x330, 464 => 0x330, 465 => 0x30e }, + 'matrixstructure' => { 407 => 0xa }, + 'maxaperture' => { 36 => 0x1a, 141 => 0x3f9, 147 => 0x6103, 166 => 'MaxAperture', 184 => 0x17, 190 => 0x49c5, 237 => 0x36, 325 => 0x20a, 374 => '14.1' }, + 'maxapertureatmaxfocal' => { 130 => 0x1407, 166 => 'MaxApertureAtMaxFocal', 231 => 0xb, 232 => 0x10, 233 => 0x11, 237 => 0x12, 325 => 0x206 }, + 'maxapertureatminfocal' => { 130 => 0x1406, 231 => 0xa, 232 => 0xf, 233 => 0x10, 237 => 0x11, 325 => 0x205 }, + 'maxaperturevalue' => { 122 => 0x9205, 392 => 0x414, 517 => 'MaxApertureValue' }, + 'maxavailheight' => { 525 => 'MaxAvailHeight' }, + 'maxavailwidth' => { 525 => 'MaxAvailWidth' }, + 'maxcontinuousrelease' => { 304 => 0xb, 305 => 0xc, 307 => '12.1', 308 => '12.1', 313 => 0xc, 314 => 0xb, 317 => '12.1', 318 => '12.1', 320 => 0x3d, 321 => 0x3d, 322 => 0x3d }, + 'maxfaces' => { 328 => 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, 36 => 0x17, 130 => 0x1405, 166 => 'MaxFocalLength', 231 => 0x9, 232 => 0xe, 233 => 0xf, 237 => 0x10, 325 => 0x208, 462 => 0x127c, 463 => 0x1138, 464 => 0x330, 465 => 0x330, 466 => 0x30e }, 'maximumdensityrange' => { 136 => 0x8c }, - 'maxpagesize' => { 544 => 'MaxPageSize' }, - 'maxpagesizeh' => { 544 => [\'MaxPageSize','MaxPageSizeH'] }, - 'maxpagesizeunit' => { 544 => [\'MaxPageSize','MaxPageSizeUnit'] }, - 'maxpagesizew' => { 544 => [\'MaxPageSize','MaxPageSizeW'] }, + 'maxpagesize' => { 545 => 'MaxPageSize' }, + 'maxpagesizeh' => { 545 => [\'MaxPageSize','MaxPageSizeH'] }, + 'maxpagesizeunit' => { 545 => [\'MaxPageSize','MaxPageSizeUnit'] }, + 'maxpagesizew' => { 545 => [\'MaxPageSize','MaxPageSizeW'] }, 'maxpixelvaluethreshold' => { 141 => 0xc7d }, 'maxsamplevalue' => { 122 => 0x119 }, - 'maxstorage' => { 534 => 'maxstorage' }, - 'mb-d10batteries' => { 303 => '12.6' }, - 'mb-d10batterytype' => { 312 => '13.3' }, - 'mb-d11batterytype' => { 313 => '2.3' }, - 'mb-d12batterytype' => { 316 => '3.2' }, - 'mb-d80batteries' => { 314 => '6.5' }, - 'mb-d80batterytype' => { 318 => '3.2' }, + 'maxstorage' => { 535 => 'maxstorage' }, + 'mb-d10batteries' => { 304 => '12.6' }, + 'mb-d10batterytype' => { 313 => '13.3' }, + 'mb-d11batterytype' => { 314 => '2.3' }, + 'mb-d12batterytype' => { 317 => '3.2' }, + 'mb-d80batteries' => { 315 => '6.5' }, + 'mb-d80batterytype' => { 319 => '3.2' }, 'mcuversion' => { 231 => 0xc, 232 => 0x11, 233 => 0x12, 237 => 0x13 }, 'md5digest' => { 167 => 'zmd5' }, 'mditemfindercomment' => { 176 => 'MDItemFinderComment' }, 'mditemfscreationdate' => { 176 => 'MDItemFSCreationDate' }, 'mditemfslabel' => { 176 => 'MDItemFSLabel' }, 'mditemusertags' => { 176 => 'MDItemUserTags' }, - 'meal' => { 531 => 'meal' }, + 'meal' => { 532 => 'meal' }, 'measuredev' => { 28 => 0x9, 79 => 0x3, 100 => 0x1814, 159 => 'MeasuredEV' }, 'measuredev2' => { 13 => 0x8, 28 => 0x8, 79 => 0x17 }, 'measuredev3' => { 13 => 0x9 }, - 'measuredlv' => { 190 => 0x690, 342 => 0x312, 345 => 0x312, 346 => 0x312, 349 => 0x3407 }, + 'measuredlv' => { 190 => 0x690, 343 => 0x312, 346 => 0x312, 347 => 0x312, 350 => 0x3407 }, 'measuredrggb' => { 67 => 0x1 }, 'measuredrggbdata' => { 46 => 0x287 }, 'measurementaccuracy' => { 121 => [\'MeasurementOrFact','MeasurementOrFactMeasurementAccuracy'] }, @@ -4737,104 +4742,104 @@ my %tagLookup = ( 'measurementtype' => { 121 => [\'MeasurementOrFact','MeasurementOrFactMeasurementType'] }, 'measurementunit' => { 121 => [\'MeasurementOrFact','MeasurementOrFactMeasurementUnit'] }, 'measurementvalue' => { 121 => [\'MeasurementOrFact','MeasurementOrFactMeasurementValue'] }, - 'measuretype' => { 495 => 'MeasureType' }, + 'measuretype' => { 496 => 'MeasureType' }, 'mechanicalshuttercount' => { 239 => 0x37 }, 'mediaclassprimaryid' => { 182 => 'WM/MediaClassPrimaryID' }, 'mediaclasssecondaryid' => { 182 => 'WM/MediaClassSecondaryID' }, - 'mediaconstraints' => { 333 => 'MediaConstraints' }, - 'mediacreatedate' => { 403 => 0x1 }, - 'mediaeventiddate' => { 500 => 'MediaEventIdDate' }, - 'mediamodifydate' => { 403 => 0x2 }, - 'mediasummarycode' => { 333 => 'MediaSummaryCode' }, - 'mediatype' => { 399 => 'stik' }, + 'mediaconstraints' => { 334 => 'MediaConstraints' }, + 'mediacreatedate' => { 404 => 0x1 }, + 'mediaeventiddate' => { 501 => 'MediaEventIdDate' }, + 'mediamodifydate' => { 404 => 0x2 }, + 'mediasummarycode' => { 334 => 'MediaSummaryCode' }, + 'mediatype' => { 400 => 'stik' }, 'memoaudioquality' => { 87 => 0x812 }, - 'memorycardconfiguration' => { 440 => 0x16 }, + 'memorycardconfiguration' => { 441 => 0x16 }, 'memorycardnumber' => { 216 => 0x2 }, 'menubuttondisplayposition' => { 85 => 0xb, 88 => 0xa, 89 => 0xb, 92 => 0xb }, 'menubuttonreturn' => { 93 => 0xb }, - 'menumonitorofftime' => { 303 => '26.1', 304 => '22.1', 306 => '22.1', 307 => '22.1', 311 => '21.1', 312 => '8.2', 313 => '21.1', 316 => '22.1', 317 => '22.1', 318 => '22.1', 319 => 0x35, 320 => 0x35, 321 => 0x35 }, - 'mergedimages' => { 347 => 0x76 }, - 'metadataauthority' => { 524 => 'metadataAuthority' }, - 'metadataauthorityidentifier' => { 524 => [\'metadataAuthority','metadataAuthorityIdentifier'] }, - 'metadataauthorityname' => { 524 => [\'metadataAuthority','metadataAuthorityName'] }, - 'metadatadate' => { 537 => 'MetadataDate' }, + 'menumonitorofftime' => { 304 => '26.1', 305 => '22.1', 307 => '22.1', 308 => '22.1', 312 => '21.1', 313 => '8.2', 314 => '21.1', 317 => '22.1', 318 => '22.1', 319 => '22.1', 320 => 0x35, 321 => 0x35, 322 => 0x35 }, + 'mergedimages' => { 348 => 0x76 }, + 'metadataauthority' => { 525 => 'metadataAuthority' }, + 'metadataauthorityidentifier' => { 525 => [\'metadataAuthority','metadataAuthorityIdentifier'] }, + 'metadataauthorityname' => { 525 => [\'metadataAuthority','metadataAuthorityName'] }, + 'metadatadate' => { 538 => 'MetadataDate' }, 'metadataeditingsoftware' => { 122 => 0xa43c }, - 'metadatalastedited' => { 524 => 'metadataLastEdited' }, - 'metadatalasteditor' => { 524 => 'metadataLastEditor' }, - 'metadatalasteditoridentifier' => { 524 => [\'metadataLastEditor','metadataLastEditorIdentifier'] }, - 'metadatalasteditorname' => { 524 => [\'metadataLastEditor','metadataLastEditorName'] }, - 'metadatamoddate' => { 539 => 'metadataModDate' }, - 'metaversion' => { 456 => 0x34 }, - 'meterinfo1row1' => { 449 => 0x0, 450 => 0x0 }, - 'meterinfo1row2' => { 449 => 0x6c, 450 => 0x5a }, - 'meterinfo1row3' => { 449 => 0xd8, 450 => 0xb4 }, - 'meterinfo1row4' => { 449 => 0x144, 450 => 0x10e }, - 'meterinfo1row5' => { 449 => 0x1b0, 450 => 0x168 }, - 'meterinfo1row6' => { 449 => 0x21c, 450 => 0x1c2 }, - 'meterinfo1row7' => { 449 => 0x288, 450 => 0x21c }, - 'meterinfo2row1' => { 449 => 0x2f4, 450 => 0x276 }, - 'meterinfo2row2' => { 449 => 0x378, 450 => 0x2e4 }, - 'meterinfo2row3' => { 449 => 0x3fc, 450 => 0x352 }, - 'meterinfo2row4' => { 449 => 0x480, 450 => 0x3c0 }, - 'meterinfo2row5' => { 449 => 0x504, 450 => 0x42e }, - 'meterinfo2row6' => { 449 => 0x588, 450 => 0x49c }, - 'meterinfo2row7' => { 449 => 0x60c, 450 => 0x50a }, - 'meterinfo2row8' => { 449 => 0x690, 450 => 0x578 }, - 'meterinfo2row9' => { 449 => 0x714, 450 => 0x5e6 }, - 'metering' => { 305 => '6.1' }, - 'meteringmode' => { 36 => 0x11, 122 => 0x9207, 143 => 0x1c, 184 => 0x7, 185 => 0x25, 187 => 0x12, 323 => 0x202, 382 => 0x17, 424 => 0x9, 434 => 0x15, 435 => 0x13, 436 => 0x7, 453 => 0x3, 457 => 0x1174, 458 => 0x1178, 459 => 0x1154, 460 => 0x11d0, 461 => 0x11ac, 462 => 0x1064, 463 => 0x25c, 464 => 0x25c, 465 => 0x24b, 516 => 'MeteringMode' }, - 'meteringmode2' => { 363 => '2.1', 448 => 0x202c }, - 'meteringmode3' => { 363 => '16.1' }, + 'metadatalastedited' => { 525 => 'metadataLastEdited' }, + 'metadatalasteditor' => { 525 => 'metadataLastEditor' }, + 'metadatalasteditoridentifier' => { 525 => [\'metadataLastEditor','metadataLastEditorIdentifier'] }, + 'metadatalasteditorname' => { 525 => [\'metadataLastEditor','metadataLastEditorName'] }, + 'metadatamoddate' => { 540 => 'metadataModDate' }, + 'metaversion' => { 457 => 0x34 }, + 'meterinfo1row1' => { 450 => 0x0, 451 => 0x0 }, + 'meterinfo1row2' => { 450 => 0x6c, 451 => 0x5a }, + 'meterinfo1row3' => { 450 => 0xd8, 451 => 0xb4 }, + 'meterinfo1row4' => { 450 => 0x144, 451 => 0x10e }, + 'meterinfo1row5' => { 450 => 0x1b0, 451 => 0x168 }, + 'meterinfo1row6' => { 450 => 0x21c, 451 => 0x1c2 }, + 'meterinfo1row7' => { 450 => 0x288, 451 => 0x21c }, + 'meterinfo2row1' => { 450 => 0x2f4, 451 => 0x276 }, + 'meterinfo2row2' => { 450 => 0x378, 451 => 0x2e4 }, + 'meterinfo2row3' => { 450 => 0x3fc, 451 => 0x352 }, + 'meterinfo2row4' => { 450 => 0x480, 451 => 0x3c0 }, + 'meterinfo2row5' => { 450 => 0x504, 451 => 0x42e }, + 'meterinfo2row6' => { 450 => 0x588, 451 => 0x49c }, + 'meterinfo2row7' => { 450 => 0x60c, 451 => 0x50a }, + 'meterinfo2row8' => { 450 => 0x690, 451 => 0x578 }, + 'meterinfo2row9' => { 450 => 0x714, 451 => 0x5e6 }, + 'metering' => { 306 => '6.1' }, + 'meteringmode' => { 36 => 0x11, 122 => 0x9207, 143 => 0x1c, 184 => 0x7, 185 => 0x25, 187 => 0x12, 324 => 0x202, 383 => 0x17, 425 => 0x9, 435 => 0x15, 436 => 0x13, 437 => 0x7, 454 => 0x3, 458 => 0x1174, 459 => 0x1178, 460 => 0x1154, 461 => 0x11d0, 462 => 0x11ac, 463 => 0x1064, 464 => 0x25c, 465 => 0x25c, 466 => 0x24b, 517 => 'MeteringMode' }, + 'meteringmode2' => { 364 => '2.1', 449 => 0x202c }, + 'meteringmode3' => { 364 => '16.1' }, 'meteringoffscaleindicator' => { 187 => 0x53 }, - 'meteringtime' => { 303 => '22.2', 305 => '3.2', 308 => '17.1', 309 => '18.1', 312 => '7.3', 313 => '18.1', 314 => '3.2', 318 => '19.1' }, - 'micro1version' => { 409 => 0x1f }, - 'micro2version' => { 409 => 0x2d }, - 'microphoneattenuator' => { 244 => 0x34e, 245 => 0x2d2, 246 => 0x2fa, 247 => 0x2fa }, - 'microphonefrequencyresponse' => { 244 => 0x350, 245 => 0x2d4, 246 => 0x2fc, 247 => 0x2fc }, - 'microphonejackpower' => { 244 => 0x376, 245 => 0x2fa, 246 => 0x322, 247 => 0x322 }, - 'microphonesensitivity' => { 244 => 0x34c, 245 => 0x2d0, 246 => 0x2f8, 247 => 0x2f8 }, - 'microvideo' => { 493 => 'MicroVideo' }, - 'microvideooffset' => { 493 => 'MicroVideoOffset' }, - 'microvideopresentationtimestampus' => { 493 => 'MicroVideoPresentationTimestampUs' }, - 'microvideoversion' => { 493 => 'MicroVideoVersion' }, - 'midrangesharpness' => { 256 => 0x3b }, + 'meteringtime' => { 304 => '22.2', 306 => '3.2', 309 => '17.1', 310 => '18.1', 313 => '7.3', 314 => '18.1', 315 => '3.2', 319 => '19.1' }, + 'micro1version' => { 410 => 0x1f }, + 'micro2version' => { 410 => 0x2d }, + 'microphoneattenuator' => { 244 => 0x34e, 245 => 0x34e, 246 => 0x2d2, 247 => 0x2fa, 248 => 0x2fa }, + 'microphonefrequencyresponse' => { 244 => 0x350, 245 => 0x350, 246 => 0x2d4, 247 => 0x2fc, 248 => 0x2fc }, + 'microphonejackpower' => { 244 => 0x376, 245 => 0x376, 246 => 0x2fa, 247 => 0x322, 248 => 0x322 }, + 'microphonesensitivity' => { 244 => 0x34c, 245 => 0x34c, 246 => 0x2d0, 247 => 0x2f8, 248 => 0x2f8 }, + 'microvideo' => { 494 => 'MicroVideo' }, + 'microvideooffset' => { 494 => 'MicroVideoOffset' }, + 'microvideopresentationtimestampus' => { 494 => 'MicroVideoPresentationTimestampUs' }, + 'microvideoversion' => { 494 => 'MicroVideoVersion' }, + 'midrangesharpness' => { 257 => 0x3b }, 'mieversion' => { 167 => '0Vers' }, - 'mime' => { 495 => 'Mime' }, - 'minaperture' => { 36 => 0x1b, 141 => 0x3f8, 166 => 'MinAperture', 373 => '0.2' }, - 'minaperturevalue' => { 391 => 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, 36 => 0x18, 130 => 0x1404, 166 => 'MinFocalLength', 231 => 0x8, 232 => 0xd, 233 => 0xe, 237 => 0xf, 324 => 0x207, 461 => 0x127a, 462 => 0x1136, 463 => 0x32e, 464 => 0x32e, 465 => 0x30c }, - 'minfocusdistance' => { 373 => 0x3 }, - 'minimumiso' => { 347 => 0xe8 }, + 'mime' => { 496 => 'Mime' }, + 'minaperture' => { 36 => 0x1b, 141 => 0x3f8, 166 => 'MinAperture', 374 => '0.2' }, + 'minaperturevalue' => { 392 => 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, 36 => 0x18, 130 => 0x1404, 166 => 'MinFocalLength', 231 => 0x8, 232 => 0xd, 233 => 0xe, 237 => 0xf, 325 => 0x207, 462 => 0x127a, 463 => 0x1136, 464 => 0x32e, 465 => 0x32e, 466 => 0x30c }, + 'minfocusdistance' => { 374 => 0x3 }, + 'minimumiso' => { 348 => 0xe8 }, 'minintegrationrows' => { 141 => 0x1874 }, 'minoltadate' => { 184 => 0x15 }, 'minoltaimagesize' => { 184 => 0x4, 185 => 0xc, 186 => 0x2, 189 => 0x103 }, 'minoltamodelid' => { 184 => 0x25 }, 'minoltaquality' => { 184 => 0x5, 185 => 0xd, 186 => 0x3, 189 => [0x102,0x103] }, 'minoltatime' => { 184 => 0x16 }, - 'minormodelagedisclosure' => { 333 => 'MinorModelAgeDisclosure' }, - 'minorversion' => { 401 => 'minor_version', 501 => 'MinorVersion' }, + 'minormodelagedisclosure' => { 334 => 'MinorModelAgeDisclosure' }, + 'minorversion' => { 402 => 'minor_version', 502 => 'MinorVersion' }, 'minsamplevalue' => { 122 => 0x118 }, 'mirrorlockup' => { 85 => 0xc, 86 => 0xc, 87 => 0x60f, 88 => 0xb, 89 => 0xc, 90 => 0x6, 91 => 0x6, 92 => 0xc, 93 => 0x3 }, - 'mobilecountrycode' => { 509 => 'mcc' }, - 'mobilenetworkcode' => { 509 => 'mnc' }, - 'moddate' => { 336 => 'modify-date', 526 => 'ModDate' }, - 'modedialposition' => { 440 => 0x14 }, - 'model' => { 101 => 0x6, 122 => 0x110, 159 => 'Model', 336 => 'Model', 352 => 0x110, 382 => 0x23f, 401 => 'model', 407 => ['@mod','CNMN','cmnm',"\xa9mdl","\xa9mod"], 424 => 0x84, 495 => 'Model', 528 => 'model', 535 => 'Model' }, - 'modelage' => { 524 => 'ModelAge' }, - 'modelid' => { 322 => 0x0 }, - 'modelingflash' => { 303 => '21.4', 304 => '31.1', 306 => '31.1', 307 => '31.1', 312 => '26.4', 313 => '30.2', 314 => '7.4', 315 => '30.1', 316 => '31.1', 317 => '31.1', 318 => '31.3', 319 => 0x5d, 320 => 0x5d, 321 => 0x5d }, - 'modelreleaseid' => { 333 => 'ModelReleaseID' }, - 'modelreleasestatus' => { 333 => 'ModelReleaseStatus' }, - 'modelreleaseyear' => { 471 => 0x52, 472 => 0x46, 473 => 0x53 }, + 'mobilecountrycode' => { 510 => 'mcc' }, + 'mobilenetworkcode' => { 510 => 'mnc' }, + 'moddate' => { 337 => 'modify-date', 527 => 'ModDate' }, + 'modedialposition' => { 441 => 0x14 }, + 'model' => { 101 => 0x6, 122 => 0x110, 159 => 'Model', 337 => 'Model', 353 => 0x110, 383 => 0x23f, 402 => 'model', 408 => ['@mod','CNMN','cmnm',"\xa9mdl","\xa9mod"], 425 => 0x84, 496 => 'Model', 529 => 'model', 536 => 'Model' }, + 'modelage' => { 525 => 'ModelAge' }, + 'modelid' => { 323 => 0x0 }, + 'modelingflash' => { 304 => '21.4', 305 => '31.1', 307 => '31.1', 308 => '31.1', 313 => '26.4', 314 => '30.2', 315 => '7.4', 316 => '30.1', 317 => '31.1', 318 => '31.1', 319 => '31.3', 320 => 0x5d, 321 => 0x5d, 322 => 0x5d }, + 'modelreleaseid' => { 334 => 'ModelReleaseID' }, + 'modelreleasestatus' => { 334 => 'ModelReleaseStatus' }, + 'modelreleaseyear' => { 472 => 0x52, 473 => 0x46, 474 => 0x53 }, 'modeltiepoint' => { 122 => 0x8482 }, 'modeltransform' => { 122 => 0x85d8 }, - 'modelyear' => { 528 => 'modelYear' }, - 'modificationdate' => { 529 => 'modificationDate' }, + 'modelyear' => { 529 => 'modelYear' }, + 'modificationdate' => { 530 => 'modificationDate' }, 'modifiedcolortemp' => { 68 => 0x9 }, 'modifieddigitalgain' => { 68 => 0xb }, 'modifiedparamflag' => { 60 => 0x1 }, 'modifiedpicturestyle' => { 68 => 0xa }, - 'modifiedsaturation' => { 323 => 0x504 }, + 'modifiedsaturation' => { 324 => 0x504 }, 'modifiedsensorbluelevel' => { 68 => 0x5 }, 'modifiedsensorredlevel' => { 68 => 0x4 }, 'modifiedsharpness' => { 68 => 0x2 }, @@ -4843,131 +4848,131 @@ my %tagLookup = ( 'modifiedwhitebalance' => { 68 => 0x8 }, 'modifiedwhitebalanceblue' => { 68 => 0x7 }, 'modifiedwhitebalancered' => { 68 => 0x6 }, - 'modifydate' => { 122 => 0x132, 160 => 'ModifyDate', 332 => 'ModDate', 334 => 'tIME', 398 => 'ModDate', 404 => 0x2, 537 => 'ModifyDate' }, - 'moirefilter' => { 122 => 0xfe58, 510 => 'MoireFilter', 512 => 'MoireFilter' }, - 'monitorbrightness' => { 244 => 0x69a, 245 => 0x59a, 246 => 0x5ca, 247 => 0x5e2 }, + 'modifydate' => { 122 => 0x132, 160 => 'ModifyDate', 333 => 'ModDate', 335 => 'tIME', 399 => 'ModDate', 405 => 0x2, 538 => 'ModifyDate' }, + 'moirefilter' => { 122 => 0xfe58, 511 => 'MoireFilter', 513 => 'MoireFilter' }, + 'monitorbrightness' => { 244 => 0x69a, 245 => 0x6aa, 246 => 0x59a, 247 => 0x5ca, 248 => 0x5e2 }, 'monitordisplayoff' => { 187 => 0x4c }, 'monitormatrix' => { 141 => 0x8fc }, - 'monitorofftime' => { 303 => '18.2', 305 => '3.1', 314 => '3.1' }, - 'monochromecolor' => { 323 => 0x53b }, + 'monitorofftime' => { 304 => '18.2', 306 => '3.1', 315 => '3.1' }, + 'monochromecolor' => { 324 => 0x53b }, 'monochromecontrast' => { 112 => 0x3c }, - 'monochromefiltereffect' => { 106 => 0x20307, 112 => 0x3a, 347 => 0xac, 382 => 0x73 }, - 'monochromegraineffect' => { 347 => 0xd2 }, + 'monochromefiltereffect' => { 106 => 0x20307, 112 => 0x3a, 348 => 0xac, 383 => 0x73 }, + 'monochromegraineffect' => { 348 => 0xd2 }, 'monochromelinear' => { 112 => 0x3d }, 'monochromeoutputhighlightpoint' => { 112 => 0x41 }, 'monochromeoutputshadowpoint' => { 112 => 0x42 }, - 'monochromeprofilesettings' => { 323 => 0x537 }, + 'monochromeprofilesettings' => { 324 => 0x537 }, 'monochromerawhighlight' => { 112 => 0x7a }, 'monochromerawhighlightpoint' => { 112 => 0x3f }, 'monochromerawshadow' => { 112 => 0x83 }, 'monochromerawshadowpoint' => { 112 => 0x40 }, 'monochromesharpness' => { 112 => 0x3e }, - 'monochrometoning' => { 382 => 0x74 }, + 'monochrometoning' => { 383 => 0x74 }, 'monochrometoningeffect' => { 106 => 0x20306, 112 => 0x3b }, 'monochromeunsharpmaskfineness' => { 112 => 0xb2 }, 'monochromeunsharpmaskstrength' => { 112 => 0xb0 }, 'monochromeunsharpmaskthreshold' => { 112 => 0xb4 }, - 'monochromevignetting' => { 323 => 0x53a }, + 'monochromevignetting' => { 324 => 0x53a }, 'monthdaycreated' => { 143 => 0x12, 152 => 0xe }, 'mood' => { 182 => 'WM/Mood' }, - 'moonphase' => { 408 => 0x12, 409 => 0x43, 410 => 0x4c }, - 'morepermissions' => { 508 => 'morePermissions' }, - 'motionphotovideo' => { 402 => 'mpvd' }, - 'motionsensitivity' => { 408 => 0x29, 410 => 0x60 }, - 'movementcount' => { 399 => "\xa9mvc" }, - 'movementname' => { 399 => "\xa9mvn" }, - 'movementnumber' => { 399 => "\xa9mvi" }, - 'movieactived-lighting' => { 243 => 0x238, 244 => 0x334, 245 => 0x2b8, 246 => 0x2e0, 247 => 0x2e0 }, - 'movieaelockbuttonassignment' => { 316 => '40.1' }, - 'movieaf-onbutton' => { 319 => 0xcb, 320 => 0xcb, 321 => 0xcb }, - 'movieafareamode' => { 244 => 0x342, 245 => 0x2c6, 246 => 0x2ee, 247 => 0x2ee, 319 => 0x203, 320 => 0x203, 321 => 0x21b }, - 'movieafspeed' => { 319 => 0xdd, 320 => 0xdd, 321 => 0xdd }, - 'movieafspeedapply' => { 319 => 0xdf, 320 => 0xdf, 321 => 0xdf }, - 'movieaftrackingsensitivity' => { 319 => 0xe1, 320 => 0xe1, 321 => 0xe1 }, - 'movieaperturelock' => { 319 => 0x259, 320 => 0x259, 321 => 0x271 }, + 'moonphase' => { 409 => 0x12, 410 => 0x43, 411 => 0x4c }, + 'morepermissions' => { 509 => 'morePermissions' }, + 'motionphotovideo' => { 403 => 'mpvd' }, + 'motionsensitivity' => { 409 => 0x29, 411 => 0x60 }, + 'movementcount' => { 400 => "\xa9mvc" }, + 'movementname' => { 400 => "\xa9mvn" }, + 'movementnumber' => { 400 => "\xa9mvi" }, + 'movieactived-lighting' => { 243 => 0x238, 244 => 0x334, 245 => 0x334, 246 => 0x2b8, 247 => 0x2e0, 248 => 0x2e0 }, + 'movieaelockbuttonassignment' => { 317 => '40.1' }, + 'movieaf-onbutton' => { 320 => 0xcb, 321 => 0xcb, 322 => 0xcb }, + 'movieafareamode' => { 244 => 0x342, 245 => 0x342, 246 => 0x2c6, 247 => 0x2ee, 248 => 0x2ee, 320 => 0x203, 321 => 0x203, 322 => 0x21b }, + 'movieafspeed' => { 320 => 0xdd, 321 => 0xdd, 322 => 0xdd }, + 'movieafspeedapply' => { 320 => 0xdf, 321 => 0xdf, 322 => 0xdf }, + 'movieaftrackingsensitivity' => { 320 => 0xe1, 321 => 0xe1, 322 => 0xe1 }, + 'movieaperturelock' => { 320 => 0x259, 321 => 0x259, 322 => 0x271 }, 'movieautodistortioncontrol' => { 243 => 0x242 }, 'moviediffractioncompensation' => { 243 => 0x241 }, - 'moviedxcropalert' => { 244 => 0x377, 245 => 0x2fb, 246 => 0x323, 247 => 0x323 }, - 'movieelectronicvr' => { 244 => 0x348, 245 => 0x2cc, 246 => 0x2f4, 247 => 0x2f4 }, - 'movieevfgrid' => { 319 => 0x21d, 320 => 0x21d, 321 => 0x235 }, - 'movieflickerreduction' => { 244 => 0x33c, 245 => 0x2c0, 246 => 0x2e8, 247 => 0x2e8 }, - 'moviefocusmode' => { 243 => 0x248, 244 => 0x340, 245 => 0x2c4, 246 => 0x2ec, 247 => 0x2ec }, - 'moviefocuspointlock' => { 319 => 0x226, 320 => 0x226, 321 => 0x23e }, - 'movieframerate' => { 243 => 0x1f8, 244 => 0x374, 245 => 0x2f4, 246 => 0x31c, 247 => 0x31c }, - 'movieframesize' => { 243 => 0x1f6, 244 => 0x372, 245 => 0x2f2, 246 => 0x31a, 247 => 0x31a }, - 'moviefunc1button' => { 306 => '41.1', 307 => '41.1', 317 => '41.1', 319 => 0xc3, 320 => 0xc3, 321 => 0xc3 }, - 'moviefunc2button' => { 319 => 0xc7, 320 => 0xc7, 321 => 0xc7 }, - 'moviefunc3button' => { 320 => 0x127, 321 => 0x13f }, - 'moviefunctionbutton' => { 304 => '41.1', 316 => '41.1' }, - 'moviefunctionbuttonplusdials' => { 304 => '52.1' }, - 'moviehighisonoisereduction' => { 243 => 0x23c, 244 => 0x336, 245 => 0x2ba, 246 => 0x2e2, 247 => 0x2e2 }, - 'moviehighlightdisplaythreshold' => { 319 => 0x215, 320 => 0x215, 321 => 0x22d }, - 'moviehighreszoom' => { 244 => 0x380, 246 => 0x32c, 247 => 0x32c }, - 'movieimagearea' => { 244 => 0x2da, 245 => 0x25c, 246 => 0x286, 247 => 0x286 }, - 'movieisoautocontrolmanualmode' => { 244 => 0x2e8, 245 => 0x26a, 246 => 0x294, 247 => 0x294 }, - 'movieisoautohilimit' => { 244 => 0x2e6, 245 => 0x268, 246 => 0x292, 247 => 0x292 }, - 'movieisoautomanualmode' => { 243 => 0x204, 244 => 0x2ea, 245 => 0x26c, 246 => 0x296, 247 => 0x296 }, - 'movielenscontrolring' => { 319 => 0xd7, 320 => 0xd7, 321 => 0xd7 }, - 'moviemeteringmode' => { 244 => 0x33e, 245 => 0x2c2, 246 => 0x2ea, 247 => 0x2ea }, - 'moviemidtonedisplayrange' => { 319 => 0x219, 320 => 0x219, 321 => 0x231 }, - 'moviemidtonedisplayvalue' => { 319 => 0x217, 320 => 0x217, 321 => 0x22f }, - 'moviemultiselector' => { 319 => 0xd9, 320 => 0xcf, 321 => 0xcf }, - 'moviepreviewbutton' => { 304 => '41.2', 306 => '41.2', 307 => '41.2', 316 => '41.2', 317 => '41.2' }, - 'moviepreviewbuttonplusdials' => { 304 => '52.2' }, - 'movierecordbuttonplaybackmode' => { 319 => 0x1b5, 320 => 0x1b5, 321 => 0x1cd }, - 'movieshutterbutton' => { 304 => '38.3', 306 => '38.3', 307 => '38.3', 316 => '38.3', 317 => '38.3' }, - 'movieshutterspeedlock' => { 319 => 0x225, 320 => 0x225, 321 => 0x23d }, + 'moviedxcropalert' => { 244 => 0x377, 245 => 0x377, 246 => 0x2fb, 247 => 0x323, 248 => 0x323 }, + 'movieelectronicvr' => { 244 => 0x348, 245 => 0x348, 246 => 0x2cc, 247 => 0x2f4, 248 => 0x2f4 }, + 'movieevfgrid' => { 320 => 0x21d, 321 => 0x21d, 322 => 0x235 }, + 'movieflickerreduction' => { 244 => 0x33c, 245 => 0x33c, 246 => 0x2c0, 247 => 0x2e8, 248 => 0x2e8 }, + 'moviefocusmode' => { 243 => 0x248, 244 => 0x340, 245 => 0x340, 246 => 0x2c4, 247 => 0x2ec, 248 => 0x2ec }, + 'moviefocuspointlock' => { 320 => 0x226, 321 => 0x226, 322 => 0x23e }, + 'movieframerate' => { 243 => 0x1f8, 244 => 0x374, 245 => 0x370, 246 => 0x2f4, 247 => 0x31c, 248 => 0x31c }, + 'movieframesize' => { 243 => 0x1f6, 244 => 0x372, 245 => 0x36e, 246 => 0x2f2, 247 => 0x31a, 248 => 0x31a }, + 'moviefunc1button' => { 307 => '41.1', 308 => '41.1', 318 => '41.1', 320 => 0xc3, 321 => 0xc3, 322 => 0xc3 }, + 'moviefunc2button' => { 320 => 0xc7, 321 => 0xc7, 322 => 0xc7 }, + 'moviefunc3button' => { 321 => 0x127, 322 => 0x13f }, + 'moviefunctionbutton' => { 305 => '41.1', 317 => '41.1' }, + 'moviefunctionbuttonplusdials' => { 305 => '52.1' }, + 'moviehighisonoisereduction' => { 243 => 0x23c, 244 => 0x336, 245 => 0x336, 246 => 0x2ba, 247 => 0x2e2, 248 => 0x2e2 }, + 'moviehighlightdisplaythreshold' => { 320 => 0x215, 321 => 0x215, 322 => 0x22d }, + 'moviehighreszoom' => { 244 => 0x380, 245 => 0x380, 247 => 0x32c, 248 => 0x32c }, + 'movieimagearea' => { 244 => 0x2da, 245 => 0x2da, 246 => 0x25c, 247 => 0x286, 248 => 0x286 }, + 'movieisoautocontrolmanualmode' => { 244 => 0x2e8, 245 => 0x2e8, 246 => 0x26a, 247 => 0x294, 248 => 0x294 }, + 'movieisoautohilimit' => { 244 => 0x2e6, 245 => 0x2e6, 246 => 0x268, 247 => 0x292, 248 => 0x292 }, + 'movieisoautomanualmode' => { 243 => 0x204, 244 => 0x2ea, 245 => 0x2ea, 246 => 0x26c, 247 => 0x296, 248 => 0x296 }, + 'movielenscontrolring' => { 320 => 0xd7, 321 => 0xd7, 322 => 0xd7 }, + 'moviemeteringmode' => { 244 => 0x33e, 245 => 0x33e, 246 => 0x2c2, 247 => 0x2ea, 248 => 0x2ea }, + 'moviemidtonedisplayrange' => { 320 => 0x219, 321 => 0x219, 322 => 0x231 }, + 'moviemidtonedisplayvalue' => { 320 => 0x217, 321 => 0x217, 322 => 0x22f }, + 'moviemultiselector' => { 320 => 0xd9, 321 => 0xcf, 322 => 0xcf }, + 'moviepreviewbutton' => { 305 => '41.2', 307 => '41.2', 308 => '41.2', 317 => '41.2', 318 => '41.2' }, + 'moviepreviewbuttonplusdials' => { 305 => '52.2' }, + 'movierecordbuttonplaybackmode' => { 320 => 0x1b5, 321 => 0x1b5, 322 => 0x1cd }, + 'movieshutterbutton' => { 305 => '38.3', 307 => '38.3', 308 => '38.3', 317 => '38.3', 318 => '38.3' }, + 'movieshutterspeedlock' => { 320 => 0x225, 321 => 0x225, 322 => 0x23d }, 'movieslowmotion' => { 243 => 0x1fa }, - 'moviesoundrecording' => { 244 => 0x34a, 245 => 0x2ce, 246 => 0x2f6, 247 => 0x2f6 }, - 'moviesubjectdetection' => { 244 => 0x378, 245 => 0x2fc, 246 => 0x324, 247 => 0x324 }, - 'moviesubselectorassignment' => { 304 => '48.2' }, - 'moviesubselectorassignmentplusdials' => { 304 => '53.1' }, - 'movietonemap' => { 245 => 0x2ec, 246 => 0x314, 247 => 0x314 }, - 'movietype' => { 228 => 0x2ca, 243 => 0x1fe, 244 => 0x2e4, 245 => 0x266, 246 => 0x290, 247 => 0x290 }, + 'moviesoundrecording' => { 244 => 0x34a, 245 => 0x34a, 246 => 0x2ce, 247 => 0x2f6, 248 => 0x2f6 }, + 'moviesubjectdetection' => { 244 => 0x378, 245 => 0x378, 246 => 0x2fc, 247 => 0x324, 248 => 0x324 }, + 'moviesubselectorassignment' => { 305 => '48.2' }, + 'moviesubselectorassignmentplusdials' => { 305 => '53.1' }, + 'movietonemap' => { 246 => 0x2ec, 247 => 0x314, 248 => 0x314 }, + 'movietype' => { 228 => 0x2ca, 243 => 0x1fe, 244 => 0x2e4, 245 => 0x2e4, 246 => 0x266, 247 => 0x290, 248 => 0x290 }, 'movievibrationreduction' => { 243 => 0x24e }, 'movievibrationreductionsameasphoto' => { 243 => 0x24f }, - 'movievignettecontrol' => { 243 => 0x23e, 244 => 0x1b0, 245 => 0x1a0, 246 => 0x1b4, 247 => 0x1b4 }, + 'movievignettecontrol' => { 243 => 0x23e, 244 => 0x1b0, 245 => 0x1b0, 246 => 0x1a0, 247 => 0x1b4, 248 => 0x1b4 }, 'movievignettecontrolsameasphoto' => { 243 => 0x240 }, - 'movievrmode' => { 244 => 0x344, 245 => 0x2c8, 246 => 0x2f0, 247 => 0x2f0 }, - 'moviezebrapattern' => { 319 => 0x213, 320 => 0x213, 321 => 0x22b }, - 'multiburstimageheight' => { 448 => 0x1002 }, - 'multiburstimagewidth' => { 448 => 0x1001 }, - 'multiburstmode' => { 448 => 0x1000 }, + 'movievrmode' => { 244 => 0x344, 245 => 0x344, 246 => 0x2c8, 247 => 0x2f0, 248 => 0x2f0 }, + 'moviezebrapattern' => { 320 => 0x213, 321 => 0x213, 322 => 0x22b }, + 'multiburstimageheight' => { 449 => 0x1002 }, + 'multiburstimagewidth' => { 449 => 0x1001 }, + 'multiburstmode' => { 449 => 0x1000 }, 'multicontrollerwhilemetering' => { 87 => 0x517 }, - 'multiexposure' => { 70 => 0x1, 347 => 0xb4 }, - 'multiexposureautogain' => { 249 => 0x3 }, + 'multiexposure' => { 70 => 0x1, 348 => 0xb4 }, + 'multiexposureautogain' => { 250 => 0x3 }, 'multiexposurecontrol' => { 70 => 0x2 }, - 'multiexposuremode' => { 249 => 0x1, 250 => 0x1 }, - 'multiexposureoverlaymode' => { 250 => 0x3 }, - 'multiexposureshots' => { 70 => 0x3, 244 => 0x9a, 245 => 0x8e, 246 => 0x9c, 247 => 0x9c, 249 => 0x2, 250 => 0x2 }, - 'multiframenoisereduction' => { 436 => 0x35, 448 => 0x200b, 453 => 0x15 }, - 'multiframenreffect' => { 448 => 0x2023 }, + 'multiexposuremode' => { 250 => 0x1, 251 => 0x1 }, + 'multiexposureoverlaymode' => { 251 => 0x3 }, + 'multiexposureshots' => { 70 => 0x3, 244 => 0x9a, 245 => 0x9a, 246 => 0x8e, 247 => 0x9c, 248 => 0x9c, 250 => 0x2, 251 => 0x2 }, + 'multiframenoisereduction' => { 437 => 0x35, 449 => 0x200b, 454 => 0x15 }, + 'multiframenreffect' => { 449 => 0x2023 }, 'multifunctionlock' => { 87 => 0x70f }, - 'multipleexposuremode' => { 244 => 0x98, 245 => 0x8c, 246 => 0x9a, 247 => 0x9a, 327 => 0x101c }, - 'multipleexposureset' => { 363 => '10.1' }, - 'multisample' => { 262 => 0x40 }, - 'multiselector' => { 303 => '9.4', 304 => '10.3', 306 => '10.3', 307 => '10.3', 312 => '27.4', 316 => '10.3', 317 => '10.3' }, - 'multiselectorliveview' => { 303 => '4.3', 306 => '37.1', 307 => '37.1', 316 => '37.1', 317 => '37.1' }, - 'multiselectorliveviewmode' => { 276 => 0x18c2 }, - 'multiselectorplaybackmode' => { 303 => ['13.5','9.2'], 304 => '10.2', 307 => '10.2', 312 => '27.2', 316 => '10.2', 317 => '10.2', 319 => 0xb3, 320 => 0xb3, 321 => 0xb3 }, - 'multiselectorshootmode' => { 303 => '9.1', 304 => '10.1', 306 => '10.1', 307 => '10.1', 312 => '27.1', 316 => '10.1', 317 => '10.1', 319 => 0xaf, 320 => 0xaf, 321 => 0xaf }, - 'multishot' => { 352 => 0x121 }, - 'mute' => { 401 => 'player.movie.audio.mute' }, + 'multipleexposuremode' => { 244 => 0x98, 245 => 0x98, 246 => 0x8c, 247 => 0x9a, 248 => 0x9a, 328 => 0x101c }, + 'multipleexposureset' => { 364 => '10.1' }, + 'multisample' => { 263 => 0x40 }, + 'multiselector' => { 304 => '9.4', 305 => '10.3', 307 => '10.3', 308 => '10.3', 313 => '27.4', 317 => '10.3', 318 => '10.3' }, + 'multiselectorliveview' => { 304 => '4.3', 307 => '37.1', 308 => '37.1', 317 => '37.1', 318 => '37.1' }, + 'multiselectorliveviewmode' => { 277 => 0x18c2 }, + 'multiselectorplaybackmode' => { 304 => ['13.5','9.2'], 305 => '10.2', 308 => '10.2', 313 => '27.2', 317 => '10.2', 318 => '10.2', 320 => 0xb3, 321 => 0xb3, 322 => 0xb3 }, + 'multiselectorshootmode' => { 304 => '9.1', 305 => '10.1', 307 => '10.1', 308 => '10.1', 313 => '27.1', 317 => '10.1', 318 => '10.1', 320 => 0xaf, 321 => 0xaf, 322 => 0xaf }, + 'multishot' => { 353 => 0x121 }, + 'mute' => { 402 => 'player.movie.audio.mute' }, 'mycolormode' => { 71 => 0x2 }, - 'name' => { 407 => 'name', 510 => 'Name', 512 => 'Name' }, - 'narrator' => { 399 => "\xa9nrt" }, - 'nationalcatalognumber' => { 529 => 'nationalCatalogNumber' }, - 'nativedigest' => { 516 => 'NativeDigest', 535 => 'NativeDigest' }, - 'ndfilter' => { 79 => 0x1c, 323 => 0x204, 414 => 0x1019 }, - 'near' => { 495 => 'Near' }, + 'name' => { 408 => 'name', 511 => 'Name', 513 => 'Name' }, + 'narrator' => { 400 => "\xa9nrt" }, + 'nationalcatalognumber' => { 530 => 'nationalCatalogNumber' }, + 'nativedigest' => { 517 => 'NativeDigest', 536 => 'NativeDigest' }, + 'ndfilter' => { 79 => 0x1c, 324 => 0x204, 415 => 0x1019 }, + 'near' => { 496 => 'Near' }, 'nefbitdepth' => { 239 => 0xe22 }, 'nefcompression' => { 239 => 0x93, 240 => 0xa }, 'neflinearizationtable' => { 239 => 0x96 }, - 'negativecachelargepreviewsize' => { 510 => 'NegativeCacheLargePreviewSize', 512 => 'NegativeCacheLargePreviewSize' }, - 'negativecachemaximumsize' => { 510 => 'NegativeCacheMaximumSize', 512 => 'NegativeCacheMaximumSize' }, - 'negativecachepath' => { 510 => 'NegativeCachePath', 512 => 'NegativeCachePath' }, - 'neutraldensityfactor' => { 507 => 'NeutralDensityFactor' }, - 'neutraldensityfilter' => { 382 => 0x88 }, + 'negativecachelargepreviewsize' => { 511 => 'NegativeCacheLargePreviewSize', 513 => 'NegativeCacheLargePreviewSize' }, + 'negativecachemaximumsize' => { 511 => 'NegativeCacheMaximumSize', 513 => 'NegativeCacheMaximumSize' }, + 'negativecachepath' => { 511 => 'NegativeCachePath', 513 => 'NegativeCachePath' }, + 'neutraldensityfactor' => { 508 => 'NeutralDensityFactor' }, + 'neutraldensityfilter' => { 383 => 0x88 }, 'neutraloutputhighlightpoint' => { 112 => 0x2f }, 'neutraloutputshadowpoint' => { 112 => 0x30 }, 'neutralrawcolortone' => { 112 => 0x28 }, @@ -4985,24 +4990,24 @@ my %tagLookup = ( 'newlensdata' => { 237 => 0x2f }, 'newrawimagedigest' => { 122 => 0xc7a7 }, 'newsphotoversion' => { 136 => 0x0 }, - 'nickname' => { 537 => 'Nickname' }, + 'nickname' => { 538 => 'Nickname' }, 'nikoncapturedata' => { 239 => 0xe01 }, 'nikoncaptureeditversions' => { 239 => 0xe13 }, 'nikoncaptureoffsets' => { 239 => 0xe0e }, 'nikoncaptureoutput' => { 239 => 0xe1e }, 'nikoncaptureversion' => { 239 => 0xe09 }, 'nikoniccprofile' => { 239 => 0xe1d }, - 'nikonimagesize' => { 273 => '723.1', 274 => '732.1', 282 => 0x2c4 }, - 'nikonmeteringmode' => { 202 => 0x17, 243 => 0x146, 253 => 0x214 }, + 'nikonimagesize' => { 274 => '723.1', 275 => '732.1', 283 => 0x2c4 }, + 'nikonmeteringmode' => { 202 => 0x17, 243 => 0x146, 254 => 0x214 }, 'nikonsettings' => { 239 => 0x4e }, - 'noisefilter' => { 323 => 0x527 }, + 'noisefilter' => { 324 => 0x527 }, 'noiseprofile' => { 122 => 0xc761 }, - 'noisereduction' => { 130 => [0x100b,0x100e], 185 => 0xb0, 186 => 0x60, 187 => 0x3f, 239 => 0x95, 296 => 0x753dcbc0, 297 => 0x17, 323 => 0x50a, 328 => 0x103a, 347 => 0x2d, 382 => 0x49, 414 => 0x100f, 416 => 0x2a }, - 'noisereduction2' => { 327 => 0x1010 }, + 'noisereduction' => { 130 => [0x100b,0x100e], 185 => 0xb0, 186 => 0x60, 187 => 0x3f, 239 => 0x95, 297 => 0x753dcbc0, 298 => 0x17, 324 => 0x50a, 329 => 0x103a, 348 => 0x2d, 383 => 0x49, 415 => 0x100f, 417 => 0x2a }, + 'noisereduction2' => { 328 => 0x1010 }, 'noisereductionapplied' => { 122 => 0xc6f7 }, - 'noisereductionintensity' => { 297 => 0x9 }, - 'noisereductionmethod' => { 297 => 0x11 }, - 'noisereductionmode' => { 485 => 0x801e }, + 'noisereductionintensity' => { 298 => 0x9 }, + 'noisereductionmethod' => { 298 => 0x11 }, + 'noisereductionmode' => { 486 => 0x801e }, 'noisereductionparametersatcapture' => { 141 => 0xe73 }, 'noisereductionparameterscamera' => { 141 => 0xe72 }, 'noisereductionparametershost3mp' => { 141 => 0xe71 }, @@ -5011,78 +5016,78 @@ my %tagLookup = ( 'noisereductionparameterskhufu3mp' => { 141 => 0xe65 }, 'noisereductionparameterskhufu6mp' => { 141 => 0xe64 }, 'noisereductionparameterskhufurgb' => { 141 => 0xe63 }, - 'noisereductionparams' => { 352 => 0x1b }, - 'noisereductionsharpness' => { 297 => 0xd }, - 'noisereductionstrength' => { 347 => 0xd6 }, - 'noisereductionvalue' => { 485 => 0x8027 }, - 'nomemorycard' => { 303 => '22.1', 304 => '4.2', 305 => '0.3', 308 => '2.4', 309 => '3.2', 310 => '3.2', 312 => '33.7', 313 => '3.2', 314 => '0.3', 316 => '4.2', 318 => '4.5' }, - 'nominalmaxaperture' => { 373 => 0xa }, - 'nominalminaperture' => { 373 => '10.1' }, - 'noncpulens10focallength' => { 244 => 0x6c6, 247 => 0x620 }, - 'noncpulens10maxaperture' => { 244 => 0x6ee, 247 => 0x670 }, - 'noncpulens11focallength' => { 244 => 0x6c8, 247 => 0x624 }, - 'noncpulens11maxaperture' => { 244 => 0x6f0, 247 => 0x674 }, - 'noncpulens12focallength' => { 244 => 0x6ca, 247 => 0x628 }, - 'noncpulens12maxaperture' => { 244 => 0x6f2, 247 => 0x678 }, - 'noncpulens13focallength' => { 244 => 0x6cc, 247 => 0x62c }, - 'noncpulens13maxaperture' => { 244 => 0x6f4, 247 => 0x67c }, - 'noncpulens14focallength' => { 244 => 0x6ce, 247 => 0x630 }, - 'noncpulens14maxaperture' => { 244 => 0x6f6, 247 => 0x680 }, - 'noncpulens15focallength' => { 244 => 0x6d0, 247 => 0x634 }, - 'noncpulens15maxaperture' => { 244 => 0x6f8, 247 => 0x684 }, - 'noncpulens16focallength' => { 244 => 0x6d2, 247 => 0x638 }, - 'noncpulens16maxaperture' => { 244 => 0x6fa, 247 => 0x688 }, - 'noncpulens17focallength' => { 244 => 0x6d4, 247 => 0x63c }, - 'noncpulens17maxaperture' => { 244 => 0x6fc, 247 => 0x68c }, - 'noncpulens18focallength' => { 244 => 0x6d6, 247 => 0x640 }, - 'noncpulens18maxaperture' => { 244 => 0x6fe, 247 => 0x690 }, - 'noncpulens19focallength' => { 244 => 0x6d8, 247 => 0x644 }, - 'noncpulens19maxaperture' => { 244 => 0x700, 247 => 0x694 }, - 'noncpulens1focallength' => { 244 => 0x6b4, 247 => 0x5fc }, - 'noncpulens1maxaperture' => { 244 => 0x6dc, 247 => 0x64c }, - 'noncpulens20focallength' => { 244 => 0x6da, 247 => 0x648 }, - 'noncpulens20maxaperture' => { 244 => 0x702, 247 => 0x698 }, - 'noncpulens2focallength' => { 244 => 0x6b6, 247 => 0x600 }, - 'noncpulens2maxaperture' => { 244 => 0x6de, 247 => 0x650 }, - 'noncpulens3focallength' => { 244 => 0x6b8, 247 => 0x604 }, - 'noncpulens3maxaperture' => { 244 => 0x6e0, 247 => 0x654 }, - 'noncpulens4focallength' => { 244 => 0x6ba, 247 => 0x608 }, - 'noncpulens4maxaperture' => { 244 => 0x6e2, 247 => 0x658 }, - 'noncpulens5focallength' => { 244 => 0x6bc, 247 => 0x60c }, - 'noncpulens5maxaperture' => { 244 => 0x6e4, 247 => 0x65c }, - 'noncpulens6focallength' => { 244 => 0x6be, 247 => 0x610 }, - 'noncpulens6maxaperture' => { 244 => 0x6e6, 247 => 0x660 }, - 'noncpulens7focallength' => { 244 => 0x6c0, 247 => 0x614 }, - 'noncpulens7maxaperture' => { 244 => 0x6e8, 247 => 0x664 }, - 'noncpulens8focallength' => { 244 => 0x6c2, 247 => 0x618 }, - 'noncpulens8maxaperture' => { 244 => 0x6ea, 247 => 0x668 }, - 'noncpulens9focallength' => { 244 => 0x6c4, 247 => 0x61c }, - 'noncpulens9maxaperture' => { 244 => 0x6ec, 247 => 0x66c }, - 'normalizedcropcorners' => { 337 => 'NormalizedCropCorners' }, + 'noisereductionparams' => { 353 => 0x1b }, + 'noisereductionsharpness' => { 298 => 0xd }, + 'noisereductionstrength' => { 348 => 0xd6 }, + 'noisereductionvalue' => { 486 => 0x8027 }, + 'nomemorycard' => { 304 => '22.1', 305 => '4.2', 306 => '0.3', 309 => '2.4', 310 => '3.2', 311 => '3.2', 313 => '33.7', 314 => '3.2', 315 => '0.3', 317 => '4.2', 319 => '4.5' }, + 'nominalmaxaperture' => { 374 => 0xa }, + 'nominalminaperture' => { 374 => '10.1' }, + 'noncpulens10focallength' => { 244 => 0x6c6, 245 => 0x6d6, 248 => 0x620 }, + 'noncpulens10maxaperture' => { 244 => 0x6ee, 245 => 0x738, 248 => 0x670 }, + 'noncpulens11focallength' => { 244 => 0x6c8, 245 => 0x6d8, 248 => 0x624 }, + 'noncpulens11maxaperture' => { 244 => 0x6f0, 245 => 0x73c, 248 => 0x674 }, + 'noncpulens12focallength' => { 244 => 0x6ca, 245 => 0x6da, 248 => 0x628 }, + 'noncpulens12maxaperture' => { 244 => 0x6f2, 245 => 0x740, 248 => 0x678 }, + 'noncpulens13focallength' => { 244 => 0x6cc, 245 => 0x6dc, 248 => 0x62c }, + 'noncpulens13maxaperture' => { 244 => 0x6f4, 245 => 0x744, 248 => 0x67c }, + 'noncpulens14focallength' => { 244 => 0x6ce, 245 => 0x6de, 248 => 0x630 }, + 'noncpulens14maxaperture' => { 244 => 0x6f6, 245 => 0x748, 248 => 0x680 }, + 'noncpulens15focallength' => { 244 => 0x6d0, 245 => 0x6e0, 248 => 0x634 }, + 'noncpulens15maxaperture' => { 244 => 0x6f8, 245 => 0x74c, 248 => 0x684 }, + 'noncpulens16focallength' => { 244 => 0x6d2, 245 => 0x6e2, 248 => 0x638 }, + 'noncpulens16maxaperture' => { 244 => 0x6fa, 245 => 0x750, 248 => 0x688 }, + 'noncpulens17focallength' => { 244 => 0x6d4, 245 => 0x6e4, 248 => 0x63c }, + 'noncpulens17maxaperture' => { 244 => 0x6fc, 245 => 0x754, 248 => 0x68c }, + 'noncpulens18focallength' => { 244 => 0x6d6, 245 => 0x6e6, 248 => 0x640 }, + 'noncpulens18maxaperture' => { 244 => 0x6fe, 245 => 0x758, 248 => 0x690 }, + 'noncpulens19focallength' => { 244 => 0x6d8, 245 => 0x6e8, 248 => 0x644 }, + 'noncpulens19maxaperture' => { 244 => 0x700, 245 => 0x75c, 248 => 0x694 }, + 'noncpulens1focallength' => { 244 => 0x6b4, 245 => 0x6c4, 248 => 0x5fc }, + 'noncpulens1maxaperture' => { 244 => 0x6dc, 245 => 0x714, 248 => 0x64c }, + 'noncpulens20focallength' => { 244 => 0x6da, 245 => 0x6ea, 248 => 0x648 }, + 'noncpulens20maxaperture' => { 244 => 0x702, 245 => 0x760, 248 => 0x698 }, + 'noncpulens2focallength' => { 244 => 0x6b6, 245 => 0x6c6, 248 => 0x600 }, + 'noncpulens2maxaperture' => { 244 => 0x6de, 245 => 0x718, 248 => 0x650 }, + 'noncpulens3focallength' => { 244 => 0x6b8, 245 => 0x6c8, 248 => 0x604 }, + 'noncpulens3maxaperture' => { 244 => 0x6e0, 245 => 0x71c, 248 => 0x654 }, + 'noncpulens4focallength' => { 244 => 0x6ba, 245 => 0x6ca, 248 => 0x608 }, + 'noncpulens4maxaperture' => { 244 => 0x6e2, 248 => 0x658 }, + 'noncpulens5focallength' => { 244 => 0x6bc, 245 => 0x6cc, 248 => 0x60c }, + 'noncpulens5maxaperture' => { 244 => 0x6e4, 245 => 0x724, 248 => 0x65c }, + 'noncpulens6focallength' => { 244 => 0x6be, 245 => 0x6ce, 248 => 0x610 }, + 'noncpulens6maxaperture' => { 244 => 0x6e6, 245 => 0x728, 248 => 0x660 }, + 'noncpulens7focallength' => { 244 => 0x6c0, 245 => 0x6d0, 248 => 0x614 }, + 'noncpulens7maxaperture' => { 244 => 0x6e8, 245 => 0x72c, 248 => 0x664 }, + 'noncpulens8focallength' => { 244 => 0x6c2, 245 => 0x6d2, 248 => 0x618 }, + 'noncpulens8maxaperture' => { 244 => 0x6ea, 245 => 0x730, 248 => 0x668 }, + 'noncpulens9focallength' => { 244 => 0x6c4, 245 => 0x6d4, 248 => 0x61c }, + 'noncpulens9maxaperture' => { 244 => 0x6ec, 245 => 0x734, 248 => 0x66c }, + 'normalizedcropcorners' => { 338 => 'NormalizedCropCorners' }, 'normallinetime' => { 141 => 0x186a }, 'normalwhitelevel' => { 43 => 0x32a, 44 => 0x280, 47 => [0x2b8,0x2cf,0x2d3], 48 => 0x569, 49 => 0x1e3, 50 => [0x1fc,0x2dc], 51 => [0x230,0x30e], 52 => 0x31c }, - 'notes' => { 487 => 'Notes', 505 => 'notes' }, - 'npages' => { 544 => 'NPages' }, + 'notes' => { 488 => 'Notes', 506 => 'notes' }, + 'npages' => { 545 => 'NPages' }, 'nullrecord' => { 100 => 0x0 }, - 'numafpoints' => { 359 => 0x2 }, - 'number' => { 529 => 'number' }, - 'numberofbeats' => { 539 => 'numberOfBeats' }, - 'numberoffocuspoints' => { 306 => '1.3', 307 => '1.3', 310 => '0.2', 311 => '0.3', 313 => '0.3' }, + 'numafpoints' => { 360 => 0x2 }, + 'number' => { 530 => 'number' }, + 'numberofbeats' => { 540 => 'numberOfBeats' }, + 'numberoffocuspoints' => { 307 => '1.3', 308 => '1.3', 311 => '0.2', 312 => '0.3', 314 => '0.3' }, 'numfaceelements' => { 130 => 0x4200 }, - 'numfacepositions' => { 339 => 0x0 }, + 'numfacepositions' => { 340 => 0x0 }, 'numindexentries' => { 136 => 0x54 }, - 'numwbentries' => { 353 => 0x0, 354 => 0x0 }, - 'object' => { 529 => 'object' }, + 'numwbentries' => { 354 => 0x0, 355 => 0x0 }, + 'object' => { 530 => 'object' }, 'objectattributereference' => { 134 => 0x4 }, - 'objectcycle' => { 134 => 0x4b, 505 => 'ObjectCycle' }, - 'objectdescription' => { 528 => 'objectDescription' }, + 'objectcycle' => { 134 => 0x4b, 506 => 'ObjectCycle' }, + 'objectdescription' => { 529 => 'objectDescription' }, 'objectdistance' => { 115 => 0x6, 116 => 0x2022 }, 'objectname' => { 134 => 0x5 }, 'objectpreviewdata' => { 134 => 0xca }, 'objectpreviewfileformat' => { 134 => 0xc8 }, 'objectpreviewfileversion' => { 134 => 0xc9 }, - 'objectsubtype' => { 528 => 'objectSubtype' }, - 'objecttype' => { 528 => 'objectType' }, + 'objectsubtype' => { 529 => 'objectSubtype' }, + 'objecttype' => { 529 => 'objectType' }, 'objecttypereference' => { 134 => 0x3 }, 'occurrence' => { 121 => 'Occurrence' }, 'occurrenceassociatedmedia' => { 121 => [\'Occurrence','OccurrenceAssociatedMedia'] }, @@ -5114,25 +5119,25 @@ my %tagLookup = ( 'occurrencereproductivecondition' => { 121 => [\'Occurrence','OccurrenceReproductiveCondition'] }, 'occurrencesex' => { 121 => [\'Occurrence','OccurrenceSex'] }, 'occurrencestatus' => { 121 => [\'Occurrence','OccurrenceOccurrenceStatus'] }, - 'oecfcolumns' => { 516 => [\'OECF','OECFColumns'] }, - 'oecfnames' => { 516 => [\'OECF','OECFNames'] }, - 'oecfrows' => { 516 => [\'OECF','OECFRows'] }, - 'oecfvalues' => { 516 => [\'OECF','OECFValues'] }, - 'offsaledate' => { 529 => 'offSaleDate' }, - 'offsaledatea-platform' => { 529 => [\'offSaleDate','offSaleDateA-platform'] }, - 'offsaledatedate' => { 529 => [\'offSaleDate','offSaleDateDate'] }, + 'oecfcolumns' => { 517 => [\'OECF','OECFColumns'] }, + 'oecfnames' => { 517 => [\'OECF','OECFNames'] }, + 'oecfrows' => { 517 => [\'OECF','OECFRows'] }, + 'oecfvalues' => { 517 => [\'OECF','OECFValues'] }, + 'offsaledate' => { 530 => 'offSaleDate' }, + 'offsaledatea-platform' => { 530 => [\'offSaleDate','offSaleDateA-platform'] }, + 'offsaledatedate' => { 530 => [\'offSaleDate','offSaleDateDate'] }, 'offsetdacvalue' => { 141 => 0x190a }, - 'offsethdr' => { 521 => 'OffsetHDR' }, + 'offsethdr' => { 522 => 'OffsetHDR' }, 'offsetschema' => { 122 => 0xea1d }, - 'offsetsdr' => { 521 => 'OffsetSDR' }, + 'offsetsdr' => { 522 => 'OffsetSDR' }, 'offsettime' => { 122 => 0x9010 }, 'offsettimedigitized' => { 122 => 0x9012 }, 'offsettimeoriginal' => { 122 => 0x9011 }, 'oismode' => { 1 => 0xf }, - 'okbutton' => { 313 => '15.1', 318 => '16.1' }, + 'okbutton' => { 314 => '15.1', 319 => '16.1' }, 'oldsubfiletype' => { 122 => 0xff }, - 'olympusimageheight' => { 328 => 0x102f }, - 'olympusimagewidth' => { 328 => 0x102e }, + 'olympusimageheight' => { 329 => 0x102f }, + 'olympusimagewidth' => { 329 => 0x102e }, 'omenatcapturestrength' => { 141 => 0xa60 }, 'omenautostrength' => { 141 => 0xa5f }, 'omenearlystrength' => { 141 => 0xa5e }, @@ -5140,26 +5145,26 @@ my %tagLookup = ( 'omeninitialipfstrength' => { 141 => 0xa5d }, 'omensurfaceindex' => { 141 => 0xa64 }, 'oneshotafrelease' => { 2 => 0x9 }, - 'onetouchwb' => { 328 => 0x302 }, - 'onsaledate' => { 529 => 'onSaleDate' }, - 'onsaledatea-platform' => { 529 => [\'onSaleDate','onSaleDateA-platform'] }, - 'onsaledatedate' => { 529 => [\'onSaleDate','onSaleDateDate'] }, - 'onsaleday' => { 529 => 'onSaleDay' }, - 'onsaledaya-platform' => { 529 => [\'onSaleDay','onSaleDayA-platform'] }, - 'onsaledayday' => { 529 => [\'onSaleDay','onSaleDayDay'] }, + 'onetouchwb' => { 329 => 0x302 }, + 'onsaledate' => { 530 => 'onSaleDate' }, + 'onsaledatea-platform' => { 530 => [\'onSaleDate','onSaleDateA-platform'] }, + 'onsaledatedate' => { 530 => [\'onSaleDate','onSaleDateDate'] }, + 'onsaleday' => { 530 => 'onSaleDay' }, + 'onsaledaya-platform' => { 530 => [\'onSaleDay','onSaleDayA-platform'] }, + 'onsaledayday' => { 530 => [\'onSaleDay','onSaleDayDay'] }, 'opcodelist1' => { 122 => 0xc740 }, 'opcodelist2' => { 122 => 0xc741 }, 'opcodelist3' => { 122 => 0xc74e }, 'opticalzoom' => { 145 => 0xfa3d, 147 => [0x6006,0xf006], 148 => 0x1000, 149 => 0xf, 152 => 0x1e, 154 => 0x20, 155 => 0x1c, 166 => 'OpticalZoom' }, 'opticalzoomcode' => { 79 => 0xa }, - 'opticalzoommode' => { 347 => 0x34 }, - 'opticalzoomon' => { 423 => 0x219 }, - 'optionenddate' => { 532 => 'optionEndDate' }, - 'opto-electricconvfactor' => { 516 => 'OECF' }, + 'opticalzoommode' => { 348 => 0x34 }, + 'opticalzoomon' => { 424 => 0x219 }, + 'optionenddate' => { 533 => 'optionEndDate' }, + 'opto-electricconvfactor' => { 517 => 'OECF' }, 'orangehsl' => { 106 => 0x20911 }, 'ordernumber' => { 130 => 0x8002 }, - 'organisationinimagecode' => { 524 => 'OrganisationInImageCode' }, - 'organisationinimagename' => { 524 => 'OrganisationInImageName' }, + 'organisationinimagecode' => { 525 => 'OrganisationInImageCode' }, + 'organisationinimagename' => { 525 => 'OrganisationInImageName' }, 'organism' => { 121 => 'Organism' }, 'organismassociatedoccurrences' => { 121 => [\'Organism','OrganismAssociatedOccurrences'] }, 'organismassociatedorganisms' => { 121 => [\'Organism','OrganismAssociatedOrganisms'] }, @@ -5168,26 +5173,26 @@ my %tagLookup = ( 'organismpreviousidentifications' => { 121 => [\'Organism','OrganismPreviousIdentifications'] }, 'organismremarks' => { 121 => [\'Organism','OrganismOrganismRemarks'] }, 'organismscope' => { 121 => [\'Organism','OrganismOrganismScope'] }, - 'organization' => { 529 => 'organization' }, - 'orientation' => { 122 => 0x112, 352 => 0x112, 528 => 'orientation', 535 => 'Orientation' }, - 'orientation2' => { 453 => [0x28,0x2e] }, + 'organization' => { 530 => 'organization' }, + 'orientation' => { 122 => 0x112, 353 => 0x112, 529 => 'orientation', 536 => 'Orientation' }, + 'orientation2' => { 454 => [0x28,0x2e] }, 'orientationlinkedaf' => { 2 => 0xe }, 'orientationlinkedafpoint' => { 87 => 0x516 }, 'originalalbumtitle' => { 182 => 'WM/OriginalAlbumTitle' }, - 'originalartist' => { 182 => 'WM/OriginalArtist', 399 => "\xa9ope" }, + 'originalartist' => { 182 => 'WM/OriginalArtist', 400 => "\xa9ope" }, 'originalbestqualitysize' => { 122 => 0xc792 }, - 'originalcreatedatetime' => { 500 => 'OriginalCreateDateTime' }, + 'originalcreatedatetime' => { 501 => 'OriginalCreateDateTime' }, 'originaldecisiondata' => { 117 => 'Canon-OriginalDecisionData' }, 'originaldecisiondataoffset' => { 66 => 0x83 }, 'originaldefaultcropsize' => { 122 => 0xc793 }, 'originaldefaultfinalsize' => { 122 => 0xc791 }, - 'originaldirectory' => { 344 => 0x408 }, - 'originaldocumentid' => { 540 => 'OriginalDocumentID' }, - 'originalfilename' => { 100 => 0x816, 141 => 0x3e9, 153 => 0x20, 344 => 0x407, 500 => 'OriginalFilename' }, - 'originalimagehash' => { 490 => 'OriginalImageHash' }, - 'originalimagehashtype' => { 490 => 'OriginalImageHashType' }, + 'originaldirectory' => { 345 => 0x408 }, + 'originaldocumentid' => { 541 => 'OriginalDocumentID' }, + 'originalfilename' => { 100 => 0x816, 141 => 0x3e9, 153 => 0x20, 345 => 0x407, 501 => 'OriginalFilename' }, + 'originalimagehash' => { 491 => 'OriginalImageHash' }, + 'originalimagehashtype' => { 491 => 'OriginalImageHashType' }, 'originalimageheight' => { 81 => 0xc, 126 => 0x1 }, - 'originalimagemd5' => { 490 => 'OriginalImageMD5' }, + 'originalimagemd5' => { 491 => 'OriginalImageMD5' }, 'originalimagesize' => { 165 => 'OriginalImageSize' }, 'originalimagewidth' => { 81 => 0xb, 126 => 0x0 }, 'originallyricist' => { 182 => 'WM/OriginalLyricist' }, @@ -5195,209 +5200,209 @@ my %tagLookup = ( 'originalrawfiledigest' => { 122 => 0xc71d }, 'originalrawfilename' => { 122 => 0xc68b }, 'originaltransmissionreference' => { 134 => 0x67 }, - 'originatingprogram' => { 134 => 0x41, 505 => 'OriginatingProgram' }, - 'originplatform' => { 529 => 'originPlatform' }, - 'os' => { 514 => 'os' }, - 'otherconditions' => { 333 => 'OtherConditions' }, - 'otherconstraints' => { 333 => 'OtherConstraints' }, + 'originatingprogram' => { 134 => 0x41, 506 => 'OriginatingProgram' }, + 'originplatform' => { 530 => 'originPlatform' }, + 'os' => { 515 => 'os' }, + 'otherconditions' => { 334 => 'OtherConditions' }, + 'otherconstraints' => { 334 => 'OtherConstraints' }, 'otherimage' => { 117 => 'Exif-OtherImage' }, - 'otherimageinfo' => { 333 => 'OtherImageInfo' }, + 'otherimageinfo' => { 334 => 'OtherImageInfo' }, 'otherimagelength' => { 122 => 0x202 }, 'otherimagestart' => { 122 => 0x201 }, - 'otherlicensedocuments' => { 333 => 'OtherLicenseDocuments' }, - 'otherlicenseinfo' => { 333 => 'OtherLicenseInfo' }, - 'otherlicenserequirements' => { 333 => 'OtherLicenseRequirements' }, - 'outcue' => { 539 => 'outCue' }, - 'outcuescale' => { 539 => [\'outCue','outCueScale'] }, - 'outcuevalue' => { 539 => [\'outCue','outCueValue'] }, + 'otherlicensedocuments' => { 334 => 'OtherLicenseDocuments' }, + 'otherlicenseinfo' => { 334 => 'OtherLicenseInfo' }, + 'otherlicenserequirements' => { 334 => 'OtherLicenseRequirements' }, + 'outcue' => { 540 => 'outCue' }, + 'outcuescale' => { 540 => [\'outCue','outCueScale'] }, + 'outcuevalue' => { 540 => [\'outCue','outCueValue'] }, 'outputimageheight' => { 203 => 0x3 }, 'outputimagewidth' => { 203 => 0x2 }, - 'outputlut' => { 347 => 0xa7 }, + 'outputlut' => { 348 => 0xa7 }, 'outputprofile' => { 141 => 0x138b }, 'outputresolution' => { 203 => 0x4 }, 'overclockcols' => { 141 => 0x189c }, 'overclockrows' => { 141 => 0x18c4 }, - 'overridelookvignette' => { 510 => 'OverrideLookVignette', 512 => 'OverrideLookVignette' }, - 'owner' => { 399 => 'ownr', 543 => 'Owner' }, + 'overridelookvignette' => { 511 => 'OverrideLookVignette', 513 => 'OverrideLookVignette' }, + 'owner' => { 400 => 'ownr', 544 => 'Owner' }, 'ownerid' => { 134 => 0xbc }, - 'ownername' => { 15 => 0x10f, 66 => 0x9, 100 => 0x810, 122 => [0xa430,0xfde8], 159 => 'OwnerName', 507 => 'OwnerName', 517 => 'CameraOwnerName' }, + 'ownername' => { 15 => 0x10f, 66 => 0x9, 100 => 0x810, 122 => [0xa430,0xfde8], 159 => 'OwnerName', 508 => 'OwnerName', 518 => 'CameraOwnerName' }, 'padding' => { 122 => 0xea1c }, - 'pagecount' => { 529 => 'pageCount' }, - 'pageimage' => { 537 => [\'PageInfo','PageInfoImage'] }, - 'pageimageformat' => { 537 => [\'PageInfo','PageInfoFormat'] }, - 'pageimageheight' => { 537 => [\'PageInfo','PageInfoHeight'] }, - 'pageimagepagenumber' => { 537 => [\'PageInfo','PageInfoPageNumber'] }, - 'pageimagewidth' => { 537 => [\'PageInfo','PageInfoWidth'] }, - 'pageinfo' => { 537 => 'PageInfo' }, + 'pagecount' => { 530 => 'pageCount' }, + 'pageimage' => { 538 => [\'PageInfo','PageInfoImage'] }, + 'pageimageformat' => { 538 => [\'PageInfo','PageInfoFormat'] }, + 'pageimageheight' => { 538 => [\'PageInfo','PageInfoHeight'] }, + 'pageimagepagenumber' => { 538 => [\'PageInfo','PageInfoPageNumber'] }, + 'pageimagewidth' => { 538 => [\'PageInfo','PageInfoWidth'] }, + 'pageinfo' => { 538 => 'PageInfo' }, 'pagename' => { 122 => 0x11d }, 'pagenumber' => { 122 => 0x129 }, - 'pageprogressiondirection' => { 529 => 'pageProgressionDirection' }, - 'pagerange' => { 529 => 'pageRange' }, - 'paintbasedcorrectionmasks' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasks'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasks'] }, - 'paintbasedcorrections' => { 510 => 'PaintBasedCorrections', 512 => 'PaintBasedCorrections' }, - 'paintcorrectionactive' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionActive'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionActive'] }, - 'paintcorrectionamount' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionAmount'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionAmount'] }, - 'paintcorrectionblacks2012' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalBlacks2012'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalBlacks2012'] }, - 'paintcorrectionbrightness' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalBrightness'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalBrightness'] }, - 'paintcorrectionclarity' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity'] }, - 'paintcorrectionclarity2012' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity2012'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity2012'] }, - 'paintcorrectioncontrast' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast'] }, - 'paintcorrectioncontrast2012' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast2012'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast2012'] }, - 'paintcorrectioncorrectionname' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionName'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionName'] }, - 'paintcorrectioncorrectionsyncid' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionSyncID'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionSyncID'] }, - 'paintcorrectiondefringe' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalDefringe'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalDefringe'] }, - 'paintcorrectiondehaze' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalDehaze'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalDehaze'] }, - 'paintcorrectionexposure' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure'] }, - 'paintcorrectionexposure2012' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure2012'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure2012'] }, - 'paintcorrectionhighlights2012' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalHighlights2012'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalHighlights2012'] }, - 'paintcorrectionhue' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalHue'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalHue'] }, - 'paintcorrectionluminancenoise' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalLuminanceNoise'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalLuminanceNoise'] }, - 'paintcorrectionmaskalpha' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAlpha'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAlpha'] }, - 'paintcorrectionmaskangle' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAngle'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAngle'] }, - 'paintcorrectionmaskbottom' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksBottom'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksBottom'] }, - 'paintcorrectionmaskcentervalue' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterValue'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterValue'] }, - 'paintcorrectionmaskcenterweight' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterWeight'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterWeight'] }, - 'paintcorrectionmaskdabs' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksDabs'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksDabs'] }, - 'paintcorrectionmaskfeather' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFeather'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFeather'] }, - 'paintcorrectionmaskflipped' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlipped'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlipped'] }, - 'paintcorrectionmaskflow' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlow'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlow'] }, - 'paintcorrectionmaskfullx' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullX'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullX'] }, - 'paintcorrectionmaskfully' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullY'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullY'] }, - 'paintcorrectionmaskinputdigest' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksInputDigest'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksInputDigest'] }, - 'paintcorrectionmaskleft' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksLeft'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksLeft'] }, - 'paintcorrectionmaskmaskactive' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskActive'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskActive'] }, - 'paintcorrectionmaskmaskblendmode' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskBlendMode'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskBlendMode'] }, - 'paintcorrectionmaskmaskdigest' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskDigest'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskDigest'] }, - 'paintcorrectionmaskmaskinverted' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskInverted'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskInverted'] }, - 'paintcorrectionmaskmaskname' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskName'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskName'] }, - 'paintcorrectionmaskmasks' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasks'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasks'] }, - 'paintcorrectionmaskmasksalpha' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksAlpha'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksAlpha'] }, - 'paintcorrectionmaskmasksangle' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksAngle'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksAngle'] }, - 'paintcorrectionmaskmasksbottom' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksBottom'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksBottom'] }, - 'paintcorrectionmaskmaskscentervalue' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksCenterValue'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksCenterValue'] }, - 'paintcorrectionmaskmaskscenterweight' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksCenterWeight'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksCenterWeight'] }, - 'paintcorrectionmaskmasksdabs' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksDabs'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksDabs'] }, - 'paintcorrectionmaskmasksfeather' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFeather'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFeather'] }, - 'paintcorrectionmaskmasksflipped' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFlipped'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFlipped'] }, - 'paintcorrectionmaskmasksflow' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFlow'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFlow'] }, - 'paintcorrectionmaskmasksfullx' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFullX'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFullX'] }, - 'paintcorrectionmaskmasksfully' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFullY'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFullY'] }, - 'paintcorrectionmaskmasksinputdigest' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksInputDigest'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksInputDigest'] }, - 'paintcorrectionmaskmasksleft' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksLeft'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksLeft'] }, - 'paintcorrectionmaskmasksmaskactive' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskActive'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskActive'] }, - 'paintcorrectionmaskmasksmaskblendmode' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskBlendMode'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskBlendMode'] }, - 'paintcorrectionmaskmasksmaskdigest' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskDigest'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskDigest'] }, - 'paintcorrectionmaskmasksmaskinverted' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskInverted'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskInverted'] }, - 'paintcorrectionmaskmasksmaskname' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskName'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskName'] }, - 'paintcorrectionmaskmasksmasksubtype' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskSubType'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskSubType'] }, - 'paintcorrectionmaskmasksmasksyncid' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskSyncID'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskSyncID'] }, - 'paintcorrectionmaskmasksmaskversion' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskVersion'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskVersion'] }, - 'paintcorrectionmaskmasksmidpoint' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMidpoint'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMidpoint'] }, - 'paintcorrectionmaskmasksorigin' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksOrigin'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksOrigin'] }, - 'paintcorrectionmaskmasksperimetervalue' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksPerimeterValue'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksPerimeterValue'] }, - 'paintcorrectionmaskmasksradius' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRadius'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRadius'] }, - 'paintcorrectionmaskmasksreferencepoint' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksReferencePoint'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksReferencePoint'] }, - 'paintcorrectionmaskmasksright' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRight'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRight'] }, - 'paintcorrectionmaskmasksroundness' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRoundness'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRoundness'] }, - 'paintcorrectionmaskmaskssizex' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksSizeX'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksSizeX'] }, - 'paintcorrectionmaskmaskssizey' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksSizeY'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksSizeY'] }, - 'paintcorrectionmaskmaskstop' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksTop'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksTop'] }, - 'paintcorrectionmaskmasksubtype' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskSubType'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskSubType'] }, - 'paintcorrectionmaskmasksvalue' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskValue'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskValue'] }, - 'paintcorrectionmaskmasksversion' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksVersion'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksVersion'] }, - 'paintcorrectionmaskmaskswhat' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksWhat'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksWhat'] }, - 'paintcorrectionmaskmaskswholeimagearea' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksWholeImageArea'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksWholeImageArea'] }, - 'paintcorrectionmaskmasksx' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksX'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksX'] }, - 'paintcorrectionmaskmasksy' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksY'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksY'] }, - 'paintcorrectionmaskmasksyncid' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskSyncID'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskSyncID'] }, - 'paintcorrectionmaskmaskszerox' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksZeroX'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksZeroX'] }, - 'paintcorrectionmaskmaskszeroy' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksZeroY'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksZeroY'] }, - 'paintcorrectionmaskmaskversion' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskVersion'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskVersion'] }, - 'paintcorrectionmaskmidpoint' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMidpoint'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMidpoint'] }, - 'paintcorrectionmaskorigin' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksOrigin'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksOrigin'] }, - 'paintcorrectionmaskperimetervalue' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksPerimeterValue'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksPerimeterValue'] }, - 'paintcorrectionmaskradius' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRadius'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRadius'] }, - 'paintcorrectionmaskrange' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMask'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMask'] }, - 'paintcorrectionmaskrangeareamodels' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'] }, - 'paintcorrectionmaskrangeareamodelscolorsampleinfo' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, - 'paintcorrectionmaskrangeareamodelscomponents' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'] }, - 'paintcorrectionmaskrangecoloramount' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'] }, - 'paintcorrectionmaskrangedepthfeather' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'] }, - 'paintcorrectionmaskrangedepthmax' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'] }, - 'paintcorrectionmaskrangedepthmin' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'] }, - 'paintcorrectionmaskrangeinvert' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'] }, - 'paintcorrectionmaskrangelumfeather' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'] }, - 'paintcorrectionmaskrangeluminancedepthsampleinfo' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'] }, - 'paintcorrectionmaskrangelummax' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'] }, - 'paintcorrectionmaskrangelummin' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'] }, - 'paintcorrectionmaskrangelumrange' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'] }, - 'paintcorrectionmaskrangesampletype' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'] }, - 'paintcorrectionmaskrangetype' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'] }, - 'paintcorrectionmaskrangeversion' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'] }, - 'paintcorrectionmaskreferencepoint' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksReferencePoint'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksReferencePoint'] }, - 'paintcorrectionmaskright' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRight'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRight'] }, - 'paintcorrectionmaskroundness' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRoundness'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRoundness'] }, - 'paintcorrectionmasksizex' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeX'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeX'] }, - 'paintcorrectionmasksizey' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeY'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeY'] }, - 'paintcorrectionmasktop' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksTop'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksTop'] }, - 'paintcorrectionmaskvalue' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskValue'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskValue'] }, - 'paintcorrectionmaskversion' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksVersion'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksVersion'] }, - 'paintcorrectionmaskwhat' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksWhat'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksWhat'] }, - 'paintcorrectionmaskwholeimagearea' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksWholeImageArea'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksWholeImageArea'] }, - 'paintcorrectionmaskx' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksX'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksX'] }, - 'paintcorrectionmasky' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksY'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksY'] }, - 'paintcorrectionmaskzerox' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroX'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroX'] }, - 'paintcorrectionmaskzeroy' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroY'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroY'] }, - 'paintcorrectionmoire' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalMoire'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalMoire'] }, - 'paintcorrectionrangemask' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMask'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMask'] }, - 'paintcorrectionrangemaskareamodels' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModels'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModels'] }, - 'paintcorrectionrangemaskareamodelscolorsampleinfo' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, - 'paintcorrectionrangemaskareamodelscomponents' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'] }, - 'paintcorrectionrangemaskcoloramount' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskColorAmount'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskColorAmount'] }, - 'paintcorrectionrangemaskdepthfeather' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthFeather'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthFeather'] }, - 'paintcorrectionrangemaskdepthmax' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthMax'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthMax'] }, - 'paintcorrectionrangemaskdepthmin' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthMin'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthMin'] }, - 'paintcorrectionrangemaskinvert' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskInvert'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskInvert'] }, - 'paintcorrectionrangemasklumfeather' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumFeather'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumFeather'] }, - 'paintcorrectionrangemaskluminancedepthsampleinfo' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'] }, - 'paintcorrectionrangemasklummax' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumMax'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumMax'] }, - 'paintcorrectionrangemasklummin' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumMin'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumMin'] }, - 'paintcorrectionrangemasklumrange' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumRange'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumRange'] }, - 'paintcorrectionrangemasksampletype' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskSampleType'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskSampleType'] }, - 'paintcorrectionrangemasktype' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskType'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskType'] }, - 'paintcorrectionrangemaskversion' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskVersion'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskVersion'] }, - 'paintcorrectionsaturation' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSaturation'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSaturation'] }, - 'paintcorrectionshadows2012' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalShadows2012'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalShadows2012'] }, - 'paintcorrectionsharpness' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSharpness'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSharpness'] }, - 'paintcorrectiontemperature' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTemperature'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTemperature'] }, - 'paintcorrectiontexture' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTexture'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTexture'] }, - 'paintcorrectiontint' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTint'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTint'] }, - 'paintcorrectiontoninghue' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalToningHue'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalToningHue'] }, - 'paintcorrectiontoningsaturation' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalToningSaturation'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalToningSaturation'] }, - 'paintcorrectionwhat' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsWhat'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsWhat'] }, - 'paintcorrectionwhites2012' => { 510 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalWhites2012'], 512 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalWhites2012'] }, - 'panasonicdatetime' => { 350 => 0x0 }, - 'panasonicexifversion' => { 347 => 0x26 }, - 'panasonicimageheight' => { 347 => 0x4c }, - 'panasonicimagewidth' => { 347 => 0x4b }, - 'panasonicrawversion' => { 352 => 0x1 }, + 'pageprogressiondirection' => { 530 => 'pageProgressionDirection' }, + 'pagerange' => { 530 => 'pageRange' }, + 'paintbasedcorrectionmasks' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasks'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasks'] }, + 'paintbasedcorrections' => { 511 => 'PaintBasedCorrections', 513 => 'PaintBasedCorrections' }, + 'paintcorrectionactive' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionActive'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionActive'] }, + 'paintcorrectionamount' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionAmount'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionAmount'] }, + 'paintcorrectionblacks2012' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalBlacks2012'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalBlacks2012'] }, + 'paintcorrectionbrightness' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalBrightness'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalBrightness'] }, + 'paintcorrectionclarity' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity'] }, + 'paintcorrectionclarity2012' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity2012'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity2012'] }, + 'paintcorrectioncontrast' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast'] }, + 'paintcorrectioncontrast2012' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast2012'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast2012'] }, + 'paintcorrectioncorrectionname' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionName'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionName'] }, + 'paintcorrectioncorrectionsyncid' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionSyncID'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionSyncID'] }, + 'paintcorrectiondefringe' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalDefringe'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalDefringe'] }, + 'paintcorrectiondehaze' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalDehaze'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalDehaze'] }, + 'paintcorrectionexposure' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure'] }, + 'paintcorrectionexposure2012' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure2012'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure2012'] }, + 'paintcorrectionhighlights2012' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalHighlights2012'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalHighlights2012'] }, + 'paintcorrectionhue' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalHue'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalHue'] }, + 'paintcorrectionluminancenoise' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalLuminanceNoise'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalLuminanceNoise'] }, + 'paintcorrectionmaskalpha' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAlpha'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAlpha'] }, + 'paintcorrectionmaskangle' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAngle'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAngle'] }, + 'paintcorrectionmaskbottom' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksBottom'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksBottom'] }, + 'paintcorrectionmaskcentervalue' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterValue'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterValue'] }, + 'paintcorrectionmaskcenterweight' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterWeight'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterWeight'] }, + 'paintcorrectionmaskdabs' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksDabs'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksDabs'] }, + 'paintcorrectionmaskfeather' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFeather'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFeather'] }, + 'paintcorrectionmaskflipped' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlipped'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlipped'] }, + 'paintcorrectionmaskflow' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlow'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlow'] }, + 'paintcorrectionmaskfullx' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullX'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullX'] }, + 'paintcorrectionmaskfully' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullY'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullY'] }, + 'paintcorrectionmaskinputdigest' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksInputDigest'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksInputDigest'] }, + 'paintcorrectionmaskleft' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksLeft'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksLeft'] }, + 'paintcorrectionmaskmaskactive' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskActive'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskActive'] }, + 'paintcorrectionmaskmaskblendmode' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskBlendMode'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskBlendMode'] }, + 'paintcorrectionmaskmaskdigest' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskDigest'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskDigest'] }, + 'paintcorrectionmaskmaskinverted' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskInverted'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskInverted'] }, + 'paintcorrectionmaskmaskname' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskName'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskName'] }, + 'paintcorrectionmaskmasks' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasks'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasks'] }, + 'paintcorrectionmaskmasksalpha' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksAlpha'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksAlpha'] }, + 'paintcorrectionmaskmasksangle' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksAngle'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksAngle'] }, + 'paintcorrectionmaskmasksbottom' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksBottom'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksBottom'] }, + 'paintcorrectionmaskmaskscentervalue' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksCenterValue'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksCenterValue'] }, + 'paintcorrectionmaskmaskscenterweight' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksCenterWeight'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksCenterWeight'] }, + 'paintcorrectionmaskmasksdabs' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksDabs'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksDabs'] }, + 'paintcorrectionmaskmasksfeather' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFeather'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFeather'] }, + 'paintcorrectionmaskmasksflipped' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFlipped'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFlipped'] }, + 'paintcorrectionmaskmasksflow' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFlow'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFlow'] }, + 'paintcorrectionmaskmasksfullx' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFullX'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFullX'] }, + 'paintcorrectionmaskmasksfully' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFullY'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFullY'] }, + 'paintcorrectionmaskmasksinputdigest' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksInputDigest'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksInputDigest'] }, + 'paintcorrectionmaskmasksleft' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksLeft'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksLeft'] }, + 'paintcorrectionmaskmasksmaskactive' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskActive'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskActive'] }, + 'paintcorrectionmaskmasksmaskblendmode' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskBlendMode'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskBlendMode'] }, + 'paintcorrectionmaskmasksmaskdigest' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskDigest'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskDigest'] }, + 'paintcorrectionmaskmasksmaskinverted' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskInverted'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskInverted'] }, + 'paintcorrectionmaskmasksmaskname' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskName'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskName'] }, + 'paintcorrectionmaskmasksmasksubtype' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskSubType'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskSubType'] }, + 'paintcorrectionmaskmasksmasksyncid' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskSyncID'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskSyncID'] }, + 'paintcorrectionmaskmasksmaskversion' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskVersion'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskVersion'] }, + 'paintcorrectionmaskmasksmidpoint' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMidpoint'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMidpoint'] }, + 'paintcorrectionmaskmasksorigin' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksOrigin'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksOrigin'] }, + 'paintcorrectionmaskmasksperimetervalue' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksPerimeterValue'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksPerimeterValue'] }, + 'paintcorrectionmaskmasksradius' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRadius'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRadius'] }, + 'paintcorrectionmaskmasksreferencepoint' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksReferencePoint'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksReferencePoint'] }, + 'paintcorrectionmaskmasksright' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRight'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRight'] }, + 'paintcorrectionmaskmasksroundness' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRoundness'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRoundness'] }, + 'paintcorrectionmaskmaskssizex' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksSizeX'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksSizeX'] }, + 'paintcorrectionmaskmaskssizey' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksSizeY'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksSizeY'] }, + 'paintcorrectionmaskmaskstop' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksTop'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksTop'] }, + 'paintcorrectionmaskmasksubtype' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskSubType'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskSubType'] }, + 'paintcorrectionmaskmasksvalue' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskValue'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskValue'] }, + 'paintcorrectionmaskmasksversion' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksVersion'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksVersion'] }, + 'paintcorrectionmaskmaskswhat' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksWhat'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksWhat'] }, + 'paintcorrectionmaskmaskswholeimagearea' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksWholeImageArea'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksWholeImageArea'] }, + 'paintcorrectionmaskmasksx' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksX'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksX'] }, + 'paintcorrectionmaskmasksy' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksY'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksY'] }, + 'paintcorrectionmaskmasksyncid' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskSyncID'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskSyncID'] }, + 'paintcorrectionmaskmaskszerox' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksZeroX'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksZeroX'] }, + 'paintcorrectionmaskmaskszeroy' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksZeroY'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksZeroY'] }, + 'paintcorrectionmaskmaskversion' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskVersion'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskVersion'] }, + 'paintcorrectionmaskmidpoint' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMidpoint'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMidpoint'] }, + 'paintcorrectionmaskorigin' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksOrigin'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksOrigin'] }, + 'paintcorrectionmaskperimetervalue' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksPerimeterValue'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksPerimeterValue'] }, + 'paintcorrectionmaskradius' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRadius'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRadius'] }, + 'paintcorrectionmaskrange' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMask'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMask'] }, + 'paintcorrectionmaskrangeareamodels' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'] }, + 'paintcorrectionmaskrangeareamodelscolorsampleinfo' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, + 'paintcorrectionmaskrangeareamodelscomponents' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'] }, + 'paintcorrectionmaskrangecoloramount' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'] }, + 'paintcorrectionmaskrangedepthfeather' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'] }, + 'paintcorrectionmaskrangedepthmax' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'] }, + 'paintcorrectionmaskrangedepthmin' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'] }, + 'paintcorrectionmaskrangeinvert' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'] }, + 'paintcorrectionmaskrangelumfeather' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'] }, + 'paintcorrectionmaskrangeluminancedepthsampleinfo' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'] }, + 'paintcorrectionmaskrangelummax' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'] }, + 'paintcorrectionmaskrangelummin' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'] }, + 'paintcorrectionmaskrangelumrange' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'] }, + 'paintcorrectionmaskrangesampletype' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'] }, + 'paintcorrectionmaskrangetype' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'] }, + 'paintcorrectionmaskrangeversion' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'] }, + 'paintcorrectionmaskreferencepoint' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksReferencePoint'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksReferencePoint'] }, + 'paintcorrectionmaskright' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRight'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRight'] }, + 'paintcorrectionmaskroundness' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRoundness'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRoundness'] }, + 'paintcorrectionmasksizex' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeX'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeX'] }, + 'paintcorrectionmasksizey' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeY'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeY'] }, + 'paintcorrectionmasktop' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksTop'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksTop'] }, + 'paintcorrectionmaskvalue' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskValue'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskValue'] }, + 'paintcorrectionmaskversion' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksVersion'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksVersion'] }, + 'paintcorrectionmaskwhat' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksWhat'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksWhat'] }, + 'paintcorrectionmaskwholeimagearea' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksWholeImageArea'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksWholeImageArea'] }, + 'paintcorrectionmaskx' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksX'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksX'] }, + 'paintcorrectionmasky' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksY'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksY'] }, + 'paintcorrectionmaskzerox' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroX'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroX'] }, + 'paintcorrectionmaskzeroy' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroY'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroY'] }, + 'paintcorrectionmoire' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalMoire'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalMoire'] }, + 'paintcorrectionrangemask' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMask'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMask'] }, + 'paintcorrectionrangemaskareamodels' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModels'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModels'] }, + 'paintcorrectionrangemaskareamodelscolorsampleinfo' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, + 'paintcorrectionrangemaskareamodelscomponents' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'] }, + 'paintcorrectionrangemaskcoloramount' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskColorAmount'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskColorAmount'] }, + 'paintcorrectionrangemaskdepthfeather' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthFeather'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthFeather'] }, + 'paintcorrectionrangemaskdepthmax' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthMax'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthMax'] }, + 'paintcorrectionrangemaskdepthmin' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthMin'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthMin'] }, + 'paintcorrectionrangemaskinvert' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskInvert'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskInvert'] }, + 'paintcorrectionrangemasklumfeather' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumFeather'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumFeather'] }, + 'paintcorrectionrangemaskluminancedepthsampleinfo' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'] }, + 'paintcorrectionrangemasklummax' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumMax'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumMax'] }, + 'paintcorrectionrangemasklummin' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumMin'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumMin'] }, + 'paintcorrectionrangemasklumrange' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumRange'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumRange'] }, + 'paintcorrectionrangemasksampletype' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskSampleType'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskSampleType'] }, + 'paintcorrectionrangemasktype' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskType'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskType'] }, + 'paintcorrectionrangemaskversion' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskVersion'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskVersion'] }, + 'paintcorrectionsaturation' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSaturation'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSaturation'] }, + 'paintcorrectionshadows2012' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalShadows2012'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalShadows2012'] }, + 'paintcorrectionsharpness' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSharpness'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSharpness'] }, + 'paintcorrectiontemperature' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTemperature'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTemperature'] }, + 'paintcorrectiontexture' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTexture'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTexture'] }, + 'paintcorrectiontint' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTint'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTint'] }, + 'paintcorrectiontoninghue' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalToningHue'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalToningHue'] }, + 'paintcorrectiontoningsaturation' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalToningSaturation'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalToningSaturation'] }, + 'paintcorrectionwhat' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsWhat'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsWhat'] }, + 'paintcorrectionwhites2012' => { 511 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalWhites2012'], 513 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalWhites2012'] }, + 'panasonicdatetime' => { 351 => 0x0 }, + 'panasonicexifversion' => { 348 => 0x26 }, + 'panasonicimageheight' => { 348 => 0x4c }, + 'panasonicimagewidth' => { 348 => 0x4b }, + 'panasonicrawversion' => { 353 => 0x1 }, 'panasonictitle' => { 122 => 0xc6d2 }, 'panasonictitle2' => { 122 => 0xc6d3 }, 'panoramaangle' => { 130 => 0x1153 }, - 'panoramacropbottom' => { 454 => 0x7 }, - 'panoramacropleft' => { 454 => 0x4 }, - 'panoramacropright' => { 454 => 0x6 }, - 'panoramacroptop' => { 454 => 0x5 }, - 'panoramadirection' => { 74 => 0x5, 130 => 0x1154, 454 => 0x3 }, - 'panoramaframeheight' => { 454 => 0x9 }, + 'panoramacropbottom' => { 455 => 0x7 }, + 'panoramacropleft' => { 455 => 0x4 }, + 'panoramacropright' => { 455 => 0x6 }, + 'panoramacroptop' => { 455 => 0x5 }, + 'panoramadirection' => { 74 => 0x5, 130 => 0x1154, 455 => 0x3 }, + 'panoramaframeheight' => { 455 => 0x9 }, 'panoramaframenumber' => { 74 => 0x2 }, - 'panoramaframewidth' => { 454 => 0x8 }, - 'panoramafullheight' => { 454 => 0x2 }, - 'panoramafullwidth' => { 454 => 0x1 }, - 'panoramamode' => { 143 => 0x3c, 323 => 0x601 }, - 'panoramasize3d' => { 436 => 0x38 }, - 'panoramasourceheight' => { 454 => 0xb }, - 'panoramasourcewidth' => { 454 => 0xa }, + 'panoramaframewidth' => { 455 => 0x8 }, + 'panoramafullheight' => { 455 => 0x2 }, + 'panoramafullwidth' => { 455 => 0x1 }, + 'panoramamode' => { 143 => 0x3c, 324 => 0x601 }, + 'panoramasize3d' => { 437 => 0x38 }, + 'panoramasourceheight' => { 455 => 0xb }, + 'panoramasourcewidth' => { 455 => 0xa }, 'panoramicstitchcameramotion' => { 179 => 'PanoramicStitchCameraMotion', 180 => 0x1 }, 'panoramicstitchmaptype' => { 179 => 'PanoramicStitchMapType', 180 => 0x2 }, 'panoramicstitchphi0' => { 179 => 'PanoramicStitchPhi0', 180 => 0x5 }, @@ -5405,38 +5410,39 @@ my %tagLookup = ( 'panoramicstitchtheta0' => { 179 => 'PanoramicStitchTheta0', 180 => 0x3 }, 'panoramicstitchtheta1' => { 179 => 'PanoramicStitchTheta1', 180 => 0x4 }, 'panoramicstitchversion' => { 180 => 0x0 }, - 'pantry' => { 540 => 'Pantry' }, - 'pantryinstanceid' => { 540 => [\'Pantry','PantryInstanceID'] }, - 'parallax' => { 130 => 0xb211, 322 => 0x28 }, - 'parametricdarks' => { 510 => 'ParametricDarks', 512 => 'ParametricDarks' }, - 'parametrichighlights' => { 510 => 'ParametricHighlights', 512 => 'ParametricHighlights' }, - 'parametrichighlightsplit' => { 510 => 'ParametricHighlightSplit', 512 => 'ParametricHighlightSplit' }, - 'parametriclights' => { 510 => 'ParametricLights', 512 => 'ParametricLights' }, - 'parametricmidtonesplit' => { 510 => 'ParametricMidtoneSplit', 512 => 'ParametricMidtoneSplit' }, - 'parametricshadows' => { 510 => 'ParametricShadows', 512 => 'ParametricShadows' }, - 'parametricshadowsplit' => { 510 => 'ParametricShadowSplit', 512 => 'ParametricShadowSplit' }, + 'pantry' => { 541 => 'Pantry' }, + 'pantryinstanceid' => { 541 => [\'Pantry','PantryInstanceID'] }, + 'parallax' => { 130 => 0xb211, 323 => 0x28 }, + 'parameters' => { 337 => 'parameters' }, + 'parametricdarks' => { 511 => 'ParametricDarks', 513 => 'ParametricDarks' }, + 'parametrichighlights' => { 511 => 'ParametricHighlights', 513 => 'ParametricHighlights' }, + 'parametrichighlightsplit' => { 511 => 'ParametricHighlightSplit', 513 => 'ParametricHighlightSplit' }, + 'parametriclights' => { 511 => 'ParametricLights', 513 => 'ParametricLights' }, + 'parametricmidtonesplit' => { 511 => 'ParametricMidtoneSplit', 513 => 'ParametricMidtoneSplit' }, + 'parametricshadows' => { 511 => 'ParametricShadows', 513 => 'ParametricShadows' }, + 'parametricshadowsplit' => { 511 => 'ParametricShadowSplit', 513 => 'ParametricShadowSplit' }, 'parentalrating' => { 182 => 'WM/ParentalRating' }, - 'parentid' => { 524 => 'parentId' }, - 'parentmediaeventid' => { 500 => 'ParentMediaEventID' }, - 'parentmeid' => { 500 => 'ParentMEID' }, - 'parentproductid' => { 399 => '@ppi' }, - 'parentreference1' => { 522 => [\'TagStructure','TagStructureParentReference'] }, - 'parentreference2' => { 522 => [\'TagStructure','TagStructureSubLabelsParentReference'] }, - 'parentreference3' => { 522 => [\'TagStructure','TagStructureSubLabelsSubLabelsParentReference'] }, - 'parentreference4' => { 522 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsParentReference'] }, - 'parentreference5' => { 522 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsParentReference'] }, - 'parentreference6' => { 522 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsParentReference'] }, - 'parentshorttitle' => { 399 => '@PST' }, - 'parenttitle' => { 399 => '@pti' }, + 'parentid' => { 525 => 'parentId' }, + 'parentmediaeventid' => { 501 => 'ParentMediaEventID' }, + 'parentmeid' => { 501 => 'ParentMEID' }, + 'parentproductid' => { 400 => '@ppi' }, + 'parentreference1' => { 523 => [\'TagStructure','TagStructureParentReference'] }, + 'parentreference2' => { 523 => [\'TagStructure','TagStructureSubLabelsParentReference'] }, + 'parentreference3' => { 523 => [\'TagStructure','TagStructureSubLabelsSubLabelsParentReference'] }, + 'parentreference4' => { 523 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsParentReference'] }, + 'parentreference5' => { 523 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsParentReference'] }, + 'parentreference6' => { 523 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsParentReference'] }, + 'parentshorttitle' => { 400 => '@PST' }, + 'parenttitle' => { 400 => '@pti' }, 'partialactivecols1' => { 141 => 0x17e8 }, 'partialactivecols2' => { 141 => 0x17f2 }, 'partialactiverows1' => { 141 => 0x17fc }, 'partialactiverows2' => { 141 => 0x1806 }, - 'partofcompilation' => { 539 => 'partOfCompilation' }, - 'patientbirthdate' => { 488 => 'PatientDOB' }, - 'patientid' => { 488 => 'PatientID' }, - 'patientname' => { 488 => 'PatientName' }, - 'patientsex' => { 488 => 'PatientSex' }, + 'partofcompilation' => { 540 => 'partOfCompilation' }, + 'patientbirthdate' => { 489 => 'PatientDOB' }, + 'patientid' => { 489 => 'PatientID' }, + 'patientname' => { 489 => 'PatientName' }, + 'patientsex' => { 489 => 'PatientSex' }, 'patternareaheight' => { 141 => 0x963 }, 'patternareawidth' => { 141 => 0x962 }, 'patterncorrectionfactorscale' => { 141 => 0x969 }, @@ -5448,52 +5454,52 @@ my %tagLookup = ( 'patternimagerwidth' => { 141 => 0x960 }, 'patternx' => { 141 => 0x966 }, 'patterny' => { 141 => 0x967 }, - 'pdfversion' => { 526 => 'PDFVersion' }, - 'pentaximagesize' => { 382 => 0x9 }, - 'pentaxmodelid' => { 362 => 0x0, 382 => 0x5 }, - 'pentaxmodeltype' => { 382 => 0x1 }, - 'pentaxversion' => { 382 => 0x0 }, - 'people' => { 491 => 'People', 503 => 'People' }, + 'pdfversion' => { 527 => 'PDFVersion' }, + 'pentaximagesize' => { 383 => 0x9 }, + 'pentaxmodelid' => { 363 => 0x0, 383 => 0x5 }, + 'pentaxmodeltype' => { 383 => 0x1 }, + 'pentaxversion' => { 383 => 0x0 }, + 'people' => { 492 => 'People', 504 => 'People' }, 'perchannelblacklevel' => { 43 => 0x157, 44 => 0x16b, 46 => 0xc4, 47 => [0x2b4,0x2cb,0x2cf], 48 => [0x108,0x14d], 49 => 0x1df, 50 => [0x1f8,0x2d8], 51 => [0x22c,0x30a], 52 => 0x149 }, - 'performer' => { 399 => 'perf', 407 => 'perf' }, - 'performerkeywords' => { 407 => "\xa9prk" }, - 'performers' => { 407 => "\xa9prf" }, - 'performerurl' => { 407 => "\xa9prl" }, + 'performer' => { 400 => 'perf', 408 => 'perf' }, + 'performerkeywords' => { 408 => "\xa9prk" }, + 'performers' => { 408 => "\xa9prf" }, + 'performerurl' => { 408 => "\xa9prl" }, 'period' => { 182 => 'WM/Period' }, - 'peripheralillumcentralradius' => { 485 => 0x8030 }, - 'peripheralillumcentralvalue' => { 485 => 0x8031 }, + 'peripheralillumcentralradius' => { 486 => 0x8030 }, + 'peripheralillumcentralvalue' => { 486 => 0x8031 }, 'peripheralillumination' => { 106 => 0x20702, 112 => 0x68 }, - 'peripheralilluminationcorr' => { 64 => 0x1, 372 => 0x2 }, + 'peripheralilluminationcorr' => { 64 => 0x1, 373 => 0x2 }, 'peripheralilluminationon' => { 106 => '0x20702.0', 112 => 0x64 }, - 'peripheralillumperiphvalue' => { 485 => 0x8032 }, + 'peripheralillumperiphvalue' => { 486 => 0x8032 }, 'peripherallighting' => { 81 => 0x2, 130 => 0x3804 }, 'peripherallightingsetting' => { 82 => 0x5 }, 'peripherallightingvalue' => { 81 => 0x6 }, - 'permissions' => { 532 => 'permissions' }, - 'permits' => { 508 => 'permits' }, - 'person' => { 529 => 'person' }, - 'personality' => { 500 => 'Personality' }, - 'personheard' => { 524 => 'PersonHeard' }, - 'personheardidentifier' => { 524 => [\'PersonHeard','PersonHeardIdentifier'] }, - 'personheardname' => { 524 => [\'PersonHeard','PersonHeardName'] }, - 'personinimage' => { 524 => 'PersonInImage' }, - 'personinimagecharacteristic' => { 524 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristic'] }, - 'personinimagecvtermcvid' => { 524 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvId'] }, - 'personinimagecvtermid' => { 524 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermId'] }, - 'personinimagecvtermname' => { 524 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermName'] }, - 'personinimagecvtermrefinedabout' => { 524 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermRefinedAbout'] }, - 'personinimagedescription' => { 524 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonDescription'] }, - 'personinimageid' => { 524 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonId'] }, - 'personinimagename' => { 524 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonName'] }, - 'personinimagewdetails' => { 524 => 'PersonInImageWDetails' }, - 'perspectiveaspect' => { 510 => 'PerspectiveAspect', 512 => 'PerspectiveAspect' }, - 'perspectivehorizontal' => { 510 => 'PerspectiveHorizontal', 512 => 'PerspectiveHorizontal' }, - 'perspectiverotate' => { 510 => 'PerspectiveRotate', 512 => 'PerspectiveRotate' }, - 'perspectivescale' => { 510 => 'PerspectiveScale', 512 => 'PerspectiveScale' }, - 'perspectiveupright' => { 510 => 'PerspectiveUpright', 512 => 'PerspectiveUpright' }, - 'perspectivevertical' => { 510 => 'PerspectiveVertical', 512 => 'PerspectiveVertical' }, - 'perspectivex' => { 510 => 'PerspectiveX', 512 => 'PerspectiveX' }, - 'perspectivey' => { 510 => 'PerspectiveY', 512 => 'PerspectiveY' }, + 'permissions' => { 533 => 'permissions' }, + 'permits' => { 509 => 'permits' }, + 'person' => { 530 => 'person' }, + 'personality' => { 501 => 'Personality' }, + 'personheard' => { 525 => 'PersonHeard' }, + 'personheardidentifier' => { 525 => [\'PersonHeard','PersonHeardIdentifier'] }, + 'personheardname' => { 525 => [\'PersonHeard','PersonHeardName'] }, + 'personinimage' => { 525 => 'PersonInImage' }, + 'personinimagecharacteristic' => { 525 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristic'] }, + 'personinimagecvtermcvid' => { 525 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvId'] }, + 'personinimagecvtermid' => { 525 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermId'] }, + 'personinimagecvtermname' => { 525 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermName'] }, + 'personinimagecvtermrefinedabout' => { 525 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermRefinedAbout'] }, + 'personinimagedescription' => { 525 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonDescription'] }, + 'personinimageid' => { 525 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonId'] }, + 'personinimagename' => { 525 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonName'] }, + 'personinimagewdetails' => { 525 => 'PersonInImageWDetails' }, + 'perspectiveaspect' => { 511 => 'PerspectiveAspect', 513 => 'PerspectiveAspect' }, + 'perspectivehorizontal' => { 511 => 'PerspectiveHorizontal', 513 => 'PerspectiveHorizontal' }, + 'perspectiverotate' => { 511 => 'PerspectiveRotate', 513 => 'PerspectiveRotate' }, + 'perspectivescale' => { 511 => 'PerspectiveScale', 513 => 'PerspectiveScale' }, + 'perspectiveupright' => { 511 => 'PerspectiveUpright', 513 => 'PerspectiveUpright' }, + 'perspectivevertical' => { 511 => 'PerspectiveVertical', 513 => 'PerspectiveVertical' }, + 'perspectivex' => { 511 => 'PerspectiveX', 513 => 'PerspectiveX' }, + 'perspectivey' => { 511 => 'PerspectiveY', 513 => 'PerspectiveY' }, 'pf0customfuncregistration' => { 95 => 0x1 }, 'pf10retainprogramshift' => { 95 => 0xb }, 'pf13drivepriority' => { 95 => 0xe }, @@ -5550,116 +5556,119 @@ my %tagLookup = ( 'phasedetectaf' => { 196 => 0x6 }, 'phonenumber' => { 160 => 'Phone' }, 'photoeffect' => { 36 => 0x28 }, - 'photoeffecthistoryxml' => { 296 => 0xe9651831 }, - 'photoeffects' => { 296 => 0xab5eca5e }, - 'photoeffectsblue' => { 298 => 0x8 }, - 'photoeffectsgreen' => { 298 => 0x6 }, - 'photoeffectsred' => { 298 => 0x4 }, - 'photoeffectstype' => { 298 => 0x0 }, + 'photoeffecthistoryxml' => { 297 => 0xe9651831 }, + 'photoeffects' => { 297 => 0xab5eca5e }, + 'photoeffectsblue' => { 299 => 0x8 }, + 'photoeffectsgreen' => { 299 => 0x6 }, + 'photoeffectsred' => { 299 => 0x4 }, + 'photoeffectstype' => { 299 => 0x0 }, 'photographer' => { 122 => 0xa437 }, - 'photographicsensitivity' => { 517 => 'PhotographicSensitivity' }, + 'photographicsensitivity' => { 518 => 'PhotographicSensitivity' }, 'photoidentifier' => { 1 => 0x2b }, - 'photoinfoplayback' => { 303 => '17.6', 312 => '33.6' }, - 'photometricinterpretation' => { 122 => 0x106, 535 => 'PhotometricInterpretation' }, - 'photoshootingmenubank' => { 244 => 0x11e, 245 => 0x112, 246 => 0x122, 247 => 0x122, 248 => 0x24, 266 => 0x0 }, - 'photoshootingmenubankimagearea' => { 242 => 0x6dd, 244 => 0x144, 245 => 0x134, 246 => 0x148, 247 => 0x148, 266 => '7.1' }, - 'photoshopbgrthumbnail' => { 396 => 0x409 }, - 'photoshopquality' => { 395 => 0x0 }, - 'photoshopthumbnail' => { 396 => 0x40c }, - 'photostyle' => { 347 => 0x89 }, - 'picasawebgphotoid' => { 515 => 'picasawebGPhotoId' }, - 'pick' => { 539 => 'pick' }, - 'picklabel' => { 515 => 'PickLabel' }, - 'pictinfo' => { 423 => 0x208 }, - 'picturecontrol' => { 296 => 0xe2173c47 }, - 'picturecontrolactive' => { 299 => 0x0 }, - 'picturecontroladjust' => { 254 => 0x30, 255 => 0x30, 256 => 0x36 }, - 'picturecontrolbase' => { 254 => 0x18, 255 => 0x18, 256 => 0x1c }, + 'photoinfoplayback' => { 304 => '17.6', 313 => '33.6' }, + 'photometricinterpretation' => { 122 => 0x106, 536 => 'PhotometricInterpretation' }, + 'photoshootingmenubank' => { 244 => 0x11e, 245 => 0x11e, 246 => 0x112, 247 => 0x122, 248 => 0x122, 249 => 0x24, 267 => 0x0 }, + 'photoshootingmenubankimagearea' => { 242 => 0x6dd, 244 => 0x144, 245 => 0x144, 246 => 0x134, 247 => 0x148, 248 => 0x148, 267 => '7.1' }, + 'photoshopbgrthumbnail' => { 397 => 0x409 }, + 'photoshopquality' => { 396 => 0x0 }, + 'photoshopthumbnail' => { 397 => 0x40c }, + 'photostyle' => { 348 => 0x89 }, + 'picasawebgphotoid' => { 516 => 'picasawebGPhotoId' }, + 'pick' => { 540 => 'pick' }, + 'picklabel' => { 516 => 'PickLabel' }, + 'pictinfo' => { 424 => 0x208 }, + 'picturecontrol' => { 297 => 0xe2173c47 }, + 'picturecontrolactive' => { 300 => 0x0 }, + 'picturecontroladjust' => { 255 => 0x30, 256 => 0x30, 257 => 0x36 }, + 'picturecontrolbase' => { 255 => 0x18, 256 => 0x18, 257 => 0x1c }, 'picturecontroldata' => { 239 => [0xbd,0x23] }, - 'picturecontrolmode' => { 299 => 0x13 }, - 'picturecontrolname' => { 254 => 0x4, 255 => 0x4, 256 => 0x8 }, - 'picturecontrolquickadjust' => { 254 => 0x31, 255 => 0x31, 256 => 0x37 }, - 'pictureeffect' => { 448 => 0x200e }, - 'pictureeffect2' => { 457 => 0x1163, 458 => 0x1167, 459 => 0x1143, 460 => 0x11bf, 461 => 0x119b, 462 => 0x1053, 463 => 0x24b, 464 => 0x24b, 465 => 0x23c, 480 => 0x46 }, + 'picturecontrolmode' => { 300 => 0x13 }, + 'picturecontrolname' => { 255 => 0x4, 256 => 0x4, 257 => 0x8 }, + 'picturecontrolquickadjust' => { 255 => 0x31, 256 => 0x31, 257 => 0x37 }, + 'pictureeffect' => { 449 => 0x200e }, + 'pictureeffect2' => { 458 => 0x1163, 459 => 0x1167, 460 => 0x1143, 461 => 0x11bf, 462 => 0x119b, 463 => 0x1053, 464 => 0x24b, 465 => 0x24b, 466 => 0x23c, 481 => 0x46 }, 'picturefinish' => { 185 => 0x71 }, - 'picturemode' => { 130 => 0x1031, 323 => 0x520, 382 => [0xb,0x33], 424 => 0x3d }, - 'picturemode2' => { 363 => 0x0 }, - 'picturemodebwfilter' => { 323 => 0x525 }, - 'picturemodecontrast' => { 323 => 0x523 }, - 'picturemodeeffect' => { 323 => 0x52d }, - 'picturemodehue' => { 323 => 0x522 }, - 'picturemodesaturation' => { 323 => 0x521 }, - 'picturemodesharpness' => { 323 => 0x524 }, - 'picturemodetone' => { 323 => 0x526 }, - 'pictureprofile' => { 457 => [0x115e,0x115f], 458 => [0x1162,0x1163], 459 => [0x113e,0x113f], 460 => [0x11ba,0x11bb], 461 => [0x1196,0x1197], 462 => [0x104e,0x104f], 463 => [0x246,0x247], 464 => [0x246,0x247], 465 => [0x237,0x238] }, + 'picturemode' => { 130 => 0x1031, 324 => 0x520, 383 => [0xb,0x33], 425 => 0x3d }, + 'picturemode2' => { 364 => 0x0 }, + 'picturemodebwfilter' => { 324 => 0x525 }, + 'picturemodecontrast' => { 324 => 0x523 }, + 'picturemodeeffect' => { 324 => 0x52d }, + 'picturemodehue' => { 324 => 0x522 }, + 'picturemodesaturation' => { 324 => 0x521 }, + 'picturemodesharpness' => { 324 => 0x524 }, + 'picturemodetone' => { 324 => 0x526 }, + 'pictureprofile' => { 458 => [0x115e,0x115f], 459 => [0x1162,0x1163], 460 => [0x113e,0x113f], 461 => [0x11ba,0x11bb], 462 => [0x1196,0x1197], 463 => [0x104e,0x104f], 464 => [0x246,0x247], 465 => [0x246,0x247], 466 => [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, 76 => 0xa, 106 => 0x20301, 112 => 0x2 }, 'picturestylepc' => { 66 => 0x4009 }, 'picturestyleuserdef' => { 66 => 0x4008 }, - 'picturewizard' => { 421 => 0x21 }, - 'picturewizardcolor' => { 420 => 0x1 }, - 'picturewizardcontrast' => { 420 => 0x4 }, - 'picturewizardmode' => { 420 => 0x0 }, - 'picturewizardsaturation' => { 420 => 0x2 }, - 'picturewizardsharpness' => { 420 => 0x3 }, + 'picturewizard' => { 422 => 0x21 }, + 'picturewizardcolor' => { 421 => 0x1 }, + 'picturewizardcontrast' => { 421 => 0x4 }, + 'picturewizardmode' => { 421 => 0x0 }, + 'picturewizardsaturation' => { 421 => 0x2 }, + 'picturewizardsharpness' => { 421 => 0x3 }, 'pipelineversion' => { 179 => 'PipelineVersion' }, - 'pitch' => { 118 => 0x6, 304 => '4.1', 316 => '4.1', 407 => ['ptch',"\xa9fpt"] }, - 'pitchangle' => { 252 => 0x4, 323 => 0x904, 337 => 'PitchAngle', 347 => 0x91, 381 => 0x2, 419 => 0x1 }, - 'pitchshift' => { 401 => 'player.movie.audio.pitchshift' }, - 'pixelaspectratio' => { 400 => 'pasp' }, + 'pitch' => { 118 => 0x6, 305 => '4.1', 317 => '4.1', 408 => ['ptch',"\xa9fpt"] }, + 'pitchangle' => { 253 => 0x4, 324 => 0x904, 338 => 'PitchAngle', 348 => 0x91, 382 => 0x2, 420 => 0x1 }, + 'pitchshift' => { 402 => 'player.movie.audio.pitchshift' }, + 'pixelaspectratio' => { 401 => 'pasp' }, 'pixelclockfrequency' => { 141 => 0x40b }, 'pixelcorrectionoffset' => { 141 => 0x972 }, 'pixelcorrectionscale' => { 141 => 0x971 }, 'pixelscale' => { 122 => 0x830e }, - 'pixelshiftinfo' => { 448 => 0x202f }, + 'pixelshiftdelay' => { 245 => 0x802 }, + 'pixelshiftinfo' => { 449 => 0x202f }, + 'pixelshiftnumbershots' => { 245 => 0x800 }, 'pixelshiftoffset' => { 130 => 0x1106 }, - 'pixelshiftresolution' => { 383 => 0x0 }, + 'pixelshiftresolution' => { 384 => 0x0 }, + 'pixelshiftshooting' => { 245 => 0x7fe }, 'pixelshiftshots' => { 130 => 0x1105 }, - 'pixelsperunitx' => { 335 => 0x0 }, - 'pixelsperunity' => { 335 => 0x4 }, - 'pixelunits' => { 335 => 0x8 }, - 'planarconfiguration' => { 122 => 0x11c, 535 => 'PlanarConfiguration' }, - 'plane' => { 489 => [\'Planes','PlanesPlane'] }, - 'planeboundary' => { 489 => [\'Planes','PlanesPlaneBoundary'] }, - 'planeboundaryvertexcount' => { 489 => [\'Planes','PlanesPlaneBoundaryVertexCount'] }, - 'planeextentx' => { 489 => [\'Planes','PlanesPlaneExtentX'] }, - 'planeextentz' => { 489 => [\'Planes','PlanesPlaneExtentZ'] }, - 'planepose' => { 489 => [\'Planes','PlanesPlanePose'] }, - 'planeposepositionx' => { 489 => [\'Planes','PlanesPlanePosePositionX'] }, - 'planeposepositiony' => { 489 => [\'Planes','PlanesPlanePosePositionY'] }, - 'planeposepositionz' => { 489 => [\'Planes','PlanesPlanePosePositionZ'] }, - 'planeposerotationw' => { 489 => [\'Planes','PlanesPlanePoseRotationW'] }, - 'planeposerotationx' => { 489 => [\'Planes','PlanesPlanePoseRotationX'] }, - 'planeposerotationy' => { 489 => [\'Planes','PlanesPlanePoseRotationY'] }, - 'planeposerotationz' => { 489 => [\'Planes','PlanesPlanePoseRotationZ'] }, - 'planeposetimestamp' => { 489 => [\'Planes','PlanesPlanePoseTimestamp'] }, - 'planes' => { 489 => 'Planes' }, - 'planningref' => { 524 => 'PlanningRef' }, - 'planningrefidentifier' => { 524 => [\'PlanningRef','PlanningRefIdentifier'] }, - 'planningrefname' => { 524 => [\'PlanningRef','PlanningRefName'] }, - 'planningrefrole' => { 524 => [\'PlanningRef','PlanningRefRole'] }, - 'platenames' => { 544 => 'PlateNames' }, - 'platform' => { 529 => 'platform' }, - 'playallframes' => { 407 => 'AllF' }, - 'playbackbutton' => { 247 => 0x808 }, - 'playbackbuttonplaybackmode' => { 247 => 0x814 }, - 'playbackflickdown' => { 319 => 0x159, 320 => 0x159, 321 => 0x171 }, - 'playbackflickup' => { 319 => 0x155, 320 => 0x155, 321 => 0x16d }, - 'playbackmenustime' => { 308 => '20.1', 309 => '21.1', 310 => '21.1' }, - 'playbackmonitorofftime' => { 303 => '25.2', 304 => '36.1', 306 => '36.1', 307 => '36.1', 311 => '35.1', 312 => '8.1', 313 => '35.1', 316 => '36.1', 317 => '36.1', 318 => '21.1', 319 => 0x33, 320 => 0x33, 321 => 0x33 }, - 'playbackzoom' => { 304 => '37.1' }, + 'pixelsperunitx' => { 336 => 0x0 }, + 'pixelsperunity' => { 336 => 0x4 }, + 'pixelunits' => { 336 => 0x8 }, + 'planarconfiguration' => { 122 => 0x11c, 536 => 'PlanarConfiguration' }, + 'plane' => { 490 => [\'Planes','PlanesPlane'] }, + 'planeboundary' => { 490 => [\'Planes','PlanesPlaneBoundary'] }, + 'planeboundaryvertexcount' => { 490 => [\'Planes','PlanesPlaneBoundaryVertexCount'] }, + 'planeextentx' => { 490 => [\'Planes','PlanesPlaneExtentX'] }, + 'planeextentz' => { 490 => [\'Planes','PlanesPlaneExtentZ'] }, + 'planepose' => { 490 => [\'Planes','PlanesPlanePose'] }, + 'planeposepositionx' => { 490 => [\'Planes','PlanesPlanePosePositionX'] }, + 'planeposepositiony' => { 490 => [\'Planes','PlanesPlanePosePositionY'] }, + 'planeposepositionz' => { 490 => [\'Planes','PlanesPlanePosePositionZ'] }, + 'planeposerotationw' => { 490 => [\'Planes','PlanesPlanePoseRotationW'] }, + 'planeposerotationx' => { 490 => [\'Planes','PlanesPlanePoseRotationX'] }, + 'planeposerotationy' => { 490 => [\'Planes','PlanesPlanePoseRotationY'] }, + 'planeposerotationz' => { 490 => [\'Planes','PlanesPlanePoseRotationZ'] }, + 'planeposetimestamp' => { 490 => [\'Planes','PlanesPlanePoseTimestamp'] }, + 'planes' => { 490 => 'Planes' }, + 'planningref' => { 525 => 'PlanningRef' }, + 'planningrefidentifier' => { 525 => [\'PlanningRef','PlanningRefIdentifier'] }, + 'planningrefname' => { 525 => [\'PlanningRef','PlanningRefName'] }, + 'planningrefrole' => { 525 => [\'PlanningRef','PlanningRefRole'] }, + 'platenames' => { 545 => 'PlateNames' }, + 'platform' => { 530 => 'platform' }, + 'playallframes' => { 408 => 'AllF' }, + 'playbackbutton' => { 245 => 0x804, 248 => 0x808 }, + 'playbackbuttonplaybackmode' => { 245 => 0x80e, 248 => 0x814 }, + 'playbackflickdown' => { 320 => 0x159, 321 => 0x159, 322 => 0x171 }, + 'playbackflickup' => { 320 => 0x155, 321 => 0x155, 322 => 0x16d }, + 'playbackmenustime' => { 309 => '20.1', 310 => '21.1', 311 => '21.1' }, + 'playbackmonitorofftime' => { 304 => '25.2', 305 => '36.1', 307 => '36.1', 308 => '36.1', 312 => '35.1', 313 => '8.1', 314 => '35.1', 317 => '36.1', 318 => '36.1', 319 => '21.1', 320 => 0x33, 321 => 0x33, 322 => 0x33 }, + 'playbackzoom' => { 305 => '37.1' }, 'playdisplay' => { 187 => 0x4e }, - 'playerversion' => { 401 => 'player.version' }, - 'playgap' => { 399 => 'pgap' }, - 'playmode' => { 407 => 'SDLN' }, - 'playselection' => { 407 => 'SelO' }, - 'plusversion' => { 333 => 'Version' }, - 'pmversion' => { 394 => 'PMVersion' }, - 'pngwarning' => { 336 => 'Warning' }, - 'podcast' => { 399 => 'pcst' }, - 'podcasturl' => { 399 => 'purl' }, + 'playerversion' => { 402 => 'player.version' }, + 'playgap' => { 400 => 'pgap' }, + 'playmode' => { 408 => 'SDLN' }, + 'playselection' => { 408 => 'SelO' }, + 'plusversion' => { 334 => 'Version' }, + 'pmversion' => { 395 => 'PMVersion' }, + 'pngwarning' => { 337 => 'Warning' }, + 'podcast' => { 400 => 'pcst' }, + 'podcasturl' => { 400 => 'purl' }, 'poilevel' => { 238 => 0x8 }, - 'portraitimpressionbalance' => { 244 => 0x26e, 257 => 0xa0 }, - 'portraitnote' => { 493 => 'PortraitNote' }, + 'portraitimpressionbalance' => { 244 => 0x26e, 245 => 0x26e, 258 => 0xa0 }, + 'portraitnote' => { 494 => 'PortraitNote' }, 'portraitoutputhighlightpoint' => { 112 => 0x1d }, 'portraitoutputshadowpoint' => { 112 => 0x1e }, 'portraitrawcolortone' => { 112 => 0x16 }, @@ -5672,112 +5681,112 @@ my %tagLookup = ( 'portraitrawshadowpoint' => { 112 => 0x1c }, 'portraitrawsharpness' => { 112 => 0x1a }, 'portraitrefiner' => { 116 => 0x302b }, - 'portraitrequest' => { 493 => 'PortraitRequest' }, + 'portraitrequest' => { 494 => 'PortraitRequest' }, 'portraitunsharpmaskfineness' => { 112 => 0x9a }, 'portraitunsharpmaskstrength' => { 112 => 0x98 }, 'portraitunsharpmaskthreshold' => { 112 => 0x9c }, - 'portraitversion' => { 493 => 'PortraitVersion' }, - 'pose' => { 489 => 'Pose' }, - 'poseheadingdegrees' => { 498 => 'PoseHeadingDegrees' }, - 'posepitchdegrees' => { 498 => 'PosePitchDegrees' }, - 'posepositionx' => { 489 => [\'Pose','PosePositionX'] }, - 'posepositiony' => { 489 => [\'Pose','PosePositionY'] }, - 'posepositionz' => { 489 => [\'Pose','PosePositionZ'] }, - 'poserolldegrees' => { 498 => 'PoseRollDegrees' }, - 'poserotationw' => { 489 => [\'Pose','PoseRotationW'] }, - 'poserotationx' => { 489 => [\'Pose','PoseRotationX'] }, - 'poserotationy' => { 489 => [\'Pose','PoseRotationY'] }, - 'poserotationz' => { 489 => [\'Pose','PoseRotationZ'] }, - 'posetimestamp' => { 489 => [\'Pose','PoseTimestamp'] }, - 'positiondescriptor' => { 528 => 'positionDescriptor' }, + 'portraitversion' => { 494 => 'PortraitVersion' }, + 'pose' => { 490 => 'Pose' }, + 'poseheadingdegrees' => { 499 => 'PoseHeadingDegrees' }, + 'posepitchdegrees' => { 499 => 'PosePitchDegrees' }, + 'posepositionx' => { 490 => [\'Pose','PosePositionX'] }, + 'posepositiony' => { 490 => [\'Pose','PosePositionY'] }, + 'posepositionz' => { 490 => [\'Pose','PosePositionZ'] }, + 'poserolldegrees' => { 499 => 'PoseRollDegrees' }, + 'poserotationw' => { 490 => [\'Pose','PoseRotationW'] }, + 'poserotationx' => { 490 => [\'Pose','PoseRotationX'] }, + 'poserotationy' => { 490 => [\'Pose','PoseRotationY'] }, + 'poserotationz' => { 490 => [\'Pose','PoseRotationZ'] }, + 'posetimestamp' => { 490 => [\'Pose','PoseTimestamp'] }, + 'positiondescriptor' => { 529 => 'positionDescriptor' }, 'postalcode' => { 164 => 'PostalCode' }, - 'postcropvignetteamount' => { 510 => 'PostCropVignetteAmount', 512 => 'PostCropVignetteAmount' }, - 'postcropvignettefeather' => { 510 => 'PostCropVignetteFeather', 512 => 'PostCropVignetteFeather' }, - 'postcropvignettehighlightcontrast' => { 510 => 'PostCropVignetteHighlightContrast', 512 => 'PostCropVignetteHighlightContrast' }, - 'postcropvignettemidpoint' => { 510 => 'PostCropVignetteMidpoint', 512 => 'PostCropVignetteMidpoint' }, - 'postcropvignetteroundness' => { 510 => 'PostCropVignetteRoundness', 512 => 'PostCropVignetteRoundness' }, - 'postcropvignettestyle' => { 510 => 'PostCropVignetteStyle', 512 => 'PostCropVignetteStyle' }, - 'postfocusmerging' => { 347 => 0xbf }, - 'postreleaseburstlength' => { 246 => 0x714, 247 => 0x784, 319 => 0x289 }, - 'potentialface1position' => { 444 => 0xb }, - 'potentialface2position' => { 444 => 0x15 }, - 'potentialface3position' => { 444 => 0x1f }, - 'potentialface4position' => { 444 => 0x29 }, - 'potentialface5position' => { 444 => 0x33 }, - 'potentialface6position' => { 444 => 0x3d }, - 'potentialface7position' => { 444 => 0x47 }, - 'potentialface8position' => { 444 => 0x51 }, - 'powersource' => { 361 => '0.1' }, + 'postcropvignetteamount' => { 511 => 'PostCropVignetteAmount', 513 => 'PostCropVignetteAmount' }, + 'postcropvignettefeather' => { 511 => 'PostCropVignetteFeather', 513 => 'PostCropVignetteFeather' }, + 'postcropvignettehighlightcontrast' => { 511 => 'PostCropVignetteHighlightContrast', 513 => 'PostCropVignetteHighlightContrast' }, + 'postcropvignettemidpoint' => { 511 => 'PostCropVignetteMidpoint', 513 => 'PostCropVignetteMidpoint' }, + 'postcropvignetteroundness' => { 511 => 'PostCropVignetteRoundness', 513 => 'PostCropVignetteRoundness' }, + 'postcropvignettestyle' => { 511 => 'PostCropVignetteStyle', 513 => 'PostCropVignetteStyle' }, + 'postfocusmerging' => { 348 => 0xbf }, + 'postreleaseburstlength' => { 247 => 0x714, 248 => 0x784, 320 => 0x289 }, + 'potentialface1position' => { 445 => 0xb }, + 'potentialface2position' => { 445 => 0x15 }, + 'potentialface3position' => { 445 => 0x1f }, + 'potentialface4position' => { 445 => 0x29 }, + 'potentialface5position' => { 445 => 0x33 }, + 'potentialface6position' => { 445 => 0x3d }, + 'potentialface7position' => { 445 => 0x47 }, + 'potentialface8position' => { 445 => 0x51 }, + 'powersource' => { 362 => '0.1' }, 'poweruptime' => { 239 => 0xb6 }, 'preaf' => { 129 => '0.2' }, - 'precaptureframes' => { 328 => 0x300 }, + 'precaptureframes' => { 329 => 0x300 }, 'predictor' => { 122 => 0x13d }, - 'preflashreturnstrength' => { 274 => 0x28a }, - 'prefs' => { 134 => 0xdd, 394 => 'Prefs' }, + 'preflashreturnstrength' => { 275 => 0x28a }, + 'prefs' => { 134 => 0xdd, 395 => 'Prefs' }, 'prereadfastresetcount' => { 141 => 0x187e }, - 'prereleaseburstlength' => { 246 => 0x712, 247 => 0x782, 319 => 0x287 }, - 'preservedfilename' => { 540 => 'PreservedFileName' }, + 'prereleaseburstlength' => { 247 => 0x712, 248 => 0x782, 320 => 0x287 }, + 'preservedfilename' => { 541 => 'PreservedFileName' }, 'preservedspecimen' => { 121 => 'PreservedSpecimen' }, 'preservedspecimenmaterialsampleid' => { 121 => [\'PreservedSpecimen','PreservedSpecimenMaterialSampleID'] }, - 'presettype' => { 510 => 'PresetType', 512 => 'PresetType' }, - 'presetwhitebalance' => { 187 => 0x24, 485 => 0x8002 }, - 'presetwhitebalanceadj' => { 485 => 0x8014 }, - 'pressure' => { 122 => 0x9402, 517 => 'Pressure' }, + 'presettype' => { 511 => 'PresetType', 513 => 'PresetType' }, + 'presetwhitebalance' => { 187 => 0x24, 486 => 0x8002 }, + 'presetwhitebalanceadj' => { 486 => 0x8014 }, + 'pressure' => { 122 => 0x9402, 518 => 'Pressure' }, 'previewapplicationname' => { 122 => 0xc716 }, 'previewapplicationversion' => { 122 => 0xc717 }, - 'previewbutton' => { 303 => ['14.1','15.1'], 304 => '15.1', 306 => '15.1', 307 => '15.1', 312 => '29.1', 313 => '14.1', 316 => '15.1', 317 => '15.1' }, - 'previewbuttonplusdials' => { 303 => ['14.2','15.2'], 304 => '15.2', 306 => '43.1', 307 => '43.1', 312 => '31.2', 316 => '43.1', 317 => '43.1' }, + 'previewbutton' => { 304 => ['14.1','15.1'], 305 => '15.1', 307 => '15.1', 308 => '15.1', 313 => '29.1', 314 => '14.1', 317 => '15.1', 318 => '15.1' }, + 'previewbuttonplusdials' => { 304 => ['14.2','15.2'], 305 => '15.2', 307 => '43.1', 308 => '43.1', 313 => '31.2', 317 => '43.1', 318 => '43.1' }, 'previewcolorspace' => { 122 => 0xc71a }, - 'previewcropbottom' => { 393 => 0xef }, - 'previewcropleft' => { 393 => 0xec }, - 'previewcropright' => { 393 => 0xee }, - 'previewcroptop' => { 393 => 0xed }, - 'previewdate' => { 405 => 0x0 }, + 'previewcropbottom' => { 394 => 0xef }, + 'previewcropleft' => { 394 => 0xec }, + 'previewcropright' => { 394 => 0xee }, + 'previewcroptop' => { 394 => 0xed }, + 'previewdate' => { 406 => 0x0 }, 'previewdatetime' => { 122 => 0xc71b }, - 'previewimage' => { 116 => 0x2000, 117 => 'Exif-PreviewImage', 123 => 'PreviewImage', 125 => 0x4, 169 => 'data', 189 => 0x81, 328 => 0x280, 345 => 0x300, 407 => 'mcvr', 448 => 0x2001 }, - 'previewimageborders' => { 382 => 0x3e }, + 'previewimage' => { 116 => 0x2000, 117 => 'Exif-PreviewImage', 123 => 'PreviewImage', 125 => 0x4, 169 => 'data', 189 => 0x81, 329 => 0x280, 346 => 0x300, 408 => 'mcvr', 449 => 0x2001 }, + 'previewimageborders' => { 383 => 0x3e }, 'previewimageheight' => { 75 => 0x4, 145 => 0xfa58 }, - 'previewimagelength' => { 75 => 0x2, 116 => 0x3, 122 => [0x117,0x202], 189 => 0x89, 258 => 0x202, 323 => 0x102, 328 => 0x1037, 382 => 0x3, 413 => 0x1e, 418 => 0x3, 424 => [0x1b,0x1d], 437 => 0x202 }, + 'previewimagelength' => { 75 => 0x2, 116 => 0x3, 122 => [0x117,0x202], 189 => 0x89, 259 => 0x202, 324 => 0x102, 329 => 0x1037, 383 => 0x3, 414 => 0x1e, 419 => 0x3, 425 => [0x1b,0x1d], 438 => 0x202 }, 'previewimagename' => { 169 => '1Name' }, - 'previewimagesize' => { 116 => 0x2, 150 => 0x2, 169 => 'ImageSize', 382 => 0x2, 424 => [0x1c,0x1e], 448 => 0xb02c, 485 => 0x9012 }, - 'previewimagestart' => { 75 => 0x5, 116 => 0x4, 122 => [0x111,0x201], 189 => 0x88, 258 => 0x201, 323 => 0x101, 328 => 0x1036, 382 => 0x4, 413 => 0x1c, 418 => 0x2, 424 => [0x1a,0x1c], 437 => 0x201 }, + 'previewimagesize' => { 116 => 0x2, 150 => 0x2, 169 => 'ImageSize', 383 => 0x2, 425 => [0x1c,0x1e], 449 => 0xb02c, 486 => 0x9012 }, + 'previewimagestart' => { 75 => 0x5, 116 => 0x4, 122 => [0x111,0x201], 189 => 0x88, 259 => 0x201, 324 => 0x101, 329 => 0x1036, 383 => 0x4, 414 => 0x1c, 419 => 0x2, 425 => [0x1a,0x1c], 438 => 0x201 }, 'previewimagetype' => { 169 => '0Type' }, - 'previewimagevalid' => { 323 => 0x100, 328 => 0x1035 }, + 'previewimagevalid' => { 324 => 0x100, 329 => 0x1035 }, 'previewimagewidth' => { 75 => 0x3, 145 => 0xfa57 }, 'previewquality' => { 75 => 0x1 }, 'previewsettingsdigest' => { 122 => 0xc719 }, 'previewsettingsname' => { 122 => 0xc718 }, 'primaryafpoint' => { 196 => [0x38,0x44,0x7,0x8] }, - 'primarychromaticities' => { 122 => 0x13f, 535 => 'PrimaryChromaticities' }, - 'primaryftp' => { 500 => 'PrimaryFTP' }, - 'primaryslot' => { 248 => 0x25, 266 => 0x2 }, + 'primarychromaticities' => { 122 => 0x13f, 536 => 'PrimaryChromaticities' }, + 'primaryftp' => { 501 => 'PrimaryFTP' }, + 'primaryslot' => { 249 => 0x25, 267 => 0x2 }, 'printim' => { 122 => 0xc4a5 }, - 'prioritysetinawb' => { 448 => 0x202b }, - 'prioritysetupshutterrelease' => { 187 => 0x1d, 434 => 0x28 }, - 'privatertkinfo' => { 502 => 'privateRTKInfo' }, + 'prioritysetinawb' => { 449 => 0x202b }, + 'prioritysetupshutterrelease' => { 187 => 0x1d, 435 => 0x28 }, + 'privatertkinfo' => { 503 => 'privateRTKInfo' }, 'processbordercolsleft' => { 141 => 0xc61 }, 'processbordercolsright' => { 141 => 0xc62 }, 'processborderrowsbottom' => { 141 => 0xc64 }, 'processborderrowstop' => { 141 => 0xc63 }, 'processingsoftware' => { 122 => 0xb }, - 'processversion' => { 510 => 'ProcessVersion', 512 => 'ProcessVersion' }, - 'producer' => { 182 => 'WM/Producer', 332 => 'Producer', 399 => "\xa9prd", 401 => 'producer', 407 => "\xa9prd", 526 => 'Producer' }, - 'producerkeywords' => { 407 => "\xa9pdk" }, - 'productcode' => { 529 => 'productCode' }, - 'productid' => { 135 => 0x32, 399 => 'prID', 528 => 'productID' }, - 'productidtype' => { 528 => 'productIDType' }, - 'productinimage' => { 524 => 'ProductInImage' }, - 'productinimagedescription' => { 524 => [\'ProductInImage','ProductInImageProductDescription'] }, - 'productinimagegtin' => { 524 => [\'ProductInImage','ProductInImageProductGTIN'] }, - 'productinimagename' => { 524 => [\'ProductInImage','ProductInImageProductName'] }, - 'productinimageproductid' => { 524 => [\'ProductInImage','ProductInImageProductId'] }, - 'productioncode' => { 362 => 0x2 }, - 'productorserviceconstraints' => { 333 => 'ProductOrServiceConstraints' }, - 'productversion' => { 399 => 'VERS' }, - 'profession' => { 529 => 'profession' }, - 'profile' => { 489 => [\'Profiles','ProfilesProfile'] }, + 'processversion' => { 511 => 'ProcessVersion', 513 => 'ProcessVersion' }, + 'producer' => { 182 => 'WM/Producer', 333 => 'Producer', 400 => "\xa9prd", 402 => 'producer', 408 => "\xa9prd", 527 => 'Producer' }, + 'producerkeywords' => { 408 => "\xa9pdk" }, + 'productcode' => { 530 => 'productCode' }, + 'productid' => { 135 => 0x32, 400 => 'prID', 529 => 'productID' }, + 'productidtype' => { 529 => 'productIDType' }, + 'productinimage' => { 525 => 'ProductInImage' }, + 'productinimagedescription' => { 525 => [\'ProductInImage','ProductInImageProductDescription'] }, + 'productinimagegtin' => { 525 => [\'ProductInImage','ProductInImageProductGTIN'] }, + 'productinimagename' => { 525 => [\'ProductInImage','ProductInImageProductName'] }, + 'productinimageproductid' => { 525 => [\'ProductInImage','ProductInImageProductId'] }, + 'productioncode' => { 363 => 0x2 }, + 'productorserviceconstraints' => { 334 => 'ProductOrServiceConstraints' }, + 'productversion' => { 400 => 'VERS' }, + 'profession' => { 530 => 'profession' }, + 'profile' => { 490 => [\'Profiles','ProfilesProfile'] }, 'profilecalibrationsig' => { 122 => 0xc6f4 }, - 'profilecameraindices' => { 489 => [\'Profiles','ProfilesProfileCameraIndices'] }, + 'profilecameraindices' => { 490 => [\'Profiles','ProfilesProfileCameraIndices'] }, 'profilecopyright' => { 122 => 0xc6fe }, 'profiledynamicrange' => { 122 => 0xcd47 }, 'profileembedpolicy' => { 122 => 0xc6fd }, @@ -5792,174 +5801,174 @@ my %tagLookup = ( 'profilelooktabledata' => { 122 => 0xc726 }, 'profilelooktabledims' => { 122 => 0xc725 }, 'profilelooktableencoding' => { 122 => 0xc7a4 }, - 'profilename' => { 122 => 0xc6f8, 334 => 'iCCP-name' }, - 'profiles' => { 489 => 'Profiles' }, + 'profilename' => { 122 => 0xc6f8, 335 => 'iCCP-name' }, + 'profiles' => { 490 => 'Profiles' }, 'profiletonecurve' => { 122 => 0xc6fc }, - 'profiletype' => { 489 => [\'Profiles','ProfilesProfileType'] }, - 'programiso' => { 347 => 0x3c }, - 'programline' => { 363 => '1.1' }, + 'profiletype' => { 490 => [\'Profiles','ProfilesProfileType'] }, + 'programiso' => { 348 => 0x3c }, + 'programline' => { 364 => '1.1' }, 'programmode' => { 192 => 0x5 }, 'programshift' => { 239 => 0xd }, 'programversion' => { 134 => 0x46 }, - 'prohibits' => { 508 => 'prohibits' }, - 'projectiontype' => { 498 => 'ProjectionType', 499 => 'ProjectionType' }, - 'projectname' => { 539 => 'projectName' }, - 'projectref' => { 539 => 'projectRef' }, - 'projectrefpath' => { 539 => [\'projectRef','projectRefPath'] }, - 'projectreftype' => { 539 => [\'projectRef','projectRefType'] }, + 'prohibits' => { 509 => 'prohibits' }, + 'projectiontype' => { 499 => 'ProjectionType', 500 => 'ProjectionType' }, + 'projectname' => { 540 => 'projectName' }, + 'projectref' => { 540 => 'projectRef' }, + 'projectrefpath' => { 540 => [\'projectRef','projectRefPath'] }, + 'projectreftype' => { 540 => [\'projectRef','projectRefType'] }, 'promotionurl' => { 182 => 'WM/PromotionURL' }, - 'propertyreleaseid' => { 333 => 'PropertyReleaseID' }, - 'propertyreleasestatus' => { 333 => 'PropertyReleaseStatus' }, + 'propertyreleaseid' => { 334 => 'PropertyReleaseID' }, + 'propertyreleasestatus' => { 334 => 'PropertyReleaseStatus' }, 'provider' => { 182 => 'WM/Provider' }, 'province-state' => { 134 => 0x5f }, - 'publicationdate' => { 529 => 'publicationDate' }, - 'publicationdatea-platform' => { 529 => [\'publicationDate','publicationDateA-platform'] }, - 'publicationdatedate' => { 529 => [\'publicationDate','publicationDateDate'] }, - 'publicationdisplaydate' => { 529 => 'publicationDisplayDate' }, - 'publicationdisplaydatea-platform' => { 529 => [\'publicationDisplayDate','publicationDisplayDateA-platform'] }, - 'publicationdisplaydatedate' => { 529 => [\'publicationDisplayDate','publicationDisplayDateDate'] }, - 'publicationevent' => { 524 => 'PublicationEvent' }, - 'publicationeventdate' => { 524 => [\'PublicationEvent','PublicationEventDate'] }, - 'publicationeventidentifier' => { 524 => [\'PublicationEvent','PublicationEventIdentifier'] }, - 'publicationeventname' => { 524 => [\'PublicationEvent','PublicationEventName'] }, - 'publicationname' => { 529 => 'publicationName' }, - 'publisher' => { 182 => 'WM/Publisher', 399 => "\xa9pub", 401 => 'publisher', 513 => 'publisher' }, - 'publishingfrequency' => { 529 => 'publishingFrequency' }, - 'pulldown' => { 539 => 'pullDown' }, - 'purchasedate' => { 399 => 'purd' }, + 'publicationdate' => { 530 => 'publicationDate' }, + 'publicationdatea-platform' => { 530 => [\'publicationDate','publicationDateA-platform'] }, + 'publicationdatedate' => { 530 => [\'publicationDate','publicationDateDate'] }, + 'publicationdisplaydate' => { 530 => 'publicationDisplayDate' }, + 'publicationdisplaydatea-platform' => { 530 => [\'publicationDisplayDate','publicationDisplayDateA-platform'] }, + 'publicationdisplaydatedate' => { 530 => [\'publicationDisplayDate','publicationDisplayDateDate'] }, + 'publicationevent' => { 525 => 'PublicationEvent' }, + 'publicationeventdate' => { 525 => [\'PublicationEvent','PublicationEventDate'] }, + 'publicationeventidentifier' => { 525 => [\'PublicationEvent','PublicationEventIdentifier'] }, + 'publicationeventname' => { 525 => [\'PublicationEvent','PublicationEventName'] }, + 'publicationname' => { 530 => 'publicationName' }, + 'publisher' => { 182 => 'WM/Publisher', 400 => "\xa9pub", 402 => 'publisher', 514 => 'publisher' }, + 'publishingfrequency' => { 530 => 'publishingFrequency' }, + 'pulldown' => { 540 => 'pullDown' }, + 'purchasedate' => { 400 => 'purd' }, 'purplehsl' => { 106 => 0x20916 }, - 'pxshiftperiphedgenr' => { 485 => 0x9013 }, - 'pxshiftperiphedgenrvalue' => { 485 => 0x9014 }, - 'quality' => { 0 => 0x1, 36 => 0x3, 115 => 0x2, 116 => 0x3002, 130 => 0x1000, 143 => 0x9, 239 => 0x4, 285 => 0x3, 328 => 0x201, 342 => 0x300, 382 => 0x8, 389 => 0x2, 424 => 0x16, 434 => 0x56, 435 => 0x56, 436 => 0xb, 448 => [0x102,0x202e] }, - 'quality2' => { 457 => 0x1170, 458 => 0x1174, 459 => 0x1150, 461 => 0x11a8, 462 => 0x1060, 463 => 0x258, 464 => 0x258, 465 => 0x247, 471 => 0x29, 472 => 0x25, 473 => 0x2a }, - 'qualitybutton' => { 320 => 0x17d, 321 => 0x195 }, - 'qualitybuttonplaybackmode' => { 320 => 0x1bf, 321 => 0x1d7 }, + 'pxshiftperiphedgenr' => { 486 => 0x9013 }, + 'pxshiftperiphedgenrvalue' => { 486 => 0x9014 }, + 'quality' => { 0 => 0x1, 36 => 0x3, 115 => 0x2, 116 => 0x3002, 130 => 0x1000, 143 => 0x9, 239 => 0x4, 286 => 0x3, 329 => 0x201, 343 => 0x300, 383 => 0x8, 390 => 0x2, 425 => 0x16, 435 => 0x56, 436 => 0x56, 437 => 0xb, 449 => [0x102,0x202e] }, + 'quality2' => { 458 => 0x1170, 459 => 0x1174, 460 => 0x1150, 462 => 0x11a8, 463 => 0x1060, 464 => 0x258, 465 => 0x258, 466 => 0x247, 472 => 0x29, 473 => 0x25, 474 => 0x2a }, + 'qualitybutton' => { 321 => 0x17d, 322 => 0x195 }, + 'qualitybuttonplaybackmode' => { 321 => 0x1bf, 322 => 0x1d7 }, 'qualityhint' => { 1 => 0x1a }, 'qualitymode' => { 116 => 0x8 }, 'quantizationmethod' => { 136 => 0x78 }, - 'quickadjust' => { 299 => 0x2a }, + 'quickadjust' => { 300 => 0x2a }, 'quickcontroldialinmeter' => { 87 => 0x703 }, - 'quickfix' => { 296 => 0x416391c6 }, - 'quickshot' => { 423 => 0x213 }, + 'quickfix' => { 297 => 0x416391c6 }, + 'quickshot' => { 424 => 0x213 }, 'quiettime' => { 141 => 0x188a }, 'radialdistortioncoefficient1' => { 214 => 0x14 }, 'radialdistortioncoefficient2' => { 214 => 0x1c }, 'radialdistortioncoefficient3' => { 214 => 0x24 }, - 'rads' => { 407 => 'rads' }, - 'rangefinder' => { 308 => '4.1', 309 => '5.1', 310 => '5.1' }, - 'rangemask' => { 510 => 'RangeMaskMapInfo', 512 => 'RangeMaskMapInfo' }, - 'rangemaskmapinfo' => { 510 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfo'], 512 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfo'] }, - 'rangemaskmapinfolabmax' => { 510 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLabMax'], 512 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLabMax'] }, - 'rangemaskmapinfolabmin' => { 510 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLabMin'], 512 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLabMin'] }, - 'rangemaskmapinfolumeq' => { 510 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLumEq'], 512 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLumEq'] }, - 'rangemaskmapinforgbmax' => { 510 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoRGBMax'], 512 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoRGBMax'] }, - 'rangemaskmapinforgbmin' => { 510 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoRGBMin'], 512 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoRGBMin'] }, + 'rads' => { 408 => 'rads' }, + 'rangefinder' => { 309 => '4.1', 310 => '5.1', 311 => '5.1' }, + 'rangemask' => { 511 => 'RangeMaskMapInfo', 513 => 'RangeMaskMapInfo' }, + 'rangemaskmapinfo' => { 511 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfo'], 513 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfo'] }, + 'rangemaskmapinfolabmax' => { 511 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLabMax'], 513 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLabMax'] }, + 'rangemaskmapinfolabmin' => { 511 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLabMin'], 513 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLabMin'] }, + 'rangemaskmapinfolumeq' => { 511 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLumEq'], 513 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLumEq'] }, + 'rangemaskmapinforgbmax' => { 511 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoRGBMax'], 513 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoRGBMax'] }, + 'rangemaskmapinforgbmin' => { 511 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoRGBMin'], 513 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoRGBMin'] }, 'rasterizedcaption' => { 134 => 0x7d }, - 'rating' => { 122 => 0x4746, 130 => 0x1431, 393 => 0xdf, 399 => 'rtng', 407 => 'rtng', 448 => 0x2002, 505 => 'rating', 514 => 'rating', 524 => 'Rating', 529 => 'rating', 537 => 'Rating' }, - 'ratingpercent' => { 122 => 0x4749, 181 => 'Rating', 399 => 'rate', 537 => 'RatingPercent' }, - 'ratingregion' => { 524 => [\'Rating','RatingRatingRegion'] }, - 'ratingregioncity' => { 524 => [\'Rating','RatingRatingRegionCity'] }, - 'ratingregioncountrycode' => { 524 => [\'Rating','RatingRatingRegionCountryCode'] }, - 'ratingregioncountryname' => { 524 => [\'Rating','RatingRatingRegionCountryName'] }, - 'ratingregiongpsaltitude' => { 524 => [\'Rating','RatingRatingRegionGPSAltitude'] }, - 'ratingregiongpsaltituderef' => { 524 => [\'Rating','RatingRatingRegionGPSAltitudeRef'] }, - 'ratingregiongpslatitude' => { 524 => [\'Rating','RatingRatingRegionGPSLatitude'] }, - 'ratingregiongpslongitude' => { 524 => [\'Rating','RatingRatingRegionGPSLongitude'] }, - 'ratingregionidentifier' => { 524 => [\'Rating','RatingRatingRegionIdentifier'] }, - 'ratingregionlocationid' => { 524 => [\'Rating','RatingRatingRegionLocationId'] }, - 'ratingregionlocationname' => { 524 => [\'Rating','RatingRatingRegionLocationName'] }, - 'ratingregionprovincestate' => { 524 => [\'Rating','RatingRatingRegionProvinceState'] }, - 'ratingregionsublocation' => { 524 => [\'Rating','RatingRatingRegionSublocation'] }, - 'ratingregionworldregion' => { 524 => [\'Rating','RatingRatingRegionWorldRegion'] }, - 'ratingscalemaxvalue' => { 524 => [\'Rating','RatingRatingScaleMaxValue'] }, - 'ratingscaleminvalue' => { 524 => [\'Rating','RatingRatingScaleMinValue'] }, - 'ratingsourcelink' => { 524 => [\'Rating','RatingRatingSourceLink'] }, - 'ratingvalue' => { 524 => [\'Rating','RatingRatingValue'] }, - 'ratingvaluelogolink' => { 524 => [\'Rating','RatingRatingValueLogoLink'] }, - 'rawandjpgrecording' => { 85 => 0x8, 189 => 0x109, 363 => 0xd }, + 'rating' => { 122 => 0x4746, 130 => 0x1431, 394 => 0xdf, 400 => 'rtng', 408 => 'rtng', 449 => 0x2002, 506 => 'rating', 515 => 'rating', 525 => 'Rating', 530 => 'rating', 538 => 'Rating' }, + 'ratingpercent' => { 122 => 0x4749, 181 => 'Rating', 400 => 'rate', 538 => 'RatingPercent' }, + 'ratingregion' => { 525 => [\'Rating','RatingRatingRegion'] }, + 'ratingregioncity' => { 525 => [\'Rating','RatingRatingRegionCity'] }, + 'ratingregioncountrycode' => { 525 => [\'Rating','RatingRatingRegionCountryCode'] }, + 'ratingregioncountryname' => { 525 => [\'Rating','RatingRatingRegionCountryName'] }, + 'ratingregiongpsaltitude' => { 525 => [\'Rating','RatingRatingRegionGPSAltitude'] }, + 'ratingregiongpsaltituderef' => { 525 => [\'Rating','RatingRatingRegionGPSAltitudeRef'] }, + 'ratingregiongpslatitude' => { 525 => [\'Rating','RatingRatingRegionGPSLatitude'] }, + 'ratingregiongpslongitude' => { 525 => [\'Rating','RatingRatingRegionGPSLongitude'] }, + 'ratingregionidentifier' => { 525 => [\'Rating','RatingRatingRegionIdentifier'] }, + 'ratingregionlocationid' => { 525 => [\'Rating','RatingRatingRegionLocationId'] }, + 'ratingregionlocationname' => { 525 => [\'Rating','RatingRatingRegionLocationName'] }, + 'ratingregionprovincestate' => { 525 => [\'Rating','RatingRatingRegionProvinceState'] }, + 'ratingregionsublocation' => { 525 => [\'Rating','RatingRatingRegionSublocation'] }, + 'ratingregionworldregion' => { 525 => [\'Rating','RatingRatingRegionWorldRegion'] }, + 'ratingscalemaxvalue' => { 525 => [\'Rating','RatingRatingScaleMaxValue'] }, + 'ratingscaleminvalue' => { 525 => [\'Rating','RatingRatingScaleMinValue'] }, + 'ratingsourcelink' => { 525 => [\'Rating','RatingRatingSourceLink'] }, + 'ratingvalue' => { 525 => [\'Rating','RatingRatingValue'] }, + 'ratingvaluelogolink' => { 525 => [\'Rating','RatingRatingValueLogoLink'] }, + 'rawandjpgrecording' => { 85 => 0x8, 189 => 0x109, 364 => 0xd }, 'rawbrightnessadj' => { 106 => 0x20001, 111 => 0x38 }, 'rawburstimagecount' => { 77 => 0x2 }, 'rawburstimagenum' => { 77 => 0x1 }, 'rawcoloradj' => { 111 => 0x2e }, - 'rawcropbottom' => { 393 => 0xd4 }, - 'rawcropleft' => { 393 => 0xd1 }, - 'rawcropright' => { 393 => 0xd3 }, - 'rawcroptop' => { 393 => 0xd2 }, + 'rawcropbottom' => { 394 => 0xd4 }, + 'rawcropleft' => { 394 => 0xd1 }, + 'rawcropright' => { 394 => 0xd3 }, + 'rawcroptop' => { 394 => 0xd2 }, 'rawcustomsaturation' => { 111 => 0x30 }, 'rawcustomtone' => { 111 => 0x34 }, - 'rawdata' => { 421 => 0xa048 }, - 'rawdatabyteorder' => { 421 => 0x40 }, - 'rawdatacfapattern' => { 421 => 0x50 }, + 'rawdata' => { 422 => 0xa048 }, + 'rawdatabyteorder' => { 422 => 0x40 }, + 'rawdatacfapattern' => { 422 => 0x50 }, 'rawdatauniqueid' => { 122 => 0xc65d }, 'rawdepth' => { 191 => 0x10 }, - 'rawdevartfilter' => { 330 => 0x121 }, - 'rawdevautogradation' => { 330 => 0x119 }, - 'rawdevcolorspace' => { 329 => 0x108, 330 => 0x109 }, - 'rawdevcontrastvalue' => { 329 => 0x106, 330 => 0x105 }, - 'rawdeveditstatus' => { 329 => 0x10b }, + 'rawdevartfilter' => { 331 => 0x121 }, + 'rawdevautogradation' => { 331 => 0x119 }, + 'rawdevcolorspace' => { 330 => 0x108, 331 => 0x109 }, + 'rawdevcontrastvalue' => { 330 => 0x106, 331 => 0x105 }, + 'rawdeveditstatus' => { 330 => 0x10b }, 'rawdevelopingsoftware' => { 122 => 0xa43a }, - 'rawdevelopmentprocess' => { 382 => 0x62 }, - 'rawdevengine' => { 329 => 0x109, 330 => 0x10b }, - 'rawdevexposurebiasvalue' => { 329 => 0x100, 330 => 0x100 }, - 'rawdevgradation' => { 330 => 0x112 }, - 'rawdevgraypoint' => { 329 => 0x103, 330 => 0x104 }, - 'rawdevmemorycoloremphasis' => { 329 => 0x105, 330 => 0x108 }, - 'rawdevnoisereduction' => { 329 => 0x10a, 330 => 0x10a }, - 'rawdevpicturemode' => { 330 => 0x10c }, - 'rawdevpm_bwfilter' => { 330 => 0x110 }, - 'rawdevpmcontrast' => { 330 => 0x10e }, - 'rawdevpmnoisefilter' => { 330 => 0x120 }, - 'rawdevpmpicturetone' => { 330 => 0x111 }, - 'rawdevpmsaturation' => { 330 => 0x10d }, - 'rawdevpmsharpness' => { 330 => 0x10f }, - 'rawdevsaturation3' => { 330 => 0x113 }, - 'rawdevsaturationemphasis' => { 329 => 0x104, 330 => 0x107 }, - 'rawdevsettings' => { 329 => 0x10c }, - 'rawdevsharpnessvalue' => { 329 => 0x107, 330 => 0x106 }, - 'rawdevversion' => { 329 => 0x0, 330 => 0x0 }, - 'rawdevwbfineadjustment' => { 329 => 0x102, 330 => 0x103 }, - 'rawdevwhitebalance' => { 330 => 0x101 }, - 'rawdevwhitebalancevalue' => { 329 => 0x101, 330 => 0x102 }, + 'rawdevelopmentprocess' => { 383 => 0x62 }, + 'rawdevengine' => { 330 => 0x109, 331 => 0x10b }, + 'rawdevexposurebiasvalue' => { 330 => 0x100, 331 => 0x100 }, + 'rawdevgradation' => { 331 => 0x112 }, + 'rawdevgraypoint' => { 330 => 0x103, 331 => 0x104 }, + 'rawdevmemorycoloremphasis' => { 330 => 0x105, 331 => 0x108 }, + 'rawdevnoisereduction' => { 330 => 0x10a, 331 => 0x10a }, + 'rawdevpicturemode' => { 331 => 0x10c }, + 'rawdevpm_bwfilter' => { 331 => 0x110 }, + 'rawdevpmcontrast' => { 331 => 0x10e }, + 'rawdevpmnoisefilter' => { 331 => 0x120 }, + 'rawdevpmpicturetone' => { 331 => 0x111 }, + 'rawdevpmsaturation' => { 331 => 0x10d }, + 'rawdevpmsharpness' => { 331 => 0x10f }, + 'rawdevsaturation3' => { 331 => 0x113 }, + 'rawdevsaturationemphasis' => { 330 => 0x104, 331 => 0x107 }, + 'rawdevsettings' => { 330 => 0x10c }, + 'rawdevsharpnessvalue' => { 330 => 0x107, 331 => 0x106 }, + 'rawdevversion' => { 330 => 0x0, 331 => 0x0 }, + 'rawdevwbfineadjustment' => { 330 => 0x102, 331 => 0x103 }, + 'rawdevwhitebalance' => { 331 => 0x101 }, + 'rawdevwhitebalancevalue' => { 330 => 0x101, 331 => 0x102 }, 'rawfile' => { 122 => 0xfe4c }, - 'rawfilename' => { 510 => 'RawFileName', 512 => 'RawFileName' }, - 'rawfiletype' => { 448 => 0x2029 }, - 'rawformat' => { 352 => 0x2d, 391 => 0x10e }, + 'rawfilename' => { 511 => 'RawFileName', 513 => 'RawFileName' }, + 'rawfiletype' => { 449 => 0x2029 }, + 'rawformat' => { 353 => 0x2d, 392 => 0x10e }, 'rawimagecenter' => { 239 => 0x99 }, 'rawimagedigest' => { 122 => 0xc71c }, - 'rawimagesize' => { 382 => 0x39 }, - 'rawinfoversion' => { 331 => 0x0 }, + 'rawimagesize' => { 383 => 0x39 }, + 'rawinfoversion' => { 332 => 0x0 }, 'rawjpgheight' => { 102 => 0x4 }, 'rawjpgquality' => { 59 => 0x6, 102 => 0x1 }, 'rawjpgsize' => { 59 => 0x7, 102 => 0x2 }, 'rawjpgwidth' => { 102 => 0x3 }, 'rawmeasuredrggb' => { 45 => 0x26a, 47 => 0x280, 49 => 0x194, 50 => [0x1ad,0x26b] }, - 'rawrppused' => { 505 => 'rawrppused' }, + 'rawrppused' => { 506 => 'rawrppused' }, 'rawtopreviewgain' => { 122 => 0xc7a8 }, 'readouttypeactual' => { 141 => 0x1903 }, 'readouttyperequested' => { 141 => 0x1902 }, - 'reardisplay' => { 303 => '12.3', 304 => '6.2' }, - 'recdevice' => { 524 => 'RecDevice' }, - 'recdeviceattlensdescription' => { 524 => [\'RecDevice','RecDeviceAttLensDescription'] }, - 'recdevicemanufacturer' => { 524 => [\'RecDevice','RecDeviceManufacturer'] }, - 'recdevicemodelname' => { 524 => [\'RecDevice','RecDeviceModelName'] }, - 'recdeviceownersdeviceid' => { 524 => [\'RecDevice','RecDeviceOwnersDeviceId'] }, - 'recdeviceserialnumber' => { 524 => [\'RecDevice','RecDeviceSerialNumber'] }, - 'recipeendingpage' => { 531 => 'recipeEndingPage' }, - 'recipepagerange' => { 531 => 'recipePageRange' }, - 'recipesource' => { 531 => 'recipeSource' }, - 'recipestartingpage' => { 531 => 'recipeStartingPage' }, - 'recipetitle' => { 531 => 'recipeTitle' }, - 'recognizedface1age' => { 340 => 0x20 }, - 'recognizedface1name' => { 340 => 0x4 }, - 'recognizedface1position' => { 340 => 0x18 }, - 'recognizedface2age' => { 340 => 0x50 }, - 'recognizedface2name' => { 340 => 0x34 }, - 'recognizedface2position' => { 340 => 0x48 }, - 'recognizedface3age' => { 340 => 0x80 }, - 'recognizedface3name' => { 340 => 0x64 }, - 'recognizedface3position' => { 340 => 0x78 }, - 'recognizedfaceflags' => { 347 => 0x63 }, - 'recommendedexposureindex' => { 122 => 0x8832, 517 => 'RecommendedExposureIndex' }, + 'reardisplay' => { 304 => '12.3', 305 => '6.2' }, + 'recdevice' => { 525 => 'RecDevice' }, + 'recdeviceattlensdescription' => { 525 => [\'RecDevice','RecDeviceAttLensDescription'] }, + 'recdevicemanufacturer' => { 525 => [\'RecDevice','RecDeviceManufacturer'] }, + 'recdevicemodelname' => { 525 => [\'RecDevice','RecDeviceModelName'] }, + 'recdeviceownersdeviceid' => { 525 => [\'RecDevice','RecDeviceOwnersDeviceId'] }, + 'recdeviceserialnumber' => { 525 => [\'RecDevice','RecDeviceSerialNumber'] }, + 'recipeendingpage' => { 532 => 'recipeEndingPage' }, + 'recipepagerange' => { 532 => 'recipePageRange' }, + 'recipesource' => { 532 => 'recipeSource' }, + 'recipestartingpage' => { 532 => 'recipeStartingPage' }, + 'recipetitle' => { 532 => 'recipeTitle' }, + 'recognizedface1age' => { 341 => 0x20 }, + 'recognizedface1name' => { 341 => 0x4 }, + 'recognizedface1position' => { 341 => 0x18 }, + 'recognizedface2age' => { 341 => 0x50 }, + 'recognizedface2name' => { 341 => 0x34 }, + 'recognizedface2position' => { 341 => 0x48 }, + 'recognizedface3age' => { 341 => 0x80 }, + 'recognizedface3name' => { 341 => 0x64 }, + 'recognizedface3position' => { 341 => 0x78 }, + 'recognizedfaceflags' => { 348 => 0x63 }, + 'recommendedexposureindex' => { 122 => 0x8832, 518 => 'RecommendedExposureIndex' }, 'record' => { 121 => 'Record' }, 'recordbasisofrecord' => { 121 => [\'Record','RecordBasisOfRecord'] }, 'recordcollectioncode' => { 121 => [\'Record','RecordCollectionCode'] }, @@ -5971,38 +5980,38 @@ my %tagLookup = ( 'recorddynamicproperties' => { 121 => [\'Record','RecordDynamicProperties'] }, 'recordid' => { 100 => 0x1804 }, 'recordinformationwithheld' => { 121 => [\'Record','RecordInformationWithheld'] }, - 'recordingcopyright' => { 407 => "\xa9phg" }, - 'recordingformat' => { 414 => 0x1000 }, - 'recordingmode' => { 115 => 0x1, 389 => 0x1 }, + 'recordingcopyright' => { 408 => "\xa9phg" }, + 'recordingformat' => { 415 => 0x1000 }, + 'recordingmode' => { 115 => 0x1, 390 => 0x1 }, 'recordinstitutioncode' => { 121 => [\'Record','RecordInstitutionCode'] }, 'recordinstitutionid' => { 121 => [\'Record','RecordInstitutionID'] }, - 'recordlabelname' => { 407 => "\xa9lab" }, - 'recordlabelurl' => { 407 => "\xa9lal" }, - 'recordlocationdata' => { 245 => 0x660, 246 => 0x690, 247 => 0x6f8 }, + 'recordlabelname' => { 408 => "\xa9lab" }, + 'recordlabelurl' => { 408 => "\xa9lal" }, + 'recordlocationdata' => { 246 => 0x660, 247 => 0x690, 248 => 0x6f8 }, 'recordmode' => { 36 => 0x9, 116 => 0x3000 }, 'recordownerinstitutioncode' => { 121 => [\'Record','RecordOwnerInstitutionCode'] }, - 'recordshutterrelease' => { 423 => 0x217 }, - 'redbalance' => { 328 => 0x1017, 352 => 0x11, 382 => 0x1c }, + 'recordshutterrelease' => { 424 => 0x217 }, + 'redbalance' => { 329 => 0x1017, 353 => 0x11, 383 => 0x1c }, 'redcurvelimits' => { 111 => 0x18a }, 'redcurvepoints' => { 110 => 0x2d, 111 => 0x160 }, - 'redeyecorrection' => { 300 => 0x0 }, - 'redeyeinfo' => { 510 => 'RedEyeInfo', 512 => 'RedEyeInfo' }, - 'redeyereduction' => { 187 => 0x41, 434 => 0x6a, 436 => 0x28 }, - 'redeyeremoval' => { 347 => 0xb9 }, + 'redeyecorrection' => { 301 => 0x0 }, + 'redeyeinfo' => { 511 => 'RedEyeInfo', 513 => 'RedEyeInfo' }, + 'redeyereduction' => { 187 => 0x41, 435 => 0x6a, 437 => 0x28 }, + 'redeyeremoval' => { 348 => 0xb9 }, 'redhsl' => { 106 => 0x20910 }, - 'redhue' => { 510 => 'RedHue', 512 => 'RedHue' }, - 'redsaturation' => { 510 => 'RedSaturation', 512 => 'RedSaturation' }, + 'redhue' => { 511 => 'RedHue', 513 => 'RedHue' }, + 'redsaturation' => { 511 => 'RedSaturation', 513 => 'RedSaturation' }, 'reductionmatrix1' => { 122 => 0xc625 }, 'reductionmatrix2' => { 122 => 0xc626 }, 'reductionmatrix3' => { 122 => 0xcd3a }, - 'reelname' => { 122 => 0xc789, 407 => 'reel' }, - 'reference1' => { 522 => [\'TagStructure','TagStructureReference'] }, - 'reference2' => { 522 => [\'TagStructure','TagStructureSubLabelsReference'] }, - 'reference3' => { 522 => [\'TagStructure','TagStructureSubLabelsSubLabelsReference'] }, - 'reference4' => { 522 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsReference'] }, - 'reference5' => { 522 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsReference'] }, - 'reference6' => { 522 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsReference'] }, - 'referenceblackwhite' => { 122 => 0x214, 535 => 'ReferenceBlackWhite' }, + 'reelname' => { 122 => 0xc789, 408 => 'reel' }, + 'reference1' => { 523 => [\'TagStructure','TagStructureReference'] }, + 'reference2' => { 523 => [\'TagStructure','TagStructureSubLabelsReference'] }, + 'reference3' => { 523 => [\'TagStructure','TagStructureSubLabelsSubLabelsReference'] }, + 'reference4' => { 523 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsReference'] }, + 'reference5' => { 523 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsReference'] }, + 'reference6' => { 523 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsReference'] }, + 'referenceblackwhite' => { 122 => 0x214, 536 => 'ReferenceBlackWhite' }, 'referencedate' => { 134 => 0x2f }, 'referencenumber' => { 134 => 0x32 }, 'references' => { 160 => 'References' }, @@ -6019,12 +6028,12 @@ my %tagLookup = ( 'regionareax' => { 175 => [\'Regions','RegionsRegionListAreaX'] }, 'regionareay' => { 175 => [\'Regions','RegionsRegionListAreaY'] }, 'regionbarcodevalue' => { 175 => [\'Regions','RegionsRegionListBarCodeValue'] }, - 'regionconstraints' => { 333 => 'RegionConstraints' }, + 'regionconstraints' => { 334 => 'RegionConstraints' }, 'regiondescription' => { 175 => [\'Regions','RegionsRegionListDescription'] }, 'regionextensions' => { 175 => [\'Regions','RegionsRegionListExtensions'] }, 'regionfocususage' => { 175 => [\'Regions','RegionsRegionListFocusUsage'] }, 'regioninfo' => { 175 => 'Regions' }, - 'regioninfoacdsee' => { 486 => 'Regions' }, + 'regioninfoacdsee' => { 487 => 'Regions' }, 'regioninfodateregionsvalid' => { 178 => [\'RegionInfo','RegionInfoDateRegionsValid'] }, 'regioninfomp' => { 178 => 'RegionInfo' }, 'regioninforegions' => { 178 => [\'RegionInfo','RegionInfoRegions'] }, @@ -6038,10 +6047,10 @@ my %tagLookup = ( 'regionrotation' => { 175 => [\'Regions','RegionsRegionListRotation'] }, 'regionseealso' => { 175 => [\'Regions','RegionsRegionListSeeAlso'] }, 'regiontype' => { 175 => [\'Regions','RegionsRegionListType'] }, - 'registryentryrole' => { 524 => [\'RegistryId','RegistryIdRegEntryRole'] }, - 'registryid' => { 524 => 'RegistryId' }, - 'registryitemid' => { 524 => [\'RegistryId','RegistryIdRegItemId'] }, - 'registryorganisationid' => { 524 => [\'RegistryId','RegistryIdRegOrgId'] }, + 'registryentryrole' => { 525 => [\'RegistryId','RegistryIdRegEntryRole'] }, + 'registryid' => { 525 => 'RegistryId' }, + 'registryitemid' => { 525 => [\'RegistryId','RegistryIdRegItemId'] }, + 'registryorganisationid' => { 525 => [\'RegistryId','RegistryIdRegOrgId'] }, 'relatedaudiofile' => { 158 => 'data' }, 'relatedaudiofilename' => { 158 => '1Name' }, 'relatedaudiofiletype' => { 158 => '0Type' }, @@ -6049,224 +6058,224 @@ my %tagLookup = ( 'relatedimageheight' => { 122 => 0x1002 }, 'relatedimagewidth' => { 122 => 0x1001 }, 'relatedresourceid' => { 121 => [\'ResourceRelationship','ResourceRelationshipRelatedResourceID'] }, - 'relatedsoundfile' => { 122 => 0xa004, 516 => 'RelatedSoundFile' }, + 'relatedsoundfile' => { 122 => 0xa004, 517 => 'RelatedSoundFile' }, 'relatedvideofile' => { 172 => 'data' }, 'relatedvideofilename' => { 172 => '1Name' }, 'relatedvideofiletype' => { 172 => '0Type' }, - 'relation' => { 513 => 'relation' }, + 'relation' => { 514 => 'relation' }, 'relationshipaccordingto' => { 121 => [\'ResourceRelationship','ResourceRelationshipRelationshipAccordingTo'] }, 'relationshipestablisheddate' => { 121 => [\'ResourceRelationship','ResourceRelationshipRelationshipEstablishedDate'] }, 'relationshipofresource' => { 121 => [\'ResourceRelationship','ResourceRelationshipRelationshipOfResource'] }, 'relationshipofresourceid' => { 121 => [\'ResourceRelationship','ResourceRelationshipRelationshipOfResourceID'] }, 'relationshipremarks' => { 121 => [\'ResourceRelationship','ResourceRelationshipRelationshipRemarks'] }, 'relativealtitude' => { 119 => 'RelativeAltitude' }, - 'relativepeakaudiofilepath' => { 539 => 'relativePeakAudioFilePath' }, - 'relativetimestamp' => { 539 => 'relativeTimestamp' }, - 'relativetimestampscale' => { 539 => [\'relativeTimestamp','relativeTimestampScale'] }, - 'relativetimestampvalue' => { 539 => [\'relativeTimestamp','relativeTimestampValue'] }, - 'releasebuttontousedial' => { 303 => '17.8', 304 => '18.5', 306 => '18.4', 307 => '18.4', 312 => '33.8', 313 => '17.6', 316 => '18.5', 317 => '18.4' }, - 'releasedate' => { 134 => 0x1e, 399 => 'rldt', 505 => 'ReleaseDate', 539 => 'releaseDate' }, - 'releasemode' => { 116 => 0x3001, 243 => 0x5c, 276 => 0x184d, 448 => 0xb049 }, - 'releasemode2' => { 457 => 0x112c, 458 => [0x112c,0x8], 459 => [0x1108,0x8], 460 => [0x1184,0x8], 461 => [0x1160,0x8], 462 => [0x4,0x1018], 463 => [0x4,0x210], 464 => [0x4,0x210], 465 => [0x4,0x208], 467 => [0x67,0x3f], 468 => [0x6b,0x6d,0x73,0x4b], 469 => [0x6b,0x4b], 470 => 0x1f, 471 => 0x10, 472 => 0x10, 473 => 0x9, 480 => 0x34 }, - 'releasemode3' => { 457 => 0x1128, 458 => 0x1128, 459 => 0x1104, 460 => 0x1180, 461 => 0x115c, 462 => 0x1014, 463 => 0x20c, 464 => 0x20c, 465 => 0x204 }, - 'releaseready' => { 524 => 'ReleaseReady' }, + 'relativepeakaudiofilepath' => { 540 => 'relativePeakAudioFilePath' }, + 'relativetimestamp' => { 540 => 'relativeTimestamp' }, + 'relativetimestampscale' => { 540 => [\'relativeTimestamp','relativeTimestampScale'] }, + 'relativetimestampvalue' => { 540 => [\'relativeTimestamp','relativeTimestampValue'] }, + 'releasebuttontousedial' => { 304 => '17.8', 305 => '18.5', 307 => '18.4', 308 => '18.4', 313 => '33.8', 314 => '17.6', 317 => '18.5', 318 => '18.4' }, + 'releasedate' => { 134 => 0x1e, 400 => 'rldt', 506 => 'ReleaseDate', 540 => 'releaseDate' }, + 'releasemode' => { 116 => 0x3001, 243 => 0x5c, 277 => 0x184d, 449 => 0xb049 }, + 'releasemode2' => { 458 => 0x112c, 459 => [0x112c,0x8], 460 => [0x1108,0x8], 461 => [0x1184,0x8], 462 => [0x1160,0x8], 463 => [0x4,0x1018], 464 => [0x4,0x210], 465 => [0x4,0x210], 466 => [0x4,0x208], 468 => [0x67,0x3f], 469 => [0x6b,0x6d,0x73,0x4b], 470 => [0x6b,0x4b], 471 => 0x1f, 472 => 0x10, 473 => 0x10, 474 => 0x9, 481 => 0x34 }, + 'releasemode3' => { 458 => 0x1128, 459 => 0x1128, 460 => 0x1104, 461 => 0x1180, 462 => 0x115c, 463 => 0x1014, 464 => 0x20c, 465 => 0x20c, 466 => 0x204 }, + 'releaseready' => { 525 => 'ReleaseReady' }, 'releasesetting' => { 100 => 0x1016 }, - 'releasetime' => { 134 => 0x23, 505 => 'ReleaseTime' }, - 'remoteonduration' => { 305 => '3.4', 308 => '17.2', 309 => '18.2', 310 => '18.2', 311 => '18.2', 313 => '18.2', 314 => '4.3', 318 => '19.2' }, - 'renditionclass' => { 540 => 'RenditionClass' }, - 'renditionof' => { 540 => 'RenditionOf' }, - 'renditionofalternatepaths' => { 540 => [\'RenditionOf','RenditionOfAlternatePaths'] }, - 'renditionofdocumentid' => { 540 => [\'RenditionOf','RenditionOfDocumentID'] }, - 'renditionoffilepath' => { 540 => [\'RenditionOf','RenditionOfFilePath'] }, - 'renditionoffrompart' => { 540 => [\'RenditionOf','RenditionOfFromPart'] }, - 'renditionofinstanceid' => { 540 => [\'RenditionOf','RenditionOfInstanceID'] }, - 'renditionoflastmodifydate' => { 540 => [\'RenditionOf','RenditionOfLastModifyDate'] }, - 'renditionoflasturl' => { 540 => [\'RenditionOf','RenditionOfLastURL'] }, - 'renditionoflinkcategory' => { 540 => [\'RenditionOf','RenditionOfLinkCategory'] }, - 'renditionoflinkform' => { 540 => [\'RenditionOf','RenditionOfLinkForm'] }, - 'renditionofmanager' => { 540 => [\'RenditionOf','RenditionOfManager'] }, - 'renditionofmanagervariant' => { 540 => [\'RenditionOf','RenditionOfManagerVariant'] }, - 'renditionofmanageto' => { 540 => [\'RenditionOf','RenditionOfManageTo'] }, - 'renditionofmanageui' => { 540 => [\'RenditionOf','RenditionOfManageUI'] }, - 'renditionofmaskmarkers' => { 540 => [\'RenditionOf','RenditionOfMaskMarkers'] }, - 'renditionoforiginaldocumentid' => { 540 => [\'RenditionOf','RenditionOfOriginalDocumentID'] }, - 'renditionofpartmapping' => { 540 => [\'RenditionOf','RenditionOfPartMapping'] }, - 'renditionofplacedresolutionunit' => { 540 => [\'RenditionOf','RenditionOfPlacedResolutionUnit'] }, - 'renditionofplacedxresolution' => { 540 => [\'RenditionOf','RenditionOfPlacedXResolution'] }, - 'renditionofplacedyresolution' => { 540 => [\'RenditionOf','RenditionOfPlacedYResolution'] }, - 'renditionofrenditionclass' => { 540 => [\'RenditionOf','RenditionOfRenditionClass'] }, - 'renditionofrenditionparams' => { 540 => [\'RenditionOf','RenditionOfRenditionParams'] }, - 'renditionoftopart' => { 540 => [\'RenditionOf','RenditionOfToPart'] }, - 'renditionofversionid' => { 540 => [\'RenditionOf','RenditionOfVersionID'] }, - 'renditionparams' => { 540 => 'RenditionParams' }, - 'repeatingflashcount' => { 217 => 0xd, 218 => 0xe, 219 => 0xe, 220 => 0xe, 221 => 0xe, 222 => 0xe, 312 => '17.2', 313 => '24.2', 314 => '9.2', 315 => '24.2', 318 => '25.2' }, - 'repeatingflashcountbuilt-in' => { 283 => 0x4db }, - 'repeatingflashcountexternal' => { 283 => 0x4c3 }, - 'repeatingflashoutput' => { 312 => '17.1', 313 => '24.1', 314 => '9.1', 315 => '24.1', 318 => '25.1' }, - 'repeatingflashoutputexternal' => { 283 => 0x4c0 }, - 'repeatingflashrate' => { 217 => 0xc, 218 => 0xd, 219 => 0xd, 220 => 0xd, 221 => 0xd, 222 => 0xd, 312 => '18.1', 313 => '25.1', 314 => '10.1', 315 => '25.1', 318 => '26.1' }, - 'repeatingflashratebuilt-in' => { 283 => 0x4da }, - 'repeatingflashrateexternal' => { 283 => 0x4c2 }, - 'requirements' => { 407 => "\xa9req" }, - 'requires' => { 508 => 'requires' }, - 'resampleparams' => { 539 => 'resampleParams' }, - 'resampleparamsquality' => { 539 => [\'resampleParams','resampleParamsQuality'] }, + 'releasetime' => { 134 => 0x23, 506 => 'ReleaseTime' }, + 'remoteonduration' => { 306 => '3.4', 309 => '17.2', 310 => '18.2', 311 => '18.2', 312 => '18.2', 314 => '18.2', 315 => '4.3', 319 => '19.2' }, + 'renditionclass' => { 541 => 'RenditionClass' }, + 'renditionof' => { 541 => 'RenditionOf' }, + 'renditionofalternatepaths' => { 541 => [\'RenditionOf','RenditionOfAlternatePaths'] }, + 'renditionofdocumentid' => { 541 => [\'RenditionOf','RenditionOfDocumentID'] }, + 'renditionoffilepath' => { 541 => [\'RenditionOf','RenditionOfFilePath'] }, + 'renditionoffrompart' => { 541 => [\'RenditionOf','RenditionOfFromPart'] }, + 'renditionofinstanceid' => { 541 => [\'RenditionOf','RenditionOfInstanceID'] }, + 'renditionoflastmodifydate' => { 541 => [\'RenditionOf','RenditionOfLastModifyDate'] }, + 'renditionoflasturl' => { 541 => [\'RenditionOf','RenditionOfLastURL'] }, + 'renditionoflinkcategory' => { 541 => [\'RenditionOf','RenditionOfLinkCategory'] }, + 'renditionoflinkform' => { 541 => [\'RenditionOf','RenditionOfLinkForm'] }, + 'renditionofmanager' => { 541 => [\'RenditionOf','RenditionOfManager'] }, + 'renditionofmanagervariant' => { 541 => [\'RenditionOf','RenditionOfManagerVariant'] }, + 'renditionofmanageto' => { 541 => [\'RenditionOf','RenditionOfManageTo'] }, + 'renditionofmanageui' => { 541 => [\'RenditionOf','RenditionOfManageUI'] }, + 'renditionofmaskmarkers' => { 541 => [\'RenditionOf','RenditionOfMaskMarkers'] }, + 'renditionoforiginaldocumentid' => { 541 => [\'RenditionOf','RenditionOfOriginalDocumentID'] }, + 'renditionofpartmapping' => { 541 => [\'RenditionOf','RenditionOfPartMapping'] }, + 'renditionofplacedresolutionunit' => { 541 => [\'RenditionOf','RenditionOfPlacedResolutionUnit'] }, + 'renditionofplacedxresolution' => { 541 => [\'RenditionOf','RenditionOfPlacedXResolution'] }, + 'renditionofplacedyresolution' => { 541 => [\'RenditionOf','RenditionOfPlacedYResolution'] }, + 'renditionofrenditionclass' => { 541 => [\'RenditionOf','RenditionOfRenditionClass'] }, + 'renditionofrenditionparams' => { 541 => [\'RenditionOf','RenditionOfRenditionParams'] }, + 'renditionoftopart' => { 541 => [\'RenditionOf','RenditionOfToPart'] }, + 'renditionofversionid' => { 541 => [\'RenditionOf','RenditionOfVersionID'] }, + 'renditionparams' => { 541 => 'RenditionParams' }, + 'repeatingflashcount' => { 217 => 0xd, 218 => 0xe, 219 => 0xe, 220 => 0xe, 221 => 0xe, 222 => 0xe, 313 => '17.2', 314 => '24.2', 315 => '9.2', 316 => '24.2', 319 => '25.2' }, + 'repeatingflashcountbuilt-in' => { 284 => 0x4db }, + 'repeatingflashcountexternal' => { 284 => 0x4c3 }, + 'repeatingflashoutput' => { 313 => '17.1', 314 => '24.1', 315 => '9.1', 316 => '24.1', 319 => '25.1' }, + 'repeatingflashoutputexternal' => { 284 => 0x4c0 }, + 'repeatingflashrate' => { 217 => 0xc, 218 => 0xd, 219 => 0xd, 220 => 0xd, 221 => 0xd, 222 => 0xd, 313 => '18.1', 314 => '25.1', 315 => '10.1', 316 => '25.1', 319 => '26.1' }, + 'repeatingflashratebuilt-in' => { 284 => 0x4da }, + 'repeatingflashrateexternal' => { 284 => 0x4c2 }, + 'requirements' => { 408 => "\xa9req" }, + 'requires' => { 509 => 'requires' }, + 'resampleparams' => { 540 => 'resampleParams' }, + 'resampleparamsquality' => { 540 => [\'resampleParams','resampleParamsQuality'] }, 'resamplingkerneldenominators050' => { 141 => 0xe50 }, 'resamplingkerneldenominators067' => { 141 => 0xe4f }, 'resamplingkerneldenominators100' => { 141 => 0xe51 }, - 'resaved' => { 423 => 0x21e }, + 'resaved' => { 424 => 0x21e }, 'resetblacksegrows' => { 141 => 0x181a }, 'resolution' => { 165 => 'Resolution' }, - 'resolutionmode' => { 424 => [0x87,0x4] }, - 'resolutionunit' => { 122 => 0x128, 137 => 0x2, 535 => 'ResolutionUnit' }, + 'resolutionmode' => { 425 => [0x87,0x4] }, + 'resolutionunit' => { 122 => 0x128, 137 => 0x2, 536 => 'ResolutionUnit' }, 'resourceid' => { 121 => [\'ResourceRelationship','ResourceRelationshipResourceID'] }, 'resourcerelationship' => { 121 => 'ResourceRelationship' }, 'resourcerelationshipid' => { 121 => [\'ResourceRelationship','ResourceRelationshipResourceRelationshipID'] }, 'restrictdrivemodes' => { 87 => 0x612 }, - 'restrictions' => { 532 => 'restrictions' }, - 'retouchareafeather' => { 510 => [\'RetouchAreas','RetouchAreasFeather'], 512 => [\'RetouchAreas','RetouchAreasFeather'] }, - 'retouchareamaskalpha' => { 510 => [\'RetouchAreas','RetouchAreasMasksAlpha'], 512 => [\'RetouchAreas','RetouchAreasMasksAlpha'] }, - 'retouchareamaskangle' => { 510 => [\'RetouchAreas','RetouchAreasMasksAngle'], 512 => [\'RetouchAreas','RetouchAreasMasksAngle'] }, - 'retouchareamaskbottom' => { 510 => [\'RetouchAreas','RetouchAreasMasksBottom'], 512 => [\'RetouchAreas','RetouchAreasMasksBottom'] }, - 'retouchareamaskcentervalue' => { 510 => [\'RetouchAreas','RetouchAreasMasksCenterValue'], 512 => [\'RetouchAreas','RetouchAreasMasksCenterValue'] }, - 'retouchareamaskcenterweight' => { 510 => [\'RetouchAreas','RetouchAreasMasksCenterWeight'], 512 => [\'RetouchAreas','RetouchAreasMasksCenterWeight'] }, - 'retouchareamaskdabs' => { 510 => [\'RetouchAreas','RetouchAreasMasksDabs'], 512 => [\'RetouchAreas','RetouchAreasMasksDabs'] }, - 'retouchareamaskfeather' => { 510 => [\'RetouchAreas','RetouchAreasMasksFeather'], 512 => [\'RetouchAreas','RetouchAreasMasksFeather'] }, - 'retouchareamaskflipped' => { 510 => [\'RetouchAreas','RetouchAreasMasksFlipped'], 512 => [\'RetouchAreas','RetouchAreasMasksFlipped'] }, - 'retouchareamaskflow' => { 510 => [\'RetouchAreas','RetouchAreasMasksFlow'], 512 => [\'RetouchAreas','RetouchAreasMasksFlow'] }, - 'retouchareamaskfullx' => { 510 => [\'RetouchAreas','RetouchAreasMasksFullX'], 512 => [\'RetouchAreas','RetouchAreasMasksFullX'] }, - 'retouchareamaskfully' => { 510 => [\'RetouchAreas','RetouchAreasMasksFullY'], 512 => [\'RetouchAreas','RetouchAreasMasksFullY'] }, - 'retouchareamaskinputdigest' => { 510 => [\'RetouchAreas','RetouchAreasMasksInputDigest'], 512 => [\'RetouchAreas','RetouchAreasMasksInputDigest'] }, - 'retouchareamaskleft' => { 510 => [\'RetouchAreas','RetouchAreasMasksLeft'], 512 => [\'RetouchAreas','RetouchAreasMasksLeft'] }, - 'retouchareamaskmaskactive' => { 510 => [\'RetouchAreas','RetouchAreasMasksMaskActive'], 512 => [\'RetouchAreas','RetouchAreasMasksMaskActive'] }, - 'retouchareamaskmaskblendmode' => { 510 => [\'RetouchAreas','RetouchAreasMasksMaskBlendMode'], 512 => [\'RetouchAreas','RetouchAreasMasksMaskBlendMode'] }, - 'retouchareamaskmaskdigest' => { 510 => [\'RetouchAreas','RetouchAreasMasksMaskDigest'], 512 => [\'RetouchAreas','RetouchAreasMasksMaskDigest'] }, - 'retouchareamaskmaskinverted' => { 510 => [\'RetouchAreas','RetouchAreasMasksMaskInverted'], 512 => [\'RetouchAreas','RetouchAreasMasksMaskInverted'] }, - 'retouchareamaskmaskname' => { 510 => [\'RetouchAreas','RetouchAreasMasksMaskName'], 512 => [\'RetouchAreas','RetouchAreasMasksMaskName'] }, - 'retouchareamaskmasks' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasks'], 512 => [\'RetouchAreas','RetouchAreasMasksMasks'] }, - 'retouchareamaskmasksalpha' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksAlpha'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksAlpha'] }, - 'retouchareamaskmasksangle' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksAngle'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksAngle'] }, - 'retouchareamaskmasksbottom' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksBottom'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksBottom'] }, - 'retouchareamaskmaskscentervalue' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksCenterValue'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksCenterValue'] }, - 'retouchareamaskmaskscenterweight' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksCenterWeight'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksCenterWeight'] }, - 'retouchareamaskmasksdabs' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksDabs'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksDabs'] }, - 'retouchareamaskmasksfeather' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksFeather'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksFeather'] }, - 'retouchareamaskmasksflipped' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksFlipped'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksFlipped'] }, - 'retouchareamaskmasksflow' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksFlow'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksFlow'] }, - 'retouchareamaskmasksfullx' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksFullX'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksFullX'] }, - 'retouchareamaskmasksfully' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksFullY'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksFullY'] }, - 'retouchareamaskmasksinputdigest' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksInputDigest'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksInputDigest'] }, - 'retouchareamaskmasksleft' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksLeft'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksLeft'] }, - 'retouchareamaskmasksmaskactive' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksMaskActive'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksMaskActive'] }, - 'retouchareamaskmasksmaskblendmode' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksMaskBlendMode'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksMaskBlendMode'] }, - 'retouchareamaskmasksmaskdigest' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksMaskDigest'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksMaskDigest'] }, - 'retouchareamaskmasksmaskinverted' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksMaskInverted'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksMaskInverted'] }, - 'retouchareamaskmasksmaskname' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksMaskName'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksMaskName'] }, - 'retouchareamaskmasksmasksubtype' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksMaskSubType'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksMaskSubType'] }, - 'retouchareamaskmasksmasksyncid' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksMaskSyncID'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksMaskSyncID'] }, - 'retouchareamaskmasksmaskversion' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksMaskVersion'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksMaskVersion'] }, - 'retouchareamaskmasksmidpoint' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksMidpoint'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksMidpoint'] }, - 'retouchareamaskmasksorigin' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksOrigin'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksOrigin'] }, - 'retouchareamaskmasksperimetervalue' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksPerimeterValue'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksPerimeterValue'] }, - 'retouchareamaskmasksradius' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksRadius'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksRadius'] }, - 'retouchareamaskmasksreferencepoint' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksReferencePoint'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksReferencePoint'] }, - 'retouchareamaskmasksright' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksRight'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksRight'] }, - 'retouchareamaskmasksroundness' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksRoundness'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksRoundness'] }, - 'retouchareamaskmaskssizex' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksSizeX'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksSizeX'] }, - 'retouchareamaskmaskssizey' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksSizeY'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksSizeY'] }, - 'retouchareamaskmaskstop' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksTop'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksTop'] }, - 'retouchareamaskmasksubtype' => { 510 => [\'RetouchAreas','RetouchAreasMasksMaskSubType'], 512 => [\'RetouchAreas','RetouchAreasMasksMaskSubType'] }, - 'retouchareamaskmasksvalue' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksMaskValue'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksMaskValue'] }, - 'retouchareamaskmasksversion' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksVersion'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksVersion'] }, - 'retouchareamaskmaskswhat' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksWhat'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksWhat'] }, - 'retouchareamaskmaskswholeimagearea' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksWholeImageArea'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksWholeImageArea'] }, - 'retouchareamaskmasksx' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksX'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksX'] }, - 'retouchareamaskmasksy' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksY'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksY'] }, - 'retouchareamaskmasksyncid' => { 510 => [\'RetouchAreas','RetouchAreasMasksMaskSyncID'], 512 => [\'RetouchAreas','RetouchAreasMasksMaskSyncID'] }, - 'retouchareamaskmaskszerox' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksZeroX'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksZeroX'] }, - 'retouchareamaskmaskszeroy' => { 510 => [\'RetouchAreas','RetouchAreasMasksMasksZeroY'], 512 => [\'RetouchAreas','RetouchAreasMasksMasksZeroY'] }, - 'retouchareamaskmaskversion' => { 510 => [\'RetouchAreas','RetouchAreasMasksMaskVersion'], 512 => [\'RetouchAreas','RetouchAreasMasksMaskVersion'] }, - 'retouchareamaskmidpoint' => { 510 => [\'RetouchAreas','RetouchAreasMasksMidpoint'], 512 => [\'RetouchAreas','RetouchAreasMasksMidpoint'] }, - 'retouchareamaskorigin' => { 510 => [\'RetouchAreas','RetouchAreasMasksOrigin'], 512 => [\'RetouchAreas','RetouchAreasMasksOrigin'] }, - 'retouchareamaskperimetervalue' => { 510 => [\'RetouchAreas','RetouchAreasMasksPerimeterValue'], 512 => [\'RetouchAreas','RetouchAreasMasksPerimeterValue'] }, - 'retouchareamaskradius' => { 510 => [\'RetouchAreas','RetouchAreasMasksRadius'], 512 => [\'RetouchAreas','RetouchAreasMasksRadius'] }, - 'retouchareamaskrange' => { 510 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMask'], 512 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMask'] }, - 'retouchareamaskrangeareamodels' => { 510 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModels'], 512 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModels'] }, - 'retouchareamaskrangeareamodelscolorsampleinfo' => { 510 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 512 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, - 'retouchareamaskrangeareamodelscomponents' => { 510 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModelsAreaComponents'], 512 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModelsAreaComponents'] }, - 'retouchareamaskrangecoloramount' => { 510 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskColorAmount'], 512 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskColorAmount'] }, - 'retouchareamaskrangedepthfeather' => { 510 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthFeather'], 512 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthFeather'] }, - 'retouchareamaskrangedepthmax' => { 510 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthMax'], 512 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthMax'] }, - 'retouchareamaskrangedepthmin' => { 510 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthMin'], 512 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthMin'] }, - 'retouchareamaskrangeinvert' => { 510 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskInvert'], 512 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskInvert'] }, - 'retouchareamaskrangelumfeather' => { 510 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumFeather'], 512 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumFeather'] }, - 'retouchareamaskrangeluminancedepthsampleinfo' => { 510 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLuminanceDepthSampleInfo'], 512 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLuminanceDepthSampleInfo'] }, - 'retouchareamaskrangelummax' => { 510 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumMax'], 512 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumMax'] }, - 'retouchareamaskrangelummin' => { 510 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumMin'], 512 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumMin'] }, - 'retouchareamaskrangelumrange' => { 510 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumRange'], 512 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumRange'] }, - 'retouchareamaskrangesampletype' => { 510 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskSampleType'], 512 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskSampleType'] }, - 'retouchareamaskrangetype' => { 510 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskType'], 512 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskType'] }, - 'retouchareamaskrangeversion' => { 510 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskVersion'], 512 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskVersion'] }, - 'retouchareamaskreferencepoint' => { 510 => [\'RetouchAreas','RetouchAreasMasksReferencePoint'], 512 => [\'RetouchAreas','RetouchAreasMasksReferencePoint'] }, - 'retouchareamaskright' => { 510 => [\'RetouchAreas','RetouchAreasMasksRight'], 512 => [\'RetouchAreas','RetouchAreasMasksRight'] }, - 'retouchareamaskroundness' => { 510 => [\'RetouchAreas','RetouchAreasMasksRoundness'], 512 => [\'RetouchAreas','RetouchAreasMasksRoundness'] }, - 'retouchareamasks' => { 510 => [\'RetouchAreas','RetouchAreasMasks'], 512 => [\'RetouchAreas','RetouchAreasMasks'] }, - 'retouchareamasksizex' => { 510 => [\'RetouchAreas','RetouchAreasMasksSizeX'], 512 => [\'RetouchAreas','RetouchAreasMasksSizeX'] }, - 'retouchareamasksizey' => { 510 => [\'RetouchAreas','RetouchAreasMasksSizeY'], 512 => [\'RetouchAreas','RetouchAreasMasksSizeY'] }, - 'retouchareamasktop' => { 510 => [\'RetouchAreas','RetouchAreasMasksTop'], 512 => [\'RetouchAreas','RetouchAreasMasksTop'] }, - 'retouchareamaskvalue' => { 510 => [\'RetouchAreas','RetouchAreasMasksMaskValue'], 512 => [\'RetouchAreas','RetouchAreasMasksMaskValue'] }, - 'retouchareamaskversion' => { 510 => [\'RetouchAreas','RetouchAreasMasksVersion'], 512 => [\'RetouchAreas','RetouchAreasMasksVersion'] }, - 'retouchareamaskwhat' => { 510 => [\'RetouchAreas','RetouchAreasMasksWhat'], 512 => [\'RetouchAreas','RetouchAreasMasksWhat'] }, - 'retouchareamaskwholeimagearea' => { 510 => [\'RetouchAreas','RetouchAreasMasksWholeImageArea'], 512 => [\'RetouchAreas','RetouchAreasMasksWholeImageArea'] }, - 'retouchareamaskx' => { 510 => [\'RetouchAreas','RetouchAreasMasksX'], 512 => [\'RetouchAreas','RetouchAreasMasksX'] }, - 'retouchareamasky' => { 510 => [\'RetouchAreas','RetouchAreasMasksY'], 512 => [\'RetouchAreas','RetouchAreasMasksY'] }, - 'retouchareamaskzerox' => { 510 => [\'RetouchAreas','RetouchAreasMasksZeroX'], 512 => [\'RetouchAreas','RetouchAreasMasksZeroX'] }, - 'retouchareamaskzeroy' => { 510 => [\'RetouchAreas','RetouchAreasMasksZeroY'], 512 => [\'RetouchAreas','RetouchAreasMasksZeroY'] }, - 'retouchareamethod' => { 510 => [\'RetouchAreas','RetouchAreasMethod'], 512 => [\'RetouchAreas','RetouchAreasMethod'] }, - 'retouchareaoffsety' => { 510 => [\'RetouchAreas','RetouchAreasOffsetY'], 512 => [\'RetouchAreas','RetouchAreasOffsetY'] }, - 'retouchareaopacity' => { 510 => [\'RetouchAreas','RetouchAreasOpacity'], 512 => [\'RetouchAreas','RetouchAreasOpacity'] }, - 'retouchareas' => { 510 => 'RetouchAreas', 512 => 'RetouchAreas' }, - 'retouchareaseed' => { 510 => [\'RetouchAreas','RetouchAreasSeed'], 512 => [\'RetouchAreas','RetouchAreasSeed'] }, - 'retouchareasourcestate' => { 510 => [\'RetouchAreas','RetouchAreasSourceState'], 512 => [\'RetouchAreas','RetouchAreasSourceState'] }, - 'retouchareasourcex' => { 510 => [\'RetouchAreas','RetouchAreasSourceX'], 512 => [\'RetouchAreas','RetouchAreasSourceX'] }, - 'retouchareaspottype' => { 510 => [\'RetouchAreas','RetouchAreasSpotType'], 512 => [\'RetouchAreas','RetouchAreasSpotType'] }, + 'restrictions' => { 533 => 'restrictions' }, + 'retouchareafeather' => { 511 => [\'RetouchAreas','RetouchAreasFeather'], 513 => [\'RetouchAreas','RetouchAreasFeather'] }, + 'retouchareamaskalpha' => { 511 => [\'RetouchAreas','RetouchAreasMasksAlpha'], 513 => [\'RetouchAreas','RetouchAreasMasksAlpha'] }, + 'retouchareamaskangle' => { 511 => [\'RetouchAreas','RetouchAreasMasksAngle'], 513 => [\'RetouchAreas','RetouchAreasMasksAngle'] }, + 'retouchareamaskbottom' => { 511 => [\'RetouchAreas','RetouchAreasMasksBottom'], 513 => [\'RetouchAreas','RetouchAreasMasksBottom'] }, + 'retouchareamaskcentervalue' => { 511 => [\'RetouchAreas','RetouchAreasMasksCenterValue'], 513 => [\'RetouchAreas','RetouchAreasMasksCenterValue'] }, + 'retouchareamaskcenterweight' => { 511 => [\'RetouchAreas','RetouchAreasMasksCenterWeight'], 513 => [\'RetouchAreas','RetouchAreasMasksCenterWeight'] }, + 'retouchareamaskdabs' => { 511 => [\'RetouchAreas','RetouchAreasMasksDabs'], 513 => [\'RetouchAreas','RetouchAreasMasksDabs'] }, + 'retouchareamaskfeather' => { 511 => [\'RetouchAreas','RetouchAreasMasksFeather'], 513 => [\'RetouchAreas','RetouchAreasMasksFeather'] }, + 'retouchareamaskflipped' => { 511 => [\'RetouchAreas','RetouchAreasMasksFlipped'], 513 => [\'RetouchAreas','RetouchAreasMasksFlipped'] }, + 'retouchareamaskflow' => { 511 => [\'RetouchAreas','RetouchAreasMasksFlow'], 513 => [\'RetouchAreas','RetouchAreasMasksFlow'] }, + 'retouchareamaskfullx' => { 511 => [\'RetouchAreas','RetouchAreasMasksFullX'], 513 => [\'RetouchAreas','RetouchAreasMasksFullX'] }, + 'retouchareamaskfully' => { 511 => [\'RetouchAreas','RetouchAreasMasksFullY'], 513 => [\'RetouchAreas','RetouchAreasMasksFullY'] }, + 'retouchareamaskinputdigest' => { 511 => [\'RetouchAreas','RetouchAreasMasksInputDigest'], 513 => [\'RetouchAreas','RetouchAreasMasksInputDigest'] }, + 'retouchareamaskleft' => { 511 => [\'RetouchAreas','RetouchAreasMasksLeft'], 513 => [\'RetouchAreas','RetouchAreasMasksLeft'] }, + 'retouchareamaskmaskactive' => { 511 => [\'RetouchAreas','RetouchAreasMasksMaskActive'], 513 => [\'RetouchAreas','RetouchAreasMasksMaskActive'] }, + 'retouchareamaskmaskblendmode' => { 511 => [\'RetouchAreas','RetouchAreasMasksMaskBlendMode'], 513 => [\'RetouchAreas','RetouchAreasMasksMaskBlendMode'] }, + 'retouchareamaskmaskdigest' => { 511 => [\'RetouchAreas','RetouchAreasMasksMaskDigest'], 513 => [\'RetouchAreas','RetouchAreasMasksMaskDigest'] }, + 'retouchareamaskmaskinverted' => { 511 => [\'RetouchAreas','RetouchAreasMasksMaskInverted'], 513 => [\'RetouchAreas','RetouchAreasMasksMaskInverted'] }, + 'retouchareamaskmaskname' => { 511 => [\'RetouchAreas','RetouchAreasMasksMaskName'], 513 => [\'RetouchAreas','RetouchAreasMasksMaskName'] }, + 'retouchareamaskmasks' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasks'], 513 => [\'RetouchAreas','RetouchAreasMasksMasks'] }, + 'retouchareamaskmasksalpha' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksAlpha'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksAlpha'] }, + 'retouchareamaskmasksangle' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksAngle'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksAngle'] }, + 'retouchareamaskmasksbottom' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksBottom'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksBottom'] }, + 'retouchareamaskmaskscentervalue' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksCenterValue'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksCenterValue'] }, + 'retouchareamaskmaskscenterweight' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksCenterWeight'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksCenterWeight'] }, + 'retouchareamaskmasksdabs' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksDabs'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksDabs'] }, + 'retouchareamaskmasksfeather' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksFeather'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksFeather'] }, + 'retouchareamaskmasksflipped' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksFlipped'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksFlipped'] }, + 'retouchareamaskmasksflow' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksFlow'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksFlow'] }, + 'retouchareamaskmasksfullx' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksFullX'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksFullX'] }, + 'retouchareamaskmasksfully' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksFullY'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksFullY'] }, + 'retouchareamaskmasksinputdigest' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksInputDigest'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksInputDigest'] }, + 'retouchareamaskmasksleft' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksLeft'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksLeft'] }, + 'retouchareamaskmasksmaskactive' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksMaskActive'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksMaskActive'] }, + 'retouchareamaskmasksmaskblendmode' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksMaskBlendMode'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksMaskBlendMode'] }, + 'retouchareamaskmasksmaskdigest' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksMaskDigest'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksMaskDigest'] }, + 'retouchareamaskmasksmaskinverted' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksMaskInverted'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksMaskInverted'] }, + 'retouchareamaskmasksmaskname' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksMaskName'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksMaskName'] }, + 'retouchareamaskmasksmasksubtype' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksMaskSubType'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksMaskSubType'] }, + 'retouchareamaskmasksmasksyncid' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksMaskSyncID'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksMaskSyncID'] }, + 'retouchareamaskmasksmaskversion' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksMaskVersion'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksMaskVersion'] }, + 'retouchareamaskmasksmidpoint' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksMidpoint'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksMidpoint'] }, + 'retouchareamaskmasksorigin' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksOrigin'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksOrigin'] }, + 'retouchareamaskmasksperimetervalue' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksPerimeterValue'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksPerimeterValue'] }, + 'retouchareamaskmasksradius' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksRadius'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksRadius'] }, + 'retouchareamaskmasksreferencepoint' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksReferencePoint'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksReferencePoint'] }, + 'retouchareamaskmasksright' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksRight'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksRight'] }, + 'retouchareamaskmasksroundness' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksRoundness'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksRoundness'] }, + 'retouchareamaskmaskssizex' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksSizeX'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksSizeX'] }, + 'retouchareamaskmaskssizey' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksSizeY'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksSizeY'] }, + 'retouchareamaskmaskstop' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksTop'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksTop'] }, + 'retouchareamaskmasksubtype' => { 511 => [\'RetouchAreas','RetouchAreasMasksMaskSubType'], 513 => [\'RetouchAreas','RetouchAreasMasksMaskSubType'] }, + 'retouchareamaskmasksvalue' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksMaskValue'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksMaskValue'] }, + 'retouchareamaskmasksversion' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksVersion'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksVersion'] }, + 'retouchareamaskmaskswhat' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksWhat'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksWhat'] }, + 'retouchareamaskmaskswholeimagearea' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksWholeImageArea'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksWholeImageArea'] }, + 'retouchareamaskmasksx' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksX'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksX'] }, + 'retouchareamaskmasksy' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksY'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksY'] }, + 'retouchareamaskmasksyncid' => { 511 => [\'RetouchAreas','RetouchAreasMasksMaskSyncID'], 513 => [\'RetouchAreas','RetouchAreasMasksMaskSyncID'] }, + 'retouchareamaskmaskszerox' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksZeroX'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksZeroX'] }, + 'retouchareamaskmaskszeroy' => { 511 => [\'RetouchAreas','RetouchAreasMasksMasksZeroY'], 513 => [\'RetouchAreas','RetouchAreasMasksMasksZeroY'] }, + 'retouchareamaskmaskversion' => { 511 => [\'RetouchAreas','RetouchAreasMasksMaskVersion'], 513 => [\'RetouchAreas','RetouchAreasMasksMaskVersion'] }, + 'retouchareamaskmidpoint' => { 511 => [\'RetouchAreas','RetouchAreasMasksMidpoint'], 513 => [\'RetouchAreas','RetouchAreasMasksMidpoint'] }, + 'retouchareamaskorigin' => { 511 => [\'RetouchAreas','RetouchAreasMasksOrigin'], 513 => [\'RetouchAreas','RetouchAreasMasksOrigin'] }, + 'retouchareamaskperimetervalue' => { 511 => [\'RetouchAreas','RetouchAreasMasksPerimeterValue'], 513 => [\'RetouchAreas','RetouchAreasMasksPerimeterValue'] }, + 'retouchareamaskradius' => { 511 => [\'RetouchAreas','RetouchAreasMasksRadius'], 513 => [\'RetouchAreas','RetouchAreasMasksRadius'] }, + 'retouchareamaskrange' => { 511 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMask'], 513 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMask'] }, + 'retouchareamaskrangeareamodels' => { 511 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModels'], 513 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModels'] }, + 'retouchareamaskrangeareamodelscolorsampleinfo' => { 511 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 513 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, + 'retouchareamaskrangeareamodelscomponents' => { 511 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModelsAreaComponents'], 513 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModelsAreaComponents'] }, + 'retouchareamaskrangecoloramount' => { 511 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskColorAmount'], 513 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskColorAmount'] }, + 'retouchareamaskrangedepthfeather' => { 511 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthFeather'], 513 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthFeather'] }, + 'retouchareamaskrangedepthmax' => { 511 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthMax'], 513 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthMax'] }, + 'retouchareamaskrangedepthmin' => { 511 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthMin'], 513 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthMin'] }, + 'retouchareamaskrangeinvert' => { 511 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskInvert'], 513 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskInvert'] }, + 'retouchareamaskrangelumfeather' => { 511 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumFeather'], 513 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumFeather'] }, + 'retouchareamaskrangeluminancedepthsampleinfo' => { 511 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLuminanceDepthSampleInfo'], 513 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLuminanceDepthSampleInfo'] }, + 'retouchareamaskrangelummax' => { 511 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumMax'], 513 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumMax'] }, + 'retouchareamaskrangelummin' => { 511 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumMin'], 513 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumMin'] }, + 'retouchareamaskrangelumrange' => { 511 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumRange'], 513 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumRange'] }, + 'retouchareamaskrangesampletype' => { 511 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskSampleType'], 513 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskSampleType'] }, + 'retouchareamaskrangetype' => { 511 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskType'], 513 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskType'] }, + 'retouchareamaskrangeversion' => { 511 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskVersion'], 513 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskVersion'] }, + 'retouchareamaskreferencepoint' => { 511 => [\'RetouchAreas','RetouchAreasMasksReferencePoint'], 513 => [\'RetouchAreas','RetouchAreasMasksReferencePoint'] }, + 'retouchareamaskright' => { 511 => [\'RetouchAreas','RetouchAreasMasksRight'], 513 => [\'RetouchAreas','RetouchAreasMasksRight'] }, + 'retouchareamaskroundness' => { 511 => [\'RetouchAreas','RetouchAreasMasksRoundness'], 513 => [\'RetouchAreas','RetouchAreasMasksRoundness'] }, + 'retouchareamasks' => { 511 => [\'RetouchAreas','RetouchAreasMasks'], 513 => [\'RetouchAreas','RetouchAreasMasks'] }, + 'retouchareamasksizex' => { 511 => [\'RetouchAreas','RetouchAreasMasksSizeX'], 513 => [\'RetouchAreas','RetouchAreasMasksSizeX'] }, + 'retouchareamasksizey' => { 511 => [\'RetouchAreas','RetouchAreasMasksSizeY'], 513 => [\'RetouchAreas','RetouchAreasMasksSizeY'] }, + 'retouchareamasktop' => { 511 => [\'RetouchAreas','RetouchAreasMasksTop'], 513 => [\'RetouchAreas','RetouchAreasMasksTop'] }, + 'retouchareamaskvalue' => { 511 => [\'RetouchAreas','RetouchAreasMasksMaskValue'], 513 => [\'RetouchAreas','RetouchAreasMasksMaskValue'] }, + 'retouchareamaskversion' => { 511 => [\'RetouchAreas','RetouchAreasMasksVersion'], 513 => [\'RetouchAreas','RetouchAreasMasksVersion'] }, + 'retouchareamaskwhat' => { 511 => [\'RetouchAreas','RetouchAreasMasksWhat'], 513 => [\'RetouchAreas','RetouchAreasMasksWhat'] }, + 'retouchareamaskwholeimagearea' => { 511 => [\'RetouchAreas','RetouchAreasMasksWholeImageArea'], 513 => [\'RetouchAreas','RetouchAreasMasksWholeImageArea'] }, + 'retouchareamaskx' => { 511 => [\'RetouchAreas','RetouchAreasMasksX'], 513 => [\'RetouchAreas','RetouchAreasMasksX'] }, + 'retouchareamasky' => { 511 => [\'RetouchAreas','RetouchAreasMasksY'], 513 => [\'RetouchAreas','RetouchAreasMasksY'] }, + 'retouchareamaskzerox' => { 511 => [\'RetouchAreas','RetouchAreasMasksZeroX'], 513 => [\'RetouchAreas','RetouchAreasMasksZeroX'] }, + 'retouchareamaskzeroy' => { 511 => [\'RetouchAreas','RetouchAreasMasksZeroY'], 513 => [\'RetouchAreas','RetouchAreasMasksZeroY'] }, + 'retouchareamethod' => { 511 => [\'RetouchAreas','RetouchAreasMethod'], 513 => [\'RetouchAreas','RetouchAreasMethod'] }, + 'retouchareaoffsety' => { 511 => [\'RetouchAreas','RetouchAreasOffsetY'], 513 => [\'RetouchAreas','RetouchAreasOffsetY'] }, + 'retouchareaopacity' => { 511 => [\'RetouchAreas','RetouchAreasOpacity'], 513 => [\'RetouchAreas','RetouchAreasOpacity'] }, + 'retouchareas' => { 511 => 'RetouchAreas', 513 => 'RetouchAreas' }, + 'retouchareaseed' => { 511 => [\'RetouchAreas','RetouchAreasSeed'], 513 => [\'RetouchAreas','RetouchAreasSeed'] }, + 'retouchareasourcestate' => { 511 => [\'RetouchAreas','RetouchAreasSourceState'], 513 => [\'RetouchAreas','RetouchAreasSourceState'] }, + 'retouchareasourcex' => { 511 => [\'RetouchAreas','RetouchAreasSourceX'], 513 => [\'RetouchAreas','RetouchAreasSourceX'] }, + 'retouchareaspottype' => { 511 => [\'RetouchAreas','RetouchAreasSpotType'], 513 => [\'RetouchAreas','RetouchAreasSpotType'] }, 'retouchhistory' => { 239 => 0x9e }, - 'retouchinfo' => { 510 => 'RetouchInfo', 512 => 'RetouchInfo' }, - 'retouchnefprocessing' => { 260 => 0x5 }, + 'retouchinfo' => { 511 => 'RetouchInfo', 513 => 'RetouchInfo' }, + 'retouchnefprocessing' => { 261 => 0x5 }, 'retractlensonpoweroff' => { 87 => 0x814 }, - 'reuse' => { 333 => 'Reuse' }, - 'reuseallowed' => { 542 => 'ReuseAllowed' }, - 'reuseprohibited' => { 532 => 'reuseProhibited' }, - 'reverseexposurecompdial' => { 310 => '5.2' }, - 'reversefocusring' => { 319 => 0x163, 320 => 0x163, 321 => 0x17b }, - 'reverseindicators' => { 303 => '12.1', 304 => '6.1', 306 => '6.1', 307 => '6.1', 308 => '4.3', 309 => '5.2', 310 => '5.4', 312 => '33.5', 313 => '5.1', 316 => '6.1', 317 => '6.1', 318 => '6.2', 319 => 0xc1, 320 => 0xc1, 321 => 0xc1 }, - 'reverseshutterspeedaperture' => { 310 => '5.3' }, - 'revision' => { 514 => 'revision' }, + 'reuse' => { 334 => 'Reuse' }, + 'reuseallowed' => { 543 => 'ReuseAllowed' }, + 'reuseprohibited' => { 533 => 'reuseProhibited' }, + 'reverseexposurecompdial' => { 311 => '5.2' }, + 'reversefocusring' => { 320 => 0x163, 321 => 0x163, 322 => 0x17b }, + 'reverseindicators' => { 304 => '12.1', 305 => '6.1', 307 => '6.1', 308 => '6.1', 309 => '4.3', 310 => '5.2', 311 => '5.4', 313 => '33.5', 314 => '5.1', 317 => '6.1', 318 => '6.1', 319 => '6.2', 320 => 0xc1, 321 => 0xc1, 322 => 0xc1 }, + 'reverseshutterspeedaperture' => { 311 => '5.3' }, + 'revision' => { 515 => 'revision' }, 'rflensmffocusringsensitivity' => { 87 => 0x714 }, 'rflenstype' => { 59 => 0x3d }, 'rgbcurvelimits' => { 111 => 0x238 }, 'rgbcurvepoints' => { 110 => 0x7, 111 => 0x20e }, 'rgbtables' => { 122 => 0xcd3b }, - 'richtextcomment' => { 519 => 'RichTextComment' }, - 'ricohdate' => { 413 => 0x6 }, - 'ricohimageheight' => { 413 => 0x2 }, - 'ricohimagewidth' => { 413 => 0x0 }, - 'rightalbedo' => { 501 => 'RightAlbedo' }, + 'richtextcomment' => { 520 => 'RichTextComment' }, + 'ricohdate' => { 414 => 0x6 }, + 'ricohimageheight' => { 414 => 0x2 }, + 'ricohimagewidth' => { 414 => 0x0 }, + 'rightalbedo' => { 502 => 'RightAlbedo' }, 'rightascension' => { 168 => 'RightAscension' }, - 'rights' => { 513 => 'rights' }, - 'rightsagent' => { 532 => 'rightsAgent' }, - 'rightsowner' => { 532 => 'rightsOwner' }, - 'roll' => { 118 => 0x8, 407 => ['roll',"\xa9frl"] }, - 'rollangle' => { 130 => 0x144d, 252 => 0x0, 323 => 0x903, 337 => 'RollAngle', 347 => 0x90, 381 => 0x1, 419 => 0x2 }, + 'rights' => { 514 => 'rights' }, + 'rightsagent' => { 533 => 'rightsAgent' }, + 'rightsowner' => { 533 => 'rightsOwner' }, + 'roll' => { 118 => 0x8, 408 => ['roll',"\xa9frl"] }, + 'rollangle' => { 130 => 0x144d, 253 => 0x0, 324 => 0x903, 338 => 'RollAngle', 348 => 0x90, 382 => 0x1, 420 => 0x2 }, 'romoperationmode' => { 100 => 0x80d }, - 'rotation' => { 31 => 0x17, 32 => 0x18, 99 => 0x3, 106 => 0x10002, 111 => 0x26e, 117 => 'QuickTime-Rotation', 126 => 0x4, 168 => 'Rotation', 185 => [0x65,0x50], 186 => 0x46, 187 => 0x5a, 190 => 0x10, 261 => 0x1a, 276 => 0x3693, 282 => '590.1', 296 => 0x76a43207, 347 => 0x30, 363 => '17.2', 393 => 0xd8, 400 => 'irot', 434 => 0x3f, 435 => 0x3f, 445 => 0x10 }, - 'routedto' => { 518 => 'RoutedTo' }, - 'routing' => { 398 => 'Routing' }, - 'routingdestinations' => { 500 => 'RoutingDestinations' }, - 'routingexclusions' => { 500 => 'RoutingExclusions' }, - 'routingnotes' => { 518 => 'RoutingNotes' }, + 'rotation' => { 31 => 0x17, 32 => 0x18, 99 => 0x3, 106 => 0x10002, 111 => 0x26e, 117 => 'QuickTime-Rotation', 126 => 0x4, 168 => 'Rotation', 185 => [0x65,0x50], 186 => 0x46, 187 => 0x5a, 190 => 0x10, 262 => 0x1a, 277 => 0x3693, 283 => '590.1', 297 => 0x76a43207, 348 => 0x30, 364 => '17.2', 394 => 0xd8, 401 => 'irot', 435 => 0x3f, 436 => 0x3f, 446 => 0x10 }, + 'routedto' => { 519 => 'RoutedTo' }, + 'routing' => { 399 => 'Routing' }, + 'routingdestinations' => { 501 => 'RoutingDestinations' }, + 'routingexclusions' => { 501 => 'RoutingExclusions' }, + 'routingnotes' => { 519 => 'RoutingNotes' }, 'rowsperstrip' => { 122 => 0x116 }, - 'rpp' => { 505 => 'rpp' }, + 'rpp' => { 506 => 'rpp' }, 'rtkflag' => { 119 => 'RtkFlag' }, 'rtkstdhgt' => { 119 => 'RtkStdHgt' }, 'rtkstdlat' => { 119 => 'RtkStdLat' }, @@ -6275,35 +6284,35 @@ my %tagLookup = ( 'safetyshiftinavortv' => { 85 => 0x10, 86 => 0x10, 88 => 0xf, 89 => 0x10, 92 => 0x10 }, 'sameexposurefornewaperture' => { 87 => 0x112 }, 'samplebits' => { 158 => 'SampleBits' }, - 'samplepagerange' => { 529 => 'samplePageRange' }, + 'samplepagerange' => { 530 => 'samplePageRange' }, 'samplerate' => { 158 => 'SampleRate' }, - 'samplesperpixel' => { 122 => 0x115, 352 => 0x8, 535 => 'SamplesPerPixel' }, + 'samplesperpixel' => { 122 => 0x115, 353 => 0x8, 536 => 'SamplesPerPixel' }, 'samplestructure' => { 136 => 0x5a }, - 'samsungmodelid' => { 421 => 0x3 }, - 'sanyoquality' => { 423 => 0x201 }, - 'sanyothumbnail' => { 423 => 0x100 }, - 'saturation' => { 10 => 0x6e, 12 => 0x76, 36 => 0xe, 53 => 0x1, 65 => 0x7, 115 => 0xd, 116 => [0x3013,0x1f], 122 => [0xa409,0xfe55], 130 => 0x1003, 159 => 'Saturation', 184 => 0x1f, 185 => 0x32, 186 => 0x28, 187 => 0x1a, 192 => 0x1, 239 => 0xaa, 254 => 0x35, 255 => 0x3b, 256 => 0x43, 347 => 0x40, 349 => 0x300d, 382 => 0x1f, 389 => 0xd, 408 => 0x27, 410 => 0x58, 413 => 0x28, 414 => 0x1013, 424 => 0x10, 434 => 0x1e, 435 => 0x1b, 448 => 0x2005, 510 => 'Saturation', 512 => 'Saturation', 516 => 'Saturation' }, - 'saturationadj' => { 106 => 0x20901, 111 => 0x116, 239 => 0x94, 295 => 0x1, 299 => 0x2e, 485 => 0x8016 }, - 'saturationadjustmentaqua' => { 510 => 'SaturationAdjustmentAqua', 512 => 'SaturationAdjustmentAqua' }, - 'saturationadjustmentblue' => { 510 => 'SaturationAdjustmentBlue', 512 => 'SaturationAdjustmentBlue' }, - 'saturationadjustmentgreen' => { 510 => 'SaturationAdjustmentGreen', 512 => 'SaturationAdjustmentGreen' }, - 'saturationadjustmentmagenta' => { 510 => 'SaturationAdjustmentMagenta', 512 => 'SaturationAdjustmentMagenta' }, - 'saturationadjustmentorange' => { 510 => 'SaturationAdjustmentOrange', 512 => 'SaturationAdjustmentOrange' }, - 'saturationadjustmentpurple' => { 510 => 'SaturationAdjustmentPurple', 512 => 'SaturationAdjustmentPurple' }, - 'saturationadjustmentred' => { 510 => 'SaturationAdjustmentRed', 512 => 'SaturationAdjustmentRed' }, - 'saturationadjustmentyellow' => { 510 => 'SaturationAdjustmentYellow', 512 => 'SaturationAdjustmentYellow' }, + 'samsungmodelid' => { 422 => 0x3 }, + 'sanyoquality' => { 424 => 0x201 }, + 'sanyothumbnail' => { 424 => 0x100 }, + 'saturation' => { 10 => 0x6e, 12 => 0x76, 36 => 0xe, 53 => 0x1, 65 => 0x7, 115 => 0xd, 116 => [0x3013,0x1f], 122 => [0xa409,0xfe55], 130 => 0x1003, 159 => 'Saturation', 184 => 0x1f, 185 => 0x32, 186 => 0x28, 187 => 0x1a, 192 => 0x1, 239 => 0xaa, 255 => 0x35, 256 => 0x3b, 257 => 0x43, 348 => 0x40, 350 => 0x300d, 383 => 0x1f, 390 => 0xd, 409 => 0x27, 411 => 0x58, 414 => 0x28, 415 => 0x1013, 425 => 0x10, 435 => 0x1e, 436 => 0x1b, 449 => 0x2005, 511 => 'Saturation', 513 => 'Saturation', 517 => 'Saturation' }, + 'saturationadj' => { 106 => 0x20901, 111 => 0x116, 239 => 0x94, 296 => 0x1, 300 => 0x2e, 486 => 0x8016 }, + 'saturationadjustmentaqua' => { 511 => 'SaturationAdjustmentAqua', 513 => 'SaturationAdjustmentAqua' }, + 'saturationadjustmentblue' => { 511 => 'SaturationAdjustmentBlue', 513 => 'SaturationAdjustmentBlue' }, + 'saturationadjustmentgreen' => { 511 => 'SaturationAdjustmentGreen', 513 => 'SaturationAdjustmentGreen' }, + 'saturationadjustmentmagenta' => { 511 => 'SaturationAdjustmentMagenta', 513 => 'SaturationAdjustmentMagenta' }, + 'saturationadjustmentorange' => { 511 => 'SaturationAdjustmentOrange', 513 => 'SaturationAdjustmentOrange' }, + 'saturationadjustmentpurple' => { 511 => 'SaturationAdjustmentPurple', 513 => 'SaturationAdjustmentPurple' }, + 'saturationadjustmentred' => { 511 => 'SaturationAdjustmentRed', 513 => 'SaturationAdjustmentRed' }, + 'saturationadjustmentyellow' => { 511 => 'SaturationAdjustmentYellow', 513 => 'SaturationAdjustmentYellow' }, 'saturationauto' => { 73 => 0x98 }, 'saturationfaithful' => { 19 => 0xfe, 72 => 0x68, 73 => 0x68 }, 'saturationlandscape' => { 19 => 0xfc, 72 => 0x38, 73 => 0x38 }, 'saturationmonochrome' => { 72 => 0x80, 73 => 0x80 }, 'saturationneutral' => { 19 => 0xfd, 72 => 0x50, 73 => 0x50 }, 'saturationportrait' => { 19 => 0xfb, 72 => 0x20, 73 => 0x20 }, - 'saturationsetting' => { 331 => 0x1010, 436 => 0x11, 453 => 0x9 }, + 'saturationsetting' => { 332 => 0x1010, 437 => 0x11, 454 => 0x9 }, 'saturationstandard' => { 19 => 0xfa, 72 => 0x8, 73 => 0x8 }, 'saturationuserdef1' => { 19 => 0x100, 72 => 0x98, 73 => 0xb0 }, 'saturationuserdef2' => { 19 => 0x101, 72 => 0xb0, 73 => 0xc8 }, 'saturationuserdef3' => { 19 => 0x102, 72 => 0xc8, 73 => 0xe0 }, - 'saveid' => { 540 => 'SaveID' }, + 'saveid' => { 541 => 'SaveID' }, 'sbaanalysiscomplete' => { 141 => 0xc35 }, 'sbablack' => { 141 => 0xc25 }, 'sbagmoffset' => { 141 => 0xc4a }, @@ -6315,199 +6324,199 @@ my %tagLookup = ( 'sbalowgray' => { 141 => 0xc47 }, 'sbaneutralbal' => { 141 => 0xc32 }, 'sbawhite' => { 141 => 0xc27 }, - 'scaletype' => { 539 => 'scaleType' }, - 'scalingfactorheight' => { 337 => 'ScalingFactorHeight' }, - 'scanimageenhancer' => { 262 => 0x60 }, + 'scaletype' => { 540 => 'scaleType' }, + 'scalingfactorheight' => { 338 => 'ScalingFactorHeight' }, + 'scanimageenhancer' => { 263 => 0x60 }, 'scanningdirection' => { 136 => 0x64 }, - 'scene' => { 407 => 'scen', 523 => 'Scene', 539 => 'scene' }, - 'scenearea' => { 326 => 0x211, 328 => 0x1031 }, + 'scene' => { 408 => 'scen', 524 => 'Scene', 540 => 'scene' }, + 'scenearea' => { 327 => 0x211, 329 => 0x1031 }, 'sceneassist' => { 239 => 0x9c }, - 'scenecapturetype' => { 122 => 0xa406, 516 => 'SceneCaptureType' }, - 'scenedetect' => { 326 => 0x210, 328 => 0x1030 }, - 'scenedetectdata' => { 326 => 0x212, 328 => 0x1033 }, + 'scenecapturetype' => { 122 => 0xa406, 517 => 'SceneCaptureType' }, + 'scenedetect' => { 327 => 0x210, 329 => 0x1030 }, + 'scenedetectdata' => { 327 => 0x212, 329 => 0x1033 }, 'sceneflags' => { 1 => 0x25 }, - 'scenemode' => { 145 => 0xfa02, 189 => 0x100, 239 => 0x8f, 323 => 0x509, 328 => 0x403, 347 => 0x8001, 356 => 0xf, 448 => 0xb023 }, + 'scenemode' => { 145 => 0xfa02, 189 => 0x100, 239 => 0x8f, 324 => 0x509, 329 => 0x403, 348 => 0x8001, 357 => 0xf, 449 => 0xb023 }, 'scenemodeused' => { 147 => [0x6002,0xf002] }, 'scenerecognition' => { 130 => 0x1425 }, - 'scenereferred' => { 520 => 'scene_referred' }, - 'sceneselect' => { 423 => 0x21f }, - 'scenetype' => { 122 => 0xa301, 516 => 'SceneType' }, - 'screentips' => { 303 => '12.7', 304 => '5.3', 312 => '13.1', 313 => '4.4', 316 => '5.4', 318 => '5.1' }, + 'scenereferred' => { 521 => 'scene_referred' }, + 'sceneselect' => { 424 => 0x21f }, + 'scenetype' => { 122 => 0xa301, 517 => 'SceneType' }, + 'screentips' => { 304 => '12.7', 305 => '5.3', 313 => '13.1', 314 => '4.4', 317 => '5.4', 319 => '5.1' }, 'scriptversion' => { 141 => 0x1770 }, - 'sdrblend' => { 510 => 'SDRBlend', 512 => 'SDRBlend' }, - 'sdrbrightness' => { 510 => 'SDRBrightness', 512 => 'SDRBrightness' }, - 'sdrcontrast' => { 510 => 'SDRContrast', 512 => 'SDRContrast' }, - 'sdrhighlights' => { 510 => 'SDRHighlights', 512 => 'SDRHighlights' }, - 'sdrshadows' => { 510 => 'SDRShadows', 512 => 'SDRShadows' }, - 'sdrwhites' => { 510 => 'SDRWhites', 512 => 'SDRWhites' }, - 'season' => { 524 => 'Season', 528 => 'season' }, - 'seasonidentifier' => { 524 => [\'Season','SeasonIdentifier'] }, - 'seasonname' => { 524 => [\'Season','SeasonName'] }, - 'seasonnumber' => { 524 => [\'Season','SeasonNumber'] }, - 'secondaryftp' => { 500 => 'SecondaryFTP' }, - 'secondaryslotfunction' => { 244 => 0x240, 245 => 0x22c, 246 => 0x240, 247 => 0x240, 265 => 0x13c, 276 => 0x1d0 }, - 'section' => { 529 => 'section' }, + 'sdrblend' => { 511 => 'SDRBlend', 513 => 'SDRBlend' }, + 'sdrbrightness' => { 511 => 'SDRBrightness', 513 => 'SDRBrightness' }, + 'sdrcontrast' => { 511 => 'SDRContrast', 513 => 'SDRContrast' }, + 'sdrhighlights' => { 511 => 'SDRHighlights', 513 => 'SDRHighlights' }, + 'sdrshadows' => { 511 => 'SDRShadows', 513 => 'SDRShadows' }, + 'sdrwhites' => { 511 => 'SDRWhites', 513 => 'SDRWhites' }, + 'season' => { 525 => 'Season', 529 => 'season' }, + 'seasonidentifier' => { 525 => [\'Season','SeasonIdentifier'] }, + 'seasonname' => { 525 => [\'Season','SeasonName'] }, + 'seasonnumber' => { 525 => [\'Season','SeasonNumber'] }, + 'secondaryftp' => { 501 => 'SecondaryFTP' }, + 'secondaryslotfunction' => { 244 => 0x240, 245 => 0x240, 246 => 0x22c, 247 => 0x240, 248 => 0x240, 266 => 0x13c, 277 => 0x1d0 }, + 'section' => { 530 => 'section' }, 'securityclassification' => { 122 => 0x9212 }, 'selectableafpoint' => { 87 => 0x509 }, 'selectafareaselectionmode' => { 2 => 0xc }, 'selectafareaselectmode' => { 87 => 0x512 }, 'selfdata' => { 119 => 'SelfData' }, - 'selftimer' => { 36 => 0x2, 347 => 0x2e, 423 => 0x214, 457 => 0x1134, 458 => 0x1134, 459 => 0x1110, 460 => 0x118c, 461 => 0x1168, 462 => 0x1020, 463 => 0x218, 464 => 0x218, 465 => 0x210 }, + 'selftimer' => { 36 => 0x2, 348 => 0x2e, 424 => 0x214, 458 => 0x1134, 459 => 0x1134, 460 => 0x1110, 461 => 0x118c, 462 => 0x1168, 463 => 0x1020, 464 => 0x218, 465 => 0x218, 466 => 0x210 }, 'selftimer2' => { 79 => 0x1d }, - 'selftimerinterval' => { 313 => '19.2' }, + 'selftimerinterval' => { 314 => '19.2' }, 'selftimermode' => { 122 => 0x882b }, - 'selftimershotcount' => { 304 => '20.2', 306 => '20.3', 307 => '20.3', 308 => '18.2', 309 => '19.2', 310 => '19.2', 311 => '19.3', 313 => '19.3', 316 => '20.3', 317 => '20.3', 318 => '20.2', 319 => 0x2d, 320 => 0x2d, 321 => 0x2d }, - 'selftimershotinterval' => { 304 => '20.3', 306 => '20.2', 307 => '20.2', 311 => '19.2', 316 => '20.2', 317 => '20.2', 319 => 0x31, 320 => 0x31, 321 => 0x31 }, - 'selftimertime' => { 100 => 0x1806, 187 => 0x1f, 303 => '18.1', 304 => '20.1', 305 => '3.3', 306 => '20.1', 307 => '20.1', 308 => '18.1', 309 => '19.1', 310 => '19.1', 311 => '19.1', 312 => '7.2', 313 => '19.1', 314 => '3.3', 316 => '20.1', 317 => '20.1', 318 => '20.1', 319 => 0x2b, 320 => 0x2b, 321 => 0x2b }, - 'sellingagency' => { 529 => 'sellingAgency' }, + 'selftimershotcount' => { 305 => '20.2', 307 => '20.3', 308 => '20.3', 309 => '18.2', 310 => '19.2', 311 => '19.2', 312 => '19.3', 314 => '19.3', 317 => '20.3', 318 => '20.3', 319 => '20.2', 320 => 0x2d, 321 => 0x2d, 322 => 0x2d }, + 'selftimershotinterval' => { 305 => '20.3', 307 => '20.2', 308 => '20.2', 312 => '19.2', 317 => '20.2', 318 => '20.2', 320 => 0x31, 321 => 0x31, 322 => 0x31 }, + 'selftimertime' => { 100 => 0x1806, 187 => 0x1f, 304 => '18.1', 305 => '20.1', 306 => '3.3', 307 => '20.1', 308 => '20.1', 309 => '18.1', 310 => '19.1', 311 => '19.1', 312 => '19.1', 313 => '7.2', 314 => '19.1', 315 => '3.3', 317 => '20.1', 318 => '20.1', 319 => '20.1', 320 => 0x2b, 321 => 0x2b, 322 => 0x2b }, + 'sellingagency' => { 530 => 'sellingAgency' }, 'semanticstyle' => { 1 => 0x40 }, 'semanticstylepreset' => { 1 => 0x42 }, 'semanticstylerenderingver' => { 1 => 0x41 }, 'seminfo' => { 122 => 0x8546 }, - 'sensingmethod' => { 122 => 0xa217, 516 => 'SensingMethod' }, - 'sensitivityadjust' => { 382 => 0x40 }, - 'sensitivitysteps' => { 363 => ['14.3','17.4'], 365 => 0x1 }, - 'sensitivitytype' => { 122 => 0x8830, 517 => 'SensitivityType' }, + 'sensingmethod' => { 122 => 0xa217, 517 => 'SensingMethod' }, + 'sensitivityadjust' => { 383 => 0x40 }, + 'sensitivitysteps' => { 364 => ['14.3','17.4'], 366 => 0x1 }, + 'sensitivitytype' => { 122 => 0x8830, 518 => 'SensitivityType' }, 'sensor' => { 194 => 0x665e }, - 'sensorarea' => { 328 => 0x400 }, - 'sensorareas' => { 421 => 0xa010 }, - 'sensorbitdepth' => { 349 => 0x312d }, + 'sensorarea' => { 329 => 0x400 }, + 'sensorareas' => { 422 => 0xa010 }, + 'sensorbitdepth' => { 350 => 0x312d }, 'sensorbluelevel' => { 76 => 0x5 }, - 'sensorcalibration' => { 327 => 0x805 }, + 'sensorcalibration' => { 328 => 0x805 }, 'sensorcleaning' => { 93 => 0xd }, 'sensorfullheight' => { 140 => 0xf904 }, 'sensorfullwidth' => { 140 => 0xf903 }, - 'sensorheight' => { 140 => 0xf901, 145 => 0xfa21, 191 => 0x8, 349 => 0x312c, 391 => 0x109, 414 => 0x1602 }, + 'sensorheight' => { 140 => 0xf901, 145 => 0xfa21, 191 => 0x8, 350 => 0x312c, 392 => 0x109, 415 => 0x1602 }, 'sensorimageheight' => { 141 => 0x3ee }, 'sensorimagewidth' => { 141 => 0x3ed }, 'sensorleftborder' => { 141 => 0x3eb }, - 'sensorleftmargin' => { 391 => 0x10a }, + 'sensorleftmargin' => { 392 => 0x10a }, 'sensorpixelsize' => { 239 => 0x9a }, 'sensorredlevel' => { 76 => 0x4 }, 'sensorserialnumber' => { 141 => 0x9ce }, - 'sensorshield' => { 244 => 0x76b, 245 => 0x66d, 246 => 0x69d, 247 => 0x705 }, - 'sensorsize' => { 159 => 'SensorSize', 382 => 0x35 }, - 'sensortemperature' => { 326 => 0x1500, 328 => 0x1007, 387 => 0xc, 391 => 0x210, 424 => [0x39,0x55] }, - 'sensortemperature2' => { 387 => 0xe, 391 => 0x211 }, + 'sensorshield' => { 244 => 0x76b, 245 => 0x77b, 246 => 0x66d, 247 => 0x69d, 248 => 0x705 }, + 'sensorsize' => { 159 => 'SensorSize', 383 => 0x35 }, + 'sensortemperature' => { 327 => 0x1500, 329 => 0x1007, 388 => 0xc, 392 => 0x210, 425 => [0x39,0x55] }, + 'sensortemperature2' => { 388 => 0xe, 392 => 0x211 }, 'sensortopborder' => { 141 => 0x3ec }, - 'sensortopmargin' => { 391 => 0x10b }, - 'sensortype' => { 347 => 0xca }, - 'sensorwidth' => { 140 => 0xf900, 145 => 0xfa20, 191 => 0xa, 349 => 0x312b, 391 => 0x108, 414 => 0x1601 }, - 'sequence' => { 408 => 0x7, 409 => 0x35, 410 => 0x36 }, - 'sequencefilenumber' => { 458 => 0x4, 459 => 0x4, 460 => 0x4, 461 => 0x4, 471 => 0xc, 472 => 0xc, 473 => 0x1a }, - 'sequenceimagenumber' => { 458 => 0x0, 459 => 0x0, 460 => 0x0, 461 => 0x0, 471 => 0x8, 472 => 0x8, 473 => 0x12, 480 => 0x24 }, - 'sequencelength' => { 471 => 0x22, 472 => 0x1e, 473 => [0x16,0x1e] }, - 'sequencename' => { 528 => 'sequenceName' }, - 'sequencenumber' => { 79 => 0x9, 116 => 0x301c, 130 => 0x1101, 143 => 0x1d, 283 => 0x51c, 347 => 0x2b, 436 => [0x10c,0x30c], 448 => 0xb04a, 528 => 'sequenceNumber' }, - 'sequenceshotinterval' => { 423 => 0x224 }, - 'sequencetotalnumber' => { 528 => 'sequenceTotalNumber' }, - 'sequentialshot' => { 423 => 0x20e }, - 'serialnumber' => { 66 => 0xc, 100 => 0x180b, 122 => [0xa431,0xfde9], 140 => 0xfa04, 142 => 0xfa00, 144 => 0xc354, 145 => 0xfa19, 156 => 0x0, 159 => 'SerialNumber', 194 => 0x5501, 239 => [0xa0,0x1d], 324 => 0x101, 328 => [0x404,0x101a], 342 => 0x303, 344 => 0x305, 349 => 0x3103, 382 => 0x229, 391 => 0x102, 392 => 0x407, 407 => ['SNum','slno'], 408 => 0x15, 409 => 0x4b, 410 => 0x7e, 414 => 0x5, 421 => 0xa002, 424 => 0x2, 448 => 0x2031, 507 => 'SerialNumber', 517 => 'BodySerialNumber' }, + 'sensortopmargin' => { 392 => 0x10b }, + 'sensortype' => { 348 => 0xca }, + 'sensorwidth' => { 140 => 0xf900, 145 => 0xfa20, 191 => 0xa, 350 => 0x312b, 392 => 0x108, 415 => 0x1601 }, + 'sequence' => { 409 => 0x7, 410 => 0x35, 411 => 0x36 }, + 'sequencefilenumber' => { 459 => 0x4, 460 => 0x4, 461 => 0x4, 462 => 0x4, 472 => 0xc, 473 => 0xc, 474 => 0x1a }, + 'sequenceimagenumber' => { 459 => 0x0, 460 => 0x0, 461 => 0x0, 462 => 0x0, 472 => 0x8, 473 => 0x8, 474 => 0x12, 481 => 0x24 }, + 'sequencelength' => { 472 => 0x22, 473 => 0x1e, 474 => [0x16,0x1e] }, + 'sequencename' => { 529 => 'sequenceName' }, + 'sequencenumber' => { 79 => 0x9, 116 => 0x301c, 130 => 0x1101, 143 => 0x1d, 284 => 0x51c, 348 => 0x2b, 437 => [0x10c,0x30c], 449 => 0xb04a, 529 => 'sequenceNumber' }, + 'sequenceshotinterval' => { 424 => 0x224 }, + 'sequencetotalnumber' => { 529 => 'sequenceTotalNumber' }, + 'sequentialshot' => { 424 => 0x20e }, + 'serialnumber' => { 66 => 0xc, 100 => 0x180b, 122 => [0xa431,0xfde9], 140 => 0xfa04, 142 => 0xfa00, 144 => 0xc354, 145 => 0xfa19, 156 => 0x0, 159 => 'SerialNumber', 194 => 0x5501, 239 => [0xa0,0x1d], 325 => 0x101, 329 => [0x404,0x101a], 343 => 0x303, 345 => 0x305, 350 => 0x3103, 383 => 0x229, 392 => 0x102, 393 => 0x407, 408 => ['SNum','slno'], 409 => 0x15, 410 => 0x4b, 411 => 0x7e, 415 => 0x5, 422 => 0xa002, 425 => 0x2, 449 => 0x2031, 508 => 'SerialNumber', 518 => 'BodySerialNumber' }, 'serialnumberformat' => { 66 => 0x15, 100 => 0x183b }, - 'serialnumberhash' => { 407 => 'CAME' }, - 'series' => { 524 => 'Series' }, - 'seriesdatetime' => { 488 => 'SeriesDateTime' }, - 'seriesdescription' => { 488 => 'SeriesDescription' }, - 'seriesidentifier' => { 524 => [\'Series','SeriesIdentifier'] }, - 'seriesmodality' => { 488 => 'SeriesModality' }, - 'seriesname' => { 524 => [\'Series','SeriesName'] }, - 'seriesnumber' => { 488 => 'SeriesNumber', 529 => 'seriesNumber' }, - 'seriestitle' => { 529 => 'seriesTitle' }, + 'serialnumberhash' => { 408 => 'CAME' }, + 'series' => { 525 => 'Series' }, + 'seriesdatetime' => { 489 => 'SeriesDateTime' }, + 'seriesdescription' => { 489 => 'SeriesDescription' }, + 'seriesidentifier' => { 525 => [\'Series','SeriesIdentifier'] }, + 'seriesmodality' => { 489 => 'SeriesModality' }, + 'seriesname' => { 525 => [\'Series','SeriesName'] }, + 'seriesnumber' => { 489 => 'SeriesNumber', 530 => 'seriesNumber' }, + 'seriestitle' => { 530 => 'seriesTitle' }, 'serviceidentifier' => { 135 => 0x1e }, - 'servingsize' => { 531 => 'servingSize' }, + 'servingsize' => { 532 => 'servingSize' }, 'setbuttoncrosskeysfunc' => { 90 => 0x0, 91 => 0x0 }, 'setbuttonwhenshooting' => { 85 => 0x1, 87 => 0x704, 93 => 0xc }, - 'setclockfromlocationdata' => { 245 => 0x61d, 246 => 0x64d, 247 => 0x6b5 }, + 'setclockfromlocationdata' => { 246 => 0x61d, 247 => 0x64d, 248 => 0x6b5 }, 'setfunctionwhenshooting' => { 88 => 0x0, 89 => 0x1, 92 => 0x1 }, - 'setting' => { 528 => 'setting' }, - 'shadingcompensation' => { 323 => 0x50c, 347 => 0x8a }, - 'shadingcompensation2' => { 327 => 0x1012 }, - 'shadow' => { 424 => 0xe }, + 'setting' => { 529 => 'setting' }, + 'shadingcompensation' => { 324 => 0x50c, 348 => 0x8a }, + 'shadingcompensation2' => { 328 => 0x1012 }, + 'shadow' => { 425 => 0xe }, 'shadowadj' => { 106 => 0x2030b }, - 'shadowcorrection' => { 382 => 0x79 }, - 'shadowprotection' => { 295 => 0x0 }, - 'shadows' => { 122 => 0xfe52, 448 => 0x2032, 504 => 'Shadows', 510 => 'Shadows', 512 => 'Shadows' }, - 'shadows2012' => { 510 => 'Shadows2012', 512 => 'Shadows2012' }, - 'shadowsadj' => { 485 => 0x901a }, + 'shadowcorrection' => { 383 => 0x79 }, + 'shadowprotection' => { 296 => 0x0 }, + 'shadows' => { 122 => 0xfe52, 449 => 0x2032, 505 => 'Shadows', 511 => 'Shadows', 513 => 'Shadows' }, + 'shadows2012' => { 511 => 'Shadows2012', 513 => 'Shadows2012' }, + 'shadowsadj' => { 486 => 0x901a }, 'shadowscale' => { 122 => 0xc633 }, - 'shadowtint' => { 510 => 'ShadowTint', 512 => 'ShadowTint' }, + 'shadowtint' => { 511 => 'ShadowTint', 513 => 'ShadowTint' }, 'shadowtone' => { 130 => 0x1040 }, - 'shakereduction' => { 384 => 0x1, 385 => 0x1 }, + 'shakereduction' => { 385 => 0x1, 386 => 0x1 }, 'shareduserrating' => { 182 => 'WM/SharedUserRating' }, - 'sharpendetail' => { 510 => 'SharpenDetail', 512 => 'SharpenDetail' }, - 'sharpenedgemasking' => { 510 => 'SharpenEdgeMasking', 512 => 'SharpenEdgeMasking' }, - 'sharpening' => { 349 => 0x300b }, - 'sharpeningadj' => { 299 => 0x2b }, + 'sharpendetail' => { 511 => 'SharpenDetail', 513 => 'SharpenDetail' }, + 'sharpenedgemasking' => { 511 => 'SharpenEdgeMasking', 513 => 'SharpenEdgeMasking' }, + 'sharpening' => { 350 => 0x300b }, + 'sharpeningadj' => { 300 => 0x2b }, 'sharpeningkernel' => { 141 => 0x92f }, - 'sharpenradius' => { 510 => 'SharpenRadius', 512 => 'SharpenRadius' }, - 'sharpness' => { 8 => [0x42,0x48], 10 => 0x72, 12 => 0x74, 36 => 0xf, 65 => 0x6, 76 => 0x2, 115 => 0xb, 116 => [0x3011,0x21], 122 => [0xa40a,0xfe56], 130 => 0x1001, 143 => 0x6b, 152 => 0x37, 159 => 'Sharpness', 184 => 0x21, 185 => 0x30, 186 => 0x26, 187 => 0x18, 192 => 0x3, 239 => 0x6, 254 => 0x32, 255 => 0x33, 256 => 0x39, 328 => 0x100f, 347 => 0x41, 382 => 0x21, 389 => 0xb, 408 => 0x26, 410 => 0x56, 413 => 0x22, 414 => [0x1003,0x1014], 424 => 0x11, 434 => 0x1c, 435 => 0x19, 448 => 0x2006, 480 => 0x52, 510 => 'Sharpness', 512 => 'Sharpness', 516 => 'Sharpness' }, - 'sharpnessadj' => { 106 => 0x20310, 111 => 0x25a, 485 => 0x801a }, + 'sharpenradius' => { 511 => 'SharpenRadius', 513 => 'SharpenRadius' }, + 'sharpness' => { 8 => [0x42,0x48], 10 => 0x72, 12 => 0x74, 36 => 0xf, 65 => 0x6, 76 => 0x2, 115 => 0xb, 116 => [0x3011,0x21], 122 => [0xa40a,0xfe56], 130 => 0x1001, 143 => 0x6b, 152 => 0x37, 159 => 'Sharpness', 184 => 0x21, 185 => 0x30, 186 => 0x26, 187 => 0x18, 192 => 0x3, 239 => 0x6, 255 => 0x32, 256 => 0x33, 257 => 0x39, 329 => 0x100f, 348 => 0x41, 383 => 0x21, 390 => 0xb, 409 => 0x26, 411 => 0x56, 414 => 0x22, 415 => [0x1003,0x1014], 425 => 0x11, 435 => 0x1c, 436 => 0x19, 449 => 0x2006, 481 => 0x52, 511 => 'Sharpness', 513 => 'Sharpness', 517 => 'Sharpness' }, + 'sharpnessadj' => { 106 => 0x20310, 111 => 0x25a, 486 => 0x801a }, 'sharpnessadjon' => { 106 => '0x20310.0' }, 'sharpnessauto' => { 73 => 0x94 }, - 'sharpnessfactor' => { 328 => 0x102a }, + 'sharpnessfactor' => { 329 => 0x102a }, 'sharpnessfaithful' => { 19 => 0xf5, 72 => 0x64, 73 => 0x64 }, 'sharpnessfrequency' => { 8 => [0x41,0x47], 76 => 0x3 }, 'sharpnesslandscape' => { 19 => 0xf3, 72 => 0x34, 73 => 0x34 }, 'sharpnessmonochrome' => { 19 => 0xf6, 72 => 0x7c, 73 => 0x7c }, 'sharpnessneutral' => { 19 => 0xf4, 72 => 0x4c, 73 => 0x4c }, - 'sharpnessovershoot' => { 485 => 0x801b }, + 'sharpnessovershoot' => { 486 => 0x801b }, 'sharpnessportrait' => { 19 => 0xf2, 72 => 0x1c, 73 => 0x1c }, - 'sharpnessrange' => { 448 => 0x2035 }, - 'sharpnesssetting' => { 323 => 0x506, 331 => 0x1013, 436 => 0x12, 453 => 0xa }, + 'sharpnessrange' => { 449 => 0x2035 }, + 'sharpnesssetting' => { 324 => 0x506, 332 => 0x1013, 437 => 0x12, 454 => 0xa }, 'sharpnessstandard' => { 19 => 0xf1, 72 => 0x4, 73 => 0x4 }, 'sharpnessstrength' => { 106 => 0x20311 }, - 'sharpnessthreshold' => { 485 => 0x801d }, - 'sharpnessundershoot' => { 485 => 0x801c }, + 'sharpnessthreshold' => { 486 => 0x801d }, + 'sharpnessundershoot' => { 486 => 0x801c }, 'sharpnessuserdef1' => { 19 => 0xf7, 72 => 0x94, 73 => 0xac }, 'sharpnessuserdef2' => { 19 => 0xf8, 72 => 0xac, 73 => 0xc4 }, 'sharpnessuserdef3' => { 19 => 0xf9, 72 => 0xc4, 73 => 0xdc }, 'shiftcols' => { 141 => 0xc70 }, - 'shootid' => { 528 => 'shootID' }, + 'shootid' => { 529 => 'shootID' }, 'shootingdistance' => { 106 => 0x20701 }, - 'shootinginfodisplay' => { 303 => '13.2', 304 => '5.1', 312 => '10.2', 313 => '4.1', 316 => '5.1', 318 => '5.3' }, - 'shootinginfomonitorofftime' => { 303 => '26.2', 304 => '22.2', 306 => '22.2', 307 => '22.2', 311 => '21.2', 312 => '9.1', 313 => '21.2', 316 => '22.2', 317 => '22.2', 318 => '22.2', 319 => 0x37, 320 => 0x37, 321 => 0x37 }, - 'shootingmode' => { 159 => 'ShootingMode', 239 => 0x89, 347 => 0x1f }, - 'shootingmodesetting' => { 305 => '5.1' }, - 'shortdescription' => { 514 => 'shortdescription' }, + 'shootinginfodisplay' => { 304 => '13.2', 305 => '5.1', 313 => '10.2', 314 => '4.1', 317 => '5.1', 319 => '5.3' }, + 'shootinginfomonitorofftime' => { 304 => '26.2', 305 => '22.2', 307 => '22.2', 308 => '22.2', 312 => '21.2', 313 => '9.1', 314 => '21.2', 317 => '22.2', 318 => '22.2', 319 => '22.2', 320 => 0x37, 321 => 0x37, 322 => 0x37 }, + 'shootingmode' => { 159 => 'ShootingMode', 239 => 0x89, 348 => 0x1f }, + 'shootingmodesetting' => { 306 => '5.1' }, + 'shortdescription' => { 515 => 'shortdescription' }, 'shortdocumentid' => { 134 => 0xba }, - 'shortname' => { 510 => 'ShortName', 512 => 'ShortName' }, + 'shortname' => { 511 => 'ShortName', 513 => 'ShortName' }, 'shortownername' => { 19 => 0xac }, 'shortreleasetimelag' => { 87 => 0x80d }, - 'shorttitle' => { 399 => '@sti' }, - 'shotdate' => { 539 => 'shotDate' }, - 'shotday' => { 539 => 'shotDay' }, - 'shotlocation' => { 539 => 'shotLocation' }, - 'shotlogdata' => { 493 => 'shot_log_data' }, - 'shotname' => { 407 => 'shot', 539 => 'shotName' }, - 'shotnumber' => { 539 => 'shotNumber' }, - 'shotnumbersincepowerup' => { 452 => 0x44e, 471 => 0x1a, 472 => 0x16, 473 => 0xa }, - 'shotnumbersincepowerup2' => { 436 => 0x200 }, - 'shotsize' => { 539 => 'shotSize' }, - 'shotsperinterval' => { 228 => 0x180, 243 => 0xb4, 244 => 0xcc, 245 => 0xc0, 246 => 0xd0, 247 => 0xd0 }, - 'showmovement' => { 399 => 'shwm' }, - 'shownevent' => { 524 => 'EventExt' }, - 'showneventidentifier' => { 524 => [\'EventExt','EventExtIdentifier'] }, - 'showneventname' => { 524 => [\'EventExt','EventExtName'] }, - 'shutter' => { 467 => 0x20, 468 => 0x26, 469 => 0x26 }, + 'shorttitle' => { 400 => '@sti' }, + 'shotdate' => { 540 => 'shotDate' }, + 'shotday' => { 540 => 'shotDay' }, + 'shotlocation' => { 540 => 'shotLocation' }, + 'shotlogdata' => { 494 => 'shot_log_data' }, + 'shotname' => { 408 => 'shot', 540 => 'shotName' }, + 'shotnumber' => { 540 => 'shotNumber' }, + 'shotnumbersincepowerup' => { 453 => 0x44e, 472 => 0x1a, 473 => 0x16, 474 => 0xa }, + 'shotnumbersincepowerup2' => { 437 => 0x200 }, + 'shotsize' => { 540 => 'shotSize' }, + 'shotsperinterval' => { 228 => 0x180, 243 => 0xb4, 244 => 0xcc, 245 => 0xcc, 246 => 0xc0, 247 => 0xd0, 248 => 0xd0 }, + 'showmovement' => { 400 => 'shwm' }, + 'shownevent' => { 525 => 'EventExt' }, + 'showneventidentifier' => { 525 => [\'EventExt','EventExtIdentifier'] }, + 'showneventname' => { 525 => [\'EventExt','EventExtName'] }, + 'shutter' => { 468 => 0x20, 469 => 0x26, 470 => 0x26 }, 'shutter-aelock' => { 85 => 0x4, 87 => 0x701, 88 => 0x3, 89 => 0x4, 90 => 0x3, 91 => 0x3, 92 => 0x4, 93 => 0x2 }, 'shutteraelbutton' => { 86 => 0x4 }, 'shutterbuttonafonbutton' => { 87 => 0x701 }, - 'shuttercount' => { 11 => 0x176, 30 => [0xa95,0x293], 33 => 0xaf1, 59 => 0x1, 239 => 0xa7, 267 => [0x6a,0x157,0x24d], 268 => 0x286, 269 => 0x279, 270 => 0x284, 271 => 0x242, 272 => 0x280, 273 => 0x276, 274 => [0x27d,0x27f], 275 => 0x246, 277 => 0x2d6, 278 => 0x321, 279 => 0xbd8, 280 => 0x287, 281 => 0x320, 282 => 0x24a, 283 => 0x5fb, 284 => 0x2d5, 382 => 0x5d, 445 => 0x846, 451 => [0x125,0x14a], 467 => 0x32, 468 => 0x3a, 469 => 0x3a, 470 => 0xa }, - 'shuttercount2' => { 467 => 0x4c, 468 => [0x50,0x52,0x58], 469 => 0x50 }, - 'shuttercount3' => { 467 => [0x1a0,0x1aa,0x1bd], 468 => [0x19f,0x1cb,0x1cd] }, + 'shuttercount' => { 11 => 0x176, 30 => [0xa95,0x293], 33 => 0xaf1, 59 => 0x1, 239 => 0xa7, 268 => [0x6a,0x157,0x24d], 269 => 0x286, 270 => 0x279, 271 => 0x284, 272 => 0x242, 273 => 0x280, 274 => 0x276, 275 => [0x27d,0x27f], 276 => 0x246, 278 => 0x2d6, 279 => 0x321, 280 => 0xbd8, 281 => 0x287, 282 => 0x320, 283 => 0x24a, 284 => 0x5fb, 285 => 0x2d5, 383 => 0x5d, 446 => 0x846, 452 => [0x125,0x14a], 468 => 0x32, 469 => 0x3a, 470 => 0x3a, 471 => 0xa }, + 'shuttercount2' => { 468 => 0x4c, 469 => [0x50,0x52,0x58], 470 => 0x50 }, + 'shuttercount3' => { 468 => [0x1a0,0x1aa,0x1bd], 469 => [0x19f,0x1cb,0x1cd] }, 'shuttercurtainsync' => { 85 => 0xf, 86 => 0xf, 87 => 0x305, 88 => 0xe, 89 => 0xf, 90 => 0x8, 91 => 0x8, 92 => 0xf, 93 => 0x8 }, 'shuttermode' => { 59 => 0x17, 143 => 0x1b, 239 => 0x34 }, - 'shutterreleasebuttonae-l' => { 303 => '17.7', 304 => '18.4', 306 => '78.4', 307 => '78.4', 308 => '16.1', 309 => '17.1', 310 => '17.1', 311 => '17.1', 312 => '7.1', 313 => '17.5', 316 => '18.4', 317 => '78.4', 318 => '18.2', 319 => 0x29, 320 => 0x29, 321 => 0x29 }, + 'shutterreleasebuttonae-l' => { 304 => '17.7', 305 => '18.4', 307 => '78.4', 308 => '78.4', 309 => '16.1', 310 => '17.1', 311 => '17.1', 312 => '17.1', 313 => '7.1', 314 => '17.5', 317 => '18.4', 318 => '78.4', 319 => '18.2', 320 => 0x29, 321 => 0x29, 322 => 0x29 }, 'shutterreleasemethod' => { 100 => 0x1010 }, 'shutterreleasenocfcard' => { 85 => 0x2, 86 => 0x2, 93 => 0xf }, 'shutterreleasetiming' => { 100 => 0x1011 }, 'shutterreleasewithoutlens' => { 87 => 0x711 }, - 'shutterspeedlock' => { 304 => '38.1', 306 => '38.1', 307 => '38.1', 316 => '38.1', 317 => '38.1', 319 => 0xb7, 320 => 0xb7, 321 => 0xb7 }, + 'shutterspeedlock' => { 305 => '38.1', 307 => '38.1', 308 => '38.1', 317 => '38.1', 318 => '38.1', 320 => 0xb7, 321 => 0xb7, 322 => 0xb7 }, 'shutterspeedrange' => { 87 => 0x10c }, - 'shutterspeedsetting' => { 187 => 0x6, 434 => 0x2f, 435 => 0x28, 436 => 0x0 }, - 'shutterspeedvalue' => { 96 => 0x1, 122 => 0x9201, 328 => 0x1000, 391 => 0x400, 516 => 'ShutterSpeedValue' }, - 'shuttertype' => { 130 => 0x1050, 347 => 0x9f, 382 => 0x87, 473 => [0x133,0x139,0x13f] }, - 'sidecarforextension' => { 527 => 'SidecarForExtension' }, + 'shutterspeedsetting' => { 187 => 0x6, 435 => 0x2f, 436 => 0x28, 437 => 0x0 }, + 'shutterspeedvalue' => { 96 => 0x1, 122 => 0x9201, 329 => 0x1000, 392 => 0x400, 517 => 'ShutterSpeedValue' }, + 'shuttertype' => { 130 => 0x1050, 348 => 0x9f, 383 => 0x87, 474 => [0x133,0x139,0x13f] }, + 'sidecarforextension' => { 528 => 'SidecarForExtension' }, 'sigmaimpulseparameters' => { 141 => 0xe0d }, 'sigmascalingfactorcamera' => { 141 => 0xe0c }, 'sigmascalingfactorlowres' => { 141 => 0xe0b }, @@ -6517,118 +6526,118 @@ my %tagLookup = ( 'silentphotography' => { 239 => 0xbf }, 'similarityindex' => { 134 => 0xe4 }, 'singleframebracketing' => { 187 => 0x21 }, - 'skilllevel' => { 531 => 'skillLevel' }, - 'skintonecorrection' => { 382 => 0x95 }, + 'skilllevel' => { 532 => 'skillLevel' }, + 'skintonecorrection' => { 383 => 0x95 }, 'skiplinetime' => { 141 => 0x184e }, - 'slaveflashmeteringsegments' => { 382 => 0x20b }, - 'slideshowname' => { 528 => 'slideshowName' }, - 'slideshownumber' => { 528 => 'slideshowNumber' }, - 'slideshowtotalnumber' => { 528 => 'slideshowTotalNumber' }, - 'slot2jpgsize' => { 244 => 0x24a, 247 => 0x24a }, + 'slaveflashmeteringsegments' => { 383 => 0x20b }, + 'slideshowname' => { 529 => 'slideshowName' }, + 'slideshownumber' => { 529 => 'slideshowNumber' }, + 'slideshowtotalnumber' => { 529 => 'slideshowTotalNumber' }, + 'slot2jpgsize' => { 244 => 0x24a, 245 => 0x24a, 248 => 0x24a }, 'slowshutter' => { 79 => 0x8 }, 'slowsync' => { 130 => 0x1030 }, - 'smartalbumcolor' => { 421 => 0x20 }, - 'smartrange' => { 421 => 0xa012 }, - 'smileshutter' => { 436 => 0x31 }, - 'smileshuttermode' => { 436 => 0x27 }, - 'smoothness' => { 122 => 0xfe57, 510 => 'Smoothness', 512 => 'Smoothness' }, - 'snapshot' => { 524 => 'SnapshotLink' }, - 'snapshotformat' => { 524 => [\'SnapshotLink','SnapshotLinkFormat'] }, - 'snapshotheightpixels' => { 524 => [\'SnapshotLink','SnapshotLinkHeightPixels'] }, - 'snapshotimagerole' => { 524 => [\'SnapshotLink','SnapshotLinkImageRole'] }, - 'snapshotlink' => { 524 => [\'SnapshotLink','SnapshotLinkLink'] }, - 'snapshotlinkqualifier' => { 524 => [\'SnapshotLink','SnapshotLinkLinkQualifier'] }, - 'snapshots' => { 505 => 'Snapshots' }, - 'snapshotusedvideoframe' => { 524 => [\'SnapshotLink','SnapshotLinkUsedVideoFrame'] }, - 'snapshotusedvideoframetimeformat' => { 524 => [\'SnapshotLink','SnapshotLinkUsedVideoFrameTimeFormat'] }, - 'snapshotusedvideoframetimevalue' => { 524 => [\'SnapshotLink','SnapshotLinkUsedVideoFrameTimeValue'] }, - 'snapshotusedvideoframevalue' => { 524 => [\'SnapshotLink','SnapshotLinkUsedVideoFrameValue'] }, - 'snapshotwidthpixels' => { 524 => [\'SnapshotLink','SnapshotLinkWidthPixels'] }, - 'softskineffect' => { 448 => 0x200f }, - 'software' => { 122 => 0x131, 160 => 'Software', 336 => 'Software', 391 => 0x203, 401 => 'software', 424 => 0x18, 495 => 'Software', 535 => 'Software' }, - 'softwareversion' => { 407 => ['@swr',"\xa9swr"], 423 => 0x207 }, - 'soloist' => { 399 => "\xa9sol" }, - 'songwriter' => { 407 => "\xa9swf" }, - 'songwriterkeywords' => { 407 => "\xa9swk" }, + 'smartalbumcolor' => { 422 => 0x20 }, + 'smartrange' => { 422 => 0xa012 }, + 'smileshutter' => { 437 => 0x31 }, + 'smileshuttermode' => { 437 => 0x27 }, + 'smoothness' => { 122 => 0xfe57, 511 => 'Smoothness', 513 => 'Smoothness' }, + 'snapshot' => { 525 => 'SnapshotLink' }, + 'snapshotformat' => { 525 => [\'SnapshotLink','SnapshotLinkFormat'] }, + 'snapshotheightpixels' => { 525 => [\'SnapshotLink','SnapshotLinkHeightPixels'] }, + 'snapshotimagerole' => { 525 => [\'SnapshotLink','SnapshotLinkImageRole'] }, + 'snapshotlink' => { 525 => [\'SnapshotLink','SnapshotLinkLink'] }, + 'snapshotlinkqualifier' => { 525 => [\'SnapshotLink','SnapshotLinkLinkQualifier'] }, + 'snapshots' => { 506 => 'Snapshots' }, + 'snapshotusedvideoframe' => { 525 => [\'SnapshotLink','SnapshotLinkUsedVideoFrame'] }, + 'snapshotusedvideoframetimeformat' => { 525 => [\'SnapshotLink','SnapshotLinkUsedVideoFrameTimeFormat'] }, + 'snapshotusedvideoframetimevalue' => { 525 => [\'SnapshotLink','SnapshotLinkUsedVideoFrameTimeValue'] }, + 'snapshotusedvideoframevalue' => { 525 => [\'SnapshotLink','SnapshotLinkUsedVideoFrameValue'] }, + 'snapshotwidthpixels' => { 525 => [\'SnapshotLink','SnapshotLinkWidthPixels'] }, + 'softskineffect' => { 449 => 0x200f }, + 'software' => { 122 => 0x131, 160 => 'Software', 337 => 'Software', 392 => 0x203, 402 => 'software', 425 => 0x18, 496 => 'Software', 536 => 'Software' }, + 'softwareversion' => { 408 => ['@swr',"\xa9swr"], 424 => 0x207 }, + 'soloist' => { 400 => "\xa9sol" }, + 'songwriter' => { 408 => "\xa9swf" }, + 'songwriterkeywords' => { 408 => "\xa9swk" }, 'sonycropsize' => { 122 => 0x74c8 }, 'sonycroptopleft' => { 122 => 0x74c7 }, - 'sonydatetime' => { 456 => 0x6, 458 => 0x1b6, 459 => 0x210, 460 => 0x1fe, 461 => 0x22c }, - 'sonydatetime2' => { 467 => 0x51 }, - 'sonyexposuretime' => { 467 => 0x3a, 468 => 0x46, 469 => [0x66,0x46], 470 => 0x1a }, - 'sonyexposuretime2' => { 480 => 0xe }, - 'sonyfnumber' => { 467 => 0x3c, 468 => 0x48, 469 => [0x68,0x48], 470 => 0x1c, 480 => 0x14 }, - 'sonyimageheight' => { 456 => 0x1a, 471 => 0x44, 472 => 0x3f }, - 'sonyimageheightmax' => { 480 => 0x40 }, - 'sonyimagesize' => { 187 => 0x3b, 434 => 0x54, 435 => 0x54, 436 => 0x9 }, - 'sonyimagewidth' => { 456 => 0x1c }, - 'sonyimagewidthmax' => { 480 => 0x3e }, - 'sonyiso' => { 458 => 0x1218, 459 => 0x11f4, 460 => 0x1270, 461 => [0x1254,0x1258,0x1280], 462 => 0x113c, 463 => 0x344, 464 => 0x346, 465 => 0x320, 480 => 0x4 }, - 'sonymaxaperture' => { 467 => 0x0, 468 => 0x0 }, - 'sonymaxaperturevalue' => { 480 => 0x16 }, - 'sonyminaperture' => { 467 => 0x1, 468 => 0x1 }, - 'sonymodelid' => { 448 => 0xb001 }, + 'sonydatetime' => { 457 => 0x6, 459 => 0x1b6, 460 => 0x210, 461 => 0x1fe, 462 => 0x22c }, + 'sonydatetime2' => { 468 => 0x51 }, + 'sonyexposuretime' => { 468 => 0x3a, 469 => 0x46, 470 => [0x66,0x46], 471 => 0x1a }, + 'sonyexposuretime2' => { 481 => 0xe }, + 'sonyfnumber' => { 468 => 0x3c, 469 => 0x48, 470 => [0x68,0x48], 471 => 0x1c, 481 => 0x14 }, + 'sonyimageheight' => { 457 => 0x1a, 472 => 0x44, 473 => 0x3f }, + 'sonyimageheightmax' => { 481 => 0x40 }, + 'sonyimagesize' => { 187 => 0x3b, 435 => 0x54, 436 => 0x54, 437 => 0x9 }, + 'sonyimagewidth' => { 457 => 0x1c }, + 'sonyimagewidthmax' => { 481 => 0x3e }, + 'sonyiso' => { 459 => 0x1218, 460 => 0x11f4, 461 => 0x1270, 462 => [0x1254,0x1258,0x1280], 463 => 0x113c, 464 => 0x344, 465 => 0x346, 466 => 0x320, 481 => 0x4 }, + 'sonymaxaperture' => { 468 => 0x0, 469 => 0x0 }, + 'sonymaxaperturevalue' => { 481 => 0x16 }, + 'sonyminaperture' => { 468 => 0x1, 469 => 0x1 }, + 'sonymodelid' => { 449 => 0xb001 }, 'sonyquality' => { 187 => 0x3c }, 'sonyrawimagesize' => { 122 => 0x7038 }, - 'sonytimeminsec' => { 468 => 0x61 }, - 'sortalbum' => { 399 => 'soal' }, - 'sortalbumartist' => { 399 => 'soaa' }, - 'sortartist' => { 399 => 'soar' }, - 'sortcomposer' => { 399 => 'soco' }, - 'sortname' => { 399 => 'sonm', 510 => 'SortName', 512 => 'SortName' }, - 'sortshow' => { 399 => 'sosn' }, - 'soundengineer' => { 399 => "\xa9sne" }, - 'source' => { 134 => 0x73, 336 => 'Source', 513 => 'source', 514 => 'source', 527 => 'Source' }, - 'sourcecount' => { 499 => 'SourceCount' }, - 'sourcecredits' => { 407 => "\xa9src" }, - 'sourcedirectoryindex' => { 369 => 0x0 }, - 'sourcefileindex' => { 369 => 0x2 }, - 'sourcephotoscount' => { 498 => 'SourcePhotosCount' }, + 'sonytimeminsec' => { 469 => 0x61 }, + 'sortalbum' => { 400 => 'soal' }, + 'sortalbumartist' => { 400 => 'soaa' }, + 'sortartist' => { 400 => 'soar' }, + 'sortcomposer' => { 400 => 'soco' }, + 'sortname' => { 400 => 'sonm', 511 => 'SortName', 513 => 'SortName' }, + 'sortshow' => { 400 => 'sosn' }, + 'soundengineer' => { 400 => "\xa9sne" }, + 'source' => { 134 => 0x73, 337 => 'Source', 514 => 'source', 515 => 'source', 528 => 'Source' }, + 'sourcecount' => { 500 => 'SourceCount' }, + 'sourcecredits' => { 408 => "\xa9src" }, + 'sourcedirectoryindex' => { 370 => 0x0 }, + 'sourcefileindex' => { 370 => 0x2 }, + 'sourcephotoscount' => { 499 => 'SourcePhotosCount' }, 'sourceprofileprefix' => { 141 => 0x1390 }, - 'spatialfrequencyresponse' => { 516 => 'SpatialFrequencyResponse' }, - 'spatialfrequencyresponsecolumns' => { 516 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseColumns'] }, - 'spatialfrequencyresponsenames' => { 516 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseNames'] }, - 'spatialfrequencyresponserows' => { 516 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseRows'] }, - 'spatialfrequencyresponsevalues' => { 516 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseValues'] }, - 'speakerplacement' => { 539 => 'speakerPlacement' }, + 'spatialfrequencyresponse' => { 517 => 'SpatialFrequencyResponse' }, + 'spatialfrequencyresponsecolumns' => { 517 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseColumns'] }, + 'spatialfrequencyresponsenames' => { 517 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseNames'] }, + 'spatialfrequencyresponserows' => { 517 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseRows'] }, + 'spatialfrequencyresponsevalues' => { 517 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseValues'] }, + 'speakerplacement' => { 540 => 'speakerPlacement' }, 'specialeffectlevel' => { 116 => 0x3030 }, 'specialeffectmode' => { 116 => 0x2076 }, 'specialeffectsetting' => { 116 => 0x3031 }, 'specialinstructions' => { 134 => 0x28 }, - 'specialmode' => { 328 => 0x200, 423 => 0x200 }, - 'specialoccasion' => { 531 => 'specialOccasion' }, - 'specialtypeid' => { 493 => 'SpecialTypeID' }, - 'spectralsensitivity' => { 122 => 0x8824, 516 => 'SpectralSensitivity' }, + 'specialmode' => { 329 => 0x200, 424 => 0x200 }, + 'specialoccasion' => { 532 => 'specialOccasion' }, + 'specialtypeid' => { 494 => 'SpecialTypeID' }, + 'spectralsensitivity' => { 122 => 0x8824, 517 => 'SpectralSensitivity' }, 'specularwhitelevel' => { 43 => 0x32b, 44 => 0x281, 47 => [0x2b9,0x2d0,0x2d4], 48 => [0x56a,0x296], 49 => 0x1e4, 50 => [0x1fd,0x2dd], 51 => [0x231,0x30f], 52 => 0x31d }, - 'speedx' => { 118 => 0x3, 407 => "\xa9xsp" }, - 'speedy' => { 118 => 0x4, 407 => "\xa9ysp" }, - 'speedz' => { 118 => 0x5, 407 => "\xa9zsp" }, - 'spherical' => { 499 => 'Spherical' }, + 'speedx' => { 118 => 0x3, 408 => "\xa9xsp" }, + 'speedy' => { 118 => 0x4, 408 => "\xa9ysp" }, + 'speedz' => { 118 => 0x5, 408 => "\xa9zsp" }, + 'spherical' => { 500 => 'Spherical' }, 'sphericalvideoxml' => { 123 => 'SphericalVideoXML' }, - 'splitcolumn' => { 391 => 0x222 }, - 'splittoningbalance' => { 510 => 'SplitToningBalance', 512 => 'SplitToningBalance' }, - 'splittoninghighlighthue' => { 510 => 'SplitToningHighlightHue', 512 => 'SplitToningHighlightHue' }, - 'splittoninghighlightsaturation' => { 510 => 'SplitToningHighlightSaturation', 512 => 'SplitToningHighlightSaturation' }, - 'splittoningshadowhue' => { 510 => 'SplitToningShadowHue', 512 => 'SplitToningShadowHue' }, - 'splittoningshadowsaturation' => { 510 => 'SplitToningShadowSaturation', 512 => 'SplitToningShadowSaturation' }, - 'sport' => { 529 => 'sport' }, + 'splitcolumn' => { 392 => 0x222 }, + 'splittoningbalance' => { 511 => 'SplitToningBalance', 513 => 'SplitToningBalance' }, + 'splittoninghighlighthue' => { 511 => 'SplitToningHighlightHue', 513 => 'SplitToningHighlightHue' }, + 'splittoninghighlightsaturation' => { 511 => 'SplitToningHighlightSaturation', 513 => 'SplitToningHighlightSaturation' }, + 'splittoningshadowhue' => { 511 => 'SplitToningShadowHue', 513 => 'SplitToningShadowHue' }, + 'splittoningshadowsaturation' => { 511 => 'SplitToningShadowSaturation', 513 => 'SplitToningShadowSaturation' }, + 'sport' => { 530 => 'sport' }, 'spotfocuspointx' => { 184 => 0x2d }, 'spotfocuspointy' => { 184 => 0x2e }, 'spotmeteringmode' => { 36 => 0x27 }, 'spotmeterlinktoafpoint' => { 87 => 0x107 }, - 'sractive' => { 363 => '17.1' }, + 'sractive' => { 364 => '17.1' }, 'srawquality' => { 36 => 0x2e }, - 'srfocallength' => { 384 => 0x3 }, - 'srgbrendering' => { 334 => 'sRGB' }, - 'srhalfpresstime' => { 384 => 0x2 }, - 'srresult' => { 384 => 0x0, 385 => 0x0 }, - 'stackedimage' => { 323 => 0x804 }, + 'srfocallength' => { 385 => 0x3 }, + 'srgbrendering' => { 335 => 'sRGB' }, + 'srhalfpresstime' => { 385 => 0x2 }, + 'srresult' => { 385 => 0x0, 386 => 0x0 }, + 'stackedimage' => { 324 => 0x804 }, 'standardmatrixcustom' => { 141 => 0x7d4 }, 'standardmatrixdaylight' => { 141 => 0x7d0 }, 'standardmatrixflash' => { 141 => 0x7d3 }, 'standardmatrixfluorescent' => { 141 => 0x7d2 }, 'standardmatrixtungsten' => { 141 => 0x7d1 }, 'standardoutputhighlightpoint' => { 112 => 0x14 }, - 'standardoutputsensitivity' => { 122 => 0x8831, 517 => 'StandardOutputSensitivity' }, + 'standardoutputsensitivity' => { 122 => 0x8831, 518 => 'StandardOutputSensitivity' }, 'standardoutputshadowpoint' => { 112 => 0x15 }, 'standardrawcolortone' => { 112 => 0xd }, 'standardrawcontrast' => { 112 => 0xf }, @@ -6647,128 +6656,130 @@ my %tagLookup = ( 'standardwhiteflash' => { 141 => 0x837 }, 'standardwhitefluorescent' => { 141 => 0x836 }, 'standardwhitetungsten' => { 141 => 0x835 }, - 'standbytimer' => { 304 => '19.1', 306 => '19.1', 307 => '19.1', 310 => '18.1', 311 => '18.1', 316 => '19.1', 317 => '19.1' }, - 'starlightview' => { 319 => 0x249, 320 => 0x249, 321 => 0x261 }, - 'startingpage' => { 529 => 'startingPage' }, + 'standbytimer' => { 305 => '19.1', 307 => '19.1', 308 => '19.1', 311 => '18.1', 312 => '18.1', 317 => '19.1', 318 => '19.1' }, + 'starlightview' => { 320 => 0x249, 321 => 0x249, 322 => 0x261 }, + 'startingpage' => { 530 => 'startingPage' }, 'startmovieshooting' => { 87 => 0x70d }, - 'starttimecode' => { 407 => "\xa9TIM", 539 => 'startTimecode' }, - 'starttimecodetimeformat' => { 539 => [\'startTimecode','startTimecodeTimeFormat'] }, - 'starttimecodetimevalue' => { 539 => [\'startTimecode','startTimecodeTimeValue'] }, - 'starttimecodevalue' => { 539 => [\'startTimecode','startTimecodeValue'] }, - 'starttimesamplesize' => { 407 => "\xa9TSZ", 539 => 'startTimeSampleSize' }, - 'starttimescale' => { 407 => "\xa9TSC", 539 => 'startTimeScale' }, - 'state' => { 164 => 'State', 347 => 0x6b, 527 => 'State' }, - 'status' => { 491 => 'Status', 503 => 'Status' }, - 'stereomode' => { 499 => 'StereoMode' }, - 'stitched' => { 499 => 'Stitched' }, - 'stitchingsoftware' => { 498 => 'StitchingSoftware', 499 => 'StitchingSoftware' }, - 'stopsabovebaseiso' => { 457 => 0x113e, 458 => 0x113e, 459 => 0x111a, 460 => 0x1196, 461 => 0x1172, 462 => 0x102a, 463 => 0x222, 464 => 0x222, 465 => 0x217, 480 => 0xa }, + 'starttimecode' => { 408 => "\xa9TIM", 540 => 'startTimecode' }, + 'starttimecodetimeformat' => { 540 => [\'startTimecode','startTimecodeTimeFormat'] }, + 'starttimecodetimevalue' => { 540 => [\'startTimecode','startTimecodeTimeValue'] }, + 'starttimecodevalue' => { 540 => [\'startTimecode','startTimecodeValue'] }, + 'starttimesamplesize' => { 408 => "\xa9TSZ", 540 => 'startTimeSampleSize' }, + 'starttimescale' => { 408 => "\xa9TSC", 540 => 'startTimeScale' }, + 'state' => { 164 => 'State', 348 => 0x6b, 528 => 'State' }, + 'status' => { 492 => 'Status', 504 => 'Status' }, + 'stereomode' => { 500 => 'StereoMode' }, + 'stitched' => { 500 => 'Stitched' }, + 'stitchingsoftware' => { 499 => 'StitchingSoftware', 500 => 'StitchingSoftware' }, + 'stopsabovebaseiso' => { 458 => 0x113e, 459 => 0x113e, 460 => 0x111a, 461 => 0x1196, 462 => 0x1172, 463 => 0x102a, 464 => 0x222, 465 => 0x222, 466 => 0x217, 481 => 0xa }, 'storagemethod' => { 191 => 0x12 }, - 'storebyorientation' => { 304 => '46.3', 306 => '47.3', 307 => '47.3', 316 => '47.3', 317 => '47.3', 319 => 0xd, 320 => 0xd, 321 => 0xd }, - 'storedescription' => { 399 => 'sdes' }, - 'storylineidentifier' => { 524 => 'StorylineIdentifier' }, - 'straightenangle' => { 296 => 0x2fc08431 }, - 'streamready' => { 524 => 'StreamReady' }, + 'storebyorientation' => { 305 => '46.3', 307 => '47.3', 308 => '47.3', 317 => '47.3', 318 => '47.3', 320 => 0xd, 321 => 0xd, 322 => 0xd }, + 'storedescription' => { 400 => 'sdes' }, + 'storylineidentifier' => { 525 => 'StorylineIdentifier' }, + 'straightenangle' => { 297 => 0x2fc08431 }, + 'streamready' => { 525 => 'StreamReady' }, 'streamtype' => { 179 => 'StreamType' }, - 'stretchmode' => { 539 => 'stretchMode' }, - 'studydatetime' => { 488 => 'StudyDateTime' }, - 'studydescription' => { 488 => 'StudyDescription' }, - 'studyid' => { 488 => 'StudyID' }, - 'studyphysician' => { 488 => 'StudyPhysician' }, - 'styleperiod' => { 524 => 'StylePeriod' }, + 'stretchmode' => { 540 => 'stretchMode' }, + 'studydatetime' => { 489 => 'StudyDateTime' }, + 'studydescription' => { 489 => 'StudyDescription' }, + 'studyid' => { 489 => 'StudyID' }, + 'studyphysician' => { 489 => 'StudyPhysician' }, + 'styleperiod' => { 525 => 'StylePeriod' }, 'sub-location' => { 134 => 0x5c }, - 'subcommanddialplaybackmode' => { 319 => 0x1cf, 320 => 0x1cf, 321 => 0x1e7 }, + 'subcommanddialframeadvancezoom' => { 248 => 0x806 }, + 'subcommanddialplaybackmode' => { 320 => 0x1cf, 321 => 0x1cf, 322 => 0x1e7 }, + 'subcommanddialvideoplaybackmode' => { 320 => 0x1d1, 322 => 0x1e9 }, 'subfiledata' => { 167 => 'data' }, 'subfiledirectory' => { 167 => '1Directory' }, 'subfilemimetype' => { 167 => '2MIME' }, 'subfilename' => { 167 => '1Name' }, 'subfileresource' => { 167 => 'rsrc' }, 'subfiletype' => { 122 => 0xfe, 167 => '0Type' }, - 'subject' => { 332 => 'Subject', 398 => 'Subject', 513 => 'subject', 526 => 'Subject', 540 => 'subject' }, - 'subjectarea' => { 122 => 0x9214, 516 => 'SubjectArea' }, - 'subjectcode' => { 523 => 'SubjectCode' }, - 'subjectdetection' => { 244 => 0x252, 245 => 0x23e, 246 => 0x252, 247 => 0x252 }, - 'subjectdistance' => { 122 => 0x9206, 143 => 0x3e, 516 => 'SubjectDistance' }, - 'subjectdistancerange' => { 122 => 0xa40c, 516 => 'SubjectDistanceRange' }, - 'subjectlocation' => { 122 => 0xa214, 516 => 'SubjectLocation' }, - 'subjectmotion' => { 306 => '78.2', 307 => '78.2', 317 => '78.2', 319 => 0x103, 320 => 0x103, 321 => 0x119 }, + 'subject' => { 333 => 'Subject', 399 => 'Subject', 514 => 'subject', 527 => 'Subject', 541 => 'subject' }, + 'subjectarea' => { 122 => 0x9214, 517 => 'SubjectArea' }, + 'subjectcode' => { 524 => 'SubjectCode' }, + 'subjectdetection' => { 244 => 0x252, 245 => 0x252, 246 => 0x23e, 247 => 0x252, 248 => 0x252 }, + 'subjectdistance' => { 122 => 0x9206, 143 => 0x3e, 517 => 'SubjectDistance' }, + 'subjectdistancerange' => { 122 => 0xa40c, 517 => 'SubjectDistanceRange' }, + 'subjectlocation' => { 122 => 0xa214, 517 => 'SubjectLocation' }, + 'subjectmotion' => { 307 => '78.2', 308 => '78.2', 318 => '78.2', 320 => 0x103, 321 => 0x103, 322 => 0x119 }, 'subjectprogram' => { 184 => 0x22 }, 'subjectreference' => { 134 => 0xc }, - 'sublabels1' => { 522 => [\'TagStructure','TagStructureSubLabels'] }, - 'sublabels2' => { 522 => [\'TagStructure','TagStructureSubLabelsSubLabels'] }, - 'sublabels3' => { 522 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabels'] }, - 'sublabels4' => { 522 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabels'] }, - 'sublabels5' => { 522 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabels'] }, + 'sublabels1' => { 523 => [\'TagStructure','TagStructureSubLabels'] }, + 'sublabels2' => { 523 => [\'TagStructure','TagStructureSubLabelsSubLabels'] }, + 'sublabels3' => { 523 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabels'] }, + 'sublabels4' => { 523 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabels'] }, + 'sublabels5' => { 523 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabels'] }, 'subseccreatedate' => { 117 => 'Exif-SubSecCreateDate' }, 'subsecdatetimeoriginal' => { 117 => 'Exif-SubSecDateTimeOriginal' }, 'subsecmodifydate' => { 117 => 'Exif-SubSecModifyDate' }, 'subsectime' => { 122 => 0x9290 }, 'subsectimedigitized' => { 122 => 0x9292 }, 'subsectimeoriginal' => { 122 => 0x9291 }, - 'subsection1' => { 529 => 'subsection1' }, - 'subsection2' => { 529 => 'subsection2' }, - 'subsection3' => { 529 => 'subsection3' }, - 'subsection4' => { 529 => 'subsection4' }, - 'subselector' => { 304 => '49.1', 306 => '71.1', 307 => '71.1', 317 => '71.1', 319 => 0x8f, 320 => 0x8f, 321 => 0x8f }, - 'subselectorassignment' => { 304 => '48.1' }, - 'subselectorcenter' => { 306 => '72.1', 307 => '72.1', 317 => '72.1' }, - 'subselectorplusdials' => { 304 => '49.2', 306 => '73.1', 307 => '73.1', 317 => '73.1' }, - 'subtitle' => { 182 => 'WM/SubTitle', 399 => "\xa9st3", 407 => "\xa9snm", 529 => 'subtitle' }, - 'subtitlekeywords' => { 407 => "\xa9snk" }, - 'subversionfilename' => { 522 => [\'SubVersions','SubVersionsFileName'] }, - 'subversionreference' => { 522 => [\'SubVersions','SubVersionsVersRef'] }, - 'subversions' => { 522 => 'SubVersions' }, + 'subsection1' => { 530 => 'subsection1' }, + 'subsection2' => { 530 => 'subsection2' }, + 'subsection3' => { 530 => 'subsection3' }, + 'subsection4' => { 530 => 'subsection4' }, + 'subselector' => { 305 => '49.1', 307 => '71.1', 308 => '71.1', 318 => '71.1', 320 => 0x8f, 321 => 0x8f, 322 => 0x8f }, + 'subselectorassignment' => { 305 => '48.1' }, + 'subselectorcenter' => { 307 => '72.1', 308 => '72.1', 318 => '72.1' }, + 'subselectorplusdials' => { 305 => '49.2', 307 => '73.1', 308 => '73.1', 318 => '73.1' }, + 'subtitle' => { 182 => 'WM/SubTitle', 400 => "\xa9st3", 408 => "\xa9snm", 530 => 'subtitle' }, + 'subtitlekeywords' => { 408 => "\xa9snk" }, + 'subversionfilename' => { 523 => [\'SubVersions','SubVersionsFileName'] }, + 'subversionreference' => { 523 => [\'SubVersions','SubVersionsVersRef'] }, + 'subversions' => { 523 => 'SubVersions' }, 'superimposeddisplay' => { 85 => 0xa, 87 => 0x510, 88 => 0x9, 89 => 0xa, 92 => 0xa, 93 => 0xe }, 'supermacro' => { 66 => 0x1a }, - 'supplementalcategories' => { 134 => 0x14, 527 => 'SupplementalCategories' }, + 'supplementalcategories' => { 134 => 0x14, 528 => 'SupplementalCategories' }, 'supplementaltype' => { 136 => 0x37 }, - 'supplementdisplayid' => { 529 => 'supplementDisplayID' }, - 'supplementstartingpage' => { 529 => 'supplementStartingPage' }, - 'supplementtitle' => { 529 => 'supplementTitle' }, - 'supplychainsource' => { 524 => 'SupplyChainSource' }, - 'supplychainsourceidentifier' => { 524 => [\'SupplyChainSource','SupplyChainSourceIdentifier'] }, - 'supplychainsourcename' => { 524 => [\'SupplyChainSource','SupplyChainSourceName'] }, - 'supportsamount' => { 510 => 'SupportsAmount', 512 => 'SupportsAmount' }, - 'supportscolor' => { 510 => 'SupportsColor', 512 => 'SupportsColor' }, - 'supportshighdynamicrange' => { 510 => 'SupportsHighDynamicRange', 512 => 'SupportsHighDynamicRange' }, - 'supportsmonochrome' => { 510 => 'SupportsMonochrome', 512 => 'SupportsMonochrome' }, - 'supportsnormaldynamicrange' => { 510 => 'SupportsNormalDynamicRange', 512 => 'SupportsNormalDynamicRange' }, - 'supportsoutputreferred' => { 510 => 'SupportsOutputReferred', 512 => 'SupportsOutputReferred' }, - 'supportsscenereferred' => { 510 => 'SupportsSceneReferred', 512 => 'SupportsSceneReferred' }, - 'svisosetting' => { 363 => 0x14 }, - 'swatchcoloranta' => { 544 => [\'SwatchGroups','SwatchGroupsColorantsA'] }, - 'swatchcolorantb' => { 544 => [\'SwatchGroups','SwatchGroupsColorantsB'] }, - 'swatchcolorantblack' => { 544 => [\'SwatchGroups','SwatchGroupsColorantsBlack'] }, - 'swatchcolorantblue' => { 544 => [\'SwatchGroups','SwatchGroupsColorantsBlue'] }, - 'swatchcolorantcyan' => { 544 => [\'SwatchGroups','SwatchGroupsColorantsCyan'] }, - 'swatchcolorantgray' => { 544 => [\'SwatchGroups','SwatchGroupsColorantsGray'] }, - 'swatchcolorantgreen' => { 544 => [\'SwatchGroups','SwatchGroupsColorantsGreen'] }, - 'swatchcolorantl' => { 544 => [\'SwatchGroups','SwatchGroupsColorantsL'] }, - 'swatchcolorantmagenta' => { 544 => [\'SwatchGroups','SwatchGroupsColorantsMagenta'] }, - 'swatchcolorantmode' => { 544 => [\'SwatchGroups','SwatchGroupsColorantsMode'] }, - 'swatchcolorantred' => { 544 => [\'SwatchGroups','SwatchGroupsColorantsRed'] }, - 'swatchcolorantswatchname' => { 544 => [\'SwatchGroups','SwatchGroupsColorantsSwatchName'] }, - 'swatchcoloranttint' => { 544 => [\'SwatchGroups','SwatchGroupsColorantsTint'] }, - 'swatchcoloranttype' => { 544 => [\'SwatchGroups','SwatchGroupsColorantsType'] }, - 'swatchcolorantyellow' => { 544 => [\'SwatchGroups','SwatchGroupsColorantsYellow'] }, - 'swatchgroupname' => { 544 => [\'SwatchGroups','SwatchGroupsGroupName'] }, - 'swatchgroups' => { 544 => 'SwatchGroups' }, - 'swatchgroupscolorants' => { 544 => [\'SwatchGroups','SwatchGroupsColorants'] }, - 'swatchgrouptype' => { 544 => [\'SwatchGroups','SwatchGroupsGroupType'] }, - 'sweeppanoramadirection' => { 347 => 0x93, 436 => 0x33 }, - 'sweeppanoramafieldofview' => { 347 => 0x94 }, - 'sweeppanoramasize' => { 436 => 0x32 }, + 'supplementdisplayid' => { 530 => 'supplementDisplayID' }, + 'supplementstartingpage' => { 530 => 'supplementStartingPage' }, + 'supplementtitle' => { 530 => 'supplementTitle' }, + 'supplychainsource' => { 525 => 'SupplyChainSource' }, + 'supplychainsourceidentifier' => { 525 => [\'SupplyChainSource','SupplyChainSourceIdentifier'] }, + 'supplychainsourcename' => { 525 => [\'SupplyChainSource','SupplyChainSourceName'] }, + 'supportsamount' => { 511 => 'SupportsAmount', 513 => 'SupportsAmount' }, + 'supportscolor' => { 511 => 'SupportsColor', 513 => 'SupportsColor' }, + 'supportshighdynamicrange' => { 511 => 'SupportsHighDynamicRange', 513 => 'SupportsHighDynamicRange' }, + 'supportsmonochrome' => { 511 => 'SupportsMonochrome', 513 => 'SupportsMonochrome' }, + 'supportsnormaldynamicrange' => { 511 => 'SupportsNormalDynamicRange', 513 => 'SupportsNormalDynamicRange' }, + 'supportsoutputreferred' => { 511 => 'SupportsOutputReferred', 513 => 'SupportsOutputReferred' }, + 'supportsscenereferred' => { 511 => 'SupportsSceneReferred', 513 => 'SupportsSceneReferred' }, + 'svisosetting' => { 364 => 0x14 }, + 'swatchcoloranta' => { 545 => [\'SwatchGroups','SwatchGroupsColorantsA'] }, + 'swatchcolorantb' => { 545 => [\'SwatchGroups','SwatchGroupsColorantsB'] }, + 'swatchcolorantblack' => { 545 => [\'SwatchGroups','SwatchGroupsColorantsBlack'] }, + 'swatchcolorantblue' => { 545 => [\'SwatchGroups','SwatchGroupsColorantsBlue'] }, + 'swatchcolorantcyan' => { 545 => [\'SwatchGroups','SwatchGroupsColorantsCyan'] }, + 'swatchcolorantgray' => { 545 => [\'SwatchGroups','SwatchGroupsColorantsGray'] }, + 'swatchcolorantgreen' => { 545 => [\'SwatchGroups','SwatchGroupsColorantsGreen'] }, + 'swatchcolorantl' => { 545 => [\'SwatchGroups','SwatchGroupsColorantsL'] }, + 'swatchcolorantmagenta' => { 545 => [\'SwatchGroups','SwatchGroupsColorantsMagenta'] }, + 'swatchcolorantmode' => { 545 => [\'SwatchGroups','SwatchGroupsColorantsMode'] }, + 'swatchcolorantred' => { 545 => [\'SwatchGroups','SwatchGroupsColorantsRed'] }, + 'swatchcolorantswatchname' => { 545 => [\'SwatchGroups','SwatchGroupsColorantsSwatchName'] }, + 'swatchcoloranttint' => { 545 => [\'SwatchGroups','SwatchGroupsColorantsTint'] }, + 'swatchcoloranttype' => { 545 => [\'SwatchGroups','SwatchGroupsColorantsType'] }, + 'swatchcolorantyellow' => { 545 => [\'SwatchGroups','SwatchGroupsColorantsYellow'] }, + 'swatchgroupname' => { 545 => [\'SwatchGroups','SwatchGroupsGroupName'] }, + 'swatchgroups' => { 545 => 'SwatchGroups' }, + 'swatchgroupscolorants' => { 545 => [\'SwatchGroups','SwatchGroupsColorants'] }, + 'swatchgrouptype' => { 545 => [\'SwatchGroups','SwatchGroupsGroupType'] }, + 'sweeppanoramadirection' => { 348 => 0x93, 437 => 0x33 }, + 'sweeppanoramafieldofview' => { 348 => 0x94 }, + 'sweeppanoramasize' => { 437 => 0x32 }, 'switchtoregisteredafpoint' => { 86 => 0x12, 87 => 0x50a }, 'symlink' => { 123 => 'SymLink' }, - 'syncreleasemode' => { 306 => '77.1', 307 => '77.1', 317 => '77.1', 319 => 0x41, 320 => 0x41, 321 => 0x41 }, - 'system' => { 391 => 0x204 }, - 'tagged' => { 393 => 0xdd, 394 => 'Tagged', 505 => 'tagged' }, - 'tagslist' => { 515 => 'TagsList' }, - 'tagstructure' => { 522 => 'TagStructure' }, - 'takenumber' => { 539 => 'takeNumber' }, - 'tapename' => { 539 => 'tapeName' }, + 'syncreleasemode' => { 307 => '77.1', 308 => '77.1', 318 => '77.1', 320 => 0x41, 321 => 0x41, 322 => 0x41 }, + 'system' => { 392 => 0x204 }, + 'tagged' => { 394 => 0xdd, 395 => 'Tagged', 506 => 'tagged' }, + 'tagslist' => { 516 => 'TagsList' }, + 'tagstructure' => { 523 => 'TagStructure' }, + 'takenumber' => { 540 => 'takeNumber' }, + 'tapename' => { 540 => 'tapeName' }, 'targetaperture' => { 79 => 0x4 }, - 'targetaspectratio' => { 337 => 'TargetAspectRatio' }, + 'targetaspectratio' => { 338 => 'TargetAspectRatio' }, 'targetcompressionratio' => { 98 => 0x1 }, 'targetdistancesetting' => { 100 => 0x1807 }, 'targetexposuretime' => { 79 => 0x5 }, @@ -6825,112 +6836,112 @@ my %tagLookup = ( 'tda4edgepolarity' => { 141 => 0x198f }, 'tda4gain' => { 141 => 0x198e }, 'tda4offset' => { 141 => 0x198c }, - 'teaser' => { 529 => 'teaser' }, - 'teleconverter' => { 189 => 0x105, 448 => 0x105 }, + 'teaser' => { 530 => 'teaser' }, + 'teleconverter' => { 189 => 0x105, 449 => 0x105 }, 'tempampgainx100' => { 141 => 0x1914 }, - 'tempo' => { 539 => 'tempo' }, - 'temporalcoverage' => { 524 => 'TemporalCoverage' }, - 'temporalcoveragefrom' => { 524 => [\'TemporalCoverage','TemporalCoverageTempCoverageFrom'] }, - 'temporalcoverageto' => { 524 => [\'TemporalCoverage','TemporalCoverageTempCoverageTo'] }, - 'termsandconditionstext' => { 333 => 'TermsAndConditionsText' }, - 'termsandconditionsurl' => { 333 => 'TermsAndConditionsURL' }, + 'tempo' => { 540 => 'tempo' }, + 'temporalcoverage' => { 525 => 'TemporalCoverage' }, + 'temporalcoveragefrom' => { 525 => [\'TemporalCoverage','TemporalCoverageTempCoverageFrom'] }, + 'temporalcoverageto' => { 525 => [\'TemporalCoverage','TemporalCoverageTempCoverageTo'] }, + 'termsandconditionstext' => { 334 => 'TermsAndConditionsText' }, + 'termsandconditionsurl' => { 334 => 'TermsAndConditionsURL' }, 'testname' => { 123 => 'TestName' }, 'textencoding' => { 238 => 0x4 }, - 'textlayername' => { 527 => [\'TextLayers','TextLayersLayerName'] }, - 'textlayers' => { 527 => 'TextLayers' }, - 'textlayertext' => { 527 => [\'TextLayers','TextLayersLayerText'] }, - 'textstamp' => { 347 => [0x8008,0x8009,0x3b,0x3e] }, - 'texture' => { 510 => 'Texture', 512 => 'Texture' }, - 'three-dtrackingfacedetection' => { 306 => '1.4', 307 => '1.4', 317 => '1.4' }, - 'three-dtrackingwatcharea' => { 306 => '78.1', 307 => '78.1', 317 => '78.1' }, + 'textlayername' => { 528 => [\'TextLayers','TextLayersLayerName'] }, + 'textlayers' => { 528 => 'TextLayers' }, + 'textlayertext' => { 528 => [\'TextLayers','TextLayersLayerText'] }, + 'textstamp' => { 348 => [0x8008,0x8009,0x3b,0x3e] }, + 'texture' => { 511 => 'Texture', 513 => 'Texture' }, + 'three-dtrackingfacedetection' => { 307 => '1.4', 308 => '1.4', 318 => '1.4' }, + 'three-dtrackingwatcharea' => { 307 => '78.1', 308 => '78.1', 318 => '78.1' }, 'thresholding' => { 122 => 0x107 }, 'thumbnailfilename' => { 100 => 0x817 }, - 'thumbnailformat' => { 537 => [\'Thumbnails','ThumbnailsFormat'] }, - 'thumbnailheight' => { 145 => 0xfa55, 537 => [\'Thumbnails','ThumbnailsHeight'] }, - 'thumbnailimage' => { 6 => 'CNDA', 100 => 0x2008, 117 => 'Exif-ThumbnailImage', 125 => 0x3, 170 => 'data', 328 => 0x100, 407 => 'thmb', 537 => [\'Thumbnails','ThumbnailsImage'] }, + 'thumbnailformat' => { 538 => [\'Thumbnails','ThumbnailsFormat'] }, + 'thumbnailheight' => { 145 => 0xfa55, 538 => [\'Thumbnails','ThumbnailsHeight'] }, + 'thumbnailimage' => { 6 => 'CNDA', 100 => 0x2008, 117 => 'Exif-ThumbnailImage', 125 => 0x3, 170 => 'data', 329 => 0x100, 408 => 'thmb', 538 => [\'Thumbnails','ThumbnailsImage'] }, 'thumbnailimagename' => { 170 => '1Name' }, 'thumbnailimagesize' => { 170 => 'ImageSize' }, 'thumbnailimagetype' => { 170 => '0Type' }, 'thumbnailimagevalidarea' => { 66 => 0x13 }, 'thumbnaillength' => { 122 => 0x202 }, 'thumbnailoffset' => { 122 => 0x201 }, - 'thumbnailpng' => { 407 => 'thmb' }, - 'thumbnails' => { 537 => 'Thumbnails' }, - 'thumbnailwidth' => { 145 => 0xfa54, 537 => [\'Thumbnails','ThumbnailsWidth'] }, - 'ticker' => { 529 => 'ticker' }, - 'tiffhandling' => { 510 => 'TIFFHandling', 512 => 'TIFFHandling' }, - 'tiffmeteringimage' => { 190 => 0x104c, 445 => 0x1110 }, + 'thumbnailpng' => { 408 => 'thmb' }, + 'thumbnails' => { 538 => 'Thumbnails' }, + 'thumbnailwidth' => { 145 => 0xfa54, 538 => [\'Thumbnails','ThumbnailsWidth'] }, + 'ticker' => { 530 => 'ticker' }, + 'tiffhandling' => { 511 => 'TIFFHandling', 513 => 'TIFFHandling' }, + 'tiffmeteringimage' => { 190 => 0x104c, 446 => 0x1110 }, 'tilelength' => { 122 => 0x143 }, 'tilewidth' => { 122 => 0x142 }, - 'time' => { 141 => 0x401, 382 => 0x7 }, + 'time' => { 141 => 0x401, 383 => 0x7 }, 'timecodes' => { 122 => 0xc763 }, - 'timecreated' => { 134 => 0x3c, 143 => 0x14, 152 => 0x10, 394 => 'TimeCreated' }, - 'timelapseshotnumber' => { 350 => 0x10 }, - 'timeperiod' => { 529 => 'timePeriod' }, - 'timerfunctionbutton' => { 305 => '5.2', 308 => '12.1', 309 => '13.1' }, + 'timecreated' => { 134 => 0x3c, 143 => 0x14, 152 => 0x10, 395 => 'TimeCreated' }, + 'timelapseshotnumber' => { 351 => 0x10 }, + 'timeperiod' => { 530 => 'timePeriod' }, + 'timerfunctionbutton' => { 306 => '5.2', 309 => '12.1', 310 => '13.1' }, 'timerlength' => { 87 => 0x80c }, - 'timerrecording' => { 347 => 0x96 }, - 'timescaleparams' => { 539 => 'timeScaleParams' }, - 'timescaleparamsframeoverlappingpercentage' => { 539 => [\'timeScaleParams','timeScaleParamsFrameOverlappingPercentage'] }, - 'timescaleparamsframesize' => { 539 => [\'timeScaleParams','timeScaleParamsFrameSize'] }, - 'timescaleparamsquality' => { 539 => [\'timeScaleParams','timeScaleParamsQuality'] }, + 'timerrecording' => { 348 => 0x96 }, + 'timescaleparams' => { 540 => 'timeScaleParams' }, + 'timescaleparamsframeoverlappingpercentage' => { 540 => [\'timeScaleParams','timeScaleParamsFrameOverlappingPercentage'] }, + 'timescaleparamsframesize' => { 540 => [\'timeScaleParams','timeScaleParamsFrameSize'] }, + 'timescaleparamsquality' => { 540 => [\'timeScaleParams','timeScaleParamsQuality'] }, 'timesent' => { 135 => 0x50 }, - 'timeshot' => { 500 => 'TimeShot' }, - 'timesignature' => { 539 => 'timeSignature' }, - 'timesincepoweron' => { 347 => 0x29 }, - 'timestamp' => { 11 => 0x45e, 19 => 0x11c, 322 => 0x8, 336 => 'TimeStamp', 347 => 0xaf, 499 => 'Timestamp', 506 => 'Timestamp', 522 => 'TimeStamp' }, + 'timeshot' => { 501 => 'TimeShot' }, + 'timesignature' => { 540 => 'timeSignature' }, + 'timesincepoweron' => { 348 => 0x29 }, + 'timestamp' => { 11 => 0x45e, 19 => 0x11c, 323 => 0x8, 337 => 'TimeStamp', 348 => 0xaf, 500 => 'Timestamp', 507 => 'Timestamp', 523 => 'TimeStamp' }, 'timestamp1' => { 11 => 0x45a }, - 'timezone' => { 80 => 0x1, 244 => 0x694, 245 => 0x594, 246 => 0x5c4, 247 => 0x5dc, 288 => 0x0, 417 => 0xa }, + 'timezone' => { 80 => 0x1, 244 => 0x694, 245 => 0x6a4, 246 => 0x594, 247 => 0x5c4, 248 => 0x5dc, 289 => 0x0, 418 => 0xa }, 'timezonecity' => { 80 => 0x2 }, 'timezonecode' => { 103 => 0x1 }, 'timezoneinfo' => { 103 => 0x2 }, 'timezoneoffset' => { 122 => 0x882a }, - 'tint' => { 401 => 'player.movie.visual.tint', 510 => 'Tint', 512 => 'Tint' }, - 'title' => { 122 => 0xa436, 160 => 'Title', 332 => 'Title', 336 => 'Title', 347 => 0x65, 398 => 'Title', 399 => ['titl',"\xa9nam"], 401 => 'title', 407 => ['titl',"\xa9nam"], 513 => 'title', 526 => 'Title', 537 => 'Title' }, - 'togglestyleamount' => { 510 => 'ToggleStyleAmount', 512 => 'ToggleStyleAmount' }, - 'togglestyledigest' => { 510 => 'ToggleStyleDigest', 512 => 'ToggleStyleDigest' }, + 'tint' => { 402 => 'player.movie.visual.tint', 511 => 'Tint', 513 => 'Tint' }, + 'title' => { 122 => 0xa436, 160 => 'Title', 333 => 'Title', 337 => 'Title', 348 => 0x65, 399 => 'Title', 400 => ['titl',"\xa9nam"], 402 => 'title', 408 => ['titl',"\xa9nam"], 514 => 'title', 527 => 'Title', 538 => 'Title' }, + 'togglestyleamount' => { 511 => 'ToggleStyleAmount', 513 => 'ToggleStyleAmount' }, + 'togglestyledigest' => { 511 => 'ToggleStyleDigest', 513 => 'ToggleStyleDigest' }, 'tonecomp' => { 239 => 0x81 }, - 'tonecurve' => { 76 => 0x1, 382 => 0x402, 510 => 'ToneCurve', 512 => 'ToneCurve' }, + 'tonecurve' => { 76 => 0x1, 383 => 0x402, 511 => 'ToneCurve', 513 => 'ToneCurve' }, 'tonecurveactive' => { 111 => 0x110 }, - 'tonecurveadobergb' => { 421 => 0xa043 }, - 'tonecurveadobergbdefault' => { 421 => 0xa041 }, - 'tonecurveblue' => { 510 => 'ToneCurveBlue', 512 => 'ToneCurveBlue' }, - 'tonecurvebluex' => { 485 => 0x9003 }, - 'tonecurvebluey' => { 485 => 0x9007 }, + 'tonecurveadobergb' => { 422 => 0xa043 }, + 'tonecurveadobergbdefault' => { 422 => 0xa041 }, + 'tonecurveblue' => { 511 => 'ToneCurveBlue', 513 => 'ToneCurveBlue' }, + 'tonecurvebluex' => { 486 => 0x9003 }, + 'tonecurvebluey' => { 486 => 0x9007 }, 'tonecurvebrightness' => { 106 => 0x20410 }, - 'tonecurvebrightnessx' => { 485 => 0x9000 }, - 'tonecurvebrightnessy' => { 485 => 0x9004 }, + 'tonecurvebrightnessx' => { 486 => 0x9000 }, + 'tonecurvebrightnessy' => { 486 => 0x9004 }, 'tonecurvecolorspace' => { 110 => 0x0 }, 'tonecurvecontrast' => { 106 => 0x20411 }, - 'tonecurvegreen' => { 510 => 'ToneCurveGreen', 512 => 'ToneCurveGreen' }, - 'tonecurvegreenx' => { 485 => 0x9002 }, - 'tonecurvegreeny' => { 485 => 0x9006 }, + 'tonecurvegreen' => { 511 => 'ToneCurveGreen', 513 => 'ToneCurveGreen' }, + 'tonecurvegreenx' => { 486 => 0x9002 }, + 'tonecurvegreeny' => { 486 => 0x9006 }, 'tonecurveinputrange' => { 110 => 0x3 }, 'tonecurveinterpolation' => { 111 => 0x159 }, 'tonecurvemode' => { 111 => 0x113 }, - 'tonecurvename' => { 510 => 'ToneCurveName', 512 => 'ToneCurveName' }, - 'tonecurvename2012' => { 510 => 'ToneCurveName2012', 512 => 'ToneCurveName2012' }, + 'tonecurvename' => { 511 => 'ToneCurveName', 513 => 'ToneCurveName' }, + 'tonecurvename2012' => { 511 => 'ToneCurveName2012', 513 => 'ToneCurveName2012' }, 'tonecurveoriginal' => { 106 => '0x20400.1' }, 'tonecurveoutputrange' => { 110 => 0x5 }, 'tonecurveprofilename' => { 141 => 0x1391 }, 'tonecurveproperty' => { 111 => 0x3c }, - 'tonecurvepv2012' => { 510 => 'ToneCurvePV2012', 512 => 'ToneCurvePV2012' }, - 'tonecurvepv2012blue' => { 510 => 'ToneCurvePV2012Blue', 512 => 'ToneCurvePV2012Blue' }, - 'tonecurvepv2012green' => { 510 => 'ToneCurvePV2012Green', 512 => 'ToneCurvePV2012Green' }, - 'tonecurvepv2012red' => { 510 => 'ToneCurvePV2012Red', 512 => 'ToneCurvePV2012Red' }, - 'tonecurvered' => { 510 => 'ToneCurveRed', 512 => 'ToneCurveRed' }, - 'tonecurveredx' => { 485 => 0x9001 }, - 'tonecurveredy' => { 485 => 0x9005 }, - 'tonecurves' => { 382 => 0x403 }, + 'tonecurvepv2012' => { 511 => 'ToneCurvePV2012', 513 => 'ToneCurvePV2012' }, + 'tonecurvepv2012blue' => { 511 => 'ToneCurvePV2012Blue', 513 => 'ToneCurvePV2012Blue' }, + 'tonecurvepv2012green' => { 511 => 'ToneCurvePV2012Green', 513 => 'ToneCurvePV2012Green' }, + 'tonecurvepv2012red' => { 511 => 'ToneCurvePV2012Red', 513 => 'ToneCurvePV2012Red' }, + 'tonecurvered' => { 511 => 'ToneCurveRed', 513 => 'ToneCurveRed' }, + 'tonecurveredx' => { 486 => 0x9001 }, + 'tonecurveredy' => { 486 => 0x9005 }, + 'tonecurves' => { 383 => 0x403 }, 'tonecurveshape' => { 110 => 0x1 }, - 'tonecurvesrgb' => { 421 => 0xa042 }, - 'tonecurvesrgbdefault' => { 421 => 0xa040 }, + 'tonecurvesrgb' => { 422 => 0xa042 }, + 'tonecurvesrgbdefault' => { 422 => 0xa040 }, 'tonecurvex' => { 110 => 0xa }, 'tonecurvey' => { 110 => 0xb }, - 'tonelevel' => { 323 => 0x52e }, - 'tonemap' => { 244 => 0x26a }, - 'tonemapstrength' => { 510 => 'ToneMapStrength', 512 => 'ToneMapStrength' }, - 'toningeffect' => { 59 => 0xf, 239 => 0xb3, 254 => 0x38, 255 => 0x40, 256 => 0x48, 414 => 0x1015 }, + 'tonelevel' => { 324 => 0x52e }, + 'tonemap' => { 244 => 0x26a, 245 => 0x26a }, + 'tonemapstrength' => { 511 => 'ToneMapStrength', 513 => 'ToneMapStrength' }, + 'toningeffect' => { 59 => 0xf, 239 => 0xb3, 255 => 0x38, 256 => 0x40, 257 => 0x48, 415 => 0x1015 }, 'toningeffectauto' => { 73 => 0xa4 }, 'toningeffectfaithful' => { 72 => 0x74, 73 => 0x74 }, 'toningeffectlandscape' => { 72 => 0x44, 73 => 0x44 }, @@ -6941,62 +6952,62 @@ my %tagLookup = ( 'toningeffectuserdef1' => { 72 => 0xa4, 73 => 0xbc }, 'toningeffectuserdef2' => { 72 => 0xbc, 73 => 0xd4 }, 'toningeffectuserdef3' => { 72 => 0xd4, 73 => 0xec }, - 'toningsaturation' => { 254 => 0x39, 255 => 0x41, 256 => 0x49 }, + 'toningsaturation' => { 255 => 0x39, 256 => 0x41, 257 => 0x49 }, 'totalzoom' => { 143 => 0x62 }, - 'touchae' => { 347 => 0xab }, - 'track' => { 399 => "\xa9trk", 407 => "\xa9trk" }, - 'trackcreatedate' => { 406 => 0x1 }, - 'trackmodifydate' => { 406 => 0x2 }, - 'tracknumber' => { 399 => 'trkn', 539 => 'trackNumber' }, - 'tracks' => { 539 => 'Tracks' }, - 'tracksframerate' => { 539 => [\'Tracks','TracksFrameRate'] }, - 'tracksmarkers' => { 539 => [\'Tracks','TracksMarkers'] }, - 'tracksmarkerscomment' => { 539 => [\'Tracks','TracksMarkersComment'] }, - 'tracksmarkerscuepointparams' => { 539 => [\'Tracks','TracksMarkersCuePointParams'] }, - 'tracksmarkerscuepointparamskey' => { 539 => [\'Tracks','TracksMarkersCuePointParamsKey'] }, - 'tracksmarkerscuepointparamsvalue' => { 539 => [\'Tracks','TracksMarkersCuePointParamsValue'] }, - 'tracksmarkerscuepointtype' => { 539 => [\'Tracks','TracksMarkersCuePointType'] }, - 'tracksmarkersduration' => { 539 => [\'Tracks','TracksMarkersDuration'] }, - 'tracksmarkerslocation' => { 539 => [\'Tracks','TracksMarkersLocation'] }, - 'tracksmarkersname' => { 539 => [\'Tracks','TracksMarkersName'] }, - 'tracksmarkersprobability' => { 539 => [\'Tracks','TracksMarkersProbability'] }, - 'tracksmarkersspeaker' => { 539 => [\'Tracks','TracksMarkersSpeaker'] }, - 'tracksmarkersstarttime' => { 539 => [\'Tracks','TracksMarkersStartTime'] }, - 'tracksmarkerstarget' => { 539 => [\'Tracks','TracksMarkersTarget'] }, - 'tracksmarkerstype' => { 539 => [\'Tracks','TracksMarkersType'] }, - 'trackstrackname' => { 539 => [\'Tracks','TracksTrackName'] }, - 'trackstracktype' => { 539 => [\'Tracks','TracksTrackType'] }, - 'tracktype' => { 407 => 'kgtt' }, + 'touchae' => { 348 => 0xab }, + 'track' => { 400 => "\xa9trk", 408 => "\xa9trk" }, + 'trackcreatedate' => { 407 => 0x1 }, + 'trackmodifydate' => { 407 => 0x2 }, + 'tracknumber' => { 400 => 'trkn', 540 => 'trackNumber' }, + 'tracks' => { 540 => 'Tracks' }, + 'tracksframerate' => { 540 => [\'Tracks','TracksFrameRate'] }, + 'tracksmarkers' => { 540 => [\'Tracks','TracksMarkers'] }, + 'tracksmarkerscomment' => { 540 => [\'Tracks','TracksMarkersComment'] }, + 'tracksmarkerscuepointparams' => { 540 => [\'Tracks','TracksMarkersCuePointParams'] }, + 'tracksmarkerscuepointparamskey' => { 540 => [\'Tracks','TracksMarkersCuePointParamsKey'] }, + 'tracksmarkerscuepointparamsvalue' => { 540 => [\'Tracks','TracksMarkersCuePointParamsValue'] }, + 'tracksmarkerscuepointtype' => { 540 => [\'Tracks','TracksMarkersCuePointType'] }, + 'tracksmarkersduration' => { 540 => [\'Tracks','TracksMarkersDuration'] }, + 'tracksmarkerslocation' => { 540 => [\'Tracks','TracksMarkersLocation'] }, + 'tracksmarkersname' => { 540 => [\'Tracks','TracksMarkersName'] }, + 'tracksmarkersprobability' => { 540 => [\'Tracks','TracksMarkersProbability'] }, + 'tracksmarkersspeaker' => { 540 => [\'Tracks','TracksMarkersSpeaker'] }, + 'tracksmarkersstarttime' => { 540 => [\'Tracks','TracksMarkersStartTime'] }, + 'tracksmarkerstarget' => { 540 => [\'Tracks','TracksMarkersTarget'] }, + 'tracksmarkerstype' => { 540 => [\'Tracks','TracksMarkersType'] }, + 'trackstrackname' => { 540 => [\'Tracks','TracksTrackName'] }, + 'trackstracktype' => { 540 => [\'Tracks','TracksTrackType'] }, + 'tracktype' => { 408 => 'kgtt' }, 'trailer' => { 123 => 'Trailer' }, 'trailersignature' => { 167 => 'zmie' }, - 'transcript' => { 524 => 'Transcript' }, - 'transcriptlink' => { 524 => 'TranscriptLink' }, - 'transcriptlinklink' => { 524 => [\'TranscriptLink','TranscriptLinkLink'] }, - 'transcriptlinklinkqualifier' => { 524 => [\'TranscriptLink','TranscriptLinkLinkQualifier'] }, - 'transferfunction' => { 122 => 0x12d, 535 => 'TransferFunction' }, + 'transcript' => { 525 => 'Transcript' }, + 'transcriptlink' => { 525 => 'TranscriptLink' }, + 'transcriptlinklink' => { 525 => [\'TranscriptLink','TranscriptLinkLink'] }, + 'transcriptlinklinkqualifier' => { 525 => [\'TranscriptLink','TranscriptLinkLinkQualifier'] }, + 'transferfunction' => { 122 => 0x12d, 536 => 'TransferFunction' }, 'transfertimenormal' => { 141 => 0x1888 }, 'transfertimetest' => { 141 => 0x1889 }, - 'transform' => { 347 => [0x8012,0x59] }, - 'transformation' => { 525 => 'Transformation' }, - 'transmissionreference' => { 527 => 'TransmissionReference' }, - 'trapped' => { 332 => 'Trapped', 526 => 'Trapped' }, + 'transform' => { 348 => [0x8012,0x59] }, + 'transformation' => { 526 => 'Transformation' }, + 'transmissionreference' => { 528 => 'TransmissionReference' }, + 'trapped' => { 333 => 'Trapped', 527 => 'Trapped' }, 'trashbuttonfunction' => { 87 => 0x710 }, - 'travelday' => { 347 => 0x36 }, - 'treble' => { 401 => 'player.movie.audio.treble' }, - 'triggermode' => { 408 => 0x6, 409 => 0x34, 410 => 0x34 }, + 'travelday' => { 348 => 0x36 }, + 'treble' => { 402 => 'player.movie.audio.treble' }, + 'triggermode' => { 409 => 0x6, 410 => 0x34, 411 => 0x34 }, 'tstop' => { 122 => 0xc772 }, - 'ttl_da_adown' => { 370 => 0x5 }, - 'ttl_da_aup' => { 370 => 0x4 }, - 'ttl_da_bdown' => { 370 => 0x7 }, - 'ttl_da_bup' => { 370 => 0x6 }, - 'tungstenawb' => { 360 => 0x1 }, - 'tvepisode' => { 399 => 'tves' }, - 'tvepisodeid' => { 399 => 'tven' }, - 'tvexposuretimesetting' => { 363 => 0x12 }, - 'tvnetworkname' => { 399 => 'tvnn' }, - 'tvseason' => { 399 => 'tvsn' }, - 'tvshow' => { 399 => 'tvsh' }, - 'type' => { 494 => 'Type', 513 => 'type', 534 => 'type' }, + 'ttl_da_adown' => { 371 => 0x5 }, + 'ttl_da_aup' => { 371 => 0x4 }, + 'ttl_da_bdown' => { 371 => 0x7 }, + 'ttl_da_bup' => { 371 => 0x6 }, + 'tungstenawb' => { 361 => 0x1 }, + 'tvepisode' => { 400 => 'tves' }, + 'tvepisodeid' => { 400 => 'tven' }, + 'tvexposuretimesetting' => { 364 => 0x12 }, + 'tvnetworkname' => { 400 => 'tvnn' }, + 'tvseason' => { 400 => 'tvsn' }, + 'tvshow' => { 400 => 'tvsh' }, + 'type' => { 495 => 'Type', 514 => 'type', 535 => 'type' }, 'typestatus' => { 121 => [\'Identification','IdentificationTypeStatus'] }, 'uniquecameramodel' => { 122 => 0xc614 }, 'uniquedocumentid' => { 134 => 0xbb }, @@ -7007,17 +7018,17 @@ my %tagLookup = ( 'uniquematrixfluorescent' => { 141 => 0x7e6 }, 'uniquematrixtungsten' => { 141 => 0x7e5 }, 'uniqueobjectname' => { 135 => 0x64 }, - 'units' => { 495 => 'Units' }, - 'unknown_aacr' => { 399 => 'AACR' }, - 'unknown_cdek' => { 399 => 'CDEK' }, - 'unknown_cdet' => { 399 => 'CDET' }, - 'unknownblock' => { 382 => 0x405 }, - 'unknownblock1' => { 327 => 0x635 }, - 'unknownblock2' => { 327 => 0x636 }, - 'unknownblock3' => { 327 => 0x1103 }, - 'unknownblock4' => { 327 => 0x1104 }, + 'units' => { 496 => 'Units' }, + 'unknown_aacr' => { 400 => 'AACR' }, + 'unknown_cdek' => { 400 => 'CDEK' }, + 'unknown_cdet' => { 400 => 'CDET' }, + 'unknownblock' => { 383 => 0x405 }, + 'unknownblock1' => { 328 => 0x635 }, + 'unknownblock2' => { 328 => 0x636 }, + 'unknownblock3' => { 328 => 0x1103 }, + 'unknownblock4' => { 328 => 0x1104 }, 'unknowncontrast' => { 112 => 0x45 }, - 'unknowndate' => { 391 => 0x212 }, + 'unknowndate' => { 392 => 0x212 }, 'unknownev' => { 141 => 0x1 }, 'unknownlinear' => { 112 => 0x46 }, 'unknownnumber' => { 100 => 0x180b }, @@ -7028,205 +7039,205 @@ my %tagLookup = ( 'unknownrawshadow' => { 112 => 0x84 }, 'unknownrawshadowpoint' => { 112 => 0x49 }, 'unknownsharpness' => { 112 => 0x47 }, - 'unknowntags' => { 407 => 'TAGS' }, + 'unknowntags' => { 408 => 'TAGS' }, 'unknowntemperature' => { 124 => 0x4 }, - 'unknownthumbnail' => { 407 => 'thmb' }, - 'unsharp1color' => { 301 => 0x13 }, - 'unsharp1halowidth' => { 301 => 0x19 }, - 'unsharp1intensity' => { 301 => 0x17 }, - 'unsharp1threshold' => { 301 => 0x1b }, - 'unsharp2color' => { 301 => 0x2e }, - 'unsharp2halowidth' => { 301 => 0x34 }, - 'unsharp2intensity' => { 301 => 0x32 }, - 'unsharp2threshold' => { 301 => 0x36 }, - 'unsharp3color' => { 301 => 0x49 }, - 'unsharp3halowidth' => { 301 => 0x4f }, - 'unsharp3intensity' => { 301 => 0x4d }, - 'unsharp3threshold' => { 301 => 0x51 }, - 'unsharp4color' => { 301 => 0x64 }, - 'unsharp4halowidth' => { 301 => 0x6a }, - 'unsharp4intensity' => { 301 => 0x68 }, - 'unsharp4threshold' => { 301 => 0x6c }, - 'unsharpcount' => { 301 => 0x0 }, - 'unsharpmask' => { 112 => 0x90, 296 => 0x76a43200 }, + 'unknownthumbnail' => { 408 => 'thmb' }, + 'unsharp1color' => { 302 => 0x13 }, + 'unsharp1halowidth' => { 302 => 0x19 }, + 'unsharp1intensity' => { 302 => 0x17 }, + 'unsharp1threshold' => { 302 => 0x1b }, + 'unsharp2color' => { 302 => 0x2e }, + 'unsharp2halowidth' => { 302 => 0x34 }, + 'unsharp2intensity' => { 302 => 0x32 }, + 'unsharp2threshold' => { 302 => 0x36 }, + 'unsharp3color' => { 302 => 0x49 }, + 'unsharp3halowidth' => { 302 => 0x4f }, + 'unsharp3intensity' => { 302 => 0x4d }, + 'unsharp3threshold' => { 302 => 0x51 }, + 'unsharp4color' => { 302 => 0x64 }, + 'unsharp4halowidth' => { 302 => 0x6a }, + 'unsharp4intensity' => { 302 => 0x68 }, + 'unsharp4threshold' => { 302 => 0x6c }, + 'unsharpcount' => { 302 => 0x0 }, + 'unsharpmask' => { 112 => 0x90, 297 => 0x76a43200 }, 'unsharpmaskfineness' => { 106 => 0x20309 }, 'unsharpmaskstrength' => { 106 => 0x20308 }, 'unsharpmaskthreshold' => { 106 => 0x2030a }, - 'uprightcentermode' => { 510 => 'UprightCenterMode', 512 => 'UprightCenterMode' }, - 'uprightcenternormx' => { 510 => 'UprightCenterNormX', 512 => 'UprightCenterNormX' }, - 'uprightcenternormy' => { 510 => 'UprightCenterNormY', 512 => 'UprightCenterNormY' }, - 'uprightdependentdigest' => { 510 => 'UprightDependentDigest', 512 => 'UprightDependentDigest' }, - 'uprightfocallength35mm' => { 510 => 'UprightFocalLength35mm', 512 => 'UprightFocalLength35mm' }, - 'uprightfocalmode' => { 510 => 'UprightFocalMode', 512 => 'UprightFocalMode' }, - 'uprightfoursegments_0' => { 510 => 'UprightFourSegments_0', 512 => 'UprightFourSegments_0' }, - 'uprightfoursegments_1' => { 510 => 'UprightFourSegments_1', 512 => 'UprightFourSegments_1' }, - 'uprightfoursegments_2' => { 510 => 'UprightFourSegments_2', 512 => 'UprightFourSegments_2' }, - 'uprightfoursegments_3' => { 510 => 'UprightFourSegments_3', 512 => 'UprightFourSegments_3' }, - 'uprightfoursegmentscount' => { 510 => 'UprightFourSegmentsCount', 512 => 'UprightFourSegmentsCount' }, - 'uprightguideddependentdigest' => { 510 => 'UprightGuidedDependentDigest', 512 => 'UprightGuidedDependentDigest' }, - 'uprightpreview' => { 510 => 'UprightPreview', 512 => 'UprightPreview' }, - 'uprighttransform_0' => { 510 => 'UprightTransform_0', 512 => 'UprightTransform_0' }, - 'uprighttransform_1' => { 510 => 'UprightTransform_1', 512 => 'UprightTransform_1' }, - 'uprighttransform_2' => { 510 => 'UprightTransform_2', 512 => 'UprightTransform_2' }, - 'uprighttransform_3' => { 510 => 'UprightTransform_3', 512 => 'UprightTransform_3' }, - 'uprighttransform_4' => { 510 => 'UprightTransform_4', 512 => 'UprightTransform_4' }, - 'uprighttransform_5' => { 510 => 'UprightTransform_5', 512 => 'UprightTransform_5' }, - 'uprighttransformcount' => { 510 => 'UprightTransformCount', 512 => 'UprightTransformCount' }, - 'uprightversion' => { 510 => 'UprightVersion', 512 => 'UprightVersion' }, - 'urgency' => { 134 => 0xa, 527 => 'Urgency' }, - 'url' => { 160 => 'URL', 336 => 'URL', 396 => 0x40b, 529 => 'url' }, - 'url_list' => { 396 => 0x41e }, - 'urla-platform' => { 529 => [\'url','urlA-platform'] }, - 'urlurl' => { 529 => [\'url','urlUrl'] }, + 'uprightcentermode' => { 511 => 'UprightCenterMode', 513 => 'UprightCenterMode' }, + 'uprightcenternormx' => { 511 => 'UprightCenterNormX', 513 => 'UprightCenterNormX' }, + 'uprightcenternormy' => { 511 => 'UprightCenterNormY', 513 => 'UprightCenterNormY' }, + 'uprightdependentdigest' => { 511 => 'UprightDependentDigest', 513 => 'UprightDependentDigest' }, + 'uprightfocallength35mm' => { 511 => 'UprightFocalLength35mm', 513 => 'UprightFocalLength35mm' }, + 'uprightfocalmode' => { 511 => 'UprightFocalMode', 513 => 'UprightFocalMode' }, + 'uprightfoursegments_0' => { 511 => 'UprightFourSegments_0', 513 => 'UprightFourSegments_0' }, + 'uprightfoursegments_1' => { 511 => 'UprightFourSegments_1', 513 => 'UprightFourSegments_1' }, + 'uprightfoursegments_2' => { 511 => 'UprightFourSegments_2', 513 => 'UprightFourSegments_2' }, + 'uprightfoursegments_3' => { 511 => 'UprightFourSegments_3', 513 => 'UprightFourSegments_3' }, + 'uprightfoursegmentscount' => { 511 => 'UprightFourSegmentsCount', 513 => 'UprightFourSegmentsCount' }, + 'uprightguideddependentdigest' => { 511 => 'UprightGuidedDependentDigest', 513 => 'UprightGuidedDependentDigest' }, + 'uprightpreview' => { 511 => 'UprightPreview', 513 => 'UprightPreview' }, + 'uprighttransform_0' => { 511 => 'UprightTransform_0', 513 => 'UprightTransform_0' }, + 'uprighttransform_1' => { 511 => 'UprightTransform_1', 513 => 'UprightTransform_1' }, + 'uprighttransform_2' => { 511 => 'UprightTransform_2', 513 => 'UprightTransform_2' }, + 'uprighttransform_3' => { 511 => 'UprightTransform_3', 513 => 'UprightTransform_3' }, + 'uprighttransform_4' => { 511 => 'UprightTransform_4', 513 => 'UprightTransform_4' }, + 'uprighttransform_5' => { 511 => 'UprightTransform_5', 513 => 'UprightTransform_5' }, + 'uprighttransformcount' => { 511 => 'UprightTransformCount', 513 => 'UprightTransformCount' }, + 'uprightversion' => { 511 => 'UprightVersion', 513 => 'UprightVersion' }, + 'urgency' => { 134 => 0xa, 528 => 'Urgency' }, + 'url' => { 160 => 'URL', 337 => 'URL', 397 => 0x40b, 530 => 'url' }, + 'url_list' => { 397 => 0x41e }, + 'urla-platform' => { 530 => [\'url','urlA-platform'] }, + 'urlurl' => { 530 => [\'url','urlUrl'] }, 'usablemeteringmodes' => { 87 => 0x10a }, 'usableshootingmodes' => { 87 => 0x109 }, - 'usage' => { 530 => 'usage' }, - 'usageterms' => { 543 => 'UsageTerms' }, - 'usbpowerdelivery' => { 244 => 0x762, 245 => 0x664, 246 => 0x694, 247 => 0x6fc }, - 'usedialwithouthold' => { 319 => 0xbf, 320 => 0xbf, 321 => 0xbf }, - 'useguidelines' => { 508 => 'useGuidelines' }, - 'usepanoramaviewer' => { 498 => 'UsePanoramaViewer' }, - 'usercollection' => { 401 => 'collection.user' }, - 'usercomment' => { 100 => 0x805, 122 => 0x9286, 516 => 'UserComment' }, + 'usage' => { 531 => 'usage' }, + 'usageterms' => { 544 => 'UsageTerms' }, + 'usbpowerdelivery' => { 244 => 0x762, 245 => 0x772, 246 => 0x664, 247 => 0x694, 248 => 0x6fc }, + 'usedialwithouthold' => { 320 => 0xbf, 321 => 0xbf, 322 => 0xbf }, + 'useguidelines' => { 509 => 'useGuidelines' }, + 'usepanoramaviewer' => { 499 => 'UsePanoramaViewer' }, + 'usercollection' => { 402 => 'collection.user' }, + 'usercomment' => { 100 => 0x805, 122 => 0x9286, 517 => 'UserComment' }, 'userdef1picturestyle' => { 19 => 0x10c, 72 => 0xd8, 73 => 0xf0 }, 'userdef2picturestyle' => { 19 => 0x10e, 72 => 0xda, 73 => 0xf2 }, 'userdef3picturestyle' => { 19 => 0x110, 72 => 0xdc, 73 => 0xf4 }, - 'userfields' => { 503 => 'UserFields' }, - 'userlabel' => { 408 => 0x2b, 409 => 0x5a, 410 => 0x68 }, - 'userprofile' => { 342 => 0x302, 346 => 0x34c, 349 => 0x3038 }, - 'userrating' => { 401 => 'rating.user', 407 => 'urat' }, + 'userfields' => { 504 => 'UserFields' }, + 'userlabel' => { 409 => 0x2b, 410 => 0x5a, 411 => 0x68 }, + 'userprofile' => { 343 => 0x302, 347 => 0x34c, 350 => 0x3038 }, + 'userrating' => { 402 => 'rating.user', 408 => 'urat' }, 'usmlenselectronicmf' => { 2 => 0x7, 86 => 0x7, 87 => 0x501 }, - 'uspsnumber' => { 529 => 'uspsNumber' }, + 'uspsnumber' => { 530 => 'uspsNumber' }, 'utmeasting' => { 171 => 'Easting' }, 'utmmapdatum' => { 171 => 'Datum' }, 'utmnorthing' => { 171 => 'Northing' }, 'utmzone' => { 171 => 'Zone' }, - 'uuid' => { 510 => 'UUID', 512 => 'UUID' }, - 'uv-irfiltercorrection' => { 342 => 0x325 }, - 'validbits' => { 327 => 0x611, 328 => 0x102c }, - 'validcropcorners' => { 337 => 'ValidCropCorners' }, - 'validpixeldepth' => { 331 => 0x611 }, - 'variablelowpassfilter' => { 448 => 0x2028 }, + 'uuid' => { 511 => 'UUID', 513 => 'UUID' }, + 'uv-irfiltercorrection' => { 343 => 0x325 }, + 'validbits' => { 328 => 0x611, 329 => 0x102c }, + 'validcropcorners' => { 338 => 'ValidCropCorners' }, + 'validpixeldepth' => { 332 => 0x611 }, + 'variablelowpassfilter' => { 449 => 0x2028 }, 'variousmodes' => { 143 => 0x26 }, 'variousmodes2' => { 143 => 0x3a }, 'variprogram' => { 239 => 0xab }, 'varraydacnominalvalues' => { 141 => 0x191e }, - 'vendor' => { 407 => 'vndr' }, - 'vendorinfo' => { 489 => 'VendorInfo' }, - 'vendorinfomanufacturer' => { 489 => [\'VendorInfo','VendorInfoManufacturer'] }, - 'vendorinfomodel' => { 489 => [\'VendorInfo','VendorInfoModel'] }, - 'vendorinfonotes' => { 489 => [\'VendorInfo','VendorInfoNotes'] }, + 'vendor' => { 408 => 'vndr' }, + 'vendorinfo' => { 490 => 'VendorInfo' }, + 'vendorinfomanufacturer' => { 490 => [\'VendorInfo','VendorInfoManufacturer'] }, + 'vendorinfomodel' => { 490 => [\'VendorInfo','VendorInfoModel'] }, + 'vendorinfonotes' => { 490 => [\'VendorInfo','VendorInfoNotes'] }, 'verbatimidentification' => { 121 => [\'Identification','IdentificationVerbatimIdentification'] }, - 'version' => { 130 => 0x0, 337 => 'Version', 398 => 'Version', 401 => 'version', 510 => 'Version', 512 => 'Version', 521 => 'Version' }, - 'versioncreatedate' => { 485 => 0xd100 }, - 'versionid' => { 540 => 'VersionID' }, - 'versionidentifier' => { 529 => 'versionIdentifier' }, - 'versionmodifydate' => { 485 => 0xd101 }, - 'versions' => { 540 => 'Versions' }, - 'versionscomments' => { 540 => [\'Versions','VersionsComments'] }, - 'versionsevent' => { 540 => [\'Versions','VersionsEvent'] }, - 'versionseventaction' => { 540 => [\'Versions','VersionsEventAction'] }, - 'versionseventchanged' => { 540 => [\'Versions','VersionsEventChanged'] }, - 'versionseventinstanceid' => { 540 => [\'Versions','VersionsEventInstanceID'] }, - 'versionseventparameters' => { 540 => [\'Versions','VersionsEventParameters'] }, - 'versionseventsoftwareagent' => { 540 => [\'Versions','VersionsEventSoftwareAgent'] }, - 'versionseventwhen' => { 540 => [\'Versions','VersionsEventWhen'] }, - 'versionsmodifier' => { 540 => [\'Versions','VersionsModifier'] }, - 'versionsmodifydate' => { 540 => [\'Versions','VersionsModifyDate'] }, - 'versionsversion' => { 540 => [\'Versions','VersionsVersion'] }, - 'verticalafonbutton' => { 303 => '3.2', 304 => '47.2', 306 => '79.1', 320 => 0x11d, 321 => 0x135 }, + 'version' => { 130 => 0x0, 338 => 'Version', 399 => 'Version', 402 => 'version', 511 => 'Version', 513 => 'Version', 522 => 'Version' }, + 'versioncreatedate' => { 486 => 0xd100 }, + 'versionid' => { 541 => 'VersionID' }, + 'versionidentifier' => { 530 => 'versionIdentifier' }, + 'versionmodifydate' => { 486 => 0xd101 }, + 'versions' => { 541 => 'Versions' }, + 'versionscomments' => { 541 => [\'Versions','VersionsComments'] }, + 'versionsevent' => { 541 => [\'Versions','VersionsEvent'] }, + 'versionseventaction' => { 541 => [\'Versions','VersionsEventAction'] }, + 'versionseventchanged' => { 541 => [\'Versions','VersionsEventChanged'] }, + 'versionseventinstanceid' => { 541 => [\'Versions','VersionsEventInstanceID'] }, + 'versionseventparameters' => { 541 => [\'Versions','VersionsEventParameters'] }, + 'versionseventsoftwareagent' => { 541 => [\'Versions','VersionsEventSoftwareAgent'] }, + 'versionseventwhen' => { 541 => [\'Versions','VersionsEventWhen'] }, + 'versionsmodifier' => { 541 => [\'Versions','VersionsModifier'] }, + 'versionsmodifydate' => { 541 => [\'Versions','VersionsModifyDate'] }, + 'versionsversion' => { 541 => [\'Versions','VersionsVersion'] }, + 'verticalafonbutton' => { 304 => '3.2', 305 => '47.2', 307 => '79.1', 321 => 0x11d, 322 => 0x135 }, 'verticalclockoverlaps' => { 141 => 0x412 }, - 'verticalfuncbutton' => { 304 => '42.2', 306 => '67.1', 320 => 0x115, 321 => 0x12d }, - 'verticalfuncbuttonplaybackmode' => { 320 => 0x1b7, 321 => 0x1cf }, - 'verticalfuncbuttonplusdials' => { 304 => '43.1' }, - 'verticalfuncplusdials' => { 306 => '68.1' }, - 'verticalisobutton' => { 247 => 0x792 }, - 'verticalmovieafonbutton' => { 320 => 0x1f9, 321 => 0x211 }, - 'verticalmoviefuncbutton' => { 320 => 0x1e1, 321 => 0x1f9 }, - 'verticalmultiselector' => { 304 => '42.1', 306 => '66.1', 307 => '66.1', 317 => '66.1', 320 => 0x18f, 321 => 0x1a7 }, - 'verticalmultiselectorplaybackmode' => { 320 => 0x125, 321 => 0x13d }, + 'verticalfuncbutton' => { 305 => '42.2', 307 => '67.1', 321 => 0x115, 322 => 0x12d }, + 'verticalfuncbuttonplaybackmode' => { 321 => 0x1b7, 322 => 0x1cf }, + 'verticalfuncbuttonplusdials' => { 305 => '43.1' }, + 'verticalfuncplusdials' => { 307 => '68.1' }, + 'verticalisobutton' => { 248 => 0x792 }, + 'verticalmovieafonbutton' => { 321 => 0x1f9, 322 => 0x211 }, + 'verticalmoviefuncbutton' => { 321 => 0x1e1, 322 => 0x1f9 }, + 'verticalmultiselector' => { 305 => '42.1', 307 => '66.1', 308 => '66.1', 318 => '66.1', 321 => 0x18f, 322 => 0x1a7 }, + 'verticalmultiselectorplaybackmode' => { 321 => 0x125, 322 => 0x13d }, 'vfdisplayillumination' => { 2 => 0x11, 87 => [0x510,0x51d] }, - 'vibrance' => { 504 => 'Vibrance', 510 => 'Vibrance', 512 => 'Vibrance' }, - 'vibrationreduction' => { 267 => [0x75,0x82,0x1ae], 275 => '586.1', 282 => '590.2', 286 => 0x4 }, - 'videoalphamode' => { 539 => 'videoAlphaMode' }, - 'videoalphapremultiplecolor' => { 539 => 'videoAlphaPremultipleColor' }, - 'videoalphapremultiplecolora' => { 539 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorA'] }, - 'videoalphapremultiplecolorb' => { 539 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorB'] }, - 'videoalphapremultiplecolorblack' => { 539 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorBlack'] }, - 'videoalphapremultiplecolorblue' => { 539 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorBlue'] }, - 'videoalphapremultiplecolorcyan' => { 539 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorCyan'] }, - 'videoalphapremultiplecolorgray' => { 539 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorGray'] }, - 'videoalphapremultiplecolorgreen' => { 539 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorGreen'] }, - 'videoalphapremultiplecolorl' => { 539 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorL'] }, - 'videoalphapremultiplecolormagenta' => { 539 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorMagenta'] }, - 'videoalphapremultiplecolormode' => { 539 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorMode'] }, - 'videoalphapremultiplecolorred' => { 539 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorRed'] }, - 'videoalphapremultiplecolorswatchname' => { 539 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorSwatchName'] }, - 'videoalphapremultiplecolortint' => { 539 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorTint'] }, - 'videoalphapremultiplecolortype' => { 539 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorType'] }, - 'videoalphapremultiplecoloryellow' => { 539 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorYellow'] }, - 'videoalphaunityistransparent' => { 539 => 'videoAlphaUnityIsTransparent' }, - 'videobitrate' => { 524 => 'videoBitRate' }, - 'videobitratemode' => { 524 => 'videoBitRateMode' }, - 'videoburstmode' => { 347 => 0xbb }, - 'videoburstresolution' => { 347 => 0xb3 }, + 'vibrance' => { 505 => 'Vibrance', 511 => 'Vibrance', 513 => 'Vibrance' }, + 'vibrationreduction' => { 268 => [0x75,0x82,0x1ae], 276 => '586.1', 283 => '590.2', 287 => 0x4 }, + 'videoalphamode' => { 540 => 'videoAlphaMode' }, + 'videoalphapremultiplecolor' => { 540 => 'videoAlphaPremultipleColor' }, + 'videoalphapremultiplecolora' => { 540 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorA'] }, + 'videoalphapremultiplecolorb' => { 540 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorB'] }, + 'videoalphapremultiplecolorblack' => { 540 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorBlack'] }, + 'videoalphapremultiplecolorblue' => { 540 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorBlue'] }, + 'videoalphapremultiplecolorcyan' => { 540 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorCyan'] }, + 'videoalphapremultiplecolorgray' => { 540 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorGray'] }, + 'videoalphapremultiplecolorgreen' => { 540 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorGreen'] }, + 'videoalphapremultiplecolorl' => { 540 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorL'] }, + 'videoalphapremultiplecolormagenta' => { 540 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorMagenta'] }, + 'videoalphapremultiplecolormode' => { 540 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorMode'] }, + 'videoalphapremultiplecolorred' => { 540 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorRed'] }, + 'videoalphapremultiplecolorswatchname' => { 540 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorSwatchName'] }, + 'videoalphapremultiplecolortint' => { 540 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorTint'] }, + 'videoalphapremultiplecolortype' => { 540 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorType'] }, + 'videoalphapremultiplecoloryellow' => { 540 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorYellow'] }, + 'videoalphaunityistransparent' => { 540 => 'videoAlphaUnityIsTransparent' }, + 'videobitrate' => { 525 => 'videoBitRate' }, + 'videobitratemode' => { 525 => 'videoBitRateMode' }, + 'videoburstmode' => { 348 => 0xbb }, + 'videoburstresolution' => { 348 => 0xb3 }, 'videocodec' => { 69 => 0x74 }, - 'videocolorspace' => { 539 => 'videoColorSpace' }, + 'videocolorspace' => { 540 => 'videoColorSpace' }, 'videocompression' => { 130 => 0x3806 }, - 'videocompressor' => { 539 => 'videoCompressor' }, - 'videodisplayaspectratio' => { 524 => 'videoDisplayAspectRatio' }, - 'videoencodingprofile' => { 524 => 'videoEncodingProfile' }, - 'videofieldorder' => { 539 => 'videoFieldOrder' }, - 'videoframerate' => { 347 => 0x27, 539 => 'videoFrameRate' }, - 'videoframesize' => { 539 => 'videoFrameSize' }, - 'videoframesizeh' => { 539 => [\'videoFrameSize','videoFrameSizeH'] }, - 'videoframesizeunit' => { 539 => [\'videoFrameSize','videoFrameSizeUnit'] }, - 'videoframesizew' => { 539 => [\'videoFrameSize','videoFrameSizeW'] }, - 'videomoddate' => { 539 => 'videoModDate' }, - 'videopixelaspectratio' => { 539 => 'videoPixelAspectRatio' }, - 'videopixeldepth' => { 539 => 'videoPixelDepth' }, - 'videopreburst' => { 347 => 0xc1 }, + 'videocompressor' => { 540 => 'videoCompressor' }, + 'videodisplayaspectratio' => { 525 => 'videoDisplayAspectRatio' }, + 'videoencodingprofile' => { 525 => 'videoEncodingProfile' }, + 'videofieldorder' => { 540 => 'videoFieldOrder' }, + 'videoframerate' => { 348 => 0x27, 540 => 'videoFrameRate' }, + 'videoframesize' => { 540 => 'videoFrameSize' }, + 'videoframesizeh' => { 540 => [\'videoFrameSize','videoFrameSizeH'] }, + 'videoframesizeunit' => { 540 => [\'videoFrameSize','videoFrameSizeUnit'] }, + 'videoframesizew' => { 540 => [\'videoFrameSize','videoFrameSizeW'] }, + 'videomoddate' => { 540 => 'videoModDate' }, + 'videopixelaspectratio' => { 540 => 'videoPixelAspectRatio' }, + 'videopixeldepth' => { 540 => 'videoPixelDepth' }, + 'videopreburst' => { 348 => 0xc1 }, 'videoquality' => { 116 => 0x4003 }, 'videorecordingmode' => { 130 => 0x3803 }, - 'videoshottype' => { 524 => 'VideoShotType' }, - 'videoshottypeidentifier' => { 524 => [\'VideoShotType','VideoShotTypeIdentifier'] }, - 'videoshottypename' => { 524 => [\'VideoShotType','VideoShotTypeName'] }, - 'videostreamscount' => { 524 => 'videoStreamsCount' }, - 'viewfinder' => { 391 => 0x455 }, - 'viewfinderdisplay' => { 303 => '12.4', 304 => '6.3' }, - 'viewfinderwarning' => { 303 => '13.4', 313 => '3.5', 314 => '6.2', 318 => '4.4' }, + 'videoshottype' => { 525 => 'VideoShotType' }, + 'videoshottypeidentifier' => { 525 => [\'VideoShotType','VideoShotTypeIdentifier'] }, + 'videoshottypename' => { 525 => [\'VideoShotType','VideoShotTypeName'] }, + 'videostreamscount' => { 525 => 'videoStreamsCount' }, + 'viewfinder' => { 392 => 0x455 }, + 'viewfinderdisplay' => { 304 => '12.4', 305 => '6.3' }, + 'viewfinderwarning' => { 304 => '13.4', 314 => '3.5', 315 => '6.2', 319 => '4.4' }, 'viewfinderwarnings' => { 87 => 0x40a }, 'viewinfoduringexposure' => { 87 => 0x407 }, - 'viewingmode' => { 436 => 0x2f, 453 => 0x18 }, - 'viewingmode2' => { 436 => [0x85,0x285] }, - 'viewmodeshoweffectsofsettings' => { 247 => 0x7d2, 319 => 0x2a9 }, - 'viewpoint' => { 528 => 'viewpoint' }, - 'vignetteamount' => { 510 => 'VignetteAmount', 512 => 'VignetteAmount' }, - 'vignettecoefficient1' => { 287 => 0x24 }, - 'vignettecoefficient2' => { 287 => 0x34 }, - 'vignettecoefficient3' => { 287 => 0x44 }, - 'vignettecontrol' => { 239 => 0x2a, 296 => 0x76a43205 }, - 'vignettecontrolintensity' => { 296 => 0xac6bd5c0 }, - 'vignettecorrectionalreadyapplied' => { 507 => 'VignetteCorrectionAlreadyApplied' }, - 'vignettecorrectionversion' => { 287 => 0x0 }, - 'vignettemidpoint' => { 510 => 'VignetteMidpoint', 512 => 'VignetteMidpoint' }, - 'vignetting' => { 414 => 0x1011, 421 => 0xa052 }, - 'vignettingcorrection' => { 122 => 0x7031, 421 => 0xa053, 448 => 0x2011 }, - 'vignettingcorrparams' => { 122 => 0x7032, 479 => 0x64a, 480 => [0x34a,0x350,0x35c,0x368] }, - 'vignettingsetting' => { 421 => 0xa054 }, - 'virtualfocallength' => { 525 => 'VirtualFocalLength' }, - 'virtualhorizonstyle' => { 319 => 0x167, 320 => 0x167, 321 => 0x17f }, - 'virtualimagexcenter' => { 525 => 'VirtualImageXCenter' }, - 'virtualimageycenter' => { 525 => 'VirtualImageYCenter' }, - 'visualcolor' => { 524 => 'VisualColour' }, - 'visualtechnique' => { 528 => 'visualTechnique' }, - 'voicememo' => { 423 => 0x216 }, - 'volume' => { 529 => 'volume' }, - 'vr_0x66' => { 267 => 0x66 }, + 'viewingmode' => { 437 => 0x2f, 454 => 0x18 }, + 'viewingmode2' => { 437 => [0x85,0x285] }, + 'viewmodeshoweffectsofsettings' => { 248 => 0x7d2, 320 => 0x2a9 }, + 'viewpoint' => { 529 => 'viewpoint' }, + 'vignetteamount' => { 511 => 'VignetteAmount', 513 => 'VignetteAmount' }, + 'vignettecoefficient1' => { 288 => 0x24 }, + 'vignettecoefficient2' => { 288 => 0x34 }, + 'vignettecoefficient3' => { 288 => 0x44 }, + 'vignettecontrol' => { 239 => 0x2a, 297 => 0x76a43205 }, + 'vignettecontrolintensity' => { 297 => 0xac6bd5c0 }, + 'vignettecorrectionalreadyapplied' => { 508 => 'VignetteCorrectionAlreadyApplied' }, + 'vignettecorrectionversion' => { 288 => 0x0 }, + 'vignettemidpoint' => { 511 => 'VignetteMidpoint', 513 => 'VignetteMidpoint' }, + 'vignetting' => { 415 => 0x1011, 422 => 0xa052 }, + 'vignettingcorrection' => { 122 => 0x7031, 422 => 0xa053, 449 => 0x2011 }, + 'vignettingcorrparams' => { 122 => 0x7032, 480 => 0x64a, 481 => [0x34a,0x350,0x35c,0x368] }, + 'vignettingsetting' => { 422 => 0xa054 }, + 'virtualfocallength' => { 526 => 'VirtualFocalLength' }, + 'virtualhorizonstyle' => { 320 => 0x167, 321 => 0x167, 322 => 0x17f }, + 'virtualimagexcenter' => { 526 => 'VirtualImageXCenter' }, + 'virtualimageycenter' => { 526 => 'VirtualImageYCenter' }, + 'visualcolor' => { 525 => 'VisualColour' }, + 'visualtechnique' => { 529 => 'visualTechnique' }, + 'voicememo' => { 424 => 0x216 }, + 'volume' => { 530 => 'volume' }, + 'vr_0x66' => { 268 => 0x66 }, 'vrdoffset' => { 66 => 0xd0 }, - 'vrmode' => { 244 => 0x226, 245 => 0x212, 246 => 0x226, 247 => 0x226, 286 => 0x6 }, - 'vrtype' => { 286 => 0x8 }, - 'waterdepth' => { 122 => 0x9403, 517 => 'WaterDepth' }, + 'vrmode' => { 244 => 0x226, 245 => 0x226, 246 => 0x212, 247 => 0x226, 248 => 0x226, 287 => 0x6 }, + 'vrtype' => { 287 => 0x8 }, + 'waterdepth' => { 122 => 0x9403, 518 => 'WaterDepth' }, 'wb_bluelevel3500k' => { 190 => 0x19a }, 'wb_bluelevel6500k' => { 190 => 0x18a }, 'wb_bluelevelcustom' => { 190 => 0x18e }, @@ -7238,21 +7249,21 @@ my %tagLookup = ( 'wb_bluelevelsshade' => { 190 => 0x176 }, 'wb_bluelevelstungsten' => { 190 => 0xce }, 'wb_gbrglevels' => { 190 => 0xae, 193 => 0x4 }, - 'wb_glevel' => { 327 => 0x11f }, - 'wb_glevel3000k' => { 327 => 0x113 }, - 'wb_glevel3300k' => { 327 => 0x114 }, - 'wb_glevel3600k' => { 327 => 0x115 }, - 'wb_glevel3900k' => { 327 => 0x116 }, - 'wb_glevel4000k' => { 327 => 0x117 }, - 'wb_glevel4300k' => { 327 => 0x118 }, - 'wb_glevel4500k' => { 327 => 0x119 }, - 'wb_glevel4800k' => { 327 => 0x11a }, - 'wb_glevel5300k' => { 327 => 0x11b }, - 'wb_glevel6000k' => { 327 => 0x11c }, - 'wb_glevel6600k' => { 327 => 0x11d }, - 'wb_glevel7500k' => { 327 => 0x11e }, - 'wb_grbglevels' => { 207 => 0x0, 455 => 0x7303 }, - 'wb_grbglevelsauto' => { 83 => 0x2, 455 => 0x7302 }, + 'wb_glevel' => { 328 => 0x11f }, + 'wb_glevel3000k' => { 328 => 0x113 }, + 'wb_glevel3300k' => { 328 => 0x114 }, + 'wb_glevel3600k' => { 328 => 0x115 }, + 'wb_glevel3900k' => { 328 => 0x116 }, + 'wb_glevel4000k' => { 328 => 0x117 }, + 'wb_glevel4300k' => { 328 => 0x118 }, + 'wb_glevel4500k' => { 328 => 0x119 }, + 'wb_glevel4800k' => { 328 => 0x11a }, + 'wb_glevel5300k' => { 328 => 0x11b }, + 'wb_glevel6000k' => { 328 => 0x11c }, + 'wb_glevel6600k' => { 328 => 0x11d }, + 'wb_glevel7500k' => { 328 => 0x11e }, + 'wb_grbglevels' => { 207 => 0x0, 456 => 0x7303 }, + 'wb_grbglevelsauto' => { 83 => 0x2, 456 => 0x7302 }, 'wb_grbglevelscloudy' => { 83 => 0x12 }, 'wb_grbglevelscustom1' => { 83 => 0x42 }, 'wb_grbglevelscustom2' => { 83 => 0x4a }, @@ -7263,52 +7274,52 @@ my %tagLookup = ( 'wb_grbglevelstungsten' => { 83 => 0x1a }, 'wb_grbglevelsunderwater' => { 83 => 0x3a }, 'wb_rbgglevels' => { 204 => 0x0 }, - 'wb_rblevels' => { 208 => 0x270, 239 => 0xc, 327 => 0x100 }, - 'wb_rblevels1' => { 353 => 0x2 }, - 'wb_rblevels2' => { 353 => 0x5 }, - 'wb_rblevels3' => { 353 => 0x8 }, - 'wb_rblevels3000k' => { 327 => 0x102 }, - 'wb_rblevels3300k' => { 327 => 0x103 }, + 'wb_rblevels' => { 208 => 0x270, 239 => 0xc, 328 => 0x100 }, + 'wb_rblevels1' => { 354 => 0x2 }, + 'wb_rblevels2' => { 354 => 0x5 }, + 'wb_rblevels3' => { 354 => 0x8 }, + 'wb_rblevels3000k' => { 328 => 0x102 }, + 'wb_rblevels3300k' => { 328 => 0x103 }, 'wb_rblevels3500k' => { 190 => 0x430 }, - 'wb_rblevels3600k' => { 327 => 0x104 }, - 'wb_rblevels3900k' => { 327 => 0x105 }, - 'wb_rblevels4' => { 353 => 0xb }, - 'wb_rblevels4000k' => { 327 => 0x106 }, - 'wb_rblevels4300k' => { 327 => 0x107 }, - 'wb_rblevels4500k' => { 327 => 0x108 }, - 'wb_rblevels4800k' => { 327 => 0x109 }, - 'wb_rblevels5' => { 353 => 0xe }, - 'wb_rblevels5300k' => { 327 => 0x10a }, - 'wb_rblevels6' => { 353 => 0x11 }, - 'wb_rblevels6000k' => { 327 => 0x10b }, + 'wb_rblevels3600k' => { 328 => 0x104 }, + 'wb_rblevels3900k' => { 328 => 0x105 }, + 'wb_rblevels4' => { 354 => 0xb }, + 'wb_rblevels4000k' => { 328 => 0x106 }, + 'wb_rblevels4300k' => { 328 => 0x107 }, + 'wb_rblevels4500k' => { 328 => 0x108 }, + 'wb_rblevels4800k' => { 328 => 0x109 }, + 'wb_rblevels5' => { 354 => 0xe }, + 'wb_rblevels5300k' => { 328 => 0x10a }, + 'wb_rblevels6' => { 354 => 0x11 }, + 'wb_rblevels6000k' => { 328 => 0x10b }, 'wb_rblevels6500k' => { 190 => 0x420 }, - 'wb_rblevels6600k' => { 327 => 0x10c }, - 'wb_rblevels7' => { 353 => 0x14 }, - 'wb_rblevels7500k' => { 327 => 0x10d }, - 'wb_rblevelsauto' => { 208 => 0x272, 331 => 0x110 }, - 'wb_rblevelscloudy' => { 190 => 0x3f0, 192 => 0x10, 208 => 0x296, 331 => 0x121 }, + 'wb_rblevels6600k' => { 328 => 0x10c }, + 'wb_rblevels7' => { 354 => 0x14 }, + 'wb_rblevels7500k' => { 328 => 0x10d }, + 'wb_rblevelsauto' => { 208 => 0x272, 332 => 0x110 }, + 'wb_rblevelscloudy' => { 190 => 0x3f0, 192 => 0x10, 208 => 0x296, 332 => 0x121 }, 'wb_rblevelscoolwhitef' => { 190 => 0x308, 192 => 0x14 }, - 'wb_rblevelscoolwhitefluor' => { 331 => 0x132 }, + 'wb_rblevelscoolwhitefluor' => { 332 => 0x132 }, 'wb_rblevelscustom' => { 190 => 0x424, 192 => 0x1c }, - 'wb_rblevelscwb1' => { 327 => 0x10e }, - 'wb_rblevelscwb2' => { 327 => 0x10f }, - 'wb_rblevelscwb3' => { 327 => 0x110 }, - 'wb_rblevelscwb4' => { 327 => 0x111 }, + 'wb_rblevelscwb1' => { 328 => 0x10e }, + 'wb_rblevelscwb2' => { 328 => 0x10f }, + 'wb_rblevelscwb3' => { 328 => 0x110 }, + 'wb_rblevelscwb4' => { 328 => 0x111 }, 'wb_rblevelsdaylight' => { 190 => [0x3ec,0x528], 192 => 0xc, 208 => 0x274 }, 'wb_rblevelsdaylightf' => { 192 => 0x24 }, - 'wb_rblevelsdaylightfluor' => { 331 => 0x130 }, + 'wb_rblevelsdaylightfluor' => { 332 => 0x130 }, 'wb_rblevelsdaywhitef' => { 192 => 0x28 }, - 'wb_rblevelsdaywhitefluor' => { 331 => 0x131 }, - 'wb_rblevelseveningsunlight' => { 331 => 0x124 }, - 'wb_rblevelsfineweather' => { 331 => 0x122 }, + 'wb_rblevelsdaywhitefluor' => { 332 => 0x131 }, + 'wb_rblevelseveningsunlight' => { 332 => 0x124 }, + 'wb_rblevelsfineweather' => { 332 => 0x122 }, 'wb_rblevelsflash' => { 190 => [0x3f4,0x304], 192 => 0x18, 208 => 0x2a4 }, 'wb_rblevelsfluorescent' => { 208 => 0x290 }, 'wb_rblevelsincandescent' => { 208 => 0x282 }, - 'wb_rblevelsshade' => { 190 => 0x418, 192 => 0x20, 208 => 0x2b2, 331 => 0x120 }, - 'wb_rblevelstungsten' => { 190 => 0x3e8, 192 => 0x8, 331 => 0x123 }, - 'wb_rblevelsused' => { 331 => 0x100 }, + 'wb_rblevelsshade' => { 190 => 0x418, 192 => 0x20, 208 => 0x2b2, 332 => 0x120 }, + 'wb_rblevelstungsten' => { 190 => 0x3e8, 192 => 0x8, 332 => 0x123 }, + 'wb_rblevelsused' => { 332 => 0x100 }, 'wb_rblevelswhitef' => { 192 => 0x2c }, - 'wb_rblevelswhitefluorescent' => { 331 => 0x133 }, + 'wb_rblevelswhitefluorescent' => { 332 => 0x133 }, 'wb_redlevel3500k' => { 190 => 0x198 }, 'wb_redlevel6500k' => { 190 => 0x188 }, 'wb_redlevelcustom' => { 190 => 0x18c }, @@ -7320,76 +7331,76 @@ my %tagLookup = ( 'wb_redlevelsshade' => { 190 => 0x168 }, 'wb_redlevelstungsten' => { 190 => 0xc0 }, 'wb_rgbglevels' => { 206 => 0x0 }, - 'wb_rgblevels' => { 190 => [0x546,0x96], 343 => 0xd, 344 => 0x413, 349 => 0x3036, 391 => 0x107, 457 => 0x117c, 458 => 0x1180, 459 => 0x115c, 460 => 0x11d8, 461 => 0x11b4, 462 => 0x106c, 463 => 0x264, 464 => 0x264, 465 => 0x252 }, - 'wb_rgblevels1' => { 354 => 0x2 }, - 'wb_rgblevels2' => { 354 => 0x6 }, - 'wb_rgblevels2500k' => { 455 => 0x782d }, - 'wb_rgblevels3' => { 354 => 0xa }, - 'wb_rgblevels3200k' => { 455 => 0x782c }, - 'wb_rgblevels4' => { 354 => 0xe }, - 'wb_rgblevels4500k' => { 455 => [0x7484,0x7824] }, - 'wb_rgblevels5' => { 354 => 0x12 }, - 'wb_rgblevels6' => { 354 => 0x16 }, - 'wb_rgblevels6000k' => { 455 => 0x782b }, - 'wb_rgblevels7' => { 354 => 0x1a }, - 'wb_rgblevels8500k' => { 455 => 0x782a }, - 'wb_rgblevelsauto' => { 425 => 0x0 }, - 'wb_rgblevelscloudy' => { 455 => [0x7481,0x7821] }, - 'wb_rgblevelscustom1' => { 425 => 0x15 }, - 'wb_rgblevelscustom2' => { 425 => 0x18 }, - 'wb_rgblevelscustom3' => { 425 => 0x1b }, - 'wb_rgblevelsdaylight' => { 425 => 0x3, 455 => [0x7480,0x7820] }, - 'wb_rgblevelsflash' => { 425 => 0x12, 455 => [0x7483,0x7823] }, - 'wb_rgblevelsfluorescent' => { 425 => 0xf, 455 => [0x7486,0x7826] }, - 'wb_rgblevelsfluorescentm1' => { 455 => 0x7829 }, - 'wb_rgblevelsfluorescentp1' => { 455 => 0x7827 }, - 'wb_rgblevelsfluorescentp2' => { 455 => 0x7828 }, - 'wb_rgblevelsincandescent' => { 425 => 0xc }, - 'wb_rgblevelsovercast' => { 425 => 0x9 }, - 'wb_rgblevelsshade' => { 425 => 0x6, 455 => 0x7825 }, - 'wb_rgblevelstungsten' => { 455 => [0x7482,0x7822] }, - 'wb_rgblevelsunknown0' => { 426 => 0x0 }, - 'wb_rgblevelsunknown1' => { 426 => 0x3 }, - 'wb_rgblevelsunknown2' => { 426 => 0x6 }, - 'wb_rgblevelsunknown3' => { 426 => 0x9 }, - 'wb_rgblevelsunknown4' => { 426 => 0xc }, - 'wb_rgblevelsunknown5' => { 426 => 0xf }, - 'wb_rgblevelsunknown6' => { 426 => 0x12 }, - 'wb_rgblevelsunknown7' => { 426 => 0x15 }, - 'wb_rgblevelsunknown8' => { 426 => 0x18 }, - 'wb_rgblevelsunknown9' => { 426 => 0x1b }, + 'wb_rgblevels' => { 190 => [0x546,0x96], 344 => 0xd, 345 => 0x413, 350 => 0x3036, 392 => 0x107, 458 => 0x117c, 459 => 0x1180, 460 => 0x115c, 461 => 0x11d8, 462 => 0x11b4, 463 => 0x106c, 464 => 0x264, 465 => 0x264, 466 => 0x252 }, + 'wb_rgblevels1' => { 355 => 0x2 }, + 'wb_rgblevels2' => { 355 => 0x6 }, + 'wb_rgblevels2500k' => { 456 => 0x782d }, + 'wb_rgblevels3' => { 355 => 0xa }, + 'wb_rgblevels3200k' => { 456 => 0x782c }, + 'wb_rgblevels4' => { 355 => 0xe }, + 'wb_rgblevels4500k' => { 456 => [0x7484,0x7824] }, + 'wb_rgblevels5' => { 355 => 0x12 }, + 'wb_rgblevels6' => { 355 => 0x16 }, + 'wb_rgblevels6000k' => { 456 => 0x782b }, + 'wb_rgblevels7' => { 355 => 0x1a }, + 'wb_rgblevels8500k' => { 456 => 0x782a }, + 'wb_rgblevelsauto' => { 426 => 0x0 }, + 'wb_rgblevelscloudy' => { 456 => [0x7481,0x7821] }, + 'wb_rgblevelscustom1' => { 426 => 0x15 }, + 'wb_rgblevelscustom2' => { 426 => 0x18 }, + 'wb_rgblevelscustom3' => { 426 => 0x1b }, + 'wb_rgblevelsdaylight' => { 426 => 0x3, 456 => [0x7480,0x7820] }, + 'wb_rgblevelsflash' => { 426 => 0x12, 456 => [0x7483,0x7823] }, + 'wb_rgblevelsfluorescent' => { 426 => 0xf, 456 => [0x7486,0x7826] }, + 'wb_rgblevelsfluorescentm1' => { 456 => 0x7829 }, + 'wb_rgblevelsfluorescentp1' => { 456 => 0x7827 }, + 'wb_rgblevelsfluorescentp2' => { 456 => 0x7828 }, + 'wb_rgblevelsincandescent' => { 426 => 0xc }, + 'wb_rgblevelsovercast' => { 426 => 0x9 }, + 'wb_rgblevelsshade' => { 426 => 0x6, 456 => 0x7825 }, + 'wb_rgblevelstungsten' => { 456 => [0x7482,0x7822] }, + 'wb_rgblevelsunknown0' => { 427 => 0x0 }, + 'wb_rgblevelsunknown1' => { 427 => 0x3 }, + 'wb_rgblevelsunknown2' => { 427 => 0x6 }, + 'wb_rgblevelsunknown3' => { 427 => 0x9 }, + 'wb_rgblevelsunknown4' => { 427 => 0xc }, + 'wb_rgblevelsunknown5' => { 427 => 0xf }, + 'wb_rgblevelsunknown6' => { 427 => 0x12 }, + 'wb_rgblevelsunknown7' => { 427 => 0x15 }, + 'wb_rgblevelsunknown8' => { 427 => 0x18 }, + 'wb_rgblevelsunknown9' => { 427 => 0x1b }, 'wb_rgbmuldaylight' => { 141 => 0x852 }, 'wb_rgbmulflash' => { 141 => 0x855 }, 'wb_rgbmulfluorescent' => { 141 => 0x854 }, 'wb_rgbmultungsten' => { 141 => 0x853 }, 'wb_rggbblacklevels' => { 37 => 0x25 }, - 'wb_rggblevels' => { 122 => 0x7313, 193 => 0x4, 205 => 0x0, 209 => 0x13e8, 210 => 0x38, 455 => 0x7313 }, + 'wb_rggblevels' => { 122 => 0x7313, 193 => 0x4, 205 => 0x0, 209 => 0x13e8, 210 => 0x38, 456 => 0x7313 }, 'wb_rggblevelsasshot' => { 40 => 0x0, 41 => 0x0, 42 => 0x19, 43 => 0x55, 44 => 0x69, 45 => 0x22, 46 => 0x3f, 49 => 0x3f, 50 => 0x3f, 51 => 0x3f, 52 => 0x47 }, - 'wb_rggblevelsauto' => { 37 => 0x1, 40 => 0x5, 41 => 0x8, 42 => 0x1e, 43 => 0x5a, 44 => 0x6e, 45 => 0x18, 46 => 0x44, 49 => 0x44, 50 => 0x44, 51 => 0x44, 52 => 0x4c, 209 => 0x1478, 210 => 0x114, 421 => 0xa022, 455 => 0x7312 }, - 'wb_rggblevelsblack' => { 421 => 0xa028 }, - 'wb_rggblevelscloudy' => { 37 => 0xd, 40 => 0x1e, 41 => 0x30, 42 => 0x2d, 43 => 0xa0, 44 => 0xd7, 45 => 0x31, 46 => 0x58, 49 => 0x71, 50 => 0x8a, 51 => 0x8f, 52 => 0x92, 209 => 0x1408, 210 => 0x60, 382 => 0x20f, 390 => 0x14 }, + 'wb_rggblevelsauto' => { 37 => 0x1, 40 => 0x5, 41 => 0x8, 42 => 0x1e, 43 => 0x5a, 44 => 0x6e, 45 => 0x18, 46 => 0x44, 49 => 0x44, 50 => 0x44, 51 => 0x44, 52 => 0x4c, 209 => 0x1478, 210 => 0x114, 422 => 0xa022, 456 => 0x7312 }, + 'wb_rggblevelsblack' => { 422 => 0xa028 }, + 'wb_rggblevelscloudy' => { 37 => 0xd, 40 => 0x1e, 41 => 0x30, 42 => 0x2d, 43 => 0xa0, 44 => 0xd7, 45 => 0x31, 46 => 0x58, 49 => 0x71, 50 => 0x8a, 51 => 0x8f, 52 => 0x92, 209 => 0x1408, 210 => 0x60, 383 => 0x20f, 391 => 0x14 }, 'wb_rggblevelscustom' => { 37 => 0x1d, 46 => 0x80, 209 => 0x1468, 210 => 0x100 }, 'wb_rggblevelscustom1' => { 42 => 0x41 }, 'wb_rggblevelscustom2' => { 42 => 0x46 }, - 'wb_rggblevelsdaylight' => { 37 => 0x5, 40 => 0x14, 41 => 0x20, 42 => 0x23, 43 => 0x96, 44 => 0xcd, 45 => 0x27, 46 => 0x4e, 49 => 0x67, 50 => 0x80, 51 => 0x85, 52 => 0x88, 209 => 0x13f8, 210 => 0x4c, 382 => 0x20d, 390 => 0x2 }, - 'wb_rggblevelsflash' => { 37 => 0x19, 40 => 0x32, 41 => 0x50, 42 => 0x3c, 43 => 0xb4, 44 => 0xeb, 45 => 0x45, 46 => 0x6c, 49 => 0x85, 50 => 0x9e, 51 => 0xa3, 52 => 0xa6, 209 => 0x1448, 382 => 0x214, 390 => 0x41 }, + 'wb_rggblevelsdaylight' => { 37 => 0x5, 40 => 0x14, 41 => 0x20, 42 => 0x23, 43 => 0x96, 44 => 0xcd, 45 => 0x27, 46 => 0x4e, 49 => 0x67, 50 => 0x80, 51 => 0x85, 52 => 0x88, 209 => 0x13f8, 210 => 0x4c, 383 => 0x20d, 391 => 0x2 }, + 'wb_rggblevelsflash' => { 37 => 0x19, 40 => 0x32, 41 => 0x50, 42 => 0x3c, 43 => 0xb4, 44 => 0xeb, 45 => 0x45, 46 => 0x6c, 49 => 0x85, 50 => 0x9e, 51 => 0xa3, 52 => 0xa6, 209 => 0x1448, 383 => 0x214, 391 => 0x41 }, 'wb_rggblevelsfluorescent' => { 37 => 0x15, 40 => 0x28, 41 => 0x40, 42 => 0x37, 43 => 0xaa, 44 => 0xe1, 45 => 0x3b, 46 => 0x62, 49 => 0x7b, 50 => 0x94, 51 => 0x99, 52 => 0x9c }, - 'wb_rggblevelsfluorescentd' => { 210 => 0xc4, 382 => 0x211, 390 => 0x26 }, - 'wb_rggblevelsfluorescentl' => { 390 => 0x4a }, - 'wb_rggblevelsfluorescentn' => { 210 => 0xb0, 382 => 0x212, 390 => 0x2f }, - 'wb_rggblevelsfluorescentw' => { 209 => 0x1438, 210 => 0x9c, 382 => 0x213, 390 => 0x38 }, + 'wb_rggblevelsfluorescentd' => { 210 => 0xc4, 383 => 0x211, 391 => 0x26 }, + 'wb_rggblevelsfluorescentl' => { 391 => 0x4a }, + 'wb_rggblevelsfluorescentn' => { 210 => 0xb0, 383 => 0x212, 391 => 0x2f }, + 'wb_rggblevelsfluorescentw' => { 209 => 0x1438, 210 => 0x9c, 383 => 0x213, 391 => 0x38 }, 'wb_rggblevelshtmercury' => { 210 => 0xd8 }, - 'wb_rggblevelsilluminator1' => { 421 => 0xa023 }, - 'wb_rggblevelsilluminator2' => { 421 => 0xa024 }, + 'wb_rggblevelsilluminator1' => { 422 => 0xa023 }, + 'wb_rggblevelsilluminator2' => { 422 => 0xa024 }, 'wb_rggblevelskelvin' => { 37 => 0x21, 40 => 0x2d, 41 => 0x48, 43 => 0xaf, 44 => 0xe6, 45 => 0x40, 46 => 0x67, 49 => 0x80, 50 => 0x99, 51 => 0x9e, 52 => 0xa1 }, 'wb_rggblevelsmeasured' => { 40 => 0xa, 41 => 0x10, 43 => 0x5f, 44 => 0x73, 46 => 0x49, 49 => 0x49, 50 => 0x49, 51 => 0x49, 52 => 0x51 }, 'wb_rggblevelspc1' => { 45 => 0x90, 46 => 0x71 }, 'wb_rggblevelspc2' => { 45 => 0x95, 46 => 0x76 }, 'wb_rggblevelspc3' => { 45 => 0x9a, 46 => 0x7b }, - 'wb_rggblevelsshade' => { 37 => 0x9, 40 => 0x19, 41 => 0x28, 42 => 0x28, 43 => 0x9b, 44 => 0xd2, 45 => 0x2c, 46 => 0x53, 49 => 0x6c, 50 => 0x85, 51 => 0x8a, 52 => 0x8d, 210 => 0x74, 382 => 0x20e, 390 => 0xb }, - 'wb_rggblevelstungsten' => { 37 => 0x11, 40 => 0x23, 41 => 0x38, 42 => 0x32, 43 => 0xa5, 44 => 0xdc, 45 => 0x36, 46 => 0x5d, 49 => 0x76, 50 => 0x8f, 51 => 0x94, 52 => 0x97, 209 => 0x1428, 210 => 0x88, 382 => 0x210, 390 => 0x1d }, - 'wb_rggblevelsuncorrected' => { 421 => 0xa021 }, - 'wb_rggblevelsunknown' => { 40 => 0xf, 41 => 0x18, 43 => 0x64, 44 => 0x78, 45 => 0x1d, 49 => 0x4e, 50 => 0x4e, 51 => 0x4e, 52 => 0x56, 390 => 0x53 }, + 'wb_rggblevelsshade' => { 37 => 0x9, 40 => 0x19, 41 => 0x28, 42 => 0x28, 43 => 0x9b, 44 => 0xd2, 45 => 0x2c, 46 => 0x53, 49 => 0x6c, 50 => 0x85, 51 => 0x8a, 52 => 0x8d, 210 => 0x74, 383 => 0x20e, 391 => 0xb }, + 'wb_rggblevelstungsten' => { 37 => 0x11, 40 => 0x23, 41 => 0x38, 42 => 0x32, 43 => 0xa5, 44 => 0xdc, 45 => 0x36, 46 => 0x5d, 49 => 0x76, 50 => 0x8f, 51 => 0x94, 52 => 0x97, 209 => 0x1428, 210 => 0x88, 383 => 0x210, 391 => 0x1d }, + 'wb_rggblevelsuncorrected' => { 422 => 0xa021 }, + 'wb_rggblevelsunknown' => { 40 => 0xf, 41 => 0x18, 43 => 0x64, 44 => 0x78, 45 => 0x1d, 49 => 0x4e, 50 => 0x4e, 51 => 0x4e, 52 => 0x56, 391 => 0x53 }, 'wb_rggblevelsunknown10' => { 40 => 0x5f, 41 => 0x98, 43 => 0x91, 44 => 0xa5, 45 => 0x72, 49 => 0x9e, 50 => 0x7b, 51 => 0x7b, 52 => 0x83 }, 'wb_rggblevelsunknown11' => { 40 => 0x64, 41 => 0xa0, 43 => 0xb9, 44 => [0xaa,0xaf], 45 => 0x77, 49 => 0xa3, 50 => 0xa3, 51 => 0x80, 52 => 0xab }, 'wb_rggblevelsunknown12' => { 40 => 0x69, 41 => 0xa8, 43 => 0xbe, 44 => 0xb4, 45 => 0x7c, 49 => 0xa8, 50 => 0xa8, 51 => 0xa8, 52 => 0xb0 }, @@ -7419,96 +7430,97 @@ my %tagLookup = ( 'wb_rggblevelsunknown7' => { 40 => 0x50, 41 => 0x80, 43 => 0x82, 44 => 0x96, 45 => 0x63, 49 => 0x8f, 50 => 0x6c, 51 => 0x6c, 52 => 0x74 }, 'wb_rggblevelsunknown8' => { 40 => 0x55, 41 => 0x88, 43 => 0x87, 44 => 0x9b, 45 => 0x68, 49 => 0x94, 50 => 0x71, 51 => 0x71, 52 => 0x79 }, 'wb_rggblevelsunknown9' => { 40 => 0x5a, 41 => 0x90, 43 => 0x8c, 44 => 0xa0, 45 => 0x6d, 49 => 0x99, 50 => 0x76, 51 => 0x76, 52 => 0x7e }, - 'wb_rggblevelsuserselected' => { 390 => 0x5c }, + 'wb_rggblevelsuserselected' => { 391 => 0x5c }, 'wbadjblueamber' => { 106 => 0x20106 }, - 'wbadjbluebalance' => { 302 => 0x8 }, + 'wbadjbluebalance' => { 303 => 0x8 }, 'wbadjcolortemp' => { 106 => 0x20102, 111 => 0x1a }, - 'wbadjlighting' => { 302 => 0x14 }, + 'wbadjlighting' => { 303 => 0x14 }, 'wbadjmagentagreen' => { 106 => 0x20105 }, - 'wbadjmode' => { 302 => 0x10 }, - 'wbadjredbalance' => { 302 => 0x0 }, + 'wbadjmode' => { 303 => 0x10 }, + 'wbadjredbalance' => { 303 => 0x0 }, 'wbadjrggblevels' => { 106 => 0x20125, 111 => 0x6 }, - 'wbadjtemperature' => { 302 => 0x18 }, - 'wbadjtint' => { 302 => 0x25 }, - 'wbbluelevel' => { 342 => 0x324, 347 => 0x8006, 352 => 0x26 }, - 'wbbracketingsteps' => { 201 => 0x10, 202 => 0x10, 276 => 0x174d }, + 'wbadjtemperature' => { 303 => 0x18 }, + 'wbadjtint' => { 303 => 0x25 }, + 'wbbluelevel' => { 343 => 0x324, 348 => 0x8006, 353 => 0x26 }, + 'wbbracketingsteps' => { 201 => 0x10, 202 => 0x10, 277 => 0x174d }, 'wbbracketmode' => { 59 => 0x9 }, - 'wbbracketshotnumber' => { 190 => 0x2b, 414 => 0x101a }, + 'wbbracketshotnumber' => { 190 => 0x2b, 415 => 0x101a }, 'wbbracketvalueab' => { 59 => 0xc }, 'wbbracketvaluegm' => { 59 => 0xd }, - 'wbbutton' => { 247 => 0x80a }, + 'wbbutton' => { 245 => 0x806, 248 => 0x80a }, + 'wbbuttonplaybackmode' => { 320 => 0x1c5 }, 'wbfinetuneactive' => { 111 => 0x24 }, 'wbfinetunesaturation' => { 111 => 0x28 }, 'wbfinetunetone' => { 111 => 0x2c }, - 'wbgreenlevel' => { 342 => 0x323, 347 => 0x8005, 352 => 0x25 }, + 'wbgreenlevel' => { 343 => 0x323, 348 => 0x8005, 353 => 0x25 }, 'wbmediaimagesizesetting' => { 87 => 0x708 }, - 'wbmode' => { 192 => 0x4, 328 => 0x1015 }, - 'wbredlevel' => { 342 => 0x322, 347 => 0x8004, 352 => 0x24 }, + 'wbmode' => { 192 => 0x4, 329 => 0x1015 }, + 'wbredlevel' => { 343 => 0x322, 348 => 0x8004, 353 => 0x24 }, 'wbscale' => { 193 => 0x0 }, - 'wbshiftab' => { 76 => 0xc, 347 => 0x46, 364 => 0x10 }, - 'wbshiftab_gm' => { 448 => 0x2014 }, - 'wbshiftab_gm_precise' => { 448 => 0x2026 }, - 'wbshiftcreativecontrol' => { 347 => 0x92 }, - 'wbshiftgm' => { 76 => 0xd, 347 => 0x47, 364 => 0x11 }, - 'wbshiftintelligentauto' => { 347 => 0x8b }, - 'wbtype1' => { 353 => 0x1, 354 => 0x1 }, - 'wbtype2' => { 353 => 0x4, 354 => 0x5 }, - 'wbtype3' => { 353 => 0x7, 354 => 0x9 }, - 'wbtype4' => { 353 => 0xa, 354 => 0xd }, - 'wbtype5' => { 353 => 0xd, 354 => 0x11 }, - 'wbtype6' => { 353 => 0x10, 354 => 0x15 }, - 'wbtype7' => { 353 => 0x13, 354 => 0x19 }, - 'webstatement' => { 543 => 'WebStatement' }, - 'weightedflatsubject' => { 502 => 'weightedFlatSubject' }, - 'what' => { 510 => 'What', 512 => '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, 76 => 0x8, 79 => 0x7, 115 => 0x7, 116 => [0x19,0x2012], 122 => [0xa403,0xfe4e], 130 => 0x1002, 141 => 0x3fc, 142 => 0xfa0d, 143 => 0x40, 154 => 0x1a, 184 => 0x3, 185 => 0xe, 186 => 0x4, 187 => 0xb, 189 => 0x115, 239 => 0x5, 285 => 0x7, 342 => 0x304, 347 => 0x3, 349 => 0x3033, 382 => 0x19, 389 => 0x7, 413 => 0x26, 414 => 0x1003, 424 => [0x88,0x3c,0x7,0x58], 434 => 0xf, 435 => 0xe, 448 => [0x115,0xb054], 510 => 'WhiteBalance', 512 => 'WhiteBalance', 516 => 'WhiteBalance' }, + 'wbshiftab' => { 76 => 0xc, 348 => 0x46, 365 => 0x10 }, + 'wbshiftab_gm' => { 449 => 0x2014 }, + 'wbshiftab_gm_precise' => { 449 => 0x2026 }, + 'wbshiftcreativecontrol' => { 348 => 0x92 }, + 'wbshiftgm' => { 76 => 0xd, 348 => 0x47, 365 => 0x11 }, + 'wbshiftintelligentauto' => { 348 => 0x8b }, + 'wbtype1' => { 354 => 0x1, 355 => 0x1 }, + 'wbtype2' => { 354 => 0x4, 355 => 0x5 }, + 'wbtype3' => { 354 => 0x7, 355 => 0x9 }, + 'wbtype4' => { 354 => 0xa, 355 => 0xd }, + 'wbtype5' => { 354 => 0xd, 355 => 0x11 }, + 'wbtype6' => { 354 => 0x10, 355 => 0x15 }, + 'wbtype7' => { 354 => 0x13, 355 => 0x19 }, + 'webstatement' => { 544 => 'WebStatement' }, + 'weightedflatsubject' => { 503 => 'weightedFlatSubject' }, + 'what' => { 511 => 'What', 513 => '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, 76 => 0x8, 79 => 0x7, 115 => 0x7, 116 => [0x19,0x2012], 122 => [0xa403,0xfe4e], 130 => 0x1002, 141 => 0x3fc, 142 => 0xfa0d, 143 => 0x40, 154 => 0x1a, 184 => 0x3, 185 => 0xe, 186 => 0x4, 187 => 0xb, 189 => 0x115, 239 => 0x5, 286 => 0x7, 343 => 0x304, 348 => 0x3, 350 => 0x3033, 383 => 0x19, 390 => 0x7, 414 => 0x26, 415 => 0x1003, 425 => [0x88,0x3c,0x7,0x58], 435 => 0xf, 436 => 0xe, 449 => [0x115,0xb054], 511 => 'WhiteBalance', 513 => 'WhiteBalance', 517 => 'WhiteBalance' }, 'whitebalance0' => { 179 => 'WhiteBalance0' }, 'whitebalance1' => { 179 => 'WhiteBalance1' }, - 'whitebalance2' => { 179 => 'WhiteBalance2', 323 => 0x500 }, - 'whitebalanceadj' => { 106 => 0x20101, 111 => 0x18, 296 => 0x76a43204 }, - 'whitebalanceautoadjustment' => { 360 => 0x0 }, - 'whitebalancebias' => { 116 => 0x2011, 328 => 0x304, 347 => 0x23 }, + 'whitebalance2' => { 179 => 'WhiteBalance2', 324 => 0x500 }, + 'whitebalanceadj' => { 106 => 0x20101, 111 => 0x18, 297 => 0x76a43204 }, + 'whitebalanceautoadjustment' => { 361 => 0x0 }, + 'whitebalancebias' => { 116 => 0x2011, 329 => 0x304, 348 => 0x23 }, 'whitebalanceblue' => { 76 => 0x7 }, - 'whitebalancebracket' => { 323 => 0x502, 328 => 0x303 }, - 'whitebalancebracketing' => { 187 => 0x22, 190 => 0x2c, 445 => 0x2c }, - 'whitebalancebuttonplaybackmode' => { 320 => 0x1c5, 321 => 0x1dd }, - 'whitebalancecomp' => { 331 => 0x1001 }, + 'whitebalancebracket' => { 324 => 0x502, 329 => 0x303 }, + 'whitebalancebracketing' => { 187 => 0x22, 190 => 0x2c, 446 => 0x2c }, + 'whitebalancebuttonplaybackmode' => { 321 => 0x1c5, 322 => 0x1dd }, + 'whitebalancecomp' => { 332 => 0x1001 }, 'whitebalancedetected' => { 141 => 0x3fb }, - 'whitebalancefinetune' => { 130 => 0x100a, 187 => 0x38, 189 => 0x112, 239 => [0xb,0x3f], 414 => 0x1004, 434 => 0x6, 435 => 0x5, 448 => 0x112 }, - 'whitebalancemode' => { 141 => 0x3fa, 382 => 0x1a }, + 'whitebalancefinetune' => { 130 => 0x100a, 187 => 0x38, 189 => 0x112, 239 => [0xb,0x3f], 415 => 0x1004, 435 => 0x6, 436 => 0x5, 449 => 0x112 }, + 'whitebalancemode' => { 141 => 0x3fa, 383 => 0x1a }, 'whitebalancered' => { 76 => 0x6 }, - 'whitebalanceset' => { 363 => 0xa }, - 'whitebalancesetting' => { 187 => 0x23, 434 => 0x5, 435 => 0x4, 436 => 0x16, 453 => 0xd }, - 'whitebalancesetup' => { 421 => 0x41 }, - 'whitebalancetemperature' => { 323 => 0x501 }, - 'whiteboard' => { 328 => 0x301 }, - 'whitelevel' => { 122 => 0xc61d, 382 => 0x7e, 455 => 0x787f }, - 'whitepoint' => { 122 => 0x13e, 346 => 0x35d, 382 => 0x201, 535 => 'WhitePoint' }, - 'whites2012' => { 510 => 'Whites2012', 512 => 'Whites2012' }, - 'whitesadj' => { 485 => 0x9017 }, - 'wideadapter' => { 414 => 0x1017 }, + 'whitebalanceset' => { 364 => 0xa }, + 'whitebalancesetting' => { 187 => 0x23, 435 => 0x5, 436 => 0x4, 437 => 0x16, 454 => 0xd }, + 'whitebalancesetup' => { 422 => 0x41 }, + 'whitebalancetemperature' => { 324 => 0x501 }, + 'whiteboard' => { 329 => 0x301 }, + 'whitelevel' => { 122 => 0xc61d, 383 => 0x7e, 456 => 0x787f }, + 'whitepoint' => { 122 => 0x13e, 347 => 0x35d, 383 => 0x201, 536 => 'WhitePoint' }, + 'whites2012' => { 511 => 'Whites2012', 513 => 'Whites2012' }, + 'whitesadj' => { 486 => 0x9017 }, + 'wideadapter' => { 415 => 0x1017 }, 'widefocuszone' => { 184 => 0x2f }, - 'widerange' => { 423 => 0x20f }, + 'widerange' => { 424 => 0x20f }, 'windmode' => { 141 => 0x3f4 }, - 'windnoisereduction' => { 244 => 0x352, 245 => 0x2d6, 246 => 0x2fe, 247 => 0x2fe }, - 'windowlocation' => { 407 => 'WLOC' }, - 'windowsatom' => { 511 => 'windowsAtom' }, - 'windowsatomextension' => { 511 => [\'windowsAtom','windowsAtomExtension'] }, - 'windowsatominvocationflags' => { 511 => [\'windowsAtom','windowsAtomInvocationFlags'] }, - 'windowsatomuncprojectpath' => { 511 => [\'windowsAtom','windowsAtomUncProjectPath'] }, - 'wordcount' => { 529 => 'wordCount' }, - 'work' => { 399 => "\xa9wrk" }, + 'windnoisereduction' => { 244 => 0x352, 245 => 0x352, 246 => 0x2d6, 247 => 0x2fe, 248 => 0x2fe }, + 'windowlocation' => { 408 => 'WLOC' }, + 'windowsatom' => { 512 => 'windowsAtom' }, + 'windowsatomextension' => { 512 => [\'windowsAtom','windowsAtomExtension'] }, + 'windowsatominvocationflags' => { 512 => [\'windowsAtom','windowsAtomInvocationFlags'] }, + 'windowsatomuncprojectpath' => { 512 => [\'windowsAtom','windowsAtomUncProjectPath'] }, + 'wordcount' => { 530 => 'wordCount' }, + 'work' => { 400 => "\xa9wrk" }, 'workcolorspace' => { 106 => 0x10200, 111 => 0x270 }, - 'workflowtag' => { 524 => 'WorkflowTag' }, - 'workflowtagcvid' => { 524 => [\'WorkflowTag','WorkflowTagCvId'] }, - 'workflowtagcvtermid' => { 524 => [\'WorkflowTag','WorkflowTagCvTermId'] }, - 'workflowtagcvtermname' => { 524 => [\'WorkflowTag','WorkflowTagCvTermName'] }, - 'workflowtagcvtermrefinedabout' => { 524 => [\'WorkflowTag','WorkflowTagCvTermRefinedAbout'] }, - 'worktodo' => { 518 => 'WorkToDo' }, - 'worldtimelocation' => { 347 => 0x3a, 382 => 0x22, 388 => '0.1' }, + 'workflowtag' => { 525 => 'WorkflowTag' }, + 'workflowtagcvid' => { 525 => [\'WorkflowTag','WorkflowTagCvId'] }, + 'workflowtagcvtermid' => { 525 => [\'WorkflowTag','WorkflowTagCvTermId'] }, + 'workflowtagcvtermname' => { 525 => [\'WorkflowTag','WorkflowTagCvTermName'] }, + 'workflowtagcvtermrefinedabout' => { 525 => [\'WorkflowTag','WorkflowTagCvTermRefinedAbout'] }, + 'worktodo' => { 519 => 'WorkToDo' }, + 'worldtimelocation' => { 348 => 0x3a, 383 => 0x22, 389 => '0.1' }, 'writer' => { 182 => 'WM/Writer' }, 'writer-editor' => { 134 => 0x7a }, - 'x3filllight' => { 424 => 0x12 }, + 'x3filllight' => { 425 => 0x12 }, 'xattrmditemwherefroms' => { 177 => 'com.apple.metadata:kMDItemWhereFroms' }, 'xattrquarantine' => { 177 => 'com.apple.quarantine' }, 'xiaomimodel' => { 122 => 0x9a00 }, @@ -7516,37 +7528,37 @@ my %tagLookup = ( 'xilinxversion' => { 141 => 0x414 }, 'xml' => { 139 => 'xml ' }, 'xmp' => { 109 => 0xffff00f6, 123 => 'XMP' }, - 'xmptoolkit' => { 536 => 'xmptk' }, + 'xmptoolkit' => { 537 => 'xmptk' }, 'xpauthor' => { 122 => 0x9c9d }, 'xpcomment' => { 122 => 0x9c9c }, 'xpkeywords' => { 122 => 0x9c9e }, 'xposition' => { 122 => 0x11e }, 'xpsubject' => { 122 => 0x9c9f }, 'xptitle' => { 122 => 0x9c9b }, - 'xresolution' => { 122 => 0x11a, 137 => 0x3, 397 => 0x0, 535 => 'XResolution' }, + 'xresolution' => { 122 => 0x11a, 137 => 0x3, 398 => 0x0, 536 => 'XResolution' }, 'xyresolution' => { 126 => 0x3 }, - 'yaw' => { 118 => 0x7, 407 => ['_yaw',"\xa9fyw"] }, - 'yawangle' => { 252 => 0x8, 419 => 0x0 }, - 'ycbcrcoefficients' => { 122 => 0x211, 535 => 'YCbCrCoefficients' }, - 'ycbcrpositioning' => { 122 => 0x213, 535 => 'YCbCrPositioning' }, - 'ycbcrsubsampling' => { 122 => 0x212, 535 => 'YCbCrSubSampling' }, - 'year' => { 399 => 'yrrc', 401 => 'year', 407 => 'yrrc' }, + 'yaw' => { 118 => 0x7, 408 => ['_yaw',"\xa9fyw"] }, + 'yawangle' => { 253 => 0x8, 420 => 0x0 }, + 'ycbcrcoefficients' => { 122 => 0x211, 536 => 'YCbCrCoefficients' }, + 'ycbcrpositioning' => { 122 => 0x213, 536 => 'YCbCrPositioning' }, + 'ycbcrsubsampling' => { 122 => 0x212, 536 => 'YCbCrSubSampling' }, + 'year' => { 400 => 'yrrc', 402 => 'year', 408 => 'yrrc' }, 'yearcreated' => { 143 => 0x10, 152 => 0xc }, 'yellowhsl' => { 106 => 0x20912 }, - 'yield' => { 531 => 'yield' }, + 'yield' => { 532 => 'yield' }, 'yposition' => { 122 => 0x11f }, - 'yresolution' => { 122 => 0x11b, 137 => 0x5, 397 => 0x4, 535 => 'YResolution' }, - 'zebrapatterntonerange' => { 319 => 0x211, 320 => 0x211, 321 => 0x229 }, + 'yresolution' => { 122 => 0x11b, 137 => 0x5, 398 => 0x4, 536 => 'YResolution' }, + 'zebrapatterntonerange' => { 320 => 0x211, 321 => 0x211, 322 => 0x229 }, 'zoneidentifier' => { 123 => 'ZoneIdentifier' }, - 'zonematching' => { 189 => 0x10a, 192 => [0x3a,0x4a], 448 => 0xb024 }, + 'zonematching' => { 189 => 0x10a, 192 => [0x3a,0x4a], 449 => 0xb024 }, 'zonematchingmode' => { 187 => 0x14 }, 'zonematchingon' => { 186 => 0x75 }, - 'zonematchingvalue' => { 434 => 0x1f }, - 'zoomedpreviewlength' => { 328 => 0xf05 }, - 'zoomedpreviewsize' => { 328 => 0xf06 }, - 'zoomedpreviewstart' => { 328 => 0xf04 }, + 'zonematchingvalue' => { 435 => 0x1f }, + 'zoomedpreviewlength' => { 329 => 0xf05 }, + 'zoomedpreviewsize' => { 329 => 0xf06 }, + 'zoomedpreviewstart' => { 329 => 0xf04 }, 'zoomsourcewidth' => { 36 => 0x24 }, - 'zoomstepcount' => { 326 => 0x300, 328 => 0x100d }, + 'zoomstepcount' => { 327 => 0x300, 329 => 0x100d }, 'zoomtargetwidth' => { 36 => 0x25 }, ); @@ -7593,6 +7605,7 @@ my %tagExists = ( 'activectemonitorrows' => 1, 'activerows' => 1, 'actor' => 1, + 'actors' => 1, 'actualcompensation' => 1, 'actualscalemax' => 1, 'actualscalemin' => 1, @@ -8694,7 +8707,6 @@ my %tagExists = ( 'crgbtoerimm9spline' => 1, 'cropdata' => 1, 'cropinfo' => 1, - 'cropped' => 1, 'cropxcommonoffset' => 1, 'cropxoffset' => 1, 'cropxoffset2' => 1, @@ -9935,6 +9947,7 @@ my %tagExists = ( 'imageworkstationmake' => 1, 'imagingdata' => 1, 'imdb' => 1, + 'imdb_id' => 1, 'imgprofbacktype' => 1, 'imgprofname' => 1, 'imgproftype' => 1, @@ -10691,6 +10704,7 @@ my %tagExists = ( 'menusettingsoffset' => 1, 'menusettingsoffsetz7ii' => 1, 'menusettingsoffsetz8' => 1, + 'menusettingsoffsetz8v2' => 1, 'menusettingsoffsetz9' => 1, 'menusettingsoffsetz9v3' => 1, 'menusettingsoffsetz9v4' => 1, @@ -11177,7 +11191,6 @@ my %tagExists = ( 'param3' => 1, 'parameter' => 1, 'parameterinfo' => 1, - 'parameters' => 1, 'parasites' => 1, 'parentalratingreason' => 1, 'parkingmode' => 1, @@ -12518,6 +12531,7 @@ my %tagExists = ( 'timestamprandomoffset' => 1, 'timetosampletable' => 1, 'timezonedst' => 1, + 'tipl' => 1, 'title2' => 1, 'titlelen' => 1, 'titlenum' => 1, @@ -12525,6 +12539,7 @@ my %tagExists = ( 'titlesofparts' => 1, 'titlesortorder' => 1, 'tmdb' => 1, + 'tmdb_id' => 1, 'toaddresses' => 1, 'tocitems' => 1, 'todotitle' => 1, diff --git a/bin/lib/Image/ExifTool/TagNames.pod b/bin/lib/Image/ExifTool/TagNames.pod index 229cfde..c9d6cc7 100644 --- a/bin/lib/Image/ExifTool/TagNames.pod +++ b/bin/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 27593 tags, with 17336 unique tag names. +They contain a total of 27738 tags, with 17349 unique tag names. B, B or B is given in the first column of each table. A B is the computer-readable equivalent of a tag name, and @@ -13165,8 +13165,9 @@ Tags extracted from FLIR Public image Format (FPF) files. 0x104d CropMode int16u 0x104e ColorChromeFXBlue int32s 0x1050 ShutterType int16u - 0x1051 CropTopLeft int32u - 0x1052 CropCenter int32u + 0x1051 Cropped int8u + 0x1052 CropTopLeft int32u + 0x1053 CropSize int32u 0x1100 AutoBracketing int16u 0x1101 SequenceNumber int16u 0x1103 DriveSettings FujiFilm DriveSettings @@ -13235,7 +13236,7 @@ Tags extracted from FLIR Public image Format (FPF) files. 0.2 PreAF int32u & 0xf0 0.3 AFAreaMode int32u & 0xf00 0.4 AFAreaPointSize int32u & 0xf000 - 0.5 AFAreaZoneSize int32u & 0xf0000 + 0.5 AFAreaZoneSize int32u & 0xff0000 =head3 FujiFilm AFCSettings Tags @@ -16468,6 +16469,7 @@ These tags are extracted from encrypted data in images from the Z8. 0 ShotInfoVersion no 4 FirmwareVersion no 48 SequenceOffset Nikon SeqInfoZ9 + 128 AutoCaptureOffset Nikon AutoCaptureInfo 132 OrientOffset Nikon OrientationInfo 140 MenuOffset Nikon MenuInfoZ8 @@ -16478,133 +16480,282 @@ These tags are extracted from encrypted data in images from the Z8. 32 FocusShiftShooting int8u~ 40 IntervalShooting int16u~ +=head3 Nikon AutoCaptureInfo Tags + + Index1 Tag Name Writable + ------ -------- -------- + 0 AutoCapturedFrame int8u + 1 AutoCaptureCriteria int8u~ + 55 AutoCaptureRecordingTime int8u + 56 AutoCaptureWaitTime int8u + 74 AutoCaptureDistanceFar int8u~ + 78 AutoCaptureDistanceNear int8u~ + 95 AutoCaptureCriteriaMotionDirection int8u~ + 99 AutoCaptureCriteriaMotionSpeed int8u + 100 AutoCaptureCriteriaMotionSize int8u + 105 AutoCaptureCriteriaSubjectSize int8u + 106 AutoCaptureCriteriaSubjectType int8u + =head3 Nikon MenuInfoZ8 Tags Index1 Tag Name Writable ------ -------- -------- 16 MenuSettingsOffsetZ8 Nikon MenuSettingsZ8 + MenuSettingsOffsetZ8v2 - + Nikon MenuSettingsZ8v2 =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 + 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 HighFrequencyFlickerReduction? 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 + 1684 TimeZone int8u + 1690 MonitorBrightness? int8u + 1698 Language? 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 MenuSettingsZ8v2 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 HighFrequencyFlickerReduction? 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 + 878 MovieFrameSize? int8u + 880 MovieFrameRate? int8u + 886 MicrophoneJackPower? int8u + 887 MovieDXCropAlert? int8u + 888 MovieSubjectDetection? int8u + 896 MovieHighResZoom? int8u + 943 CustomSettingsZ8 NikonCustom SettingsZ8 + 1698 Language? int8u + 1700 TimeZone int8u + 1706 MonitorBrightness? int8u + 1728 AFFineTune? int8u + 1732 NonCPULens1FocalLength? int16u~ + 1734 NonCPULens2FocalLength? int16u~ + 1736 NonCPULens3FocalLength? int16u~ + 1738 NonCPULens4FocalLength? int16u~ + 1740 NonCPULens5FocalLength? int16u~ + 1742 NonCPULens6FocalLength? int16u~ + 1744 NonCPULens7FocalLength? int16u~ + 1746 NonCPULens8FocalLength? int16u~ + 1748 NonCPULens9FocalLength? int16u~ + 1750 NonCPULens10FocalLength? int16u~ + 1752 NonCPULens11FocalLength? int16u~ + 1754 NonCPULens12FocalLength? int16u~ + 1756 NonCPULens13FocalLength? int16u~ + 1758 NonCPULens14FocalLength? int16u~ + 1760 NonCPULens15FocalLength? int16u~ + 1762 NonCPULens16FocalLength? int16u~ + 1764 NonCPULens17FocalLength? int16u~ + 1766 NonCPULens18FocalLength? int16u~ + 1768 NonCPULens19FocalLength? int16u~ + 1770 NonCPULens20FocalLength? int16u~ + 1812 NonCPULens1MaxAperture? int32u~ + 1816 NonCPULens2MaxAperture? int32u~ + 1820 NonCPULens3MaxAperture? int32u~ + 1824 HDMIOutputResolution int8u + 1828 NonCPULens5MaxAperture? int32u~ + 1832 NonCPULens6MaxAperture? int32u~ + 1836 NonCPULens7MaxAperture? int32u~ + 1840 NonCPULens8MaxAperture? int32u~ + 1842 AirplaneMode? int8u + 1843 EmptySlotRelease? int8u + 1844 NonCPULens9MaxAperture? int32u~ + 1848 NonCPULens10MaxAperture? int32u~ + 1852 NonCPULens11MaxAperture? int32u~ + 1856 NonCPULens12MaxAperture? int32u~ + 1860 NonCPULens13MaxAperture? int32u~ + 1864 NonCPULens14MaxAperture? int32u~ + 1868 NonCPULens15MaxAperture? int32u~ + 1872 NonCPULens16MaxAperture? int32u~ + 1876 NonCPULens17MaxAperture? int32u~ + 1878 EnergySavingMode? int8u + 1880 NonCPULens18MaxAperture? int32u~ + 1884 NonCPULens19MaxAperture? int32u~ + 1888 NonCPULens20MaxAperture? int32u~ + 1906 USBPowerDelivery? int8u + 1915 SensorShield? int8u + 2046 PixelShiftShooting int8u + 2048 PixelShiftNumberShots int8u + 2050 PixelShiftDelay int8u + 2052 PlaybackButton int8u + 2054 WBButton int8u + 2056 BracketButton int8u + 2058 LensFunc1ButtonPlaybackMode int8u + 2060 LensFunc2ButtonPlaybackMode int8u + 2062 PlaybackButtonPlaybackMode int8u + 2064 BracketButtonPlaybackMode int8u =head3 Nikon ShotInfoZ9 Tags @@ -16629,22 +16780,6 @@ These tags are extracted from encrypted data in images from the Z9. 3050 AFAreaInitialWidth int8u 3051 AFAreaInitialHeight int8u -=head3 Nikon AutoCaptureInfo Tags - - Index1 Tag Name Writable - ------ -------- -------- - 0 AutoCapturedFrame int8u - 1 AutoCaptureCriteria int8u~ - 55 AutoCaptureRecordingTime int8u - 56 AutoCaptureWaitTime int8u - 74 AutoCaptureDistanceFar int8u~ - 78 AutoCaptureDistanceNear int8u~ - 95 AutoCaptureCriteriaMotionDirection int8u~ - 99 AutoCaptureCriteriaMotionSpeed int8u - 100 AutoCaptureCriteriaMotionSize int8u - 105 AutoCaptureCriteriaSubjectSize int8u - 106 AutoCaptureCriteriaSubjectType int8u - =head3 Nikon MenuInfoZ9 Tags Index1 Tag Name Writable @@ -16736,222 +16871,224 @@ These tags are used by the Z9. These tags are used by the Z9 firmware 3.00. - Index1 Tag Name Writable - --------------- -------- - 72 HighFrameRate int8u - 154 MultipleExposureMode int8u - 156 MultiExposureShots int8u - 204 Intervals int32u - 208 ShotsPerInterval int32u - 248 FocusShiftNumberShots int8u - 252 FocusShiftStepWidth int8u - 256 FocusShiftInterval int8u~ - 260 FocusShiftExposureLock? int8u - 290 PhotoShootingMenuBank int8u - 292 ExtendedMenuBanks int8u - 328 PhotoShootingMenuBankImageArea int8u - 342 AutoISO int8u - 344 ISOAutoHiLimit? int16u - 346 ISOAutoFlashLimit? int16u - 354 ISOAutoShutterTime no - 436 MovieVignetteControl? int8u - 438 DiffractionCompensation int8u - 440 FlickerReductionShooting int8u - 444 FlashControlMode int8u - 446 FlashMasterCompensation? int8s - 450 FlashGNDistance? no - 454 FlashOutput? int8u - 548 AFAreaMode int8u - 550 VRMode int8u - 554 BracketSet int8u - 556 BracketProgram int8u - 558 BracketIncrement int8u - 576 SecondarySlotFunction int8u - 592 DXCropAlert int8u - 594 SubjectDetection int8u - 596 DynamicAFAreaSize int8u - 636 HighFrequencyFlickerReductionShooting? int8u - 646 MovieImageArea? int8u & 0x01 - 656 MovieType? int8u - 658 MovieISOAutoHiLimit? int16u - 660 MovieISOAutoControlManualMode? int8u - 662 MovieISOAutoManualMode? int16u - 736 MovieActiveD-Lighting? int8u - 738 MovieHighISONoiseReduction? int8u - 744 MovieFlickerReduction int8u - 746 MovieMeteringMode? int8u - 748 MovieFocusMode? int8u - 750 MovieAFAreaMode int8u - 752 MovieVRMode? int8u - 756 MovieElectronicVR? int8u - 758 MovieSoundRecording? int8u - 760 MicrophoneSensitivity? int8u - 762 MicrophoneAttenuator? int8u - 764 MicrophoneFrequencyResponse? int8u - 766 WindNoiseReduction? int8u - 788 MovieToneMap? int8u - 794 MovieFrameSize? int8u - 796 MovieFrameRate? int8u - 802 MicrophoneJackPower? int8u - 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 - 1600 HDMIOutputResolution int8u - 1613 SetClockFromLocationData? int8u - 1620 AirplaneMode? int8u - 1621 EmptySlotRelease? int8u - 1656 EnergySavingMode? int8u - 1680 RecordLocationData? int8u - 1684 USBPowerDelivery? int8u - 1693 SensorShield? int8u - 1754 FocusShiftAutoReset? int8u - 1810 PreReleaseBurstLength int8u - 1812 PostReleaseBurstLength int8u + Index1 Tag Name Writable + ------ -------- -------- + 72 HighFrameRate int8u + 154 MultipleExposureMode int8u + 156 MultiExposureShots int8u + 204 Intervals int32u + 208 ShotsPerInterval int32u + 248 FocusShiftNumberShots int8u + 252 FocusShiftStepWidth int8u + 256 FocusShiftInterval int8u~ + 260 FocusShiftExposureLock? int8u + 290 PhotoShootingMenuBank int8u + 292 ExtendedMenuBanks int8u + 328 PhotoShootingMenuBankImageArea int8u + 342 AutoISO int8u + 344 ISOAutoHiLimit? int16u + 346 ISOAutoFlashLimit? int16u + 354 ISOAutoShutterTime no + 436 MovieVignetteControl? int8u + 438 DiffractionCompensation int8u + 440 FlickerReductionShooting int8u + 444 FlashControlMode int8u + 446 FlashMasterCompensation? int8s + 450 FlashGNDistance? no + 454 FlashOutput? int8u + 548 AFAreaMode int8u + 550 VRMode int8u + 554 BracketSet int8u + 556 BracketProgram int8u + 558 BracketIncrement int8u + 576 SecondarySlotFunction int8u + 592 DXCropAlert int8u + 594 SubjectDetection int8u + 596 DynamicAFAreaSize int8u + 636 HighFrequencyFlickerReduction? int8u + 646 MovieImageArea? int8u & 0x01 + 656 MovieType? int8u + 658 MovieISOAutoHiLimit? int16u + 660 MovieISOAutoControlManualMode? int8u + 662 MovieISOAutoManualMode? int16u + 736 MovieActiveD-Lighting? int8u + 738 MovieHighISONoiseReduction? int8u + 744 MovieFlickerReduction int8u + 746 MovieMeteringMode? int8u + 748 MovieFocusMode? int8u + 750 MovieAFAreaMode int8u + 752 MovieVRMode? int8u + 756 MovieElectronicVR? int8u + 758 MovieSoundRecording? int8u + 760 MicrophoneSensitivity? int8u + 762 MicrophoneAttenuator? int8u + 764 MicrophoneFrequencyResponse? int8u + 766 WindNoiseReduction? int8u + 788 MovieToneMap? int8u + 794 MovieFrameSize? int8u + 796 MovieFrameRate? int8u + 802 MicrophoneJackPower? int8u + 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 + 1600 HDMIOutputResolution int8u + 1613 SetClockFromLocationData? int8u + 1620 AirplaneMode? int8u + 1621 EmptySlotRelease? int8u + 1656 EnergySavingMode? int8u + 1680 RecordLocationData? int8u + 1684 USBPowerDelivery? int8u + 1693 SensorShield? int8u + 1754 FocusShiftAutoReset? int8u + 1810 PreReleaseBurstLength int8u + 1812 PostReleaseBurstLength int8u =head3 Nikon MenuSettingsZ9v4 Tags -These tags are used by the Z9 firmware 3.00. - - Index1 Tag Name Writable - --------------- -------- - 72 HighFrameRate int8u - 154 MultipleExposureMode int8u - 156 MultiExposureShots int8u - 204 Intervals int32u - 208 ShotsPerInterval int32u - 248 FocusShiftNumberShots int8u - 252 FocusShiftStepWidth int8u - 256 FocusShiftInterval int8u~ - 260 FocusShiftExposureLock? int8u - 290 PhotoShootingMenuBank int8u - 292 ExtendedMenuBanks int8u - 328 PhotoShootingMenuBankImageArea int8u - 342 AutoISO int8u - 344 ISOAutoHiLimit? int16u - 346 ISOAutoFlashLimit? int16u - 354 ISOAutoShutterTime no - 436 MovieVignetteControl? int8u - 438 DiffractionCompensation int8u - 440 FlickerReductionShooting int8u - 444 FlashControlMode int8u - 446 FlashMasterCompensation? int8s - 450 FlashGNDistance? no - 454 FlashOutput? 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 - 636 HighFrequencyFlickerReductionShooting? int8u - 646 MovieImageArea? int8u & 0x01 - 656 MovieType? int8u - 658 MovieISOAutoHiLimit? int16u - 660 MovieISOAutoControlManualMode? int8u - 662 MovieISOAutoManualMode? int16u - 736 MovieActiveD-Lighting? int8u - 738 MovieHighISONoiseReduction? int8u - 744 MovieFlickerReduction int8u - 746 MovieMeteringMode? int8u - 748 MovieFocusMode? int8u - 750 MovieAFAreaMode int8u - 752 MovieVRMode? int8u - 756 MovieElectronicVR? int8u - 758 MovieSoundRecording? int8u - 760 MicrophoneSensitivity? int8u - 762 MicrophoneAttenuator? int8u - 764 MicrophoneFrequencyResponse? int8u - 766 WindNoiseReduction? int8u - 788 MovieToneMap? int8u - 794 MovieFrameSize? int8u - 796 MovieFrameRate? int8u - 802 MicrophoneJackPower? int8u - 803 MovieDXCropAlert? int8u - 804 MovieSubjectDetection? int8u - 812 MovieHighResZoom? 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~ - 1544 NonCPULens4FocalLength? int16s~ - 1548 NonCPULens5FocalLength? int16s~ - 1552 NonCPULens6FocalLength? int16s~ - 1556 NonCPULens7FocalLength? int16s~ - 1560 NonCPULens8FocalLength? int16s~ - 1564 NonCPULens9FocalLength? int16s~ - 1568 NonCPULens10FocalLength? int16s~ - 1572 NonCPULens11FocalLength? int16s~ - 1576 NonCPULens12FocalLength? int16s~ - 1580 NonCPULens13FocalLength? int16s~ - 1584 NonCPULens14FocalLength? int16s~ - 1588 NonCPULens15FocalLength? int16s~ - 1592 NonCPULens16FocalLength? int16s~ - 1596 NonCPULens17FocalLength? int16s~ - 1600 NonCPULens18FocalLength? int16s~ - 1604 NonCPULens19FocalLength? int16s~ - 1608 NonCPULens20FocalLength? int16s~ - 1612 NonCPULens1MaxAperture? int16s~ - 1616 NonCPULens2MaxAperture? int16s~ - 1620 NonCPULens3MaxAperture? int16s~ - 1624 NonCPULens4MaxAperture? int16s~ - 1628 NonCPULens5MaxAperture? int16s~ - 1632 NonCPULens6MaxAperture? int16s~ - 1636 NonCPULens7MaxAperture? int16s~ - 1640 NonCPULens8MaxAperture? int16s~ - 1644 NonCPULens9MaxAperture? int16s~ - 1648 NonCPULens10MaxAperture? int16s~ - 1652 NonCPULens11MaxAperture? int16s~ - 1656 NonCPULens12MaxAperture? int16s~ - 1660 NonCPULens13MaxAperture? int16s~ - 1664 NonCPULens14MaxAperture? int16s~ - 1668 NonCPULens15MaxAperture? int16s~ - 1672 NonCPULens16MaxAperture? int16s~ - 1676 NonCPULens17MaxAperture? int16s~ - 1680 NonCPULens18MaxAperture? int16s~ - 1684 NonCPULens19MaxAperture? int16s~ - 1688 NonCPULens20MaxAperture? int16s~ - 1704 HDMIOutputResolution int8u - 1717 SetClockFromLocationData? int8u - 1724 AirplaneMode? int8u - 1725 EmptySlotRelease? int8u - 1760 EnergySavingMode? int8u - 1784 RecordLocationData? int8u - 1788 USBPowerDelivery? int8u - 1797 SensorShield? int8u - 1862 AutoCapturePreset int8u - 1864 FocusShiftAutoReset? int8u - 1922 PreReleaseBurstLength int8u - 1924 PostReleaseBurstLength int8u - 1938 VerticalISOButton int8u - 1940 ExposureCompensationButton int8u - 1942 ISOButton int8u - 2002 ViewModeShowEffectsOfSettings? int8u - 2004 DispButton int8u - 2048 ExposureDelay fixed32u~ - 2056 PlaybackButton int8u - 2058 WBButton int8u - 2060 BracketButton int8u - 2062 FlashModeButton int8u - 2064 LensFunc1ButtonPlaybackMode int8u - 2066 LensFunc2ButtonPlaybackMode int8u - 2068 PlaybackButtonPlaybackMode int8u - 2070 BracketButtonPlaybackMode int8u - 2072 FlashModeButtonPlaybackMode int8u +These tags are used by the Z9 firmware 4.0.0 and 4.1.0 + + Index1 Tag Name Writable + ------ -------- -------- + 72 HighFrameRate int8u + 154 MultipleExposureMode int8u + 156 MultiExposureShots int8u + 204 Intervals int32u + 208 ShotsPerInterval int32u + 248 FocusShiftNumberShots int8u + 252 FocusShiftStepWidth int8u + 256 FocusShiftInterval int8u~ + 260 FocusShiftExposureLock? int8u + 290 PhotoShootingMenuBank int8u + 292 ExtendedMenuBanks int8u + 328 PhotoShootingMenuBankImageArea int8u + 342 AutoISO int8u + 344 ISOAutoHiLimit? int16u + 346 ISOAutoFlashLimit? int16u + 354 ISOAutoShutterTime no + 436 MovieVignetteControl? int8u + 438 DiffractionCompensation int8u + 440 FlickerReductionShooting int8u + 444 FlashControlMode int8u + 446 FlashMasterCompensation? int8s + 450 FlashGNDistance? no + 454 FlashOutput? 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 + 636 HighFrequencyFlickerReduction? int8u + 646 MovieImageArea? int8u & 0x01 + 656 MovieType? int8u + 658 MovieISOAutoHiLimit? int16u + 660 MovieISOAutoControlManualMode? int8u + 662 MovieISOAutoManualMode? int16u + 736 MovieActiveD-Lighting? int8u + 738 MovieHighISONoiseReduction? int8u + 744 MovieFlickerReduction int8u + 746 MovieMeteringMode? int8u + 748 MovieFocusMode? int8u + 750 MovieAFAreaMode int8u + 752 MovieVRMode? int8u + 756 MovieElectronicVR? int8u + 758 MovieSoundRecording? int8u + 760 MicrophoneSensitivity? int8u + 762 MicrophoneAttenuator? int8u + 764 MicrophoneFrequencyResponse? int8u + 766 WindNoiseReduction? int8u + 788 MovieToneMap? int8u + 794 MovieFrameSize? int8u + 796 MovieFrameRate? int8u + 802 MicrophoneJackPower? int8u + 803 MovieDXCropAlert? int8u + 804 MovieSubjectDetection? int8u + 812 MovieHighResZoom? 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~ + 1544 NonCPULens4FocalLength? int16s~ + 1548 NonCPULens5FocalLength? int16s~ + 1552 NonCPULens6FocalLength? int16s~ + 1556 NonCPULens7FocalLength? int16s~ + 1560 NonCPULens8FocalLength? int16s~ + 1564 NonCPULens9FocalLength? int16s~ + 1568 NonCPULens10FocalLength? int16s~ + 1572 NonCPULens11FocalLength? int16s~ + 1576 NonCPULens12FocalLength? int16s~ + 1580 NonCPULens13FocalLength? int16s~ + 1584 NonCPULens14FocalLength? int16s~ + 1588 NonCPULens15FocalLength? int16s~ + 1592 NonCPULens16FocalLength? int16s~ + 1596 NonCPULens17FocalLength? int16s~ + 1600 NonCPULens18FocalLength? int16s~ + 1604 NonCPULens19FocalLength? int16s~ + 1608 NonCPULens20FocalLength? int16s~ + 1612 NonCPULens1MaxAperture? int16s~ + 1616 NonCPULens2MaxAperture? int16s~ + 1620 NonCPULens3MaxAperture? int16s~ + 1624 NonCPULens4MaxAperture? int16s~ + 1628 NonCPULens5MaxAperture? int16s~ + 1632 NonCPULens6MaxAperture? int16s~ + 1636 NonCPULens7MaxAperture? int16s~ + 1640 NonCPULens8MaxAperture? int16s~ + 1644 NonCPULens9MaxAperture? int16s~ + 1648 NonCPULens10MaxAperture? int16s~ + 1652 NonCPULens11MaxAperture? int16s~ + 1656 NonCPULens12MaxAperture? int16s~ + 1660 NonCPULens13MaxAperture? int16s~ + 1664 NonCPULens14MaxAperture? int16s~ + 1668 NonCPULens15MaxAperture? int16s~ + 1672 NonCPULens16MaxAperture? int16s~ + 1676 NonCPULens17MaxAperture? int16s~ + 1680 NonCPULens18MaxAperture? int16s~ + 1684 NonCPULens19MaxAperture? int16s~ + 1688 NonCPULens20MaxAperture? int16s~ + 1704 HDMIOutputResolution int8u + 1717 SetClockFromLocationData? int8u + 1724 AirplaneMode? int8u + 1725 EmptySlotRelease? int8u + 1760 EnergySavingMode? int8u + 1784 RecordLocationData? int8u + 1788 USBPowerDelivery? int8u + 1797 SensorShield? int8u + 1862 AutoCapturePreset int8u + 1864 FocusShiftAutoReset? int8u + 1922 PreReleaseBurstLength int8u + 1924 PostReleaseBurstLength int8u + 1938 VerticalISOButton int8u + 1940 ExposureCompensationButton int8u + 1942 ISOButton int8u + 2002 ViewModeShowEffectsOfSettings? int8u + 2004 DispButton int8u + 2048 ExposureDelay fixed32u~ + 2052 CommandDialFrameAdvanceZoom? int8u + 2054 SubCommandDialFrameAdvanceZoom? int8u + 2056 PlaybackButton int8u + 2058 WBButton int8u + 2060 BracketButton int8u + 2062 FlashModeButton int8u + 2064 LensFunc1ButtonPlaybackMode int8u + 2066 LensFunc2ButtonPlaybackMode int8u + 2068 PlaybackButtonPlaybackMode int8u + 2070 BracketButtonPlaybackMode int8u + 2072 FlashModeButtonPlaybackMode int8u =head3 Nikon ShotInfo Tags @@ -18825,8 +18962,11 @@ Custom settings for the Z8. 421 Func1ButtonPlaybackMode? int8u 423 Func2ButtonPlaybackMode? int8u 437 MovieRecordButtonPlaybackMode? int8u + 453 WBButtonPlaybackMode int8u 459 CommandDialPlaybackMode? int8u + 461 CommandDialVideoPlaybackMode? int8u 463 SubCommandDialPlaybackMode? int8u + 465 SubCommandDialVideoPlaybackMode? int8u 467 FocusPointLock? int8u 469 ControlRingResponse int8u 515 MovieAFAreaMode? int8u @@ -18852,6 +18992,7 @@ Custom settings for the Z8. 649 PostReleaseBurstLength int8u 681 ViewModeShowEffectsOfSettings? int8u 683 DispButton int8u + 753 ExposureDelay int16u~ =head3 NikonCustom SettingsZ9 Tags @@ -19121,7 +19262,9 @@ Custom settings for the Z9. 471 QualityButtonPlaybackMode? int8u 477 WhiteBalanceButtonPlaybackMode? int8u 483 CommandDialPlaybackMode? int8u + 485 CommandDialVideoPlaybackMode? int8u 487 SubCommandDialPlaybackMode? int8u + 489 SubCommandDialVideoPlaybackMode? int8u 491 FocusPointLock? int8u 493 ControlRingResponse int8u 505 VerticalMovieFuncButton? int8u @@ -26529,7 +26672,7 @@ possible unless the Microsoft group is specified explicitly. DateSent no DateVisited no Department no - Description no + Description Unicode/ Description no Description no Dimensions no @@ -27714,8 +27857,10 @@ ImageMagick. 'URL' URL string 'Warning' PNGWarning string 'XML:com.adobe.xmp' XMP XMP + 'aesthetic_score' AestheticScore string 'create-date' CreateDate string 'modify-date' ModDate string + 'parameters' Parameters string =head3 PNG PhysicalPixel Tags @@ -28140,6 +28285,7 @@ L for the official specification. 'dataWindow' DataWindow no 'displayWindow' DisplayWindow no 'envmap' EnvironmentMap no + 'exif' EXIF EXIF 'expTime' ExposureTime no 'focus' FocusDistance no 'framesPerSecond' FramesPerSecond no @@ -28167,6 +28313,7 @@ L for the official specification. 'worldToNDC' WorldToNDC no 'wrapmodes' WrapModes no 'xDensity' XResolution no + 'xmp' XMP XMP =head2 ZISRAW Tags @@ -29374,7 +29521,7 @@ for the official specification. The tags below are extracted from timed metadata in QuickTime and other formats of video files when the ExtractEmbedded option is used. Although most of these tags are combined into the single table below, ExifTool -currently reads 71 different formats of timed GPS metadata from video files. +currently reads 72 different formats of timed GPS metadata from video files. Tag Name Writable -------- -------- @@ -29900,39 +30047,51 @@ ExifTool will extract any iTunesInfo tags that exist, even if they are not defined in this table. These tags belong to the family 1 "iTunes" group, and are not currently writable. - Tag ID Tag Name Writable - ------ -------- -------- - 'ARTISTS' Artists no - 'BARCODE' Barcode no - 'CATALOGNUMBER' CatalogNumber no - 'DISCNUMBER' DiscNumber no - 'Dynamic Range (DR)' DynamicRange no - 'Dynamic Range (R128)' DynamicRangeR128 no - 'Encoding Params' EncodingParams QuickTime EncodingParams - 'LABEL' Label no - 'MEDIA' Media no - 'MOOD' Mood no - 'Peak Level (R128)' PeakLevelR128 no - 'Peak Level (Sample)' PeakLevelSample no - 'RATING' Rating no - 'SCRIPT' Script no - 'TRACKNUMBER' TrackNumber no - 'Volume Level (R128)' VolumeLevelR128 no + Tag ID Tag Name Writable + ------ -------- -------- + 'ARTISTS' Artists no + 'Actors' Actors no + 'BARCODE' Barcode no + 'CATALOGNUMBER' CatalogNumber no + 'COSTUME_DESIGNER' CostumeDesigner no + 'DIRECTOR' Director no + 'DIRECTOR_OF_PHOTOGRAPHY' + DirectorOfPhotography no + 'DISCNUMBER' DiscNumber no + 'Dynamic Range (DR)' DynamicRange no + 'Dynamic Range (R128)' DynamicRangeR128 no + 'EDITED_BY' EditedBy no + 'Encoding Params' EncodingParams QuickTime EncodingParams + 'IMDB_ID' IMDB_ID no + 'LABEL' Label no + 'MEDIA' Media no + 'MOOD' Mood no + 'PRODUCER' Producer no + 'PRODUCTION_DESIGNER' ProductionDesigner no + 'Peak Level (R128)' PeakLevelR128 no + 'Peak Level (Sample)' PeakLevelSample no + 'RATING' Rating no + 'SCREENPLAY_BY' ScreenplayBy no + 'SCRIPT' Script no + 'TIPL' TIPL no + 'TMDB_ID' TMDB_ID no + 'TRACKNUMBER' TrackNumber no + 'Volume Level (R128)' VolumeLevelR128 no 'Volume Level (ReplayGain)' ReplayVolumeLevel no - 'iTunEXTC' ContentRating no - 'iTunMOVI' iTunMOVI PLIST - 'iTunNORM' VolumeNormalization no - 'iTunSMPB' iTunSMPB no - 'iTunes_CDDB_1' CDDB1Info no + 'iTunEXTC' ContentRating no + 'iTunMOVI' iTunMOVI PLIST + 'iTunNORM' VolumeNormalization no + 'iTunSMPB' iTunSMPB no + 'iTunes_CDDB_1' CDDB1Info no 'iTunes_CDDB_TrackNumber' CDDBTrackNumber no - 'initialkey' InitialKey no - 'originaldate' OriginalDate no - 'originalyear' OriginalYear no - 'popularimeter' Popularimeter no - 'replaygain_track_gain' ReplayTrackGain no - 'replaygain_track_peak' ReplayTrackPeak no - 'tool' iTunTool no - '~length' Length no + 'initialkey' InitialKey no + 'originaldate' OriginalDate no + 'originalyear' OriginalYear no + 'popularimeter' Popularimeter no + 'replaygain_track_gain' ReplayTrackGain no + 'replaygain_track_peak' ReplayTrackPeak no + 'tool' iTunTool no + '~length' Length no =head3 QuickTime EncodingParams Tags diff --git a/bin/lib/Image/ExifTool/WriteQuickTime.pl b/bin/lib/Image/ExifTool/WriteQuickTime.pl index d6b7139..ed27afe 100644 --- a/bin/lib/Image/ExifTool/WriteQuickTime.pl +++ b/bin/lib/Image/ExifTool/WriteQuickTime.pl @@ -785,6 +785,7 @@ ($$$) $et or return 1; # allow dummy access to autoload this package my ($mdat, @mdat, @mdatEdit, $edit, $track, $outBuff, $co, $term, $delCount); my (%langTags, $canCreate, $delGrp, %boxPos, %didDir, $writeLast, $err, $atomCount); + my ($tag, $lastTag, $errStr); my $outfile = $$dirInfo{OutFile} || return 0; my $raf = $$dirInfo{RAF}; # (will be null for lower-level atoms) my $dataPt = $$dirInfo{DataPt}; # (will be null for top-level atoms) @@ -857,7 +858,10 @@ ($$$) } $atomCount = $$tagTablePtr{VARS}{ATOM_COUNT} if $$tagTablePtr{VARS}; + $tag = $lastTag = ''; + for (;;) { # loop through all atoms at this level + $lastTag = $tag if $$tagTablePtr{$tag}; # keep track of last known tag if (defined $atomCount and --$atomCount < 0 and $dataPt) { # stop processing now and just copy the rest of the atom Write($outfile, substr($$dataPt, $raf->Tell())) or $rtnVal=$rtnErr, $err=1; @@ -876,15 +880,15 @@ ($$$) last; } my $size = Get32u(\$hdr, 0) - 8; # (atom size without 8-byte header) - my $tag = substr($hdr, 4, 4); + $tag = substr($hdr, 4, 4); if ($size == -7) { # read the extended size - $raf->Read($buff, 8) == 8 or $et->Error('Truncated extended atom'), last; + $raf->Read($buff, 8) == 8 or $errStr = 'Truncated extended atom', last; $hdr .= $buff; my ($hi, $lo) = unpack('NN', $buff); if ($hi or $lo > 0x7fffffff) { if ($hi > 0x7fffffff) { - $et->Error('Invalid atom size'); + $errStr = 'Invalid atom size'; last; } elsif (not $et->Options('LargeFileSupport')) { $et->Error('End of processing at large atom (LargeFileSupport not enabled)'); @@ -892,7 +896,7 @@ ($$$) } } $size = $hi * 4294967296 + $lo - 16; - $size < 0 and $et->Error('Invalid extended atom size'), last; + $size < 0 and $errStr = 'Invalid extended atom size', last; } elsif ($size == -8) { if ($dataPt) { last if $$dirInfo{DirName} eq 'CanonCNTH'; # (this is normal for Canon CNTH atom) @@ -908,7 +912,7 @@ ($$$) } last; } elsif ($size < 0) { - $et->Error('Invalid atom size'); + $errStr = 'Invalid atom size'; last; } @@ -952,11 +956,11 @@ ($$$) $tag = PrintableTagID($tag,3); if ($size > $maxReadLen and $got == 0x10000) { my $mb = int($size / 0x100000 + 0.5); - $et->Error("'${tag}' atom is too large for rewriting ($mb MB)"); + $errStr = "'${tag}' atom is too large for rewriting ($mb MB)"; } else { - $et->Error("Truncated '${tag}' atom"); + $errStr = "Truncated '${tag}' atom"; } - return $rtnVal; + last; } } # save the handler type for this track @@ -1446,6 +1450,22 @@ ($$$) Write($outfile, $hdr, $buff) or $rtnVal=$rtnErr, $err=1, last; } } + # ($errStr is set if there was an error that could possibly be due to an unknown trailer) + if ($errStr) { + if ($lastTag eq 'mdat' and not $dataPt and not $$tagTablePtr{$tag}) { + my $nvTrail = $et->GetNewValueHash($Image::ExifTool::Extra{Trailer}); + if ($$et{DEL_GROUP}{Trailer} or ($nvTrail and not ($$nvTrail{Value} and $$nvTrail{Value}[0]))) { + $errStr =~ s/ is too large.*//; + $et->Warn('Deleted unknown trailer with ' . lcfirst($errStr)); + } else { + $et->Warn('Unknown trailer with ' . lcfirst($errStr)); + $et->Error('Use "-trailer=" to delete unknown trailer'); + } + } else { + $et->Error($errStr); + return $dataPt ? undef : 1; + } + } $et->VPrint(0, " [deleting $delCount $dirName tag".($delCount==1 ? '' : 's')."]\n") if $delCount; $createKeys &= ~0x01 unless $$addDirs{Keys}; # (Keys may have been written) diff --git a/bin/lib/Image/ExifTool/Writer.pl b/bin/lib/Image/ExifTool/Writer.pl index f850f7f..bd23cd3 100644 --- a/bin/lib/Image/ExifTool/Writer.pl +++ b/bin/lib/Image/ExifTool/Writer.pl @@ -1297,6 +1297,7 @@ ($$;@) Filter => $$options{Filter}, FixBase => $$options{FixBase}, Geolocation => $$options{Geolocation}, + GeolocAltNames => $$options{GeolocAltNames}, GeolocFeature => $$options{GeolocFeature}, GeolocMinPop => $$options{GeolocMinPop}, GeolocMaxDist => $$options{GeolocMaxDist}, @@ -1336,6 +1337,11 @@ ($$;@) XAttrTags => $$options{XAttrTags}, XMPAutoConv => $$options{XMPAutoConv}, ); + # reset Geolocation option if we aren't copying any geolocation tags + if ($$options{Geolocation} and not grep /\bGeolocation/i, @setTags) { + $self->VPrint(0, '(resetting unnecessary Geolocation option)'); + $$srcExifTool{OPTIONS}{Geolocation} = undef; + } $$srcExifTool{GLOBAL_TIME_OFFSET} = $$self{GLOBAL_TIME_OFFSET}; $$srcExifTool{ALT_EXIFTOOL} = $$self{ALT_EXIFTOOL}; foreach $tag (@setTags) { @@ -3806,7 +3812,7 @@ ($$;$) 'iptc' => [ qw(City Province-State Country-PrimaryLocationCode Country-PrimaryLocationName) ], 'gps' => [ qw(GPSLatitude GPSLongitude GPSLatitudeRef GPSLongitudeRef) ], 'xmp-exif' => [ qw(GPSLatitude GPSLongitude) ], - 'keys' => [ 'GPSCoordinates' ], + 'keys' => [ 'GPSCoordinates', 'LocationName' ], 'itemlist' => [ 'GPSCoordinates' ], 'userdata' => [ 'GPSCoordinates' ], # more general groups not in this lookup: XMP and QuickTime @@ -3818,7 +3824,7 @@ ($$;$) } # set default XMP City tags if necessary if (not $writeGPS and ($grps{xmp} or (not @tags and not $grps{quicktime}))) { - push @tags, qw(XMP:City XMP:State XMP:CountryCode XMP:Country); + push @tags, qw(XMP:City XMP:State XMP:CountryCode XMP:Country Keys:LocationName); } $writeGPS = 1 unless defined $writeGPS; # (delete both City and GPS) # set default QuickTime tag if necessary diff --git a/bin/lib/Image/ExifTool/XMP.pm b/bin/lib/Image/ExifTool/XMP.pm index 396b195..07b9ca3 100644 --- a/bin/lib/Image/ExifTool/XMP.pm +++ b/bin/lib/Image/ExifTool/XMP.pm @@ -2587,6 +2587,7 @@ my %sPantryItem = ( EnhanceDenoiseAlreadyApplied => { Writable => 'boolean' }, #forum14760 EnhanceDenoiseVersion => { }, #forum14760 integer? EnhanceDenoiseLumaAmount => { }, #forum14760 integer? + # FujiRatingAlreadyApplied - boolean written by LR classic 13.2 (forum15815) ); # IPTC Core namespace properties (Iptc4xmpCore) (ref 4) diff --git a/bin/perl-Image-ExifTool.spec b/bin/perl-Image-ExifTool.spec index 1474842..c9268ee 100644 --- a/bin/perl-Image-ExifTool.spec +++ b/bin/perl-Image-ExifTool.spec @@ -1,6 +1,6 @@ Summary: perl module for image data extraction Name: perl-Image-ExifTool -Version: 12.80 +Version: 12.81 Release: 1 License: Artistic/GPL Group: Development/Libraries/Perl diff --git a/lib/exiftool_vendored/version.rb b/lib/exiftool_vendored/version.rb index 9bd175f..bdc9203 100644 --- a/lib/exiftool_vendored/version.rb +++ b/lib/exiftool_vendored/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module ExiftoolVendored - VERSION = Gem::Version.new('12.80.0') + VERSION = Gem::Version.new('12.81.0') end