| line | stmt | bran | cond | sub | pod | time | code | 
| 1 |  |  |  |  |  |  | #------------------------------------------------------------------------------ | 
| 2 |  |  |  |  |  |  | # File:         PLUS.pm | 
| 3 |  |  |  |  |  |  | # | 
| 4 |  |  |  |  |  |  | # Description:  PLUS (Picture Licensing Universal System) tags | 
| 5 |  |  |  |  |  |  | # | 
| 6 |  |  |  |  |  |  | # Revisions:    2016/05/18 - P. Harvey Created | 
| 7 |  |  |  |  |  |  | # | 
| 8 |  |  |  |  |  |  | # References:   1) http://www.useplus.com/useplus/standards.asp | 
| 9 |  |  |  |  |  |  | #------------------------------------------------------------------------------ | 
| 10 |  |  |  |  |  |  |  | 
| 11 |  |  |  |  |  |  | package Image::ExifTool::PLUS; | 
| 12 |  |  |  |  |  |  |  | 
| 13 | 3 |  |  | 3 |  | 5086 | use strict; | 
|  | 3 |  |  |  |  | 8 |  | 
|  | 3 |  |  |  |  | 124 |  | 
| 14 | 3 |  |  | 3 |  | 18 | use vars qw($VERSION); | 
|  | 3 |  |  |  |  | 9 |  | 
|  | 3 |  |  |  |  | 140 |  | 
| 15 | 3 |  |  | 3 |  | 1103 | use Image::ExifTool::XMP; | 
|  | 3 |  |  |  |  | 70 |  | 
|  | 3 |  |  |  |  | 21146 |  | 
| 16 |  |  |  |  |  |  |  | 
| 17 |  |  |  |  |  |  | $VERSION = '1.00'; | 
| 18 |  |  |  |  |  |  |  | 
| 19 |  |  |  |  |  |  | sub ValidateMediaSummary($); | 
| 20 |  |  |  |  |  |  |  | 
| 21 |  |  |  |  |  |  | #------------------------------------------------------------------------------ | 
| 22 |  |  |  |  |  |  | # PLUS (Picture Licensing Universal System) | 
| 23 |  |  |  |  |  |  |  | 
| 24 |  |  |  |  |  |  | # PLUS vocabulary conversions | 
| 25 |  |  |  |  |  |  | my %plusVocab = ( | 
| 26 |  |  |  |  |  |  | ValueConv => '$val =~ s{http://ns.useplus.org/ldf/vocab/}{}; $val', | 
| 27 |  |  |  |  |  |  | ValueConvInv => '"http://ns.useplus.org/ldf/vocab/$val"', | 
| 28 |  |  |  |  |  |  | ); | 
| 29 |  |  |  |  |  |  |  | 
| 30 |  |  |  |  |  |  | # PLUS License Data Format 1.2.1 structures | 
| 31 |  |  |  |  |  |  | # (this seems crazy to me -- why did they define different ID/Name structures | 
| 32 |  |  |  |  |  |  | #  for each field rather than just re-using the same structure?) | 
| 33 |  |  |  |  |  |  | my %plusLicensee = ( | 
| 34 |  |  |  |  |  |  | STRUCT_NAME => 'Licensee', | 
| 35 |  |  |  |  |  |  | NAMESPACE => 'plus', | 
| 36 |  |  |  |  |  |  | # all "rdf:type" properties removed in version 1.2.1 | 
| 37 |  |  |  |  |  |  | # (idiots.  Why did they put them there in the first place? -- it required | 
| 38 |  |  |  |  |  |  | # a special patch for ExifTool to support these, and now they are gone!) | 
| 39 |  |  |  |  |  |  | # TYPE => 'plus:LicenseeDetail', (removed in 1.2.1) | 
| 40 |  |  |  |  |  |  | LicenseeID  => { }, | 
| 41 |  |  |  |  |  |  | LicenseeName=> { }, | 
| 42 |  |  |  |  |  |  | ); | 
| 43 |  |  |  |  |  |  | my %plusEndUser = ( | 
| 44 |  |  |  |  |  |  | STRUCT_NAME => 'EndUser', | 
| 45 |  |  |  |  |  |  | NAMESPACE   => 'plus', | 
| 46 |  |  |  |  |  |  | # TYPE => 'plus:EndUserDetail', (removed in 1.2.1) | 
| 47 |  |  |  |  |  |  | EndUserID   => { }, | 
| 48 |  |  |  |  |  |  | EndUserName => { }, | 
| 49 |  |  |  |  |  |  | ); | 
| 50 |  |  |  |  |  |  | my %plusLicensor = ( | 
| 51 |  |  |  |  |  |  | STRUCT_NAME => 'Licensor', | 
| 52 |  |  |  |  |  |  | NAMESPACE   => 'plus', | 
| 53 |  |  |  |  |  |  | # TYPE => 'plus:LicensorDetail', (removed in 1.2.1) | 
| 54 |  |  |  |  |  |  | LicensorID              => { }, | 
| 55 |  |  |  |  |  |  | LicensorName            => { }, | 
| 56 |  |  |  |  |  |  | LicensorStreetAddress   => { }, | 
| 57 |  |  |  |  |  |  | LicensorExtendedAddress => { }, | 
| 58 |  |  |  |  |  |  | LicensorCity            => { }, | 
| 59 |  |  |  |  |  |  | LicensorRegion          => { }, | 
| 60 |  |  |  |  |  |  | LicensorPostalCode      => { }, | 
| 61 |  |  |  |  |  |  | LicensorCountry         => { }, | 
| 62 |  |  |  |  |  |  | LicensorTelephoneType1  => { | 
| 63 |  |  |  |  |  |  | %plusVocab, | 
| 64 |  |  |  |  |  |  | PrintConv => { | 
| 65 |  |  |  |  |  |  | 'work'  => 'Work', | 
| 66 |  |  |  |  |  |  | 'cell'  => 'Cell', | 
| 67 |  |  |  |  |  |  | 'fax'   => 'FAX', | 
| 68 |  |  |  |  |  |  | 'home'  => 'Home', | 
| 69 |  |  |  |  |  |  | 'pager' => 'Pager', | 
| 70 |  |  |  |  |  |  | }, | 
| 71 |  |  |  |  |  |  | }, | 
| 72 |  |  |  |  |  |  | LicensorTelephone1      => { }, | 
| 73 |  |  |  |  |  |  | LicensorTelephoneType2  => { | 
| 74 |  |  |  |  |  |  | %plusVocab, | 
| 75 |  |  |  |  |  |  | PrintConv => { | 
| 76 |  |  |  |  |  |  | 'work'  => 'Work', | 
| 77 |  |  |  |  |  |  | 'cell'  => 'Cell', | 
| 78 |  |  |  |  |  |  | 'fax'   => 'FAX', | 
| 79 |  |  |  |  |  |  | 'home'  => 'Home', | 
| 80 |  |  |  |  |  |  | 'pager' => 'Pager', | 
| 81 |  |  |  |  |  |  | }, | 
| 82 |  |  |  |  |  |  | }, | 
| 83 |  |  |  |  |  |  | LicensorTelephone2  => { }, | 
| 84 |  |  |  |  |  |  | LicensorEmail       => { }, | 
| 85 |  |  |  |  |  |  | LicensorURL         => { }, | 
| 86 |  |  |  |  |  |  | ); | 
| 87 |  |  |  |  |  |  | my %plusCopyrightOwner = ( | 
| 88 |  |  |  |  |  |  | STRUCT_NAME => 'CopyrightOwner', | 
| 89 |  |  |  |  |  |  | NAMESPACE   => 'plus', | 
| 90 |  |  |  |  |  |  | # TYPE        => 'plus:CopyrightOwnerDetail', (removed in 1.2.1) | 
| 91 |  |  |  |  |  |  | CopyrightOwnerID    => { }, | 
| 92 |  |  |  |  |  |  | CopyrightOwnerName  => { }, | 
| 93 |  |  |  |  |  |  | ); | 
| 94 |  |  |  |  |  |  | my %plusImageCreator = ( | 
| 95 |  |  |  |  |  |  | STRUCT_NAME => 'ImageCreator', | 
| 96 |  |  |  |  |  |  | NAMESPACE   => 'plus', | 
| 97 |  |  |  |  |  |  | # TYPE        => 'plus:ImageCreatorDetail', (removed in 1.2.1) | 
| 98 |  |  |  |  |  |  | ImageCreatorID      => { }, | 
| 99 |  |  |  |  |  |  | ImageCreatorName    => { }, | 
| 100 |  |  |  |  |  |  | ); | 
| 101 |  |  |  |  |  |  | my %plusImageSupplier = ( | 
| 102 |  |  |  |  |  |  | STRUCT_NAME => 'ImageSupplier', | 
| 103 |  |  |  |  |  |  | NAMESPACE   => 'plus', | 
| 104 |  |  |  |  |  |  | # TYPE        => 'plus:ImageSupplierDetail', (removed in 1.2.1) | 
| 105 |  |  |  |  |  |  | ImageSupplierID     => { }, | 
| 106 |  |  |  |  |  |  | ImageSupplierName   => { }, | 
| 107 |  |  |  |  |  |  | ); | 
| 108 |  |  |  |  |  |  |  | 
| 109 |  |  |  |  |  |  | # Media Matrix 1.1.1 decoding | 
| 110 |  |  |  |  |  |  | my %mediaMatrix = ( | 
| 111 |  |  |  |  |  |  | Notes => q{ | 
| 112 |  |  |  |  |  |  | The lookup below is used to add human-readable descriptions to Media Matrix | 
| 113 |  |  |  |  |  |  | ID's in PLUS Media Summary Codes. | 
| 114 |  |  |  |  |  |  | }, | 
| 115 |  |  |  |  |  |  | OTHER => sub { | 
| 116 |  |  |  |  |  |  | my ($val, $inv, $conv) = @_; | 
| 117 |  |  |  |  |  |  | $val = uc $val; # convert to upper case | 
| 118 |  |  |  |  |  |  | if ($inv) { | 
| 119 |  |  |  |  |  |  | # prepare MediaSummaryCode for writing | 
| 120 |  |  |  |  |  |  | $val =~ s/\(.*?\)//sg;      # remove descriptions | 
| 121 |  |  |  |  |  |  | $val =~ s/^\s*?PLUS\s+(V[0-9]+)\s+(U[0-9]+)\s*;/|PLUS|$1|$2|/s; # reformat header | 
| 122 |  |  |  |  |  |  | $val =~ tr/;/|/;            # use "|" as separator instead of ";" | 
| 123 |  |  |  |  |  |  | $val =~ tr/0-9A-Z|//dc;     # remove extraneous characters | 
| 124 |  |  |  |  |  |  | $val .= '|' unless $val =~ /\|$/;   # add terminating "|" | 
| 125 |  |  |  |  |  |  | ValidateMediaSummary($val) or return undef; | 
| 126 |  |  |  |  |  |  | } elsif ($val =~ /^\|PLUS\|(.*?)\|(.*?)\|(.*)/s) { | 
| 127 |  |  |  |  |  |  | # add human-readable descriptions | 
| 128 |  |  |  |  |  |  | my ($ver,$num,$code) = ($1,$2,$3); | 
| 129 |  |  |  |  |  |  | $ver .= " (LDF Version $1.$2)" if $ver =~ /V0*(\d+)(\d{2})$/; | 
| 130 |  |  |  |  |  |  | $num .= " ($1 Media Usages:)" if $num =~ /U0*(\d+)/; | 
| 131 |  |  |  |  |  |  | $code =~ tr/0-9A-Z|//dc;    # remove extraneous characters | 
| 132 |  |  |  |  |  |  | $val = "PLUS $ver $num"; | 
| 133 |  |  |  |  |  |  | while ($code =~ /(\d[A-Z]{3})/g) { | 
| 134 |  |  |  |  |  |  | my $mmid = $1; | 
| 135 |  |  |  |  |  |  | if (defined $$conv{$mmid}) { | 
| 136 |  |  |  |  |  |  | $val .= " $mmid ($$conv{$mmid})"; | 
| 137 |  |  |  |  |  |  | } elsif ($mmid =~ /^1I([A-Z])([A-Z])/) {    # decode Usage Item count | 
| 138 |  |  |  |  |  |  | my $n = (ord($1)-65) * 26 + ord($2)-65 + 1; | 
| 139 |  |  |  |  |  |  | # (add a separator before each new Media Usage Code) | 
| 140 |  |  |  |  |  |  | $val .= "; $mmid ($n Usage Items:)"; | 
| 141 |  |  |  |  |  |  | } elsif ($mmid =~ /^1UN([A-Z])/) {          # decode Usage Number | 
| 142 |  |  |  |  |  |  | $val .= " (Usage Number $1)"; | 
| 143 |  |  |  |  |  |  | } else { | 
| 144 |  |  |  |  |  |  | $val .= " $mmid"; | 
| 145 |  |  |  |  |  |  | } | 
| 146 |  |  |  |  |  |  | } | 
| 147 |  |  |  |  |  |  | } | 
| 148 |  |  |  |  |  |  | return $val; | 
| 149 |  |  |  |  |  |  | }, | 
| 150 |  |  |  |  |  |  | # 1 - Usage | 
| 151 |  |  |  |  |  |  | '1IAA' => '1 Usage Item:', | 
| 152 |  |  |  |  |  |  | '1IAB' => '2 Usage Items:', | 
| 153 |  |  |  |  |  |  | '1IAC' => '3 Usage Items:', | 
| 154 |  |  |  |  |  |  | '1IAD' => '4 Usage Items:', | 
| 155 |  |  |  |  |  |  | '1IAE' => '5 Usage Items:', | 
| 156 |  |  |  |  |  |  | # ... | 
| 157 |  |  |  |  |  |  | '1UNA' => 'Usage Number A', | 
| 158 |  |  |  |  |  |  | '1UNB' => 'Usage Number B', | 
| 159 |  |  |  |  |  |  | '1UNC' => 'Usage Number C', | 
| 160 |  |  |  |  |  |  | '1UND' => 'Usage Number D', | 
| 161 |  |  |  |  |  |  | '1UNE' => 'Usage Number E', | 
| 162 |  |  |  |  |  |  | # ... | 
| 163 |  |  |  |  |  |  | # 2 - Media | 
| 164 |  |  |  |  |  |  | '2BOB' => 'Advertising|Periodicals|Magazine, Consumer|Printed', | 
| 165 |  |  |  |  |  |  | '2ACE' => 'Advertising|Periodicals|Magazine, Consumer|Internet Website', | 
| 166 |  |  |  |  |  |  | '2GEN' => 'Advertising|Periodicals|Magazine, Consumer|Internet Downloadable File', | 
| 167 |  |  |  |  |  |  | '2ADS' => 'Advertising|Periodicals|Magazine, Consumer|Internet Email', | 
| 168 |  |  |  |  |  |  | '2GIB' => 'Advertising|Periodicals|Magazine, Consumer|All Internet Distribution Formats', | 
| 169 |  |  |  |  |  |  | '2GHI' => 'Advertising|Periodicals|Magazine, Consumer|Recordable Media', | 
| 170 |  |  |  |  |  |  | '2GEY' => 'Advertising|Periodicals|Magazine, Consumer|All Electronic Distribution Formats', | 
| 171 |  |  |  |  |  |  | '2HAT' => 'Advertising|Periodicals|Magazine, Trade|Printed', | 
| 172 |  |  |  |  |  |  | '2HAG' => 'Advertising|Periodicals|Magazine, Trade|Internet Website', | 
| 173 |  |  |  |  |  |  | '2HAE' => 'Advertising|Periodicals|Magazine, Trade|Internet Downloadable File', | 
| 174 |  |  |  |  |  |  | '2AFT' => 'Advertising|Periodicals|Magazine, Trade|Internet Email', | 
| 175 |  |  |  |  |  |  | '2HAJ' => 'Advertising|Periodicals|Magazine, Trade|All Internet Distribution Formats', | 
| 176 |  |  |  |  |  |  | '2AGE' => 'Advertising|Periodicals|Magazine, Trade|Recordable Media', | 
| 177 |  |  |  |  |  |  | '2HAH' => 'Advertising|Periodicals|Magazine, Trade|All Electronic Distribution Formats', | 
| 178 |  |  |  |  |  |  | '2JAR' => 'Advertising|Periodicals|Magazine, Corporate|Printed', | 
| 179 |  |  |  |  |  |  | '2GIN' => 'Advertising|Periodicals|Magazine, Corporate|Internet Website', | 
| 180 |  |  |  |  |  |  | '2GIE' => 'Advertising|Periodicals|Magazine, Corporate|Internet Downloadable File', | 
| 181 |  |  |  |  |  |  | '2AGO' => 'Advertising|Periodicals|Magazine, Corporate|Internet Email', | 
| 182 |  |  |  |  |  |  | '2GNU' => 'Advertising|Periodicals|Magazine, Corporate|All Internet Distribution Formats', | 
| 183 |  |  |  |  |  |  | '2GIP' => 'Advertising|Periodicals|Magazine, Corporate|Recordable Media', | 
| 184 |  |  |  |  |  |  | '2GIT' => 'Advertising|Periodicals|Magazine, Corporate|All Electronic Distribution Formats', | 
| 185 |  |  |  |  |  |  | '2DEB' => 'Advertising|Periodicals|Magazine, Education|Printed', | 
| 186 |  |  |  |  |  |  | '2GUM' => 'Advertising|Periodicals|Magazine, Education|Internet Website', | 
| 187 |  |  |  |  |  |  | '2GUL' => 'Advertising|Periodicals|Magazine, Education|Internet Downloadable File', | 
| 188 |  |  |  |  |  |  | '2AHA' => 'Advertising|Periodicals|Magazine, Education|Internet Email', | 
| 189 |  |  |  |  |  |  | '2GYP' => 'Advertising|Periodicals|Magazine, Education|All Internet Distribution Formats', | 
| 190 |  |  |  |  |  |  | '2GUV' => 'Advertising|Periodicals|Magazine, Education|Recordable Media', | 
| 191 |  |  |  |  |  |  | '2GUY' => 'Advertising|Periodicals|Magazine, Education|All Electronic Distribution Formats', | 
| 192 |  |  |  |  |  |  | '2CUS' => 'Advertising|Periodicals|Magazine, Custom Published|Printed', | 
| 193 |  |  |  |  |  |  | '2GOR' => 'Advertising|Periodicals|Magazine, Custom Published|Internet Website', | 
| 194 |  |  |  |  |  |  | '2GOS' => 'Advertising|Periodicals|Magazine, Custom Published|Internet Downloadable File', | 
| 195 |  |  |  |  |  |  | '2AIL' => 'Advertising|Periodicals|Magazine, Custom Published|Internet Email', | 
| 196 |  |  |  |  |  |  | '2GOX' => 'Advertising|Periodicals|Magazine, Custom Published|All Internet Distribution Formats', | 
| 197 |  |  |  |  |  |  | '2ALP' => 'Advertising|Periodicals|Magazine, Custom Published|Recordable Media', | 
| 198 |  |  |  |  |  |  | '2AMI' => 'Advertising|Periodicals|Magazine, Custom Published|All Electronic Distribution Formats', | 
| 199 |  |  |  |  |  |  | '2BEN' => 'Advertising|Periodicals|Magazine, Advertorial|Printed', | 
| 200 |  |  |  |  |  |  | '2BAP' => 'Advertising|Periodicals|Magazine, Advertorial|Internet Website', | 
| 201 |  |  |  |  |  |  | '2BAM' => 'Advertising|Periodicals|Magazine, Advertorial|Internet Downloadable File', | 
| 202 |  |  |  |  |  |  | '2BOP' => 'Advertising|Periodicals|Magazine, Advertorial|Internet Email', | 
| 203 |  |  |  |  |  |  | '2GOB' => 'Advertising|Periodicals|Magazine, Advertorial|All Internet Distribution Formats', | 
| 204 |  |  |  |  |  |  | '2DUH' => 'Advertising|Periodicals|Magazine, Advertorial|All Electronic Distribution Formats', | 
| 205 |  |  |  |  |  |  | '2DUP' => 'Advertising|Periodicals|Magazine Reprints, All Types|Printed', | 
| 206 |  |  |  |  |  |  | '2HAS' => 'Advertising|Periodicals|Magazine Reprints, All Types|Internet Website', | 
| 207 |  |  |  |  |  |  | '2HAP' => 'Advertising|Periodicals|Magazine Reprints, All Types|Internet Downloadable File', | 
| 208 |  |  |  |  |  |  | '2AMP' => 'Advertising|Periodicals|Magazine Reprints, All Types|Internet Email', | 
| 209 |  |  |  |  |  |  | '2HEH' => 'Advertising|Periodicals|Magazine Reprints, All Types|All Internet Distribution Formats', | 
| 210 |  |  |  |  |  |  | '2HAW' => 'Advertising|Periodicals|Magazine Reprints, All Types|Recordable Media', | 
| 211 |  |  |  |  |  |  | '2HAY' => 'Advertising|Periodicals|Magazine Reprints, All Types|All Electronic Distribution Formats', | 
| 212 |  |  |  |  |  |  | '2MOO' => 'Advertising|Periodicals|Magazine, All Types|Printed', | 
| 213 |  |  |  |  |  |  | '2ANA' => 'Advertising|Periodicals|Magazine, All Types|Internet Website', | 
| 214 |  |  |  |  |  |  | '2GOO' => 'Advertising|Periodicals|Magazine, All Types|Recordable Media', | 
| 215 |  |  |  |  |  |  | '2ANY' => 'Advertising|Periodicals|Magazine, All Types|Internet Downloadable File', | 
| 216 |  |  |  |  |  |  | '2APE' => 'Advertising|Periodicals|Magazine, All Types|Internet Email', | 
| 217 |  |  |  |  |  |  | '2APT' => 'Advertising|Periodicals|Magazine, All Types|All Internet Distribution Formats', | 
| 218 |  |  |  |  |  |  | '2ARK' => 'Advertising|Periodicals|Magazine, All Types|All Electronic Distribution Formats', | 
| 219 |  |  |  |  |  |  | '2KEG' => 'Advertising|Periodicals|Newspaper, Weekly Supplement|Printed', | 
| 220 |  |  |  |  |  |  | '2HOB' => 'Advertising|Periodicals|Newspaper, Weekly Supplement|Internet Website', | 
| 221 |  |  |  |  |  |  | '2HOD' => 'Advertising|Periodicals|Newspaper, Weekly Supplement|Internet Downloadable File', | 
| 222 |  |  |  |  |  |  | '2ARM' => 'Advertising|Periodicals|Newspaper, Weekly Supplement|Internet Email', | 
| 223 |  |  |  |  |  |  | '2HMM' => 'Advertising|Periodicals|Newspaper, Weekly Supplement|All Internet Distribution Formats', | 
| 224 |  |  |  |  |  |  | '2HOE' => 'Advertising|Periodicals|Newspaper, Weekly Supplement|Recordable Media', | 
| 225 |  |  |  |  |  |  | '2HIS' => 'Advertising|Periodicals|Newspaper, Weekly Supplement|All Electronic Distribution Formats', | 
| 226 |  |  |  |  |  |  | '2KEN' => 'Advertising|Periodicals|Newspaper, Tabloid|Printed', | 
| 227 |  |  |  |  |  |  | '2HOY' => 'Advertising|Periodicals|Newspaper, Tabloid|Internet Website', | 
| 228 |  |  |  |  |  |  | '2HUH' => 'Advertising|Periodicals|Newspaper, Tabloid|All Internet Distribution Formats', | 
| 229 |  |  |  |  |  |  | '2ASH' => 'Advertising|Periodicals|Newspaper, Tabloid|Internet Downloadable File', | 
| 230 |  |  |  |  |  |  | '2BAY' => 'Advertising|Periodicals|Newspaper, Tabloid|Internet Email', | 
| 231 |  |  |  |  |  |  | '2HUE' => 'Advertising|Periodicals|Newspaper, Tabloid|Recordable Media', | 
| 232 |  |  |  |  |  |  | '2HOW' => 'Advertising|Periodicals|Newspaper, Tabloid|All Electronic Distribution Formats', | 
| 233 |  |  |  |  |  |  | '2NEW' => 'Advertising|Periodicals|Newspaper, All Types|Printed', | 
| 234 |  |  |  |  |  |  | '2HID' => 'Advertising|Periodicals|Newspaper, All Types|Internet Website', | 
| 235 |  |  |  |  |  |  | '2HIE' => 'Advertising|Periodicals|Newspaper, All Types|Internet Downloadable File', | 
| 236 |  |  |  |  |  |  | '2BED' => 'Advertising|Periodicals|Newspaper, All Types|Internet Email', | 
| 237 |  |  |  |  |  |  | '2HIC' => 'Advertising|Periodicals|Newspaper, All Types|All Internet Distribution Formats', | 
| 238 |  |  |  |  |  |  | '2HIM' => 'Advertising|Periodicals|Newspaper, All Types|Recordable Media', | 
| 239 |  |  |  |  |  |  | '2HEY' => 'Advertising|Periodicals|Newspaper, All Types|All Electronic Distribution Formats', | 
| 240 |  |  |  |  |  |  | '2JAY' => 'Advertising|Periodicals|Newsletter, All Types|Printed', | 
| 241 |  |  |  |  |  |  | '2HES' => 'Advertising|Periodicals|Newsletter, All Types|Internet Website', | 
| 242 |  |  |  |  |  |  | '2HEP' => 'Advertising|Periodicals|Newsletter, All Types|Internet Downloadable File', | 
| 243 |  |  |  |  |  |  | '2HEW' => 'Advertising|Periodicals|Newsletter, All Types|All Internet Distribution Formats', | 
| 244 |  |  |  |  |  |  | '2BID' => 'Advertising|Periodicals|Newsletter, All Types|Internet Email', | 
| 245 |  |  |  |  |  |  | '2HET' => 'Advertising|Periodicals|Newsletter, All Types|Recordable Media', | 
| 246 |  |  |  |  |  |  | '2HEN' => 'Advertising|Periodicals|Newsletter, All Types|All Electronic Distribution Formats', | 
| 247 |  |  |  |  |  |  | '2BAH' => 'Advertising|Periodicals|Quarterly Report|Printed', | 
| 248 |  |  |  |  |  |  | '2HUT' => 'Advertising|Periodicals|Quarterly Report|Internet Website', | 
| 249 |  |  |  |  |  |  | '2HUP' => 'Advertising|Periodicals|Quarterly Report|Internet Downloadable File', | 
| 250 |  |  |  |  |  |  | '2BAL' => 'Advertising|Periodicals|Quarterly Report|Internet Email', | 
| 251 |  |  |  |  |  |  | '2JEE' => 'Advertising|Periodicals|Quarterly Report|All Internet Distribution Formats', | 
| 252 |  |  |  |  |  |  | '2HYP' => 'Advertising|Periodicals|Quarterly Report|Recordable Media', | 
| 253 |  |  |  |  |  |  | '2JAG' => 'Advertising|Periodicals|Quarterly Report|All Electronic Distribution Formats', | 
| 254 |  |  |  |  |  |  | '2ANN' => 'Advertising|Periodicals|Annual Report|Printed', | 
| 255 |  |  |  |  |  |  | '2FON' => 'Advertising|Periodicals|Annual Report|Internet Website', | 
| 256 |  |  |  |  |  |  | '2FOH' => 'Advertising|Periodicals|Annual Report|Internet Downloadable File', | 
| 257 |  |  |  |  |  |  | '2FOP' => 'Advertising|Periodicals|Annual Report|Internet Email', | 
| 258 |  |  |  |  |  |  | '2FOY' => 'Advertising|Periodicals|Annual Report|All Internet Distribution Formats', | 
| 259 |  |  |  |  |  |  | '2BAS' => 'Advertising|Periodicals|Annual Report|Recordable Media', | 
| 260 |  |  |  |  |  |  | '2FOU' => 'Advertising|Periodicals|Annual Report|All Electronic Distribution Formats', | 
| 261 |  |  |  |  |  |  | '2KIP' => 'Advertising|Periodicals|Program Advertising|Printed', | 
| 262 |  |  |  |  |  |  | '2DEE' => 'Advertising|Periodicals|Wrapper|Printed', | 
| 263 |  |  |  |  |  |  | '2FUD' => 'Advertising|Periodicals|Cover Wrap|Printed', | 
| 264 |  |  |  |  |  |  | '2FUB' => 'Advertising|Periodicals|Belly Band|Printed', | 
| 265 |  |  |  |  |  |  | '2BAT' => 'Advertising|Periodicals|Free Standing Insert, All Insert Types|Printed', | 
| 266 |  |  |  |  |  |  | '2HIP' => 'Advertising|Periodicals|Free Standing Insert, Advertorial Insert|Printed', | 
| 267 |  |  |  |  |  |  | '2BAG' => 'Advertising|Periodicals|All Periodical Types|Printed', | 
| 268 |  |  |  |  |  |  | '2FIZ' => 'Advertising|Periodicals|All Periodical Types|Internet Website', | 
| 269 |  |  |  |  |  |  | '2BOD' => 'Advertising|Periodicals|All Periodical Types|Internet Downloadable File', | 
| 270 |  |  |  |  |  |  | '2BOW' => 'Advertising|Periodicals|All Periodical Types|Internet Email', | 
| 271 |  |  |  |  |  |  | '2FOB' => 'Advertising|Periodicals|All Periodical Types|All Internet Distribution Formats', | 
| 272 |  |  |  |  |  |  | '2FIR' => 'Advertising|Periodicals|All Periodical Types|Recordable Media', | 
| 273 |  |  |  |  |  |  | '2FLU' => 'Advertising|Periodicals|All Periodical Types|All Electronic Distribution Formats', | 
| 274 |  |  |  |  |  |  | '2EDH' => 'Advertising|Marketing Materials|Artist\'s Reference, All Types|Printed', | 
| 275 |  |  |  |  |  |  | '2ECU' => 'Advertising|Marketing Materials|Artist\'s Reference, All Types|All Internet Distribution Formats', | 
| 276 |  |  |  |  |  |  | '2DOT' => 'Advertising|Marketing Materials|Artist\'s Reference, All Types|All Electronic Distribution Formats', | 
| 277 |  |  |  |  |  |  | '2MMA' => 'Advertising|Marketing Materials|Bill Insert|Printed', | 
| 278 |  |  |  |  |  |  | '2MMB' => 'Advertising|Marketing Materials|Blow In Card|Printed', | 
| 279 |  |  |  |  |  |  | '2MMC' => 'Advertising|Marketing Materials|Bound-in Insert|Printed', | 
| 280 |  |  |  |  |  |  | '2MMD' => 'Advertising|Marketing Materials|Broadside|Printed', | 
| 281 |  |  |  |  |  |  | '2EGG' => 'Advertising|Marketing Materials|Brochure|Printed', | 
| 282 |  |  |  |  |  |  | '2EFF' => 'Advertising|Marketing Materials|Brochure|Internet Downloadable File', | 
| 283 |  |  |  |  |  |  | '2EFS' => 'Advertising|Marketing Materials|Brochure|Internet Email', | 
| 284 |  |  |  |  |  |  | '2EFT' => 'Advertising|Marketing Materials|Brochure|Recordable Media', | 
| 285 |  |  |  |  |  |  | '2MME' => 'Advertising|Marketing Materials|Buckslip|Printed', | 
| 286 |  |  |  |  |  |  | '2MMF' => 'Advertising|Marketing Materials|Business Card|Printed', | 
| 287 |  |  |  |  |  |  | '2MMG' => 'Advertising|Marketing Materials|Business Envelope|Printed', | 
| 288 |  |  |  |  |  |  | '2BIZ' => 'Advertising|Marketing Materials|Card, Business Greeting Card|Printed', | 
| 289 |  |  |  |  |  |  | '2MMI' => 'Advertising|Marketing Materials|Business Invitation|Printed', | 
| 290 |  |  |  |  |  |  | '2MMJ' => 'Advertising|Marketing Materials|Business Reply Card|Printed', | 
| 291 |  |  |  |  |  |  | '2MMK' => 'Advertising|Marketing Materials|Business Reply Envelope|Printed', | 
| 292 |  |  |  |  |  |  | '2MML' => 'Advertising|Marketing Materials|Business Stationery|Printed', | 
| 293 |  |  |  |  |  |  | '2FIG' => 'Advertising|Marketing Materials|Catalog|Printed', | 
| 294 |  |  |  |  |  |  | '2ELL' => 'Advertising|Marketing Materials|Catalog|Internet Downloadable File', | 
| 295 |  |  |  |  |  |  | '2ELS' => 'Advertising|Marketing Materials|Catalog|Internet Email', | 
| 296 |  |  |  |  |  |  | '2ELF' => 'Advertising|Marketing Materials|Catalog|Recordable Media', | 
| 297 |  |  |  |  |  |  | '2EDU' => 'Advertising|Marketing Materials|CD ROM|Recordable Media', | 
| 298 |  |  |  |  |  |  | '2MMM' => 'Advertising|Marketing Materials|Compliment Slip|Printed', | 
| 299 |  |  |  |  |  |  | '2MMN' => 'Advertising|Marketing Materials|Coupon|Printed', | 
| 300 |  |  |  |  |  |  | '2EGO' => 'Advertising|Marketing Materials|Coupon|Internet Downloadable File', | 
| 301 |  |  |  |  |  |  | '2ENG' => 'Advertising|Marketing Materials|Coupon|Internet Email', | 
| 302 |  |  |  |  |  |  | '2ENS' => 'Advertising|Marketing Materials|Coupon|Recordable Media', | 
| 303 |  |  |  |  |  |  | '2MMP' => 'Advertising|Marketing Materials|Coupon Packs|Printed', | 
| 304 |  |  |  |  |  |  | '2DVA' => 'Advertising|Marketing Materials|DVD|Recordable Media', | 
| 305 |  |  |  |  |  |  | '2MMQ' => 'Advertising|Marketing Materials|Flyaway Card|Printed', | 
| 306 |  |  |  |  |  |  | '2FLY' => 'Advertising|Marketing Materials|Flyer|Printed', | 
| 307 |  |  |  |  |  |  | '2MMR' => 'Advertising|Marketing Materials|Leaflet|Printed', | 
| 308 |  |  |  |  |  |  | '2MMS' => 'Advertising|Marketing Materials|Magalog|Printed', | 
| 309 |  |  |  |  |  |  | '2END' => 'Advertising|Marketing Materials|Magalog|Internet Downloadable File', | 
| 310 |  |  |  |  |  |  | '2EON' => 'Advertising|Marketing Materials|Magalog|Internet Email', | 
| 311 |  |  |  |  |  |  | '2FAX' => 'Advertising|Marketing Materials|Magalog|Recordable Media', | 
| 312 |  |  |  |  |  |  | '2MMT' => 'Advertising|Marketing Materials|One Sheet|Printed', | 
| 313 |  |  |  |  |  |  | '2MMU' => 'Advertising|Marketing Materials|Onsert|Printed', | 
| 314 |  |  |  |  |  |  | '2MMV' => 'Advertising|Marketing Materials|Polybag|Printed', | 
| 315 |  |  |  |  |  |  | '2BUN' => 'Advertising|Marketing Materials|Promo Card|Printed', | 
| 316 |  |  |  |  |  |  | '2MMW' => 'Advertising|Marketing Materials|Promotional Calendar, One Page|Printed', | 
| 317 |  |  |  |  |  |  | '2FAS' => 'Advertising|Marketing Materials|Promotional Calendar, One Page|Internet Downloadable File', | 
| 318 |  |  |  |  |  |  | '2FAY' => 'Advertising|Marketing Materials|Promotional Calendar, One Page|Internet Email', | 
| 319 |  |  |  |  |  |  | '2GUT' => 'Advertising|Marketing Materials|Promotional Calendar, One Page|Recordable Media', | 
| 320 |  |  |  |  |  |  | '2EWE' => 'Advertising|Marketing Materials|Promotional Calendar, One Page|All Electronic Distribution Formats', | 
| 321 |  |  |  |  |  |  | '2YAM' => 'Advertising|Marketing Materials|Promotional Calendar, Multi-Page|Printed', | 
| 322 |  |  |  |  |  |  | '2ESS' => 'Advertising|Marketing Materials|Promotional Calendar, Multi-Page|Internet Downloadable File', | 
| 323 |  |  |  |  |  |  | '2ETA' => 'Advertising|Marketing Materials|Promotional Calendar, Multi-Page|Internet Email', | 
| 324 |  |  |  |  |  |  | '2HAD' => 'Advertising|Marketing Materials|Promotional Calendar, Multi-Page|Recordable Media', | 
| 325 |  |  |  |  |  |  | '2FET' => 'Advertising|Marketing Materials|Promotional E-card|Internet Email', | 
| 326 |  |  |  |  |  |  | '2FEU' => 'Advertising|Marketing Materials|Promotional E-card|All Internet Distribution Formats', | 
| 327 |  |  |  |  |  |  | '2FEH' => 'Advertising|Marketing Materials|Promotional E-card|Recordable Media', | 
| 328 |  |  |  |  |  |  | '2FEN' => 'Advertising|Marketing Materials|Promotional E-card|Internet Downloadable File', | 
| 329 |  |  |  |  |  |  | '2MMX' => 'Advertising|Marketing Materials|Promotional Envelope|Printed', | 
| 330 |  |  |  |  |  |  | '2NUT' => 'Advertising|Marketing Materials|Promotional Postcard|Printed', | 
| 331 |  |  |  |  |  |  | '2KAF' => 'Advertising|Marketing Materials|Public Relations, Press Kit|Printed', | 
| 332 |  |  |  |  |  |  | '2JUT' => 'Advertising|Marketing Materials|Public Relations, Press Kit|Internet Website', | 
| 333 |  |  |  |  |  |  | '2JUN' => 'Advertising|Marketing Materials|Public Relations, Press Kit|Internet Downloadable File', | 
| 334 |  |  |  |  |  |  | '2JUS' => 'Advertising|Marketing Materials|Public Relations, Press Kit|Internet Email', | 
| 335 |  |  |  |  |  |  | '2JOW' => 'Advertising|Marketing Materials|Public Relations, Press Kit|All Internet Distribution Formats', | 
| 336 |  |  |  |  |  |  | '2JOB' => 'Advertising|Marketing Materials|Public Relations, Press Kit|Recordable Media', | 
| 337 |  |  |  |  |  |  | '2JOE' => 'Advertising|Marketing Materials|Public Relations, Press Kit|All Electronic Distribution Formats', | 
| 338 |  |  |  |  |  |  | '2KAB' => 'Advertising|Marketing Materials|Public Relations, Press Kit|Television Broadcast', | 
| 339 |  |  |  |  |  |  | '2KEX' => 'Advertising|Marketing Materials|Public Relations, Press Release|Printed', | 
| 340 |  |  |  |  |  |  | '2KEA' => 'Advertising|Marketing Materials|Public Relations, Press Release|Internet Website', | 
| 341 |  |  |  |  |  |  | '2KAT' => 'Advertising|Marketing Materials|Public Relations, Press Release|Internet Downloadable File', | 
| 342 |  |  |  |  |  |  | '2KAY' => 'Advertising|Marketing Materials|Public Relations, Press Release|Internet Email', | 
| 343 |  |  |  |  |  |  | '2KAS' => 'Advertising|Marketing Materials|Public Relations, Press Release|Recordable Media', | 
| 344 |  |  |  |  |  |  | '2KID' => 'Advertising|Marketing Materials|Public Relations, Press Release|All Electronic Distribution Formats', | 
| 345 |  |  |  |  |  |  | '2KEF' => 'Advertising|Marketing Materials|Public Relations, Press Release|Television Broadcast', | 
| 346 |  |  |  |  |  |  | '2JIB' => 'Advertising|Marketing Materials|Public Relations, All Types|Printed', | 
| 347 |  |  |  |  |  |  | '2MMY' => 'Advertising|Marketing Materials|Sales Kit|Printed', | 
| 348 |  |  |  |  |  |  | '2MMZ' => 'Advertising|Marketing Materials|Self Mailer|Printed', | 
| 349 |  |  |  |  |  |  | '2JAM' => 'Advertising|Marketing Materials|All Marketing Material Types|Printed', | 
| 350 |  |  |  |  |  |  | '2HAM' => 'Advertising|Marketing Materials|All Marketing Material Types|Internet Downloadable File', | 
| 351 |  |  |  |  |  |  | '2DYE' => 'Advertising|Marketing Materials|All Marketing Material Types|Internet Email', | 
| 352 |  |  |  |  |  |  | '2DUO' => 'Advertising|Marketing Materials|All Marketing Material Types|Recordable Media', | 
| 353 |  |  |  |  |  |  | '2BEG' => 'Advertising|Book|Retail Book, Directory|Printed', | 
| 354 |  |  |  |  |  |  | '2EAC' => 'Advertising|Book|Retail Book, Directory|E-Book in Internet Website', | 
| 355 |  |  |  |  |  |  | '2EAD' => 'Advertising|Book|Retail Book, Directory|E-Book in Internet Downloadable File', | 
| 356 |  |  |  |  |  |  | '2EAE' => 'Advertising|Book|Retail Book, Directory|All E-Book Internet Distribution Formats', | 
| 357 |  |  |  |  |  |  | '2EAF' => 'Advertising|Book|Retail Book, Directory|E-Book on Recordable Media', | 
| 358 |  |  |  |  |  |  | '2EAG' => 'Advertising|Book|Retail Book, Directory|All E-Book Distribution Formats', | 
| 359 |  |  |  |  |  |  | '2ELM' => 'Advertising|Book|Textbook, All Types|Printed', | 
| 360 |  |  |  |  |  |  | '2EAH' => 'Advertising|Book|Textbook, All Types|E-Book in Internet Website', | 
| 361 |  |  |  |  |  |  | '2EAJ' => 'Advertising|Book|Textbook, All Types|E-Book in Internet Downloadable File', | 
| 362 |  |  |  |  |  |  | '2EAK' => 'Advertising|Book|Textbook, All Types|All E-Book Internet Distribution Formats', | 
| 363 |  |  |  |  |  |  | '2EAL' => 'Advertising|Book|Textbook, All Types|E-Book on Recordable Media', | 
| 364 |  |  |  |  |  |  | '2EAM' => 'Advertising|Book|Textbook, All Types|All E-Book Distribution Formats', | 
| 365 |  |  |  |  |  |  | '2HOG' => 'Advertising|Book|All Book Types|Printed', | 
| 366 |  |  |  |  |  |  | '2EAN' => 'Advertising|Book|All Book Types|All E-Book Internet Distribution Formats', | 
| 367 |  |  |  |  |  |  | '2EAP' => 'Advertising|Book|All Book Types|All E-Book Distribution Formats', | 
| 368 |  |  |  |  |  |  | '2HEM' => 'Advertising|Display|Billboard, Bulletin|Printed', | 
| 369 |  |  |  |  |  |  | '2BUR' => 'Advertising|Display|Billboard, Bulletin|Electronic Display', | 
| 370 |  |  |  |  |  |  | '2DAG' => 'Advertising|Display|Billboard, Spectacular|Printed', | 
| 371 |  |  |  |  |  |  | '2DAD' => 'Advertising|Display|Billboard, Spectacular|Electronic Display', | 
| 372 |  |  |  |  |  |  | '2DAK' => 'Advertising|Display|Billboard, Wallscape|Printed', | 
| 373 |  |  |  |  |  |  | '2DAH' => 'Advertising|Display|Billboard, Wallscape|Electronic Display', | 
| 374 |  |  |  |  |  |  | '2DAB' => 'Advertising|Display|Billboard, Rotating Billboard|Printed', | 
| 375 |  |  |  |  |  |  | '2BLD' => 'Advertising|Display|Billboard, Building Wrap|Printed', | 
| 376 |  |  |  |  |  |  | '2BYS' => 'Advertising|Display|Billboard, Mobile Billboard|Printed', | 
| 377 |  |  |  |  |  |  | '2BYE' => 'Advertising|Display|Billboard, Mobile Billboard|Electronic Display', | 
| 378 |  |  |  |  |  |  | '2BIL' => 'Advertising|Display|Billboard, All Types|Printed', | 
| 379 |  |  |  |  |  |  | '2BUD' => 'Advertising|Display|Billboard, All Types|Electronic Display', | 
| 380 |  |  |  |  |  |  | '2BRR' => 'Advertising|Display|Banner, Backdrop|Printed', | 
| 381 |  |  |  |  |  |  | '2BUB' => 'Advertising|Display|Banner, Background|Printed', | 
| 382 |  |  |  |  |  |  | '2BRA' => 'Advertising|Display|Banner, Airborne Display|Printed', | 
| 383 |  |  |  |  |  |  | '2BRO' => 'Advertising|Display|Banner, All Types|Printed', | 
| 384 |  |  |  |  |  |  | '2BAN' => 'Advertising|Display|Banner, All Types|Electronic Display', | 
| 385 |  |  |  |  |  |  | '2CAR' => 'Advertising|Display|Shopping Cart|Printed', | 
| 386 |  |  |  |  |  |  | '2CRT' => 'Advertising|Display|Shopping Cart|Electronic Display', | 
| 387 |  |  |  |  |  |  | '2FAD' => 'Advertising|Display|Poster, Movie Poster|Printed', | 
| 388 |  |  |  |  |  |  | '2HON' => 'Advertising|Display|Poster, Movie Poster|Electronic Display', | 
| 389 |  |  |  |  |  |  | '2DIB' => 'Advertising|Display|Poster, Door Side Poster|Printed', | 
| 390 |  |  |  |  |  |  | '2DEY' => 'Advertising|Display|Poster, Door Side Poster|Electronic Display', | 
| 391 |  |  |  |  |  |  | '2DEV' => 'Advertising|Display|Poster, Corporate Poster|Printed', | 
| 392 |  |  |  |  |  |  | '2DEN' => 'Advertising|Display|Poster, Corporate Poster|Electronic Display', | 
| 393 |  |  |  |  |  |  | '2ELE' => 'Advertising|Display|Poster, Elevator Advertising|Printed', | 
| 394 |  |  |  |  |  |  | '2DID' => 'Advertising|Display|Poster, Elevator Advertising|Electronic Display', | 
| 395 |  |  |  |  |  |  | '2DRY' => 'Advertising|Display|Poster, Restroom Poster|Printed', | 
| 396 |  |  |  |  |  |  | '2WET' => 'Advertising|Display|Poster, Restroom Poster|Electronic Display', | 
| 397 |  |  |  |  |  |  | '2DEL' => 'Advertising|Display|Poster, Backlit Print|Printed', | 
| 398 |  |  |  |  |  |  | '2DEX' => 'Advertising|Display|Poster, Display Chrome|Printed', | 
| 399 |  |  |  |  |  |  | '2FAT' => 'Advertising|Display|Poster, All Types|Printed', | 
| 400 |  |  |  |  |  |  | '2DAW' => 'Advertising|Display|Poster, All Types|Electronic Display', | 
| 401 |  |  |  |  |  |  | '2MOB' => 'Advertising|Display|Store Display, In-Store Poster|Printed', | 
| 402 |  |  |  |  |  |  | '2DIT' => 'Advertising|Display|Store Display, In-Store Poster|Electronic Display', | 
| 403 |  |  |  |  |  |  | '2FOG' => 'Advertising|Display|Store Display, All Display Types|Printed', | 
| 404 |  |  |  |  |  |  | '2DIN' => 'Advertising|Display|Store Display, All Display Types|Electronic Display', | 
| 405 |  |  |  |  |  |  | '2HOT' => 'Advertising|Display|Terminal Advertising, Airport Display|Printed', | 
| 406 |  |  |  |  |  |  | '2JOU' => 'Advertising|Display|Terminal Advertising, Airport Display|Electronic Display', | 
| 407 |  |  |  |  |  |  | '2DOM' => 'Advertising|Display|Terminal Advertising, Bus Stop Advertising|Printed', | 
| 408 |  |  |  |  |  |  | '2DOL' => 'Advertising|Display|Terminal Advertising, Bus Stop Advertising|Electronic Display', | 
| 409 |  |  |  |  |  |  | '2DOR' => 'Advertising|Display|Terminal Advertising, Ferry Terminal Advertising|Printed', | 
| 410 |  |  |  |  |  |  | '2DON' => 'Advertising|Display|Terminal Advertising, Ferry Terminal Advertising|Electronic Display', | 
| 411 |  |  |  |  |  |  | '2TAN' => 'Advertising|Display|Terminal Advertising, Shelter Advertising|Printed', | 
| 412 |  |  |  |  |  |  | '2DOS' => 'Advertising|Display|Terminal Advertising, Shelter Advertising|Electronic Display', | 
| 413 |  |  |  |  |  |  | '2DUB' => 'Advertising|Display|Terminal Advertising, Station Poster|Printed', | 
| 414 |  |  |  |  |  |  | '2DOW' => 'Advertising|Display|Terminal Advertising, Station Poster|Electronic Display', | 
| 415 |  |  |  |  |  |  | '2DUG' => 'Advertising|Display|Terminal Advertising, Subway Terminal Advertising|Printed', | 
| 416 |  |  |  |  |  |  | '2DUE' => 'Advertising|Display|Terminal Advertising, Subway Terminal Advertising|Electronic Display', | 
| 417 |  |  |  |  |  |  | '2DUN' => 'Advertising|Display|Terminal Advertising, Train Terminal Advertising|Printed', | 
| 418 |  |  |  |  |  |  | '2DUI' => 'Advertising|Display|Terminal Advertising, Train Terminal Advertising|Electronic Display', | 
| 419 |  |  |  |  |  |  | '2JOY' => 'Advertising|Display|Terminal Advertising, All Types|Printed', | 
| 420 |  |  |  |  |  |  | '2DOE' => 'Advertising|Display|Terminal Advertising, All Types|Electronic Display', | 
| 421 |  |  |  |  |  |  | '2TAX' => 'Advertising|Display|Transit Advertising, Taxi Advertising|Printed', | 
| 422 |  |  |  |  |  |  | '2BUS' => 'Advertising|Display|Transit Advertising, Bus Panel|Printed', | 
| 423 |  |  |  |  |  |  | '2TRC' => 'Advertising|Display|Transit Advertising, Bus Panel|Electronic Display', | 
| 424 |  |  |  |  |  |  | '2TRE' => 'Advertising|Display|Transit Advertising, Bus Poster|Printed', | 
| 425 |  |  |  |  |  |  | '2BPE' => 'Advertising|Display|Transit Advertising, Bus Poster|Electronic Display', | 
| 426 |  |  |  |  |  |  | '2TRG' => 'Advertising|Display|Transit Advertising, Bus Rear Display|Printed', | 
| 427 |  |  |  |  |  |  | '2TRF' => 'Advertising|Display|Transit Advertising, Bus Rear Display|Electronic Display', | 
| 428 |  |  |  |  |  |  | '2TRN' => 'Advertising|Display|Transit Advertising, Bus Wrap|Printed', | 
| 429 |  |  |  |  |  |  | '2TRM' => 'Advertising|Display|Transit Advertising, Bus Wrap|Electronic Display', | 
| 430 |  |  |  |  |  |  | '2TRJ' => 'Advertising|Display|Transit Advertising, Subway Advertising|Printed', | 
| 431 |  |  |  |  |  |  | '2TRI' => 'Advertising|Display|Transit Advertising, Subway Advertising|Electronic Display', | 
| 432 |  |  |  |  |  |  | '2TRL' => 'Advertising|Display|Transit Advertising, Train Advertising|Printed', | 
| 433 |  |  |  |  |  |  | '2TRK' => 'Advertising|Display|Transit Advertising, Train Advertising|Electronic Display', | 
| 434 |  |  |  |  |  |  | '2TRQ' => 'Advertising|Display|Transit Advertising, Commercial Vehicles|Printed', | 
| 435 |  |  |  |  |  |  | '2TRR' => 'Advertising|Display|Transit Advertising, Commercial Vehicles|Electronic Display', | 
| 436 |  |  |  |  |  |  | '2FER' => 'Advertising|Display|Transit Advertising, Ferry Advertising|Printed', | 
| 437 |  |  |  |  |  |  | '2TRH' => 'Advertising|Display|Transit Advertising, Ferry Advertising|Electronic Display', | 
| 438 |  |  |  |  |  |  | '2TRA' => 'Advertising|Display|Transit Advertising, All Types|Printed', | 
| 439 |  |  |  |  |  |  | '2TRB' => 'Advertising|Display|Transit Advertising, All Types|Electronic Display', | 
| 440 |  |  |  |  |  |  | '2DAM' => 'Advertising|Display|Event, Stadium Advertising|Printed', | 
| 441 |  |  |  |  |  |  | '2DAL' => 'Advertising|Display|Event, Stadium Advertising|Electronic Display', | 
| 442 |  |  |  |  |  |  | '2DIS' => 'Advertising|Display|Event, Trade Show Display|Printed', | 
| 443 |  |  |  |  |  |  | '2DAP' => 'Advertising|Display|Event, Trade Show Display|Electronic Display', | 
| 444 |  |  |  |  |  |  | '2BIG' => 'Advertising|Display|All Display Types|Printed', | 
| 445 |  |  |  |  |  |  | '2BOG' => 'Advertising|Display|All Display Types|Electronic Display', | 
| 446 |  |  |  |  |  |  | '2BOY' => 'Advertising|Art|Art Display, Display Print|Printed', | 
| 447 |  |  |  |  |  |  | '2ART' => 'Advertising|Art|Art Display, All Art Types|Printed', | 
| 448 |  |  |  |  |  |  | '2BEL' => 'Advertising|Art|Art Display, All Art Types|Internet Website', | 
| 449 |  |  |  |  |  |  | '2BEY' => 'Advertising|Art|Art Display, All Art Types|All Internet Distribution Formats', | 
| 450 |  |  |  |  |  |  | '2BOS' => 'Advertising|Art|Art Display, All Art Types|Electronic Display', | 
| 451 |  |  |  |  |  |  | '2BIS' => 'Advertising|Art|Art Display, All Art Types|All Electronic Distribution Formats', | 
| 452 |  |  |  |  |  |  | '2ADH' => 'Advertising|Point of Purchase|Adhesive Tag|Printed', | 
| 453 |  |  |  |  |  |  | '2BOT' => 'Advertising|Point of Purchase|Bottlenecker|Printed', | 
| 454 |  |  |  |  |  |  | '2CAS' => 'Advertising|Point of Purchase|Case Card|Printed', | 
| 455 |  |  |  |  |  |  | '2COU' => 'Advertising|Point of Purchase|Counter Card|Printed', | 
| 456 |  |  |  |  |  |  | '2BUY' => 'Advertising|Point of Purchase|Floor Graphic|Printed', | 
| 457 |  |  |  |  |  |  | '2TAG' => 'Advertising|Point of Purchase|Hang Tag|Printed', | 
| 458 |  |  |  |  |  |  | '2GYM' => 'Advertising|Point of Purchase|Kiosk, Interactive Kiosk|Printed', | 
| 459 |  |  |  |  |  |  | '2GUN' => 'Advertising|Point of Purchase|Kiosk, Interactive Kiosk|Electronic Display', | 
| 460 |  |  |  |  |  |  | '2JUG' => 'Advertising|Point of Purchase|Kiosk, Telephone Kiosk|Printed', | 
| 461 |  |  |  |  |  |  | '2FIN' => 'Advertising|Point of Purchase|Kiosk, All Types|Printed', | 
| 462 |  |  |  |  |  |  | '2KIO' => 'Advertising|Point of Purchase|Kiosk, All Types|Electronic Display', | 
| 463 |  |  |  |  |  |  | '2MEN' => 'Advertising|Point of Purchase|Menu|Printed', | 
| 464 |  |  |  |  |  |  | '2TAL' => 'Advertising|Point of Purchase|Shelf Talker|Printed', | 
| 465 |  |  |  |  |  |  | '2TIN' => 'Advertising|Point of Purchase|Slip Case|Printed', | 
| 466 |  |  |  |  |  |  | '2WAX' => 'Advertising|Point of Purchase|Table Tent|Printed', | 
| 467 |  |  |  |  |  |  | '2BIN' => 'Advertising|Point of Purchase|All Point of Purchase Types|Printed', | 
| 468 |  |  |  |  |  |  | '2BIB' => 'Advertising|Point of Purchase|All Point of Purchase Types|Electronic Display', | 
| 469 |  |  |  |  |  |  | '2BAR' => 'Advertising|Point of Purchase|All Point of Purchase Types|All Electronic Distribution Formats', | 
| 470 |  |  |  |  |  |  | '2MAR' => 'Advertising|Website|Web Page, Design Element|Internet Website', | 
| 471 |  |  |  |  |  |  | '2MAX' => 'Advertising|Website|Web Page, Design Element|All Internet Distribution Formats', | 
| 472 |  |  |  |  |  |  | '2MAS' => 'Advertising|Website|Web Page, Design Element|Recordable Media', | 
| 473 |  |  |  |  |  |  | '2MAW' => 'Advertising|Website|Web Page, Design Element|All Electronic Distribution Formats', | 
| 474 |  |  |  |  |  |  | '2MED' => 'Advertising|Website|Web Page, Web Banner Ad|Internet Website', | 
| 475 |  |  |  |  |  |  | '2MEW' => 'Advertising|Website|Web Page, Web Banner Ad|All Internet Distribution Formats', | 
| 476 |  |  |  |  |  |  | '2MEG' => 'Advertising|Website|Web Page, Web Banner Ad|Recordable Media', | 
| 477 |  |  |  |  |  |  | '2MEM' => 'Advertising|Website|Web Page, Web Banner Ad|All Electronic Distribution Formats', | 
| 478 |  |  |  |  |  |  | '2JWL' => 'Advertising|Website|Web Page, Web Interstitial Ad|Internet Website', | 
| 479 |  |  |  |  |  |  | '2MIG' => 'Advertising|Website|Web Page, Web Interstitial Ad|All Internet Distribution Formats', | 
| 480 |  |  |  |  |  |  | '2MIB' => 'Advertising|Website|Web Page, Web Interstitial Ad|Recordable Media', | 
| 481 |  |  |  |  |  |  | '2MID' => 'Advertising|Website|Web Page, Web Interstitial Ad|All Electronic Distribution Formats', | 
| 482 |  |  |  |  |  |  | '2WEB' => 'Advertising|Website|Web Page, All Types|Internet Website', | 
| 483 |  |  |  |  |  |  | '2KUE' => 'Advertising|Website|Web Page, All Types|All Internet Distribution Formats', | 
| 484 |  |  |  |  |  |  | '2MAC' => 'Advertising|Website|Web Page, All Types|Recordable Media', | 
| 485 |  |  |  |  |  |  | '2MAE' => 'Advertising|Website|Web Page, All Types|All Electronic Distribution Formats', | 
| 486 |  |  |  |  |  |  | '2MIL' => 'Advertising|Website|Webcast, All Types|Internet Website', | 
| 487 |  |  |  |  |  |  | '2EMA' => 'Advertising|Email|All Email Types|Internet Email', | 
| 488 |  |  |  |  |  |  | '2ZUS' => 'Advertising|Mobile|All Mobile Types|Mobile', | 
| 489 |  |  |  |  |  |  | '2FUR' => 'Advertising|Live Presentation|Sales Presentation|Projected Display', | 
| 490 |  |  |  |  |  |  | '2EYE' => 'Advertising|Live Presentation|Panel Presentation|Projected Display', | 
| 491 |  |  |  |  |  |  | '2TOE' => 'Advertising|Live Presentation|Trade Show Presentation|Projected Display', | 
| 492 |  |  |  |  |  |  | '2JAW' => 'Advertising|Live Presentation|Stage Performance|Projected Display', | 
| 493 |  |  |  |  |  |  | '2EAR' => 'Advertising|Live Presentation|All Live Presentation Types|All Electronic Distribution Formats', | 
| 494 |  |  |  |  |  |  | '2FID' => 'Advertising|Merchandise|Apparel, T-Shirts|Printed or Woven', | 
| 495 |  |  |  |  |  |  | '2FEZ' => 'Advertising|Merchandise|Apparel, General Apparel|Printed or Woven', | 
| 496 |  |  |  |  |  |  | '2FIE' => 'Advertising|Merchandise|Folder|Printed', | 
| 497 |  |  |  |  |  |  | '2AAY' => 'Advertising|All Media Types|Promotional Reproduction of Licensed Usage in Context|All Distribution Formats', | 
| 498 |  |  |  |  |  |  | '2AAA' => 'Advertising|All Media Types|All Formats|All Distribution Formats', | 
| 499 |  |  |  |  |  |  | '2GEM' => 'Editorial|Periodicals|Magazine, Consumer|Printed', | 
| 500 |  |  |  |  |  |  | '2GDW' => 'Editorial|Periodicals|Magazine, Consumer|Internet Website', | 
| 501 |  |  |  |  |  |  | '2GDY' => 'Editorial|Periodicals|Magazine, Consumer|Internet Downloadable File', | 
| 502 |  |  |  |  |  |  | '2KIN' => 'Editorial|Periodicals|Magazine, Consumer|Internet Email', | 
| 503 |  |  |  |  |  |  | '2GEA' => 'Editorial|Periodicals|Magazine, Consumer|All Internet Distribution Formats', | 
| 504 |  |  |  |  |  |  | '2GDV' => 'Editorial|Periodicals|Magazine, Consumer|Recordable Media', | 
| 505 |  |  |  |  |  |  | '2GDZ' => 'Editorial|Periodicals|Magazine, Consumer|All Electronic Distribution Formats', | 
| 506 |  |  |  |  |  |  | '2MOM' => 'Editorial|Periodicals|Magazine, Trade|Printed', | 
| 507 |  |  |  |  |  |  | '2MOW' => 'Editorial|Periodicals|Magazine, Trade|Internet Website', | 
| 508 |  |  |  |  |  |  | '2MUT' => 'Editorial|Periodicals|Magazine, Trade|Internet Downloadable File', | 
| 509 |  |  |  |  |  |  | '2NAB' => 'Editorial|Periodicals|Magazine, Trade|Internet Email', | 
| 510 |  |  |  |  |  |  | '2NAG' => 'Editorial|Periodicals|Magazine, Trade|All Internet Distribution Formats', | 
| 511 |  |  |  |  |  |  | '2GFD' => 'Editorial|Periodicals|Magazine, Trade|Recordable Media', | 
| 512 |  |  |  |  |  |  | '2NOB' => 'Editorial|Periodicals|Magazine, Trade|All Electronic Distribution Formats', | 
| 513 |  |  |  |  |  |  | '2MAY' => 'Editorial|Periodicals|Magazine, Education|Printed', | 
| 514 |  |  |  |  |  |  | '2GEP' => 'Editorial|Periodicals|Magazine, Education|Internet Website', | 
| 515 |  |  |  |  |  |  | '2GEQ' => 'Editorial|Periodicals|Magazine, Education|Internet Downloadable File', | 
| 516 |  |  |  |  |  |  | '2NOW' => 'Editorial|Periodicals|Magazine, Education|Internet Email', | 
| 517 |  |  |  |  |  |  | '2GES' => 'Editorial|Periodicals|Magazine, Education|All Internet Distribution Formats', | 
| 518 |  |  |  |  |  |  | '2GEK' => 'Editorial|Periodicals|Magazine, Education|Recordable Media', | 
| 519 |  |  |  |  |  |  | '2GER' => 'Editorial|Periodicals|Magazine, Education|All Electronic Distribution Formats', | 
| 520 |  |  |  |  |  |  | '2MOP' => 'Editorial|Periodicals|Magazine, Custom Published|Printed', | 
| 521 |  |  |  |  |  |  | '2GEF' => 'Editorial|Periodicals|Magazine, Custom Published|Internet Website', | 
| 522 |  |  |  |  |  |  | '2GEG' => 'Editorial|Periodicals|Magazine, Custom Published|Internet Downloadable File', | 
| 523 |  |  |  |  |  |  | '2NUN' => 'Editorial|Periodicals|Magazine, Custom Published|Internet Email', | 
| 524 |  |  |  |  |  |  | '2GEI' => 'Editorial|Periodicals|Magazine, Custom Published|All Internet Distribution Formats', | 
| 525 |  |  |  |  |  |  | '2GEC' => 'Editorial|Periodicals|Magazine, Custom Published|Recordable Media', | 
| 526 |  |  |  |  |  |  | '2GEH' => 'Editorial|Periodicals|Magazine, Custom Published|All Electronic Distribution Formats', | 
| 527 |  |  |  |  |  |  | '2MEL' => 'Editorial|Periodicals|Magazine, Partworks|Printed', | 
| 528 |  |  |  |  |  |  | '2GEV' => 'Editorial|Periodicals|Magazine, Partworks|Internet Website', | 
| 529 |  |  |  |  |  |  | '2GEW' => 'Editorial|Periodicals|Magazine, Partworks|Internet Downloadable File', | 
| 530 |  |  |  |  |  |  | '2TAB' => 'Editorial|Periodicals|Magazine, Partworks|Internet Email', | 
| 531 |  |  |  |  |  |  | '2GFB' => 'Editorial|Periodicals|Magazine, Partworks|All Internet Distribution Formats', | 
| 532 |  |  |  |  |  |  | '2GEZ' => 'Editorial|Periodicals|Magazine, Partworks|Recordable Media', | 
| 533 |  |  |  |  |  |  | '2GFA' => 'Editorial|Periodicals|Magazine, Partworks|All Electronic Distribution Formats', | 
| 534 |  |  |  |  |  |  | '2WIG' => 'Editorial|Periodicals|Scholarly Journal|Printed', | 
| 535 |  |  |  |  |  |  | '2GGF' => 'Editorial|Periodicals|Scholarly Journal|Internet Website', | 
| 536 |  |  |  |  |  |  | '2GGG' => 'Editorial|Periodicals|Scholarly Journal|Internet Downloadable File', | 
| 537 |  |  |  |  |  |  | '2TAD' => 'Editorial|Periodicals|Scholarly Journal|Internet Email', | 
| 538 |  |  |  |  |  |  | '2GGI' => 'Editorial|Periodicals|Scholarly Journal|All Internet Distribution Formats', | 
| 539 |  |  |  |  |  |  | '2GGD' => 'Editorial|Periodicals|Scholarly Journal|Recordable Media', | 
| 540 |  |  |  |  |  |  | '2GGH' => 'Editorial|Periodicals|Scholarly Journal|All Electronic Distribution Formats', | 
| 541 |  |  |  |  |  |  | '2MAG' => 'Editorial|Periodicals|Magazine, All Types|Printed', | 
| 542 |  |  |  |  |  |  | '2GDP' => 'Editorial|Periodicals|Magazine, All Types|Internet Website', | 
| 543 |  |  |  |  |  |  | '2GDM' => 'Editorial|Periodicals|Magazine, All Types|Internet Downloadable File', | 
| 544 |  |  |  |  |  |  | '2GDQ' => 'Editorial|Periodicals|Magazine, All Types|Internet Email', | 
| 545 |  |  |  |  |  |  | '2GDT' => 'Editorial|Periodicals|Magazine, All Types|All Internet Distribution Formats', | 
| 546 |  |  |  |  |  |  | '2GDR' => 'Editorial|Periodicals|Magazine, All Types|Recordable Media', | 
| 547 |  |  |  |  |  |  | '2GDS' => 'Editorial|Periodicals|Magazine, All Types|All Electronic Distribution Formats', | 
| 548 |  |  |  |  |  |  | '2JET' => 'Editorial|Periodicals|Newspaper, All Types|Printed', | 
| 549 |  |  |  |  |  |  | '2GFN' => 'Editorial|Periodicals|Newspaper, All Types|Internet Website', | 
| 550 |  |  |  |  |  |  | '2GFP' => 'Editorial|Periodicals|Newspaper, All Types|Internet Downloadable File', | 
| 551 |  |  |  |  |  |  | '2TAJ' => 'Editorial|Periodicals|Newspaper, All Types|Internet Email', | 
| 552 |  |  |  |  |  |  | '2GFR' => 'Editorial|Periodicals|Newspaper, All Types|All Internet Distribution Formats', | 
| 553 |  |  |  |  |  |  | '2GFM' => 'Editorial|Periodicals|Newspaper, All Types|Recordable Media', | 
| 554 |  |  |  |  |  |  | '2GFQ' => 'Editorial|Periodicals|Newspaper, All Types|All Electronic Distribution Formats', | 
| 555 |  |  |  |  |  |  | '2TUB' => 'Editorial|Periodicals|Newspaper, Weekly Supplement|Printed', | 
| 556 |  |  |  |  |  |  | '2GFW' => 'Editorial|Periodicals|Newspaper, Weekly Supplement|Internet Website', | 
| 557 |  |  |  |  |  |  | '2GFY' => 'Editorial|Periodicals|Newspaper, Weekly Supplement|Internet Downloadable File', | 
| 558 |  |  |  |  |  |  | '2TAO' => 'Editorial|Periodicals|Newspaper, Weekly Supplement|Internet Email', | 
| 559 |  |  |  |  |  |  | '2GFV' => 'Editorial|Periodicals|Newspaper, Weekly Supplement|All Internet Distribution Formats', | 
| 560 |  |  |  |  |  |  | '2GFS' => 'Editorial|Periodicals|Newspaper, Weekly Supplement|Recordable Media', | 
| 561 |  |  |  |  |  |  | '2GFU' => 'Editorial|Periodicals|Newspaper, Weekly Supplement|All Electronic Distribution Formats', | 
| 562 |  |  |  |  |  |  | '2FAN' => 'Editorial|Periodicals|Newspaper, Tabloid|Printed', | 
| 563 |  |  |  |  |  |  | '2TEX' => 'Editorial|Periodicals|Newspaper, Tabloid|Internet Website', | 
| 564 |  |  |  |  |  |  | '2GGA' => 'Editorial|Periodicals|Newspaper, Tabloid|Internet Downloadable File', | 
| 565 |  |  |  |  |  |  | '2TIP' => 'Editorial|Periodicals|Newspaper, Tabloid|Internet Email', | 
| 566 |  |  |  |  |  |  | '2TON' => 'Editorial|Periodicals|Newspaper, Tabloid|All Internet Distribution Formats', | 
| 567 |  |  |  |  |  |  | '2TIE' => 'Editorial|Periodicals|Newspaper, Tabloid|Recordable Media', | 
| 568 |  |  |  |  |  |  | '2TOT' => 'Editorial|Periodicals|Newspaper, Tabloid|All Electronic Distribution Formats', | 
| 569 |  |  |  |  |  |  | '2TOM' => 'Editorial|Periodicals|Newsletter|Printed', | 
| 570 |  |  |  |  |  |  | '2GFH' => 'Editorial|Periodicals|Newsletter|Internet Website', | 
| 571 |  |  |  |  |  |  | '2GFI' => 'Editorial|Periodicals|Newsletter|Internet Downloadable File', | 
| 572 |  |  |  |  |  |  | '2NEL' => 'Editorial|Periodicals|Newsletter|Internet Email', | 
| 573 |  |  |  |  |  |  | '2GFK' => 'Editorial|Periodicals|Newsletter|All Internet Distribution Formats', | 
| 574 |  |  |  |  |  |  | '2GFG' => 'Editorial|Periodicals|Newsletter|Recordable Media', | 
| 575 |  |  |  |  |  |  | '2GFJ' => 'Editorial|Periodicals|Newsletter|All Electronic Distribution Formats', | 
| 576 |  |  |  |  |  |  | '2BUG' => 'Editorial|Book|Retail Book, Children\'s Book|Printed', | 
| 577 |  |  |  |  |  |  | '2EPC' => 'Editorial|Book|Retail Book, Children\'s Book|E-Book in Internet Website', | 
| 578 |  |  |  |  |  |  | '2EBE' => 'Editorial|Book|Retail Book, Children\'s Book|E-Book in Internet Downloadable File', | 
| 579 |  |  |  |  |  |  | '2EGB' => 'Editorial|Book|Retail Book, Children\'s Book|E-Book in Internet Email', | 
| 580 |  |  |  |  |  |  | '2EKB' => 'Editorial|Book|Retail Book, Children\'s Book|All E-Book Internet Distribution Formats', | 
| 581 |  |  |  |  |  |  | '2ERB' => 'Editorial|Book|Retail Book, Children\'s Book|E-Book on Recordable Media', | 
| 582 |  |  |  |  |  |  | '2EGC' => 'Editorial|Book|Retail Book, Children\'s Book|All E-Book Distribution Formats', | 
| 583 |  |  |  |  |  |  | '2TAE' => 'Editorial|Book|Retail Book, Coffee Table Book|Printed', | 
| 584 |  |  |  |  |  |  | '2TAV' => 'Editorial|Book|Retail Book, Concept Book|Printed', | 
| 585 |  |  |  |  |  |  | '2EPD' => 'Editorial|Book|Retail Book, Concept Book|E-Book in Internet Website', | 
| 586 |  |  |  |  |  |  | '2EBF' => 'Editorial|Book|Retail Book, Concept Book|E-Book in Internet Downloadable File', | 
| 587 |  |  |  |  |  |  | '2EGD' => 'Editorial|Book|Retail Book, Concept Book|E-Book in Internet Email', | 
| 588 |  |  |  |  |  |  | '2EKC' => 'Editorial|Book|Retail Book, Concept Book|All E-Book Internet Distribution Formats', | 
| 589 |  |  |  |  |  |  | '2ERC' => 'Editorial|Book|Retail Book, Concept Book|E-Book on Recordable Media', | 
| 590 |  |  |  |  |  |  | '2EGE' => 'Editorial|Book|Retail Book, Concept Book|All E-Book Distribution Formats', | 
| 591 |  |  |  |  |  |  | '2DIR' => 'Editorial|Book|Retail Book, Directory|Printed', | 
| 592 |  |  |  |  |  |  | '2EPE' => 'Editorial|Book|Retail Book, Directory|E-Book in Internet Website', | 
| 593 |  |  |  |  |  |  | '2EBG' => 'Editorial|Book|Retail Book, Directory|E-Book in Internet Downloadable File', | 
| 594 |  |  |  |  |  |  | '2ERD' => 'Editorial|Book|Retail Book, Directory|E-Book on Recordable Media', | 
| 595 |  |  |  |  |  |  | '2YEA' => 'Editorial|Book|Retail Book, Directory|All Electronic Distribution Formats', | 
| 596 |  |  |  |  |  |  | '2EAB' => 'Editorial|Book|Retail Book, Directory|All E-Book Distribution Formats', | 
| 597 |  |  |  |  |  |  | '2HAN' => 'Editorial|Book|Retail Book, Handbook|Printed', | 
| 598 |  |  |  |  |  |  | '2EPF' => 'Editorial|Book|Retail Book, Handbook|E-Book in Internet Website', | 
| 599 |  |  |  |  |  |  | '2EBH' => 'Editorial|Book|Retail Book, Handbook|E-Book in Internet Downloadable File', | 
| 600 |  |  |  |  |  |  | '2EGH' => 'Editorial|Book|Retail Book, Handbook|E-Book in Internet Email', | 
| 601 |  |  |  |  |  |  | '2EKD' => 'Editorial|Book|Retail Book, Handbook|All E-Book Internet Distribution Formats', | 
| 602 |  |  |  |  |  |  | '2ERF' => 'Editorial|Book|Retail Book, Handbook|E-Book on Recordable Media', | 
| 603 |  |  |  |  |  |  | '2EGJ' => 'Editorial|Book|Retail Book, Handbook|All E-Book Distribution Formats', | 
| 604 |  |  |  |  |  |  | '2HIL' => 'Editorial|Book|Retail Book, Hi-lo Book|Printed', | 
| 605 |  |  |  |  |  |  | '2EPG' => 'Editorial|Book|Retail Book, Hi-lo Book|E-Book in Internet Website', | 
| 606 |  |  |  |  |  |  | '2EBI' => 'Editorial|Book|Retail Book, Hi-lo Book|E-Book in Internet Downloadable File', | 
| 607 |  |  |  |  |  |  | '2EGK' => 'Editorial|Book|Retail Book, Hi-lo Book|E-Book in Internet Email', | 
| 608 |  |  |  |  |  |  | '2EKE' => 'Editorial|Book|Retail Book, Hi-lo Book|All E-Book Internet Distribution Formats', | 
| 609 |  |  |  |  |  |  | '2ERG' => 'Editorial|Book|Retail Book, Hi-lo Book|E-Book on Recordable Media', | 
| 610 |  |  |  |  |  |  | '2EGL' => 'Editorial|Book|Retail Book, Hi-lo Book|All E-Book Distribution Formats', | 
| 611 |  |  |  |  |  |  | '2WAB' => 'Editorial|Book|Retail Book, Illustrated Book|Printed', | 
| 612 |  |  |  |  |  |  | '2EPH' => 'Editorial|Book|Retail Book, Illustrated Book|E-Book in Internet Website', | 
| 613 |  |  |  |  |  |  | '2EBJ' => 'Editorial|Book|Retail Book, Illustrated Book|E-Book in Internet Downloadable File', | 
| 614 |  |  |  |  |  |  | '2EGM' => 'Editorial|Book|Retail Book, Illustrated Book|E-Book in Internet Email', | 
| 615 |  |  |  |  |  |  | '2EKF' => 'Editorial|Book|Retail Book, Illustrated Book|All E-Book Internet Distribution Formats', | 
| 616 |  |  |  |  |  |  | '2ERH' => 'Editorial|Book|Retail Book, Illustrated Book|E-Book on Recordable Media', | 
| 617 |  |  |  |  |  |  | '2EGN' => 'Editorial|Book|Retail Book, Illustrated Book|All E-Book Distribution Formats', | 
| 618 |  |  |  |  |  |  | '2WHA' => 'Editorial|Book|Retail Book, Illustrated Guide|Printed', | 
| 619 |  |  |  |  |  |  | '2EPJ' => 'Editorial|Book|Retail Book, Illustrated Guide|E-Book in Internet Website', | 
| 620 |  |  |  |  |  |  | '2EBL' => 'Editorial|Book|Retail Book, Illustrated Guide|E-Book in Internet Downloadable File', | 
| 621 |  |  |  |  |  |  | '2EGP' => 'Editorial|Book|Retail Book, Illustrated Guide|E-Book in Internet Email', | 
| 622 |  |  |  |  |  |  | '2EKG' => 'Editorial|Book|Retail Book, Illustrated Guide|All E-Book Internet Distribution Formats', | 
| 623 |  |  |  |  |  |  | '2ERI' => 'Editorial|Book|Retail Book, Illustrated Guide|E-Book on Recordable Media', | 
| 624 |  |  |  |  |  |  | '2EGQ' => 'Editorial|Book|Retail Book, Illustrated Guide|All E-Book Distribution Formats', | 
| 625 |  |  |  |  |  |  | '2EGR' => 'Editorial|Book|Retail Book, Illustrated Guide|All E-Book Distribution Formats', | 
| 626 |  |  |  |  |  |  | '2MAN' => 'Editorial|Book|Retail Book, Manual|Printed', | 
| 627 |  |  |  |  |  |  | '2EPK' => 'Editorial|Book|Retail Book, Manual|E-Book in Internet Website', | 
| 628 |  |  |  |  |  |  | '2EBM' => 'Editorial|Book|Retail Book, Manual|E-Book in Internet Downloadable File', | 
| 629 |  |  |  |  |  |  | '2EGS' => 'Editorial|Book|Retail Book, Manual|E-Book in Internet Email', | 
| 630 |  |  |  |  |  |  | '2EKH' => 'Editorial|Book|Retail Book, Manual|All E-Book Internet Distribution Formats', | 
| 631 |  |  |  |  |  |  | '2ERJ' => 'Editorial|Book|Retail Book, Manual|E-Book on Recordable Media', | 
| 632 |  |  |  |  |  |  | '2EGT' => 'Editorial|Book|Retail Book, Manual|All E-Book Distribution Formats', | 
| 633 |  |  |  |  |  |  | '2YAP' => 'Editorial|Book|Retail Book, Novelty Book|Printed', | 
| 634 |  |  |  |  |  |  | '2EPL' => 'Editorial|Book|Retail Book, Novelty Book|E-Book in Internet Website', | 
| 635 |  |  |  |  |  |  | '2EBN' => 'Editorial|Book|Retail Book, Novelty Book|E-Book in Internet Downloadable File', | 
| 636 |  |  |  |  |  |  | '2EGV' => 'Editorial|Book|Retail Book, Novelty Book|E-Book in Internet Email', | 
| 637 |  |  |  |  |  |  | '2EKJ' => 'Editorial|Book|Retail Book, Novelty Book|All E-Book Internet Distribution Formats', | 
| 638 |  |  |  |  |  |  | '2ERK' => 'Editorial|Book|Retail Book, Novelty Book|E-Book on Recordable Media', | 
| 639 |  |  |  |  |  |  | '2EGW' => 'Editorial|Book|Retail Book, Novelty Book|All E-Book Distribution Formats', | 
| 640 |  |  |  |  |  |  | '2YEN' => 'Editorial|Book|Retail Book, Postcard Book|Printed', | 
| 641 |  |  |  |  |  |  | '2EPM' => 'Editorial|Book|Retail Book, Postcard Book|E-Book in Internet Website', | 
| 642 |  |  |  |  |  |  | '2EBP' => 'Editorial|Book|Retail Book, Postcard Book|E-Book in Internet Downloadable File', | 
| 643 |  |  |  |  |  |  | '2EGY' => 'Editorial|Book|Retail Book, Postcard Book|E-Book in Internet Email', | 
| 644 |  |  |  |  |  |  | '2EKK' => 'Editorial|Book|Retail Book, Postcard Book|All E-Book Internet Distribution Formats', | 
| 645 |  |  |  |  |  |  | '2ERL' => 'Editorial|Book|Retail Book, Postcard Book|E-Book on Recordable Media', | 
| 646 |  |  |  |  |  |  | '2EGZ' => 'Editorial|Book|Retail Book, Postcard Book|All E-Book Distribution Formats', | 
| 647 |  |  |  |  |  |  | '2YOK' => 'Editorial|Book|Retail Book, Young Adult Book|Printed', | 
| 648 |  |  |  |  |  |  | '2EPN' => 'Editorial|Book|Retail Book, Young Adult Book|E-Book in Internet Website', | 
| 649 |  |  |  |  |  |  | '2EBQ' => 'Editorial|Book|Retail Book, Young Adult Book|E-Book in Internet Downloadable File', | 
| 650 |  |  |  |  |  |  | '2EJB' => 'Editorial|Book|Retail Book, Young Adult Book|E-Book in Internet Email', | 
| 651 |  |  |  |  |  |  | '2EKL' => 'Editorial|Book|Retail Book, Young Adult Book|All E-Book Internet Distribution Formats', | 
| 652 |  |  |  |  |  |  | '2ERM' => 'Editorial|Book|Retail Book, Young Adult Book|E-Book on Recordable Media', | 
| 653 |  |  |  |  |  |  | '2EJC' => 'Editorial|Book|Retail Book, Young Adult Book|All E-Book Distribution Formats', | 
| 654 |  |  |  |  |  |  | '2BOO' => 'Editorial|Book|Retail Book, All Types|Printed', | 
| 655 |  |  |  |  |  |  | '2EPB' => 'Editorial|Book|Retail Book, All Types|E-Book in Internet Website', | 
| 656 |  |  |  |  |  |  | '2EBC' => 'Editorial|Book|Retail Book, All Types|E-Book in Internet Downloadable File', | 
| 657 |  |  |  |  |  |  | '2EJD' => 'Editorial|Book|Retail Book, All Types|E-Book in Internet Email', | 
| 658 |  |  |  |  |  |  | '2EKM' => 'Editorial|Book|Retail Book, All Types|All E-Book Internet Distribution Formats', | 
| 659 |  |  |  |  |  |  | '2ERN' => 'Editorial|Book|Retail Book, All Types|E-Book on Recordable Media', | 
| 660 |  |  |  |  |  |  | '2EJE' => 'Editorial|Book|Retail Book, All Types|All E-Book Distribution Formats', | 
| 661 |  |  |  |  |  |  | '2EEL' => 'Editorial|Book|Textbook, Compendium|Printed', | 
| 662 |  |  |  |  |  |  | '2EPQ' => 'Editorial|Book|Textbook, Compendium|E-Book in Internet Website', | 
| 663 |  |  |  |  |  |  | '2EBS' => 'Editorial|Book|Textbook, Compendium|E-Book in Internet Downloadable File', | 
| 664 |  |  |  |  |  |  | '2EJF' => 'Editorial|Book|Textbook, Compendium|E-Book in Internet Email', | 
| 665 |  |  |  |  |  |  | '2EKN' => 'Editorial|Book|Textbook, Compendium|All E-Book Internet Distribution Formats', | 
| 666 |  |  |  |  |  |  | '2ERP' => 'Editorial|Book|Textbook, Compendium|E-Book on Recordable Media', | 
| 667 |  |  |  |  |  |  | '2EJJ' => 'Editorial|Book|Textbook, Compendium|All E-Book Distribution Formats', | 
| 668 |  |  |  |  |  |  | '2EMU' => 'Editorial|Book|Textbook, Course Pack|Printed', | 
| 669 |  |  |  |  |  |  | '2GBN' => 'Editorial|Book|Textbook, Course Pack|Internet Website', | 
| 670 |  |  |  |  |  |  | '2GBM' => 'Editorial|Book|Textbook, Course Pack|Internet Downloadable File', | 
| 671 |  |  |  |  |  |  | '2ZOO' => 'Editorial|Book|Textbook, Course Pack|Internet Email', | 
| 672 |  |  |  |  |  |  | '2GBQ' => 'Editorial|Book|Textbook, Course Pack|All Internet Distribution Formats', | 
| 673 |  |  |  |  |  |  | '2ZOA' => 'Editorial|Book|Textbook, Course Pack|Recordable Media', | 
| 674 |  |  |  |  |  |  | '2GBP' => 'Editorial|Book|Textbook, Course Pack|All Distribution Formats', | 
| 675 |  |  |  |  |  |  | '2BEE' => 'Editorial|Book|Textbook, Middle Reader|Printed', | 
| 676 |  |  |  |  |  |  | '2EPR' => 'Editorial|Book|Textbook, Middle Reader|E-Book in Internet Website', | 
| 677 |  |  |  |  |  |  | '2EBT' => 'Editorial|Book|Textbook, Middle Reader|E-Book in Internet Downloadable File', | 
| 678 |  |  |  |  |  |  | '2EJK' => 'Editorial|Book|Textbook, Middle Reader|E-Book in Internet Email', | 
| 679 |  |  |  |  |  |  | '2EKP' => 'Editorial|Book|Textbook, Middle Reader|All E-Book Internet Distribution Formats', | 
| 680 |  |  |  |  |  |  | '2ERQ' => 'Editorial|Book|Textbook, Middle Reader|E-Book on Recordable Media', | 
| 681 |  |  |  |  |  |  | '2EJL' => 'Editorial|Book|Textbook, Middle Reader|All E-Book Distribution Formats', | 
| 682 |  |  |  |  |  |  | '2BOA' => 'Editorial|Book|Textbook, Student Edition|Printed', | 
| 683 |  |  |  |  |  |  | '2EPS' => 'Editorial|Book|Textbook, Student Edition|E-Book in Internet Website', | 
| 684 |  |  |  |  |  |  | '2EBV' => 'Editorial|Book|Textbook, Student Edition|E-Book in Internet Downloadable File', | 
| 685 |  |  |  |  |  |  | '2EJM' => 'Editorial|Book|Textbook, Student Edition|E-Book in Internet Email', | 
| 686 |  |  |  |  |  |  | '2EKQ' => 'Editorial|Book|Textbook, Student Edition|All E-Book Internet Distribution Formats', | 
| 687 |  |  |  |  |  |  | '2ERS' => 'Editorial|Book|Textbook, Student Edition|E-Book on Recordable Media', | 
| 688 |  |  |  |  |  |  | '2EJN' => 'Editorial|Book|Textbook, Student Edition|All E-Book Distribution Formats', | 
| 689 |  |  |  |  |  |  | '2FOX' => 'Editorial|Book|Textbook, All Types|Printed', | 
| 690 |  |  |  |  |  |  | '2EPP' => 'Editorial|Book|Textbook, All Types|E-Book in Internet Website', | 
| 691 |  |  |  |  |  |  | '2EBR' => 'Editorial|Book|Textbook, All Types|E-Book in Internet Downloadable File', | 
| 692 |  |  |  |  |  |  | '2EGA' => 'Editorial|Book|Textbook, All Types|E-Book in Internet Email', | 
| 693 |  |  |  |  |  |  | '2EKR' => 'Editorial|Book|Textbook, All Types|All E-Book Internet Distribution Formats', | 
| 694 |  |  |  |  |  |  | '2ERT' => 'Editorial|Book|Textbook, All Types|E-Book on Recordable Media', | 
| 695 |  |  |  |  |  |  | '2EJP' => 'Editorial|Book|Textbook, All Types|All E-Book Distribution Formats', | 
| 696 |  |  |  |  |  |  | '2GBZ' => 'Editorial|Book|Textbook Ancillary Materials, Educational Film Set|Projected Display', | 
| 697 |  |  |  |  |  |  | '2YET' => 'Editorial|Book|Textbook Ancillary Materials, Packaging For Recordable Media|Printed', | 
| 698 |  |  |  |  |  |  | '2YUM' => 'Editorial|Book|Textbook Ancillary Materials, Lab Manual|Printed', | 
| 699 |  |  |  |  |  |  | '2EPZ' => 'Editorial|Book|Textbook Ancillary Materials, Lab Manual|E-Book in Internet Website', | 
| 700 |  |  |  |  |  |  | '2EBA' => 'Editorial|Book|Textbook Ancillary Materials, Lab Manual|E-Book in Internet Downloadable File', | 
| 701 |  |  |  |  |  |  | '2EJQ' => 'Editorial|Book|Textbook Ancillary Materials, Lab Manual|E-Book in Internet Email', | 
| 702 |  |  |  |  |  |  | '2EKS' => 'Editorial|Book|Textbook Ancillary Materials, Lab Manual|All E-Book Internet Distribution Formats', | 
| 703 |  |  |  |  |  |  | '2ERU' => 'Editorial|Book|Textbook Ancillary Materials, Lab Manual|E-Book on Recordable Media', | 
| 704 |  |  |  |  |  |  | '2EJR' => 'Editorial|Book|Textbook Ancillary Materials, Lab Manual|All E-Book Distribution Formats', | 
| 705 |  |  |  |  |  |  | '2YAK' => 'Editorial|Book|Textbook Ancillary Materials, Teachers\' Edition|Printed', | 
| 706 |  |  |  |  |  |  | '2EPT' => 'Editorial|Book|Textbook Ancillary Materials, Teachers\' Edition|E-Book in Internet Website', | 
| 707 |  |  |  |  |  |  | '2EBW' => 'Editorial|Book|Textbook Ancillary Materials, Teachers\' Edition|E-Book in Internet Downloadable File', | 
| 708 |  |  |  |  |  |  | '2EJS' => 'Editorial|Book|Textbook Ancillary Materials, Teachers\' Edition|E-Book in Internet Email', | 
| 709 |  |  |  |  |  |  | '2EKT' => 'Editorial|Book|Textbook Ancillary Materials, Teachers\' Edition|All E-Book Internet Distribution Formats', | 
| 710 |  |  |  |  |  |  | '2ERV' => 'Editorial|Book|Textbook Ancillary Materials, Teachers\' Edition|E-Book on Recordable Media', | 
| 711 |  |  |  |  |  |  | '2EJT' => 'Editorial|Book|Textbook Ancillary Materials, Teachers\' Edition|All E-Book Distribution Formats', | 
| 712 |  |  |  |  |  |  | '2ZOT' => 'Editorial|Book|Textbook Ancillary Materials, Teacher\'s Manual|Printed', | 
| 713 |  |  |  |  |  |  | '2EPW' => 'Editorial|Book|Textbook Ancillary Materials, Teacher\'s Manual|E-Book in Internet Website', | 
| 714 |  |  |  |  |  |  | '2EBD' => 'Editorial|Book|Textbook Ancillary Materials, Teacher\'s Manual|E-Book in Internet Downloadable File', | 
| 715 |  |  |  |  |  |  | '2EJV' => 'Editorial|Book|Textbook Ancillary Materials, Teacher\'s Manual|E-Book in Internet Email', | 
| 716 |  |  |  |  |  |  | '2EKU' => 'Editorial|Book|Textbook Ancillary Materials, Teacher\'s Manual|All E-Book Internet Distribution Formats', | 
| 717 |  |  |  |  |  |  | '2ERW' => 'Editorial|Book|Textbook Ancillary Materials, Teacher\'s Manual|E-Book on Recordable Media', | 
| 718 |  |  |  |  |  |  | '2EJW' => 'Editorial|Book|Textbook Ancillary Materials, Teacher\'s Manual|All E-Book Distribution Formats', | 
| 719 |  |  |  |  |  |  | '2GEE' => 'Editorial|Book|Textbook Ancillary Materials, Workbook|Printed', | 
| 720 |  |  |  |  |  |  | '2EPY' => 'Editorial|Book|Textbook Ancillary Materials, Workbook|E-Book in Internet Website', | 
| 721 |  |  |  |  |  |  | '2EBB' => 'Editorial|Book|Textbook Ancillary Materials, Workbook|E-Book in Internet Downloadable File', | 
| 722 |  |  |  |  |  |  | '2EJY' => 'Editorial|Book|Textbook Ancillary Materials, Workbook|E-Book in Internet Email', | 
| 723 |  |  |  |  |  |  | '2EKV' => 'Editorial|Book|Textbook Ancillary Materials, Workbook|All E-Book Internet Distribution Formats', | 
| 724 |  |  |  |  |  |  | '2ERY' => 'Editorial|Book|Textbook Ancillary Materials, Workbook|E-Book on Recordable Media', | 
| 725 |  |  |  |  |  |  | '2EJZ' => 'Editorial|Book|Textbook Ancillary Materials, Workbook|All E-Book Distribution Formats', | 
| 726 |  |  |  |  |  |  | '2ELK' => 'Editorial|Book|Textbook Ancillary Materials, All Ancillary Types|Printed', | 
| 727 |  |  |  |  |  |  | '2GBY' => 'Editorial|Book|Textbook Ancillary Materials, All Ancillary Types|All Internet Distribution Formats', | 
| 728 |  |  |  |  |  |  | '2GBW' => 'Editorial|Book|Textbook Ancillary Materials, All Ancillary Types|All Distribution Formats', | 
| 729 |  |  |  |  |  |  | '2NAY' => 'Editorial|Book|Reference Book, Encyclopedia|Printed', | 
| 730 |  |  |  |  |  |  | '2EAQ' => 'Editorial|Book|Reference Book, Encyclopedia|E-Book in Internet Website', | 
| 731 |  |  |  |  |  |  | '2EMB' => 'Editorial|Book|Reference Book, Encyclopedia|E-Book in Internet Downloadable File', | 
| 732 |  |  |  |  |  |  | '2EMC' => 'Editorial|Book|Reference Book, Encyclopedia|All E-Book Internet Distribution Formats', | 
| 733 |  |  |  |  |  |  | '2EMD' => 'Editorial|Book|Reference Book, Encyclopedia|E-Book on Recordable Media', | 
| 734 |  |  |  |  |  |  | '2NAH' => 'Editorial|Book|Reference Book, Encyclopedia|All Electronic Distribution Formats', | 
| 735 |  |  |  |  |  |  | '2NIP' => 'Editorial|Book|Reference Book, Telephone Book|Printed', | 
| 736 |  |  |  |  |  |  | '2EMF' => 'Editorial|Book|Reference Book, Telephone Book|E-Book in Internet Website', | 
| 737 |  |  |  |  |  |  | '2EMG' => 'Editorial|Book|Reference Book, Telephone Book|E-Book in Internet Downloadable File', | 
| 738 |  |  |  |  |  |  | '2EMH' => 'Editorial|Book|Reference Book, Telephone Book|All E-Book Internet Distribution Formats', | 
| 739 |  |  |  |  |  |  | '2EMI' => 'Editorial|Book|Reference Book, Telephone Book|E-Book on Recordable Media', | 
| 740 |  |  |  |  |  |  | '2EMJ' => 'Editorial|Book|Reference Book, Telephone Book|All E-Book Distribution Formats', | 
| 741 |  |  |  |  |  |  | '2DOG' => 'Editorial|Book|Reference Book, All Types|Printed', | 
| 742 |  |  |  |  |  |  | '2EMK' => 'Editorial|Book|Reference Book, All Types|E-Book in Internet Website', | 
| 743 |  |  |  |  |  |  | '2EML' => 'Editorial|Book|Reference Book, All Types|E-Book in Internet Downloadable File', | 
| 744 |  |  |  |  |  |  | '2EMM' => 'Editorial|Book|Reference Book, All Types|All E-Book Internet Distribution Formats', | 
| 745 |  |  |  |  |  |  | '2EMN' => 'Editorial|Book|Reference Book, All Types|E-Book on Recordable Media', | 
| 746 |  |  |  |  |  |  | '2EMP' => 'Editorial|Book|Reference Book, All Types|All E-Book Distribution Formats', | 
| 747 |  |  |  |  |  |  | '2DEW' => 'Editorial|Book|Trade Book, All Types|Printed', | 
| 748 |  |  |  |  |  |  | '2EPV' => 'Editorial|Book|Trade Book, All Types|E-Book in Internet Website', | 
| 749 |  |  |  |  |  |  | '2EMQ' => 'Editorial|Book|Trade Book, All Types|E-Book in Internet Downloadable File', | 
| 750 |  |  |  |  |  |  | '2EMR' => 'Editorial|Book|Trade Book, All Types|E-Book in Internet Email', | 
| 751 |  |  |  |  |  |  | '2EMS' => 'Editorial|Book|Trade Book, All Types|All E-Book Internet Distribution Formats', | 
| 752 |  |  |  |  |  |  | '2ERA' => 'Editorial|Book|Trade Book, All Types|E-Book on Recordable Media', | 
| 753 |  |  |  |  |  |  | '2EMT' => 'Editorial|Book|Trade Book, All Types|All E-Book Distribution Formats', | 
| 754 |  |  |  |  |  |  | '2MOG' => 'Editorial|Book|All Book Types|Printed', | 
| 755 |  |  |  |  |  |  | '2EPA' => 'Editorial|Book|All Book Types|E-Book in Internet Website', | 
| 756 |  |  |  |  |  |  | '2EBK' => 'Editorial|Book|All Book Types|E-Book in Internet Downloadable File', | 
| 757 |  |  |  |  |  |  | '2EJU' => 'Editorial|Book|All Book Types|E-Book in Internet Email', | 
| 758 |  |  |  |  |  |  | '2EKA' => 'Editorial|Book|All Book Types|All E-Book Internet Distribution Formats', | 
| 759 |  |  |  |  |  |  | '2ERZ' => 'Editorial|Book|All Book Types|E-Book on Recordable Media', | 
| 760 |  |  |  |  |  |  | '2EJA' => 'Editorial|Book|All Book Types|All E-Book Distribution Formats', | 
| 761 |  |  |  |  |  |  | '2MOR' => 'Editorial|Book|Artist\'s Reference, All Types|Printed', | 
| 762 |  |  |  |  |  |  | '2EKW' => 'Editorial|Book|Artist\'s Reference, All Types|All E-Book Internet Distribution Formats', | 
| 763 |  |  |  |  |  |  | '2EMV' => 'Editorial|Book|Artist\'s Reference, All Types|All E-Book Distribution Formats', | 
| 764 |  |  |  |  |  |  | '2GAL' => 'Editorial|Display|Gallery Exhibition|Printed', | 
| 765 |  |  |  |  |  |  | '2GDJ' => 'Editorial|Display|Gallery Exhibition|Electronic Display', | 
| 766 |  |  |  |  |  |  | '2MUS' => 'Editorial|Display|Museum Display|Printed', | 
| 767 |  |  |  |  |  |  | '2GDK' => 'Editorial|Display|Museum Display|Electronic Display', | 
| 768 |  |  |  |  |  |  | '2EAU' => 'Editorial|Display|Poster, Educational Poster|Printed', | 
| 769 |  |  |  |  |  |  | '2GHG' => 'Editorial|Website|Web Page, Body Content|Internet Website', | 
| 770 |  |  |  |  |  |  | '2GHK' => 'Editorial|Website|Web Page, Body Content|All Internet Distribution Formats', | 
| 771 |  |  |  |  |  |  | '2GHH' => 'Editorial|Website|Web Page, Body Content|Recordable Media', | 
| 772 |  |  |  |  |  |  | '2GHJ' => 'Editorial|Website|Web Page, Body Content|All Electronic Distribution Formats', | 
| 773 |  |  |  |  |  |  | '2GHB' => 'Editorial|Website|Web Page, All Types|Internet Website', | 
| 774 |  |  |  |  |  |  | '2GHF' => 'Editorial|Website|Web Page, All Types|All Internet Distribution Formats', | 
| 775 |  |  |  |  |  |  | '2GHC' => 'Editorial|Website|Web Page, All Types|Recordable Media', | 
| 776 |  |  |  |  |  |  | '2GHD' => 'Editorial|Website|Web Page, All Types|All Electronic Distribution Formats', | 
| 777 |  |  |  |  |  |  | '2GHA' => 'Editorial|Website|Webcast, All Types|Internet Website', | 
| 778 |  |  |  |  |  |  | '2ZAG' => 'Editorial|Mobile|All Mobile Types|Mobile', | 
| 779 |  |  |  |  |  |  | '2GGM' => 'Editorial|Merchandise|CD ROM|Recordable Media', | 
| 780 |  |  |  |  |  |  | '2DVE' => 'Editorial|Merchandise|DVD|Recordable Media', | 
| 781 |  |  |  |  |  |  | '2AAE' => 'Editorial|All Media Types|All Formats|All Distribution Formats', | 
| 782 |  |  |  |  |  |  | '2ZIG' => 'Products|Mobile|Wallpaper|Mobile', | 
| 783 |  |  |  |  |  |  | '2ZIP' => 'Products|Mobile|Game, All Types|Mobile', | 
| 784 |  |  |  |  |  |  | '2ZAP' => 'Products|Mobile|Entertainment Programming|Mobile', | 
| 785 |  |  |  |  |  |  | '2ZEN' => 'Products|Mobile|Computer Software|Mobile', | 
| 786 |  |  |  |  |  |  | '2ZAM' => 'Products|Mobile|All Mobile Types|Mobile', | 
| 787 |  |  |  |  |  |  | '2ADD' => 'Products|Merchandise|Address Book|Printed', | 
| 788 |  |  |  |  |  |  | '2ANT' => 'Products|Merchandise|Anthology|Printed', | 
| 789 |  |  |  |  |  |  | '2APP' => 'Products|Merchandise|Apparel, General Apparel|Printed or Woven', | 
| 790 |  |  |  |  |  |  | '2TST' => 'Products|Merchandise|Apparel, T-Shirts|Printed or Woven', | 
| 791 |  |  |  |  |  |  | '2BIO' => 'Products|Merchandise|Birthday Book|Printed', | 
| 792 |  |  |  |  |  |  | '2BLA' => 'Products|Merchandise|Blank Note Book|Printed', | 
| 793 |  |  |  |  |  |  | '2ATM' => 'Products|Merchandise|Card, ATM Card|Printed', | 
| 794 |  |  |  |  |  |  | '2BNK' => 'Products|Merchandise|Card, Bank Card|Printed', | 
| 795 |  |  |  |  |  |  | '2CRE' => 'Products|Merchandise|Card, Credit Card|Printed', | 
| 796 |  |  |  |  |  |  | '2BIT' => 'Products|Merchandise|Card, Debit Card|Printed', | 
| 797 |  |  |  |  |  |  | '2GFT' => 'Products|Merchandise|Card, Gift Card|Printed', | 
| 798 |  |  |  |  |  |  | '2GRE' => 'Products|Merchandise|Card, Greeting Card|Printed', | 
| 799 |  |  |  |  |  |  | '2HER' => 'Products|Merchandise|Card, Hero Card|Printed', | 
| 800 |  |  |  |  |  |  | '2CRD' => 'Products|Merchandise|Card, Other Card|Printed', | 
| 801 |  |  |  |  |  |  | '2ATT' => 'Products|Merchandise|Card, Phone Card|Printed', | 
| 802 |  |  |  |  |  |  | '2CDR' => 'Products|Merchandise|CD ROM|Recordable Media', | 
| 803 |  |  |  |  |  |  | '2CHK' => 'Products|Merchandise|Check|Printed', | 
| 804 |  |  |  |  |  |  | '2BAK' => 'Products|Merchandise|Computer Software|Internet Downloadable File', | 
| 805 |  |  |  |  |  |  | '2BAU' => 'Products|Merchandise|Computer Software|Internet Email', | 
| 806 |  |  |  |  |  |  | '2BAV' => 'Products|Merchandise|Computer Software|All Internet Distribution Formats', | 
| 807 |  |  |  |  |  |  | '2BAJ' => 'Products|Merchandise|Computer Software|Recordable Media', | 
| 808 |  |  |  |  |  |  | '2WAR' => 'Products|Merchandise|Computer Software|All Electronic Distribution Formats', | 
| 809 |  |  |  |  |  |  | '2GIG' => 'Products|Merchandise|Datebook|Printed', | 
| 810 |  |  |  |  |  |  | '2DIA' => 'Products|Merchandise|Diary|Printed', | 
| 811 |  |  |  |  |  |  | '2BAZ' => 'Products|Merchandise|Diary|Internet Downloadable File', | 
| 812 |  |  |  |  |  |  | '2BBA' => 'Products|Merchandise|Diary|Internet Email', | 
| 813 |  |  |  |  |  |  | '2BAW' => 'Products|Merchandise|Diary|Recordable Media', | 
| 814 |  |  |  |  |  |  | '2HUB' => 'Products|Merchandise|Double Postcard|Printed', | 
| 815 |  |  |  |  |  |  | '2DVD' => 'Products|Merchandise|DVD|Recordable Media', | 
| 816 |  |  |  |  |  |  | '2EAT' => 'Products|Merchandise|Edible Media|Printed', | 
| 817 |  |  |  |  |  |  | '2FOL' => 'Products|Merchandise|Folder|Printed', | 
| 818 |  |  |  |  |  |  | '2GAB' => 'Products|Merchandise|Game, Computer Game|Internet Downloadable File', | 
| 819 |  |  |  |  |  |  | '2GAH' => 'Products|Merchandise|Game, Computer Game|Internet Email', | 
| 820 |  |  |  |  |  |  | '2GAE' => 'Products|Merchandise|Game, Computer Game|All Internet Distribution Formats', | 
| 821 |  |  |  |  |  |  | '2GAG' => 'Products|Merchandise|Game, Computer Game|Recordable Media', | 
| 822 |  |  |  |  |  |  | '2GAN' => 'Products|Merchandise|Game, Computer Game|All Electronic Distribution Formats', | 
| 823 |  |  |  |  |  |  | '2GAP' => 'Products|Merchandise|Game, All Types|Printed', | 
| 824 |  |  |  |  |  |  | '2GAT' => 'Products|Merchandise|Game, All Types|Internet Downloadable File', | 
| 825 |  |  |  |  |  |  | '2GAS' => 'Products|Merchandise|Game, All Types|Internet Email', | 
| 826 |  |  |  |  |  |  | '2GAD' => 'Products|Merchandise|Game, All Types|All Internet Distribution Formats', | 
| 827 |  |  |  |  |  |  | '2GAR' => 'Products|Merchandise|Game, All Types|Recordable Media', | 
| 828 |  |  |  |  |  |  | '2GAM' => 'Products|Merchandise|Game, All Types|All Electronic Distribution Formats', | 
| 829 |  |  |  |  |  |  | '2BOX' => 'Products|Merchandise|Gift Box|Printed', | 
| 830 |  |  |  |  |  |  | '2GIF' => 'Products|Merchandise|Gift Certificate|Printed', | 
| 831 |  |  |  |  |  |  | '2WRP' => 'Products|Merchandise|Gift Wrap|Printed', | 
| 832 |  |  |  |  |  |  | '2JIG' => 'Products|Merchandise|Jigsaw Puzzle|Printed', | 
| 833 |  |  |  |  |  |  | '2JIN' => 'Products|Merchandise|Jigsaw Puzzle|Internet Downloadable File', | 
| 834 |  |  |  |  |  |  | '2JIL' => 'Products|Merchandise|Jigsaw Puzzle|Recordable Media', | 
| 835 |  |  |  |  |  |  | '2JRN' => 'Products|Merchandise|Journal|Printed', | 
| 836 |  |  |  |  |  |  | '2MAP' => 'Products|Merchandise|Map|Printed', | 
| 837 |  |  |  |  |  |  | '2MAD' => 'Products|Merchandise|Map|Internet Downloadable File', | 
| 838 |  |  |  |  |  |  | '2MET' => 'Products|Merchandise|Map|Internet Email', | 
| 839 |  |  |  |  |  |  | '2MIM' => 'Products|Merchandise|Map|All Internet Distribution Formats', | 
| 840 |  |  |  |  |  |  | '2MIR' => 'Products|Merchandise|Map|Recordable Media', | 
| 841 |  |  |  |  |  |  | '2MAB' => 'Products|Merchandise|Map|All Electronic Distribution Formats', | 
| 842 |  |  |  |  |  |  | '2MOU' => 'Products|Merchandise|Mouse Pad|Printed', | 
| 843 |  |  |  |  |  |  | '2MUG' => 'Products|Merchandise|Mugs|Printed', | 
| 844 |  |  |  |  |  |  | '2NOV' => 'Products|Merchandise|Novelty Products|Printed', | 
| 845 |  |  |  |  |  |  | '2MCH' => 'Products|Merchandise|Other Merchandise|Printed', | 
| 846 |  |  |  |  |  |  | '2ALB' => 'Products|Merchandise|Photo Album|Printed', | 
| 847 |  |  |  |  |  |  | '2MAT' => 'Products|Merchandise|Placemat|Printed', | 
| 848 |  |  |  |  |  |  | '2MRP' => 'Products|Merchandise|Plates|Printed', | 
| 849 |  |  |  |  |  |  | '2TOP' => 'Products|Merchandise|Poster, Retail Poster|Printed', | 
| 850 |  |  |  |  |  |  | '2FUN' => 'Products|Merchandise|Playing Cards|Printed', | 
| 851 |  |  |  |  |  |  | '2CLO' => 'Products|Merchandise|Retail Calendar, One Page|Printed', | 
| 852 |  |  |  |  |  |  | '2CAL' => 'Products|Merchandise|Retail Calendar, Multi-Page|Printed', | 
| 853 |  |  |  |  |  |  | '2BCJ' => 'Products|Merchandise|Retail Calendar, Multi-Page|Internet Downloadable File', | 
| 854 |  |  |  |  |  |  | '2BCI' => 'Products|Merchandise|Retail Calendar, Multi-Page|Internet Email', | 
| 855 |  |  |  |  |  |  | '2BCH' => 'Products|Merchandise|Retail Calendar, Multi-Page|All Internet Distribution Formats', | 
| 856 |  |  |  |  |  |  | '2BCF' => 'Products|Merchandise|Retail Calendar, Multi-Page|Recordable Media', | 
| 857 |  |  |  |  |  |  | '2BCG' => 'Products|Merchandise|Retail Calendar, Multi-Page|All Electronic Distribution Formats', | 
| 858 |  |  |  |  |  |  | '2FAR' => 'Products|Merchandise|Retail Postcard|Printed', | 
| 859 |  |  |  |  |  |  | '2FIB' => 'Products|Merchandise|Screen Saver|Internet Downloadable File', | 
| 860 |  |  |  |  |  |  | '2GEL' => 'Products|Merchandise|Screen Saver|Internet Email', | 
| 861 |  |  |  |  |  |  | '2TOD' => 'Products|Merchandise|Screen Saver|All Internet Distribution Formats', | 
| 862 |  |  |  |  |  |  | '2WRY' => 'Products|Merchandise|Screen Saver|Recordable Media', | 
| 863 |  |  |  |  |  |  | '2HEX' => 'Products|Merchandise|Screen Saver|All Electronic Distribution Formats', | 
| 864 |  |  |  |  |  |  | '2KEP' => 'Products|Merchandise|Souvenir|Printed', | 
| 865 |  |  |  |  |  |  | '2WEE' => 'Products|Merchandise|Stamp|Printed', | 
| 866 |  |  |  |  |  |  | '2WIT' => 'Products|Merchandise|Stationery|Printed', | 
| 867 |  |  |  |  |  |  | '2TIC' => 'Products|Merchandise|Sticker|Printed', | 
| 868 |  |  |  |  |  |  | '2FEM' => 'Products|Merchandise|Textiles|Printed or Woven', | 
| 869 |  |  |  |  |  |  | '2TKT' => 'Products|Merchandise|Ticket|Printed', | 
| 870 |  |  |  |  |  |  | '2TOY' => 'Products|Merchandise|Toy|Printed', | 
| 871 |  |  |  |  |  |  | '2TRD' => 'Products|Merchandise|Trading Cards|Printed', | 
| 872 |  |  |  |  |  |  | '2TUA' => 'Products|Merchandise|Virtual Reality|Recordable Media', | 
| 873 |  |  |  |  |  |  | '2WAL' => 'Products|Merchandise|Wallpaper|Printed', | 
| 874 |  |  |  |  |  |  | '2MER' => 'Products|Merchandise|All Merchandise Types|Printed', | 
| 875 |  |  |  |  |  |  | '2BAB' => 'Products|Art|Artist\'s Reference, Tattoo|Printed', | 
| 876 |  |  |  |  |  |  | '2DVL' => 'Products|Product Packaging|Packaging For Recordable Media, Liner Notes|Printed', | 
| 877 |  |  |  |  |  |  | '2DVP' => 'Products|Product Packaging|Packaging For Recordable Media, All Packaging Types|Printed', | 
| 878 |  |  |  |  |  |  | '2FRA' => 'Products|Product Packaging|Picture Frame Insert|Printed', | 
| 879 |  |  |  |  |  |  | '2EVE' => 'Products|Product Packaging|Retail Packaging, All Packaging Types|Printed', | 
| 880 |  |  |  |  |  |  | '2WHO' => 'Products|Product Packaging|Wholesale Packaging, All Packaging Types|Printed', | 
| 881 |  |  |  |  |  |  | '2DAY' => 'Products|Product Packaging|All Product Packaging Types|Printed', | 
| 882 |  |  |  |  |  |  | '2AAP' => 'Products|All Media Types|All Formats|All Distribution Formats', | 
| 883 |  |  |  |  |  |  | '2TUX' => 'Internal Company Use|Periodicals|Magazine, Custom Published|Printed', | 
| 884 |  |  |  |  |  |  | '2BIC' => 'Internal Company Use|Periodicals|Magazine, Custom Published|Intranet and Extranet Website', | 
| 885 |  |  |  |  |  |  | '2BIF' => 'Internal Company Use|Periodicals|Magazine, Custom Published|Intranet and Extranet Downloadable File', | 
| 886 |  |  |  |  |  |  | '2FOE' => 'Internal Company Use|Periodicals|Magazine, Custom Published|Internet Email', | 
| 887 |  |  |  |  |  |  | '2BII' => 'Internal Company Use|Periodicals|Magazine, Custom Published|All Intranet and Extranet Distribution Formats', | 
| 888 |  |  |  |  |  |  | '2BIA' => 'Internal Company Use|Periodicals|Magazine, Custom Published|Recordable Media', | 
| 889 |  |  |  |  |  |  | '2BIH' => 'Internal Company Use|Periodicals|Magazine, Custom Published|All Electronic Distribution Formats', | 
| 890 |  |  |  |  |  |  | '2FRO' => 'Internal Company Use|Comp Use|All Comp Types|Printed', | 
| 891 |  |  |  |  |  |  | '2FPO' => 'Internal Company Use|Comp Use|All Comp Types|All Electronic Distribution Formats', | 
| 892 |  |  |  |  |  |  | '2GED' => 'Internal Company Use|Internal Review|All Review Types|Printed', | 
| 893 |  |  |  |  |  |  | '2GID' => 'Internal Company Use|Internal Review|All Review Types|All Electronic Distribution Formats', | 
| 894 |  |  |  |  |  |  | '2GOA' => 'Internal Company Use|Promotional Materials|Corporate Brochure|Printed', | 
| 895 |  |  |  |  |  |  | '2BHH' => 'Internal Company Use|Promotional Materials|Corporate Brochure|Intranet and Extranet Downloadable File', | 
| 896 |  |  |  |  |  |  | '2BHI' => 'Internal Company Use|Promotional Materials|Corporate Brochure|Intranet and Extranet Email', | 
| 897 |  |  |  |  |  |  | '2BHG' => 'Internal Company Use|Promotional Materials|Corporate Brochure|Recordable Media', | 
| 898 |  |  |  |  |  |  | '2BHN' => 'Internal Company Use|Promotional Materials|Corporate Calendar|Printed', | 
| 899 |  |  |  |  |  |  | '2BHL' => 'Internal Company Use|Promotional Materials|Corporate Calendar|Intranet and Extranet Downloadable File', | 
| 900 |  |  |  |  |  |  | '2BHM' => 'Internal Company Use|Promotional Materials|Corporate Calendar|Intranet and Extranet Email', | 
| 901 |  |  |  |  |  |  | '2BHK' => 'Internal Company Use|Promotional Materials|Corporate Calendar|Recordable Media', | 
| 902 |  |  |  |  |  |  | '2BHY' => 'Internal Company Use|Promotional Materials|Corporate Folder|Printed', | 
| 903 |  |  |  |  |  |  | '2BHQ' => 'Internal Company Use|Promotional Materials|Card, Corporate Card|Printed', | 
| 904 |  |  |  |  |  |  | '2BHT' => 'Internal Company Use|Promotional Materials|Card, Corporate Card|Intranet and Extranet Downloadable File', | 
| 905 |  |  |  |  |  |  | '2BHU' => 'Internal Company Use|Promotional Materials|Card, Corporate Card|Intranet and Extranet Email', | 
| 906 |  |  |  |  |  |  | '2BHS' => 'Internal Company Use|Promotional Materials|Card, Corporate Card|Recordable Media', | 
| 907 |  |  |  |  |  |  | '2BHZ' => 'Internal Company Use|Promotional Materials|CD ROM|Recordable Media', | 
| 908 |  |  |  |  |  |  | '2DVI' => 'Internal Company Use|Promotional Materials|DVD|Recordable Media', | 
| 909 |  |  |  |  |  |  | '2BHV' => 'Internal Company Use|Promotional Materials|Sales Kit|All Electronic Distribution Formats', | 
| 910 |  |  |  |  |  |  | '2BHW' => 'Internal Company Use|Promotional Materials|Training Materials|Printed', | 
| 911 |  |  |  |  |  |  | '2BJN' => 'Internal Company Use|Website|Web Page, Content Body|Intranet and Extranet Website', | 
| 912 |  |  |  |  |  |  | '2FAB' => 'Internal Company Use|Website|Web Page, Content Body|Recordable Media', | 
| 913 |  |  |  |  |  |  | '2FAC' => 'Internal Company Use|Website|Web Page, Content Body|All Electronic Distribution Formats', | 
| 914 |  |  |  |  |  |  | '2FAH' => 'Internal Company Use|Website|Web Page, Design Element|Intranet and Extranet Website', | 
| 915 |  |  |  |  |  |  | '2FAI' => 'Internal Company Use|Website|Web Page, Design Element|Recordable Media', | 
| 916 |  |  |  |  |  |  | '2FAJ' => 'Internal Company Use|Website|Web Page, Design Element|All Electronic Distribution Formats', | 
| 917 |  |  |  |  |  |  | '2NET' => 'Internal Company Use|Website|Web Page, All Types|Intranet and Extranet Website', | 
| 918 |  |  |  |  |  |  | '2BJL' => 'Internal Company Use|Website|Web Page, All Types|Recordable Media', | 
| 919 |  |  |  |  |  |  | '2BJK' => 'Internal Company Use|Website|Web Page, All Types|All Electronic Distribution Formats', | 
| 920 |  |  |  |  |  |  | '2BJH' => 'Internal Company Use|Website|Webcast, All Types|Intranet and Extranet Website', | 
| 921 |  |  |  |  |  |  | '2WAN' => 'Internal Company Use|Website|All Website Types|Intranet and Extranet Website', | 
| 922 |  |  |  |  |  |  | '2BHD' => 'Internal Company Use|Email|All Email Types|Intranet and Extranet Email', | 
| 923 |  |  |  |  |  |  | '2ZUM' => 'Internal Company Use|Mobile|All Mobile Types|Mobile', | 
| 924 |  |  |  |  |  |  | '2BHF' => 'Internal Company Use|Live Presentation|Internal Presentation|Projected Display', | 
| 925 |  |  |  |  |  |  | '2BHB' => 'Internal Company Use|Art|Art Display, Display Print|Printed', | 
| 926 |  |  |  |  |  |  | '2GOY' => 'Internal Company Use|Art|Art Display, All Art Types|Printed', | 
| 927 |  |  |  |  |  |  | '2HAO' => 'Internal Company Use|Art|Art Display, All Art Types|Electronic Display', | 
| 928 |  |  |  |  |  |  | '2AAI' => 'Internal Company Use|All Media Types|All Formats|All Distribution Formats', | 
| 929 |  |  |  |  |  |  | '2TVC' => 'Motion Picture & TV|Television Programming|Commercial|Television Broadcast', | 
| 930 |  |  |  |  |  |  | '2TEB' => 'Motion Picture & TV|Television Programming|Commercial|Internet Downloadable File', | 
| 931 |  |  |  |  |  |  | '2TEC' => 'Motion Picture & TV|Television Programming|Commercial|All Internet Distribution Formats', | 
| 932 |  |  |  |  |  |  | '2TEG' => 'Motion Picture & TV|Television Programming|Commercial|Recordable Media', | 
| 933 |  |  |  |  |  |  | '2TVD' => 'Motion Picture & TV|Television Programming|Commercial|All Electronic Distribution Formats', | 
| 934 |  |  |  |  |  |  | '2TVE' => 'Motion Picture & TV|Television Programming|Infomercial|Television Broadcast', | 
| 935 |  |  |  |  |  |  | '2TEH' => 'Motion Picture & TV|Television Programming|Infomercial|Internet Downloadable File', | 
| 936 |  |  |  |  |  |  | '2TEJ' => 'Motion Picture & TV|Television Programming|Infomercial|All Internet Distribution Formats', | 
| 937 |  |  |  |  |  |  | '2TEK' => 'Motion Picture & TV|Television Programming|Infomercial|Recordable Media', | 
| 938 |  |  |  |  |  |  | '2TVF' => 'Motion Picture & TV|Television Programming|Infomercial|All Electronic Distribution Formats', | 
| 939 |  |  |  |  |  |  | '2TVG' => 'Motion Picture & TV|Television Programming|On-Air Promotion|Television Broadcast', | 
| 940 |  |  |  |  |  |  | '2TEL' => 'Motion Picture & TV|Television Programming|On-Air Promotion|Internet Downloadable File', | 
| 941 |  |  |  |  |  |  | '2TEM' => 'Motion Picture & TV|Television Programming|On-Air Promotion|All Internet Distribution Formats', | 
| 942 |  |  |  |  |  |  | '2TEP' => 'Motion Picture & TV|Television Programming|On-Air Promotion|Recordable Media', | 
| 943 |  |  |  |  |  |  | '2TVH' => 'Motion Picture & TV|Television Programming|On-Air Promotion|All Electronic Distribution Formats', | 
| 944 |  |  |  |  |  |  | '2TVI' => 'Motion Picture & TV|Television Programming|Documentary Program|Television Broadcast', | 
| 945 |  |  |  |  |  |  | '2TER' => 'Motion Picture & TV|Television Programming|Documentary Program|Internet Downloadable File', | 
| 946 |  |  |  |  |  |  | '2TES' => 'Motion Picture & TV|Television Programming|Documentary Program|All Internet Distribution Formats', | 
| 947 |  |  |  |  |  |  | '2TET' => 'Motion Picture & TV|Television Programming|Documentary Program|Recordable Media', | 
| 948 |  |  |  |  |  |  | '2TVJ' => 'Motion Picture & TV|Television Programming|Documentary Program|All Electronic Distribution Formats', | 
| 949 |  |  |  |  |  |  | '2TVA' => 'Motion Picture & TV|Television Programming|All Television Advertising Types|Television Broadcast', | 
| 950 |  |  |  |  |  |  | '2TEA' => 'Motion Picture & TV|Television Programming|All Television Advertising Types|Internet Downloadable File', | 
| 951 |  |  |  |  |  |  | '2TEQ' => 'Motion Picture & TV|Television Programming|All Television Advertising Types|All Internet Distribution Formats', | 
| 952 |  |  |  |  |  |  | '2TED' => 'Motion Picture & TV|Television Programming|All Television Advertising Types|Recordable Media', | 
| 953 |  |  |  |  |  |  | '2TVB' => 'Motion Picture & TV|Television Programming|All Television Advertising Types|All Electronic Distribution Formats', | 
| 954 |  |  |  |  |  |  | '2TVK' => 'Motion Picture & TV|Television Programming|Educational Program|Television Broadcast', | 
| 955 |  |  |  |  |  |  | '2TEU' => 'Motion Picture & TV|Television Programming|Educational Program|Internet Downloadable File', | 
| 956 |  |  |  |  |  |  | '2TEV' => 'Motion Picture & TV|Television Programming|Educational Program|All Internet Distribution Formats', | 
| 957 |  |  |  |  |  |  | '2TEW' => 'Motion Picture & TV|Television Programming|Educational Program|Recordable Media', | 
| 958 |  |  |  |  |  |  | '2TVL' => 'Motion Picture & TV|Television Programming|Educational Program|All Electronic Distribution Formats', | 
| 959 |  |  |  |  |  |  | '2TVM' => 'Motion Picture & TV|Television Programming|Entertainment Program|Television Broadcast', | 
| 960 |  |  |  |  |  |  | '2TEY' => 'Motion Picture & TV|Television Programming|Entertainment Program|Internet Downloadable File', | 
| 961 |  |  |  |  |  |  | '2TEZ' => 'Motion Picture & TV|Television Programming|Entertainment Program|All Internet Distribution Formats', | 
| 962 |  |  |  |  |  |  | '2TLA' => 'Motion Picture & TV|Television Programming|Entertainment Program|Recordable Media', | 
| 963 |  |  |  |  |  |  | '2TVN' => 'Motion Picture & TV|Television Programming|Entertainment Program|All Electronic Distribution Formats', | 
| 964 |  |  |  |  |  |  | '2TVY' => 'Motion Picture & TV|Television Programming|Made For TV Movie|Television Broadcast', | 
| 965 |  |  |  |  |  |  | '2TLC' => 'Motion Picture & TV|Television Programming|Made For TV Movie|Internet Downloadable File', | 
| 966 |  |  |  |  |  |  | '2TLB' => 'Motion Picture & TV|Television Programming|Made For TV Movie|All Internet Distribution Formats', | 
| 967 |  |  |  |  |  |  | '2TLD' => 'Motion Picture & TV|Television Programming|Made For TV Movie|Recordable Media', | 
| 968 |  |  |  |  |  |  | '2TVP' => 'Motion Picture & TV|Television Programming|Made For TV Movie|All Electronic Distribution Formats', | 
| 969 |  |  |  |  |  |  | '2TEF' => 'Motion Picture & TV|Television Programming|News Program, Flash|Television Broadcast', | 
| 970 |  |  |  |  |  |  | '2TVS' => 'Motion Picture & TV|Television Programming|News Program|Television Broadcast', | 
| 971 |  |  |  |  |  |  | '2TLE' => 'Motion Picture & TV|Television Programming|News Program|Internet Downloadable File', | 
| 972 |  |  |  |  |  |  | '2TLF' => 'Motion Picture & TV|Television Programming|News Program|All Internet Distribution Formats', | 
| 973 |  |  |  |  |  |  | '2TLG' => 'Motion Picture & TV|Television Programming|News Program|Recordable Media', | 
| 974 |  |  |  |  |  |  | '2TVT' => 'Motion Picture & TV|Television Programming|News Program|All Electronic Distribution Formats', | 
| 975 |  |  |  |  |  |  | '2TLH' => 'Motion Picture & TV|Television Programming|Non Broadcast Pilot|Recordable Media', | 
| 976 |  |  |  |  |  |  | '2TLJ' => 'Motion Picture & TV|Television Programming|Non Broadcast Pilot|Projected Display', | 
| 977 |  |  |  |  |  |  | '2TVU' => 'Motion Picture & TV|Television Programming|Non-Profit Program|Television Broadcast', | 
| 978 |  |  |  |  |  |  | '2TLK' => 'Motion Picture & TV|Television Programming|Non-Profit Program|Internet Downloadable File', | 
| 979 |  |  |  |  |  |  | '2TLL' => 'Motion Picture & TV|Television Programming|Non-Profit Program|All Internet Distribution Formats', | 
| 980 |  |  |  |  |  |  | '2TLM' => 'Motion Picture & TV|Television Programming|Non-Profit Program|Recordable Media', | 
| 981 |  |  |  |  |  |  | '2TVV' => 'Motion Picture & TV|Television Programming|Non-Profit Program|All Electronic Distribution Formats', | 
| 982 |  |  |  |  |  |  | '2TLR' => 'Motion Picture & TV|Television Programming|Prop|Television Broadcast', | 
| 983 |  |  |  |  |  |  | '2TLN' => 'Motion Picture & TV|Television Programming|Prop|Internet Downloadable File', | 
| 984 |  |  |  |  |  |  | '2TLP' => 'Motion Picture & TV|Television Programming|Prop|All Internet Distribution Formats', | 
| 985 |  |  |  |  |  |  | '2TLQ' => 'Motion Picture & TV|Television Programming|Prop|Recordable Media', | 
| 986 |  |  |  |  |  |  | '2TVW' => 'Motion Picture & TV|Television Programming|Prop|All Electronic Distribution Formats', | 
| 987 |  |  |  |  |  |  | '2TLV' => 'Motion Picture & TV|Television Programming|Set Decor|Television Broadcast', | 
| 988 |  |  |  |  |  |  | '2TLS' => 'Motion Picture & TV|Television Programming|Set Decor|Internet Downloadable File', | 
| 989 |  |  |  |  |  |  | '2TLT' => 'Motion Picture & TV|Television Programming|Set Decor|All Internet Distribution Formats', | 
| 990 |  |  |  |  |  |  | '2TLU' => 'Motion Picture & TV|Television Programming|Set Decor|Recordable Media', | 
| 991 |  |  |  |  |  |  | '2TVQ' => 'Motion Picture & TV|Television Programming|Set Decor|All Electronic Distribution Formats', | 
| 992 |  |  |  |  |  |  | '2KOA' => 'Motion Picture & TV|Television Programming|Artist\'s Reference, All Types|Projected Display', | 
| 993 |  |  |  |  |  |  | '2KOB' => 'Motion Picture & TV|Television Programming|Artist\'s Reference, All Types|Internet Downloadable File', | 
| 994 |  |  |  |  |  |  | '2KOI' => 'Motion Picture & TV|Television Programming|Artist\'s Reference, All Types|All Internet Distribution Formats', | 
| 995 |  |  |  |  |  |  | '2KOP' => 'Motion Picture & TV|Television Programming|Artist\'s Reference, All Types|Recordable Media', | 
| 996 |  |  |  |  |  |  | '2KOR' => 'Motion Picture & TV|Television Programming|Artist\'s Reference, All Types|All Electronic Distribution Formats', | 
| 997 |  |  |  |  |  |  | '2KOS' => 'Motion Picture & TV|Television Programming|Artist\'s Reference, All Types|Television Broadcast', | 
| 998 |  |  |  |  |  |  | '2TEE' => 'Motion Picture & TV|Television Programming|All Editorial Television Types|Television Broadcast', | 
| 999 |  |  |  |  |  |  | '2TLW' => 'Motion Picture & TV|Television Programming|All Editorial Television Types|Internet Downloadable File', | 
| 1000 |  |  |  |  |  |  | '2TLY' => 'Motion Picture & TV|Television Programming|All Editorial Television Types|All Internet Distribution Formats', | 
| 1001 |  |  |  |  |  |  | '2TLZ' => 'Motion Picture & TV|Television Programming|All Editorial Television Types|Recordable Media', | 
| 1002 |  |  |  |  |  |  | '2TVZ' => 'Motion Picture & TV|Television Programming|All Editorial Television Types|All Electronic Distribution Formats', | 
| 1003 |  |  |  |  |  |  | '2JOT' => 'Motion Picture & TV|Motion Picture|In Theater Commercial|Projected Display', | 
| 1004 |  |  |  |  |  |  | '2ATE' => 'Motion Picture & TV|Motion Picture|Movie Trailer|Projected Display', | 
| 1005 |  |  |  |  |  |  | '2MPP' => 'Motion Picture & TV|Motion Picture|Movie Trailer|Internet Downloadable File', | 
| 1006 |  |  |  |  |  |  | '2BET' => 'Motion Picture & TV|Motion Picture|Movie Trailer|All Internet Distribution Formats', | 
| 1007 |  |  |  |  |  |  | '2DIG' => 'Motion Picture & TV|Motion Picture|Movie Trailer|Recordable Media', | 
| 1008 |  |  |  |  |  |  | '2AID' => 'Motion Picture & TV|Motion Picture|Movie Trailer|All Electronic Distribution Formats', | 
| 1009 |  |  |  |  |  |  | '2MPF' => 'Motion Picture & TV|Motion Picture|Movie Trailer|Television Broadcast', | 
| 1010 |  |  |  |  |  |  | '2JOG' => 'Motion Picture & TV|Motion Picture|Documentary Film|Projected Display', | 
| 1011 |  |  |  |  |  |  | '2MPM' => 'Motion Picture & TV|Motion Picture|Documentary Film|Internet Downloadable File', | 
| 1012 |  |  |  |  |  |  | '2TUG' => 'Motion Picture & TV|Motion Picture|Documentary Film|All Internet Distribution Formats', | 
| 1013 |  |  |  |  |  |  | '2TRY' => 'Motion Picture & TV|Motion Picture|Documentary Film|Recordable Media', | 
| 1014 |  |  |  |  |  |  | '2DOC' => 'Motion Picture & TV|Motion Picture|Documentary Film|All Electronic Distribution Formats', | 
| 1015 |  |  |  |  |  |  | '2MPD' => 'Motion Picture & TV|Motion Picture|Documentary Film|Television Broadcast', | 
| 1016 |  |  |  |  |  |  | '2FEA' => 'Motion Picture & TV|Motion Picture|Feature Film|Projected Display', | 
| 1017 |  |  |  |  |  |  | '2MPN' => 'Motion Picture & TV|Motion Picture|Feature Film|Internet Downloadable File', | 
| 1018 |  |  |  |  |  |  | '2WAG' => 'Motion Picture & TV|Motion Picture|Feature Film|All Internet Distribution Formats', | 
| 1019 |  |  |  |  |  |  | '2WIN' => 'Motion Picture & TV|Motion Picture|Feature Film|Recordable Media', | 
| 1020 |  |  |  |  |  |  | '2FIL' => 'Motion Picture & TV|Motion Picture|Feature Film|All Electronic Distribution Formats', | 
| 1021 |  |  |  |  |  |  | '2MPE' => 'Motion Picture & TV|Motion Picture|Feature Film|Television Broadcast', | 
| 1022 |  |  |  |  |  |  | '2WIZ' => 'Motion Picture & TV|Motion Picture|Short Film|Projected Display', | 
| 1023 |  |  |  |  |  |  | '2MPS' => 'Motion Picture & TV|Motion Picture|Short Film|Internet Downloadable File', | 
| 1024 |  |  |  |  |  |  | '2ASK' => 'Motion Picture & TV|Motion Picture|Short Film|All Internet Distribution Formats', | 
| 1025 |  |  |  |  |  |  | '2AIM' => 'Motion Picture & TV|Motion Picture|Short Film|Recordable Media', | 
| 1026 |  |  |  |  |  |  | '2FIT' => 'Motion Picture & TV|Motion Picture|Short Film|All Electronic Distribution Formats', | 
| 1027 |  |  |  |  |  |  | '2MPI' => 'Motion Picture & TV|Motion Picture|Short Film|Television Broadcast', | 
| 1028 |  |  |  |  |  |  | '2MPG' => 'Motion Picture & TV|Motion Picture|Prop|Television Broadcast', | 
| 1029 |  |  |  |  |  |  | '2HOP' => 'Motion Picture & TV|Motion Picture|Prop|Projected Display', | 
| 1030 |  |  |  |  |  |  | '2MPQ' => 'Motion Picture & TV|Motion Picture|Prop|Internet Downloadable File', | 
| 1031 |  |  |  |  |  |  | '2HIT' => 'Motion Picture & TV|Motion Picture|Prop|All Internet Distribution Formats', | 
| 1032 |  |  |  |  |  |  | '2FRY' => 'Motion Picture & TV|Motion Picture|Prop|Recordable Media', | 
| 1033 |  |  |  |  |  |  | '2EFX' => 'Motion Picture & TV|Motion Picture|Prop|All Electronic Distribution Formats', | 
| 1034 |  |  |  |  |  |  | '2MPH' => 'Motion Picture & TV|Motion Picture|Set Decor|Television Broadcast', | 
| 1035 |  |  |  |  |  |  | '2MPR' => 'Motion Picture & TV|Motion Picture|Set Decor|Internet Downloadable File', | 
| 1036 |  |  |  |  |  |  | '2JAB' => 'Motion Picture & TV|Motion Picture|Set Decor|All Internet Distribution Formats', | 
| 1037 |  |  |  |  |  |  | '2HUG' => 'Motion Picture & TV|Motion Picture|Set Decor|Recordable Media', | 
| 1038 |  |  |  |  |  |  | '2HUM' => 'Motion Picture & TV|Motion Picture|Set Decor|All Electronic Distribution Formats', | 
| 1039 |  |  |  |  |  |  | '2ARC' => 'Motion Picture & TV|Motion Picture|Set Decor|Projected Display', | 
| 1040 |  |  |  |  |  |  | '2TAP' => 'Motion Picture & TV|Motion Picture|Artist\'s Reference, All Types|Projected Display', | 
| 1041 |  |  |  |  |  |  | '2MPL' => 'Motion Picture & TV|Motion Picture|Artist\'s Reference, All Types|Internet Downloadable File', | 
| 1042 |  |  |  |  |  |  | '2NOD' => 'Motion Picture & TV|Motion Picture|Artist\'s Reference, All Types|All Internet Distribution Formats', | 
| 1043 |  |  |  |  |  |  | '2MIX' => 'Motion Picture & TV|Motion Picture|Artist\'s Reference, All Types|Recordable Media', | 
| 1044 |  |  |  |  |  |  | '2NAP' => 'Motion Picture & TV|Motion Picture|Artist\'s Reference, All Types|All Electronic Distribution Formats', | 
| 1045 |  |  |  |  |  |  | '2MPC' => 'Motion Picture & TV|Motion Picture|Artist\'s Reference, All Types|Television Broadcast', | 
| 1046 |  |  |  |  |  |  | '2FIX' => 'Motion Picture & TV|Motion Picture|All Motion Picture Types|Projected Display', | 
| 1047 |  |  |  |  |  |  | '2MPJ' => 'Motion Picture & TV|Motion Picture|All Motion Picture Types|Internet Downloadable File', | 
| 1048 |  |  |  |  |  |  | '2DIP' => 'Motion Picture & TV|Motion Picture|All Motion Picture Types|All Internet Distribution Formats', | 
| 1049 |  |  |  |  |  |  | '2MOV' => 'Motion Picture & TV|Motion Picture|All Motion Picture Types|Recordable Media', | 
| 1050 |  |  |  |  |  |  | '2MPA' => 'Motion Picture & TV|Motion Picture|All Motion Picture Types|Television Broadcast', | 
| 1051 |  |  |  |  |  |  | '2ACT' => 'Motion Picture & TV|Motion Picture|All Motion Picture Types|All Electronic Distribution Formats', | 
| 1052 |  |  |  |  |  |  | '2MPB' => 'Motion Picture & TV|Music Video|All Music Video Types|Television Broadcast', | 
| 1053 |  |  |  |  |  |  | '2MPK' => 'Motion Picture & TV|Music Video|All Music Video Types|Internet Downloadable File', | 
| 1054 |  |  |  |  |  |  | '2BER' => 'Motion Picture & TV|Music Video|All Music Video Types|Recordable Media', | 
| 1055 |  |  |  |  |  |  | '2BES' => 'Motion Picture & TV|Music Video|All Music Video Types|All Internet Distribution Formats', | 
| 1056 |  |  |  |  |  |  | '2TVR' => 'Motion Picture & TV|Music Video|All Music Video Types|All Electronic Distribution Formats', | 
| 1057 |  |  |  |  |  |  | '2AAM' => 'Motion Picture & TV|All Media Types|All Formats|All Distribution Formats', | 
| 1058 |  |  |  |  |  |  | '2WED' => 'Personal Use|Personal Review|All Review Types|Printed', | 
| 1059 |  |  |  |  |  |  | '2DIM' => 'Personal Use|Personal Review|All Review Types|All Electronic Distribution Formats', | 
| 1060 |  |  |  |  |  |  | '2BFR' => 'Personal Use|Website|Web Page, All Types|Internet Website', | 
| 1061 |  |  |  |  |  |  | '2BFU' => 'Personal Use|Website|Web Page, All Types|All Internet Distribution Formats', | 
| 1062 |  |  |  |  |  |  | '2BFS' => 'Personal Use|Website|Web Page, All Types|Recordable Media', | 
| 1063 |  |  |  |  |  |  | '2BFT' => 'Personal Use|Website|Web Page, All Types|All Electronic Distribution Formats', | 
| 1064 |  |  |  |  |  |  | '2ZIT' => 'Personal Use|Mobile|Wallpaper|Mobile', | 
| 1065 |  |  |  |  |  |  | '2ZOB' => 'Personal Use|Mobile|All Mobile Types|Mobile', | 
| 1066 |  |  |  |  |  |  | '2BFN' => 'Personal Use|Art|Art Display, Display Print|Printed', | 
| 1067 |  |  |  |  |  |  | '2KIT' => 'Personal Use|Art|Art Display, All Art Types|Printed', | 
| 1068 |  |  |  |  |  |  | '2BFJ' => 'Personal Use|Art|Art Display, All Art Types|Internet Website', | 
| 1069 |  |  |  |  |  |  | '2BFI' => 'Personal Use|Art|Art Display, All Art Types|All Internet Distribution Formats', | 
| 1070 |  |  |  |  |  |  | '2BFK' => 'Personal Use|Art|Art Display, All Art Types|Electronic Display', | 
| 1071 |  |  |  |  |  |  | '2BFH' => 'Personal Use|Art|Art Display, All Art Types|All Electronic Distribution Formats', | 
| 1072 |  |  |  |  |  |  | '2TAT' => 'Personal Use|Art|Artist\'s Reference, Tattoo|Printed', | 
| 1073 |  |  |  |  |  |  | '2BFP' => 'Personal Use|Art|Study Print, Educational|Printed', | 
| 1074 |  |  |  |  |  |  | '2AAU' => 'Personal Use|All Media Types|All Formats|All Distribution Formats', | 
| 1075 |  |  |  |  |  |  | '2AAB' => 'All Categories|Book|All Book Types|All Distribution Formats', | 
| 1076 |  |  |  |  |  |  | '2AAD' => 'All Categories|Display|All Display Types|All Distribution Formats', | 
| 1077 |  |  |  |  |  |  | '2AAT' => 'All Categories|Marketing Materials|All Marketing Material Types|All Distribution Formats', | 
| 1078 |  |  |  |  |  |  | '2AAH' => 'All Categories|Merchandise|All Merchandise Types|All Distribution Formats', | 
| 1079 |  |  |  |  |  |  | '2AAL' => 'All Categories|Mobile|All Mobile Types|All Distribution Formats', | 
| 1080 |  |  |  |  |  |  | '2AAX' => 'All Categories|Motion Picture|All Motion Picture Types|All Distribution Formats', | 
| 1081 |  |  |  |  |  |  | '2AAV' => 'All Categories|Music Video|All Music Video Types|All Distribution Formats', | 
| 1082 |  |  |  |  |  |  | '2AAC' => 'All Categories|Periodicals|All Periodical Types|All Distribution Formats', | 
| 1083 |  |  |  |  |  |  | '2AAR' => 'All Categories|Point of Purchase|All Point Of Purchase Types|All Distribution Formats', | 
| 1084 |  |  |  |  |  |  | '2AAG' => 'All Categories|Product Packaging|All Product Packaging Types|All Distribution Formats', | 
| 1085 |  |  |  |  |  |  | '2AAN' => 'All Categories|Television Programming|All Television Programming Types|All Distribution Formats', | 
| 1086 |  |  |  |  |  |  | '2BAA' => 'All Categories|Website|All Web Page Types|All Distribution Formats', | 
| 1087 |  |  |  |  |  |  | '2ALL' => 'All Categories|All Media Types|All Formats|All Distribution Formats', | 
| 1088 |  |  |  |  |  |  | '2UNL' => 'Unlicensed|Not Applicable|Not Applicable|Not Applicable', | 
| 1089 |  |  |  |  |  |  | # 3P - Placement | 
| 1090 |  |  |  |  |  |  | '3PAA' => 'Any Placements on All Pages', | 
| 1091 |  |  |  |  |  |  | '3PXX' => 'Not Applicable or None', | 
| 1092 |  |  |  |  |  |  | '3PUL' => 'Any Placements', | 
| 1093 |  |  |  |  |  |  | '3PNQ' => 'Single Placement in Content Body', | 
| 1094 |  |  |  |  |  |  | '3PPU' => 'Single Placement on Title Page', | 
| 1095 |  |  |  |  |  |  | '3PQT' => 'Single Placement on Table Of Contents', | 
| 1096 |  |  |  |  |  |  | '3PQA' => 'Single Placement as Frontispiece', | 
| 1097 |  |  |  |  |  |  | '3PQI' => 'Single Placement on Preface', | 
| 1098 |  |  |  |  |  |  | '3PPW' => 'Single Placement as Forward', | 
| 1099 |  |  |  |  |  |  | '3PSA' => 'Single Placement as Front Matter', | 
| 1100 |  |  |  |  |  |  | '3PNI' => 'Single Placement as Chapter Opener', | 
| 1101 |  |  |  |  |  |  | '3PQN' => 'Single Placement as Vignette', | 
| 1102 |  |  |  |  |  |  | '3PRT' => 'Single Placement on Pop Up', | 
| 1103 |  |  |  |  |  |  | '3PNZ' => 'Single Placement in Bibliography', | 
| 1104 |  |  |  |  |  |  | '3PQZ' => 'Single Placement on Index', | 
| 1105 |  |  |  |  |  |  | '3PQG' => 'Single Placement on Any Interior Page', | 
| 1106 |  |  |  |  |  |  | '3PSR' => 'Single Placement on Inside Cover', | 
| 1107 |  |  |  |  |  |  | '3PQE' => 'Single Placement on Spine', | 
| 1108 |  |  |  |  |  |  | '3PSL' => 'Single Placement on Flap', | 
| 1109 |  |  |  |  |  |  | '3PSP' => 'Single Placement on Back Cover', | 
| 1110 |  |  |  |  |  |  | '3PNN' => 'Single Placement on Front Cover', | 
| 1111 |  |  |  |  |  |  | '3PTL' => 'Single Placement on Front Cover And Back Cover', | 
| 1112 |  |  |  |  |  |  | '3PPA' => 'Single Placement on Dust Jacket', | 
| 1113 |  |  |  |  |  |  | '3PTD' => 'Single Placements on Interior, Covers and Jacket', | 
| 1114 |  |  |  |  |  |  | '3PRY' => 'Multiple Placements in Content Body', | 
| 1115 |  |  |  |  |  |  | '3PRL' => 'Multiple Placements on Any Interior Pages', | 
| 1116 |  |  |  |  |  |  | '3PSU' => 'Multiple Placements on Inside Cover', | 
| 1117 |  |  |  |  |  |  | '3PQS' => 'Multiple Placements on Back Cover', | 
| 1118 |  |  |  |  |  |  | '3PRZ' => 'Multiple Placements on Front Cover', | 
| 1119 |  |  |  |  |  |  | '3PTM' => 'Multiple Placements on Front Cover And Back Cover', | 
| 1120 |  |  |  |  |  |  | '3PTC' => 'Multiple Placements on Dust Jacket', | 
| 1121 |  |  |  |  |  |  | '3PTE' => 'Multiple Placements on Interior, Covers and Jacket', | 
| 1122 |  |  |  |  |  |  | '3PST' => 'Single Placement on Any Interior Page', | 
| 1123 |  |  |  |  |  |  | '3PPK' => 'Single Placement on Inside Cover', | 
| 1124 |  |  |  |  |  |  | '3PNR' => 'Single Placement on Back Cover', | 
| 1125 |  |  |  |  |  |  | '3PRB' => 'Single Placement on Front Cover', | 
| 1126 |  |  |  |  |  |  | '3PUD' => 'Single Placement on Back Cover Or Interior Page', | 
| 1127 |  |  |  |  |  |  | '3PTB' => 'Single Placement on Front Cover And Interior Page', | 
| 1128 |  |  |  |  |  |  | '3PUF' => 'Single Placement on Front Cover Or Back Cover', | 
| 1129 |  |  |  |  |  |  | '3PNF' => 'Single Placement on Front Cover And Back Cover', | 
| 1130 |  |  |  |  |  |  | '3PTP' => 'Single Placement on Any Cover And Interior Page', | 
| 1131 |  |  |  |  |  |  | '3PQW' => 'Multiple Placements on Any Interior Pages', | 
| 1132 |  |  |  |  |  |  | '3PNY' => 'Multiple Placements on Inside Cover', | 
| 1133 |  |  |  |  |  |  | '3PNC' => 'Multiple Placements on Back Cover', | 
| 1134 |  |  |  |  |  |  | '3PPV' => 'Multiple Placements on Front Cover', | 
| 1135 |  |  |  |  |  |  | '3PRG' => 'Multiple Placements on Front Cover And Back Cover', | 
| 1136 |  |  |  |  |  |  | '3PTN' => 'Multiple Placements on Any Covers And Interior Pages', | 
| 1137 |  |  |  |  |  |  | '3PQX' => 'Single Placement on Any Interior Page', | 
| 1138 |  |  |  |  |  |  | '3PTF' => 'Single Placement on Section Opener Page', | 
| 1139 |  |  |  |  |  |  | '3PNT' => 'Single Placement on Front Page', | 
| 1140 |  |  |  |  |  |  | '3PTH' => 'Single Placement on Section Opener and Front Page', | 
| 1141 |  |  |  |  |  |  | '3PSY' => 'Multiple Placements on Any Interior Pages', | 
| 1142 |  |  |  |  |  |  | '3PTG' => 'Multiple Placements on Section Opener Page', | 
| 1143 |  |  |  |  |  |  | '3PTI' => 'Multiple Placements on Section Opener and Front Page', | 
| 1144 |  |  |  |  |  |  | '3PPM' => 'Multiple Placements on Any Pages', | 
| 1145 |  |  |  |  |  |  | '3PQJ' => 'Single Placement on Wrap Around Cover', | 
| 1146 |  |  |  |  |  |  | '3PQB' => 'Multiple Placements on Wrap Around Cover', | 
| 1147 |  |  |  |  |  |  | '3PRS' => 'Single Placement in Content Body', | 
| 1148 |  |  |  |  |  |  | '3PRI' => 'Single Placement as Colophon', | 
| 1149 |  |  |  |  |  |  | '3PRC' => 'Single Placement on Table Of Contents', | 
| 1150 |  |  |  |  |  |  | '3PQQ' => 'Single Placement as Unit Opener', | 
| 1151 |  |  |  |  |  |  | '3PND' => 'Single Placement as Chapter Opener', | 
| 1152 |  |  |  |  |  |  | '3PQF' => 'Single Placements in Bibliography', | 
| 1153 |  |  |  |  |  |  | '3PRN' => 'Single Placement on Any Interior Page', | 
| 1154 |  |  |  |  |  |  | '3PQH' => 'Single Placement on Back Cover', | 
| 1155 |  |  |  |  |  |  | '3PSJ' => 'Single Placement on Front Cover', | 
| 1156 |  |  |  |  |  |  | '3PTJ' => 'Single Placement on Any Covers And Interior Pages', | 
| 1157 |  |  |  |  |  |  | '3PRD' => 'Multiple Placements in Content Body', | 
| 1158 |  |  |  |  |  |  | '3PSM' => 'Multiple Placements on Any Interior Pages', | 
| 1159 |  |  |  |  |  |  | '3PSN' => 'Multiple Placements on Back Cover', | 
| 1160 |  |  |  |  |  |  | '3PPF' => 'Multiple Placements on Front Cover', | 
| 1161 |  |  |  |  |  |  | '3PTK' => 'Multiple Placements on Any Covers And Interior Pages', | 
| 1162 |  |  |  |  |  |  | '3PNE' => 'Single Placement on Front Side', | 
| 1163 |  |  |  |  |  |  | '3PQC' => 'Single Placement on Back Side', | 
| 1164 |  |  |  |  |  |  | '3PPL' => 'Single Placement on Both Sides', | 
| 1165 |  |  |  |  |  |  | '3PNV' => 'Multiple Placements on Front Side', | 
| 1166 |  |  |  |  |  |  | '3PSB' => 'Multiple Placements on Back Side', | 
| 1167 |  |  |  |  |  |  | '3PQK' => 'Multiple Placements on Both Sides', | 
| 1168 |  |  |  |  |  |  | '3PTA' => 'Single Placement on One Side', | 
| 1169 |  |  |  |  |  |  | '3PNB' => 'Multiple Placements on One Side', | 
| 1170 |  |  |  |  |  |  | '3PRQ' => 'Single Placement on Screen', | 
| 1171 |  |  |  |  |  |  | '3PSD' => 'Multiple Placements on Screen', | 
| 1172 |  |  |  |  |  |  | '3PPH' => 'Single Placement on Inside', | 
| 1173 |  |  |  |  |  |  | '3PSQ' => 'Single Placement on Back Side', | 
| 1174 |  |  |  |  |  |  | '3PRU' => 'Single Placement on Front Side', | 
| 1175 |  |  |  |  |  |  | '3PNP' => 'Single Placement on Both Sides', | 
| 1176 |  |  |  |  |  |  | '3PRK' => 'Multiple Placements on Inside', | 
| 1177 |  |  |  |  |  |  | '3PQM' => 'Multiple Placements on Back Side', | 
| 1178 |  |  |  |  |  |  | '3PNK' => 'Multiple Placements on Front Side', | 
| 1179 |  |  |  |  |  |  | '3PRV' => 'Multiple Placements on Both Sides', | 
| 1180 |  |  |  |  |  |  | '3PRH' => 'Single Placement on Any Interior Page', | 
| 1181 |  |  |  |  |  |  | '3PSH' => 'Single Placement on Back Cover', | 
| 1182 |  |  |  |  |  |  | '3PQY' => 'Single Placement on Front Cover', | 
| 1183 |  |  |  |  |  |  | '3PRM' => 'Single Placement on Front Cover And Back Cover', | 
| 1184 |  |  |  |  |  |  | '3PTQ' => 'Single Placement on Any Covers And Interior Pages', | 
| 1185 |  |  |  |  |  |  | '3PRF' => 'Multiple Placements on Any Interior Pages', | 
| 1186 |  |  |  |  |  |  | '3PSF' => 'Multiple Placements on Back Cover', | 
| 1187 |  |  |  |  |  |  | '3PRJ' => 'Multiple Placements on Front Cover', | 
| 1188 |  |  |  |  |  |  | '3PPP' => 'Multiple Placements on Front Cover And Interior Pages', | 
| 1189 |  |  |  |  |  |  | '3PSS' => 'Multiple Placements on Front Cover And Back Cover', | 
| 1190 |  |  |  |  |  |  | '3PTR' => 'Multiple Placements on Any Covers And Interior Pages', | 
| 1191 |  |  |  |  |  |  | '3PSW' => 'Single Placement on Item', | 
| 1192 |  |  |  |  |  |  | '3PNL' => 'Multiple Placements on Item', | 
| 1193 |  |  |  |  |  |  | '3PPX' => 'Single Placement on Packaging Exterior|Front', | 
| 1194 |  |  |  |  |  |  | '3PUJ' => 'Single Placement on Packaging Exterior|Back or Side', | 
| 1195 |  |  |  |  |  |  | '3PPD' => 'Single Placement in Packaging Interior', | 
| 1196 |  |  |  |  |  |  | '3PSI' => 'Multiple Placements on Packaging Exterior|Front', | 
| 1197 |  |  |  |  |  |  | '3PUH' => 'Multiple Placements on Packaging Exterior|Back or Side', | 
| 1198 |  |  |  |  |  |  | '3PPC' => 'Multiple Placements in Packaging Interior', | 
| 1199 |  |  |  |  |  |  | '3PTS' => 'Single Placement Anywhere On Packaging', | 
| 1200 |  |  |  |  |  |  | '3PTT' => 'Multiple Placements Anywhere On Packaging', | 
| 1201 |  |  |  |  |  |  | '3PNW' => 'Single Placement in Body Of Program', | 
| 1202 |  |  |  |  |  |  | '3PQU' => 'Single Placement in Closing Sequence', | 
| 1203 |  |  |  |  |  |  | '3PRR' => 'Single Placement in Title Sequence', | 
| 1204 |  |  |  |  |  |  | '3PTV' => 'Single Placement in Any Part', | 
| 1205 |  |  |  |  |  |  | '3PPZ' => 'Multiple Placements in Body Of Program', | 
| 1206 |  |  |  |  |  |  | '3PPN' => 'Multiple Placements in Closing Sequence', | 
| 1207 |  |  |  |  |  |  | '3PSV' => 'Multiple Placements in Title Sequence', | 
| 1208 |  |  |  |  |  |  | '3PTU' => 'Multiple Placements in Any Part', | 
| 1209 |  |  |  |  |  |  | '3PRP' => 'Single Placement in Body Of Advertisement', | 
| 1210 |  |  |  |  |  |  | '3PPJ' => 'Multiple Placements in Body Of Advertisement', | 
| 1211 |  |  |  |  |  |  | '3PPR' => 'Single Placement in Any Part', | 
| 1212 |  |  |  |  |  |  | '3PRW' => 'Multiple Placements in Any Part', | 
| 1213 |  |  |  |  |  |  | '3PQD' => 'Single Placement on Secondary Page', | 
| 1214 |  |  |  |  |  |  | '3PQP' => 'Single Placement on Pop Up', | 
| 1215 |  |  |  |  |  |  | '3PPS' => 'Single Placement on Landing Page', | 
| 1216 |  |  |  |  |  |  | '3PPG' => 'Single Placement on Splash Page', | 
| 1217 |  |  |  |  |  |  | '3PPY' => 'Single Placement on Home Page', | 
| 1218 |  |  |  |  |  |  | '3PTY' => 'Single Placement on Home Page And Secondary Pages', | 
| 1219 |  |  |  |  |  |  | '3PTW' => 'Single Placement on Any Pages', | 
| 1220 |  |  |  |  |  |  | '3PSZ' => 'Multiple Placements on Secondary Pages', | 
| 1221 |  |  |  |  |  |  | '3PNJ' => 'Multiple Placements on Pop Ups', | 
| 1222 |  |  |  |  |  |  | '3PPI' => 'Multiple Placements on Landing Pages', | 
| 1223 |  |  |  |  |  |  | '3PNS' => 'Multiple Placements on Splash Pages', | 
| 1224 |  |  |  |  |  |  | '3PNU' => 'Multiple Placements on Home Page', | 
| 1225 |  |  |  |  |  |  | '3PPQ' => 'Multiple Placements on Home Page And Secondary Pages', | 
| 1226 |  |  |  |  |  |  | '3PTZ' => 'Multiple Placements on Any Pages', | 
| 1227 |  |  |  |  |  |  | '3PPE' => 'Single Placement as Flash', | 
| 1228 |  |  |  |  |  |  | '3PNM' => 'Single Placement in Body Of Program', | 
| 1229 |  |  |  |  |  |  | '3PPB' => 'Single Placement in Closing Sequence', | 
| 1230 |  |  |  |  |  |  | '3PSC' => 'Single Placement in Title Sequence', | 
| 1231 |  |  |  |  |  |  | '3PUC' => 'Single Placement in Any Part', | 
| 1232 |  |  |  |  |  |  | '3PNX' => 'Multiple Placements as Flash', | 
| 1233 |  |  |  |  |  |  | '3PNH' => 'Multiple Placements in Body Of Program', | 
| 1234 |  |  |  |  |  |  | '3PQL' => 'Multiple Placements in Closing Sequence', | 
| 1235 |  |  |  |  |  |  | '3PSK' => 'Multiple Placements in Title Sequence', | 
| 1236 |  |  |  |  |  |  | '3PUB' => 'Multiple Placements in Any Part', | 
| 1237 |  |  |  |  |  |  | # 4S - Size | 
| 1238 |  |  |  |  |  |  | '4SAA' => 'Any Size Image|Any Size Media', | 
| 1239 |  |  |  |  |  |  | '4SXX' => 'Not Applicable or None', | 
| 1240 |  |  |  |  |  |  | '4SUL' => 'Any Sizes', | 
| 1241 |  |  |  |  |  |  | '4SJA' => 'Up To 1/16 Page|Any Size Page', | 
| 1242 |  |  |  |  |  |  | '4SBN' => 'Up To 1/8 Page Image|Any Size Page', | 
| 1243 |  |  |  |  |  |  | '4SJB' => 'Up To 1/4 Page Image|Any Size Page', | 
| 1244 |  |  |  |  |  |  | '4SEU' => 'Up To 1/3 Page Image|Any Size Page', | 
| 1245 |  |  |  |  |  |  | '4SEJ' => 'Up To 1/2 Page Image|Any Size Page', | 
| 1246 |  |  |  |  |  |  | '4SMG' => 'Up To 3/4 Page Image|Any Size Page', | 
| 1247 |  |  |  |  |  |  | '4SAG' => 'Up To Full Page Image|Any Size Page', | 
| 1248 |  |  |  |  |  |  | '4SFI' => 'Up To 2 Page Image|Any Size Pages', | 
| 1249 |  |  |  |  |  |  | '4SJZ' => 'Up To 3 Page Image|Any Size Pages', | 
| 1250 |  |  |  |  |  |  | '4SFG' => 'Up To 4 Page Image|Any Size Pages', | 
| 1251 |  |  |  |  |  |  | '4SBP' => 'Any Size Image|Any Size Page', | 
| 1252 |  |  |  |  |  |  | '4SGF' => 'Up To 1/4 Page Image|Up To 1/4 Page Ad', | 
| 1253 |  |  |  |  |  |  | '4SCH' => 'Up To 1/4 Page Image|Up To 1/2 Page Ad', | 
| 1254 |  |  |  |  |  |  | '4SIY' => 'Up To 1/4 Page Image|Up To Full Page Ad', | 
| 1255 |  |  |  |  |  |  | '4SCV' => 'Up To 1/2 Page Image|Up To 1/2 Page Ad', | 
| 1256 |  |  |  |  |  |  | '4SLY' => 'Up To 1/2 Page Image|Up To Full Page Ad', | 
| 1257 |  |  |  |  |  |  | '4SBU' => 'Up To 1/2 Page Image|Up To 2 Page Ad', | 
| 1258 |  |  |  |  |  |  | '4SCP' => 'Up To Full Page Image|Up To Full Page Ad', | 
| 1259 |  |  |  |  |  |  | '4SGL' => 'Up To Full Page Image|Up To 2 Page Ad', | 
| 1260 |  |  |  |  |  |  | '4SGM' => 'Up To Full Page Image|Any Size Ad', | 
| 1261 |  |  |  |  |  |  | '4SMB' => 'Up To 2 Page Image|Up To 2 Page Ad', | 
| 1262 |  |  |  |  |  |  | '4SFR' => 'Up To 2 Page Image|Any Size Ad', | 
| 1263 |  |  |  |  |  |  | '4SKP' => 'Any Size Image|Any Size Ad', | 
| 1264 |  |  |  |  |  |  | '4SBK' => 'Up To 1/16 Page Image|Any Size Page', | 
| 1265 |  |  |  |  |  |  | '4SJS' => 'Up To 1/8 Page Image|Any Size Page', | 
| 1266 |  |  |  |  |  |  | '4SLV' => 'Up To 1/4 Page Image|Any Size Page', | 
| 1267 |  |  |  |  |  |  | '4SGW' => 'Up To 1/2 Page Image|Any Size Page', | 
| 1268 |  |  |  |  |  |  | '4SKD' => 'Up To Full Page Image|Any Size Page', | 
| 1269 |  |  |  |  |  |  | '4SFJ' => 'Up To 2 Page Image|Any Size Pages', | 
| 1270 |  |  |  |  |  |  | '4SLA' => 'Any Size Image|Any Size Pages', | 
| 1271 |  |  |  |  |  |  | '4SKE' => 'Up To 1/8 Page Image|Any Size Page', | 
| 1272 |  |  |  |  |  |  | '4SAK' => 'Up To 1/4 Page Image|Any Size Page', | 
| 1273 |  |  |  |  |  |  | '4SLD' => 'Up To 1/2 Page Image|Any Size Page', | 
| 1274 |  |  |  |  |  |  | '4SJV' => 'Up To Full Page Image|Any Size Page', | 
| 1275 |  |  |  |  |  |  | '4SJU' => 'Up To 2 Page Image|Any Size Pages', | 
| 1276 |  |  |  |  |  |  | '4SIW' => 'Any Size Image|Any Size Pages', | 
| 1277 |  |  |  |  |  |  | '4SAL' => 'Up To 1/4 Area Image|Up To Full Area Media', | 
| 1278 |  |  |  |  |  |  | '4SJM' => 'Up To 1/2 Area Image|Up To Full Area Media', | 
| 1279 |  |  |  |  |  |  | '4SKZ' => 'Up To Full Area Image|Up To Full Area Media', | 
| 1280 |  |  |  |  |  |  | '4SCN' => 'Up To 1/8 Page Image|Up To Full Page Media', | 
| 1281 |  |  |  |  |  |  | '4SLW' => 'Up To 1/4 Page Image|Up To Full Page Media', | 
| 1282 |  |  |  |  |  |  | '4SIZ' => 'Up To 1/2 Page Image|Up To Full Page Media', | 
| 1283 |  |  |  |  |  |  | '4SAC' => 'Up To Full Page Image|Up To Full Page Media', | 
| 1284 |  |  |  |  |  |  | '4SFX' => 'Up To 8 x 10 Inch Image|Any Size Media', | 
| 1285 |  |  |  |  |  |  | '4SFP' => 'Up To 11 x 14 Inch Image|Any Size Media', | 
| 1286 |  |  |  |  |  |  | '4SMV' => 'Any Size Image|Any Size Media', | 
| 1287 |  |  |  |  |  |  | '4SJD' => 'Up To 21 x 30 cm Image|Any Size Media', | 
| 1288 |  |  |  |  |  |  | '4SFQ' => 'Up To 30 x 42 cm Image|Any Size Media', | 
| 1289 |  |  |  |  |  |  | '4SJK' => 'Any Size Image|Up To Full Card', | 
| 1290 |  |  |  |  |  |  | '4SEQ' => 'Up To 5 x 5 Inch Image|Up To 40 x 40 Inch Media', | 
| 1291 |  |  |  |  |  |  | '4SIV' => 'Up To 10 x 10 Inch Image|Up To 40 x 40 Inch Media', | 
| 1292 |  |  |  |  |  |  | '4SCE' => 'Up To 20 x 20 Inch Image|Up To 40 x 40 Inch Media', | 
| 1293 |  |  |  |  |  |  | '4SDP' => 'Up To 30x 30 Inch Image|Up To 40 x 40 Inch Media', | 
| 1294 |  |  |  |  |  |  | '4SCT' => 'Up To 40 x 40 Inch Image|Up To 40 x 40 Inch Media', | 
| 1295 |  |  |  |  |  |  | '4SBJ' => 'Up To 20 x 20 cm Image|Up To 100 x 100 cm Media', | 
| 1296 |  |  |  |  |  |  | '4SKI' => 'Up To 30 x 30 cm Image|Up To 100 x 100 cm Media', | 
| 1297 |  |  |  |  |  |  | '4SJW' => 'Up To 40 x 40 cm Image|Up To 100 x 100 cm Media', | 
| 1298 |  |  |  |  |  |  | '4SCB' => 'Up To 50 x 50 cm Image|Up To 100 x 100 cm Media', | 
| 1299 |  |  |  |  |  |  | '4SAT' => 'Up To 75 x 75 cm Image|Up To 100 x 100 cm Media', | 
| 1300 |  |  |  |  |  |  | '4SCI' => 'Up To 100 x 100 cm Image|Up To 100 x 100 cm Media', | 
| 1301 |  |  |  |  |  |  | '4SGP' => 'Any Size Image|Any Size Media', | 
| 1302 |  |  |  |  |  |  | '4SIX' => 'Up To 1/4 Area Image|Up To 11 x 36 Foot Display', | 
| 1303 |  |  |  |  |  |  | '4SHA' => 'Up To 1/4 Area Image|Up To 10 x 40 Foot Display', | 
| 1304 |  |  |  |  |  |  | '4SGU' => 'Up To 1/4 Area Image|Up To 14 x 48 Foot Display', | 
| 1305 |  |  |  |  |  |  | '4SAJ' => 'Up To 1/2 Area Image|Up To 11 x 36 Foot Display', | 
| 1306 |  |  |  |  |  |  | '4SDX' => 'Up To 1/2 Area Image|Up To 10 x 40 Foot Display', | 
| 1307 |  |  |  |  |  |  | '4SCR' => 'Up To 1/2 Area Image|Up To 14 x 48 Foot Display', | 
| 1308 |  |  |  |  |  |  | '4SFM' => 'Up To Full Area Image|Up To 11 x 36 Foot Display', | 
| 1309 |  |  |  |  |  |  | '4SKV' => 'Up To Full Area Image|Up To 10 x 40 Foot Display', | 
| 1310 |  |  |  |  |  |  | '4SGE' => 'Up To Full Area Image|Up To 14 x 48 Foot Display', | 
| 1311 |  |  |  |  |  |  | '4SMW' => 'Up To Full Area Image|Any Size Display', | 
| 1312 |  |  |  |  |  |  | '4SJI' => 'Up To 1/4 Area Image|Up To 4 x 8 Foot Media', | 
| 1313 |  |  |  |  |  |  | '4SBI' => 'Up To 1/4 Area Image|Up To 10 x 8 Foot Media', | 
| 1314 |  |  |  |  |  |  | '4SIM' => 'Up To 1/4 Area Image|Up To 12 x 24 Foot Media', | 
| 1315 |  |  |  |  |  |  | '4SFF' => 'Up To 1/4 Area Image|Any Size Media', | 
| 1316 |  |  |  |  |  |  | '4SAX' => 'Up To 1/2 Area Image|Up To 4 x 8 Foot Media', | 
| 1317 |  |  |  |  |  |  | '4SLI' => 'Up To 1/2 Area Image|Up To 10 x 8 Foot Media', | 
| 1318 |  |  |  |  |  |  | '4SLS' => 'Up To 1/2 Area Image|Up To 12 x 24 Foot Media', | 
| 1319 |  |  |  |  |  |  | '4SMK' => 'Up To 1/2 Area Image|Any Size Media', | 
| 1320 |  |  |  |  |  |  | '4SLG' => 'Up To Full Area Image|Up To 4 x 8 Foot Media', | 
| 1321 |  |  |  |  |  |  | '4SAN' => 'Up To Full Area Image|Up To 10 x 8 Foot Media', | 
| 1322 |  |  |  |  |  |  | '4SDI' => 'Up To Full Area Image|Up To 12 x 24 Foot Media', | 
| 1323 |  |  |  |  |  |  | '4SML' => 'Up To Full Area Image|Any Size Media', | 
| 1324 |  |  |  |  |  |  | '4SKF' => 'Up To 1/4 Area Image|Up To 672 Square Foot Display', | 
| 1325 |  |  |  |  |  |  | '4SKR' => 'Up To 1/4 Area Image|Up To 1,200 Square Foot Display', | 
| 1326 |  |  |  |  |  |  | '4SLK' => 'Up To 1/4 Area Image|Up To 2,400 Square Foot Display', | 
| 1327 |  |  |  |  |  |  | '4SJQ' => 'Up To 1/4 Area Image|Up To 4,800 Square Foot Display', | 
| 1328 |  |  |  |  |  |  | '4SEY' => 'Up To 1/4 Area Image|Up To 10,000 Square Foot Display', | 
| 1329 |  |  |  |  |  |  | '4SFE' => 'Up To 1/4 Area Image|Any Size Display', | 
| 1330 |  |  |  |  |  |  | '4SKS' => 'Up To 1/2 Area Image|Up To 672 Square Foot Display', | 
| 1331 |  |  |  |  |  |  | '4SGS' => 'Up To 1/2 Area Image|Up To 1,200 Square Foot Display', | 
| 1332 |  |  |  |  |  |  | '4SMA' => 'Up To 1/2 Area Image|Up To 2,400 Square Foot Display', | 
| 1333 |  |  |  |  |  |  | '4SAF' => 'Up To 1/2 Area Image|Up To 4,800 Square Foot Display', | 
| 1334 |  |  |  |  |  |  | '4SAW' => 'Up To 1/2 Area Image|Up To 10,000 Square Foot Display', | 
| 1335 |  |  |  |  |  |  | '4SAQ' => 'Up To 1/2 Area Image|Any Size Display', | 
| 1336 |  |  |  |  |  |  | '4SLN' => 'Up To Full Area Image|Up To 672 Square Foot Display', | 
| 1337 |  |  |  |  |  |  | '4SDS' => 'Up To Full Area Image|Up To 1,200 Square Foot Display', | 
| 1338 |  |  |  |  |  |  | '4SIT' => 'Up To Full Area Image|Up To 2,400 Square Foot Display', | 
| 1339 |  |  |  |  |  |  | '4SGX' => 'Up To Full Area Image|Up To 4,800 Square Foot Display', | 
| 1340 |  |  |  |  |  |  | '4SBD' => 'Up To Full Area Image|Up To 10,000 Square Foot Display', | 
| 1341 |  |  |  |  |  |  | '4SBF' => 'Up To Full Area Image|Any Size Display', | 
| 1342 |  |  |  |  |  |  | '4SDD' => 'Up To 1/4 Area Image|Up To 4 Sheet Display', | 
| 1343 |  |  |  |  |  |  | '4SBC' => 'Up To 1/4 Area Image|Up To 8 Sheet Display', | 
| 1344 |  |  |  |  |  |  | '4SLJ' => 'Up To 1/4 Area Image|Up To 12 Sheet Display', | 
| 1345 |  |  |  |  |  |  | '4SAD' => 'Up To 1/4 Area Image|Up To 16 Sheet Display', | 
| 1346 |  |  |  |  |  |  | '4SEA' => 'Up To 1/4 Area Image|Up To 30 Sheet Display', | 
| 1347 |  |  |  |  |  |  | '4SCD' => 'Up To 1/4 Area Image|Up To 48 Sheet Display', | 
| 1348 |  |  |  |  |  |  | '4SKX' => 'Up To 1/4 Area Image|Up To 96 Sheet Display', | 
| 1349 |  |  |  |  |  |  | '4SMN' => 'Up To 1/4 Area Image|Any Size Display', | 
| 1350 |  |  |  |  |  |  | '4SDU' => 'Up To 1/2 Area Image|Up To 4 Sheet Display', | 
| 1351 |  |  |  |  |  |  | '4SBL' => 'Up To 1/2 Area Image|Up To 8 Sheet Display', | 
| 1352 |  |  |  |  |  |  | '4SER' => 'Up To 1/2 Area Image|Up To 12 Sheet Display', | 
| 1353 |  |  |  |  |  |  | '4SEN' => 'Up To 1/2 Area Image|Up To 16 Sheet Display', | 
| 1354 |  |  |  |  |  |  | '4SLP' => 'Up To 1/2 Area Image|Up To 30 Sheet Display', | 
| 1355 |  |  |  |  |  |  | '4SGQ' => 'Up To 1/2 Area Image|Up To 48 Sheet Display', | 
| 1356 |  |  |  |  |  |  | '4SDF' => 'Up To 1/2 Area Image|Up To 96 Sheet Display', | 
| 1357 |  |  |  |  |  |  | '4SMP' => 'Up To 1/2 Area Image|Any Size Display', | 
| 1358 |  |  |  |  |  |  | '4SFL' => 'Up To Full Area Image|Up To 4 Sheet Display', | 
| 1359 |  |  |  |  |  |  | '4SFS' => 'Up To Full Area Image|Up To 8 Sheet Display', | 
| 1360 |  |  |  |  |  |  | '4SIF' => 'Up To Full Area Image|Up To 12 Sheet Display', | 
| 1361 |  |  |  |  |  |  | '4SIS' => 'Up To Full Area Image|Up To 16 Sheet Display', | 
| 1362 |  |  |  |  |  |  | '4SFD' => 'Up To Full Area Image|Up To 30 Sheet Display', | 
| 1363 |  |  |  |  |  |  | '4SFU' => 'Up To Full Area Image|Up To 48 Sheet Display', | 
| 1364 |  |  |  |  |  |  | '4SDK' => 'Up To Full Area Image|Up To 96 Sheet Display', | 
| 1365 |  |  |  |  |  |  | '4SMQ' => 'Up To Full Area Image|Any Size Display', | 
| 1366 |  |  |  |  |  |  | '4SKA' => 'Up To 1/4 Area Image|Up To 20 x 30 Inch Media', | 
| 1367 |  |  |  |  |  |  | '4SIK' => 'Up To 1/4 Area Image|Up To 24 x 36 Inch Media', | 
| 1368 |  |  |  |  |  |  | '4SFK' => 'Up To 1/4 Area Image|Up To 30 x 40 Inch Media', | 
| 1369 |  |  |  |  |  |  | '4SDV' => 'Up To 1/4 Area Image|Up To 40 x 60 Inch Media', | 
| 1370 |  |  |  |  |  |  | '4SMX' => 'Up To 1/4 Area Image|Any Size Media', | 
| 1371 |  |  |  |  |  |  | '4SEF' => 'Up To 1/4 Area Image|Up To A1 Media', | 
| 1372 |  |  |  |  |  |  | '4SCJ' => 'Up To 1/4 Area Image|Up To B1 Media', | 
| 1373 |  |  |  |  |  |  | '4SJG' => 'Up To 1/4 Area Image|Up To A0 Media', | 
| 1374 |  |  |  |  |  |  | '4SIP' => 'Up To 1/4 Area Image|Up To B0 Media', | 
| 1375 |  |  |  |  |  |  | '4SKU' => 'Up To 1/2 Area Image|Up To 20 x 30 Inch Media', | 
| 1376 |  |  |  |  |  |  | '4SAS' => 'Up To 1/2 Area Image|Up To 24 x 36 Inch Media', | 
| 1377 |  |  |  |  |  |  | '4SGB' => 'Up To 1/2 Area Image|Up To 30 x 40 Inch Media', | 
| 1378 |  |  |  |  |  |  | '4SBQ' => 'Up To 1/2 Area Image|Up To 40 x 60 Inch Media', | 
| 1379 |  |  |  |  |  |  | '4SMY' => 'Up To 1/2 Area Image|Any Size Media', | 
| 1380 |  |  |  |  |  |  | '4SKJ' => 'Up To 1/2 Area Image|Up To A1 Media', | 
| 1381 |  |  |  |  |  |  | '4SAM' => 'Up To 1/2 Area Image|Up To B1 Media', | 
| 1382 |  |  |  |  |  |  | '4SDZ' => 'Up To 1/2 Area Image|Up To A0 Media', | 
| 1383 |  |  |  |  |  |  | '4SGT' => 'Up To 1/2 Area Image|Up To B0 Media', | 
| 1384 |  |  |  |  |  |  | '4SKN' => 'Up To Full Area Image|Up To 20 x 30 Inch Media', | 
| 1385 |  |  |  |  |  |  | '4SIQ' => 'Up To Full Area Image|Up To 24 x 36 Inch Media', | 
| 1386 |  |  |  |  |  |  | '4SLT' => 'Up To Full Area Image|Up To 30 x 40 Inch Media', | 
| 1387 |  |  |  |  |  |  | '4SDN' => 'Up To Full Area Image|Up To 40 x 60 Inch Media', | 
| 1388 |  |  |  |  |  |  | '4SMZ' => 'Up To Full Area Image|Any Size Media', | 
| 1389 |  |  |  |  |  |  | '4SBH' => 'Up To Full Area Image|Up To A1 Media', | 
| 1390 |  |  |  |  |  |  | '4SLU' => 'Up To Full Area Image|Up To B1 Media', | 
| 1391 |  |  |  |  |  |  | '4SEL' => 'Up To Full Area Image|Up To A0 Media', | 
| 1392 |  |  |  |  |  |  | '4SBM' => 'Up To Full Area Image|Up To B0 Media', | 
| 1393 |  |  |  |  |  |  | '4SIH' => 'Up To 1/4 Area Image|Up To 24 x 30 Inch Display', | 
| 1394 |  |  |  |  |  |  | '4SKW' => 'Up To 1/4 Area Image|Up To 30 x 40 Inch Display', | 
| 1395 |  |  |  |  |  |  | '4SDM' => 'Up To 1/4 Area Image|Up To 27 x 85 Inch Display', | 
| 1396 |  |  |  |  |  |  | '4SJP' => 'Up To 1/4 Area Image|Up To 60 x 40 Inch Display', | 
| 1397 |  |  |  |  |  |  | '4SIB' => 'Up To 1/4 Area Image|Up To 69 x 48 Inch Display', | 
| 1398 |  |  |  |  |  |  | '4SDH' => 'Up To 1/4 Area Image|Up To 27 x 141 Inch Display', | 
| 1399 |  |  |  |  |  |  | '4SJL' => 'Up To 1/4 Area Image|Up To 30 x 240 Inch Display', | 
| 1400 |  |  |  |  |  |  | '4SLQ' => 'Up To 1/4 Area Image|Up To B1 Display', | 
| 1401 |  |  |  |  |  |  | '4SLL' => 'Up To 1/4 Area Image|Up To A0 Display', | 
| 1402 |  |  |  |  |  |  | '4SEI' => 'Up To 1/4 Area Image|Up To B0 Display', | 
| 1403 |  |  |  |  |  |  | '4SBA' => 'Up To 1/2 Area Image|Up To 24 x 30 Inch Display', | 
| 1404 |  |  |  |  |  |  | '4SCL' => 'Up To 1/2 Area Image|Up To 30 x 40 Inch Display', | 
| 1405 |  |  |  |  |  |  | '4SIC' => 'Up To 1/2 Area Image|Up To 27 x 85 Inch Display', | 
| 1406 |  |  |  |  |  |  | '4SBY' => 'Up To 1/2 Area Image|Up To 60 x 40 Inch Display', | 
| 1407 |  |  |  |  |  |  | '4SFZ' => 'Up To 1/2 Area Image|Up To 27 x 141 Inch Display', | 
| 1408 |  |  |  |  |  |  | '4SAU' => 'Up To 1/2 Area Image|Up To 26 x 241 Inch Display', | 
| 1409 |  |  |  |  |  |  | '4SBR' => 'Up To 1/2 Area Image|Up To 30 x 240 Inch Display', | 
| 1410 |  |  |  |  |  |  | '4SCC' => 'Up To 1/2 Area Image|Up To B1 Display', | 
| 1411 |  |  |  |  |  |  | '4SAB' => 'Up To 1/2 Area Image|Up To A0 Display', | 
| 1412 |  |  |  |  |  |  | '4SLX' => 'Up To 1/2 Area Image|Up To B0 Display', | 
| 1413 |  |  |  |  |  |  | '4SGI' => 'Up To Full Area Image|Up To 24 x 30 Inch Display', | 
| 1414 |  |  |  |  |  |  | '4SBT' => 'Up To Full Area Image|Up To 30 x 40 Inch Display', | 
| 1415 |  |  |  |  |  |  | '4SGK' => 'Up To Full Area Image|Up To 27 x 85 Inch Display', | 
| 1416 |  |  |  |  |  |  | '4SIL' => 'Up To Full Area Image|Up To 60 x 40 Inch Display', | 
| 1417 |  |  |  |  |  |  | '4SAH' => 'Up To Full Area Image|Up To 69 x 48 Inch Display', | 
| 1418 |  |  |  |  |  |  | '4SGA' => 'Up To Full Area Image|Up To 27 x 141 Inch Display', | 
| 1419 |  |  |  |  |  |  | '4SDR' => 'Up To Full Area Image|Up To 26 x 241 Inch Display', | 
| 1420 |  |  |  |  |  |  | '4SID' => 'Up To Full Area Image|Up To 30 x 240 Inch Display', | 
| 1421 |  |  |  |  |  |  | '4SCX' => 'Up To Full Area Image|Any Size Display', | 
| 1422 |  |  |  |  |  |  | '4SGR' => 'Up To Full Area Image|Up To B1 Display', | 
| 1423 |  |  |  |  |  |  | '4SEC' => 'Up To Full Area Image|Up To A0 Display', | 
| 1424 |  |  |  |  |  |  | '4SET' => 'Up To Full Area Image|Up To B0 Display', | 
| 1425 |  |  |  |  |  |  | '4SKT' => 'Up To 1/4 Area Image|Up To 43 x 62 Inch Display', | 
| 1426 |  |  |  |  |  |  | '4SEW' => 'Up To 1/4 Area Image|Up To 48 x 71 Inch Display', | 
| 1427 |  |  |  |  |  |  | '4SEH' => 'Up To 1/4 Area Image|Up To 43 x 126 Inch Display', | 
| 1428 |  |  |  |  |  |  | '4SBS' => 'Up To 1/4 Area Image|Up To 83 x 135 Inch Display', | 
| 1429 |  |  |  |  |  |  | '4SMR' => 'Up To 1/4 Area Image|Any Size Display', | 
| 1430 |  |  |  |  |  |  | '4SJX' => 'Up To 1/4 Area Image|Up To B0 Display', | 
| 1431 |  |  |  |  |  |  | '4SAY' => 'Up To 1/2 Area Image|Up To 43 x 62 Inch Display', | 
| 1432 |  |  |  |  |  |  | '4SKY' => 'Up To 1/2 Area Image|Up To 48 x 71 Inch Display', | 
| 1433 |  |  |  |  |  |  | '4SBV' => 'Up To 1/2 Area Image|Up To 43 x 126 Inch Display', | 
| 1434 |  |  |  |  |  |  | '4SEP' => 'Up To 1/2 Area Image|Up To 83 x 135 Inch Display', | 
| 1435 |  |  |  |  |  |  | '4SNG' => 'Up To 1/2 Area Image|Any Size Display', | 
| 1436 |  |  |  |  |  |  | '4SAZ' => 'Up To 1/2 Area Image|Up To B0 Display', | 
| 1437 |  |  |  |  |  |  | '4SDW' => 'Up To Full Area Image|Up To 43 x 62 Inch Display', | 
| 1438 |  |  |  |  |  |  | '4SFW' => 'Up To Full Area Image|Up To 48 x 71 Inch Display', | 
| 1439 |  |  |  |  |  |  | '4SGN' => 'Up To Full Area Image|Up To 43 x 126 Inch Display', | 
| 1440 |  |  |  |  |  |  | '4SBX' => 'Up To Full Area Image|Up To 83 x 135 Inch Display', | 
| 1441 |  |  |  |  |  |  | '4SNO' => 'Up To Full Area Image|Any Size Display', | 
| 1442 |  |  |  |  |  |  | '4SKK' => 'Up To Full Area Image|Up To B0 Display', | 
| 1443 |  |  |  |  |  |  | '4SAP' => 'Up To 1/4 Screen Image|Up To 32 Inch Screen', | 
| 1444 |  |  |  |  |  |  | '4SEK' => 'Up To 1/4 Screen Image|Up To 63 Inch Screen', | 
| 1445 |  |  |  |  |  |  | '4SLZ' => 'Up To 1/4 Screen Image|Up To 10 Diagonal Foot Screen', | 
| 1446 |  |  |  |  |  |  | '4SIE' => 'Up To 1/4 Screen Image|Up To 30 Diagonal Foot Screen', | 
| 1447 |  |  |  |  |  |  | '4SEM' => 'Up To 1/4 Screen Image|Up To 100 Diagonal Foot Screen', | 
| 1448 |  |  |  |  |  |  | '4SGJ' => 'Up To 1/2 Screen Image|Up To 32 Inch Screen', | 
| 1449 |  |  |  |  |  |  | '4SBE' => 'Up To 1/2 Screen Image|Up To 63 Inch Screen', | 
| 1450 |  |  |  |  |  |  | '4SIJ' => 'Up To 1/2 Screen Image|Up To 10 Diagonal Foot Screen', | 
| 1451 |  |  |  |  |  |  | '4SGY' => 'Up To 1/2 Screen Image|Up To 30 Diagonal Foot Screen', | 
| 1452 |  |  |  |  |  |  | '4SDQ' => 'Up To 1/2 Screen Image|Up To 100 Diagonal Foot Screen', | 
| 1453 |  |  |  |  |  |  | '4SBZ' => 'Up To Full Screen Image|Up To 32 Inch Screen', | 
| 1454 |  |  |  |  |  |  | '4SJF' => 'Up To Full Screen Image|Up To 63 Inch Screen', | 
| 1455 |  |  |  |  |  |  | '4SLE' => 'Up To Full Screen Image|Up To 10 Diagonal Foot Screen', | 
| 1456 |  |  |  |  |  |  | '4SJY' => 'Up To Full Screen Image|Up To 30 Diagonal Foot Screen', | 
| 1457 |  |  |  |  |  |  | '4SKC' => 'Up To Full Screen Image|Up To 100 Diagonal Foot Screen', | 
| 1458 |  |  |  |  |  |  | '4SDL' => 'Up To Full Screen Image|Any Size Screen', | 
| 1459 |  |  |  |  |  |  | '4SFA' => 'Up To 1/4 Area Image|Any Size Item', | 
| 1460 |  |  |  |  |  |  | '4SCG' => 'Up To 1/2 Area Image|Any Size Item', | 
| 1461 |  |  |  |  |  |  | '4SLR' => 'Up To Full Area Image|Any Size Item', | 
| 1462 |  |  |  |  |  |  | '4SGZ' => 'Up To 3 x 4.5 Inch Image|Any Size Media', | 
| 1463 |  |  |  |  |  |  | '4SFH' => 'Up To 5 x 7 Inch Image|Any Size Media', | 
| 1464 |  |  |  |  |  |  | '4SCU' => 'Up To 6 x 9 Inch Image|Any Size Media', | 
| 1465 |  |  |  |  |  |  | '4SLF' => 'Up To 8 x 10 Inch Image|Any Size Media', | 
| 1466 |  |  |  |  |  |  | '4SAV' => 'Up To 8 x 12 Inch Image|Any Size Media', | 
| 1467 |  |  |  |  |  |  | '4SKB' => 'Up To 11 x 14 Inch Image|Any Size Media', | 
| 1468 |  |  |  |  |  |  | '4SAE' => 'Up To 14 x 20 Inch Image|Any Size Media', | 
| 1469 |  |  |  |  |  |  | '4SEZ' => 'Up To 16 x 20 Inch Image|Any Size Media', | 
| 1470 |  |  |  |  |  |  | '4SDB' => 'Up To 20 x 24 Inch Image|Any Size Media', | 
| 1471 |  |  |  |  |  |  | '4SDG' => 'Up To 24 x 30 Inch Image|Any Size Media', | 
| 1472 |  |  |  |  |  |  | '4SDE' => 'Up To 30 x 40 Inch Image|Any Size Media', | 
| 1473 |  |  |  |  |  |  | '4SJE' => 'Up To 38 x 50 Inch Image|Any Size Media', | 
| 1474 |  |  |  |  |  |  | '4SCM' => 'Up To 40 x 60 Inch Image|Any Size Media', | 
| 1475 |  |  |  |  |  |  | '4SIN' => 'Any Size Image|Any Size Media', | 
| 1476 |  |  |  |  |  |  | '4SDA' => 'Up To 11 x 15 cm Image|Any Size Media', | 
| 1477 |  |  |  |  |  |  | '4SME' => 'Up To 13 x 18 cm Image|Any Size Media', | 
| 1478 |  |  |  |  |  |  | '4SFC' => 'Up To 15 x 21 cm Image|Any Size Media', | 
| 1479 |  |  |  |  |  |  | '4SIG' => 'Up To 18 x 25 cm Image|Any Size Media', | 
| 1480 |  |  |  |  |  |  | '4SEV' => 'Up To 21 x 30 cm Image|Any Size Media', | 
| 1481 |  |  |  |  |  |  | '4SJJ' => 'Up To 25 x 36 cm Image|Any Size Media', | 
| 1482 |  |  |  |  |  |  | '4SMD' => 'Up To 25 x 36 cm Image|Any Size Media', | 
| 1483 |  |  |  |  |  |  | '4SLH' => 'Up To 30 x 42 cm Image|Any Size Media', | 
| 1484 |  |  |  |  |  |  | '4SEE' => 'Up To 42 x 60 cm Image|Any Size Media', | 
| 1485 |  |  |  |  |  |  | '4SDC' => 'Up To 50 x 71 cm Image|Any Size Media', | 
| 1486 |  |  |  |  |  |  | '4SDY' => 'Up To 60 x 85 cm Image|Any Size Media', | 
| 1487 |  |  |  |  |  |  | '4SCQ' => 'Up To 70 x 100 cm Image|Any Size Media', | 
| 1488 |  |  |  |  |  |  | '4SMF' => 'Up To 85 x 119 cm Image|Any Size Media', | 
| 1489 |  |  |  |  |  |  | '4SJC' => 'Up To 100 x 142 cm Image|Any Size Media', | 
| 1490 |  |  |  |  |  |  | '4SFN' => 'Up To 1/4 Area Image|Up To 25 x 13 Inch Media', | 
| 1491 |  |  |  |  |  |  | '4SLC' => 'Up To 1/4 Area Image|Up To 50 x 24 Inch Media', | 
| 1492 |  |  |  |  |  |  | '4SIR' => 'Up To 1/4 Area Image|Up To 26 x 53 Inch Media', | 
| 1493 |  |  |  |  |  |  | '4SDT' => 'Up To 1/4 Area Image|Up To 46 x 60 Inch Media', | 
| 1494 |  |  |  |  |  |  | '4SFB' => 'Up To 1/4 Area Image|Up To 138 x 53 Inch Media', | 
| 1495 |  |  |  |  |  |  | '4SGV' => 'Up To 1/2 Area Image|Up To 25 x 13 Inch Media', | 
| 1496 |  |  |  |  |  |  | '4SJR' => 'Up To 1/2 Area Image|Up To 50 x 24 Inch Media', | 
| 1497 |  |  |  |  |  |  | '4SKL' => 'Up To 1/2 Area Image|Up To 26 x 53 Inch Media', | 
| 1498 |  |  |  |  |  |  | '4SEX' => 'Up To 1/2 Area Image|Up To 46 x 60 Inch Media', | 
| 1499 |  |  |  |  |  |  | '4SBW' => 'Up To 1/2 Area Image|Up To 138 x 53 Inch Media', | 
| 1500 |  |  |  |  |  |  | '4SJN' => 'Up To Full Area Image|Up To 25 x 13 Inch Media', | 
| 1501 |  |  |  |  |  |  | '4SKH' => 'Up To Full Area Image|Up To 50 x 24 Inch Media', | 
| 1502 |  |  |  |  |  |  | '4SKM' => 'Up To Full Area Image|Up To 26 x 53 Inch Media', | 
| 1503 |  |  |  |  |  |  | '4SGG' => 'Up To Full Area Image|Up To 46 x 60 Inch Media', | 
| 1504 |  |  |  |  |  |  | '4SDJ' => 'Up To Full Area Image|Up To 138 x 53 Inch Media', | 
| 1505 |  |  |  |  |  |  | '4SCZ' => 'Up To 1/4 Screen Image|Up To 15 Inch Screen', | 
| 1506 |  |  |  |  |  |  | '4SCS' => 'Up To 1/4 Screen Image|Up To 21 Inch Screen', | 
| 1507 |  |  |  |  |  |  | '4SMS' => 'Up To 1/4 Screen Image|Any Size Screen', | 
| 1508 |  |  |  |  |  |  | '4SED' => 'Up To 1/2 Screen Image|Up To 15 Inch Screen', | 
| 1509 |  |  |  |  |  |  | '4SFV' => 'Up To 1/2 Screen Image|Up To 21 Inch Screen', | 
| 1510 |  |  |  |  |  |  | '4SMT' => 'Up To 1/2 Screen Image|Any Size Screen', | 
| 1511 |  |  |  |  |  |  | '4SCY' => 'Up To Full Screen Image|Up To 15 Inch Screen', | 
| 1512 |  |  |  |  |  |  | '4SEB' => 'Up To Full Screen Image|Up To 21 Inch Screen', | 
| 1513 |  |  |  |  |  |  | '4SMU' => 'Up To Full Screen Image|Any Size Screen', | 
| 1514 |  |  |  |  |  |  | '4SGH' => 'Up To 1/4 Screen Image|Any Size Screen', | 
| 1515 |  |  |  |  |  |  | '4SGC' => 'Up To 1/2 Screen Image|Any Size Screen', | 
| 1516 |  |  |  |  |  |  | '4SES' => 'Up To Full Screen Image|Any Size Screen', | 
| 1517 |  |  |  |  |  |  | '4SKQ' => 'Up To 1/4 Area Image|Up To 180 x 150 Pixels Ad', | 
| 1518 |  |  |  |  |  |  | '4SCA' => 'Up To 1/4 Area Image|Up To 468 x 60 Pixels Ad', | 
| 1519 |  |  |  |  |  |  | '4SCK' => 'Up To 1/4 Area Image|Up To  728 x 90 Pixels Ad', | 
| 1520 |  |  |  |  |  |  | '4SCF' => 'Up To 1/4 Area Image|Up To  300 x 600 Pixels Ad', | 
| 1521 |  |  |  |  |  |  | '4SIU' => 'Up To 1/4 Area Image|Up To Full Screen Ad', | 
| 1522 |  |  |  |  |  |  | '4SAI' => 'Up To 1/2 Area Image|Up To 180 x 150 Pixels Ad', | 
| 1523 |  |  |  |  |  |  | '4SII' => 'Up To 1/2 Area Image|Up To 468 x 60 Pixels Ad', | 
| 1524 |  |  |  |  |  |  | '4SCW' => 'Up To 1/2 Area Image|Up To  728 x 90 Pixels Ad', | 
| 1525 |  |  |  |  |  |  | '4SLM' => 'Up To 1/2 Area Image|Up To  300 x 600 Pixels Ad', | 
| 1526 |  |  |  |  |  |  | '4SFT' => 'Up To 1/2 Area Image|Up To Full Screen Ad', | 
| 1527 |  |  |  |  |  |  | '4SJT' => 'Up To Full Area Image|Up To 180 x 150 Pixels Ad', | 
| 1528 |  |  |  |  |  |  | '4SGD' => 'Up To Full Area Image|Up To 468 x 60 Pixels Ad', | 
| 1529 |  |  |  |  |  |  | '4SAR' => 'Up To Full Area Image|Up To  728 x 90 Pixels Ad', | 
| 1530 |  |  |  |  |  |  | '4SEG' => 'Up To Full Area Image|Up To  300 x 600 Pixels Ad', | 
| 1531 |  |  |  |  |  |  | '4SBG' => 'Any Size Image|Up To Full Screen Ad', | 
| 1532 |  |  |  |  |  |  | '4SMH' => 'Up To 150 x 150 Pixels Image|Any Size Screen', | 
| 1533 |  |  |  |  |  |  | '4SMJ' => 'Up To 300 x 600 Pixels Image|Any Size Screen', | 
| 1534 |  |  |  |  |  |  | '4SKG' => 'Any Size Image|Any Size Screen', | 
| 1535 |  |  |  |  |  |  | # 5V - Version | 
| 1536 |  |  |  |  |  |  | '5VAA' => 'All Versions', | 
| 1537 |  |  |  |  |  |  | '5VXX' => 'Not Applicable or None', | 
| 1538 |  |  |  |  |  |  | '5VUL' => 'Any Versions', | 
| 1539 |  |  |  |  |  |  | '5VVM' => 'Single Print Version', | 
| 1540 |  |  |  |  |  |  | '5VVB' => 'Multiple Print Versions', | 
| 1541 |  |  |  |  |  |  | '5VUP' => 'Single Version', | 
| 1542 |  |  |  |  |  |  | '5VUY' => 'Multiple Versions', | 
| 1543 |  |  |  |  |  |  | '5VVC' => 'Single Paperback Edition', | 
| 1544 |  |  |  |  |  |  | '5VUK' => 'Single Hardcover Edition', | 
| 1545 |  |  |  |  |  |  | '5VVH' => 'Single Edition in All Binding Formats', | 
| 1546 |  |  |  |  |  |  | '5VVK' => 'Multiple Paperback Editions', | 
| 1547 |  |  |  |  |  |  | '5VUU' => 'Multiple Hardcover Editions', | 
| 1548 |  |  |  |  |  |  | '5VVL' => 'Multiple Editions in All Binding Formats', | 
| 1549 |  |  |  |  |  |  | '5VUZ' => 'Single Issue', | 
| 1550 |  |  |  |  |  |  | '5VVJ' => 'Multiple Issues', | 
| 1551 |  |  |  |  |  |  | '5VUG' => 'Single Edition', | 
| 1552 |  |  |  |  |  |  | '5VVG' => 'Multiple Editions', | 
| 1553 |  |  |  |  |  |  | # 6Q - Quantity | 
| 1554 |  |  |  |  |  |  | '6QAA' => 'Any Quantity', | 
| 1555 |  |  |  |  |  |  | '6QXX' => 'Not Applicable or None', | 
| 1556 |  |  |  |  |  |  | '6QUL' => 'Any Quantity', | 
| 1557 |  |  |  |  |  |  | '6QAU' => 'One|Print Run', | 
| 1558 |  |  |  |  |  |  | '6QDA' => 'Up To 10|Print Run', | 
| 1559 |  |  |  |  |  |  | '6QEY' => 'Up To 100|Print Run', | 
| 1560 |  |  |  |  |  |  | '6QBA' => 'Up To 1,000|Print Run', | 
| 1561 |  |  |  |  |  |  | '6QCW' => 'Up To 5,000|Print Run', | 
| 1562 |  |  |  |  |  |  | '6QEC' => 'Up To 10,000|Print Run', | 
| 1563 |  |  |  |  |  |  | '6QFD' => 'Up To 25,000|Print Run', | 
| 1564 |  |  |  |  |  |  | '6QBH' => 'Up To 40,000|Print Run', | 
| 1565 |  |  |  |  |  |  | '6QFR' => 'Up To 50,000|Print Run', | 
| 1566 |  |  |  |  |  |  | '6QDQ' => 'Up To 100,000|Print Run', | 
| 1567 |  |  |  |  |  |  | '6QBG' => 'Up To 250,000|Print Run', | 
| 1568 |  |  |  |  |  |  | '6QEN' => 'Up To 500,000|Print Run', | 
| 1569 |  |  |  |  |  |  | '6QDL' => 'Any Quantity Of|Print Run', | 
| 1570 |  |  |  |  |  |  | '6QBU' => 'One|Copy', | 
| 1571 |  |  |  |  |  |  | '6QDR' => 'Up To 10|Total Circulation', | 
| 1572 |  |  |  |  |  |  | '6QFU' => 'Up To 25|Total Circulation', | 
| 1573 |  |  |  |  |  |  | '6QFV' => 'Up To 50|Total Circulation', | 
| 1574 |  |  |  |  |  |  | '6QEJ' => 'Up To 100|Total Circulation', | 
| 1575 |  |  |  |  |  |  | '6QFW' => 'Up To 250|Total Circulation', | 
| 1576 |  |  |  |  |  |  | '6QFY' => 'Up To 500|Total Circulation', | 
| 1577 |  |  |  |  |  |  | '6QCD' => 'Up To 1,000|Total Circulation', | 
| 1578 |  |  |  |  |  |  | '6QFZ' => 'Up To 2,500|Total Circulation', | 
| 1579 |  |  |  |  |  |  | '6QAT' => 'Up To 5,000|Total Circulation', | 
| 1580 |  |  |  |  |  |  | '6QBB' => 'Up To 10,000|Total Circulation', | 
| 1581 |  |  |  |  |  |  | '6QFS' => 'Up To 25,000|Total Circulation', | 
| 1582 |  |  |  |  |  |  | '6QAN' => 'Up To 50,000|Total Circulation', | 
| 1583 |  |  |  |  |  |  | '6QCS' => 'Up To 100,000|Total Circulation', | 
| 1584 |  |  |  |  |  |  | '6QDT' => 'Up To 250,000|Total Circulation', | 
| 1585 |  |  |  |  |  |  | '6QCI' => 'Up To 500,000|Total Circulation', | 
| 1586 |  |  |  |  |  |  | '6QCN' => 'Up To 1 Million|Total Circulation', | 
| 1587 |  |  |  |  |  |  | '6QCK' => 'Up To 2 Million|Total Circulation', | 
| 1588 |  |  |  |  |  |  | '6QCL' => 'Up To 3 Million|Total Circulation', | 
| 1589 |  |  |  |  |  |  | '6QAV' => 'Up To 5 Million|Total Circulation', | 
| 1590 |  |  |  |  |  |  | '6QDK' => 'Up To 10 Million|Total Circulation', | 
| 1591 |  |  |  |  |  |  | '6QGB' => 'Up To 25 Million|Total Circulation', | 
| 1592 |  |  |  |  |  |  | '6QGC' => 'Up To 50 Million|Total Circulation', | 
| 1593 |  |  |  |  |  |  | '6QEV' => 'Any Quantity Of|Circulation', | 
| 1594 |  |  |  |  |  |  | '6QFI' => 'One|Reprint', | 
| 1595 |  |  |  |  |  |  | '6QDG' => 'Up To 10|Reprints', | 
| 1596 |  |  |  |  |  |  | '6QCB' => 'Up To 100|Reprints', | 
| 1597 |  |  |  |  |  |  | '6QAY' => 'Up To 1,000|Reprints', | 
| 1598 |  |  |  |  |  |  | '6QBF' => 'Up To 10,000|Reprints', | 
| 1599 |  |  |  |  |  |  | '6QCU' => 'Any Quantity Of|Reprints', | 
| 1600 |  |  |  |  |  |  | '6QEH' => 'One|Print Run', | 
| 1601 |  |  |  |  |  |  | '6QDH' => 'Up To 10|Print Run', | 
| 1602 |  |  |  |  |  |  | '6QAZ' => 'Up To 100|Print Run', | 
| 1603 |  |  |  |  |  |  | '6QFB' => 'Up To 1,000|Print Run', | 
| 1604 |  |  |  |  |  |  | '6QAQ' => 'Up To 5,000|Print Run', | 
| 1605 |  |  |  |  |  |  | '6QEG' => 'Up To 10,000|Print Run', | 
| 1606 |  |  |  |  |  |  | '6QBV' => 'Up To 25,000|Print Run', | 
| 1607 |  |  |  |  |  |  | '6QCG' => 'Up To 50,000|Print Run', | 
| 1608 |  |  |  |  |  |  | '6QAH' => 'Up To 100,000|Print Run', | 
| 1609 |  |  |  |  |  |  | '6QDE' => 'Up To 250,000|Print Run', | 
| 1610 |  |  |  |  |  |  | '6QDJ' => 'Up To 500,000|Print Run', | 
| 1611 |  |  |  |  |  |  | '6QCZ' => 'Up To 1 Million|Print Run', | 
| 1612 |  |  |  |  |  |  | '6QCT' => 'Up To 2 Million|Print Run', | 
| 1613 |  |  |  |  |  |  | '6QAR' => 'Up To 3 Million|Print Run', | 
| 1614 |  |  |  |  |  |  | '6QDC' => 'Up To 5 Million|Print Run', | 
| 1615 |  |  |  |  |  |  | '6QDU' => 'Up To 10 Million|Print Run', | 
| 1616 |  |  |  |  |  |  | '6QEU' => 'Any Quantity Of|Print Run', | 
| 1617 |  |  |  |  |  |  | '6QFT' => 'One|Copy', | 
| 1618 |  |  |  |  |  |  | '6QDI' => 'One|Display', | 
| 1619 |  |  |  |  |  |  | '6QDY' => 'Up To 5|Displays', | 
| 1620 |  |  |  |  |  |  | '6QFJ' => 'Up To 10|Displays', | 
| 1621 |  |  |  |  |  |  | '6QEL' => 'Up To 25|Displays', | 
| 1622 |  |  |  |  |  |  | '6QBD' => 'Up To 50|Displays', | 
| 1623 |  |  |  |  |  |  | '6QAE' => 'Up To 100|Displays', | 
| 1624 |  |  |  |  |  |  | '6QCE' => 'Up To 250|Displays', | 
| 1625 |  |  |  |  |  |  | '6QAP' => 'Up To 500|Displays', | 
| 1626 |  |  |  |  |  |  | '6QBY' => 'Up To 1,000|Displays', | 
| 1627 |  |  |  |  |  |  | '6QBC' => 'Up To 2,500|Displays', | 
| 1628 |  |  |  |  |  |  | '6QET' => 'Up To 5,000|Displays', | 
| 1629 |  |  |  |  |  |  | '6QFF' => 'Up To 10,000|Displays', | 
| 1630 |  |  |  |  |  |  | '6QDS' => 'Up To 25,000|Displays', | 
| 1631 |  |  |  |  |  |  | '6QES' => 'Up To 50,000|Displays', | 
| 1632 |  |  |  |  |  |  | '6QDZ' => 'Up To 100,000|Displays', | 
| 1633 |  |  |  |  |  |  | '6QBW' => 'Up To 250,000|Displays', | 
| 1634 |  |  |  |  |  |  | '6QAX' => 'Up To 500,000|Displays', | 
| 1635 |  |  |  |  |  |  | '6QDB' => 'Up To 1 Million|Displays', | 
| 1636 |  |  |  |  |  |  | '6QEK' => 'Up To 2 Million|Displays', | 
| 1637 |  |  |  |  |  |  | '6QFA' => 'Up To 3 Million|Displays', | 
| 1638 |  |  |  |  |  |  | '6QCJ' => 'Up To 5 Million|Displays', | 
| 1639 |  |  |  |  |  |  | '6QFQ' => 'Any Quantity Of|Displays', | 
| 1640 |  |  |  |  |  |  | '6QCX' => 'One|Display', | 
| 1641 |  |  |  |  |  |  | '6QBP' => 'Up To 5|Displays', | 
| 1642 |  |  |  |  |  |  | '6QAL' => 'Up To 10|Displays', | 
| 1643 |  |  |  |  |  |  | '6QDX' => 'Up To 25|Displays', | 
| 1644 |  |  |  |  |  |  | '6QEM' => 'Up To 50|Displays', | 
| 1645 |  |  |  |  |  |  | '6QEA' => 'Up To 100|Displays', | 
| 1646 |  |  |  |  |  |  | '6QFG' => 'Up To 250|Displays', | 
| 1647 |  |  |  |  |  |  | '6QAG' => 'Up To 500|Displays', | 
| 1648 |  |  |  |  |  |  | '6QEI' => 'Any Quantity Of|Displays', | 
| 1649 |  |  |  |  |  |  | '6QEP' => 'One|Copy', | 
| 1650 |  |  |  |  |  |  | '6QEX' => 'Two|Copies', | 
| 1651 |  |  |  |  |  |  | '6QCF' => 'Three|Copies', | 
| 1652 |  |  |  |  |  |  | '6QBK' => 'Four|Copies', | 
| 1653 |  |  |  |  |  |  | '6QBL' => 'Five|Copies', | 
| 1654 |  |  |  |  |  |  | '6QCP' => 'Up To 10|Copies', | 
| 1655 |  |  |  |  |  |  | '6QDV' => 'Up To 50|Copies', | 
| 1656 |  |  |  |  |  |  | '6QCM' => 'Up To 100|Copies', | 
| 1657 |  |  |  |  |  |  | '6QAI' => 'Up To 500|Copies', | 
| 1658 |  |  |  |  |  |  | '6QAS' => 'Up To 1,000|Copies', | 
| 1659 |  |  |  |  |  |  | '6QDW' => 'Up To 5,000|Copies', | 
| 1660 |  |  |  |  |  |  | '6QCQ' => 'Up To 10,000|Copies', | 
| 1661 |  |  |  |  |  |  | '6QAM' => 'Any Quantity Of|Copies', | 
| 1662 |  |  |  |  |  |  | '6QBE' => 'One|Copy', | 
| 1663 |  |  |  |  |  |  | '6QFC' => 'Up To 5|Copies', | 
| 1664 |  |  |  |  |  |  | '6QEB' => 'Up To 10|Copies', | 
| 1665 |  |  |  |  |  |  | '6QGD' => 'Up To 25|Copies', | 
| 1666 |  |  |  |  |  |  | '6QGE' => 'Up To 50|Copies', | 
| 1667 |  |  |  |  |  |  | '6QCR' => 'Up To 100|Copies', | 
| 1668 |  |  |  |  |  |  | '6QCA' => 'Up To 250|Copies', | 
| 1669 |  |  |  |  |  |  | '6QBS' => 'Up To 500|Copies', | 
| 1670 |  |  |  |  |  |  | '6QDF' => 'Up To 1,000|Copies', | 
| 1671 |  |  |  |  |  |  | '6QEW' => 'Up To 2,500|Copies', | 
| 1672 |  |  |  |  |  |  | '6QFE' => 'Up To 5,000|Copies', | 
| 1673 |  |  |  |  |  |  | '6QEE' => 'Up To 10,000|Copies', | 
| 1674 |  |  |  |  |  |  | '6QBT' => 'Up To 25,000|Copies', | 
| 1675 |  |  |  |  |  |  | '6QDP' => 'Up To 50,000|Copies', | 
| 1676 |  |  |  |  |  |  | '6QDN' => 'Up To 100,000|Copies', | 
| 1677 |  |  |  |  |  |  | '6QFN' => 'Any Quantity Of|Copies', | 
| 1678 |  |  |  |  |  |  | '6QFH' => 'Up To 10,000|Viewers', | 
| 1679 |  |  |  |  |  |  | '6QCV' => 'Up To 100,000|Viewers', | 
| 1680 |  |  |  |  |  |  | '6QBN' => 'Up To 1 Million|Viewers', | 
| 1681 |  |  |  |  |  |  | '6QFP' => 'Up To 10 Million|Viewers', | 
| 1682 |  |  |  |  |  |  | '6QBI' => 'Up To 100 Million|Viewers', | 
| 1683 |  |  |  |  |  |  | '6QBQ' => 'Any Quantity Of|Viewers', | 
| 1684 |  |  |  |  |  |  | '6QAB' => 'Up To 10,000|Impressions', | 
| 1685 |  |  |  |  |  |  | '6QBR' => 'Up To 100,000|Impressions', | 
| 1686 |  |  |  |  |  |  | '6QCY' => 'Up To 1 Million|Impressions', | 
| 1687 |  |  |  |  |  |  | '6QBM' => 'Up To 10 Million|Impressions', | 
| 1688 |  |  |  |  |  |  | '6QFM' => 'Any Quantity Of|Impressions', | 
| 1689 |  |  |  |  |  |  | '6QDD' => 'Up To 100|Viewers', | 
| 1690 |  |  |  |  |  |  | '6QEQ' => 'Up To 1,000|Viewers', | 
| 1691 |  |  |  |  |  |  | '6QEZ' => 'Up To 10,000|Viewers', | 
| 1692 |  |  |  |  |  |  | '6QBZ' => 'Up To 100,000|Viewers', | 
| 1693 |  |  |  |  |  |  | '6QCC' => 'Any Quantity Of|Viewers', | 
| 1694 |  |  |  |  |  |  | '6QCH' => 'One|Copy', | 
| 1695 |  |  |  |  |  |  | '6QAW' => 'Up To 5|Copies', | 
| 1696 |  |  |  |  |  |  | '6QAK' => 'Up To 10|Copies', | 
| 1697 |  |  |  |  |  |  | '6QFL' => 'Up To 100|Copies', | 
| 1698 |  |  |  |  |  |  | '6QAC' => 'Up To 1,000|Copies', | 
| 1699 |  |  |  |  |  |  | '6QAD' => 'Up To 10,000|Copies', | 
| 1700 |  |  |  |  |  |  | '6QEF' => 'Up To 25,000|Copies', | 
| 1701 |  |  |  |  |  |  | '6QAF' => 'Up To 50,000|Copies', | 
| 1702 |  |  |  |  |  |  | '6QED' => 'Up To 100,000|Copies', | 
| 1703 |  |  |  |  |  |  | '6QFK' => 'Up To 250,000|Copies', | 
| 1704 |  |  |  |  |  |  | '6QDM' => 'Up To 500,000|Copies', | 
| 1705 |  |  |  |  |  |  | '6QBX' => 'Up To 1 Million|Copies', | 
| 1706 |  |  |  |  |  |  | '6QER' => 'Any Quantity Of|Copies', | 
| 1707 |  |  |  |  |  |  | # 7D - Duration | 
| 1708 |  |  |  |  |  |  | '7DAA' => 'In Perpetuity', | 
| 1709 |  |  |  |  |  |  | '7DXX' => 'Not Applicable or None', | 
| 1710 |  |  |  |  |  |  | '7DUL' => 'Any Durations', | 
| 1711 |  |  |  |  |  |  | '7DUT' => 'Up To 10 Years', | 
| 1712 |  |  |  |  |  |  | '7DUS' => 'Up To 6 Months', | 
| 1713 |  |  |  |  |  |  | '7DUV' => 'Up To 6 Months', | 
| 1714 |  |  |  |  |  |  | '7DUW' => 'Up To 1 Year', | 
| 1715 |  |  |  |  |  |  | '7DUY' => 'Up To 3 Years', | 
| 1716 |  |  |  |  |  |  | '7DUZ' => 'Up To 5 Years', | 
| 1717 |  |  |  |  |  |  | '7DUQ' => 'Up To 10 Years', | 
| 1718 |  |  |  |  |  |  | '7DXC' => 'Up To 1 Day', | 
| 1719 |  |  |  |  |  |  | '7DXL' => 'Up To 1 Week', | 
| 1720 |  |  |  |  |  |  | '7DXH' => 'Life Of Publication', | 
| 1721 |  |  |  |  |  |  | '7DYF' => 'Up To 1 Day', | 
| 1722 |  |  |  |  |  |  | '7DWL' => 'Up To 1 Week', | 
| 1723 |  |  |  |  |  |  | '7DYJ' => 'Up To 2 Weeks', | 
| 1724 |  |  |  |  |  |  | '7DXF' => 'Up To 1 Month', | 
| 1725 |  |  |  |  |  |  | '7DZF' => 'Up To 2 Months', | 
| 1726 |  |  |  |  |  |  | '7DWC' => 'Up To 3 Months', | 
| 1727 |  |  |  |  |  |  | '7DWW' => 'Up To 6 Months', | 
| 1728 |  |  |  |  |  |  | '7DZA' => 'Up To 1 Year', | 
| 1729 |  |  |  |  |  |  | '7DZP' => 'Up To 2 Years', | 
| 1730 |  |  |  |  |  |  | '7DZJ' => 'Up To 3 Years', | 
| 1731 |  |  |  |  |  |  | '7DZK' => 'Up To 5 Years', | 
| 1732 |  |  |  |  |  |  | '7DZL' => 'Up To 10 Years', | 
| 1733 |  |  |  |  |  |  | '7DWS' => 'Life Of Publication', | 
| 1734 |  |  |  |  |  |  | '7DXZ' => 'Up To 3 Months', | 
| 1735 |  |  |  |  |  |  | '7DXW' => 'Up To 6 Months', | 
| 1736 |  |  |  |  |  |  | '7DXD' => 'Up To 1 Year', | 
| 1737 |  |  |  |  |  |  | '7DYS' => 'Life Of Publication', | 
| 1738 |  |  |  |  |  |  | '7DYM' => 'Up To 1 Year', | 
| 1739 |  |  |  |  |  |  | '7DWE' => 'Up To 2 Years', | 
| 1740 |  |  |  |  |  |  | '7DYL' => 'Up To 3 Years', | 
| 1741 |  |  |  |  |  |  | '7DWV' => 'Up To 5 Years', | 
| 1742 |  |  |  |  |  |  | '7DWB' => 'Up To 7 Years', | 
| 1743 |  |  |  |  |  |  | '7DYY' => 'Up To 10 Years', | 
| 1744 |  |  |  |  |  |  | '7DWG' => 'Up To 15 Years', | 
| 1745 |  |  |  |  |  |  | '7DXA' => 'Full Term Of Copyright', | 
| 1746 |  |  |  |  |  |  | '7DXT' => 'Up To 1 Day', | 
| 1747 |  |  |  |  |  |  | '7DXB' => 'Up To 1 Week', | 
| 1748 |  |  |  |  |  |  | '7DYI' => 'Up To 1 Month', | 
| 1749 |  |  |  |  |  |  | '7DWI' => 'Up To 1 Year', | 
| 1750 |  |  |  |  |  |  | '7DZM' => 'Up To 2 Years', | 
| 1751 |  |  |  |  |  |  | '7DZN' => 'Up To 3 Years', | 
| 1752 |  |  |  |  |  |  | '7DYV' => 'Life Of Event', | 
| 1753 |  |  |  |  |  |  | '7DXQ' => 'Up To 1 Year', | 
| 1754 |  |  |  |  |  |  | '7DZH' => 'Up To 2 Years', | 
| 1755 |  |  |  |  |  |  | '7DXP' => 'Up To 3 Years', | 
| 1756 |  |  |  |  |  |  | '7DYD' => 'Up To 5 Years', | 
| 1757 |  |  |  |  |  |  | '7DWU' => 'Up To 7 Years', | 
| 1758 |  |  |  |  |  |  | '7DXG' => 'Up To 10 Years', | 
| 1759 |  |  |  |  |  |  | '7DXV' => 'Up To 15 Years', | 
| 1760 |  |  |  |  |  |  | '7DWR' => 'In Perpetuity', | 
| 1761 |  |  |  |  |  |  | '7DXM' => 'Up To 1 Year', | 
| 1762 |  |  |  |  |  |  | '7DWK' => 'Up To 2 Years', | 
| 1763 |  |  |  |  |  |  | '7DXS' => 'In Perpetuity', | 
| 1764 |  |  |  |  |  |  | '7DYG' => 'Up To 1 Day', | 
| 1765 |  |  |  |  |  |  | '7DZD' => 'Up To 1 Week', | 
| 1766 |  |  |  |  |  |  | '7DWP' => 'Up To 13 Weeks', | 
| 1767 |  |  |  |  |  |  | '7DYT' => 'Up To 26 Weeks', | 
| 1768 |  |  |  |  |  |  | '7DWT' => 'Up To 52 Weeks', | 
| 1769 |  |  |  |  |  |  | '7DYA' => 'Up To 5 Years', | 
| 1770 |  |  |  |  |  |  | '7DXR' => 'Up To 10 Years', | 
| 1771 |  |  |  |  |  |  | '7DXI' => 'In Perpetuity', | 
| 1772 |  |  |  |  |  |  | '7DYW' => 'Up To 1 Day', | 
| 1773 |  |  |  |  |  |  | '7DYP' => 'Up To 1 Week', | 
| 1774 |  |  |  |  |  |  | '7DWJ' => 'Up To 1 Month', | 
| 1775 |  |  |  |  |  |  | '7DYE' => 'Up To 3 Months', | 
| 1776 |  |  |  |  |  |  | '7DYX' => 'Up To 6 Months', | 
| 1777 |  |  |  |  |  |  | '7DXE' => 'Up To 1 Year', | 
| 1778 |  |  |  |  |  |  | '7DWZ' => 'Up To 2 Years', | 
| 1779 |  |  |  |  |  |  | '7DZB' => 'Up To 3 Years', | 
| 1780 |  |  |  |  |  |  | '7DYN' => 'Up To 5 Years', | 
| 1781 |  |  |  |  |  |  | '7DYC' => 'Up To 10 Years', | 
| 1782 |  |  |  |  |  |  | '7DXY' => 'Up To 15 Years', | 
| 1783 |  |  |  |  |  |  | '7DWM' => 'In Perpetuity', | 
| 1784 |  |  |  |  |  |  | '7DYZ' => 'Up To 1 Day', | 
| 1785 |  |  |  |  |  |  | '7DXK' => 'Up To 1 Month', | 
| 1786 |  |  |  |  |  |  | '7DWY' => 'Up To 3 Months', | 
| 1787 |  |  |  |  |  |  | '7DYB' => 'Up To 6 Months', | 
| 1788 |  |  |  |  |  |  | '7DZG' => 'Up To 1 Year', | 
| 1789 |  |  |  |  |  |  | '7DYK' => 'Up To 2 Years', | 
| 1790 |  |  |  |  |  |  | '7DYQ' => 'In Perpetuity', | 
| 1791 |  |  |  |  |  |  | # 8R - Region | 
| 1792 |  |  |  |  |  |  | '8RAA' => 'Worldwide', | 
| 1793 |  |  |  |  |  |  | '8RXX' => 'Not Applicable or None', | 
| 1794 |  |  |  |  |  |  | '8RUL' => 'Any Regions', | 
| 1795 |  |  |  |  |  |  | '8RWA' => 'Broad International Region|Worldwide Excluding Northern America', | 
| 1796 |  |  |  |  |  |  | '8RWB' => 'Broad International Region|Worldwide Excluding USA', | 
| 1797 |  |  |  |  |  |  | '8RWC' => 'Broad International Region|Worldwide Excluding USA and Europe', | 
| 1798 |  |  |  |  |  |  | '8RWD' => 'Broad International Region|Worldwide Excluding Europe', | 
| 1799 |  |  |  |  |  |  | '8RWE' => 'Broad International Region|Worldwide Excluding USA and UK', | 
| 1800 |  |  |  |  |  |  | '8RWF' => 'Broad International Region|Worldwide Excluding UK', | 
| 1801 |  |  |  |  |  |  | '8RWG' => 'Broad International Region|All English Speaking Countries', | 
| 1802 |  |  |  |  |  |  | '8RWH' => 'Broad International Region|All English Speaking Countries Excluding USA', | 
| 1803 |  |  |  |  |  |  | '8RAH' => 'Broad International Region|All Spanish Speaking Countries', | 
| 1804 |  |  |  |  |  |  | '8RWI' => 'Broad International Region|All Spanish Speaking Countries Excluding USA', | 
| 1805 |  |  |  |  |  |  | '8RFY' => 'Broad International Region|All Americas', | 
| 1806 |  |  |  |  |  |  | '8REK' => 'Broad International Region|Europe, Middle East and Africa', | 
| 1807 |  |  |  |  |  |  | '8RWJ' => 'Broad International Region|USA, Canada and Mexico', | 
| 1808 |  |  |  |  |  |  | '8RQV' => 'Northern America|One Minor City, Up To 250,000 Population', | 
| 1809 |  |  |  |  |  |  | '8RQT' => 'Northern America|One Major City, Over 250,000 Population', | 
| 1810 |  |  |  |  |  |  | '8RQU' => 'Northern America|One Metropolitan Area, Adjoining Cities', | 
| 1811 |  |  |  |  |  |  | '8RRJ' => 'Northern America|One State Or Province', | 
| 1812 |  |  |  |  |  |  | '8RYK' => 'Northern America|Up To 3 States Or Provinces', | 
| 1813 |  |  |  |  |  |  | '8RCD' => 'Northern America|Up To 5 States Or Provinces', | 
| 1814 |  |  |  |  |  |  | '8RGJ' => 'Northern America|All Northern American Countries', | 
| 1815 |  |  |  |  |  |  | '8RCE' => 'Northern America|USA and Canada', | 
| 1816 |  |  |  |  |  |  | '8RHQ' => 'Northern America|USA', | 
| 1817 |  |  |  |  |  |  | '8RCA' => 'Northern America|Canada', | 
| 1818 |  |  |  |  |  |  | '8RHJ' => 'Northern America|USA-Central', | 
| 1819 |  |  |  |  |  |  | '8RHP' => 'Northern America|USA-Midwest', | 
| 1820 |  |  |  |  |  |  | '8RHR' => 'Northern America|USA-Northeast', | 
| 1821 |  |  |  |  |  |  | '8RHS' => 'Northern America|USA-Pacific Northwest', | 
| 1822 |  |  |  |  |  |  | '8RHW' => 'Northern America|USA-Southeast', | 
| 1823 |  |  |  |  |  |  | '8RHX' => 'Northern America|USA-Southwest', | 
| 1824 |  |  |  |  |  |  | '8RIA' => 'Northern America|USA-West', | 
| 1825 |  |  |  |  |  |  | '8RHY' => 'Northern America|USA-Minor Outlying Islands', | 
| 1826 |  |  |  |  |  |  | '8RUK' => 'Northern America|USA-All Territories, Protectorates, Dependencies, Outposts', | 
| 1827 |  |  |  |  |  |  | '8RBK' => 'Northern America|Canada-British Columbia', | 
| 1828 |  |  |  |  |  |  | '8RUM' => 'Northern America|Canada-Prairies', | 
| 1829 |  |  |  |  |  |  | '8RUN' => 'Northern America|Canada-Atlantic Provinces', | 
| 1830 |  |  |  |  |  |  | '8RCJ' => 'Northern America|Canada-Ontario', | 
| 1831 |  |  |  |  |  |  | '8RUP' => 'Northern America|Canada-Quebec', | 
| 1832 |  |  |  |  |  |  | '8RUQ' => 'Northern America|Canada-Northern Territories', | 
| 1833 |  |  |  |  |  |  | '8RBM' => 'Northern America|Bermuda', | 
| 1834 |  |  |  |  |  |  | '8RGL' => 'Northern America|Greenland', | 
| 1835 |  |  |  |  |  |  | '8RPM' => 'Northern America|Saint Pierre and Miquelon', | 
| 1836 |  |  |  |  |  |  | '8RQL' => 'Europe|One Minor City, Up To 250,000 Population', | 
| 1837 |  |  |  |  |  |  | '8RQJ' => 'Europe|One Major City, Over 250,000 Population', | 
| 1838 |  |  |  |  |  |  | '8RQK' => 'Europe|One Metropolitan Area, Adjoining Cities', | 
| 1839 |  |  |  |  |  |  | '8RRF' => 'Europe|One State Or Province', | 
| 1840 |  |  |  |  |  |  | '8RYF' => 'Europe|Up To 3 States Or Provinces', | 
| 1841 |  |  |  |  |  |  | '8RYG' => 'Europe|Up To 5 States Or Provinces', | 
| 1842 |  |  |  |  |  |  | '8RDU' => 'Europe|All Europe', | 
| 1843 |  |  |  |  |  |  | '8REL' => 'Europe|All European Union Countries', | 
| 1844 |  |  |  |  |  |  | '8REI' => 'Europe|All United Kingdom', | 
| 1845 |  |  |  |  |  |  | '8REJ' => 'Europe|All Western Europe', | 
| 1846 |  |  |  |  |  |  | '8RED' => 'Europe|All Northern Europe', | 
| 1847 |  |  |  |  |  |  | '8REB' => 'Europe|All European Mediterranean Countries', | 
| 1848 |  |  |  |  |  |  | '8REA' => 'Europe|All Eastern Europe', | 
| 1849 |  |  |  |  |  |  | '8RDW' => 'Europe|All Baltic States', | 
| 1850 |  |  |  |  |  |  | '8RDX' => 'Europe|All Benelux', | 
| 1851 |  |  |  |  |  |  | '8RDY' => 'Europe|All Caucasian States', | 
| 1852 |  |  |  |  |  |  | '8REF' => 'Europe|All Scandinavia', | 
| 1853 |  |  |  |  |  |  | '8RAX' => 'Europe|Aland Islands', | 
| 1854 |  |  |  |  |  |  | '8RAL' => 'Europe|Albania', | 
| 1855 |  |  |  |  |  |  | '8RAD' => 'Europe|Andorra', | 
| 1856 |  |  |  |  |  |  | '8RAM' => 'Europe|Armenia', | 
| 1857 |  |  |  |  |  |  | '8RAT' => 'Europe|Austria', | 
| 1858 |  |  |  |  |  |  | '8RAZ' => 'Europe|Azerbaijan', | 
| 1859 |  |  |  |  |  |  | '8RBY' => 'Europe|Belarus', | 
| 1860 |  |  |  |  |  |  | '8RBE' => 'Europe|Belgium', | 
| 1861 |  |  |  |  |  |  | '8RBA' => 'Europe|Bosnia and Herzegovina', | 
| 1862 |  |  |  |  |  |  | '8RBG' => 'Europe|Bulgaria', | 
| 1863 |  |  |  |  |  |  | '8RDR' => 'Europe|Croatia', | 
| 1864 |  |  |  |  |  |  | '8RCY' => 'Europe|Cyprus', | 
| 1865 |  |  |  |  |  |  | '8RCZ' => 'Europe|Czech Republic', | 
| 1866 |  |  |  |  |  |  | '8RDK' => 'Europe|Denmark', | 
| 1867 |  |  |  |  |  |  | '8REM' => 'Europe|England', | 
| 1868 |  |  |  |  |  |  | '8REE' => 'Europe|Estonia', | 
| 1869 |  |  |  |  |  |  | '8RDS' => 'Europe|Faeroe Islands', | 
| 1870 |  |  |  |  |  |  | '8RFI' => 'Europe|Finland', | 
| 1871 |  |  |  |  |  |  | '8RFR' => 'Europe|France', | 
| 1872 |  |  |  |  |  |  | '8RGE' => 'Europe|Georgia', | 
| 1873 |  |  |  |  |  |  | '8RDE' => 'Europe|Germany', | 
| 1874 |  |  |  |  |  |  | '8RGI' => 'Europe|Gibraltar', | 
| 1875 |  |  |  |  |  |  | '8RGR' => 'Europe|Greece', | 
| 1876 |  |  |  |  |  |  | '8RGG' => 'Europe|Guernsey', | 
| 1877 |  |  |  |  |  |  | '8RHU' => 'Europe|Hungary', | 
| 1878 |  |  |  |  |  |  | '8RIS' => 'Europe|Iceland', | 
| 1879 |  |  |  |  |  |  | '8RIE' => 'Europe|Ireland', | 
| 1880 |  |  |  |  |  |  | '8RIM' => 'Europe|Isle Of Man', | 
| 1881 |  |  |  |  |  |  | '8RIT' => 'Europe|Italy', | 
| 1882 |  |  |  |  |  |  | '8RJE' => 'Europe|Jersey', | 
| 1883 |  |  |  |  |  |  | '8RLV' => 'Europe|Latvia', | 
| 1884 |  |  |  |  |  |  | '8RLI' => 'Europe|Liechtenstein', | 
| 1885 |  |  |  |  |  |  | '8RLT' => 'Europe|Lithuania', | 
| 1886 |  |  |  |  |  |  | '8RLU' => 'Europe|Luxembourg', | 
| 1887 |  |  |  |  |  |  | '8RMK' => 'Europe|Macedonia', | 
| 1888 |  |  |  |  |  |  | '8RMT' => 'Europe|Malta', | 
| 1889 |  |  |  |  |  |  | '8RMD' => 'Europe|Moldova', | 
| 1890 |  |  |  |  |  |  | '8RMC' => 'Europe|Monaco', | 
| 1891 |  |  |  |  |  |  | '8RNL' => 'Europe|Netherlands', | 
| 1892 |  |  |  |  |  |  | '8RUH' => 'Europe|Northern Ireland', | 
| 1893 |  |  |  |  |  |  | '8RNO' => 'Europe|Norway', | 
| 1894 |  |  |  |  |  |  | '8RPL' => 'Europe|Poland', | 
| 1895 |  |  |  |  |  |  | '8RPT' => 'Europe|Portugal', | 
| 1896 |  |  |  |  |  |  | '8RRO' => 'Europe|Romania', | 
| 1897 |  |  |  |  |  |  | '8RRU' => 'Europe|Russian Federation', | 
| 1898 |  |  |  |  |  |  | '8RSM' => 'Europe|San Marino', | 
| 1899 |  |  |  |  |  |  | '8REN' => 'Europe|Scotland', | 
| 1900 |  |  |  |  |  |  | '8RCS' => 'Europe|Serbia and Montenegro', | 
| 1901 |  |  |  |  |  |  | '8RSK' => 'Europe|Slovakia', | 
| 1902 |  |  |  |  |  |  | '8RSI' => 'Europe|Slovenia', | 
| 1903 |  |  |  |  |  |  | '8RES' => 'Europe|Spain', | 
| 1904 |  |  |  |  |  |  | '8RSE' => 'Europe|Sweden', | 
| 1905 |  |  |  |  |  |  | '8RCH' => 'Europe|Switzerland', | 
| 1906 |  |  |  |  |  |  | '8RUA' => 'Europe|Ukraine', | 
| 1907 |  |  |  |  |  |  | '8RUI' => 'Europe|Wales', | 
| 1908 |  |  |  |  |  |  | '8RDT' => 'Europe|Vatican City State', | 
| 1909 |  |  |  |  |  |  | '8RQF' => 'Asia|One Minor City, Up To 250,000 Population', | 
| 1910 |  |  |  |  |  |  | '8RQD' => 'Asia|One Major City, Over 250,000 Population', | 
| 1911 |  |  |  |  |  |  | '8RQE' => 'Asia|One Metropolitan Area, Adjoining Cities', | 
| 1912 |  |  |  |  |  |  | '8RRC' => 'Asia|One State Or Province', | 
| 1913 |  |  |  |  |  |  | '8RAV' => 'Asia|Up To 3 States Or Provinces', | 
| 1914 |  |  |  |  |  |  | '8RYD' => 'Asia|Up To 5 States Or Provinces', | 
| 1915 |  |  |  |  |  |  | '8RDB' => 'Asia|All Asia', | 
| 1916 |  |  |  |  |  |  | '8RDC' => 'Asia|All Central Asia', | 
| 1917 |  |  |  |  |  |  | '8RCP' => 'Asia|All Eastern Asia', | 
| 1918 |  |  |  |  |  |  | '8RDG' => 'Asia|All Southern Asia', | 
| 1919 |  |  |  |  |  |  | '8RDH' => 'Asia|All Southeastern Asia', | 
| 1920 |  |  |  |  |  |  | '8RBD' => 'Asia|Bangladesh', | 
| 1921 |  |  |  |  |  |  | '8RBT' => 'Asia|Bhutan', | 
| 1922 |  |  |  |  |  |  | '8RBN' => 'Asia|Brunei Darussalam', | 
| 1923 |  |  |  |  |  |  | '8RKH' => 'Asia|Cambodia', | 
| 1924 |  |  |  |  |  |  | '8RCN' => 'Asia|All China', | 
| 1925 |  |  |  |  |  |  | '8RUB' => 'Asia|China-East', | 
| 1926 |  |  |  |  |  |  | '8RAY' => 'Asia|China-Northeast', | 
| 1927 |  |  |  |  |  |  | '8RUC' => 'Asia|China-North', | 
| 1928 |  |  |  |  |  |  | '8RUD' => 'Asia|China-South Central', | 
| 1929 |  |  |  |  |  |  | '8RUF' => 'Asia|China-Southwest', | 
| 1930 |  |  |  |  |  |  | '8RHK' => 'Asia|Hong Kong', | 
| 1931 |  |  |  |  |  |  | '8RIN' => 'Asia|India', | 
| 1932 |  |  |  |  |  |  | '8RID' => 'Asia|Indonesia', | 
| 1933 |  |  |  |  |  |  | '8RJP' => 'Asia|Japan', | 
| 1934 |  |  |  |  |  |  | '8RKZ' => 'Asia|Kazakhstan', | 
| 1935 |  |  |  |  |  |  | '8RKP' => 'Asia|North Korea', | 
| 1936 |  |  |  |  |  |  | '8RKR' => 'Asia|South Korea', | 
| 1937 |  |  |  |  |  |  | '8RKG' => 'Asia|Kyrgyzstan', | 
| 1938 |  |  |  |  |  |  | '8RLA' => 'Asia|Laos', | 
| 1939 |  |  |  |  |  |  | '8RMO' => 'Asia|Macao', | 
| 1940 |  |  |  |  |  |  | '8RMY' => 'Asia|Malaysia', | 
| 1941 |  |  |  |  |  |  | '8RMV' => 'Asia|Maldives', | 
| 1942 |  |  |  |  |  |  | '8RMN' => 'Asia|Mongolia', | 
| 1943 |  |  |  |  |  |  | '8RMM' => 'Asia|Myanmar', | 
| 1944 |  |  |  |  |  |  | '8RNP' => 'Asia|Nepal', | 
| 1945 |  |  |  |  |  |  | '8RPK' => 'Asia|Pakistan', | 
| 1946 |  |  |  |  |  |  | '8RPH' => 'Asia|Philippines', | 
| 1947 |  |  |  |  |  |  | '8RSG' => 'Asia|Singapore', | 
| 1948 |  |  |  |  |  |  | '8RTW' => 'Asia|Taiwan', | 
| 1949 |  |  |  |  |  |  | '8RTJ' => 'Asia|Tajikistan', | 
| 1950 |  |  |  |  |  |  | '8RTH' => 'Asia|Thailand', | 
| 1951 |  |  |  |  |  |  | '8RDA' => 'Asia|Tibet', | 
| 1952 |  |  |  |  |  |  | '8RTL' => 'Asia|Timor-Leste', | 
| 1953 |  |  |  |  |  |  | '8RTM' => 'Asia|Turkmenistan', | 
| 1954 |  |  |  |  |  |  | '8RUZ' => 'Asia|Uzbekistan', | 
| 1955 |  |  |  |  |  |  | '8RVN' => 'Asia|Viet Nam', | 
| 1956 |  |  |  |  |  |  | '8RQO' => 'Latin America and Caribbean|One Minor City, Up To 250,000 Population', | 
| 1957 |  |  |  |  |  |  | '8RQM' => 'Latin America and Caribbean|One Major City, Over 250,000 Population', | 
| 1958 |  |  |  |  |  |  | '8RQN' => 'Latin America and Caribbean|One Metropolitan Area, Adjoining Cities', | 
| 1959 |  |  |  |  |  |  | '8RRG' => 'Latin America and Caribbean|One State Or Province', | 
| 1960 |  |  |  |  |  |  | '8RYH' => 'Latin America and Caribbean|Up To 3 States Or Provinces', | 
| 1961 |  |  |  |  |  |  | '8RYI' => 'Latin America and Caribbean|Up To 5 States Or Provinces', | 
| 1962 |  |  |  |  |  |  | '8RAC' => 'Latin America and Caribbean|All Latin America and Caribbean', | 
| 1963 |  |  |  |  |  |  | '8RUJ' => 'Latin America and Caribbean|All Latin America', | 
| 1964 |  |  |  |  |  |  | '8RFZ' => 'Latin America and Caribbean|All Caribbean', | 
| 1965 |  |  |  |  |  |  | '8RFS' => 'Latin America and Caribbean|All South America', | 
| 1966 |  |  |  |  |  |  | '8RGC' => 'Latin America and Caribbean|All Central America', | 
| 1967 |  |  |  |  |  |  | '8RFT' => 'Latin America and Caribbean|All Andean Countries', | 
| 1968 |  |  |  |  |  |  | '8RFU' => 'Latin America and Caribbean|All Southern Cone', | 
| 1969 |  |  |  |  |  |  | '8RFV' => 'Latin America and Caribbean|All Amazonia', | 
| 1970 |  |  |  |  |  |  | '8RAI' => 'Latin America and Caribbean|Anguilla', | 
| 1971 |  |  |  |  |  |  | '8RAG' => 'Latin America and Caribbean|Antigua and Barbuda', | 
| 1972 |  |  |  |  |  |  | '8RAR' => 'Latin America and Caribbean|Argentina', | 
| 1973 |  |  |  |  |  |  | '8RAW' => 'Latin America and Caribbean|Aruba', | 
| 1974 |  |  |  |  |  |  | '8RBS' => 'Latin America and Caribbean|Bahamas', | 
| 1975 |  |  |  |  |  |  | '8RBB' => 'Latin America and Caribbean|Barbados', | 
| 1976 |  |  |  |  |  |  | '8RBZ' => 'Latin America and Caribbean|Belize', | 
| 1977 |  |  |  |  |  |  | '8RGZ' => 'Latin America and Caribbean|Bequia', | 
| 1978 |  |  |  |  |  |  | '8RBO' => 'Latin America and Caribbean|Bolivia', | 
| 1979 |  |  |  |  |  |  | '8RHA' => 'Latin America and Caribbean|Bonaire', | 
| 1980 |  |  |  |  |  |  | '8RBR' => 'Latin America and Caribbean|Brazil', | 
| 1981 |  |  |  |  |  |  | '8RHB' => 'Latin America and Caribbean|British Virgin Islands', | 
| 1982 |  |  |  |  |  |  | '8RKY' => 'Latin America and Caribbean|Cayman Islands', | 
| 1983 |  |  |  |  |  |  | '8RCL' => 'Latin America and Caribbean|Chile', | 
| 1984 |  |  |  |  |  |  | '8RCO' => 'Latin America and Caribbean|Colombia', | 
| 1985 |  |  |  |  |  |  | '8RCR' => 'Latin America and Caribbean|Costa Rica', | 
| 1986 |  |  |  |  |  |  | '8RCU' => 'Latin America and Caribbean|Cuba', | 
| 1987 |  |  |  |  |  |  | '8RHC' => 'Latin America and Caribbean|Curacao', | 
| 1988 |  |  |  |  |  |  | '8RDM' => 'Latin America and Caribbean|Dominica', | 
| 1989 |  |  |  |  |  |  | '8RDO' => 'Latin America and Caribbean|Dominican Republic', | 
| 1990 |  |  |  |  |  |  | '8REC' => 'Latin America and Caribbean|Ecuador', | 
| 1991 |  |  |  |  |  |  | '8RSV' => 'Latin America and Caribbean|El Salvador', | 
| 1992 |  |  |  |  |  |  | '8RFK' => 'Latin America and Caribbean|Falkland Islands, Malvinas', | 
| 1993 |  |  |  |  |  |  | '8RGF' => 'Latin America and Caribbean|French Guiana', | 
| 1994 |  |  |  |  |  |  | '8RGD' => 'Latin America and Caribbean|Grenada', | 
| 1995 |  |  |  |  |  |  | '8RGP' => 'Latin America and Caribbean|Guadeloupe', | 
| 1996 |  |  |  |  |  |  | '8RGT' => 'Latin America and Caribbean|Guatemala', | 
| 1997 |  |  |  |  |  |  | '8RGY' => 'Latin America and Caribbean|Guyana', | 
| 1998 |  |  |  |  |  |  | '8RHT' => 'Latin America and Caribbean|Haiti', | 
| 1999 |  |  |  |  |  |  | '8RHN' => 'Latin America and Caribbean|Honduras', | 
| 2000 |  |  |  |  |  |  | '8RJM' => 'Latin America and Caribbean|Jamaica', | 
| 2001 |  |  |  |  |  |  | '8RMQ' => 'Latin America and Caribbean|Martinique', | 
| 2002 |  |  |  |  |  |  | '8RMX' => 'Latin America and Caribbean|Mexico', | 
| 2003 |  |  |  |  |  |  | '8RMS' => 'Latin America and Caribbean|Montserrat', | 
| 2004 |  |  |  |  |  |  | '8RAN' => 'Latin America and Caribbean|Netherlands Antilles', | 
| 2005 |  |  |  |  |  |  | '8RNI' => 'Latin America and Caribbean|Nicaragua', | 
| 2006 |  |  |  |  |  |  | '8RPA' => 'Latin America and Caribbean|Panama', | 
| 2007 |  |  |  |  |  |  | '8RPY' => 'Latin America and Caribbean|Paraguay', | 
| 2008 |  |  |  |  |  |  | '8RFQ' => 'Latin America and Caribbean|Patagonia', | 
| 2009 |  |  |  |  |  |  | '8RPE' => 'Latin America and Caribbean|Peru', | 
| 2010 |  |  |  |  |  |  | '8RPR' => 'Latin America and Caribbean|Puerto Rico', | 
| 2011 |  |  |  |  |  |  | '8RHD' => 'Latin America and Caribbean|Saba', | 
| 2012 |  |  |  |  |  |  | '8RHE' => 'Latin America and Caribbean|Saint Barthelemy', | 
| 2013 |  |  |  |  |  |  | '8RHF' => 'Latin America and Caribbean|Saint Eustatius', | 
| 2014 |  |  |  |  |  |  | '8RKN' => 'Latin America and Caribbean|Saint Kitts and Nevis', | 
| 2015 |  |  |  |  |  |  | '8RLC' => 'Latin America and Caribbean|Saint Lucia', | 
| 2016 |  |  |  |  |  |  | '8RHG' => 'Latin America and Caribbean|Saint Martin', | 
| 2017 |  |  |  |  |  |  | '8RVC' => 'Latin America and Caribbean|Saint Vincent and The Grenadines', | 
| 2018 |  |  |  |  |  |  | '8RSR' => 'Latin America and Caribbean|Suriname', | 
| 2019 |  |  |  |  |  |  | '8RTT' => 'Latin America and Caribbean|Trinidad and Tobago', | 
| 2020 |  |  |  |  |  |  | '8RTC' => 'Latin America and Caribbean|Turks and Caicos Islands', | 
| 2021 |  |  |  |  |  |  | '8RHH' => 'Latin America and Caribbean|U.S. Virgin Islands', | 
| 2022 |  |  |  |  |  |  | '8RUY' => 'Latin America and Caribbean|Uruguay', | 
| 2023 |  |  |  |  |  |  | '8RVE' => 'Latin America and Caribbean|Venezuela', | 
| 2024 |  |  |  |  |  |  | '8RQZ' => 'Oceania|One Minor City, Up To 250,000 Population', | 
| 2025 |  |  |  |  |  |  | '8RQW' => 'Oceania|One Major City, Over 250,000 Population', | 
| 2026 |  |  |  |  |  |  | '8RQY' => 'Oceania|One Metropolitan Area, Adjoining Cities', | 
| 2027 |  |  |  |  |  |  | '8RRK' => 'Oceania|One State Or Province', | 
| 2028 |  |  |  |  |  |  | '8RYL' => 'Oceania|Up To 3 States Or Provinces', | 
| 2029 |  |  |  |  |  |  | '8RYM' => 'Oceania|Up To 5 States Or Provinces', | 
| 2030 |  |  |  |  |  |  | '8RCT' => 'Oceania|All Oceania', | 
| 2031 |  |  |  |  |  |  | '8RUR' => 'Oceania|All Australia and New Zealand', | 
| 2032 |  |  |  |  |  |  | '8RUS' => 'Oceania|All Oceania excluding Australia and New Zealand', | 
| 2033 |  |  |  |  |  |  | '8RAU' => 'Oceania|Australia', | 
| 2034 |  |  |  |  |  |  | '8RAS' => 'Oceania|American Samoa', | 
| 2035 |  |  |  |  |  |  | '8RCX' => 'Oceania|Christmas Island', | 
| 2036 |  |  |  |  |  |  | '8RCC' => 'Oceania|Cocos, Keeling Islands', | 
| 2037 |  |  |  |  |  |  | '8RKM' => 'Oceania|Comoros', | 
| 2038 |  |  |  |  |  |  | '8RCK' => 'Oceania|Cook Islands', | 
| 2039 |  |  |  |  |  |  | '8RFJ' => 'Oceania|Fiji', | 
| 2040 |  |  |  |  |  |  | '8RPF' => 'Oceania|French Polynesia', | 
| 2041 |  |  |  |  |  |  | '8RGU' => 'Oceania|Guam', | 
| 2042 |  |  |  |  |  |  | '8RKI' => 'Oceania|Kiribati', | 
| 2043 |  |  |  |  |  |  | '8RMG' => 'Oceania|Madagascar', | 
| 2044 |  |  |  |  |  |  | '8RMH' => 'Oceania|Marshall Islands', | 
| 2045 |  |  |  |  |  |  | '8RMU' => 'Oceania|Mauritius', | 
| 2046 |  |  |  |  |  |  | '8RFM' => 'Oceania|Micronesia', | 
| 2047 |  |  |  |  |  |  | '8RFF' => 'Oceania|Midway Islands', | 
| 2048 |  |  |  |  |  |  | '8RNR' => 'Oceania|Nauru', | 
| 2049 |  |  |  |  |  |  | '8RNC' => 'Oceania|New Caledonia', | 
| 2050 |  |  |  |  |  |  | '8RNZ' => 'Oceania|New Zealand', | 
| 2051 |  |  |  |  |  |  | '8RNU' => 'Oceania|Niue', | 
| 2052 |  |  |  |  |  |  | '8RNF' => 'Oceania|Norfolk Island', | 
| 2053 |  |  |  |  |  |  | '8RMP' => 'Oceania|Northern Mariana Islands', | 
| 2054 |  |  |  |  |  |  | '8RPW' => 'Oceania|Palau', | 
| 2055 |  |  |  |  |  |  | '8RPG' => 'Oceania|Papua New Guinea', | 
| 2056 |  |  |  |  |  |  | '8RPN' => 'Oceania|Pitcairn Islands', | 
| 2057 |  |  |  |  |  |  | '8RFH' => 'Oceania|Rapa Nui, Easter Island', | 
| 2058 |  |  |  |  |  |  | '8RWS' => 'Oceania|Samoa', | 
| 2059 |  |  |  |  |  |  | '8RSC' => 'Oceania|Seychelles', | 
| 2060 |  |  |  |  |  |  | '8RSB' => 'Oceania|Solomon Islands', | 
| 2061 |  |  |  |  |  |  | '8RLK' => 'Oceania|Sri Lanka', | 
| 2062 |  |  |  |  |  |  | '8RFL' => 'Oceania|Tahiti', | 
| 2063 |  |  |  |  |  |  | '8RTK' => 'Oceania|Tokelau', | 
| 2064 |  |  |  |  |  |  | '8RTO' => 'Oceania|Tonga', | 
| 2065 |  |  |  |  |  |  | '8RTV' => 'Oceania|Tuvalu', | 
| 2066 |  |  |  |  |  |  | '8RVU' => 'Oceania|Vanuatu', | 
| 2067 |  |  |  |  |  |  | '8RFP' => 'Oceania|Wallis and Futuna', | 
| 2068 |  |  |  |  |  |  | '8RQS' => 'Middle East|One Minor City, Up To 250,000 Population', | 
| 2069 |  |  |  |  |  |  | '8RQP' => 'Middle East|One Major City, Over 250,000 Population', | 
| 2070 |  |  |  |  |  |  | '8RQR' => 'Middle East|One Metropolitan Area, Adjoining Cities', | 
| 2071 |  |  |  |  |  |  | '8RRH' => 'Middle East|One State Or Province', | 
| 2072 |  |  |  |  |  |  | '8RYJ' => 'Middle East|Up To 3 States Or Provinces', | 
| 2073 |  |  |  |  |  |  | '8RBX' => 'Middle East|Up To 5 States Or Provinces', | 
| 2074 |  |  |  |  |  |  | '8REX' => 'Middle East|All Middle East', | 
| 2075 |  |  |  |  |  |  | '8REY' => 'Middle East|All Middle Eastern Gulf States', | 
| 2076 |  |  |  |  |  |  | '8RIB' => 'Middle East|All Middle Eastern Mediterranean Countries', | 
| 2077 |  |  |  |  |  |  | '8RAF' => 'Middle East|Afghanistan', | 
| 2078 |  |  |  |  |  |  | '8RBH' => 'Middle East|Bahrain', | 
| 2079 |  |  |  |  |  |  | '8RIR' => 'Middle East|Iran', | 
| 2080 |  |  |  |  |  |  | '8RIQ' => 'Middle East|Iraq', | 
| 2081 |  |  |  |  |  |  | '8RIL' => 'Middle East|Israel', | 
| 2082 |  |  |  |  |  |  | '8RJO' => 'Middle East|Jordan', | 
| 2083 |  |  |  |  |  |  | '8RKW' => 'Middle East|Kuwait', | 
| 2084 |  |  |  |  |  |  | '8RLB' => 'Middle East|Lebanon', | 
| 2085 |  |  |  |  |  |  | '8ROM' => 'Middle East|Oman', | 
| 2086 |  |  |  |  |  |  | '8REV' => 'Middle East|Palestinian Authority', | 
| 2087 |  |  |  |  |  |  | '8RQA' => 'Middle East|Qatar', | 
| 2088 |  |  |  |  |  |  | '8RSA' => 'Middle East|Saudi Arabia', | 
| 2089 |  |  |  |  |  |  | '8RSY' => 'Middle East|Syria', | 
| 2090 |  |  |  |  |  |  | '8RTR' => 'Middle East|Turkey', | 
| 2091 |  |  |  |  |  |  | '8RAE' => 'Middle East|United Arab Emirates', | 
| 2092 |  |  |  |  |  |  | '8RYE' => 'Middle East|Yemen', | 
| 2093 |  |  |  |  |  |  | '8RQC' => 'Africa|One Minor City, Up To 250,000 Population', | 
| 2094 |  |  |  |  |  |  | '8RQX' => 'Africa|One Major City, Over 250,000 Population', | 
| 2095 |  |  |  |  |  |  | '8RQB' => 'Africa|One Metropolitan Area, Adjoining Cities', | 
| 2096 |  |  |  |  |  |  | '8RRB' => 'Africa|One State Or Province', | 
| 2097 |  |  |  |  |  |  | '8RYB' => 'Africa|Up To 3 States Or Provinces', | 
| 2098 |  |  |  |  |  |  | '8RYC' => 'Africa|Up To 5 States Or Provinces', | 
| 2099 |  |  |  |  |  |  | '8RAJ' => 'Africa|All Africa', | 
| 2100 |  |  |  |  |  |  | '8RAK' => 'Africa|All African Mediterranean Countries', | 
| 2101 |  |  |  |  |  |  | '8RAP' => 'Africa|All Central Africa', | 
| 2102 |  |  |  |  |  |  | '8RAQ' => 'Africa|All Eastern Africa', | 
| 2103 |  |  |  |  |  |  | '8RBC' => 'Africa|All Southern Africa', | 
| 2104 |  |  |  |  |  |  | '8RBL' => 'Africa|All Western Africa', | 
| 2105 |  |  |  |  |  |  | '8RDZ' => 'Africa|Algeria', | 
| 2106 |  |  |  |  |  |  | '8RAO' => 'Africa|Angola', | 
| 2107 |  |  |  |  |  |  | '8RBP' => 'Africa|Ascension Island', | 
| 2108 |  |  |  |  |  |  | '8RBJ' => 'Africa|Benin', | 
| 2109 |  |  |  |  |  |  | '8RBW' => 'Africa|Botswana', | 
| 2110 |  |  |  |  |  |  | '8RBF' => 'Africa|Burkina Faso', | 
| 2111 |  |  |  |  |  |  | '8RBI' => 'Africa|Burundi', | 
| 2112 |  |  |  |  |  |  | '8RCM' => 'Africa|Cameroon', | 
| 2113 |  |  |  |  |  |  | '8RCV' => 'Africa|Cape Verde', | 
| 2114 |  |  |  |  |  |  | '8RCF' => 'Africa|Central African Republic', | 
| 2115 |  |  |  |  |  |  | '8RTD' => 'Africa|Chad', | 
| 2116 |  |  |  |  |  |  | '8RCG' => 'Africa|Congo', | 
| 2117 |  |  |  |  |  |  | '8RCI' => 'Africa|Cote D\'Ivoire', | 
| 2118 |  |  |  |  |  |  | '8RDJ' => 'Africa|Djibouti', | 
| 2119 |  |  |  |  |  |  | '8REG' => 'Africa|Egypt', | 
| 2120 |  |  |  |  |  |  | '8RGQ' => 'Africa|Equatorial Guinea', | 
| 2121 |  |  |  |  |  |  | '8RER' => 'Africa|Eritrea', | 
| 2122 |  |  |  |  |  |  | '8RET' => 'Africa|Ethiopia', | 
| 2123 |  |  |  |  |  |  | '8RGA' => 'Africa|Gabon', | 
| 2124 |  |  |  |  |  |  | '8RGM' => 'Africa|Gambia', | 
| 2125 |  |  |  |  |  |  | '8RGH' => 'Africa|Ghana', | 
| 2126 |  |  |  |  |  |  | '8RGN' => 'Africa|Guinea', | 
| 2127 |  |  |  |  |  |  | '8RGW' => 'Africa|Guinea-Bissau', | 
| 2128 |  |  |  |  |  |  | '8RKE' => 'Africa|Kenya', | 
| 2129 |  |  |  |  |  |  | '8RLS' => 'Africa|Lesotho', | 
| 2130 |  |  |  |  |  |  | '8RLR' => 'Africa|Liberia', | 
| 2131 |  |  |  |  |  |  | '8RLY' => 'Africa|Libyan Arab Jamahiriya', | 
| 2132 |  |  |  |  |  |  | '8RMW' => 'Africa|Malawi', | 
| 2133 |  |  |  |  |  |  | '8RML' => 'Africa|Mali', | 
| 2134 |  |  |  |  |  |  | '8RMR' => 'Africa|Mauritania', | 
| 2135 |  |  |  |  |  |  | '8RYT' => 'Africa|Mayotte', | 
| 2136 |  |  |  |  |  |  | '8RMA' => 'Africa|Morocco', | 
| 2137 |  |  |  |  |  |  | '8RMZ' => 'Africa|Mozambique', | 
| 2138 |  |  |  |  |  |  | '8RNA' => 'Africa|Namibia', | 
| 2139 |  |  |  |  |  |  | '8RNE' => 'Africa|Niger', | 
| 2140 |  |  |  |  |  |  | '8RNG' => 'Africa|Nigeria', | 
| 2141 |  |  |  |  |  |  | '8RRE' => 'Africa|Reunion', | 
| 2142 |  |  |  |  |  |  | '8RRW' => 'Africa|Rwanda', | 
| 2143 |  |  |  |  |  |  | '8RSH' => 'Africa|Saint Helena', | 
| 2144 |  |  |  |  |  |  | '8RST' => 'Africa|Sao Tome and Principe', | 
| 2145 |  |  |  |  |  |  | '8RSN' => 'Africa|Senegal', | 
| 2146 |  |  |  |  |  |  | '8RSL' => 'Africa|Sierra Leone', | 
| 2147 |  |  |  |  |  |  | '8RSO' => 'Africa|Somalia', | 
| 2148 |  |  |  |  |  |  | '8RZA' => 'Africa|South Africa', | 
| 2149 |  |  |  |  |  |  | '8RSD' => 'Africa|Sudan', | 
| 2150 |  |  |  |  |  |  | '8RSZ' => 'Africa|Swaziland', | 
| 2151 |  |  |  |  |  |  | '8RTZ' => 'Africa|Tanzania, United Republic Of', | 
| 2152 |  |  |  |  |  |  | '8RTG' => 'Africa|Togo', | 
| 2153 |  |  |  |  |  |  | '8RTN' => 'Africa|Tunisia', | 
| 2154 |  |  |  |  |  |  | '8RUG' => 'Africa|Uganda', | 
| 2155 |  |  |  |  |  |  | '8REH' => 'Africa|Western Sahara', | 
| 2156 |  |  |  |  |  |  | '8RZM' => 'Africa|Zambia', | 
| 2157 |  |  |  |  |  |  | '8RZW' => 'Africa|Zimbabwe', | 
| 2158 |  |  |  |  |  |  | '8RBQ' => 'Other Regions|Antarctica', | 
| 2159 |  |  |  |  |  |  | '8RCB' => 'Other Regions|All Arctic and Arctic Ocean Islands', | 
| 2160 |  |  |  |  |  |  | '8RFB' => 'Other Regions|All Northern Atlantic Ocean Islands', | 
| 2161 |  |  |  |  |  |  | '8RFW' => 'Other Regions|All Southern Atlantic Ocean Islands', | 
| 2162 |  |  |  |  |  |  | '8RFX' => 'Other Regions|All Southern Indian Ocean Islands', | 
| 2163 |  |  |  |  |  |  | '8REU' => 'Other Regions|All French Southern Territories', | 
| 2164 |  |  |  |  |  |  | '8RDQ' => 'Other Regions|All British Indian Ocean Territories', | 
| 2165 |  |  |  |  |  |  | # 8L - Language | 
| 2166 |  |  |  |  |  |  | '8LAA' => 'All Languages', | 
| 2167 |  |  |  |  |  |  | '8LXX' => 'Not Applicable or None', | 
| 2168 |  |  |  |  |  |  | '8LUL' => 'Any Languages', | 
| 2169 |  |  |  |  |  |  | '8LOL' => 'Any One Language', | 
| 2170 |  |  |  |  |  |  | '8LEN' => 'English', | 
| 2171 |  |  |  |  |  |  | '8LAF' => 'Afrikaans', | 
| 2172 |  |  |  |  |  |  | '8LAR' => 'Arabic', | 
| 2173 |  |  |  |  |  |  | '8LBO' => 'Bosnian', | 
| 2174 |  |  |  |  |  |  | '8LBU' => 'Bulgarian', | 
| 2175 |  |  |  |  |  |  | '8LCA' => 'Chinese-Cantonese', | 
| 2176 |  |  |  |  |  |  | '8LCH' => 'Chinese-Mandarin', | 
| 2177 |  |  |  |  |  |  | '8LCP' => 'Chinese-Other', | 
| 2178 |  |  |  |  |  |  | '8LCR' => 'Croatian', | 
| 2179 |  |  |  |  |  |  | '8LCZ' => 'Czech', | 
| 2180 |  |  |  |  |  |  | '8LDA' => 'Danish', | 
| 2181 |  |  |  |  |  |  | '8LDU' => 'Dutch', | 
| 2182 |  |  |  |  |  |  | '8LES' => 'Estonian', | 
| 2183 |  |  |  |  |  |  | '8LFI' => 'Finnish', | 
| 2184 |  |  |  |  |  |  | '8LFR' => 'French', | 
| 2185 |  |  |  |  |  |  | '8LGE' => 'German', | 
| 2186 |  |  |  |  |  |  | '8LGR' => 'Greek', | 
| 2187 |  |  |  |  |  |  | '8LHE' => 'Hebrew', | 
| 2188 |  |  |  |  |  |  | '8LHI' => 'Hindi', | 
| 2189 |  |  |  |  |  |  | '8LHU' => 'Hungarian', | 
| 2190 |  |  |  |  |  |  | '8LIC' => 'Icelandic', | 
| 2191 |  |  |  |  |  |  | '8LIN' => 'Indonesian', | 
| 2192 |  |  |  |  |  |  | '8LIG' => 'Irish Gaelic', | 
| 2193 |  |  |  |  |  |  | '8LIT' => 'Italian', | 
| 2194 |  |  |  |  |  |  | '8LJA' => 'Japanese', | 
| 2195 |  |  |  |  |  |  | '8LKO' => 'Korean', | 
| 2196 |  |  |  |  |  |  | '8LLA' => 'Latvian', | 
| 2197 |  |  |  |  |  |  | '8LMG' => 'Mongolian', | 
| 2198 |  |  |  |  |  |  | '8LNO' => 'Norwegian', | 
| 2199 |  |  |  |  |  |  | '8LPO' => 'Polish', | 
| 2200 |  |  |  |  |  |  | '8LPR' => 'Portuguese', | 
| 2201 |  |  |  |  |  |  | '8LRO' => 'Romanian', | 
| 2202 |  |  |  |  |  |  | '8LRU' => 'Russian', | 
| 2203 |  |  |  |  |  |  | '8LSG' => 'Scottish Gaelic', | 
| 2204 |  |  |  |  |  |  | '8LSE' => 'Serbian', | 
| 2205 |  |  |  |  |  |  | '8LSI' => 'Sindhi', | 
| 2206 |  |  |  |  |  |  | '8LSV' => 'Slovakian', | 
| 2207 |  |  |  |  |  |  | '8LSL' => 'Slovenian', | 
| 2208 |  |  |  |  |  |  | '8LSP' => 'Spanish', | 
| 2209 |  |  |  |  |  |  | '8LSH' => 'Swahili', | 
| 2210 |  |  |  |  |  |  | '8LSZ' => 'Swazi', | 
| 2211 |  |  |  |  |  |  | '8LSW' => 'Swedish', | 
| 2212 |  |  |  |  |  |  | '8LTA' => 'Tagalog', | 
| 2213 |  |  |  |  |  |  | '8LTH' => 'Thai', | 
| 2214 |  |  |  |  |  |  | '8LTU' => 'Turkish', | 
| 2215 |  |  |  |  |  |  | '8LUR' => 'Ukrainian', | 
| 2216 |  |  |  |  |  |  | '8LYI' => 'Yiddish', | 
| 2217 |  |  |  |  |  |  | '8LOT' => 'Other Language', | 
| 2218 |  |  |  |  |  |  | # 8I - Industry | 
| 2219 |  |  |  |  |  |  | '8IAA' => 'All Industries', | 
| 2220 |  |  |  |  |  |  | '8IXX' => 'Not Applicable or None', | 
| 2221 |  |  |  |  |  |  | '8IUL' => 'Any Industries', | 
| 2222 |  |  |  |  |  |  | '8IAD' => 'Advertising and Marketing', | 
| 2223 |  |  |  |  |  |  | '8IAG' => 'Agriculture, Farming and Horticulture', | 
| 2224 |  |  |  |  |  |  | '8IAT' => 'Airline Transportation', | 
| 2225 |  |  |  |  |  |  | '8IAL' => 'Alcohol', | 
| 2226 |  |  |  |  |  |  | '8IAR' => 'Architecture and Engineering', | 
| 2227 |  |  |  |  |  |  | '8IAE' => 'Arts and Entertainment', | 
| 2228 |  |  |  |  |  |  | '8IAU' => 'Automotive', | 
| 2229 |  |  |  |  |  |  | '8IAV' => 'Aviation', | 
| 2230 |  |  |  |  |  |  | '8IBA' => 'Baby and Childcare', | 
| 2231 |  |  |  |  |  |  | '8IBE' => 'Beauty and Personal Care', | 
| 2232 |  |  |  |  |  |  | '8IBI' => 'Biotechnology', | 
| 2233 |  |  |  |  |  |  | '8IBR' => 'Broadcast Media', | 
| 2234 |  |  |  |  |  |  | '8ICO' => 'Business Consulting and Services', | 
| 2235 |  |  |  |  |  |  | '8ICH' => 'Chemicals', | 
| 2236 |  |  |  |  |  |  | '8ICE' => 'Communications Equipment and Services', | 
| 2237 |  |  |  |  |  |  | '8IHS' => 'Computer Hardware, Software and Peripherals', | 
| 2238 |  |  |  |  |  |  | '8ICC' => 'Construction and Contracting', | 
| 2239 |  |  |  |  |  |  | '8IAP' => 'Consumer Appliances and Electronics', | 
| 2240 |  |  |  |  |  |  | '8ICG' => 'Counseling', | 
| 2241 |  |  |  |  |  |  | '8IEC' => 'Ecology, Environmental and Conservation', | 
| 2242 |  |  |  |  |  |  | '8IED' => 'Education', | 
| 2243 |  |  |  |  |  |  | '8IEM' => 'Employment Training and Recruitment', | 
| 2244 |  |  |  |  |  |  | '8IEN' => 'Energy, Utilities and Fuel', | 
| 2245 |  |  |  |  |  |  | '8IEV' => 'Events and Conventions', | 
| 2246 |  |  |  |  |  |  | '8IFA' => 'Fashion', | 
| 2247 |  |  |  |  |  |  | '8IFI' => 'Financial Services and Banking', | 
| 2248 |  |  |  |  |  |  | '8IFB' => 'Food and Beverage Processing', | 
| 2249 |  |  |  |  |  |  | '8IFL' => 'Food and Beverage Retail', | 
| 2250 |  |  |  |  |  |  | '8IFS' => 'Food Services', | 
| 2251 |  |  |  |  |  |  | '8IFO' => 'Forestry and Wood Products', | 
| 2252 |  |  |  |  |  |  | '8IFR' => 'Freight and Warehousing', | 
| 2253 |  |  |  |  |  |  | '8IFU' => 'Furniture', | 
| 2254 |  |  |  |  |  |  | '8IGA' => 'Games, Toys and Hobbies', | 
| 2255 |  |  |  |  |  |  | '8IGI' => 'Gaming Industry', | 
| 2256 |  |  |  |  |  |  | '8IGL' => 'Gardening and Landscaping', | 
| 2257 |  |  |  |  |  |  | '8IGO' => 'Government and Politics', | 
| 2258 |  |  |  |  |  |  | '8IGR' => 'Graphic Design', | 
| 2259 |  |  |  |  |  |  | '8IGC' => 'Greeting Card', | 
| 2260 |  |  |  |  |  |  | '8IHI' => 'Heavy Industry', | 
| 2261 |  |  |  |  |  |  | '8IHO' => 'Home Improvement', | 
| 2262 |  |  |  |  |  |  | '8IHH' => 'Hotels and Hospitality', | 
| 2263 |  |  |  |  |  |  | '8IHA' => 'Household Appliances', | 
| 2264 |  |  |  |  |  |  | '8IHC' => 'Household Cleaning Products', | 
| 2265 |  |  |  |  |  |  | '8IIM' => 'Industry and Manufacturing', | 
| 2266 |  |  |  |  |  |  | '8IIT' => 'Information Technologies', | 
| 2267 |  |  |  |  |  |  | '8IIN' => 'Insurance', | 
| 2268 |  |  |  |  |  |  | '8IIS' => 'Internet Services', | 
| 2269 |  |  |  |  |  |  | '8ILS' => 'Legal Services', | 
| 2270 |  |  |  |  |  |  | '8IME' => 'Medical and Healthcare', | 
| 2271 |  |  |  |  |  |  | '8IMS' => 'Microelectronics and Semiconductors', | 
| 2272 |  |  |  |  |  |  | '8IMW' => 'Military and Weapons', | 
| 2273 |  |  |  |  |  |  | '8IMM' => 'Mining and Metals', | 
| 2274 |  |  |  |  |  |  | '8IMU' => 'Music', | 
| 2275 |  |  |  |  |  |  | '8INP' => 'Not For Profit, Social, Charitable', | 
| 2276 |  |  |  |  |  |  | '8IOP' => 'Office Products', | 
| 2277 |  |  |  |  |  |  | '8IOG' => 'Oil and Gas', | 
| 2278 |  |  |  |  |  |  | '8IOI' => 'Other Industry', | 
| 2279 |  |  |  |  |  |  | '8IPO' => 'Personal Use Only', | 
| 2280 |  |  |  |  |  |  | '8IPP' => 'Pet Products and Services', | 
| 2281 |  |  |  |  |  |  | '8IPS' => 'Pharmaceuticals and Supplements', | 
| 2282 |  |  |  |  |  |  | '8IPT' => 'Printing and Reprographics', | 
| 2283 |  |  |  |  |  |  | '8IPR' => 'Public Relations', | 
| 2284 |  |  |  |  |  |  | '8IPM' => 'Publishing Media', | 
| 2285 |  |  |  |  |  |  | '8IRE' => 'Real Estate', | 
| 2286 |  |  |  |  |  |  | '8IRR' => 'Religion and Religious Services', | 
| 2287 |  |  |  |  |  |  | '8ISM' => 'Retail Sales and Marketing', | 
| 2288 |  |  |  |  |  |  | '8IRM' => 'Retail Merchandise', | 
| 2289 |  |  |  |  |  |  | '8ISS' => 'Safety and Security', | 
| 2290 |  |  |  |  |  |  | '8ISC' => 'Sciences', | 
| 2291 |  |  |  |  |  |  | '8ISH' => 'Shipping', | 
| 2292 |  |  |  |  |  |  | '8ISO' => 'Software', | 
| 2293 |  |  |  |  |  |  | '8ISF' => 'Sports, Fitness and Recreation', | 
| 2294 |  |  |  |  |  |  | '8ITE' => 'Telecommunications', | 
| 2295 |  |  |  |  |  |  | '8ITX' => 'Textiles and Apparel', | 
| 2296 |  |  |  |  |  |  | '8ITB' => 'Tobacco', | 
| 2297 |  |  |  |  |  |  | '8ITR' => 'Travel and Tourism', | 
| 2298 |  |  |  |  |  |  | # 9E - Exclusivity | 
| 2299 |  |  |  |  |  |  | '9EXX' => 'Not Applicable or None', | 
| 2300 |  |  |  |  |  |  | '9ENE' => 'Non-Exclusive', | 
| 2301 |  |  |  |  |  |  | '9EXC' => 'All Exclusive', | 
| 2302 |  |  |  |  |  |  | '9EIN' => 'Exclusivity For Industry', | 
| 2303 |  |  |  |  |  |  | '9EME' => 'Exclusivity For Media', | 
| 2304 |  |  |  |  |  |  | '9ELA' => 'Exclusivity For Language', | 
| 2305 |  |  |  |  |  |  | '9ERE' => 'Exclusivity For Region' | 
| 2306 |  |  |  |  |  |  | ); | 
| 2307 |  |  |  |  |  |  |  | 
| 2308 |  |  |  |  |  |  | # PLUS License Data Format 1.2.0 (plus) (ref 1) | 
| 2309 |  |  |  |  |  |  | %Image::ExifTool::PLUS::XMP = ( | 
| 2310 |  |  |  |  |  |  | %Image::ExifTool::XMP::xmpTableDefaults, | 
| 2311 |  |  |  |  |  |  | GROUPS => { 0 => 'XMP', 1 => 'XMP-plus', 2 => 'Author' }, | 
| 2312 |  |  |  |  |  |  | NAMESPACE => 'plus', | 
| 2313 |  |  |  |  |  |  | NOTES => q{ | 
| 2314 |  |  |  |  |  |  | PLUS (Picture Licensing Universal System) License Data Format 1.2.1 XMP | 
| 2315 |  |  |  |  |  |  | tags.  Note that all controlled-vocabulary tags in this table (ie. tags with | 
| 2316 |  |  |  |  |  |  | a fixed set of values) have raw values which begin with | 
| 2317 |  |  |  |  |  |  | "http://ns.useplus.org/ldf/vocab/", but to reduce clutter this prefix has | 
| 2318 |  |  |  |  |  |  | been removed from the values shown below.  See L for | 
| 2319 |  |  |  |  |  |  | the complete specification. | 
| 2320 |  |  |  |  |  |  | }, | 
| 2321 |  |  |  |  |  |  | Version  => { Name => 'PLUSVersion' }, | 
| 2322 |  |  |  |  |  |  | Licensee => { | 
| 2323 |  |  |  |  |  |  | FlatName => '', | 
| 2324 |  |  |  |  |  |  | Struct => \%plusLicensee, | 
| 2325 |  |  |  |  |  |  | List => 'Seq', | 
| 2326 |  |  |  |  |  |  | }, | 
| 2327 |  |  |  |  |  |  | EndUser => { | 
| 2328 |  |  |  |  |  |  | FlatName => '', | 
| 2329 |  |  |  |  |  |  | Struct => \%plusEndUser, | 
| 2330 |  |  |  |  |  |  | List => 'Seq', | 
| 2331 |  |  |  |  |  |  | }, | 
| 2332 |  |  |  |  |  |  | Licensor => { | 
| 2333 |  |  |  |  |  |  | FlatName => '', | 
| 2334 |  |  |  |  |  |  | Struct => \%plusLicensor, | 
| 2335 |  |  |  |  |  |  | List => 'Seq', | 
| 2336 |  |  |  |  |  |  | }, | 
| 2337 |  |  |  |  |  |  | LicensorNotes               => { Writable => 'lang-alt' }, | 
| 2338 |  |  |  |  |  |  | MediaSummaryCode => { | 
| 2339 |  |  |  |  |  |  | SeparateTable => 'MediaMatrix', | 
| 2340 |  |  |  |  |  |  | PrintConv => \%mediaMatrix, | 
| 2341 |  |  |  |  |  |  | }, | 
| 2342 |  |  |  |  |  |  | LicenseStartDate            => { %Image::ExifTool::XMP::dateTimeInfo, Groups => { 2 => 'Time'} }, | 
| 2343 |  |  |  |  |  |  | LicenseEndDate              => { %Image::ExifTool::XMP::dateTimeInfo, Groups => { 2 => 'Time'} }, | 
| 2344 |  |  |  |  |  |  | MediaConstraints            => { Writable => 'lang-alt' }, | 
| 2345 |  |  |  |  |  |  | RegionConstraints           => { Writable => 'lang-alt' }, | 
| 2346 |  |  |  |  |  |  | ProductOrServiceConstraints => { Writable => 'lang-alt' }, | 
| 2347 |  |  |  |  |  |  | ImageFileConstraints => { | 
| 2348 |  |  |  |  |  |  | List => 'Bag', | 
| 2349 |  |  |  |  |  |  | %plusVocab, | 
| 2350 |  |  |  |  |  |  | PrintConv => { | 
| 2351 |  |  |  |  |  |  | 'IF-MFN' => 'Maintain File Name', | 
| 2352 |  |  |  |  |  |  | 'IF-MID' => 'Maintain ID in File Name', | 
| 2353 |  |  |  |  |  |  | 'IF-MMD' => 'Maintain Metadata', | 
| 2354 |  |  |  |  |  |  | 'IF-MFT' => 'Maintain File Type', | 
| 2355 |  |  |  |  |  |  | }, | 
| 2356 |  |  |  |  |  |  | }, | 
| 2357 |  |  |  |  |  |  | ImageAlterationConstraints => { | 
| 2358 |  |  |  |  |  |  | List => 'Bag', | 
| 2359 |  |  |  |  |  |  | %plusVocab, | 
| 2360 |  |  |  |  |  |  | PrintConv => { | 
| 2361 |  |  |  |  |  |  | 'AL-CRP' => 'No Cropping', | 
| 2362 |  |  |  |  |  |  | 'AL-FLP' => 'No Flipping', | 
| 2363 |  |  |  |  |  |  | 'AL-RET' => 'No Retouching', | 
| 2364 |  |  |  |  |  |  | 'AL-CLR' => 'No Colorization', | 
| 2365 |  |  |  |  |  |  | 'AL-DCL' => 'No De-Colorization', | 
| 2366 |  |  |  |  |  |  | 'AL-MRG' => 'No Merging', | 
| 2367 |  |  |  |  |  |  | }, | 
| 2368 |  |  |  |  |  |  | }, | 
| 2369 |  |  |  |  |  |  | ImageDuplicationConstraints => { | 
| 2370 |  |  |  |  |  |  | %plusVocab, | 
| 2371 |  |  |  |  |  |  | PrintConv => { | 
| 2372 |  |  |  |  |  |  | 'DP-NDC' => 'No Duplication Constraints', | 
| 2373 |  |  |  |  |  |  | 'DP-LIC' => 'Duplication Only as Necessary Under License', | 
| 2374 |  |  |  |  |  |  | 'DP-NOD' => 'No Duplication', | 
| 2375 |  |  |  |  |  |  | }, | 
| 2376 |  |  |  |  |  |  | }, | 
| 2377 |  |  |  |  |  |  | ModelReleaseStatus => { | 
| 2378 |  |  |  |  |  |  | %plusVocab, | 
| 2379 |  |  |  |  |  |  | PrintConv => { | 
| 2380 |  |  |  |  |  |  | 'MR-NON' => 'None', | 
| 2381 |  |  |  |  |  |  | 'MR-NAP' => 'Not Applicable', | 
| 2382 |  |  |  |  |  |  | 'MR-UMR' => 'Unlimited Model Releases', | 
| 2383 |  |  |  |  |  |  | 'MR-LMR' => 'Limited or Incomplete Model Releases', | 
| 2384 |  |  |  |  |  |  | }, | 
| 2385 |  |  |  |  |  |  | }, | 
| 2386 |  |  |  |  |  |  | ModelReleaseID      => { List => 'Bag' }, | 
| 2387 |  |  |  |  |  |  | MinorModelAgeDisclosure => { | 
| 2388 |  |  |  |  |  |  | %plusVocab, | 
| 2389 |  |  |  |  |  |  | PrintConv => { | 
| 2390 |  |  |  |  |  |  | 'AG-UNK' => 'Age Unknown', | 
| 2391 |  |  |  |  |  |  | 'AG-A25' => 'Age 25 or Over', | 
| 2392 |  |  |  |  |  |  | 'AG-A24' => 'Age 24', | 
| 2393 |  |  |  |  |  |  | 'AG-A23' => 'Age 23', | 
| 2394 |  |  |  |  |  |  | 'AG-A22' => 'Age 22', | 
| 2395 |  |  |  |  |  |  | 'AG-A21' => 'Age 21', | 
| 2396 |  |  |  |  |  |  | 'AG-A20' => 'Age 20', | 
| 2397 |  |  |  |  |  |  | 'AG-A19' => 'Age 19', | 
| 2398 |  |  |  |  |  |  | 'AG-A18' => 'Age 18', | 
| 2399 |  |  |  |  |  |  | 'AG-A17' => 'Age 17', | 
| 2400 |  |  |  |  |  |  | 'AG-A16' => 'Age 16', | 
| 2401 |  |  |  |  |  |  | 'AG-A15' => 'Age 15', | 
| 2402 |  |  |  |  |  |  | 'AG-U14' => 'Age 14 or Under', | 
| 2403 |  |  |  |  |  |  | }, | 
| 2404 |  |  |  |  |  |  | }, | 
| 2405 |  |  |  |  |  |  | PropertyReleaseStatus => { | 
| 2406 |  |  |  |  |  |  | %plusVocab, | 
| 2407 |  |  |  |  |  |  | PrintConv => { | 
| 2408 |  |  |  |  |  |  | 'PR-NON' => 'None', | 
| 2409 |  |  |  |  |  |  | 'PR-NAP' => 'Not Applicable', | 
| 2410 |  |  |  |  |  |  | 'PR-UPR' => 'Unlimited Property Releases', | 
| 2411 |  |  |  |  |  |  | 'PR-LPR' => 'Limited or Incomplete Property Releases', | 
| 2412 |  |  |  |  |  |  | }, | 
| 2413 |  |  |  |  |  |  | }, | 
| 2414 |  |  |  |  |  |  | PropertyReleaseID  => { List => 'Bag' }, | 
| 2415 |  |  |  |  |  |  | OtherConstraints   => { Writable => 'lang-alt' }, | 
| 2416 |  |  |  |  |  |  | CreditLineRequired => { | 
| 2417 |  |  |  |  |  |  | %plusVocab, | 
| 2418 |  |  |  |  |  |  | PrintConv => { | 
| 2419 |  |  |  |  |  |  | 'CR-NRQ' => 'Not Required', | 
| 2420 |  |  |  |  |  |  | 'CR-COI' => 'Credit on Image', | 
| 2421 |  |  |  |  |  |  | 'CR-CAI' => 'Credit Adjacent To Image', | 
| 2422 |  |  |  |  |  |  | 'CR-CCA' => 'Credit in Credits Area', | 
| 2423 |  |  |  |  |  |  | }, | 
| 2424 |  |  |  |  |  |  | }, | 
| 2425 |  |  |  |  |  |  | AdultContentWarning => { | 
| 2426 |  |  |  |  |  |  | %plusVocab, | 
| 2427 |  |  |  |  |  |  | PrintConv => { | 
| 2428 |  |  |  |  |  |  | 'CW-NRQ' => 'Not Required', | 
| 2429 |  |  |  |  |  |  | 'CW-AWR' => 'Adult Content Warning Required', | 
| 2430 |  |  |  |  |  |  | 'CW-UNK' => 'Unknown', | 
| 2431 |  |  |  |  |  |  | }, | 
| 2432 |  |  |  |  |  |  | }, | 
| 2433 |  |  |  |  |  |  | OtherLicenseRequirements    => { Writable => 'lang-alt' }, | 
| 2434 |  |  |  |  |  |  | TermsAndConditionsText      => { Writable => 'lang-alt' }, | 
| 2435 |  |  |  |  |  |  | TermsAndConditionsURL       => { }, | 
| 2436 |  |  |  |  |  |  | OtherConditions             => { Writable => 'lang-alt' }, | 
| 2437 |  |  |  |  |  |  | ImageType => { | 
| 2438 |  |  |  |  |  |  | %plusVocab, | 
| 2439 |  |  |  |  |  |  | PrintConv => { | 
| 2440 |  |  |  |  |  |  | 'TY-PHO' => 'Photographic Image', | 
| 2441 |  |  |  |  |  |  | 'TY-ILL' => 'Illustrated Image', | 
| 2442 |  |  |  |  |  |  | 'TY-MCI' => 'Multimedia or Composited Image', | 
| 2443 |  |  |  |  |  |  | 'TY-VID' => 'Video', | 
| 2444 |  |  |  |  |  |  | 'TY-OTR' => 'Other', | 
| 2445 |  |  |  |  |  |  | }, | 
| 2446 |  |  |  |  |  |  | }, | 
| 2447 |  |  |  |  |  |  | LicensorImageID     => { }, | 
| 2448 |  |  |  |  |  |  | FileNameAsDelivered => { }, | 
| 2449 |  |  |  |  |  |  | ImageFileFormatAsDelivered => { | 
| 2450 |  |  |  |  |  |  | %plusVocab, | 
| 2451 |  |  |  |  |  |  | PrintConv => { | 
| 2452 |  |  |  |  |  |  | 'FF-JPG' => 'JPEG Interchange Formats (JPG, JIF, JFIF)', | 
| 2453 |  |  |  |  |  |  | 'FF-TIF' => 'Tagged Image File Format (TIFF)', | 
| 2454 |  |  |  |  |  |  | 'FF-GIF' => 'Graphics Interchange Format (GIF)', | 
| 2455 |  |  |  |  |  |  | 'FF-RAW' => 'Proprietary RAW Image Format', | 
| 2456 |  |  |  |  |  |  | 'FF-DNG' => 'Digital Negative (DNG)', | 
| 2457 |  |  |  |  |  |  | 'FF-EPS' => 'Encapsulated PostScript (EPS)', | 
| 2458 |  |  |  |  |  |  | 'FF-BMP' => 'Windows Bitmap (BMP)', | 
| 2459 |  |  |  |  |  |  | 'FF-PSD' => 'Photoshop Document (PSD)', | 
| 2460 |  |  |  |  |  |  | 'FF-PIC' => 'Macintosh Picture (PICT)', | 
| 2461 |  |  |  |  |  |  | 'FF-PNG' => 'Portable Network Graphics (PNG)', | 
| 2462 |  |  |  |  |  |  | 'FF-WMP' => 'Windows Media Photo (HD Photo)', | 
| 2463 |  |  |  |  |  |  | 'FF-OTR' => 'Other', | 
| 2464 |  |  |  |  |  |  | }, | 
| 2465 |  |  |  |  |  |  | }, | 
| 2466 |  |  |  |  |  |  | ImageFileSizeAsDelivered => { | 
| 2467 |  |  |  |  |  |  | %plusVocab, | 
| 2468 |  |  |  |  |  |  | PrintConv => { | 
| 2469 |  |  |  |  |  |  | 'SZ-U01' => 'Up to 1 MB', | 
| 2470 |  |  |  |  |  |  | 'SZ-U10' => 'Up to 10 MB', | 
| 2471 |  |  |  |  |  |  | 'SZ-U30' => 'Up to 30 MB', | 
| 2472 |  |  |  |  |  |  | 'SZ-U50' => 'Up to 50 MB', | 
| 2473 |  |  |  |  |  |  | 'SZ-G50' => 'Greater than 50 MB', | 
| 2474 |  |  |  |  |  |  | }, | 
| 2475 |  |  |  |  |  |  | }, | 
| 2476 |  |  |  |  |  |  | CopyrightStatus => { | 
| 2477 |  |  |  |  |  |  | %plusVocab, | 
| 2478 |  |  |  |  |  |  | PrintConv => { | 
| 2479 |  |  |  |  |  |  | 'CS-PRO' => 'Protected', | 
| 2480 |  |  |  |  |  |  | 'CS-PUB' => 'Public Domain', | 
| 2481 |  |  |  |  |  |  | 'CS-UNK' => 'Unknown', | 
| 2482 |  |  |  |  |  |  | }, | 
| 2483 |  |  |  |  |  |  | }, | 
| 2484 |  |  |  |  |  |  | CopyrightRegistrationNumber => { }, | 
| 2485 |  |  |  |  |  |  | FirstPublicationDate        => { %Image::ExifTool::XMP::dateTimeInfo, Groups => { 2 => 'Time'} }, | 
| 2486 |  |  |  |  |  |  | CopyrightOwner => { | 
| 2487 |  |  |  |  |  |  | FlatName => '', | 
| 2488 |  |  |  |  |  |  | Struct => \%plusCopyrightOwner, | 
| 2489 |  |  |  |  |  |  | List => 'Seq', | 
| 2490 |  |  |  |  |  |  | }, | 
| 2491 |  |  |  |  |  |  | CopyrightOwnerImageID   => { }, | 
| 2492 |  |  |  |  |  |  | ImageCreator => { | 
| 2493 |  |  |  |  |  |  | FlatName => '', | 
| 2494 |  |  |  |  |  |  | Struct => \%plusImageCreator, | 
| 2495 |  |  |  |  |  |  | List => 'Seq', | 
| 2496 |  |  |  |  |  |  | }, | 
| 2497 |  |  |  |  |  |  | ImageCreatorImageID     => { }, | 
| 2498 |  |  |  |  |  |  | ImageSupplier => { | 
| 2499 |  |  |  |  |  |  | FlatName => '', | 
| 2500 |  |  |  |  |  |  | Struct => \%plusImageSupplier, | 
| 2501 |  |  |  |  |  |  | List => 'Seq', | 
| 2502 |  |  |  |  |  |  | }, | 
| 2503 |  |  |  |  |  |  | ImageSupplierImageID    => { }, | 
| 2504 |  |  |  |  |  |  | LicenseeImageID         => { }, | 
| 2505 |  |  |  |  |  |  | LicenseeImageNotes      => { Writable => 'lang-alt' }, | 
| 2506 |  |  |  |  |  |  | OtherImageInfo          => { Writable => 'lang-alt' }, | 
| 2507 |  |  |  |  |  |  | LicenseID               => { }, | 
| 2508 |  |  |  |  |  |  | LicensorTransactionID   => { List => 'Bag' }, | 
| 2509 |  |  |  |  |  |  | LicenseeTransactionID   => { List => 'Bag' }, | 
| 2510 |  |  |  |  |  |  | LicenseeProjectReference=> { List => 'Bag' }, | 
| 2511 |  |  |  |  |  |  | LicenseTransactionDate  => { %Image::ExifTool::XMP::dateTimeInfo, Groups => { 2 => 'Time'} }, | 
| 2512 |  |  |  |  |  |  | Reuse => { | 
| 2513 |  |  |  |  |  |  | %plusVocab, | 
| 2514 |  |  |  |  |  |  | PrintConv => { | 
| 2515 |  |  |  |  |  |  | 'RE-REU' => 'Repeat Use', | 
| 2516 |  |  |  |  |  |  | 'RE-NAP' => 'Not Applicable', | 
| 2517 |  |  |  |  |  |  | }, | 
| 2518 |  |  |  |  |  |  | }, | 
| 2519 |  |  |  |  |  |  | OtherLicenseDocuments   => { List => 'Bag' }, | 
| 2520 |  |  |  |  |  |  | OtherLicenseInfo        => { Writable => 'lang-alt' }, | 
| 2521 |  |  |  |  |  |  | # Note: these are Bag's of lang-alt lists -- a nested list tag! | 
| 2522 |  |  |  |  |  |  | Custom1     => { List => 'Bag', Writable => 'lang-alt' }, | 
| 2523 |  |  |  |  |  |  | Custom2     => { List => 'Bag', Writable => 'lang-alt' }, | 
| 2524 |  |  |  |  |  |  | Custom3     => { List => 'Bag', Writable => 'lang-alt' }, | 
| 2525 |  |  |  |  |  |  | Custom4     => { List => 'Bag', Writable => 'lang-alt' }, | 
| 2526 |  |  |  |  |  |  | Custom5     => { List => 'Bag', Writable => 'lang-alt' }, | 
| 2527 |  |  |  |  |  |  | Custom6     => { List => 'Bag', Writable => 'lang-alt' }, | 
| 2528 |  |  |  |  |  |  | Custom7     => { List => 'Bag', Writable => 'lang-alt' }, | 
| 2529 |  |  |  |  |  |  | Custom8     => { List => 'Bag', Writable => 'lang-alt' }, | 
| 2530 |  |  |  |  |  |  | Custom9     => { List => 'Bag', Writable => 'lang-alt' }, | 
| 2531 |  |  |  |  |  |  | Custom10    => { List => 'Bag', Writable => 'lang-alt' }, | 
| 2532 |  |  |  |  |  |  | ); | 
| 2533 |  |  |  |  |  |  |  | 
| 2534 |  |  |  |  |  |  | #------------------------------------------------------------------------------ | 
| 2535 |  |  |  |  |  |  | # Validate Media Summary Code | 
| 2536 |  |  |  |  |  |  | # Inputs: 0) Media Usage Code | 
| 2537 |  |  |  |  |  |  | # Returns: true if OK, false on severe error | 
| 2538 |  |  |  |  |  |  | # - issues warning for detected format problems | 
| 2539 |  |  |  |  |  |  | # - repairs some repairable problems | 
| 2540 |  |  |  |  |  |  | sub ValidateMediaSummary($) | 
| 2541 |  |  |  |  |  |  | { | 
| 2542 | 1 |  |  | 1 | 0 | 2 | my $val = shift; | 
| 2543 |  |  |  |  |  |  |  | 
| 2544 | 1 |  |  |  |  | 8 | my @a = split /\|/, $val; | 
| 2545 | 1 | 50 | 33 |  |  | 13 | @a >= 4 and $a[0] eq '' or warn("Not a valid Media Summary Code\n"), return 0; | 
| 2546 | 1 | 50 |  |  |  | 4 | $a[1] eq 'PLUS' or warn("Unrecognized Media Usage standard\n"), return 0; | 
| 2547 | 1 | 50 |  |  |  | 10 | $a[2] =~ /^V(\d+)/ or warn("Unrecognized Media Usage version\n"); | 
| 2548 | 1 | 50 |  |  |  | 8 | $a[3] =~ /^U(\d+)/ or warn("Invalid Media Usage count\n"), return 0; | 
| 2549 | 1 |  |  |  |  | 3 | my $numUsages = $1; | 
| 2550 | 1 |  |  |  |  | 3 | my ($i, $j); | 
| 2551 | 1 | 50 |  |  |  | 7 | unless ($numUsages == @a - 4) { | 
| 2552 | 0 |  |  |  |  | 0 | warn("Fixed incorrect number of Media Usages\n"); | 
| 2553 | 0 |  |  |  |  | 0 | $numUsages = @a - 4; | 
| 2554 | 0 |  |  |  |  | 0 | $a[3] = sprintf('U%.3d', $numUsages); | 
| 2555 |  |  |  |  |  |  | } | 
| 2556 | 1 |  |  |  |  | 6 | for ($i=1; $i<=$numUsages; ++$i) { | 
| 2557 | 4 |  |  |  |  | 10 | my $usage = $a[$i + 3]; | 
| 2558 | 4 | 50 |  |  |  | 26 | $usage =~ /^1I([A-Z])([A-Z])/ or warn("Missing Media Usage $i item count\n"), return 0; | 
| 2559 | 4 | 50 |  |  |  | 12 | length($usage) % 4 and warn("Incorrect Media Usage $i length\n"), return 0; | 
| 2560 | 4 |  |  |  |  | 12 | my $numItems = (ord($1)-65) * 26 + ord($2)-65 + 1; | 
| 2561 | 4 | 50 |  |  |  | 11 | unless (length($usage) == 4 * ($numItems + 1)) { | 
| 2562 | 0 |  |  |  |  | 0 | $numItems = length($usage) / 4 - 1; | 
| 2563 | 0 |  |  |  |  | 0 | warn("Fixed incorrect Media Usage $i item count\n"); | 
| 2564 | 0 |  |  |  |  | 0 | $a[$i+3] = '1I' . chr(65 + int($numItems / 26)) . chr($numItems % 26) . substr($usage, 4); | 
| 2565 |  |  |  |  |  |  | } | 
| 2566 | 4 |  |  |  |  | 13 | for ($j=1; $j<=$numItems; ++$j) { | 
| 2567 | 110 |  |  |  |  | 164 | my $item = substr($usage, $j*4, 4); | 
| 2568 | 110 | 50 |  |  |  | 293 | $item =~ /^\d[A-Z]{3}$/ or warn(qq(Invalid item "$item" for Media Usage $i\n)), return 0; | 
| 2569 |  |  |  |  |  |  | } | 
| 2570 |  |  |  |  |  |  | } | 
| 2571 | 1 | 50 |  |  |  | 7 | $_[0] = join('|', @a) . '|' if $Image::ExifTool::evalWarning; | 
| 2572 | 1 |  |  |  |  | 5 | return 1; | 
| 2573 |  |  |  |  |  |  | } | 
| 2574 |  |  |  |  |  |  |  | 
| 2575 |  |  |  |  |  |  | 1;  # end | 
| 2576 |  |  |  |  |  |  |  | 
| 2577 |  |  |  |  |  |  | __END__ |