diff -Nru libimage-exiftool-perl-10.79/Changes libimage-exiftool-perl-10.80/Changes --- libimage-exiftool-perl-10.79/Changes 2018-02-12 02:12:24.000000000 +0000 +++ libimage-exiftool-perl-10.80/Changes 2018-02-22 13:02:07.000000000 +0000 @@ -4,9 +4,18 @@ RSS feed: http://owl.phy.queensu.ca/~phil/exiftool/rss.xml -Note: The most recent production release is Version 10.55. (Other versions are +Note: The most recent production release is Version 10.80. (Other versions are considered development releases, and are not uploaded to CPAN.) +Feb. 22, 2018 - Version 10.80 (production release) + + - Decode a new PanasonicRaw tag (thanks LibRaw) + - Extract ImageWidth/Height for main image of HEIC file + - Added preliminary read/write support for Reconyx UltraFire maker notes + - Added a new Sony/Minolta lens (thanks Jos Roost) + - Internal changes: + - Changed TimeNow() make ExifTool object optional + Feb. 11, 2018 - Version 10.79 - Added a new Olympus CameraType (thanks LibRaw) @@ -15,6 +24,8 @@ - Convert nulls IPTC:DocumentHistory to newlines - Removed all null terminators from JSON and PHP output - Fixed writing of GPSDateStamp and GPSTimeStamp to be able to set to "now" + - Internal changes: + - Changed TimeNow() to require ExifTool object as first argument Jan. 31, 2018 - Version 10.78 diff -Nru libimage-exiftool-perl-10.79/debian/changelog libimage-exiftool-perl-10.80/debian/changelog --- libimage-exiftool-perl-10.79/debian/changelog 2018-02-14 19:52:29.000000000 +0000 +++ libimage-exiftool-perl-10.80/debian/changelog 2018-02-22 17:56:24.000000000 +0000 @@ -1,3 +1,9 @@ +libimage-exiftool-perl (10.80-1) unstable; urgency=medium + + * New upstream release. + + -- gregor herrmann Thu, 22 Feb 2018 18:56:24 +0100 + libimage-exiftool-perl (10.79-1) unstable; urgency=medium * New upstream release. diff -Nru libimage-exiftool-perl-10.79/exiftool libimage-exiftool-perl-10.80/exiftool --- libimage-exiftool-perl-10.79/exiftool 2018-02-01 15:55:21.000000000 +0000 +++ libimage-exiftool-perl-10.80/exiftool 2018-02-12 13:41:10.000000000 +0000 @@ -12,7 +12,7 @@ use strict; require 5.004; -my $version = '10.79'; +my $version = '10.80'; # add our 'lib' directory to the include list BEFORE 'use Image::ExifTool' my $exeDir; @@ -4962,7 +4962,7 @@ produces output like this: - -- Generated by ExifTool 10.79 -- + -- Generated by ExifTool 10.80 -- File: a.jpg - 2003:10:31 15:44:19 (f/5.6, 1/60s, ISO 100) File: b.jpg - 2006:05:23 11:57:38 diff -Nru libimage-exiftool-perl-10.79/html/exiftool_pod.html libimage-exiftool-perl-10.80/html/exiftool_pod.html --- libimage-exiftool-perl-10.79/html/exiftool_pod.html 2018-02-12 02:09:18.000000000 +0000 +++ libimage-exiftool-perl-10.80/html/exiftool_pod.html 2018-02-22 12:59:09.000000000 +0000 @@ -629,7 +629,7 @@

produces output like this:

-
    -- Generated by ExifTool 10.79 --
+
    -- Generated by ExifTool 10.80 --
     File: a.jpg - 2003:10:31 15:44:19
     (f/5.6, 1/60s, ISO 100)
     File: b.jpg - 2006:05:23 11:57:38
diff -Nru libimage-exiftool-perl-10.79/html/faq.html libimage-exiftool-perl-10.80/html/faq.html
--- libimage-exiftool-perl-10.79/html/faq.html	2018-01-19 11:57:34.000000000 +0000
+++ libimage-exiftool-perl-10.80/html/faq.html	2018-02-21 12:04:50.000000000 +0000
@@ -885,7 +885,8 @@
 record (ExifTool adds 2424 bytes by default, but this padding is omitted if the
 -z option is used), and partly due to the flexibility of the XMP
 format which allows the information to be written in various styles, some of
-which are more compact than others.
+which are more compact than others (the -z option also causes a
+more compact form to be written).
 
 
 
You may also notice that the values of some "offset" tags (like @@ -1623,7 +1624,7 @@

-Last revised Jan 18, 2018 +Last revised Feb 20, 2018

<-- Back to ExifTool home page

diff -Nru libimage-exiftool-perl-10.79/html/history.html libimage-exiftool-perl-10.80/html/history.html --- libimage-exiftool-perl-10.79/html/history.html 2018-02-12 02:12:24.000000000 +0000 +++ libimage-exiftool-perl-10.80/html/history.html 2018-02-22 13:02:07.000000000 +0000 @@ -11,12 +11,24 @@

RSS feed: http://owl.phy.queensu.ca/~phil/exiftool/rss.xml

-

Note: The most recent production release is Version 10.55. (Other versions are +

Note: The most recent production release is Version 10.80. (Other versions are considered development releases, and are not uploaded to CPAN.)

+Feb. 22, 2018 - Version 10.80 (production release) +
    +
  • Decode a new PanasonicRaw tag (thanks LibRaw) +
  • Extract ImageWidth/Height for main image of HEIC file +
  • Added preliminary read/write support for Reconyx UltraFire maker notes +
  • Added a new Sony/Minolta lens (thanks Jos Roost) +
  • Internal changes: +
      +
    • Changed TimeNow() make ExifTool object optional +
    +
+ Feb. 11, 2018 - Version 10.79
  • Added a new Olympus CameraType (thanks LibRaw) @@ -25,6 +37,10 @@
  • Convert nulls IPTC:DocumentHistory to newlines
  • Removed all null terminators from JSON and PHP output
  • Fixed writing of GPSDateStamp and GPSTimeStamp to be able to set to "now" +
  • Internal changes: +
      +
    • Changed TimeNow() to require ExifTool object as first argument +
Jan. 31, 2018 - Version 10.78 diff -Nru libimage-exiftool-perl-10.79/html/index.html libimage-exiftool-perl-10.80/html/index.html --- libimage-exiftool-perl-10.79/html/index.html 2018-02-12 02:12:29.000000000 +0000 +++ libimage-exiftool-perl-10.80/html/index.html 2018-02-22 13:02:11.000000000 +0000 @@ -74,9 +74,9 @@
- -Download Version 10.79 (4.1 MB) - -Feb. 11, 2018
+ +Download Version 10.80 (4.1 MB) - +Feb. 22, 2018

ExifTool is a platform-independent Perl library plus a command-line application for @@ -127,8 +127,8 @@

Windows Executable: - - exiftool-10.79.zip (5.9 MB)
+ + exiftool-10.80.zip (5.9 MB)

The stand-alone Windows executable does not require Perl. Just download and un-zip the archive then double-click on @@ -139,8 +139,8 @@

MacOS Package: - - ExifTool-10.79.dmg (2.7 MB)
+ + ExifTool-10.80.dmg (2.7 MB)

The MacOS package installs the ExifTool command-line application and libraries in /usr/local/bin. After installing, type "exiftool" in @@ -1362,6 +1362,9 @@ +

(Your generous donations have provided the funds used to purchase a backup +ExifTool Forum server, +allowing support to be maintained while the other machine is down for repairs -- Feb 2018.)

Contact Me

diff -Nru libimage-exiftool-perl-10.79/html/install.html libimage-exiftool-perl-10.80/html/install.html --- libimage-exiftool-perl-10.79/html/install.html 2018-02-12 02:12:24.000000000 +0000 +++ libimage-exiftool-perl-10.80/html/install.html 2018-02-22 13:02:07.000000000 +0000 @@ -52,10 +52,10 @@

Stand-Alone Executable

  1. Download the Windows Executable from the ExifTool home page. -
    (The file you download should be named "exiftool-10.79.zip".)
  2. +
    (The file you download should be named "exiftool-10.80.zip".)
  3. Extract "exiftool(-k).exe" from the ".zip" file, and place it on your Desktop. -
    (Double-click on "exiftool-10.79.zip" to open +
    (Double-click on "exiftool-10.80.zip" to open the archive, then drag "exiftool(-k).exe" to your Desktop.)

You can now double-click on "exiftool(-k).exe" to read the @@ -107,7 +107,7 @@ activeperl.com.)

  1. Download the Image-ExifTool distribution from the ExifTool home page -
    (The file you download should be named "Image-ExifTool-10.79.tar.gz".)
  2. +
    (The file you download should be named "Image-ExifTool-10.80.tar.gz".)
  3. Extract the ExifTool files from the archive.
    (The archive is a gzipped tar file, and can be opened with various Windows utilities, including WinZip.)
  4. @@ -149,7 +149,7 @@

    OS X Package

    1. Download the ExifTool OS X Package from the ExifTool home page. -
      (The file you download should be named "ExifTool-10.79.dmg".)
    2. +
      (The file you download should be named "ExifTool-10.80.dmg".)
    3. Install as a normal OS X package.
      (Open the disk image, double-click on the install package, and follow the instructions.)
    4. @@ -164,12 +164,12 @@
      1. Download the Image-ExifTool distribution from the ExifTool home page to your Desktop. -
        (The file you download should be named "Image-ExifTool-10.79.tar.gz".)
      2. +
        (The file you download should be named "Image-ExifTool-10.80.tar.gz".)
      3. Launch the Terminal application from the Utilities folder in your Applications folder.
      4. In the Terminal window, type the following:
            cd ~/Desktop
        -    tar -xzf Image-ExifTool-10.79.tar.gz
        -    cd Image-ExifTool-10.79
        +    tar -xzf Image-ExifTool-10.80.tar.gz
        +    cd Image-ExifTool-10.80
             sudo cp -r exiftool lib /usr/local/bin
         
        (Note: The last step above will require you to enter your @@ -185,7 +185,7 @@ precedence for exiftool, but /Library/Perl/#.#.# is the default for any other Perl scripts.
      5. In OS X 10.8 or later, you may see this message when you try to open the install package: -
        "ExifTool-10.79.pkg" can't be opened because it is from an +
        "ExifTool-10.80.pkg" can't be opened because it is from an unidentified developer.
        The solution is to control-click on the pkg then select "Open" from the pop-up menu instead of just double-clicking. An alternative is to lower the security settings by changing "Allow applications downloaded from" to @@ -211,11 +211,11 @@
        1. Download the Image-ExifTool distribution from the ExifTool home page -
          (The file you download should be named "Image-ExifTool-10.79.tar.gz".)
        2. +
          (The file you download should be named "Image-ExifTool-10.80.tar.gz".)
        3. Unpack the distribution and make it your current directory by typing:
              cd <your download directory>
          -    gzip -dc Image-ExifTool-10.79.tar.gz | tar -xf -
          -    cd Image-ExifTool-10.79
          +    gzip -dc Image-ExifTool-10.80.tar.gz | tar -xf -
          +    cd Image-ExifTool-10.80
           
          (At this point you may run exiftool by typing "./exiftool <image file name>".)
        4. diff -Nru libimage-exiftool-perl-10.79/html/TagNames/DNG.html libimage-exiftool-perl-10.80/html/TagNames/DNG.html --- libimage-exiftool-perl-10.79/html/TagNames/DNG.html 2017-03-03 16:58:59.000000000 +0000 +++ libimage-exiftool-perl-10.80/html/TagNames/DNG.html 2018-02-13 13:55:25.000000000 +0000 @@ -116,6 +116,7 @@
          MakerNotePentax6
          MakerNotePhaseOne
          MakerNoteReconyx +
          MakerNoteReconyx2
          MakerNoteRicoh
          MakerNoteRicoh2
          MakerNoteRicohText @@ -136,7 +137,7 @@
          MakerNoteUnknownText
          MakerNoteUnknownBinary
          MakerNoteUnknown -undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef +undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef --> Apple Tags
          --> Nikon Tags
          --> Canon Tags @@ -200,6 +201,7 @@
          --> Pentax S1 Tags
          --> PhaseOne Tags
          --> Reconyx Tags +
          --> Reconyx Type2 Tags
          --> Ricoh Tags
          --> Ricoh Type2 Tags
          --> Ricoh Text Tags @@ -289,7 +291,7 @@
          (This document generated automatically by Image::ExifTool::BuildTagLookup) -
          Last revised Jul 25, 2016 +
          Last revised Feb 13, 2018

          <-- ExifTool Tag Names

          diff -Nru libimage-exiftool-perl-10.79/html/TagNames/EXIF.html libimage-exiftool-perl-10.80/html/TagNames/EXIF.html --- libimage-exiftool-perl-10.79/html/TagNames/EXIF.html 2018-01-08 18:23:08.000000000 +0000 +++ libimage-exiftool-perl-10.80/html/TagNames/EXIF.html 2018-02-13 13:55:30.000000000 +0000 @@ -1840,6 +1840,7 @@
          MakerNotePentax6
          MakerNotePhaseOne
          MakerNoteReconyx +
          MakerNoteReconyx2
          MakerNoteRicoh
          MakerNoteRicoh2
          MakerNoteRicohText @@ -1860,8 +1861,8 @@
          MakerNoteUnknownText
          MakerNoteUnknownBinary
          MakerNoteUnknown -undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef -ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD +undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef
          undef +ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD
          ExifIFD --> Apple Tags
          --> Nikon Tags
          --> Canon Tags @@ -1925,6 +1926,7 @@
          --> Pentax S1 Tags
          --> PhaseOne Tags
          --> Reconyx Tags +
          --> Reconyx Type2 Tags
          --> Ricoh Tags
          --> Ricoh Type2 Tags
          --> Ricoh Text Tags @@ -3499,7 +3501,7 @@
          (This document generated automatically by Image::ExifTool::BuildTagLookup) -
          Last revised Jan 8, 2018 +
          Last revised Feb 13, 2018

          <-- ExifTool Tag Names

          diff -Nru libimage-exiftool-perl-10.79/html/TagNames/Extra.html libimage-exiftool-perl-10.80/html/TagNames/Extra.html --- libimage-exiftool-perl-10.79/html/TagNames/Extra.html 2018-01-04 12:59:06.000000000 +0000 +++ libimage-exiftool-perl-10.80/html/TagNames/Extra.html 2018-02-20 13:26:21.000000000 +0000 @@ -98,7 +98,8 @@ specification is particularly vague about this byte ordering, and different applications use different conventions. By default ExifTool writes Unicode text in EXIF byte order, but this write-only tag may be used to force a -specific order) +specific order. Applies to the EXIF UserComment tag when writing special +characters)
          'II' = Little-endian (Intel, II)
          'MM' = Big-endian (Motorola, MM) @@ -479,7 +480,7 @@
          (This document generated automatically by Image::ExifTool::BuildTagLookup) -
          Last revised Jan 4, 2018 +
          Last revised Feb 20, 2018

          <-- ExifTool Tag Names

          diff -Nru libimage-exiftool-perl-10.79/html/TagNames/Microsoft.html libimage-exiftool-perl-10.80/html/TagNames/Microsoft.html --- libimage-exiftool-perl-10.79/html/TagNames/Microsoft.html 2018-02-11 22:15:59.000000000 +0000 +++ libimage-exiftool-perl-10.80/html/TagNames/Microsoft.html 2018-02-13 13:55:25.000000000 +0000 @@ -2124,7 +2124,7 @@
          (This document generated automatically by Image::ExifTool::BuildTagLookup) -
          Last revised Feb 11, 2018 +
          Last revised Feb 13, 2018

          <-- ExifTool Tag Names

          diff -Nru libimage-exiftool-perl-10.79/html/TagNames/Minolta.html libimage-exiftool-perl-10.80/html/TagNames/Minolta.html --- libimage-exiftool-perl-10.79/html/TagNames/Minolta.html 2018-01-12 15:00:09.000000000 +0000 +++ libimage-exiftool-perl-10.80/html/TagNames/Minolta.html 2018-02-20 13:26:21.000000000 +0000 @@ -653,13 +653,14 @@ 65535.72= Zeiss Loxia 35mm F2 65535.73= Zeiss Loxia 21mm F2.8 65535.74= Zeiss Loxia 85mm F2.4 -65535.75= Arax MC 35mm F2.8 Tilt+Shift -65535.76= Arax MC 80mm F2.8 Tilt+Shift -65535.77= Zenitar MF 16mm F2.8 Fisheye M42 -65535.78= Samyang 500mm Mirror F8.0 -65535.79= Pentacon Auto 135mm F2.8 -65535.80= Pentacon Auto 29mm F2.8 -65535.81= Helios 44-2 58mm F2.0 +65535.75= Zeiss Loxia 25mm F2.4 +65535.76= Arax MC 35mm F2.8 Tilt+Shift +65535.77= Arax MC 80mm F2.8 Tilt+Shift +65535.78= Zenitar MF 16mm F2.8 Fisheye M42 +65535.79= Samyang 500mm Mirror F8.0 +65535.80= Pentacon Auto 135mm F2.8 +65535.81= Pentacon Auto 29mm F2.8 +65535.82= Helios 44-2 58mm F2.0

        Minolta CameraSettings Tags

        @@ -2659,7 +2660,7 @@
        (This document generated automatically by Image::ExifTool::BuildTagLookup) -
        Last revised Jan 12, 2018 +
        Last revised Feb 20, 2018

        <-- ExifTool Tag Names

        diff -Nru libimage-exiftool-perl-10.79/html/TagNames/Olympus.html libimage-exiftool-perl-10.80/html/TagNames/Olympus.html --- libimage-exiftool-perl-10.79/html/TagNames/Olympus.html 2018-02-11 22:15:59.000000000 +0000 +++ libimage-exiftool-perl-10.80/html/TagNames/Olympus.html 2018-02-13 13:55:25.000000000 +0000 @@ -3656,7 +3656,7 @@
        (This document generated automatically by Image::ExifTool::BuildTagLookup) -
        Last revised Feb 11, 2018 +
        Last revised Feb 13, 2018

        <-- ExifTool Tag Names

        diff -Nru libimage-exiftool-perl-10.79/html/TagNames/PanasonicRaw.html libimage-exiftool-perl-10.80/html/TagNames/PanasonicRaw.html --- libimage-exiftool-perl-10.79/html/TagNames/PanasonicRaw.html 2018-01-30 15:10:02.000000000 +0000 +++ libimage-exiftool-perl-10.80/html/TagNames/PanasonicRaw.html 2018-02-20 13:26:21.000000000 +0000 @@ -160,47 +160,52 @@ - --> PanasonicRaw WBInfo2 Tags +0x002d +RawFormat +int16u! +  + 0x002e JpgFromRaw undef! --> JPEG Tags
        (processed as an embedded document because it contains full EXIF) - + 0x002f CropTop int16u   - + 0x0030 CropLeft int16u   - + 0x0031 CropBottom int16u   - + 0x0032 CropRight int16u   - + 0x010f Make string   - + 0x0110 Model string   - + 0x0111 StripOffsets no   - + 0x0112 Orientation int16u @@ -214,47 +219,47 @@
        7 = Mirror horizontal and rotate 90 CW
        8 = Rotate 270 CW - + 0x0116 RowsPerStrip no   - + 0x0117 StripByteCounts no   - + 0x0118 RawDataOffset no   - + 0x0119 DistortionInfo - --> PanasonicRaw DistortionInfo Tags - + 0x0120 CameraIFD - --> PanasonicRaw CameraIFD Tags - + 0x02bc ApplicationNotes int8u! --> XMP Tags - + 0x83bb IPTC-NAA int32u! --> IPTC Tags - + 0x8769 ExifOffset - --> EXIF Tags - + 0x8825 GPSInfo - @@ -493,7 +498,7 @@
        (This document generated automatically by Image::ExifTool::BuildTagLookup) -
        Last revised Jan 30, 2018 +
        Last revised Feb 20, 2018

        <-- ExifTool Tag Names

        diff -Nru libimage-exiftool-perl-10.79/html/TagNames/PDF.html libimage-exiftool-perl-10.80/html/TagNames/PDF.html --- libimage-exiftool-perl-10.79/html/TagNames/PDF.html 2018-02-11 22:15:59.000000000 +0000 +++ libimage-exiftool-perl-10.80/html/TagNames/PDF.html 2018-02-07 15:07:17.000000000 +0000 @@ -742,7 +742,7 @@
        (This document generated automatically by Image::ExifTool::BuildTagLookup) -
        Last revised Feb 11, 2018 +
        Last revised Feb 7, 2018

        <-- ExifTool Tag Names

        diff -Nru libimage-exiftool-perl-10.79/html/TagNames/QuickTime.html libimage-exiftool-perl-10.80/html/TagNames/QuickTime.html --- libimage-exiftool-perl-10.79/html/TagNames/QuickTime.html 2018-02-11 22:15:59.000000000 +0000 +++ libimage-exiftool-perl-10.80/html/TagNames/QuickTime.html 2018-02-07 15:07:17.000000000 +0000 @@ -6922,7 +6922,7 @@
        (This document generated automatically by Image::ExifTool::BuildTagLookup) -
        Last revised Feb 11, 2018 +
        Last revised Feb 7, 2018

        <-- ExifTool Tag Names

        diff -Nru libimage-exiftool-perl-10.79/html/TagNames/Reconyx.html libimage-exiftool-perl-10.80/html/TagNames/Reconyx.html --- libimage-exiftool-perl-10.79/html/TagNames/Reconyx.html 2017-03-03 16:58:59.000000000 +0000 +++ libimage-exiftool-perl-10.80/html/TagNames/Reconyx.html 2018-02-20 13:26:21.000000000 +0000 @@ -124,9 +124,118 @@   +

        Reconyx Type2 Tags

        +

        Tags extracted from models such as the UltraFire.

        +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Index1Tag NameWritableValues / Notes
        24FirmwareVersionundef[7] 
        31Micro1Versionundef[7] 
        38BootLoaderVersionundef[7] 
        45Micro2Versionundef[7] 
        52TriggerModeundef[1]'M' = Motion Detection +
        'P' = Point and Shoot +
        'T' = Time Lapse
        53Sequenceint8u[2] 
        55EventNumberint32u 
        59DateTimeOriginalint8u[7] 
        66DayOfWeekint8u + +
        0 = Sunday +
        1 = Monday +
        2 = Tuesday +
        3 = Wednesday
          4 = Thursday +
        5 = Friday +
        6 = Saturday
        +
        67MoonPhaseint8u + +
        0 = New +
        1 = New Crescent +
        2 = First Quarter +
        3 = Waxing Gibbous
          4 = Full +
        5 = Waning Gibbous +
        6 = Last Quarter +
        7 = Old Crescent
        +
        68AmbientTemperatureFahrenheitint16s 
        70AmbientTemperatureint16s 
        72Illuminationint8u0 = Off +
        1 = On
        73BatteryVoltageint16u 
        75SerialNumberstring[15] 
        90UserLabelstring[21] 
        +
        (This document generated automatically by Image::ExifTool::BuildTagLookup) -
        Last revised Oct 21, 2011 +
        Last revised Feb 20, 2018

        <-- ExifTool Tag Names

        diff -Nru libimage-exiftool-perl-10.79/html/TagNames/Shortcuts.html libimage-exiftool-perl-10.80/html/TagNames/Shortcuts.html --- libimage-exiftool-perl-10.79/html/TagNames/Shortcuts.html 2017-03-03 16:58:59.000000000 +0000 +++ libimage-exiftool-perl-10.80/html/TagNames/Shortcuts.html 2018-02-22 12:27:18.000000000 +0000 @@ -201,6 +201,7 @@
        MakerNotePentax6
        MakerNotePhaseOne
        MakerNoteReconyx +
        MakerNoteReconyx2
        MakerNoteRicoh
        MakerNoteRicoh2
        MakerNoteRicohText @@ -274,7 +275,7 @@
        (This document generated automatically by Image::ExifTool::BuildTagLookup) -
        Last revised Jul 28, 2016 +
        Last revised Feb 22, 2018

        <-- ExifTool Tag Names

        diff -Nru libimage-exiftool-perl-10.79/html/TagNames/Sony.html libimage-exiftool-perl-10.80/html/TagNames/Sony.html --- libimage-exiftool-perl-10.79/html/TagNames/Sony.html 2018-01-17 17:35:20.000000000 +0000 +++ libimage-exiftool-perl-10.80/html/TagNames/Sony.html 2018-02-20 13:26:21.000000000 +0000 @@ -1654,13 +1654,14 @@ 6553.72= Zeiss Loxia 35mm F2 6553.73= Zeiss Loxia 21mm F2.8 6553.74= Zeiss Loxia 85mm F2.4 -6553.75= Arax MC 35mm F2.8 Tilt+Shift -6553.76= Arax MC 80mm F2.8 Tilt+Shift -6553.77= Zenitar MF 16mm F2.8 Fisheye M42 -6553.78= Samyang 500mm Mirror F8.0 -6553.79= Pentacon Auto 135mm F2.8 -6553.80= Pentacon Auto 29mm F2.8 -6553.81= Helios 44-2 58mm F2.0 +6553.75= Zeiss Loxia 25mm F2.4 +6553.76= Arax MC 35mm F2.8 Tilt+Shift +6553.77= Arax MC 80mm F2.8 Tilt+Shift +6553.78= Zenitar MF 16mm F2.8 Fisheye M42 +6553.79= Samyang 500mm Mirror F8.0 +6553.80= Pentacon Auto 135mm F2.8 +6553.81= Pentacon Auto 29mm F2.8 +6553.82= Helios 44-2 58mm F2.0 18688= Sigma MC-11 SA-E Mount Converter with not-supported Sigma lens 25501= Minolta AF 50mm F1.7 25511= Minolta AF 35-70mm F4 or Other Lens @@ -1861,13 +1862,14 @@ 65535.72= Zeiss Loxia 35mm F2 65535.73= Zeiss Loxia 21mm F2.8 65535.74= Zeiss Loxia 85mm F2.4 -65535.75= Arax MC 35mm F2.8 Tilt+Shift -65535.76= Arax MC 80mm F2.8 Tilt+Shift -65535.77= Zenitar MF 16mm F2.8 Fisheye M42 -65535.78= Samyang 500mm Mirror F8.0 -65535.79= Pentacon Auto 135mm F2.8 -65535.80= Pentacon Auto 29mm F2.8 -65535.81= Helios 44-2 58mm F2.0 +65535.75= Zeiss Loxia 25mm F2.4 +65535.76= Arax MC 35mm F2.8 Tilt+Shift +65535.77= Arax MC 80mm F2.8 Tilt+Shift +65535.78= Zenitar MF 16mm F2.8 Fisheye M42 +65535.79= Samyang 500mm Mirror F8.0 +65535.80= Pentacon Auto 135mm F2.8 +65535.81= Pentacon Auto 29mm F2.8 +65535.82= Helios 44-2 58mm F2.0

        Sony CameraInfo Tags

        @@ -4879,6 +4881,7 @@ 49233= Zeiss Loxia 35mm F2 49234= Zeiss Loxia 21mm F2.8 49235= Zeiss Loxia 85mm F2.4 +49236= Zeiss Loxia 25mm F2.4 50480= Sigma 30mm F1.4 DC DN | C 50481= Sigma 50mm F1.4 DG HSM | A + MC-11 50482= Sigma 18-300mm F3.5-6.3 DC MACRO OS HSM | C + MC-11 @@ -11068,7 +11071,7 @@
        (This document generated automatically by Image::ExifTool::BuildTagLookup) -
        Last revised Jan 17, 2018 +
        Last revised Feb 20, 2018

        <-- ExifTool Tag Names

        diff -Nru libimage-exiftool-perl-10.79/lib/Image/ExifTool/MakerNotes.pm libimage-exiftool-perl-10.80/lib/Image/ExifTool/MakerNotes.pm --- libimage-exiftool-perl-10.79/lib/Image/ExifTool/MakerNotes.pm 2018-01-02 13:19:18.000000000 +0000 +++ libimage-exiftool-perl-10.80/lib/Image/ExifTool/MakerNotes.pm 2018-02-13 14:24:32.000000000 +0000 @@ -21,7 +21,7 @@ sub WriteUnknownOrPreview($$$); sub FixLeicaBase($$;$); -$VERSION = '2.00'; +$VERSION = '2.01'; my $debug; # set to 1 to enable debugging code @@ -796,6 +796,14 @@ ByteOrder => 'Little-endian', }, }, + { + Name => 'MakerNoteReconyx2', + Condition => '$$valPt =~ /^RECONYXUF\0/', + SubDirectory => { + TagTable => 'Image::ExifTool::Reconyx::Type2', + ByteOrder => 'Little-endian', + }, + }, { Name => 'MakerNoteRicoh', # (my test R50 image starts with " \x02\x01" - PH) diff -Nru libimage-exiftool-perl-10.79/lib/Image/ExifTool/Minolta.pm libimage-exiftool-perl-10.80/lib/Image/ExifTool/Minolta.pm --- libimage-exiftool-perl-10.79/lib/Image/ExifTool/Minolta.pm 2018-01-10 14:43:57.000000000 +0000 +++ libimage-exiftool-perl-10.80/lib/Image/ExifTool/Minolta.pm 2018-02-20 12:03:13.000000000 +0000 @@ -49,7 +49,7 @@ use Image::ExifTool qw(:DataAccess :Utils); use Image::ExifTool::Exif; -$VERSION = '2.59'; +$VERSION = '2.60'; # Full list of product codes for Sony-compatible Minolta lenses # (ref http://www.kb.sony.com/selfservice/documentLink.do?externalId=C1000570) @@ -617,16 +617,17 @@ '65535.72' => 'Zeiss Loxia 35mm F2', #JR (49233 or 0) '65535.73' => 'Zeiss Loxia 21mm F2.8', #JR (49234) '65535.74' => 'Zeiss Loxia 85mm F2.4', #JR (49235) + '65535.75' => 'Zeiss Loxia 25mm F2.4', #JR (49236) # # other lenses # - '65535.75' => 'Arax MC 35mm F2.8 Tilt+Shift', #JD - '65535.76' => 'Arax MC 80mm F2.8 Tilt+Shift', #JD - '65535.77' => 'Zenitar MF 16mm F2.8 Fisheye M42', #JD - '65535.78' => 'Samyang 500mm Mirror F8.0', #19 - '65535.79' => 'Pentacon Auto 135mm F2.8', #19 - '65535.80' => 'Pentacon Auto 29mm F2.8', #19 - '65535.81' => 'Helios 44-2 58mm F2.0', #19 + '65535.76' => 'Arax MC 35mm F2.8 Tilt+Shift', #JD + '65535.77' => 'Arax MC 80mm F2.8 Tilt+Shift', #JD + '65535.78' => 'Zenitar MF 16mm F2.8 Fisheye M42', #JD + '65535.79' => 'Samyang 500mm Mirror F8.0', #19 + '65535.80' => 'Pentacon Auto 135mm F2.8', #19 + '65535.81' => 'Pentacon Auto 29mm F2.8', #19 + '65535.82' => 'Helios 44-2 58mm F2.0', #19 ); %minoltaTeleconverters = ( diff -Nru libimage-exiftool-perl-10.79/lib/Image/ExifTool/PanasonicRaw.pm libimage-exiftool-perl-10.80/lib/Image/ExifTool/PanasonicRaw.pm --- libimage-exiftool-perl-10.79/lib/Image/ExifTool/PanasonicRaw.pm 2018-01-30 15:32:39.000000000 +0000 +++ libimage-exiftool-perl-10.80/lib/Image/ExifTool/PanasonicRaw.pm 2018-02-20 13:32:31.000000000 +0000 @@ -21,7 +21,7 @@ use Image::ExifTool qw(:DataAccess :Utils); use Image::ExifTool::Exif; -$VERSION = '1.13'; +$VERSION = '1.14'; sub ProcessJpgFromRaw($$$); sub WriteJpgFromRaw($$$); @@ -162,7 +162,17 @@ SubDirectory => { TagTable => 'Image::ExifTool::PanasonicRaw::WBInfo2' }, }, # 0x27,0x29,0x2a,0x2b,0x2c: [binary data] - # 0x2d: 2,3 + 0x2d => { #IB + Name => 'RawFormat', + Writable => 'int16u', + Protected => 1, + # 2 - RAW DMC-FZ8/FZ18 + # 3 - RAW DMC-L10 + # 4 - RW2 for most other models, including G9 normal resolution and YUNEEC CGO4 + # (must add 15 to black levels for RawFormat == 4) + # 5 - RW2 DC-GH5s and G9 HiRes + # missing - DMC-LX1/FZ30/FZ50/L1/LX1/LX2 + }, 0x2e => { #JD Name => 'JpgFromRaw', # (writable directory!) Groups => { 2 => 'Preview' }, diff -Nru libimage-exiftool-perl-10.79/lib/Image/ExifTool/QuickTime.pm libimage-exiftool-perl-10.80/lib/Image/ExifTool/QuickTime.pm --- libimage-exiftool-perl-10.79/lib/Image/ExifTool/QuickTime.pm 2018-02-11 22:15:37.000000000 +0000 +++ libimage-exiftool-perl-10.80/lib/Image/ExifTool/QuickTime.pm 2018-02-21 16:16:33.000000000 +0000 @@ -42,7 +42,7 @@ use Image::ExifTool::Exif; use Image::ExifTool::GPS; -$VERSION = '2.10'; +$VERSION = '2.11'; sub FixWrongFormat($); sub ProcessMOV($$;$); @@ -366,6 +366,11 @@ 0x1ffff => 'Discrete_65535', ); +# properties which don't get inherited from the parent +my %dontInherit = ( + ispe => 1, # size of parent may be different +); + # boxes for the various handler types that we want to save when ExtractEmbedded is enabled my %eeBox = ( # (nothing useful found yet in video stream) @@ -2145,7 +2150,15 @@ ispe => { Name => 'ImageSpatialExtent', Condition => '$$valPt =~ /^\0{4}/', # (version/flags == 0/0) - RawConv => 'join " ", unpack("x4N*", $val)', + RawConv => q{ + my @dim = unpack("x4N*", $val); + return undef if @dim < 2; + unless ($$self{DOC_NUM}) { + $self->FoundTag(ImageWidth => $dim[0]); + $self->FoundTag(ImageHeight => $dim[1]); + } + return join ' ', @dim; + }, PrintConv => '$val =~ tr/ /x/; $val', }, pixi => { @@ -2200,6 +2213,7 @@ } # add all referenced item ID's to a "RefersTo" lookup $$et{ItemInfo}{$id}{RefersTo}{$_} = 1 foreach @to; + $et->VPrint(1, "$$et{INDENT} Item $id describes: @to\n"); return undef; }, }, @@ -7425,7 +7439,9 @@ my $item = $$items{$id}; foreach $prop (@{$$item{Association}}) { next unless $prop == $index; - if ($id == $primary or (not $$item{RefersTo} or $$item{RefersTo}{$primary})) { + if ($id == $primary or (not $dontInherit{$tag} and + (not $$item{RefersTo} or $$item{RefersTo}{$primary}))) + { # this is associated with the primary item or an item describing # the primary item, so consider this part of the main document undef $docNum; diff -Nru libimage-exiftool-perl-10.79/lib/Image/ExifTool/Reconyx.pm libimage-exiftool-perl-10.80/lib/Image/ExifTool/Reconyx.pm --- libimage-exiftool-perl-10.79/lib/Image/ExifTool/Reconyx.pm 2018-01-02 13:19:29.000000000 +0000 +++ libimage-exiftool-perl-10.80/lib/Image/ExifTool/Reconyx.pm 2018-02-20 12:03:13.000000000 +0000 @@ -6,6 +6,7 @@ # Revisions: 2011-01-11 - P. Harvey Created # # References: 1) RCNX_MN10.pdf (courtesy of Reconyx Inc.) +# 2) ultrafire_makernote.pdf (courtesy of Reconyx Inc.) #------------------------------------------------------------------------------ package Image::ExifTool::Reconyx; @@ -13,7 +14,17 @@ use strict; use vars qw($VERSION); -$VERSION = '1.04'; +$VERSION = '1.05'; + +# info for Type2 version tags +my %versionInfo = ( + Format => 'undef[7]', + ValueConv => 'sprintf("V%.2x.%.2x %.4x:%.2x:%.2x Rev.%s", unpack("CCvCCa", $val))', + ValueConvInv => q{ + my @v = $val =~ /^V([0-9a-f]+)\.([0-9a-f]+) (\d{4}):(\d{2}):(\d{2})\s*Rev\.(\w)/i or return undef; + pack('CCvCCa', map(hex, @v[0..4]), $v[5]); + }, +); # maker notes for Reconyx Hyperfire cameras (ref PH) %Image::ExifTool::Reconyx::Main = ( @@ -140,10 +151,7 @@ 0x27 => 'Saturation', #1 0x28 => { Name => 'InfraredIlluminator', - PrintConv => { - 0 => 'Off', - 1 => 'On', - }, + PrintConv => { 0 => 'Off', 1 => 'On' }, }, 0x29 => 'MotionSensitivity', #1 0x2a => { #1 @@ -159,6 +167,125 @@ }, ); +# maker notes for Reconyx UltraFire cameras (ref PH) +%Image::ExifTool::Reconyx::Type2 = ( + GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' }, + PROCESS_PROC => \&Image::ExifTool::ProcessBinaryData, + WRITE_PROC => \&Image::ExifTool::WriteBinaryData, + CHECK_PROC => \&Image::ExifTool::CheckBinaryData, + TAG_PREFIX => 'Reconyx', + WRITABLE => 1, + FIRST_ENTRY => 0, + NOTES => 'Tags extracted from models such as the UltraFire.', + # 0x0a - int32u makernote ID 0x00020000 #2 + # 0x0e - int16u makernote size #2 + # 0x12 - int32u public structure ID 0x07f100001 #2 + # 0x16 - int16u public structure size #2 (0x5d = start of public ID to end of UserLabel) + 0x18 => { Name => 'FirmwareVersion', %versionInfo }, + 0x1f => { Name => 'Micro1Version', %versionInfo }, #2 + 0x26 => { Name => 'BootLoaderVersion', %versionInfo }, #2 + 0x2d => { Name => 'Micro2Version', %versionInfo }, #2 + 0x34 => { + Name => 'TriggerMode', + Format => 'undef[1]', + PrintConv => { + M => 'Motion Detection', + T => 'Time Lapse', + P => 'Point and Shoot', #2 + }, + }, + 0x35 => { + Name => 'Sequence', + Format => 'int8u[2]', + PrintConv => '$val =~ s/ / of /; $val', + PrintConvInv => 'join(" ", $val=~/\d+/g)', + }, + 0x37 => { #2 + Name => 'EventNumber', + Format => 'int32u', + }, + 0x3b => { + Name => 'DateTimeOriginal', + Description => 'Date/Time Original', + Format => 'int8u[7]', + Groups => { 2 => 'Time' }, + Priority => 0, # (not as reliable as EXIF) + Shift => 'Time', + ValueConv => q{ + my @a = split ' ', $val; + $a[5] += pop(@a) * 256; + sprintf('%.4d:%.2d:%.2d %.2d:%.2d:%.2d', reverse @a); + }, + ValueConvInv => q{ + my @a = ($val =~ /\d+/g); + return undef unless @a >= 6; + unshift @a, ($a[0] >> 8); + $a[1] -= $a[0] * 256; + join ' ', @a[6,5,4,3,2,1,0]; + }, + PrintConv => '$self->ConvertDateTime($val)', + PrintConvInv => '$self->InverseDateTime($val)', + }, + 0x42 => { #2 + Name => 'DayOfWeek', + Groups => { 2 => 'Time' }, + PrintConv => { + 0 => 'Sunday', + 1 => 'Monday', + 2 => 'Tuesday', + 3 => 'Wednesday', + 4 => 'Thursday', + 5 => 'Friday', + 6 => 'Saturday', + }, + }, + 0x43 => { + Name => 'MoonPhase', + Groups => { 2 => 'Time' }, + PrintConv => { + 0 => 'New', + 1 => 'New Crescent', + 2 => 'First Quarter', + 3 => 'Waxing Gibbous', + 4 => 'Full', + 5 => 'Waning Gibbous', + 6 => 'Last Quarter', + 7 => 'Old Crescent', + }, + }, + 0x44 => { + Name => 'AmbientTemperatureFahrenheit', + Format => 'int16s', + PrintConv => '"$val F"', + PrintConvInv => '$val=~/(-?\d+)/ ? $1 : $val', + }, + 0x46 => { + Name => 'AmbientTemperature', + Format => 'int16s', + PrintConv => '"$val C"', + PrintConvInv => '$val=~/(-?\d+)/ ? $1 : $val', + }, + 0x48 => { + Name => 'Illumination', + PrintConv => { 0 => 'Off', 1 => 'On' }, + }, + 0x49 => { + Name => 'BatteryVoltage', + Format => 'int16u', + ValueConv => '$val / 1000', + ValueConvInv => '$val * 1000', + PrintConv => '"$val V"', + PrintConvInv => '$val=~s/ ?V$//; $val', + }, + 0x4b => { + Name => 'SerialNumber', + Format => 'string[15]', + }, + 0x5a => { + Name => 'UserLabel', + Format => 'string[21]', + }, +); __END__ @@ -173,7 +300,7 @@ =head1 DESCRIPTION This module contains definitions required by Image::ExifTool to interpret -maker notes in Reconyx cameras. +maker notes in images from Reconyx cameras. =head1 AUTHOR diff -Nru libimage-exiftool-perl-10.79/lib/Image/ExifTool/Shortcuts.pm libimage-exiftool-perl-10.80/lib/Image/ExifTool/Shortcuts.pm --- libimage-exiftool-perl-10.79/lib/Image/ExifTool/Shortcuts.pm 2018-01-02 13:19:30.000000000 +0000 +++ libimage-exiftool-perl-10.80/lib/Image/ExifTool/Shortcuts.pm 2018-02-22 12:18:01.000000000 +0000 @@ -19,7 +19,7 @@ use strict; use vars qw($VERSION); -$VERSION = '1.57'; +$VERSION = '1.58'; # this is a special table used to define command-line shortcuts # (documentation Notes may be added for these via %shortcutNotes in BuildTagLookup.pm) @@ -176,6 +176,7 @@ 'MakerNotePentax6', 'MakerNotePhaseOne', 'MakerNoteReconyx', + 'MakerNoteReconyx2', 'MakerNoteRicoh', 'MakerNoteRicoh2', 'MakerNoteRicohText', diff -Nru libimage-exiftool-perl-10.79/lib/Image/ExifTool/Sony.pm libimage-exiftool-perl-10.80/lib/Image/ExifTool/Sony.pm --- libimage-exiftool-perl-10.79/lib/Image/ExifTool/Sony.pm 2018-01-17 17:34:32.000000000 +0000 +++ libimage-exiftool-perl-10.80/lib/Image/ExifTool/Sony.pm 2018-02-20 12:03:13.000000000 +0000 @@ -31,7 +31,7 @@ use Image::ExifTool::Exif; use Image::ExifTool::Minolta; -$VERSION = '2.72'; +$VERSION = '2.73'; sub ProcessSRF($$$); sub ProcessSR2($$$); @@ -134,6 +134,7 @@ 49233 => 'Zeiss Loxia 35mm F2', #JR (lens firmware Ver.02) 49234 => 'Zeiss Loxia 21mm F2.8', #PH 49235 => 'Zeiss Loxia 85mm F2.4', #JR + 49236 => 'Zeiss Loxia 25mm F2.4', #JR 50480 => 'Sigma 30mm F1.4 DC DN | C', #IB/JR (016) 50481 => 'Sigma 50mm F1.4 DG HSM | A + MC-11', #JR (014) @@ -1345,6 +1346,7 @@ PrintConv => '$val ? sprintf("%+.1f",$val) : 0', PrintConvInv => '$val', }, + # 0x2031 - new for ILCE-9 v2.00 (possible serial number?) 0x3000 => { Name => 'ShotInfo', SubDirectory => { TagTable => 'Image::ExifTool::Sony::ShotInfo' }, diff -Nru libimage-exiftool-perl-10.79/lib/Image/ExifTool/TagLookup.pm libimage-exiftool-perl-10.80/lib/Image/ExifTool/TagLookup.pm --- libimage-exiftool-perl-10.79/lib/Image/ExifTool/TagLookup.pm 2018-02-11 22:15:57.000000000 +0000 +++ libimage-exiftool-perl-10.80/lib/Image/ExifTool/TagLookup.pm 2018-02-20 13:26:19.000000000 +0000 @@ -373,6 +373,7 @@ 'Image::ExifTool::QuickTime::Preview', 'Image::ExifTool::QuickTime::TrackHeader', 'Image::ExifTool::Reconyx::Main', + 'Image::ExifTool::Reconyx::Type2', 'Image::ExifTool::Ricoh::FaceInfo', 'Image::ExifTool::Ricoh::FirmwareInfo', 'Image::ExifTool::Ricoh::ImageInfo', @@ -494,42 +495,42 @@ # lookup for all writable tags my %tagLookup = ( 'aberrationcorrectiondistance' => { 100 => 0x69 }, - 'about' => { 445 => 'about' }, - 'aboutcvterm' => { 437 => 'AboutCvTerm' }, - 'aboutcvtermcvid' => { 437 => [\'AboutCvTerm','AboutCvTermCvId'] }, - 'aboutcvtermid' => { 437 => [\'AboutCvTerm','AboutCvTermCvTermId'] }, - 'aboutcvtermname' => { 437 => [\'AboutCvTerm','AboutCvTermCvTermName'] }, - 'aboutcvtermrefinedabout' => { 437 => [\'AboutCvTerm','AboutCvTermCvTermRefinedAbout'] }, + 'about' => { 446 => 'about' }, + 'aboutcvterm' => { 438 => 'AboutCvTerm' }, + 'aboutcvtermcvid' => { 438 => [\'AboutCvTerm','AboutCvTermCvId'] }, + 'aboutcvtermid' => { 438 => [\'AboutCvTerm','AboutCvTermCvTermId'] }, + 'aboutcvtermname' => { 438 => [\'AboutCvTerm','AboutCvTermCvTermName'] }, + 'aboutcvtermrefinedabout' => { 438 => [\'AboutCvTerm','AboutCvTermCvTermRefinedAbout'] }, 'absolutealtitude' => { 107 => 'AbsoluteAltitude' }, - 'abspeakaudiofilepath' => { 451 => 'absPeakAudioFilePath' }, + 'abspeakaudiofilepath' => { 452 => 'absPeakAudioFilePath' }, 'acceleration' => { 110 => 0x9404 }, 'accelerationtracking' => { 75 => 0x518 }, 'accelerationvector' => { 1 => 0x8 }, - 'accelerometer' => { 347 => 0x3 }, + 'accelerometer' => { 348 => 0x3 }, 'accelerometerx' => { 285 => 0x8d }, 'accelerometery' => { 285 => 0x8e }, 'accelerometerz' => { 285 => 0x8c }, 'accessoryserialnumber' => { 285 => 0x54 }, 'accessorytype' => { 285 => 0x53 }, - 'acedemicfield' => { 441 => 'acedemicField' }, + 'acedemicfield' => { 442 => 'acedemicField' }, 'actionadvised' => { 118 => 0x2a }, 'activearea' => { 110 => 0xc68d }, 'actived-lighting' => { 201 => 0x22, 238 => 0x24 }, 'actived-lightingmode' => { 238 => 0x25 }, 'adaptervoltage' => { 124 => 0x407 }, 'addaspectratioinfo' => { 75 => 0x80e }, - 'additionalmodelinformation' => { 437 => 'AddlModelInfo' }, + 'additionalmodelinformation' => { 438 => 'AddlModelInfo' }, 'addoriginaldecisiondata' => { 75 => 0x80f, 76 => 0x11, 77 => 0x13, 80 => 0x14 }, 'address' => { 145 => 'Address' }, - 'adjustmentmode' => { 354 => 0x15 }, + 'adjustmentmode' => { 355 => 0x15 }, 'adlbracketingstep' => { 219 => 0x883 }, 'adlbracketingtype' => { 219 => 0x884 }, 'adobe' => { 111 => 'Adobe' }, - 'adultcontentwarning' => { 274 => 'AdultContentWarning', 444 => 'adultContentWarning' }, + 'adultcontentwarning' => { 274 => 'AdultContentWarning', 445 => 'adultContentWarning' }, 'advancedfilter' => { 115 => 0x1201 }, 'advancedraw' => { 240 => 0x76a43203 }, 'advancedscenetype' => { 285 => 0x3d }, - 'advisory' => { 449 => 'Advisory' }, + 'advisory' => { 450 => 'Advisory' }, 'ae_iso' => { 292 => 0x2, 293 => 0x4, 294 => 0x12 }, 'aeaperture' => { 292 => 0x1, 293 => 0x3, 294 => 0x11 }, 'aeaperturesteps' => { 292 => 0x8, 293 => 0xb }, @@ -544,7 +545,7 @@ 'aeexposuretime' => { 292 => 0x0, 293 => 0x2, 294 => 0x10 }, 'aelbutton' => { 167 => 0x45 }, 'aelexposureindicator' => { 167 => 0x51 }, - 'aelock' => { 167 => 0x5b, 249 => '4.2', 258 => '4.2', 264 => 0x201, 319 => 0x48, 362 => 0x40, 363 => 0x40, 364 => [0x86,0x286] }, + 'aelock' => { 167 => 0x5b, 249 => '4.2', 258 => '4.2', 264 => 0x201, 319 => 0x48, 363 => 0x40, 364 => 0x40, 365 => [0x86,0x286] }, 'aelockbutton' => { 247 => '16.1', 249 => '4.1', 252 => '15.1', 253 => '16.1', 254 => '16.1', 256 => '30.1', 257 => '16.1', 258 => '4.1', 260 => '17.1', 262 => '17.1' }, 'aelockbuttonplusdials' => { 247 => '16.2', 256 => '32.1', 260 => '44.1' }, 'aelockformb-d80' => { 262 => '3.1' }, @@ -557,12 +558,12 @@ 'aeminaperture' => { 292 => 0xb, 293 => 0x12, 294 => 0x1e }, 'aeminexposuretime' => { 292 => 0x5, 293 => 0x13, 294 => 0x1f }, 'aeprogrammode' => { 292 => 0x6 }, - 'aeprojectlink' => { 426 => 'aeProjectLink' }, - 'aeprojectlinkcompositionid' => { 426 => [\'aeProjectLink','aeProjectLinkCompositionID'] }, - 'aeprojectlinkfullpath' => { 426 => [\'aeProjectLink','aeProjectLinkFullPath'] }, - 'aeprojectlinkrenderoutputmoduleindex' => { 426 => [\'aeProjectLink','aeProjectLinkRenderOutputModuleIndex'] }, - 'aeprojectlinkrenderqueueitemid' => { 426 => [\'aeProjectLink','aeProjectLinkRenderQueueItemID'] }, - 'aeprojectlinkrendertimestamp' => { 426 => [\'aeProjectLink','aeProjectLinkRenderTimeStamp'] }, + 'aeprojectlink' => { 427 => 'aeProjectLink' }, + 'aeprojectlinkcompositionid' => { 427 => [\'aeProjectLink','aeProjectLinkCompositionID'] }, + 'aeprojectlinkfullpath' => { 427 => [\'aeProjectLink','aeProjectLinkFullPath'] }, + 'aeprojectlinkrenderoutputmoduleindex' => { 427 => [\'aeProjectLink','aeProjectLinkRenderOutputModuleIndex'] }, + 'aeprojectlinkrenderqueueitemid' => { 427 => [\'aeProjectLink','aeProjectLinkRenderQueueItemID'] }, + 'aeprojectlinkrendertimestamp' => { 427 => [\'aeProjectLink','aeProjectLinkRenderTimeStamp'] }, 'aesetting' => { 33 => 0x21 }, 'aewhitebalance' => { 292 => 0xd }, 'aexv' => { 292 => 0x3, 293 => 0x5 }, @@ -579,241 +580,241 @@ 'afaperture' => { 197 => 0x5, 198 => 0x5 }, 'afareaheight' => { 176 => [0x1a,0x50] }, 'afareaillumination' => { 167 => 0x4b, 258 => '15.3' }, - 'afareamode' => { 163 => 0x33, 167 => 0xe, 175 => 0x0, 176 => 0x5, 285 => 0xf, 344 => 0x1205, 355 => [0xa,0x3a], 362 => 0x11, 363 => 0x10, 364 => 0x24, 374 => 0xb043, 397 => 0x17 }, - 'afareamodesetting' => { 249 => '11.1', 252 => '0.1', 258 => '16.1', 262 => '2.1', 374 => 0x201c }, + 'afareamode' => { 163 => 0x33, 167 => 0xe, 175 => 0x0, 176 => 0x5, 285 => 0xf, 345 => 0x1205, 356 => [0xa,0x3a], 363 => 0x11, 364 => 0x10, 365 => 0x24, 375 => 0xb043, 398 => 0x17 }, + 'afareamodesetting' => { 249 => '11.1', 252 => '0.1', 258 => '16.1', 262 => '2.1', 375 => 0x201c }, 'afareas' => { 264 => 0x304 }, 'afareaselectionmethod' => { 2 => 0xd }, 'afareaselectmethod' => { 75 => 0x51b }, 'afareawidth' => { 176 => [0x18,0x4e] }, - 'afareaxposition' => { 176 => [0x14,0x4a], 344 => 0x1203 }, - 'afareaxposition1' => { 344 => 0x1201 }, - 'afareayposition' => { 176 => [0x16,0x4c], 344 => 0x1204 }, - 'afareayposition1' => { 344 => 0x1202 }, + 'afareaxposition' => { 176 => [0x14,0x4a], 345 => 0x1203 }, + 'afareaxposition1' => { 345 => 0x1201 }, + 'afareayposition' => { 176 => [0x16,0x4c], 345 => 0x1204 }, + 'afareayposition1' => { 345 => 0x1202 }, 'afassist' => { 73 => 0x5, 81 => 0x5, 167 => 0x48, 247 => '2.5', 249 => '0.2', 252 => '0.2', 253 => '1.1', 254 => '1.1', 255 => '1.3', 256 => '2.4', 257 => '1.3', 258 => '0.2', 260 => '2.4', 262 => '2.3' }, 'afassistbeam' => { 2 => 0x8, 75 => 0x50e, 76 => 0x4, 77 => 0x5, 78 => 0x4, 79 => 0x4, 80 => 0x5 }, 'afassistlamp' => { 285 => 0x31 }, - 'afbuttonpressed' => { 364 => [0x83,0x283] }, + 'afbuttonpressed' => { 365 => [0x83,0x283] }, 'afconfigtool' => { 2 => 0x1 }, 'afdefocus' => { 295 => 0x6 }, 'afduringliveview' => { 75 => 0x511 }, - 'affinea' => { 420 => 'AffineA' }, - 'affineb' => { 420 => 'AffineB' }, - 'affinec' => { 420 => 'AffineC' }, - 'affined' => { 420 => 'AffineD' }, + 'affinea' => { 421 => 'AffineA' }, + 'affineb' => { 421 => 'AffineB' }, + 'affinec' => { 421 => 'AffineC' }, + 'affined' => { 421 => 'AffineD' }, 'affinetune' => { 177 => 0x0, 264 => 0x306 }, 'affinetuneadj' => { 177 => 0x2, 211 => 0x2d1, 212 => 0x2dc, 264 => 0x307 }, 'affinetuneindex' => { 177 => 0x1 }, - 'affinex' => { 420 => 'AffineX' }, - 'affiney' => { 420 => 'AffineY' }, + 'affinex' => { 421 => 'AffineX' }, + 'affiney' => { 421 => 'AffineY' }, 'afhold' => { 295 => 0x1fd }, - 'afilluminator' => { 362 => 0x29, 374 => 0xb044 }, + 'afilluminator' => { 363 => 0x29, 375 => 0xb044 }, 'afimageheight' => { 176 => [0x12,0x48] }, 'afimagewidth' => { 176 => [0x10,0x46] }, 'afintegrationtime' => { 295 => 0x7 }, - 'afmicroadj' => { 355 => [0x17d,0x50] }, - 'afmicroadjmode' => { 3 => 0x1, 359 => 0x131 }, - 'afmicroadjregisteredlenses' => { 359 => '305.1' }, + 'afmicroadj' => { 356 => [0x17d,0x50] }, + 'afmicroadjmode' => { 3 => 0x1, 360 => 0x131 }, + 'afmicroadjregisteredlenses' => { 360 => '305.1' }, 'afmicroadjustment' => { 75 => 0x507 }, - 'afmicroadjvalue' => { 3 => 0x2, 359 => 0x130 }, - 'afmode' => { 104 => 0x3009, 115 => 0x1022, 163 => 0x16, 354 => 0x5 }, + 'afmicroadjvalue' => { 3 => 0x2, 360 => 0x130 }, + 'afmode' => { 104 => 0x3009, 115 => 0x1022, 163 => 0x16, 355 => 0x5 }, 'afmoderestrictions' => { 248 => '50.3', 250 => '48.3', 251 => '48.3', 260 => '48.3', 261 => '48.3' }, 'afonaelockbuttonswitch' => { 75 => 0x702 }, 'afonbutton' => { 247 => '3.1', 248 => '47.1' }, - 'afpoint' => { 33 => 0x13, 103 => 0x18, 163 => 0x15, 175 => 0x1, 267 => 0x308, 354 => 0x1f, 355 => [0x37,0x7], 359 => 0x19, 360 => 0x18, 361 => [0x18,0x20] }, + 'afpoint' => { 33 => 0x13, 103 => 0x18, 163 => 0x15, 175 => 0x1, 267 => 0x308, 355 => 0x1f, 356 => [0x37,0x7], 360 => 0x19, 361 => 0x18, 362 => [0x18,0x20] }, 'afpointactivationarea' => { 74 => 0x11, 80 => 0x11 }, 'afpointareaexpansion' => { 75 => 0x508 }, - 'afpointatshutterrelease' => { 355 => [0x39,0x9] }, + 'afpointatshutterrelease' => { 356 => [0x39,0x9] }, 'afpointautoselection' => { 75 => 0x50b }, 'afpointbrightness' => { 75 => 0x50d, 247 => '2.4', 248 => '46.5', 250 => '2.2', 251 => '2.2', 260 => '2.3', 261 => '2.2' }, 'afpointdisplayduringfocus' => { 2 => 0x10, 75 => 0x50c }, 'afpointillumination' => { 74 => 0xa, 247 => '2.3', 248 => '46.2', 250 => '47.2', 251 => '47.2', 255 => '1.2', 256 => '2.3', 257 => '1.2', 260 => '47.2', 261 => '47.2', 262 => '2.4' }, - 'afpointinfocus' => { 355 => [0x38,0x8] }, + 'afpointinfocus' => { 356 => [0x38,0x8] }, 'afpointmode' => { 300 => 0x3 }, 'afpointposition' => { 104 => 0x2021, 285 => 0x4d }, 'afpointregistration' => { 73 => 0x7 }, 'afpoints' => { 166 => 0x10 }, - 'afpointselected' => { 167 => 0xd, 264 => 0x305, 319 => 0xe, 359 => 0x15, 360 => 0x14, 361 => [0x14,0x1c], 374 => 0x201e }, + 'afpointselected' => { 167 => 0xd, 264 => 0x305, 319 => 0xe, 360 => 0x15, 361 => 0x14, 362 => [0x14,0x1c], 375 => 0x201e }, 'afpointselected2' => { 300 => 0x4 }, 'afpointselection' => { 74 => 0xb, 247 => '1.3', 248 => '1.3', 256 => '1.3', 260 => '1.3', 261 => '1.3' }, 'afpointselectionmethod' => { 75 => 0x50f, 76 => 0xc, 77 => 0xd, 80 => 0xd }, - 'afpointsetting' => { 362 => 0x12, 363 => 0x11 }, + 'afpointsetting' => { 363 => 0x12, 364 => 0x11 }, 'afpointsinfocus' => { 69 => 0xe, 175 => 0x2, 295 => 0xb, 296 => 0x4, 319 => [0xf,0x3c] }, 'afpointsinfocus5d' => { 18 => 0x38 }, 'afpointspotmetering' => { 74 => 0xd }, - 'afpointsselected' => { 296 => '4.1', 405 => 0x4 }, + 'afpointsselected' => { 296 => '4.1', 406 => 0x4 }, 'afpointsspecial' => { 296 => '4.2' }, 'afpointsunknown1' => { 295 => 0x0 }, 'afpointsunknown2' => { 295 => 0x2 }, - 'afpointsused' => { 176 => 0x8, 355 => [0x10,0x16e] }, + 'afpointsused' => { 176 => 0x8, 356 => [0x10,0x16e] }, 'afpointswitching' => { 2 => 0x4 }, 'afpredictor' => { 295 => 0x4 }, 'afresponse' => { 201 => 0xad }, 'afresult' => { 269 => 0x1038 }, 'afsearch' => { 264 => 0x303 }, 'afsensoractive' => { 163 => 0x1 }, - 'afstatus' => { 344 => 0x1200 }, - 'afstatus_00_b4' => { 358 => 0x0 }, - 'afstatus_01_c4' => { 358 => 0x2 }, - 'afstatus_02_d4' => { 358 => 0x4 }, - 'afstatus_03_e4' => { 358 => 0x6 }, - 'afstatus_04_f4' => { 358 => 0x8 }, - 'afstatus_05_g4' => { 358 => 0xa }, - 'afstatus_06_h4' => { 358 => 0xc }, - 'afstatus_07_b3' => { 358 => 0xe }, - 'afstatus_08_c3' => { 358 => 0x10 }, - 'afstatus_09_d3' => { 358 => 0x12 }, - 'afstatus_10_e3' => { 358 => 0x14 }, - 'afstatus_11_f3' => { 358 => 0x16 }, - 'afstatus_12_g3' => { 358 => 0x18 }, - 'afstatus_13_h3' => { 358 => 0x1a }, - 'afstatus_14_b2' => { 358 => 0x1c }, - 'afstatus_15_c2' => { 358 => 0x1e }, - 'afstatus_16_d2' => { 358 => 0x20 }, - 'afstatus_17_e2' => { 358 => 0x22 }, - 'afstatus_18_f2' => { 358 => 0x24 }, - 'afstatus_19_g2' => { 358 => 0x26 }, - 'afstatus_20_h2' => { 358 => 0x28 }, - 'afstatus_21_c1' => { 358 => 0x2a }, - 'afstatus_22_d1' => { 358 => 0x2c }, - 'afstatus_23_e1' => { 358 => 0x2e }, - 'afstatus_24_f1' => { 358 => 0x30 }, - 'afstatus_25_g1' => { 358 => 0x32 }, - 'afstatus_26_a7_vertical' => { 358 => 0x34 }, - 'afstatus_27_a6_vertical' => { 358 => 0x36 }, - 'afstatus_28_a5_vertical' => { 358 => 0x38 }, - 'afstatus_29_c7_vertical' => { 358 => 0x3a }, - 'afstatus_30_c6_vertical' => { 358 => 0x3c }, - 'afstatus_31_c5_vertical' => { 358 => 0x3e }, - 'afstatus_32_e7_vertical' => { 358 => 0x40 }, - 'afstatus_33_e6_center_vertical' => { 358 => 0x42 }, - 'afstatus_34_e5_vertical' => { 358 => 0x44 }, - 'afstatus_35_g7_vertical' => { 358 => 0x46 }, - 'afstatus_36_g6_vertical' => { 358 => 0x48 }, - 'afstatus_37_g5_vertical' => { 358 => 0x4a }, - 'afstatus_38_i7_vertical' => { 358 => 0x4c }, - 'afstatus_39_i6_vertical' => { 358 => 0x4e }, - 'afstatus_40_i5_vertical' => { 358 => 0x50 }, - 'afstatus_41_a7' => { 358 => 0x52 }, - 'afstatus_42_b7' => { 358 => 0x54 }, - 'afstatus_43_c7' => { 358 => 0x56 }, - 'afstatus_44_d7' => { 358 => 0x58 }, - 'afstatus_45_e7' => { 358 => 0x5a }, - 'afstatus_46_f7' => { 358 => 0x5c }, - 'afstatus_47_g7' => { 358 => 0x5e }, - 'afstatus_48_h7' => { 358 => 0x60 }, - 'afstatus_49_i7' => { 358 => 0x62 }, - 'afstatus_50_a6' => { 358 => 0x64 }, - 'afstatus_51_b6' => { 358 => 0x66 }, - 'afstatus_52_c6' => { 358 => 0x68 }, - 'afstatus_53_d6' => { 358 => 0x6a }, - 'afstatus_54_e6_center' => { 358 => 0x6c }, - 'afstatus_55_f6' => { 358 => 0x6e }, - 'afstatus_56_g6' => { 358 => 0x70 }, - 'afstatus_57_h6' => { 358 => 0x72 }, - 'afstatus_58_i6' => { 358 => 0x74 }, - 'afstatus_59_a5' => { 358 => 0x76 }, - 'afstatus_60_b5' => { 358 => 0x78 }, - 'afstatus_61_c5' => { 358 => 0x7a }, - 'afstatus_62_d5' => { 358 => 0x7c }, - 'afstatus_63_e5' => { 358 => 0x7e }, - 'afstatus_64_f5' => { 358 => 0x80 }, - 'afstatus_65_g5' => { 358 => 0x82 }, - 'afstatus_66_h5' => { 358 => 0x84 }, - 'afstatus_67_i5' => { 358 => 0x86 }, - 'afstatus_68_c11' => { 358 => 0x88 }, - 'afstatus_69_d11' => { 358 => 0x8a }, - 'afstatus_70_e11' => { 358 => 0x8c }, - 'afstatus_71_f11' => { 358 => 0x8e }, - 'afstatus_72_g11' => { 358 => 0x90 }, - 'afstatus_73_b10' => { 358 => 0x92 }, - 'afstatus_74_c10' => { 358 => 0x94 }, - 'afstatus_75_d10' => { 358 => 0x96 }, - 'afstatus_76_e10' => { 358 => 0x98 }, - 'afstatus_77_f10' => { 358 => 0x9a }, - 'afstatus_78_g10' => { 358 => 0x9c }, - 'afstatus_79_h10' => { 358 => 0x9e }, - 'afstatus_80_b9' => { 358 => 0xa0 }, - 'afstatus_81_c9' => { 358 => 0xa2 }, - 'afstatus_82_d9' => { 358 => 0xa4 }, - 'afstatus_83_e9' => { 358 => 0xa6 }, - 'afstatus_84_f9' => { 358 => 0xa8 }, - 'afstatus_85_g9' => { 358 => 0xaa }, - 'afstatus_86_h9' => { 358 => 0xac }, - 'afstatus_87_b8' => { 358 => 0xae }, - 'afstatus_88_c8' => { 358 => 0xb0 }, - 'afstatus_89_d8' => { 358 => 0xb2 }, - 'afstatus_90_e8' => { 358 => 0xb4 }, - 'afstatus_91_f8' => { 358 => 0xb6 }, - 'afstatus_92_g8' => { 358 => 0xb8 }, - 'afstatus_93_h8' => { 358 => 0xba }, - 'afstatus_94_e6_center_f2-8' => { 358 => 0xbc }, - 'afstatusactivesensor' => { 163 => 0x2, 355 => [0x4,0x3b], 359 => 0x1e, 360 => 0x1b, 361 => [0x1b,0x21] }, - 'afstatusbottom' => { 163 => 0x8, 359 => 0x2a, 360 => 0x21, 361 => 0x21 }, - 'afstatusbottom-left' => { 163 => 0x12, 360 => 0x2b, 361 => 0x2b }, - 'afstatusbottom-right' => { 163 => 0x6, 360 => 0x1f, 361 => 0x1f }, - 'afstatusbottomassist-left' => { 359 => 0x28 }, - 'afstatusbottomassist-right' => { 359 => 0x2c }, - 'afstatusbottomhorizontal' => { 356 => 0x10, 357 => 0x1c }, - 'afstatusbottomvertical' => { 356 => 0x16, 357 => 0x26 }, - 'afstatuscenter-10' => { 359 => 0x34 }, - 'afstatuscenter-11' => { 359 => 0x36 }, - 'afstatuscenter-12' => { 359 => 0x38 }, - 'afstatuscenter-14' => { 359 => 0x3c }, - 'afstatuscenter-7' => { 359 => 0x2e }, - 'afstatuscenter-9' => { 359 => 0x32 }, - 'afstatuscenter-horizontal' => { 359 => 0x30 }, - 'afstatuscenter-vertical' => { 359 => 0x3a }, - 'afstatuscenterf2-8' => { 359 => 0x4c }, - 'afstatuscenterhorizontal' => { 163 => 0x2f, 356 => 0xc, 357 => 0x18, 360 => 0x2f, 361 => 0x2f }, - 'afstatuscentervertical' => { 163 => 0xc, 356 => 0x14, 357 => 0x22, 360 => 0x25, 361 => 0x25 }, - 'afstatusfarleft' => { 356 => 0x6, 359 => 0x26 }, - 'afstatusfarlefthorizontal' => { 357 => 0x4 }, - 'afstatusfarleftvertical' => { 357 => 0x12 }, - 'afstatusfarright' => { 356 => 0x18, 359 => 0x44 }, - 'afstatusfarrighthorizontal' => { 357 => 0x2c }, - 'afstatusfarrightvertical' => { 357 => 0x34 }, - 'afstatusleft' => { 163 => 0x2d, 356 => 0x2, 359 => 0x22, 360 => 0x2d, 361 => 0x2d }, - 'afstatuslefthorizontal' => { 357 => 0x6 }, - 'afstatusleftvertical' => { 357 => 0xe }, - 'afstatuslower-left' => { 356 => 0x4, 359 => 0x24 }, - 'afstatuslower-lefthorizontal' => { 357 => 0xa }, - 'afstatuslower-leftvertical' => { 357 => 0x10 }, - 'afstatuslower-middle' => { 356 => 0x22, 357 => 0x24 }, - 'afstatuslower-right' => { 356 => 0x1e, 359 => 0x4a }, - 'afstatuslower-righthorizontal' => { 357 => 0x32 }, - 'afstatuslower-rightvertical' => { 357 => 0x3a }, - 'afstatuslowerfarleft' => { 357 => 0x8 }, - 'afstatuslowerfarright' => { 357 => 0x30 }, - 'afstatusmiddlehorizontal' => { 163 => 0xa, 360 => 0x23, 361 => 0x23 }, - 'afstatusnearleft' => { 356 => 0xe, 357 => 0x1a }, - 'afstatusnearright' => { 356 => 0xa, 357 => 0x16 }, - 'afstatusright' => { 163 => 0x31, 356 => 0x1c, 359 => 0x48, 360 => 0x31, 361 => 0x31 }, - 'afstatusrighthorizontal' => { 357 => 0x2e }, - 'afstatusrightvertical' => { 357 => 0x38 }, - 'afstatustop' => { 163 => 0xe, 359 => 0x40, 360 => 0x27, 361 => 0x27 }, - 'afstatustop-left' => { 163 => 0x10, 360 => 0x29, 361 => 0x29 }, - 'afstatustop-right' => { 163 => 0x4, 360 => 0x1d, 361 => 0x1d }, - 'afstatustopassist-left' => { 359 => 0x3e }, - 'afstatustopassist-right' => { 359 => 0x42 }, - 'afstatustophorizontal' => { 356 => 0x8, 357 => 0x14 }, - 'afstatustopvertical' => { 356 => 0x12, 357 => 0x1e }, - 'afstatusupper-left' => { 356 => 0x0, 359 => 0x20 }, - 'afstatusupper-lefthorizontal' => { 357 => 0x2 }, - 'afstatusupper-leftvertical' => { 357 => 0xc }, - 'afstatusupper-middle' => { 356 => 0x20, 357 => 0x20 }, - 'afstatusupper-right' => { 356 => 0x1a, 359 => 0x46 }, - 'afstatusupper-righthorizontal' => { 357 => 0x2a }, - 'afstatusupper-rightvertical' => { 357 => 0x36 }, - 'afstatusupperfarleft' => { 357 => 0x0 }, - 'afstatusupperfarright' => { 357 => 0x28 }, + 'afstatus' => { 345 => 0x1200 }, + 'afstatus_00_b4' => { 359 => 0x0 }, + 'afstatus_01_c4' => { 359 => 0x2 }, + 'afstatus_02_d4' => { 359 => 0x4 }, + 'afstatus_03_e4' => { 359 => 0x6 }, + 'afstatus_04_f4' => { 359 => 0x8 }, + 'afstatus_05_g4' => { 359 => 0xa }, + 'afstatus_06_h4' => { 359 => 0xc }, + 'afstatus_07_b3' => { 359 => 0xe }, + 'afstatus_08_c3' => { 359 => 0x10 }, + 'afstatus_09_d3' => { 359 => 0x12 }, + 'afstatus_10_e3' => { 359 => 0x14 }, + 'afstatus_11_f3' => { 359 => 0x16 }, + 'afstatus_12_g3' => { 359 => 0x18 }, + 'afstatus_13_h3' => { 359 => 0x1a }, + 'afstatus_14_b2' => { 359 => 0x1c }, + 'afstatus_15_c2' => { 359 => 0x1e }, + 'afstatus_16_d2' => { 359 => 0x20 }, + 'afstatus_17_e2' => { 359 => 0x22 }, + 'afstatus_18_f2' => { 359 => 0x24 }, + 'afstatus_19_g2' => { 359 => 0x26 }, + 'afstatus_20_h2' => { 359 => 0x28 }, + 'afstatus_21_c1' => { 359 => 0x2a }, + 'afstatus_22_d1' => { 359 => 0x2c }, + 'afstatus_23_e1' => { 359 => 0x2e }, + 'afstatus_24_f1' => { 359 => 0x30 }, + 'afstatus_25_g1' => { 359 => 0x32 }, + 'afstatus_26_a7_vertical' => { 359 => 0x34 }, + 'afstatus_27_a6_vertical' => { 359 => 0x36 }, + 'afstatus_28_a5_vertical' => { 359 => 0x38 }, + 'afstatus_29_c7_vertical' => { 359 => 0x3a }, + 'afstatus_30_c6_vertical' => { 359 => 0x3c }, + 'afstatus_31_c5_vertical' => { 359 => 0x3e }, + 'afstatus_32_e7_vertical' => { 359 => 0x40 }, + 'afstatus_33_e6_center_vertical' => { 359 => 0x42 }, + 'afstatus_34_e5_vertical' => { 359 => 0x44 }, + 'afstatus_35_g7_vertical' => { 359 => 0x46 }, + 'afstatus_36_g6_vertical' => { 359 => 0x48 }, + 'afstatus_37_g5_vertical' => { 359 => 0x4a }, + 'afstatus_38_i7_vertical' => { 359 => 0x4c }, + 'afstatus_39_i6_vertical' => { 359 => 0x4e }, + 'afstatus_40_i5_vertical' => { 359 => 0x50 }, + 'afstatus_41_a7' => { 359 => 0x52 }, + 'afstatus_42_b7' => { 359 => 0x54 }, + 'afstatus_43_c7' => { 359 => 0x56 }, + 'afstatus_44_d7' => { 359 => 0x58 }, + 'afstatus_45_e7' => { 359 => 0x5a }, + 'afstatus_46_f7' => { 359 => 0x5c }, + 'afstatus_47_g7' => { 359 => 0x5e }, + 'afstatus_48_h7' => { 359 => 0x60 }, + 'afstatus_49_i7' => { 359 => 0x62 }, + 'afstatus_50_a6' => { 359 => 0x64 }, + 'afstatus_51_b6' => { 359 => 0x66 }, + 'afstatus_52_c6' => { 359 => 0x68 }, + 'afstatus_53_d6' => { 359 => 0x6a }, + 'afstatus_54_e6_center' => { 359 => 0x6c }, + 'afstatus_55_f6' => { 359 => 0x6e }, + 'afstatus_56_g6' => { 359 => 0x70 }, + 'afstatus_57_h6' => { 359 => 0x72 }, + 'afstatus_58_i6' => { 359 => 0x74 }, + 'afstatus_59_a5' => { 359 => 0x76 }, + 'afstatus_60_b5' => { 359 => 0x78 }, + 'afstatus_61_c5' => { 359 => 0x7a }, + 'afstatus_62_d5' => { 359 => 0x7c }, + 'afstatus_63_e5' => { 359 => 0x7e }, + 'afstatus_64_f5' => { 359 => 0x80 }, + 'afstatus_65_g5' => { 359 => 0x82 }, + 'afstatus_66_h5' => { 359 => 0x84 }, + 'afstatus_67_i5' => { 359 => 0x86 }, + 'afstatus_68_c11' => { 359 => 0x88 }, + 'afstatus_69_d11' => { 359 => 0x8a }, + 'afstatus_70_e11' => { 359 => 0x8c }, + 'afstatus_71_f11' => { 359 => 0x8e }, + 'afstatus_72_g11' => { 359 => 0x90 }, + 'afstatus_73_b10' => { 359 => 0x92 }, + 'afstatus_74_c10' => { 359 => 0x94 }, + 'afstatus_75_d10' => { 359 => 0x96 }, + 'afstatus_76_e10' => { 359 => 0x98 }, + 'afstatus_77_f10' => { 359 => 0x9a }, + 'afstatus_78_g10' => { 359 => 0x9c }, + 'afstatus_79_h10' => { 359 => 0x9e }, + 'afstatus_80_b9' => { 359 => 0xa0 }, + 'afstatus_81_c9' => { 359 => 0xa2 }, + 'afstatus_82_d9' => { 359 => 0xa4 }, + 'afstatus_83_e9' => { 359 => 0xa6 }, + 'afstatus_84_f9' => { 359 => 0xa8 }, + 'afstatus_85_g9' => { 359 => 0xaa }, + 'afstatus_86_h9' => { 359 => 0xac }, + 'afstatus_87_b8' => { 359 => 0xae }, + 'afstatus_88_c8' => { 359 => 0xb0 }, + 'afstatus_89_d8' => { 359 => 0xb2 }, + 'afstatus_90_e8' => { 359 => 0xb4 }, + 'afstatus_91_f8' => { 359 => 0xb6 }, + 'afstatus_92_g8' => { 359 => 0xb8 }, + 'afstatus_93_h8' => { 359 => 0xba }, + 'afstatus_94_e6_center_f2-8' => { 359 => 0xbc }, + 'afstatusactivesensor' => { 163 => 0x2, 356 => [0x4,0x3b], 360 => 0x1e, 361 => 0x1b, 362 => [0x1b,0x21] }, + 'afstatusbottom' => { 163 => 0x8, 360 => 0x2a, 361 => 0x21, 362 => 0x21 }, + 'afstatusbottom-left' => { 163 => 0x12, 361 => 0x2b, 362 => 0x2b }, + 'afstatusbottom-right' => { 163 => 0x6, 361 => 0x1f, 362 => 0x1f }, + 'afstatusbottomassist-left' => { 360 => 0x28 }, + 'afstatusbottomassist-right' => { 360 => 0x2c }, + 'afstatusbottomhorizontal' => { 357 => 0x10, 358 => 0x1c }, + 'afstatusbottomvertical' => { 357 => 0x16, 358 => 0x26 }, + 'afstatuscenter-10' => { 360 => 0x34 }, + 'afstatuscenter-11' => { 360 => 0x36 }, + 'afstatuscenter-12' => { 360 => 0x38 }, + 'afstatuscenter-14' => { 360 => 0x3c }, + 'afstatuscenter-7' => { 360 => 0x2e }, + 'afstatuscenter-9' => { 360 => 0x32 }, + 'afstatuscenter-horizontal' => { 360 => 0x30 }, + 'afstatuscenter-vertical' => { 360 => 0x3a }, + 'afstatuscenterf2-8' => { 360 => 0x4c }, + 'afstatuscenterhorizontal' => { 163 => 0x2f, 357 => 0xc, 358 => 0x18, 361 => 0x2f, 362 => 0x2f }, + 'afstatuscentervertical' => { 163 => 0xc, 357 => 0x14, 358 => 0x22, 361 => 0x25, 362 => 0x25 }, + 'afstatusfarleft' => { 357 => 0x6, 360 => 0x26 }, + 'afstatusfarlefthorizontal' => { 358 => 0x4 }, + 'afstatusfarleftvertical' => { 358 => 0x12 }, + 'afstatusfarright' => { 357 => 0x18, 360 => 0x44 }, + 'afstatusfarrighthorizontal' => { 358 => 0x2c }, + 'afstatusfarrightvertical' => { 358 => 0x34 }, + 'afstatusleft' => { 163 => 0x2d, 357 => 0x2, 360 => 0x22, 361 => 0x2d, 362 => 0x2d }, + 'afstatuslefthorizontal' => { 358 => 0x6 }, + 'afstatusleftvertical' => { 358 => 0xe }, + 'afstatuslower-left' => { 357 => 0x4, 360 => 0x24 }, + 'afstatuslower-lefthorizontal' => { 358 => 0xa }, + 'afstatuslower-leftvertical' => { 358 => 0x10 }, + 'afstatuslower-middle' => { 357 => 0x22, 358 => 0x24 }, + 'afstatuslower-right' => { 357 => 0x1e, 360 => 0x4a }, + 'afstatuslower-righthorizontal' => { 358 => 0x32 }, + 'afstatuslower-rightvertical' => { 358 => 0x3a }, + 'afstatuslowerfarleft' => { 358 => 0x8 }, + 'afstatuslowerfarright' => { 358 => 0x30 }, + 'afstatusmiddlehorizontal' => { 163 => 0xa, 361 => 0x23, 362 => 0x23 }, + 'afstatusnearleft' => { 357 => 0xe, 358 => 0x1a }, + 'afstatusnearright' => { 357 => 0xa, 358 => 0x16 }, + 'afstatusright' => { 163 => 0x31, 357 => 0x1c, 360 => 0x48, 361 => 0x31, 362 => 0x31 }, + 'afstatusrighthorizontal' => { 358 => 0x2e }, + 'afstatusrightvertical' => { 358 => 0x38 }, + 'afstatustop' => { 163 => 0xe, 360 => 0x40, 361 => 0x27, 362 => 0x27 }, + 'afstatustop-left' => { 163 => 0x10, 361 => 0x29, 362 => 0x29 }, + 'afstatustop-right' => { 163 => 0x4, 361 => 0x1d, 362 => 0x1d }, + 'afstatustopassist-left' => { 360 => 0x3e }, + 'afstatustopassist-right' => { 360 => 0x42 }, + 'afstatustophorizontal' => { 357 => 0x8, 358 => 0x14 }, + 'afstatustopvertical' => { 357 => 0x12, 358 => 0x1e }, + 'afstatusupper-left' => { 357 => 0x0, 360 => 0x20 }, + 'afstatusupper-lefthorizontal' => { 358 => 0x2 }, + 'afstatusupper-leftvertical' => { 358 => 0xc }, + 'afstatusupper-middle' => { 357 => 0x20, 358 => 0x20 }, + 'afstatusupper-right' => { 357 => 0x1a, 360 => 0x46 }, + 'afstatusupper-righthorizontal' => { 358 => 0x2a }, + 'afstatusupper-rightvertical' => { 358 => 0x36 }, + 'afstatusupperfarleft' => { 358 => 0x0 }, + 'afstatusupperfarright' => { 358 => 0x28 }, 'afstatusviewfinder' => { 2 => 0x12 }, - 'aftracking' => { 374 => 0x2021 }, + 'aftracking' => { 375 => 0x2021 }, 'aftrackingsensitivity' => { 2 => 0x2 }, - 'aftype' => { 355 => 0x2 }, - 'afwithshutter' => { 362 => 0x2a }, - 'aggregateissuenumber' => { 441 => 'aggregateIssueNumber' }, - 'aggregationtype' => { 441 => 'aggregationType' }, - 'agreement' => { 444 => 'agreement' }, + 'aftype' => { 356 => 0x2 }, + 'afwithshutter' => { 363 => 0x2a }, + 'aggregateissuenumber' => { 442 => 'aggregateIssueNumber' }, + 'aggregationtype' => { 442 => 'aggregationType' }, + 'agreement' => { 445 => 'agreement' }, 'aiservocontinuousshooting' => { 74 => 0x15 }, 'aiservofirstimage' => { 2 => 0x5 }, 'aiservofirstimagepriority' => { 75 => 0x519 }, @@ -822,70 +823,70 @@ 'aiservosecondimagepriority' => { 75 => 0x51a }, 'aiservotrackingmethod' => { 75 => 0x504 }, 'aiservotrackingsensitivity' => { 74 => 0x14, 75 => 0x502 }, - 'album' => { 451 => 'album' }, - 'alreadyapplied' => { 427 => 'AlreadyApplied' }, - 'alternatetitle' => { 441 => 'alternateTitle' }, - 'alternatetitlea-lang' => { 441 => [\'alternateTitle','alternateTitleA-lang'] }, - 'alternatetitlea-platform' => { 441 => [\'alternateTitle','alternateTitleA-platform'] }, - 'alternatetitletext' => { 441 => [\'alternateTitle','alternateTitleText'] }, + 'album' => { 452 => 'album' }, + 'alreadyapplied' => { 428 => 'AlreadyApplied' }, + 'alternatetitle' => { 442 => 'alternateTitle' }, + 'alternatetitlea-lang' => { 442 => [\'alternateTitle','alternateTitleA-lang'] }, + 'alternatetitlea-platform' => { 442 => [\'alternateTitle','alternateTitleA-platform'] }, + 'alternatetitletext' => { 442 => [\'alternateTitle','alternateTitleText'] }, 'altitude' => { 178 => 0x6 }, - 'alttapename' => { 451 => 'altTapeName' }, - 'alttimecode' => { 451 => 'altTimecode' }, - 'alttimecodetimeformat' => { 451 => [\'altTimecode','altTimecodeTimeFormat'] }, - 'alttimecodetimevalue' => { 451 => [\'altTimecode','altTimecodeTimeValue'] }, - 'alttimecodevalue' => { 451 => [\'altTimecode','altTimecodeValue'] }, + 'alttapename' => { 452 => 'altTapeName' }, + 'alttimecode' => { 452 => 'altTimecode' }, + 'alttimecodetimeformat' => { 452 => [\'altTimecode','altTimecodeTimeFormat'] }, + 'alttimecodetimevalue' => { 452 => [\'altTimecode','altTimecodeTimeValue'] }, + 'alttimecodevalue' => { 452 => [\'altTimecode','altTimecodeValue'] }, 'ambienceselection' => { 4 => 0x1 }, - 'ambienttemperature' => { 110 => 0x9400, 340 => 0x14, 397 => 0x4 }, - 'ambienttemperaturefahrenheit' => { 340 => 0x13 }, + 'ambienttemperature' => { 110 => 0x9400, 340 => 0x14, 341 => 0x46, 398 => 0x4 }, + 'ambienttemperaturefahrenheit' => { 340 => 0x13, 341 => 0x44 }, 'analogbalance' => { 110 => 0xc627 }, 'angleadj' => { 94 => 0x10003, 100 => 0x8b }, - 'angleinforoll' => { 422 => 'AngleInfoRoll' }, - 'angleinfoyaw' => { 422 => 'AngleInfoYaw' }, - 'anti-blur' => { 374 => 0xb04b }, + 'angleinforoll' => { 423 => 'AngleInfoRoll' }, + 'angleinfoyaw' => { 423 => 'AngleInfoYaw' }, + 'anti-blur' => { 375 => 0xb04b }, 'antialiasstrength' => { 110 => 0xc632 }, 'aperturelock' => { 248 => '38.2', 250 => '38.2', 251 => '38.2', 260 => '38.2', 261 => '38.2' }, 'aperturerange' => { 75 => 0x10d }, 'apertureringuse' => { 300 => '1.4' }, - 'aperturesetting' => { 167 => 0x7, 362 => 0x30, 363 => 0x29, 364 => 0x1 }, - 'aperturevalue' => { 84 => 0x2, 110 => 0x9202, 269 => 0x1002, 328 => 0x401, 431 => 'ApertureValue' }, + 'aperturesetting' => { 167 => 0x7, 363 => 0x30, 364 => 0x29, 365 => 0x1 }, + 'aperturevalue' => { 84 => 0x2, 110 => 0x9202, 269 => 0x1002, 328 => 0x401, 432 => 'ApertureValue' }, 'applekeywords' => { 273 => 'AAPL:Keywords' }, 'applicationnotes' => { 110 => 0x2bc, 289 => 0x2bc }, 'applicationrecordversion' => { 118 => 0x0 }, 'applyshootingmeteringmode' => { 75 => 0x10e }, - 'approved' => { 433 => 'Approved' }, - 'approvedby' => { 433 => 'ApprovedBy' }, + 'approved' => { 434 => 'Approved' }, + 'approvedby' => { 434 => 'ApprovedBy' }, 'approximatefnumber' => { 281 => 0x313, 287 => 0x3406 }, - 'approximatefocusdistance' => { 423 => 'ApproximateFocusDistance' }, - 'appversion' => { 435 => 'AppVersion' }, + 'approximatefocusdistance' => { 424 => 'ApproximateFocusDistance' }, + 'appversion' => { 436 => 'AppVersion' }, 'aquahsl' => { 94 => 0x20913 }, 'armidentifier' => { 119 => 0x78 }, 'armversion' => { 119 => 0x7a }, 'artfilter' => { 264 => 0x529 }, 'artfiltereffect' => { 264 => 0x52f }, - 'artist' => { 110 => 0x13b, 277 => 'Artist', 319 => 0x22e, 447 => 'Artist', 451 => 'artist' }, + 'artist' => { 110 => 0x13b, 277 => 'Artist', 319 => 0x22e, 448 => 'Artist', 452 => 'artist' }, 'artmode' => { 104 => 0x301b }, 'artmodeparameters' => { 104 => 0x310b }, - 'artworkcircadatecreated' => { 437 => [\'ArtworkOrObject','ArtworkOrObjectAOCircaDateCreated'] }, - 'artworkcontentdescription' => { 437 => [\'ArtworkOrObject','ArtworkOrObjectAOContentDescription'] }, - 'artworkcontributiondescription' => { 437 => [\'ArtworkOrObject','ArtworkOrObjectAOContributionDescription'] }, - 'artworkcopyrightnotice' => { 437 => [\'ArtworkOrObject','ArtworkOrObjectAOCopyrightNotice'] }, - 'artworkcopyrightownerid' => { 437 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentCopyrightOwnerId'] }, - 'artworkcopyrightownername' => { 437 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentCopyrightOwnerName'] }, - 'artworkcreator' => { 437 => [\'ArtworkOrObject','ArtworkOrObjectAOCreator'] }, - 'artworkcreatorid' => { 437 => [\'ArtworkOrObject','ArtworkOrObjectAOCreatorId'] }, - 'artworkdatecreated' => { 437 => [\'ArtworkOrObject','ArtworkOrObjectAODateCreated'] }, - 'artworklicensorid' => { 437 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentLicensorId'] }, - 'artworklicensorname' => { 437 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentLicensorName'] }, - 'artworkorobject' => { 437 => 'ArtworkOrObject' }, - 'artworkphysicaldescription' => { 437 => [\'ArtworkOrObject','ArtworkOrObjectAOPhysicalDescription'] }, - 'artworksource' => { 437 => [\'ArtworkOrObject','ArtworkOrObjectAOSource'] }, - 'artworksourceinventoryno' => { 437 => [\'ArtworkOrObject','ArtworkOrObjectAOSourceInvNo'] }, - 'artworksourceinvurl' => { 437 => [\'ArtworkOrObject','ArtworkOrObjectAOSourceInvURL'] }, - 'artworkstyleperiod' => { 437 => [\'ArtworkOrObject','ArtworkOrObjectAOStylePeriod'] }, - 'artworktitle' => { 437 => [\'ArtworkOrObject','ArtworkOrObjectAOTitle'] }, + 'artworkcircadatecreated' => { 438 => [\'ArtworkOrObject','ArtworkOrObjectAOCircaDateCreated'] }, + 'artworkcontentdescription' => { 438 => [\'ArtworkOrObject','ArtworkOrObjectAOContentDescription'] }, + 'artworkcontributiondescription' => { 438 => [\'ArtworkOrObject','ArtworkOrObjectAOContributionDescription'] }, + 'artworkcopyrightnotice' => { 438 => [\'ArtworkOrObject','ArtworkOrObjectAOCopyrightNotice'] }, + 'artworkcopyrightownerid' => { 438 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentCopyrightOwnerId'] }, + 'artworkcopyrightownername' => { 438 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentCopyrightOwnerName'] }, + 'artworkcreator' => { 438 => [\'ArtworkOrObject','ArtworkOrObjectAOCreator'] }, + 'artworkcreatorid' => { 438 => [\'ArtworkOrObject','ArtworkOrObjectAOCreatorId'] }, + 'artworkdatecreated' => { 438 => [\'ArtworkOrObject','ArtworkOrObjectAODateCreated'] }, + 'artworklicensorid' => { 438 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentLicensorId'] }, + 'artworklicensorname' => { 438 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentLicensorName'] }, + 'artworkorobject' => { 438 => 'ArtworkOrObject' }, + 'artworkphysicaldescription' => { 438 => [\'ArtworkOrObject','ArtworkOrObjectAOPhysicalDescription'] }, + 'artworksource' => { 438 => [\'ArtworkOrObject','ArtworkOrObjectAOSource'] }, + 'artworksourceinventoryno' => { 438 => [\'ArtworkOrObject','ArtworkOrObjectAOSourceInvNo'] }, + 'artworksourceinvurl' => { 438 => [\'ArtworkOrObject','ArtworkOrObjectAOSourceInvURL'] }, + 'artworkstyleperiod' => { 438 => [\'ArtworkOrObject','ArtworkOrObjectAOStylePeriod'] }, + 'artworktitle' => { 438 => [\'ArtworkOrObject','ArtworkOrObjectAOTitle'] }, 'aspectframe' => { 268 => 0x1113 }, - 'aspectratio' => { 5 => 0x0, 268 => 0x1112, 319 => 0x80, 362 => 0x55, 363 => 0x55, 364 => 0xa }, - 'assetid' => { 417 => 'AssetID' }, + 'aspectratio' => { 5 => 0x0, 268 => 0x1112, 319 => 0x80, 363 => 0x55, 364 => 0x55, 365 => 0xa }, + 'assetid' => { 418 => 'AssetID' }, 'asshoticcprofile' => { 110 => 0xc68f }, 'asshotneutral' => { 110 => 0xc628 }, 'asshotpreprofilematrix' => { 110 => 0xc690 }, @@ -908,43 +909,43 @@ 'assignmoviesubselectorplusdials' => { 250 => '76.1', 251 => '76.1', 261 => '76.1' }, 'assignremotefnbutton' => { 248 => '54.1', 260 => '51.1' }, 'assistbuttonfunction' => { 73 => 0xd }, - 'attributionname' => { 424 => 'attributionName' }, - 'attributionurl' => { 424 => 'attributionURL' }, + 'attributionname' => { 425 => 'attributionName' }, + 'attributionurl' => { 425 => 'attributionURL' }, 'audio' => { 285 => 0x20 }, - 'audiobitrate' => { 60 => 0x6c, 437 => 'audioBitRate' }, - 'audiobitratemode' => { 437 => 'audioBitRateMode' }, - 'audiochannelcount' => { 437 => 'audioChannelCount' }, + 'audiobitrate' => { 60 => 0x6c, 438 => 'audioBitRate' }, + 'audiobitratemode' => { 438 => 'audioBitRateMode' }, + 'audiochannelcount' => { 438 => 'audioChannelCount' }, 'audiochannels' => { 60 => 0x70 }, - 'audiochanneltype' => { 451 => 'audioChannelType' }, + 'audiochanneltype' => { 452 => 'audioChannelType' }, 'audiocompression' => { 139 => 'Compression' }, - 'audiocompressor' => { 451 => 'audioCompressor' }, - 'audiodata' => { 411 => 'Data' }, + 'audiocompressor' => { 452 => 'audioCompressor' }, + 'audiodata' => { 412 => 'Data' }, 'audioduration' => { 118 => 0x99 }, - 'audiomimetype' => { 411 => 'Mime' }, - 'audiomoddate' => { 451 => 'audioModDate' }, + 'audiomimetype' => { 412 => 'Mime' }, + 'audiomoddate' => { 452 => 'audioModDate' }, 'audiooutcue' => { 118 => 0x9a }, - 'audiosamplerate' => { 60 => 0x6e, 451 => 'audioSampleRate' }, - 'audiosampletype' => { 451 => 'audioSampleType' }, + 'audiosamplerate' => { 60 => 0x6e, 452 => 'audioSampleRate' }, + 'audiosampletype' => { 452 => 'audioSampleType' }, 'audiosamplingrate' => { 118 => 0x97 }, 'audiosamplingresolution' => { 118 => 0x98 }, 'audiotype' => { 118 => 0x96 }, - 'author' => { 141 => 'Author', 273 => 'Author', 277 => 'Author', 335 => 'Author', 421 => 'author', 438 => 'Author', 449 => 'Author' }, - 'authorsposition' => { 439 => 'AuthorsPosition' }, + 'author' => { 141 => 'Author', 273 => 'Author', 277 => 'Author', 335 => 'Author', 422 => 'author', 439 => 'Author', 450 => 'Author' }, + 'authorsposition' => { 440 => 'AuthorsPosition' }, 'autoafpointcolortracking' => { 75 => 0x51c }, 'autoafpointseleositraf' => { 2 => 0xa }, 'autoaperture' => { 310 => '0.1' }, - 'autobracket' => { 354 => 0x19 }, - 'autobracketing' => { 115 => 0x1100, 319 => 0x18, 344 => 0x1007 }, + 'autobracket' => { 355 => 0x19 }, + 'autobracketing' => { 115 => 0x1100, 319 => 0x18, 345 => 0x1007 }, 'autobracketingmode' => { 259 => '12.3' }, 'autobracketingset' => { 259 => '12.1' }, 'autobracketmodem' => { 247 => '21.2', 248 => '13.3', 250 => '13.2', 251 => '13.2', 256 => '26.2', 260 => '13.3', 261 => '13.2' }, 'autobracketorder' => { 167 => 0x43, 247 => '21.3', 248 => '13.2', 250 => '13.1', 251 => '13.1', 256 => '26.3', 257 => '12.2', 258 => '2.2', 259 => '12.2', 260 => '13.2', 261 => '13.1', 262 => '13.2' }, 'autobracketset' => { 247 => '21.1', 248 => '13.1', 252 => '11.1', 253 => '12.1', 254 => '12.1', 256 => '26.1', 257 => '12.1', 258 => '2.1', 260 => '13.1', 262 => '13.1' }, - 'autobrightness' => { 427 => 'AutoBrightness' }, - 'autocontrast' => { 427 => 'AutoContrast' }, + 'autobrightness' => { 428 => 'AutoBrightness' }, + 'autocontrast' => { 428 => 'AutoContrast' }, 'autodistortioncontrol' => { 186 => 0x4 }, 'autodynamicrange' => { 115 => 0x140b }, - 'autoexposure' => { 427 => 'AutoExposure' }, + 'autoexposure' => { 428 => 'AutoExposure' }, 'autoexposurebracketing' => { 69 => 0x10 }, 'autoflashisosensitivity' => { 250 => '38.5', 251 => '38.5', 261 => '38.5' }, 'autofocus' => { 267 => 0x209 }, @@ -952,14 +953,14 @@ 'autoiso' => { 69 => 0x1, 104 => 0x3008, 249 => '1.1', 258 => '1.1' }, 'autoisomax' => { 249 => '1.2', 258 => '1.2' }, 'autoisominshutterspeed' => { 249 => '1.3', 258 => '1.3' }, - 'autolateralca' => { 427 => 'AutoLateralCA' }, + 'autolateralca' => { 428 => 'AutoLateralCA' }, 'autolightingoptimizer' => { 15 => 0xbe, 16 => 0xbf, 19 => 0xbf, 56 => 0x2, 75 => 0x204, 94 => 0x20500, 100 => 0x6f }, 'autolightingoptimizeron' => { 94 => '0x20500.0', 100 => 0x6e }, - 'autoportraitframed' => { 374 => 0x2016 }, + 'autoportraitframed' => { 375 => 0x2016 }, 'autoredeye' => { 240 => 0xfe28a44f }, 'autorotate' => { 69 => 0x1b }, - 'autoshadows' => { 427 => 'AutoShadows' }, - 'autowhiteversion' => { 427 => 'AutoWhiteVersion' }, + 'autoshadows' => { 428 => 'AutoShadows' }, + 'autowhiteversion' => { 428 => 'AutoWhiteVersion' }, 'auxiliarylens' => { 201 => 0x82 }, 'avaperturesetting' => { 300 => 0x13 }, 'averageblacklevel' => { 40 => 0xe7, 42 => 0xfb, 43 => 0x114, 44 => 0x146 }, @@ -968,32 +969,32 @@ 'azimuth' => { 149 => 'Azimuth' }, 'babyage' => { 285 => [0x8010,0x33] }, 'babyname' => { 285 => 0x66 }, - 'backgroundalpha' => { 446 => 'bgalpha' }, + 'backgroundalpha' => { 447 => 'bgalpha' }, 'baseexposurecompensation' => { 300 => 0x15 }, - 'baseiso' => { 69 => 0x2, 88 => 0x101c, 124 => 0x903, 287 => 0x312a, 403 => 0x6 }, + 'baseiso' => { 69 => 0x2, 88 => 0x101c, 124 => 0x903, 287 => 0x312a, 404 => 0x6 }, 'baselineexposure' => { 110 => 0xc62a }, 'baselineexposureoffset' => { 110 => 0xc7a5 }, 'baselinenoise' => { 110 => 0xc62b }, 'baselinesharpness' => { 110 => 0xc62c }, - 'baseurl' => { 449 => 'BaseURL' }, - 'batterylevel' => { 362 => 0x51, 366 => 0xc, 367 => 0x4, 368 => 0x4, 404 => 0x7 }, - 'batterylevelgrip1' => { 404 => 0x6 }, - 'batterylevelgrip2' => { 404 => 0x8 }, + 'baseurl' => { 450 => 'BaseURL' }, + 'batterylevel' => { 363 => 0x51, 367 => 0xc, 368 => 0x4, 369 => 0x4, 405 => 0x7 }, + 'batterylevelgrip1' => { 405 => 0x6 }, + 'batterylevelgrip2' => { 405 => 0x8 }, 'batteryorder' => { 247 => '12.5', 256 => '13.2', 257 => '2.1', 260 => '3.1' }, - 'batterystate' => { 167 => 0x60, 362 => 0x50, 368 => 0x14 }, - 'batterytemperature' => { 366 => 0x1, 368 => 0x2, 404 => 0x5 }, - 'batteryunknown' => { 366 => 0x2, 368 => 0x0 }, - 'batteryvoltage' => { 124 => 0x408, 340 => 0x2a, 366 => 0x8 }, - 'batteryvoltage1' => { 368 => 0x6 }, - 'batteryvoltage2' => { 368 => 0x8 }, + 'batterystate' => { 167 => 0x60, 363 => 0x50, 369 => 0x14 }, + 'batterytemperature' => { 367 => 0x1, 369 => 0x2, 405 => 0x5 }, + 'batteryunknown' => { 367 => 0x2, 369 => 0x0 }, + 'batteryvoltage' => { 124 => 0x408, 340 => 0x2a, 341 => 0x49, 367 => 0x8 }, + 'batteryvoltage1' => { 369 => 0x6 }, + 'batteryvoltage2' => { 369 => 0x8 }, 'bayergreensplit' => { 110 => 0xc62d }, 'bayerpattern' => { 123 => 0xf902, 171 => 0x17 }, - 'beatspliceparams' => { 451 => 'beatSpliceParams' }, - 'beatspliceparamsriseindecibel' => { 451 => [\'beatSpliceParams','beatSpliceParamsRiseInDecibel'] }, - 'beatspliceparamsriseintimeduration' => { 451 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDuration'] }, - 'beatspliceparamsriseintimedurationscale' => { 451 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDurationScale'] }, - 'beatspliceparamsriseintimedurationvalue' => { 451 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDurationValue'] }, - 'beatspliceparamsusefilebeatsmarker' => { 451 => [\'beatSpliceParams','beatSpliceParamsUseFileBeatsMarker'] }, + 'beatspliceparams' => { 452 => 'beatSpliceParams' }, + 'beatspliceparamsriseindecibel' => { 452 => [\'beatSpliceParams','beatSpliceParamsRiseInDecibel'] }, + 'beatspliceparamsriseintimeduration' => { 452 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDuration'] }, + 'beatspliceparamsriseintimedurationscale' => { 452 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDurationScale'] }, + 'beatspliceparamsriseintimedurationvalue' => { 452 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDurationValue'] }, + 'beatspliceparamsusefilebeatsmarker' => { 452 => [\'beatSpliceParams','beatSpliceParamsUseFileBeatsMarker'] }, 'beep' => { 247 => '13.1', 248 => '5.4', 249 => '0.1', 252 => '2.1', 253 => '3.1', 254 => '3.1', 256 => '10.1', 258 => '0.1', 260 => '5.5', 262 => '4.1' }, 'beeppitch' => { 257 => '3.1' }, 'beepvolume' => { 257 => '4.5' }, @@ -1001,7 +1002,7 @@ 'bestshotmode' => { 104 => 0x3007 }, 'bitdepth' => { 146 => 'BitDepth', 171 => 0x11, 208 => 0x41 }, 'bitspercomponent' => { 120 => 0x87 }, - 'bitspersample' => { 110 => 0x102, 289 => 0xa, 447 => 'BitsPerSample' }, + 'bitspersample' => { 110 => 0x102, 289 => 0xa, 448 => 'BitsPerSample' }, 'blacklevel' => { 110 => 0xc61a, 201 => 0x3d, 269 => [0x401,0x1012], 328 => 0x21d }, 'blacklevel2' => { 268 => 0x600, 272 => 0x600 }, 'blacklevelblue' => { 289 => 0x1e }, @@ -1012,18 +1013,18 @@ 'blacklevelred' => { 289 => 0x1c }, 'blacklevelrepeatdim' => { 110 => 0xc619 }, 'blackpoint' => { 319 => 0x200 }, - 'blacks2012' => { 427 => 'Blacks2012' }, + 'blacks2012' => { 428 => 'Blacks2012' }, 'bleachbypasstoning' => { 319 => 0x7f }, 'blockshotafresponse' => { 250 => '1.5', 251 => '1.5', 261 => '1.5' }, - 'blogtitle' => { 441 => 'blogTitle' }, - 'blogurl' => { 441 => 'blogURL' }, + 'blogtitle' => { 442 => 'blogTitle' }, + 'blogurl' => { 442 => 'blogURL' }, 'bluebalance' => { 184 => 0x271, 269 => 0x1018, 289 => 0x12, 319 => 0x1b }, 'bluecurvelimits' => { 99 => 0x1fe }, 'bluecurvepoints' => { 98 => 0x79, 99 => 0x1d4 }, 'bluehsl' => { 94 => [0x20914,0x20915] }, - 'bluehue' => { 427 => 'BlueHue' }, - 'bluesaturation' => { 427 => 'BlueSaturation' }, - 'bluratinfinity' => { 413 => 'BlurAtInfinity' }, + 'bluehue' => { 428 => 'BlueHue' }, + 'bluesaturation' => { 428 => 'BlueSaturation' }, + 'bluratinfinity' => { 414 => 'BlurAtInfinity' }, 'blurcontrol' => { 319 => 0x82 }, 'blurwarning' => { 115 => 0x1300 }, 'bodybatteryadload' => { 298 => 0x3 }, @@ -1033,24 +1034,25 @@ 'bodybatteryvoltage2' => { 298 => 0x4 }, 'bodybatteryvoltage3' => { 298 => 0x6 }, 'bodybatteryvoltage4' => { 298 => 0x8 }, - 'bodyfirmware' => { 345 => 0x0 }, + 'bodyfirmware' => { 346 => 0x0 }, 'bodyfirmwareversion' => { 265 => 0x104, 266 => 0x100, 269 => 0x104 }, - 'bodyserialnumber' => { 345 => 0x10 }, - 'bookedition' => { 441 => 'bookEdition' }, + 'bodyserialnumber' => { 346 => 0x10 }, + 'bookedition' => { 442 => 'bookEdition' }, + 'bootloaderversion' => { 341 => 0x26 }, 'bracketmode' => { 51 => 0x3 }, 'bracketsequence' => { 104 => 0x301d }, 'bracketsettings' => { 285 => 0x45 }, - 'bracketshotnumber' => { 51 => 0x5, 300 => 0x9, 373 => 0x2b }, - 'bracketshotnumber2' => { 373 => 0x2d }, + 'bracketshotnumber' => { 51 => 0x5, 300 => 0x9, 374 => 0x2b }, + 'bracketshotnumber2' => { 374 => 0x2d }, 'bracketstep' => { 164 => 0xe }, 'bracketvalue' => { 51 => 0x4 }, - 'brightness' => { 110 => 0xfe53, 140 => 'Brightness', 160 => 'Brightness', 164 => 0x2c, 203 => 0x34, 204 => 0x39, 340 => 0x25, 362 => 0x22, 374 => 0x2007, 427 => 'Brightness' }, - 'brightnessadj' => { 99 => 0x114, 233 => 0x0, 243 => 0x2d, 407 => 0x8018 }, - 'brightnessvalue' => { 110 => 0x9203, 170 => [0x691,0x49c3], 269 => 0x1003, 379 => 0x1e, 382 => 0x1140, 383 => 0x1140, 384 => 0x111c, 385 => 0x1198, 386 => 0x1174, 387 => 0x102c, 388 => 0x224, 389 => 0x224, 390 => 0x219, 431 => 'BrightnessValue' }, + 'brightness' => { 110 => 0xfe53, 140 => 'Brightness', 160 => 'Brightness', 164 => 0x2c, 203 => 0x34, 204 => 0x39, 340 => 0x25, 363 => 0x22, 375 => 0x2007, 428 => 'Brightness' }, + 'brightnessadj' => { 99 => 0x114, 233 => 0x0, 243 => 0x2d, 408 => 0x8018 }, + 'brightnessvalue' => { 110 => 0x9203, 170 => [0x691,0x49c3], 269 => 0x1003, 380 => 0x1e, 383 => 0x1140, 384 => 0x1140, 385 => 0x111c, 386 => 0x1198, 387 => 0x1174, 388 => 0x102c, 389 => 0x224, 390 => 0x224, 391 => 0x219, 432 => 'BrightnessValue' }, 'bulbduration' => { 69 => 0x18 }, 'burstmode' => { 126 => 0xa, 285 => 0x2a }, 'burstmode2' => { 126 => 0x18 }, - 'burstshot' => { 354 => 0x34 }, + 'burstshot' => { 355 => 0x34 }, 'burstspeed' => { 285 => 0x77 }, 'burstuuid' => { 1 => 0xb }, 'buttonfunctioncontroloff' => { 75 => 0x70a }, @@ -1058,12 +1060,12 @@ 'bwmode' => { 269 => 0x203 }, 'by-line' => { 118 => 0x50 }, 'by-linetitle' => { 118 => 0x55 }, - 'bytecount' => { 441 => 'byteCount' }, - 'calibration' => { 354 => [0x24,0x30] }, + 'bytecount' => { 442 => 'byteCount' }, + 'calibration' => { 355 => [0x24,0x30] }, 'calibrationilluminant1' => { 110 => 0xc65a }, 'calibrationilluminant2' => { 110 => 0xc65b }, - 'callforimage' => { 417 => 'CallForImage' }, - 'cameraangle' => { 451 => 'cameraAngle' }, + 'callforimage' => { 418 => 'CallForImage' }, + 'cameraangle' => { 452 => 'cameraAngle' }, 'cameracalibration1' => { 110 => 0xc623 }, 'cameracalibration2' => { 110 => 0xc624 }, 'cameracalibrationsig' => { 110 => 0xc6f3 }, @@ -1082,23 +1084,23 @@ 'cameracolorcalibration13' => { 35 => 0x30, 41 => 0xf6 }, 'cameracolorcalibration14' => { 35 => 0x34, 41 => 0xfb }, 'cameracolorcalibration15' => { 35 => 0x38, 41 => 0x100 }, - 'camerae-mountversion' => { 406 => 0xb }, + 'camerae-mountversion' => { 407 => 0xb }, 'cameraelevationangle' => { 110 => 0x9405 }, - 'camerafilename' => { 417 => 'CameraFilename' }, - 'cameraid' => { 269 => 0x209, 353 => 0x209 }, + 'camerafilename' => { 418 => 'CameraFilename' }, + 'cameraid' => { 269 => 0x209, 354 => 0x209 }, 'cameraiso' => { 33 => 0x10 }, - 'cameralabel' => { 110 => 0xc7a1, 451 => 'cameraLabel' }, - 'cameramakemodel' => { 417 => 'CameraMakeModel' }, - 'cameramodel' => { 328 => 0x410, 451 => 'cameraModel' }, + 'cameralabel' => { 110 => 0xc7a1, 452 => 'cameraLabel' }, + 'cameramakemodel' => { 418 => 'CameraMakeModel' }, + 'cameramodel' => { 328 => 0x410, 452 => 'cameraModel' }, 'cameramodelid' => { 160 => 'CameraModelID' }, - 'cameramove' => { 451 => 'cameraMove' }, - 'cameraorientation' => { 6 => 0x30, 8 => 0x7d, 10 => 0x30, 12 => 0x35, 13 => 0x30, 14 => 0x30, 15 => 0x31, 16 => 0x31, 17 => 0x35, 18 => 0x27, 19 => 0x31, 20 => 0x7d, 21 => 0x38, 22 => 0x36, 23 => 0x7d, 24 => 0x83, 25 => 0x84, 27 => 0x35, 28 => 0x96, 285 => 0x8f, 323 => 0x1, 328 => 0x100, 368 => [0x16,0x18], 394 => 0x28, 395 => 0x24, 396 => 0x29 }, + 'cameramove' => { 452 => 'cameraMove' }, + 'cameraorientation' => { 6 => 0x30, 8 => 0x7d, 10 => 0x30, 12 => 0x35, 13 => 0x30, 14 => 0x30, 15 => 0x31, 16 => 0x31, 17 => 0x35, 18 => 0x27, 19 => 0x31, 20 => 0x7d, 21 => 0x38, 22 => 0x36, 23 => 0x7d, 24 => 0x83, 25 => 0x84, 27 => 0x35, 28 => 0x96, 285 => 0x8f, 323 => 0x1, 328 => 0x100, 369 => [0x16,0x18], 395 => 0x28, 396 => 0x24, 397 => 0x29 }, 'cameraowner' => { 127 => 0xc353 }, 'cameraparameters' => { 269 => 0x2050 }, 'camerapicturestyle' => { 27 => 0xaf }, 'camerapitch' => { 106 => 0x9 }, - 'cameraprofile' => { 427 => 'CameraProfile' }, - 'cameraprofiledigest' => { 427 => 'CameraProfileDigest' }, + 'cameraprofile' => { 428 => 'CameraProfile' }, + 'cameraprofiledigest' => { 428 => 'CameraProfileDigest' }, 'camerarawcolortone' => { 100 => 0xe1 }, 'camerarawcontrast' => { 100 => 0xe3 }, 'camerarawhighlightpoint' => { 100 => 0xe6 }, @@ -1109,9 +1111,9 @@ 'camerarawshadowpoint' => { 100 => 0xe7 }, 'camerarawsharpness' => { 100 => 0xe5 }, 'cameraroll' => { 106 => 0xb }, - 'cameraserialnumber' => { 110 => 0xc62f, 162 => 'CameraSerialNumber', 417 => 'CameraSerialNumber' }, + 'cameraserialnumber' => { 110 => 0xc62f, 162 => 'CameraSerialNumber', 418 => 'CameraSerialNumber' }, 'camerasettingsversion' => { 264 => 0x0 }, - 'cameratemperature' => { 6 => 0x18, 8 => 0x1b, 10 => 0x18, 12 => 0x19, 13 => 0x18, 14 => 0x18, 15 => 0x19, 16 => 0x19, 17 => 0x19, 18 => 0x17, 19 => 0x19, 20 => 0x1b, 21 => 0x19, 22 => 0x19, 23 => 0x1b, 24 => 0x1b, 25 => 0x1b, 26 => 0x1b, 27 => 0x19, 28 => 0x1b, 29 => [0x87,0x91], 30 => [0x99,0x9f,0xa4,0xa8,0x105], 32 => ['-3',0x64,0x47,0x53,0x5b,0x5c], 69 => 0xc, 124 => 0x406, 268 => 0x1306, 281 => 0x320, 287 => 0x3402, 319 => 0x47, 351 => 0x43, 398 => 0x5 }, + 'cameratemperature' => { 6 => 0x18, 8 => 0x1b, 10 => 0x18, 12 => 0x19, 13 => 0x18, 14 => 0x18, 15 => 0x19, 16 => 0x19, 17 => 0x19, 18 => 0x17, 19 => 0x19, 20 => 0x1b, 21 => 0x19, 22 => 0x19, 23 => 0x1b, 24 => 0x1b, 25 => 0x1b, 26 => 0x1b, 27 => 0x19, 28 => 0x1b, 29 => [0x87,0x91], 30 => [0x99,0x9f,0xa4,0xa8,0x105], 32 => ['-3',0x64,0x47,0x53,0x5b,0x5c], 69 => 0xc, 124 => 0x406, 268 => 0x1306, 281 => 0x320, 287 => 0x3402, 319 => 0x47, 352 => 0x43, 399 => 0x5 }, 'cameratemperature4' => { 324 => 0x14 }, 'cameratemperature5' => { 324 => 0x16 }, 'cameratemperaturerangemax' => { 112 => 0x5 }, @@ -1130,126 +1132,126 @@ 'canonimagetype' => { 57 => 0x6, 88 => 0x815 }, 'canonmodelid' => { 57 => 0x10, 88 => 0x1834 }, 'canonvrd' => { 111 => 'CanonVRD' }, - 'caption' => { 421 => 'caption' }, + 'caption' => { 422 => 'caption' }, 'caption-abstract' => { 118 => 0x78 }, - 'captionsauthornames' => { 430 => 'CaptionsAuthorNames' }, - 'captionsdatetimestamps' => { 430 => 'CaptionsDateTimeStamps' }, - 'captionwriter' => { 439 => 'CaptionWriter' }, + 'captionsauthornames' => { 431 => 'CaptionsAuthorNames' }, + 'captionsdatetimestamps' => { 431 => 'CaptionsDateTimeStamps' }, + 'captionwriter' => { 440 => 'CaptionWriter' }, 'captureframerate' => { 104 => 0x4001 }, - 'capturesoftware' => { 415 => 'CaptureSoftware' }, + 'capturesoftware' => { 416 => 'CaptureSoftware' }, 'cardshutterlock' => { 167 => 0x49 }, 'casioimagesize' => { 104 => 0x9 }, - 'catalogsets' => { 118 => 0xff, 410 => 'CatalogSets', 419 => 'CatalogSets' }, - 'categories' => { 57 => 0x23, 421 => 'categories' }, - 'category' => { 118 => 0xf, 263 => 0x30, 439 => 'Category' }, - 'cbcrgain' => { 351 => 0xa036 }, - 'cbcrgaindefault' => { 351 => 0xa035 }, - 'cbcrmatrix' => { 351 => 0xa034 }, - 'cbcrmatrixdefault' => { 351 => 0xa033 }, + 'catalogsets' => { 118 => 0xff, 411 => 'CatalogSets', 420 => 'CatalogSets' }, + 'categories' => { 57 => 0x23, 422 => 'categories' }, + 'category' => { 118 => 0xf, 263 => 0x30, 440 => 'Category' }, + 'cbcrgain' => { 352 => 0xa036 }, + 'cbcrgaindefault' => { 352 => 0xa035 }, + 'cbcrmatrix' => { 352 => 0xa034 }, + 'cbcrmatrixdefault' => { 352 => 0xa033 }, 'ccdboardversion' => { 281 => 0x331 }, 'ccdscanmode' => { 269 => 0x1039 }, 'ccdsensitivity' => { 230 => 0x6 }, 'ccdversion' => { 281 => 0x330 }, - 'cellglobalid' => { 425 => 'cgi' }, + 'cellglobalid' => { 426 => 'cgi' }, 'celllength' => { 110 => 0x109 }, - 'cellr' => { 425 => 'r' }, - 'celltowerid' => { 425 => 'cellid' }, + 'cellr' => { 426 => 'r' }, + 'celltowerid' => { 426 => 'cellid' }, 'cellwidth' => { 110 => 0x108 }, 'centerafarea' => { 258 => '15.1' }, 'centerfocuspoint' => { 262 => '2.2' }, 'centerweightedareasize' => { 247 => '7.1', 248 => '8.1', 250 => '8.1', 251 => '8.1', 255 => '7.1', 256 => '5.1', 257 => '7.1', 258 => '6.3', 260 => '8.1', 261 => '8.1', 262 => '8.1' }, - 'certificate' => { 455 => 'Certificate' }, - 'cfapattern' => { 110 => 0xa302, 289 => 0x9, 431 => 'CFAPattern' }, + 'certificate' => { 456 => 'Certificate' }, + 'cfapattern' => { 110 => 0xa302, 289 => 0x9, 432 => 'CFAPattern' }, 'cfapattern2' => { 110 => 0x828e }, - 'cfapatterncolumns' => { 431 => [\'CFAPattern','CFAPatternColumns'] }, - 'cfapatternrows' => { 431 => [\'CFAPattern','CFAPatternRows'] }, - 'cfapatternvalues' => { 431 => [\'CFAPattern','CFAPatternValues'] }, + 'cfapatterncolumns' => { 432 => [\'CFAPattern','CFAPatternColumns'] }, + 'cfapatternrows' => { 432 => [\'CFAPattern','CFAPatternRows'] }, + 'cfapatternvalues' => { 432 => [\'CFAPattern','CFAPatternValues'] }, 'cfarepeatpatterndim' => { 110 => 0x828d }, - 'channel' => { 441 => 'channel' }, - 'channela-lang' => { 441 => [\'channel','channelA-lang'] }, - 'channelchannel' => { 441 => [\'channel','channelChannel'] }, + 'channel' => { 442 => 'channel' }, + 'channela-lang' => { 442 => [\'channel','channelA-lang'] }, + 'channelchannel' => { 442 => [\'channel','channelChannel'] }, 'channels' => { 139 => 'Channels' }, - 'channelsubchannel1' => { 441 => [\'channel','channelSubchannel1'] }, - 'channelsubchannel2' => { 441 => [\'channel','channelSubchannel2'] }, - 'channelsubchannel3' => { 441 => [\'channel','channelSubchannel3'] }, - 'channelsubchannel4' => { 441 => [\'channel','channelSubchannel4'] }, + 'channelsubchannel1' => { 442 => [\'channel','channelSubchannel1'] }, + 'channelsubchannel2' => { 442 => [\'channel','channelSubchannel2'] }, + 'channelsubchannel3' => { 442 => [\'channel','channelSubchannel3'] }, + 'channelsubchannel4' => { 442 => [\'channel','channelSubchannel4'] }, 'checkmark' => { 94 => 0x10101, 99 => 0x26a }, 'checkmark2' => { 100 => 0x8e }, - 'childfontfiles' => { 456 => [\'Fonts','FontsChildFontFiles'] }, + 'childfontfiles' => { 457 => [\'Fonts','FontsChildFontFiles'] }, 'chmodeshootingspeed' => { 247 => '10.3', 248 => '11.2' }, 'chromablurradius' => { 110 => 0xc631 }, - 'chromaticaberration' => { 94 => 0x20703, 100 => 0x66, 351 => 0xa051 }, - 'chromaticaberrationb' => { 427 => 'ChromaticAberrationB' }, + 'chromaticaberration' => { 94 => 0x20703, 100 => 0x66, 352 => 0xa051 }, + 'chromaticaberrationb' => { 428 => 'ChromaticAberrationB' }, 'chromaticaberrationblue' => { 94 => 0x20708, 100 => 0x6b }, 'chromaticaberrationcorr' => { 71 => [0x4,0x5] }, 'chromaticaberrationcorrection' => { 309 => 0x1 }, - 'chromaticaberrationcorrparams' => { 110 => 0x7035, 402 => 0x66a, 403 => [0x37c,0x384,0x39c,0x3b0,0x3b8] }, + 'chromaticaberrationcorrparams' => { 110 => 0x7035, 403 => 0x66a, 404 => [0x37c,0x384,0x39c,0x3b0,0x3b8] }, 'chromaticaberrationon' => { 94 => '0x20703.0', 100 => 0x62 }, - 'chromaticaberrationr' => { 427 => 'ChromaticAberrationR' }, + 'chromaticaberrationr' => { 428 => 'ChromaticAberrationR' }, 'chromaticaberrationred' => { 94 => 0x20707, 100 => 0x6a }, 'chromaticaberrationsetting' => { 72 => 0x6 }, - 'chrominancenoisereduction' => { 94 => 0x20601, 100 => 0x5e, 354 => 0x1a }, + 'chrominancenoisereduction' => { 94 => 0x20601, 100 => 0x5e, 355 => 0x1a }, 'chrominancenr_tiff_jpeg' => { 100 => 0x60 }, - 'circadatecreated' => { 437 => 'CircaDateCreated' }, - 'circgradbasedcorractive' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionActive'] }, - 'circgradbasedcorramount' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionAmount'] }, - 'circgradbasedcorrbrightness' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalBrightness'] }, - 'circgradbasedcorrclarity' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity'] }, - 'circgradbasedcorrclarity2012' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity2012'] }, - 'circgradbasedcorrcontrast' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast'] }, - 'circgradbasedcorrcontrast2012' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast2012'] }, - 'circgradbasedcorrdefringe' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalDefringe'] }, - 'circgradbasedcorrexposure' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure'] }, - 'circgradbasedcorrexposure2012' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure2012'] }, - 'circgradbasedcorrhighlights2012' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalHighlights2012'] }, - 'circgradbasedcorrhue' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalToningHue'] }, - 'circgradbasedcorrluminancenoise' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalLuminanceNoise'] }, - 'circgradbasedcorrmaskalpha' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAlpha'] }, - 'circgradbasedcorrmaskangle' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAngle'] }, - 'circgradbasedcorrmaskbottom' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksBottom'] }, - 'circgradbasedcorrmaskcentervalue' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterValue'] }, - 'circgradbasedcorrmaskcenterweight' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterWeight'] }, - 'circgradbasedcorrmaskdabs' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksDabs'] }, - 'circgradbasedcorrmaskfeather' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFeather'] }, - 'circgradbasedcorrmaskflipped' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlipped'] }, - 'circgradbasedcorrmaskflow' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlow'] }, - 'circgradbasedcorrmaskfullx' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullX'] }, - 'circgradbasedcorrmaskfully' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullY'] }, - 'circgradbasedcorrmaskleft' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksLeft'] }, - 'circgradbasedcorrmaskmidpoint' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMidpoint'] }, - 'circgradbasedcorrmaskperimetervalue' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksPerimeterValue'] }, - 'circgradbasedcorrmaskradius' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRadius'] }, - 'circgradbasedcorrmaskright' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRight'] }, - 'circgradbasedcorrmaskroundness' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRoundness'] }, - 'circgradbasedcorrmasks' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasks'] }, - 'circgradbasedcorrmasksizex' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeX'] }, - 'circgradbasedcorrmasksizey' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeY'] }, - 'circgradbasedcorrmasktop' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksTop'] }, - 'circgradbasedcorrmaskvalue' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskValue'] }, - 'circgradbasedcorrmaskversion' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksVersion'] }, - 'circgradbasedcorrmaskwhat' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksWhat'] }, - 'circgradbasedcorrmaskx' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksX'] }, - 'circgradbasedcorrmasky' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksY'] }, - 'circgradbasedcorrmaskzerox' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroX'] }, - 'circgradbasedcorrmaskzeroy' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroY'] }, - 'circgradbasedcorrmoire' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalMoire'] }, - 'circgradbasedcorrsaturation' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSaturation','CircularGradientBasedCorrectionsLocalToningSaturation'] }, - 'circgradbasedcorrshadows2012' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalShadows2012'] }, - 'circgradbasedcorrsharpness' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSharpness'] }, - 'circgradbasedcorrtemperature' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTemperature'] }, - 'circgradbasedcorrtint' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTint'] }, - 'circgradbasedcorrwhat' => { 427 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsWhat'] }, - 'circulargradientbasedcorrections' => { 427 => 'CircularGradientBasedCorrections' }, - 'city' => { 118 => 0x5a, 145 => 'City', 285 => 0x6d, 439 => 'City' }, + 'circadatecreated' => { 438 => 'CircaDateCreated' }, + 'circgradbasedcorractive' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionActive'] }, + 'circgradbasedcorramount' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionAmount'] }, + 'circgradbasedcorrbrightness' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalBrightness'] }, + 'circgradbasedcorrclarity' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity'] }, + 'circgradbasedcorrclarity2012' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity2012'] }, + 'circgradbasedcorrcontrast' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast'] }, + 'circgradbasedcorrcontrast2012' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast2012'] }, + 'circgradbasedcorrdefringe' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalDefringe'] }, + 'circgradbasedcorrexposure' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure'] }, + 'circgradbasedcorrexposure2012' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure2012'] }, + 'circgradbasedcorrhighlights2012' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalHighlights2012'] }, + 'circgradbasedcorrhue' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalToningHue'] }, + 'circgradbasedcorrluminancenoise' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalLuminanceNoise'] }, + 'circgradbasedcorrmaskalpha' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAlpha'] }, + 'circgradbasedcorrmaskangle' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAngle'] }, + 'circgradbasedcorrmaskbottom' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksBottom'] }, + 'circgradbasedcorrmaskcentervalue' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterValue'] }, + 'circgradbasedcorrmaskcenterweight' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterWeight'] }, + 'circgradbasedcorrmaskdabs' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksDabs'] }, + 'circgradbasedcorrmaskfeather' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFeather'] }, + 'circgradbasedcorrmaskflipped' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlipped'] }, + 'circgradbasedcorrmaskflow' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlow'] }, + 'circgradbasedcorrmaskfullx' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullX'] }, + 'circgradbasedcorrmaskfully' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullY'] }, + 'circgradbasedcorrmaskleft' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksLeft'] }, + 'circgradbasedcorrmaskmidpoint' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMidpoint'] }, + 'circgradbasedcorrmaskperimetervalue' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksPerimeterValue'] }, + 'circgradbasedcorrmaskradius' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRadius'] }, + 'circgradbasedcorrmaskright' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRight'] }, + 'circgradbasedcorrmaskroundness' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRoundness'] }, + 'circgradbasedcorrmasks' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasks'] }, + 'circgradbasedcorrmasksizex' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeX'] }, + 'circgradbasedcorrmasksizey' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeY'] }, + 'circgradbasedcorrmasktop' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksTop'] }, + 'circgradbasedcorrmaskvalue' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskValue'] }, + 'circgradbasedcorrmaskversion' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksVersion'] }, + 'circgradbasedcorrmaskwhat' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksWhat'] }, + 'circgradbasedcorrmaskx' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksX'] }, + 'circgradbasedcorrmasky' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksY'] }, + 'circgradbasedcorrmaskzerox' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroX'] }, + 'circgradbasedcorrmaskzeroy' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroY'] }, + 'circgradbasedcorrmoire' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalMoire'] }, + 'circgradbasedcorrsaturation' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSaturation','CircularGradientBasedCorrectionsLocalToningSaturation'] }, + 'circgradbasedcorrshadows2012' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalShadows2012'] }, + 'circgradbasedcorrsharpness' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSharpness'] }, + 'circgradbasedcorrtemperature' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTemperature'] }, + 'circgradbasedcorrtint' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTint'] }, + 'circgradbasedcorrwhat' => { 428 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsWhat'] }, + 'circulargradientbasedcorrections' => { 428 => 'CircularGradientBasedCorrections' }, + 'city' => { 118 => 0x5a, 145 => 'City', 285 => 0x6d, 440 => 'City' }, 'city2' => { 285 => 0x80 }, - 'clarity' => { 204 => 0x35, 427 => 'Clarity' }, - 'clarity2012' => { 427 => 'Clarity2012' }, + 'clarity' => { 204 => 0x35, 428 => 'Clarity' }, + 'clarity2012' => { 428 => 'Clarity2012' }, 'claritycontrol' => { 319 => 0x96 }, 'classifystate' => { 118 => 0xe1 }, 'clearretouch' => { 285 => 0x7c }, 'clearretouchvalue' => { 285 => 0xa3 }, - 'client' => { 451 => 'client' }, - 'clientname' => { 433 => 'ClientName' }, + 'client' => { 452 => 'client' }, + 'clientname' => { 434 => 'ClientName' }, 'clmodeshootingspeed' => { 247 => '10.2', 248 => '11.3', 250 => '11.2', 251 => '11.2', 256 => '11.2', 257 => '10.2', 260 => '11.2', 261 => '11.2', 262 => '11.1' }, 'cmcontrast' => { 272 => 0x2022 }, 'cmexposurecompensation' => { 272 => 0x2000 }, @@ -1263,28 +1265,28 @@ 'codedcharacterset' => { 119 => 0x5a }, 'collection' => { 277 => 'Collection' }, 'collectionname' => { 154 => [\'Collections','CollectionsCollectionName'] }, - 'collections' => { 154 => 'Collections', 421 => 'collections' }, + 'collections' => { 154 => 'Collections', 422 => 'collections' }, 'collectionuri' => { 154 => [\'Collections','CollectionsCollectionURI'] }, - 'color' => { 440 => 'color' }, + 'color' => { 441 => 'color' }, 'coloraberrationcontrol' => { 240 => 0xc89224b }, - 'coloradjustment' => { 354 => 0x14 }, - 'coloradjustmentmode' => { 353 => 0x210 }, - 'coloranta' => { 456 => [\'Colorants','ColorantsA'] }, - 'colorantb' => { 456 => [\'Colorants','ColorantsB'] }, - 'colorantblack' => { 456 => [\'Colorants','ColorantsBlack'] }, - 'colorantblue' => { 456 => [\'Colorants','ColorantsBlue'] }, - 'colorantcyan' => { 456 => [\'Colorants','ColorantsCyan'] }, - 'colorantgray' => { 456 => [\'Colorants','ColorantsGray'] }, - 'colorantgreen' => { 456 => [\'Colorants','ColorantsGreen'] }, - 'colorantl' => { 456 => [\'Colorants','ColorantsL'] }, - 'colorantmagenta' => { 456 => [\'Colorants','ColorantsMagenta'] }, - 'colorantmode' => { 456 => [\'Colorants','ColorantsMode'] }, - 'colorantred' => { 456 => [\'Colorants','ColorantsRed'] }, - 'colorants' => { 456 => 'Colorants' }, - 'colorantswatchname' => { 456 => [\'Colorants','ColorantsSwatchName'] }, - 'coloranttint' => { 456 => [\'Colorants','ColorantsTint'] }, - 'coloranttype' => { 456 => [\'Colorants','ColorantsType'] }, - 'colorantyellow' => { 456 => [\'Colorants','ColorantsYellow'] }, + 'coloradjustment' => { 355 => 0x14 }, + 'coloradjustmentmode' => { 354 => 0x210 }, + 'coloranta' => { 457 => [\'Colorants','ColorantsA'] }, + 'colorantb' => { 457 => [\'Colorants','ColorantsB'] }, + 'colorantblack' => { 457 => [\'Colorants','ColorantsBlack'] }, + 'colorantblue' => { 457 => [\'Colorants','ColorantsBlue'] }, + 'colorantcyan' => { 457 => [\'Colorants','ColorantsCyan'] }, + 'colorantgray' => { 457 => [\'Colorants','ColorantsGray'] }, + 'colorantgreen' => { 457 => [\'Colorants','ColorantsGreen'] }, + 'colorantl' => { 457 => [\'Colorants','ColorantsL'] }, + 'colorantmagenta' => { 457 => [\'Colorants','ColorantsMagenta'] }, + 'colorantmode' => { 457 => [\'Colorants','ColorantsMode'] }, + 'colorantred' => { 457 => [\'Colorants','ColorantsRed'] }, + 'colorants' => { 457 => 'Colorants' }, + 'colorantswatchname' => { 457 => [\'Colorants','ColorantsSwatchName'] }, + 'coloranttint' => { 457 => [\'Colorants','ColorantsTint'] }, + 'coloranttype' => { 457 => [\'Colorants','ColorantsType'] }, + 'colorantyellow' => { 457 => [\'Colorants','ColorantsYellow'] }, 'colorbalance' => { 140 => 'ColorBalance' }, 'colorbalanceadj' => { 240 => 0x76a43202 }, 'colorbalanceblue' => { 164 => 0x1e }, @@ -1297,11 +1299,11 @@ 'colorboostlevel' => { 234 => 0x1 }, 'colorboosttype' => { 234 => 0x0 }, 'colorclass' => { 330 => 0xde, 331 => 'ColorClass' }, - 'colorcompensationfilter' => { 167 => [0x3a,0x5f], 169 => 0x111, 374 => 0xb022 }, - 'colorcompensationfiltercustom' => { 362 => 0xd, 363 => 0xc }, - 'colorcompensationfilterset' => { 362 => 0x8, 363 => 0x7, 364 => 0x18, 379 => 0xf }, + 'colorcompensationfilter' => { 167 => [0x3a,0x5f], 169 => 0x111, 375 => 0xb022 }, + 'colorcompensationfiltercustom' => { 363 => 0xd, 364 => 0xc }, + 'colorcompensationfilterset' => { 363 => 0x8, 364 => 0x7, 365 => 0x18, 380 => 0xf }, 'colorcontrol' => { 269 => 0x102b }, - 'colorcorrection' => { 407 => 0x8015 }, + 'colorcorrection' => { 408 => 0x8015 }, 'colorcreatoreffect' => { 264 => 0x532 }, 'colordataversion' => { 39 => 0x0, 40 => 0x0, 42 => 0x0, 43 => 0x0, 44 => 0x0 }, 'coloreffect' => { 285 => 0x28 }, @@ -1309,30 +1311,30 @@ 'colorgain' => { 208 => 0x51 }, 'colorhue' => { 94 => 0x20900, 201 => 0x8d }, 'colorimetricreference' => { 110 => 0xc6bf }, - 'colorlabel' => { 430 => 'ColorLabel' }, - 'colormatrix' => { 268 => 0x200, 269 => 0x1011, 351 => 0xa030 }, + 'colorlabel' => { 431 => 'ColorLabel' }, + 'colormatrix' => { 268 => 0x200, 269 => 0x1011, 352 => 0xa030 }, 'colormatrix1' => { 110 => 0xc621, 328 => 0x106 }, 'colormatrix2' => { 110 => 0xc622, 272 => 0x200, 328 => 0x226 }, 'colormatrixa' => { 319 => 0x203 }, - 'colormatrixadobergb' => { 351 => 0xa032 }, + 'colormatrixadobergb' => { 352 => 0xa032 }, 'colormatrixb' => { 319 => 0x204 }, 'colormatrixnumber' => { 269 => 0x1019 }, - 'colormatrixsrgb' => { 351 => 0xa031 }, - 'colormode' => { 104 => 0x3015, 115 => 0x1210, 126 => 0x66, 164 => 0x28, 167 => 0x16, 169 => 0x101, 170 => 0x36, 172 => 0x7, 201 => 0x3, 230 => 0x4, 285 => 0x32, 354 => 0x2c, 374 => 0xb029, 439 => 'ColorMode' }, + 'colormatrixsrgb' => { 352 => 0xa031 }, + 'colormode' => { 104 => 0x3015, 115 => 0x1210, 126 => 0x66, 164 => 0x28, 167 => 0x16, 169 => 0x101, 170 => 0x36, 172 => 0x7, 201 => 0x3, 230 => 0x4, 285 => 0x32, 355 => 0x2c, 375 => 0xb029, 440 => 'ColorMode' }, 'colormoirereduction' => { 241 => 0x15 }, 'colormoirereductionmode' => { 241 => 0x5 }, - 'colornoisereduction' => { 407 => 0x8029, 427 => 'ColorNoiseReduction' }, - 'colornoisereductiondetail' => { 427 => 'ColorNoiseReductionDetail' }, + 'colornoisereduction' => { 408 => 0x8029, 428 => 'ColorNoiseReduction' }, + 'colornoisereductiondetail' => { 428 => 'ColorNoiseReductionDetail' }, 'colornoisereductionintensity' => { 241 => 0x18 }, 'colornoisereductionsharpness' => { 241 => 0x1c }, - 'colornoisereductionsmoothness' => { 427 => 'ColorNoiseReductionSmoothness' }, + 'colornoisereductionsmoothness' => { 428 => 'ColorNoiseReductionSmoothness' }, 'colorplanes' => { 114 => 0x2 }, 'colorprofile' => { 164 => 0x33 }, 'colorprofilesettings' => { 264 => 0x539 }, 'colorrepresentation' => { 120 => 0x3c }, 'colorsaturationadj' => { 94 => 0x20305 }, 'colorsequence' => { 120 => 0x41 }, - 'colorspace' => { 45 => 0x3, 57 => 0xb4, 88 => 0x10b4, 110 => 0xa001, 146 => 'ColorSpace', 165 => 0x2f, 166 => 0x25, 167 => 0x17, 201 => 0x1e, 264 => 0x507, 319 => 0x37, 351 => 0xa011, 354 => 0xb, 362 => 0x1b, 363 => 0x83, 364 => 0xe, 379 => 0x6, 431 => 'ColorSpace' }, + 'colorspace' => { 45 => 0x3, 57 => 0xb4, 88 => 0x10b4, 110 => 0xa001, 146 => 'ColorSpace', 165 => 0x2f, 166 => 0x25, 167 => 0x17, 201 => 0x1e, 264 => 0x507, 319 => 0x37, 352 => 0xa011, 355 => 0xb, 363 => 0x1b, 364 => 0x83, 365 => 0xe, 380 => 0x6, 432 => 'ColorSpace' }, 'colortempasshot' => { 36 => 0x4, 37 => 0x1d, 38 => 0x26, 39 => 0x43, 42 => 0x43, 43 => 0x43, 44 => 0x43 }, 'colortempauto' => { 36 => 0x9, 37 => 0x22, 38 => 0x1c, 39 => 0x48, 42 => 0x48, 43 => 0x48, 44 => 0x48 }, 'colortempcloudy' => { 36 => 0x22, 37 => 0x31, 38 => 0x35, 39 => 0x5c, 42 => 0x75, 43 => 0x8e, 44 => 0x93, 319 => 0x55 }, @@ -1340,21 +1342,21 @@ 'colortempcustom1' => { 37 => 0x45 }, 'colortempcustom2' => { 37 => 0x4a }, 'colortempdaylight' => { 36 => 0x18, 37 => 0x27, 38 => 0x2b, 39 => 0x52, 42 => 0x6b, 43 => 0x84, 44 => 0x89, 319 => 0x53 }, - 'colortemperature' => { 6 => 0x73, 7 => [0x48,0x4e], 8 => 0xc0, 9 => 0x37, 10 => 0x62, 11 => 0x37, 12 => 0x7c, 13 => 0x73, 14 => 0x73, 15 => 0x77, 16 => 0x73, 17 => 0x7c, 18 => 0x58, 19 => 0x73, 20 => 0xc0, 21 => 0x7f, 22 => 0x7d, 23 => 0xc0, 24 => 0xc6, 25 => 0xc7, 26 => 0x135, 27 => 0x7b, 28 => 0x13a, 57 => 0xae, 67 => 0x9, 88 => 0x10ae, 115 => 0x1005, 124 => 0x846, 140 => 'ColorTemperature', 165 => [0x6e,0x49], 166 => 0x3f, 167 => [0x39,0x5e], 169 => 0x10b, 172 => [0x3c,0x4c,0x4e], 281 => 0x321, 319 => 0x50, 344 => 0x1308, 374 => 0xb021, 427 => 'Temperature' }, - 'colortemperatureadj' => { 407 => 0x8013 }, + 'colortemperature' => { 6 => 0x73, 7 => [0x48,0x4e], 8 => 0xc0, 9 => 0x37, 10 => 0x62, 11 => 0x37, 12 => 0x7c, 13 => 0x73, 14 => 0x73, 15 => 0x77, 16 => 0x73, 17 => 0x7c, 18 => 0x58, 19 => 0x73, 20 => 0xc0, 21 => 0x7f, 22 => 0x7d, 23 => 0xc0, 24 => 0xc6, 25 => 0xc7, 26 => 0x135, 27 => 0x7b, 28 => 0x13a, 57 => 0xae, 67 => 0x9, 88 => 0x10ae, 115 => 0x1005, 124 => 0x846, 140 => 'ColorTemperature', 165 => [0x6e,0x49], 166 => 0x3f, 167 => [0x39,0x5e], 169 => 0x10b, 172 => [0x3c,0x4c,0x4e], 281 => 0x321, 319 => 0x50, 345 => 0x1308, 375 => 0xb021, 428 => 'Temperature' }, + 'colortemperatureadj' => { 408 => 0x8013 }, 'colortemperatureauto' => { 201 => 0x4f }, 'colortemperaturebg' => { 269 => 0x1013 }, - 'colortemperaturecustom' => { 362 => 0xc, 363 => 0xb }, + 'colortemperaturecustom' => { 363 => 0xc, 364 => 0xb }, 'colortemperaturerg' => { 269 => 0x1014 }, - 'colortemperatureset' => { 362 => 0x7, 363 => 0x6 }, - 'colortemperaturesetting' => { 167 => 0x25, 364 => 0x17, 379 => 0xe }, + 'colortemperatureset' => { 363 => 0x7, 364 => 0x6 }, + 'colortemperaturesetting' => { 167 => 0x25, 365 => 0x17, 380 => 0xe }, 'colortempflash' => { 36 => 0x36, 37 => 0x40, 38 => 0x49, 39 => 0x70, 42 => 0x89, 43 => 0xa2, 44 => 0xa7, 319 => 0x5a }, 'colortempflashdata' => { 39 => 0x24a }, 'colortempfluorescent' => { 36 => 0x2c, 37 => 0x3b, 38 => 0x3f, 39 => 0x66, 42 => 0x7f, 43 => 0x98, 44 => 0x9d }, 'colortempfluorescentd' => { 319 => 0x57 }, 'colortempfluorescentn' => { 319 => 0x58 }, 'colortempfluorescentw' => { 319 => 0x59 }, - 'colortempkelvin' => { 36 => 0x31, 38 => 0x44, 39 => 0x6b, 42 => 0x84, 43 => 0x9d, 44 => 0xa2, 285 => 0x44, 344 => 0x1307 }, + 'colortempkelvin' => { 36 => 0x31, 38 => 0x44, 39 => 0x6b, 42 => 0x84, 43 => 0x9d, 44 => 0xa2, 285 => 0x44, 345 => 0x1307 }, 'colortempmeasured' => { 36 => 0xe, 39 => 0x4d, 42 => 0x4d, 43 => 0x4d, 44 => 0x4d }, 'colortemppc1' => { 38 => 0x94, 39 => 0x75 }, 'colortemppc2' => { 38 => 0x99, 39 => 0x7a }, @@ -1425,43 +1427,43 @@ 'commanderinternalttlcompgroupa' => { 256 => '21.1', 257 => '27.1' }, 'commanderinternalttlcompgroupb' => { 256 => '22.1', 257 => '28.1' }, 'comment' => { 0 => 0x2, 111 => 'Comment', 141 => 'Comment', 277 => 'Comment' }, - 'compass' => { 347 => 0x4 }, - 'complianceprofile' => { 441 => 'complianceProfile' }, - 'componentsconfiguration' => { 110 => 0x9101, 146 => 'Components', 431 => 'ComponentsConfiguration' }, + 'compass' => { 348 => 0x4 }, + 'complianceprofile' => { 442 => 'complianceProfile' }, + 'componentsconfiguration' => { 110 => 0x9101, 146 => 'Components', 432 => 'ComponentsConfiguration' }, 'componentversion' => { 88 => 0x80c }, - 'composer' => { 451 => 'composer' }, - 'composition' => { 417 => 'Composition' }, + 'composer' => { 452 => 'composer' }, + 'composition' => { 418 => 'Composition' }, 'compositionadjust' => { 318 => '0.1' }, 'compositionadjustrotation' => { 318 => 0x7 }, 'compositionadjustx' => { 318 => 0x5 }, 'compositionadjusty' => { 318 => 0x6 }, - 'compressedbitsperpixel' => { 110 => 0x9102, 431 => 'CompressedBitsPerPixel' }, + 'compressedbitsperpixel' => { 110 => 0x9102, 432 => 'CompressedBitsPerPixel' }, 'compressedimagesize' => { 169 => 0x40, 269 => 0x40 }, - 'compression' => { 110 => 0x103, 289 => 0xb, 447 => 'Compression' }, + 'compression' => { 110 => 0x103, 289 => 0xb, 448 => 'Compression' }, 'compressionfactor' => { 264 => 0x50d }, 'compressionratio' => { 146 => 'Compression', 269 => 0x1034 }, - 'confidence' => { 412 => 'Confidence' }, - 'confidencelevel' => { 422 => 'ConfidenceLevel' }, - 'confidencemime' => { 412 => 'ConfidenceMime' }, + 'confidence' => { 413 => 'Confidence' }, + 'confidencelevel' => { 423 => 'ConfidenceLevel' }, + 'confidencemime' => { 413 => 'ConfidenceMime' }, 'constrainedcropheight' => { 99 => 0x266, 330 => 0xd6 }, 'constrainedcropwidth' => { 99 => 0x262, 330 => 0xd5 }, 'contact' => { 118 => 0x76 }, - 'contactinfo' => { 440 => 'contactInfo' }, - 'containerformat' => { 437 => 'ContainerFormat' }, - 'containerformatidentifier' => { 437 => [\'ContainerFormat','ContainerFormatIdentifier'] }, - 'containerformatname' => { 437 => [\'ContainerFormat','ContainerFormatName'] }, + 'contactinfo' => { 441 => 'contactInfo' }, + 'containerformat' => { 438 => 'ContainerFormat' }, + 'containerformatidentifier' => { 438 => [\'ContainerFormat','ContainerFormatIdentifier'] }, + 'containerformatname' => { 438 => [\'ContainerFormat','ContainerFormatName'] }, 'contentidentifier' => { 1 => 0x11 }, 'contentlocationcode' => { 118 => 0x1a }, 'contentlocationname' => { 118 => 0x1b }, - 'contenttype' => { 441 => 'contentType' }, + 'contenttype' => { 442 => 'contentType' }, 'continuousbracketing' => { 167 => 0x20 }, 'continuousdrive' => { 33 => 0x5 }, 'continuousmodeliveview' => { 261 => '77.2' }, 'continuousshootingspeed' => { 75 => 0x610 }, 'continuousshotlimit' => { 75 => 0x611 }, - 'contrast' => { 9 => 0x73, 11 => 0x75, 33 => 0xd, 103 => 0xc, 104 => [0x3012,0x20], 110 => [0xa408,0xfe54], 115 => [0x1004,0x1006], 140 => 'Contrast', 160 => 'Contrast', 164 => 0x20, 165 => 0x31, 166 => 0x27, 167 => 0x19, 172 => 0x2, 203 => 0x33, 204 => 0x37, 269 => 0x1029, 285 => 0x39, 287 => 0x300a, 319 => 0x20, 326 => 0xc, 340 => 0x24, 344 => 0x1012, 354 => 0xd, 362 => 0x1d, 363 => 0x1a, 374 => 0x2004, 427 => 'Contrast', 431 => 'Contrast' }, - 'contrast2012' => { 427 => 'Contrast2012' }, - 'contrastadj' => { 94 => 0x20303, 99 => 0x115, 243 => 0x2c, 407 => 0x8017 }, + 'contrast' => { 9 => 0x73, 11 => 0x75, 33 => 0xd, 103 => 0xc, 104 => [0x3012,0x20], 110 => [0xa408,0xfe54], 115 => [0x1004,0x1006], 140 => 'Contrast', 160 => 'Contrast', 164 => 0x20, 165 => 0x31, 166 => 0x27, 167 => 0x19, 172 => 0x2, 203 => 0x33, 204 => 0x37, 269 => 0x1029, 285 => 0x39, 287 => 0x300a, 319 => 0x20, 326 => 0xc, 340 => 0x24, 345 => 0x1012, 355 => 0xd, 363 => 0x1d, 364 => 0x1a, 375 => 0x2004, 428 => 'Contrast', 432 => 'Contrast' }, + 'contrast2012' => { 428 => 'Contrast2012' }, + 'contrastadj' => { 94 => 0x20303, 99 => 0x115, 243 => 0x2c, 408 => 0x8017 }, 'contrastauto' => { 64 => 0x90 }, 'contrastcurve' => { 201 => 0x8c }, 'contrastdetectaf' => { 176 => 0x4 }, @@ -1475,38 +1477,38 @@ 'contrastmonochrome' => { 18 => 0xed, 63 => 0x78, 64 => 0x78 }, 'contrastneutral' => { 18 => 0xeb, 63 => 0x48, 64 => 0x48 }, 'contrastportrait' => { 18 => 0xe9, 63 => 0x18, 64 => 0x18 }, - 'contrastsetting' => { 264 => 0x505, 272 => 0x1012, 364 => 0x10, 379 => 0x8 }, + 'contrastsetting' => { 264 => 0x505, 272 => 0x1012, 365 => 0x10, 380 => 0x8 }, 'contrastshadow' => { 319 => 0x6e }, 'contraststandard' => { 18 => 0xe8, 63 => 0x0, 64 => 0x0 }, 'contrastuserdef1' => { 18 => 0xee, 63 => 0x90, 64 => 0xa8 }, 'contrastuserdef2' => { 18 => 0xef, 63 => 0xa8, 64 => 0xc0 }, 'contrastuserdef3' => { 18 => 0xf0, 63 => 0xc0, 64 => 0xd8 }, - 'contributedmedia' => { 451 => 'contributedMedia' }, - 'contributedmediaduration' => { 451 => [\'contributedMedia','contributedMediaDuration'] }, - 'contributedmediadurationscale' => { 451 => [\'contributedMedia','contributedMediaDurationScale'] }, - 'contributedmediadurationvalue' => { 451 => [\'contributedMedia','contributedMediaDurationValue'] }, - 'contributedmediamanaged' => { 451 => [\'contributedMedia','contributedMediaManaged'] }, - 'contributedmediapath' => { 451 => [\'contributedMedia','contributedMediaPath'] }, - 'contributedmediastarttime' => { 451 => [\'contributedMedia','contributedMediaStartTime'] }, - 'contributedmediastarttimescale' => { 451 => [\'contributedMedia','contributedMediaStartTimeScale'] }, - 'contributedmediastarttimevalue' => { 451 => [\'contributedMedia','contributedMediaStartTimeValue'] }, - 'contributedmediatrack' => { 451 => [\'contributedMedia','contributedMediaTrack'] }, - 'contributedmediawebstatement' => { 451 => [\'contributedMedia','contributedMediaWebStatement'] }, - 'contributor' => { 428 => 'contributor', 437 => 'Contributor' }, - 'contributoridentifier' => { 437 => [\'Contributor','ContributorIdentifier'] }, - 'contributorname' => { 437 => [\'Contributor','ContributorName'] }, - 'contributorrole' => { 437 => [\'Contributor','ContributorRole'] }, + 'contributedmedia' => { 452 => 'contributedMedia' }, + 'contributedmediaduration' => { 452 => [\'contributedMedia','contributedMediaDuration'] }, + 'contributedmediadurationscale' => { 452 => [\'contributedMedia','contributedMediaDurationScale'] }, + 'contributedmediadurationvalue' => { 452 => [\'contributedMedia','contributedMediaDurationValue'] }, + 'contributedmediamanaged' => { 452 => [\'contributedMedia','contributedMediaManaged'] }, + 'contributedmediapath' => { 452 => [\'contributedMedia','contributedMediaPath'] }, + 'contributedmediastarttime' => { 452 => [\'contributedMedia','contributedMediaStartTime'] }, + 'contributedmediastarttimescale' => { 452 => [\'contributedMedia','contributedMediaStartTimeScale'] }, + 'contributedmediastarttimevalue' => { 452 => [\'contributedMedia','contributedMediaStartTimeValue'] }, + 'contributedmediatrack' => { 452 => [\'contributedMedia','contributedMediaTrack'] }, + 'contributedmediawebstatement' => { 452 => [\'contributedMedia','contributedMediaWebStatement'] }, + 'contributor' => { 429 => 'contributor', 438 => 'Contributor' }, + 'contributoridentifier' => { 438 => [\'Contributor','ContributorIdentifier'] }, + 'contributorname' => { 438 => [\'Contributor','ContributorName'] }, + 'contributorrole' => { 438 => [\'Contributor','ContributorRole'] }, 'contributors' => { 141 => 'Contributors' }, 'controldialset' => { 167 => 0x46 }, - 'controlledvocabularyterm' => { 437 => 'CVterm' }, + 'controlledvocabularyterm' => { 438 => 'CVterm' }, 'controllerboardversion' => { 281 => 0x332 }, 'controlmode' => { 69 => 0x12 }, 'conversionlens' => { 265 => 0x403, 285 => 0x35 }, - 'converter' => { 110 => 0xfe4d, 230 => 0xb, 427 => 'Converter' }, - 'converttograyscale' => { 427 => 'ConvertToGrayscale' }, - 'cookingequipment' => { 443 => 'cookingEquipment' }, - 'cookingmethod' => { 443 => 'cookingMethod' }, - 'copyright' => { 0 => 0x3, 110 => 0x8298, 141 => 'Copyright', 277 => 'Copyright', 319 => 0x22f, 335 => 'Copyright', 438 => 'Copyright', 444 => 'copyright', 447 => 'Copyright', 451 => 'copyright' }, + 'converter' => { 110 => 0xfe4d, 230 => 0xb, 428 => 'Converter' }, + 'converttograyscale' => { 428 => 'ConvertToGrayscale' }, + 'cookingequipment' => { 444 => 'cookingEquipment' }, + 'cookingmethod' => { 444 => 'cookingMethod' }, + 'copyright' => { 0 => 0x3, 110 => 0x8298, 141 => 'Copyright', 277 => 'Copyright', 319 => 0x22f, 335 => 'Copyright', 439 => 'Copyright', 445 => 'copyright', 448 => 'Copyright', 452 => 'copyright' }, 'copyrightflag' => { 333 => 0x40a }, 'copyrightnotice' => { 118 => 0x74 }, 'copyrightowner' => { 274 => 'CopyrightOwner' }, @@ -1515,63 +1517,63 @@ 'copyrightownername' => { 274 => [\'CopyrightOwner','CopyrightOwnerCopyrightOwnerName'] }, 'copyrightregistrationnumber' => { 274 => 'CopyrightRegistrationNumber' }, 'copyrightstatus' => { 274 => 'CopyrightStatus' }, - 'copyrightyear' => { 437 => 'CopyrightYear', 441 => 'copyrightYear' }, + 'copyrightyear' => { 438 => 'CopyrightYear', 442 => 'copyrightYear' }, 'coringfilter' => { 268 => 0x310, 269 => 0x102d, 272 => 0x310 }, 'coringvalues' => { 268 => 0x311, 272 => 0x311 }, - 'corporateentity' => { 441 => 'corporateEntity' }, - 'country' => { 145 => 'Country', 285 => 0x69, 439 => 'Country' }, + 'corporateentity' => { 442 => 'corporateEntity' }, + 'country' => { 145 => 'Country', 285 => 0x69, 440 => 'Country' }, 'country-primarylocationcode' => { 118 => 0x64 }, 'country-primarylocationname' => { 118 => 0x65 }, - 'countrycode' => { 200 => 0x5, 331 => 'CountryCode', 436 => 'CountryCode' }, - 'course' => { 443 => 'course' }, - 'coverage' => { 428 => 'coverage' }, - 'coverdate' => { 441 => 'coverDate' }, - 'coverdisplaydate' => { 441 => 'coverDisplayDate' }, + 'countrycode' => { 200 => 0x5, 331 => 'CountryCode', 437 => 'CountryCode' }, + 'course' => { 444 => 'course' }, + 'coverage' => { 429 => 'coverage' }, + 'coverdate' => { 442 => 'coverDate' }, + 'coverdisplaydate' => { 442 => 'coverDisplayDate' }, 'cpufirmwareversion' => { 319 => 0x28 }, - 'crc32' => { 429 => 'crc32' }, - 'createdate' => { 110 => 0x9004, 141 => 'CreateDate', 273 => 'CreationDate', 277 => 'create-date', 335 => 'CreationDate', 337 => 0x1, 449 => 'CreateDate' }, - 'creationdate' => { 438 => 'CreationDate', 441 => 'creationDate' }, + 'crc32' => { 430 => 'crc32' }, + 'createdate' => { 110 => 0x9004, 141 => 'CreateDate', 273 => 'CreationDate', 277 => 'create-date', 335 => 'CreationDate', 337 => 0x1, 450 => 'CreateDate' }, + 'creationdate' => { 439 => 'CreationDate', 442 => 'creationDate' }, 'creationtime' => { 277 => 'Creation Time' }, - 'creativestyle' => { 362 => 0x1a, 363 => 0x18, 373 => 0x41, 374 => 0xb020, 403 => 0x4a }, - 'creativestylesetting' => { 364 => 0xf, 379 => 0x7 }, - 'creativestylewaschanged' => { 407 => 0x8001 }, - 'creator' => { 273 => 'Creator', 335 => 'Creator', 428 => 'creator', 437 => 'Creator', 438 => 'Creator' }, - 'creatoraddress' => { 436 => [\'CreatorContactInfo','CreatorContactInfoCiAdrExtadr'] }, + 'creativestyle' => { 363 => 0x1a, 364 => 0x18, 374 => 0x41, 375 => 0xb020, 404 => 0x4a }, + 'creativestylesetting' => { 365 => 0xf, 380 => 0x7 }, + 'creativestylewaschanged' => { 408 => 0x8001 }, + 'creator' => { 273 => 'Creator', 335 => 'Creator', 429 => 'creator', 438 => 'Creator', 439 => 'Creator' }, + 'creatoraddress' => { 437 => [\'CreatorContactInfo','CreatorContactInfoCiAdrExtadr'] }, 'creatorappid' => { 162 => 'CreatorAppId' }, - 'creatorcity' => { 436 => [\'CreatorContactInfo','CreatorContactInfoCiAdrCity'] }, - 'creatorcontactinfo' => { 436 => 'CreatorContactInfo' }, - 'creatorcountry' => { 436 => [\'CreatorContactInfo','CreatorContactInfoCiAdrCtry'] }, - 'creatoridentifier' => { 437 => [\'Creator','CreatorIdentifier'] }, - 'creatorname' => { 437 => [\'Creator','CreatorName'] }, + 'creatorcity' => { 437 => [\'CreatorContactInfo','CreatorContactInfoCiAdrCity'] }, + 'creatorcontactinfo' => { 437 => 'CreatorContactInfo' }, + 'creatorcountry' => { 437 => [\'CreatorContactInfo','CreatorContactInfoCiAdrCtry'] }, + 'creatoridentifier' => { 438 => [\'Creator','CreatorIdentifier'] }, + 'creatorname' => { 438 => [\'Creator','CreatorName'] }, 'creatoropenwithuioptions' => { 162 => 'CreatorOpenWithUIOptions' }, - 'creatorpostalcode' => { 436 => [\'CreatorContactInfo','CreatorContactInfoCiAdrPcode'] }, - 'creatorregion' => { 436 => [\'CreatorContactInfo','CreatorContactInfoCiAdrRegion'] }, - 'creatorrole' => { 437 => [\'Creator','CreatorRole'] }, - 'creatortool' => { 449 => 'CreatorTool' }, - 'creatorworkemail' => { 436 => [\'CreatorContactInfo','CreatorContactInfoCiEmailWork'] }, - 'creatorworktelephone' => { 436 => [\'CreatorContactInfo','CreatorContactInfoCiTelWork'] }, - 'creatorworkurl' => { 436 => [\'CreatorContactInfo','CreatorContactInfoCiUrlWork'] }, - 'credit' => { 118 => 0x6e, 439 => 'Credit' }, - 'creditline' => { 444 => 'creditLine' }, - 'creditlinereq' => { 454 => 'CreditLineReq' }, + 'creatorpostalcode' => { 437 => [\'CreatorContactInfo','CreatorContactInfoCiAdrPcode'] }, + 'creatorregion' => { 437 => [\'CreatorContactInfo','CreatorContactInfoCiAdrRegion'] }, + 'creatorrole' => { 438 => [\'Creator','CreatorRole'] }, + 'creatortool' => { 450 => 'CreatorTool' }, + 'creatorworkemail' => { 437 => [\'CreatorContactInfo','CreatorContactInfoCiEmailWork'] }, + 'creatorworktelephone' => { 437 => [\'CreatorContactInfo','CreatorContactInfoCiTelWork'] }, + 'creatorworkurl' => { 437 => [\'CreatorContactInfo','CreatorContactInfoCiUrlWork'] }, + 'credit' => { 118 => 0x6e, 440 => 'Credit' }, + 'creditline' => { 445 => 'creditLine' }, + 'creditlinereq' => { 455 => 'CreditLineReq' }, 'creditlinerequired' => { 274 => 'CreditLineRequired' }, 'cropactive' => { 92 => 0x0, 99 => 0x244 }, - 'cropangle' => { 427 => 'CropAngle' }, + 'cropangle' => { 428 => 'CropAngle' }, 'cropaspectratio' => { 94 => 0x30101, 99 => 0x260 }, 'cropaspectratiocustom' => { 94 => 0x30102 }, - 'cropbottom' => { 114 => 0x9, 235 => 0x36, 289 => 0x31, 330 => 0xdc, 427 => 'CropBottom' }, + 'cropbottom' => { 114 => 0x9, 235 => 0x36, 289 => 0x31, 330 => 0xdc, 428 => 'CropBottom' }, 'cropbottommargin' => { 47 => 0x3 }, 'cropcircleactive' => { 100 => 0xd6 }, 'cropcircleradius' => { 100 => 0xd9 }, 'cropcirclex' => { 100 => 0xd7 }, 'cropcircley' => { 100 => 0xd8 }, - 'cropconstraintowarp' => { 427 => 'CropConstrainToWarp' }, - 'croph' => { 420 => 'CropH' }, - 'cropheight' => { 92 => 0x6, 99 => 0x24c, 268 => 0x615, 272 => 0x615, 427 => 'CropHeight' }, + 'cropconstraintowarp' => { 428 => 'CropConstrainToWarp' }, + 'croph' => { 421 => 'CropH' }, + 'cropheight' => { 92 => 0x6, 99 => 0x24c, 268 => 0x615, 272 => 0x615, 428 => 'CropHeight' }, 'crophispeed' => { 201 => 0x1b }, - 'cropleft' => { 99 => 0x246, 114 => 0x6, 235 => 0x1e, 268 => 0x612, 272 => 0x612, 289 => 0x30, 330 => 0xd9, 427 => 'CropLeft' }, + 'cropleft' => { 99 => 0x246, 114 => 0x6, 235 => 0x1e, 268 => 0x612, 272 => 0x612, 289 => 0x30, 330 => 0xd9, 428 => 'CropLeft' }, 'cropleftmargin' => { 47 => 0x0 }, - 'cropmode35mm' => { 344 => 0x1018 }, + 'cropmode35mm' => { 345 => 0x1018 }, 'croporiginalheight' => { 92 => 0xb }, 'croporiginalwidth' => { 92 => 0xa }, 'cropoutputheight' => { 235 => 0xce }, @@ -1581,45 +1583,45 @@ 'cropoutputscale' => { 235 => 0xbe }, 'cropoutputwidth' => { 235 => 0xc6 }, 'cropoutputwidthinches' => { 235 => 0x8e }, - 'croppedareaimageheightpixels' => { 415 => 'CroppedAreaImageHeightPixels', 416 => 'CroppedAreaImageHeightPixels' }, - 'croppedareaimagewidthpixels' => { 415 => 'CroppedAreaImageWidthPixels', 416 => 'CroppedAreaImageWidthPixels' }, - 'croppedarealeftpixels' => { 415 => 'CroppedAreaLeftPixels', 416 => 'CroppedAreaLeftPixels' }, - 'croppedareatoppixels' => { 415 => 'CroppedAreaTopPixels', 416 => 'CroppedAreaTopPixels' }, - 'croppedimageheight' => { 5 => 0x2, 344 => 0x1604 }, + 'croppedareaimageheightpixels' => { 416 => 'CroppedAreaImageHeightPixels', 417 => 'CroppedAreaImageHeightPixels' }, + 'croppedareaimagewidthpixels' => { 416 => 'CroppedAreaImageWidthPixels', 417 => 'CroppedAreaImageWidthPixels' }, + 'croppedarealeftpixels' => { 416 => 'CroppedAreaLeftPixels', 417 => 'CroppedAreaLeftPixels' }, + 'croppedareatoppixels' => { 416 => 'CroppedAreaTopPixels', 417 => 'CroppedAreaTopPixels' }, + 'croppedimageheight' => { 5 => 0x2, 345 => 0x1604 }, 'croppedimageleft' => { 5 => 0x3 }, 'croppedimagetop' => { 5 => 0x4 }, - 'croppedimagewidth' => { 5 => 0x1, 344 => 0x1603 }, - 'cropright' => { 114 => 0x8, 235 => 0x2e, 289 => 0x32, 330 => 0xdb, 427 => 'CropRight' }, + 'croppedimagewidth' => { 5 => 0x1, 345 => 0x1603 }, + 'cropright' => { 114 => 0x8, 235 => 0x2e, 289 => 0x32, 330 => 0xdb, 428 => 'CropRight' }, 'croprightmargin' => { 47 => 0x1 }, 'croprotatedoriginalheight' => { 92 => 0x2 }, 'croprotatedoriginalwidth' => { 92 => 0x1 }, 'croprotation' => { 92 => 0x8, 114 => 0xb }, 'cropscaledresolution' => { 235 => 0x9e }, 'cropsourceresolution' => { 235 => 0xae }, - 'croptop' => { 99 => 0x248, 114 => 0x7, 235 => 0x26, 268 => 0x613, 272 => 0x613, 289 => 0x2f, 330 => 0xda, 427 => 'CropTop' }, + 'croptop' => { 99 => 0x248, 114 => 0x7, 235 => 0x26, 268 => 0x613, 272 => 0x613, 289 => 0x2f, 330 => 0xda, 428 => 'CropTop' }, 'croptopmargin' => { 47 => 0x2 }, - 'cropunit' => { 427 => 'CropUnit' }, - 'cropunits' => { 427 => 'CropUnits' }, - 'cropw' => { 420 => 'CropW' }, - 'cropwidth' => { 92 => 0x5, 99 => 0x24a, 268 => 0x614, 272 => 0x614, 427 => 'CropWidth' }, - 'cropx' => { 92 => 0x3, 420 => 'CropX' }, - 'cropy' => { 92 => 0x4, 420 => 'CropY' }, + 'cropunit' => { 428 => 'CropUnit' }, + 'cropunits' => { 428 => 'CropUnits' }, + 'cropw' => { 421 => 'CropW' }, + 'cropwidth' => { 92 => 0x5, 99 => 0x24a, 268 => 0x614, 272 => 0x614, 428 => 'CropWidth' }, + 'cropx' => { 92 => 0x3, 421 => 'CropX' }, + 'cropy' => { 92 => 0x4, 421 => 'CropY' }, 'crossprocess' => { 319 => 0x7b }, 'crossprocessparams' => { 319 => 0x235 }, - 'cuisine' => { 443 => 'cuisine' }, + 'cuisine' => { 444 => 'cuisine' }, 'currenticcprofile' => { 110 => 0xc691 }, 'currentpreprofilematrix' => { 110 => 0xc692 }, - 'currentversion' => { 407 => 0xd000 }, - 'curve0x' => { 420 => 'Curve0x' }, - 'curve0y' => { 420 => 'Curve0y' }, - 'curve1x' => { 420 => 'Curve1x' }, - 'curve1y' => { 420 => 'Curve1y' }, - 'curve2x' => { 420 => 'Curve2x' }, - 'curve2y' => { 420 => 'Curve2y' }, - 'curve3x' => { 420 => 'Curve3x' }, - 'curve3y' => { 420 => 'Curve3y' }, - 'curve4x' => { 420 => 'Curve4x' }, - 'curve4y' => { 420 => 'Curve4y' }, + 'currentversion' => { 408 => 0xd000 }, + 'curve0x' => { 421 => 'Curve0x' }, + 'curve0y' => { 421 => 'Curve0y' }, + 'curve1x' => { 421 => 'Curve1x' }, + 'curve1y' => { 421 => 'Curve1y' }, + 'curve2x' => { 421 => 'Curve2x' }, + 'curve2y' => { 421 => 'Curve2y' }, + 'curve3x' => { 421 => 'Curve3x' }, + 'curve3y' => { 421 => 'Curve3y' }, + 'curve4x' => { 421 => 'Curve4x' }, + 'curve4y' => { 421 => 'Curve4y' }, 'curves' => { 240 => 0x76a43201 }, 'custom1' => { 274 => 'Custom1' }, 'custom10' => { 274 => 'Custom10' }, @@ -1647,7 +1649,7 @@ 'customrawhighlightpoint' => { 100 => 0x51 }, 'customrawshadow' => { 100 => 0x85 }, 'customrawshadowpoint' => { 100 => 0x52 }, - 'customrendered' => { 110 => 0xa401, 431 => 'CustomRendered' }, + 'customrendered' => { 110 => 0xa401, 432 => 'CustomRendered' }, 'customsaturation' => { 100 => 0x4d, 264 => 0x503 }, 'customsettingsalldefault' => { 247 => '0.2', 256 => '0.2' }, 'customsettingsbank' => { 247 => '0.1', 248 => '0.1', 250 => '0.1', 251 => '0.1', 256 => '0.1', 260 => '0.2', 261 => '0.2' }, @@ -1655,8 +1657,8 @@ 'customunsharpmaskfineness' => { 100 => 0xb8 }, 'customunsharpmaskstrength' => { 100 => 0xb6 }, 'customunsharpmaskthreshold' => { 100 => 0xba }, - 'customwb_rblevels' => { 379 => 0x1a }, - 'customwb_rgblevels' => { 363 => 0x8, 364 => 0x19 }, + 'customwb_rblevels' => { 380 => 0x1a }, + 'customwb_rgblevels' => { 364 => 0x8, 365 => 0x19 }, 'customwbbluelevel' => { 167 => 0x36 }, 'customwberror' => { 167 => 0x37 }, 'customwbgreenlevel' => { 167 => 0x35 }, @@ -1670,39 +1672,40 @@ 'd-lightinghs' => { 240 => 0xce5554aa }, 'd-lightinghsadjustment' => { 237 => 0x0 }, 'd-lightinghscolorboost' => { 237 => 0x1 }, - 'd-rangeoptimizerhighlight' => { 407 => 0x8024 }, - 'd-rangeoptimizermode' => { 407 => 0x8022 }, - 'd-rangeoptimizershadow' => { 407 => 0x802d }, - 'd-rangeoptimizervalue' => { 407 => 0x8023 }, + 'd-rangeoptimizerhighlight' => { 408 => 0x8024 }, + 'd-rangeoptimizermode' => { 408 => 0x8022 }, + 'd-rangeoptimizershadow' => { 408 => 0x802d }, + 'd-rangeoptimizervalue' => { 408 => 0x8023 }, 'd810meteringmode' => { 227 => 0x175e }, - 'data' => { 412 => 'Data' }, + 'data' => { 413 => 'Data' }, 'datacompressionmethod' => { 120 => 0x6e }, 'dataimprint' => { 164 => 0x34 }, - 'dataonscreen' => { 437 => 'DataOnScreen' }, - 'dataonscreenregion' => { 437 => [\'DataOnScreen','DataOnScreenRegion'] }, - 'dataonscreenregiond' => { 437 => [\'DataOnScreen','DataOnScreenRegionD'] }, - 'dataonscreenregionh' => { 437 => [\'DataOnScreen','DataOnScreenRegionH'] }, - 'dataonscreenregiontext' => { 437 => [\'DataOnScreen','DataOnScreenRegionText'] }, - 'dataonscreenregionunit' => { 437 => [\'DataOnScreen','DataOnScreenRegionUnit'] }, - 'dataonscreenregionw' => { 437 => [\'DataOnScreen','DataOnScreenRegionW'] }, - 'dataonscreenregionx' => { 437 => [\'DataOnScreen','DataOnScreenRegionX'] }, - 'dataonscreenregiony' => { 437 => [\'DataOnScreen','DataOnScreenRegionY'] }, + 'dataonscreen' => { 438 => 'DataOnScreen' }, + 'dataonscreenregion' => { 438 => [\'DataOnScreen','DataOnScreenRegion'] }, + 'dataonscreenregiond' => { 438 => [\'DataOnScreen','DataOnScreenRegionD'] }, + 'dataonscreenregionh' => { 438 => [\'DataOnScreen','DataOnScreenRegionH'] }, + 'dataonscreenregiontext' => { 438 => [\'DataOnScreen','DataOnScreenRegionText'] }, + 'dataonscreenregionunit' => { 438 => [\'DataOnScreen','DataOnScreenRegionUnit'] }, + 'dataonscreenregionw' => { 438 => [\'DataOnScreen','DataOnScreenRegionW'] }, + 'dataonscreenregionx' => { 438 => [\'DataOnScreen','DataOnScreenRegionX'] }, + 'dataonscreenregiony' => { 438 => [\'DataOnScreen','DataOnScreenRegionY'] }, 'datascaling' => { 319 => 0x3d }, - 'date' => { 319 => 0x6, 428 => 'date' }, + 'date' => { 319 => 0x6, 429 => 'date' }, 'dateacquired' => { 162 => 'DateAcquired' }, - 'datecreated' => { 118 => 0x37, 439 => 'DateCreated' }, + 'datecreated' => { 118 => 0x37, 440 => 'DateCreated' }, 'datedisplayformat' => { 232 => 0x3 }, 'dateidentified' => { 109 => [\'Identification','IdentificationDateIdentified'] }, 'dateimprint' => { 252 => '4.2' }, - 'daterecieved' => { 441 => 'dateRecieved' }, + 'daterecieved' => { 442 => 'dateRecieved' }, 'datesent' => { 119 => 0x46 }, 'datestampmode' => { 57 => 0x1c }, - 'datetime' => { 421 => 'datetime', 447 => 'DateTime' }, - 'datetimedigitized' => { 431 => 'DateTimeDigitized' }, - 'datetimeoriginal' => { 91 => 0x0, 110 => 0x9003, 138 => 0x14, 141 => 'OriginalDate', 340 => 0xb, 431 => 'DateTimeOriginal' }, + 'datetime' => { 422 => 'datetime', 448 => 'DateTime' }, + 'datetimedigitized' => { 432 => 'DateTimeDigitized' }, + 'datetimeoriginal' => { 91 => 0x0, 110 => 0x9003, 138 => 0x14, 141 => 'OriginalDate', 340 => 0xb, 341 => 0x3b, 432 => 'DateTimeOriginal' }, 'datetimestamp' => { 126 => 0x64 }, 'datetimeutc' => { 264 => 0x908 }, 'daylightsavings' => { 70 => 0x3, 232 => 0x2 }, + 'dayofweek' => { 341 => 0x42 }, 'dccontinent' => { 109 => [\'dctermsLocation','dctermsLocationContinent'] }, 'dccoordinateprecision' => { 109 => [\'dctermsLocation','dctermsLocationCoordinatePrecision'] }, 'dccoordinateuncertaintyinmeters' => { 109 => [\'dctermsLocation','dctermsLocationCoordinateUncertaintyInMeters'] }, @@ -1751,71 +1754,71 @@ 'dcwaterbody' => { 109 => [\'dctermsLocation','dctermsLocationWaterBody'] }, 'declination' => { 149 => 'Declination' }, 'decposition' => { 164 => 0x32 }, - 'defaultautogray' => { 427 => 'DefaultAutoGray' }, - 'defaultautotone' => { 427 => 'DefaultAutoTone' }, + 'defaultautogray' => { 428 => 'DefaultAutoGray' }, + 'defaultautotone' => { 428 => 'DefaultAutoTone' }, 'defaultblackrender' => { 110 => 0xc7a6 }, 'defaultcroporigin' => { 110 => 0xc61f }, 'defaultcropsize' => { 110 => 0xc620 }, 'defaulteraseoption' => { 75 => 0x813 }, 'defaultscale' => { 110 => 0xc61e }, - 'defaultsspecifictoiso' => { 427 => 'DefaultsSpecificToISO' }, - 'defaultsspecifictoserial' => { 427 => 'DefaultsSpecificToSerial' }, + 'defaultsspecifictoiso' => { 428 => 'DefaultsSpecificToISO' }, + 'defaultsspecifictoserial' => { 428 => 'DefaultsSpecificToSerial' }, 'defaultusercrop' => { 110 => 0xc7b5 }, - 'defringe' => { 427 => 'Defringe' }, - 'defringegreenamount' => { 427 => 'DefringeGreenAmount' }, - 'defringegreenhuehi' => { 427 => 'DefringeGreenHueHi' }, - 'defringegreenhuelo' => { 427 => 'DefringeGreenHueLo' }, - 'defringepurpleamount' => { 427 => 'DefringePurpleAmount' }, - 'defringepurplehuehi' => { 427 => 'DefringePurpleHueHi' }, - 'defringepurplehuelo' => { 427 => 'DefringePurpleHueLo' }, - 'dehaze' => { 427 => 'Dehaze' }, + 'defringe' => { 428 => 'Defringe' }, + 'defringegreenamount' => { 428 => 'DefringeGreenAmount' }, + 'defringegreenhuehi' => { 428 => 'DefringeGreenHueHi' }, + 'defringegreenhuelo' => { 428 => 'DefringeGreenHueLo' }, + 'defringepurpleamount' => { 428 => 'DefringePurpleAmount' }, + 'defringepurplehuehi' => { 428 => 'DefringePurpleHueHi' }, + 'defringepurplehuelo' => { 428 => 'DefringePurpleHueLo' }, + 'dehaze' => { 428 => 'Dehaze' }, 'deletedimagecount' => { 201 => 0xa6, 209 => 0x6e }, - 'deprecatedon' => { 424 => 'deprecatedOn' }, - 'derivedfrom' => { 452 => 'DerivedFrom' }, - 'derivedfromalternatepaths' => { 452 => [\'DerivedFrom','DerivedFromAlternatePaths'] }, - 'derivedfromdocumentid' => { 452 => [\'DerivedFrom','DerivedFromDocumentID'] }, - 'derivedfromfilepath' => { 452 => [\'DerivedFrom','DerivedFromFilePath'] }, - 'derivedfromfrompart' => { 452 => [\'DerivedFrom','DerivedFromFromPart'] }, - 'derivedfrominstanceid' => { 452 => [\'DerivedFrom','DerivedFromInstanceID'] }, - 'derivedfromlastmodifydate' => { 452 => [\'DerivedFrom','DerivedFromLastModifyDate'] }, - 'derivedfromlasturl' => { 452 => [\'DerivedFrom','DerivedFromLastURL'] }, - 'derivedfromlinkcategory' => { 452 => [\'DerivedFrom','DerivedFromLinkCategory'] }, - 'derivedfromlinkform' => { 452 => [\'DerivedFrom','DerivedFromLinkForm'] }, - 'derivedfrommanager' => { 452 => [\'DerivedFrom','DerivedFromManager'] }, - 'derivedfrommanagervariant' => { 452 => [\'DerivedFrom','DerivedFromManagerVariant'] }, - 'derivedfrommanageto' => { 452 => [\'DerivedFrom','DerivedFromManageTo'] }, - 'derivedfrommanageui' => { 452 => [\'DerivedFrom','DerivedFromManageUI'] }, - 'derivedfrommaskmarkers' => { 452 => [\'DerivedFrom','DerivedFromMaskMarkers'] }, - 'derivedfromoriginaldocumentid' => { 452 => [\'DerivedFrom','DerivedFromOriginalDocumentID'] }, - 'derivedfrompartmapping' => { 452 => [\'DerivedFrom','DerivedFromPartMapping'] }, - 'derivedfromplacedresolutionunit' => { 452 => [\'DerivedFrom','DerivedFromPlacedResolutionUnit'] }, - 'derivedfromplacedxresolution' => { 452 => [\'DerivedFrom','DerivedFromPlacedXResolution'] }, - 'derivedfromplacedyresolution' => { 452 => [\'DerivedFrom','DerivedFromPlacedYResolution'] }, - 'derivedfromrenditionclass' => { 452 => [\'DerivedFrom','DerivedFromRenditionClass'] }, - 'derivedfromrenditionparams' => { 452 => [\'DerivedFrom','DerivedFromRenditionParams'] }, - 'derivedfromtopart' => { 452 => [\'DerivedFrom','DerivedFromToPart'] }, - 'derivedfromversionid' => { 452 => [\'DerivedFrom','DerivedFromVersionID'] }, - 'description' => { 277 => 'Description', 428 => 'description', 449 => 'Description' }, + 'deprecatedon' => { 425 => 'deprecatedOn' }, + 'derivedfrom' => { 453 => 'DerivedFrom' }, + 'derivedfromalternatepaths' => { 453 => [\'DerivedFrom','DerivedFromAlternatePaths'] }, + 'derivedfromdocumentid' => { 453 => [\'DerivedFrom','DerivedFromDocumentID'] }, + 'derivedfromfilepath' => { 453 => [\'DerivedFrom','DerivedFromFilePath'] }, + 'derivedfromfrompart' => { 453 => [\'DerivedFrom','DerivedFromFromPart'] }, + 'derivedfrominstanceid' => { 453 => [\'DerivedFrom','DerivedFromInstanceID'] }, + 'derivedfromlastmodifydate' => { 453 => [\'DerivedFrom','DerivedFromLastModifyDate'] }, + 'derivedfromlasturl' => { 453 => [\'DerivedFrom','DerivedFromLastURL'] }, + 'derivedfromlinkcategory' => { 453 => [\'DerivedFrom','DerivedFromLinkCategory'] }, + 'derivedfromlinkform' => { 453 => [\'DerivedFrom','DerivedFromLinkForm'] }, + 'derivedfrommanager' => { 453 => [\'DerivedFrom','DerivedFromManager'] }, + 'derivedfrommanagervariant' => { 453 => [\'DerivedFrom','DerivedFromManagerVariant'] }, + 'derivedfrommanageto' => { 453 => [\'DerivedFrom','DerivedFromManageTo'] }, + 'derivedfrommanageui' => { 453 => [\'DerivedFrom','DerivedFromManageUI'] }, + 'derivedfrommaskmarkers' => { 453 => [\'DerivedFrom','DerivedFromMaskMarkers'] }, + 'derivedfromoriginaldocumentid' => { 453 => [\'DerivedFrom','DerivedFromOriginalDocumentID'] }, + 'derivedfrompartmapping' => { 453 => [\'DerivedFrom','DerivedFromPartMapping'] }, + 'derivedfromplacedresolutionunit' => { 453 => [\'DerivedFrom','DerivedFromPlacedResolutionUnit'] }, + 'derivedfromplacedxresolution' => { 453 => [\'DerivedFrom','DerivedFromPlacedXResolution'] }, + 'derivedfromplacedyresolution' => { 453 => [\'DerivedFrom','DerivedFromPlacedYResolution'] }, + 'derivedfromrenditionclass' => { 453 => [\'DerivedFrom','DerivedFromRenditionClass'] }, + 'derivedfromrenditionparams' => { 453 => [\'DerivedFrom','DerivedFromRenditionParams'] }, + 'derivedfromtopart' => { 453 => [\'DerivedFrom','DerivedFromToPart'] }, + 'derivedfromversionid' => { 453 => [\'DerivedFrom','DerivedFromVersionID'] }, + 'description' => { 277 => 'Description', 429 => 'description', 450 => 'Description' }, 'destination' => { 119 => 0x5 }, 'destinationcity' => { 319 => 0x24, 325 => 0x3 }, 'destinationcitycode' => { 326 => 0x1001 }, 'destinationdst' => { 319 => 0x26, 325 => '0.3' }, 'developmentdynamicrange' => { 115 => 0x1403 }, - 'device' => { 441 => 'device' }, - 'devicesettingdescription' => { 431 => 'DeviceSettingDescription' }, - 'devicesettingdescriptioncolumns' => { 431 => [\'DeviceSettingDescription','DeviceSettingDescriptionColumns'] }, - 'devicesettingdescriptionrows' => { 431 => [\'DeviceSettingDescription','DeviceSettingDescriptionRows'] }, - 'devicesettingdescriptionsettings' => { 431 => [\'DeviceSettingDescription','DeviceSettingDescriptionSettings'] }, - 'devicetype' => { 351 => 0x2 }, + 'device' => { 442 => 'device' }, + 'devicesettingdescription' => { 432 => 'DeviceSettingDescription' }, + 'devicesettingdescriptioncolumns' => { 432 => [\'DeviceSettingDescription','DeviceSettingDescriptionColumns'] }, + 'devicesettingdescriptionrows' => { 432 => [\'DeviceSettingDescription','DeviceSettingDescriptionRows'] }, + 'devicesettingdescriptionsettings' => { 432 => [\'DeviceSettingDescription','DeviceSettingDescriptionSettings'] }, + 'devicetype' => { 352 => 0x2 }, 'dialdirectiontvav' => { 75 => 0x706 }, - 'dietaryneeds' => { 443 => 'dietaryNeeds' }, + 'dietaryneeds' => { 444 => 'dietaryNeeds' }, 'diffractioncorrection' => { 309 => 0x3 }, 'digitalcreationdate' => { 118 => 0x3e }, 'digitalcreationtime' => { 118 => 0x3f }, 'digitaldeehighlightadj' => { 208 => 0x202 }, 'digitaldeeshadowadj' => { 208 => 0x200 }, 'digitaldeethreshold' => { 208 => 0x201 }, - 'digitalfilter' => { 354 => 0x59 }, + 'digitalfilter' => { 355 => 0x59 }, 'digitalfilter01' => { 306 => 0x5 }, 'digitalfilter02' => { 306 => 0x16 }, 'digitalfilter03' => { 306 => 0x27 }, @@ -1839,41 +1842,41 @@ 'digitalgain' => { 67 => 0xb }, 'digitalgem' => { 193 => 0x0 }, 'digitalice' => { 208 => 0x100 }, - 'digitalimageguid' => { 437 => 'DigImageGUID' }, + 'digitalimageguid' => { 438 => 'DigImageGUID' }, 'digitalroc' => { 206 => 0x0 }, - 'digitalsourcefiletype' => { 437 => 'DigitalSourcefileType' }, - 'digitalsourcetype' => { 437 => 'DigitalSourceType' }, - 'digitalzoom' => { 33 => 0xc, 103 => 0xa, 115 => 0x1044, 126 => 0x68, 140 => 'DigitalZoom', 164 => 0xc, 201 => 0x86, 230 => 0xa, 269 => 0x204, 319 => 0x1e, 326 => 0xa, 353 => 0x204, 394 => 0x12, 395 => 0x12 }, - 'digitalzoomon' => { 353 => 0x21b }, - 'digitalzoomratio' => { 110 => 0xa404, 384 => 0x200, 386 => 0x21c, 431 => 'DigitalZoomRatio' }, - 'director' => { 451 => 'director' }, - 'directorphotography' => { 451 => 'directorPhotography' }, + 'digitalsourcefiletype' => { 438 => 'DigitalSourcefileType' }, + 'digitalsourcetype' => { 438 => 'DigitalSourceType' }, + 'digitalzoom' => { 33 => 0xc, 103 => 0xa, 115 => 0x1044, 126 => 0x68, 140 => 'DigitalZoom', 164 => 0xc, 201 => 0x86, 230 => 0xa, 269 => 0x204, 319 => 0x1e, 326 => 0xa, 354 => 0x204, 395 => 0x12, 396 => 0x12 }, + 'digitalzoomon' => { 354 => 0x21b }, + 'digitalzoomratio' => { 110 => 0xa404, 385 => 0x200, 387 => 0x21c, 432 => 'DigitalZoomRatio' }, + 'director' => { 452 => 'director' }, + 'directorphotography' => { 452 => 'directorPhotography' }, 'directory' => { 111 => 'Directory' }, 'directoryindex' => { 6 => 0x137, 8 => 0x2dc, 10 => 0x17e, 12 => 0x238, 13 => 0x13f, 14 => 0x133, 15 => 0x1df, 16 => 0x1a7, 17 => 0x1f0, 18 => 0xcc, 19 => 0x1c7, 20 => 0x298, 21 => 0x1e7, 22 => 0x1e5, 23 => [0x27c,0x280], 24 => 0x2b6, 25 => 0x2bf, 27 => 0x1f7, 28 => 0x4ba }, 'directoryindex2' => { 20 => 0x29c }, 'directorynumber' => { 188 => 0x3 }, 'disclaimer' => { 277 => 'Disclaimer' }, - 'discnumber' => { 451 => 'discNumber' }, - 'dishtype' => { 443 => 'dishType' }, + 'discnumber' => { 452 => 'discNumber' }, + 'dishtype' => { 444 => 'dishType' }, 'displayallafpoints' => { 75 => 0x514 }, 'displayaperture' => { 33 => 0x23 }, 'displayedunitsx' => { 334 => 0x2 }, 'displayedunitsy' => { 334 => 0x6 }, - 'displayname' => { 440 => 'displayName' }, + 'displayname' => { 441 => 'displayName' }, 'distance1' => { 126 => 0x28 }, 'distance2' => { 126 => 0x2c }, 'distance3' => { 126 => 0x30 }, 'distance4' => { 126 => 0x34 }, - 'distortion' => { 351 => 0xa050 }, + 'distortion' => { 352 => 0xa050 }, 'distortioncontrol' => { 209 => 0x10 }, - 'distortioncorrection' => { 94 => 0x20705, 100 => 0x67, 264 => 0x50b, 288 => '7.1', 309 => 0x0, 402 => 0x601, 403 => 0x5b }, + 'distortioncorrection' => { 94 => 0x20705, 100 => 0x67, 264 => 0x50b, 288 => '7.1', 309 => 0x0, 403 => 0x601, 404 => 0x5b }, 'distortioncorrection2' => { 268 => 0x1011 }, - 'distortioncorrectionalreadyapplied' => { 423 => 'DistortionCorrectionAlreadyApplied' }, + 'distortioncorrectionalreadyapplied' => { 424 => 'DistortionCorrectionAlreadyApplied' }, 'distortioncorrectionon' => { 94 => '0x20705.0', 100 => 0x63 }, - 'distortioncorrectionsetting' => { 374 => 0x2013 }, - 'distortioncorrparams' => { 110 => 0x7037, 383 => 0x1a23, 386 => 0x1870, 388 => 0x189c, 389 => 0x18cc, 390 => 0x17d0, 402 => 0x6ca, 403 => 0x64 }, - 'distortioncorrparamsnumber' => { 386 => 0x1899, 388 => 0x18c5, 389 => 0x18f5, 390 => 0x17f9 }, - 'distortioncorrparamspresent' => { 386 => 0x1898, 388 => 0x18c4, 389 => 0x18f4, 390 => 0x17f8, 392 => 0x10b, 393 => 0x10b, 402 => 0x600, 403 => 0x5a }, + 'distortioncorrectionsetting' => { 375 => 0x2013 }, + 'distortioncorrparams' => { 110 => 0x7037, 384 => 0x1a23, 387 => 0x1870, 389 => 0x189c, 390 => 0x18cc, 391 => 0x17d0, 403 => 0x6ca, 404 => 0x64 }, + 'distortioncorrparamsnumber' => { 387 => 0x1899, 389 => 0x18c5, 390 => 0x18f5, 391 => 0x17f9 }, + 'distortioncorrparamspresent' => { 387 => 0x1898, 389 => 0x18c4, 390 => 0x18f4, 391 => 0x17f8, 393 => 0x10b, 394 => 0x10b, 403 => 0x600, 404 => 0x5a }, 'distortioneffect' => { 94 => 0x20709 }, 'distortionn' => { 288 => 0xc }, 'distortionparam02' => { 288 => 0x2 }, @@ -1882,52 +1885,52 @@ 'distortionparam09' => { 288 => 0x9 }, 'distortionparam11' => { 288 => 0xb }, 'distortionscale' => { 288 => 0x5 }, - 'distributor' => { 441 => 'distributor' }, - 'distributorproductid' => { 440 => 'distributorProductID' }, + 'distributor' => { 442 => 'distributor' }, + 'distributorproductid' => { 441 => 'distributorProductID' }, 'dloon' => { 94 => '0x20706.0', 100 => 0xdc }, 'dlosetting' => { 94 => 0x20706, 100 => 0xdd }, 'dlosettingapplied' => { 93 => 0x4 }, 'dloshootingdistance' => { 100 => 0xde }, 'dloversion' => { 93 => 0x5 }, - 'dmcomment' => { 451 => 'comment' }, + 'dmcomment' => { 452 => 'comment' }, 'dngadobedata' => { 110 => 0xc634 }, 'dngbackwardversion' => { 110 => 0xc613 }, - 'dngignoresidecars' => { 427 => 'DNGIgnoreSidecars' }, + 'dngignoresidecars' => { 428 => 'DNGIgnoreSidecars' }, 'dnglensinfo' => { 110 => 0xc630 }, 'dngprivatedata' => { 110 => 0xc634 }, 'dngversion' => { 110 => 0xc612 }, 'document' => { 277 => 'Document' }, - 'documentancestors' => { 439 => 'DocumentAncestors' }, + 'documentancestors' => { 440 => 'DocumentAncestors' }, 'documenthistory' => { 118 => 0xe7 }, - 'documentid' => { 452 => 'DocumentID' }, + 'documentid' => { 453 => 'DocumentID' }, 'documentname' => { 110 => 0x10d }, 'documentnotes' => { 118 => 0xe6 }, - 'doi' => { 441 => 'doi' }, - 'dopesheet' => { 437 => 'Dopesheet' }, - 'dopesheetlink' => { 437 => 'DopesheetLink' }, - 'dopesheetlinklink' => { 437 => [\'DopesheetLink','DopesheetLinkLink'] }, - 'dopesheetlinklinkqualifier' => { 437 => [\'DopesheetLink','DopesheetLinkLinkQualifier'] }, - 'dpp' => { 421 => 'dpp' }, + 'doi' => { 442 => 'doi' }, + 'dopesheet' => { 438 => 'Dopesheet' }, + 'dopesheetlink' => { 438 => 'DopesheetLink' }, + 'dopesheetlinklink' => { 438 => [\'DopesheetLink','DopesheetLinkLink'] }, + 'dopesheetlinklinkqualifier' => { 438 => [\'DopesheetLink','DopesheetLinkLinkQualifier'] }, + 'dpp' => { 422 => 'dpp' }, 'dr4cameramodel' => { 95 => 0x3 }, - 'drivemode' => { 104 => 0x3103, 164 => 0x6, 167 => 0x1e, 170 => 0xe, 264 => 0x600, 319 => 0x34, 344 => 0x1002, 354 => 0x3, 362 => 0x4, 363 => 0x7e, 364 => 0x34 }, - 'drivemode2' => { 167 => 0xa, 300 => 0x7, 373 => 0xe, 379 => 0x1 }, - 'drivemodesetting' => { 364 => 0x4 }, + 'drivemode' => { 104 => 0x3103, 164 => 0x6, 167 => 0x1e, 170 => 0xe, 264 => 0x600, 319 => 0x34, 345 => 0x1002, 355 => 0x3, 363 => 0x4, 364 => 0x7e, 365 => 0x34 }, + 'drivemode2' => { 167 => 0xa, 300 => 0x7, 374 => 0xe, 380 => 0x1 }, + 'drivemodesetting' => { 365 => 0x4 }, 'dspfirmwareversion' => { 319 => 0x27 }, - 'duration' => { 60 => 0x6a, 139 => 'Duration', 153 => 'Duration', 443 => 'duration', 451 => 'duration' }, - 'durationscale' => { 451 => [\'duration','durationScale'] }, - 'durationvalue' => { 451 => [\'duration','durationValue'] }, + 'duration' => { 60 => 0x6a, 139 => 'Duration', 153 => 'Duration', 444 => 'duration', 452 => 'duration' }, + 'durationscale' => { 452 => [\'duration','durationScale'] }, + 'durationvalue' => { 452 => [\'duration','durationValue'] }, 'dustremovaldata' => { 57 => 0x97 }, 'dynamicafarea' => { 247 => '1.4', 256 => '1.4' }, 'dynamicareaafdisplay' => { 248 => '46.1', 250 => '47.1', 251 => '47.1', 260 => '47.1', 261 => '47.1' }, 'dynamicrange' => { 115 => 0x1400 }, - 'dynamicrangeexpansion' => { 319 => 0x69, 344 => 0x100e }, + 'dynamicrangeexpansion' => { 319 => 0x69, 345 => 0x100e }, 'dynamicrangemax' => { 99 => 0x7c }, 'dynamicrangemin' => { 99 => 0x7a }, - 'dynamicrangeoptimizer' => { 167 => 0x15, 374 => [0xb025,0xb04f], 382 => 0x1144, 383 => [0x1144,0x324], 384 => [0x1120,0x300], 385 => [0x119c,0x37c], 386 => [0x1178,0x328], 387 => [0x1030,0x50], 388 => [0x228,0x50], 389 => [0x228,0x50], 390 => [0x21b,0x4e] }, - 'dynamicrangeoptimizerbracket' => { 373 => 0x2e }, - 'dynamicrangeoptimizerlevel' => { 362 => 0x19, 363 => 0x17, 364 => 0xd, 373 => 0x79, 379 => 0x5 }, - 'dynamicrangeoptimizermode' => { 170 => 0x15, 362 => 0x18, 363 => 0x16, 373 => [0x77,0x15] }, - 'dynamicrangeoptimizersetting' => { 167 => 0x27, 364 => 0xc, 379 => 0x4 }, + 'dynamicrangeoptimizer' => { 167 => 0x15, 375 => [0xb025,0xb04f], 383 => 0x1144, 384 => [0x1144,0x324], 385 => [0x1120,0x300], 386 => [0x119c,0x37c], 387 => [0x1178,0x328], 388 => [0x1030,0x50], 389 => [0x228,0x50], 390 => [0x228,0x50], 391 => [0x21b,0x4e] }, + 'dynamicrangeoptimizerbracket' => { 374 => 0x2e }, + 'dynamicrangeoptimizerlevel' => { 363 => 0x19, 364 => 0x17, 365 => 0xd, 374 => 0x79, 380 => 0x5 }, + 'dynamicrangeoptimizermode' => { 170 => 0x15, 363 => 0x18, 364 => 0x16, 374 => [0x77,0x15] }, + 'dynamicrangeoptimizersetting' => { 167 => 0x27, 365 => 0xc, 380 => 0x4 }, 'dynamicrangesetting' => { 115 => 0x1402 }, 'e-dialinprogram' => { 300 => '1.3' }, 'earliestageorloweststage' => { 109 => [\'GeologicalContext','GeologicalContextEarliestAgeOrLowestStage'] }, @@ -1938,31 +1941,31 @@ 'easyexposurecomp' => { 262 => '6.1' }, 'easyexposurecompensation' => { 247 => '6.4', 248 => '6.5', 250 => '6.3', 251 => '6.3', 255 => '5.1', 256 => '4.4', 257 => '5.2', 260 => '6.3', 261 => '6.3' }, 'easymode' => { 33 => 0xb }, - 'edgenoisereduction' => { 241 => 0x4, 407 => 0x8028 }, - 'edition' => { 441 => 'edition' }, + 'edgenoisereduction' => { 241 => 0x4, 408 => 0x8028 }, + 'edition' => { 442 => 'edition' }, 'editorialupdate' => { 118 => 0x8 }, - 'editstatus' => { 118 => 0x7, 331 => 'EditStatus', 421 => 'EditStatus' }, + 'editstatus' => { 118 => 0x7, 331 => 'EditStatus', 422 => 'EditStatus' }, 'editversionname' => { 240 => 0x3d136244 }, 'effectivelv' => { 319 => 0x2d }, 'effectivemaxaperture' => { 197 => 0x12, 198 => 0x13 }, - 'eissn' => { 441 => 'eIssn' }, + 'eissn' => { 442 => 'eIssn' }, 'electronicfront-curtainshutter' => { 250 => '5.2', 251 => '5.2', 260 => '5.3', 261 => '5.2' }, - 'electronicfrontcurtainshutter' => { 374 => 0x201a }, + 'electronicfrontcurtainshutter' => { 375 => 0x201a }, 'elevation' => { 149 => 'Elevation' }, 'email' => { 141 => 'EMail' }, - 'embargodate' => { 444 => 'embargoDate' }, - 'embdencrightsexpr' => { 437 => 'EmbdEncRightsExpr' }, - 'embeddedencodedrightsexpr' => { 437 => [\'EmbdEncRightsExpr','EmbdEncRightsExprEncRightsExpr'] }, - 'embeddedencodedrightsexprlangid' => { 437 => [\'EmbdEncRightsExpr','EmbdEncRightsExprRightsExprLangId'] }, - 'embeddedencodedrightsexprtype' => { 437 => [\'EmbdEncRightsExpr','EmbdEncRightsExprRightsExprEncType'] }, - 'embeddedxmpdigest' => { 439 => 'EmbeddedXMPDigest' }, + 'embargodate' => { 445 => 'embargoDate' }, + 'embdencrightsexpr' => { 438 => 'EmbdEncRightsExpr' }, + 'embeddedencodedrightsexpr' => { 438 => [\'EmbdEncRightsExpr','EmbdEncRightsExprEncRightsExpr'] }, + 'embeddedencodedrightsexprlangid' => { 438 => [\'EmbdEncRightsExpr','EmbdEncRightsExprRightsExprLangId'] }, + 'embeddedencodedrightsexprtype' => { 438 => [\'EmbdEncRightsExpr','EmbdEncRightsExprRightsExprEncType'] }, + 'embeddedxmpdigest' => { 440 => 'EmbeddedXMPDigest' }, 'emissivity' => { 112 => 0x3 }, - 'encryptionkey' => { 351 => 0xa020 }, - 'endingpage' => { 441 => 'endingPage' }, + 'encryptionkey' => { 352 => 0xa020 }, + 'endingpage' => { 442 => 'endingPage' }, 'enduser' => { 274 => 'EndUser' }, 'enduserid' => { 274 => [\'EndUser','EndUserEndUserID'] }, 'endusername' => { 274 => [\'EndUser','EndUserEndUserName'] }, - 'engineer' => { 451 => 'engineer' }, + 'engineer' => { 452 => 'engineer' }, 'enhancedarktones' => { 233 => 0x8 }, 'enhancement' => { 103 => 0x16, 104 => 0x3016 }, 'enhancer' => { 268 => 0x300 }, @@ -1970,22 +1973,22 @@ 'envelopenumber' => { 119 => 0x28 }, 'envelopepriority' => { 119 => 0x3c }, 'enveloperecordversion' => { 119 => 0x0 }, - 'episode' => { 437 => 'Episode' }, - 'episodeidentifier' => { 437 => [\'Episode','EpisodeIdentifier'] }, - 'episodename' => { 437 => [\'Episode','EpisodeName'] }, - 'episodenumber' => { 437 => [\'Episode','EpisodeNumber'] }, + 'episode' => { 438 => 'Episode' }, + 'episodeidentifier' => { 438 => [\'Episode','EpisodeIdentifier'] }, + 'episodename' => { 438 => [\'Episode','EpisodeName'] }, + 'episodenumber' => { 438 => [\'Episode','EpisodeNumber'] }, 'epsonimageheight' => { 269 => 0x20c }, 'epsonimagewidth' => { 269 => 0x20b }, 'epsonsoftware' => { 269 => 0x20d }, - 'equipmentinstitution' => { 409 => 'EquipmentInstitution' }, - 'equipmentmanufacturer' => { 409 => 'EquipmentManufacturer' }, + 'equipmentinstitution' => { 410 => 'EquipmentInstitution' }, + 'equipmentmanufacturer' => { 410 => 'EquipmentManufacturer' }, 'equipmentversion' => { 265 => 0x0 }, 'ettlii' => { 75 => 0x304, 76 => 0xd, 77 => 0xe, 78 => 0x7, 79 => 0x7, 80 => 0xe }, - 'event' => { 410 => 'Event', 419 => 'Event', 437 => 'Event', 441 => 'event' }, - 'eventalias' => { 440 => 'eventAlias' }, + 'event' => { 411 => 'Event', 420 => 'Event', 438 => 'Event', 442 => 'event' }, + 'eventalias' => { 441 => 'eventAlias' }, 'eventday' => { 109 => [\'Event','EventDay'] }, 'eventearliestdate' => { 109 => [\'Event','EventEarliestDate'] }, - 'eventend' => { 440 => 'eventEnd' }, + 'eventend' => { 441 => 'eventEnd' }, 'eventenddayofyear' => { 109 => [\'Event','EventEndDayOfYear'] }, 'eventfieldnotes' => { 109 => [\'Event','EventFieldNotes'] }, 'eventfieldnumber' => { 109 => [\'Event','EventFieldNumber'] }, @@ -1993,45 +1996,45 @@ 'eventid' => { 109 => [\'Event','EventEventID'] }, 'eventlatestdate' => { 109 => [\'Event','EventLatestDate'] }, 'eventmonth' => { 109 => [\'Event','EventMonth'] }, - 'eventnumber' => { 340 => 0x9 }, + 'eventnumber' => { 340 => 0x9, 341 => 0x37 }, 'eventremarks' => { 109 => [\'Event','EventEventRemarks'] }, 'eventsamplingeffort' => { 109 => [\'Event','EventSamplingEffort'] }, 'eventsamplingprotocol' => { 109 => [\'Event','EventSamplingProtocol'] }, - 'eventstart' => { 440 => 'eventStart' }, + 'eventstart' => { 441 => 'eventStart' }, 'eventstartdayofyear' => { 109 => [\'Event','EventStartDayOfYear'] }, - 'eventsubtype' => { 440 => 'eventSubtype' }, + 'eventsubtype' => { 441 => 'eventSubtype' }, 'eventtime' => { 109 => [\'Event','EventEventTime'] }, - 'eventtype' => { 440 => 'eventType' }, + 'eventtype' => { 441 => 'eventType' }, 'eventverbatimeventdate' => { 109 => [\'Event','EventVerbatimEventDate'] }, 'eventyear' => { 109 => [\'Event','EventYear'] }, 'evsteps' => { 300 => '1.2', 302 => 0x0 }, 'evstepsize' => { 252 => '5.1', 253 => '6.1', 254 => '6.1', 258 => '0.7' }, - 'exclusivecoverage' => { 417 => 'ExclusiveCoverage' }, - 'exclusivityenddate' => { 444 => 'exclusivityEndDate' }, + 'exclusivecoverage' => { 418 => 'ExclusiveCoverage' }, + 'exclusivityenddate' => { 445 => 'exclusivityEndDate' }, 'excursiontolerance' => { 120 => 0x82 }, 'exif' => { 111 => 'EXIF' }, 'exifbyteorder' => { 111 => 'ExifByteOrder' }, 'exifcamerainfo' => { 118 => 0xe8 }, - 'exifimageheight' => { 110 => 0xa003, 431 => 'PixelYDimension' }, - 'exifimagewidth' => { 110 => 0xa002, 431 => 'PixelXDimension' }, + 'exifimageheight' => { 110 => 0xa003, 432 => 'PixelYDimension' }, + 'exifimagewidth' => { 110 => 0xa002, 432 => 'PixelXDimension' }, 'exifunicodebyteorder' => { 111 => 'ExifUnicodeByteOrder' }, - 'exifversion' => { 110 => 0x9000, 431 => 'ExifVersion' }, + 'exifversion' => { 110 => 0x9000, 432 => 'ExifVersion' }, 'exitpupilposition' => { 197 => 0x4, 198 => 0x4 }, - 'expirationdate' => { 118 => 0x25, 444 => 'expirationDate' }, + 'expirationdate' => { 118 => 0x25, 445 => 'expirationDate' }, 'expirationtime' => { 118 => 0x26 }, - 'exposure' => { 110 => 0xfe51, 427 => 'Exposure' }, - 'exposure2012' => { 427 => 'Exposure2012' }, + 'exposure' => { 110 => 0xfe51, 428 => 'Exposure' }, + 'exposure2012' => { 428 => 'Exposure2012' }, 'exposureadj' => { 238 => 0x0 }, 'exposureadj2' => { 238 => 0x12 }, - 'exposureadjust' => { 354 => 0xc }, + 'exposureadjust' => { 355 => 0xc }, 'exposurebracketingindicatorlast' => { 167 => 0x52 }, - 'exposurebracketshotnumber' => { 170 => 0x2d, 373 => 0x2f }, + 'exposurebracketshotnumber' => { 170 => 0x2d, 374 => 0x2f }, 'exposurebracketstepsize' => { 300 => 0x8 }, 'exposurebracketvalue' => { 201 => 0x19 }, - 'exposurecompensation' => { 69 => 0x6, 84 => 0x0, 110 => 0x9204, 126 => 0x24, 140 => 'ExposureComp', 160 => 'ExposureCompensation', 164 => 0xd, 165 => 0x53, 166 => 0x1e, 170 => 0x49c0, 269 => 0x1006, 319 => 0x16, 328 => 0x402, 351 => 0xa013, 354 => [0xc,0x35,0x4d], 382 => 0x114c, 383 => 0x114c, 384 => 0x1128, 386 => 0x1180, 387 => 0x1038, 388 => 0x230, 389 => 0x230, 390 => 0x223, 431 => 'ExposureBiasValue' }, - 'exposurecompensation2' => { 379 => [0x24,0x26,0x2a] }, + 'exposurecompensation' => { 69 => 0x6, 84 => 0x0, 110 => 0x9204, 126 => 0x24, 140 => 'ExposureComp', 160 => 'ExposureCompensation', 164 => 0xd, 165 => 0x53, 166 => 0x1e, 170 => 0x49c0, 269 => 0x1006, 319 => 0x16, 328 => 0x402, 352 => 0xa013, 355 => [0xc,0x35,0x4d], 383 => 0x114c, 384 => 0x114c, 385 => 0x1128, 387 => 0x1180, 388 => 0x1038, 389 => 0x230, 390 => 0x230, 391 => 0x223, 432 => 'ExposureBiasValue' }, + 'exposurecompensation2' => { 380 => [0x24,0x26,0x2a] }, 'exposurecompensationmode' => { 167 => 0x47, 170 => 0x2a }, - 'exposurecompensationset' => { 362 => 0x3, 363 => 0x3, 364 => 0x3, 379 => 0x1e }, + 'exposurecompensationset' => { 363 => 0x3, 364 => 0x3, 365 => 0x3, 380 => 0x1e }, 'exposurecompensationsetting' => { 167 => 0x1 }, 'exposurecompstepsize' => { 247 => '6.3', 248 => '7.3', 250 => '7.3', 251 => '7.3', 256 => '4.3', 260 => '7.3', 261 => '7.3' }, 'exposurecontrolstep' => { 255 => '6.1', 257 => '6.1' }, @@ -2039,17 +2042,17 @@ 'exposurecount' => { 115 => 0x1032 }, 'exposuredelaymode' => { 247 => '10.1', 248 => '11.1', 250 => '11.1', 251 => '11.1', 252 => '9.1', 253 => '10.1', 254 => '10.1', 256 => '10.4', 257 => '10.1', 258 => '6.4', 260 => '11.1', 261 => '11.1', 262 => '11.2' }, 'exposuredifference' => { 201 => 0xe }, - 'exposureindex' => { 110 => 0xa215, 431 => 'ExposureIndex' }, + 'exposureindex' => { 110 => 0xa215, 432 => 'ExposureIndex' }, 'exposureindicator' => { 167 => 0x50 }, - 'exposurelevelincrements' => { 73 => 0x6, 74 => 0x6, 75 => 0x101, 76 => 0x5, 77 => 0x6, 78 => 0x5, 79 => 0x5, 80 => 0x6, 81 => 0x4, 362 => 0x58, 363 => 0x58 }, - 'exposurelockused' => { 415 => 'ExposureLockUsed' }, - 'exposuremode' => { 110 => 0xa402, 140 => 'ExposureMode', 164 => 0x1, 165 => 0xa, 166 => 0x0, 167 => 0x0, 170 => 0x34, 264 => 0x200, 283 => 0x40d, 354 => 0x8, 374 => 0xb041, 431 => 'ExposureMode' }, + 'exposurelevelincrements' => { 73 => 0x6, 74 => 0x6, 75 => 0x101, 76 => 0x5, 77 => 0x6, 78 => 0x5, 79 => 0x5, 80 => 0x6, 81 => 0x4, 363 => 0x58, 364 => 0x58 }, + 'exposurelockused' => { 416 => 'ExposureLockUsed' }, + 'exposuremode' => { 110 => 0xa402, 140 => 'ExposureMode', 164 => 0x1, 165 => 0xa, 166 => 0x0, 167 => 0x0, 170 => 0x34, 264 => 0x200, 283 => 0x40d, 355 => 0x8, 375 => 0xb041, 432 => 'ExposureMode' }, 'exposuremodeinmanual' => { 75 => 0x10b }, - 'exposureprogram' => { 110 => 0x8822, 344 => 0x1001, 355 => [0x17e,0x43], 362 => 0x3c, 363 => 0x3c, 364 => 0x5, 368 => 0x14, 373 => 0x3f, 379 => 0x2, 382 => 0x1175, 383 => 0x1179, 384 => 0x1155, 385 => 0x11d1, 386 => 0x11ad, 387 => 0x1065, 388 => 0x25d, 389 => 0x25d, 390 => 0x24c, 399 => 0xb, 400 => 0xc, 401 => 0xb, 403 => 0x48, 431 => 'ExposureProgram' }, + 'exposureprogram' => { 110 => 0x8822, 345 => 0x1001, 356 => [0x17e,0x43], 363 => 0x3c, 364 => 0x3c, 365 => 0x5, 369 => 0x14, 374 => 0x3f, 380 => 0x2, 383 => 0x1175, 384 => 0x1179, 385 => 0x1155, 386 => 0x11d1, 387 => 0x11ad, 388 => 0x1065, 389 => 0x25d, 390 => 0x25d, 391 => 0x24c, 400 => 0xb, 401 => 0xc, 402 => 0xb, 404 => 0x48, 432 => 'ExposureProgram' }, 'exposureshift' => { 264 => 0x203 }, - 'exposurestandardadjustment' => { 374 => 0x202d }, - 'exposuretime' => { 6 => 0x4, 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 => 0x6, 30 => 0x7, 69 => 0x16, 110 => 0x829a, 123 => 0xfd05, 126 => 0x20, 128 => 0xfa24, 130 => 0xf104, 133 => 0x12, 135 => 0x38, 138 => 0x10, 140 => 'ExposureTime', 164 => 0x9, 165 => 0x35, 166 => 0x48, 167 => 0x8, 170 => 0x49b8, 319 => 0x12, 351 => 0xa018, 354 => [0x32,0x4a], 362 => 0x0, 363 => 0x0, 379 => [0x21,0x23,0x27], 403 => 0x10, 431 => 'ExposureTime' }, - 'exposuretime2' => { 354 => [0x33,0x4b] }, + 'exposurestandardadjustment' => { 375 => 0x202d }, + 'exposuretime' => { 6 => 0x4, 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 => 0x6, 30 => 0x7, 69 => 0x16, 110 => 0x829a, 123 => 0xfd05, 126 => 0x20, 128 => 0xfa24, 130 => 0xf104, 133 => 0x12, 135 => 0x38, 138 => 0x10, 140 => 'ExposureTime', 164 => 0x9, 165 => 0x35, 166 => 0x48, 167 => 0x8, 170 => 0x49b8, 319 => 0x12, 352 => 0xa018, 355 => [0x32,0x4a], 363 => 0x0, 364 => 0x0, 380 => [0x21,0x23,0x27], 404 => 0x10, 432 => 'ExposureTime' }, + 'exposuretime2' => { 355 => [0x33,0x4b] }, 'exposuretuning' => { 201 => 0x1c }, 'exposurevalue' => { 124 => 0x3 }, 'exposurewarning' => { 115 => 0x1302 }, @@ -2080,9 +2083,9 @@ 'externalflashstatus' => { 192 => '8.2' }, 'externalflashzoom' => { 267 => 0x1205, 269 => 0x1027 }, 'externalflashzoomoverride' => { 192 => '8.1' }, - 'externalmetadatalink' => { 437 => 'ExternalMetadataLink' }, + 'externalmetadatalink' => { 438 => 'ExternalMetadataLink' }, 'externalsensorbrightnessvalue' => { 281 => 0x311, 287 => 0x3408 }, - 'extrainfoversion' => { 366 => 0x1a }, + 'extrainfoversion' => { 367 => 0x1a }, 'eyestartaf' => { 167 => 0x40 }, 'face10position' => { 101 => 0x3f4, 102 => 0x1ec, 187 => 0x28, 304 => 0x12 }, 'face10size' => { 305 => 0x12 }, @@ -2104,7 +2107,7 @@ 'face18size' => { 305 => 0x22 }, 'face19position' => { 304 => 0x24 }, 'face19size' => { 305 => 0x24 }, - 'face1position' => { 48 => 0x8, 101 => 0xd, 102 => 0x18, 187 => 0x4, 279 => 0x1, 304 => 0x0, 341 => 0xbc, 369 => 0x1, 370 => 0x0, 371 => 0x0, 372 => 0x5b }, + 'face1position' => { 48 => 0x8, 101 => 0xd, 102 => 0x18, 187 => 0x4, 279 => 0x1, 304 => 0x0, 342 => 0xbc, 370 => 0x1, 371 => 0x0, 372 => 0x0, 373 => 0x5b }, 'face1size' => { 305 => 0x0 }, 'face20position' => { 304 => 0x26 }, 'face20size' => { 305 => 0x26 }, @@ -2126,7 +2129,7 @@ 'face28size' => { 305 => 0x36 }, 'face29position' => { 304 => 0x38 }, 'face29size' => { 305 => 0x38 }, - 'face2position' => { 48 => 0xa, 101 => 0x7c, 102 => 0x4c, 187 => 0x8, 279 => 0x5, 304 => 0x2, 341 => 0xc8, 369 => 0x6, 370 => 0x20, 371 => 0x25, 372 => 0x65 }, + 'face2position' => { 48 => 0xa, 101 => 0x7c, 102 => 0x4c, 187 => 0x8, 279 => 0x5, 304 => 0x2, 342 => 0xc8, 370 => 0x6, 371 => 0x20, 372 => 0x25, 373 => 0x65 }, 'face2size' => { 305 => 0x2 }, 'face30position' => { 304 => 0x3a }, 'face30size' => { 305 => 0x3a }, @@ -2134,39 +2137,39 @@ 'face31size' => { 305 => 0x3c }, 'face32position' => { 304 => 0x3e }, 'face32size' => { 305 => 0x3e }, - 'face3position' => { 48 => 0xc, 101 => 0xeb, 102 => 0x80, 187 => 0xc, 279 => 0x9, 304 => 0x4, 341 => 0xd4, 369 => 0xb, 370 => 0x40, 371 => 0x4a, 372 => 0x6f }, + 'face3position' => { 48 => 0xc, 101 => 0xeb, 102 => 0x80, 187 => 0xc, 279 => 0x9, 304 => 0x4, 342 => 0xd4, 370 => 0xb, 371 => 0x40, 372 => 0x4a, 373 => 0x6f }, 'face3size' => { 305 => 0x4 }, - 'face4position' => { 48 => 0xe, 101 => 0x15a, 102 => 0xb4, 187 => 0x10, 279 => 0xd, 304 => 0x6, 341 => 0xe0, 369 => 0x10, 370 => 0x60, 371 => 0x6f, 372 => 0x79 }, + 'face4position' => { 48 => 0xe, 101 => 0x15a, 102 => 0xb4, 187 => 0x10, 279 => 0xd, 304 => 0x6, 342 => 0xe0, 370 => 0x10, 371 => 0x60, 372 => 0x6f, 373 => 0x79 }, 'face4size' => { 305 => 0x6 }, - 'face5position' => { 48 => 0x10, 101 => 0x1c9, 102 => 0xe8, 187 => 0x14, 279 => 0x11, 304 => 0x8, 341 => 0xec, 369 => 0x15, 370 => 0x80, 371 => 0x94 }, + 'face5position' => { 48 => 0x10, 101 => 0x1c9, 102 => 0xe8, 187 => 0x14, 279 => 0x11, 304 => 0x8, 342 => 0xec, 370 => 0x15, 371 => 0x80, 372 => 0x94 }, 'face5size' => { 305 => 0x8 }, - 'face6position' => { 48 => 0x12, 101 => 0x238, 102 => 0x11c, 187 => 0x18, 304 => 0xa, 341 => 0xf8, 369 => 0x1a, 370 => 0xa0, 371 => 0xb9 }, + 'face6position' => { 48 => 0x12, 101 => 0x238, 102 => 0x11c, 187 => 0x18, 304 => 0xa, 342 => 0xf8, 370 => 0x1a, 371 => 0xa0, 372 => 0xb9 }, 'face6size' => { 305 => 0xa }, - 'face7position' => { 48 => 0x14, 101 => 0x2a7, 102 => 0x150, 187 => 0x1c, 304 => 0xc, 341 => 0x104, 369 => 0x1f, 370 => 0xc0, 371 => 0xde }, + 'face7position' => { 48 => 0x14, 101 => 0x2a7, 102 => 0x150, 187 => 0x1c, 304 => 0xc, 342 => 0x104, 370 => 0x1f, 371 => 0xc0, 372 => 0xde }, 'face7size' => { 305 => 0xc }, - 'face8position' => { 48 => 0x16, 101 => 0x316, 102 => 0x184, 187 => 0x20, 304 => 0xe, 341 => 0x110, 369 => 0x24, 370 => 0xe0, 371 => 0x103 }, + 'face8position' => { 48 => 0x16, 101 => 0x316, 102 => 0x184, 187 => 0x20, 304 => 0xe, 342 => 0x110, 370 => 0x24, 371 => 0xe0, 372 => 0x103 }, 'face8size' => { 305 => 0xe }, 'face9position' => { 48 => 0x18, 101 => 0x385, 102 => 0x1b8, 187 => 0x24, 304 => 0x10 }, 'face9size' => { 305 => 0x10 }, - 'facebalanceorigi' => { 420 => 'FaceBalanceOrigI' }, - 'facebalanceorigq' => { 420 => 'FaceBalanceOrigQ' }, - 'facebalancestrength' => { 420 => 'FaceBalanceStrength' }, - 'facebalancewarmth' => { 420 => 'FaceBalanceWarmth' }, - 'facedetect' => { 319 => 0x76, 351 => 0x100 }, + 'facebalanceorigi' => { 421 => 'FaceBalanceOrigI' }, + 'facebalanceorigq' => { 421 => 'FaceBalanceOrigQ' }, + 'facebalancestrength' => { 421 => 'FaceBalanceStrength' }, + 'facebalancewarmth' => { 421 => 'FaceBalanceWarmth' }, + 'facedetect' => { 319 => 0x76, 352 => 0x100 }, 'facedetectarea' => { 268 => 0x1201 }, 'facedetectframecrop' => { 268 => 0x1207 }, - 'facedetectframesize' => { 48 => 0x3, 101 => 0x1, 102 => 0x4, 187 => 0x1, 268 => 0x1203, 319 => 0x77, 341 => 0xb6 }, - 'facedetection' => { 364 => 0x30, 379 => 0x19 }, + 'facedetectframesize' => { 48 => 0x3, 101 => 0x1, 102 => 0x4, 187 => 0x1, 268 => 0x1203, 319 => 0x77, 342 => 0xb6 }, + 'facedetection' => { 365 => 0x30, 380 => 0x19 }, 'faceelementpositions' => { 115 => 0x4203 }, 'faceelementtypes' => { 115 => 0x4201 }, - 'faceid' => { 422 => 'FaceID' }, + 'faceid' => { 423 => 'FaceID' }, 'faceinfounknown' => { 104 => 0x2089 }, - 'facename' => { 351 => 0x123 }, + 'facename' => { 352 => 0x123 }, 'faceorientation' => { 102 => 0x8 }, - 'faceposition' => { 303 => 0x2, 352 => 0x4 }, + 'faceposition' => { 303 => 0x2, 353 => 0x4 }, 'facepositions' => { 115 => 0x4103 }, - 'facerecognition' => { 351 => 0x120 }, - 'facesdetected' => { 48 => 0x2, 49 => 0x2, 50 => 0x3, 101 => 0x0, 102 => 0x2, 104 => 0x211c, 115 => 0x4100, 187 => 0x3, 268 => 0x1200, 285 => 0x3f, 303 => 0x0, 341 => 0xb5, 352 => 0x0, 369 => 0x0, 372 => 0x3, 381 => 0x30 }, + 'facerecognition' => { 352 => 0x120 }, + 'facesdetected' => { 48 => 0x2, 49 => 0x2, 50 => 0x3, 101 => 0x0, 102 => 0x2, 104 => 0x211c, 115 => 0x4100, 187 => 0x3, 268 => 0x1200, 285 => 0x3f, 303 => 0x0, 342 => 0xb5, 353 => 0x0, 370 => 0x0, 373 => 0x3, 382 => 0x30 }, 'facesrecognized' => { 280 => 0x0 }, 'facewidth' => { 49 => 0x1 }, 'faithfuloutputhighlightpoint' => { 100 => 0x38 }, @@ -2183,15 +2186,15 @@ 'faithfulunsharpmaskfineness' => { 100 => 0xac }, 'faithfulunsharpmaskstrength' => { 100 => 0xaa }, 'faithfulunsharpmaskthreshold' => { 100 => 0xae }, - 'far' => { 412 => 'Far' }, - 'feedidentifier' => { 437 => 'FeedIdentifier' }, + 'far' => { 413 => 'Far' }, + 'feedidentifier' => { 438 => 'FeedIdentifier' }, 'femicroadjustment' => { 75 => 0x111 }, - 'ffid' => { 429 => 'ffid' }, - 'field' => { 440 => 'field' }, + 'ffid' => { 430 => 'ffid' }, + 'field' => { 441 => 'field' }, 'fieldcount' => { 269 => 0x103f }, 'filecreatedate' => { 111 => 'FileCreateDate' }, - 'filedatarate' => { 451 => 'fileDataRate' }, - 'fileformat' => { 86 => 0x0, 119 => 0x14, 354 => [0x22,0x26], 374 => 0xb000 }, + 'filedatarate' => { 452 => 'fileDataRate' }, + 'fileformat' => { 86 => 0x0, 119 => 0x14, 355 => [0x22,0x26], 375 => 0xb000 }, 'filegroupid' => { 111 => 'FileGroupID' }, 'fileindex' => { 6 => 0x143, 8 => 0x2d0, 10 => 0x172, 12 => 0x22c, 13 => 0x133, 14 => 0x13f, 15 => 0x1d3, 16 => 0x19b, 17 => 0x1e4, 18 => 0xd0, 19 => 0x1bb, 20 => 0x28c, 21 => 0x1db, 22 => 0x1d9, 23 => [0x270,0x274], 24 => 0x2aa, 25 => 0x2b3, 27 => 0x1eb, 28 => 0x4ae, 286 => 0x0 }, 'fileindex2' => { 20 => 0x290 }, @@ -2202,11 +2205,11 @@ 'filenumbermemory' => { 164 => 0x1a }, 'filenumbersequence' => { 247 => '12.2', 252 => '3.1', 253 => '4.1', 254 => '4.1', 256 => '11.1', 257 => '4.3', 262 => '5.2' }, 'filepermissions' => { 111 => 'FilePermissions' }, - 'filesource' => { 110 => 0xa300, 115 => 0x8000, 431 => 'FileSource' }, + 'filesource' => { 110 => 0xa300, 115 => 0x8000, 432 => 'FileSource' }, 'fileuserid' => { 111 => 'FileUserID' }, 'fileversion' => { 119 => 0x16 }, 'fillflashautoreduction' => { 73 => 0xe, 74 => 0xe, 81 => 0xa }, - 'filllight' => { 427 => 'FillLight' }, + 'filllight' => { 428 => 'FillLight' }, 'fillorder' => { 110 => 0x10a }, 'filmgraineffect' => { 264 => 0x538 }, 'filmmode' => { 115 => 0x1401, 283 => 0x412, 285 => 0x42 }, @@ -2228,21 +2231,21 @@ 'finetuneopthighlightweighted' => { 250 => '46.1', 251 => '46.1', 260 => '46.1', 261 => '46.1' }, 'finetuneoptmatrixmetering' => { 247 => '8.1', 248 => '8.2', 250 => '8.2', 251 => '8.2', 255 => '7.2', 256 => '6.1', 260 => '8.2', 261 => '8.2', 262 => '8.2' }, 'finetuneoptspotmetering' => { 247 => '8.2', 248 => '9.2', 250 => '9.2', 251 => '9.2', 255 => '8.2', 256 => '6.2', 260 => '9.2', 261 => '9.2', 262 => '9.2' }, - 'firmware' => { 269 => 0x405, 354 => [0x17,0x3b,0x57], 423 => 'Firmware' }, + 'firmware' => { 269 => 0x405, 355 => [0x17,0x3b,0x57], 424 => 'Firmware' }, 'firmwaredate' => { 103 => 0x15, 104 => 0x2001, 340 => 0x4 }, 'firmwareid' => { 171 => 0x0 }, - 'firmwarename' => { 351 => 0xa001 }, - 'firmwarerevision' => { 18 => 0xa4, 57 => 0x1e, 342 => 0x0 }, - 'firmwarerevision2' => { 342 => 0xc }, - 'firmwareversion' => { 6 => 0x10b, 10 => 0x136, 13 => 0xff, 14 => 0x107, 124 => 0xce5, 138 => 0x57, 140 => 'FirmwareVersion', 285 => 0x2, 287 => 0x3109, 319 => 0x230, 344 => 0x2 }, + 'firmwarename' => { 352 => 0xa001 }, + 'firmwarerevision' => { 18 => 0xa4, 57 => 0x1e, 343 => 0x0 }, + 'firmwarerevision2' => { 343 => 0xc }, + 'firmwareversion' => { 6 => 0x10b, 10 => 0x136, 13 => 0xff, 14 => 0x107, 124 => 0xce5, 138 => 0x57, 140 => 'FirmwareVersion', 285 => 0x2, 287 => 0x3109, 319 => 0x230, 341 => 0x18, 345 => 0x2 }, 'firmwareversions' => { 328 => 0x301 }, - 'firstphotodate' => { 415 => 'FirstPhotoDate' }, + 'firstphotodate' => { 416 => 'FirstPhotoDate' }, 'firstpublicationdate' => { 274 => 'FirstPublicationDate' }, - 'fixtureidentifier' => { 118 => 0x16, 421 => 'FixtureIdentifier' }, - 'flash' => { 105 => 'Flash', 110 => 0x9209, 165 => 0x1f, 166 => 0x15, 431 => 'Flash' }, - 'flashaction' => { 362 => 0x3e, 363 => 0x3e, 374 => 0x2017, 379 => [0x2a,0x2c,0x30] }, - 'flashaction2' => { 362 => 0x4c, 363 => 0x4c, 379 => 0x77 }, - 'flashactionexternal' => { 379 => [0x78,0x7c] }, + 'fixtureidentifier' => { 118 => 0x16, 422 => 'FixtureIdentifier' }, + 'flash' => { 105 => 'Flash', 110 => 0x9209, 165 => 0x1f, 166 => 0x15, 432 => 'Flash' }, + 'flashaction' => { 363 => 0x3e, 364 => 0x3e, 375 => 0x2017, 380 => [0x2a,0x2c,0x30] }, + 'flashaction2' => { 363 => 0x4c, 364 => 0x4c, 380 => 0x77 }, + 'flashactionexternal' => { 380 => [0x78,0x7c] }, 'flashactivity' => { 33 => 0x1c }, 'flashbatterylevel' => { 39 => 0x249 }, 'flashbias' => { 285 => 0x24 }, @@ -2251,32 +2254,32 @@ 'flashchargelevel' => { 269 => 0x1010 }, 'flashcolorfilter' => { 191 => 0x10 }, 'flashcommandermode' => { 189 => '9.1', 190 => '9.1', 191 => '9.1' }, - 'flashcompensation' => { 189 => 0xa, 190 => 0xa, 191 => 0xa, 192 => 0xa, 423 => 'FlashCompensation' }, - 'flashcontrol' => { 362 => 0x23, 363 => 0x1f, 364 => 0x21 }, + 'flashcompensation' => { 189 => 0xa, 190 => 0xa, 191 => 0xa, 192 => 0xa, 424 => 'FlashCompensation' }, + 'flashcontrol' => { 363 => 0x23, 364 => 0x1f, 365 => 0x21 }, 'flashcontrolbuilt-in' => { 256 => '16.1', 257 => '23.1', 259 => '23.1', 260 => '24.1' }, 'flashcontrolmode' => { 189 => '9.2', 190 => '9.2', 191 => '9.2', 264 => 0x404 }, 'flashcurtain' => { 285 => 0x48 }, 'flashdefault' => { 167 => 0x42 }, 'flashdevice' => { 269 => 0x1005 }, 'flashdistance' => { 104 => 0x2034 }, - 'flashenergy' => { 110 => 0xa20b, 431 => 'FlashEnergy' }, + 'flashenergy' => { 110 => 0xa20b, 432 => 'FlashEnergy' }, 'flashexposurebracketvalue' => { 201 => 0x18 }, - 'flashexposurecomp' => { 69 => 0xf, 115 => 0x1011, 143 => 'ExposureComp', 164 => 0x23, 169 => 0x104, 170 => 0x49c1, 201 => 0x12, 264 => 0x401, 269 => 0x1023, 319 => 0x4d, 344 => 0x100b, 354 => [0x3a,0x56], 374 => 0x104 }, + 'flashexposurecomp' => { 69 => 0xf, 115 => 0x1011, 143 => 'ExposureComp', 164 => 0x23, 169 => 0x104, 170 => 0x49c1, 201 => 0x12, 264 => 0x401, 269 => 0x1023, 319 => 0x4d, 345 => 0x100b, 355 => [0x3a,0x56], 375 => 0x104 }, 'flashexposurecomp2' => { 226 => 0x4d2 }, 'flashexposurecomp3' => { 191 => 0x1d }, 'flashexposurecomp4' => { 191 => 0x27 }, 'flashexposurecomparea' => { 248 => '38.4', 250 => '38.4', 251 => '38.4', 260 => '38.4', 261 => '38.4' }, - 'flashexposurecompset' => { 167 => 0x10, 292 => 0xe, 362 => 0x14, 363 => 0x12, 364 => 0x23, 379 => 0x1f }, - 'flashexposurecompset2' => { 379 => [0x26,0x2c] }, + 'flashexposurecompset' => { 167 => 0x10, 292 => 0xe, 363 => 0x14, 364 => 0x12, 365 => 0x23, 380 => 0x1f }, + 'flashexposurecompset2' => { 380 => [0x26,0x2c] }, 'flashexposureindicator' => { 167 => 0x54 }, 'flashexposureindicatorlast' => { 167 => 0x56 }, 'flashexposureindicatornext' => { 167 => 0x55 }, 'flashexposurelock' => { 51 => 0x19 }, - 'flashfired' => { 126 => 0x5d, 143 => 'Fired', 164 => 0x14, 225 => '590.3', 285 => 0x8007, 431 => [\'Flash','FlashFired'] }, + 'flashfired' => { 126 => 0x5d, 143 => 'Fired', 164 => 0x14, 225 => '590.3', 285 => 0x8007, 432 => [\'Flash','FlashFired'] }, 'flashfiring' => { 75 => 0x306, 76 => 0x6, 77 => 0x7, 80 => 0x7 }, 'flashfirmwareversion' => { 265 => 0x1002 }, 'flashfocallength' => { 189 => 0xb, 190 => 0xc, 191 => 0xc, 192 => 0xc }, - 'flashfunction' => { 170 => 0x31, 431 => [\'Flash','FlashFunction'] }, + 'flashfunction' => { 170 => 0x31, 432 => [\'Flash','FlashFunction'] }, 'flashgndistance' => { 189 => 0xe, 190 => 0xf, 191 => 0xf, 192 => 0xf }, 'flashgroupacompensation' => { 189 => 0x11, 190 => 0x12, 191 => 0x13 }, 'flashgroupacontrolmode' => { 189 => 0xf, 190 => '16.1', 191 => '17.1' }, @@ -2289,74 +2292,74 @@ 'flashgroupcoutput' => { 190 => 0x14, 191 => 0x15 }, 'flashguidenumber' => { 69 => 0xd, 85 => 0x0, 143 => 'GuideNumber' }, 'flashintensity' => { 103 => [0x19,0x5], 264 => 0x405 }, - 'flashlevel' => { 249 => 0x9, 374 => 0xb048 }, + 'flashlevel' => { 249 => 0x9, 375 => 0xb048 }, 'flashmake' => { 143 => 'Make' }, 'flashmanufacturer' => { 162 => 'FlashManufacturer' }, 'flashmetering' => { 164 => 0x3f, 167 => 0x1c }, 'flashmeteringmode' => { 6 => 0x15, 12 => 0x15, 13 => 0x15, 14 => 0x15, 15 => 0x15, 16 => 0x15, 17 => 0x15, 19 => 0x15, 21 => 0x15, 27 => 0x15 }, 'flashmeteringsegments' => { 319 => 0x20a }, - 'flashmode' => { 103 => 0x4, 126 => 0x5c, 143 => 'Mode', 164 => 0x2, 165 => 0x20, 166 => 0x16, 167 => 0xf, 201 => 0x87, 264 => 0x400, 269 => 0x1004, 319 => 0xc, 326 => 0x4, 343 => 0x20, 344 => 0x100a, 353 => 0x225, 362 => 0x13, 363 => 0x7f, 364 => 0x20, 379 => 0x10, 382 => 0x1138, 383 => 0x1138, 384 => 0x1114, 385 => 0x1190, 386 => 0x116c, 387 => 0x1024, 388 => 0x21c, 389 => 0x21c, 431 => [\'Flash','FlashMode'] }, + 'flashmode' => { 103 => 0x4, 126 => 0x5c, 143 => 'Mode', 164 => 0x2, 165 => 0x20, 166 => 0x16, 167 => 0xf, 201 => 0x87, 264 => 0x400, 269 => 0x1004, 319 => 0xc, 326 => 0x4, 344 => 0x20, 345 => 0x100a, 354 => 0x225, 363 => 0x13, 364 => 0x7f, 365 => 0x20, 380 => 0x10, 383 => 0x1138, 384 => 0x1138, 385 => 0x1114, 386 => 0x1190, 387 => 0x116c, 388 => 0x1024, 389 => 0x21c, 390 => 0x21c, 432 => [\'Flash','FlashMode'] }, 'flashmodel' => { 143 => 'Model', 162 => 'FlashModel', 265 => 0x1001 }, 'flashoptions' => { 300 => 0x2 }, 'flashoptions2' => { 300 => 0x10 }, 'flashoutput' => { 39 => 0x248, 69 => 0x21, 189 => 0xa, 190 => 0xa, 191 => 0xa }, - 'flashpixversion' => { 110 => 0xa000, 431 => 'FlashpixVersion' }, - 'flashredeyemode' => { 431 => [\'Flash','FlashRedEyeMode'] }, + 'flashpixversion' => { 110 => 0xa000, 432 => 'FlashpixVersion' }, + 'flashredeyemode' => { 432 => [\'Flash','FlashRedEyeMode'] }, 'flashremotecontrol' => { 264 => 0x403 }, - 'flashreturn' => { 431 => [\'Flash','FlashReturn'] }, + 'flashreturn' => { 432 => [\'Flash','FlashReturn'] }, 'flashserialnumber' => { 143 => 'SerialNumber', 265 => 0x1003 }, 'flashsetting' => { 201 => 0x8 }, 'flashshutterspeed' => { 247 => '20.2', 248 => '23.2', 250 => '23.2', 251 => '23.2', 256 => '15.2', 257 => '22.2', 258 => '7.2', 259 => '22.2', 260 => '23.2', 261 => '23.2', 262 => '23.1' }, 'flashsource' => { 189 => 0x4, 190 => 0x4, 191 => 0x4, 192 => 0x4 }, - 'flashstatus' => { 307 => 0x0, 379 => [0x82,0x86], 392 => 0x31, 393 => 0x39 }, - 'flashstatusbuilt-in' => { 364 => [0x87,0x287] }, - 'flashstatusexternal' => { 364 => [0x88,0x288] }, + 'flashstatus' => { 307 => 0x0, 380 => [0x82,0x86], 393 => 0x31, 394 => 0x39 }, + 'flashstatusbuilt-in' => { 365 => [0x87,0x287] }, + 'flashstatusexternal' => { 365 => [0x88,0x288] }, 'flashsyncspeed' => { 247 => '20.1', 248 => '23.1', 250 => '23.1', 251 => '23.1', 256 => '15.1', 257 => '22.1', 259 => '22.1', 260 => '23.1', 261 => '23.1' }, 'flashsyncspeedav' => { 73 => 0x3, 75 => 0x10f, 76 => 0x2, 77 => 0x3, 78 => 0x2, 79 => 0x2, 80 => 0x3, 81 => 0x6 }, 'flashthreshold' => { 85 => 0x1 }, 'flashtype' => { 143 => 'Type', 167 => 0x59, 201 => 0x9, 265 => 0x1000 }, 'flashwarning' => { 257 => '30.1', 258 => '7.1', 262 => '31.1', 285 => 0x62 }, - 'flexiblespotposition' => { 374 => 0x201d }, - 'flickerreduce' => { 353 => 0x218 }, + 'flexiblespotposition' => { 375 => 0x201d }, + 'flickerreduce' => { 354 => 0x218 }, 'flickerreduction' => { 219 => 0xe84 }, 'flickerreductionindicator' => { 219 => 0x5e2 }, 'flightpitchdegree' => { 107 => 'FlightPitchDegree' }, 'flightrolldegree' => { 107 => 'FlightRollDegree' }, 'flightyawdegree' => { 107 => 'FlightYawDegree' }, 'fliphorizontal' => { 240 => 0x76a43206 }, - 'fnumber' => { 6 => 0x3, 8 => 0x3, 10 => 0x3, 12 => 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 => 0x5, 30 => 0x6, 69 => 0x15, 110 => 0x829d, 123 => 0xfd04, 126 => 0x1e, 128 => 0xfa23, 130 => 0xf103, 133 => 0x13, 135 => 0x3c, 138 => 0xc, 147 => 'FNumber', 164 => 0xa, 165 => 0x36, 166 => 0x47, 167 => 0x9, 170 => 0x49c7, 319 => 0x13, 351 => 0xa019, 354 => [0x31,0x49], 362 => 0x1, 363 => 0x1, 379 => [0x20,0x22,0x26], 431 => 'FNumber' }, - 'focaldistance' => { 413 => 'FocalDistance' }, - 'focallength' => { 6 => 0x1d, 7 => 0xa, 8 => 0x23, 9 => 0x9, 10 => 0x1d, 11 => 0x9, 12 => 0x1e, 13 => 0x1d, 14 => 0x1d, 15 => 0x1e, 16 => 0x1e, 17 => 0x1e, 18 => 0x28, 19 => 0x1e, 20 => 0x23, 21 => 0x1e, 22 => 0x1e, 23 => 0x23, 24 => 0x23, 25 => 0x23, 26 => 0x23, 27 => 0x1e, 28 => 0x23, 53 => 0x1, 104 => 0x1d, 110 => 0x920a, 133 => 0x1d, 147 => 'FocalLength', 164 => 0x12, 197 => 0xa, 198 => 0xb, 319 => 0x1d, 328 => 0x403, 344 => 0x1500, 361 => 0xe, 386 => 0x1278, 387 => 0x1134, 388 => 0x32c, 389 => 0x32c, 390 => 0x30a, 431 => 'FocalLength' }, - 'focallength2' => { 379 => [0x23,0x25,0x29] }, - 'focallengthin35mmformat' => { 110 => 0xa405, 351 => 0xa01a, 431 => 'FocalLengthIn35mmFilm' }, - 'focallengthtelezoom' => { 361 => 0x10 }, - 'focalplaneafpointarea' => { 391 => 0x2 }, - 'focalplaneafpointlocation1' => { 391 => 0x6 }, - 'focalplaneafpointlocation10' => { 391 => 0x2a }, - 'focalplaneafpointlocation11' => { 391 => 0x2e }, - 'focalplaneafpointlocation12' => { 391 => 0x32 }, - 'focalplaneafpointlocation13' => { 391 => 0x36 }, - 'focalplaneafpointlocation14' => { 391 => 0x3a }, - 'focalplaneafpointlocation15' => { 391 => 0x3e }, - 'focalplaneafpointlocation2' => { 391 => 0xa }, - 'focalplaneafpointlocation3' => { 391 => 0xe }, - 'focalplaneafpointlocation4' => { 391 => 0x12 }, - 'focalplaneafpointlocation5' => { 391 => 0x16 }, - 'focalplaneafpointlocation6' => { 391 => 0x1a }, - 'focalplaneafpointlocation7' => { 391 => 0x1e }, - 'focalplaneafpointlocation8' => { 391 => 0x22 }, - 'focalplaneafpointlocation9' => { 391 => 0x26 }, - 'focalplaneafpointsused' => { 391 => 0x1 }, + 'fnumber' => { 6 => 0x3, 8 => 0x3, 10 => 0x3, 12 => 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 => 0x5, 30 => 0x6, 69 => 0x15, 110 => 0x829d, 123 => 0xfd04, 126 => 0x1e, 128 => 0xfa23, 130 => 0xf103, 133 => 0x13, 135 => 0x3c, 138 => 0xc, 147 => 'FNumber', 164 => 0xa, 165 => 0x36, 166 => 0x47, 167 => 0x9, 170 => 0x49c7, 319 => 0x13, 352 => 0xa019, 355 => [0x31,0x49], 363 => 0x1, 364 => 0x1, 380 => [0x20,0x22,0x26], 432 => 'FNumber' }, + 'focaldistance' => { 414 => 'FocalDistance' }, + 'focallength' => { 6 => 0x1d, 7 => 0xa, 8 => 0x23, 9 => 0x9, 10 => 0x1d, 11 => 0x9, 12 => 0x1e, 13 => 0x1d, 14 => 0x1d, 15 => 0x1e, 16 => 0x1e, 17 => 0x1e, 18 => 0x28, 19 => 0x1e, 20 => 0x23, 21 => 0x1e, 22 => 0x1e, 23 => 0x23, 24 => 0x23, 25 => 0x23, 26 => 0x23, 27 => 0x1e, 28 => 0x23, 53 => 0x1, 104 => 0x1d, 110 => 0x920a, 133 => 0x1d, 147 => 'FocalLength', 164 => 0x12, 197 => 0xa, 198 => 0xb, 319 => 0x1d, 328 => 0x403, 345 => 0x1500, 362 => 0xe, 387 => 0x1278, 388 => 0x1134, 389 => 0x32c, 390 => 0x32c, 391 => 0x30a, 432 => 'FocalLength' }, + 'focallength2' => { 380 => [0x23,0x25,0x29] }, + 'focallengthin35mmformat' => { 110 => 0xa405, 352 => 0xa01a, 432 => 'FocalLengthIn35mmFilm' }, + 'focallengthtelezoom' => { 362 => 0x10 }, + 'focalplaneafpointarea' => { 392 => 0x2 }, + 'focalplaneafpointlocation1' => { 392 => 0x6 }, + 'focalplaneafpointlocation10' => { 392 => 0x2a }, + 'focalplaneafpointlocation11' => { 392 => 0x2e }, + 'focalplaneafpointlocation12' => { 392 => 0x32 }, + 'focalplaneafpointlocation13' => { 392 => 0x36 }, + 'focalplaneafpointlocation14' => { 392 => 0x3a }, + 'focalplaneafpointlocation15' => { 392 => 0x3e }, + 'focalplaneafpointlocation2' => { 392 => 0xa }, + 'focalplaneafpointlocation3' => { 392 => 0xe }, + 'focalplaneafpointlocation4' => { 392 => 0x12 }, + 'focalplaneafpointlocation5' => { 392 => 0x16 }, + 'focalplaneafpointlocation6' => { 392 => 0x1a }, + 'focalplaneafpointlocation7' => { 392 => 0x1e }, + 'focalplaneafpointlocation8' => { 392 => 0x22 }, + 'focalplaneafpointlocation9' => { 392 => 0x26 }, + 'focalplaneafpointsused' => { 392 => 0x1 }, 'focalplanediagonal' => { 265 => 0x103, 269 => 0x205 }, - 'focalplaneresolutionunit' => { 110 => 0xa210, 431 => 'FocalPlaneResolutionUnit' }, - 'focalplanexresolution' => { 110 => 0xa20e, 431 => 'FocalPlaneXResolution' }, + 'focalplaneresolutionunit' => { 110 => 0xa210, 432 => 'FocalPlaneResolutionUnit' }, + 'focalplanexresolution' => { 110 => 0xa20e, 432 => 'FocalPlaneXResolution' }, 'focalplanexsize' => { 53 => 0x2 }, 'focalplanexunknown' => { 53 => 0x2 }, - 'focalplaneyresolution' => { 110 => 0xa20f, 431 => 'FocalPlaneYResolution' }, + 'focalplaneyresolution' => { 110 => 0xa20f, 432 => 'FocalPlaneYResolution' }, 'focalplaneysize' => { 53 => 0x3 }, 'focalplaneyunknown' => { 53 => 0x3 }, - 'focalpointx' => { 413 => 'FocalPointX' }, - 'focalpointy' => { 413 => 'FocalPointY' }, + 'focalpointx' => { 414 => 'FocalPointX' }, + 'focalpointy' => { 414 => 'FocalPointY' }, 'focaltype' => { 9 => 0x2d, 53 => 0x0 }, 'focalunits' => { 33 => 0x19 }, 'focus' => { 230 => 0x8 }, @@ -2370,40 +2373,40 @@ 'focusholdbutton' => { 167 => 0x44 }, 'focusinfoversion' => { 267 => 0x0 }, 'focusingscreen' => { 74 => 0x0, 75 => 0x80b, 80 => 0x0 }, - 'focuslocation' => { 374 => 0x2027 }, + 'focuslocation' => { 375 => 0x2027 }, 'focuslocked' => { 163 => 0x14 }, - 'focusmode' => { 33 => 0x7, 103 => 0x3, 104 => [0x3003,0xd], 115 => 0x1021, 126 => 0x38, 140 => 'FocusMode', 164 => 0x30, 166 => 0xe, 167 => 0xc, 201 => 0x7, 264 => 0x301, 269 => 0x100b, 285 => 0x7, 319 => 0xd, 326 => 0x3, 344 => 0x1006, 355 => [0xb,0x5], 361 => [0x15,0x1d], 362 => 0x4d, 363 => 0x4d, 374 => [0xb042,0xb04e,0x201b], 379 => 0x13, 397 => 0x16 }, - 'focusmode2' => { 300 => '3.1', 379 => [0x2c,0x2e,0x32] }, - 'focusmodesetting' => { 249 => '10.1', 359 => 0x14, 360 => 0x15, 362 => 0x10, 363 => 0xf, 364 => 0x6 }, - 'focusmodeswitch' => { 167 => 0x58, 362 => 0x2e }, + 'focusmode' => { 33 => 0x7, 103 => 0x3, 104 => [0x3003,0xd], 115 => 0x1021, 126 => 0x38, 140 => 'FocusMode', 164 => 0x30, 166 => 0xe, 167 => 0xc, 201 => 0x7, 264 => 0x301, 269 => 0x100b, 285 => 0x7, 319 => 0xd, 326 => 0x3, 345 => 0x1006, 356 => [0xb,0x5], 362 => [0x15,0x1d], 363 => 0x4d, 364 => 0x4d, 375 => [0xb042,0xb04e,0x201b], 380 => 0x13, 398 => 0x16 }, + 'focusmode2' => { 300 => '3.1', 380 => [0x2c,0x2e,0x32] }, + 'focusmodesetting' => { 249 => '10.1', 360 => 0x14, 361 => 0x15, 363 => 0x10, 364 => 0xf, 365 => 0x6 }, + 'focusmodeswitch' => { 167 => 0x58, 363 => 0x2e }, 'focuspixel' => { 115 => 0x1023 }, 'focuspointwrap' => { 247 => '2.2', 248 => '2.2', 250 => '2.1', 251 => '2.1', 255 => '1.1', 256 => '2.2', 257 => '1.1', 260 => '2.2', 261 => '2.1', 262 => '2.5' }, - 'focusposition' => { 197 => 0x8, 198 => 0x8, 319 => 0x10, 373 => 0x9bb }, - 'focusposition2' => { 379 => [0x29,0x2b,0x2f], 397 => 0x2d, 400 => 0x20 }, + 'focusposition' => { 197 => 0x8, 198 => 0x8, 319 => 0x10, 374 => 0x9bb }, + 'focusposition2' => { 380 => [0x29,0x2b,0x2f], 398 => 0x2d, 401 => 0x20 }, 'focusprocess' => { 264 => 0x302 }, 'focusrange' => { 33 => 0x12, 269 => 0x100a }, 'focusrangeindex' => { 310 => '3.1' }, - 'focussetting' => { 354 => 0x6 }, - 'focusstatus' => { 361 => 0x19, 362 => 0x53, 363 => 0x53 }, + 'focussetting' => { 355 => 0x6 }, + 'focusstatus' => { 362 => 0x19, 363 => 0x53, 364 => 0x53 }, 'focusstepcount' => { 267 => 0x301, 269 => 0x100e }, 'focusstepinfinity' => { 267 => 0x303, 269 => 0x103b }, 'focusstepnear' => { 267 => 0x304, 269 => 0x103c }, 'focustrackinglockon' => { 247 => ['1.5','4.1'], 248 => '1.4', 255 => '0.4', 256 => '3.1', 257 => '0.4', 260 => '1.4' }, 'focuswarning' => { 115 => 0x1301 }, 'foldername' => { 164 => 0x27 }, - 'foldernumber' => { 362 => 0x9a, 364 => [0x402,0x114,0x316] }, - 'fontcomposite' => { 456 => [\'Fonts','FontsComposite'] }, - 'fontface' => { 456 => [\'Fonts','FontsFontFace'] }, - 'fontfamily' => { 456 => [\'Fonts','FontsFontFamily'] }, - 'fontfilename' => { 456 => [\'Fonts','FontsFontFileName'] }, - 'fontname' => { 456 => [\'Fonts','FontsFontName'] }, - 'fonts' => { 456 => 'Fonts' }, - 'fonttype' => { 456 => [\'Fonts','FontsFontType'] }, - 'fontversion' => { 456 => [\'Fonts','FontsVersionString'] }, + 'foldernumber' => { 363 => 0x9a, 365 => [0x402,0x114,0x316] }, + 'fontcomposite' => { 457 => [\'Fonts','FontsComposite'] }, + 'fontface' => { 457 => [\'Fonts','FontsFontFace'] }, + 'fontfamily' => { 457 => [\'Fonts','FontsFontFamily'] }, + 'fontfilename' => { 457 => [\'Fonts','FontsFontFileName'] }, + 'fontname' => { 457 => [\'Fonts','FontsFontName'] }, + 'fonts' => { 457 => 'Fonts' }, + 'fonttype' => { 457 => [\'Fonts','FontsFontType'] }, + 'fontversion' => { 457 => [\'Fonts','FontsVersionString'] }, 'for' => { 335 => 'For' }, 'forcewrite' => { 111 => 'ForceWrite' }, - 'format' => { 412 => 'Format', 428 => 'format', 449 => 'Format' }, - 'forwardlock' => { 446 => 'forwardlock' }, + 'format' => { 413 => 'Format', 429 => 'format', 450 => 'Format' }, + 'forwardlock' => { 447 => 'forwardlock' }, 'forwardmatrix1' => { 110 => 0xc714 }, 'forwardmatrix2' => { 110 => 0xc715 }, 'framecount' => { 60 => [0x2,0x4] }, @@ -2412,14 +2415,14 @@ 'framenumber' => { 115 => 0x8003, 170 => 0x3c, 319 => 0x29 }, 'framerate' => { 60 => [0x1,0x6], 110 => 0xc764, 115 => 0x3820 }, 'framewidth' => { 115 => 0x3821 }, - 'framing' => { 440 => 'framing' }, + 'framing' => { 441 => 'framing' }, 'freebytes' => { 88 => 0x1 }, 'freememorycardimages' => { 165 => [0x37,0x54], 166 => [0x2d,0x4a], 167 => 0x32 }, 'fujiflashmode' => { 115 => 0x1010 }, - 'fullimagesize' => { 374 => 0xb02b }, - 'fullpanoheightpixels' => { 415 => 'FullPanoHeightPixels', 416 => 'FullPanoHeightPixels' }, - 'fullpanowidthpixels' => { 415 => 'FullPanoWidthPixels', 416 => 'FullPanoWidthPixels' }, - 'fullpresssnap' => { 344 => 0x100d }, + 'fullimagesize' => { 375 => 0xb02b }, + 'fullpanoheightpixels' => { 416 => 'FullPanoHeightPixels', 417 => 'FullPanoHeightPixels' }, + 'fullpanowidthpixels' => { 416 => 'FullPanoWidthPixels', 417 => 'FullPanoWidthPixels' }, + 'fullpresssnap' => { 345 => 0x100d }, 'fullsizeimage' => { 146 => 'data' }, 'fullsizeimagename' => { 146 => '1Name' }, 'fullsizeimagetype' => { 146 => '0Type' }, @@ -2432,8 +2435,8 @@ 'funcbuttonplusdials' => { 247 => ['14.2','15.2'], 248 => '14.2', 256 => '31.1', 260 => '42.1' }, 'functionbutton' => { 254 => '13.1', 258 => '5.2' }, 'gainbase' => { 268 => 0x610 }, - 'gaincontrol' => { 110 => 0xa407, 431 => 'GainControl' }, - 'gamma' => { 110 => 0xa500, 432 => 'Gamma' }, + 'gaincontrol' => { 110 => 0xa407, 432 => 'GainControl' }, + 'gamma' => { 110 => 0xa500, 433 => 'Gamma' }, 'gammablackpoint' => { 96 => 0xc }, 'gammacolortone' => { 96 => 0x3 }, 'gammacompensatedvalue' => { 120 => 0x91 }, @@ -2452,12 +2455,12 @@ 'geimagesize' => { 115 => 0x1304 }, 'gemake' => { 116 => 0x300 }, 'gemodel' => { 116 => 0x207 }, - 'genre' => { 437 => 'Genre', 441 => 'genre', 451 => 'genre' }, - 'genrecvid' => { 437 => [\'Genre','GenreCvId'] }, - 'genrecvtermid' => { 437 => [\'Genre','GenreCvTermId'] }, - 'genrecvtermname' => { 437 => [\'Genre','GenreCvTermName'] }, - 'genrecvtermrefinedabout' => { 437 => [\'Genre','GenreCvTermRefinedAbout'] }, - 'geography' => { 442 => 'geography' }, + 'genre' => { 438 => 'Genre', 442 => 'genre', 452 => 'genre' }, + 'genrecvid' => { 438 => [\'Genre','GenreCvId'] }, + 'genrecvtermid' => { 438 => [\'Genre','GenreCvTermId'] }, + 'genrecvtermname' => { 438 => [\'Genre','GenreCvTermName'] }, + 'genrecvtermrefinedabout' => { 438 => [\'Genre','GenreCvTermRefinedAbout'] }, + 'geography' => { 443 => 'geography' }, 'geologicalcontext' => { 109 => 'GeologicalContext' }, 'geologicalcontextbed' => { 109 => [\'GeologicalContext','GeologicalContextBed'] }, 'geologicalcontextformation' => { 109 => [\'GeologicalContext','GeologicalContextFormation'] }, @@ -2470,115 +2473,115 @@ 'geotiffdirectory' => { 110 => 0x87af }, 'geotiffdoubleparams' => { 110 => 0x87b0 }, 'geotime' => { 111 => 'Geotime' }, - 'giftftppriority' => { 417 => 'GIFTFtpPriority' }, + 'giftftppriority' => { 418 => 'GIFTFtpPriority' }, 'gimbalpitchdegree' => { 107 => 'GimbalPitchDegree' }, 'gimbalrolldegree' => { 107 => 'GimbalRollDegree' }, 'gimbalyawdegree' => { 107 => 'GimbalYawDegree' }, 'globalaltitude' => { 333 => 0x419 }, 'globalangle' => { 333 => 0x40d }, - 'good' => { 451 => 'good' }, + 'good' => { 452 => 'good' }, 'googleplusuploadcode' => { 110 => 0x9009 }, - 'gpsaltitude' => { 117 => 0x6, 144 => 'Altitude', 431 => 'GPSAltitude' }, - 'gpsaltituderef' => { 117 => 0x5, 431 => 'GPSAltitudeRef' }, - 'gpsareainformation' => { 117 => 0x1c, 431 => 'GPSAreaInformation' }, + 'gpsaltitude' => { 117 => 0x6, 144 => 'Altitude', 432 => 'GPSAltitude' }, + 'gpsaltituderef' => { 117 => 0x5, 432 => 'GPSAltitudeRef' }, + 'gpsareainformation' => { 117 => 0x1c, 432 => 'GPSAreaInformation' }, 'gpsdatestamp' => { 117 => 0x1d }, - 'gpsdatetime' => { 144 => 'DateTime', 431 => 'GPSTimeStamp' }, - 'gpsdestbearing' => { 117 => 0x18, 144 => 'Bearing', 431 => 'GPSDestBearing' }, - 'gpsdestbearingref' => { 117 => 0x17, 431 => 'GPSDestBearingRef' }, - 'gpsdestdistance' => { 117 => 0x1a, 144 => 'Distance', 431 => 'GPSDestDistance' }, - 'gpsdestdistanceref' => { 117 => 0x19, 431 => 'GPSDestDistanceRef' }, - 'gpsdestlatitude' => { 117 => 0x14, 431 => 'GPSDestLatitude' }, + 'gpsdatetime' => { 144 => 'DateTime', 432 => 'GPSTimeStamp' }, + 'gpsdestbearing' => { 117 => 0x18, 144 => 'Bearing', 432 => 'GPSDestBearing' }, + 'gpsdestbearingref' => { 117 => 0x17, 432 => 'GPSDestBearingRef' }, + 'gpsdestdistance' => { 117 => 0x1a, 144 => 'Distance', 432 => 'GPSDestDistance' }, + 'gpsdestdistanceref' => { 117 => 0x19, 432 => 'GPSDestDistanceRef' }, + 'gpsdestlatitude' => { 117 => 0x14, 432 => 'GPSDestLatitude' }, 'gpsdestlatituderef' => { 117 => 0x13 }, - 'gpsdestlongitude' => { 117 => 0x16, 431 => 'GPSDestLongitude' }, + 'gpsdestlongitude' => { 117 => 0x16, 432 => 'GPSDestLongitude' }, 'gpsdestlongituderef' => { 117 => 0x15 }, - 'gpsdifferential' => { 117 => 0x1e, 144 => 'Differential', 431 => 'GPSDifferential' }, - 'gpsdop' => { 117 => 0xb, 431 => 'GPSDOP' }, - 'gpshpositioningerror' => { 117 => 0x1f, 431 => 'GPSHPositioningError' }, - 'gpsimgdirection' => { 117 => 0x11, 431 => 'GPSImgDirection' }, - 'gpsimgdirectionref' => { 117 => 0x10, 431 => 'GPSImgDirectionRef' }, - 'gpslatitude' => { 117 => 0x2, 144 => 'Latitude', 431 => 'GPSLatitude' }, + 'gpsdifferential' => { 117 => 0x1e, 144 => 'Differential', 432 => 'GPSDifferential' }, + 'gpsdop' => { 117 => 0xb, 432 => 'GPSDOP' }, + 'gpshpositioningerror' => { 117 => 0x1f, 432 => 'GPSHPositioningError' }, + 'gpsimgdirection' => { 117 => 0x11, 432 => 'GPSImgDirection' }, + 'gpsimgdirectionref' => { 117 => 0x10, 432 => 'GPSImgDirectionRef' }, + 'gpslatitude' => { 117 => 0x2, 144 => 'Latitude', 432 => 'GPSLatitude' }, 'gpslatituderef' => { 117 => 0x1 }, - 'gpslongitude' => { 117 => 0x4, 144 => 'Longitude', 431 => 'GPSLongitude' }, + 'gpslongitude' => { 117 => 0x4, 144 => 'Longitude', 432 => 'GPSLongitude' }, 'gpslongituderef' => { 117 => 0x3 }, - 'gpsmapdatum' => { 117 => 0x12, 144 => 'Datum', 431 => 'GPSMapDatum' }, - 'gpsmeasuremode' => { 117 => 0xa, 144 => 'MeasureMode', 431 => 'GPSMeasureMode' }, - 'gpsprocessingmethod' => { 117 => 0x1b, 431 => 'GPSProcessingMethod' }, - 'gpssatellites' => { 117 => 0x8, 144 => 'Satellites', 431 => 'GPSSatellites' }, - 'gpsspeed' => { 117 => 0xd, 144 => 'Speed', 431 => 'GPSSpeed' }, - 'gpsspeedref' => { 117 => 0xc, 431 => 'GPSSpeedRef' }, - 'gpsstatus' => { 117 => 0x9, 431 => 'GPSStatus' }, + 'gpsmapdatum' => { 117 => 0x12, 144 => 'Datum', 432 => 'GPSMapDatum' }, + 'gpsmeasuremode' => { 117 => 0xa, 144 => 'MeasureMode', 432 => 'GPSMeasureMode' }, + 'gpsprocessingmethod' => { 117 => 0x1b, 432 => 'GPSProcessingMethod' }, + 'gpssatellites' => { 117 => 0x8, 144 => 'Satellites', 432 => 'GPSSatellites' }, + 'gpsspeed' => { 117 => 0xd, 144 => 'Speed', 432 => 'GPSSpeed' }, + 'gpsspeedref' => { 117 => 0xc, 432 => 'GPSSpeedRef' }, + 'gpsstatus' => { 117 => 0x9, 432 => 'GPSStatus' }, 'gpstimestamp' => { 117 => 0x7 }, - 'gpstrack' => { 117 => 0xf, 144 => 'Heading', 431 => 'GPSTrack' }, - 'gpstrackref' => { 117 => 0xe, 431 => 'GPSTrackRef' }, - 'gpsversionid' => { 117 => 0x0, 431 => 'GPSVersionID' }, + 'gpstrack' => { 117 => 0xf, 144 => 'Heading', 432 => 'GPSTrack' }, + 'gpstrackref' => { 117 => 0xe, 432 => 'GPSTrackRef' }, + 'gpsversionid' => { 117 => 0x0, 432 => 'GPSVersionID' }, 'gradation' => { 264 => 0x50f }, - 'gradientbasedcorractive' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionActive'] }, - 'gradientbasedcorramount' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionAmount'] }, - 'gradientbasedcorrbrightness' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalBrightness'] }, - 'gradientbasedcorrclarity' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity'] }, - 'gradientbasedcorrclarity2012' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity2012'] }, - 'gradientbasedcorrcontrast' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast'] }, - 'gradientbasedcorrcontrast2012' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast2012'] }, - 'gradientbasedcorrdefringe' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalDefringe'] }, - 'gradientbasedcorrections' => { 427 => 'GradientBasedCorrections' }, - 'gradientbasedcorrexposure' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure'] }, - 'gradientbasedcorrexposure2012' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure2012'] }, - 'gradientbasedcorrhighlights2012' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalHighlights2012'] }, - 'gradientbasedcorrhue' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalToningHue'] }, - 'gradientbasedcorrluminancenoise' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalLuminanceNoise'] }, - 'gradientbasedcorrmaskalpha' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAlpha'] }, - 'gradientbasedcorrmaskangle' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAngle'] }, - 'gradientbasedcorrmaskbottom' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksBottom'] }, - 'gradientbasedcorrmaskcentervalue' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterValue'] }, - 'gradientbasedcorrmaskcenterweight' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterWeight'] }, - 'gradientbasedcorrmaskdabs' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksDabs'] }, - 'gradientbasedcorrmaskfeather' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFeather'] }, - 'gradientbasedcorrmaskflipped' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlipped'] }, - 'gradientbasedcorrmaskflow' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlow'] }, - 'gradientbasedcorrmaskfullx' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullX'] }, - 'gradientbasedcorrmaskfully' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullY'] }, - 'gradientbasedcorrmaskleft' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksLeft'] }, - 'gradientbasedcorrmaskmidpoint' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMidpoint'] }, - 'gradientbasedcorrmaskperimetervalue' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksPerimeterValue'] }, - 'gradientbasedcorrmaskradius' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRadius'] }, - 'gradientbasedcorrmaskright' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRight'] }, - 'gradientbasedcorrmaskroundness' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRoundness'] }, - 'gradientbasedcorrmasks' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasks'] }, - 'gradientbasedcorrmasksizex' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeX'] }, - 'gradientbasedcorrmasksizey' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeY'] }, - 'gradientbasedcorrmasktop' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksTop'] }, - 'gradientbasedcorrmaskvalue' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskValue'] }, - 'gradientbasedcorrmaskversion' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksVersion'] }, - 'gradientbasedcorrmaskwhat' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksWhat'] }, - 'gradientbasedcorrmaskx' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksX'] }, - 'gradientbasedcorrmasky' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksY'] }, - 'gradientbasedcorrmaskzerox' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroX'] }, - 'gradientbasedcorrmaskzeroy' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroY'] }, - 'gradientbasedcorrmoire' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalMoire'] }, - 'gradientbasedcorrsaturation' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSaturation','GradientBasedCorrectionsLocalToningSaturation'] }, - 'gradientbasedcorrshadows2012' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalShadows2012'] }, - 'gradientbasedcorrsharpness' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSharpness'] }, - 'gradientbasedcorrtemperature' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTemperature'] }, - 'gradientbasedcorrtint' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTint'] }, - 'gradientbasedcorrwhat' => { 427 => [\'GradientBasedCorrections','GradientBasedCorrectionsWhat'] }, - 'grainamount' => { 427 => 'GrainAmount' }, - 'grainfrequency' => { 427 => 'GrainFrequency' }, - 'grainsize' => { 427 => 'GrainSize' }, - 'graymixeraqua' => { 427 => 'GrayMixerAqua' }, - 'graymixerblue' => { 427 => 'GrayMixerBlue' }, - 'graymixergreen' => { 427 => 'GrayMixerGreen' }, - 'graymixermagenta' => { 427 => 'GrayMixerMagenta' }, - 'graymixerorange' => { 427 => 'GrayMixerOrange' }, - 'graymixerpurple' => { 427 => 'GrayMixerPurple' }, - 'graymixerred' => { 427 => 'GrayMixerRed' }, - 'graymixeryellow' => { 427 => 'GrayMixerYellow' }, - 'graypoint' => { 407 => 0x8021 }, + 'gradientbasedcorractive' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionActive'] }, + 'gradientbasedcorramount' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionAmount'] }, + 'gradientbasedcorrbrightness' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalBrightness'] }, + 'gradientbasedcorrclarity' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity'] }, + 'gradientbasedcorrclarity2012' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity2012'] }, + 'gradientbasedcorrcontrast' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast'] }, + 'gradientbasedcorrcontrast2012' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast2012'] }, + 'gradientbasedcorrdefringe' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalDefringe'] }, + 'gradientbasedcorrections' => { 428 => 'GradientBasedCorrections' }, + 'gradientbasedcorrexposure' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure'] }, + 'gradientbasedcorrexposure2012' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure2012'] }, + 'gradientbasedcorrhighlights2012' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalHighlights2012'] }, + 'gradientbasedcorrhue' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalToningHue'] }, + 'gradientbasedcorrluminancenoise' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalLuminanceNoise'] }, + 'gradientbasedcorrmaskalpha' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAlpha'] }, + 'gradientbasedcorrmaskangle' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAngle'] }, + 'gradientbasedcorrmaskbottom' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksBottom'] }, + 'gradientbasedcorrmaskcentervalue' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterValue'] }, + 'gradientbasedcorrmaskcenterweight' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterWeight'] }, + 'gradientbasedcorrmaskdabs' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksDabs'] }, + 'gradientbasedcorrmaskfeather' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFeather'] }, + 'gradientbasedcorrmaskflipped' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlipped'] }, + 'gradientbasedcorrmaskflow' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlow'] }, + 'gradientbasedcorrmaskfullx' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullX'] }, + 'gradientbasedcorrmaskfully' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullY'] }, + 'gradientbasedcorrmaskleft' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksLeft'] }, + 'gradientbasedcorrmaskmidpoint' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMidpoint'] }, + 'gradientbasedcorrmaskperimetervalue' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksPerimeterValue'] }, + 'gradientbasedcorrmaskradius' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRadius'] }, + 'gradientbasedcorrmaskright' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRight'] }, + 'gradientbasedcorrmaskroundness' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRoundness'] }, + 'gradientbasedcorrmasks' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasks'] }, + 'gradientbasedcorrmasksizex' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeX'] }, + 'gradientbasedcorrmasksizey' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeY'] }, + 'gradientbasedcorrmasktop' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksTop'] }, + 'gradientbasedcorrmaskvalue' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskValue'] }, + 'gradientbasedcorrmaskversion' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksVersion'] }, + 'gradientbasedcorrmaskwhat' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksWhat'] }, + 'gradientbasedcorrmaskx' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksX'] }, + 'gradientbasedcorrmasky' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksY'] }, + 'gradientbasedcorrmaskzerox' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroX'] }, + 'gradientbasedcorrmaskzeroy' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroY'] }, + 'gradientbasedcorrmoire' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalMoire'] }, + 'gradientbasedcorrsaturation' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSaturation','GradientBasedCorrectionsLocalToningSaturation'] }, + 'gradientbasedcorrshadows2012' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalShadows2012'] }, + 'gradientbasedcorrsharpness' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSharpness'] }, + 'gradientbasedcorrtemperature' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTemperature'] }, + 'gradientbasedcorrtint' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTint'] }, + 'gradientbasedcorrwhat' => { 428 => [\'GradientBasedCorrections','GradientBasedCorrectionsWhat'] }, + 'grainamount' => { 428 => 'GrainAmount' }, + 'grainfrequency' => { 428 => 'GrainFrequency' }, + 'grainsize' => { 428 => 'GrainSize' }, + 'graymixeraqua' => { 428 => 'GrayMixerAqua' }, + 'graymixerblue' => { 428 => 'GrayMixerBlue' }, + 'graymixergreen' => { 428 => 'GrayMixerGreen' }, + 'graymixermagenta' => { 428 => 'GrayMixerMagenta' }, + 'graymixerorange' => { 428 => 'GrayMixerOrange' }, + 'graymixerpurple' => { 428 => 'GrayMixerPurple' }, + 'graymixerred' => { 428 => 'GrayMixerRed' }, + 'graymixeryellow' => { 428 => 'GrayMixerYellow' }, + 'graypoint' => { 408 => 0x8021 }, 'grayresponseunit' => { 110 => 0x122 }, 'greencurvelimits' => { 99 => 0x1c4 }, 'greencurvepoints' => { 98 => 0x53, 99 => 0x19a }, 'greenhsl' => { 94 => 0x20912 }, - 'greenhue' => { 427 => 'GreenHue' }, - 'greensaturation' => { 427 => 'GreenSaturation' }, + 'greenhue' => { 428 => 'GreenHue' }, + 'greensaturation' => { 428 => 'GreenSaturation' }, 'griddisplay' => { 247 => '13.3', 248 => '4.3', 250 => '4.2', 251 => '4.2', 252 => '2.2', 256 => '10.5', 257 => '3.4', 258 => '6.1', 260 => '4.4', 261 => '4.2', 262 => '4.2' }, 'gripbatteryadload' => { 298 => 0x5 }, 'gripbatteryadnoload' => { 298 => 0x4 }, @@ -2586,26 +2589,26 @@ 'groupareaafillumination' => { 248 => '46.4', 251 => '47.4', 260 => '47.4' }, 'halftonehints' => { 110 => 0x141 }, 'hardlink' => { 111 => 'HardLink' }, - 'hasalternative' => { 441 => 'hasAlternative' }, - 'hascorrection' => { 441 => 'hasCorrection' }, - 'hascorrectiona-lang' => { 441 => [\'hasCorrection','hasCorrectionA-lang'] }, - 'hascorrectiona-platform' => { 441 => [\'hasCorrection','hasCorrectionA-platform'] }, - 'hascorrectiontext' => { 441 => [\'hasCorrection','hasCorrectionText'] }, - 'hascrop' => { 427 => 'HasCrop' }, - 'hasextendedxmp' => { 453 => 'HasExtendedXMP' }, - 'hassettings' => { 427 => 'HasSettings' }, - 'hastranslation' => { 441 => 'hasTranslation' }, - 'hasvisibleoverprint' => { 456 => 'HasVisibleOverprint' }, - 'hasvisibletransparency' => { 456 => 'HasVisibleTransparency' }, - 'hdr' => { 54 => 0x1, 194 => 0x4, 285 => 0x9e, 319 => 0x85, 374 => 0x200a }, + 'hasalternative' => { 442 => 'hasAlternative' }, + 'hascorrection' => { 442 => 'hasCorrection' }, + 'hascorrectiona-lang' => { 442 => [\'hasCorrection','hasCorrectionA-lang'] }, + 'hascorrectiona-platform' => { 442 => [\'hasCorrection','hasCorrectionA-platform'] }, + 'hascorrectiontext' => { 442 => [\'hasCorrection','hasCorrectionText'] }, + 'hascrop' => { 428 => 'HasCrop' }, + 'hasextendedxmp' => { 454 => 'HasExtendedXMP' }, + 'hassettings' => { 428 => 'HasSettings' }, + 'hastranslation' => { 442 => 'hasTranslation' }, + 'hasvisibleoverprint' => { 457 => 'HasVisibleOverprint' }, + 'hasvisibletransparency' => { 457 => 'HasVisibleTransparency' }, + 'hdr' => { 54 => 0x1, 194 => 0x4, 285 => 0x9e, 319 => 0x85, 375 => 0x200a }, 'hdreffect' => { 54 => 0x2 }, 'hdrimagetype' => { 1 => 0xa }, 'hdrinfoversion' => { 194 => 0x0 }, - 'hdrlevel' => { 194 => 0x5, 364 => 0x2e, 379 => 0x17 }, + 'hdrlevel' => { 194 => 0x5, 365 => 0x2e, 380 => 0x17 }, 'hdrlevel2' => { 194 => 0x7 }, - 'hdrsetting' => { 364 => 0x2d, 379 => 0x16, 382 => 0x1148, 383 => 0x1148, 384 => 0x1124, 385 => 0x11a0, 386 => 0x117c, 387 => 0x1034, 388 => 0x22c, 389 => 0x22c, 390 => 0x21f }, + 'hdrsetting' => { 365 => 0x2d, 380 => 0x16, 383 => 0x1148, 384 => 0x1148, 385 => 0x1124, 386 => 0x11a0, 387 => 0x117c, 388 => 0x1034, 389 => 0x22c, 390 => 0x22c, 391 => 0x21f }, 'hdrsmoothing' => { 194 => 0x6 }, - 'headline' => { 118 => 0x69, 437 => 'Headline', 439 => 'Headline' }, + 'headline' => { 118 => 0x69, 438 => 'Headline', 440 => 'Headline' }, 'hierarchicalkeywords' => { 155 => [\'Keywords','KeywordsHierarchy'] }, 'hierarchicalkeywords1' => { 155 => [\'Keywords','KeywordsHierarchyKeyword'] }, 'hierarchicalkeywords1applied' => { 155 => [\'Keywords','KeywordsHierarchyApplied'] }, @@ -2624,56 +2627,56 @@ 'hierarchicalkeywords5children' => { 155 => [\'Keywords','KeywordsHierarchyChildrenChildrenChildrenChildrenChildren'] }, 'hierarchicalkeywords6' => { 155 => [\'Keywords','KeywordsHierarchyChildrenChildrenChildrenChildrenChildrenKeyword'] }, 'hierarchicalkeywords6applied' => { 155 => [\'Keywords','KeywordsHierarchyChildrenChildrenChildrenChildrenChildrenApplied'] }, - 'hierarchicalsubject' => { 418 => 'hierarchicalSubject' }, + 'hierarchicalsubject' => { 419 => 'hierarchicalSubject' }, 'highestbiostratigraphiczone' => { 109 => [\'GeologicalContext','GeologicalContextHighestBiostratigraphicZone'] }, 'highisomultiplierblue' => { 289 => 0x1a }, 'highisomultipliergreen' => { 289 => 0x19 }, 'highisomultiplierred' => { 289 => 0x18 }, - 'highisonoisereduction' => { 15 => 0xbc, 16 => 0xbd, 19 => 0xbd, 27 => 0xc9, 56 => 0x5, 75 => 0x202, 115 => 0x100e, 201 => 0xb1, 319 => 0x71, 362 => 0x2c, 363 => 0x26, 364 => 0x26, 374 => 0x2009, 379 => 0x12, 403 => 0x42 }, - 'highisonoisereduction2' => { 374 => 0xb050 }, - 'highlight' => { 354 => 0xf }, + 'highisonoisereduction' => { 15 => 0xbc, 16 => 0xbd, 19 => 0xbd, 27 => 0xc9, 56 => 0x5, 75 => 0x202, 115 => 0x100e, 201 => 0xb1, 319 => 0x71, 363 => 0x2c, 364 => 0x26, 365 => 0x26, 375 => 0x2009, 380 => 0x12, 404 => 0x42 }, + 'highisonoisereduction2' => { 375 => 0xb050 }, + 'highlight' => { 355 => 0xf }, 'highlightadj' => { 94 => 0x2030c }, - 'highlightcolordistortreduct' => { 407 => 0x8026 }, - 'highlightlinearitylimit' => { 351 => 0xa025 }, + 'highlightcolordistortreduct' => { 408 => 0x8026 }, + 'highlightlinearitylimit' => { 352 => 0xa025 }, 'highlightprotection' => { 239 => 0x6 }, - 'highlightrecovery' => { 427 => 'HighlightRecovery' }, - 'highlights' => { 420 => 'Highlights' }, - 'highlights2012' => { 427 => 'Highlights2012' }, + 'highlightrecovery' => { 428 => 'HighlightRecovery' }, + 'highlights' => { 421 => 'Highlights' }, + 'highlights2012' => { 428 => 'Highlights2012' }, 'highlighttone' => { 115 => 0x1041 }, 'highlighttonepriority' => { 12 => 0x7, 15 => 0x7, 16 => 0x7, 17 => 0x7, 19 => 0x7, 21 => 0x7, 27 => 0x7, 56 => 0x3, 75 => 0x203 }, 'highlowkeyadj' => { 319 => 0x6c }, - 'highspeedsync' => { 167 => 0x5, 362 => 0x2, 363 => 0x2 }, + 'highspeedsync' => { 167 => 0x5, 363 => 0x2, 364 => 0x2 }, 'histogramxml' => { 240 => 0x83a1a25 }, - 'history' => { 439 => 'History', 452 => 'History' }, - 'historyaction' => { 452 => [\'History','HistoryAction'] }, - 'historychanged' => { 452 => [\'History','HistoryChanged'] }, - 'historyinstanceid' => { 452 => [\'History','HistoryInstanceID'] }, - 'historyparameters' => { 452 => [\'History','HistoryParameters'] }, - 'historysoftwareagent' => { 452 => [\'History','HistorySoftwareAgent'] }, - 'historywhen' => { 452 => [\'History','HistoryWhen'] }, + 'history' => { 440 => 'History', 453 => 'History' }, + 'historyaction' => { 453 => [\'History','HistoryAction'] }, + 'historychanged' => { 453 => [\'History','HistoryChanged'] }, + 'historyinstanceid' => { 453 => [\'History','HistoryInstanceID'] }, + 'historyparameters' => { 453 => [\'History','HistoryParameters'] }, + 'historysoftwareagent' => { 453 => [\'History','HistorySoftwareAgent'] }, + 'historywhen' => { 453 => [\'History','HistoryWhen'] }, 'hometowncity' => { 104 => 0x3006, 319 => 0x23, 325 => 0x2 }, 'hometowncitycode' => { 326 => 0x1000 }, 'hometowndst' => { 319 => 0x25, 325 => '0.2' }, 'hostcomputer' => { 110 => 0x13c }, 'hue' => { 172 => 0x3b, 204 => 0x3d, 319 => 0x67 }, - 'hueadj' => { 243 => 0x2f, 407 => 0x8019 }, - 'hueadjust' => { 344 => 0x1016 }, + 'hueadj' => { 243 => 0x2f, 408 => 0x8019 }, + 'hueadjust' => { 345 => 0x1016 }, 'hueadjustment' => { 165 => 0x4a, 166 => 0x40, 201 => 0x92, 203 => 0x36 }, - 'hueadjustmentaqua' => { 427 => 'HueAdjustmentAqua' }, - 'hueadjustmentblue' => { 427 => 'HueAdjustmentBlue' }, - 'hueadjustmentgreen' => { 427 => 'HueAdjustmentGreen' }, - 'hueadjustmentmagenta' => { 427 => 'HueAdjustmentMagenta' }, - 'hueadjustmentorange' => { 427 => 'HueAdjustmentOrange' }, - 'hueadjustmentpurple' => { 427 => 'HueAdjustmentPurple' }, - 'hueadjustmentred' => { 427 => 'HueAdjustmentRed' }, - 'hueadjustmentyellow' => { 427 => 'HueAdjustmentYellow' }, + 'hueadjustmentaqua' => { 428 => 'HueAdjustmentAqua' }, + 'hueadjustmentblue' => { 428 => 'HueAdjustmentBlue' }, + 'hueadjustmentgreen' => { 428 => 'HueAdjustmentGreen' }, + 'hueadjustmentmagenta' => { 428 => 'HueAdjustmentMagenta' }, + 'hueadjustmentorange' => { 428 => 'HueAdjustmentOrange' }, + 'hueadjustmentpurple' => { 428 => 'HueAdjustmentPurple' }, + 'hueadjustmentred' => { 428 => 'HueAdjustmentRed' }, + 'hueadjustmentyellow' => { 428 => 'HueAdjustmentYellow' }, 'huesetting' => { 272 => 0x1011 }, 'humidity' => { 110 => 0x9401 }, 'icc_profile' => { 111 => 'ICC_Profile' }, - 'iccprofilename' => { 439 => 'ICCProfile' }, - 'idccreativestyle' => { 407 => 0x8000 }, - 'idcpreviewlength' => { 407 => 0x202 }, - 'idcpreviewstart' => { 407 => 0x201 }, + 'iccprofilename' => { 440 => 'ICCProfile' }, + 'idccreativestyle' => { 408 => 0x8000 }, + 'idcpreviewlength' => { 408 => 0x202 }, + 'idcpreviewstart' => { 408 => 0x201 }, 'identification' => { 109 => 'Identification' }, 'identificationid' => { 109 => [\'Identification','IdentificationIdentificationID'] }, 'identificationqualifier' => { 109 => [\'Identification','IdentificationIdentificationQualifier'] }, @@ -2681,38 +2684,38 @@ 'identificationremarks' => { 109 => [\'Identification','IdentificationIdentificationRemarks'] }, 'identificationverificationstatus' => { 109 => [\'Identification','IdentificationIdentificationVerificationStatus'] }, 'identifiedby' => { 109 => [\'Identification','IdentificationIdentifiedBy'] }, - 'identifier' => { 428 => 'identifier', 449 => 'Identifier' }, - 'illumination' => { 258 => '0.5' }, + 'identifier' => { 429 => 'identifier', 450 => 'Identifier' }, + 'illumination' => { 258 => '0.5', 341 => 0x48 }, 'imageadjustment' => { 201 => 0x80, 230 => 0x5 }, 'imagealterationconstraints' => { 274 => 'ImageAlterationConstraints' }, 'imagearea' => { 213 => 0x10, 216 => 0x10 }, 'imageareaoffset' => { 319 => 0x38 }, 'imageauthentication' => { 201 => 0x20 }, 'imageboundary' => { 201 => 0x16 }, - 'imagecount' => { 115 => 0x1438, 201 => 0xa5, 377 => 0x11b, 392 => 0x32, 393 => 0x3a }, - 'imagecount2' => { 392 => 0x4c, 393 => [0x52,0x58] }, - 'imagecount3' => { 392 => [0x1a0,0x1aa,0x1bd], 393 => [0x19f,0x1cb,0x1cd] }, + 'imagecount' => { 115 => 0x1438, 201 => 0xa5, 378 => 0x11b, 393 => 0x32, 394 => 0x3a }, + 'imagecount2' => { 393 => 0x4c, 394 => [0x52,0x58] }, + 'imagecount3' => { 393 => [0x1a0,0x1aa,0x1bd], 394 => [0x19f,0x1cb,0x1cd] }, 'imagecreator' => { 274 => 'ImageCreator' }, 'imagecreatorid' => { 274 => [\'ImageCreator','ImageCreatorImageCreatorID'] }, 'imagecreatorimageid' => { 274 => 'ImageCreatorImageID' }, 'imagecreatorname' => { 274 => [\'ImageCreator','ImageCreatorImageCreatorName'] }, - 'imagedata' => { 414 => 'Data' }, + 'imagedata' => { 415 => 'Data' }, 'imagedatasize' => { 201 => 0xa2 }, - 'imagedescription' => { 110 => 0x10e, 447 => 'ImageDescription' }, + 'imagedescription' => { 110 => 0x10e, 448 => 'ImageDescription' }, 'imageduplicationconstraints' => { 274 => 'ImageDuplicationConstraints' }, 'imagedustoff' => { 240 => 0xfe443a45 }, 'imageeditcount' => { 319 => 0x41 }, 'imageediting' => { 319 => 0x32 }, - 'imageeffects' => { 344 => 0x1010 }, + 'imageeffects' => { 345 => 0x1010 }, 'imagefileconstraints' => { 274 => 'ImageFileConstraints' }, 'imagefileformatasdelivered' => { 274 => 'ImageFileFormatAsDelivered' }, 'imagefilesizeasdelivered' => { 274 => 'ImageFileSizeAsDelivered' }, 'imagegeneration' => { 115 => 0x1436 }, - 'imageheight' => { 110 => 0x101, 171 => 0xc, 328 => 0x10d, 412 => 'ImageHeight', 447 => 'ImageLength' }, - 'imagehistory' => { 110 => 0x9213, 430 => 'ImageHistory' }, + 'imageheight' => { 110 => 0x101, 171 => 0xc, 328 => 0x10d, 413 => 'ImageHeight', 448 => 'ImageLength' }, + 'imagehistory' => { 110 => 0x9213, 431 => 'ImageHistory' }, 'imageidnumber' => { 281 => 0x340 }, - 'imagemimetype' => { 414 => 'Mime' }, - 'imagenumber' => { 110 => 0x9211, 140 => 'ImageNumber', 165 => 0xae, 166 => 0x5e, 328 => 0x113, 362 => 0x9b, 364 => [0x400,'276.1',0x314], 423 => 'ImageNumber' }, + 'imagemimetype' => { 415 => 'Mime' }, + 'imagenumber' => { 110 => 0x9211, 140 => 'ImageNumber', 165 => 0xae, 166 => 0x5e, 328 => 0x113, 363 => 0x9b, 365 => [0x400,'276.1',0x314], 424 => 'ImageNumber' }, 'imagenumber2' => { 166 => 0x62 }, 'imageoptimization' => { 201 => 0xa9 }, 'imageorientation' => { 118 => 0x83 }, @@ -2720,18 +2723,18 @@ 'imageprocessingversion' => { 268 => 0x0 }, 'imagequality' => { 140 => 'ImageQuality', 215 => '723.2', 216 => '732.2', 225 => '708.1', 285 => 0x1 }, 'imagequality2' => { 264 => 0x603 }, - 'imagerank' => { 417 => 'ImageRank' }, - 'imageref' => { 435 => 'ImageRef' }, + 'imagerank' => { 418 => 'ImageRank' }, + 'imageref' => { 436 => 'ImageRef' }, 'imagereview' => { 249 => '0.4', 258 => '0.4' }, 'imagereviewmonitorofftime' => { 248 => '21.1', 250 => '21.1', 251 => '21.1', 255 => '20.1', 260 => '21.1', 261 => '21.1' }, 'imagereviewtime' => { 247 => '25.1', 249 => '2.1', 252 => '19.1', 253 => '20.1', 254 => '20.1', 256 => '9.2', 257 => '20.1', 262 => '21.2' }, 'imagesize' => { 146 => 'ImageSize' }, - 'imagesizerestriction' => { 444 => 'imageSizeRestriction' }, + 'imagesizerestriction' => { 445 => 'imageSizeRestriction' }, 'imagesourcedata' => { 110 => 0x935c }, - 'imagestabilization' => { 33 => 0x22, 104 => 0x3020, 115 => 0x1422, 140 => 'ImageStabilization', 165 => 0xbd, 166 => 0x71, 167 => 0x57, 168 => 0x0, 169 => [0x18,0x107,0x113], 170 => 0x49c2, 201 => 0xac, 264 => 0x604, 267 => 0x1600, 285 => 0x1a, 367 => 0x12, 368 => 0x11, 374 => 0xb026 }, - 'imagestabilization2' => { 366 => 0xa }, - 'imagestabilizationsetting' => { 170 => 0x14, 362 => 0x3d, 363 => 0x3d, 373 => 0x14 }, - 'imagestyle' => { 362 => 0x2d, 363 => 0x27 }, + 'imagestabilization' => { 33 => 0x22, 104 => 0x3020, 115 => 0x1422, 140 => 'ImageStabilization', 165 => 0xbd, 166 => 0x71, 167 => 0x57, 168 => 0x0, 169 => [0x18,0x107,0x113], 170 => 0x49c2, 201 => 0xac, 264 => 0x604, 267 => 0x1600, 285 => 0x1a, 368 => 0x12, 369 => 0x11, 375 => 0xb026 }, + 'imagestabilization2' => { 367 => 0xa }, + 'imagestabilizationsetting' => { 170 => 0x14, 363 => 0x3d, 364 => 0x3d, 374 => 0x14 }, + 'imagestyle' => { 363 => 0x2d, 364 => 0x27 }, 'imagesupplier' => { 274 => 'ImageSupplier' }, 'imagesupplierid' => { 274 => [\'ImageSupplier','ImageSupplierImageSupplierID'] }, 'imagesupplierimageid' => { 274 => 'ImageSupplierImageID' }, @@ -2740,56 +2743,56 @@ 'imagetemperaturemin' => { 112 => 0x2 }, 'imagetone' => { 319 => 0x4f }, 'imagetype' => { 118 => 0x82, 274 => 'ImageType' }, - 'imageuniqueid' => { 1 => 0x15, 57 => 0x28, 110 => 0xa420, 430 => 'ImageUniqueID', 431 => 'ImageUniqueID' }, - 'imagewidth' => { 110 => 0x100, 171 => 0xe, 328 => 0x10c, 412 => 'ImageWidth', 447 => 'ImageWidth' }, - 'incrementaltemperature' => { 427 => 'IncrementalTemperature' }, - 'incrementaltint' => { 427 => 'IncrementalTint' }, - 'industry' => { 441 => 'industry', 442 => 'industry' }, + 'imageuniqueid' => { 1 => 0x15, 57 => 0x28, 110 => 0xa420, 431 => 'ImageUniqueID', 432 => 'ImageUniqueID' }, + 'imagewidth' => { 110 => 0x100, 171 => 0xe, 328 => 0x10c, 413 => 'ImageWidth', 448 => 'ImageWidth' }, + 'incrementaltemperature' => { 428 => 'IncrementalTemperature' }, + 'incrementaltint' => { 428 => 'IncrementalTint' }, + 'industry' => { 442 => 'industry', 443 => 'industry' }, 'infobuttonwhenshooting' => { 75 => 0x409 }, 'infraredilluminator' => { 340 => 0x28 }, - 'ingredientexclusion' => { 443 => 'ingredientExclusion' }, - 'ingredients' => { 452 => 'Ingredients' }, - 'ingredientsalternatepaths' => { 452 => [\'Ingredients','IngredientsAlternatePaths'] }, - 'ingredientsdocumentid' => { 452 => [\'Ingredients','IngredientsDocumentID'] }, - 'ingredientsfilepath' => { 452 => [\'Ingredients','IngredientsFilePath'] }, - 'ingredientsfrompart' => { 452 => [\'Ingredients','IngredientsFromPart'] }, - 'ingredientsinstanceid' => { 452 => [\'Ingredients','IngredientsInstanceID'] }, - 'ingredientslastmodifydate' => { 452 => [\'Ingredients','IngredientsLastModifyDate'] }, - 'ingredientslasturl' => { 452 => [\'Ingredients','IngredientsLastURL'] }, - 'ingredientslinkcategory' => { 452 => [\'Ingredients','IngredientsLinkCategory'] }, - 'ingredientslinkform' => { 452 => [\'Ingredients','IngredientsLinkForm'] }, - 'ingredientsmanager' => { 452 => [\'Ingredients','IngredientsManager'] }, - 'ingredientsmanagervariant' => { 452 => [\'Ingredients','IngredientsManagerVariant'] }, - 'ingredientsmanageto' => { 452 => [\'Ingredients','IngredientsManageTo'] }, - 'ingredientsmanageui' => { 452 => [\'Ingredients','IngredientsManageUI'] }, - 'ingredientsmaskmarkers' => { 452 => [\'Ingredients','IngredientsMaskMarkers'] }, - 'ingredientsoriginaldocumentid' => { 452 => [\'Ingredients','IngredientsOriginalDocumentID'] }, - 'ingredientspartmapping' => { 452 => [\'Ingredients','IngredientsPartMapping'] }, - 'ingredientsplacedresolutionunit' => { 452 => [\'Ingredients','IngredientsPlacedResolutionUnit'] }, - 'ingredientsplacedxresolution' => { 452 => [\'Ingredients','IngredientsPlacedXResolution'] }, - 'ingredientsplacedyresolution' => { 452 => [\'Ingredients','IngredientsPlacedYResolution'] }, - 'ingredientsrenditionclass' => { 452 => [\'Ingredients','IngredientsRenditionClass'] }, - 'ingredientsrenditionparams' => { 452 => [\'Ingredients','IngredientsRenditionParams'] }, - 'ingredientstopart' => { 452 => [\'Ingredients','IngredientsToPart'] }, - 'ingredientsversionid' => { 452 => [\'Ingredients','IngredientsVersionID'] }, + 'ingredientexclusion' => { 444 => 'ingredientExclusion' }, + 'ingredients' => { 453 => 'Ingredients' }, + 'ingredientsalternatepaths' => { 453 => [\'Ingredients','IngredientsAlternatePaths'] }, + 'ingredientsdocumentid' => { 453 => [\'Ingredients','IngredientsDocumentID'] }, + 'ingredientsfilepath' => { 453 => [\'Ingredients','IngredientsFilePath'] }, + 'ingredientsfrompart' => { 453 => [\'Ingredients','IngredientsFromPart'] }, + 'ingredientsinstanceid' => { 453 => [\'Ingredients','IngredientsInstanceID'] }, + 'ingredientslastmodifydate' => { 453 => [\'Ingredients','IngredientsLastModifyDate'] }, + 'ingredientslasturl' => { 453 => [\'Ingredients','IngredientsLastURL'] }, + 'ingredientslinkcategory' => { 453 => [\'Ingredients','IngredientsLinkCategory'] }, + 'ingredientslinkform' => { 453 => [\'Ingredients','IngredientsLinkForm'] }, + 'ingredientsmanager' => { 453 => [\'Ingredients','IngredientsManager'] }, + 'ingredientsmanagervariant' => { 453 => [\'Ingredients','IngredientsManagerVariant'] }, + 'ingredientsmanageto' => { 453 => [\'Ingredients','IngredientsManageTo'] }, + 'ingredientsmanageui' => { 453 => [\'Ingredients','IngredientsManageUI'] }, + 'ingredientsmaskmarkers' => { 453 => [\'Ingredients','IngredientsMaskMarkers'] }, + 'ingredientsoriginaldocumentid' => { 453 => [\'Ingredients','IngredientsOriginalDocumentID'] }, + 'ingredientspartmapping' => { 453 => [\'Ingredients','IngredientsPartMapping'] }, + 'ingredientsplacedresolutionunit' => { 453 => [\'Ingredients','IngredientsPlacedResolutionUnit'] }, + 'ingredientsplacedxresolution' => { 453 => [\'Ingredients','IngredientsPlacedXResolution'] }, + 'ingredientsplacedyresolution' => { 453 => [\'Ingredients','IngredientsPlacedYResolution'] }, + 'ingredientsrenditionclass' => { 453 => [\'Ingredients','IngredientsRenditionClass'] }, + 'ingredientsrenditionparams' => { 453 => [\'Ingredients','IngredientsRenditionParams'] }, + 'ingredientstopart' => { 453 => [\'Ingredients','IngredientsToPart'] }, + 'ingredientsversionid' => { 453 => [\'Ingredients','IngredientsVersionID'] }, 'initialafpointaiservoaf' => { 75 => 0x51e }, 'initialafpointinservo' => { 2 => 0x13 }, - 'initialcameradolly' => { 415 => 'InitialCameraDolly' }, - 'initialhorizontalfovdegrees' => { 415 => 'InitialHorizontalFOVDegrees' }, - 'initialviewheadingdegrees' => { 415 => 'InitialViewHeadingDegrees', 416 => 'InitialViewHeadingDegrees' }, - 'initialviewpitchdegrees' => { 415 => 'InitialViewPitchDegrees', 416 => 'InitialViewPitchDegrees' }, - 'initialviewrolldegrees' => { 415 => 'InitialViewRollDegrees', 416 => 'InitialViewRollDegrees' }, + 'initialcameradolly' => { 416 => 'InitialCameraDolly' }, + 'initialhorizontalfovdegrees' => { 416 => 'InitialHorizontalFOVDegrees' }, + 'initialviewheadingdegrees' => { 416 => 'InitialViewHeadingDegrees', 417 => 'InitialViewHeadingDegrees' }, + 'initialviewpitchdegrees' => { 416 => 'InitialViewPitchDegrees', 417 => 'InitialViewPitchDegrees' }, + 'initialviewrolldegrees' => { 416 => 'InitialViewRollDegrees', 417 => 'InitialViewRollDegrees' }, 'initialzoomliveview' => { 247 => '4.4' }, 'initialzoomsetting' => { 247 => '9.3', 256 => '27.3' }, 'inkset' => { 110 => 0x14c }, 'inputprofile' => { 124 => 0x1389 }, - 'instanceid' => { 452 => 'InstanceID' }, + 'instanceid' => { 453 => 'InstanceID' }, 'instantplaybacksetup' => { 167 => 0x3e }, 'instantplaybacktime' => { 167 => 0x3d }, - 'instructions' => { 439 => 'Instructions' }, - 'instrument' => { 451 => 'instrument' }, - 'intellectualgenre' => { 436 => 'IntellectualGenre' }, - 'intelligentauto' => { 374 => 0xb052, 399 => 0xd, 400 => 0xe, 401 => 0xd }, + 'instructions' => { 440 => 'Instructions' }, + 'instrument' => { 452 => 'instrument' }, + 'intellectualgenre' => { 437 => 'IntellectualGenre' }, + 'intelligentauto' => { 375 => 0xb052, 400 => 0xd, 401 => 0xe, 402 => 0xd }, 'intelligentcontrast' => { 46 => 0x4 }, 'intelligentd-range' => { 285 => 0x79 }, 'intelligentexposure' => { 285 => 0x5d }, @@ -2803,18 +2806,18 @@ 'internalflashmode' => { 307 => 0x1 }, 'internalflashstrength' => { 307 => 0x3 }, 'internalflashtable' => { 269 => 0x1024 }, - 'internallensserialnumber' => { 351 => 0xa005 }, + 'internallensserialnumber' => { 352 => 0xa005 }, 'internalndfilter' => { 285 => 0x9d }, - 'internalserialnumber' => { 57 => 0x96, 68 => 0x9, 115 => 0x10, 170 => 0x49dc, 263 => 0x18, 265 => 0x102, 283 => 0x500, 285 => 0x25, 299 => 0x4, 344 => 0x5, 392 => [0x7c,0xf0], 393 => 0x88 }, - 'interopindex' => { 110 => 0x1, 432 => 'InteroperabilityIndex' }, + 'internalserialnumber' => { 57 => 0x96, 68 => 0x9, 115 => 0x10, 170 => 0x49dc, 263 => 0x18, 265 => 0x102, 283 => 0x500, 285 => 0x25, 299 => 0x4, 345 => 0x5, 393 => [0x7c,0xf0], 394 => 0x88 }, + 'interopindex' => { 110 => 0x1, 433 => 'InteroperabilityIndex' }, 'interopversion' => { 110 => 0x2 }, 'intervallength' => { 164 => 0x10 }, 'intervalmode' => { 164 => 0x26 }, 'intervalnumber' => { 164 => 0x11 }, 'intervalshooting' => { 319 => 0x92 }, - 'introtime' => { 451 => 'introTime' }, - 'introtimescale' => { 451 => [\'introTime','introTimeScale'] }, - 'introtimevalue' => { 451 => [\'introTime','introTimeValue'] }, + 'introtime' => { 452 => 'introTime' }, + 'introtimescale' => { 452 => [\'introTime','introTimeScale'] }, + 'introtimevalue' => { 452 => [\'introTime','introTimeValue'] }, 'iptc' => { 111 => 'IPTC' }, 'iptc-naa' => { 110 => 0x83bb, 289 => 0x83bb }, 'iptcbitspersample' => { 120 => 0x56 }, @@ -2822,17 +2825,17 @@ 'iptcimageheight' => { 120 => 0x1e }, 'iptcimagerotation' => { 120 => 0x66 }, 'iptcimagewidth' => { 120 => 0x14 }, - 'iptclastedited' => { 437 => 'IptcLastEdited' }, + 'iptclastedited' => { 438 => 'IptcLastEdited' }, 'iptcpicturenumber' => { 120 => 0xa }, 'iptcpixelheight' => { 120 => 0x32 }, 'iptcpixelwidth' => { 120 => 0x28 }, - 'isalternativeof' => { 441 => 'isAlternativeOf' }, - 'isbn' => { 441 => 'isbn' }, - 'iscorrectionof' => { 441 => 'isCorrectionOf' }, + 'isalternativeof' => { 442 => 'isAlternativeOf' }, + 'isbn' => { 442 => 'isbn' }, + 'iscorrectionof' => { 442 => 'isCorrectionOf' }, 'iscustompicturestyle' => { 100 => 0x3 }, - 'ismergedhdr' => { 423 => 'IsMergedHDR' }, - 'ismergedpanorama' => { 423 => 'IsMergedPanorama' }, - 'iso' => { 6 => 0x6, 8 => 0x6, 9 => 0x75, 10 => 0x6, 11 => 0x79, 12 => 0x6, 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 => 0x0, 30 => 0x1, 103 => 0x14, 104 => [0x3014,0x14], 110 => 0x8827, 123 => 0xfd06, 124 => 0x1784, 126 => 0x60, 128 => [0xfa2e,0xfa46], 129 => [0x27,0x28], 130 => 0xf105, 133 => 0x14, 135 => 0x4e, 138 => 0x34, 140 => 'ISO', 164 => 0x8, 170 => 0x49ba, 195 => 0x0, 201 => 0x2, 289 => 0x17, 319 => [0x8b,0x14], 326 => 0x14, 328 => 0x105, 351 => 0xa014, 373 => 0x6f, 379 => [0x1f,0x21,0x25], 431 => 'ISOSpeedRatings' }, + 'ismergedhdr' => { 424 => 'IsMergedHDR' }, + 'ismergedpanorama' => { 424 => 'IsMergedPanorama' }, + 'iso' => { 6 => 0x6, 8 => 0x6, 9 => 0x75, 10 => 0x6, 11 => 0x79, 12 => 0x6, 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 => 0x0, 30 => 0x1, 103 => 0x14, 104 => [0x3014,0x14], 110 => 0x8827, 123 => 0xfd06, 124 => 0x1784, 126 => 0x60, 128 => [0xfa2e,0xfa46], 129 => [0x27,0x28], 130 => 0xf105, 133 => 0x14, 135 => 0x4e, 138 => 0x34, 140 => 'ISO', 164 => 0x8, 170 => 0x49ba, 195 => 0x0, 201 => 0x2, 289 => 0x17, 319 => [0x8b,0x14], 326 => 0x14, 328 => 0x105, 352 => 0xa014, 374 => 0x6f, 380 => [0x1f,0x21,0x25], 432 => 'ISOSpeedRatings' }, 'iso2' => { 195 => 0x6, 210 => 0x265, 211 => 0x25c, 212 => 0x265, 213 => 0x221, 214 => 0x25d, 215 => 0x256, 216 => 0x25d, 220 => 0x2b5, 223 => 0x265, 229 => 0x2b5 }, 'isoauto' => { 300 => '14.4' }, 'isoautohilimit' => { 218 => 0x18eb, 219 => 0xe82, 227 => 0x185d }, @@ -2844,38 +2847,38 @@ 'isofloor' => { 300 => 0x6 }, 'isoselection' => { 201 => 0xf }, 'isosensitivitystep' => { 255 => '6.2', 257 => '6.2' }, - 'isosetting' => { 126 => 0x5e, 140 => 'ISOSetting', 164 => 0x24, 165 => 0x26, 166 => 0x1c, 167 => 0x13, 172 => 0x6, 201 => 0x13, 300 => '17.3', 343 => 0x27, 362 => 0x16, 363 => 0x14, 364 => 0x2, 373 => 0x6d }, - 'isospeed' => { 110 => 0x8833, 432 => 'ISOSpeed' }, + 'isosetting' => { 126 => 0x5e, 140 => 'ISOSetting', 164 => 0x24, 165 => 0x26, 166 => 0x1c, 167 => 0x13, 172 => 0x6, 201 => 0x13, 300 => '17.3', 344 => 0x27, 363 => 0x16, 364 => 0x14, 365 => 0x2, 374 => 0x6d }, + 'isospeed' => { 110 => 0x8833, 433 => 'ISOSpeed' }, 'isospeedexpansion' => { 74 => 0x3 }, 'isospeedincrements' => { 75 => 0x102 }, - 'isospeedlatitudeyyy' => { 110 => 0x8834, 432 => 'ISOSpeedLatitudeyyy' }, - 'isospeedlatitudezzz' => { 110 => 0x8835, 432 => 'ISOSpeedLatitudezzz' }, + 'isospeedlatitudeyyy' => { 110 => 0x8834, 433 => 'ISOSpeedLatitudeyyy' }, + 'isospeedlatitudezzz' => { 110 => 0x8835, 433 => 'ISOSpeedLatitudezzz' }, 'isospeedrange' => { 75 => 0x103 }, 'isostepsize' => { 247 => '6.1', 248 => '7.2', 250 => '7.2', 251 => '7.2', 256 => '4.1', 260 => '7.2', 261 => '7.2' }, 'isovalue' => { 269 => 0x1001 }, - 'issn' => { 441 => 'issn' }, - 'issueidentifier' => { 441 => 'issueIdentifier' }, - 'issuename' => { 441 => 'issueName' }, - 'issueteaser' => { 441 => 'issueTeaser' }, - 'issuetype' => { 441 => 'issueType' }, - 'istranslationof' => { 441 => 'isTranslationOf' }, + 'issn' => { 442 => 'issn' }, + 'issueidentifier' => { 442 => 'issueIdentifier' }, + 'issuename' => { 442 => 'issueName' }, + 'issueteaser' => { 442 => 'issueTeaser' }, + 'issuetype' => { 442 => 'issueType' }, + 'istranslationof' => { 442 => 'isTranslationOf' }, 'itemsubtype' => { 162 => 'ItemSubType' }, 'jobid' => { 118 => 0xb8 }, - 'jobname' => { 433 => 'JobName' }, - 'jobref' => { 450 => 'JobRef' }, - 'jobrefid' => { 450 => [\'JobRef','JobRefId'] }, - 'jobrefname' => { 450 => [\'JobRef','JobRefName'] }, - 'jobrefurl' => { 450 => [\'JobRef','JobRefUrl'] }, - 'jobstatus' => { 433 => 'JobStatus' }, - 'jpeghandling' => { 427 => 'JPEGHandling' }, - 'jpegquality' => { 9 => 0x66, 287 => 0x3034, 374 => 0xb047 }, + 'jobname' => { 434 => 'JobName' }, + 'jobref' => { 451 => 'JobRef' }, + 'jobrefid' => { 451 => [\'JobRef','JobRefId'] }, + 'jobrefname' => { 451 => [\'JobRef','JobRefName'] }, + 'jobrefurl' => { 451 => [\'JobRef','JobRefUrl'] }, + 'jobstatus' => { 434 => 'JobStatus' }, + 'jpeghandling' => { 428 => 'JPEGHandling' }, + 'jpegquality' => { 9 => 0x66, 287 => 0x3034, 375 => 0xb047 }, 'jpegsize' => { 287 => 0x303a }, 'jpgcompression' => { 219 => 0x7d4 }, 'jpgfromraw' => { 88 => 0x2007, 105 => 'JpgFromRaw', 289 => 0x2e }, 'jpgfromrawlength' => { 110 => [0x117,0x202] }, 'jpgfromrawstart' => { 110 => [0x111,0x201] }, 'jpgrecordedpixels' => { 300 => '14.1' }, - 'jurisdiction' => { 424 => 'jurisdiction' }, + 'jurisdiction' => { 425 => 'jurisdiction' }, 'kelvinwb_01' => { 308 => 0x5 }, 'kelvinwb_02' => { 308 => 0x9 }, 'kelvinwb_03' => { 308 => 0xd }, @@ -2893,16 +2896,16 @@ 'kelvinwb_15' => { 308 => 0x3d }, 'kelvinwb_16' => { 308 => 0x41 }, 'kelvinwb_daylight' => { 308 => 0x1 }, - 'key' => { 451 => 'key' }, + 'key' => { 452 => 'key' }, 'keystonecompensation' => { 268 => 0x1900 }, 'keystonedirection' => { 268 => 0x1901 }, 'keystonevalue' => { 268 => 0x1906 }, - 'keyword' => { 441 => 'keyword' }, + 'keyword' => { 442 => 'keyword' }, 'keywordinfo' => { 155 => 'Keywords' }, - 'keywords' => { 118 => 0x19, 141 => 'Keywords', 273 => 'Keywords', 335 => 'Keywords', 421 => 'keywords', 438 => 'Keywords', 449 => 'Keywords' }, - 'killdate' => { 441 => 'killDate' }, - 'killdatea-platform' => { 441 => [\'killDate','killDateA-platform'] }, - 'killdatedate' => { 441 => [\'killDate','killDateDate'] }, + 'keywords' => { 118 => 0x19, 141 => 'Keywords', 273 => 'Keywords', 335 => 'Keywords', 422 => 'keywords', 439 => 'Keywords', 450 => 'Keywords' }, + 'killdate' => { 442 => 'killDate' }, + 'killdatea-platform' => { 442 => [\'killDate','killDateA-platform'] }, + 'killdatedate' => { 442 => [\'killDate','killDateDate'] }, 'kodakimageheight' => { 123 => 0xf908, 126 => 0xe, 128 => [0xfa1e,0xfa52], 134 => 0x70 }, 'kodakimagewidth' => { 123 => 0xf907, 126 => 0xc, 128 => [0xfa1d,0xfa51], 134 => 0x6c }, 'kodakinfotype' => { 123 => 0xfa00 }, @@ -2910,13 +2913,13 @@ 'kodaklookprofile' => { 124 => 0x138a }, 'kodakmaker' => { 134 => 0x8 }, 'kodakmodel' => { 126 => 0x0, 134 => 0x28 }, - 'label' => { 277 => 'Label', 449 => 'Label' }, - 'labelname1' => { 435 => [\'TagStructure','TagStructureLabelName'] }, - 'labelname2' => { 435 => [\'TagStructure','TagStructureSubLabelsLabelName'] }, - 'labelname3' => { 435 => [\'TagStructure','TagStructureSubLabelsSubLabelsLabelName'] }, - 'labelname4' => { 435 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsLabelName'] }, - 'labelname5' => { 435 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsLabelName'] }, - 'labelname6' => { 435 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsLabelName'] }, + 'label' => { 277 => 'Label', 450 => 'Label' }, + 'labelname1' => { 436 => [\'TagStructure','TagStructureLabelName'] }, + 'labelname2' => { 436 => [\'TagStructure','TagStructureSubLabelsLabelName'] }, + 'labelname3' => { 436 => [\'TagStructure','TagStructureSubLabelsSubLabelsLabelName'] }, + 'labelname4' => { 436 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsLabelName'] }, + 'labelname5' => { 436 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsLabelName'] }, + 'labelname6' => { 436 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsLabelName'] }, 'landmark' => { 285 => 0x6f }, 'landscapeoutputhighlightpoint' => { 100 => 0x26 }, 'landscapeoutputshadowpoint' => { 100 => 0x27 }, @@ -2932,19 +2935,19 @@ 'landscapeunsharpmaskfineness' => { 100 => 0xa0 }, 'landscapeunsharpmaskstrength' => { 100 => 0x9e }, 'landscapeunsharpmaskthreshold' => { 100 => 0xa2 }, - 'language' => { 428 => 'language' }, + 'language' => { 429 => 'language' }, 'languageidentifier' => { 118 => 0x87 }, - 'largestvalidinteriorrectheight' => { 415 => 'LargestValidInteriorRectHeight' }, - 'largestvalidinteriorrectleft' => { 415 => 'LargestValidInteriorRectLeft' }, - 'largestvalidinteriorrecttop' => { 415 => 'LargestValidInteriorRectTop' }, - 'largestvalidinteriorrectwidth' => { 415 => 'LargestValidInteriorRectWidth' }, + 'largestvalidinteriorrectheight' => { 416 => 'LargestValidInteriorRectHeight' }, + 'largestvalidinteriorrectleft' => { 416 => 'LargestValidInteriorRectLeft' }, + 'largestvalidinteriorrecttop' => { 416 => 'LargestValidInteriorRectTop' }, + 'largestvalidinteriorrectwidth' => { 416 => 'LargestValidInteriorRectWidth' }, 'lastfilenumber' => { 164 => 0x1b }, 'lastkeywordiptc' => { 162 => 'LastKeywordIPTC' }, 'lastkeywordxmp' => { 162 => 'LastKeywordXMP' }, - 'lastphotodate' => { 415 => 'LastPhotoDate' }, - 'lasturl' => { 452 => 'LastURL' }, - 'lateralchromaticaberration' => { 374 => 0x2012 }, - 'lateralchromaticaberrationcorrectionalreadyapplied' => { 423 => 'LateralChromaticAberrationCorrectionAlreadyApplied' }, + 'lastphotodate' => { 416 => 'LastPhotoDate' }, + 'lasturl' => { 453 => 'LastURL' }, + 'lateralchromaticaberration' => { 375 => 0x2012 }, + 'lateralchromaticaberrationcorrectionalreadyapplied' => { 424 => 'LateralChromaticAberrationCorrectionAlreadyApplied' }, 'latestageorhigheststage' => { 109 => [\'GeologicalContext','GeologicalContextLatestAgeOrHighestStage'] }, 'latesteonorhighesteonothem' => { 109 => [\'GeologicalContext','GeologicalContextLatestEonOrHighestEonothem'] }, 'latestepochorhighestseries' => { 109 => [\'GeologicalContext','GeologicalContextLatestEpochOrHighestSeries'] }, @@ -2968,64 +2971,64 @@ 'lcdilluminationduringbulb' => { 75 => 0x408 }, 'lcdpanels' => { 74 => 0x8 }, 'lcheditor' => { 240 => 0x8ae85e }, - 'legacyiptcdigest' => { 439 => 'LegacyIPTCDigest' }, - 'legalcode' => { 424 => 'legalcode' }, - 'lens' => { 110 => 0xfdea, 201 => 0x84, 423 => 'Lens' }, + 'legacyiptcdigest' => { 440 => 'LegacyIPTCDigest' }, + 'legalcode' => { 425 => 'legalcode' }, + 'lens' => { 110 => 0xfdea, 201 => 0x84, 424 => 'Lens' }, 'lensafstopbutton' => { 73 => 0x11, 74 => 0x13, 75 => 0x506, 76 => 0x10, 77 => 0x12, 80 => 0x13, 81 => 0x9 }, - 'lensaperturerange' => { 354 => [0x30,0x48] }, - 'lenscorrectionsettings' => { 430 => 'LensCorrectionSettings' }, - 'lensdistortinfo' => { 423 => 'LensDistortInfo' }, + 'lensaperturerange' => { 355 => [0x30,0x48] }, + 'lenscorrectionsettings' => { 431 => 'LensCorrectionSettings' }, + 'lensdistortinfo' => { 424 => 'LensDistortInfo' }, 'lensdistortionparams' => { 269 => 0x206 }, 'lensdrivenoaf' => { 75 => 0x505 }, 'lensdrivewhenafimpossible' => { 2 => 0xb }, - 'lense-mountversion' => { 364 => 0x3f0, 406 => 0xd }, - 'lensfirmware' => { 345 => 0x20, 351 => 0xa004 }, - 'lensfirmwareversion' => { 265 => 0x204, 285 => 0x60, 364 => 0x3f3, 406 => 0x14 }, + 'lense-mountversion' => { 365 => 0x3f0, 407 => 0xd }, + 'lensfirmware' => { 346 => 0x20, 352 => 0xa004 }, + 'lensfirmwareversion' => { 265 => 0x204, 285 => 0x60, 365 => 0x3f3, 407 => 0x14 }, 'lensfocallength' => { 94 => 0xf0512, 310 => 0x9 }, - 'lensfocalrange' => { 354 => [0xa,0x2a] }, + 'lensfocalrange' => { 355 => [0xa,0x2a] }, 'lensfocusfunctionbuttons' => { 248 => '55.1', 250 => '52.1', 251 => '52.1', 260 => '52.1', 261 => '52.1' }, - 'lensformat' => { 386 => 0x1891, 388 => 0x18bd, 389 => 0x18ed, 390 => 0x17f1, 392 => 0x106, 393 => 0x106, 402 => 0x603, 403 => 0x5d }, + 'lensformat' => { 387 => 0x1891, 389 => 0x18bd, 390 => 0x18ed, 391 => 0x17f1, 393 => 0x106, 394 => 0x106, 403 => 0x603, 404 => 0x5d }, 'lensfstops' => { 196 => 0x7, 197 => 0xc, 198 => 0xd, 201 => 0x8b, 310 => '0.3' }, - 'lensid' => { 423 => 'LensID' }, + 'lensid' => { 424 => 'LensID' }, 'lensidnumber' => { 196 => 0x6, 197 => 0xb, 198 => 0xc }, - 'lensinfo' => { 110 => 0xa432, 316 => 0x2a, 423 => 'LensInfo', 432 => 'LensSpecification' }, + 'lensinfo' => { 110 => 0xa432, 316 => 0x2a, 424 => 'LensInfo', 433 => 'LensSpecification' }, 'lenskind' => { 310 => 0x1 }, - 'lensmake' => { 110 => 0xa433, 147 => 'Make', 432 => 'LensMake' }, - 'lensmanualdistortionamount' => { 427 => 'LensManualDistortionAmount' }, + 'lensmake' => { 110 => 0xa433, 147 => 'Make', 433 => 'LensMake' }, + 'lensmanualdistortionamount' => { 428 => 'LensManualDistortionAmount' }, 'lensmanufacturer' => { 162 => 'LensManufacturer' }, - 'lensmaxaperturerange' => { 354 => 0x2b }, - 'lensmodel' => { 6 => 0x937, 13 => 0x92b, 14 => 0x933, 57 => 0x95, 110 => 0xa434, 147 => 'Model', 162 => 'LensModel', 199 => 0x18a, 265 => 0x203, 283 => 0x303, 316 => 0xc, 328 => 0x412, 432 => 'LensModel' }, - 'lensmount' => { 364 => 0x99, 386 => 0x1892, 388 => 0x18be, 389 => 0x18ee, 390 => 0x17f2, 392 => 0x105, 393 => 0x105, 402 => 0x604, 403 => 0x5e }, - 'lensmount2' => { 406 => 0x8 }, - 'lensprofilechromaticaberrationscale' => { 427 => 'LensProfileChromaticAberrationScale' }, - 'lensprofiledigest' => { 427 => 'LensProfileDigest' }, - 'lensprofiledistortionscale' => { 427 => 'LensProfileDistortionScale' }, - 'lensprofileenable' => { 427 => 'LensProfileEnable' }, - 'lensprofilefilename' => { 427 => 'LensProfileFilename' }, - 'lensprofilematchkeycameramodelname' => { 427 => 'LensProfileMatchKeyCameraModelName' }, - 'lensprofilematchkeyexifmake' => { 427 => 'LensProfileMatchKeyExifMake' }, - 'lensprofilematchkeyexifmodel' => { 427 => 'LensProfileMatchKeyExifModel' }, - 'lensprofilematchkeyisraw' => { 427 => 'LensProfileMatchKeyIsRaw' }, - 'lensprofilematchkeylensid' => { 427 => 'LensProfileMatchKeyLensID' }, - 'lensprofilematchkeylensinfo' => { 427 => 'LensProfileMatchKeyLensInfo' }, - 'lensprofilematchkeylensname' => { 427 => 'LensProfileMatchKeyLensName' }, - 'lensprofilematchkeysensorformatfactor' => { 427 => 'LensProfileMatchKeySensorFormatFactor' }, - 'lensprofilename' => { 427 => 'LensProfileName' }, - 'lensprofilesetup' => { 427 => 'LensProfileSetup' }, - 'lensprofilevignettingscale' => { 427 => 'LensProfileVignettingScale' }, + 'lensmaxaperturerange' => { 355 => 0x2b }, + 'lensmodel' => { 6 => 0x937, 13 => 0x92b, 14 => 0x933, 57 => 0x95, 110 => 0xa434, 147 => 'Model', 162 => 'LensModel', 199 => 0x18a, 265 => 0x203, 283 => 0x303, 316 => 0xc, 328 => 0x412, 433 => 'LensModel' }, + 'lensmount' => { 365 => 0x99, 387 => 0x1892, 389 => 0x18be, 390 => 0x18ee, 391 => 0x17f2, 393 => 0x105, 394 => 0x105, 403 => 0x604, 404 => 0x5e }, + 'lensmount2' => { 407 => 0x8 }, + 'lensprofilechromaticaberrationscale' => { 428 => 'LensProfileChromaticAberrationScale' }, + 'lensprofiledigest' => { 428 => 'LensProfileDigest' }, + 'lensprofiledistortionscale' => { 428 => 'LensProfileDistortionScale' }, + 'lensprofileenable' => { 428 => 'LensProfileEnable' }, + 'lensprofilefilename' => { 428 => 'LensProfileFilename' }, + 'lensprofilematchkeycameramodelname' => { 428 => 'LensProfileMatchKeyCameraModelName' }, + 'lensprofilematchkeyexifmake' => { 428 => 'LensProfileMatchKeyExifMake' }, + 'lensprofilematchkeyexifmodel' => { 428 => 'LensProfileMatchKeyExifModel' }, + 'lensprofilematchkeyisraw' => { 428 => 'LensProfileMatchKeyIsRaw' }, + 'lensprofilematchkeylensid' => { 428 => 'LensProfileMatchKeyLensID' }, + 'lensprofilematchkeylensinfo' => { 428 => 'LensProfileMatchKeyLensInfo' }, + 'lensprofilematchkeylensname' => { 428 => 'LensProfileMatchKeyLensName' }, + 'lensprofilematchkeysensorformatfactor' => { 428 => 'LensProfileMatchKeySensorFormatFactor' }, + 'lensprofilename' => { 428 => 'LensProfileName' }, + 'lensprofilesetup' => { 428 => 'LensProfileSetup' }, + 'lensprofilevignettingscale' => { 428 => 'LensProfileVignettingScale' }, 'lensproperties' => { 265 => 0x20b }, - 'lensserialnumber' => { 20 => 0x164, 31 => 0x16b, 55 => 0x0, 110 => 0xa435, 147 => 'SerialNumber', 265 => 0x202, 285 => 0x52, 345 => 0x30, 423 => 'LensSerialNumber', 432 => 'LensSerialNumber' }, + 'lensserialnumber' => { 20 => 0x164, 31 => 0x16b, 55 => 0x0, 110 => 0xa435, 147 => 'SerialNumber', 265 => 0x202, 285 => 0x52, 346 => 0x30, 424 => 'LensSerialNumber', 433 => 'LensSerialNumber' }, 'lensshutterlock' => { 167 => 0x4a }, - 'lensspec' => { 359 => 0x0, 360 => 0x0, 361 => 0x0, 374 => 0xb02a }, - 'lensspecfeatures' => { 392 => [0x115,0x116], 393 => [0x116,0x21c,0x21e] }, + 'lensspec' => { 360 => 0x0, 361 => 0x0, 362 => 0x0, 375 => 0xb02a }, + 'lensspecfeatures' => { 393 => [0x115,0x116], 394 => [0x116,0x21c,0x21e] }, 'lenstemperature' => { 269 => 0x1008 }, - 'lenstype' => { 6 => 0xe2, 7 => 0xd, 8 => 0x1a7, 9 => 0xc, 10 => 0x111, 11 => 0xc, 12 => 0x14f, 13 => 0xd6, 14 => 0xde, 15 => 0xf6, 16 => 0xea, 17 => 0xff, 18 => [0xc,0x97], 19 => 0xe6, 20 => 0x153, 21 => 0xea, 22 => 0xe8, 23 => 0x127, 24 => 0x161, 25 => 0x166, 26 => 0x184, 27 => 0x112, 28 => 0x189, 33 => 0x16, 169 => 0x10c, 170 => 0x49bd, 201 => 0x83, 265 => 0x201, 278 => 0x16, 281 => 0x310, 284 => 0x303, 285 => 0x51, 287 => 0x3405, 311 => 0x0, 312 => 0x0, 313 => 0x1, 314 => 0x1, 315 => 0x1, 317 => 0x0, 351 => 0xa003, 354 => 0x27, 374 => 0xb027, 386 => 0x1896, 388 => 0x18c2, 389 => 0x18f2, 390 => 0x17f6, 392 => 0x109, 393 => 0x109, 402 => 0x608, 403 => 0x62 }, - 'lenstype2' => { 364 => 0x3f7, 386 => 0x1893, 388 => 0x18bf, 389 => 0x18ef, 390 => 0x17f3, 392 => 0x107, 393 => 0x107, 402 => 0x605, 403 => 0x60 }, - 'lenstype3' => { 406 => 0x9 }, - 'lenszoomposition' => { 399 => 0x19, 400 => 0x1e, 403 => [0x342,0x35a] }, + 'lenstype' => { 6 => 0xe2, 7 => 0xd, 8 => 0x1a7, 9 => 0xc, 10 => 0x111, 11 => 0xc, 12 => 0x14f, 13 => 0xd6, 14 => 0xde, 15 => 0xf6, 16 => 0xea, 17 => 0xff, 18 => [0xc,0x97], 19 => 0xe6, 20 => 0x153, 21 => 0xea, 22 => 0xe8, 23 => 0x127, 24 => 0x161, 25 => 0x166, 26 => 0x184, 27 => 0x112, 28 => 0x189, 33 => 0x16, 169 => 0x10c, 170 => 0x49bd, 201 => 0x83, 265 => 0x201, 278 => 0x16, 281 => 0x310, 284 => 0x303, 285 => 0x51, 287 => 0x3405, 311 => 0x0, 312 => 0x0, 313 => 0x1, 314 => 0x1, 315 => 0x1, 317 => 0x0, 352 => 0xa003, 355 => 0x27, 375 => 0xb027, 387 => 0x1896, 389 => 0x18c2, 390 => 0x18f2, 391 => 0x17f6, 393 => 0x109, 394 => 0x109, 403 => 0x608, 404 => 0x62 }, + 'lenstype2' => { 365 => 0x3f7, 387 => 0x1893, 389 => 0x18bf, 390 => 0x18ef, 391 => 0x17f3, 393 => 0x107, 394 => 0x107, 403 => 0x605, 404 => 0x60 }, + 'lenstype3' => { 407 => 0x9 }, + 'lenszoomposition' => { 400 => 0x19, 401 => 0x1e, 404 => [0x342,0x35a] }, 'levelindicator' => { 292 => 0x15 }, 'levelorientation' => { 318 => 0x0 }, - 'license' => { 424 => 'license' }, + 'license' => { 425 => 'license' }, 'licensee' => { 274 => 'Licensee' }, 'licenseeid' => { 274 => [\'Licensee','LicenseeLicenseeID'] }, 'licenseeimageid' => { 274 => 'LicenseeImageID' }, @@ -3037,7 +3040,7 @@ 'licenseid' => { 274 => 'LicenseID' }, 'licensestartdate' => { 274 => 'LicenseStartDate' }, 'licensetransactiondate' => { 274 => 'LicenseTransactionDate' }, - 'licensetype' => { 429 => 'licensetype' }, + 'licensetype' => { 430 => 'licensetype' }, 'licensor' => { 274 => 'Licensor' }, 'licensorcity' => { 274 => [\'Licensor','LicensorLicensorCity'] }, 'licensorcountry' => { 274 => [\'Licensor','LicensorLicensorCountry'] }, @@ -3059,8 +3062,8 @@ 'lightcondition' => { 269 => 0x1009 }, 'lightingmode' => { 104 => 0x302a }, 'lightreading' => { 319 => 0x15 }, - 'lightsource' => { 110 => 0x9208, 201 => 0x90, 272 => 0x1000, 431 => 'LightSource' }, - 'lightsourcespecial' => { 353 => 0x21d }, + 'lightsource' => { 110 => 0x9208, 201 => 0x90, 272 => 0x1000, 432 => 'LightSource' }, + 'lightsourcespecial' => { 354 => 0x21d }, 'lightswitch' => { 260 => '0.1', 262 => '0.1' }, 'lightvaluecenter' => { 269 => 0x103d }, 'lightvalueperiphery' => { 269 => 0x103e }, @@ -3071,96 +3074,96 @@ 'linearityuppermargin' => { 40 => [0x2ba,0x2d1,0x2d5], 42 => 0x1e5, 43 => [0x1fe,0x2de], 44 => [0x232,0x310] }, 'linearizationtable' => { 110 => 0xc618 }, 'linearresponselimit' => { 110 => 0xc62e }, - 'link' => { 441 => 'link' }, + 'link' => { 442 => 'link' }, 'linkaetoafpoint' => { 300 => '14.2' }, - 'linkedencodedrightsexpr' => { 437 => [\'LinkedEncRightsExpr','LinkedEncRightsExprLinkedRightsExpr'] }, - 'linkedencodedrightsexprlangid' => { 437 => [\'LinkedEncRightsExpr','LinkedEncRightsExprRightsExprLangId'] }, - 'linkedencodedrightsexprtype' => { 437 => [\'LinkedEncRightsExpr','LinkedEncRightsExprRightsExprEncType'] }, - 'linkedencrightsexpr' => { 437 => 'LinkedEncRightsExpr' }, + 'linkedencodedrightsexpr' => { 438 => [\'LinkedEncRightsExpr','LinkedEncRightsExprLinkedRightsExpr'] }, + 'linkedencodedrightsexprlangid' => { 438 => [\'LinkedEncRightsExpr','LinkedEncRightsExprRightsExprLangId'] }, + 'linkedencodedrightsexprtype' => { 438 => [\'LinkedEncRightsExpr','LinkedEncRightsExprRightsExprEncType'] }, + 'linkedencrightsexpr' => { 438 => 'LinkedEncRightsExpr' }, 'lithostratigraphicterms' => { 109 => [\'GeologicalContext','GeologicalContextLithostratigraphicTerms'] }, 'liveviewaf' => { 252 => '32.1', 262 => '34.1' }, 'liveviewafareamode' => { 257 => '34.1' }, - 'liveviewafmethod' => { 379 => 0x20 }, + 'liveviewafmethod' => { 380 => 0x20 }, 'liveviewafmode' => { 257 => '34.2' }, - 'liveviewafsetting' => { 364 => 0x36 }, + 'liveviewafsetting' => { 365 => 0x36 }, 'liveviewbuttonoptions' => { 248 => '50.2', 250 => '48.2', 251 => '48.2', 260 => '48.2', 261 => '48.2' }, 'liveviewexposuresimulation' => { 75 => 0x810 }, - 'liveviewfocusmode' => { 364 => [0x8b,0x28b] }, - 'liveviewmetering' => { 364 => [0x84,0x284] }, + 'liveviewfocusmode' => { 365 => [0x8b,0x28b] }, + 'liveviewmetering' => { 365 => [0x84,0x284] }, 'liveviewmonitorofftime' => { 248 => '21.2', 250 => '21.2', 251 => '21.2', 253 => '20.2', 254 => '20.2', 255 => '20.2', 257 => '20.2', 260 => '21.2', 261 => '21.2' }, 'liveviewshooting' => { 51 => 0x13 }, 'localcaption' => { 118 => 0x79 }, 'localizedcameramodel' => { 110 => 0xc615 }, - 'locallocationname' => { 351 => 0x30 }, - 'location' => { 200 => 0x9, 285 => 0x67, 419 => 'Location', 436 => 'Location', 440 => 'location', 441 => 'location' }, - 'locationareacode' => { 425 => 'lac' }, - 'locationcreated' => { 437 => 'LocationCreated' }, - 'locationcreatedcity' => { 437 => [\'LocationCreated','LocationCreatedCity'] }, - 'locationcreatedcountrycode' => { 437 => [\'LocationCreated','LocationCreatedCountryCode'] }, - 'locationcreatedcountryname' => { 437 => [\'LocationCreated','LocationCreatedCountryName'] }, - 'locationcreatedgpsaltitude' => { 437 => [\'LocationCreated','LocationCreatedGPSAltitude'] }, - 'locationcreatedgpslatitude' => { 437 => [\'LocationCreated','LocationCreatedGPSLatitude'] }, - 'locationcreatedgpslongitude' => { 437 => [\'LocationCreated','LocationCreatedGPSLongitude'] }, - 'locationcreatedidentifier' => { 437 => [\'LocationCreated','LocationCreatedIdentifier'] }, - 'locationcreatedlocationid' => { 437 => [\'LocationCreated','LocationCreatedLocationId'] }, - 'locationcreatedlocationname' => { 437 => [\'LocationCreated','LocationCreatedLocationName'] }, - 'locationcreatedprovincestate' => { 437 => [\'LocationCreated','LocationCreatedProvinceState'] }, - 'locationcreatedsublocation' => { 437 => [\'LocationCreated','LocationCreatedSublocation'] }, - 'locationcreatedworldregion' => { 437 => [\'LocationCreated','LocationCreatedWorldRegion'] }, + 'locallocationname' => { 352 => 0x30 }, + 'location' => { 200 => 0x9, 285 => 0x67, 420 => 'Location', 437 => 'Location', 441 => 'location', 442 => 'location' }, + 'locationareacode' => { 426 => 'lac' }, + 'locationcreated' => { 438 => 'LocationCreated' }, + 'locationcreatedcity' => { 438 => [\'LocationCreated','LocationCreatedCity'] }, + 'locationcreatedcountrycode' => { 438 => [\'LocationCreated','LocationCreatedCountryCode'] }, + 'locationcreatedcountryname' => { 438 => [\'LocationCreated','LocationCreatedCountryName'] }, + 'locationcreatedgpsaltitude' => { 438 => [\'LocationCreated','LocationCreatedGPSAltitude'] }, + 'locationcreatedgpslatitude' => { 438 => [\'LocationCreated','LocationCreatedGPSLatitude'] }, + 'locationcreatedgpslongitude' => { 438 => [\'LocationCreated','LocationCreatedGPSLongitude'] }, + 'locationcreatedidentifier' => { 438 => [\'LocationCreated','LocationCreatedIdentifier'] }, + 'locationcreatedlocationid' => { 438 => [\'LocationCreated','LocationCreatedLocationId'] }, + 'locationcreatedlocationname' => { 438 => [\'LocationCreated','LocationCreatedLocationName'] }, + 'locationcreatedprovincestate' => { 438 => [\'LocationCreated','LocationCreatedProvinceState'] }, + 'locationcreatedsublocation' => { 438 => [\'LocationCreated','LocationCreatedSublocation'] }, + 'locationcreatedworldregion' => { 438 => [\'LocationCreated','LocationCreatedWorldRegion'] }, 'locationinfoversion' => { 200 => 0x0 }, - 'locationname' => { 351 => 0x31 }, - 'locationshown' => { 437 => 'LocationShown' }, - 'locationshowncity' => { 437 => [\'LocationShown','LocationShownCity'] }, - 'locationshowncountrycode' => { 437 => [\'LocationShown','LocationShownCountryCode'] }, - 'locationshowncountryname' => { 437 => [\'LocationShown','LocationShownCountryName'] }, - 'locationshowngpsaltitude' => { 437 => [\'LocationShown','LocationShownGPSAltitude'] }, - 'locationshowngpslatitude' => { 437 => [\'LocationShown','LocationShownGPSLatitude'] }, - 'locationshowngpslongitude' => { 437 => [\'LocationShown','LocationShownGPSLongitude'] }, - 'locationshownidentifier' => { 437 => [\'LocationShown','LocationShownIdentifier'] }, - 'locationshownlocationid' => { 437 => [\'LocationShown','LocationShownLocationId'] }, - 'locationshownlocationname' => { 437 => [\'LocationShown','LocationShownLocationName'] }, - 'locationshownprovincestate' => { 437 => [\'LocationShown','LocationShownProvinceState'] }, - 'locationshownsublocation' => { 437 => [\'LocationShown','LocationShownSublocation'] }, - 'locationshownworldregion' => { 437 => [\'LocationShown','LocationShownWorldRegion'] }, + 'locationname' => { 352 => 0x31 }, + 'locationshown' => { 438 => 'LocationShown' }, + 'locationshowncity' => { 438 => [\'LocationShown','LocationShownCity'] }, + 'locationshowncountrycode' => { 438 => [\'LocationShown','LocationShownCountryCode'] }, + 'locationshowncountryname' => { 438 => [\'LocationShown','LocationShownCountryName'] }, + 'locationshowngpsaltitude' => { 438 => [\'LocationShown','LocationShownGPSAltitude'] }, + 'locationshowngpslatitude' => { 438 => [\'LocationShown','LocationShownGPSLatitude'] }, + 'locationshowngpslongitude' => { 438 => [\'LocationShown','LocationShownGPSLongitude'] }, + 'locationshownidentifier' => { 438 => [\'LocationShown','LocationShownIdentifier'] }, + 'locationshownlocationid' => { 438 => [\'LocationShown','LocationShownLocationId'] }, + 'locationshownlocationname' => { 438 => [\'LocationShown','LocationShownLocationName'] }, + 'locationshownprovincestate' => { 438 => [\'LocationShown','LocationShownProvinceState'] }, + 'locationshownsublocation' => { 438 => [\'LocationShown','LocationShownSublocation'] }, + 'locationshownworldregion' => { 438 => [\'LocationShown','LocationShownWorldRegion'] }, 'lockmicrophonebutton' => { 75 => 0x709 }, - 'logcomment' => { 451 => 'logComment' }, - 'longexposurenoisereduction' => { 56 => 0x4, 75 => 0x201, 76 => 0x1, 77 => 0x2, 78 => 0x1, 79 => 0x1, 80 => 0x2, 81 => 0x1, 285 => 0x49, 362 => 0x2b, 363 => 0x25, 364 => 0x25, 374 => 0x2008, 379 => 0x11, 403 => 0x44 }, + 'logcomment' => { 452 => 'logComment' }, + 'longexposurenoisereduction' => { 56 => 0x4, 75 => 0x201, 76 => 0x1, 77 => 0x2, 78 => 0x1, 79 => 0x1, 80 => 0x2, 81 => 0x1, 285 => 0x49, 363 => 0x2b, 364 => 0x25, 365 => 0x25, 375 => 0x2008, 380 => 0x11, 404 => 0x44 }, 'longexposurenoisereduction2' => { 51 => 0x8 }, - 'loop' => { 451 => 'loop' }, + 'loop' => { 452 => 'loop' }, 'lowestbiostratigraphiczone' => { 109 => [\'GeologicalContext','GeologicalContextLowestBiostratigraphicZone'] }, - 'luminanceadjustmentaqua' => { 427 => 'LuminanceAdjustmentAqua' }, - 'luminanceadjustmentblue' => { 427 => 'LuminanceAdjustmentBlue' }, - 'luminanceadjustmentgreen' => { 427 => 'LuminanceAdjustmentGreen' }, - 'luminanceadjustmentmagenta' => { 427 => 'LuminanceAdjustmentMagenta' }, - 'luminanceadjustmentorange' => { 427 => 'LuminanceAdjustmentOrange' }, - 'luminanceadjustmentpurple' => { 427 => 'LuminanceAdjustmentPurple' }, - 'luminanceadjustmentred' => { 427 => 'LuminanceAdjustmentRed' }, - 'luminanceadjustmentyellow' => { 427 => 'LuminanceAdjustmentYellow' }, + 'luminanceadjustmentaqua' => { 428 => 'LuminanceAdjustmentAqua' }, + 'luminanceadjustmentblue' => { 428 => 'LuminanceAdjustmentBlue' }, + 'luminanceadjustmentgreen' => { 428 => 'LuminanceAdjustmentGreen' }, + 'luminanceadjustmentmagenta' => { 428 => 'LuminanceAdjustmentMagenta' }, + 'luminanceadjustmentorange' => { 428 => 'LuminanceAdjustmentOrange' }, + 'luminanceadjustmentpurple' => { 428 => 'LuminanceAdjustmentPurple' }, + 'luminanceadjustmentred' => { 428 => 'LuminanceAdjustmentRed' }, + 'luminanceadjustmentyellow' => { 428 => 'LuminanceAdjustmentYellow' }, 'luminancecurvelimits' => { 99 => 0x150 }, 'luminancecurvepoints' => { 99 => 0x126 }, - 'luminancenoisereduction' => { 94 => 0x20600, 100 => 0x5f, 354 => 0x1b }, - 'luminancenoisereductioncontrast' => { 427 => 'LuminanceNoiseReductionContrast' }, - 'luminancenoisereductiondetail' => { 427 => 'LuminanceNoiseReductionDetail' }, + 'luminancenoisereduction' => { 94 => 0x20600, 100 => 0x5f, 355 => 0x1b }, + 'luminancenoisereductioncontrast' => { 428 => 'LuminanceNoiseReductionContrast' }, + 'luminancenoisereductiondetail' => { 428 => 'LuminanceNoiseReductionDetail' }, 'luminancenr_tiff_jpeg' => { 100 => 0x6d }, - 'luminancesmoothing' => { 427 => 'LuminanceSmoothing' }, + 'luminancesmoothing' => { 428 => 'LuminanceSmoothing' }, 'lvshootingareadisplay' => { 75 => [0x40b,0x40c] }, - 'lyrics' => { 451 => 'lyrics' }, + 'lyrics' => { 452 => 'lyrics' }, 'm16cversion' => { 281 => 0x333 }, - 'macatom' => { 426 => 'macAtom' }, - 'macatomapplicationcode' => { 426 => [\'macAtom','macAtomApplicationCode'] }, - 'macatominvocationappleevent' => { 426 => [\'macAtom','macAtomInvocationAppleEvent'] }, - 'macatomposixprojectpath' => { 426 => [\'macAtom','macAtomPosixProjectPath'] }, - 'macro' => { 115 => 0x1020, 116 => 0x202, 269 => 0x202, 343 => 0x21, 353 => 0x202, 374 => 0xb040 }, + 'macatom' => { 427 => 'macAtom' }, + 'macatomapplicationcode' => { 427 => [\'macAtom','macAtomApplicationCode'] }, + 'macatominvocationappleevent' => { 427 => [\'macAtom','macAtomInvocationAppleEvent'] }, + 'macatomposixprojectpath' => { 427 => [\'macAtom','macAtomPosixProjectPath'] }, + 'macro' => { 115 => 0x1020, 116 => 0x202, 269 => 0x202, 344 => 0x21, 354 => 0x202, 375 => 0xb040 }, 'macroled' => { 267 => 0x120a }, 'macromagnification' => { 6 => 0x1b, 10 => 0x1b, 13 => 0x1b, 14 => 0x1b, 18 => 0x1b, 19 => 0x1b, 51 => 0x10 }, - 'macromode' => { 33 => 0x1, 164 => 0xb, 264 => 0x300, 285 => 0x1c, 344 => 0x1009 }, + 'macromode' => { 33 => 0x1, 164 => 0xb, 264 => 0x300, 285 => 0x1c, 345 => 0x1009 }, 'magentahsl' => { 94 => 0x20917 }, 'magicfilter' => { 264 => 0x52c }, 'magnifiedview' => { 77 => 0x11, 79 => 0x9 }, 'maindialexposurecomp' => { 258 => '0.6' }, - 'mainingredient' => { 443 => 'mainIngredient' }, - 'make' => { 89 => 0x0, 106 => 0x1, 110 => 0x10f, 140 => 'Make', 277 => 'Make', 289 => 0x10f, 440 => 'make', 447 => 'Make' }, - 'makernote' => { 431 => 'MakerNote' }, + 'mainingredient' => { 444 => 'mainIngredient' }, + 'make' => { 89 => 0x0, 106 => 0x1, 110 => 0x10f, 140 => 'Make', 277 => 'Make', 289 => 0x10f, 441 => 'make', 448 => 'Make' }, + 'makernote' => { 432 => 'MakerNote' }, 'makernoteapple' => { 108 => 'MakN', 110 => 0x927c }, 'makernotecanon' => { 108 => 'MakN', 110 => 0x927c }, 'makernotecasio' => { 108 => 'MakN', 110 => 0x927c }, @@ -3212,7 +3215,7 @@ 'makernotenikon2' => { 108 => 'MakN', 110 => 0x927c }, 'makernotenikon3' => { 108 => 'MakN', 110 => 0x927c }, 'makernotenintendo' => { 108 => 'MakN', 110 => 0x927c }, - 'makernoteoffset' => { 353 => 0xff }, + 'makernoteoffset' => { 354 => 0xff }, 'makernoteolympus' => { 108 => 'MakN', 110 => 0x927c }, 'makernoteolympus2' => { 108 => 'MakN', 110 => 0x927c }, 'makernotepanasonic' => { 108 => 'MakN', 110 => 0x927c }, @@ -3225,6 +3228,7 @@ 'makernotepentax6' => { 108 => 'MakN', 110 => 0x927c }, 'makernotephaseone' => { 108 => 'MakN', 110 => 0x927c }, 'makernotereconyx' => { 108 => 'MakN', 110 => 0x927c }, + 'makernotereconyx2' => { 108 => 'MakN', 110 => 0x927c }, 'makernotericoh' => { 108 => 'MakN', 110 => 0x927c }, 'makernotericoh2' => { 108 => 'MakN', 110 => 0x927c }, 'makernotericohtext' => { 108 => 'MakN', 110 => 0x927c }, @@ -3243,96 +3247,96 @@ 'makernotesony5' => { 108 => 'MakN', 110 => 0x927c }, 'makernotesonyericsson' => { 108 => 'MakN', 110 => 0x927c }, 'makernotesonysrf' => { 108 => 'MakN', 110 => 0x927c }, - 'makernotetype' => { 344 => 0x1 }, + 'makernotetype' => { 345 => 0x1 }, 'makernoteunknown' => { 108 => 'MakN', 110 => 0x927c }, 'makernoteunknownbinary' => { 108 => 'MakN', 110 => 0x927c }, 'makernoteunknowntext' => { 108 => 'MakN', 110 => 0x927c }, - 'makernoteversion' => { 169 => 0x0, 201 => 0x1, 269 => 0x0, 285 => 0x8000, 348 => 0x0, 351 => 0x1, 354 => [0x1d,0x1f], 365 => 0x2000 }, - 'managedfrom' => { 452 => 'ManagedFrom' }, - 'managedfromalternatepaths' => { 452 => [\'ManagedFrom','ManagedFromAlternatePaths'] }, - 'managedfromdocumentid' => { 452 => [\'ManagedFrom','ManagedFromDocumentID'] }, - 'managedfromfilepath' => { 452 => [\'ManagedFrom','ManagedFromFilePath'] }, - 'managedfromfrompart' => { 452 => [\'ManagedFrom','ManagedFromFromPart'] }, - 'managedfrominstanceid' => { 452 => [\'ManagedFrom','ManagedFromInstanceID'] }, - 'managedfromlastmodifydate' => { 452 => [\'ManagedFrom','ManagedFromLastModifyDate'] }, - 'managedfromlasturl' => { 452 => [\'ManagedFrom','ManagedFromLastURL'] }, - 'managedfromlinkcategory' => { 452 => [\'ManagedFrom','ManagedFromLinkCategory'] }, - 'managedfromlinkform' => { 452 => [\'ManagedFrom','ManagedFromLinkForm'] }, - 'managedfrommanager' => { 452 => [\'ManagedFrom','ManagedFromManager'] }, - 'managedfrommanagervariant' => { 452 => [\'ManagedFrom','ManagedFromManagerVariant'] }, - 'managedfrommanageto' => { 452 => [\'ManagedFrom','ManagedFromManageTo'] }, - 'managedfrommanageui' => { 452 => [\'ManagedFrom','ManagedFromManageUI'] }, - 'managedfrommaskmarkers' => { 452 => [\'ManagedFrom','ManagedFromMaskMarkers'] }, - 'managedfromoriginaldocumentid' => { 452 => [\'ManagedFrom','ManagedFromOriginalDocumentID'] }, - 'managedfrompartmapping' => { 452 => [\'ManagedFrom','ManagedFromPartMapping'] }, - 'managedfromplacedresolutionunit' => { 452 => [\'ManagedFrom','ManagedFromPlacedResolutionUnit'] }, - 'managedfromplacedxresolution' => { 452 => [\'ManagedFrom','ManagedFromPlacedXResolution'] }, - 'managedfromplacedyresolution' => { 452 => [\'ManagedFrom','ManagedFromPlacedYResolution'] }, - 'managedfromrenditionclass' => { 452 => [\'ManagedFrom','ManagedFromRenditionClass'] }, - 'managedfromrenditionparams' => { 452 => [\'ManagedFrom','ManagedFromRenditionParams'] }, - 'managedfromtopart' => { 452 => [\'ManagedFrom','ManagedFromToPart'] }, - 'managedfromversionid' => { 452 => [\'ManagedFrom','ManagedFromVersionID'] }, - 'manager' => { 452 => 'Manager' }, - 'managervariant' => { 452 => 'ManagerVariant' }, - 'manageto' => { 452 => 'ManageTo' }, - 'manageui' => { 452 => 'ManageUI' }, - 'manifest' => { 452 => 'Manifest' }, - 'manifestlinkform' => { 452 => [\'Manifest','ManifestLinkForm'] }, - 'manifestplacedresolutionunit' => { 452 => [\'Manifest','ManifestPlacedResolutionUnit'] }, - 'manifestplacedxresolution' => { 452 => [\'Manifest','ManifestPlacedXResolution'] }, - 'manifestplacedyresolution' => { 452 => [\'Manifest','ManifestPlacedYResolution'] }, - 'manifestreference' => { 452 => [\'Manifest','ManifestReference'] }, - 'manifestreferencealternatepaths' => { 452 => [\'Manifest','ManifestReferenceAlternatePaths'] }, - 'manifestreferencedocumentid' => { 452 => [\'Manifest','ManifestReferenceDocumentID'] }, - 'manifestreferencefilepath' => { 452 => [\'Manifest','ManifestReferenceFilePath'] }, - 'manifestreferencefrompart' => { 452 => [\'Manifest','ManifestReferenceFromPart'] }, - 'manifestreferenceinstanceid' => { 452 => [\'Manifest','ManifestReferenceInstanceID'] }, - 'manifestreferencelastmodifydate' => { 452 => [\'Manifest','ManifestReferenceLastModifyDate'] }, - 'manifestreferencelasturl' => { 452 => [\'Manifest','ManifestReferenceLastURL'] }, - 'manifestreferencelinkcategory' => { 452 => [\'Manifest','ManifestReferenceLinkCategory'] }, - 'manifestreferencelinkform' => { 452 => [\'Manifest','ManifestReferenceLinkForm'] }, - 'manifestreferencemanager' => { 452 => [\'Manifest','ManifestReferenceManager'] }, - 'manifestreferencemanagervariant' => { 452 => [\'Manifest','ManifestReferenceManagerVariant'] }, - 'manifestreferencemanageto' => { 452 => [\'Manifest','ManifestReferenceManageTo'] }, - 'manifestreferencemanageui' => { 452 => [\'Manifest','ManifestReferenceManageUI'] }, - 'manifestreferencemaskmarkers' => { 452 => [\'Manifest','ManifestReferenceMaskMarkers'] }, - 'manifestreferenceoriginaldocumentid' => { 452 => [\'Manifest','ManifestReferenceOriginalDocumentID'] }, - 'manifestreferencepartmapping' => { 452 => [\'Manifest','ManifestReferencePartMapping'] }, - 'manifestreferenceplacedresolutionunit' => { 452 => [\'Manifest','ManifestReferencePlacedResolutionUnit'] }, - 'manifestreferenceplacedxresolution' => { 452 => [\'Manifest','ManifestReferencePlacedXResolution'] }, - 'manifestreferenceplacedyresolution' => { 452 => [\'Manifest','ManifestReferencePlacedYResolution'] }, - 'manifestreferencerenditionclass' => { 452 => [\'Manifest','ManifestReferenceRenditionClass'] }, - 'manifestreferencerenditionparams' => { 452 => [\'Manifest','ManifestReferenceRenditionParams'] }, - 'manifestreferencetopart' => { 452 => [\'Manifest','ManifestReferenceToPart'] }, - 'manifestreferenceversionid' => { 452 => [\'Manifest','ManifestReferenceVersionID'] }, + 'makernoteversion' => { 169 => 0x0, 201 => 0x1, 269 => 0x0, 285 => 0x8000, 349 => 0x0, 352 => 0x1, 355 => [0x1d,0x1f], 366 => 0x2000 }, + 'managedfrom' => { 453 => 'ManagedFrom' }, + 'managedfromalternatepaths' => { 453 => [\'ManagedFrom','ManagedFromAlternatePaths'] }, + 'managedfromdocumentid' => { 453 => [\'ManagedFrom','ManagedFromDocumentID'] }, + 'managedfromfilepath' => { 453 => [\'ManagedFrom','ManagedFromFilePath'] }, + 'managedfromfrompart' => { 453 => [\'ManagedFrom','ManagedFromFromPart'] }, + 'managedfrominstanceid' => { 453 => [\'ManagedFrom','ManagedFromInstanceID'] }, + 'managedfromlastmodifydate' => { 453 => [\'ManagedFrom','ManagedFromLastModifyDate'] }, + 'managedfromlasturl' => { 453 => [\'ManagedFrom','ManagedFromLastURL'] }, + 'managedfromlinkcategory' => { 453 => [\'ManagedFrom','ManagedFromLinkCategory'] }, + 'managedfromlinkform' => { 453 => [\'ManagedFrom','ManagedFromLinkForm'] }, + 'managedfrommanager' => { 453 => [\'ManagedFrom','ManagedFromManager'] }, + 'managedfrommanagervariant' => { 453 => [\'ManagedFrom','ManagedFromManagerVariant'] }, + 'managedfrommanageto' => { 453 => [\'ManagedFrom','ManagedFromManageTo'] }, + 'managedfrommanageui' => { 453 => [\'ManagedFrom','ManagedFromManageUI'] }, + 'managedfrommaskmarkers' => { 453 => [\'ManagedFrom','ManagedFromMaskMarkers'] }, + 'managedfromoriginaldocumentid' => { 453 => [\'ManagedFrom','ManagedFromOriginalDocumentID'] }, + 'managedfrompartmapping' => { 453 => [\'ManagedFrom','ManagedFromPartMapping'] }, + 'managedfromplacedresolutionunit' => { 453 => [\'ManagedFrom','ManagedFromPlacedResolutionUnit'] }, + 'managedfromplacedxresolution' => { 453 => [\'ManagedFrom','ManagedFromPlacedXResolution'] }, + 'managedfromplacedyresolution' => { 453 => [\'ManagedFrom','ManagedFromPlacedYResolution'] }, + 'managedfromrenditionclass' => { 453 => [\'ManagedFrom','ManagedFromRenditionClass'] }, + 'managedfromrenditionparams' => { 453 => [\'ManagedFrom','ManagedFromRenditionParams'] }, + 'managedfromtopart' => { 453 => [\'ManagedFrom','ManagedFromToPart'] }, + 'managedfromversionid' => { 453 => [\'ManagedFrom','ManagedFromVersionID'] }, + 'manager' => { 453 => 'Manager' }, + 'managervariant' => { 453 => 'ManagerVariant' }, + 'manageto' => { 453 => 'ManageTo' }, + 'manageui' => { 453 => 'ManageUI' }, + 'manifest' => { 453 => 'Manifest' }, + 'manifestlinkform' => { 453 => [\'Manifest','ManifestLinkForm'] }, + 'manifestplacedresolutionunit' => { 453 => [\'Manifest','ManifestPlacedResolutionUnit'] }, + 'manifestplacedxresolution' => { 453 => [\'Manifest','ManifestPlacedXResolution'] }, + 'manifestplacedyresolution' => { 453 => [\'Manifest','ManifestPlacedYResolution'] }, + 'manifestreference' => { 453 => [\'Manifest','ManifestReference'] }, + 'manifestreferencealternatepaths' => { 453 => [\'Manifest','ManifestReferenceAlternatePaths'] }, + 'manifestreferencedocumentid' => { 453 => [\'Manifest','ManifestReferenceDocumentID'] }, + 'manifestreferencefilepath' => { 453 => [\'Manifest','ManifestReferenceFilePath'] }, + 'manifestreferencefrompart' => { 453 => [\'Manifest','ManifestReferenceFromPart'] }, + 'manifestreferenceinstanceid' => { 453 => [\'Manifest','ManifestReferenceInstanceID'] }, + 'manifestreferencelastmodifydate' => { 453 => [\'Manifest','ManifestReferenceLastModifyDate'] }, + 'manifestreferencelasturl' => { 453 => [\'Manifest','ManifestReferenceLastURL'] }, + 'manifestreferencelinkcategory' => { 453 => [\'Manifest','ManifestReferenceLinkCategory'] }, + 'manifestreferencelinkform' => { 453 => [\'Manifest','ManifestReferenceLinkForm'] }, + 'manifestreferencemanager' => { 453 => [\'Manifest','ManifestReferenceManager'] }, + 'manifestreferencemanagervariant' => { 453 => [\'Manifest','ManifestReferenceManagerVariant'] }, + 'manifestreferencemanageto' => { 453 => [\'Manifest','ManifestReferenceManageTo'] }, + 'manifestreferencemanageui' => { 453 => [\'Manifest','ManifestReferenceManageUI'] }, + 'manifestreferencemaskmarkers' => { 453 => [\'Manifest','ManifestReferenceMaskMarkers'] }, + 'manifestreferenceoriginaldocumentid' => { 453 => [\'Manifest','ManifestReferenceOriginalDocumentID'] }, + 'manifestreferencepartmapping' => { 453 => [\'Manifest','ManifestReferencePartMapping'] }, + 'manifestreferenceplacedresolutionunit' => { 453 => [\'Manifest','ManifestReferencePlacedResolutionUnit'] }, + 'manifestreferenceplacedxresolution' => { 453 => [\'Manifest','ManifestReferencePlacedXResolution'] }, + 'manifestreferenceplacedyresolution' => { 453 => [\'Manifest','ManifestReferencePlacedYResolution'] }, + 'manifestreferencerenditionclass' => { 453 => [\'Manifest','ManifestReferenceRenditionClass'] }, + 'manifestreferencerenditionparams' => { 453 => [\'Manifest','ManifestReferenceRenditionParams'] }, + 'manifestreferencetopart' => { 453 => [\'Manifest','ManifestReferenceToPart'] }, + 'manifestreferenceversionid' => { 453 => [\'Manifest','ManifestReferenceVersionID'] }, 'manometerpressure' => { 264 => 0x900, 285 => 0x86 }, 'manometerreading' => { 264 => 0x901 }, 'manualafpointselectpattern' => { 75 => 0x513 }, 'manualafpointselpattern' => { 2 => 0xf }, 'manualflash' => { 267 => 0x1209 }, - 'manualflashoutput' => { 33 => 0x29, 249 => '8.2', 252 => '22.2', 253 => '23.1', 254 => '23.2', 256 => '16.2', 257 => '23.2', 258 => '8.2', 259 => '23.2', 262 => '24.2', 344 => 0x100c }, + 'manualflashoutput' => { 33 => 0x29, 249 => '8.2', 252 => '22.2', 253 => '23.1', 254 => '23.2', 256 => '16.2', 257 => '23.2', 258 => '8.2', 259 => '23.2', 262 => '24.2', 345 => 0x100c }, 'manualflashstrength' => { 264 => 0x406 }, - 'manualfocusdistance' => { 201 => 0x85, 269 => 0x100c, 353 => 0x223 }, + 'manualfocusdistance' => { 201 => 0x85, 269 => 0x100c, 354 => 0x223 }, 'manualtv' => { 74 => 0x5, 75 => 0x705 }, 'manufacturedate' => { 174 => 0x6705, 299 => 0x1 }, - 'manufacturedate1' => { 346 => 0x4 }, - 'manufacturedate2' => { 346 => 0x5 }, - 'manufacturer' => { 412 => 'Manufacturer', 440 => 'manufacturer' }, - 'marked' => { 438 => 'Marked', 455 => 'Marked' }, - 'markers' => { 451 => 'markers' }, - 'markerscomment' => { 451 => [\'markers','markersComment'] }, - 'markerscuepointparams' => { 451 => [\'markers','markersCuePointParams'] }, - 'markerscuepointparamskey' => { 451 => [\'markers','markersCuePointParamsKey'] }, - 'markerscuepointparamsvalue' => { 451 => [\'markers','markersCuePointParamsValue'] }, - 'markerscuepointtype' => { 451 => [\'markers','markersCuePointType'] }, - 'markersduration' => { 451 => [\'markers','markersDuration'] }, - 'markerslocation' => { 451 => [\'markers','markersLocation'] }, - 'markersname' => { 451 => [\'markers','markersName'] }, - 'markersprobability' => { 451 => [\'markers','markersProbability'] }, - 'markersspeaker' => { 451 => [\'markers','markersSpeaker'] }, - 'markersstarttime' => { 451 => [\'markers','markersStartTime'] }, - 'markerstarget' => { 451 => [\'markers','markersTarget'] }, - 'markerstype' => { 451 => [\'markers','markersType'] }, + 'manufacturedate1' => { 347 => 0x4 }, + 'manufacturedate2' => { 347 => 0x5 }, + 'manufacturer' => { 413 => 'Manufacturer', 441 => 'manufacturer' }, + 'marked' => { 439 => 'Marked', 456 => 'Marked' }, + 'markers' => { 452 => 'markers' }, + 'markerscomment' => { 452 => [\'markers','markersComment'] }, + 'markerscuepointparams' => { 452 => [\'markers','markersCuePointParams'] }, + 'markerscuepointparamskey' => { 452 => [\'markers','markersCuePointParamsKey'] }, + 'markerscuepointparamsvalue' => { 452 => [\'markers','markersCuePointParamsValue'] }, + 'markerscuepointtype' => { 452 => [\'markers','markersCuePointType'] }, + 'markersduration' => { 452 => [\'markers','markersDuration'] }, + 'markerslocation' => { 452 => [\'markers','markersLocation'] }, + 'markersname' => { 452 => [\'markers','markersName'] }, + 'markersprobability' => { 452 => [\'markers','markersProbability'] }, + 'markersspeaker' => { 452 => [\'markers','markersSpeaker'] }, + 'markersstarttime' => { 452 => [\'markers','markersStartTime'] }, + 'markerstarget' => { 452 => [\'markers','markersTarget'] }, + 'markerstype' => { 452 => [\'markers','markersType'] }, 'maskedareas' => { 110 => 0xc68e }, 'masterdocumentid' => { 118 => 0xb9 }, 'mastergain' => { 208 => 0x50 }, @@ -3340,19 +3344,19 @@ 'maxaperture' => { 33 => 0x1a, 130 => 0x6103, 147 => 'MaxAperture', 164 => 0x17, 170 => 0x49c5, 265 => 0x20a, 310 => '14.1' }, 'maxapertureatmaxfocal' => { 115 => 0x1407, 147 => 'MaxApertureAtMaxFocal', 196 => 0xb, 197 => 0x10, 198 => 0x11, 265 => 0x206 }, 'maxapertureatminfocal' => { 115 => 0x1406, 196 => 0xa, 197 => 0xf, 198 => 0x10, 265 => 0x205 }, - 'maxaperturevalue' => { 110 => 0x9205, 328 => 0x414, 431 => 'MaxApertureValue' }, - 'maxavailheight' => { 437 => 'MaxAvailHeight' }, - 'maxavailwidth' => { 437 => 'MaxAvailWidth' }, + 'maxaperturevalue' => { 110 => 0x9205, 328 => 0x414, 432 => 'MaxApertureValue' }, + 'maxavailheight' => { 438 => 'MaxAvailHeight' }, + 'maxavailwidth' => { 438 => 'MaxAvailWidth' }, 'maxcontinuousrelease' => { 247 => 0xb, 248 => 0xc, 250 => '12.1', 251 => '12.1', 256 => 0xc, 257 => 0xb, 260 => '12.1', 261 => '12.1' }, 'maxfaces' => { 268 => 0x1202 }, - 'maxfocallength' => { 6 => 0xe6, 7 => 0x10, 8 => 0x1ab, 9 => 0x13, 10 => 0x115, 11 => 0x13, 12 => 0x153, 13 => 0xda, 15 => 0xfa, 16 => 0xee, 17 => 0x103, 18 => 0x95, 19 => 0xea, 20 => 0x157, 21 => 0xee, 22 => 0xec, 23 => 0x12b, 24 => 0x165, 25 => 0x16a, 26 => 0x188, 27 => 0x116, 28 => 0x18d, 33 => 0x17, 115 => 0x1405, 147 => 'MaxFocalLength', 196 => 0x9, 197 => 0xe, 198 => 0xf, 265 => 0x208, 386 => 0x127c, 387 => 0x1138, 388 => 0x330, 389 => 0x330, 390 => 0x30e }, + 'maxfocallength' => { 6 => 0xe6, 7 => 0x10, 8 => 0x1ab, 9 => 0x13, 10 => 0x115, 11 => 0x13, 12 => 0x153, 13 => 0xda, 15 => 0xfa, 16 => 0xee, 17 => 0x103, 18 => 0x95, 19 => 0xea, 20 => 0x157, 21 => 0xee, 22 => 0xec, 23 => 0x12b, 24 => 0x165, 25 => 0x16a, 26 => 0x188, 27 => 0x116, 28 => 0x18d, 33 => 0x17, 115 => 0x1405, 147 => 'MaxFocalLength', 196 => 0x9, 197 => 0xe, 198 => 0xf, 265 => 0x208, 387 => 0x127c, 388 => 0x1138, 389 => 0x330, 390 => 0x330, 391 => 0x30e }, 'maximumdensityrange' => { 120 => 0x8c }, - 'maxpagesize' => { 456 => 'MaxPageSize' }, - 'maxpagesizeh' => { 456 => [\'MaxPageSize','MaxPageSizeH'] }, - 'maxpagesizeunit' => { 456 => [\'MaxPageSize','MaxPageSizeUnit'] }, - 'maxpagesizew' => { 456 => [\'MaxPageSize','MaxPageSizeW'] }, + 'maxpagesize' => { 457 => 'MaxPageSize' }, + 'maxpagesizeh' => { 457 => [\'MaxPageSize','MaxPageSizeH'] }, + 'maxpagesizeunit' => { 457 => [\'MaxPageSize','MaxPageSizeUnit'] }, + 'maxpagesizew' => { 457 => [\'MaxPageSize','MaxPageSizeW'] }, 'maxsamplevalue' => { 110 => 0x119 }, - 'maxstorage' => { 446 => 'maxstorage' }, + 'maxstorage' => { 447 => 'maxstorage' }, 'mb-d10batteries' => { 247 => '12.6' }, 'mb-d10batterytype' => { 256 => '13.3' }, 'mb-d11batterytype' => { 257 => '2.3' }, @@ -3364,7 +3368,7 @@ 'mditemfindercomment' => { 157 => 'MDItemFinderComment' }, 'mditemfscreationdate' => { 157 => 'MDItemFSCreationDate' }, 'mditemfslabel' => { 157 => 'MDItemFSLabel' }, - 'meal' => { 443 => 'meal' }, + 'meal' => { 444 => 'meal' }, 'measuredev' => { 27 => 0x9, 69 => 0x3, 88 => 0x1814, 140 => 'MeasuredEV' }, 'measuredev2' => { 12 => 0x8, 27 => 0x8, 69 => 0x17 }, 'measuredev3' => { 12 => 0x9 }, @@ -3381,49 +3385,51 @@ 'measurementtype' => { 109 => [\'MeasurementOrFact','MeasurementOrFactMeasurementType'] }, 'measurementunit' => { 109 => [\'MeasurementOrFact','MeasurementOrFactMeasurementUnit'] }, 'measurementvalue' => { 109 => [\'MeasurementOrFact','MeasurementOrFactMeasurementValue'] }, - 'measuretype' => { 412 => 'MeasureType' }, + 'measuretype' => { 413 => 'MeasureType' }, 'mechanicalshuttercount' => { 201 => 0x37 }, 'mediaconstraints' => { 274 => 'MediaConstraints' }, 'mediacreatedate' => { 336 => 0x1 }, - 'mediaeventiddate' => { 417 => 'MediaEventIdDate' }, + 'mediaeventiddate' => { 418 => 'MediaEventIdDate' }, 'mediamodifydate' => { 336 => 0x2 }, 'mediasummarycode' => { 274 => 'MediaSummaryCode' }, 'memoaudioquality' => { 75 => 0x812 }, - 'memorycardconfiguration' => { 368 => 0x16 }, + 'memorycardconfiguration' => { 369 => 0x16 }, 'memorycardnumber' => { 188 => 0x2 }, 'menubuttondisplayposition' => { 73 => 0xb, 76 => 0xa, 77 => 0xb, 80 => 0xb }, 'menubuttonreturn' => { 81 => 0xb }, 'menumonitorofftime' => { 247 => '26.1', 248 => '22.1', 250 => '22.1', 251 => '22.1', 255 => '21.1', 256 => '8.2', 257 => '21.1', 260 => '22.1', 261 => '22.1', 262 => '22.1' }, - 'metadatadate' => { 449 => 'MetadataDate' }, - 'metadatamoddate' => { 451 => 'metadataModDate' }, - 'metaversion' => { 381 => 0x34 }, - 'meterinfo1row1' => { 375 => 0x0, 376 => 0x0 }, - 'meterinfo1row2' => { 375 => 0x6c, 376 => 0x5a }, - 'meterinfo1row3' => { 375 => 0xd8, 376 => 0xb4 }, - 'meterinfo1row4' => { 375 => 0x144, 376 => 0x10e }, - 'meterinfo1row5' => { 375 => 0x1b0, 376 => 0x168 }, - 'meterinfo1row6' => { 375 => 0x21c, 376 => 0x1c2 }, - 'meterinfo1row7' => { 375 => 0x288, 376 => 0x21c }, - 'meterinfo2row1' => { 375 => 0x2f4, 376 => 0x276 }, - 'meterinfo2row2' => { 375 => 0x378, 376 => 0x2e4 }, - 'meterinfo2row3' => { 375 => 0x3fc, 376 => 0x352 }, - 'meterinfo2row4' => { 375 => 0x480, 376 => 0x3c0 }, - 'meterinfo2row5' => { 375 => 0x504, 376 => 0x42e }, - 'meterinfo2row6' => { 375 => 0x588, 376 => 0x49c }, - 'meterinfo2row7' => { 375 => 0x60c, 376 => 0x50a }, - 'meterinfo2row8' => { 375 => 0x690, 376 => 0x578 }, - 'meterinfo2row9' => { 375 => 0x714, 376 => 0x5e6 }, + 'metadatadate' => { 450 => 'MetadataDate' }, + 'metadatamoddate' => { 452 => 'metadataModDate' }, + 'metaversion' => { 382 => 0x34 }, + 'meterinfo1row1' => { 376 => 0x0, 377 => 0x0 }, + 'meterinfo1row2' => { 376 => 0x6c, 377 => 0x5a }, + 'meterinfo1row3' => { 376 => 0xd8, 377 => 0xb4 }, + 'meterinfo1row4' => { 376 => 0x144, 377 => 0x10e }, + 'meterinfo1row5' => { 376 => 0x1b0, 377 => 0x168 }, + 'meterinfo1row6' => { 376 => 0x21c, 377 => 0x1c2 }, + 'meterinfo1row7' => { 376 => 0x288, 377 => 0x21c }, + 'meterinfo2row1' => { 376 => 0x2f4, 377 => 0x276 }, + 'meterinfo2row2' => { 376 => 0x378, 377 => 0x2e4 }, + 'meterinfo2row3' => { 376 => 0x3fc, 377 => 0x352 }, + 'meterinfo2row4' => { 376 => 0x480, 377 => 0x3c0 }, + 'meterinfo2row5' => { 376 => 0x504, 377 => 0x42e }, + 'meterinfo2row6' => { 376 => 0x588, 377 => 0x49c }, + 'meterinfo2row7' => { 376 => 0x60c, 377 => 0x50a }, + 'meterinfo2row8' => { 376 => 0x690, 377 => 0x578 }, + 'meterinfo2row9' => { 376 => 0x714, 377 => 0x5e6 }, 'metering' => { 249 => '6.1' }, - 'meteringmode' => { 33 => 0x11, 110 => 0x9207, 126 => 0x1c, 164 => 0x7, 165 => 0x25, 167 => 0x12, 264 => 0x202, 319 => 0x17, 354 => 0x9, 362 => 0x15, 363 => 0x13, 364 => 0x7, 379 => 0x3, 382 => 0x1174, 383 => 0x1178, 384 => 0x1154, 385 => 0x11d0, 386 => 0x11ac, 387 => 0x1064, 388 => 0x25c, 389 => 0x25c, 390 => 0x24b, 431 => 'MeteringMode' }, - 'meteringmode2' => { 300 => '2.1', 374 => 0x202c }, + 'meteringmode' => { 33 => 0x11, 110 => 0x9207, 126 => 0x1c, 164 => 0x7, 165 => 0x25, 167 => 0x12, 264 => 0x202, 319 => 0x17, 355 => 0x9, 363 => 0x15, 364 => 0x13, 365 => 0x7, 380 => 0x3, 383 => 0x1174, 384 => 0x1178, 385 => 0x1154, 386 => 0x11d0, 387 => 0x11ac, 388 => 0x1064, 389 => 0x25c, 390 => 0x25c, 391 => 0x24b, 432 => 'MeteringMode' }, + 'meteringmode2' => { 300 => '2.1', 375 => 0x202c }, 'meteringmode3' => { 300 => '16.1' }, 'meteringoffscaleindicator' => { 167 => 0x53 }, 'meteringtime' => { 247 => '22.2', 249 => '3.2', 252 => '17.1', 253 => '18.1', 256 => '7.3', 257 => '18.1', 258 => '3.2', 262 => '19.1' }, + 'micro1version' => { 341 => 0x1f }, + 'micro2version' => { 341 => 0x2d }, 'mieversion' => { 148 => '0Vers' }, - 'mime' => { 412 => 'Mime' }, + 'mime' => { 413 => 'Mime' }, 'minaperture' => { 33 => 0x1b, 147 => 'MinAperture', 310 => '0.2' }, 'minaperturevalue' => { 328 => 0x415 }, - 'minfocallength' => { 6 => 0xe4, 7 => 0xe, 8 => 0x1a9, 9 => 0x11, 10 => 0x113, 11 => 0x11, 12 => 0x151, 13 => 0xd8, 15 => 0xf8, 16 => 0xec, 17 => 0x101, 18 => 0x93, 19 => 0xe8, 20 => 0x155, 21 => 0xec, 22 => 0xea, 23 => 0x129, 24 => 0x163, 25 => 0x168, 26 => 0x186, 27 => 0x114, 28 => 0x18b, 33 => 0x18, 115 => 0x1404, 147 => 'MinFocalLength', 196 => 0x8, 197 => 0xd, 198 => 0xe, 265 => 0x207, 386 => 0x127a, 387 => 0x1136, 388 => 0x32e, 389 => 0x32e, 390 => 0x30c }, + 'minfocallength' => { 6 => 0xe4, 7 => 0xe, 8 => 0x1a9, 9 => 0x11, 10 => 0x113, 11 => 0x11, 12 => 0x151, 13 => 0xd8, 15 => 0xf8, 16 => 0xec, 17 => 0x101, 18 => 0x93, 19 => 0xe8, 20 => 0x155, 21 => 0xec, 22 => 0xea, 23 => 0x129, 24 => 0x163, 25 => 0x168, 26 => 0x186, 27 => 0x114, 28 => 0x18b, 33 => 0x18, 115 => 0x1404, 147 => 'MinFocalLength', 196 => 0x8, 197 => 0xd, 198 => 0xe, 265 => 0x207, 387 => 0x127a, 388 => 0x1136, 389 => 0x32e, 390 => 0x32e, 391 => 0x30c }, 'minfocusdistance' => { 310 => 0x3 }, 'minoltadate' => { 164 => 0x15 }, 'minoltaimagesize' => { 164 => 0x4, 165 => 0xc, 166 => 0x2, 169 => 0x103 }, @@ -3433,19 +3439,19 @@ 'minormodelagedisclosure' => { 274 => 'MinorModelAgeDisclosure' }, 'minsamplevalue' => { 110 => 0x118 }, 'mirrorlockup' => { 73 => 0xc, 74 => 0xc, 75 => 0x60f, 76 => 0xb, 77 => 0xc, 78 => 0x6, 79 => 0x6, 80 => 0xc, 81 => 0x3 }, - 'mobilecountrycode' => { 425 => 'mcc' }, - 'mobilenetworkcode' => { 425 => 'mnc' }, - 'moddate' => { 277 => 'modify-date', 438 => 'ModDate' }, - 'modedialposition' => { 368 => 0x14 }, - 'model' => { 89 => 0x6, 110 => 0x110, 140 => 'Model', 277 => 'Model', 289 => 0x110, 319 => 0x23f, 354 => 0x84, 412 => 'Model', 440 => 'model', 447 => 'Model' }, - 'modelage' => { 437 => 'ModelAge' }, + 'mobilecountrycode' => { 426 => 'mcc' }, + 'mobilenetworkcode' => { 426 => 'mnc' }, + 'moddate' => { 277 => 'modify-date', 439 => 'ModDate' }, + 'modedialposition' => { 369 => 0x14 }, + 'model' => { 89 => 0x6, 110 => 0x110, 140 => 'Model', 277 => 'Model', 289 => 0x110, 319 => 0x23f, 355 => 0x84, 413 => 'Model', 441 => 'model', 448 => 'Model' }, + 'modelage' => { 438 => 'ModelAge' }, 'modelid' => { 263 => 0x0 }, 'modelingflash' => { 247 => '21.4', 248 => '31.1', 250 => '31.1', 251 => '31.1', 256 => '26.4', 257 => '30.2', 258 => '7.4', 259 => '30.1', 260 => '31.1', 261 => '31.1', 262 => '31.3' }, 'modelreleaseid' => { 274 => 'ModelReleaseID' }, 'modelreleasestatus' => { 274 => 'ModelReleaseStatus' }, - 'modelreleaseyear' => { 394 => 0x52, 395 => 0x46, 396 => 0x53 }, - 'modelyear' => { 440 => 'modelYear' }, - 'modificationdate' => { 441 => 'modificationDate' }, + 'modelreleaseyear' => { 395 => 0x52, 396 => 0x46, 397 => 0x53 }, + 'modelyear' => { 441 => 'modelYear' }, + 'modificationdate' => { 442 => 'modificationDate' }, 'modifiedcolortemp' => { 59 => 0x9 }, 'modifieddigitalgain' => { 59 => 0xb }, 'modifiedparamflag' => { 52 => 0x1 }, @@ -3459,8 +3465,8 @@ 'modifiedwhitebalance' => { 59 => 0x8 }, 'modifiedwhitebalanceblue' => { 59 => 0x7 }, 'modifiedwhitebalancered' => { 59 => 0x6 }, - 'modifydate' => { 110 => 0x132, 141 => 'ModifyDate', 273 => 'ModDate', 275 => 'tIME', 335 => 'ModDate', 337 => 0x2, 449 => 'ModifyDate' }, - 'moirefilter' => { 110 => 0xfe58, 427 => 'MoireFilter' }, + 'modifydate' => { 110 => 0x132, 141 => 'ModifyDate', 273 => 'ModDate', 275 => 'tIME', 335 => 'ModDate', 337 => 0x2, 450 => 'ModifyDate' }, + 'moirefilter' => { 110 => 0xfe58, 428 => 'MoireFilter' }, 'monitordisplayoff' => { 167 => 0x4c }, 'monitorofftime' => { 247 => '18.2', 249 => '3.1', 258 => '3.1' }, 'monochromecolor' => { 264 => 0x53b }, @@ -3482,8 +3488,8 @@ 'monochromeunsharpmaskthreshold' => { 100 => 0xb4 }, 'monochromevignetting' => { 264 => 0x53a }, 'monthdaycreated' => { 126 => 0x12, 135 => 0xe }, - 'moonphase' => { 340 => 0x12 }, - 'morepermissions' => { 424 => 'morePermissions' }, + 'moonphase' => { 340 => 0x12, 341 => 0x43 }, + 'morepermissions' => { 425 => 'morePermissions' }, 'motionsensitivity' => { 340 => 0x29 }, 'movieaelockbuttonassignment' => { 260 => '40.1' }, 'moviefunc1button' => { 250 => '41.1', 251 => '41.1', 261 => '41.1' }, @@ -3494,17 +3500,17 @@ 'movieshutterbutton' => { 248 => '38.3', 250 => '38.3', 251 => '38.3', 260 => '38.3', 261 => '38.3' }, 'moviesubselectorassignment' => { 248 => '48.2' }, 'moviesubselectorassignmentplusdials' => { 248 => '53.1' }, - 'multiburstimageheight' => { 374 => 0x1002 }, - 'multiburstimagewidth' => { 374 => 0x1001 }, - 'multiburstmode' => { 374 => 0x1000 }, + 'multiburstimageheight' => { 375 => 0x1002 }, + 'multiburstimagewidth' => { 375 => 0x1001 }, + 'multiburstmode' => { 375 => 0x1000 }, 'multicontrollerwhilemetering' => { 75 => 0x517 }, 'multiexposure' => { 61 => 0x1 }, 'multiexposureautogain' => { 202 => 0x3 }, 'multiexposurecontrol' => { 61 => 0x2 }, 'multiexposuremode' => { 202 => 0x1 }, 'multiexposureshots' => { 61 => 0x3, 202 => 0x2 }, - 'multiframenoisereduction' => { 364 => 0x35, 374 => 0x200b, 379 => 0x15 }, - 'multiframenreffect' => { 374 => 0x2023 }, + 'multiframenoisereduction' => { 365 => 0x35, 375 => 0x200b, 380 => 0x15 }, + 'multiframenreffect' => { 375 => 0x2023 }, 'multifunctionlock' => { 75 => 0x70f }, 'multipleexposuremode' => { 268 => 0x101c }, 'multipleexposureset' => { 300 => '10.1' }, @@ -3515,17 +3521,17 @@ 'multiselectorplaybackmode' => { 247 => ['13.5','9.2'], 248 => '10.2', 251 => '10.2', 256 => '27.2', 260 => '10.2', 261 => '10.2' }, 'multiselectorshootmode' => { 247 => '9.1', 248 => '10.1', 250 => '10.1', 251 => '10.1', 256 => '27.1', 260 => '10.1', 261 => '10.1' }, 'mycolormode' => { 62 => 0x2 }, - 'nationalcatalognumber' => { 441 => 'nationalCatalogNumber' }, - 'nativedigest' => { 431 => 'NativeDigest', 447 => 'NativeDigest' }, + 'nationalcatalognumber' => { 442 => 'nationalCatalogNumber' }, + 'nativedigest' => { 432 => 'NativeDigest', 448 => 'NativeDigest' }, 'ncdfileinfo' => { 124 => 0x414 }, - 'ndfilter' => { 69 => 0x1c, 264 => 0x204, 344 => 0x1019 }, - 'near' => { 412 => 'Near' }, + 'ndfilter' => { 69 => 0x1c, 264 => 0x204, 345 => 0x1019 }, + 'near' => { 413 => 'Near' }, 'nefbitdepth' => { 201 => 0xe22 }, 'nefcompression' => { 201 => 0x93 }, 'neflinearizationtable' => { 201 => 0x96 }, - 'negativecachelargepreviewsize' => { 427 => 'NegativeCacheLargePreviewSize' }, - 'negativecachemaximumsize' => { 427 => 'NegativeCacheMaximumSize' }, - 'negativecachepath' => { 427 => 'NegativeCachePath' }, + 'negativecachelargepreviewsize' => { 428 => 'NegativeCacheLargePreviewSize' }, + 'negativecachemaximumsize' => { 428 => 'NegativeCacheMaximumSize' }, + 'negativecachepath' => { 428 => 'NegativeCachePath' }, 'neutraldensityfilter' => { 319 => 0x88 }, 'neutraloutputhighlightpoint' => { 100 => 0x2f }, 'neutraloutputshadowpoint' => { 100 => 0x30 }, @@ -3543,7 +3549,7 @@ 'neutraunsharpmaskstrength' => { 100 => 0xa4 }, 'newrawimagedigest' => { 110 => 0xc7a7 }, 'newsphotoversion' => { 120 => 0x0 }, - 'nickname' => { 449 => 'Nickname' }, + 'nickname' => { 450 => 'Nickname' }, 'nikoncapturedata' => { 201 => 0xe01 }, 'nikoncaptureeditversions' => { 201 => 0xe13 }, 'nikoncaptureoutput' => { 201 => 0xe1e }, @@ -3552,41 +3558,41 @@ 'nikonimagesize' => { 215 => '723.1', 216 => '732.1', 225 => 0x2c4 }, 'noisefilter' => { 264 => 0x527 }, 'noiseprofile' => { 110 => 0xc761 }, - 'noisereduction' => { 115 => 0x100b, 165 => 0xb0, 166 => 0x60, 167 => 0x3f, 201 => 0x95, 240 => 0x753dcbc0, 241 => 0x17, 264 => 0x50a, 269 => 0x103a, 285 => 0x2d, 319 => 0x49, 344 => 0x100f, 346 => 0x2a }, + 'noisereduction' => { 115 => 0x100b, 165 => 0xb0, 166 => 0x60, 167 => 0x3f, 201 => 0x95, 240 => 0x753dcbc0, 241 => 0x17, 264 => 0x50a, 269 => 0x103a, 285 => 0x2d, 319 => 0x49, 345 => 0x100f, 347 => 0x2a }, 'noisereduction2' => { 268 => 0x1010 }, 'noisereductionapplied' => { 110 => 0xc6f7 }, 'noisereductionintensity' => { 241 => 0x9 }, 'noisereductionmethod' => { 241 => 0x11 }, - 'noisereductionmode' => { 407 => 0x801e }, + 'noisereductionmode' => { 408 => 0x801e }, 'noisereductionsharpness' => { 241 => 0xd }, - 'noisereductionvalue' => { 407 => 0x8027 }, + 'noisereductionvalue' => { 408 => 0x8027 }, 'nomemorycard' => { 247 => '22.1', 248 => '4.2', 249 => '0.3', 252 => '2.4', 253 => '3.2', 254 => '3.2', 256 => '33.7', 257 => '3.2', 258 => '0.3', 260 => '4.2', 262 => '4.5' }, 'nominalmaxaperture' => { 310 => 0xa }, 'nominalminaperture' => { 310 => '10.1' }, 'normalwhitelevel' => { 40 => [0x2b8,0x2cf,0x2d3], 42 => 0x1e3, 43 => [0x1fc,0x2dc], 44 => [0x230,0x30e] }, - 'notes' => { 408 => 'Notes', 421 => 'notes' }, - 'npages' => { 456 => 'NPages' }, + 'notes' => { 409 => 'Notes', 422 => 'notes' }, + 'npages' => { 457 => 'NPages' }, 'nrwdata' => { 201 => 0x14 }, 'nullrecord' => { 88 => 0x0 }, 'numafpoints' => { 296 => 0x2 }, - 'number' => { 441 => 'number' }, - 'numberofbeats' => { 451 => 'numberOfBeats' }, + 'number' => { 442 => 'number' }, + 'numberofbeats' => { 452 => 'numberOfBeats' }, 'numberoffocuspoints' => { 250 => '1.2', 251 => '1.2', 254 => '0.2', 255 => '0.3', 257 => '0.3' }, 'numfaceelements' => { 115 => 0x4200 }, 'numfacepositions' => { 279 => 0x0 }, 'numindexentries' => { 120 => 0x54 }, 'numwbentries' => { 290 => 0x0, 291 => 0x0 }, - 'object' => { 441 => 'object' }, + 'object' => { 442 => 'object' }, 'objectattributereference' => { 118 => 0x4 }, - 'objectcycle' => { 118 => 0x4b, 421 => 'ObjectCycle' }, - 'objectdescription' => { 440 => 'objectDescription' }, + 'objectcycle' => { 118 => 0x4b, 422 => 'ObjectCycle' }, + 'objectdescription' => { 441 => 'objectDescription' }, 'objectdistance' => { 103 => 0x6, 104 => 0x2022 }, 'objectname' => { 118 => 0x5 }, 'objectpreviewdata' => { 118 => 0xca }, 'objectpreviewfileformat' => { 118 => 0xc8 }, 'objectpreviewfileversion' => { 118 => 0xc9 }, - 'objectsubtype' => { 440 => 'objectSubtype' }, - 'objecttype' => { 440 => 'objectType' }, + 'objectsubtype' => { 441 => 'objectSubtype' }, + 'objecttype' => { 441 => 'objectType' }, 'objecttypereference' => { 118 => 0x3 }, 'occurrence' => { 109 => 'Occurrence' }, 'occurrenceassociatedmedia' => { 109 => [\'Occurrence','OccurrenceAssociatedMedia'] }, @@ -3612,13 +3618,13 @@ 'occurrencereproductivecondition' => { 109 => [\'Occurrence','OccurrenceReproductiveCondition'] }, 'occurrencesex' => { 109 => [\'Occurrence','OccurrenceSex'] }, 'occurrencestatus' => { 109 => [\'Occurrence','OccurrenceOccurrenceStatus'] }, - 'oecfcolumns' => { 431 => [\'OECF','OECFColumns'] }, - 'oecfnames' => { 431 => [\'OECF','OECFNames'] }, - 'oecfrows' => { 431 => [\'OECF','OECFRows'] }, - 'oecfvalues' => { 431 => [\'OECF','OECFValues'] }, - 'offsaledate' => { 441 => 'offSaleDate' }, - 'offsaledatea-platform' => { 441 => [\'offSaleDate','offSaleDateA-platform'] }, - 'offsaledatedate' => { 441 => [\'offSaleDate','offSaleDateDate'] }, + 'oecfcolumns' => { 432 => [\'OECF','OECFColumns'] }, + 'oecfnames' => { 432 => [\'OECF','OECFNames'] }, + 'oecfrows' => { 432 => [\'OECF','OECFRows'] }, + 'oecfvalues' => { 432 => [\'OECF','OECFValues'] }, + 'offsaledate' => { 442 => 'offSaleDate' }, + 'offsaledatea-platform' => { 442 => [\'offSaleDate','offSaleDateA-platform'] }, + 'offsaledatedate' => { 442 => [\'offSaleDate','offSaleDateDate'] }, 'offsetschema' => { 110 => 0xea1d }, 'offsettime' => { 110 => 0x9010 }, 'offsettimedigitized' => { 110 => 0x9012 }, @@ -3629,48 +3635,48 @@ 'olympusimagewidth' => { 269 => 0x102e }, 'oneshotafrelease' => { 2 => 0x9 }, 'onetouchwb' => { 269 => 0x302 }, - 'onsaledate' => { 441 => 'onSaleDate' }, - 'onsaledatea-platform' => { 441 => [\'onSaleDate','onSaleDateA-platform'] }, - 'onsaledatedate' => { 441 => [\'onSaleDate','onSaleDateDate'] }, - 'onsaleday' => { 441 => 'onSaleDay' }, - 'onsaledaya-platform' => { 441 => [\'onSaleDay','onSaleDayA-platform'] }, - 'onsaledayday' => { 441 => [\'onSaleDay','onSaleDayDay'] }, + 'onsaledate' => { 442 => 'onSaleDate' }, + 'onsaledatea-platform' => { 442 => [\'onSaleDate','onSaleDateA-platform'] }, + 'onsaledatedate' => { 442 => [\'onSaleDate','onSaleDateDate'] }, + 'onsaleday' => { 442 => 'onSaleDay' }, + 'onsaledaya-platform' => { 442 => [\'onSaleDay','onSaleDayA-platform'] }, + 'onsaledayday' => { 442 => [\'onSaleDay','onSaleDayDay'] }, 'opcodelist1' => { 110 => 0xc740 }, 'opcodelist2' => { 110 => 0xc741 }, 'opcodelist3' => { 110 => 0xc74e }, 'opticalzoom' => { 128 => 0xfa3d, 130 => [0x6006,0xf006], 131 => 0x1000, 132 => 0xf, 135 => 0x1e, 147 => 'OpticalZoom' }, 'opticalzoomcode' => { 69 => 0xa }, 'opticalzoommode' => { 285 => 0x34 }, - 'opticalzoomon' => { 353 => 0x219 }, - 'optionenddate' => { 444 => 'optionEndDate' }, - 'opto-electricconvfactor' => { 431 => 'OECF' }, + 'opticalzoomon' => { 354 => 0x219 }, + 'optionenddate' => { 445 => 'optionEndDate' }, + 'opto-electricconvfactor' => { 432 => 'OECF' }, 'orangehsl' => { 94 => 0x20911 }, 'ordernumber' => { 115 => 0x8002 }, - 'organisationinimagecode' => { 437 => 'OrganisationInImageCode' }, - 'organisationinimagename' => { 437 => 'OrganisationInImageName' }, - 'organization' => { 441 => 'organization' }, - 'orientation' => { 110 => 0x112, 289 => 0x112, 440 => 'orientation', 447 => 'Orientation' }, - 'orientation2' => { 379 => [0x28,0x2e] }, + 'organisationinimagecode' => { 438 => 'OrganisationInImageCode' }, + 'organisationinimagename' => { 438 => 'OrganisationInImageName' }, + 'organization' => { 442 => 'organization' }, + 'orientation' => { 110 => 0x112, 289 => 0x112, 441 => 'orientation', 448 => 'Orientation' }, + 'orientation2' => { 380 => [0x28,0x2e] }, 'orientationlinkedaf' => { 2 => 0xe }, 'orientationlinkedafpoint' => { 75 => 0x516 }, 'originalbestqualitysize' => { 110 => 0xc792 }, - 'originalcreatedatetime' => { 417 => 'OriginalCreateDateTime' }, + 'originalcreatedatetime' => { 418 => 'OriginalCreateDateTime' }, 'originaldecisiondata' => { 105 => 'OriginalDecisionData' }, 'originaldecisiondataoffset' => { 57 => 0x83 }, 'originaldefaultcropsize' => { 110 => 0xc793 }, 'originaldefaultfinalsize' => { 110 => 0xc791 }, 'originaldirectory' => { 283 => 0x408 }, - 'originaldocumentid' => { 452 => 'OriginalDocumentID' }, - 'originalfilename' => { 88 => 0x816, 124 => 0x3e9, 136 => 0x20, 283 => 0x407, 417 => 'OriginalFilename' }, + 'originaldocumentid' => { 453 => 'OriginalDocumentID' }, + 'originalfilename' => { 88 => 0x816, 124 => 0x3e9, 136 => 0x20, 283 => 0x407, 418 => 'OriginalFilename' }, 'originalimageheight' => { 71 => 0xc, 114 => 0x1 }, 'originalimagewidth' => { 71 => 0xb, 114 => 0x0 }, 'originalrawfiledata' => { 110 => 0xc68c }, 'originalrawfiledigest' => { 110 => 0xc71d }, 'originalrawfilename' => { 110 => 0xc68b }, 'originaltransmissionreference' => { 118 => 0x67 }, - 'originatingprogram' => { 118 => 0x41, 421 => 'OriginatingProgram' }, - 'originplatform' => { 441 => 'originPlatform' }, - 'os' => { 429 => 'os' }, + 'originatingprogram' => { 118 => 0x41, 422 => 'OriginatingProgram' }, + 'originplatform' => { 442 => 'originPlatform' }, + 'os' => { 430 => 'os' }, 'otherconditions' => { 274 => 'OtherConditions' }, 'otherconstraints' => { 274 => 'OtherConstraints' }, 'otherimage' => { 105 => 'OtherImage' }, @@ -3680,77 +3686,77 @@ 'otherlicensedocuments' => { 274 => 'OtherLicenseDocuments' }, 'otherlicenseinfo' => { 274 => 'OtherLicenseInfo' }, 'otherlicenserequirements' => { 274 => 'OtherLicenseRequirements' }, - 'outcue' => { 451 => 'outCue' }, - 'outcuescale' => { 451 => [\'outCue','outCueScale'] }, - 'outcuevalue' => { 451 => [\'outCue','outCueValue'] }, + 'outcue' => { 452 => 'outCue' }, + 'outcuescale' => { 452 => [\'outCue','outCueScale'] }, + 'outcuevalue' => { 452 => [\'outCue','outCueValue'] }, 'outputimageheight' => { 179 => 0x3 }, 'outputimagewidth' => { 179 => 0x2 }, 'outputprofile' => { 124 => 0x138b }, 'outputresolution' => { 179 => 0x4 }, - 'owner' => { 455 => 'Owner' }, + 'owner' => { 456 => 'Owner' }, 'ownerid' => { 118 => 0xbc }, - 'ownername' => { 14 => 0x10f, 57 => 0x9, 88 => 0x810, 110 => [0xa430,0xfde8], 140 => 'OwnerName', 423 => 'OwnerName', 432 => 'CameraOwnerName' }, + 'ownername' => { 14 => 0x10f, 57 => 0x9, 88 => 0x810, 110 => [0xa430,0xfde8], 140 => 'OwnerName', 424 => 'OwnerName', 433 => 'CameraOwnerName' }, 'padding' => { 110 => 0xea1c }, - 'pagecount' => { 441 => 'pageCount' }, - 'pageimage' => { 449 => [\'PageInfo','PageInfoImage'] }, - 'pageimageformat' => { 449 => [\'PageInfo','PageInfoFormat'] }, - 'pageimageheight' => { 449 => [\'PageInfo','PageInfoHeight'] }, - 'pageimagepagenumber' => { 449 => [\'PageInfo','PageInfoPageNumber'] }, - 'pageimagewidth' => { 449 => [\'PageInfo','PageInfoWidth'] }, - 'pageinfo' => { 449 => 'PageInfo' }, + 'pagecount' => { 442 => 'pageCount' }, + 'pageimage' => { 450 => [\'PageInfo','PageInfoImage'] }, + 'pageimageformat' => { 450 => [\'PageInfo','PageInfoFormat'] }, + 'pageimageheight' => { 450 => [\'PageInfo','PageInfoHeight'] }, + 'pageimagepagenumber' => { 450 => [\'PageInfo','PageInfoPageNumber'] }, + 'pageimagewidth' => { 450 => [\'PageInfo','PageInfoWidth'] }, + 'pageinfo' => { 450 => 'PageInfo' }, 'pagename' => { 110 => 0x11d }, 'pagenumber' => { 110 => 0x129 }, - 'pageprogressiondirection' => { 441 => 'pageProgressionDirection' }, - 'pagerange' => { 441 => 'pageRange' }, - 'paintbasedcorrectionmasks' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasks'] }, - 'paintbasedcorrections' => { 427 => 'PaintBasedCorrections' }, - 'paintcorrectionactive' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionActive'] }, - 'paintcorrectionamount' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionAmount'] }, - 'paintcorrectionbrightness' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalBrightness'] }, - 'paintcorrectionclarity' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity'] }, - 'paintcorrectionclarity2012' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity2012'] }, - 'paintcorrectioncontrast' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast'] }, - 'paintcorrectioncontrast2012' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast2012'] }, - 'paintcorrectiondefringe' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalDefringe'] }, - 'paintcorrectionexposure' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure'] }, - 'paintcorrectionexposure2012' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure2012'] }, - 'paintcorrectionhighlights2012' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalHighlights2012'] }, - 'paintcorrectionhue' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalToningHue'] }, - 'paintcorrectionluminancenoise' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalLuminanceNoise'] }, - 'paintcorrectionmaskalpha' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAlpha'] }, - 'paintcorrectionmaskangle' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAngle'] }, - 'paintcorrectionmaskbottom' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksBottom'] }, - 'paintcorrectionmaskcentervalue' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterValue'] }, - 'paintcorrectionmaskcenterweight' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterWeight'] }, - 'paintcorrectionmaskdabs' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksDabs'] }, - 'paintcorrectionmaskfeather' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFeather'] }, - 'paintcorrectionmaskflipped' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlipped'] }, - 'paintcorrectionmaskflow' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlow'] }, - 'paintcorrectionmaskfullx' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullX'] }, - 'paintcorrectionmaskfully' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullY'] }, - 'paintcorrectionmaskleft' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksLeft'] }, - 'paintcorrectionmaskmidpoint' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMidpoint'] }, - 'paintcorrectionmaskperimetervalue' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksPerimeterValue'] }, - 'paintcorrectionmaskradius' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRadius'] }, - 'paintcorrectionmaskright' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRight'] }, - 'paintcorrectionmaskroundness' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRoundness'] }, - 'paintcorrectionmasksizex' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeX'] }, - 'paintcorrectionmasksizey' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeY'] }, - 'paintcorrectionmasktop' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksTop'] }, - 'paintcorrectionmaskvalue' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskValue'] }, - 'paintcorrectionmaskversion' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksVersion'] }, - 'paintcorrectionmaskwhat' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksWhat'] }, - 'paintcorrectionmaskx' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksX'] }, - 'paintcorrectionmasky' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksY'] }, - 'paintcorrectionmaskzerox' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroX'] }, - 'paintcorrectionmaskzeroy' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroY'] }, - 'paintcorrectionmoire' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalMoire'] }, - 'paintcorrectionsaturation' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSaturation','PaintBasedCorrectionsLocalToningSaturation'] }, - 'paintcorrectionshadows2012' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalShadows2012'] }, - 'paintcorrectionsharpness' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSharpness'] }, - 'paintcorrectiontemperature' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTemperature'] }, - 'paintcorrectiontint' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTint'] }, - 'paintcorrectionwhat' => { 427 => [\'PaintBasedCorrections','PaintBasedCorrectionsWhat'] }, + 'pageprogressiondirection' => { 442 => 'pageProgressionDirection' }, + 'pagerange' => { 442 => 'pageRange' }, + 'paintbasedcorrectionmasks' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasks'] }, + 'paintbasedcorrections' => { 428 => 'PaintBasedCorrections' }, + 'paintcorrectionactive' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionActive'] }, + 'paintcorrectionamount' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionAmount'] }, + 'paintcorrectionbrightness' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalBrightness'] }, + 'paintcorrectionclarity' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity'] }, + 'paintcorrectionclarity2012' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity2012'] }, + 'paintcorrectioncontrast' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast'] }, + 'paintcorrectioncontrast2012' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast2012'] }, + 'paintcorrectiondefringe' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalDefringe'] }, + 'paintcorrectionexposure' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure'] }, + 'paintcorrectionexposure2012' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure2012'] }, + 'paintcorrectionhighlights2012' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalHighlights2012'] }, + 'paintcorrectionhue' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalToningHue'] }, + 'paintcorrectionluminancenoise' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalLuminanceNoise'] }, + 'paintcorrectionmaskalpha' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAlpha'] }, + 'paintcorrectionmaskangle' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAngle'] }, + 'paintcorrectionmaskbottom' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksBottom'] }, + 'paintcorrectionmaskcentervalue' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterValue'] }, + 'paintcorrectionmaskcenterweight' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterWeight'] }, + 'paintcorrectionmaskdabs' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksDabs'] }, + 'paintcorrectionmaskfeather' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFeather'] }, + 'paintcorrectionmaskflipped' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlipped'] }, + 'paintcorrectionmaskflow' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlow'] }, + 'paintcorrectionmaskfullx' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullX'] }, + 'paintcorrectionmaskfully' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullY'] }, + 'paintcorrectionmaskleft' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksLeft'] }, + 'paintcorrectionmaskmidpoint' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMidpoint'] }, + 'paintcorrectionmaskperimetervalue' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksPerimeterValue'] }, + 'paintcorrectionmaskradius' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRadius'] }, + 'paintcorrectionmaskright' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRight'] }, + 'paintcorrectionmaskroundness' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRoundness'] }, + 'paintcorrectionmasksizex' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeX'] }, + 'paintcorrectionmasksizey' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeY'] }, + 'paintcorrectionmasktop' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksTop'] }, + 'paintcorrectionmaskvalue' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskValue'] }, + 'paintcorrectionmaskversion' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksVersion'] }, + 'paintcorrectionmaskwhat' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksWhat'] }, + 'paintcorrectionmaskx' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksX'] }, + 'paintcorrectionmasky' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksY'] }, + 'paintcorrectionmaskzerox' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroX'] }, + 'paintcorrectionmaskzeroy' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroY'] }, + 'paintcorrectionmoire' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalMoire'] }, + 'paintcorrectionsaturation' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSaturation','PaintBasedCorrectionsLocalToningSaturation'] }, + 'paintcorrectionshadows2012' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalShadows2012'] }, + 'paintcorrectionsharpness' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSharpness'] }, + 'paintcorrectiontemperature' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTemperature'] }, + 'paintcorrectiontint' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTint'] }, + 'paintcorrectionwhat' => { 428 => [\'PaintBasedCorrections','PaintBasedCorrectionsWhat'] }, 'panasonicexifversion' => { 285 => 0x26 }, 'panasonicimageheight' => { 285 => 0x4c }, 'panasonicimagewidth' => { 285 => 0x4b }, @@ -3758,20 +3764,20 @@ 'panasonictitle' => { 110 => 0xc6d2 }, 'panasonictitle2' => { 110 => 0xc6d3 }, 'panoramaangle' => { 115 => 0x1153 }, - 'panoramacropbottom' => { 380 => 0x7 }, - 'panoramacropleft' => { 380 => 0x4 }, - 'panoramacropright' => { 380 => 0x6 }, - 'panoramacroptop' => { 380 => 0x5 }, - 'panoramadirection' => { 65 => 0x5, 115 => 0x1154, 380 => 0x3 }, - 'panoramaframeheight' => { 380 => 0x9 }, + 'panoramacropbottom' => { 381 => 0x7 }, + 'panoramacropleft' => { 381 => 0x4 }, + 'panoramacropright' => { 381 => 0x6 }, + 'panoramacroptop' => { 381 => 0x5 }, + 'panoramadirection' => { 65 => 0x5, 115 => 0x1154, 381 => 0x3 }, + 'panoramaframeheight' => { 381 => 0x9 }, 'panoramaframenumber' => { 65 => 0x2 }, - 'panoramaframewidth' => { 380 => 0x8 }, - 'panoramafullheight' => { 380 => 0x2 }, - 'panoramafullwidth' => { 380 => 0x1 }, + 'panoramaframewidth' => { 381 => 0x8 }, + 'panoramafullheight' => { 381 => 0x2 }, + 'panoramafullwidth' => { 381 => 0x1 }, 'panoramamode' => { 126 => 0x3c, 264 => 0x601 }, - 'panoramasize3d' => { 364 => 0x38 }, - 'panoramasourceheight' => { 380 => 0xb }, - 'panoramasourcewidth' => { 380 => 0xa }, + 'panoramasize3d' => { 365 => 0x38 }, + 'panoramasourceheight' => { 381 => 0xb }, + 'panoramasourcewidth' => { 381 => 0xa }, 'panoramicstitchcameramotion' => { 160 => 'PanoramicStitchCameraMotion', 161 => 0x1 }, 'panoramicstitchmaptype' => { 160 => 'PanoramicStitchMapType', 161 => 0x2 }, 'panoramicstitchphi0' => { 160 => 'PanoramicStitchPhi0', 161 => 0x5 }, @@ -3779,69 +3785,69 @@ 'panoramicstitchtheta0' => { 160 => 'PanoramicStitchTheta0', 161 => 0x3 }, 'panoramicstitchtheta1' => { 160 => 'PanoramicStitchTheta1', 161 => 0x4 }, 'panoramicstitchversion' => { 161 => 0x0 }, - 'pantry' => { 452 => 'Pantry' }, + 'pantry' => { 453 => 'Pantry' }, 'parallax' => { 115 => 0xb211, 263 => 0x28 }, - 'parametricdarks' => { 427 => 'ParametricDarks' }, - 'parametrichighlights' => { 427 => 'ParametricHighlights' }, - 'parametrichighlightsplit' => { 427 => 'ParametricHighlightSplit' }, - 'parametriclights' => { 427 => 'ParametricLights' }, - 'parametricmidtonesplit' => { 427 => 'ParametricMidtoneSplit' }, - 'parametricshadows' => { 427 => 'ParametricShadows' }, - 'parametricshadowsplit' => { 427 => 'ParametricShadowSplit' }, - 'parentmediaeventid' => { 417 => 'ParentMediaEventID' }, - 'parentmeid' => { 417 => 'ParentMEID' }, - 'parentreference1' => { 435 => [\'TagStructure','TagStructureParentReference'] }, - 'parentreference2' => { 435 => [\'TagStructure','TagStructureSubLabelsParentReference'] }, - 'parentreference3' => { 435 => [\'TagStructure','TagStructureSubLabelsSubLabelsParentReference'] }, - 'parentreference4' => { 435 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsParentReference'] }, - 'parentreference5' => { 435 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsParentReference'] }, - 'parentreference6' => { 435 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsParentReference'] }, - 'partofcompilation' => { 451 => 'partOfCompilation' }, - 'patientbirthdate' => { 409 => 'PatientDOB' }, - 'patientid' => { 409 => 'PatientID' }, - 'patientname' => { 409 => 'PatientName' }, - 'patientsex' => { 409 => 'PatientSex' }, - 'pdfversion' => { 438 => 'PDFVersion' }, + 'parametricdarks' => { 428 => 'ParametricDarks' }, + 'parametrichighlights' => { 428 => 'ParametricHighlights' }, + 'parametrichighlightsplit' => { 428 => 'ParametricHighlightSplit' }, + 'parametriclights' => { 428 => 'ParametricLights' }, + 'parametricmidtonesplit' => { 428 => 'ParametricMidtoneSplit' }, + 'parametricshadows' => { 428 => 'ParametricShadows' }, + 'parametricshadowsplit' => { 428 => 'ParametricShadowSplit' }, + 'parentmediaeventid' => { 418 => 'ParentMediaEventID' }, + 'parentmeid' => { 418 => 'ParentMEID' }, + 'parentreference1' => { 436 => [\'TagStructure','TagStructureParentReference'] }, + 'parentreference2' => { 436 => [\'TagStructure','TagStructureSubLabelsParentReference'] }, + 'parentreference3' => { 436 => [\'TagStructure','TagStructureSubLabelsSubLabelsParentReference'] }, + 'parentreference4' => { 436 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsParentReference'] }, + 'parentreference5' => { 436 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsParentReference'] }, + 'parentreference6' => { 436 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsParentReference'] }, + 'partofcompilation' => { 452 => 'partOfCompilation' }, + 'patientbirthdate' => { 410 => 'PatientDOB' }, + 'patientid' => { 410 => 'PatientID' }, + 'patientname' => { 410 => 'PatientName' }, + 'patientsex' => { 410 => 'PatientSex' }, + 'pdfversion' => { 439 => 'PDFVersion' }, 'pentaximagesize' => { 319 => 0x9 }, 'pentaxmodelid' => { 299 => 0x0, 319 => 0x5 }, 'pentaxmodeltype' => { 319 => 0x1 }, 'pentaxversion' => { 319 => 0x0 }, - 'people' => { 410 => 'People', 419 => 'People' }, + 'people' => { 411 => 'People', 420 => 'People' }, 'perchannelblacklevel' => { 39 => 0xc4, 40 => [0x2b4,0x2cb,0x2cf], 41 => 0x108, 42 => 0x1df, 43 => [0x1f8,0x2d8], 44 => [0x22c,0x30a] }, - 'peripheralillumcentralradius' => { 407 => 0x8030 }, - 'peripheralillumcentralvalue' => { 407 => 0x8031 }, + 'peripheralillumcentralradius' => { 408 => 0x8030 }, + 'peripheralillumcentralvalue' => { 408 => 0x8031 }, 'peripheralillumination' => { 94 => 0x20702, 100 => 0x68 }, 'peripheralilluminationcorr' => { 56 => 0x1, 309 => 0x2 }, 'peripheralilluminationon' => { 94 => '0x20702.0', 100 => 0x64 }, - 'peripheralillumperiphvalue' => { 407 => 0x8032 }, + 'peripheralillumperiphvalue' => { 408 => 0x8032 }, 'peripherallighting' => { 71 => 0x2 }, 'peripherallightingsetting' => { 72 => 0x5 }, 'peripherallightingvalue' => { 71 => 0x6 }, - 'permissions' => { 444 => 'permissions' }, - 'permits' => { 424 => 'permits' }, - 'person' => { 441 => 'person' }, - 'personality' => { 417 => 'Personality' }, - 'personheard' => { 437 => 'PersonHeard' }, - 'personheardidentifier' => { 437 => [\'PersonHeard','PersonHeardIdentifier'] }, - 'personheardname' => { 437 => [\'PersonHeard','PersonHeardName'] }, - 'personinimage' => { 437 => 'PersonInImage' }, - 'personinimagecharacteristic' => { 437 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristic'] }, - 'personinimagecvtermcvid' => { 437 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvId'] }, - 'personinimagecvtermid' => { 437 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermId'] }, - 'personinimagecvtermname' => { 437 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermName'] }, - 'personinimagecvtermrefinedabout' => { 437 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermRefinedAbout'] }, - 'personinimagedescription' => { 437 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonDescription'] }, - 'personinimageid' => { 437 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonId'] }, - 'personinimagename' => { 437 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonName'] }, - 'personinimagewdetails' => { 437 => 'PersonInImageWDetails' }, - 'perspectiveaspect' => { 427 => 'PerspectiveAspect' }, - 'perspectivehorizontal' => { 427 => 'PerspectiveHorizontal' }, - 'perspectiverotate' => { 427 => 'PerspectiveRotate' }, - 'perspectivescale' => { 427 => 'PerspectiveScale' }, - 'perspectiveupright' => { 427 => 'PerspectiveUpright' }, - 'perspectivevertical' => { 427 => 'PerspectiveVertical' }, - 'perspectivex' => { 427 => 'PerspectiveX' }, - 'perspectivey' => { 427 => 'PerspectiveY' }, + 'permissions' => { 445 => 'permissions' }, + 'permits' => { 425 => 'permits' }, + 'person' => { 442 => 'person' }, + 'personality' => { 418 => 'Personality' }, + 'personheard' => { 438 => 'PersonHeard' }, + 'personheardidentifier' => { 438 => [\'PersonHeard','PersonHeardIdentifier'] }, + 'personheardname' => { 438 => [\'PersonHeard','PersonHeardName'] }, + 'personinimage' => { 438 => 'PersonInImage' }, + 'personinimagecharacteristic' => { 438 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristic'] }, + 'personinimagecvtermcvid' => { 438 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvId'] }, + 'personinimagecvtermid' => { 438 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermId'] }, + 'personinimagecvtermname' => { 438 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermName'] }, + 'personinimagecvtermrefinedabout' => { 438 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermRefinedAbout'] }, + 'personinimagedescription' => { 438 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonDescription'] }, + 'personinimageid' => { 438 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonId'] }, + 'personinimagename' => { 438 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonName'] }, + 'personinimagewdetails' => { 438 => 'PersonInImageWDetails' }, + 'perspectiveaspect' => { 428 => 'PerspectiveAspect' }, + 'perspectivehorizontal' => { 428 => 'PerspectiveHorizontal' }, + 'perspectiverotate' => { 428 => 'PerspectiveRotate' }, + 'perspectivescale' => { 428 => 'PerspectiveScale' }, + 'perspectiveupright' => { 428 => 'PerspectiveUpright' }, + 'perspectivevertical' => { 428 => 'PerspectiveVertical' }, + 'perspectivex' => { 428 => 'PerspectiveX' }, + 'perspectivey' => { 428 => 'PerspectiveY' }, 'pf0customfuncregistration' => { 83 => 0x1 }, 'pf10retainprogramshift' => { 83 => 0xb }, 'pf13drivepriority' => { 83 => 0xe }, @@ -3904,17 +3910,17 @@ 'photoeffectsgreen' => { 242 => 0x6 }, 'photoeffectsred' => { 242 => 0x4 }, 'photoeffectstype' => { 242 => 0x0 }, - 'photographicsensitivity' => { 432 => 'PhotographicSensitivity' }, + 'photographicsensitivity' => { 433 => 'PhotographicSensitivity' }, 'photoinfoplayback' => { 247 => '17.6', 256 => '33.6' }, - 'photometricinterpretation' => { 110 => 0x106, 447 => 'PhotometricInterpretation' }, + 'photometricinterpretation' => { 110 => 0x106, 448 => 'PhotometricInterpretation' }, 'photoshootingmenubank' => { 219 => 0xe7d, 228 => 0xfbd }, 'photoshootingmenubankimagearea' => { 219 => '3716.1', 228 => 0x791 }, 'photoshopbgrthumbnail' => { 333 => 0x409 }, 'photoshopquality' => { 332 => 0x0 }, 'photoshopthumbnail' => { 333 => 0x40c }, 'photostyle' => { 285 => 0x89 }, - 'picklabel' => { 430 => 'PickLabel' }, - 'pictinfo' => { 353 => 0x208 }, + 'picklabel' => { 431 => 'PickLabel' }, + 'pictinfo' => { 354 => 0x208 }, 'picturecontrol' => { 240 => 0xe2173c47 }, 'picturecontrolactive' => { 243 => 0x0 }, 'picturecontroladjust' => { 203 => 0x30, 204 => 0x30 }, @@ -3923,10 +3929,10 @@ 'picturecontrolmode' => { 243 => 0x13 }, 'picturecontrolname' => { 203 => 0x4, 204 => 0x4 }, 'picturecontrolquickadjust' => { 203 => 0x31, 204 => 0x31 }, - 'pictureeffect' => { 374 => 0x200e }, - 'pictureeffect2' => { 382 => 0x1163, 383 => 0x1167, 384 => 0x1143, 385 => 0x11bf, 386 => 0x119b, 387 => 0x1053, 388 => 0x24b, 389 => 0x24b, 390 => 0x23c, 403 => 0x46 }, + 'pictureeffect' => { 375 => 0x200e }, + 'pictureeffect2' => { 383 => 0x1163, 384 => 0x1167, 385 => 0x1143, 386 => 0x11bf, 387 => 0x119b, 388 => 0x1053, 389 => 0x24b, 390 => 0x24b, 391 => 0x23c, 404 => 0x46 }, 'picturefinish' => { 165 => 0x71 }, - 'picturemode' => { 115 => 0x1031, 264 => 0x520, 319 => [0xb,0x33], 354 => 0x3d }, + 'picturemode' => { 115 => 0x1031, 264 => 0x520, 319 => [0xb,0x33], 355 => 0x3d }, 'picturemode2' => { 300 => 0x0 }, 'picturemodebwfilter' => { 264 => 0x525 }, 'picturemodecontrast' => { 264 => 0x523 }, @@ -3935,24 +3941,24 @@ 'picturemodesaturation' => { 264 => 0x521 }, 'picturemodesharpness' => { 264 => 0x524 }, 'picturemodetone' => { 264 => 0x526 }, - 'pictureprofile' => { 382 => [0x115e,0x115f], 383 => [0x1162,0x1163], 384 => [0x113e,0x113f], 385 => [0x11ba,0x11bb], 386 => [0x1196,0x1197], 387 => [0x104e,0x104f], 388 => [0x246,0x247], 389 => [0x246,0x247], 390 => [0x237,0x238] }, + 'pictureprofile' => { 383 => [0x115e,0x115f], 384 => [0x1162,0x1163], 385 => [0x113e,0x113f], 386 => [0x11ba,0x11bb], 387 => [0x1196,0x1197], 388 => [0x104e,0x104f], 389 => [0x246,0x247], 390 => [0x246,0x247], 391 => [0x237,0x238] }, 'picturestyle' => { 7 => [0x4b,0x51], 8 => 0xf4, 9 => 0x6c, 10 => 0x86, 11 => 0x73, 15 => 0xab, 16 => 0xa7, 17 => 0xb0, 18 => 0x6c, 19 => 0xa7, 20 => 0xf4, 21 => 0xb3, 23 => 0xf4, 24 => 0xfa, 26 => 0x169, 67 => 0xa, 94 => 0x20301, 100 => 0x2 }, - 'picturewizard' => { 351 => 0x21 }, - 'picturewizardcolor' => { 350 => 0x1 }, - 'picturewizardcontrast' => { 350 => 0x4 }, - 'picturewizardmode' => { 350 => 0x0 }, - 'picturewizardsaturation' => { 350 => 0x2 }, - 'picturewizardsharpness' => { 350 => 0x3 }, + 'picturewizard' => { 352 => 0x21 }, + 'picturewizardcolor' => { 351 => 0x1 }, + 'picturewizardcontrast' => { 351 => 0x4 }, + 'picturewizardmode' => { 351 => 0x0 }, + 'picturewizardsaturation' => { 351 => 0x2 }, + 'picturewizardsharpness' => { 351 => 0x3 }, 'pipelineversion' => { 160 => 'PipelineVersion' }, 'pitch' => { 106 => 0x6, 248 => '4.1', 260 => '4.1' }, - 'pitchangle' => { 218 => 0x350f, 219 => 0x2c28, 227 => 0x36f8, 264 => 0x904, 285 => 0x91, 318 => 0x2, 349 => 0x1 }, + 'pitchangle' => { 218 => 0x350f, 219 => 0x2c28, 227 => 0x36f8, 264 => 0x904, 285 => 0x91, 318 => 0x2, 350 => 0x1 }, 'pixelshiftresolution' => { 320 => 0x0 }, 'pixelsperunitx' => { 276 => 0x0 }, 'pixelsperunity' => { 276 => 0x4 }, 'pixelunits' => { 276 => 0x8 }, - 'planarconfiguration' => { 110 => 0x11c, 447 => 'PlanarConfiguration' }, - 'platenames' => { 456 => 'PlateNames' }, - 'platform' => { 441 => 'platform' }, + 'planarconfiguration' => { 110 => 0x11c, 448 => 'PlanarConfiguration' }, + 'platenames' => { 457 => 'PlateNames' }, + 'platform' => { 442 => 'platform' }, 'playbackmenustime' => { 252 => '20.1', 253 => '21.1', 254 => '21.1' }, 'playbackmonitorofftime' => { 247 => '25.2', 248 => '36.1', 250 => '36.1', 251 => '36.1', 255 => '35.1', 256 => '8.1', 257 => '35.1', 260 => '36.1', 261 => '36.1', 262 => '21.1' }, 'playbackzoom' => { 248 => '37.1' }, @@ -3976,34 +3982,34 @@ 'portraitunsharpmaskfineness' => { 100 => 0x9a }, 'portraitunsharpmaskstrength' => { 100 => 0x98 }, 'portraitunsharpmaskthreshold' => { 100 => 0x9c }, - 'poseheadingdegrees' => { 415 => 'PoseHeadingDegrees' }, - 'posepitchdegrees' => { 415 => 'PosePitchDegrees' }, - 'poserolldegrees' => { 415 => 'PoseRollDegrees' }, - 'positiondescriptor' => { 440 => 'positionDescriptor' }, + 'poseheadingdegrees' => { 416 => 'PoseHeadingDegrees' }, + 'posepitchdegrees' => { 416 => 'PosePitchDegrees' }, + 'poserolldegrees' => { 416 => 'PoseRollDegrees' }, + 'positiondescriptor' => { 441 => 'positionDescriptor' }, 'postalcode' => { 145 => 'PostalCode' }, - 'postcropvignetteamount' => { 427 => 'PostCropVignetteAmount' }, - 'postcropvignettefeather' => { 427 => 'PostCropVignetteFeather' }, - 'postcropvignettehighlightcontrast' => { 427 => 'PostCropVignetteHighlightContrast' }, - 'postcropvignettemidpoint' => { 427 => 'PostCropVignetteMidpoint' }, - 'postcropvignetteroundness' => { 427 => 'PostCropVignetteRoundness' }, - 'postcropvignettestyle' => { 427 => 'PostCropVignetteStyle' }, - 'potentialface1position' => { 372 => 0xb }, - 'potentialface2position' => { 372 => 0x15 }, - 'potentialface3position' => { 372 => 0x1f }, - 'potentialface4position' => { 372 => 0x29 }, - 'potentialface5position' => { 372 => 0x33 }, - 'potentialface6position' => { 372 => 0x3d }, - 'potentialface7position' => { 372 => 0x47 }, - 'potentialface8position' => { 372 => 0x51 }, + 'postcropvignetteamount' => { 428 => 'PostCropVignetteAmount' }, + 'postcropvignettefeather' => { 428 => 'PostCropVignetteFeather' }, + 'postcropvignettehighlightcontrast' => { 428 => 'PostCropVignetteHighlightContrast' }, + 'postcropvignettemidpoint' => { 428 => 'PostCropVignetteMidpoint' }, + 'postcropvignetteroundness' => { 428 => 'PostCropVignetteRoundness' }, + 'postcropvignettestyle' => { 428 => 'PostCropVignetteStyle' }, + 'potentialface1position' => { 373 => 0xb }, + 'potentialface2position' => { 373 => 0x15 }, + 'potentialface3position' => { 373 => 0x1f }, + 'potentialface4position' => { 373 => 0x29 }, + 'potentialface5position' => { 373 => 0x33 }, + 'potentialface6position' => { 373 => 0x3d }, + 'potentialface7position' => { 373 => 0x47 }, + 'potentialface8position' => { 373 => 0x51 }, 'powersource' => { 298 => '0.1' }, 'poweruptime' => { 201 => 0xb6 }, 'precaptureframes' => { 269 => 0x300 }, 'predictor' => { 110 => 0x13d }, 'preflashreturnstrength' => { 216 => 0x28a }, 'prefs' => { 118 => 0xdd, 331 => 'Prefs' }, - 'preservedfilename' => { 452 => 'PreservedFileName' }, - 'presetwhitebalance' => { 167 => 0x24, 407 => 0x8002 }, - 'presetwhitebalanceadj' => { 407 => 0x8014 }, + 'preservedfilename' => { 453 => 'PreservedFileName' }, + 'presetwhitebalance' => { 167 => 0x24, 408 => 0x8002 }, + 'presetwhitebalanceadj' => { 408 => 0x8014 }, 'pressure' => { 110 => 0x9402 }, 'previewapplicationname' => { 110 => 0xc716 }, 'previewapplicationversion' => { 110 => 0xc717 }, @@ -4016,13 +4022,13 @@ 'previewcroptop' => { 330 => 0xed }, 'previewdate' => { 338 => 0x0 }, 'previewdatetime' => { 110 => 0xc71b }, - 'previewimage' => { 104 => 0x2000, 105 => 'PreviewImage', 111 => 'PreviewImage', 113 => 0x4, 150 => 'data', 169 => 0x81, 269 => 0x280, 284 => 0x300, 374 => 0x2001 }, + 'previewimage' => { 104 => 0x2000, 105 => 'PreviewImage', 111 => 'PreviewImage', 113 => 0x4, 150 => 'data', 169 => 0x81, 269 => 0x280, 284 => 0x300, 375 => 0x2001 }, 'previewimageborders' => { 319 => 0x3e }, 'previewimageheight' => { 66 => 0x4, 128 => 0xfa58 }, - 'previewimagelength' => { 66 => 0x2, 104 => 0x3, 110 => [0x117,0x202], 169 => 0x89, 205 => 0x202, 264 => 0x102, 269 => 0x1037, 319 => 0x3, 343 => 0x1e, 348 => 0x3, 354 => [0x1b,0x1d], 365 => 0x202 }, + 'previewimagelength' => { 66 => 0x2, 104 => 0x3, 110 => [0x117,0x202], 169 => 0x89, 205 => 0x202, 264 => 0x102, 269 => 0x1037, 319 => 0x3, 344 => 0x1e, 349 => 0x3, 355 => [0x1b,0x1d], 366 => 0x202 }, 'previewimagename' => { 150 => '1Name' }, - 'previewimagesize' => { 104 => 0x2, 133 => 0x2, 150 => 'ImageSize', 319 => 0x2, 354 => [0x1c,0x1e], 374 => 0xb02c }, - 'previewimagestart' => { 66 => 0x5, 104 => 0x4, 110 => [0x111,0x201], 169 => 0x88, 205 => 0x201, 264 => 0x101, 269 => 0x1036, 319 => 0x4, 343 => 0x1c, 348 => 0x2, 354 => [0x1a,0x1c], 365 => 0x201 }, + 'previewimagesize' => { 104 => 0x2, 133 => 0x2, 150 => 'ImageSize', 319 => 0x2, 355 => [0x1c,0x1e], 375 => 0xb02c }, + 'previewimagestart' => { 66 => 0x5, 104 => 0x4, 110 => [0x111,0x201], 169 => 0x88, 205 => 0x201, 264 => 0x101, 269 => 0x1036, 319 => 0x4, 344 => 0x1c, 349 => 0x2, 355 => [0x1a,0x1c], 366 => 0x201 }, 'previewimagetype' => { 150 => '0Type' }, 'previewimagevalid' => { 264 => 0x100, 269 => 0x1035 }, 'previewimagewidth' => { 66 => 0x3, 128 => 0xfa57 }, @@ -4030,25 +4036,25 @@ 'previewsettingsdigest' => { 110 => 0xc719 }, 'previewsettingsname' => { 110 => 0xc718 }, 'primaryafpoint' => { 176 => [0x44,0x7] }, - 'primarychromaticities' => { 110 => 0x13f, 447 => 'PrimaryChromaticities' }, - 'primaryftp' => { 417 => 'PrimaryFTP' }, + 'primarychromaticities' => { 110 => 0x13f, 448 => 'PrimaryChromaticities' }, + 'primaryftp' => { 418 => 'PrimaryFTP' }, 'primaryslot' => { 219 => 0xe7f, 228 => 0xfbf }, 'printim' => { 110 => 0xc4a5 }, - 'prioritysetupshutterrelease' => { 167 => 0x1d, 362 => 0x28 }, - 'privatertkinfo' => { 418 => 'privateRTKInfo' }, + 'prioritysetupshutterrelease' => { 167 => 0x1d, 363 => 0x28 }, + 'privatertkinfo' => { 419 => 'privateRTKInfo' }, 'processingsoftware' => { 110 => 0xb }, - 'processversion' => { 427 => 'ProcessVersion' }, - 'producer' => { 273 => 'Producer', 438 => 'Producer' }, - 'productcode' => { 441 => 'productCode' }, - 'productid' => { 119 => 0x32, 440 => 'productID' }, - 'productidtype' => { 440 => 'productIDType' }, - 'productinimage' => { 437 => 'ProductInImage' }, - 'productinimagedescription' => { 437 => [\'ProductInImage','ProductInImageProductDescription'] }, - 'productinimagegtin' => { 437 => [\'ProductInImage','ProductInImageProductGTIN'] }, - 'productinimagename' => { 437 => [\'ProductInImage','ProductInImageProductName'] }, + 'processversion' => { 428 => 'ProcessVersion' }, + 'producer' => { 273 => 'Producer', 439 => 'Producer' }, + 'productcode' => { 442 => 'productCode' }, + 'productid' => { 119 => 0x32, 441 => 'productID' }, + 'productidtype' => { 441 => 'productIDType' }, + 'productinimage' => { 438 => 'ProductInImage' }, + 'productinimagedescription' => { 438 => [\'ProductInImage','ProductInImageProductDescription'] }, + 'productinimagegtin' => { 438 => [\'ProductInImage','ProductInImageProductGTIN'] }, + 'productinimagename' => { 438 => [\'ProductInImage','ProductInImageProductName'] }, 'productioncode' => { 299 => 0x2 }, 'productorserviceconstraints' => { 274 => 'ProductOrServiceConstraints' }, - 'profession' => { 441 => 'profession' }, + 'profession' => { 442 => 'profession' }, 'profilecalibrationsig' => { 110 => 0xc6f4 }, 'profilecopyright' => { 110 => 0xc6fe }, 'profileembedpolicy' => { 110 => 0xc6fd }, @@ -4066,60 +4072,60 @@ 'programmode' => { 172 => 0x5 }, 'programshift' => { 201 => 0xd }, 'programversion' => { 118 => 0x46 }, - 'prohibits' => { 424 => 'prohibits' }, - 'projectiontype' => { 415 => 'ProjectionType', 416 => 'ProjectionType' }, - 'projectname' => { 451 => 'projectName' }, - 'projectref' => { 451 => 'projectRef' }, - 'projectrefpath' => { 451 => [\'projectRef','projectRefPath'] }, - 'projectreftype' => { 451 => [\'projectRef','projectRefType'] }, + 'prohibits' => { 425 => 'prohibits' }, + 'projectiontype' => { 416 => 'ProjectionType', 417 => 'ProjectionType' }, + 'projectname' => { 452 => 'projectName' }, + 'projectref' => { 452 => 'projectRef' }, + 'projectrefpath' => { 452 => [\'projectRef','projectRefPath'] }, + 'projectreftype' => { 452 => [\'projectRef','projectRefType'] }, 'propertyreleaseid' => { 274 => 'PropertyReleaseID' }, 'propertyreleasestatus' => { 274 => 'PropertyReleaseStatus' }, 'province-state' => { 118 => 0x5f }, - 'publicationdate' => { 441 => 'publicationDate' }, - 'publicationdatea-platform' => { 441 => [\'publicationDate','publicationDateA-platform'] }, - 'publicationdatedate' => { 441 => [\'publicationDate','publicationDateDate'] }, - 'publicationdisplaydate' => { 441 => 'publicationDisplayDate' }, - 'publicationdisplaydatea-platform' => { 441 => [\'publicationDisplayDate','publicationDisplayDateA-platform'] }, - 'publicationdisplaydatedate' => { 441 => [\'publicationDisplayDate','publicationDisplayDateDate'] }, - 'publicationevent' => { 437 => 'PublicationEvent' }, - 'publicationeventdate' => { 437 => [\'PublicationEvent','PublicationEventDate'] }, - 'publicationeventidentifier' => { 437 => [\'PublicationEvent','PublicationEventIdentifier'] }, - 'publicationeventname' => { 437 => [\'PublicationEvent','PublicationEventName'] }, - 'publicationname' => { 441 => 'publicationName' }, - 'publisher' => { 428 => 'publisher' }, - 'publishingfrequency' => { 441 => 'publishingFrequency' }, - 'pulldown' => { 451 => 'pullDown' }, + 'publicationdate' => { 442 => 'publicationDate' }, + 'publicationdatea-platform' => { 442 => [\'publicationDate','publicationDateA-platform'] }, + 'publicationdatedate' => { 442 => [\'publicationDate','publicationDateDate'] }, + 'publicationdisplaydate' => { 442 => 'publicationDisplayDate' }, + 'publicationdisplaydatea-platform' => { 442 => [\'publicationDisplayDate','publicationDisplayDateA-platform'] }, + 'publicationdisplaydatedate' => { 442 => [\'publicationDisplayDate','publicationDisplayDateDate'] }, + 'publicationevent' => { 438 => 'PublicationEvent' }, + 'publicationeventdate' => { 438 => [\'PublicationEvent','PublicationEventDate'] }, + 'publicationeventidentifier' => { 438 => [\'PublicationEvent','PublicationEventIdentifier'] }, + 'publicationeventname' => { 438 => [\'PublicationEvent','PublicationEventName'] }, + 'publicationname' => { 442 => 'publicationName' }, + 'publisher' => { 429 => 'publisher' }, + 'publishingfrequency' => { 442 => 'publishingFrequency' }, + 'pulldown' => { 452 => 'pullDown' }, 'purplehsl' => { 94 => 0x20916 }, - 'quality' => { 0 => 0x1, 33 => 0x3, 103 => 0x2, 104 => 0x3002, 115 => 0x1000, 126 => 0x9, 201 => 0x4, 230 => 0x3, 269 => 0x201, 281 => 0x300, 319 => 0x8, 326 => 0x2, 354 => 0x16, 362 => 0x56, 363 => 0x56, 364 => 0xb, 374 => 0x102 }, - 'quality2' => { 382 => 0x1170, 383 => 0x1174, 384 => 0x1150, 386 => 0x11a8, 387 => 0x1060, 388 => 0x258, 389 => 0x258, 390 => 0x247, 394 => 0x29, 395 => 0x25, 396 => 0x2a }, + 'quality' => { 0 => 0x1, 33 => 0x3, 103 => 0x2, 104 => 0x3002, 115 => 0x1000, 126 => 0x9, 201 => 0x4, 230 => 0x3, 269 => 0x201, 281 => 0x300, 319 => 0x8, 326 => 0x2, 355 => 0x16, 363 => 0x56, 364 => 0x56, 365 => 0xb, 375 => 0x102 }, + 'quality2' => { 383 => 0x1170, 384 => 0x1174, 385 => 0x1150, 387 => 0x11a8, 388 => 0x1060, 389 => 0x258, 390 => 0x258, 391 => 0x247, 395 => 0x29, 396 => 0x25, 397 => 0x2a }, 'qualitymode' => { 104 => 0x8 }, 'quantizationmethod' => { 120 => 0x78 }, 'quickadjust' => { 243 => 0x2a }, 'quickcontroldialinmeter' => { 75 => 0x703 }, 'quickfix' => { 240 => 0x416391c6 }, - 'quickshot' => { 353 => 0x213 }, + 'quickshot' => { 354 => 0x213 }, 'rangefinder' => { 252 => '4.1', 253 => '5.1', 254 => '5.1' }, 'rasterizedcaption' => { 118 => 0x7d }, - 'rating' => { 110 => 0x4746, 115 => 0x1431, 330 => 0xdf, 374 => 0x2002, 421 => 'rating', 429 => 'rating', 437 => 'Rating', 441 => 'rating', 449 => 'Rating' }, + 'rating' => { 110 => 0x4746, 115 => 0x1431, 330 => 0xdf, 375 => 0x2002, 422 => 'rating', 430 => 'rating', 438 => 'Rating', 442 => 'rating', 450 => 'Rating' }, 'ratingpercent' => { 110 => 0x4749, 162 => 'Rating' }, - 'ratingratingregion' => { 437 => [\'Rating','RatingRatingRegion'] }, - 'ratingregioncity' => { 437 => [\'Rating','RatingRatingRegionCity'] }, - 'ratingregioncountrycode' => { 437 => [\'Rating','RatingRatingRegionCountryCode'] }, - 'ratingregioncountryname' => { 437 => [\'Rating','RatingRatingRegionCountryName'] }, - 'ratingregiongpsaltitude' => { 437 => [\'Rating','RatingRatingRegionGPSAltitude'] }, - 'ratingregiongpslatitude' => { 437 => [\'Rating','RatingRatingRegionGPSLatitude'] }, - 'ratingregiongpslongitude' => { 437 => [\'Rating','RatingRatingRegionGPSLongitude'] }, - 'ratingregionidentifier' => { 437 => [\'Rating','RatingRatingRegionIdentifier'] }, - 'ratingregionlocationid' => { 437 => [\'Rating','RatingRatingRegionLocationId'] }, - 'ratingregionlocationname' => { 437 => [\'Rating','RatingRatingRegionLocationName'] }, - 'ratingregionprovincestate' => { 437 => [\'Rating','RatingRatingRegionProvinceState'] }, - 'ratingregionsublocation' => { 437 => [\'Rating','RatingRatingRegionSublocation'] }, - 'ratingregionworldregion' => { 437 => [\'Rating','RatingRatingRegionWorldRegion'] }, - 'ratingscalemaxvalue' => { 437 => [\'Rating','RatingRatingScaleMaxValue'] }, - 'ratingscaleminvalue' => { 437 => [\'Rating','RatingRatingScaleMinValue'] }, - 'ratingsourcelink' => { 437 => [\'Rating','RatingRatingSourceLink'] }, - 'ratingvalue' => { 437 => [\'Rating','RatingRatingValue'] }, - 'ratingvaluelogolink' => { 437 => [\'Rating','RatingRatingValueLogoLink'] }, + 'ratingratingregion' => { 438 => [\'Rating','RatingRatingRegion'] }, + 'ratingregioncity' => { 438 => [\'Rating','RatingRatingRegionCity'] }, + 'ratingregioncountrycode' => { 438 => [\'Rating','RatingRatingRegionCountryCode'] }, + 'ratingregioncountryname' => { 438 => [\'Rating','RatingRatingRegionCountryName'] }, + 'ratingregiongpsaltitude' => { 438 => [\'Rating','RatingRatingRegionGPSAltitude'] }, + 'ratingregiongpslatitude' => { 438 => [\'Rating','RatingRatingRegionGPSLatitude'] }, + 'ratingregiongpslongitude' => { 438 => [\'Rating','RatingRatingRegionGPSLongitude'] }, + 'ratingregionidentifier' => { 438 => [\'Rating','RatingRatingRegionIdentifier'] }, + 'ratingregionlocationid' => { 438 => [\'Rating','RatingRatingRegionLocationId'] }, + 'ratingregionlocationname' => { 438 => [\'Rating','RatingRatingRegionLocationName'] }, + 'ratingregionprovincestate' => { 438 => [\'Rating','RatingRatingRegionProvinceState'] }, + 'ratingregionsublocation' => { 438 => [\'Rating','RatingRatingRegionSublocation'] }, + 'ratingregionworldregion' => { 438 => [\'Rating','RatingRatingRegionWorldRegion'] }, + 'ratingscalemaxvalue' => { 438 => [\'Rating','RatingRatingScaleMaxValue'] }, + 'ratingscaleminvalue' => { 438 => [\'Rating','RatingRatingScaleMinValue'] }, + 'ratingsourcelink' => { 438 => [\'Rating','RatingRatingSourceLink'] }, + 'ratingvalue' => { 438 => [\'Rating','RatingRatingValue'] }, + 'ratingvaluelogolink' => { 438 => [\'Rating','RatingRatingValueLogoLink'] }, 'rawandjpgrecording' => { 73 => 0x8, 169 => 0x109, 300 => 0xd }, 'rawbrightnessadj' => { 94 => 0x20001, 99 => 0x38 }, 'rawcoloradj' => { 99 => 0x2e }, @@ -4129,9 +4135,9 @@ 'rawcroptop' => { 330 => 0xd2 }, 'rawcustomsaturation' => { 99 => 0x30 }, 'rawcustomtone' => { 99 => 0x34 }, - 'rawdata' => { 351 => 0xa048 }, - 'rawdatabyteorder' => { 351 => 0x40 }, - 'rawdatacfapattern' => { 351 => 0x50 }, + 'rawdata' => { 352 => 0xa048 }, + 'rawdatabyteorder' => { 352 => 0x40 }, + 'rawdatacfapattern' => { 352 => 0x50 }, 'rawdatauniqueid' => { 110 => 0xc65d }, 'rawdepth' => { 171 => 0x10 }, 'rawdevartfilter' => { 271 => 0x121 }, @@ -4162,9 +4168,9 @@ 'rawdevwhitebalance' => { 271 => 0x101 }, 'rawdevwhitebalancevalue' => { 270 => 0x101, 271 => 0x102 }, 'rawfile' => { 110 => 0xfe4c }, - 'rawfilename' => { 427 => 'RawFileName' }, - 'rawfiletype' => { 374 => 0x2029 }, - 'rawformat' => { 328 => 0x10e }, + 'rawfilename' => { 428 => 'RawFileName' }, + 'rawfiletype' => { 375 => 0x2029 }, + 'rawformat' => { 289 => 0x2d, 328 => 0x10e }, 'rawimagecenter' => { 201 => 0x99 }, 'rawimagedigest' => { 110 => 0xc71c }, 'rawimagesize' => { 319 => 0x39 }, @@ -4174,14 +4180,14 @@ 'rawjpgsize' => { 51 => 0x7, 90 => 0x2 }, 'rawjpgwidth' => { 90 => 0x3 }, 'rawmeasuredrggb' => { 38 => 0x26a, 40 => 0x280, 42 => 0x194, 43 => [0x1ad,0x26b] }, - 'rawrppused' => { 421 => 'rawrppused' }, + 'rawrppused' => { 422 => 'rawrppused' }, 'rawtopreviewgain' => { 110 => 0xc7a8 }, 'reardisplay' => { 247 => '12.3', 248 => '6.2' }, - 'recipeendingpage' => { 443 => 'recipeEndingPage' }, - 'recipepagerange' => { 443 => 'recipePageRange' }, - 'recipesource' => { 443 => 'recipeSource' }, - 'recipestartingpage' => { 443 => 'recipeStartingPage' }, - 'recipetitle' => { 443 => 'recipeTitle' }, + 'recipeendingpage' => { 444 => 'recipeEndingPage' }, + 'recipepagerange' => { 444 => 'recipePageRange' }, + 'recipesource' => { 444 => 'recipeSource' }, + 'recipestartingpage' => { 444 => 'recipeStartingPage' }, + 'recipetitle' => { 444 => 'recipeTitle' }, 'recognizedface1age' => { 280 => 0x20 }, 'recognizedface1name' => { 280 => 0x4 }, 'recognizedface1position' => { 280 => 0x18 }, @@ -4192,7 +4198,7 @@ 'recognizedface3name' => { 280 => 0x64 }, 'recognizedface3position' => { 280 => 0x78 }, 'recognizedfaceflags' => { 285 => 0x63 }, - 'recommendedexposureindex' => { 110 => 0x8832, 432 => 'RecommendedExposureIndex' }, + 'recommendedexposureindex' => { 110 => 0x8832, 433 => 'RecommendedExposureIndex' }, 'record' => { 109 => 'Record' }, 'recordbasisofrecord' => { 109 => [\'Record','RecordBasisOfRecord'] }, 'recordcollectioncode' => { 109 => [\'Record','RecordCollectionCode'] }, @@ -4204,32 +4210,32 @@ 'recorddynamicproperties' => { 109 => [\'Record','RecordDynamicProperties'] }, 'recordid' => { 88 => 0x1804 }, 'recordinformationwithheld' => { 109 => [\'Record','RecordInformationWithheld'] }, - 'recordingformat' => { 344 => 0x1000 }, + 'recordingformat' => { 345 => 0x1000 }, 'recordingmode' => { 103 => 0x1, 326 => 0x1 }, 'recordinstitutioncode' => { 109 => [\'Record','RecordInstitutionCode'] }, 'recordinstitutionid' => { 109 => [\'Record','RecordInstitutionID'] }, 'recordmode' => { 33 => 0x9, 104 => 0x3000 }, 'recordownerinstitutioncode' => { 109 => [\'Record','RecordOwnerInstitutionCode'] }, - 'recordshutterrelease' => { 353 => 0x217 }, + 'recordshutterrelease' => { 354 => 0x217 }, 'redbalance' => { 184 => 0x270, 269 => 0x1017, 289 => 0x11, 319 => 0x1c }, 'redcurvelimits' => { 99 => 0x18a }, 'redcurvepoints' => { 98 => 0x2d, 99 => 0x160 }, 'redeyecorrection' => { 244 => 0x0 }, - 'redeyeinfo' => { 427 => 'RedEyeInfo' }, - 'redeyereduction' => { 167 => 0x41, 362 => 0x6a, 364 => 0x28 }, + 'redeyeinfo' => { 428 => 'RedEyeInfo' }, + 'redeyereduction' => { 167 => 0x41, 363 => 0x6a, 365 => 0x28 }, 'redhsl' => { 94 => 0x20910 }, - 'redhue' => { 427 => 'RedHue' }, - 'redsaturation' => { 427 => 'RedSaturation' }, + 'redhue' => { 428 => 'RedHue' }, + 'redsaturation' => { 428 => 'RedSaturation' }, 'reductionmatrix1' => { 110 => 0xc625 }, 'reductionmatrix2' => { 110 => 0xc626 }, 'reelname' => { 110 => 0xc789 }, - 'reference1' => { 435 => [\'TagStructure','TagStructureReference'] }, - 'reference2' => { 435 => [\'TagStructure','TagStructureSubLabelsReference'] }, - 'reference3' => { 435 => [\'TagStructure','TagStructureSubLabelsSubLabelsReference'] }, - 'reference4' => { 435 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsReference'] }, - 'reference5' => { 435 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsReference'] }, - 'reference6' => { 435 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsReference'] }, - 'referenceblackwhite' => { 110 => 0x214, 447 => 'ReferenceBlackWhite' }, + 'reference1' => { 436 => [\'TagStructure','TagStructureReference'] }, + 'reference2' => { 436 => [\'TagStructure','TagStructureSubLabelsReference'] }, + 'reference3' => { 436 => [\'TagStructure','TagStructureSubLabelsSubLabelsReference'] }, + 'reference4' => { 436 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsReference'] }, + 'reference5' => { 436 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsReference'] }, + 'reference6' => { 436 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsReference'] }, + 'referenceblackwhite' => { 110 => 0x214, 448 => 'ReferenceBlackWhite' }, 'referencedate' => { 118 => 0x2f }, 'referencenumber' => { 118 => 0x32 }, 'references' => { 141 => 'References' }, @@ -4264,10 +4270,10 @@ 'regionrotation' => { 156 => [\'Regions','RegionsRegionListRotation'] }, 'regionseealso' => { 156 => [\'Regions','RegionsRegionListSeeAlso'] }, 'regiontype' => { 156 => [\'Regions','RegionsRegionListType'] }, - 'registryentryrole' => { 437 => [\'RegistryId','RegistryIdRegEntryRole'] }, - 'registryid' => { 437 => 'RegistryId' }, - 'registryitemid' => { 437 => [\'RegistryId','RegistryIdRegItemId'] }, - 'registryorganisationid' => { 437 => [\'RegistryId','RegistryIdRegOrgId'] }, + 'registryentryrole' => { 438 => [\'RegistryId','RegistryIdRegEntryRole'] }, + 'registryid' => { 438 => 'RegistryId' }, + 'registryitemid' => { 438 => [\'RegistryId','RegistryIdRegItemId'] }, + 'registryorganisationid' => { 438 => [\'RegistryId','RegistryIdRegOrgId'] }, 'relatedaudiofile' => { 139 => 'data' }, 'relatedaudiofilename' => { 139 => '1Name' }, 'relatedaudiofiletype' => { 139 => '0Type' }, @@ -4275,55 +4281,55 @@ 'relatedimageheight' => { 110 => 0x1002 }, 'relatedimagewidth' => { 110 => 0x1001 }, 'relatedresourceid' => { 109 => [\'ResourceRelationship','ResourceRelationshipRelatedResourceID'] }, - 'relatedsoundfile' => { 110 => 0xa004, 431 => 'RelatedSoundFile' }, + 'relatedsoundfile' => { 110 => 0xa004, 432 => 'RelatedSoundFile' }, 'relatedvideofile' => { 153 => 'data' }, 'relatedvideofilename' => { 153 => '1Name' }, 'relatedvideofiletype' => { 153 => '0Type' }, - 'relation' => { 428 => 'relation' }, + 'relation' => { 429 => 'relation' }, 'relationshipaccordingto' => { 109 => [\'ResourceRelationship','ResourceRelationshipRelationshipAccordingTo'] }, 'relationshipestablisheddate' => { 109 => [\'ResourceRelationship','ResourceRelationshipRelationshipEstablishedDate'] }, 'relationshipofresource' => { 109 => [\'ResourceRelationship','ResourceRelationshipRelationshipOfResource'] }, 'relationshipremarks' => { 109 => [\'ResourceRelationship','ResourceRelationshipRelationshipRemarks'] }, 'relativealtitude' => { 107 => 'RelativeAltitude' }, - 'relativepeakaudiofilepath' => { 451 => 'relativePeakAudioFilePath' }, - 'relativetimestamp' => { 451 => 'relativeTimestamp' }, - 'relativetimestampscale' => { 451 => [\'relativeTimestamp','relativeTimestampScale'] }, - 'relativetimestampvalue' => { 451 => [\'relativeTimestamp','relativeTimestampValue'] }, + 'relativepeakaudiofilepath' => { 452 => 'relativePeakAudioFilePath' }, + 'relativetimestamp' => { 452 => 'relativeTimestamp' }, + 'relativetimestampscale' => { 452 => [\'relativeTimestamp','relativeTimestampScale'] }, + 'relativetimestampvalue' => { 452 => [\'relativeTimestamp','relativeTimestampValue'] }, 'releasebuttontousedial' => { 247 => '17.8', 248 => '18.5', 250 => '18.4', 251 => '18.4', 256 => '33.8', 257 => '17.6', 260 => '18.5', 261 => '18.4' }, - 'releasedate' => { 118 => 0x1e, 421 => 'ReleaseDate', 451 => 'releaseDate' }, - 'releasemode' => { 104 => 0x3001, 218 => 0x184d, 374 => 0xb049 }, - 'releasemode2' => { 382 => 0x112c, 383 => [0x112c,0x8], 384 => [0x1108,0x8], 385 => [0x1184,0x8], 386 => [0x1160,0x8], 387 => [0x4,0x1018], 388 => [0x4,0x210], 389 => [0x4,0x210], 390 => [0x4,0x208], 392 => [0x67,0x3f], 393 => [0x73,0x4b], 394 => 0x10, 395 => 0x10, 396 => 0x9, 403 => 0x34 }, - 'releasemode3' => { 382 => 0x1128, 383 => 0x1128, 384 => 0x1104, 385 => 0x1180, 386 => 0x115c, 387 => 0x1014, 388 => 0x20c, 389 => 0x20c, 390 => 0x204 }, - 'releaseready' => { 437 => 'ReleaseReady' }, + 'releasedate' => { 118 => 0x1e, 422 => 'ReleaseDate', 452 => 'releaseDate' }, + 'releasemode' => { 104 => 0x3001, 218 => 0x184d, 375 => 0xb049 }, + 'releasemode2' => { 383 => 0x112c, 384 => [0x112c,0x8], 385 => [0x1108,0x8], 386 => [0x1184,0x8], 387 => [0x1160,0x8], 388 => [0x4,0x1018], 389 => [0x4,0x210], 390 => [0x4,0x210], 391 => [0x4,0x208], 393 => [0x67,0x3f], 394 => [0x73,0x4b], 395 => 0x10, 396 => 0x10, 397 => 0x9, 404 => 0x34 }, + 'releasemode3' => { 383 => 0x1128, 384 => 0x1128, 385 => 0x1104, 386 => 0x1180, 387 => 0x115c, 388 => 0x1014, 389 => 0x20c, 390 => 0x20c, 391 => 0x204 }, + 'releaseready' => { 438 => 'ReleaseReady' }, 'releasesetting' => { 88 => 0x1016 }, - 'releasetime' => { 118 => 0x23, 421 => 'ReleaseTime' }, + 'releasetime' => { 118 => 0x23, 422 => 'ReleaseTime' }, 'remoteonduration' => { 249 => '3.4', 252 => '17.2', 253 => '18.2', 254 => '18.2', 255 => '18.2', 257 => '18.2', 258 => '4.3', 262 => '19.2' }, - 'renditionclass' => { 452 => 'RenditionClass' }, - 'renditionof' => { 452 => 'RenditionOf' }, - 'renditionofalternatepaths' => { 452 => [\'RenditionOf','RenditionOfAlternatePaths'] }, - 'renditionofdocumentid' => { 452 => [\'RenditionOf','RenditionOfDocumentID'] }, - 'renditionoffilepath' => { 452 => [\'RenditionOf','RenditionOfFilePath'] }, - 'renditionoffrompart' => { 452 => [\'RenditionOf','RenditionOfFromPart'] }, - 'renditionofinstanceid' => { 452 => [\'RenditionOf','RenditionOfInstanceID'] }, - 'renditionoflastmodifydate' => { 452 => [\'RenditionOf','RenditionOfLastModifyDate'] }, - 'renditionoflasturl' => { 452 => [\'RenditionOf','RenditionOfLastURL'] }, - 'renditionoflinkcategory' => { 452 => [\'RenditionOf','RenditionOfLinkCategory'] }, - 'renditionoflinkform' => { 452 => [\'RenditionOf','RenditionOfLinkForm'] }, - 'renditionofmanager' => { 452 => [\'RenditionOf','RenditionOfManager'] }, - 'renditionofmanagervariant' => { 452 => [\'RenditionOf','RenditionOfManagerVariant'] }, - 'renditionofmanageto' => { 452 => [\'RenditionOf','RenditionOfManageTo'] }, - 'renditionofmanageui' => { 452 => [\'RenditionOf','RenditionOfManageUI'] }, - 'renditionofmaskmarkers' => { 452 => [\'RenditionOf','RenditionOfMaskMarkers'] }, - 'renditionoforiginaldocumentid' => { 452 => [\'RenditionOf','RenditionOfOriginalDocumentID'] }, - 'renditionofpartmapping' => { 452 => [\'RenditionOf','RenditionOfPartMapping'] }, - 'renditionofplacedresolutionunit' => { 452 => [\'RenditionOf','RenditionOfPlacedResolutionUnit'] }, - 'renditionofplacedxresolution' => { 452 => [\'RenditionOf','RenditionOfPlacedXResolution'] }, - 'renditionofplacedyresolution' => { 452 => [\'RenditionOf','RenditionOfPlacedYResolution'] }, - 'renditionofrenditionclass' => { 452 => [\'RenditionOf','RenditionOfRenditionClass'] }, - 'renditionofrenditionparams' => { 452 => [\'RenditionOf','RenditionOfRenditionParams'] }, - 'renditionoftopart' => { 452 => [\'RenditionOf','RenditionOfToPart'] }, - 'renditionofversionid' => { 452 => [\'RenditionOf','RenditionOfVersionID'] }, - 'renditionparams' => { 452 => 'RenditionParams' }, + 'renditionclass' => { 453 => 'RenditionClass' }, + 'renditionof' => { 453 => 'RenditionOf' }, + 'renditionofalternatepaths' => { 453 => [\'RenditionOf','RenditionOfAlternatePaths'] }, + 'renditionofdocumentid' => { 453 => [\'RenditionOf','RenditionOfDocumentID'] }, + 'renditionoffilepath' => { 453 => [\'RenditionOf','RenditionOfFilePath'] }, + 'renditionoffrompart' => { 453 => [\'RenditionOf','RenditionOfFromPart'] }, + 'renditionofinstanceid' => { 453 => [\'RenditionOf','RenditionOfInstanceID'] }, + 'renditionoflastmodifydate' => { 453 => [\'RenditionOf','RenditionOfLastModifyDate'] }, + 'renditionoflasturl' => { 453 => [\'RenditionOf','RenditionOfLastURL'] }, + 'renditionoflinkcategory' => { 453 => [\'RenditionOf','RenditionOfLinkCategory'] }, + 'renditionoflinkform' => { 453 => [\'RenditionOf','RenditionOfLinkForm'] }, + 'renditionofmanager' => { 453 => [\'RenditionOf','RenditionOfManager'] }, + 'renditionofmanagervariant' => { 453 => [\'RenditionOf','RenditionOfManagerVariant'] }, + 'renditionofmanageto' => { 453 => [\'RenditionOf','RenditionOfManageTo'] }, + 'renditionofmanageui' => { 453 => [\'RenditionOf','RenditionOfManageUI'] }, + 'renditionofmaskmarkers' => { 453 => [\'RenditionOf','RenditionOfMaskMarkers'] }, + 'renditionoforiginaldocumentid' => { 453 => [\'RenditionOf','RenditionOfOriginalDocumentID'] }, + 'renditionofpartmapping' => { 453 => [\'RenditionOf','RenditionOfPartMapping'] }, + 'renditionofplacedresolutionunit' => { 453 => [\'RenditionOf','RenditionOfPlacedResolutionUnit'] }, + 'renditionofplacedxresolution' => { 453 => [\'RenditionOf','RenditionOfPlacedXResolution'] }, + 'renditionofplacedyresolution' => { 453 => [\'RenditionOf','RenditionOfPlacedYResolution'] }, + 'renditionofrenditionclass' => { 453 => [\'RenditionOf','RenditionOfRenditionClass'] }, + 'renditionofrenditionparams' => { 453 => [\'RenditionOf','RenditionOfRenditionParams'] }, + 'renditionoftopart' => { 453 => [\'RenditionOf','RenditionOfToPart'] }, + 'renditionofversionid' => { 453 => [\'RenditionOf','RenditionOfVersionID'] }, + 'renditionparams' => { 453 => 'RenditionParams' }, 'repeatingflashcount' => { 189 => 0xd, 190 => 0xe, 191 => 0xe, 192 => 0xe, 256 => '17.2', 257 => '24.2', 258 => '9.2', 259 => '24.2', 262 => '25.2' }, 'repeatingflashcountbuilt-in' => { 226 => 0x4db }, 'repeatingflashcountexternal' => { 226 => 0x4c3 }, @@ -4332,221 +4338,221 @@ 'repeatingflashrate' => { 189 => 0xc, 190 => 0xd, 191 => 0xd, 192 => 0xd, 256 => '18.1', 257 => '25.1', 258 => '10.1', 259 => '25.1', 262 => '26.1' }, 'repeatingflashratebuilt-in' => { 226 => 0x4da }, 'repeatingflashrateexternal' => { 226 => 0x4c2 }, - 'requires' => { 424 => 'requires' }, - 'resampleparams' => { 451 => 'resampleParams' }, - 'resampleparamsquality' => { 451 => [\'resampleParams','resampleParamsQuality'] }, - 'resaved' => { 353 => 0x21e }, + 'requires' => { 425 => 'requires' }, + 'resampleparams' => { 452 => 'resampleParams' }, + 'resampleparamsquality' => { 452 => [\'resampleParams','resampleParamsQuality'] }, + 'resaved' => { 354 => 0x21e }, 'resolution' => { 146 => 'Resolution' }, - 'resolutionmode' => { 354 => 0x4 }, - 'resolutionunit' => { 110 => 0x128, 121 => 0x2, 447 => 'ResolutionUnit' }, + 'resolutionmode' => { 355 => 0x4 }, + 'resolutionunit' => { 110 => 0x128, 121 => 0x2, 448 => 'ResolutionUnit' }, 'resourceid' => { 109 => [\'ResourceRelationship','ResourceRelationshipResourceID'] }, 'resourcerelationship' => { 109 => 'ResourceRelationship' }, 'resourcerelationshipid' => { 109 => [\'ResourceRelationship','ResourceRelationshipResourceRelationshipID'] }, 'restrictdrivemodes' => { 75 => 0x612 }, - 'restrictions' => { 444 => 'restrictions' }, - 'retouchareafeather' => { 427 => [\'RetouchAreas','RetouchAreasFeather'] }, - 'retouchareamaskalpha' => { 427 => [\'RetouchAreas','RetouchAreasMasksAlpha'] }, - 'retouchareamaskangle' => { 427 => [\'RetouchAreas','RetouchAreasMasksAngle'] }, - 'retouchareamaskbottom' => { 427 => [\'RetouchAreas','RetouchAreasMasksBottom'] }, - 'retouchareamaskcentervalue' => { 427 => [\'RetouchAreas','RetouchAreasMasksCenterValue'] }, - 'retouchareamaskcenterweight' => { 427 => [\'RetouchAreas','RetouchAreasMasksCenterWeight'] }, - 'retouchareamaskdabs' => { 427 => [\'RetouchAreas','RetouchAreasMasksDabs'] }, - 'retouchareamaskfeather' => { 427 => [\'RetouchAreas','RetouchAreasMasksFeather'] }, - 'retouchareamaskflipped' => { 427 => [\'RetouchAreas','RetouchAreasMasksFlipped'] }, - 'retouchareamaskflow' => { 427 => [\'RetouchAreas','RetouchAreasMasksFlow'] }, - 'retouchareamaskfullx' => { 427 => [\'RetouchAreas','RetouchAreasMasksFullX'] }, - 'retouchareamaskfully' => { 427 => [\'RetouchAreas','RetouchAreasMasksFullY'] }, - 'retouchareamaskleft' => { 427 => [\'RetouchAreas','RetouchAreasMasksLeft'] }, - 'retouchareamaskmidpoint' => { 427 => [\'RetouchAreas','RetouchAreasMasksMidpoint'] }, - 'retouchareamaskperimetervalue' => { 427 => [\'RetouchAreas','RetouchAreasMasksPerimeterValue'] }, - 'retouchareamaskradius' => { 427 => [\'RetouchAreas','RetouchAreasMasksRadius'] }, - 'retouchareamaskright' => { 427 => [\'RetouchAreas','RetouchAreasMasksRight'] }, - 'retouchareamaskroundness' => { 427 => [\'RetouchAreas','RetouchAreasMasksRoundness'] }, - 'retouchareamasks' => { 427 => [\'RetouchAreas','RetouchAreasMasks'] }, - 'retouchareamasksizex' => { 427 => [\'RetouchAreas','RetouchAreasMasksSizeX'] }, - 'retouchareamasksizey' => { 427 => [\'RetouchAreas','RetouchAreasMasksSizeY'] }, - 'retouchareamasktop' => { 427 => [\'RetouchAreas','RetouchAreasMasksTop'] }, - 'retouchareamaskvalue' => { 427 => [\'RetouchAreas','RetouchAreasMasksMaskValue'] }, - 'retouchareamaskversion' => { 427 => [\'RetouchAreas','RetouchAreasMasksVersion'] }, - 'retouchareamaskwhat' => { 427 => [\'RetouchAreas','RetouchAreasMasksWhat'] }, - 'retouchareamaskx' => { 427 => [\'RetouchAreas','RetouchAreasMasksX'] }, - 'retouchareamasky' => { 427 => [\'RetouchAreas','RetouchAreasMasksY'] }, - 'retouchareamaskzerox' => { 427 => [\'RetouchAreas','RetouchAreasMasksZeroX'] }, - 'retouchareamaskzeroy' => { 427 => [\'RetouchAreas','RetouchAreasMasksZeroY'] }, - 'retouchareamethod' => { 427 => [\'RetouchAreas','RetouchAreasMethod'] }, - 'retouchareaoffsety' => { 427 => [\'RetouchAreas','RetouchAreasOffsetY'] }, - 'retouchareaopacity' => { 427 => [\'RetouchAreas','RetouchAreasOpacity'] }, - 'retouchareas' => { 427 => 'RetouchAreas' }, - 'retouchareaseed' => { 427 => [\'RetouchAreas','RetouchAreasSeed'] }, - 'retouchareasourcestate' => { 427 => [\'RetouchAreas','RetouchAreasSourceState'] }, - 'retouchareasourcex' => { 427 => [\'RetouchAreas','RetouchAreasSourceX'] }, - 'retouchareaspottype' => { 427 => [\'RetouchAreas','RetouchAreasSpotType'] }, + 'restrictions' => { 445 => 'restrictions' }, + 'retouchareafeather' => { 428 => [\'RetouchAreas','RetouchAreasFeather'] }, + 'retouchareamaskalpha' => { 428 => [\'RetouchAreas','RetouchAreasMasksAlpha'] }, + 'retouchareamaskangle' => { 428 => [\'RetouchAreas','RetouchAreasMasksAngle'] }, + 'retouchareamaskbottom' => { 428 => [\'RetouchAreas','RetouchAreasMasksBottom'] }, + 'retouchareamaskcentervalue' => { 428 => [\'RetouchAreas','RetouchAreasMasksCenterValue'] }, + 'retouchareamaskcenterweight' => { 428 => [\'RetouchAreas','RetouchAreasMasksCenterWeight'] }, + 'retouchareamaskdabs' => { 428 => [\'RetouchAreas','RetouchAreasMasksDabs'] }, + 'retouchareamaskfeather' => { 428 => [\'RetouchAreas','RetouchAreasMasksFeather'] }, + 'retouchareamaskflipped' => { 428 => [\'RetouchAreas','RetouchAreasMasksFlipped'] }, + 'retouchareamaskflow' => { 428 => [\'RetouchAreas','RetouchAreasMasksFlow'] }, + 'retouchareamaskfullx' => { 428 => [\'RetouchAreas','RetouchAreasMasksFullX'] }, + 'retouchareamaskfully' => { 428 => [\'RetouchAreas','RetouchAreasMasksFullY'] }, + 'retouchareamaskleft' => { 428 => [\'RetouchAreas','RetouchAreasMasksLeft'] }, + 'retouchareamaskmidpoint' => { 428 => [\'RetouchAreas','RetouchAreasMasksMidpoint'] }, + 'retouchareamaskperimetervalue' => { 428 => [\'RetouchAreas','RetouchAreasMasksPerimeterValue'] }, + 'retouchareamaskradius' => { 428 => [\'RetouchAreas','RetouchAreasMasksRadius'] }, + 'retouchareamaskright' => { 428 => [\'RetouchAreas','RetouchAreasMasksRight'] }, + 'retouchareamaskroundness' => { 428 => [\'RetouchAreas','RetouchAreasMasksRoundness'] }, + 'retouchareamasks' => { 428 => [\'RetouchAreas','RetouchAreasMasks'] }, + 'retouchareamasksizex' => { 428 => [\'RetouchAreas','RetouchAreasMasksSizeX'] }, + 'retouchareamasksizey' => { 428 => [\'RetouchAreas','RetouchAreasMasksSizeY'] }, + 'retouchareamasktop' => { 428 => [\'RetouchAreas','RetouchAreasMasksTop'] }, + 'retouchareamaskvalue' => { 428 => [\'RetouchAreas','RetouchAreasMasksMaskValue'] }, + 'retouchareamaskversion' => { 428 => [\'RetouchAreas','RetouchAreasMasksVersion'] }, + 'retouchareamaskwhat' => { 428 => [\'RetouchAreas','RetouchAreasMasksWhat'] }, + 'retouchareamaskx' => { 428 => [\'RetouchAreas','RetouchAreasMasksX'] }, + 'retouchareamasky' => { 428 => [\'RetouchAreas','RetouchAreasMasksY'] }, + 'retouchareamaskzerox' => { 428 => [\'RetouchAreas','RetouchAreasMasksZeroX'] }, + 'retouchareamaskzeroy' => { 428 => [\'RetouchAreas','RetouchAreasMasksZeroY'] }, + 'retouchareamethod' => { 428 => [\'RetouchAreas','RetouchAreasMethod'] }, + 'retouchareaoffsety' => { 428 => [\'RetouchAreas','RetouchAreasOffsetY'] }, + 'retouchareaopacity' => { 428 => [\'RetouchAreas','RetouchAreasOpacity'] }, + 'retouchareas' => { 428 => 'RetouchAreas' }, + 'retouchareaseed' => { 428 => [\'RetouchAreas','RetouchAreasSeed'] }, + 'retouchareasourcestate' => { 428 => [\'RetouchAreas','RetouchAreasSourceState'] }, + 'retouchareasourcex' => { 428 => [\'RetouchAreas','RetouchAreasSourceX'] }, + 'retouchareaspottype' => { 428 => [\'RetouchAreas','RetouchAreasSpotType'] }, 'retouchhistory' => { 201 => 0x9e }, - 'retouchinfo' => { 427 => 'RetouchInfo' }, + 'retouchinfo' => { 428 => 'RetouchInfo' }, 'retouchnefprocessing' => { 207 => 0x5 }, 'retractlensonpoweroff' => { 75 => 0x814 }, 'reuse' => { 274 => 'Reuse' }, - 'reuseallowed' => { 454 => 'ReuseAllowed' }, - 'reuseprohibited' => { 444 => 'reuseProhibited' }, + 'reuseallowed' => { 455 => 'ReuseAllowed' }, + 'reuseprohibited' => { 445 => 'reuseProhibited' }, 'reverseexposurecompdial' => { 254 => '5.2' }, 'reverseindicators' => { 247 => '12.1', 248 => '6.1', 250 => '6.1', 251 => '6.1', 252 => '4.3', 253 => '5.2', 254 => '5.4', 256 => '33.5', 257 => '5.1', 260 => '6.1', 261 => '6.1', 262 => '6.2' }, 'reverseshutterspeedaperture' => { 254 => '5.3' }, - 'revision' => { 429 => 'revision' }, + 'revision' => { 430 => 'revision' }, 'rgbcurvelimits' => { 99 => 0x238 }, 'rgbcurvepoints' => { 98 => 0x7, 99 => 0x20e }, - 'richtextcomment' => { 434 => 'RichTextComment' }, - 'ricohdate' => { 343 => 0x6 }, - 'ricohimageheight' => { 343 => 0x2 }, - 'ricohimagewidth' => { 343 => 0x0 }, + 'richtextcomment' => { 435 => 'RichTextComment' }, + 'ricohdate' => { 344 => 0x6 }, + 'ricohimageheight' => { 344 => 0x2 }, + 'ricohimagewidth' => { 344 => 0x0 }, 'rightascension' => { 149 => 'RightAscension' }, - 'rights' => { 428 => 'rights' }, - 'rightsagent' => { 444 => 'rightsAgent' }, - 'rightsowner' => { 444 => 'rightsOwner' }, + 'rights' => { 429 => 'rights' }, + 'rightsagent' => { 445 => 'rightsAgent' }, + 'rightsowner' => { 445 => 'rightsOwner' }, 'roll' => { 106 => 0x8 }, - 'rollangle' => { 218 => 0x350b, 219 => 0x2c24, 227 => 0x36f4, 264 => 0x903, 285 => 0x90, 318 => 0x1, 349 => 0x2 }, + 'rollangle' => { 218 => 0x350b, 219 => 0x2c24, 227 => 0x36f4, 264 => 0x903, 285 => 0x90, 318 => 0x1, 350 => 0x2 }, 'romoperationmode' => { 88 => 0x80d }, - 'rotation' => { 29 => 0x17, 30 => 0x18, 87 => 0x3, 94 => 0x10002, 99 => 0x26e, 114 => 0x4, 149 => 'Rotation', 165 => [0x65,0x50], 166 => 0x46, 167 => 0x5a, 170 => 0x10, 218 => 0x3693, 219 => 0xca, 225 => '590.1', 240 => 0x76a43207, 285 => 0x30, 300 => '17.2', 330 => 0xd8, 362 => 0x3f, 363 => 0x3f, 373 => 0x10 }, - 'routedto' => { 433 => 'RoutedTo' }, + 'rotation' => { 29 => 0x17, 30 => 0x18, 87 => 0x3, 94 => 0x10002, 99 => 0x26e, 114 => 0x4, 149 => 'Rotation', 165 => [0x65,0x50], 166 => 0x46, 167 => 0x5a, 170 => 0x10, 218 => 0x3693, 219 => 0xca, 225 => '590.1', 240 => 0x76a43207, 285 => 0x30, 300 => '17.2', 330 => 0xd8, 363 => 0x3f, 364 => 0x3f, 374 => 0x10 }, + 'routedto' => { 434 => 'RoutedTo' }, 'routing' => { 335 => 'Routing' }, - 'routingdestinations' => { 417 => 'RoutingDestinations' }, - 'routingexclusions' => { 417 => 'RoutingExclusions' }, - 'routingnotes' => { 433 => 'RoutingNotes' }, + 'routingdestinations' => { 418 => 'RoutingDestinations' }, + 'routingexclusions' => { 418 => 'RoutingExclusions' }, + 'routingnotes' => { 434 => 'RoutingNotes' }, 'rowsperstrip' => { 110 => 0x116 }, - 'rpp' => { 421 => 'rpp' }, + 'rpp' => { 422 => 'rpp' }, 'safetyshift' => { 75 => 0x108 }, 'safetyshiftinavortv' => { 73 => 0x10, 74 => 0x10, 76 => 0xf, 77 => 0x10, 80 => 0x10 }, 'sameexposurefornewaperture' => { 75 => 0x112 }, 'samplebits' => { 139 => 'SampleBits' }, - 'samplepagerange' => { 441 => 'samplePageRange' }, + 'samplepagerange' => { 442 => 'samplePageRange' }, 'samplerate' => { 139 => 'SampleRate' }, - 'samplesperpixel' => { 110 => 0x115, 289 => 0x8, 447 => 'SamplesPerPixel' }, + 'samplesperpixel' => { 110 => 0x115, 289 => 0x8, 448 => 'SamplesPerPixel' }, 'samplestructure' => { 120 => 0x5a }, - 'samsungmodelid' => { 351 => 0x3 }, - 'sanyoquality' => { 353 => 0x201 }, - 'sanyothumbnail' => { 353 => 0x100 }, - 'saturation' => { 9 => 0x6e, 11 => 0x76, 33 => 0xe, 45 => 0x1, 103 => 0xd, 104 => [0x3013,0x1f], 110 => [0xa409,0xfe55], 115 => 0x1003, 140 => 'Saturation', 164 => 0x1f, 165 => 0x32, 166 => 0x28, 167 => 0x1a, 172 => 0x1, 201 => [0x94,0xaa], 203 => 0x35, 204 => 0x3b, 285 => 0x40, 287 => 0x300d, 319 => 0x1f, 326 => 0xd, 340 => 0x27, 343 => 0x28, 344 => 0x1013, 354 => 0x10, 362 => 0x1e, 363 => 0x1b, 374 => 0x2005, 427 => 'Saturation', 431 => 'Saturation' }, - 'saturationadj' => { 94 => 0x20901, 99 => 0x116, 239 => 0x1, 243 => 0x2e, 407 => 0x8016 }, - 'saturationadjustmentaqua' => { 427 => 'SaturationAdjustmentAqua' }, - 'saturationadjustmentblue' => { 427 => 'SaturationAdjustmentBlue' }, - 'saturationadjustmentgreen' => { 427 => 'SaturationAdjustmentGreen' }, - 'saturationadjustmentmagenta' => { 427 => 'SaturationAdjustmentMagenta' }, - 'saturationadjustmentorange' => { 427 => 'SaturationAdjustmentOrange' }, - 'saturationadjustmentpurple' => { 427 => 'SaturationAdjustmentPurple' }, - 'saturationadjustmentred' => { 427 => 'SaturationAdjustmentRed' }, - 'saturationadjustmentyellow' => { 427 => 'SaturationAdjustmentYellow' }, + 'samsungmodelid' => { 352 => 0x3 }, + 'sanyoquality' => { 354 => 0x201 }, + 'sanyothumbnail' => { 354 => 0x100 }, + 'saturation' => { 9 => 0x6e, 11 => 0x76, 33 => 0xe, 45 => 0x1, 103 => 0xd, 104 => [0x3013,0x1f], 110 => [0xa409,0xfe55], 115 => 0x1003, 140 => 'Saturation', 164 => 0x1f, 165 => 0x32, 166 => 0x28, 167 => 0x1a, 172 => 0x1, 201 => [0x94,0xaa], 203 => 0x35, 204 => 0x3b, 285 => 0x40, 287 => 0x300d, 319 => 0x1f, 326 => 0xd, 340 => 0x27, 344 => 0x28, 345 => 0x1013, 355 => 0x10, 363 => 0x1e, 364 => 0x1b, 375 => 0x2005, 428 => 'Saturation', 432 => 'Saturation' }, + 'saturationadj' => { 94 => 0x20901, 99 => 0x116, 239 => 0x1, 243 => 0x2e, 408 => 0x8016 }, + 'saturationadjustmentaqua' => { 428 => 'SaturationAdjustmentAqua' }, + 'saturationadjustmentblue' => { 428 => 'SaturationAdjustmentBlue' }, + 'saturationadjustmentgreen' => { 428 => 'SaturationAdjustmentGreen' }, + 'saturationadjustmentmagenta' => { 428 => 'SaturationAdjustmentMagenta' }, + 'saturationadjustmentorange' => { 428 => 'SaturationAdjustmentOrange' }, + 'saturationadjustmentpurple' => { 428 => 'SaturationAdjustmentPurple' }, + 'saturationadjustmentred' => { 428 => 'SaturationAdjustmentRed' }, + 'saturationadjustmentyellow' => { 428 => 'SaturationAdjustmentYellow' }, 'saturationauto' => { 64 => 0x98 }, 'saturationfaithful' => { 18 => 0xfe, 63 => 0x68, 64 => 0x68 }, 'saturationlandscape' => { 18 => 0xfc, 63 => 0x38, 64 => 0x38 }, 'saturationmonochrome' => { 63 => 0x80, 64 => 0x80 }, 'saturationneutral' => { 18 => 0xfd, 63 => 0x50, 64 => 0x50 }, 'saturationportrait' => { 18 => 0xfb, 63 => 0x20, 64 => 0x20 }, - 'saturationsetting' => { 272 => 0x1010, 364 => 0x11, 379 => 0x9 }, + 'saturationsetting' => { 272 => 0x1010, 365 => 0x11, 380 => 0x9 }, 'saturationstandard' => { 18 => 0xfa, 63 => 0x8, 64 => 0x8 }, 'saturationuserdef1' => { 18 => 0x100, 63 => 0x98, 64 => 0xb0 }, 'saturationuserdef2' => { 18 => 0x101, 63 => 0xb0, 64 => 0xc8 }, 'saturationuserdef3' => { 18 => 0x102, 63 => 0xc8, 64 => 0xe0 }, - 'saveid' => { 452 => 'SaveID' }, - 'scaletype' => { 451 => 'scaleType' }, + 'saveid' => { 453 => 'SaveID' }, + 'scaletype' => { 452 => 'scaleType' }, 'scanimageenhancer' => { 208 => 0x60 }, 'scanningdirection' => { 120 => 0x64 }, - 'scene' => { 436 => 'Scene', 451 => 'scene' }, + 'scene' => { 437 => 'Scene', 452 => 'scene' }, 'scenearea' => { 267 => 0x211, 269 => 0x1031 }, 'sceneassist' => { 201 => 0x9c }, - 'scenecapturetype' => { 110 => 0xa406, 431 => 'SceneCaptureType' }, + 'scenecapturetype' => { 110 => 0xa406, 432 => 'SceneCaptureType' }, 'scenedetect' => { 267 => 0x210, 269 => 0x1030 }, 'scenedetectdata' => { 267 => 0x212, 269 => 0x1033 }, - 'scenemode' => { 128 => 0xfa02, 169 => 0x100, 201 => 0x8f, 264 => 0x509, 269 => 0x403, 285 => 0x8001, 293 => 0xf, 374 => 0xb023 }, + 'scenemode' => { 128 => 0xfa02, 169 => 0x100, 201 => 0x8f, 264 => 0x509, 269 => 0x403, 285 => 0x8001, 293 => 0xf, 375 => 0xb023 }, 'scenemodeused' => { 130 => [0x6002,0xf002] }, 'scenerecognition' => { 115 => 0x1425 }, - 'sceneselect' => { 353 => 0x21f }, - 'scenetype' => { 110 => 0xa301, 431 => 'SceneType' }, + 'sceneselect' => { 354 => 0x21f }, + 'scenetype' => { 110 => 0xa301, 432 => 'SceneType' }, 'screentips' => { 247 => '12.7', 248 => '5.3', 256 => '13.1', 257 => '4.4', 260 => '5.4', 262 => '5.1' }, - 'season' => { 437 => 'Season', 440 => 'season' }, - 'seasonidentifier' => { 437 => [\'Season','SeasonIdentifier'] }, - 'seasonname' => { 437 => [\'Season','SeasonName'] }, - 'seasonnumber' => { 437 => [\'Season','SeasonNumber'] }, - 'secondaryftp' => { 417 => 'SecondaryFTP' }, + 'season' => { 438 => 'Season', 441 => 'season' }, + 'seasonidentifier' => { 438 => [\'Season','SeasonIdentifier'] }, + 'seasonname' => { 438 => [\'Season','SeasonName'] }, + 'seasonnumber' => { 438 => [\'Season','SeasonNumber'] }, + 'secondaryftp' => { 418 => 'SecondaryFTP' }, 'secondaryslotfunction' => { 218 => 0x1d0, 227 => 0x1d0 }, - 'section' => { 441 => 'section' }, + 'section' => { 442 => 'section' }, 'securityclassification' => { 110 => 0x9212 }, 'selectableafpoint' => { 75 => 0x509 }, 'selectafareaselectionmode' => { 2 => 0xc }, 'selectafareaselectmode' => { 75 => 0x512 }, - 'selftimer' => { 33 => 0x2, 285 => 0x2e, 353 => 0x214, 382 => 0x1134, 383 => 0x1134, 384 => 0x1110, 385 => 0x118c, 386 => 0x1168, 387 => 0x1020, 388 => 0x218, 389 => 0x218, 390 => 0x210 }, + 'selftimer' => { 33 => 0x2, 285 => 0x2e, 354 => 0x214, 383 => 0x1134, 384 => 0x1134, 385 => 0x1110, 386 => 0x118c, 387 => 0x1168, 388 => 0x1020, 389 => 0x218, 390 => 0x218, 391 => 0x210 }, 'selftimer2' => { 69 => 0x1d }, 'selftimerinterval' => { 257 => '19.2' }, 'selftimermode' => { 110 => 0x882b }, 'selftimershotcount' => { 248 => '20.2', 250 => '20.3', 251 => '20.3', 252 => '18.2', 253 => '19.2', 254 => '19.2', 255 => '19.3', 257 => '19.3', 260 => '20.3', 261 => '20.3', 262 => '20.2' }, 'selftimershotinterval' => { 248 => '20.3', 250 => '20.2', 251 => '20.2', 255 => '19.2', 260 => '20.2', 261 => '20.2' }, 'selftimertime' => { 88 => 0x1806, 167 => 0x1f, 247 => '18.1', 248 => '20.1', 249 => '3.3', 250 => '20.1', 251 => '20.1', 252 => '18.1', 253 => '19.1', 254 => '19.1', 255 => '19.1', 256 => '7.2', 257 => '19.1', 258 => '3.3', 260 => '20.1', 261 => '20.1', 262 => '20.1' }, - 'sellingagency' => { 441 => 'sellingAgency' }, + 'sellingagency' => { 442 => 'sellingAgency' }, 'seminfo' => { 110 => 0x8546 }, - 'sensingmethod' => { 110 => 0xa217, 431 => 'SensingMethod' }, + 'sensingmethod' => { 110 => 0xa217, 432 => 'SensingMethod' }, 'sensitivityadjust' => { 319 => 0x40 }, 'sensitivitysteps' => { 300 => ['14.3','17.4'], 302 => 0x1 }, - 'sensitivitytype' => { 110 => 0x8830, 432 => 'SensitivityType' }, + 'sensitivitytype' => { 110 => 0x8830, 433 => 'SensitivityType' }, 'sensor' => { 174 => 0x665e }, - 'sensorareas' => { 351 => 0xa010 }, + 'sensorareas' => { 352 => 0xa010 }, 'sensorbitdepth' => { 287 => 0x312d }, 'sensorbluelevel' => { 67 => 0x5 }, 'sensorcalibration' => { 268 => 0x805 }, 'sensorcleaning' => { 81 => 0xd }, 'sensorfullheight' => { 123 => 0xf904 }, 'sensorfullwidth' => { 123 => 0xf903 }, - 'sensorheight' => { 123 => 0xf901, 128 => 0xfa21, 171 => 0x8, 287 => 0x312c, 328 => 0x109, 344 => 0x1602 }, + 'sensorheight' => { 123 => 0xf901, 128 => 0xfa21, 171 => 0x8, 287 => 0x312c, 328 => 0x109, 345 => 0x1602 }, 'sensorleftmargin' => { 328 => 0x10a }, 'sensorpixelsize' => { 201 => 0x9a }, 'sensorredlevel' => { 67 => 0x4 }, 'sensorserialnumber' => { 124 => 0x9ce }, 'sensorsize' => { 140 => 'SensorSize', 319 => 0x35 }, - 'sensortemperature' => { 267 => 0x1500, 269 => 0x1007, 324 => 0xc, 328 => 0x210, 354 => [0x39,0x55] }, + 'sensortemperature' => { 267 => 0x1500, 269 => 0x1007, 324 => 0xc, 328 => 0x210, 355 => [0x39,0x55] }, 'sensortemperature2' => { 324 => 0xe, 328 => 0x211 }, 'sensortopmargin' => { 328 => 0x10b }, - 'sensorwidth' => { 123 => 0xf900, 128 => 0xfa20, 171 => 0xa, 287 => 0x312b, 328 => 0x108, 344 => 0x1601 }, - 'sequence' => { 340 => 0x7 }, - 'sequencefilenumber' => { 383 => 0x4, 384 => 0x4, 385 => 0x4, 386 => 0x4, 394 => 0xc, 395 => 0xc, 396 => 0x1a }, - 'sequenceimagenumber' => { 383 => 0x0, 384 => 0x0, 385 => 0x0, 386 => 0x0, 394 => 0x8, 395 => 0x8, 396 => 0x12, 403 => 0x24 }, - 'sequencelength' => { 394 => 0x22, 395 => 0x1e, 396 => [0x16,0x1e] }, - 'sequencename' => { 440 => 'sequenceName' }, - 'sequencenumber' => { 69 => 0x9, 104 => 0x301c, 115 => 0x1101, 126 => 0x1d, 226 => 0x51c, 285 => 0x2b, 364 => [0x10c,0x30c], 374 => 0xb04a, 440 => 'sequenceNumber' }, - 'sequenceshotinterval' => { 353 => 0x224 }, - 'sequencetotalnumber' => { 440 => 'sequenceTotalNumber' }, - 'sequentialshot' => { 353 => 0x20e }, - 'serialnumber' => { 57 => 0xc, 88 => 0x180b, 110 => [0xa431,0xfde9], 123 => 0xfa04, 125 => 0xfa00, 127 => 0xc354, 128 => 0xfa19, 137 => 0x0, 140 => 'SerialNumber', 201 => [0xa0,0x1d], 265 => 0x101, 269 => [0x404,0x101a], 281 => 0x303, 287 => 0x3103, 319 => 0x229, 328 => 0x102, 329 => 0x407, 340 => 0x15, 344 => 0x5, 354 => 0x2, 423 => 'SerialNumber', 432 => 'BodySerialNumber' }, + 'sensorwidth' => { 123 => 0xf900, 128 => 0xfa20, 171 => 0xa, 287 => 0x312b, 328 => 0x108, 345 => 0x1601 }, + 'sequence' => { 340 => 0x7, 341 => 0x35 }, + 'sequencefilenumber' => { 384 => 0x4, 385 => 0x4, 386 => 0x4, 387 => 0x4, 395 => 0xc, 396 => 0xc, 397 => 0x1a }, + 'sequenceimagenumber' => { 384 => 0x0, 385 => 0x0, 386 => 0x0, 387 => 0x0, 395 => 0x8, 396 => 0x8, 397 => 0x12, 404 => 0x24 }, + 'sequencelength' => { 395 => 0x22, 396 => 0x1e, 397 => [0x16,0x1e] }, + 'sequencename' => { 441 => 'sequenceName' }, + 'sequencenumber' => { 69 => 0x9, 104 => 0x301c, 115 => 0x1101, 126 => 0x1d, 226 => 0x51c, 285 => 0x2b, 365 => [0x10c,0x30c], 375 => 0xb04a, 441 => 'sequenceNumber' }, + 'sequenceshotinterval' => { 354 => 0x224 }, + 'sequencetotalnumber' => { 441 => 'sequenceTotalNumber' }, + 'sequentialshot' => { 354 => 0x20e }, + 'serialnumber' => { 57 => 0xc, 88 => 0x180b, 110 => [0xa431,0xfde9], 123 => 0xfa04, 125 => 0xfa00, 127 => 0xc354, 128 => 0xfa19, 137 => 0x0, 140 => 'SerialNumber', 201 => [0xa0,0x1d], 265 => 0x101, 269 => [0x404,0x101a], 281 => 0x303, 287 => 0x3103, 319 => 0x229, 328 => 0x102, 329 => 0x407, 340 => 0x15, 341 => 0x4b, 345 => 0x5, 355 => 0x2, 424 => 'SerialNumber', 433 => 'BodySerialNumber' }, 'serialnumberformat' => { 57 => 0x15, 88 => 0x183b }, - 'series' => { 437 => 'Series' }, - 'seriesdatetime' => { 409 => 'SeriesDateTime' }, - 'seriesdescription' => { 409 => 'SeriesDescription' }, - 'seriesidentifier' => { 437 => [\'Series','SeriesIdentifier'] }, - 'seriesmodality' => { 409 => 'SeriesModality' }, - 'seriesname' => { 437 => [\'Series','SeriesName'] }, - 'seriesnumber' => { 409 => 'SeriesNumber', 441 => 'seriesNumber' }, - 'seriestitle' => { 441 => 'seriesTitle' }, + 'series' => { 438 => 'Series' }, + 'seriesdatetime' => { 410 => 'SeriesDateTime' }, + 'seriesdescription' => { 410 => 'SeriesDescription' }, + 'seriesidentifier' => { 438 => [\'Series','SeriesIdentifier'] }, + 'seriesmodality' => { 410 => 'SeriesModality' }, + 'seriesname' => { 438 => [\'Series','SeriesName'] }, + 'seriesnumber' => { 410 => 'SeriesNumber', 442 => 'seriesNumber' }, + 'seriestitle' => { 442 => 'seriesTitle' }, 'serviceidentifier' => { 119 => 0x1e }, - 'servingsize' => { 443 => 'servingSize' }, + 'servingsize' => { 444 => 'servingSize' }, 'setbuttoncrosskeysfunc' => { 78 => 0x0, 79 => 0x0 }, 'setbuttonwhenshooting' => { 73 => 0x1, 75 => 0x704, 81 => 0xc }, 'setfunctionwhenshooting' => { 76 => 0x0, 77 => 0x1, 80 => 0x1 }, - 'setting' => { 440 => 'setting' }, + 'setting' => { 441 => 'setting' }, 'shadingcompensation' => { 264 => 0x50c, 285 => 0x8a }, 'shadingcompensation2' => { 268 => 0x1012 }, - 'shadow' => { 354 => 0xe }, + 'shadow' => { 355 => 0xe }, 'shadowadj' => { 94 => 0x2030b }, 'shadowcorrection' => { 319 => 0x79 }, 'shadowprotection' => { 239 => 0x0 }, - 'shadows' => { 110 => 0xfe52, 420 => 'Shadows', 427 => 'Shadows' }, - 'shadows2012' => { 427 => 'Shadows2012' }, + 'shadows' => { 110 => 0xfe52, 421 => 'Shadows', 428 => 'Shadows' }, + 'shadows2012' => { 428 => 'Shadows2012' }, 'shadowscale' => { 110 => 0xc633 }, - 'shadowtint' => { 427 => 'ShadowTint' }, + 'shadowtint' => { 428 => 'ShadowTint' }, 'shadowtone' => { 115 => 0x1040 }, 'shakereduction' => { 321 => 0x1, 322 => 0x1 }, - 'sharpendetail' => { 427 => 'SharpenDetail' }, - 'sharpenedgemasking' => { 427 => 'SharpenEdgeMasking' }, + 'sharpendetail' => { 428 => 'SharpenDetail' }, + 'sharpenedgemasking' => { 428 => 'SharpenEdgeMasking' }, 'sharpening' => { 287 => 0x300b }, 'sharpeningadj' => { 243 => 0x2b }, - 'sharpenradius' => { 427 => 'SharpenRadius' }, - 'sharpness' => { 7 => [0x42,0x48], 9 => 0x72, 11 => 0x74, 33 => 0xf, 67 => 0x2, 103 => 0xb, 104 => [0x3011,0x21], 110 => [0xa40a,0xfe56], 115 => 0x1001, 126 => 0x6b, 135 => 0x37, 140 => 'Sharpness', 164 => 0x21, 165 => 0x30, 166 => 0x26, 167 => 0x18, 172 => 0x3, 201 => 0x6, 203 => 0x32, 204 => 0x33, 269 => 0x100f, 285 => 0x41, 319 => 0x21, 326 => 0xb, 340 => 0x26, 343 => 0x22, 344 => [0x1003,0x1014], 354 => 0x11, 362 => 0x1c, 363 => 0x19, 374 => 0x2006, 403 => 0x52, 427 => 'Sharpness', 431 => 'Sharpness' }, - 'sharpnessadj' => { 94 => 0x20310, 99 => 0x25a, 407 => 0x801a }, + 'sharpenradius' => { 428 => 'SharpenRadius' }, + 'sharpness' => { 7 => [0x42,0x48], 9 => 0x72, 11 => 0x74, 33 => 0xf, 67 => 0x2, 103 => 0xb, 104 => [0x3011,0x21], 110 => [0xa40a,0xfe56], 115 => 0x1001, 126 => 0x6b, 135 => 0x37, 140 => 'Sharpness', 164 => 0x21, 165 => 0x30, 166 => 0x26, 167 => 0x18, 172 => 0x3, 201 => 0x6, 203 => 0x32, 204 => 0x33, 269 => 0x100f, 285 => 0x41, 319 => 0x21, 326 => 0xb, 340 => 0x26, 344 => 0x22, 345 => [0x1003,0x1014], 355 => 0x11, 363 => 0x1c, 364 => 0x19, 375 => 0x2006, 404 => 0x52, 428 => 'Sharpness', 432 => 'Sharpness' }, + 'sharpnessadj' => { 94 => 0x20310, 99 => 0x25a, 408 => 0x801a }, 'sharpnessadjon' => { 94 => '0x20310.0' }, 'sharpnessauto' => { 64 => 0x94 }, 'sharpnessfactor' => { 269 => 0x102a }, @@ -4555,41 +4561,41 @@ 'sharpnesslandscape' => { 18 => 0xf3, 63 => 0x34, 64 => 0x34 }, 'sharpnessmonochrome' => { 18 => 0xf6, 63 => 0x7c, 64 => 0x7c }, 'sharpnessneutral' => { 18 => 0xf4, 63 => 0x4c, 64 => 0x4c }, - 'sharpnessovershoot' => { 407 => 0x801b }, + 'sharpnessovershoot' => { 408 => 0x801b }, 'sharpnessportrait' => { 18 => 0xf2, 63 => 0x1c, 64 => 0x1c }, - 'sharpnesssetting' => { 264 => 0x506, 272 => 0x1013, 364 => 0x12, 379 => 0xa }, + 'sharpnesssetting' => { 264 => 0x506, 272 => 0x1013, 365 => 0x12, 380 => 0xa }, 'sharpnessstandard' => { 18 => 0xf1, 63 => 0x4, 64 => 0x4 }, 'sharpnessstrength' => { 94 => 0x20311 }, - 'sharpnessthreshold' => { 407 => 0x801d }, - 'sharpnessundershoot' => { 407 => 0x801c }, + 'sharpnessthreshold' => { 408 => 0x801d }, + 'sharpnessundershoot' => { 408 => 0x801c }, 'sharpnessuserdef1' => { 18 => 0xf7, 63 => 0x94, 64 => 0xac }, 'sharpnessuserdef2' => { 18 => 0xf8, 63 => 0xac, 64 => 0xc4 }, 'sharpnessuserdef3' => { 18 => 0xf9, 63 => 0xc4, 64 => 0xdc }, - 'shootid' => { 440 => 'shootID' }, + 'shootid' => { 441 => 'shootID' }, 'shootingdistance' => { 94 => 0x20701 }, 'shootinginfodisplay' => { 247 => '13.2', 248 => '5.1', 256 => '10.2', 257 => '4.1', 260 => '5.1', 262 => '5.3' }, 'shootinginfomonitorofftime' => { 247 => '26.2', 248 => '22.2', 250 => '22.2', 251 => '22.2', 255 => '21.2', 256 => '9.1', 257 => '21.2', 260 => '22.2', 261 => '22.2', 262 => '22.2' }, 'shootingmode' => { 140 => 'ShootingMode', 201 => 0x89, 285 => 0x1f }, 'shootingmodesetting' => { 249 => '5.1' }, - 'shortdescription' => { 429 => 'shortdescription' }, + 'shortdescription' => { 430 => 'shortdescription' }, 'shortdocumentid' => { 118 => 0xba }, 'shortownername' => { 18 => 0xac }, 'shortreleasetimelag' => { 75 => 0x80d }, - 'shotdate' => { 451 => 'shotDate' }, - 'shotday' => { 451 => 'shotDay' }, - 'shotlocation' => { 451 => 'shotLocation' }, - 'shotname' => { 451 => 'shotName' }, - 'shotnumber' => { 451 => 'shotNumber' }, - 'shotnumbersincepowerup' => { 378 => 0x44e, 394 => 0x1a, 395 => 0x16, 396 => 0xa }, - 'shotnumbersincepowerup2' => { 364 => 0x200 }, - 'shotsize' => { 451 => 'shotSize' }, - 'shownevent' => { 437 => 'EventExt' }, - 'showneventidentifier' => { 437 => [\'EventExt','EventExtIdentifier'] }, - 'showneventname' => { 437 => [\'EventExt','EventExtName'] }, + 'shotdate' => { 452 => 'shotDate' }, + 'shotday' => { 452 => 'shotDay' }, + 'shotlocation' => { 452 => 'shotLocation' }, + 'shotname' => { 452 => 'shotName' }, + 'shotnumber' => { 452 => 'shotNumber' }, + 'shotnumbersincepowerup' => { 379 => 0x44e, 395 => 0x1a, 396 => 0x16, 397 => 0xa }, + 'shotnumbersincepowerup2' => { 365 => 0x200 }, + 'shotsize' => { 452 => 'shotSize' }, + 'shownevent' => { 438 => 'EventExt' }, + 'showneventidentifier' => { 438 => [\'EventExt','EventExtIdentifier'] }, + 'showneventname' => { 438 => [\'EventExt','EventExtName'] }, 'shutter-aelock' => { 73 => 0x4, 75 => 0x701, 76 => 0x3, 77 => 0x4, 78 => 0x3, 79 => 0x3, 80 => 0x4, 81 => 0x2 }, 'shutteraelbutton' => { 74 => 0x4 }, 'shutterbuttonafonbutton' => { 75 => 0x701 }, - 'shuttercount' => { 10 => 0x176, 51 => 0x1, 201 => 0xa7, 209 => [0x6a,0x157,0x24d], 210 => 0x286, 211 => 0x279, 212 => 0x284, 213 => 0x242, 214 => 0x280, 215 => 0x276, 216 => [0x27d,0x27f], 217 => 0x246, 220 => 0x2d6, 221 => 0x321, 222 => 0xbd8, 223 => 0x287, 224 => 0x320, 225 => 0x24a, 226 => 0x5fb, 229 => 0x2d5, 319 => 0x5d, 373 => 0x846, 377 => [0x125,0x14a] }, + 'shuttercount' => { 10 => 0x176, 51 => 0x1, 201 => 0xa7, 209 => [0x6a,0x157,0x24d], 210 => 0x286, 211 => 0x279, 212 => 0x284, 213 => 0x242, 214 => 0x280, 215 => 0x276, 216 => [0x27d,0x27f], 217 => 0x246, 220 => 0x2d6, 221 => 0x321, 222 => 0xbd8, 223 => 0x287, 224 => 0x320, 225 => 0x24a, 226 => 0x5fb, 229 => 0x2d5, 319 => 0x5d, 374 => 0x846, 378 => [0x125,0x14a] }, 'shuttercurtainsync' => { 73 => 0xf, 74 => 0xf, 75 => 0x305, 76 => 0xe, 77 => 0xf, 78 => 0x8, 79 => 0x8, 80 => 0xf, 81 => 0x8 }, 'shuttermode' => { 126 => 0x1b }, 'shutterreleasebuttonae-l' => { 247 => '17.7', 248 => '18.4', 250 => '78.4', 251 => '78.4', 252 => '16.1', 253 => '17.1', 254 => '17.1', 255 => '17.1', 256 => '7.1', 257 => '17.5', 260 => '18.4', 261 => '78.4', 262 => '18.2' }, @@ -4599,87 +4605,87 @@ 'shutterreleasewithoutlens' => { 75 => 0x711 }, 'shutterspeedlock' => { 248 => '38.1', 250 => '38.1', 251 => '38.1', 260 => '38.1', 261 => '38.1' }, 'shutterspeedrange' => { 75 => 0x10c }, - 'shutterspeedsetting' => { 167 => 0x6, 362 => 0x2f, 363 => 0x28, 364 => 0x0 }, - 'shutterspeedvalue' => { 84 => 0x1, 110 => 0x9201, 269 => 0x1000, 328 => 0x400, 431 => 'ShutterSpeedValue' }, + 'shutterspeedsetting' => { 167 => 0x6, 363 => 0x2f, 364 => 0x28, 365 => 0x0 }, + 'shutterspeedvalue' => { 84 => 0x1, 110 => 0x9201, 269 => 0x1000, 328 => 0x400, 432 => 'ShutterSpeedValue' }, 'shuttertype' => { 115 => 0x1050, 285 => 0x9f }, - 'sidecarforextension' => { 439 => 'SidecarForExtension' }, + 'sidecarforextension' => { 440 => 'SidecarForExtension' }, 'similarityindex' => { 118 => 0xe4 }, 'singleframebracketing' => { 167 => 0x21 }, - 'skilllevel' => { 443 => 'skillLevel' }, + 'skilllevel' => { 444 => 'skillLevel' }, 'skintonecorrection' => { 319 => 0x95 }, 'slaveflashmeteringsegments' => { 319 => 0x20b }, - 'slideshowname' => { 440 => 'slideshowName' }, - 'slideshownumber' => { 440 => 'slideshowNumber' }, - 'slideshowtotalnumber' => { 440 => 'slideshowTotalNumber' }, + 'slideshowname' => { 441 => 'slideshowName' }, + 'slideshownumber' => { 441 => 'slideshowNumber' }, + 'slideshowtotalnumber' => { 441 => 'slideshowTotalNumber' }, 'slowshutter' => { 69 => 0x8 }, 'slowsync' => { 115 => 0x1030 }, - 'smartalbumcolor' => { 351 => 0x20 }, - 'smartrange' => { 351 => 0xa012 }, - 'smileshutter' => { 364 => 0x31 }, - 'smileshuttermode' => { 364 => 0x27 }, - 'smoothness' => { 110 => 0xfe57, 427 => 'Smoothness' }, - 'snapshot' => { 437 => 'SnapshotLink' }, - 'snapshotformat' => { 437 => [\'SnapshotLink','SnapshotLinkFormat'] }, - 'snapshotheightpixels' => { 437 => [\'SnapshotLink','SnapshotLinkHeightPixels'] }, - 'snapshotimagerole' => { 437 => [\'SnapshotLink','SnapshotLinkImageRole'] }, - 'snapshotlink' => { 437 => [\'SnapshotLink','SnapshotLinkLink'] }, - 'snapshotlinkqualifier' => { 437 => [\'SnapshotLink','SnapshotLinkLinkQualifier'] }, - 'snapshots' => { 421 => 'Snapshots' }, - 'snapshotusedvideoframe' => { 437 => [\'SnapshotLink','SnapshotLinkUsedVideoFrame'] }, - 'snapshotusedvideoframetimeformat' => { 437 => [\'SnapshotLink','SnapshotLinkUsedVideoFrameTimeFormat'] }, - 'snapshotusedvideoframetimevalue' => { 437 => [\'SnapshotLink','SnapshotLinkUsedVideoFrameTimeValue'] }, - 'snapshotusedvideoframevalue' => { 437 => [\'SnapshotLink','SnapshotLinkUsedVideoFrameValue'] }, - 'snapshotwidthpixels' => { 437 => [\'SnapshotLink','SnapshotLinkWidthPixels'] }, - 'softskineffect' => { 374 => 0x200f }, - 'software' => { 110 => 0x131, 141 => 'Software', 277 => 'Software', 328 => 0x203, 354 => 0x18, 412 => 'Software', 447 => 'Software' }, - 'softwareversion' => { 353 => 0x207 }, - 'sonydatetime' => { 381 => 0x6, 383 => 0x1b6, 384 => 0x210, 385 => 0x1fe, 386 => 0x22c }, - 'sonydatetime2' => { 392 => 0x51 }, - 'sonyexposuretime' => { 392 => 0x3a, 393 => 0x46 }, - 'sonyexposuretime2' => { 403 => 0xe }, - 'sonyfnumber' => { 392 => 0x3c, 393 => 0x48, 403 => 0x14 }, - 'sonyimageheight' => { 381 => 0x1a, 394 => 0x44, 395 => 0x3f, 396 => 0x47 }, - 'sonyimageheightmax' => { 403 => 0x40 }, - 'sonyimagesize' => { 167 => 0x3b, 362 => 0x54, 363 => 0x54, 364 => 0x9 }, - 'sonyimagewidth' => { 381 => 0x1c }, - 'sonyimagewidthmax' => { 403 => 0x3e }, - 'sonyiso' => { 383 => 0x1218, 384 => 0x11f4, 385 => 0x1270, 386 => [0x1254,0x1258,0x1280], 387 => 0x113c, 388 => 0x344, 389 => 0x346, 390 => 0x320, 403 => 0x4 }, - 'sonymaxaperture' => { 392 => 0x0, 393 => 0x0 }, - 'sonymaxaperturevalue' => { 403 => 0x16 }, - 'sonyminaperture' => { 392 => 0x1, 393 => 0x1 }, - 'sonymodelid' => { 374 => 0xb001 }, + 'smartalbumcolor' => { 352 => 0x20 }, + 'smartrange' => { 352 => 0xa012 }, + 'smileshutter' => { 365 => 0x31 }, + 'smileshuttermode' => { 365 => 0x27 }, + 'smoothness' => { 110 => 0xfe57, 428 => 'Smoothness' }, + 'snapshot' => { 438 => 'SnapshotLink' }, + 'snapshotformat' => { 438 => [\'SnapshotLink','SnapshotLinkFormat'] }, + 'snapshotheightpixels' => { 438 => [\'SnapshotLink','SnapshotLinkHeightPixels'] }, + 'snapshotimagerole' => { 438 => [\'SnapshotLink','SnapshotLinkImageRole'] }, + 'snapshotlink' => { 438 => [\'SnapshotLink','SnapshotLinkLink'] }, + 'snapshotlinkqualifier' => { 438 => [\'SnapshotLink','SnapshotLinkLinkQualifier'] }, + 'snapshots' => { 422 => 'Snapshots' }, + 'snapshotusedvideoframe' => { 438 => [\'SnapshotLink','SnapshotLinkUsedVideoFrame'] }, + 'snapshotusedvideoframetimeformat' => { 438 => [\'SnapshotLink','SnapshotLinkUsedVideoFrameTimeFormat'] }, + 'snapshotusedvideoframetimevalue' => { 438 => [\'SnapshotLink','SnapshotLinkUsedVideoFrameTimeValue'] }, + 'snapshotusedvideoframevalue' => { 438 => [\'SnapshotLink','SnapshotLinkUsedVideoFrameValue'] }, + 'snapshotwidthpixels' => { 438 => [\'SnapshotLink','SnapshotLinkWidthPixels'] }, + 'softskineffect' => { 375 => 0x200f }, + 'software' => { 110 => 0x131, 141 => 'Software', 277 => 'Software', 328 => 0x203, 355 => 0x18, 413 => 'Software', 448 => 'Software' }, + 'softwareversion' => { 354 => 0x207 }, + 'sonydatetime' => { 382 => 0x6, 384 => 0x1b6, 385 => 0x210, 386 => 0x1fe, 387 => 0x22c }, + 'sonydatetime2' => { 393 => 0x51 }, + 'sonyexposuretime' => { 393 => 0x3a, 394 => 0x46 }, + 'sonyexposuretime2' => { 404 => 0xe }, + 'sonyfnumber' => { 393 => 0x3c, 394 => 0x48, 404 => 0x14 }, + 'sonyimageheight' => { 382 => 0x1a, 395 => 0x44, 396 => 0x3f, 397 => 0x47 }, + 'sonyimageheightmax' => { 404 => 0x40 }, + 'sonyimagesize' => { 167 => 0x3b, 363 => 0x54, 364 => 0x54, 365 => 0x9 }, + 'sonyimagewidth' => { 382 => 0x1c }, + 'sonyimagewidthmax' => { 404 => 0x3e }, + 'sonyiso' => { 384 => 0x1218, 385 => 0x11f4, 386 => 0x1270, 387 => [0x1254,0x1258,0x1280], 388 => 0x113c, 389 => 0x344, 390 => 0x346, 391 => 0x320, 404 => 0x4 }, + 'sonymaxaperture' => { 393 => 0x0, 394 => 0x0 }, + 'sonymaxaperturevalue' => { 404 => 0x16 }, + 'sonyminaperture' => { 393 => 0x1, 394 => 0x1 }, + 'sonymodelid' => { 375 => 0xb001 }, 'sonyquality' => { 167 => 0x3c }, - 'sonytimeminsec' => { 393 => 0x61 }, - 'source' => { 118 => 0x73, 277 => 'Source', 428 => 'source', 429 => 'source', 439 => 'Source' }, - 'sourcecount' => { 416 => 'SourceCount' }, + 'sonytimeminsec' => { 394 => 0x61 }, + 'source' => { 118 => 0x73, 277 => 'Source', 429 => 'source', 430 => 'source', 440 => 'Source' }, + 'sourcecount' => { 417 => 'SourceCount' }, 'sourcedirectoryindex' => { 306 => 0x0 }, 'sourcefileindex' => { 306 => 0x2 }, - 'sourcephotoscount' => { 415 => 'SourcePhotosCount' }, - 'spatialfrequencyresponse' => { 431 => 'SpatialFrequencyResponse' }, - 'spatialfrequencyresponsecolumns' => { 431 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseColumns'] }, - 'spatialfrequencyresponsenames' => { 431 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseNames'] }, - 'spatialfrequencyresponserows' => { 431 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseRows'] }, - 'spatialfrequencyresponsevalues' => { 431 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseValues'] }, - 'speakerplacement' => { 451 => 'speakerPlacement' }, + 'sourcephotoscount' => { 416 => 'SourcePhotosCount' }, + 'spatialfrequencyresponse' => { 432 => 'SpatialFrequencyResponse' }, + 'spatialfrequencyresponsecolumns' => { 432 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseColumns'] }, + 'spatialfrequencyresponsenames' => { 432 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseNames'] }, + 'spatialfrequencyresponserows' => { 432 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseRows'] }, + 'spatialfrequencyresponsevalues' => { 432 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseValues'] }, + 'speakerplacement' => { 452 => 'speakerPlacement' }, 'specialeffectlevel' => { 104 => 0x3030 }, 'specialeffectmode' => { 104 => 0x2076 }, 'specialeffectsetting' => { 104 => 0x3031 }, 'specialinstructions' => { 118 => 0x28 }, - 'specialmode' => { 269 => 0x200, 353 => 0x200 }, - 'specialoccasion' => { 443 => 'specialOccasion' }, - 'spectralsensitivity' => { 110 => 0x8824, 431 => 'SpectralSensitivity' }, + 'specialmode' => { 269 => 0x200, 354 => 0x200 }, + 'specialoccasion' => { 444 => 'specialOccasion' }, + 'spectralsensitivity' => { 110 => 0x8824, 432 => 'SpectralSensitivity' }, 'specularwhitelevel' => { 40 => [0x2b9,0x2d0,0x2d4], 42 => 0x1e4, 43 => [0x1fd,0x2dd], 44 => [0x231,0x30f] }, 'speedx' => { 106 => 0x3 }, 'speedy' => { 106 => 0x4 }, 'speedz' => { 106 => 0x5 }, - 'spherical' => { 416 => 'Spherical' }, + 'spherical' => { 417 => 'Spherical' }, 'splitcolumn' => { 328 => 0x222 }, - 'splittoningbalance' => { 427 => 'SplitToningBalance' }, - 'splittoninghighlighthue' => { 427 => 'SplitToningHighlightHue' }, - 'splittoninghighlightsaturation' => { 427 => 'SplitToningHighlightSaturation' }, - 'splittoningshadowhue' => { 427 => 'SplitToningShadowHue' }, - 'splittoningshadowsaturation' => { 427 => 'SplitToningShadowSaturation' }, - 'sport' => { 441 => 'sport' }, + 'splittoningbalance' => { 428 => 'SplitToningBalance' }, + 'splittoninghighlighthue' => { 428 => 'SplitToningHighlightHue' }, + 'splittoninghighlightsaturation' => { 428 => 'SplitToningHighlightSaturation' }, + 'splittoningshadowhue' => { 428 => 'SplitToningShadowHue' }, + 'splittoningshadowsaturation' => { 428 => 'SplitToningShadowSaturation' }, + 'sport' => { 442 => 'sport' }, 'spotfocuspointx' => { 164 => 0x2d }, 'spotfocuspointy' => { 164 => 0x2e }, 'spotmeteringmode' => { 33 => 0x27 }, @@ -4691,7 +4697,7 @@ 'srresult' => { 321 => 0x0, 322 => 0x0 }, 'stackedimage' => { 264 => 0x804 }, 'standardoutputhighlightpoint' => { 100 => 0x14 }, - 'standardoutputsensitivity' => { 110 => 0x8831, 432 => 'StandardOutputSensitivity' }, + 'standardoutputsensitivity' => { 110 => 0x8831, 433 => 'StandardOutputSensitivity' }, 'standardoutputshadowpoint' => { 100 => 0x15 }, 'standardrawcolortone' => { 100 => 0xd }, 'standardrawcontrast' => { 100 => 0xf }, @@ -4706,32 +4712,32 @@ 'standardunsharpmaskstrength' => { 100 => 0x92 }, 'standardunsharpmaskthreshold' => { 100 => 0x96 }, 'standbytimer' => { 248 => '19.1', 250 => '19.1', 251 => '19.1', 254 => '18.1', 255 => '18.1', 260 => '19.1', 261 => '19.1' }, - 'startingpage' => { 441 => 'startingPage' }, + 'startingpage' => { 442 => 'startingPage' }, 'startmovieshooting' => { 75 => 0x70d }, - 'starttimecode' => { 451 => 'startTimecode' }, - 'starttimecodetimeformat' => { 451 => [\'startTimecode','startTimecodeTimeFormat'] }, - 'starttimecodetimevalue' => { 451 => [\'startTimecode','startTimecodeTimeValue'] }, - 'starttimecodevalue' => { 451 => [\'startTimecode','startTimecodeValue'] }, - 'starttimesamplesize' => { 451 => 'startTimeSampleSize' }, - 'starttimescale' => { 451 => 'startTimeScale' }, - 'state' => { 145 => 'State', 285 => 0x6b, 439 => 'State' }, - 'status' => { 410 => 'Status', 419 => 'Status' }, - 'stereomode' => { 416 => 'StereoMode' }, - 'stitched' => { 416 => 'Stitched' }, - 'stitchingsoftware' => { 415 => 'StitchingSoftware', 416 => 'StitchingSoftware' }, - 'stopsabovebaseiso' => { 382 => 0x113e, 383 => 0x113e, 384 => 0x111a, 385 => 0x1196, 386 => 0x1172, 387 => 0x102a, 388 => 0x222, 389 => 0x222, 390 => 0x217, 403 => 0xa }, + 'starttimecode' => { 452 => 'startTimecode' }, + 'starttimecodetimeformat' => { 452 => [\'startTimecode','startTimecodeTimeFormat'] }, + 'starttimecodetimevalue' => { 452 => [\'startTimecode','startTimecodeTimeValue'] }, + 'starttimecodevalue' => { 452 => [\'startTimecode','startTimecodeValue'] }, + 'starttimesamplesize' => { 452 => 'startTimeSampleSize' }, + 'starttimescale' => { 452 => 'startTimeScale' }, + 'state' => { 145 => 'State', 285 => 0x6b, 440 => 'State' }, + 'status' => { 411 => 'Status', 420 => 'Status' }, + 'stereomode' => { 417 => 'StereoMode' }, + 'stitched' => { 417 => 'Stitched' }, + 'stitchingsoftware' => { 416 => 'StitchingSoftware', 417 => 'StitchingSoftware' }, + 'stopsabovebaseiso' => { 383 => 0x113e, 384 => 0x113e, 385 => 0x111a, 386 => 0x1196, 387 => 0x1172, 388 => 0x102a, 389 => 0x222, 390 => 0x222, 391 => 0x217, 404 => 0xa }, 'storagemethod' => { 171 => 0x12 }, 'storebyorientation' => { 248 => '46.3', 250 => '47.3', 251 => '47.3', 260 => '47.3', 261 => '47.3' }, - 'storylineidentifier' => { 437 => 'StorylineIdentifier' }, + 'storylineidentifier' => { 438 => 'StorylineIdentifier' }, 'straightenangle' => { 240 => 0x2fc08431 }, - 'streamready' => { 437 => 'StreamReady' }, + 'streamready' => { 438 => 'StreamReady' }, 'streamtype' => { 160 => 'StreamType' }, - 'stretchmode' => { 451 => 'stretchMode' }, - 'studydatetime' => { 409 => 'StudyDateTime' }, - 'studydescription' => { 409 => 'StudyDescription' }, - 'studyid' => { 409 => 'StudyID' }, - 'studyphysician' => { 409 => 'StudyPhysician' }, - 'styleperiod' => { 437 => 'StylePeriod' }, + 'stretchmode' => { 452 => 'stretchMode' }, + 'studydatetime' => { 410 => 'StudyDateTime' }, + 'studydescription' => { 410 => 'StudyDescription' }, + 'studyid' => { 410 => 'StudyID' }, + 'studyphysician' => { 410 => 'StudyPhysician' }, + 'styleperiod' => { 438 => 'StylePeriod' }, 'sub-location' => { 118 => 0x5c }, 'subfiledata' => { 148 => 'data' }, 'subfiledirectory' => { 148 => '1Directory' }, @@ -4739,79 +4745,79 @@ 'subfilename' => { 148 => '1Name' }, 'subfileresource' => { 148 => 'rsrc' }, 'subfiletype' => { 110 => 0xfe, 148 => '0Type' }, - 'subject' => { 273 => 'Subject', 335 => 'Subject', 428 => 'subject', 438 => 'Subject', 452 => 'subject' }, - 'subjectarea' => { 110 => 0x9214, 431 => 'SubjectArea' }, - 'subjectcode' => { 436 => 'SubjectCode' }, - 'subjectdistance' => { 110 => 0x9206, 126 => 0x3e, 431 => 'SubjectDistance' }, - 'subjectdistancerange' => { 110 => 0xa40c, 431 => 'SubjectDistanceRange' }, - 'subjectlocation' => { 110 => 0xa214, 431 => 'SubjectLocation' }, + 'subject' => { 273 => 'Subject', 335 => 'Subject', 429 => 'subject', 439 => 'Subject', 453 => 'subject' }, + 'subjectarea' => { 110 => 0x9214, 432 => 'SubjectArea' }, + 'subjectcode' => { 437 => 'SubjectCode' }, + 'subjectdistance' => { 110 => 0x9206, 126 => 0x3e, 432 => 'SubjectDistance' }, + 'subjectdistancerange' => { 110 => 0xa40c, 432 => 'SubjectDistanceRange' }, + 'subjectlocation' => { 110 => 0xa214, 432 => 'SubjectLocation' }, 'subjectmotion' => { 250 => '78.2', 251 => '78.2', 261 => '78.2' }, 'subjectprogram' => { 164 => 0x22 }, 'subjectreference' => { 118 => 0xc }, - 'sublabels4' => { 435 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabels'] }, - 'sublabels5' => { 435 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabels'] }, - 'sublables1' => { 435 => [\'TagStructure','TagStructureSubLabels'] }, - 'sublables2' => { 435 => [\'TagStructure','TagStructureSubLabelsSubLabels'] }, - 'sublables3' => { 435 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabels'] }, + 'sublabels4' => { 436 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabels'] }, + 'sublabels5' => { 436 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabels'] }, + 'sublables1' => { 436 => [\'TagStructure','TagStructureSubLabels'] }, + 'sublables2' => { 436 => [\'TagStructure','TagStructureSubLabelsSubLabels'] }, + 'sublables3' => { 436 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabels'] }, 'subseccreatedate' => { 105 => 'SubSecCreateDate' }, 'subsecdatetimeoriginal' => { 105 => 'SubSecDateTimeOriginal' }, 'subsecmodifydate' => { 105 => 'SubSecModifyDate' }, 'subsectime' => { 110 => 0x9290 }, 'subsectimedigitized' => { 110 => 0x9292 }, 'subsectimeoriginal' => { 110 => 0x9291 }, - 'subsection1' => { 441 => 'subsection1' }, - 'subsection2' => { 441 => 'subsection2' }, - 'subsection3' => { 441 => 'subsection3' }, - 'subsection4' => { 441 => 'subsection4' }, + 'subsection1' => { 442 => 'subsection1' }, + 'subsection2' => { 442 => 'subsection2' }, + 'subsection3' => { 442 => 'subsection3' }, + 'subsection4' => { 442 => 'subsection4' }, 'subselector' => { 248 => '49.1', 250 => '71.1', 251 => '71.1', 261 => '71.1' }, 'subselectorassignment' => { 248 => '48.1' }, 'subselectorcenter' => { 250 => '72.1', 251 => '72.1', 261 => '72.1' }, 'subselectorplusdials' => { 248 => '49.2', 250 => '73.1', 251 => '73.1', 261 => '73.1' }, - 'subtitle' => { 441 => 'subtitle' }, - 'subversionfilename' => { 435 => [\'SubVersions','SubVersionsFileName'] }, - 'subversionreference' => { 435 => [\'SubVersions','SubVersionsVersRef'] }, - 'subversions' => { 435 => 'SubVersions' }, + 'subtitle' => { 442 => 'subtitle' }, + 'subversionfilename' => { 436 => [\'SubVersions','SubVersionsFileName'] }, + 'subversionreference' => { 436 => [\'SubVersions','SubVersionsVersRef'] }, + 'subversions' => { 436 => 'SubVersions' }, 'superimposeddisplay' => { 73 => 0xa, 75 => 0x510, 76 => 0x9, 77 => 0xa, 80 => 0xa, 81 => 0xe }, 'supermacro' => { 57 => 0x1a }, - 'supplementalcategories' => { 118 => 0x14, 439 => 'SupplementalCategories' }, + 'supplementalcategories' => { 118 => 0x14, 440 => 'SupplementalCategories' }, 'supplementaltype' => { 120 => 0x37 }, - 'supplementdisplayid' => { 441 => 'supplementDisplayID' }, - 'supplementstartingpage' => { 441 => 'supplementStartingPage' }, - 'supplementtitle' => { 441 => 'supplementTitle' }, - 'supplychainsource' => { 437 => 'SupplyChainSource' }, - 'supplychainsourceidentifier' => { 437 => [\'SupplyChainSource','SupplyChainSourceIdentifier'] }, - 'supplychainsourcename' => { 437 => [\'SupplyChainSource','SupplyChainSourceName'] }, + 'supplementdisplayid' => { 442 => 'supplementDisplayID' }, + 'supplementstartingpage' => { 442 => 'supplementStartingPage' }, + 'supplementtitle' => { 442 => 'supplementTitle' }, + 'supplychainsource' => { 438 => 'SupplyChainSource' }, + 'supplychainsourceidentifier' => { 438 => [\'SupplyChainSource','SupplyChainSourceIdentifier'] }, + 'supplychainsourcename' => { 438 => [\'SupplyChainSource','SupplyChainSourceName'] }, 'svisosetting' => { 300 => 0x14 }, - 'swatchcoloranta' => { 456 => [\'SwatchGroups','SwatchGroupsColorantsA'] }, - 'swatchcolorantb' => { 456 => [\'SwatchGroups','SwatchGroupsColorantsB'] }, - 'swatchcolorantblack' => { 456 => [\'SwatchGroups','SwatchGroupsColorantsBlack'] }, - 'swatchcolorantblue' => { 456 => [\'SwatchGroups','SwatchGroupsColorantsBlue'] }, - 'swatchcolorantcyan' => { 456 => [\'SwatchGroups','SwatchGroupsColorantsCyan'] }, - 'swatchcolorantgray' => { 456 => [\'SwatchGroups','SwatchGroupsColorantsGray'] }, - 'swatchcolorantgreen' => { 456 => [\'SwatchGroups','SwatchGroupsColorantsGreen'] }, - 'swatchcolorantl' => { 456 => [\'SwatchGroups','SwatchGroupsColorantsL'] }, - 'swatchcolorantmagenta' => { 456 => [\'SwatchGroups','SwatchGroupsColorantsMagenta'] }, - 'swatchcolorantmode' => { 456 => [\'SwatchGroups','SwatchGroupsColorantsMode'] }, - 'swatchcolorantred' => { 456 => [\'SwatchGroups','SwatchGroupsColorantsRed'] }, - 'swatchcolorantswatchname' => { 456 => [\'SwatchGroups','SwatchGroupsColorantsSwatchName'] }, - 'swatchcoloranttint' => { 456 => [\'SwatchGroups','SwatchGroupsColorantsTint'] }, - 'swatchcoloranttype' => { 456 => [\'SwatchGroups','SwatchGroupsColorantsType'] }, - 'swatchcolorantyellow' => { 456 => [\'SwatchGroups','SwatchGroupsColorantsYellow'] }, - 'swatchgroupname' => { 456 => [\'SwatchGroups','SwatchGroupsGroupName'] }, - 'swatchgroups' => { 456 => 'SwatchGroups' }, - 'swatchgroupscolorants' => { 456 => [\'SwatchGroups','SwatchGroupsColorants'] }, - 'swatchgrouptype' => { 456 => [\'SwatchGroups','SwatchGroupsGroupType'] }, - 'sweeppanoramadirection' => { 285 => 0x93, 364 => 0x33 }, + 'swatchcoloranta' => { 457 => [\'SwatchGroups','SwatchGroupsColorantsA'] }, + 'swatchcolorantb' => { 457 => [\'SwatchGroups','SwatchGroupsColorantsB'] }, + 'swatchcolorantblack' => { 457 => [\'SwatchGroups','SwatchGroupsColorantsBlack'] }, + 'swatchcolorantblue' => { 457 => [\'SwatchGroups','SwatchGroupsColorantsBlue'] }, + 'swatchcolorantcyan' => { 457 => [\'SwatchGroups','SwatchGroupsColorantsCyan'] }, + 'swatchcolorantgray' => { 457 => [\'SwatchGroups','SwatchGroupsColorantsGray'] }, + 'swatchcolorantgreen' => { 457 => [\'SwatchGroups','SwatchGroupsColorantsGreen'] }, + 'swatchcolorantl' => { 457 => [\'SwatchGroups','SwatchGroupsColorantsL'] }, + 'swatchcolorantmagenta' => { 457 => [\'SwatchGroups','SwatchGroupsColorantsMagenta'] }, + 'swatchcolorantmode' => { 457 => [\'SwatchGroups','SwatchGroupsColorantsMode'] }, + 'swatchcolorantred' => { 457 => [\'SwatchGroups','SwatchGroupsColorantsRed'] }, + 'swatchcolorantswatchname' => { 457 => [\'SwatchGroups','SwatchGroupsColorantsSwatchName'] }, + 'swatchcoloranttint' => { 457 => [\'SwatchGroups','SwatchGroupsColorantsTint'] }, + 'swatchcoloranttype' => { 457 => [\'SwatchGroups','SwatchGroupsColorantsType'] }, + 'swatchcolorantyellow' => { 457 => [\'SwatchGroups','SwatchGroupsColorantsYellow'] }, + 'swatchgroupname' => { 457 => [\'SwatchGroups','SwatchGroupsGroupName'] }, + 'swatchgroups' => { 457 => 'SwatchGroups' }, + 'swatchgroupscolorants' => { 457 => [\'SwatchGroups','SwatchGroupsColorants'] }, + 'swatchgrouptype' => { 457 => [\'SwatchGroups','SwatchGroupsGroupType'] }, + 'sweeppanoramadirection' => { 285 => 0x93, 365 => 0x33 }, 'sweeppanoramafieldofview' => { 285 => 0x94 }, - 'sweeppanoramasize' => { 364 => 0x32 }, + 'sweeppanoramasize' => { 365 => 0x32 }, 'switchtoregisteredafpoint' => { 74 => 0x12, 75 => 0x50a }, 'syncreleasemode' => { 250 => '77.1', 251 => '77.1', 261 => '77.1' }, 'system' => { 328 => 0x204 }, - 'tagged' => { 330 => 0xdd, 331 => 'Tagged', 421 => 'tagged' }, - 'tagslist' => { 430 => 'TagsList' }, - 'tagstructure' => { 435 => 'TagStructure' }, - 'takenumber' => { 451 => 'takeNumber' }, - 'tapename' => { 451 => 'tapeName' }, + 'tagged' => { 330 => 0xdd, 331 => 'Tagged', 422 => 'tagged' }, + 'tagslist' => { 431 => 'TagsList' }, + 'tagstructure' => { 436 => 'TagStructure' }, + 'takenumber' => { 452 => 'takeNumber' }, + 'tapename' => { 452 => 'tapeName' }, 'targetaperture' => { 69 => 0x4 }, 'targetcompressionratio' => { 86 => 0x1 }, 'targetdistancesetting' => { 88 => 0x1807 }, @@ -4852,105 +4858,105 @@ 'taxontaxonomicstatus' => { 109 => [\'Taxon','TaxonTaxonomicStatus'] }, 'taxonverbatimtaxonrank' => { 109 => [\'Taxon','TaxonVerbatimTaxonRank'] }, 'taxonvernacularname' => { 109 => [\'Taxon','TaxonVernacularName'] }, - 'teaser' => { 441 => 'teaser' }, - 'teleconverter' => { 169 => 0x105, 374 => 0x105 }, - 'tempo' => { 451 => 'tempo' }, - 'temporalcoverage' => { 437 => 'TemporalCoverage' }, - 'temporalcoveragefrom' => { 437 => [\'TemporalCoverage','TemporalCoverageTempCoverageFrom'] }, - 'temporalcoverageto' => { 437 => [\'TemporalCoverage','TemporalCoverageTempCoverageTo'] }, + 'teaser' => { 442 => 'teaser' }, + 'teleconverter' => { 169 => 0x105, 375 => 0x105 }, + 'tempo' => { 452 => 'tempo' }, + 'temporalcoverage' => { 438 => 'TemporalCoverage' }, + 'temporalcoveragefrom' => { 438 => [\'TemporalCoverage','TemporalCoverageTempCoverageFrom'] }, + 'temporalcoverageto' => { 438 => [\'TemporalCoverage','TemporalCoverageTempCoverageTo'] }, 'termsandconditionstext' => { 274 => 'TermsAndConditionsText' }, 'termsandconditionsurl' => { 274 => 'TermsAndConditionsURL' }, 'testname' => { 111 => 'TestName' }, 'textencoding' => { 200 => 0x4 }, - 'textlayername' => { 439 => [\'TextLayers','TextLayersLayerName'] }, - 'textlayers' => { 439 => 'TextLayers' }, - 'textlayertext' => { 439 => [\'TextLayers','TextLayersLayerText'] }, + 'textlayername' => { 440 => [\'TextLayers','TextLayersLayerName'] }, + 'textlayers' => { 440 => 'TextLayers' }, + 'textlayertext' => { 440 => [\'TextLayers','TextLayersLayerText'] }, 'textstamp' => { 285 => [0x8008,0x8009,0x3b,0x3e] }, 'three-dtrackingfacedetection' => { 250 => '1.3', 251 => '1.3', 261 => '1.4' }, 'three-dtrackingwatcharea' => { 250 => '78.1', 251 => '78.1', 261 => '78.1' }, 'thresholding' => { 110 => 0x107 }, 'thumbnailfilename' => { 88 => 0x817 }, - 'thumbnailformat' => { 449 => [\'Thumbnails','ThumbnailsFormat'] }, - 'thumbnailheight' => { 128 => 0xfa55, 449 => [\'Thumbnails','ThumbnailsHeight'] }, - 'thumbnailimage' => { 88 => 0x2008, 105 => 'ThumbnailImage', 113 => 0x3, 151 => 'data', 269 => 0x100, 449 => [\'Thumbnails','ThumbnailsImage'] }, + 'thumbnailformat' => { 450 => [\'Thumbnails','ThumbnailsFormat'] }, + 'thumbnailheight' => { 128 => 0xfa55, 450 => [\'Thumbnails','ThumbnailsHeight'] }, + 'thumbnailimage' => { 88 => 0x2008, 105 => 'ThumbnailImage', 113 => 0x3, 151 => 'data', 269 => 0x100, 450 => [\'Thumbnails','ThumbnailsImage'] }, 'thumbnailimagename' => { 151 => '1Name' }, 'thumbnailimagesize' => { 151 => 'ImageSize' }, 'thumbnailimagetype' => { 151 => '0Type' }, 'thumbnailimagevalidarea' => { 57 => 0x13 }, 'thumbnaillength' => { 110 => 0x202 }, 'thumbnailoffset' => { 110 => 0x201 }, - 'thumbnails' => { 449 => 'Thumbnails' }, - 'thumbnailwidth' => { 128 => 0xfa54, 449 => [\'Thumbnails','ThumbnailsWidth'] }, - 'ticker' => { 441 => 'ticker' }, - 'tiffhandling' => { 427 => 'TIFFHandling' }, - 'tiffmeteringimage' => { 170 => 0x104c, 373 => 0x1110 }, + 'thumbnails' => { 450 => 'Thumbnails' }, + 'thumbnailwidth' => { 128 => 0xfa54, 450 => [\'Thumbnails','ThumbnailsWidth'] }, + 'ticker' => { 442 => 'ticker' }, + 'tiffhandling' => { 428 => 'TIFFHandling' }, + 'tiffmeteringimage' => { 170 => 0x104c, 374 => 0x1110 }, 'tilelength' => { 110 => 0x143 }, 'tilewidth' => { 110 => 0x142 }, 'time' => { 124 => 0x401, 319 => 0x7 }, 'timecodes' => { 110 => 0xc763 }, 'timecreated' => { 118 => 0x3c, 126 => 0x14, 135 => 0x10, 331 => 'TimeCreated' }, - 'timeperiod' => { 441 => 'timePeriod' }, + 'timeperiod' => { 442 => 'timePeriod' }, 'timerfunctionbutton' => { 249 => '5.2', 252 => '12.1', 253 => '13.1' }, 'timerlength' => { 75 => 0x80c }, 'timerrecording' => { 285 => 0x96 }, - 'timescaleparams' => { 451 => 'timeScaleParams' }, - 'timescaleparamsframeoverlappingpercentage' => { 451 => [\'timeScaleParams','timeScaleParamsFrameOverlappingPercentage'] }, - 'timescaleparamsframesize' => { 451 => [\'timeScaleParams','timeScaleParamsFrameSize'] }, - 'timescaleparamsquality' => { 451 => [\'timeScaleParams','timeScaleParamsQuality'] }, + 'timescaleparams' => { 452 => 'timeScaleParams' }, + 'timescaleparamsframeoverlappingpercentage' => { 452 => [\'timeScaleParams','timeScaleParamsFrameOverlappingPercentage'] }, + 'timescaleparamsframesize' => { 452 => [\'timeScaleParams','timeScaleParamsFrameSize'] }, + 'timescaleparamsquality' => { 452 => [\'timeScaleParams','timeScaleParamsQuality'] }, 'timesent' => { 119 => 0x50 }, - 'timeshot' => { 417 => 'TimeShot' }, - 'timesignature' => { 451 => 'timeSignature' }, + 'timeshot' => { 418 => 'TimeShot' }, + 'timesignature' => { 452 => 'timeSignature' }, 'timesincepoweron' => { 285 => 0x29 }, - 'timestamp' => { 10 => 0x45e, 18 => 0x11c, 263 => 0x8, 277 => 'TimeStamp', 285 => 0xaf, 416 => 'Timestamp', 422 => 'Timestamp', 435 => 'TimeStamp' }, + 'timestamp' => { 10 => 0x45e, 18 => 0x11c, 263 => 0x8, 277 => 'TimeStamp', 285 => 0xaf, 417 => 'Timestamp', 423 => 'Timestamp', 436 => 'TimeStamp' }, 'timestamp1' => { 10 => 0x45a }, - 'timezone' => { 70 => 0x1, 232 => 0x0, 347 => 0xa }, + 'timezone' => { 70 => 0x1, 232 => 0x0, 348 => 0xa }, 'timezonecity' => { 70 => 0x2 }, 'timezonecode' => { 91 => 0x1 }, 'timezoneinfo' => { 91 => 0x2 }, 'timezoneoffset' => { 110 => 0x882a }, - 'tint' => { 427 => 'Tint' }, - 'title' => { 141 => 'Title', 273 => 'Title', 277 => 'Title', 285 => 0x65, 335 => 'Title', 428 => 'title', 438 => 'Title', 449 => 'Title' }, + 'tint' => { 428 => 'Tint' }, + 'title' => { 141 => 'Title', 273 => 'Title', 277 => 'Title', 285 => 0x65, 335 => 'Title', 429 => 'title', 439 => 'Title', 450 => 'Title' }, 'tonecomp' => { 201 => 0x81 }, - 'tonecurve' => { 67 => 0x1, 319 => 0x402, 427 => 'ToneCurve' }, + 'tonecurve' => { 67 => 0x1, 319 => 0x402, 428 => 'ToneCurve' }, 'tonecurveactive' => { 99 => 0x110 }, - 'tonecurveadobergb' => { 351 => 0xa043 }, - 'tonecurveadobergbdefault' => { 351 => 0xa041 }, - 'tonecurveblue' => { 427 => 'ToneCurveBlue' }, - 'tonecurvebluex' => { 407 => 0x9003 }, - 'tonecurvebluey' => { 407 => 0x9007 }, + 'tonecurveadobergb' => { 352 => 0xa043 }, + 'tonecurveadobergbdefault' => { 352 => 0xa041 }, + 'tonecurveblue' => { 428 => 'ToneCurveBlue' }, + 'tonecurvebluex' => { 408 => 0x9003 }, + 'tonecurvebluey' => { 408 => 0x9007 }, 'tonecurvebrightness' => { 94 => 0x20410 }, - 'tonecurvebrightnessx' => { 407 => 0x9000 }, - 'tonecurvebrightnessy' => { 407 => 0x9004 }, + 'tonecurvebrightnessx' => { 408 => 0x9000 }, + 'tonecurvebrightnessy' => { 408 => 0x9004 }, 'tonecurvecolorspace' => { 98 => 0x0 }, 'tonecurvecontrast' => { 94 => 0x20411 }, 'tonecurvefilename' => { 124 => 0x1391 }, - 'tonecurvegreen' => { 427 => 'ToneCurveGreen' }, - 'tonecurvegreenx' => { 407 => 0x9002 }, - 'tonecurvegreeny' => { 407 => 0x9006 }, + 'tonecurvegreen' => { 428 => 'ToneCurveGreen' }, + 'tonecurvegreenx' => { 408 => 0x9002 }, + 'tonecurvegreeny' => { 408 => 0x9006 }, 'tonecurveinputrange' => { 98 => 0x3 }, 'tonecurveinterpolation' => { 99 => 0x159 }, 'tonecurvemode' => { 99 => 0x113 }, - 'tonecurvename' => { 427 => 'ToneCurveName' }, - 'tonecurvename2012' => { 427 => 'ToneCurveName2012' }, + 'tonecurvename' => { 428 => 'ToneCurveName' }, + 'tonecurvename2012' => { 428 => 'ToneCurveName2012' }, 'tonecurveoriginal' => { 94 => '0x20400.1' }, 'tonecurveoutputrange' => { 98 => 0x5 }, 'tonecurveproperty' => { 99 => 0x3c }, - 'tonecurvepv2012' => { 427 => 'ToneCurvePV2012' }, - 'tonecurvepv2012blue' => { 427 => 'ToneCurvePV2012Blue' }, - 'tonecurvepv2012green' => { 427 => 'ToneCurvePV2012Green' }, - 'tonecurvepv2012red' => { 427 => 'ToneCurvePV2012Red' }, - 'tonecurvered' => { 427 => 'ToneCurveRed' }, - 'tonecurveredx' => { 407 => 0x9001 }, - 'tonecurveredy' => { 407 => 0x9005 }, + 'tonecurvepv2012' => { 428 => 'ToneCurvePV2012' }, + 'tonecurvepv2012blue' => { 428 => 'ToneCurvePV2012Blue' }, + 'tonecurvepv2012green' => { 428 => 'ToneCurvePV2012Green' }, + 'tonecurvepv2012red' => { 428 => 'ToneCurvePV2012Red' }, + 'tonecurvered' => { 428 => 'ToneCurveRed' }, + 'tonecurveredx' => { 408 => 0x9001 }, + 'tonecurveredy' => { 408 => 0x9005 }, 'tonecurves' => { 319 => 0x403 }, 'tonecurveshape' => { 98 => 0x1 }, - 'tonecurvesrgb' => { 351 => 0xa042 }, - 'tonecurvesrgbdefault' => { 351 => 0xa040 }, + 'tonecurvesrgb' => { 352 => 0xa042 }, + 'tonecurvesrgbdefault' => { 352 => 0xa040 }, 'tonecurvex' => { 98 => 0xa }, 'tonecurvey' => { 98 => 0xb }, 'tonelevel' => { 264 => 0x52e }, - 'tonemapstrength' => { 427 => 'ToneMapStrength' }, - 'toningeffect' => { 51 => 0xf, 201 => 0xb3, 203 => 0x38, 204 => 0x40, 344 => 0x1015 }, + 'tonemapstrength' => { 428 => 'ToneMapStrength' }, + 'toningeffect' => { 51 => 0xf, 201 => 0xb3, 203 => 0x38, 204 => 0x40, 345 => 0x1015 }, 'toningeffectauto' => { 64 => 0xa4 }, 'toningeffectfaithful' => { 63 => 0x74, 64 => 0x74 }, 'toningeffectlandscape' => { 63 => 0x44, 64 => 0x44 }, @@ -4966,37 +4972,37 @@ 'touchae' => { 285 => 0xab }, 'trackcreatedate' => { 339 => 0x1 }, 'trackmodifydate' => { 339 => 0x2 }, - 'tracknumber' => { 451 => 'trackNumber' }, - 'tracks' => { 451 => 'Tracks' }, - 'tracksframerate' => { 451 => [\'Tracks','TracksFrameRate'] }, - 'tracksmarkers' => { 451 => [\'Tracks','TracksMarkers'] }, - 'tracksmarkerscomment' => { 451 => [\'Tracks','TracksMarkersComment'] }, - 'tracksmarkerscuepointparams' => { 451 => [\'Tracks','TracksMarkersCuePointParams'] }, - 'tracksmarkerscuepointparamskey' => { 451 => [\'Tracks','TracksMarkersCuePointParamsKey'] }, - 'tracksmarkerscuepointparamsvalue' => { 451 => [\'Tracks','TracksMarkersCuePointParamsValue'] }, - 'tracksmarkerscuepointtype' => { 451 => [\'Tracks','TracksMarkersCuePointType'] }, - 'tracksmarkersduration' => { 451 => [\'Tracks','TracksMarkersDuration'] }, - 'tracksmarkerslocation' => { 451 => [\'Tracks','TracksMarkersLocation'] }, - 'tracksmarkersname' => { 451 => [\'Tracks','TracksMarkersName'] }, - 'tracksmarkersprobability' => { 451 => [\'Tracks','TracksMarkersProbability'] }, - 'tracksmarkersspeaker' => { 451 => [\'Tracks','TracksMarkersSpeaker'] }, - 'tracksmarkersstarttime' => { 451 => [\'Tracks','TracksMarkersStartTime'] }, - 'tracksmarkerstarget' => { 451 => [\'Tracks','TracksMarkersTarget'] }, - 'tracksmarkerstype' => { 451 => [\'Tracks','TracksMarkersType'] }, - 'trackstrackname' => { 451 => [\'Tracks','TracksTrackName'] }, - 'trackstracktype' => { 451 => [\'Tracks','TracksTrackType'] }, + 'tracknumber' => { 452 => 'trackNumber' }, + 'tracks' => { 452 => 'Tracks' }, + 'tracksframerate' => { 452 => [\'Tracks','TracksFrameRate'] }, + 'tracksmarkers' => { 452 => [\'Tracks','TracksMarkers'] }, + 'tracksmarkerscomment' => { 452 => [\'Tracks','TracksMarkersComment'] }, + 'tracksmarkerscuepointparams' => { 452 => [\'Tracks','TracksMarkersCuePointParams'] }, + 'tracksmarkerscuepointparamskey' => { 452 => [\'Tracks','TracksMarkersCuePointParamsKey'] }, + 'tracksmarkerscuepointparamsvalue' => { 452 => [\'Tracks','TracksMarkersCuePointParamsValue'] }, + 'tracksmarkerscuepointtype' => { 452 => [\'Tracks','TracksMarkersCuePointType'] }, + 'tracksmarkersduration' => { 452 => [\'Tracks','TracksMarkersDuration'] }, + 'tracksmarkerslocation' => { 452 => [\'Tracks','TracksMarkersLocation'] }, + 'tracksmarkersname' => { 452 => [\'Tracks','TracksMarkersName'] }, + 'tracksmarkersprobability' => { 452 => [\'Tracks','TracksMarkersProbability'] }, + 'tracksmarkersspeaker' => { 452 => [\'Tracks','TracksMarkersSpeaker'] }, + 'tracksmarkersstarttime' => { 452 => [\'Tracks','TracksMarkersStartTime'] }, + 'tracksmarkerstarget' => { 452 => [\'Tracks','TracksMarkersTarget'] }, + 'tracksmarkerstype' => { 452 => [\'Tracks','TracksMarkersType'] }, + 'trackstrackname' => { 452 => [\'Tracks','TracksTrackName'] }, + 'trackstracktype' => { 452 => [\'Tracks','TracksTrackType'] }, 'trailersignature' => { 148 => 'zmie' }, - 'transcript' => { 437 => 'Transcript' }, - 'transcriptlink' => { 437 => 'TranscriptLink' }, - 'transcriptlinklink' => { 437 => [\'TranscriptLink','TranscriptLinkLink'] }, - 'transcriptlinklinkqualifier' => { 437 => [\'TranscriptLink','TranscriptLinkLinkQualifier'] }, - 'transferfunction' => { 110 => 0x12d, 447 => 'TransferFunction' }, + 'transcript' => { 438 => 'Transcript' }, + 'transcriptlink' => { 438 => 'TranscriptLink' }, + 'transcriptlinklink' => { 438 => [\'TranscriptLink','TranscriptLinkLink'] }, + 'transcriptlinklinkqualifier' => { 438 => [\'TranscriptLink','TranscriptLinkLinkQualifier'] }, + 'transferfunction' => { 110 => 0x12d, 448 => 'TransferFunction' }, 'transform' => { 285 => [0x8012,0x59] }, - 'transmissionreference' => { 439 => 'TransmissionReference' }, - 'trapped' => { 273 => 'Trapped', 438 => 'Trapped' }, + 'transmissionreference' => { 440 => 'TransmissionReference' }, + 'trapped' => { 273 => 'Trapped', 439 => 'Trapped' }, 'trashbuttonfunction' => { 75 => 0x710 }, 'travelday' => { 285 => 0x36 }, - 'triggermode' => { 340 => 0x6 }, + 'triggermode' => { 340 => 0x6, 341 => 0x34 }, 'tstop' => { 110 => 0xc772 }, 'ttl_da_adown' => { 307 => 0x5 }, 'ttl_da_aup' => { 307 => 0x4 }, @@ -5004,12 +5010,12 @@ 'ttl_da_bup' => { 307 => 0x6 }, 'tungstenawb' => { 297 => 0x1 }, 'tvexposuretimesetting' => { 300 => 0x12 }, - 'type' => { 428 => 'type', 446 => 'type' }, + 'type' => { 429 => 'type', 447 => 'type' }, 'typestatus' => { 109 => [\'Identification','IdentificationTypeStatus'] }, 'uniquecameramodel' => { 110 => 0xc614 }, 'uniquedocumentid' => { 118 => 0xbb }, 'uniqueobjectname' => { 119 => 0x64 }, - 'units' => { 412 => 'Units' }, + 'units' => { 413 => 'Units' }, 'unknownblock' => { 319 => 0x405 }, 'unknownblock1' => { 268 => 0x635 }, 'unknownblock2' => { 268 => 0x636 }, @@ -5049,42 +5055,42 @@ 'unsharpmaskfineness' => { 94 => 0x20309 }, 'unsharpmaskstrength' => { 94 => 0x20308 }, 'unsharpmaskthreshold' => { 94 => 0x2030a }, - 'uprightcentermode' => { 427 => 'UprightCenterMode' }, - 'uprightcenternormx' => { 427 => 'UprightCenterNormX' }, - 'uprightcenternormy' => { 427 => 'UprightCenterNormY' }, - 'uprightdependentdigest' => { 427 => 'UprightDependentDigest' }, - 'uprightfocallength35mm' => { 427 => 'UprightFocalLength35mm' }, - 'uprightfocalmode' => { 427 => 'UprightFocalMode' }, - 'uprightfoursegmentscount' => { 427 => 'UprightFourSegmentsCount' }, - 'uprightpreview' => { 427 => 'UprightPreview' }, - 'uprighttransform_0' => { 427 => 'UprightTransform_0' }, - 'uprighttransform_1' => { 427 => 'UprightTransform_1' }, - 'uprighttransform_2' => { 427 => 'UprightTransform_2' }, - 'uprighttransform_3' => { 427 => 'UprightTransform_3' }, - 'uprighttransform_4' => { 427 => 'UprightTransform_4' }, - 'uprighttransform_5' => { 427 => 'UprightTransform_5' }, - 'uprighttransformcount' => { 427 => 'UprightTransformCount' }, - 'uprightversion' => { 427 => 'UprightVersion' }, - 'urgency' => { 118 => 0xa, 439 => 'Urgency' }, - 'url' => { 141 => 'URL', 277 => 'URL', 333 => 0x40b, 441 => 'url' }, + 'uprightcentermode' => { 428 => 'UprightCenterMode' }, + 'uprightcenternormx' => { 428 => 'UprightCenterNormX' }, + 'uprightcenternormy' => { 428 => 'UprightCenterNormY' }, + 'uprightdependentdigest' => { 428 => 'UprightDependentDigest' }, + 'uprightfocallength35mm' => { 428 => 'UprightFocalLength35mm' }, + 'uprightfocalmode' => { 428 => 'UprightFocalMode' }, + 'uprightfoursegmentscount' => { 428 => 'UprightFourSegmentsCount' }, + 'uprightpreview' => { 428 => 'UprightPreview' }, + 'uprighttransform_0' => { 428 => 'UprightTransform_0' }, + 'uprighttransform_1' => { 428 => 'UprightTransform_1' }, + 'uprighttransform_2' => { 428 => 'UprightTransform_2' }, + 'uprighttransform_3' => { 428 => 'UprightTransform_3' }, + 'uprighttransform_4' => { 428 => 'UprightTransform_4' }, + 'uprighttransform_5' => { 428 => 'UprightTransform_5' }, + 'uprighttransformcount' => { 428 => 'UprightTransformCount' }, + 'uprightversion' => { 428 => 'UprightVersion' }, + 'urgency' => { 118 => 0xa, 440 => 'Urgency' }, + 'url' => { 141 => 'URL', 277 => 'URL', 333 => 0x40b, 442 => 'url' }, 'url_list' => { 333 => 0x41e }, - 'urla-platform' => { 441 => [\'url','urlA-platform'] }, - 'urlurl' => { 441 => [\'url','urlUrl'] }, + 'urla-platform' => { 442 => [\'url','urlA-platform'] }, + 'urlurl' => { 442 => [\'url','urlUrl'] }, 'usablemeteringmodes' => { 75 => 0x10a }, 'usableshootingmodes' => { 75 => 0x109 }, - 'usage' => { 442 => 'usage' }, - 'usageterms' => { 455 => 'UsageTerms' }, - 'useguidelines' => { 424 => 'useGuidelines' }, - 'usepanoramaviewer' => { 415 => 'UsePanoramaViewer' }, - 'usercomment' => { 88 => 0x805, 110 => 0x9286, 431 => 'UserComment' }, + 'usage' => { 443 => 'usage' }, + 'usageterms' => { 456 => 'UsageTerms' }, + 'useguidelines' => { 425 => 'useGuidelines' }, + 'usepanoramaviewer' => { 416 => 'UsePanoramaViewer' }, + 'usercomment' => { 88 => 0x805, 110 => 0x9286, 432 => 'UserComment' }, 'userdef1picturestyle' => { 18 => 0x10c, 63 => 0xd8, 64 => 0xf0 }, 'userdef2picturestyle' => { 18 => 0x10e, 63 => 0xda, 64 => 0xf2 }, 'userdef3picturestyle' => { 18 => 0x110, 63 => 0xdc, 64 => 0xf4 }, - 'userfields' => { 419 => 'UserFields' }, - 'userlabel' => { 340 => 0x2b }, + 'userfields' => { 420 => 'UserFields' }, + 'userlabel' => { 340 => 0x2b, 341 => 0x5a }, 'userprofile' => { 281 => 0x302, 287 => 0x3038 }, 'usmlenselectronicmf' => { 2 => 0x7, 74 => 0x7, 75 => 0x501 }, - 'uspsnumber' => { 441 => 'uspsNumber' }, + 'uspsnumber' => { 442 => 'uspsNumber' }, 'utmeasting' => { 152 => 'Easting' }, 'utmmapdatum' => { 152 => 'Datum' }, 'utmnorthing' => { 152 => 'Northing' }, @@ -5092,95 +5098,95 @@ 'uv-irfiltercorrection' => { 281 => 0x325 }, 'validbits' => { 268 => 0x611, 269 => 0x102c }, 'validpixeldepth' => { 272 => 0x611 }, - 'variablelowpassfilter' => { 374 => 0x2028 }, + 'variablelowpassfilter' => { 375 => 0x2028 }, 'variousmodes' => { 126 => 0x26 }, 'variousmodes2' => { 126 => 0x3a }, 'variprogram' => { 201 => 0xab }, - 'version' => { 115 => 0x0, 335 => 'Version', 427 => 'Version' }, - 'versioncreatedate' => { 407 => 0xd100 }, - 'versionid' => { 452 => 'VersionID' }, - 'versionidentifier' => { 441 => 'versionIdentifier' }, - 'versionmodifydate' => { 407 => 0xd101 }, - 'versions' => { 452 => 'Versions' }, - 'versionscomments' => { 452 => [\'Versions','VersionsComments'] }, - 'versionsevent' => { 452 => [\'Versions','VersionsEvent'] }, - 'versionseventaction' => { 452 => [\'Versions','VersionsEventAction'] }, - 'versionseventchanged' => { 452 => [\'Versions','VersionsEventChanged'] }, - 'versionseventinstanceid' => { 452 => [\'Versions','VersionsEventInstanceID'] }, - 'versionseventparameters' => { 452 => [\'Versions','VersionsEventParameters'] }, - 'versionseventsoftwareagent' => { 452 => [\'Versions','VersionsEventSoftwareAgent'] }, - 'versionseventwhen' => { 452 => [\'Versions','VersionsEventWhen'] }, - 'versionsmodifier' => { 452 => [\'Versions','VersionsModifier'] }, - 'versionsmodifydate' => { 452 => [\'Versions','VersionsModifyDate'] }, - 'versionsversion' => { 452 => [\'Versions','VersionsVersion'] }, + 'version' => { 115 => 0x0, 335 => 'Version', 428 => 'Version' }, + 'versioncreatedate' => { 408 => 0xd100 }, + 'versionid' => { 453 => 'VersionID' }, + 'versionidentifier' => { 442 => 'versionIdentifier' }, + 'versionmodifydate' => { 408 => 0xd101 }, + 'versions' => { 453 => 'Versions' }, + 'versionscomments' => { 453 => [\'Versions','VersionsComments'] }, + 'versionsevent' => { 453 => [\'Versions','VersionsEvent'] }, + 'versionseventaction' => { 453 => [\'Versions','VersionsEventAction'] }, + 'versionseventchanged' => { 453 => [\'Versions','VersionsEventChanged'] }, + 'versionseventinstanceid' => { 453 => [\'Versions','VersionsEventInstanceID'] }, + 'versionseventparameters' => { 453 => [\'Versions','VersionsEventParameters'] }, + 'versionseventsoftwareagent' => { 453 => [\'Versions','VersionsEventSoftwareAgent'] }, + 'versionseventwhen' => { 453 => [\'Versions','VersionsEventWhen'] }, + 'versionsmodifier' => { 453 => [\'Versions','VersionsModifier'] }, + 'versionsmodifydate' => { 453 => [\'Versions','VersionsModifyDate'] }, + 'versionsversion' => { 453 => [\'Versions','VersionsVersion'] }, 'verticalafonbutton' => { 247 => '3.2', 248 => '47.2', 250 => '79.1' }, 'verticalfuncbutton' => { 248 => '42.2', 250 => '67.1' }, 'verticalfuncbuttonplusdials' => { 248 => '43.1' }, 'verticalfuncplusdials' => { 250 => '68.1' }, 'verticalmultiselector' => { 248 => '42.1', 250 => '66.1', 251 => '66.1', 261 => '66.1' }, 'vfdisplayillumination' => { 2 => 0x11, 75 => [0x510,0x51d] }, - 'vibrance' => { 420 => 'Vibrance', 427 => 'Vibrance' }, + 'vibrance' => { 421 => 'Vibrance', 428 => 'Vibrance' }, 'vibrationreduction' => { 209 => [0x75,0x82,0x1ae], 217 => '586.1', 225 => '590.2', 231 => 0x4 }, - 'videoalphamode' => { 451 => 'videoAlphaMode' }, - 'videoalphapremultiplecolor' => { 451 => 'videoAlphaPremultipleColor' }, - 'videoalphapremultiplecolora' => { 451 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorA'] }, - 'videoalphapremultiplecolorb' => { 451 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorB'] }, - 'videoalphapremultiplecolorblack' => { 451 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorBlack'] }, - 'videoalphapremultiplecolorblue' => { 451 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorBlue'] }, - 'videoalphapremultiplecolorcyan' => { 451 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorCyan'] }, - 'videoalphapremultiplecolorgray' => { 451 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorGray'] }, - 'videoalphapremultiplecolorgreen' => { 451 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorGreen'] }, - 'videoalphapremultiplecolorl' => { 451 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorL'] }, - 'videoalphapremultiplecolormagenta' => { 451 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorMagenta'] }, - 'videoalphapremultiplecolormode' => { 451 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorMode'] }, - 'videoalphapremultiplecolorred' => { 451 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorRed'] }, - 'videoalphapremultiplecolorswatchname' => { 451 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorSwatchName'] }, - 'videoalphapremultiplecolortint' => { 451 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorTint'] }, - 'videoalphapremultiplecolortype' => { 451 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorType'] }, - 'videoalphapremultiplecoloryellow' => { 451 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorYellow'] }, - 'videoalphaunityistransparent' => { 451 => 'videoAlphaUnityIsTransparent' }, - 'videobitrate' => { 437 => 'videoBitRate' }, - 'videobitratemode' => { 437 => 'videoBitRateMode' }, + 'videoalphamode' => { 452 => 'videoAlphaMode' }, + 'videoalphapremultiplecolor' => { 452 => 'videoAlphaPremultipleColor' }, + 'videoalphapremultiplecolora' => { 452 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorA'] }, + 'videoalphapremultiplecolorb' => { 452 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorB'] }, + 'videoalphapremultiplecolorblack' => { 452 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorBlack'] }, + 'videoalphapremultiplecolorblue' => { 452 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorBlue'] }, + 'videoalphapremultiplecolorcyan' => { 452 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorCyan'] }, + 'videoalphapremultiplecolorgray' => { 452 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorGray'] }, + 'videoalphapremultiplecolorgreen' => { 452 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorGreen'] }, + 'videoalphapremultiplecolorl' => { 452 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorL'] }, + 'videoalphapremultiplecolormagenta' => { 452 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorMagenta'] }, + 'videoalphapremultiplecolormode' => { 452 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorMode'] }, + 'videoalphapremultiplecolorred' => { 452 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorRed'] }, + 'videoalphapremultiplecolorswatchname' => { 452 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorSwatchName'] }, + 'videoalphapremultiplecolortint' => { 452 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorTint'] }, + 'videoalphapremultiplecolortype' => { 452 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorType'] }, + 'videoalphapremultiplecoloryellow' => { 452 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorYellow'] }, + 'videoalphaunityistransparent' => { 452 => 'videoAlphaUnityIsTransparent' }, + 'videobitrate' => { 438 => 'videoBitRate' }, + 'videobitratemode' => { 438 => 'videoBitRateMode' }, 'videocodec' => { 60 => 0x74 }, - 'videocolorspace' => { 451 => 'videoColorSpace' }, - 'videocompressor' => { 451 => 'videoCompressor' }, - 'videodisplayaspectratio' => { 437 => 'videoDisplayAspectRatio' }, - 'videoencodingprofile' => { 437 => 'videoEncodingProfile' }, - 'videofieldorder' => { 451 => 'videoFieldOrder' }, - 'videoframerate' => { 451 => 'videoFrameRate' }, - 'videoframesize' => { 451 => 'videoFrameSize' }, - 'videoframesizeh' => { 451 => [\'videoFrameSize','videoFrameSizeH'] }, - 'videoframesizeunit' => { 451 => [\'videoFrameSize','videoFrameSizeUnit'] }, - 'videoframesizew' => { 451 => [\'videoFrameSize','videoFrameSizeW'] }, - 'videomoddate' => { 451 => 'videoModDate' }, - 'videopixelaspectratio' => { 451 => 'videoPixelAspectRatio' }, - 'videopixeldepth' => { 451 => 'videoPixelDepth' }, + 'videocolorspace' => { 452 => 'videoColorSpace' }, + 'videocompressor' => { 452 => 'videoCompressor' }, + 'videodisplayaspectratio' => { 438 => 'videoDisplayAspectRatio' }, + 'videoencodingprofile' => { 438 => 'videoEncodingProfile' }, + 'videofieldorder' => { 452 => 'videoFieldOrder' }, + 'videoframerate' => { 452 => 'videoFrameRate' }, + 'videoframesize' => { 452 => 'videoFrameSize' }, + 'videoframesizeh' => { 452 => [\'videoFrameSize','videoFrameSizeH'] }, + 'videoframesizeunit' => { 452 => [\'videoFrameSize','videoFrameSizeUnit'] }, + 'videoframesizew' => { 452 => [\'videoFrameSize','videoFrameSizeW'] }, + 'videomoddate' => { 452 => 'videoModDate' }, + 'videopixelaspectratio' => { 452 => 'videoPixelAspectRatio' }, + 'videopixeldepth' => { 452 => 'videoPixelDepth' }, 'videoquality' => { 104 => 0x4003 }, - 'videoshottype' => { 437 => 'VideoShotType' }, - 'videoshottypeidentifier' => { 437 => [\'VideoShotType','VideoShotTypeIdentifier'] }, - 'videoshottypename' => { 437 => [\'VideoShotType','VideoShotTypeName'] }, - 'videostreamscount' => { 437 => 'videoStreamsCount' }, + 'videoshottype' => { 438 => 'VideoShotType' }, + 'videoshottypeidentifier' => { 438 => [\'VideoShotType','VideoShotTypeIdentifier'] }, + 'videoshottypename' => { 438 => [\'VideoShotType','VideoShotTypeName'] }, + 'videostreamscount' => { 438 => 'videoStreamsCount' }, 'viewfinder' => { 328 => 0x455 }, 'viewfinderdisplay' => { 247 => '12.4', 248 => '6.3' }, 'viewfinderwarning' => { 247 => '13.4', 257 => '3.5', 258 => '6.2', 262 => '4.4' }, 'viewfinderwarnings' => { 75 => 0x40a }, 'viewinfoduringexposure' => { 75 => 0x407 }, - 'viewingmode' => { 364 => 0x2f, 379 => 0x18 }, - 'viewingmode2' => { 364 => [0x85,0x285] }, - 'viewpoint' => { 440 => 'viewpoint' }, - 'vignetteamount' => { 427 => 'VignetteAmount' }, + 'viewingmode' => { 365 => 0x2f, 380 => 0x18 }, + 'viewingmode2' => { 365 => [0x85,0x285] }, + 'viewpoint' => { 441 => 'viewpoint' }, + 'vignetteamount' => { 428 => 'VignetteAmount' }, 'vignettecontrol' => { 201 => 0x2a, 240 => 0x76a43205 }, 'vignettecontrolintensity' => { 240 => 0xac6bd5c0 }, - 'vignettecorrectionalreadyapplied' => { 423 => 'VignetteCorrectionAlreadyApplied' }, - 'vignettemidpoint' => { 427 => 'VignetteMidpoint' }, - 'vignetting' => { 344 => 0x1011, 351 => 0xa052 }, - 'vignettingcorrection' => { 351 => 0xa053, 374 => 0x2011 }, - 'vignettingcorrparams' => { 110 => 0x7032, 402 => 0x64a, 403 => [0x34a,0x350,0x35c,0x368] }, - 'vignettingsetting' => { 351 => 0xa054 }, - 'visualcolor' => { 437 => 'VisualColour' }, - 'visualtechnique' => { 440 => 'visualTechnique' }, - 'voicememo' => { 353 => 0x216 }, - 'volume' => { 441 => 'volume' }, + 'vignettecorrectionalreadyapplied' => { 424 => 'VignetteCorrectionAlreadyApplied' }, + 'vignettemidpoint' => { 428 => 'VignetteMidpoint' }, + 'vignetting' => { 345 => 0x1011, 352 => 0xa052 }, + 'vignettingcorrection' => { 352 => 0xa053, 375 => 0x2011 }, + 'vignettingcorrparams' => { 110 => 0x7032, 403 => 0x64a, 404 => [0x34a,0x350,0x35c,0x368] }, + 'vignettingsetting' => { 352 => 0xa054 }, + 'visualcolor' => { 438 => 'VisualColour' }, + 'visualtechnique' => { 441 => 'visualTechnique' }, + 'voicememo' => { 354 => 0x216 }, + 'volume' => { 442 => 'volume' }, 'vr_0x66' => { 209 => 0x66 }, 'vrdoffset' => { 57 => 0xd0 }, 'vrmode' => { 231 => 0x6 }, @@ -5267,7 +5273,7 @@ 'wb_redlevelsshade' => { 170 => 0x168 }, 'wb_redlevelstungsten' => { 170 => 0xc0 }, 'wb_rgbglevels' => { 182 => 0x0 }, - 'wb_rgblevels' => { 170 => [0x546,0x96], 282 => 0xd, 283 => 0x413, 287 => 0x3036, 328 => 0x107, 382 => 0x117c, 383 => 0x1180, 384 => 0x115c, 385 => 0x11d8, 386 => 0x11b4, 387 => 0x106c, 388 => 0x264, 389 => 0x264, 390 => 0x252 }, + 'wb_rgblevels' => { 170 => [0x546,0x96], 282 => 0xd, 283 => 0x413, 287 => 0x3036, 328 => 0x107, 383 => 0x117c, 384 => 0x1180, 385 => 0x115c, 386 => 0x11d8, 387 => 0x11b4, 388 => 0x106c, 389 => 0x264, 390 => 0x264, 391 => 0x252 }, 'wb_rgblevels1' => { 291 => 0x2 }, 'wb_rgblevels2' => { 291 => 0x6 }, 'wb_rgblevels3' => { 291 => 0xa }, @@ -5278,8 +5284,8 @@ 'wb_rggbblacklevels' => { 34 => 0x25 }, 'wb_rggblevels' => { 173 => 0x4, 181 => 0x0 }, 'wb_rggblevelsasshot' => { 36 => 0x0, 37 => 0x19, 38 => 0x22, 39 => 0x3f, 42 => 0x3f, 43 => 0x3f, 44 => 0x3f }, - 'wb_rggblevelsauto' => { 34 => 0x1, 36 => 0x5, 37 => 0x1e, 38 => 0x18, 39 => 0x44, 42 => 0x44, 43 => 0x44, 44 => 0x44, 351 => 0xa022 }, - 'wb_rggblevelsblack' => { 351 => 0xa028 }, + 'wb_rggblevelsauto' => { 34 => 0x1, 36 => 0x5, 37 => 0x1e, 38 => 0x18, 39 => 0x44, 42 => 0x44, 43 => 0x44, 44 => 0x44, 352 => 0xa022 }, + 'wb_rggblevelsblack' => { 352 => 0xa028 }, 'wb_rggblevelscloudy' => { 34 => 0xd, 36 => 0x1e, 37 => 0x2d, 38 => 0x31, 39 => 0x58, 42 => 0x71, 43 => 0x8a, 44 => 0x8f, 319 => 0x20f, 327 => 0x14 }, 'wb_rggblevelscustom' => { 34 => 0x1d, 39 => 0x80 }, 'wb_rggblevelscustom1' => { 37 => 0x41 }, @@ -5291,8 +5297,8 @@ 'wb_rggblevelsfluorescentl' => { 327 => 0x4a }, 'wb_rggblevelsfluorescentn' => { 319 => 0x212, 327 => 0x2f }, 'wb_rggblevelsfluorescentw' => { 319 => 0x213, 327 => 0x38 }, - 'wb_rggblevelsilluminator1' => { 351 => 0xa023 }, - 'wb_rggblevelsilluminator2' => { 351 => 0xa024 }, + 'wb_rggblevelsilluminator1' => { 352 => 0xa023 }, + 'wb_rggblevelsilluminator2' => { 352 => 0xa024 }, 'wb_rggblevelskelvin' => { 34 => 0x21, 36 => 0x2d, 38 => 0x40, 39 => 0x67, 42 => 0x80, 43 => 0x99, 44 => 0x9e }, 'wb_rggblevelsmeasured' => { 36 => 0xa, 39 => 0x49, 42 => 0x49, 43 => 0x49, 44 => 0x49 }, 'wb_rggblevelspc1' => { 38 => 0x90, 39 => 0x71 }, @@ -5300,7 +5306,7 @@ 'wb_rggblevelspc3' => { 38 => 0x9a, 39 => 0x7b }, 'wb_rggblevelsshade' => { 34 => 0x9, 36 => 0x19, 37 => 0x28, 38 => 0x2c, 39 => 0x53, 42 => 0x6c, 43 => 0x85, 44 => 0x8a, 319 => 0x20e, 327 => 0xb }, 'wb_rggblevelstungsten' => { 34 => 0x11, 36 => 0x23, 37 => 0x32, 38 => 0x36, 39 => 0x5d, 42 => 0x76, 43 => 0x8f, 44 => 0x94, 319 => 0x210, 327 => 0x1d }, - 'wb_rggblevelsuncorrected' => { 351 => 0xa021 }, + 'wb_rggblevelsuncorrected' => { 352 => 0xa021 }, 'wb_rggblevelsunknown' => { 36 => 0xf, 38 => 0x1d, 42 => 0x4e, 43 => 0x4e, 44 => 0x4e, 327 => 0x53 }, 'wb_rggblevelsunknown10' => { 36 => 0x5f, 38 => 0x72, 42 => 0x9e, 43 => 0x7b, 44 => 0x7b }, 'wb_rggblevelsunknown11' => { 36 => 0x64, 38 => 0x77, 42 => 0xa3, 43 => 0xa3, 44 => 0x80 }, @@ -5345,7 +5351,7 @@ 'wbbluelevel' => { 281 => 0x324, 285 => 0x8006, 289 => 0x26 }, 'wbbracketingsteps' => { 218 => 0x174d, 219 => 0x87c, 227 => 0x1757 }, 'wbbracketmode' => { 51 => 0x9 }, - 'wbbracketshotnumber' => { 170 => 0x2b, 344 => 0x101a }, + 'wbbracketshotnumber' => { 170 => 0x2b, 345 => 0x101a }, 'wbbracketvalueab' => { 51 => 0xc }, 'wbbracketvaluegm' => { 51 => 0xd }, 'wbfinetuneactive' => { 99 => 0x24 }, @@ -5357,8 +5363,8 @@ 'wbredlevel' => { 281 => 0x322, 285 => 0x8004, 289 => 0x24 }, 'wbscale' => { 173 => 0x0 }, 'wbshiftab' => { 67 => 0xc, 285 => 0x46, 301 => 0x10 }, - 'wbshiftab_gm' => { 374 => 0x2014 }, - 'wbshiftab_gm_precise' => { 374 => 0x2026 }, + 'wbshiftab_gm' => { 375 => 0x2014 }, + 'wbshiftab_gm_precise' => { 375 => 0x2026 }, 'wbshiftgm' => { 67 => 0xd, 285 => 0x47, 301 => 0x11 }, 'wbtype1' => { 290 => 0x1, 291 => 0x1 }, 'wbtype2' => { 290 => 0x4, 291 => 0x5 }, @@ -5367,9 +5373,9 @@ 'wbtype5' => { 290 => 0xd, 291 => 0x11 }, 'wbtype6' => { 290 => 0x10, 291 => 0x15 }, 'wbtype7' => { 290 => 0x13, 291 => 0x19 }, - 'webstatement' => { 455 => 'WebStatement' }, - 'what' => { 427 => 'What' }, - 'whitebalance' => { 6 => 0x6f, 7 => [0x44,0x4a], 8 => 0xbc, 9 => 0x36, 10 => 0x5e, 11 => 0x36, 12 => 0x78, 13 => 0x6f, 14 => 0x6f, 15 => 0x73, 16 => 0x6f, 17 => 0x78, 18 => 0x54, 19 => 0x6f, 20 => 0xbc, 21 => 0x7b, 23 => 0xbc, 24 => 0xc2, 26 => 0x131, 27 => 0x77, 67 => 0x8, 69 => 0x7, 103 => 0x7, 104 => [0x19,0x2012], 110 => [0xa403,0xfe4e], 115 => 0x1002, 124 => 0x3fc, 125 => 0xfa0d, 126 => 0x40, 164 => 0x3, 165 => 0xe, 166 => 0x4, 167 => 0xb, 169 => 0x115, 201 => 0x5, 230 => 0x7, 281 => 0x304, 285 => 0x3, 287 => 0x3033, 319 => 0x19, 326 => 0x7, 343 => 0x26, 344 => 0x1003, 354 => [0x3c,0x7,0x58], 362 => 0xf, 363 => 0xe, 374 => [0x115,0xb054], 427 => 'WhiteBalance', 431 => 'WhiteBalance' }, + 'webstatement' => { 456 => 'WebStatement' }, + 'what' => { 428 => 'What' }, + 'whitebalance' => { 6 => 0x6f, 7 => [0x44,0x4a], 8 => 0xbc, 9 => 0x36, 10 => 0x5e, 11 => 0x36, 12 => 0x78, 13 => 0x6f, 14 => 0x6f, 15 => 0x73, 16 => 0x6f, 17 => 0x78, 18 => 0x54, 19 => 0x6f, 20 => 0xbc, 21 => 0x7b, 23 => 0xbc, 24 => 0xc2, 26 => 0x131, 27 => 0x77, 67 => 0x8, 69 => 0x7, 103 => 0x7, 104 => [0x19,0x2012], 110 => [0xa403,0xfe4e], 115 => 0x1002, 124 => 0x3fc, 125 => 0xfa0d, 126 => 0x40, 164 => 0x3, 165 => 0xe, 166 => 0x4, 167 => 0xb, 169 => 0x115, 201 => 0x5, 230 => 0x7, 281 => 0x304, 285 => 0x3, 287 => 0x3033, 319 => 0x19, 326 => 0x7, 344 => 0x26, 345 => 0x1003, 355 => [0x3c,0x7,0x58], 363 => 0xf, 364 => 0xe, 375 => [0x115,0xb054], 428 => 'WhiteBalance', 432 => 'WhiteBalance' }, 'whitebalance0' => { 160 => 'WhiteBalance0' }, 'whitebalance1' => { 160 => 'WhiteBalance1' }, 'whitebalance2' => { 160 => 'WhiteBalance2', 264 => 0x500 }, @@ -5378,62 +5384,62 @@ 'whitebalancebias' => { 104 => 0x2011, 269 => 0x304, 285 => 0x23 }, 'whitebalanceblue' => { 67 => 0x7 }, 'whitebalancebracket' => { 264 => 0x502, 269 => 0x303 }, - 'whitebalancebracketing' => { 167 => 0x22, 170 => 0x2c, 373 => 0x2c }, + 'whitebalancebracketing' => { 167 => 0x22, 170 => 0x2c, 374 => 0x2c }, 'whitebalancecomp' => { 272 => 0x1001 }, - 'whitebalancefinetune' => { 115 => 0x100a, 167 => 0x38, 169 => 0x112, 201 => 0xb, 344 => 0x1004, 362 => 0x6, 363 => 0x5, 374 => 0x112 }, + 'whitebalancefinetune' => { 115 => 0x100a, 167 => 0x38, 169 => 0x112, 201 => 0xb, 345 => 0x1004, 363 => 0x6, 364 => 0x5, 375 => 0x112 }, 'whitebalancemode' => { 319 => 0x1a }, 'whitebalancered' => { 67 => 0x6 }, 'whitebalanceset' => { 300 => 0xa }, - 'whitebalancesetting' => { 167 => 0x23, 362 => 0x5, 363 => 0x4, 364 => 0x16, 379 => 0xd }, - 'whitebalancesetup' => { 351 => 0x41 }, + 'whitebalancesetting' => { 167 => 0x23, 363 => 0x5, 364 => 0x4, 365 => 0x16, 380 => 0xd }, + 'whitebalancesetup' => { 352 => 0x41 }, 'whitebalancetemperature' => { 264 => 0x501 }, 'whiteboard' => { 269 => 0x301 }, 'whitelevel' => { 110 => 0xc61d, 319 => 0x7e }, - 'whitepoint' => { 110 => 0x13e, 319 => 0x201, 447 => 'WhitePoint' }, - 'whites2012' => { 427 => 'Whites2012' }, - 'wideadapter' => { 344 => 0x1017 }, + 'whitepoint' => { 110 => 0x13e, 319 => 0x201, 448 => 'WhitePoint' }, + 'whites2012' => { 428 => 'Whites2012' }, + 'wideadapter' => { 345 => 0x1017 }, 'widefocuszone' => { 164 => 0x2f }, - 'widerange' => { 353 => 0x20f }, - 'windowsatom' => { 426 => 'windowsAtom' }, - 'windowsatomextension' => { 426 => [\'windowsAtom','windowsAtomExtension'] }, - 'windowsatominvocationflags' => { 426 => [\'windowsAtom','windowsAtomInvocationFlags'] }, - 'windowsatomuncprojectpath' => { 426 => [\'windowsAtom','windowsAtomUncProjectPath'] }, - 'wordcount' => { 441 => 'wordCount' }, + 'widerange' => { 354 => 0x20f }, + 'windowsatom' => { 427 => 'windowsAtom' }, + 'windowsatomextension' => { 427 => [\'windowsAtom','windowsAtomExtension'] }, + 'windowsatominvocationflags' => { 427 => [\'windowsAtom','windowsAtomInvocationFlags'] }, + 'windowsatomuncprojectpath' => { 427 => [\'windowsAtom','windowsAtomUncProjectPath'] }, + 'wordcount' => { 442 => 'wordCount' }, 'workcolorspace' => { 94 => 0x10200, 99 => 0x270 }, - 'workflowtag' => { 437 => 'WorkflowTag' }, - 'workflowtagcvid' => { 437 => [\'WorkflowTag','WorkflowTagCvId'] }, - 'workflowtagcvtermid' => { 437 => [\'WorkflowTag','WorkflowTagCvTermId'] }, - 'workflowtagcvtermname' => { 437 => [\'WorkflowTag','WorkflowTagCvTermName'] }, - 'workflowtagcvtermrefinedabout' => { 437 => [\'WorkflowTag','WorkflowTagCvTermRefinedAbout'] }, - 'worktodo' => { 433 => 'WorkToDo' }, + 'workflowtag' => { 438 => 'WorkflowTag' }, + 'workflowtagcvid' => { 438 => [\'WorkflowTag','WorkflowTagCvId'] }, + 'workflowtagcvtermid' => { 438 => [\'WorkflowTag','WorkflowTagCvTermId'] }, + 'workflowtagcvtermname' => { 438 => [\'WorkflowTag','WorkflowTagCvTermName'] }, + 'workflowtagcvtermrefinedabout' => { 438 => [\'WorkflowTag','WorkflowTagCvTermRefinedAbout'] }, + 'worktodo' => { 434 => 'WorkToDo' }, 'worldtimelocation' => { 285 => 0x3a, 319 => 0x22, 325 => '0.1' }, 'writer-editor' => { 118 => 0x7a }, - 'x3filllight' => { 354 => 0x12 }, + 'x3filllight' => { 355 => 0x12 }, 'xattrquarantine' => { 158 => 'com.apple.quarantine' }, 'xml' => { 122 => 'xml ' }, 'xmp' => { 97 => 0xffff00f6, 111 => 'XMP' }, - 'xmptoolkit' => { 448 => 'xmptk' }, + 'xmptoolkit' => { 449 => 'xmptk' }, 'xpauthor' => { 110 => 0x9c9d }, 'xpcomment' => { 110 => 0x9c9c }, 'xpkeywords' => { 110 => 0x9c9e }, 'xposition' => { 110 => 0x11e }, 'xpsubject' => { 110 => 0x9c9f }, 'xptitle' => { 110 => 0x9c9b }, - 'xresolution' => { 110 => 0x11a, 121 => 0x3, 334 => 0x0, 447 => 'XResolution' }, + 'xresolution' => { 110 => 0x11a, 121 => 0x3, 334 => 0x0, 448 => 'XResolution' }, 'xyresolution' => { 114 => 0x3 }, 'yaw' => { 106 => 0x7 }, - 'yawangle' => { 218 => 0x3513, 219 => 0x2c2c, 227 => 0x36fc, 349 => 0x0 }, - 'ycbcrcoefficients' => { 110 => 0x211, 447 => 'YCbCrCoefficients' }, - 'ycbcrpositioning' => { 110 => 0x213, 447 => 'YCbCrPositioning' }, - 'ycbcrsubsampling' => { 110 => 0x212, 447 => 'YCbCrSubSampling' }, + 'yawangle' => { 218 => 0x3513, 219 => 0x2c2c, 227 => 0x36fc, 350 => 0x0 }, + 'ycbcrcoefficients' => { 110 => 0x211, 448 => 'YCbCrCoefficients' }, + 'ycbcrpositioning' => { 110 => 0x213, 448 => 'YCbCrPositioning' }, + 'ycbcrsubsampling' => { 110 => 0x212, 448 => 'YCbCrSubSampling' }, 'yearcreated' => { 126 => 0x10, 135 => 0xc }, - 'yield' => { 443 => 'yield' }, + 'yield' => { 444 => 'yield' }, 'yposition' => { 110 => 0x11f }, - 'yresolution' => { 110 => 0x11b, 121 => 0x5, 334 => 0x4, 447 => 'YResolution' }, - 'zonematching' => { 169 => 0x10a, 172 => [0x3a,0x4a], 374 => 0xb024 }, + 'yresolution' => { 110 => 0x11b, 121 => 0x5, 334 => 0x4, 448 => 'YResolution' }, + 'zonematching' => { 169 => 0x10a, 172 => [0x3a,0x4a], 375 => 0xb024 }, 'zonematchingmode' => { 167 => 0x14 }, 'zonematchingon' => { 166 => 0x75 }, - 'zonematchingvalue' => { 362 => 0x1f }, + 'zonematchingvalue' => { 363 => 0x1f }, 'zoomedpreviewlength' => { 269 => 0xf05 }, 'zoomedpreviewsize' => { 269 => 0xf06 }, 'zoomedpreviewstart' => { 269 => 0xf04 }, diff -Nru libimage-exiftool-perl-10.79/lib/Image/ExifTool/TagNames.pod libimage-exiftool-perl-10.80/lib/Image/ExifTool/TagNames.pod --- libimage-exiftool-perl-10.79/lib/Image/ExifTool/TagNames.pod 2018-02-12 02:09:32.000000000 +0000 +++ libimage-exiftool-perl-10.80/lib/Image/ExifTool/TagNames.pod 2018-02-22 12:59:16.000000000 +0000 @@ -650,6 +650,7 @@ MakerNotePentax6 ExifIFD Pentax S1 MakerNotePhaseOne ExifIFD PhaseOne MakerNoteReconyx ExifIFD Reconyx + MakerNoteReconyx2 ExifIFD Reconyx Type2 MakerNoteRicoh ExifIFD Ricoh MakerNoteRicoh2 ExifIFD Ricoh Type2 MakerNoteRicohText ExifIFD Ricoh Text @@ -13904,6 +13905,29 @@ 42 BatteryVoltage int16u 43 UserLabel string[22] +=head3 Reconyx Type2 Tags + +Tags extracted from models such as the UltraFire. + + Index1 Tag Name Writable + ------ -------- -------- + 24 FirmwareVersion undef[7] + 31 Micro1Version undef[7] + 38 BootLoaderVersion undef[7] + 45 Micro2Version undef[7] + 52 TriggerMode undef[1] + 53 Sequence int8u[2] + 55 EventNumber int32u + 59 DateTimeOriginal int8u[7] + 66 DayOfWeek int8u + 67 MoonPhase int8u + 68 AmbientTemperatureFahrenheit int16s + 70 AmbientTemperature int16s + 72 Illumination int8u + 73 BatteryVoltage int16u + 75 SerialNumber string[15] + 90 UserLabel string[21] + =head2 Sanyo Tags Tag ID Tag Name Writable @@ -16237,6 +16261,7 @@ MakerNotePentax6 Pentax S1 MakerNotePhaseOne PhaseOne MakerNoteReconyx Reconyx + MakerNoteReconyx2 Reconyx Type2 MakerNoteRicoh Ricoh MakerNoteRicoh2 Ricoh Type2 MakerNoteRicohText Ricoh Text @@ -16546,6 +16571,7 @@ 0x0025 WBGreenLevel int16u 0x0026 WBBlueLevel int16u 0x0027 WBInfo2 PanasonicRaw WBInfo2 + 0x002d RawFormat int16u! 0x002e JpgFromRaw JPEG 0x002f CropTop int16u 0x0030 CropLeft int16u @@ -31304,6 +31330,7 @@ MakerNotePentax6 MakerNotePhaseOne MakerNoteReconyx + MakerNoteReconyx2 MakerNoteRicoh MakerNoteRicoh2 MakerNoteRicohText diff -Nru libimage-exiftool-perl-10.79/lib/Image/ExifTool/WriteExif.pl libimage-exiftool-perl-10.80/lib/Image/ExifTool/WriteExif.pl --- libimage-exiftool-perl-10.79/lib/Image/ExifTool/WriteExif.pl 2018-01-23 16:13:21.000000000 +0000 +++ libimage-exiftool-perl-10.80/lib/Image/ExifTool/WriteExif.pl 2018-02-20 12:03:14.000000000 +0000 @@ -1324,6 +1324,7 @@ $subdirInfo{EntryBased} = $$sub{EntryBased}; $subdirInfo{NoFixBase} = 1 if defined $$sub{Base}; $subdirInfo{AutoFix} = $$sub{AutoFix}; + SetByteOrder($$sub{ByteOrder}) if $$sub{ByteOrder}; } # get the proper tag table for these maker notes if ($oldInfo and $$oldInfo{SubDirectory}) { diff -Nru libimage-exiftool-perl-10.79/lib/Image/ExifTool/Writer.pl libimage-exiftool-perl-10.80/lib/Image/ExifTool/Writer.pl --- libimage-exiftool-perl-10.79/lib/Image/ExifTool/Writer.pl 2018-02-11 22:15:37.000000000 +0000 +++ libimage-exiftool-perl-10.80/lib/Image/ExifTool/Writer.pl 2018-02-20 12:40:38.000000000 +0000 @@ -4390,13 +4390,15 @@ #------------------------------------------------------------------------------ # Return current time in EXIF format -# Inputs: 0) ExifTool ref, 1) flag to include timezone (0 to disable, undef or 1 to include) +# Inputs: 0) [optional] ExifTool ref, 1) flag to include timezone (0 to disable, +# undef or 1 to include) # Returns: time string # - a consistent value is returned for each processed file -sub TimeNow($;$) +sub TimeNow(;$$) { my ($self, $tzFlag) = @_; my $timeNow; + ref $self or $tzFlag = $self, $self = { }; if ($$self{Now}) { $timeNow = $$self{Now}[0]; } else { diff -Nru libimage-exiftool-perl-10.79/lib/Image/ExifTool.pm libimage-exiftool-perl-10.80/lib/Image/ExifTool.pm --- libimage-exiftool-perl-10.79/lib/Image/ExifTool.pm 2018-02-11 22:15:37.000000000 +0000 +++ libimage-exiftool-perl-10.80/lib/Image/ExifTool.pm 2018-02-20 12:36:47.000000000 +0000 @@ -27,7 +27,7 @@ %mimeType $swapBytes $swapWords $currentByteOrder %unpackStd %jpegMarker %specialTags %fileTypeLookup); -$VERSION = '10.79'; +$VERSION = '10.80'; $RELEASE = ''; @ISA = qw(Exporter); %EXPORT_TAGS = ( @@ -109,7 +109,7 @@ sub SetPreferredByteOrder($); sub CopyBlock($$$); sub CopyFileAttrs($$$); -sub TimeNow($;$); +sub TimeNow(;$$); sub NewGUID(); sub MakeTiffHeader($$$$;$$); @@ -1429,7 +1429,8 @@ specification is particularly vague about this byte ordering, and different applications use different conventions. By default ExifTool writes Unicode text in EXIF byte order, but this write-only tag may be used to force a - specific order + specific order. Applies to the EXIF UserComment tag when writing special + characters }, PrintConv => { II => 'Little-endian (Intel, II)', diff -Nru libimage-exiftool-perl-10.79/META.json libimage-exiftool-perl-10.80/META.json --- libimage-exiftool-perl-10.79/META.json 2018-02-12 02:12:30.000000000 +0000 +++ libimage-exiftool-perl-10.80/META.json 2018-02-22 13:02:12.000000000 +0000 @@ -47,5 +47,5 @@ } }, "release_status" : "stable", - "version" : "10.79" + "version" : "10.80" } diff -Nru libimage-exiftool-perl-10.79/META.yml libimage-exiftool-perl-10.80/META.yml --- libimage-exiftool-perl-10.79/META.yml 2018-02-12 02:12:29.000000000 +0000 +++ libimage-exiftool-perl-10.80/META.yml 2018-02-22 13:02:12.000000000 +0000 @@ -28,4 +28,4 @@ Time::HiRes: 0 requires: perl: 5.004 -version: 10.79 +version: 10.80 diff -Nru libimage-exiftool-perl-10.79/perl-Image-ExifTool.spec libimage-exiftool-perl-10.80/perl-Image-ExifTool.spec --- libimage-exiftool-perl-10.79/perl-Image-ExifTool.spec 2018-02-12 02:12:24.000000000 +0000 +++ libimage-exiftool-perl-10.80/perl-Image-ExifTool.spec 2018-02-22 13:02:07.000000000 +0000 @@ -1,6 +1,6 @@ Summary: perl module for image data extraction Name: perl-Image-ExifTool -Version: 10.79 +Version: 10.80 Release: 1 License: Artistic/GPL Group: Development/Libraries/Perl diff -Nru libimage-exiftool-perl-10.79/README libimage-exiftool-perl-10.80/README --- libimage-exiftool-perl-10.79/README 2018-02-12 02:12:24.000000000 +0000 +++ libimage-exiftool-perl-10.80/README 2018-02-22 13:02:07.000000000 +0000 @@ -102,8 +102,8 @@ terminal window to extract and run ExifTool: cd ~/Desktop - gzip -dc Image-ExifTool-10.79.tar.gz | tar -xf - - cd Image-ExifTool-10.79 + gzip -dc Image-ExifTool-10.80.tar.gz | tar -xf - + cd Image-ExifTool-10.80 ./exiftool t/images/ExifTool.jpg Note: These commands extract meta information from one of the test images. diff -Nru libimage-exiftool-perl-10.79/t/Panasonic_4.out libimage-exiftool-perl-10.80/t/Panasonic_4.out --- libimage-exiftool-perl-10.79/t/Panasonic_4.out 2018-01-29 12:46:48.000000000 +0000 +++ libimage-exiftool-perl-10.80/t/Panasonic_4.out 2018-02-20 12:42:44.000000000 +0000 @@ -1,10 +1,10 @@ -[ExifTool, ExifTool, ExifTool] ExifToolVersion - ExifTool Version Number: 10.78 +[ExifTool, ExifTool, ExifTool] ExifToolVersion - ExifTool Version Number: 10.80 [File, System, Image] FileName - File Name: Panasonic.rw2 [File, System, Image] Directory - Directory: t/images [File, System, Image] FileSize - File Size: 12 kB [File, System, Time] FileModifyDate - File Modification Date/Time: 2009:03:25 12:10:29-04:00 -[File, System, Time] FileAccessDate - File Access Date/Time: 2018:01:29 07:41:21-05:00 -[File, System, Time] FileInodeChangeDate - File Inode Change Date/Time: 2018:01:26 12:40:08-05:00 +[File, System, Time] FileAccessDate - File Access Date/Time: 2018:02:15 12:54:35-05:00 +[File, System, Time] FileInodeChangeDate - File Inode Change Date/Time: 2018:02:15 12:54:35-05:00 [File, System, Image] FilePermissions - File Permissions: rw-r--r-- [File, File, Image] FileType - File Type: RW2 [File, File, Image] FileTypeExtension - File Type Extension: rw2 @@ -41,6 +41,7 @@ [EXIF, IFD0, Image] 36 - WB Red Level: 570 [EXIF, IFD0, Image] 37 - WB Green Level: 263 [EXIF, IFD0, Image] 38 - WB Blue Level: 438 +[EXIF, IFD0, Image] 45 - Raw Format: 4 [EXIF, IFD0, Camera] 271 - Make: Panasonic [EXIF, IFD0, Camera] 272 - Camera Model Name: DMC-LX3 [EXIF, IFD0, Image] 274 - Orientation: Horizontal (normal) diff -Nru libimage-exiftool-perl-10.79/t/Panasonic_5.out libimage-exiftool-perl-10.80/t/Panasonic_5.out --- libimage-exiftool-perl-10.79/t/Panasonic_5.out 2018-01-29 12:46:48.000000000 +0000 +++ libimage-exiftool-perl-10.80/t/Panasonic_5.out 2018-02-20 12:42:44.000000000 +0000 @@ -1,10 +1,10 @@ -[ExifTool, ExifTool, ExifTool] ExifToolVersion - ExifTool Version Number: 10.78 +[ExifTool, ExifTool, ExifTool] ExifToolVersion - ExifTool Version Number: 10.80 [File, System, Image] FileName - File Name: Panasonic_5_failed.rw2 [File, System, Image] Directory - Directory: t [File, System, Image] FileSize - File Size: 14 kB -[File, System, Time] FileModifyDate - File Modification Date/Time: 2018:01:29 07:45:24-05:00 -[File, System, Time] FileAccessDate - File Access Date/Time: 2018:01:29 07:45:24-05:00 -[File, System, Time] FileInodeChangeDate - File Inode Change Date/Time: 2018:01:29 07:45:24-05:00 +[File, System, Time] FileModifyDate - File Modification Date/Time: 2018:02:20 07:42:18-05:00 +[File, System, Time] FileAccessDate - File Access Date/Time: 2018:02:20 07:42:18-05:00 +[File, System, Time] FileInodeChangeDate - File Inode Change Date/Time: 2018:02:20 07:42:18-05:00 [File, System, Image] FilePermissions - File Permissions: rw-r--r-- [File, File, Image] FileType - File Type: RW2 [File, File, Image] FileTypeExtension - File Type Extension: rw2 @@ -44,7 +44,7 @@ [EXIF, IFD0, Image] 36 - WB Red Level: 570 [EXIF, IFD0, Image] 37 - WB Green Level: 263 [EXIF, IFD0, Image] 38 - WB Blue Level: 438 -[EXIF, IFD0, Image] 45 - Panasonic Raw 0x002d: 4 +[EXIF, IFD0, Image] 45 - Raw Format: 4 [EXIF, IFD0, Camera] 271 - Make: Panasonic [EXIF, IFD0, Camera] 272 - Camera Model Name: DMC-LX3 [EXIF, IFD0, Image] 274 - Orientation: Horizontal (normal) @@ -223,7 +223,7 @@ [PrintIM, PrintIM, Printing] 256 - Print IM 0x0100: 0x00000005 [PrintIM, PrintIM, Printing] 257 - Print IM 0x0101: 0x00000001 [PrintIM, PrintIM, Printing] 272 - Print IM 0x0110: 0x00000080 -[XMP, XMP-x, Document] xmptk - XMP Toolkit: Image::ExifTool 10.78 +[XMP, XMP-x, Document] xmptk - XMP Toolkit: Image::ExifTool 10.80 [XMP, XMP-dc, Image] title - Title: new title [IPTC, IPTC, Other] 25 - Keywords: a keyword [IPTC, IPTC, Other] 0 - Application Record Version: 4