summaryrefslogtreecommitdiff
path: root/Master
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2014-11-14 22:47:57 +0000
committerKarl Berry <karl@freefriends.org>2014-11-14 22:47:57 +0000
commit249e552ebd09e227a51ac95098b1fe42d1ab3cff (patch)
tree38a334f66e37f15d8fe22c9634f4bb2e3d3b292e /Master
parenta609091c33fb354c7f50ff5d39124b03bae91fbd (diff)
xespotcolor (14nov14)
git-svn-id: svn://tug.org/texlive/trunk@35585 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r--Master/texmf-dist/doc/xelatex/xespotcolor/PATCHES238
-rw-r--r--Master/texmf-dist/doc/xelatex/xespotcolor/README25
-rw-r--r--Master/texmf-dist/doc/xelatex/xespotcolor/spotcolor-test.pdf7452
-rw-r--r--Master/texmf-dist/doc/xelatex/xespotcolor/spotcolor-test.tex50
-rw-r--r--Master/texmf-dist/doc/xelatex/xespotcolor/xespotcolor.pdfbin0 -> 60607 bytes
-rw-r--r--Master/texmf-dist/source/xelatex/xespotcolor/xespotcolor.dtx279
-rw-r--r--Master/texmf-dist/source/xelatex/xespotcolor/xespotcolor.ins54
-rw-r--r--Master/texmf-dist/tex/xelatex/xespotcolor/xespotcolor.sty91
-rwxr-xr-xMaster/tlpkg/bin/tlpkg-ctan-check2
-rw-r--r--Master/tlpkg/tlpsrc/collection-xetex.tlpsrc1
-rw-r--r--Master/tlpkg/tlpsrc/xespotcolor.tlpsrc0
11 files changed, 8191 insertions, 1 deletions
diff --git a/Master/texmf-dist/doc/xelatex/xespotcolor/PATCHES b/Master/texmf-dist/doc/xelatex/xespotcolor/PATCHES
new file mode 100644
index 00000000000..ce25525c7ef
--- /dev/null
+++ b/Master/texmf-dist/doc/xelatex/xespotcolor/PATCHES
@@ -0,0 +1,238 @@
+--- pdfcolor.c.orig 2014-07-30 22:27:05.423428483 +0300
++++ pdfcolor.c 2014-08-13 22:59:53.862311266 +0300
+@@ -27,6 +27,7 @@
+ #include <config.h>
+ #endif
+
++#include <strings.h>
+ #include "system.h"
+ #include "mem.h"
+ #include "error.h"
+@@ -79,6 +80,8 @@
+
+ color->num_components = 3;
+
++ bzero(color->SpotColorName, 256);
++
+ return 0;
+ }
+
+@@ -112,6 +115,7 @@
+
+ color->num_components = 4;
+
++ bzero(color->SpotColorName, 256);
+ return 0;
+ }
+
+@@ -129,6 +133,27 @@
+
+ color->num_components = 1;
+
++ bzero(color->SpotColorName, 256);
++
++ return 0;
++}
++
++int
++pdf_color_spotcolor (pdf_color *color, char* spot_color_name, double c)
++{
++ ASSERT(color);
++
++ if (c < 0.0 || c > 1.0) {
++ WARN("Invalid color value specified: grade=%g", c);
++ return -1;
++ }
++
++ color->values[0] = c;
++
++ color->num_components = 2;
++
++ strcpy(color->SpotColorName, spot_color_name);
++
+ return 0;
+ }
+
+@@ -190,24 +215,35 @@
+ return 1;
+ }
+
+-int
+-pdf_color_to_string (const pdf_color *color, char *buffer)
++int
++pdf_color_to_string (const pdf_color *color, char *buffer, char mask)
+ {
+ int i, len = 0;
+
+- for (i = 0; i < color->num_components; i++) {
+- len += sprintf(buffer+len, " %g", ROUND(color->values[i], 0.001));
++ if ( (-color->num_components) == PDF_COLORSPACE_TYPE_SPOT ) {
++ if (mask == '0') {
++ len += sprintf(buffer+len, " /%s CS %g SC", color->SpotColorName, ROUND(color->values[0], 0.001));
++ }
++ else {
++ len += sprintf(buffer+len, " /%s cs %g sc", color->SpotColorName, ROUND(color->values[0], 0.001));
++ }
+ }
++ else {
++ for (i = 0; i < color->num_components; i++) {
++ len += sprintf(buffer+len, " %g", ROUND(color->values[i], 0.001));
++ }
++ }
++
+ return len;
+ }
+
+ pdf_color current_fill = {
+- 1,
++ 1, {'\0'},
+ {0.0, 0.0, 0.0, 0.0}
+ };
+
+ pdf_color current_stroke = {
+- 1,
++ 1, {'\0'},
+ {0.0, 0.0, 0.0, 0.0}
+ };
+
+@@ -244,6 +280,9 @@
+ {
+ int n;
+
++ if ( color->SpotColorName[0] != '\0' )
++ return 1;
++
+ n = color->num_components;
+ switch (n) {
+ case 1: /* Gray */
+@@ -265,7 +304,7 @@
+
+ /* Dvipdfm special */
+ pdf_color default_color = {
+- 1,
++ 1, {'\0'},
+ {0.0, 0.0, 0.0, 0.0}
+ };
+
+--- pdfcolor.h.orig 2014-07-24 21:57:12.649698246 +0300
++++ pdfcolor.h 2014-08-06 23:31:39.430330177 +0300
+@@ -37,6 +37,7 @@
+ #define PDF_COLORSPACE_TYPE_CMYK PDF_COLORSPACE_TYPE_DEVICECMYK
+ #define PDF_COLORSPACE_TYPE_RGB PDF_COLORSPACE_TYPE_DEVICERGB
+ #define PDF_COLORSPACE_TYPE_GRAY PDF_COLORSPACE_TYPE_DEVICEGRAY
++#define PDF_COLORSPACE_TYPE_SPOT -2
+
+
+ #define PDF_COLOR_COMPONENT_MAX 4
+@@ -44,6 +45,7 @@
+ typedef struct
+ {
+ int num_components;
++ char SpotColorName[255];
+ double values[PDF_COLOR_COMPONENT_MAX];
+ } pdf_color;
+
+@@ -54,6 +56,9 @@
+ extern int pdf_color_cmykcolor (pdf_color *color,
+ double c, double m, double y, double k);
+ extern int pdf_color_graycolor (pdf_color *color, double g);
++
++extern int pdf_color_spotcolor (pdf_color *color,
++ char* spot_color_name, double c);
+ extern void pdf_color_copycolor (pdf_color *color1, const pdf_color *color2);
+
+ #define pdf_color_black(c) pdf_color_graycolor(c, 0.0);
+@@ -63,7 +68,7 @@
+
+ extern int pdf_color_type (const pdf_color *color);
+ extern int pdf_color_compare (const pdf_color *color1, const pdf_color *color2);
+-extern int pdf_color_to_string (const pdf_color *color, char *buffer);
++extern int pdf_color_to_string (const pdf_color *color, char *buffer, char mask);
+
+ extern int pdf_color_is_white (const pdf_color *color);
+ extern int pdf_color_is_valid (const pdf_color *color);
+--- pdfdraw.c.orig 2014-08-01 23:26:17.454362614 +0300
++++ pdfdraw.c 2014-08-13 22:56:05.927819086 +0300
+@@ -1260,7 +1260,7 @@
+ * the color is the same as the current graphics state color
+ */
+ void
+-pdf_dev_set_color (const pdf_color *color, char mask, int force)
++pdf_dev_set_color (const pdf_color *color, char mask, int force)
+ {
+ int len;
+
+@@ -1269,7 +1269,7 @@
+
+ ASSERT(pdf_color_is_valid(color));
+
+- if (!(pdf_dev_get_param(PDF_DEV_PARAM_COLORMODE) &&
++ if (!(pdf_dev_get_param(PDF_DEV_PARAM_COLORMODE) &&
+ (force || pdf_color_compare(color, current))))
+ /* If "color" is already the current color, then do nothing
+ * unless a color operator is forced
+@@ -1277,7 +1277,7 @@
+ return;
+
+ graphics_mode();
+- len = pdf_color_to_string(color, fmt_buf);
++ len = pdf_color_to_string(color, fmt_buf, mask);
+ fmt_buf[len++] = ' ';
+ switch (pdf_color_type(color)) {
+ case PDF_COLORSPACE_TYPE_RGB:
+@@ -1293,7 +1293,7 @@
+ default: /* already verified the given color */
+ break;
+ }
+- pdf_doc_add_page_content(fmt_buf, len); /* op: RG K G rg k g */
++ pdf_doc_add_page_content(fmt_buf, len); /* op: RG K G rg k g etc. */
+
+ pdf_color_copycolor(current, color);
+ }
+--- spc_util.c.orig 2014-07-17 16:35:39.531113864 +0300
++++ spc_util.c 2014-08-04 23:29:53.857556810 +0300
+@@ -38,7 +38,6 @@
+
+ #include "spc_util.h"
+
+-
+ #ifndef ISBLANK
+ #define ISBLANK(c) ((c) == ' ' || (c) == '\t')
+ #endif
+@@ -111,6 +110,7 @@
+ spc_read_color_color (struct spc_env *spe, pdf_color *colorspec, struct spc_arg *ap)
+ {
+ char *q;
++ char *spotColorName;
+ double cv[4];
+ int nc;
+ int error = 0;
+@@ -146,6 +146,20 @@
+ } else {
+ pdf_color_graycolor(colorspec, cv[0]);
+ }
++ } else if (!strcmp(q, "spot")) { /* Handle spot colors */
++ spotColorName = parse_c_ident(&ap->curptr, ap->endptr);
++ if (!spotColorName) {
++ spc_warn(spe, "No valid spot color name specified?");
++ return -1;
++ }
++ skip_blank(&ap->curptr, ap->endptr);
++ nc = spc_util_read_numbers(cv, 1, spe, ap);
++ if (nc != 1) {
++ spc_warn(spe, "Invalid value for spot color specification.");
++ error = -1;
++ } else {
++ pdf_color_spotcolor(colorspec, spotColorName, cv[0]);
++ }
+ } else if (!strcmp(q, "hsb")) {
+ nc = spc_util_read_numbers(cv, 3, spe, ap);
+ if (nc != 3) {
+@@ -236,7 +250,6 @@
+ if (ap->curptr >= ap->endptr) {
+ return -1;
+ }
+-
+ if (syntax)
+ return spc_read_color_color(spe, colorspec, ap);
+ else
diff --git a/Master/texmf-dist/doc/xelatex/xespotcolor/README b/Master/texmf-dist/doc/xelatex/xespotcolor/README
new file mode 100644
index 00000000000..a755c9e9c91
--- /dev/null
+++ b/Master/texmf-dist/doc/xelatex/xespotcolor/README
@@ -0,0 +1,25 @@
+A spot color is one that is printed with its own ink.
+Typically, printers use spot colors in the production
+of books or other printed material. The spotcolor package
+by Jens Elstner is a first attempt to introduce the use of
+spot colors with pdfLaTeX. The xespotcolor package is a
+reimplementation of this package so to be usable with
+XeLaTeX. As such, it has the same user interface and
+the same capabilities.
+
+Currently, xdvipdfm-x does not support the spot command,
+which is needed in order to be able top use commands like
+the following one:
+
+\definecolor{Spots}{spotcolor}{SOMECOLOR,1.0}
+
+File PATCHES contains patches that should be applied to the
+source code of xdvipdfm-x so to be able to deal with such
+commands. Also, file spotcolor-test.tex is test file based on
+the documentation of the original package. Finally, file
+spotcolor-test.pdf cannot be produced with a current TeX
+installation. When the source code of xdvipdfm-x will be
+updated, then the contents of this folder will change.
+
+Apostolos Syropoulos
+2014/11/13
diff --git a/Master/texmf-dist/doc/xelatex/xespotcolor/spotcolor-test.pdf b/Master/texmf-dist/doc/xelatex/xespotcolor/spotcolor-test.pdf
new file mode 100644
index 00000000000..1ca0367f644
--- /dev/null
+++ b/Master/texmf-dist/doc/xelatex/xespotcolor/spotcolor-test.pdf
@@ -0,0 +1,7452 @@
+%PDF-1.4
+%
+8 0 obj
+<</Filter/FlateDecode/Length 208>>
+stream
+xڍ
+B1 w"/КiOA:*)AMM{Dp~I@DSj.;, >ʭ>^\ DjKkBvl"ezBLoNkAޕ,hNMMCݍpvgΈxDzG꓂L߳I_UN_U ɧ  ypA~޸V
+endstream
+endobj
+9 0 obj
+<</Font<</F1 5 0 R/F2 7 0 R>>/ProcSet[/PDF/Text/ImageC/ImageB/ImageI]>>
+endobj
+1100 0 obj
+<</Filter/FlateDecode/Length 216>>
+stream
+xmP
+0]4i@ZT37ZO
+&M-0Yx0mP݇q=$-@$?&4|w庽^TP@Wp*G,i+Vh
+ Fф)#P3!$984"jBh1UTrMCEJ,5dHq.~K?ަ`jm$d~#j58S&/W
+endstream
+endobj
+1101 0 obj
+<</ColorSpace<</PANTONE100PC[/Separation/PANTONE#20100#20PC/DeviceCMYK 11 0 R]/PANTONE101PC[/Separation/PANTONE#20101#20PC/DeviceCMYK
+12 0 R]/PANTONE102PC[/Separation/PANTONE#20102#20PC/DeviceCMYK 13 0 R]/PANTONE103PC[/Separation/PANTONE#20103#20PC/DeviceCMYK
+14 0 R]/PANTONE104PC[/Separation/PANTONE#20104#20PC/DeviceCMYK 15 0 R]/PANTONE105PC[/Separation/PANTONE#20105#20PC/DeviceCMYK
+16 0 R]/PANTONE106PC[/Separation/PANTONE#20106#20PC/DeviceCMYK 17 0 R]/PANTONE107PC[/Separation/PANTONE#20107#20PC/DeviceCMYK
+18 0 R]/PANTONE108PC[/Separation/PANTONE#20108#20PC/DeviceCMYK 19 0 R]/PANTONE109PC[/Separation/PANTONE#20109#20PC/DeviceCMYK
+20 0 R]/PANTONE110PC[/Separation/PANTONE#20110#20PC/DeviceCMYK 21 0 R]/PANTONE111PC[/Separation/PANTONE#20111#20PC/DeviceCMYK
+22 0 R]/PANTONE112PC[/Separation/PANTONE#20112#20PC/DeviceCMYK 23 0 R]/PANTONE113PC[/Separation/PANTONE#20113#20PC/DeviceCMYK
+24 0 R]/PANTONE114PC[/Separation/PANTONE#20114#20PC/DeviceCMYK 25 0 R]/PANTONE115PC[/Separation/PANTONE#20115#20PC/DeviceCMYK
+26 0 R]/PANTONE116PC[/Separation/PANTONE#20116#20PC/DeviceCMYK 27 0 R]/PANTONE117PC[/Separation/PANTONE#20117#20PC/DeviceCMYK
+28 0 R]/PANTONE118PC[/Separation/PANTONE#20118#20PC/DeviceCMYK 29 0 R]/PANTONE119PC[/Separation/PANTONE#20119#20PC/DeviceCMYK
+30 0 R]/PANTONE120PC[/Separation/PANTONE#20120#20PC/DeviceCMYK 31 0 R]/PANTONE121PC[/Separation/PANTONE#20121#20PC/DeviceCMYK
+32 0 R]/PANTONE122PC[/Separation/PANTONE#20122#20PC/DeviceCMYK 33 0 R]/PANTONE123PC[/Separation/PANTONE#20123#20PC/DeviceCMYK
+34 0 R]/PANTONE124PC[/Separation/PANTONE#20124#20PC/DeviceCMYK 35 0 R]/PANTONE125PC[/Separation/PANTONE#20125#20PC/DeviceCMYK
+36 0 R]/PANTONE126PC[/Separation/PANTONE#20126#20PC/DeviceCMYK 37 0 R]/PANTONE127PC[/Separation/PANTONE#20127#20PC/DeviceCMYK
+38 0 R]/PANTONE128PC[/Separation/PANTONE#20128#20PC/DeviceCMYK 39 0 R]/PANTONE129PC[/Separation/PANTONE#20129#20PC/DeviceCMYK
+40 0 R]/PANTONE130PC[/Separation/PANTONE#20130#20PC/DeviceCMYK 41 0 R]/PANTONE131PC[/Separation/PANTONE#20131#20PC/DeviceCMYK
+42 0 R]/PANTONE132PC[/Separation/PANTONE#20132#20PC/DeviceCMYK 43 0 R]/PANTONE133PC[/Separation/PANTONE#20133#20PC/DeviceCMYK
+44 0 R]/PANTONE134PC[/Separation/PANTONE#20134#20PC/DeviceCMYK 45 0 R]/PANTONE135PC[/Separation/PANTONE#20135#20PC/DeviceCMYK
+46 0 R]/PANTONE136PC[/Separation/PANTONE#20136#20PC/DeviceCMYK 47 0 R]/PANTONE137PC[/Separation/PANTONE#20137#20PC/DeviceCMYK
+48 0 R]/PANTONE138PC[/Separation/PANTONE#20138#20PC/DeviceCMYK 49 0 R]/PANTONE139PC[/Separation/PANTONE#20139#20PC/DeviceCMYK
+50 0 R]/PANTONE140PC[/Separation/PANTONE#20140#20PC/DeviceCMYK 51 0 R]/PANTONE141PC[/Separation/PANTONE#20141#20PC/DeviceCMYK
+52 0 R]/PANTONE142PC[/Separation/PANTONE#20142#20PC/DeviceCMYK 53 0 R]/PANTONE143PC[/Separation/PANTONE#20143#20PC/DeviceCMYK
+54 0 R]/PANTONE144PC[/Separation/PANTONE#20144#20PC/DeviceCMYK 55 0 R]/PANTONE145PC[/Separation/PANTONE#20145#20PC/DeviceCMYK
+56 0 R]/PANTONE146PC[/Separation/PANTONE#20146#20PC/DeviceCMYK 57 0 R]/PANTONE147PC[/Separation/PANTONE#20147#20PC/DeviceCMYK
+58 0 R]/PANTONE148PC[/Separation/PANTONE#20148#20PC/DeviceCMYK 59 0 R]/PANTONE149PC[/Separation/PANTONE#20149#20PC/DeviceCMYK
+60 0 R]/PANTONE150PC[/Separation/PANTONE#20150#20PC/DeviceCMYK 61 0 R]/PANTONE151PC[/Separation/PANTONE#20151#20PC/DeviceCMYK
+62 0 R]/PANTONE152PC[/Separation/PANTONE#20152#20PC/DeviceCMYK 63 0 R]/PANTONE153PC[/Separation/PANTONE#20153#20PC/DeviceCMYK
+64 0 R]/PANTONE154PC[/Separation/PANTONE#20154#20PC/DeviceCMYK 65 0 R]/PANTONE155PC[/Separation/PANTONE#20155#20PC/DeviceCMYK
+66 0 R]/PANTONE156PC[/Separation/PANTONE#20156#20PC/DeviceCMYK 67 0 R]/PANTONE157PC[/Separation/PANTONE#20157#20PC/DeviceCMYK
+68 0 R]/PANTONE158PC[/Separation/PANTONE#20158#20PC/DeviceCMYK 69 0 R]/PANTONE159PC[/Separation/PANTONE#20159#20PC/DeviceCMYK
+70 0 R]/PANTONE160PC[/Separation/PANTONE#20160#20PC/DeviceCMYK 71 0 R]/PANTONE161PC[/Separation/PANTONE#20161#20PC/DeviceCMYK
+72 0 R]/PANTONE162PC[/Separation/PANTONE#20162#20PC/DeviceCMYK 73 0 R]/PANTONE163PC[/Separation/PANTONE#20163#20PC/DeviceCMYK
+74 0 R]/PANTONE164PC[/Separation/PANTONE#20164#20PC/DeviceCMYK 75 0 R]/PANTONE165PC[/Separation/PANTONE#20165#20PC/DeviceCMYK
+76 0 R]/PANTONE166PC[/Separation/PANTONE#20166#20PC/DeviceCMYK 77 0 R]/PANTONE167PC[/Separation/PANTONE#20167#20PC/DeviceCMYK
+78 0 R]/PANTONE168PC[/Separation/PANTONE#20168#20PC/DeviceCMYK 79 0 R]/PANTONE169PC[/Separation/PANTONE#20169#20PC/DeviceCMYK
+80 0 R]/PANTONE170PC[/Separation/PANTONE#20170#20PC/DeviceCMYK 81 0 R]/PANTONE171PC[/Separation/PANTONE#20171#20PC/DeviceCMYK
+82 0 R]/PANTONE172PC[/Separation/PANTONE#20172#20PC/DeviceCMYK 83 0 R]/PANTONE173PC[/Separation/PANTONE#20173#20PC/DeviceCMYK
+84 0 R]/PANTONE174PC[/Separation/PANTONE#20174#20PC/DeviceCMYK 85 0 R]/PANTONE175PC[/Separation/PANTONE#20175#20PC/DeviceCMYK
+86 0 R]/PANTONE176PC[/Separation/PANTONE#20176#20PC/DeviceCMYK 87 0 R]/PANTONE177PC[/Separation/PANTONE#20177#20PC/DeviceCMYK
+88 0 R]/PANTONE178PC[/Separation/PANTONE#20178#20PC/DeviceCMYK 89 0 R]/PANTONE179PC[/Separation/PANTONE#20179#20PC/DeviceCMYK
+90 0 R]/PANTONE180PC[/Separation/PANTONE#20180#20PC/DeviceCMYK 91 0 R]/PANTONE181PC[/Separation/PANTONE#20181#20PC/DeviceCMYK
+92 0 R]/PANTONE182PC[/Separation/PANTONE#20182#20PC/DeviceCMYK 93 0 R]/PANTONE183PC[/Separation/PANTONE#20183#20PC/DeviceCMYK
+94 0 R]/PANTONE184PC[/Separation/PANTONE#20184#20PC/DeviceCMYK 95 0 R]/PANTONE185PC[/Separation/PANTONE#20185#20PC/DeviceCMYK
+96 0 R]/PANTONE186PC[/Separation/PANTONE#20186#20PC/DeviceCMYK 97 0 R]/PANTONE187PC[/Separation/PANTONE#20187#20PC/DeviceCMYK
+98 0 R]/PANTONE188PC[/Separation/PANTONE#20188#20PC/DeviceCMYK 99 0 R]/PANTONE189PC[/Separation/PANTONE#20189#20PC/DeviceCMYK
+100 0 R]/PANTONE190PC[/Separation/PANTONE#20190#20PC/DeviceCMYK 101 0 R]/PANTONE191PC[/Separation/PANTONE#20191#20PC/DeviceCMYK
+102 0 R]/PANTONE192PC[/Separation/PANTONE#20192#20PC/DeviceCMYK 103 0 R]/PANTONE193PC[/Separation/PANTONE#20193#20PC/DeviceCMYK
+104 0 R]/PANTONE194PC[/Separation/PANTONE#20194#20PC/DeviceCMYK 105 0 R]/PANTONE195PC[/Separation/PANTONE#20195#20PC/DeviceCMYK
+106 0 R]/PANTONE196PC[/Separation/PANTONE#20196#20PC/DeviceCMYK 107 0 R]/PANTONE197PC[/Separation/PANTONE#20197#20PC/DeviceCMYK
+108 0 R]/PANTONE198PC[/Separation/PANTONE#20198#20PC/DeviceCMYK 109 0 R]/PANTONE199PC[/Separation/PANTONE#20199#20PC/DeviceCMYK
+110 0 R]/PANTONE200PC[/Separation/PANTONE#20200#20PC/DeviceCMYK 111 0 R]/PANTONE201PC[/Separation/PANTONE#20201#20PC/DeviceCMYK
+112 0 R]/PANTONE202PC[/Separation/PANTONE#20202#20PC/DeviceCMYK 113 0 R]/PANTONE203PC[/Separation/PANTONE#20203#20PC/DeviceCMYK
+114 0 R]/PANTONE204PC[/Separation/PANTONE#20204#20PC/DeviceCMYK 115 0 R]/PANTONE205PC[/Separation/PANTONE#20205#20PC/DeviceCMYK
+116 0 R]/PANTONE206PC[/Separation/PANTONE#20206#20PC/DeviceCMYK 117 0 R]/PANTONE207PC[/Separation/PANTONE#20207#20PC/DeviceCMYK
+118 0 R]/PANTONE208PC[/Separation/PANTONE#20208#20PC/DeviceCMYK 119 0 R]/PANTONE209PC[/Separation/PANTONE#20209#20PC/DeviceCMYK
+120 0 R]/PANTONE210PC[/Separation/PANTONE#20210#20PC/DeviceCMYK 121 0 R]/PANTONE211PC[/Separation/PANTONE#20211#20PC/DeviceCMYK
+122 0 R]/PANTONE212PC[/Separation/PANTONE#20212#20PC/DeviceCMYK 123 0 R]/PANTONE213PC[/Separation/PANTONE#20213#20PC/DeviceCMYK
+124 0 R]/PANTONE214PC[/Separation/PANTONE#20214#20PC/DeviceCMYK 125 0 R]/PANTONE215PC[/Separation/PANTONE#20215#20PC/DeviceCMYK
+126 0 R]/PANTONE216PC[/Separation/PANTONE#20216#20PC/DeviceCMYK 127 0 R]/PANTONE217PC[/Separation/PANTONE#20217#20PC/DeviceCMYK
+128 0 R]/PANTONE218PC[/Separation/PANTONE#20218#20PC/DeviceCMYK 129 0 R]/PANTONE219PC[/Separation/PANTONE#20219#20PC/DeviceCMYK
+130 0 R]/PANTONE220PC[/Separation/PANTONE#20220#20PC/DeviceCMYK 131 0 R]/PANTONE221PC[/Separation/PANTONE#20221#20PC/DeviceCMYK
+132 0 R]/PANTONE222PC[/Separation/PANTONE#20222#20PC/DeviceCMYK 133 0 R]/PANTONE223PC[/Separation/PANTONE#20223#20PC/DeviceCMYK
+134 0 R]/PANTONE224PC[/Separation/PANTONE#20224#20PC/DeviceCMYK 135 0 R]/PANTONE225PC[/Separation/PANTONE#20225#20PC/DeviceCMYK
+136 0 R]/PANTONE226PC[/Separation/PANTONE#20226#20PC/DeviceCMYK 137 0 R]/PANTONE227PC[/Separation/PANTONE#20227#20PC/DeviceCMYK
+138 0 R]/PANTONE228PC[/Separation/PANTONE#20228#20PC/DeviceCMYK 139 0 R]/PANTONE229PC[/Separation/PANTONE#20229#20PC/DeviceCMYK
+140 0 R]/PANTONE230PC[/Separation/PANTONE#20230#20PC/DeviceCMYK 141 0 R]/PANTONE231PC[/Separation/PANTONE#20231#20PC/DeviceCMYK
+142 0 R]/PANTONE232PC[/Separation/PANTONE#20232#20PC/DeviceCMYK 143 0 R]/PANTONE233PC[/Separation/PANTONE#20233#20PC/DeviceCMYK
+144 0 R]/PANTONE234PC[/Separation/PANTONE#20234#20PC/DeviceCMYK 145 0 R]/PANTONE235PC[/Separation/PANTONE#20235#20PC/DeviceCMYK
+146 0 R]/PANTONE236PC[/Separation/PANTONE#20236#20PC/DeviceCMYK 147 0 R]/PANTONE237PC[/Separation/PANTONE#20237#20PC/DeviceCMYK
+148 0 R]/PANTONE238PC[/Separation/PANTONE#20238#20PC/DeviceCMYK 149 0 R]/PANTONE239PC[/Separation/PANTONE#20239#20PC/DeviceCMYK
+150 0 R]/PANTONE240PC[/Separation/PANTONE#20240#20PC/DeviceCMYK 151 0 R]/PANTONE241PC[/Separation/PANTONE#20241#20PC/DeviceCMYK
+152 0 R]/PANTONE242PC[/Separation/PANTONE#20242#20PC/DeviceCMYK 153 0 R]/PANTONE243PC[/Separation/PANTONE#20243#20PC/DeviceCMYK
+154 0 R]/PANTONE244PC[/Separation/PANTONE#20244#20PC/DeviceCMYK 155 0 R]/PANTONE245PC[/Separation/PANTONE#20245#20PC/DeviceCMYK
+156 0 R]/PANTONE246PC[/Separation/PANTONE#20246#20PC/DeviceCMYK 157 0 R]/PANTONE247PC[/Separation/PANTONE#20247#20PC/DeviceCMYK
+158 0 R]/PANTONE248PC[/Separation/PANTONE#20248#20PC/DeviceCMYK 159 0 R]/PANTONE249PC[/Separation/PANTONE#20249#20PC/DeviceCMYK
+160 0 R]/PANTONE250PC[/Separation/PANTONE#20250#20PC/DeviceCMYK 161 0 R]/PANTONE251PC[/Separation/PANTONE#20251#20PC/DeviceCMYK
+162 0 R]/PANTONE252PC[/Separation/PANTONE#20252#20PC/DeviceCMYK 163 0 R]/PANTONE253PC[/Separation/PANTONE#20253#20PC/DeviceCMYK
+164 0 R]/PANTONE254PC[/Separation/PANTONE#20254#20PC/DeviceCMYK 165 0 R]/PANTONE255PC[/Separation/PANTONE#20255#20PC/DeviceCMYK
+166 0 R]/PANTONE256PC[/Separation/PANTONE#20256#20PC/DeviceCMYK 167 0 R]/PANTONE257PC[/Separation/PANTONE#20257#20PC/DeviceCMYK
+168 0 R]/PANTONE258PC[/Separation/PANTONE#20258#20PC/DeviceCMYK 169 0 R]/PANTONE259PC[/Separation/PANTONE#20259#20PC/DeviceCMYK
+170 0 R]/PANTONE260PC[/Separation/PANTONE#20260#20PC/DeviceCMYK 171 0 R]/PANTONE261PC[/Separation/PANTONE#20261#20PC/DeviceCMYK
+172 0 R]/PANTONE262PC[/Separation/PANTONE#20262#20PC/DeviceCMYK 173 0 R]/PANTONE263PC[/Separation/PANTONE#20263#20PC/DeviceCMYK
+174 0 R]/PANTONE264PC[/Separation/PANTONE#20264#20PC/DeviceCMYK 175 0 R]/PANTONE265PC[/Separation/PANTONE#20265#20PC/DeviceCMYK
+176 0 R]/PANTONE266PC[/Separation/PANTONE#20266#20PC/DeviceCMYK 177 0 R]/PANTONE267PC[/Separation/PANTONE#20267#20PC/DeviceCMYK
+178 0 R]/PANTONE268PC[/Separation/PANTONE#20268#20PC/DeviceCMYK 179 0 R]/PANTONE269PC[/Separation/PANTONE#20269#20PC/DeviceCMYK
+180 0 R]/PANTONE270PC[/Separation/PANTONE#20270#20PC/DeviceCMYK 181 0 R]/PANTONE271PC[/Separation/PANTONE#20271#20PC/DeviceCMYK
+182 0 R]/PANTONE272PC[/Separation/PANTONE#20272#20PC/DeviceCMYK 183 0 R]/PANTONE273PC[/Separation/PANTONE#20273#20PC/DeviceCMYK
+184 0 R]/PANTONE274PC[/Separation/PANTONE#20274#20PC/DeviceCMYK 185 0 R]/PANTONE275PC[/Separation/PANTONE#20275#20PC/DeviceCMYK
+186 0 R]/PANTONE276PC[/Separation/PANTONE#20276#20PC/DeviceCMYK 187 0 R]/PANTONE277PC[/Separation/PANTONE#20277#20PC/DeviceCMYK
+188 0 R]/PANTONE278PC[/Separation/PANTONE#20278#20PC/DeviceCMYK 189 0 R]/PANTONE279PC[/Separation/PANTONE#20279#20PC/DeviceCMYK
+190 0 R]/PANTONE280PC[/Separation/PANTONE#20280#20PC/DeviceCMYK 191 0 R]/PANTONE281PC[/Separation/PANTONE#20281#20PC/DeviceCMYK
+192 0 R]/PANTONE282PC[/Separation/PANTONE#20282#20PC/DeviceCMYK 193 0 R]/PANTONE283PC[/Separation/PANTONE#20283#20PC/DeviceCMYK
+194 0 R]/PANTONE284PC[/Separation/PANTONE#20284#20PC/DeviceCMYK 195 0 R]/PANTONE285PC[/Separation/PANTONE#20285#20PC/DeviceCMYK
+196 0 R]/PANTONE286PC[/Separation/PANTONE#20286#20PC/DeviceCMYK 197 0 R]/PANTONE287PC[/Separation/PANTONE#20287#20PC/DeviceCMYK
+198 0 R]/PANTONE288PC[/Separation/PANTONE#20288#20PC/DeviceCMYK 199 0 R]/PANTONE289PC[/Separation/PANTONE#20289#20PC/DeviceCMYK
+200 0 R]/PANTONE290PC[/Separation/PANTONE#20290#20PC/DeviceCMYK 201 0 R]/PANTONE291PC[/Separation/PANTONE#20291#20PC/DeviceCMYK
+202 0 R]/PANTONE292PC[/Separation/PANTONE#20292#20PC/DeviceCMYK 203 0 R]/PANTONE293PC[/Separation/PANTONE#20293#20PC/DeviceCMYK
+204 0 R]/PANTONE294PC[/Separation/PANTONE#20294#20PC/DeviceCMYK 205 0 R]/PANTONE295PC[/Separation/PANTONE#20295#20PC/DeviceCMYK
+206 0 R]/PANTONE296PC[/Separation/PANTONE#20296#20PC/DeviceCMYK 207 0 R]/PANTONE297PC[/Separation/PANTONE#20297#20PC/DeviceCMYK
+208 0 R]/PANTONE298PC[/Separation/PANTONE#20298#20PC/DeviceCMYK 209 0 R]/PANTONE299PC[/Separation/PANTONE#20299#20PC/DeviceCMYK
+210 0 R]/PANTONE300PC[/Separation/PANTONE#20300#20PC/DeviceCMYK 211 0 R]/PANTONE301PC[/Separation/PANTONE#20301#20PC/DeviceCMYK
+212 0 R]/PANTONE302PC[/Separation/PANTONE#20302#20PC/DeviceCMYK 213 0 R]/PANTONE303PC[/Separation/PANTONE#20303#20PC/DeviceCMYK
+214 0 R]/PANTONE304PC[/Separation/PANTONE#20304#20PC/DeviceCMYK 215 0 R]/PANTONE305PC[/Separation/PANTONE#20305#20PC/DeviceCMYK
+216 0 R]/PANTONE306PC[/Separation/PANTONE#20306#20PC/DeviceCMYK 217 0 R]/PANTONE307PC[/Separation/PANTONE#20307#20PC/DeviceCMYK
+218 0 R]/PANTONE308PC[/Separation/PANTONE#20308#20PC/DeviceCMYK 219 0 R]/PANTONE309PC[/Separation/PANTONE#20309#20PC/DeviceCMYK
+220 0 R]/PANTONE310PC[/Separation/PANTONE#20310#20PC/DeviceCMYK 221 0 R]/PANTONE311PC[/Separation/PANTONE#20311#20PC/DeviceCMYK
+222 0 R]/PANTONE312PC[/Separation/PANTONE#20312#20PC/DeviceCMYK 223 0 R]/PANTONE313PC[/Separation/PANTONE#20313#20PC/DeviceCMYK
+224 0 R]/PANTONE314PC[/Separation/PANTONE#20314#20PC/DeviceCMYK 225 0 R]/PANTONE315PC[/Separation/PANTONE#20315#20PC/DeviceCMYK
+226 0 R]/PANTONE316PC[/Separation/PANTONE#20316#20PC/DeviceCMYK 227 0 R]/PANTONE317PC[/Separation/PANTONE#20317#20PC/DeviceCMYK
+228 0 R]/PANTONE318PC[/Separation/PANTONE#20318#20PC/DeviceCMYK 229 0 R]/PANTONE319PC[/Separation/PANTONE#20319#20PC/DeviceCMYK
+230 0 R]/PANTONE320PC[/Separation/PANTONE#20320#20PC/DeviceCMYK 231 0 R]/PANTONE321PC[/Separation/PANTONE#20321#20PC/DeviceCMYK
+232 0 R]/PANTONE322PC[/Separation/PANTONE#20322#20PC/DeviceCMYK 233 0 R]/PANTONE323PC[/Separation/PANTONE#20323#20PC/DeviceCMYK
+234 0 R]/PANTONE324PC[/Separation/PANTONE#20324#20PC/DeviceCMYK 235 0 R]/PANTONE325PC[/Separation/PANTONE#20325#20PC/DeviceCMYK
+236 0 R]/PANTONE326PC[/Separation/PANTONE#20326#20PC/DeviceCMYK 237 0 R]/PANTONE327PC[/Separation/PANTONE#20327#20PC/DeviceCMYK
+238 0 R]/PANTONE328PC[/Separation/PANTONE#20328#20PC/DeviceCMYK 239 0 R]/PANTONE329PC[/Separation/PANTONE#20329#20PC/DeviceCMYK
+240 0 R]/PANTONE330PC[/Separation/PANTONE#20330#20PC/DeviceCMYK 241 0 R]/PANTONE331PC[/Separation/PANTONE#20331#20PC/DeviceCMYK
+242 0 R]/PANTONE332PC[/Separation/PANTONE#20332#20PC/DeviceCMYK 243 0 R]/PANTONE333PC[/Separation/PANTONE#20333#20PC/DeviceCMYK
+244 0 R]/PANTONE334PC[/Separation/PANTONE#20334#20PC/DeviceCMYK 245 0 R]/PANTONE335PC[/Separation/PANTONE#20335#20PC/DeviceCMYK
+246 0 R]/PANTONE336PC[/Separation/PANTONE#20336#20PC/DeviceCMYK 247 0 R]/PANTONE337PC[/Separation/PANTONE#20337#20PC/DeviceCMYK
+248 0 R]/PANTONE338PC[/Separation/PANTONE#20338#20PC/DeviceCMYK 249 0 R]/PANTONE339PC[/Separation/PANTONE#20339#20PC/DeviceCMYK
+250 0 R]/PANTONE340PC[/Separation/PANTONE#20340#20PC/DeviceCMYK 251 0 R]/PANTONE341PC[/Separation/PANTONE#20341#20PC/DeviceCMYK
+252 0 R]/PANTONE342PC[/Separation/PANTONE#20342#20PC/DeviceCMYK 253 0 R]/PANTONE343PC[/Separation/PANTONE#20343#20PC/DeviceCMYK
+254 0 R]/PANTONE344PC[/Separation/PANTONE#20344#20PC/DeviceCMYK 255 0 R]/PANTONE345PC[/Separation/PANTONE#20345#20PC/DeviceCMYK
+256 0 R]/PANTONE346PC[/Separation/PANTONE#20346#20PC/DeviceCMYK 257 0 R]/PANTONE347PC[/Separation/PANTONE#20347#20PC/DeviceCMYK
+258 0 R]/PANTONE348PC[/Separation/PANTONE#20348#20PC/DeviceCMYK 259 0 R]/PANTONE349PC[/Separation/PANTONE#20349#20PC/DeviceCMYK
+260 0 R]/PANTONE350PC[/Separation/PANTONE#20350#20PC/DeviceCMYK 261 0 R]/PANTONE351PC[/Separation/PANTONE#20351#20PC/DeviceCMYK
+262 0 R]/PANTONE352PC[/Separation/PANTONE#20352#20PC/DeviceCMYK 263 0 R]/PANTONE353PC[/Separation/PANTONE#20353#20PC/DeviceCMYK
+264 0 R]/PANTONE354PC[/Separation/PANTONE#20354#20PC/DeviceCMYK 265 0 R]/PANTONE355PC[/Separation/PANTONE#20355#20PC/DeviceCMYK
+266 0 R]/PANTONE356PC[/Separation/PANTONE#20356#20PC/DeviceCMYK 267 0 R]/PANTONE357PC[/Separation/PANTONE#20357#20PC/DeviceCMYK
+268 0 R]/PANTONE358PC[/Separation/PANTONE#20358#20PC/DeviceCMYK 269 0 R]/PANTONE359PC[/Separation/PANTONE#20359#20PC/DeviceCMYK
+270 0 R]/PANTONE360PC[/Separation/PANTONE#20360#20PC/DeviceCMYK 271 0 R]/PANTONE361PC[/Separation/PANTONE#20361#20PC/DeviceCMYK
+272 0 R]/PANTONE362PC[/Separation/PANTONE#20362#20PC/DeviceCMYK 273 0 R]/PANTONE363PC[/Separation/PANTONE#20363#20PC/DeviceCMYK
+274 0 R]/PANTONE364PC[/Separation/PANTONE#20364#20PC/DeviceCMYK 275 0 R]/PANTONE365PC[/Separation/PANTONE#20365#20PC/DeviceCMYK
+276 0 R]/PANTONE366PC[/Separation/PANTONE#20366#20PC/DeviceCMYK 277 0 R]/PANTONE367PC[/Separation/PANTONE#20367#20PC/DeviceCMYK
+278 0 R]/PANTONE368PC[/Separation/PANTONE#20368#20PC/DeviceCMYK 279 0 R]/PANTONE369PC[/Separation/PANTONE#20369#20PC/DeviceCMYK
+280 0 R]/PANTONE370PC[/Separation/PANTONE#20370#20PC/DeviceCMYK 281 0 R]/PANTONE371PC[/Separation/PANTONE#20371#20PC/DeviceCMYK
+282 0 R]/PANTONE372PC[/Separation/PANTONE#20372#20PC/DeviceCMYK 283 0 R]/PANTONE373PC[/Separation/PANTONE#20373#20PC/DeviceCMYK
+284 0 R]/PANTONE374PC[/Separation/PANTONE#20374#20PC/DeviceCMYK 285 0 R]/PANTONE375PC[/Separation/PANTONE#20375#20PC/DeviceCMYK
+286 0 R]/PANTONE376PC[/Separation/PANTONE#20376#20PC/DeviceCMYK 287 0 R]/PANTONE377PC[/Separation/PANTONE#20377#20PC/DeviceCMYK
+288 0 R]/PANTONE378PC[/Separation/PANTONE#20378#20PC/DeviceCMYK 289 0 R]/PANTONE379PC[/Separation/PANTONE#20379#20PC/DeviceCMYK
+290 0 R]/PANTONE380PC[/Separation/PANTONE#20380#20PC/DeviceCMYK 291 0 R]/PANTONE381PC[/Separation/PANTONE#20381#20PC/DeviceCMYK
+292 0 R]/PANTONE382PC[/Separation/PANTONE#20382#20PC/DeviceCMYK 293 0 R]/PANTONE383PC[/Separation/PANTONE#20383#20PC/DeviceCMYK
+294 0 R]/PANTONE384PC[/Separation/PANTONE#20384#20PC/DeviceCMYK 295 0 R]/PANTONE385PC[/Separation/PANTONE#20385#20PC/DeviceCMYK
+296 0 R]/PANTONE386PC[/Separation/PANTONE#20386#20PC/DeviceCMYK 297 0 R]/PANTONE387PC[/Separation/PANTONE#20387#20PC/DeviceCMYK
+298 0 R]/PANTONE388PC[/Separation/PANTONE#20388#20PC/DeviceCMYK 299 0 R]/PANTONE389PC[/Separation/PANTONE#20389#20PC/DeviceCMYK
+300 0 R]/PANTONE390PC[/Separation/PANTONE#20390#20PC/DeviceCMYK 301 0 R]/PANTONE391PC[/Separation/PANTONE#20391#20PC/DeviceCMYK
+302 0 R]/PANTONE392PC[/Separation/PANTONE#20392#20PC/DeviceCMYK 303 0 R]/PANTONE393PC[/Separation/PANTONE#20393#20PC/DeviceCMYK
+304 0 R]/PANTONE394PC[/Separation/PANTONE#20394#20PC/DeviceCMYK 305 0 R]/PANTONE395PC[/Separation/PANTONE#20395#20PC/DeviceCMYK
+306 0 R]/PANTONE396PC[/Separation/PANTONE#20396#20PC/DeviceCMYK 307 0 R]/PANTONE397PC[/Separation/PANTONE#20397#20PC/DeviceCMYK
+308 0 R]/PANTONE398PC[/Separation/PANTONE#20398#20PC/DeviceCMYK 309 0 R]/PANTONE399PC[/Separation/PANTONE#20399#20PC/DeviceCMYK
+310 0 R]/PANTONE400PC[/Separation/PANTONE#20400#20PC/DeviceCMYK 311 0 R]/PANTONE401PC[/Separation/PANTONE#20401#20PC/DeviceCMYK
+312 0 R]/PANTONE402PC[/Separation/PANTONE#20402#20PC/DeviceCMYK 313 0 R]/PANTONE403PC[/Separation/PANTONE#20403#20PC/DeviceCMYK
+314 0 R]/PANTONE404PC[/Separation/PANTONE#20404#20PC/DeviceCMYK 315 0 R]/PANTONE405PC[/Separation/PANTONE#20405#20PC/DeviceCMYK
+316 0 R]/PANTONE406PC[/Separation/PANTONE#20406#20PC/DeviceCMYK 317 0 R]/PANTONE407PC[/Separation/PANTONE#20407#20PC/DeviceCMYK
+318 0 R]/PANTONE408PC[/Separation/PANTONE#20408#20PC/DeviceCMYK 319 0 R]/PANTONE409PC[/Separation/PANTONE#20409#20PC/DeviceCMYK
+320 0 R]/PANTONE410PC[/Separation/PANTONE#20410#20PC/DeviceCMYK 321 0 R]/PANTONE411PC[/Separation/PANTONE#20411#20PC/DeviceCMYK
+322 0 R]/PANTONE412PC[/Separation/PANTONE#20412#20PC/DeviceCMYK 323 0 R]/PANTONE413PC[/Separation/PANTONE#20413#20PC/DeviceCMYK
+324 0 R]/PANTONE414PC[/Separation/PANTONE#20414#20PC/DeviceCMYK 325 0 R]/PANTONE415PC[/Separation/PANTONE#20415#20PC/DeviceCMYK
+326 0 R]/PANTONE416PC[/Separation/PANTONE#20416#20PC/DeviceCMYK 327 0 R]/PANTONE417PC[/Separation/PANTONE#20417#20PC/DeviceCMYK
+328 0 R]/PANTONE418PC[/Separation/PANTONE#20418#20PC/DeviceCMYK 329 0 R]/PANTONE419PC[/Separation/PANTONE#20419#20PC/DeviceCMYK
+330 0 R]/PANTONE420PC[/Separation/PANTONE#20420#20PC/DeviceCMYK 331 0 R]/PANTONE421PC[/Separation/PANTONE#20421#20PC/DeviceCMYK
+332 0 R]/PANTONE422PC[/Separation/PANTONE#20422#20PC/DeviceCMYK 333 0 R]/PANTONE423PC[/Separation/PANTONE#20423#20PC/DeviceCMYK
+334 0 R]/PANTONE424PC[/Separation/PANTONE#20424#20PC/DeviceCMYK 335 0 R]/PANTONE425PC[/Separation/PANTONE#20425#20PC/DeviceCMYK
+336 0 R]/PANTONE426PC[/Separation/PANTONE#20426#20PC/DeviceCMYK 337 0 R]/PANTONE427PC[/Separation/PANTONE#20427#20PC/DeviceCMYK
+338 0 R]/PANTONE428PC[/Separation/PANTONE#20428#20PC/DeviceCMYK 339 0 R]/PANTONE429PC[/Separation/PANTONE#20429#20PC/DeviceCMYK
+340 0 R]/PANTONE430PC[/Separation/PANTONE#20430#20PC/DeviceCMYK 341 0 R]/PANTONE431PC[/Separation/PANTONE#20431#20PC/DeviceCMYK
+342 0 R]/PANTONE432PC[/Separation/PANTONE#20432#20PC/DeviceCMYK 343 0 R]/PANTONE433PC[/Separation/PANTONE#20433#20PC/DeviceCMYK
+344 0 R]/PANTONE434PC[/Separation/PANTONE#20434#20PC/DeviceCMYK 345 0 R]/PANTONE435PC[/Separation/PANTONE#20435#20PC/DeviceCMYK
+346 0 R]/PANTONE436PC[/Separation/PANTONE#20436#20PC/DeviceCMYK 347 0 R]/PANTONE437PC[/Separation/PANTONE#20437#20PC/DeviceCMYK
+348 0 R]/PANTONE438PC[/Separation/PANTONE#20438#20PC/DeviceCMYK 349 0 R]/PANTONE439PC[/Separation/PANTONE#20439#20PC/DeviceCMYK
+350 0 R]/PANTONE440PC[/Separation/PANTONE#20440#20PC/DeviceCMYK 351 0 R]/PANTONE441PC[/Separation/PANTONE#20441#20PC/DeviceCMYK
+352 0 R]/PANTONE442PC[/Separation/PANTONE#20442#20PC/DeviceCMYK 353 0 R]/PANTONE443PC[/Separation/PANTONE#20443#20PC/DeviceCMYK
+354 0 R]/PANTONE444PC[/Separation/PANTONE#20444#20PC/DeviceCMYK 355 0 R]/PANTONE445PC[/Separation/PANTONE#20445#20PC/DeviceCMYK
+356 0 R]/PANTONE446PC[/Separation/PANTONE#20446#20PC/DeviceCMYK 357 0 R]/PANTONE447PC[/Separation/PANTONE#20447#20PC/DeviceCMYK
+358 0 R]/PANTONE448PC[/Separation/PANTONE#20448#20PC/DeviceCMYK 359 0 R]/PANTONE449PC[/Separation/PANTONE#20449#20PC/DeviceCMYK
+360 0 R]/PANTONE450PC[/Separation/PANTONE#20450#20PC/DeviceCMYK 361 0 R]/PANTONE451PC[/Separation/PANTONE#20451#20PC/DeviceCMYK
+362 0 R]/PANTONE452PC[/Separation/PANTONE#20452#20PC/DeviceCMYK 363 0 R]/PANTONE453PC[/Separation/PANTONE#20453#20PC/DeviceCMYK
+364 0 R]/PANTONE454PC[/Separation/PANTONE#20454#20PC/DeviceCMYK 365 0 R]/PANTONE455PC[/Separation/PANTONE#20455#20PC/DeviceCMYK
+366 0 R]/PANTONE456PC[/Separation/PANTONE#20456#20PC/DeviceCMYK 367 0 R]/PANTONE457PC[/Separation/PANTONE#20457#20PC/DeviceCMYK
+368 0 R]/PANTONE458PC[/Separation/PANTONE#20458#20PC/DeviceCMYK 369 0 R]/PANTONE459PC[/Separation/PANTONE#20459#20PC/DeviceCMYK
+370 0 R]/PANTONE460PC[/Separation/PANTONE#20460#20PC/DeviceCMYK 371 0 R]/PANTONE461PC[/Separation/PANTONE#20461#20PC/DeviceCMYK
+372 0 R]/PANTONE462PC[/Separation/PANTONE#20462#20PC/DeviceCMYK 373 0 R]/PANTONE463PC[/Separation/PANTONE#20463#20PC/DeviceCMYK
+374 0 R]/PANTONE464PC[/Separation/PANTONE#20464#20PC/DeviceCMYK 375 0 R]/PANTONE465PC[/Separation/PANTONE#20465#20PC/DeviceCMYK
+376 0 R]/PANTONE466PC[/Separation/PANTONE#20466#20PC/DeviceCMYK 377 0 R]/PANTONE467PC[/Separation/PANTONE#20467#20PC/DeviceCMYK
+378 0 R]/PANTONE468PC[/Separation/PANTONE#20468#20PC/DeviceCMYK 379 0 R]/PANTONE469PC[/Separation/PANTONE#20469#20PC/DeviceCMYK
+380 0 R]/PANTONE470PC[/Separation/PANTONE#20470#20PC/DeviceCMYK 381 0 R]/PANTONE471PC[/Separation/PANTONE#20471#20PC/DeviceCMYK
+382 0 R]/PANTONE472PC[/Separation/PANTONE#20472#20PC/DeviceCMYK 383 0 R]/PANTONE473PC[/Separation/PANTONE#20473#20PC/DeviceCMYK
+384 0 R]/PANTONE474PC[/Separation/PANTONE#20474#20PC/DeviceCMYK 385 0 R]/PANTONE475PC[/Separation/PANTONE#20475#20PC/DeviceCMYK
+386 0 R]/PANTONE476PC[/Separation/PANTONE#20476#20PC/DeviceCMYK 387 0 R]/PANTONE477PC[/Separation/PANTONE#20477#20PC/DeviceCMYK
+388 0 R]/PANTONE478PC[/Separation/PANTONE#20478#20PC/DeviceCMYK 389 0 R]/PANTONE479PC[/Separation/PANTONE#20479#20PC/DeviceCMYK
+390 0 R]/PANTONE480PC[/Separation/PANTONE#20480#20PC/DeviceCMYK 391 0 R]/PANTONE481PC[/Separation/PANTONE#20481#20PC/DeviceCMYK
+392 0 R]/PANTONE482PC[/Separation/PANTONE#20482#20PC/DeviceCMYK 393 0 R]/PANTONE483PC[/Separation/PANTONE#20483#20PC/DeviceCMYK
+394 0 R]/PANTONE484PC[/Separation/PANTONE#20484#20PC/DeviceCMYK 395 0 R]/PANTONE485PC[/Separation/PANTONE#20485#20PC/DeviceCMYK
+396 0 R]/PANTONE486PC[/Separation/PANTONE#20486#20PC/DeviceCMYK 397 0 R]/PANTONE487PC[/Separation/PANTONE#20487#20PC/DeviceCMYK
+398 0 R]/PANTONE488PC[/Separation/PANTONE#20488#20PC/DeviceCMYK 399 0 R]/PANTONE489PC[/Separation/PANTONE#20489#20PC/DeviceCMYK
+400 0 R]/PANTONE490PC[/Separation/PANTONE#20490#20PC/DeviceCMYK 401 0 R]/PANTONE491PC[/Separation/PANTONE#20491#20PC/DeviceCMYK
+402 0 R]/PANTONE492PC[/Separation/PANTONE#20492#20PC/DeviceCMYK 403 0 R]/PANTONE493PC[/Separation/PANTONE#20493#20PC/DeviceCMYK
+404 0 R]/PANTONE494PC[/Separation/PANTONE#20494#20PC/DeviceCMYK 405 0 R]/PANTONE495PC[/Separation/PANTONE#20495#20PC/DeviceCMYK
+406 0 R]/PANTONE496PC[/Separation/PANTONE#20496#20PC/DeviceCMYK 407 0 R]/PANTONE497PC[/Separation/PANTONE#20497#20PC/DeviceCMYK
+408 0 R]/PANTONE498PC[/Separation/PANTONE#20498#20PC/DeviceCMYK 409 0 R]/PANTONE499PC[/Separation/PANTONE#20499#20PC/DeviceCMYK
+410 0 R]/PANTONE500PC[/Separation/PANTONE#20500#20PC/DeviceCMYK 411 0 R]/PANTONE501PC[/Separation/PANTONE#20501#20PC/DeviceCMYK
+412 0 R]/PANTONE502PC[/Separation/PANTONE#20502#20PC/DeviceCMYK 413 0 R]/PANTONE503PC[/Separation/PANTONE#20503#20PC/DeviceCMYK
+414 0 R]/PANTONE504PC[/Separation/PANTONE#20504#20PC/DeviceCMYK 415 0 R]/PANTONE505PC[/Separation/PANTONE#20505#20PC/DeviceCMYK
+416 0 R]/PANTONE506PC[/Separation/PANTONE#20506#20PC/DeviceCMYK 417 0 R]/PANTONE507PC[/Separation/PANTONE#20507#20PC/DeviceCMYK
+418 0 R]/PANTONE508PC[/Separation/PANTONE#20508#20PC/DeviceCMYK 419 0 R]/PANTONE509PC[/Separation/PANTONE#20509#20PC/DeviceCMYK
+420 0 R]/PANTONE510PC[/Separation/PANTONE#20510#20PC/DeviceCMYK 421 0 R]/PANTONE511PC[/Separation/PANTONE#20511#20PC/DeviceCMYK
+422 0 R]/PANTONE512PC[/Separation/PANTONE#20512#20PC/DeviceCMYK 423 0 R]/PANTONE513PC[/Separation/PANTONE#20513#20PC/DeviceCMYK
+424 0 R]/PANTONE514PC[/Separation/PANTONE#20514#20PC/DeviceCMYK 425 0 R]/PANTONE515PC[/Separation/PANTONE#20515#20PC/DeviceCMYK
+426 0 R]/PANTONE516PC[/Separation/PANTONE#20516#20PC/DeviceCMYK 427 0 R]/PANTONE517PC[/Separation/PANTONE#20517#20PC/DeviceCMYK
+428 0 R]/PANTONE518PC[/Separation/PANTONE#20518#20PC/DeviceCMYK 429 0 R]/PANTONE519PC[/Separation/PANTONE#20519#20PC/DeviceCMYK
+430 0 R]/PANTONE520PC[/Separation/PANTONE#20520#20PC/DeviceCMYK 431 0 R]/PANTONE521PC[/Separation/PANTONE#20521#20PC/DeviceCMYK
+432 0 R]/PANTONE522PC[/Separation/PANTONE#20522#20PC/DeviceCMYK 433 0 R]/PANTONE523PC[/Separation/PANTONE#20523#20PC/DeviceCMYK
+434 0 R]/PANTONE524PC[/Separation/PANTONE#20524#20PC/DeviceCMYK 435 0 R]/PANTONE525PC[/Separation/PANTONE#20525#20PC/DeviceCMYK
+436 0 R]/PANTONE526PC[/Separation/PANTONE#20526#20PC/DeviceCMYK 437 0 R]/PANTONE527PC[/Separation/PANTONE#20527#20PC/DeviceCMYK
+438 0 R]/PANTONE528PC[/Separation/PANTONE#20528#20PC/DeviceCMYK 439 0 R]/PANTONE529PC[/Separation/PANTONE#20529#20PC/DeviceCMYK
+440 0 R]/PANTONE530PC[/Separation/PANTONE#20530#20PC/DeviceCMYK 441 0 R]/PANTONE531PC[/Separation/PANTONE#20531#20PC/DeviceCMYK
+442 0 R]/PANTONE532PC[/Separation/PANTONE#20532#20PC/DeviceCMYK 443 0 R]/PANTONE533PC[/Separation/PANTONE#20533#20PC/DeviceCMYK
+444 0 R]/PANTONE534PC[/Separation/PANTONE#20534#20PC/DeviceCMYK 445 0 R]/PANTONE535PC[/Separation/PANTONE#20535#20PC/DeviceCMYK
+446 0 R]/PANTONE536PC[/Separation/PANTONE#20536#20PC/DeviceCMYK 447 0 R]/PANTONE537PC[/Separation/PANTONE#20537#20PC/DeviceCMYK
+448 0 R]/PANTONE538PC[/Separation/PANTONE#20538#20PC/DeviceCMYK 449 0 R]/PANTONE539PC[/Separation/PANTONE#20539#20PC/DeviceCMYK
+450 0 R]/PANTONE540PC[/Separation/PANTONE#20540#20PC/DeviceCMYK 451 0 R]/PANTONE541PC[/Separation/PANTONE#20541#20PC/DeviceCMYK
+452 0 R]/PANTONE542PC[/Separation/PANTONE#20542#20PC/DeviceCMYK 453 0 R]/PANTONE543PC[/Separation/PANTONE#20543#20PC/DeviceCMYK
+454 0 R]/PANTONE544PC[/Separation/PANTONE#20544#20PC/DeviceCMYK 455 0 R]/PANTONE545PC[/Separation/PANTONE#20545#20PC/DeviceCMYK
+456 0 R]/PANTONE546PC[/Separation/PANTONE#20546#20PC/DeviceCMYK 457 0 R]/PANTONE547PC[/Separation/PANTONE#20547#20PC/DeviceCMYK
+458 0 R]/PANTONE548PC[/Separation/PANTONE#20548#20PC/DeviceCMYK 459 0 R]/PANTONE549PC[/Separation/PANTONE#20549#20PC/DeviceCMYK
+460 0 R]/PANTONE550PC[/Separation/PANTONE#20550#20PC/DeviceCMYK 461 0 R]/PANTONE551PC[/Separation/PANTONE#20551#20PC/DeviceCMYK
+462 0 R]/PANTONE552PC[/Separation/PANTONE#20552#20PC/DeviceCMYK 463 0 R]/PANTONE553PC[/Separation/PANTONE#20553#20PC/DeviceCMYK
+464 0 R]/PANTONE554PC[/Separation/PANTONE#20554#20PC/DeviceCMYK 465 0 R]/PANTONE555PC[/Separation/PANTONE#20555#20PC/DeviceCMYK
+466 0 R]/PANTONE556PC[/Separation/PANTONE#20556#20PC/DeviceCMYK 467 0 R]/PANTONE557PC[/Separation/PANTONE#20557#20PC/DeviceCMYK
+468 0 R]/PANTONE558PC[/Separation/PANTONE#20558#20PC/DeviceCMYK 469 0 R]/PANTONE559PC[/Separation/PANTONE#20559#20PC/DeviceCMYK
+470 0 R]/PANTONE560PC[/Separation/PANTONE#20560#20PC/DeviceCMYK 471 0 R]/PANTONE561PC[/Separation/PANTONE#20561#20PC/DeviceCMYK
+472 0 R]/PANTONE562PC[/Separation/PANTONE#20562#20PC/DeviceCMYK 473 0 R]/PANTONE563PC[/Separation/PANTONE#20563#20PC/DeviceCMYK
+474 0 R]/PANTONE564PC[/Separation/PANTONE#20564#20PC/DeviceCMYK 475 0 R]/PANTONE565PC[/Separation/PANTONE#20565#20PC/DeviceCMYK
+476 0 R]/PANTONE566PC[/Separation/PANTONE#20566#20PC/DeviceCMYK 477 0 R]/PANTONE567PC[/Separation/PANTONE#20567#20PC/DeviceCMYK
+478 0 R]/PANTONE568PC[/Separation/PANTONE#20568#20PC/DeviceCMYK 479 0 R]/PANTONE569PC[/Separation/PANTONE#20569#20PC/DeviceCMYK
+480 0 R]/PANTONE570PC[/Separation/PANTONE#20570#20PC/DeviceCMYK 481 0 R]/PANTONE571PC[/Separation/PANTONE#20571#20PC/DeviceCMYK
+482 0 R]/PANTONE572PC[/Separation/PANTONE#20572#20PC/DeviceCMYK 483 0 R]/PANTONE573PC[/Separation/PANTONE#20573#20PC/DeviceCMYK
+484 0 R]/PANTONE574PC[/Separation/PANTONE#20574#20PC/DeviceCMYK 485 0 R]/PANTONE575PC[/Separation/PANTONE#20575#20PC/DeviceCMYK
+486 0 R]/PANTONE576PC[/Separation/PANTONE#20576#20PC/DeviceCMYK 487 0 R]/PANTONE577PC[/Separation/PANTONE#20577#20PC/DeviceCMYK
+488 0 R]/PANTONE578PC[/Separation/PANTONE#20578#20PC/DeviceCMYK 489 0 R]/PANTONE579PC[/Separation/PANTONE#20579#20PC/DeviceCMYK
+490 0 R]/PANTONE580PC[/Separation/PANTONE#20580#20PC/DeviceCMYK 491 0 R]/PANTONE581PC[/Separation/PANTONE#20581#20PC/DeviceCMYK
+492 0 R]/PANTONE582PC[/Separation/PANTONE#20582#20PC/DeviceCMYK 493 0 R]/PANTONE583PC[/Separation/PANTONE#20583#20PC/DeviceCMYK
+494 0 R]/PANTONE584PC[/Separation/PANTONE#20584#20PC/DeviceCMYK 495 0 R]/PANTONE585PC[/Separation/PANTONE#20585#20PC/DeviceCMYK
+496 0 R]/PANTONE586PC[/Separation/PANTONE#20586#20PC/DeviceCMYK 497 0 R]/PANTONE587PC[/Separation/PANTONE#20587#20PC/DeviceCMYK
+498 0 R]/PANTONE600PC[/Separation/PANTONE#20600#20PC/DeviceCMYK 499 0 R]/PANTONE601PC[/Separation/PANTONE#20601#20PC/DeviceCMYK
+500 0 R]/PANTONE602PC[/Separation/PANTONE#20602#20PC/DeviceCMYK 501 0 R]/PANTONE603PC[/Separation/PANTONE#20603#20PC/DeviceCMYK
+502 0 R]/PANTONE604PC[/Separation/PANTONE#20604#20PC/DeviceCMYK 503 0 R]/PANTONE605PC[/Separation/PANTONE#20605#20PC/DeviceCMYK
+504 0 R]/PANTONE606PC[/Separation/PANTONE#20606#20PC/DeviceCMYK 505 0 R]/PANTONE607PC[/Separation/PANTONE#20607#20PC/DeviceCMYK
+506 0 R]/PANTONE608PC[/Separation/PANTONE#20608#20PC/DeviceCMYK 507 0 R]/PANTONE609PC[/Separation/PANTONE#20609#20PC/DeviceCMYK
+508 0 R]/PANTONE610PC[/Separation/PANTONE#20610#20PC/DeviceCMYK 509 0 R]/PANTONE611PC[/Separation/PANTONE#20611#20PC/DeviceCMYK
+510 0 R]/PANTONE612PC[/Separation/PANTONE#20612#20PC/DeviceCMYK 511 0 R]/PANTONE613PC[/Separation/PANTONE#20613#20PC/DeviceCMYK
+512 0 R]/PANTONE614PC[/Separation/PANTONE#20614#20PC/DeviceCMYK 513 0 R]/PANTONE615PC[/Separation/PANTONE#20615#20PC/DeviceCMYK
+514 0 R]/PANTONE616PC[/Separation/PANTONE#20616#20PC/DeviceCMYK 515 0 R]/PANTONE617PC[/Separation/PANTONE#20617#20PC/DeviceCMYK
+516 0 R]/PANTONE618PC[/Separation/PANTONE#20618#20PC/DeviceCMYK 517 0 R]/PANTONE619PC[/Separation/PANTONE#20619#20PC/DeviceCMYK
+518 0 R]/PANTONE620PC[/Separation/PANTONE#20620#20PC/DeviceCMYK 519 0 R]/PANTONE621PC[/Separation/PANTONE#20621#20PC/DeviceCMYK
+520 0 R]/PANTONE622PC[/Separation/PANTONE#20622#20PC/DeviceCMYK 521 0 R]/PANTONE623PC[/Separation/PANTONE#20623#20PC/DeviceCMYK
+522 0 R]/PANTONE624PC[/Separation/PANTONE#20624#20PC/DeviceCMYK 523 0 R]/PANTONE625PC[/Separation/PANTONE#20625#20PC/DeviceCMYK
+524 0 R]/PANTONE626PC[/Separation/PANTONE#20626#20PC/DeviceCMYK 525 0 R]/PANTONE627PC[/Separation/PANTONE#20627#20PC/DeviceCMYK
+526 0 R]/PANTONE628PC[/Separation/PANTONE#20628#20PC/DeviceCMYK 527 0 R]/PANTONE629PC[/Separation/PANTONE#20629#20PC/DeviceCMYK
+528 0 R]/PANTONE630PC[/Separation/PANTONE#20630#20PC/DeviceCMYK 529 0 R]/PANTONE631PC[/Separation/PANTONE#20631#20PC/DeviceCMYK
+530 0 R]/PANTONE632PC[/Separation/PANTONE#20632#20PC/DeviceCMYK 531 0 R]/PANTONE633PC[/Separation/PANTONE#20633#20PC/DeviceCMYK
+532 0 R]/PANTONE634PC[/Separation/PANTONE#20634#20PC/DeviceCMYK 533 0 R]/PANTONE635PC[/Separation/PANTONE#20635#20PC/DeviceCMYK
+534 0 R]/PANTONE636PC[/Separation/PANTONE#20636#20PC/DeviceCMYK 535 0 R]/PANTONE637PC[/Separation/PANTONE#20637#20PC/DeviceCMYK
+536 0 R]/PANTONE638PC[/Separation/PANTONE#20638#20PC/DeviceCMYK 537 0 R]/PANTONE639PC[/Separation/PANTONE#20639#20PC/DeviceCMYK
+538 0 R]/PANTONE640PC[/Separation/PANTONE#20640#20PC/DeviceCMYK 539 0 R]/PANTONE641PC[/Separation/PANTONE#20641#20PC/DeviceCMYK
+540 0 R]/PANTONE642PC[/Separation/PANTONE#20642#20PC/DeviceCMYK 541 0 R]/PANTONE643PC[/Separation/PANTONE#20643#20PC/DeviceCMYK
+542 0 R]/PANTONE644PC[/Separation/PANTONE#20644#20PC/DeviceCMYK 543 0 R]/PANTONE645PC[/Separation/PANTONE#20645#20PC/DeviceCMYK
+544 0 R]/PANTONE646PC[/Separation/PANTONE#20646#20PC/DeviceCMYK 545 0 R]/PANTONE647PC[/Separation/PANTONE#20647#20PC/DeviceCMYK
+546 0 R]/PANTONE648PC[/Separation/PANTONE#20648#20PC/DeviceCMYK 547 0 R]/PANTONE649PC[/Separation/PANTONE#20649#20PC/DeviceCMYK
+548 0 R]/PANTONE650PC[/Separation/PANTONE#20650#20PC/DeviceCMYK 549 0 R]/PANTONE651PC[/Separation/PANTONE#20651#20PC/DeviceCMYK
+550 0 R]/PANTONE652PC[/Separation/PANTONE#20652#20PC/DeviceCMYK 551 0 R]/PANTONE653PC[/Separation/PANTONE#20653#20PC/DeviceCMYK
+552 0 R]/PANTONE654PC[/Separation/PANTONE#20654#20PC/DeviceCMYK 553 0 R]/PANTONE655PC[/Separation/PANTONE#20655#20PC/DeviceCMYK
+554 0 R]/PANTONE656PC[/Separation/PANTONE#20656#20PC/DeviceCMYK 555 0 R]/PANTONE657PC[/Separation/PANTONE#20657#20PC/DeviceCMYK
+556 0 R]/PANTONE658PC[/Separation/PANTONE#20658#20PC/DeviceCMYK 557 0 R]/PANTONE659PC[/Separation/PANTONE#20659#20PC/DeviceCMYK
+558 0 R]/PANTONE660PC[/Separation/PANTONE#20660#20PC/DeviceCMYK 559 0 R]/PANTONE661PC[/Separation/PANTONE#20661#20PC/DeviceCMYK
+560 0 R]/PANTONE662PC[/Separation/PANTONE#20662#20PC/DeviceCMYK 561 0 R]/PANTONE663PC[/Separation/PANTONE#20663#20PC/DeviceCMYK
+562 0 R]/PANTONE664PC[/Separation/PANTONE#20664#20PC/DeviceCMYK 563 0 R]/PANTONE665PC[/Separation/PANTONE#20665#20PC/DeviceCMYK
+564 0 R]/PANTONE666PC[/Separation/PANTONE#20666#20PC/DeviceCMYK 565 0 R]/PANTONE667PC[/Separation/PANTONE#20667#20PC/DeviceCMYK
+566 0 R]/PANTONE668PC[/Separation/PANTONE#20668#20PC/DeviceCMYK 567 0 R]/PANTONE669PC[/Separation/PANTONE#20669#20PC/DeviceCMYK
+568 0 R]/PANTONE670PC[/Separation/PANTONE#20670#20PC/DeviceCMYK 569 0 R]/PANTONE671PC[/Separation/PANTONE#20671#20PC/DeviceCMYK
+570 0 R]/PANTONE672PC[/Separation/PANTONE#20672#20PC/DeviceCMYK 571 0 R]/PANTONE673PC[/Separation/PANTONE#20673#20PC/DeviceCMYK
+572 0 R]/PANTONE674PC[/Separation/PANTONE#20674#20PC/DeviceCMYK 573 0 R]/PANTONE675PC[/Separation/PANTONE#20675#20PC/DeviceCMYK
+574 0 R]/PANTONE676PC[/Separation/PANTONE#20676#20PC/DeviceCMYK 575 0 R]/PANTONE677PC[/Separation/PANTONE#20677#20PC/DeviceCMYK
+576 0 R]/PANTONE678PC[/Separation/PANTONE#20678#20PC/DeviceCMYK 577 0 R]/PANTONE679PC[/Separation/PANTONE#20679#20PC/DeviceCMYK
+578 0 R]/PANTONE680PC[/Separation/PANTONE#20680#20PC/DeviceCMYK 579 0 R]/PANTONE681PC[/Separation/PANTONE#20681#20PC/DeviceCMYK
+580 0 R]/PANTONE682PC[/Separation/PANTONE#20682#20PC/DeviceCMYK 581 0 R]/PANTONE683PC[/Separation/PANTONE#20683#20PC/DeviceCMYK
+582 0 R]/PANTONE684PC[/Separation/PANTONE#20684#20PC/DeviceCMYK 583 0 R]/PANTONE685PC[/Separation/PANTONE#20685#20PC/DeviceCMYK
+584 0 R]/PANTONE686PC[/Separation/PANTONE#20686#20PC/DeviceCMYK 585 0 R]/PANTONE687PC[/Separation/PANTONE#20687#20PC/DeviceCMYK
+586 0 R]/PANTONE688PC[/Separation/PANTONE#20688#20PC/DeviceCMYK 587 0 R]/PANTONE689PC[/Separation/PANTONE#20689#20PC/DeviceCMYK
+588 0 R]/PANTONE690PC[/Separation/PANTONE#20690#20PC/DeviceCMYK 589 0 R]/PANTONE691PC[/Separation/PANTONE#20691#20PC/DeviceCMYK
+590 0 R]/PANTONE692PC[/Separation/PANTONE#20692#20PC/DeviceCMYK 591 0 R]/PANTONE693PC[/Separation/PANTONE#20693#20PC/DeviceCMYK
+592 0 R]/PANTONE694PC[/Separation/PANTONE#20694#20PC/DeviceCMYK 593 0 R]/PANTONE695PC[/Separation/PANTONE#20695#20PC/DeviceCMYK
+594 0 R]/PANTONE696PC[/Separation/PANTONE#20696#20PC/DeviceCMYK 595 0 R]/PANTONE697PC[/Separation/PANTONE#20697#20PC/DeviceCMYK
+596 0 R]/PANTONE698PC[/Separation/PANTONE#20698#20PC/DeviceCMYK 597 0 R]/PANTONE699PC[/Separation/PANTONE#20699#20PC/DeviceCMYK
+598 0 R]/PANTONE700PC[/Separation/PANTONE#20700#20PC/DeviceCMYK 599 0 R]/PANTONE701PC[/Separation/PANTONE#20701#20PC/DeviceCMYK
+600 0 R]/PANTONE702PC[/Separation/PANTONE#20702#20PC/DeviceCMYK 601 0 R]/PANTONE703PC[/Separation/PANTONE#20703#20PC/DeviceCMYK
+602 0 R]/PANTONE704PC[/Separation/PANTONE#20704#20PC/DeviceCMYK 603 0 R]/PANTONE705PC[/Separation/PANTONE#20705#20PC/DeviceCMYK
+604 0 R]/PANTONE706PC[/Separation/PANTONE#20706#20PC/DeviceCMYK 605 0 R]/PANTONE707PC[/Separation/PANTONE#20707#20PC/DeviceCMYK
+606 0 R]/PANTONE708PC[/Separation/PANTONE#20708#20PC/DeviceCMYK 607 0 R]/PANTONE709PC[/Separation/PANTONE#20709#20PC/DeviceCMYK
+608 0 R]/PANTONE710PC[/Separation/PANTONE#20710#20PC/DeviceCMYK 609 0 R]/PANTONE711PC[/Separation/PANTONE#20711#20PC/DeviceCMYK
+610 0 R]/PANTONE712PC[/Separation/PANTONE#20712#20PC/DeviceCMYK 611 0 R]/PANTONE713PC[/Separation/PANTONE#20713#20PC/DeviceCMYK
+612 0 R]/PANTONE714PC[/Separation/PANTONE#20714#20PC/DeviceCMYK 613 0 R]/PANTONE715PC[/Separation/PANTONE#20715#20PC/DeviceCMYK
+614 0 R]/PANTONE716PC[/Separation/PANTONE#20716#20PC/DeviceCMYK 615 0 R]/PANTONE717PC[/Separation/PANTONE#20717#20PC/DeviceCMYK
+616 0 R]/PANTONE718PC[/Separation/PANTONE#20718#20PC/DeviceCMYK 617 0 R]/PANTONE719PC[/Separation/PANTONE#20719#20PC/DeviceCMYK
+618 0 R]/PANTONE720PC[/Separation/PANTONE#20720#20PC/DeviceCMYK 619 0 R]/PANTONE721PC[/Separation/PANTONE#20721#20PC/DeviceCMYK
+620 0 R]/PANTONE722PC[/Separation/PANTONE#20722#20PC/DeviceCMYK 621 0 R]/PANTONE723PC[/Separation/PANTONE#20723#20PC/DeviceCMYK
+622 0 R]/PANTONE724PC[/Separation/PANTONE#20724#20PC/DeviceCMYK 623 0 R]/PANTONE725PC[/Separation/PANTONE#20725#20PC/DeviceCMYK
+624 0 R]/PANTONE726PC[/Separation/PANTONE#20726#20PC/DeviceCMYK 625 0 R]/PANTONE727PC[/Separation/PANTONE#20727#20PC/DeviceCMYK
+626 0 R]/PANTONE728PC[/Separation/PANTONE#20728#20PC/DeviceCMYK 627 0 R]/PANTONE729PC[/Separation/PANTONE#20729#20PC/DeviceCMYK
+628 0 R]/PANTONE730PC[/Separation/PANTONE#20730#20PC/DeviceCMYK 629 0 R]/PANTONE731PC[/Separation/PANTONE#20731#20PC/DeviceCMYK
+630 0 R]/PANTONE732PC[/Separation/PANTONE#20732#20PC/DeviceCMYK 631 0 R]/PANTONE1205PC[/Separation/PANTONE#201205#20PC/DeviceCMYK
+632 0 R]/PANTONE1215PC[/Separation/PANTONE#201215#20PC/DeviceCMYK 633 0 R]/PANTONE1225PC[/Separation/PANTONE#201225#20PC/DeviceCMYK
+634 0 R]/PANTONE1235PC[/Separation/PANTONE#201235#20PC/DeviceCMYK 635 0 R]/PANTONE1245PC[/Separation/PANTONE#201245#20PC/DeviceCMYK
+636 0 R]/PANTONE1255PC[/Separation/PANTONE#201255#20PC/DeviceCMYK 637 0 R]/PANTONE1265PC[/Separation/PANTONE#201265#20PC/DeviceCMYK
+638 0 R]/PANTONE1345PC[/Separation/PANTONE#201345#20PC/DeviceCMYK 639 0 R]/PANTONE1355PC[/Separation/PANTONE#201355#20PC/DeviceCMYK
+640 0 R]/PANTONE1365PC[/Separation/PANTONE#201365#20PC/DeviceCMYK 641 0 R]/PANTONE1375PC[/Separation/PANTONE#201375#20PC/DeviceCMYK
+642 0 R]/PANTONE1385PC[/Separation/PANTONE#201385#20PC/DeviceCMYK 643 0 R]/PANTONE1395PC[/Separation/PANTONE#201395#20PC/DeviceCMYK
+644 0 R]/PANTONE1405PC[/Separation/PANTONE#201405#20PC/DeviceCMYK 645 0 R]/PANTONE1485PC[/Separation/PANTONE#201485#20PC/DeviceCMYK
+646 0 R]/PANTONE1495PC[/Separation/PANTONE#201495#20PC/DeviceCMYK 647 0 R]/PANTONE1505PC[/Separation/PANTONE#201505#20PC/DeviceCMYK
+648 0 R]/PANTONE1525PC[/Separation/PANTONE#201525#20PC/DeviceCMYK 649 0 R]/PANTONE1535PC[/Separation/PANTONE#201535#20PC/DeviceCMYK
+650 0 R]/PANTONE1545PC[/Separation/PANTONE#201545#20PC/DeviceCMYK 651 0 R]/PANTONE1555PC[/Separation/PANTONE#201555#20PC/DeviceCMYK
+652 0 R]/PANTONE1565PC[/Separation/PANTONE#201565#20PC/DeviceCMYK 653 0 R]/PANTONE1575PC[/Separation/PANTONE#201575#20PC/DeviceCMYK
+654 0 R]/PANTONE1585PC[/Separation/PANTONE#201585#20PC/DeviceCMYK 655 0 R]/PANTONE1595PC[/Separation/PANTONE#201595#20PC/DeviceCMYK
+656 0 R]/PANTONE1605PC[/Separation/PANTONE#201605#20PC/DeviceCMYK 657 0 R]/PANTONE1615PC[/Separation/PANTONE#201615#20PC/DeviceCMYK
+658 0 R]/PANTONE1625PC[/Separation/PANTONE#201625#20PC/DeviceCMYK 659 0 R]/PANTONE1635PC[/Separation/PANTONE#201635#20PC/DeviceCMYK
+660 0 R]/PANTONE1645PC[/Separation/PANTONE#201645#20PC/DeviceCMYK 661 0 R]/PANTONE1655PC[/Separation/PANTONE#201655#20PC/DeviceCMYK
+662 0 R]/PANTONE1665PC[/Separation/PANTONE#201665#20PC/DeviceCMYK 663 0 R]/PANTONE1675PC[/Separation/PANTONE#201675#20PC/DeviceCMYK
+664 0 R]/PANTONE1685PC[/Separation/PANTONE#201685#20PC/DeviceCMYK 665 0 R]/PANTONE1765PC[/Separation/PANTONE#201765#20PC/DeviceCMYK
+666 0 R]/PANTONE1767PC[/Separation/PANTONE#201767#20PC/DeviceCMYK 667 0 R]/PANTONE1775PC[/Separation/PANTONE#201775#20PC/DeviceCMYK
+668 0 R]/PANTONE1777PC[/Separation/PANTONE#201777#20PC/DeviceCMYK 669 0 R]/PANTONE1785PC[/Separation/PANTONE#201785#20PC/DeviceCMYK
+670 0 R]/PANTONE1787PC[/Separation/PANTONE#201787#20PC/DeviceCMYK 671 0 R]/PANTONE1788PC[/Separation/PANTONE#201788#20PC/DeviceCMYK
+672 0 R]/PANTONE1795PC[/Separation/PANTONE#201795#20PC/DeviceCMYK 673 0 R]/PANTONE1797PC[/Separation/PANTONE#201797#20PC/DeviceCMYK
+674 0 R]/PANTONE1805PC[/Separation/PANTONE#201805#20PC/DeviceCMYK 675 0 R]/PANTONE1807PC[/Separation/PANTONE#201807#20PC/DeviceCMYK
+676 0 R]/PANTONE1815PC[/Separation/PANTONE#201815#20PC/DeviceCMYK 677 0 R]/PANTONE1817PC[/Separation/PANTONE#201817#20PC/DeviceCMYK
+678 0 R]/PANTONE1895PC[/Separation/PANTONE#201895#20PC/DeviceCMYK 679 0 R]/PANTONE1905PC[/Separation/PANTONE#201905#20PC/DeviceCMYK
+680 0 R]/PANTONE1915PC[/Separation/PANTONE#201915#20PC/DeviceCMYK 681 0 R]/PANTONE1925PC[/Separation/PANTONE#201925#20PC/DeviceCMYK
+682 0 R]/PANTONE1935PC[/Separation/PANTONE#201935#20PC/DeviceCMYK 683 0 R]/PANTONE1945PC[/Separation/PANTONE#201945#20PC/DeviceCMYK
+684 0 R]/PANTONE1955PC[/Separation/PANTONE#201955#20PC/DeviceCMYK 685 0 R]/PANTONE2365PC[/Separation/PANTONE#202365#20PC/DeviceCMYK
+686 0 R]/PANTONE2375PC[/Separation/PANTONE#202375#20PC/DeviceCMYK 687 0 R]/PANTONE2385PC[/Separation/PANTONE#202385#20PC/DeviceCMYK
+688 0 R]/PANTONE2395PC[/Separation/PANTONE#202395#20PC/DeviceCMYK 689 0 R]/PANTONE2405PC[/Separation/PANTONE#202405#20PC/DeviceCMYK
+690 0 R]/PANTONE2415PC[/Separation/PANTONE#202415#20PC/DeviceCMYK 691 0 R]/PANTONE2425PC[/Separation/PANTONE#202425#20PC/DeviceCMYK
+692 0 R]/PANTONE2562PC[/Separation/PANTONE#202562#20PC/DeviceCMYK 693 0 R]/PANTONE2563PC[/Separation/PANTONE#202563#20PC/DeviceCMYK
+694 0 R]/PANTONE2567PC[/Separation/PANTONE#202567#20PC/DeviceCMYK 695 0 R]/PANTONE2572PC[/Separation/PANTONE#202572#20PC/DeviceCMYK
+696 0 R]/PANTONE2573PC[/Separation/PANTONE#202573#20PC/DeviceCMYK 697 0 R]/PANTONE2577PC[/Separation/PANTONE#202577#20PC/DeviceCMYK
+698 0 R]/PANTONE2582PC[/Separation/PANTONE#202582#20PC/DeviceCMYK 699 0 R]/PANTONE2583PC[/Separation/PANTONE#202583#20PC/DeviceCMYK
+700 0 R]/PANTONE2587PC[/Separation/PANTONE#202587#20PC/DeviceCMYK 701 0 R]/PANTONE2592PC[/Separation/PANTONE#202592#20PC/DeviceCMYK
+702 0 R]/PANTONE2593PC[/Separation/PANTONE#202593#20PC/DeviceCMYK 703 0 R]/PANTONE2597PC[/Separation/PANTONE#202597#20PC/DeviceCMYK
+704 0 R]/PANTONE2602PC[/Separation/PANTONE#202602#20PC/DeviceCMYK 705 0 R]/PANTONE2603PC[/Separation/PANTONE#202603#20PC/DeviceCMYK
+706 0 R]/PANTONE2607PC[/Separation/PANTONE#202607#20PC/DeviceCMYK 707 0 R]/PANTONE2612PC[/Separation/PANTONE#202612#20PC/DeviceCMYK
+708 0 R]/PANTONE2613PC[/Separation/PANTONE#202613#20PC/DeviceCMYK 709 0 R]/PANTONE2617PC[/Separation/PANTONE#202617#20PC/DeviceCMYK
+710 0 R]/PANTONE2622PC[/Separation/PANTONE#202622#20PC/DeviceCMYK 711 0 R]/PANTONE2623PC[/Separation/PANTONE#202623#20PC/DeviceCMYK
+712 0 R]/PANTONE2627PC[/Separation/PANTONE#202627#20PC/DeviceCMYK 713 0 R]/PANTONE2635PC[/Separation/PANTONE#202635#20PC/DeviceCMYK
+714 0 R]/PANTONE2645PC[/Separation/PANTONE#202645#20PC/DeviceCMYK 715 0 R]/PANTONE2655PC[/Separation/PANTONE#202655#20PC/DeviceCMYK
+716 0 R]/PANTONE2665PC[/Separation/PANTONE#202665#20PC/DeviceCMYK 717 0 R]/PANTONE2685PC[/Separation/PANTONE#202685#20PC/DeviceCMYK
+718 0 R]/PANTONE2695PC[/Separation/PANTONE#202695#20PC/DeviceCMYK 719 0 R]/PANTONE2705PC[/Separation/PANTONE#202705#20PC/DeviceCMYK
+720 0 R]/PANTONE2706PC[/Separation/PANTONE#202706#20PC/DeviceCMYK 721 0 R]/PANTONE2707PC[/Separation/PANTONE#202707#20PC/DeviceCMYK
+722 0 R]/PANTONE2708PC[/Separation/PANTONE#202708#20PC/DeviceCMYK 723 0 R]/PANTONE2715PC[/Separation/PANTONE#202715#20PC/DeviceCMYK
+724 0 R]/PANTONE2716PC[/Separation/PANTONE#202716#20PC/DeviceCMYK 725 0 R]/PANTONE2717PC[/Separation/PANTONE#202717#20PC/DeviceCMYK
+726 0 R]/PANTONE2718PC[/Separation/PANTONE#202718#20PC/DeviceCMYK 727 0 R]/PANTONE2725PC[/Separation/PANTONE#202725#20PC/DeviceCMYK
+728 0 R]/PANTONE2726PC[/Separation/PANTONE#202726#20PC/DeviceCMYK 729 0 R]/PANTONE2727PC[/Separation/PANTONE#202727#20PC/DeviceCMYK
+730 0 R]/PANTONE2728PC[/Separation/PANTONE#202728#20PC/DeviceCMYK 731 0 R]/PANTONE2735PC[/Separation/PANTONE#202735#20PC/DeviceCMYK
+732 0 R]/PANTONE2736PC[/Separation/PANTONE#202736#20PC/DeviceCMYK 733 0 R]/PANTONE2738PC[/Separation/PANTONE#202738#20PC/DeviceCMYK
+734 0 R]/PANTONE2745PC[/Separation/PANTONE#202745#20PC/DeviceCMYK 735 0 R]/PANTONE2746PC[/Separation/PANTONE#202746#20PC/DeviceCMYK
+736 0 R]/PANTONE2747PC[/Separation/PANTONE#202747#20PC/DeviceCMYK 737 0 R]/PANTONE2748PC[/Separation/PANTONE#202748#20PC/DeviceCMYK
+738 0 R]/PANTONE2755PC[/Separation/PANTONE#202755#20PC/DeviceCMYK 739 0 R]/PANTONE2756PC[/Separation/PANTONE#202756#20PC/DeviceCMYK
+740 0 R]/PANTONE2757PC[/Separation/PANTONE#202757#20PC/DeviceCMYK 741 0 R]/PANTONE2758PC[/Separation/PANTONE#202758#20PC/DeviceCMYK
+742 0 R]/PANTONE2765PC[/Separation/PANTONE#202765#20PC/DeviceCMYK 743 0 R]/PANTONE2766PC[/Separation/PANTONE#202766#20PC/DeviceCMYK
+744 0 R]/PANTONE2767PC[/Separation/PANTONE#202767#20PC/DeviceCMYK 745 0 R]/PANTONE2768PC[/Separation/PANTONE#202768#20PC/DeviceCMYK
+746 0 R]/PANTONE2905PC[/Separation/PANTONE#202905#20PC/DeviceCMYK 747 0 R]/PANTONE2915PC[/Separation/PANTONE#202915#20PC/DeviceCMYK
+748 0 R]/PANTONE2925PC[/Separation/PANTONE#202925#20PC/DeviceCMYK 749 0 R]/PANTONE2935PC[/Separation/PANTONE#202935#20PC/DeviceCMYK
+750 0 R]/PANTONE2945PC[/Separation/PANTONE#202945#20PC/DeviceCMYK 751 0 R]/PANTONE2955PC[/Separation/PANTONE#202955#20PC/DeviceCMYK
+752 0 R]/PANTONE2965PC[/Separation/PANTONE#202965#20PC/DeviceCMYK 753 0 R]/PANTONE2975PC[/Separation/PANTONE#202975#20PC/DeviceCMYK
+754 0 R]/PANTONE2985PC[/Separation/PANTONE#202985#20PC/DeviceCMYK 755 0 R]/PANTONE2995PC[/Separation/PANTONE#202995#20PC/DeviceCMYK
+756 0 R]/PANTONE3005PC[/Separation/PANTONE#203005#20PC/DeviceCMYK 757 0 R]/PANTONE3015PC[/Separation/PANTONE#203015#20PC/DeviceCMYK
+758 0 R]/PANTONE3025PC[/Separation/PANTONE#203025#20PC/DeviceCMYK 759 0 R]/PANTONE3035PC[/Separation/PANTONE#203035#20PC/DeviceCMYK
+760 0 R]/PANTONE3105PC[/Separation/PANTONE#203105#20PC/DeviceCMYK 761 0 R]/PANTONE3115PC[/Separation/PANTONE#203115#20PC/DeviceCMYK
+762 0 R]/PANTONE3125PC[/Separation/PANTONE#203125#20PC/DeviceCMYK 763 0 R]/PANTONE3135PC[/Separation/PANTONE#203135#20PC/DeviceCMYK
+764 0 R]/PANTONE3145PC[/Separation/PANTONE#203145#20PC/DeviceCMYK 765 0 R]/PANTONE3155PC[/Separation/PANTONE#203155#20PC/DeviceCMYK
+766 0 R]/PANTONE3165PC[/Separation/PANTONE#203165#20PC/DeviceCMYK 767 0 R]/PANTONE3242PC[/Separation/PANTONE#203242#20PC/DeviceCMYK
+768 0 R]/PANTONE3245PC[/Separation/PANTONE#203245#20PC/DeviceCMYK 769 0 R]/PANTONE3248PC[/Separation/PANTONE#203248#20PC/DeviceCMYK
+770 0 R]/PANTONE3252PC[/Separation/PANTONE#203252#20PC/DeviceCMYK 771 0 R]/PANTONE3255PC[/Separation/PANTONE#203255#20PC/DeviceCMYK
+772 0 R]/PANTONE3258PC[/Separation/PANTONE#203258#20PC/DeviceCMYK 773 0 R]/PANTONE3262PC[/Separation/PANTONE#203262#20PC/DeviceCMYK
+774 0 R]/PANTONE3265PC[/Separation/PANTONE#203265#20PC/DeviceCMYK 775 0 R]/PANTONE3268PC[/Separation/PANTONE#203268#20PC/DeviceCMYK
+776 0 R]/PANTONE3272PC[/Separation/PANTONE#203272#20PC/DeviceCMYK 777 0 R]/PANTONE3275PC[/Separation/PANTONE#203275#20PC/DeviceCMYK
+778 0 R]/PANTONE3278PC[/Separation/PANTONE#203278#20PC/DeviceCMYK 779 0 R]/PANTONE3282PC[/Separation/PANTONE#203282#20PC/DeviceCMYK
+780 0 R]/PANTONE3285PC[/Separation/PANTONE#203285#20PC/DeviceCMYK 781 0 R]/PANTONE3288PC[/Separation/PANTONE#203288#20PC/DeviceCMYK
+782 0 R]/PANTONE3292PC[/Separation/PANTONE#203292#20PC/DeviceCMYK 783 0 R]/PANTONE3295PC[/Separation/PANTONE#203295#20PC/DeviceCMYK
+784 0 R]/PANTONE3298PC[/Separation/PANTONE#203298#20PC/DeviceCMYK 785 0 R]/PANTONE3302PC[/Separation/PANTONE#203302#20PC/DeviceCMYK
+786 0 R]/PANTONE3305PC[/Separation/PANTONE#203305#20PC/DeviceCMYK 787 0 R]/PANTONE3308PC[/Separation/PANTONE#203308#20PC/DeviceCMYK
+788 0 R]/PANTONE3375PC[/Separation/PANTONE#203375#20PC/DeviceCMYK 789 0 R]/PANTONE3385PC[/Separation/PANTONE#203385#20PC/DeviceCMYK
+790 0 R]/PANTONE3395PC[/Separation/PANTONE#203395#20PC/DeviceCMYK 791 0 R]/PANTONE3405PC[/Separation/PANTONE#203405#20PC/DeviceCMYK
+792 0 R]/PANTONE3415PC[/Separation/PANTONE#203415#20PC/DeviceCMYK 793 0 R]/PANTONE3425PC[/Separation/PANTONE#203425#20PC/DeviceCMYK
+794 0 R]/PANTONE3435PC[/Separation/PANTONE#203435#20PC/DeviceCMYK 795 0 R]/PANTONE3935PC[/Separation/PANTONE#203935#20PC/DeviceCMYK
+796 0 R]/PANTONE3945PC[/Separation/PANTONE#203945#20PC/DeviceCMYK 797 0 R]/PANTONE3955PC[/Separation/PANTONE#203955#20PC/DeviceCMYK
+798 0 R]/PANTONE3965PC[/Separation/PANTONE#203965#20PC/DeviceCMYK 799 0 R]/PANTONE3975PC[/Separation/PANTONE#203975#20PC/DeviceCMYK
+800 0 R]/PANTONE3985PC[/Separation/PANTONE#203985#20PC/DeviceCMYK 801 0 R]/PANTONE3995PC[/Separation/PANTONE#203995#20PC/DeviceCMYK
+802 0 R]/PANTONE4485PC[/Separation/PANTONE#204485#20PC/DeviceCMYK 803 0 R]/PANTONE4495PC[/Separation/PANTONE#204495#20PC/DeviceCMYK
+804 0 R]/PANTONE4505PC[/Separation/PANTONE#204505#20PC/DeviceCMYK 805 0 R]/PANTONE4515PC[/Separation/PANTONE#204515#20PC/DeviceCMYK
+806 0 R]/PANTONE4525PC[/Separation/PANTONE#204525#20PC/DeviceCMYK 807 0 R]/PANTONE4535PC[/Separation/PANTONE#204535#20PC/DeviceCMYK
+808 0 R]/PANTONE4545PC[/Separation/PANTONE#204545#20PC/DeviceCMYK 809 0 R]/PANTONE4625PC[/Separation/PANTONE#204625#20PC/DeviceCMYK
+810 0 R]/PANTONE4635PC[/Separation/PANTONE#204635#20PC/DeviceCMYK 811 0 R]/PANTONE4645PC[/Separation/PANTONE#204645#20PC/DeviceCMYK
+812 0 R]/PANTONE4655PC[/Separation/PANTONE#204655#20PC/DeviceCMYK 813 0 R]/PANTONE4665PC[/Separation/PANTONE#204665#20PC/DeviceCMYK
+814 0 R]/PANTONE4675PC[/Separation/PANTONE#204675#20PC/DeviceCMYK 815 0 R]/PANTONE4685PC[/Separation/PANTONE#204685#20PC/DeviceCMYK
+816 0 R]/PANTONE4695PC[/Separation/PANTONE#204695#20PC/DeviceCMYK 817 0 R]/PANTONE4705PC[/Separation/PANTONE#204705#20PC/DeviceCMYK
+818 0 R]/PANTONE4715PC[/Separation/PANTONE#204715#20PC/DeviceCMYK 819 0 R]/PANTONE4725PC[/Separation/PANTONE#204725#20PC/DeviceCMYK
+820 0 R]/PANTONE4735PC[/Separation/PANTONE#204735#20PC/DeviceCMYK 821 0 R]/PANTONE4745PC[/Separation/PANTONE#204745#20PC/DeviceCMYK
+822 0 R]/PANTONE4755PC[/Separation/PANTONE#204755#20PC/DeviceCMYK 823 0 R]/PANTONE4975PC[/Separation/PANTONE#204975#20PC/DeviceCMYK
+824 0 R]/PANTONE4985PC[/Separation/PANTONE#204985#20PC/DeviceCMYK 825 0 R]/PANTONE4995PC[/Separation/PANTONE#204995#20PC/DeviceCMYK
+826 0 R]/PANTONE5005PC[/Separation/PANTONE#205005#20PC/DeviceCMYK 827 0 R]/PANTONE5015PC[/Separation/PANTONE#205015#20PC/DeviceCMYK
+828 0 R]/PANTONE5025PC[/Separation/PANTONE#205025#20PC/DeviceCMYK 829 0 R]/PANTONE5035PC[/Separation/PANTONE#205035#20PC/DeviceCMYK
+830 0 R]/PANTONE5115PC[/Separation/PANTONE#205115#20PC/DeviceCMYK 831 0 R]/PANTONE5125PC[/Separation/PANTONE#205125#20PC/DeviceCMYK
+832 0 R]/PANTONE5135PC[/Separation/PANTONE#205135#20PC/DeviceCMYK 833 0 R]/PANTONE5145PC[/Separation/PANTONE#205145#20PC/DeviceCMYK
+834 0 R]/PANTONE5155PC[/Separation/PANTONE#205155#20PC/DeviceCMYK 835 0 R]/PANTONE5165PC[/Separation/PANTONE#205165#20PC/DeviceCMYK
+836 0 R]/PANTONE5175PC[/Separation/PANTONE#205175#20PC/DeviceCMYK 837 0 R]/PANTONE5185PC[/Separation/PANTONE#205185#20PC/DeviceCMYK
+838 0 R]/PANTONE5195PC[/Separation/PANTONE#205195#20PC/DeviceCMYK 839 0 R]/PANTONE5205PC[/Separation/PANTONE#205205#20PC/DeviceCMYK
+840 0 R]/PANTONE5215PC[/Separation/PANTONE#205215#20PC/DeviceCMYK 841 0 R]/PANTONE5225PC[/Separation/PANTONE#205225#20PC/DeviceCMYK
+842 0 R]/PANTONE5235PC[/Separation/PANTONE#205235#20PC/DeviceCMYK 843 0 R]/PANTONE5245PC[/Separation/PANTONE#205245#20PC/DeviceCMYK
+844 0 R]/PANTONE5255PC[/Separation/PANTONE#205255#20PC/DeviceCMYK 845 0 R]/PANTONE5265PC[/Separation/PANTONE#205265#20PC/DeviceCMYK
+846 0 R]/PANTONE5275PC[/Separation/PANTONE#205275#20PC/DeviceCMYK 847 0 R]/PANTONE5285PC[/Separation/PANTONE#205285#20PC/DeviceCMYK
+848 0 R]/PANTONE5295PC[/Separation/PANTONE#205295#20PC/DeviceCMYK 849 0 R]/PANTONE5305PC[/Separation/PANTONE#205305#20PC/DeviceCMYK
+850 0 R]/PANTONE5315PC[/Separation/PANTONE#205315#20PC/DeviceCMYK 851 0 R]/PANTONE5395PC[/Separation/PANTONE#205395#20PC/DeviceCMYK
+852 0 R]/PANTONE5405PC[/Separation/PANTONE#205405#20PC/DeviceCMYK 853 0 R]/PANTONE5415PC[/Separation/PANTONE#205415#20PC/DeviceCMYK
+854 0 R]/PANTONE5425PC[/Separation/PANTONE#205425#20PC/DeviceCMYK 855 0 R]/PANTONE5435PC[/Separation/PANTONE#205435#20PC/DeviceCMYK
+856 0 R]/PANTONE5445PC[/Separation/PANTONE#205445#20PC/DeviceCMYK 857 0 R]/PANTONE5455PC[/Separation/PANTONE#205455#20PC/DeviceCMYK
+858 0 R]/PANTONE5463PC[/Separation/PANTONE#205463#20PC/DeviceCMYK 859 0 R]/PANTONE5467PC[/Separation/PANTONE#205467#20PC/DeviceCMYK
+860 0 R]/PANTONE5473PC[/Separation/PANTONE#205473#20PC/DeviceCMYK 861 0 R]/PANTONE5477PC[/Separation/PANTONE#205477#20PC/DeviceCMYK
+862 0 R]/PANTONE5483PC[/Separation/PANTONE#205483#20PC/DeviceCMYK 863 0 R]/PANTONE5487PC[/Separation/PANTONE#205487#20PC/DeviceCMYK
+864 0 R]/PANTONE5493PC[/Separation/PANTONE#205493#20PC/DeviceCMYK 865 0 R]/PANTONE5497PC[/Separation/PANTONE#205497#20PC/DeviceCMYK
+866 0 R]/PANTONE5503PC[/Separation/PANTONE#205503#20PC/DeviceCMYK 867 0 R]/PANTONE5507PC[/Separation/PANTONE#205507#20PC/DeviceCMYK
+868 0 R]/PANTONE5513PC[/Separation/PANTONE#205513#20PC/DeviceCMYK 869 0 R]/PANTONE5517PC[/Separation/PANTONE#205517#20PC/DeviceCMYK
+870 0 R]/PANTONE5523PC[/Separation/PANTONE#205523#20PC/DeviceCMYK 871 0 R]/PANTONE5527PC[/Separation/PANTONE#205527#20PC/DeviceCMYK
+872 0 R]/PANTONE5535PC[/Separation/PANTONE#205535#20PC/DeviceCMYK 873 0 R]/PANTONE5545PC[/Separation/PANTONE#205545#20PC/DeviceCMYK
+874 0 R]/PANTONE5555PC[/Separation/PANTONE#205555#20PC/DeviceCMYK 875 0 R]/PANTONE5565PC[/Separation/PANTONE#205565#20PC/DeviceCMYK
+876 0 R]/PANTONE5575PC[/Separation/PANTONE#205575#20PC/DeviceCMYK 877 0 R]/PANTONE5585PC[/Separation/PANTONE#205585#20PC/DeviceCMYK
+878 0 R]/PANTONE5595PC[/Separation/PANTONE#205595#20PC/DeviceCMYK 879 0 R]/PANTONE5605PC[/Separation/PANTONE#205605#20PC/DeviceCMYK
+880 0 R]/PANTONE5615PC[/Separation/PANTONE#205615#20PC/DeviceCMYK 881 0 R]/PANTONE5625PC[/Separation/PANTONE#205625#20PC/DeviceCMYK
+882 0 R]/PANTONE5635PC[/Separation/PANTONE#205635#20PC/DeviceCMYK 883 0 R]/PANTONE5645PC[/Separation/PANTONE#205645#20PC/DeviceCMYK
+884 0 R]/PANTONE5655PC[/Separation/PANTONE#205655#20PC/DeviceCMYK 885 0 R]/PANTONE5665PC[/Separation/PANTONE#205665#20PC/DeviceCMYK
+886 0 R]/PANTONE5743PC[/Separation/PANTONE#205743#20PC/DeviceCMYK 887 0 R]/PANTONE5747PC[/Separation/PANTONE#205747#20PC/DeviceCMYK
+888 0 R]/PANTONE5753PC[/Separation/PANTONE#205753#20PC/DeviceCMYK 889 0 R]/PANTONE5757PC[/Separation/PANTONE#205757#20PC/DeviceCMYK
+890 0 R]/PANTONE5763PC[/Separation/PANTONE#205763#20PC/DeviceCMYK 891 0 R]/PANTONE5767PC[/Separation/PANTONE#205767#20PC/DeviceCMYK
+892 0 R]/PANTONE5773PC[/Separation/PANTONE#205773#20PC/DeviceCMYK 893 0 R]/PANTONE5777PC[/Separation/PANTONE#205777#20PC/DeviceCMYK
+894 0 R]/PANTONE5783PC[/Separation/PANTONE#205783#20PC/DeviceCMYK 895 0 R]/PANTONE5787PC[/Separation/PANTONE#205787#20PC/DeviceCMYK
+896 0 R]/PANTONE5793PC[/Separation/PANTONE#205793#20PC/DeviceCMYK 897 0 R]/PANTONE5797PC[/Separation/PANTONE#205797#20PC/DeviceCMYK
+898 0 R]/PANTONE5803PC[/Separation/PANTONE#205803#20PC/DeviceCMYK 899 0 R]/PANTONE5807PC[/Separation/PANTONE#205807#20PC/DeviceCMYK
+900 0 R]/PANTONE5815PC[/Separation/PANTONE#205815#20PC/DeviceCMYK 901 0 R]/PANTONE5825PC[/Separation/PANTONE#205825#20PC/DeviceCMYK
+902 0 R]/PANTONE5835PC[/Separation/PANTONE#205835#20PC/DeviceCMYK 903 0 R]/PANTONE5845PC[/Separation/PANTONE#205845#20PC/DeviceCMYK
+904 0 R]/PANTONE5855PC[/Separation/PANTONE#205855#20PC/DeviceCMYK 905 0 R]/PANTONE5865PC[/Separation/PANTONE#205865#20PC/DeviceCMYK
+906 0 R]/PANTONE5875PC[/Separation/PANTONE#205875#20PC/DeviceCMYK 907 0 R]/PANTONE7401PC[/Separation/PANTONE#207401#20PC/DeviceCMYK
+908 0 R]/PANTONE7402PC[/Separation/PANTONE#207402#20PC/DeviceCMYK 909 0 R]/PANTONE7403PC[/Separation/PANTONE#207403#20PC/DeviceCMYK
+910 0 R]/PANTONE7404PC[/Separation/PANTONE#207404#20PC/DeviceCMYK 911 0 R]/PANTONE7405PC[/Separation/PANTONE#207405#20PC/DeviceCMYK
+912 0 R]/PANTONE7406PC[/Separation/PANTONE#207406#20PC/DeviceCMYK 913 0 R]/PANTONE7407PC[/Separation/PANTONE#207407#20PC/DeviceCMYK
+914 0 R]/PANTONE7408PC[/Separation/PANTONE#207408#20PC/DeviceCMYK 915 0 R]/PANTONE7409PC[/Separation/PANTONE#207409#20PC/DeviceCMYK
+916 0 R]/PANTONE7410PC[/Separation/PANTONE#207410#20PC/DeviceCMYK 917 0 R]/PANTONE7411PC[/Separation/PANTONE#207411#20PC/DeviceCMYK
+918 0 R]/PANTONE7412PC[/Separation/PANTONE#207412#20PC/DeviceCMYK 919 0 R]/PANTONE7413PC[/Separation/PANTONE#207413#20PC/DeviceCMYK
+920 0 R]/PANTONE7414PC[/Separation/PANTONE#207414#20PC/DeviceCMYK 921 0 R]/PANTONE7415PC[/Separation/PANTONE#207415#20PC/DeviceCMYK
+922 0 R]/PANTONE7416PC[/Separation/PANTONE#207416#20PC/DeviceCMYK 923 0 R]/PANTONE7417PC[/Separation/PANTONE#207417#20PC/DeviceCMYK
+924 0 R]/PANTONE7418PC[/Separation/PANTONE#207418#20PC/DeviceCMYK 925 0 R]/PANTONE7419PC[/Separation/PANTONE#207419#20PC/DeviceCMYK
+926 0 R]/PANTONE7420PC[/Separation/PANTONE#207420#20PC/DeviceCMYK 927 0 R]/PANTONE7421PC[/Separation/PANTONE#207421#20PC/DeviceCMYK
+928 0 R]/PANTONE7422PC[/Separation/PANTONE#207422#20PC/DeviceCMYK 929 0 R]/PANTONE7423PC[/Separation/PANTONE#207423#20PC/DeviceCMYK
+930 0 R]/PANTONE7424PC[/Separation/PANTONE#207424#20PC/DeviceCMYK 931 0 R]/PANTONE7425PC[/Separation/PANTONE#207425#20PC/DeviceCMYK
+932 0 R]/PANTONE7426PC[/Separation/PANTONE#207426#20PC/DeviceCMYK 933 0 R]/PANTONE7427PC[/Separation/PANTONE#207427#20PC/DeviceCMYK
+934 0 R]/PANTONE7428PC[/Separation/PANTONE#207428#20PC/DeviceCMYK 935 0 R]/PANTONE7429PC[/Separation/PANTONE#207429#20PC/DeviceCMYK
+936 0 R]/PANTONE7430PC[/Separation/PANTONE#207430#20PC/DeviceCMYK 937 0 R]/PANTONE7431PC[/Separation/PANTONE#207431#20PC/DeviceCMYK
+938 0 R]/PANTONE7432PC[/Separation/PANTONE#207432#20PC/DeviceCMYK 939 0 R]/PANTONE7433PC[/Separation/PANTONE#207433#20PC/DeviceCMYK
+940 0 R]/PANTONE7434PC[/Separation/PANTONE#207434#20PC/DeviceCMYK 941 0 R]/PANTONE7435PC[/Separation/PANTONE#207435#20PC/DeviceCMYK
+942 0 R]/PANTONE7436PC[/Separation/PANTONE#207436#20PC/DeviceCMYK 943 0 R]/PANTONE7437PC[/Separation/PANTONE#207437#20PC/DeviceCMYK
+944 0 R]/PANTONE7438PC[/Separation/PANTONE#207438#20PC/DeviceCMYK 945 0 R]/PANTONE7439PC[/Separation/PANTONE#207439#20PC/DeviceCMYK
+946 0 R]/PANTONE7440PC[/Separation/PANTONE#207440#20PC/DeviceCMYK 947 0 R]/PANTONE7441PC[/Separation/PANTONE#207441#20PC/DeviceCMYK
+948 0 R]/PANTONE7442PC[/Separation/PANTONE#207442#20PC/DeviceCMYK 949 0 R]/PANTONE7443PC[/Separation/PANTONE#207443#20PC/DeviceCMYK
+950 0 R]/PANTONE7444PC[/Separation/PANTONE#207444#20PC/DeviceCMYK 951 0 R]/PANTONE7445PC[/Separation/PANTONE#207445#20PC/DeviceCMYK
+952 0 R]/PANTONE7446PC[/Separation/PANTONE#207446#20PC/DeviceCMYK 953 0 R]/PANTONE7447PC[/Separation/PANTONE#207447#20PC/DeviceCMYK
+954 0 R]/PANTONE7448PC[/Separation/PANTONE#207448#20PC/DeviceCMYK 955 0 R]/PANTONE7449PC[/Separation/PANTONE#207449#20PC/DeviceCMYK
+956 0 R]/PANTONE7450PC[/Separation/PANTONE#207450#20PC/DeviceCMYK 957 0 R]/PANTONE7451PC[/Separation/PANTONE#207451#20PC/DeviceCMYK
+958 0 R]/PANTONE7452PC[/Separation/PANTONE#207452#20PC/DeviceCMYK 959 0 R]/PANTONE7453PC[/Separation/PANTONE#207453#20PC/DeviceCMYK
+960 0 R]/PANTONE7454PC[/Separation/PANTONE#207454#20PC/DeviceCMYK 961 0 R]/PANTONE7455PC[/Separation/PANTONE#207455#20PC/DeviceCMYK
+962 0 R]/PANTONE7456PC[/Separation/PANTONE#207456#20PC/DeviceCMYK 963 0 R]/PANTONE7457PC[/Separation/PANTONE#207457#20PC/DeviceCMYK
+964 0 R]/PANTONE7458PC[/Separation/PANTONE#207458#20PC/DeviceCMYK 965 0 R]/PANTONE7459PC[/Separation/PANTONE#207459#20PC/DeviceCMYK
+966 0 R]/PANTONE7460PC[/Separation/PANTONE#207460#20PC/DeviceCMYK 967 0 R]/PANTONE7461PC[/Separation/PANTONE#207461#20PC/DeviceCMYK
+968 0 R]/PANTONE7462PC[/Separation/PANTONE#207462#20PC/DeviceCMYK 969 0 R]/PANTONE7463PC[/Separation/PANTONE#207463#20PC/DeviceCMYK
+970 0 R]/PANTONE7464PC[/Separation/PANTONE#207464#20PC/DeviceCMYK 971 0 R]/PANTONE7465PC[/Separation/PANTONE#207465#20PC/DeviceCMYK
+972 0 R]/PANTONE7466PC[/Separation/PANTONE#207466#20PC/DeviceCMYK 973 0 R]/PANTONE7467PC[/Separation/PANTONE#207467#20PC/DeviceCMYK
+974 0 R]/PANTONE7468PC[/Separation/PANTONE#207468#20PC/DeviceCMYK 975 0 R]/PANTONE7469PC[/Separation/PANTONE#207469#20PC/DeviceCMYK
+976 0 R]/PANTONE7470PC[/Separation/PANTONE#207470#20PC/DeviceCMYK 977 0 R]/PANTONE7471PC[/Separation/PANTONE#207471#20PC/DeviceCMYK
+978 0 R]/PANTONE7472PC[/Separation/PANTONE#207472#20PC/DeviceCMYK 979 0 R]/PANTONE7473PC[/Separation/PANTONE#207473#20PC/DeviceCMYK
+980 0 R]/PANTONE7474PC[/Separation/PANTONE#207474#20PC/DeviceCMYK 981 0 R]/PANTONE7475PC[/Separation/PANTONE#207475#20PC/DeviceCMYK
+982 0 R]/PANTONE7476PC[/Separation/PANTONE#207476#20PC/DeviceCMYK 983 0 R]/PANTONE7477PC[/Separation/PANTONE#207477#20PC/DeviceCMYK
+984 0 R]/PANTONE7478PC[/Separation/PANTONE#207478#20PC/DeviceCMYK 985 0 R]/PANTONE7479PC[/Separation/PANTONE#207479#20PC/DeviceCMYK
+986 0 R]/PANTONE7480PC[/Separation/PANTONE#207480#20PC/DeviceCMYK 987 0 R]/PANTONE7481PC[/Separation/PANTONE#207481#20PC/DeviceCMYK
+988 0 R]/PANTONE7482PC[/Separation/PANTONE#207482#20PC/DeviceCMYK 989 0 R]/PANTONE7483PC[/Separation/PANTONE#207483#20PC/DeviceCMYK
+990 0 R]/PANTONE7484PC[/Separation/PANTONE#207484#20PC/DeviceCMYK 991 0 R]/PANTONE7485PC[/Separation/PANTONE#207485#20PC/DeviceCMYK
+992 0 R]/PANTONE7486PC[/Separation/PANTONE#207486#20PC/DeviceCMYK 993 0 R]/PANTONE7487PC[/Separation/PANTONE#207487#20PC/DeviceCMYK
+994 0 R]/PANTONE7488PC[/Separation/PANTONE#207488#20PC/DeviceCMYK 995 0 R]/PANTONE7489PC[/Separation/PANTONE#207489#20PC/DeviceCMYK
+996 0 R]/PANTONE7490PC[/Separation/PANTONE#207490#20PC/DeviceCMYK 997 0 R]/PANTONE7491PC[/Separation/PANTONE#207491#20PC/DeviceCMYK
+998 0 R]/PANTONE7492PC[/Separation/PANTONE#207492#20PC/DeviceCMYK 999 0 R]/PANTONE7493PC[/Separation/PANTONE#207493#20PC/DeviceCMYK
+1000 0 R]/PANTONE7494PC[/Separation/PANTONE#207494#20PC/DeviceCMYK 1001 0 R]/PANTONE7495PC[/Separation/PANTONE#207495#20PC/DeviceCMYK
+1002 0 R]/PANTONE7496PC[/Separation/PANTONE#207496#20PC/DeviceCMYK 1003 0 R]/PANTONE7497PC[/Separation/PANTONE#207497#20PC/DeviceCMYK
+1004 0 R]/PANTONE7498PC[/Separation/PANTONE#207498#20PC/DeviceCMYK 1005 0 R]/PANTONE7499PC[/Separation/PANTONE#207499#20PC/DeviceCMYK
+1006 0 R]/PANTONE7500PC[/Separation/PANTONE#207500#20PC/DeviceCMYK 1007 0 R]/PANTONE7501PC[/Separation/PANTONE#207501#20PC/DeviceCMYK
+1008 0 R]/PANTONE7502PC[/Separation/PANTONE#207502#20PC/DeviceCMYK 1009 0 R]/PANTONE7503PC[/Separation/PANTONE#207503#20PC/DeviceCMYK
+1010 0 R]/PANTONE7504PC[/Separation/PANTONE#207504#20PC/DeviceCMYK 1011 0 R]/PANTONE7505PC[/Separation/PANTONE#207505#20PC/DeviceCMYK
+1012 0 R]/PANTONE7506PC[/Separation/PANTONE#207506#20PC/DeviceCMYK 1013 0 R]/PANTONE7507PC[/Separation/PANTONE#207507#20PC/DeviceCMYK
+1014 0 R]/PANTONE7508PC[/Separation/PANTONE#207508#20PC/DeviceCMYK 1015 0 R]/PANTONE7509PC[/Separation/PANTONE#207509#20PC/DeviceCMYK
+1016 0 R]/PANTONE7510PC[/Separation/PANTONE#207510#20PC/DeviceCMYK 1017 0 R]/PANTONE7511PC[/Separation/PANTONE#207511#20PC/DeviceCMYK
+1018 0 R]/PANTONE7512PC[/Separation/PANTONE#207512#20PC/DeviceCMYK 1019 0 R]/PANTONE7513PC[/Separation/PANTONE#207513#20PC/DeviceCMYK
+1020 0 R]/PANTONE7514PC[/Separation/PANTONE#207514#20PC/DeviceCMYK 1021 0 R]/PANTONE7515PC[/Separation/PANTONE#207515#20PC/DeviceCMYK
+1022 0 R]/PANTONE7516PC[/Separation/PANTONE#207516#20PC/DeviceCMYK 1023 0 R]/PANTONE7517PC[/Separation/PANTONE#207517#20PC/DeviceCMYK
+1024 0 R]/PANTONE7518PC[/Separation/PANTONE#207518#20PC/DeviceCMYK 1025 0 R]/PANTONE7519PC[/Separation/PANTONE#207519#20PC/DeviceCMYK
+1026 0 R]/PANTONE7520PC[/Separation/PANTONE#207520#20PC/DeviceCMYK 1027 0 R]/PANTONE7521PC[/Separation/PANTONE#207521#20PC/DeviceCMYK
+1028 0 R]/PANTONE7522PC[/Separation/PANTONE#207522#20PC/DeviceCMYK 1029 0 R]/PANTONE7523PC[/Separation/PANTONE#207523#20PC/DeviceCMYK
+1030 0 R]/PANTONE7524PC[/Separation/PANTONE#207524#20PC/DeviceCMYK 1031 0 R]/PANTONE7525PC[/Separation/PANTONE#207525#20PC/DeviceCMYK
+1032 0 R]/PANTONE7526PC[/Separation/PANTONE#207526#20PC/DeviceCMYK 1033 0 R]/PANTONE7527PC[/Separation/PANTONE#207527#20PC/DeviceCMYK
+1034 0 R]/PANTONE7528PC[/Separation/PANTONE#207528#20PC/DeviceCMYK 1035 0 R]/PANTONE7529PC[/Separation/PANTONE#207529#20PC/DeviceCMYK
+1036 0 R]/PANTONE7530PC[/Separation/PANTONE#207530#20PC/DeviceCMYK 1037 0 R]/PANTONE7531PC[/Separation/PANTONE#207531#20PC/DeviceCMYK
+1038 0 R]/PANTONE7532PC[/Separation/PANTONE#207532#20PC/DeviceCMYK 1039 0 R]/PANTONE7533PC[/Separation/PANTONE#207533#20PC/DeviceCMYK
+1040 0 R]/PANTONE7534PC[/Separation/PANTONE#207534#20PC/DeviceCMYK 1041 0 R]/PANTONE7535PC[/Separation/PANTONE#207535#20PC/DeviceCMYK
+1042 0 R]/PANTONE7536PC[/Separation/PANTONE#207536#20PC/DeviceCMYK 1043 0 R]/PANTONE7537PC[/Separation/PANTONE#207537#20PC/DeviceCMYK
+1044 0 R]/PANTONE7538PC[/Separation/PANTONE#207538#20PC/DeviceCMYK 1045 0 R]/PANTONE7539PC[/Separation/PANTONE#207539#20PC/DeviceCMYK
+1046 0 R]/PANTONE7540PC[/Separation/PANTONE#207540#20PC/DeviceCMYK 1047 0 R]/PANTONE7541PC[/Separation/PANTONE#207541#20PC/DeviceCMYK
+1048 0 R]/PANTONE7542PC[/Separation/PANTONE#207542#20PC/DeviceCMYK 1049 0 R]/PANTONE7543PC[/Separation/PANTONE#207543#20PC/DeviceCMYK
+1050 0 R]/PANTONE7544PC[/Separation/PANTONE#207544#20PC/DeviceCMYK 1051 0 R]/PANTONE7545PC[/Separation/PANTONE#207545#20PC/DeviceCMYK
+1052 0 R]/PANTONE7546PC[/Separation/PANTONE#207546#20PC/DeviceCMYK 1053 0 R]/PANTONE7547PC[/Separation/PANTONE#207547#20PC/DeviceCMYK
+1054 0 R]/PANTONEBlack2PC[/Separation/PANTONE#20Black#202#20PC/DeviceCMYK 1055 0 R]/PANTONEBlack3PC[/Separation/PANTONE#20Black#203#20PC/DeviceCMYK
+1056 0 R]/PANTONEBlack4PC[/Separation/PANTONE#20Black#204#20PC/DeviceCMYK 1057 0 R]/PANTONEBlack5PC[/Separation/PANTONE#20Black#205#20PC/DeviceCMYK
+1058 0 R]/PANTONEBlack6PC[/Separation/PANTONE#20Black#206#20PC/DeviceCMYK 1059 0 R]/PANTONEBlack7PC[/Separation/PANTONE#20Black#207#20PC/DeviceCMYK
+1060 0 R]/PANTONEBlackPC[/Separation/PANTONE#20Black#20PC/DeviceCMYK 1061 0 R]/PANTONEBlue072PC[/Separation/PANTONE#20Blue#20072#20PC/DeviceCMYK
+1062 0 R]/PANTONECoolGray1PC[/Separation/PANTONE#20Cool#20Gray#201#20PC/DeviceCMYK
+1063 0 R]/PANTONECoolGray2PC[/Separation/PANTONE#20Cool#20Gray#202#20PC/DeviceCMYK
+1064 0 R]/PANTONECoolGray3PC[/Separation/PANTONE#20Cool#20Gray#203#20PC/DeviceCMYK
+1065 0 R]/PANTONECoolGray4PC[/Separation/PANTONE#20Cool#20Gray#204#20PC/DeviceCMYK
+1066 0 R]/PANTONECoolGray5PC[/Separation/PANTONE#20Cool#20Gray#205#20PC/DeviceCMYK
+1067 0 R]/PANTONECoolGray6PC[/Separation/PANTONE#20Cool#20Gray#206#20PC/DeviceCMYK
+1068 0 R]/PANTONECoolGray7PC[/Separation/PANTONE#20Cool#20Gray#207#20PC/DeviceCMYK
+1069 0 R]/PANTONECoolGray8PC[/Separation/PANTONE#20Cool#20Gray#208#20PC/DeviceCMYK
+1070 0 R]/PANTONECoolGray9PC[/Separation/PANTONE#20Cool#20Gray#209#20PC/DeviceCMYK
+1071 0 R]/PANTONECoolGray10PC[/Separation/PANTONE#20Cool#20Gray#2010#20PC/DeviceCMYK
+1072 0 R]/PANTONECoolGray11PC[/Separation/PANTONE#20Cool#20Gray#2011#20PC/DeviceCMYK
+1073 0 R]/PANTONEGreenPC[/Separation/PANTONE#20Green#20PC/DeviceCMYK 1074 0 R]/PANTONEOrange021PC[/Separation/PANTONE#20Orange#20021#20PC/DeviceCMYK
+1075 0 R]/PANTONEProc.BlackPC[/Separation/PANTONE#20Proc.#20Black#20PC/DeviceCMYK
+1076 0 R]/PANTONEProc.BluePC[/Separation/PANTONE#20Proc.#20Blue#20PC/DeviceCMYK 1077 0 R]/PANTONEProc.CyanPC[/Separation/PANTONE#20Proc.#20Cyan#20PC/DeviceCMYK
+1078 0 R]/PANTONEProc.Magen.PC[/Separation/PANTONE#20Proc.#20Magen.#20PC/DeviceCMYK
+1079 0 R]/PANTONEProc.YellowPC[/Separation/PANTONE#20Proc.#20Yellow#20PC/DeviceCMYK
+1080 0 R]/PANTONEPurplePC[/Separation/PANTONE#20Purple#20PC/DeviceCMYK 1081 0 R]/PANTONERed032PC[/Separation/PANTONE#20Red#20032#20PC/DeviceCMYK
+1082 0 R]/PANTONERef.BluePC[/Separation/PANTONE#20Ref.#20Blue#20PC/DeviceCMYK 1083 0 R]/PANTONERhod.RedPC[/Separation/PANTONE#20Rhod.#20Red#20PC/DeviceCMYK
+1084 0 R]/PANTONERub.RedPC[/Separation/PANTONE#20Rub.#20Red#20PC/DeviceCMYK 1085 0 R]/PANTONEVioletPC[/Separation/PANTONE#20Violet#20PC/DeviceCMYK
+1086 0 R]/PANTONEWarmGray1PC[/Separation/PANTONE#20Warm#20Gray#201#20PC/DeviceCMYK
+1087 0 R]/PANTONEWarmGray2PC[/Separation/PANTONE#20Warm#20Gray#202#20PC/DeviceCMYK
+1088 0 R]/PANTONEWarmGray3PC[/Separation/PANTONE#20Warm#20Gray#203#20PC/DeviceCMYK
+1089 0 R]/PANTONEWarmGray4PC[/Separation/PANTONE#20Warm#20Gray#204#20PC/DeviceCMYK
+1090 0 R]/PANTONEWarmGray5PC[/Separation/PANTONE#20Warm#20Gray#205#20PC/DeviceCMYK
+1091 0 R]/PANTONEWarmGray6PC[/Separation/PANTONE#20Warm#20Gray#206#20PC/DeviceCMYK
+1092 0 R]/PANTONEWarmGray7PC[/Separation/PANTONE#20Warm#20Gray#207#20PC/DeviceCMYK
+1093 0 R]/PANTONEWarmGray8PC[/Separation/PANTONE#20Warm#20Gray#208#20PC/DeviceCMYK
+1094 0 R]/PANTONEWarmGray9PC[/Separation/PANTONE#20Warm#20Gray#209#20PC/DeviceCMYK
+1095 0 R]/PANTONEWarmGray10PC[/Separation/PANTONE#20Warm#20Gray#2010#20PC/DeviceCMYK
+1096 0 R]/PANTONEWarmGray11PC[/Separation/PANTONE#20Warm#20Gray#2011#20PC/DeviceCMYK
+1097 0 R]/PANTONEWarmRedPC[/Separation/PANTONE#20Warm#20Red#20PC/DeviceCMYK 1098 0 R]/PANTONEYellowPC[/Separation/PANTONE#20Yellow#20PC/DeviceCMYK
+1099 0 R]>>/Font<</F1 5 0 R/F2 7 0 R>>/ProcSet[/PDF/Text/ImageC/ImageB/ImageI]>>
+endobj
+1113 0 obj
+<</Filter/FlateDecode/Length 196>>
+stream
+xmP
+1 I
+noi=yPluR&Ʉi T.bކq=k%?gcZ0f׸9 mbVo:0]1E<K LyB;͈$*.&B:[0J&y|hB btF3aSBgl9L^I
+endstream
+endobj
+1114 0 obj
+<</ColorSpace<</PANTONE100PC[/Separation/PANTONE#20100#20PC/DeviceCMYK 11 0 R]/PANTONE101PC[/Separation/PANTONE#20101#20PC/DeviceCMYK
+12 0 R]/PANTONE102PC[/Separation/PANTONE#20102#20PC/DeviceCMYK 13 0 R]/PANTONE103PC[/Separation/PANTONE#20103#20PC/DeviceCMYK
+14 0 R]/PANTONE104PC[/Separation/PANTONE#20104#20PC/DeviceCMYK 15 0 R]/PANTONE105PC[/Separation/PANTONE#20105#20PC/DeviceCMYK
+16 0 R]/PANTONE106PC[/Separation/PANTONE#20106#20PC/DeviceCMYK 17 0 R]/PANTONE107PC[/Separation/PANTONE#20107#20PC/DeviceCMYK
+18 0 R]/PANTONE108PC[/Separation/PANTONE#20108#20PC/DeviceCMYK 19 0 R]/PANTONE109PC[/Separation/PANTONE#20109#20PC/DeviceCMYK
+20 0 R]/PANTONE110PC[/Separation/PANTONE#20110#20PC/DeviceCMYK 21 0 R]/PANTONE111PC[/Separation/PANTONE#20111#20PC/DeviceCMYK
+22 0 R]/PANTONE112PC[/Separation/PANTONE#20112#20PC/DeviceCMYK 23 0 R]/PANTONE113PC[/Separation/PANTONE#20113#20PC/DeviceCMYK
+24 0 R]/PANTONE114PC[/Separation/PANTONE#20114#20PC/DeviceCMYK 25 0 R]/PANTONE115PC[/Separation/PANTONE#20115#20PC/DeviceCMYK
+26 0 R]/PANTONE116PC[/Separation/PANTONE#20116#20PC/DeviceCMYK 27 0 R]/PANTONE117PC[/Separation/PANTONE#20117#20PC/DeviceCMYK
+28 0 R]/PANTONE118PC[/Separation/PANTONE#20118#20PC/DeviceCMYK 29 0 R]/PANTONE119PC[/Separation/PANTONE#20119#20PC/DeviceCMYK
+30 0 R]/PANTONE120PC[/Separation/PANTONE#20120#20PC/DeviceCMYK 31 0 R]/PANTONE121PC[/Separation/PANTONE#20121#20PC/DeviceCMYK
+32 0 R]/PANTONE122PC[/Separation/PANTONE#20122#20PC/DeviceCMYK 33 0 R]/PANTONE123PC[/Separation/PANTONE#20123#20PC/DeviceCMYK
+34 0 R]/PANTONE124PC[/Separation/PANTONE#20124#20PC/DeviceCMYK 35 0 R]/PANTONE125PC[/Separation/PANTONE#20125#20PC/DeviceCMYK
+36 0 R]/PANTONE126PC[/Separation/PANTONE#20126#20PC/DeviceCMYK 37 0 R]/PANTONE127PC[/Separation/PANTONE#20127#20PC/DeviceCMYK
+38 0 R]/PANTONE128PC[/Separation/PANTONE#20128#20PC/DeviceCMYK 39 0 R]/PANTONE129PC[/Separation/PANTONE#20129#20PC/DeviceCMYK
+40 0 R]/PANTONE130PC[/Separation/PANTONE#20130#20PC/DeviceCMYK 41 0 R]/PANTONE131PC[/Separation/PANTONE#20131#20PC/DeviceCMYK
+42 0 R]/PANTONE132PC[/Separation/PANTONE#20132#20PC/DeviceCMYK 43 0 R]/PANTONE133PC[/Separation/PANTONE#20133#20PC/DeviceCMYK
+44 0 R]/PANTONE134PC[/Separation/PANTONE#20134#20PC/DeviceCMYK 45 0 R]/PANTONE135PC[/Separation/PANTONE#20135#20PC/DeviceCMYK
+46 0 R]/PANTONE136PC[/Separation/PANTONE#20136#20PC/DeviceCMYK 47 0 R]/PANTONE137PC[/Separation/PANTONE#20137#20PC/DeviceCMYK
+48 0 R]/PANTONE138PC[/Separation/PANTONE#20138#20PC/DeviceCMYK 49 0 R]/PANTONE139PC[/Separation/PANTONE#20139#20PC/DeviceCMYK
+50 0 R]/PANTONE140PC[/Separation/PANTONE#20140#20PC/DeviceCMYK 51 0 R]/PANTONE141PC[/Separation/PANTONE#20141#20PC/DeviceCMYK
+52 0 R]/PANTONE142PC[/Separation/PANTONE#20142#20PC/DeviceCMYK 53 0 R]/PANTONE143PC[/Separation/PANTONE#20143#20PC/DeviceCMYK
+54 0 R]/PANTONE144PC[/Separation/PANTONE#20144#20PC/DeviceCMYK 55 0 R]/PANTONE145PC[/Separation/PANTONE#20145#20PC/DeviceCMYK
+56 0 R]/PANTONE146PC[/Separation/PANTONE#20146#20PC/DeviceCMYK 57 0 R]/PANTONE147PC[/Separation/PANTONE#20147#20PC/DeviceCMYK
+58 0 R]/PANTONE148PC[/Separation/PANTONE#20148#20PC/DeviceCMYK 59 0 R]/PANTONE149PC[/Separation/PANTONE#20149#20PC/DeviceCMYK
+60 0 R]/PANTONE150PC[/Separation/PANTONE#20150#20PC/DeviceCMYK 61 0 R]/PANTONE151PC[/Separation/PANTONE#20151#20PC/DeviceCMYK
+62 0 R]/PANTONE152PC[/Separation/PANTONE#20152#20PC/DeviceCMYK 63 0 R]/PANTONE153PC[/Separation/PANTONE#20153#20PC/DeviceCMYK
+64 0 R]/PANTONE154PC[/Separation/PANTONE#20154#20PC/DeviceCMYK 65 0 R]/PANTONE155PC[/Separation/PANTONE#20155#20PC/DeviceCMYK
+66 0 R]/PANTONE156PC[/Separation/PANTONE#20156#20PC/DeviceCMYK 67 0 R]/PANTONE157PC[/Separation/PANTONE#20157#20PC/DeviceCMYK
+68 0 R]/PANTONE158PC[/Separation/PANTONE#20158#20PC/DeviceCMYK 69 0 R]/PANTONE159PC[/Separation/PANTONE#20159#20PC/DeviceCMYK
+70 0 R]/PANTONE160PC[/Separation/PANTONE#20160#20PC/DeviceCMYK 71 0 R]/PANTONE161PC[/Separation/PANTONE#20161#20PC/DeviceCMYK
+72 0 R]/PANTONE162PC[/Separation/PANTONE#20162#20PC/DeviceCMYK 73 0 R]/PANTONE163PC[/Separation/PANTONE#20163#20PC/DeviceCMYK
+74 0 R]/PANTONE164PC[/Separation/PANTONE#20164#20PC/DeviceCMYK 75 0 R]/PANTONE165PC[/Separation/PANTONE#20165#20PC/DeviceCMYK
+76 0 R]/PANTONE166PC[/Separation/PANTONE#20166#20PC/DeviceCMYK 77 0 R]/PANTONE167PC[/Separation/PANTONE#20167#20PC/DeviceCMYK
+78 0 R]/PANTONE168PC[/Separation/PANTONE#20168#20PC/DeviceCMYK 79 0 R]/PANTONE169PC[/Separation/PANTONE#20169#20PC/DeviceCMYK
+80 0 R]/PANTONE170PC[/Separation/PANTONE#20170#20PC/DeviceCMYK 81 0 R]/PANTONE171PC[/Separation/PANTONE#20171#20PC/DeviceCMYK
+82 0 R]/PANTONE172PC[/Separation/PANTONE#20172#20PC/DeviceCMYK 83 0 R]/PANTONE173PC[/Separation/PANTONE#20173#20PC/DeviceCMYK
+84 0 R]/PANTONE174PC[/Separation/PANTONE#20174#20PC/DeviceCMYK 85 0 R]/PANTONE175PC[/Separation/PANTONE#20175#20PC/DeviceCMYK
+86 0 R]/PANTONE176PC[/Separation/PANTONE#20176#20PC/DeviceCMYK 87 0 R]/PANTONE177PC[/Separation/PANTONE#20177#20PC/DeviceCMYK
+88 0 R]/PANTONE178PC[/Separation/PANTONE#20178#20PC/DeviceCMYK 89 0 R]/PANTONE179PC[/Separation/PANTONE#20179#20PC/DeviceCMYK
+90 0 R]/PANTONE180PC[/Separation/PANTONE#20180#20PC/DeviceCMYK 91 0 R]/PANTONE181PC[/Separation/PANTONE#20181#20PC/DeviceCMYK
+92 0 R]/PANTONE182PC[/Separation/PANTONE#20182#20PC/DeviceCMYK 93 0 R]/PANTONE183PC[/Separation/PANTONE#20183#20PC/DeviceCMYK
+94 0 R]/PANTONE184PC[/Separation/PANTONE#20184#20PC/DeviceCMYK 95 0 R]/PANTONE185PC[/Separation/PANTONE#20185#20PC/DeviceCMYK
+96 0 R]/PANTONE186PC[/Separation/PANTONE#20186#20PC/DeviceCMYK 97 0 R]/PANTONE187PC[/Separation/PANTONE#20187#20PC/DeviceCMYK
+98 0 R]/PANTONE188PC[/Separation/PANTONE#20188#20PC/DeviceCMYK 99 0 R]/PANTONE189PC[/Separation/PANTONE#20189#20PC/DeviceCMYK
+100 0 R]/PANTONE190PC[/Separation/PANTONE#20190#20PC/DeviceCMYK 101 0 R]/PANTONE191PC[/Separation/PANTONE#20191#20PC/DeviceCMYK
+102 0 R]/PANTONE192PC[/Separation/PANTONE#20192#20PC/DeviceCMYK 103 0 R]/PANTONE193PC[/Separation/PANTONE#20193#20PC/DeviceCMYK
+104 0 R]/PANTONE194PC[/Separation/PANTONE#20194#20PC/DeviceCMYK 105 0 R]/PANTONE195PC[/Separation/PANTONE#20195#20PC/DeviceCMYK
+106 0 R]/PANTONE196PC[/Separation/PANTONE#20196#20PC/DeviceCMYK 107 0 R]/PANTONE197PC[/Separation/PANTONE#20197#20PC/DeviceCMYK
+108 0 R]/PANTONE198PC[/Separation/PANTONE#20198#20PC/DeviceCMYK 109 0 R]/PANTONE199PC[/Separation/PANTONE#20199#20PC/DeviceCMYK
+110 0 R]/PANTONE200PC[/Separation/PANTONE#20200#20PC/DeviceCMYK 111 0 R]/PANTONE201PC[/Separation/PANTONE#20201#20PC/DeviceCMYK
+112 0 R]/PANTONE202PC[/Separation/PANTONE#20202#20PC/DeviceCMYK 113 0 R]/PANTONE203PC[/Separation/PANTONE#20203#20PC/DeviceCMYK
+114 0 R]/PANTONE204PC[/Separation/PANTONE#20204#20PC/DeviceCMYK 115 0 R]/PANTONE205PC[/Separation/PANTONE#20205#20PC/DeviceCMYK
+116 0 R]/PANTONE206PC[/Separation/PANTONE#20206#20PC/DeviceCMYK 117 0 R]/PANTONE207PC[/Separation/PANTONE#20207#20PC/DeviceCMYK
+118 0 R]/PANTONE208PC[/Separation/PANTONE#20208#20PC/DeviceCMYK 119 0 R]/PANTONE209PC[/Separation/PANTONE#20209#20PC/DeviceCMYK
+120 0 R]/PANTONE210PC[/Separation/PANTONE#20210#20PC/DeviceCMYK 121 0 R]/PANTONE211PC[/Separation/PANTONE#20211#20PC/DeviceCMYK
+122 0 R]/PANTONE212PC[/Separation/PANTONE#20212#20PC/DeviceCMYK 123 0 R]/PANTONE213PC[/Separation/PANTONE#20213#20PC/DeviceCMYK
+124 0 R]/PANTONE214PC[/Separation/PANTONE#20214#20PC/DeviceCMYK 125 0 R]/PANTONE215PC[/Separation/PANTONE#20215#20PC/DeviceCMYK
+126 0 R]/PANTONE216PC[/Separation/PANTONE#20216#20PC/DeviceCMYK 127 0 R]/PANTONE217PC[/Separation/PANTONE#20217#20PC/DeviceCMYK
+128 0 R]/PANTONE218PC[/Separation/PANTONE#20218#20PC/DeviceCMYK 129 0 R]/PANTONE219PC[/Separation/PANTONE#20219#20PC/DeviceCMYK
+130 0 R]/PANTONE220PC[/Separation/PANTONE#20220#20PC/DeviceCMYK 131 0 R]/PANTONE221PC[/Separation/PANTONE#20221#20PC/DeviceCMYK
+132 0 R]/PANTONE222PC[/Separation/PANTONE#20222#20PC/DeviceCMYK 133 0 R]/PANTONE223PC[/Separation/PANTONE#20223#20PC/DeviceCMYK
+134 0 R]/PANTONE224PC[/Separation/PANTONE#20224#20PC/DeviceCMYK 135 0 R]/PANTONE225PC[/Separation/PANTONE#20225#20PC/DeviceCMYK
+136 0 R]/PANTONE226PC[/Separation/PANTONE#20226#20PC/DeviceCMYK 137 0 R]/PANTONE227PC[/Separation/PANTONE#20227#20PC/DeviceCMYK
+138 0 R]/PANTONE228PC[/Separation/PANTONE#20228#20PC/DeviceCMYK 139 0 R]/PANTONE229PC[/Separation/PANTONE#20229#20PC/DeviceCMYK
+140 0 R]/PANTONE230PC[/Separation/PANTONE#20230#20PC/DeviceCMYK 141 0 R]/PANTONE231PC[/Separation/PANTONE#20231#20PC/DeviceCMYK
+142 0 R]/PANTONE232PC[/Separation/PANTONE#20232#20PC/DeviceCMYK 143 0 R]/PANTONE233PC[/Separation/PANTONE#20233#20PC/DeviceCMYK
+144 0 R]/PANTONE234PC[/Separation/PANTONE#20234#20PC/DeviceCMYK 145 0 R]/PANTONE235PC[/Separation/PANTONE#20235#20PC/DeviceCMYK
+146 0 R]/PANTONE236PC[/Separation/PANTONE#20236#20PC/DeviceCMYK 147 0 R]/PANTONE237PC[/Separation/PANTONE#20237#20PC/DeviceCMYK
+148 0 R]/PANTONE238PC[/Separation/PANTONE#20238#20PC/DeviceCMYK 149 0 R]/PANTONE239PC[/Separation/PANTONE#20239#20PC/DeviceCMYK
+150 0 R]/PANTONE240PC[/Separation/PANTONE#20240#20PC/DeviceCMYK 151 0 R]/PANTONE241PC[/Separation/PANTONE#20241#20PC/DeviceCMYK
+152 0 R]/PANTONE242PC[/Separation/PANTONE#20242#20PC/DeviceCMYK 153 0 R]/PANTONE243PC[/Separation/PANTONE#20243#20PC/DeviceCMYK
+154 0 R]/PANTONE244PC[/Separation/PANTONE#20244#20PC/DeviceCMYK 155 0 R]/PANTONE245PC[/Separation/PANTONE#20245#20PC/DeviceCMYK
+156 0 R]/PANTONE246PC[/Separation/PANTONE#20246#20PC/DeviceCMYK 157 0 R]/PANTONE247PC[/Separation/PANTONE#20247#20PC/DeviceCMYK
+158 0 R]/PANTONE248PC[/Separation/PANTONE#20248#20PC/DeviceCMYK 159 0 R]/PANTONE249PC[/Separation/PANTONE#20249#20PC/DeviceCMYK
+160 0 R]/PANTONE250PC[/Separation/PANTONE#20250#20PC/DeviceCMYK 161 0 R]/PANTONE251PC[/Separation/PANTONE#20251#20PC/DeviceCMYK
+162 0 R]/PANTONE252PC[/Separation/PANTONE#20252#20PC/DeviceCMYK 163 0 R]/PANTONE253PC[/Separation/PANTONE#20253#20PC/DeviceCMYK
+164 0 R]/PANTONE254PC[/Separation/PANTONE#20254#20PC/DeviceCMYK 165 0 R]/PANTONE255PC[/Separation/PANTONE#20255#20PC/DeviceCMYK
+166 0 R]/PANTONE256PC[/Separation/PANTONE#20256#20PC/DeviceCMYK 167 0 R]/PANTONE257PC[/Separation/PANTONE#20257#20PC/DeviceCMYK
+168 0 R]/PANTONE258PC[/Separation/PANTONE#20258#20PC/DeviceCMYK 169 0 R]/PANTONE259PC[/Separation/PANTONE#20259#20PC/DeviceCMYK
+170 0 R]/PANTONE260PC[/Separation/PANTONE#20260#20PC/DeviceCMYK 171 0 R]/PANTONE261PC[/Separation/PANTONE#20261#20PC/DeviceCMYK
+172 0 R]/PANTONE262PC[/Separation/PANTONE#20262#20PC/DeviceCMYK 173 0 R]/PANTONE263PC[/Separation/PANTONE#20263#20PC/DeviceCMYK
+174 0 R]/PANTONE264PC[/Separation/PANTONE#20264#20PC/DeviceCMYK 175 0 R]/PANTONE265PC[/Separation/PANTONE#20265#20PC/DeviceCMYK
+176 0 R]/PANTONE266PC[/Separation/PANTONE#20266#20PC/DeviceCMYK 177 0 R]/PANTONE267PC[/Separation/PANTONE#20267#20PC/DeviceCMYK
+178 0 R]/PANTONE268PC[/Separation/PANTONE#20268#20PC/DeviceCMYK 179 0 R]/PANTONE269PC[/Separation/PANTONE#20269#20PC/DeviceCMYK
+180 0 R]/PANTONE270PC[/Separation/PANTONE#20270#20PC/DeviceCMYK 181 0 R]/PANTONE271PC[/Separation/PANTONE#20271#20PC/DeviceCMYK
+182 0 R]/PANTONE272PC[/Separation/PANTONE#20272#20PC/DeviceCMYK 183 0 R]/PANTONE273PC[/Separation/PANTONE#20273#20PC/DeviceCMYK
+184 0 R]/PANTONE274PC[/Separation/PANTONE#20274#20PC/DeviceCMYK 185 0 R]/PANTONE275PC[/Separation/PANTONE#20275#20PC/DeviceCMYK
+186 0 R]/PANTONE276PC[/Separation/PANTONE#20276#20PC/DeviceCMYK 187 0 R]/PANTONE277PC[/Separation/PANTONE#20277#20PC/DeviceCMYK
+188 0 R]/PANTONE278PC[/Separation/PANTONE#20278#20PC/DeviceCMYK 189 0 R]/PANTONE279PC[/Separation/PANTONE#20279#20PC/DeviceCMYK
+190 0 R]/PANTONE280PC[/Separation/PANTONE#20280#20PC/DeviceCMYK 191 0 R]/PANTONE281PC[/Separation/PANTONE#20281#20PC/DeviceCMYK
+192 0 R]/PANTONE282PC[/Separation/PANTONE#20282#20PC/DeviceCMYK 193 0 R]/PANTONE283PC[/Separation/PANTONE#20283#20PC/DeviceCMYK
+194 0 R]/PANTONE284PC[/Separation/PANTONE#20284#20PC/DeviceCMYK 195 0 R]/PANTONE285PC[/Separation/PANTONE#20285#20PC/DeviceCMYK
+196 0 R]/PANTONE286PC[/Separation/PANTONE#20286#20PC/DeviceCMYK 197 0 R]/PANTONE287PC[/Separation/PANTONE#20287#20PC/DeviceCMYK
+198 0 R]/PANTONE288PC[/Separation/PANTONE#20288#20PC/DeviceCMYK 199 0 R]/PANTONE289PC[/Separation/PANTONE#20289#20PC/DeviceCMYK
+200 0 R]/PANTONE290PC[/Separation/PANTONE#20290#20PC/DeviceCMYK 201 0 R]/PANTONE291PC[/Separation/PANTONE#20291#20PC/DeviceCMYK
+202 0 R]/PANTONE292PC[/Separation/PANTONE#20292#20PC/DeviceCMYK 203 0 R]/PANTONE293PC[/Separation/PANTONE#20293#20PC/DeviceCMYK
+204 0 R]/PANTONE294PC[/Separation/PANTONE#20294#20PC/DeviceCMYK 205 0 R]/PANTONE295PC[/Separation/PANTONE#20295#20PC/DeviceCMYK
+206 0 R]/PANTONE296PC[/Separation/PANTONE#20296#20PC/DeviceCMYK 207 0 R]/PANTONE297PC[/Separation/PANTONE#20297#20PC/DeviceCMYK
+208 0 R]/PANTONE298PC[/Separation/PANTONE#20298#20PC/DeviceCMYK 209 0 R]/PANTONE299PC[/Separation/PANTONE#20299#20PC/DeviceCMYK
+210 0 R]/PANTONE300PC[/Separation/PANTONE#20300#20PC/DeviceCMYK 211 0 R]/PANTONE301PC[/Separation/PANTONE#20301#20PC/DeviceCMYK
+212 0 R]/PANTONE302PC[/Separation/PANTONE#20302#20PC/DeviceCMYK 213 0 R]/PANTONE303PC[/Separation/PANTONE#20303#20PC/DeviceCMYK
+214 0 R]/PANTONE304PC[/Separation/PANTONE#20304#20PC/DeviceCMYK 215 0 R]/PANTONE305PC[/Separation/PANTONE#20305#20PC/DeviceCMYK
+216 0 R]/PANTONE306PC[/Separation/PANTONE#20306#20PC/DeviceCMYK 217 0 R]/PANTONE307PC[/Separation/PANTONE#20307#20PC/DeviceCMYK
+218 0 R]/PANTONE308PC[/Separation/PANTONE#20308#20PC/DeviceCMYK 219 0 R]/PANTONE309PC[/Separation/PANTONE#20309#20PC/DeviceCMYK
+220 0 R]/PANTONE310PC[/Separation/PANTONE#20310#20PC/DeviceCMYK 221 0 R]/PANTONE311PC[/Separation/PANTONE#20311#20PC/DeviceCMYK
+222 0 R]/PANTONE312PC[/Separation/PANTONE#20312#20PC/DeviceCMYK 223 0 R]/PANTONE313PC[/Separation/PANTONE#20313#20PC/DeviceCMYK
+224 0 R]/PANTONE314PC[/Separation/PANTONE#20314#20PC/DeviceCMYK 225 0 R]/PANTONE315PC[/Separation/PANTONE#20315#20PC/DeviceCMYK
+226 0 R]/PANTONE316PC[/Separation/PANTONE#20316#20PC/DeviceCMYK 227 0 R]/PANTONE317PC[/Separation/PANTONE#20317#20PC/DeviceCMYK
+228 0 R]/PANTONE318PC[/Separation/PANTONE#20318#20PC/DeviceCMYK 229 0 R]/PANTONE319PC[/Separation/PANTONE#20319#20PC/DeviceCMYK
+230 0 R]/PANTONE320PC[/Separation/PANTONE#20320#20PC/DeviceCMYK 231 0 R]/PANTONE321PC[/Separation/PANTONE#20321#20PC/DeviceCMYK
+232 0 R]/PANTONE322PC[/Separation/PANTONE#20322#20PC/DeviceCMYK 233 0 R]/PANTONE323PC[/Separation/PANTONE#20323#20PC/DeviceCMYK
+234 0 R]/PANTONE324PC[/Separation/PANTONE#20324#20PC/DeviceCMYK 235 0 R]/PANTONE325PC[/Separation/PANTONE#20325#20PC/DeviceCMYK
+236 0 R]/PANTONE326PC[/Separation/PANTONE#20326#20PC/DeviceCMYK 237 0 R]/PANTONE327PC[/Separation/PANTONE#20327#20PC/DeviceCMYK
+238 0 R]/PANTONE328PC[/Separation/PANTONE#20328#20PC/DeviceCMYK 239 0 R]/PANTONE329PC[/Separation/PANTONE#20329#20PC/DeviceCMYK
+240 0 R]/PANTONE330PC[/Separation/PANTONE#20330#20PC/DeviceCMYK 241 0 R]/PANTONE331PC[/Separation/PANTONE#20331#20PC/DeviceCMYK
+242 0 R]/PANTONE332PC[/Separation/PANTONE#20332#20PC/DeviceCMYK 243 0 R]/PANTONE333PC[/Separation/PANTONE#20333#20PC/DeviceCMYK
+244 0 R]/PANTONE334PC[/Separation/PANTONE#20334#20PC/DeviceCMYK 245 0 R]/PANTONE335PC[/Separation/PANTONE#20335#20PC/DeviceCMYK
+246 0 R]/PANTONE336PC[/Separation/PANTONE#20336#20PC/DeviceCMYK 247 0 R]/PANTONE337PC[/Separation/PANTONE#20337#20PC/DeviceCMYK
+248 0 R]/PANTONE338PC[/Separation/PANTONE#20338#20PC/DeviceCMYK 249 0 R]/PANTONE339PC[/Separation/PANTONE#20339#20PC/DeviceCMYK
+250 0 R]/PANTONE340PC[/Separation/PANTONE#20340#20PC/DeviceCMYK 251 0 R]/PANTONE341PC[/Separation/PANTONE#20341#20PC/DeviceCMYK
+252 0 R]/PANTONE342PC[/Separation/PANTONE#20342#20PC/DeviceCMYK 253 0 R]/PANTONE343PC[/Separation/PANTONE#20343#20PC/DeviceCMYK
+254 0 R]/PANTONE344PC[/Separation/PANTONE#20344#20PC/DeviceCMYK 255 0 R]/PANTONE345PC[/Separation/PANTONE#20345#20PC/DeviceCMYK
+256 0 R]/PANTONE346PC[/Separation/PANTONE#20346#20PC/DeviceCMYK 257 0 R]/PANTONE347PC[/Separation/PANTONE#20347#20PC/DeviceCMYK
+258 0 R]/PANTONE348PC[/Separation/PANTONE#20348#20PC/DeviceCMYK 259 0 R]/PANTONE349PC[/Separation/PANTONE#20349#20PC/DeviceCMYK
+260 0 R]/PANTONE350PC[/Separation/PANTONE#20350#20PC/DeviceCMYK 261 0 R]/PANTONE351PC[/Separation/PANTONE#20351#20PC/DeviceCMYK
+262 0 R]/PANTONE352PC[/Separation/PANTONE#20352#20PC/DeviceCMYK 263 0 R]/PANTONE353PC[/Separation/PANTONE#20353#20PC/DeviceCMYK
+264 0 R]/PANTONE354PC[/Separation/PANTONE#20354#20PC/DeviceCMYK 265 0 R]/PANTONE355PC[/Separation/PANTONE#20355#20PC/DeviceCMYK
+266 0 R]/PANTONE356PC[/Separation/PANTONE#20356#20PC/DeviceCMYK 267 0 R]/PANTONE357PC[/Separation/PANTONE#20357#20PC/DeviceCMYK
+268 0 R]/PANTONE358PC[/Separation/PANTONE#20358#20PC/DeviceCMYK 269 0 R]/PANTONE359PC[/Separation/PANTONE#20359#20PC/DeviceCMYK
+270 0 R]/PANTONE360PC[/Separation/PANTONE#20360#20PC/DeviceCMYK 271 0 R]/PANTONE361PC[/Separation/PANTONE#20361#20PC/DeviceCMYK
+272 0 R]/PANTONE362PC[/Separation/PANTONE#20362#20PC/DeviceCMYK 273 0 R]/PANTONE363PC[/Separation/PANTONE#20363#20PC/DeviceCMYK
+274 0 R]/PANTONE364PC[/Separation/PANTONE#20364#20PC/DeviceCMYK 275 0 R]/PANTONE365PC[/Separation/PANTONE#20365#20PC/DeviceCMYK
+276 0 R]/PANTONE366PC[/Separation/PANTONE#20366#20PC/DeviceCMYK 277 0 R]/PANTONE367PC[/Separation/PANTONE#20367#20PC/DeviceCMYK
+278 0 R]/PANTONE368PC[/Separation/PANTONE#20368#20PC/DeviceCMYK 279 0 R]/PANTONE369PC[/Separation/PANTONE#20369#20PC/DeviceCMYK
+280 0 R]/PANTONE370PC[/Separation/PANTONE#20370#20PC/DeviceCMYK 281 0 R]/PANTONE371PC[/Separation/PANTONE#20371#20PC/DeviceCMYK
+282 0 R]/PANTONE372PC[/Separation/PANTONE#20372#20PC/DeviceCMYK 283 0 R]/PANTONE373PC[/Separation/PANTONE#20373#20PC/DeviceCMYK
+284 0 R]/PANTONE374PC[/Separation/PANTONE#20374#20PC/DeviceCMYK 285 0 R]/PANTONE375PC[/Separation/PANTONE#20375#20PC/DeviceCMYK
+286 0 R]/PANTONE376PC[/Separation/PANTONE#20376#20PC/DeviceCMYK 287 0 R]/PANTONE377PC[/Separation/PANTONE#20377#20PC/DeviceCMYK
+288 0 R]/PANTONE378PC[/Separation/PANTONE#20378#20PC/DeviceCMYK 289 0 R]/PANTONE379PC[/Separation/PANTONE#20379#20PC/DeviceCMYK
+290 0 R]/PANTONE380PC[/Separation/PANTONE#20380#20PC/DeviceCMYK 291 0 R]/PANTONE381PC[/Separation/PANTONE#20381#20PC/DeviceCMYK
+292 0 R]/PANTONE382PC[/Separation/PANTONE#20382#20PC/DeviceCMYK 293 0 R]/PANTONE383PC[/Separation/PANTONE#20383#20PC/DeviceCMYK
+294 0 R]/PANTONE384PC[/Separation/PANTONE#20384#20PC/DeviceCMYK 295 0 R]/PANTONE385PC[/Separation/PANTONE#20385#20PC/DeviceCMYK
+296 0 R]/PANTONE386PC[/Separation/PANTONE#20386#20PC/DeviceCMYK 297 0 R]/PANTONE387PC[/Separation/PANTONE#20387#20PC/DeviceCMYK
+298 0 R]/PANTONE388PC[/Separation/PANTONE#20388#20PC/DeviceCMYK 299 0 R]/PANTONE389PC[/Separation/PANTONE#20389#20PC/DeviceCMYK
+300 0 R]/PANTONE390PC[/Separation/PANTONE#20390#20PC/DeviceCMYK 301 0 R]/PANTONE391PC[/Separation/PANTONE#20391#20PC/DeviceCMYK
+302 0 R]/PANTONE392PC[/Separation/PANTONE#20392#20PC/DeviceCMYK 303 0 R]/PANTONE393PC[/Separation/PANTONE#20393#20PC/DeviceCMYK
+304 0 R]/PANTONE394PC[/Separation/PANTONE#20394#20PC/DeviceCMYK 305 0 R]/PANTONE395PC[/Separation/PANTONE#20395#20PC/DeviceCMYK
+306 0 R]/PANTONE396PC[/Separation/PANTONE#20396#20PC/DeviceCMYK 307 0 R]/PANTONE397PC[/Separation/PANTONE#20397#20PC/DeviceCMYK
+308 0 R]/PANTONE398PC[/Separation/PANTONE#20398#20PC/DeviceCMYK 309 0 R]/PANTONE399PC[/Separation/PANTONE#20399#20PC/DeviceCMYK
+310 0 R]/PANTONE400PC[/Separation/PANTONE#20400#20PC/DeviceCMYK 311 0 R]/PANTONE401PC[/Separation/PANTONE#20401#20PC/DeviceCMYK
+312 0 R]/PANTONE402PC[/Separation/PANTONE#20402#20PC/DeviceCMYK 313 0 R]/PANTONE403PC[/Separation/PANTONE#20403#20PC/DeviceCMYK
+314 0 R]/PANTONE404PC[/Separation/PANTONE#20404#20PC/DeviceCMYK 315 0 R]/PANTONE405PC[/Separation/PANTONE#20405#20PC/DeviceCMYK
+316 0 R]/PANTONE406PC[/Separation/PANTONE#20406#20PC/DeviceCMYK 317 0 R]/PANTONE407PC[/Separation/PANTONE#20407#20PC/DeviceCMYK
+318 0 R]/PANTONE408PC[/Separation/PANTONE#20408#20PC/DeviceCMYK 319 0 R]/PANTONE409PC[/Separation/PANTONE#20409#20PC/DeviceCMYK
+320 0 R]/PANTONE410PC[/Separation/PANTONE#20410#20PC/DeviceCMYK 321 0 R]/PANTONE411PC[/Separation/PANTONE#20411#20PC/DeviceCMYK
+322 0 R]/PANTONE412PC[/Separation/PANTONE#20412#20PC/DeviceCMYK 323 0 R]/PANTONE413PC[/Separation/PANTONE#20413#20PC/DeviceCMYK
+324 0 R]/PANTONE414PC[/Separation/PANTONE#20414#20PC/DeviceCMYK 325 0 R]/PANTONE415PC[/Separation/PANTONE#20415#20PC/DeviceCMYK
+326 0 R]/PANTONE416PC[/Separation/PANTONE#20416#20PC/DeviceCMYK 327 0 R]/PANTONE417PC[/Separation/PANTONE#20417#20PC/DeviceCMYK
+328 0 R]/PANTONE418PC[/Separation/PANTONE#20418#20PC/DeviceCMYK 329 0 R]/PANTONE419PC[/Separation/PANTONE#20419#20PC/DeviceCMYK
+330 0 R]/PANTONE420PC[/Separation/PANTONE#20420#20PC/DeviceCMYK 331 0 R]/PANTONE421PC[/Separation/PANTONE#20421#20PC/DeviceCMYK
+332 0 R]/PANTONE422PC[/Separation/PANTONE#20422#20PC/DeviceCMYK 333 0 R]/PANTONE423PC[/Separation/PANTONE#20423#20PC/DeviceCMYK
+334 0 R]/PANTONE424PC[/Separation/PANTONE#20424#20PC/DeviceCMYK 335 0 R]/PANTONE425PC[/Separation/PANTONE#20425#20PC/DeviceCMYK
+336 0 R]/PANTONE426PC[/Separation/PANTONE#20426#20PC/DeviceCMYK 337 0 R]/PANTONE427PC[/Separation/PANTONE#20427#20PC/DeviceCMYK
+338 0 R]/PANTONE428PC[/Separation/PANTONE#20428#20PC/DeviceCMYK 339 0 R]/PANTONE429PC[/Separation/PANTONE#20429#20PC/DeviceCMYK
+340 0 R]/PANTONE430PC[/Separation/PANTONE#20430#20PC/DeviceCMYK 341 0 R]/PANTONE431PC[/Separation/PANTONE#20431#20PC/DeviceCMYK
+342 0 R]/PANTONE432PC[/Separation/PANTONE#20432#20PC/DeviceCMYK 343 0 R]/PANTONE433PC[/Separation/PANTONE#20433#20PC/DeviceCMYK
+344 0 R]/PANTONE434PC[/Separation/PANTONE#20434#20PC/DeviceCMYK 345 0 R]/PANTONE435PC[/Separation/PANTONE#20435#20PC/DeviceCMYK
+346 0 R]/PANTONE436PC[/Separation/PANTONE#20436#20PC/DeviceCMYK 347 0 R]/PANTONE437PC[/Separation/PANTONE#20437#20PC/DeviceCMYK
+348 0 R]/PANTONE438PC[/Separation/PANTONE#20438#20PC/DeviceCMYK 349 0 R]/PANTONE439PC[/Separation/PANTONE#20439#20PC/DeviceCMYK
+350 0 R]/PANTONE440PC[/Separation/PANTONE#20440#20PC/DeviceCMYK 351 0 R]/PANTONE441PC[/Separation/PANTONE#20441#20PC/DeviceCMYK
+352 0 R]/PANTONE442PC[/Separation/PANTONE#20442#20PC/DeviceCMYK 353 0 R]/PANTONE443PC[/Separation/PANTONE#20443#20PC/DeviceCMYK
+354 0 R]/PANTONE444PC[/Separation/PANTONE#20444#20PC/DeviceCMYK 355 0 R]/PANTONE445PC[/Separation/PANTONE#20445#20PC/DeviceCMYK
+356 0 R]/PANTONE446PC[/Separation/PANTONE#20446#20PC/DeviceCMYK 357 0 R]/PANTONE447PC[/Separation/PANTONE#20447#20PC/DeviceCMYK
+358 0 R]/PANTONE448PC[/Separation/PANTONE#20448#20PC/DeviceCMYK 359 0 R]/PANTONE449PC[/Separation/PANTONE#20449#20PC/DeviceCMYK
+360 0 R]/PANTONE450PC[/Separation/PANTONE#20450#20PC/DeviceCMYK 361 0 R]/PANTONE451PC[/Separation/PANTONE#20451#20PC/DeviceCMYK
+362 0 R]/PANTONE452PC[/Separation/PANTONE#20452#20PC/DeviceCMYK 363 0 R]/PANTONE453PC[/Separation/PANTONE#20453#20PC/DeviceCMYK
+364 0 R]/PANTONE454PC[/Separation/PANTONE#20454#20PC/DeviceCMYK 365 0 R]/PANTONE455PC[/Separation/PANTONE#20455#20PC/DeviceCMYK
+366 0 R]/PANTONE456PC[/Separation/PANTONE#20456#20PC/DeviceCMYK 367 0 R]/PANTONE457PC[/Separation/PANTONE#20457#20PC/DeviceCMYK
+368 0 R]/PANTONE458PC[/Separation/PANTONE#20458#20PC/DeviceCMYK 369 0 R]/PANTONE459PC[/Separation/PANTONE#20459#20PC/DeviceCMYK
+370 0 R]/PANTONE460PC[/Separation/PANTONE#20460#20PC/DeviceCMYK 371 0 R]/PANTONE461PC[/Separation/PANTONE#20461#20PC/DeviceCMYK
+372 0 R]/PANTONE462PC[/Separation/PANTONE#20462#20PC/DeviceCMYK 373 0 R]/PANTONE463PC[/Separation/PANTONE#20463#20PC/DeviceCMYK
+374 0 R]/PANTONE464PC[/Separation/PANTONE#20464#20PC/DeviceCMYK 375 0 R]/PANTONE465PC[/Separation/PANTONE#20465#20PC/DeviceCMYK
+376 0 R]/PANTONE466PC[/Separation/PANTONE#20466#20PC/DeviceCMYK 377 0 R]/PANTONE467PC[/Separation/PANTONE#20467#20PC/DeviceCMYK
+378 0 R]/PANTONE468PC[/Separation/PANTONE#20468#20PC/DeviceCMYK 379 0 R]/PANTONE469PC[/Separation/PANTONE#20469#20PC/DeviceCMYK
+380 0 R]/PANTONE470PC[/Separation/PANTONE#20470#20PC/DeviceCMYK 381 0 R]/PANTONE471PC[/Separation/PANTONE#20471#20PC/DeviceCMYK
+382 0 R]/PANTONE472PC[/Separation/PANTONE#20472#20PC/DeviceCMYK 383 0 R]/PANTONE473PC[/Separation/PANTONE#20473#20PC/DeviceCMYK
+384 0 R]/PANTONE474PC[/Separation/PANTONE#20474#20PC/DeviceCMYK 385 0 R]/PANTONE475PC[/Separation/PANTONE#20475#20PC/DeviceCMYK
+386 0 R]/PANTONE476PC[/Separation/PANTONE#20476#20PC/DeviceCMYK 387 0 R]/PANTONE477PC[/Separation/PANTONE#20477#20PC/DeviceCMYK
+388 0 R]/PANTONE478PC[/Separation/PANTONE#20478#20PC/DeviceCMYK 389 0 R]/PANTONE479PC[/Separation/PANTONE#20479#20PC/DeviceCMYK
+390 0 R]/PANTONE480PC[/Separation/PANTONE#20480#20PC/DeviceCMYK 391 0 R]/PANTONE481PC[/Separation/PANTONE#20481#20PC/DeviceCMYK
+392 0 R]/PANTONE482PC[/Separation/PANTONE#20482#20PC/DeviceCMYK 393 0 R]/PANTONE483PC[/Separation/PANTONE#20483#20PC/DeviceCMYK
+394 0 R]/PANTONE484PC[/Separation/PANTONE#20484#20PC/DeviceCMYK 395 0 R]/PANTONE485PC[/Separation/PANTONE#20485#20PC/DeviceCMYK
+396 0 R]/PANTONE486PC[/Separation/PANTONE#20486#20PC/DeviceCMYK 397 0 R]/PANTONE487PC[/Separation/PANTONE#20487#20PC/DeviceCMYK
+398 0 R]/PANTONE488PC[/Separation/PANTONE#20488#20PC/DeviceCMYK 399 0 R]/PANTONE489PC[/Separation/PANTONE#20489#20PC/DeviceCMYK
+400 0 R]/PANTONE490PC[/Separation/PANTONE#20490#20PC/DeviceCMYK 401 0 R]/PANTONE491PC[/Separation/PANTONE#20491#20PC/DeviceCMYK
+402 0 R]/PANTONE492PC[/Separation/PANTONE#20492#20PC/DeviceCMYK 403 0 R]/PANTONE493PC[/Separation/PANTONE#20493#20PC/DeviceCMYK
+404 0 R]/PANTONE494PC[/Separation/PANTONE#20494#20PC/DeviceCMYK 405 0 R]/PANTONE495PC[/Separation/PANTONE#20495#20PC/DeviceCMYK
+406 0 R]/PANTONE496PC[/Separation/PANTONE#20496#20PC/DeviceCMYK 407 0 R]/PANTONE497PC[/Separation/PANTONE#20497#20PC/DeviceCMYK
+408 0 R]/PANTONE498PC[/Separation/PANTONE#20498#20PC/DeviceCMYK 409 0 R]/PANTONE499PC[/Separation/PANTONE#20499#20PC/DeviceCMYK
+410 0 R]/PANTONE500PC[/Separation/PANTONE#20500#20PC/DeviceCMYK 411 0 R]/PANTONE501PC[/Separation/PANTONE#20501#20PC/DeviceCMYK
+412 0 R]/PANTONE502PC[/Separation/PANTONE#20502#20PC/DeviceCMYK 413 0 R]/PANTONE503PC[/Separation/PANTONE#20503#20PC/DeviceCMYK
+414 0 R]/PANTONE504PC[/Separation/PANTONE#20504#20PC/DeviceCMYK 415 0 R]/PANTONE505PC[/Separation/PANTONE#20505#20PC/DeviceCMYK
+416 0 R]/PANTONE506PC[/Separation/PANTONE#20506#20PC/DeviceCMYK 417 0 R]/PANTONE507PC[/Separation/PANTONE#20507#20PC/DeviceCMYK
+418 0 R]/PANTONE508PC[/Separation/PANTONE#20508#20PC/DeviceCMYK 419 0 R]/PANTONE509PC[/Separation/PANTONE#20509#20PC/DeviceCMYK
+420 0 R]/PANTONE510PC[/Separation/PANTONE#20510#20PC/DeviceCMYK 421 0 R]/PANTONE511PC[/Separation/PANTONE#20511#20PC/DeviceCMYK
+422 0 R]/PANTONE512PC[/Separation/PANTONE#20512#20PC/DeviceCMYK 423 0 R]/PANTONE513PC[/Separation/PANTONE#20513#20PC/DeviceCMYK
+424 0 R]/PANTONE514PC[/Separation/PANTONE#20514#20PC/DeviceCMYK 425 0 R]/PANTONE515PC[/Separation/PANTONE#20515#20PC/DeviceCMYK
+426 0 R]/PANTONE516PC[/Separation/PANTONE#20516#20PC/DeviceCMYK 427 0 R]/PANTONE517PC[/Separation/PANTONE#20517#20PC/DeviceCMYK
+428 0 R]/PANTONE518PC[/Separation/PANTONE#20518#20PC/DeviceCMYK 429 0 R]/PANTONE519PC[/Separation/PANTONE#20519#20PC/DeviceCMYK
+430 0 R]/PANTONE520PC[/Separation/PANTONE#20520#20PC/DeviceCMYK 431 0 R]/PANTONE521PC[/Separation/PANTONE#20521#20PC/DeviceCMYK
+432 0 R]/PANTONE522PC[/Separation/PANTONE#20522#20PC/DeviceCMYK 433 0 R]/PANTONE523PC[/Separation/PANTONE#20523#20PC/DeviceCMYK
+434 0 R]/PANTONE524PC[/Separation/PANTONE#20524#20PC/DeviceCMYK 435 0 R]/PANTONE525PC[/Separation/PANTONE#20525#20PC/DeviceCMYK
+436 0 R]/PANTONE526PC[/Separation/PANTONE#20526#20PC/DeviceCMYK 437 0 R]/PANTONE527PC[/Separation/PANTONE#20527#20PC/DeviceCMYK
+438 0 R]/PANTONE528PC[/Separation/PANTONE#20528#20PC/DeviceCMYK 439 0 R]/PANTONE529PC[/Separation/PANTONE#20529#20PC/DeviceCMYK
+440 0 R]/PANTONE530PC[/Separation/PANTONE#20530#20PC/DeviceCMYK 441 0 R]/PANTONE531PC[/Separation/PANTONE#20531#20PC/DeviceCMYK
+442 0 R]/PANTONE532PC[/Separation/PANTONE#20532#20PC/DeviceCMYK 443 0 R]/PANTONE533PC[/Separation/PANTONE#20533#20PC/DeviceCMYK
+444 0 R]/PANTONE534PC[/Separation/PANTONE#20534#20PC/DeviceCMYK 445 0 R]/PANTONE535PC[/Separation/PANTONE#20535#20PC/DeviceCMYK
+446 0 R]/PANTONE536PC[/Separation/PANTONE#20536#20PC/DeviceCMYK 447 0 R]/PANTONE537PC[/Separation/PANTONE#20537#20PC/DeviceCMYK
+448 0 R]/PANTONE538PC[/Separation/PANTONE#20538#20PC/DeviceCMYK 449 0 R]/PANTONE539PC[/Separation/PANTONE#20539#20PC/DeviceCMYK
+450 0 R]/PANTONE540PC[/Separation/PANTONE#20540#20PC/DeviceCMYK 451 0 R]/PANTONE541PC[/Separation/PANTONE#20541#20PC/DeviceCMYK
+452 0 R]/PANTONE542PC[/Separation/PANTONE#20542#20PC/DeviceCMYK 453 0 R]/PANTONE543PC[/Separation/PANTONE#20543#20PC/DeviceCMYK
+454 0 R]/PANTONE544PC[/Separation/PANTONE#20544#20PC/DeviceCMYK 455 0 R]/PANTONE545PC[/Separation/PANTONE#20545#20PC/DeviceCMYK
+456 0 R]/PANTONE546PC[/Separation/PANTONE#20546#20PC/DeviceCMYK 457 0 R]/PANTONE547PC[/Separation/PANTONE#20547#20PC/DeviceCMYK
+458 0 R]/PANTONE548PC[/Separation/PANTONE#20548#20PC/DeviceCMYK 459 0 R]/PANTONE549PC[/Separation/PANTONE#20549#20PC/DeviceCMYK
+460 0 R]/PANTONE550PC[/Separation/PANTONE#20550#20PC/DeviceCMYK 461 0 R]/PANTONE551PC[/Separation/PANTONE#20551#20PC/DeviceCMYK
+462 0 R]/PANTONE552PC[/Separation/PANTONE#20552#20PC/DeviceCMYK 463 0 R]/PANTONE553PC[/Separation/PANTONE#20553#20PC/DeviceCMYK
+464 0 R]/PANTONE554PC[/Separation/PANTONE#20554#20PC/DeviceCMYK 465 0 R]/PANTONE555PC[/Separation/PANTONE#20555#20PC/DeviceCMYK
+466 0 R]/PANTONE556PC[/Separation/PANTONE#20556#20PC/DeviceCMYK 467 0 R]/PANTONE557PC[/Separation/PANTONE#20557#20PC/DeviceCMYK
+468 0 R]/PANTONE558PC[/Separation/PANTONE#20558#20PC/DeviceCMYK 469 0 R]/PANTONE559PC[/Separation/PANTONE#20559#20PC/DeviceCMYK
+470 0 R]/PANTONE560PC[/Separation/PANTONE#20560#20PC/DeviceCMYK 471 0 R]/PANTONE561PC[/Separation/PANTONE#20561#20PC/DeviceCMYK
+472 0 R]/PANTONE562PC[/Separation/PANTONE#20562#20PC/DeviceCMYK 473 0 R]/PANTONE563PC[/Separation/PANTONE#20563#20PC/DeviceCMYK
+474 0 R]/PANTONE564PC[/Separation/PANTONE#20564#20PC/DeviceCMYK 475 0 R]/PANTONE565PC[/Separation/PANTONE#20565#20PC/DeviceCMYK
+476 0 R]/PANTONE566PC[/Separation/PANTONE#20566#20PC/DeviceCMYK 477 0 R]/PANTONE567PC[/Separation/PANTONE#20567#20PC/DeviceCMYK
+478 0 R]/PANTONE568PC[/Separation/PANTONE#20568#20PC/DeviceCMYK 479 0 R]/PANTONE569PC[/Separation/PANTONE#20569#20PC/DeviceCMYK
+480 0 R]/PANTONE570PC[/Separation/PANTONE#20570#20PC/DeviceCMYK 481 0 R]/PANTONE571PC[/Separation/PANTONE#20571#20PC/DeviceCMYK
+482 0 R]/PANTONE572PC[/Separation/PANTONE#20572#20PC/DeviceCMYK 483 0 R]/PANTONE573PC[/Separation/PANTONE#20573#20PC/DeviceCMYK
+484 0 R]/PANTONE574PC[/Separation/PANTONE#20574#20PC/DeviceCMYK 485 0 R]/PANTONE575PC[/Separation/PANTONE#20575#20PC/DeviceCMYK
+486 0 R]/PANTONE576PC[/Separation/PANTONE#20576#20PC/DeviceCMYK 487 0 R]/PANTONE577PC[/Separation/PANTONE#20577#20PC/DeviceCMYK
+488 0 R]/PANTONE578PC[/Separation/PANTONE#20578#20PC/DeviceCMYK 489 0 R]/PANTONE579PC[/Separation/PANTONE#20579#20PC/DeviceCMYK
+490 0 R]/PANTONE580PC[/Separation/PANTONE#20580#20PC/DeviceCMYK 491 0 R]/PANTONE581PC[/Separation/PANTONE#20581#20PC/DeviceCMYK
+492 0 R]/PANTONE582PC[/Separation/PANTONE#20582#20PC/DeviceCMYK 493 0 R]/PANTONE583PC[/Separation/PANTONE#20583#20PC/DeviceCMYK
+494 0 R]/PANTONE584PC[/Separation/PANTONE#20584#20PC/DeviceCMYK 495 0 R]/PANTONE585PC[/Separation/PANTONE#20585#20PC/DeviceCMYK
+496 0 R]/PANTONE586PC[/Separation/PANTONE#20586#20PC/DeviceCMYK 497 0 R]/PANTONE587PC[/Separation/PANTONE#20587#20PC/DeviceCMYK
+498 0 R]/PANTONE600PC[/Separation/PANTONE#20600#20PC/DeviceCMYK 499 0 R]/PANTONE601PC[/Separation/PANTONE#20601#20PC/DeviceCMYK
+500 0 R]/PANTONE602PC[/Separation/PANTONE#20602#20PC/DeviceCMYK 501 0 R]/PANTONE603PC[/Separation/PANTONE#20603#20PC/DeviceCMYK
+502 0 R]/PANTONE604PC[/Separation/PANTONE#20604#20PC/DeviceCMYK 503 0 R]/PANTONE605PC[/Separation/PANTONE#20605#20PC/DeviceCMYK
+504 0 R]/PANTONE606PC[/Separation/PANTONE#20606#20PC/DeviceCMYK 505 0 R]/PANTONE607PC[/Separation/PANTONE#20607#20PC/DeviceCMYK
+506 0 R]/PANTONE608PC[/Separation/PANTONE#20608#20PC/DeviceCMYK 507 0 R]/PANTONE609PC[/Separation/PANTONE#20609#20PC/DeviceCMYK
+508 0 R]/PANTONE610PC[/Separation/PANTONE#20610#20PC/DeviceCMYK 509 0 R]/PANTONE611PC[/Separation/PANTONE#20611#20PC/DeviceCMYK
+510 0 R]/PANTONE612PC[/Separation/PANTONE#20612#20PC/DeviceCMYK 511 0 R]/PANTONE613PC[/Separation/PANTONE#20613#20PC/DeviceCMYK
+512 0 R]/PANTONE614PC[/Separation/PANTONE#20614#20PC/DeviceCMYK 513 0 R]/PANTONE615PC[/Separation/PANTONE#20615#20PC/DeviceCMYK
+514 0 R]/PANTONE616PC[/Separation/PANTONE#20616#20PC/DeviceCMYK 515 0 R]/PANTONE617PC[/Separation/PANTONE#20617#20PC/DeviceCMYK
+516 0 R]/PANTONE618PC[/Separation/PANTONE#20618#20PC/DeviceCMYK 517 0 R]/PANTONE619PC[/Separation/PANTONE#20619#20PC/DeviceCMYK
+518 0 R]/PANTONE620PC[/Separation/PANTONE#20620#20PC/DeviceCMYK 519 0 R]/PANTONE621PC[/Separation/PANTONE#20621#20PC/DeviceCMYK
+520 0 R]/PANTONE622PC[/Separation/PANTONE#20622#20PC/DeviceCMYK 521 0 R]/PANTONE623PC[/Separation/PANTONE#20623#20PC/DeviceCMYK
+522 0 R]/PANTONE624PC[/Separation/PANTONE#20624#20PC/DeviceCMYK 523 0 R]/PANTONE625PC[/Separation/PANTONE#20625#20PC/DeviceCMYK
+524 0 R]/PANTONE626PC[/Separation/PANTONE#20626#20PC/DeviceCMYK 525 0 R]/PANTONE627PC[/Separation/PANTONE#20627#20PC/DeviceCMYK
+526 0 R]/PANTONE628PC[/Separation/PANTONE#20628#20PC/DeviceCMYK 527 0 R]/PANTONE629PC[/Separation/PANTONE#20629#20PC/DeviceCMYK
+528 0 R]/PANTONE630PC[/Separation/PANTONE#20630#20PC/DeviceCMYK 529 0 R]/PANTONE631PC[/Separation/PANTONE#20631#20PC/DeviceCMYK
+530 0 R]/PANTONE632PC[/Separation/PANTONE#20632#20PC/DeviceCMYK 531 0 R]/PANTONE633PC[/Separation/PANTONE#20633#20PC/DeviceCMYK
+532 0 R]/PANTONE634PC[/Separation/PANTONE#20634#20PC/DeviceCMYK 533 0 R]/PANTONE635PC[/Separation/PANTONE#20635#20PC/DeviceCMYK
+534 0 R]/PANTONE636PC[/Separation/PANTONE#20636#20PC/DeviceCMYK 535 0 R]/PANTONE637PC[/Separation/PANTONE#20637#20PC/DeviceCMYK
+536 0 R]/PANTONE638PC[/Separation/PANTONE#20638#20PC/DeviceCMYK 537 0 R]/PANTONE639PC[/Separation/PANTONE#20639#20PC/DeviceCMYK
+538 0 R]/PANTONE640PC[/Separation/PANTONE#20640#20PC/DeviceCMYK 539 0 R]/PANTONE641PC[/Separation/PANTONE#20641#20PC/DeviceCMYK
+540 0 R]/PANTONE642PC[/Separation/PANTONE#20642#20PC/DeviceCMYK 541 0 R]/PANTONE643PC[/Separation/PANTONE#20643#20PC/DeviceCMYK
+542 0 R]/PANTONE644PC[/Separation/PANTONE#20644#20PC/DeviceCMYK 543 0 R]/PANTONE645PC[/Separation/PANTONE#20645#20PC/DeviceCMYK
+544 0 R]/PANTONE646PC[/Separation/PANTONE#20646#20PC/DeviceCMYK 545 0 R]/PANTONE647PC[/Separation/PANTONE#20647#20PC/DeviceCMYK
+546 0 R]/PANTONE648PC[/Separation/PANTONE#20648#20PC/DeviceCMYK 547 0 R]/PANTONE649PC[/Separation/PANTONE#20649#20PC/DeviceCMYK
+548 0 R]/PANTONE650PC[/Separation/PANTONE#20650#20PC/DeviceCMYK 549 0 R]/PANTONE651PC[/Separation/PANTONE#20651#20PC/DeviceCMYK
+550 0 R]/PANTONE652PC[/Separation/PANTONE#20652#20PC/DeviceCMYK 551 0 R]/PANTONE653PC[/Separation/PANTONE#20653#20PC/DeviceCMYK
+552 0 R]/PANTONE654PC[/Separation/PANTONE#20654#20PC/DeviceCMYK 553 0 R]/PANTONE655PC[/Separation/PANTONE#20655#20PC/DeviceCMYK
+554 0 R]/PANTONE656PC[/Separation/PANTONE#20656#20PC/DeviceCMYK 555 0 R]/PANTONE657PC[/Separation/PANTONE#20657#20PC/DeviceCMYK
+556 0 R]/PANTONE658PC[/Separation/PANTONE#20658#20PC/DeviceCMYK 557 0 R]/PANTONE659PC[/Separation/PANTONE#20659#20PC/DeviceCMYK
+558 0 R]/PANTONE660PC[/Separation/PANTONE#20660#20PC/DeviceCMYK 559 0 R]/PANTONE661PC[/Separation/PANTONE#20661#20PC/DeviceCMYK
+560 0 R]/PANTONE662PC[/Separation/PANTONE#20662#20PC/DeviceCMYK 561 0 R]/PANTONE663PC[/Separation/PANTONE#20663#20PC/DeviceCMYK
+562 0 R]/PANTONE664PC[/Separation/PANTONE#20664#20PC/DeviceCMYK 563 0 R]/PANTONE665PC[/Separation/PANTONE#20665#20PC/DeviceCMYK
+564 0 R]/PANTONE666PC[/Separation/PANTONE#20666#20PC/DeviceCMYK 565 0 R]/PANTONE667PC[/Separation/PANTONE#20667#20PC/DeviceCMYK
+566 0 R]/PANTONE668PC[/Separation/PANTONE#20668#20PC/DeviceCMYK 567 0 R]/PANTONE669PC[/Separation/PANTONE#20669#20PC/DeviceCMYK
+568 0 R]/PANTONE670PC[/Separation/PANTONE#20670#20PC/DeviceCMYK 569 0 R]/PANTONE671PC[/Separation/PANTONE#20671#20PC/DeviceCMYK
+570 0 R]/PANTONE672PC[/Separation/PANTONE#20672#20PC/DeviceCMYK 571 0 R]/PANTONE673PC[/Separation/PANTONE#20673#20PC/DeviceCMYK
+572 0 R]/PANTONE674PC[/Separation/PANTONE#20674#20PC/DeviceCMYK 573 0 R]/PANTONE675PC[/Separation/PANTONE#20675#20PC/DeviceCMYK
+574 0 R]/PANTONE676PC[/Separation/PANTONE#20676#20PC/DeviceCMYK 575 0 R]/PANTONE677PC[/Separation/PANTONE#20677#20PC/DeviceCMYK
+576 0 R]/PANTONE678PC[/Separation/PANTONE#20678#20PC/DeviceCMYK 577 0 R]/PANTONE679PC[/Separation/PANTONE#20679#20PC/DeviceCMYK
+578 0 R]/PANTONE680PC[/Separation/PANTONE#20680#20PC/DeviceCMYK 579 0 R]/PANTONE681PC[/Separation/PANTONE#20681#20PC/DeviceCMYK
+580 0 R]/PANTONE682PC[/Separation/PANTONE#20682#20PC/DeviceCMYK 581 0 R]/PANTONE683PC[/Separation/PANTONE#20683#20PC/DeviceCMYK
+582 0 R]/PANTONE684PC[/Separation/PANTONE#20684#20PC/DeviceCMYK 583 0 R]/PANTONE685PC[/Separation/PANTONE#20685#20PC/DeviceCMYK
+584 0 R]/PANTONE686PC[/Separation/PANTONE#20686#20PC/DeviceCMYK 585 0 R]/PANTONE687PC[/Separation/PANTONE#20687#20PC/DeviceCMYK
+586 0 R]/PANTONE688PC[/Separation/PANTONE#20688#20PC/DeviceCMYK 587 0 R]/PANTONE689PC[/Separation/PANTONE#20689#20PC/DeviceCMYK
+588 0 R]/PANTONE690PC[/Separation/PANTONE#20690#20PC/DeviceCMYK 589 0 R]/PANTONE691PC[/Separation/PANTONE#20691#20PC/DeviceCMYK
+590 0 R]/PANTONE692PC[/Separation/PANTONE#20692#20PC/DeviceCMYK 591 0 R]/PANTONE693PC[/Separation/PANTONE#20693#20PC/DeviceCMYK
+592 0 R]/PANTONE694PC[/Separation/PANTONE#20694#20PC/DeviceCMYK 593 0 R]/PANTONE695PC[/Separation/PANTONE#20695#20PC/DeviceCMYK
+594 0 R]/PANTONE696PC[/Separation/PANTONE#20696#20PC/DeviceCMYK 595 0 R]/PANTONE697PC[/Separation/PANTONE#20697#20PC/DeviceCMYK
+596 0 R]/PANTONE698PC[/Separation/PANTONE#20698#20PC/DeviceCMYK 597 0 R]/PANTONE699PC[/Separation/PANTONE#20699#20PC/DeviceCMYK
+598 0 R]/PANTONE700PC[/Separation/PANTONE#20700#20PC/DeviceCMYK 599 0 R]/PANTONE701PC[/Separation/PANTONE#20701#20PC/DeviceCMYK
+600 0 R]/PANTONE702PC[/Separation/PANTONE#20702#20PC/DeviceCMYK 601 0 R]/PANTONE703PC[/Separation/PANTONE#20703#20PC/DeviceCMYK
+602 0 R]/PANTONE704PC[/Separation/PANTONE#20704#20PC/DeviceCMYK 603 0 R]/PANTONE705PC[/Separation/PANTONE#20705#20PC/DeviceCMYK
+604 0 R]/PANTONE706PC[/Separation/PANTONE#20706#20PC/DeviceCMYK 605 0 R]/PANTONE707PC[/Separation/PANTONE#20707#20PC/DeviceCMYK
+606 0 R]/PANTONE708PC[/Separation/PANTONE#20708#20PC/DeviceCMYK 607 0 R]/PANTONE709PC[/Separation/PANTONE#20709#20PC/DeviceCMYK
+608 0 R]/PANTONE710PC[/Separation/PANTONE#20710#20PC/DeviceCMYK 609 0 R]/PANTONE711PC[/Separation/PANTONE#20711#20PC/DeviceCMYK
+610 0 R]/PANTONE712PC[/Separation/PANTONE#20712#20PC/DeviceCMYK 611 0 R]/PANTONE713PC[/Separation/PANTONE#20713#20PC/DeviceCMYK
+612 0 R]/PANTONE714PC[/Separation/PANTONE#20714#20PC/DeviceCMYK 613 0 R]/PANTONE715PC[/Separation/PANTONE#20715#20PC/DeviceCMYK
+614 0 R]/PANTONE716PC[/Separation/PANTONE#20716#20PC/DeviceCMYK 615 0 R]/PANTONE717PC[/Separation/PANTONE#20717#20PC/DeviceCMYK
+616 0 R]/PANTONE718PC[/Separation/PANTONE#20718#20PC/DeviceCMYK 617 0 R]/PANTONE719PC[/Separation/PANTONE#20719#20PC/DeviceCMYK
+618 0 R]/PANTONE720PC[/Separation/PANTONE#20720#20PC/DeviceCMYK 619 0 R]/PANTONE721PC[/Separation/PANTONE#20721#20PC/DeviceCMYK
+620 0 R]/PANTONE722PC[/Separation/PANTONE#20722#20PC/DeviceCMYK 621 0 R]/PANTONE723PC[/Separation/PANTONE#20723#20PC/DeviceCMYK
+622 0 R]/PANTONE724PC[/Separation/PANTONE#20724#20PC/DeviceCMYK 623 0 R]/PANTONE725PC[/Separation/PANTONE#20725#20PC/DeviceCMYK
+624 0 R]/PANTONE726PC[/Separation/PANTONE#20726#20PC/DeviceCMYK 625 0 R]/PANTONE727PC[/Separation/PANTONE#20727#20PC/DeviceCMYK
+626 0 R]/PANTONE728PC[/Separation/PANTONE#20728#20PC/DeviceCMYK 627 0 R]/PANTONE729PC[/Separation/PANTONE#20729#20PC/DeviceCMYK
+628 0 R]/PANTONE730PC[/Separation/PANTONE#20730#20PC/DeviceCMYK 629 0 R]/PANTONE731PC[/Separation/PANTONE#20731#20PC/DeviceCMYK
+630 0 R]/PANTONE732PC[/Separation/PANTONE#20732#20PC/DeviceCMYK 631 0 R]/PANTONE1205PC[/Separation/PANTONE#201205#20PC/DeviceCMYK
+632 0 R]/PANTONE1215PC[/Separation/PANTONE#201215#20PC/DeviceCMYK 633 0 R]/PANTONE1225PC[/Separation/PANTONE#201225#20PC/DeviceCMYK
+634 0 R]/PANTONE1235PC[/Separation/PANTONE#201235#20PC/DeviceCMYK 635 0 R]/PANTONE1245PC[/Separation/PANTONE#201245#20PC/DeviceCMYK
+636 0 R]/PANTONE1255PC[/Separation/PANTONE#201255#20PC/DeviceCMYK 637 0 R]/PANTONE1265PC[/Separation/PANTONE#201265#20PC/DeviceCMYK
+638 0 R]/PANTONE1345PC[/Separation/PANTONE#201345#20PC/DeviceCMYK 639 0 R]/PANTONE1355PC[/Separation/PANTONE#201355#20PC/DeviceCMYK
+640 0 R]/PANTONE1365PC[/Separation/PANTONE#201365#20PC/DeviceCMYK 641 0 R]/PANTONE1375PC[/Separation/PANTONE#201375#20PC/DeviceCMYK
+642 0 R]/PANTONE1385PC[/Separation/PANTONE#201385#20PC/DeviceCMYK 643 0 R]/PANTONE1395PC[/Separation/PANTONE#201395#20PC/DeviceCMYK
+644 0 R]/PANTONE1405PC[/Separation/PANTONE#201405#20PC/DeviceCMYK 645 0 R]/PANTONE1485PC[/Separation/PANTONE#201485#20PC/DeviceCMYK
+646 0 R]/PANTONE1495PC[/Separation/PANTONE#201495#20PC/DeviceCMYK 647 0 R]/PANTONE1505PC[/Separation/PANTONE#201505#20PC/DeviceCMYK
+648 0 R]/PANTONE1525PC[/Separation/PANTONE#201525#20PC/DeviceCMYK 649 0 R]/PANTONE1535PC[/Separation/PANTONE#201535#20PC/DeviceCMYK
+650 0 R]/PANTONE1545PC[/Separation/PANTONE#201545#20PC/DeviceCMYK 651 0 R]/PANTONE1555PC[/Separation/PANTONE#201555#20PC/DeviceCMYK
+652 0 R]/PANTONE1565PC[/Separation/PANTONE#201565#20PC/DeviceCMYK 653 0 R]/PANTONE1575PC[/Separation/PANTONE#201575#20PC/DeviceCMYK
+654 0 R]/PANTONE1585PC[/Separation/PANTONE#201585#20PC/DeviceCMYK 655 0 R]/PANTONE1595PC[/Separation/PANTONE#201595#20PC/DeviceCMYK
+656 0 R]/PANTONE1605PC[/Separation/PANTONE#201605#20PC/DeviceCMYK 657 0 R]/PANTONE1615PC[/Separation/PANTONE#201615#20PC/DeviceCMYK
+658 0 R]/PANTONE1625PC[/Separation/PANTONE#201625#20PC/DeviceCMYK 659 0 R]/PANTONE1635PC[/Separation/PANTONE#201635#20PC/DeviceCMYK
+660 0 R]/PANTONE1645PC[/Separation/PANTONE#201645#20PC/DeviceCMYK 661 0 R]/PANTONE1655PC[/Separation/PANTONE#201655#20PC/DeviceCMYK
+662 0 R]/PANTONE1665PC[/Separation/PANTONE#201665#20PC/DeviceCMYK 663 0 R]/PANTONE1675PC[/Separation/PANTONE#201675#20PC/DeviceCMYK
+664 0 R]/PANTONE1685PC[/Separation/PANTONE#201685#20PC/DeviceCMYK 665 0 R]/PANTONE1765PC[/Separation/PANTONE#201765#20PC/DeviceCMYK
+666 0 R]/PANTONE1767PC[/Separation/PANTONE#201767#20PC/DeviceCMYK 667 0 R]/PANTONE1775PC[/Separation/PANTONE#201775#20PC/DeviceCMYK
+668 0 R]/PANTONE1777PC[/Separation/PANTONE#201777#20PC/DeviceCMYK 669 0 R]/PANTONE1785PC[/Separation/PANTONE#201785#20PC/DeviceCMYK
+670 0 R]/PANTONE1787PC[/Separation/PANTONE#201787#20PC/DeviceCMYK 671 0 R]/PANTONE1788PC[/Separation/PANTONE#201788#20PC/DeviceCMYK
+672 0 R]/PANTONE1795PC[/Separation/PANTONE#201795#20PC/DeviceCMYK 673 0 R]/PANTONE1797PC[/Separation/PANTONE#201797#20PC/DeviceCMYK
+674 0 R]/PANTONE1805PC[/Separation/PANTONE#201805#20PC/DeviceCMYK 675 0 R]/PANTONE1807PC[/Separation/PANTONE#201807#20PC/DeviceCMYK
+676 0 R]/PANTONE1815PC[/Separation/PANTONE#201815#20PC/DeviceCMYK 677 0 R]/PANTONE1817PC[/Separation/PANTONE#201817#20PC/DeviceCMYK
+678 0 R]/PANTONE1895PC[/Separation/PANTONE#201895#20PC/DeviceCMYK 679 0 R]/PANTONE1905PC[/Separation/PANTONE#201905#20PC/DeviceCMYK
+680 0 R]/PANTONE1915PC[/Separation/PANTONE#201915#20PC/DeviceCMYK 681 0 R]/PANTONE1925PC[/Separation/PANTONE#201925#20PC/DeviceCMYK
+682 0 R]/PANTONE1935PC[/Separation/PANTONE#201935#20PC/DeviceCMYK 683 0 R]/PANTONE1945PC[/Separation/PANTONE#201945#20PC/DeviceCMYK
+684 0 R]/PANTONE1955PC[/Separation/PANTONE#201955#20PC/DeviceCMYK 685 0 R]/PANTONE2365PC[/Separation/PANTONE#202365#20PC/DeviceCMYK
+686 0 R]/PANTONE2375PC[/Separation/PANTONE#202375#20PC/DeviceCMYK 687 0 R]/PANTONE2385PC[/Separation/PANTONE#202385#20PC/DeviceCMYK
+688 0 R]/PANTONE2395PC[/Separation/PANTONE#202395#20PC/DeviceCMYK 689 0 R]/PANTONE2405PC[/Separation/PANTONE#202405#20PC/DeviceCMYK
+690 0 R]/PANTONE2415PC[/Separation/PANTONE#202415#20PC/DeviceCMYK 691 0 R]/PANTONE2425PC[/Separation/PANTONE#202425#20PC/DeviceCMYK
+692 0 R]/PANTONE2562PC[/Separation/PANTONE#202562#20PC/DeviceCMYK 693 0 R]/PANTONE2563PC[/Separation/PANTONE#202563#20PC/DeviceCMYK
+694 0 R]/PANTONE2567PC[/Separation/PANTONE#202567#20PC/DeviceCMYK 695 0 R]/PANTONE2572PC[/Separation/PANTONE#202572#20PC/DeviceCMYK
+696 0 R]/PANTONE2573PC[/Separation/PANTONE#202573#20PC/DeviceCMYK 697 0 R]/PANTONE2577PC[/Separation/PANTONE#202577#20PC/DeviceCMYK
+698 0 R]/PANTONE2582PC[/Separation/PANTONE#202582#20PC/DeviceCMYK 699 0 R]/PANTONE2583PC[/Separation/PANTONE#202583#20PC/DeviceCMYK
+700 0 R]/PANTONE2587PC[/Separation/PANTONE#202587#20PC/DeviceCMYK 701 0 R]/PANTONE2592PC[/Separation/PANTONE#202592#20PC/DeviceCMYK
+702 0 R]/PANTONE2593PC[/Separation/PANTONE#202593#20PC/DeviceCMYK 703 0 R]/PANTONE2597PC[/Separation/PANTONE#202597#20PC/DeviceCMYK
+704 0 R]/PANTONE2602PC[/Separation/PANTONE#202602#20PC/DeviceCMYK 705 0 R]/PANTONE2603PC[/Separation/PANTONE#202603#20PC/DeviceCMYK
+706 0 R]/PANTONE2607PC[/Separation/PANTONE#202607#20PC/DeviceCMYK 707 0 R]/PANTONE2612PC[/Separation/PANTONE#202612#20PC/DeviceCMYK
+708 0 R]/PANTONE2613PC[/Separation/PANTONE#202613#20PC/DeviceCMYK 709 0 R]/PANTONE2617PC[/Separation/PANTONE#202617#20PC/DeviceCMYK
+710 0 R]/PANTONE2622PC[/Separation/PANTONE#202622#20PC/DeviceCMYK 711 0 R]/PANTONE2623PC[/Separation/PANTONE#202623#20PC/DeviceCMYK
+712 0 R]/PANTONE2627PC[/Separation/PANTONE#202627#20PC/DeviceCMYK 713 0 R]/PANTONE2635PC[/Separation/PANTONE#202635#20PC/DeviceCMYK
+714 0 R]/PANTONE2645PC[/Separation/PANTONE#202645#20PC/DeviceCMYK 715 0 R]/PANTONE2655PC[/Separation/PANTONE#202655#20PC/DeviceCMYK
+716 0 R]/PANTONE2665PC[/Separation/PANTONE#202665#20PC/DeviceCMYK 717 0 R]/PANTONE2685PC[/Separation/PANTONE#202685#20PC/DeviceCMYK
+718 0 R]/PANTONE2695PC[/Separation/PANTONE#202695#20PC/DeviceCMYK 719 0 R]/PANTONE2705PC[/Separation/PANTONE#202705#20PC/DeviceCMYK
+720 0 R]/PANTONE2706PC[/Separation/PANTONE#202706#20PC/DeviceCMYK 721 0 R]/PANTONE2707PC[/Separation/PANTONE#202707#20PC/DeviceCMYK
+722 0 R]/PANTONE2708PC[/Separation/PANTONE#202708#20PC/DeviceCMYK 723 0 R]/PANTONE2715PC[/Separation/PANTONE#202715#20PC/DeviceCMYK
+724 0 R]/PANTONE2716PC[/Separation/PANTONE#202716#20PC/DeviceCMYK 725 0 R]/PANTONE2717PC[/Separation/PANTONE#202717#20PC/DeviceCMYK
+726 0 R]/PANTONE2718PC[/Separation/PANTONE#202718#20PC/DeviceCMYK 727 0 R]/PANTONE2725PC[/Separation/PANTONE#202725#20PC/DeviceCMYK
+728 0 R]/PANTONE2726PC[/Separation/PANTONE#202726#20PC/DeviceCMYK 729 0 R]/PANTONE2727PC[/Separation/PANTONE#202727#20PC/DeviceCMYK
+730 0 R]/PANTONE2728PC[/Separation/PANTONE#202728#20PC/DeviceCMYK 731 0 R]/PANTONE2735PC[/Separation/PANTONE#202735#20PC/DeviceCMYK
+732 0 R]/PANTONE2736PC[/Separation/PANTONE#202736#20PC/DeviceCMYK 733 0 R]/PANTONE2738PC[/Separation/PANTONE#202738#20PC/DeviceCMYK
+734 0 R]/PANTONE2745PC[/Separation/PANTONE#202745#20PC/DeviceCMYK 735 0 R]/PANTONE2746PC[/Separation/PANTONE#202746#20PC/DeviceCMYK
+736 0 R]/PANTONE2747PC[/Separation/PANTONE#202747#20PC/DeviceCMYK 737 0 R]/PANTONE2748PC[/Separation/PANTONE#202748#20PC/DeviceCMYK
+738 0 R]/PANTONE2755PC[/Separation/PANTONE#202755#20PC/DeviceCMYK 739 0 R]/PANTONE2756PC[/Separation/PANTONE#202756#20PC/DeviceCMYK
+740 0 R]/PANTONE2757PC[/Separation/PANTONE#202757#20PC/DeviceCMYK 741 0 R]/PANTONE2758PC[/Separation/PANTONE#202758#20PC/DeviceCMYK
+742 0 R]/PANTONE2765PC[/Separation/PANTONE#202765#20PC/DeviceCMYK 743 0 R]/PANTONE2766PC[/Separation/PANTONE#202766#20PC/DeviceCMYK
+744 0 R]/PANTONE2767PC[/Separation/PANTONE#202767#20PC/DeviceCMYK 745 0 R]/PANTONE2768PC[/Separation/PANTONE#202768#20PC/DeviceCMYK
+746 0 R]/PANTONE2905PC[/Separation/PANTONE#202905#20PC/DeviceCMYK 747 0 R]/PANTONE2915PC[/Separation/PANTONE#202915#20PC/DeviceCMYK
+748 0 R]/PANTONE2925PC[/Separation/PANTONE#202925#20PC/DeviceCMYK 749 0 R]/PANTONE2935PC[/Separation/PANTONE#202935#20PC/DeviceCMYK
+750 0 R]/PANTONE2945PC[/Separation/PANTONE#202945#20PC/DeviceCMYK 751 0 R]/PANTONE2955PC[/Separation/PANTONE#202955#20PC/DeviceCMYK
+752 0 R]/PANTONE2965PC[/Separation/PANTONE#202965#20PC/DeviceCMYK 753 0 R]/PANTONE2975PC[/Separation/PANTONE#202975#20PC/DeviceCMYK
+754 0 R]/PANTONE2985PC[/Separation/PANTONE#202985#20PC/DeviceCMYK 755 0 R]/PANTONE2995PC[/Separation/PANTONE#202995#20PC/DeviceCMYK
+756 0 R]/PANTONE3005PC[/Separation/PANTONE#203005#20PC/DeviceCMYK 757 0 R]/PANTONE3015PC[/Separation/PANTONE#203015#20PC/DeviceCMYK
+758 0 R]/PANTONE3025PC[/Separation/PANTONE#203025#20PC/DeviceCMYK 759 0 R]/PANTONE3035PC[/Separation/PANTONE#203035#20PC/DeviceCMYK
+760 0 R]/PANTONE3105PC[/Separation/PANTONE#203105#20PC/DeviceCMYK 761 0 R]/PANTONE3115PC[/Separation/PANTONE#203115#20PC/DeviceCMYK
+762 0 R]/PANTONE3125PC[/Separation/PANTONE#203125#20PC/DeviceCMYK 763 0 R]/PANTONE3135PC[/Separation/PANTONE#203135#20PC/DeviceCMYK
+764 0 R]/PANTONE3145PC[/Separation/PANTONE#203145#20PC/DeviceCMYK 765 0 R]/PANTONE3155PC[/Separation/PANTONE#203155#20PC/DeviceCMYK
+766 0 R]/PANTONE3165PC[/Separation/PANTONE#203165#20PC/DeviceCMYK 767 0 R]/PANTONE3242PC[/Separation/PANTONE#203242#20PC/DeviceCMYK
+768 0 R]/PANTONE3245PC[/Separation/PANTONE#203245#20PC/DeviceCMYK 769 0 R]/PANTONE3248PC[/Separation/PANTONE#203248#20PC/DeviceCMYK
+770 0 R]/PANTONE3252PC[/Separation/PANTONE#203252#20PC/DeviceCMYK 771 0 R]/PANTONE3255PC[/Separation/PANTONE#203255#20PC/DeviceCMYK
+772 0 R]/PANTONE3258PC[/Separation/PANTONE#203258#20PC/DeviceCMYK 773 0 R]/PANTONE3262PC[/Separation/PANTONE#203262#20PC/DeviceCMYK
+774 0 R]/PANTONE3265PC[/Separation/PANTONE#203265#20PC/DeviceCMYK 775 0 R]/PANTONE3268PC[/Separation/PANTONE#203268#20PC/DeviceCMYK
+776 0 R]/PANTONE3272PC[/Separation/PANTONE#203272#20PC/DeviceCMYK 777 0 R]/PANTONE3275PC[/Separation/PANTONE#203275#20PC/DeviceCMYK
+778 0 R]/PANTONE3278PC[/Separation/PANTONE#203278#20PC/DeviceCMYK 779 0 R]/PANTONE3282PC[/Separation/PANTONE#203282#20PC/DeviceCMYK
+780 0 R]/PANTONE3285PC[/Separation/PANTONE#203285#20PC/DeviceCMYK 781 0 R]/PANTONE3288PC[/Separation/PANTONE#203288#20PC/DeviceCMYK
+782 0 R]/PANTONE3292PC[/Separation/PANTONE#203292#20PC/DeviceCMYK 783 0 R]/PANTONE3295PC[/Separation/PANTONE#203295#20PC/DeviceCMYK
+784 0 R]/PANTONE3298PC[/Separation/PANTONE#203298#20PC/DeviceCMYK 785 0 R]/PANTONE3302PC[/Separation/PANTONE#203302#20PC/DeviceCMYK
+786 0 R]/PANTONE3305PC[/Separation/PANTONE#203305#20PC/DeviceCMYK 787 0 R]/PANTONE3308PC[/Separation/PANTONE#203308#20PC/DeviceCMYK
+788 0 R]/PANTONE3375PC[/Separation/PANTONE#203375#20PC/DeviceCMYK 789 0 R]/PANTONE3385PC[/Separation/PANTONE#203385#20PC/DeviceCMYK
+790 0 R]/PANTONE3395PC[/Separation/PANTONE#203395#20PC/DeviceCMYK 791 0 R]/PANTONE3405PC[/Separation/PANTONE#203405#20PC/DeviceCMYK
+792 0 R]/PANTONE3415PC[/Separation/PANTONE#203415#20PC/DeviceCMYK 793 0 R]/PANTONE3425PC[/Separation/PANTONE#203425#20PC/DeviceCMYK
+794 0 R]/PANTONE3435PC[/Separation/PANTONE#203435#20PC/DeviceCMYK 795 0 R]/PANTONE3935PC[/Separation/PANTONE#203935#20PC/DeviceCMYK
+796 0 R]/PANTONE3945PC[/Separation/PANTONE#203945#20PC/DeviceCMYK 797 0 R]/PANTONE3955PC[/Separation/PANTONE#203955#20PC/DeviceCMYK
+798 0 R]/PANTONE3965PC[/Separation/PANTONE#203965#20PC/DeviceCMYK 799 0 R]/PANTONE3975PC[/Separation/PANTONE#203975#20PC/DeviceCMYK
+800 0 R]/PANTONE3985PC[/Separation/PANTONE#203985#20PC/DeviceCMYK 801 0 R]/PANTONE3995PC[/Separation/PANTONE#203995#20PC/DeviceCMYK
+802 0 R]/PANTONE4485PC[/Separation/PANTONE#204485#20PC/DeviceCMYK 803 0 R]/PANTONE4495PC[/Separation/PANTONE#204495#20PC/DeviceCMYK
+804 0 R]/PANTONE4505PC[/Separation/PANTONE#204505#20PC/DeviceCMYK 805 0 R]/PANTONE4515PC[/Separation/PANTONE#204515#20PC/DeviceCMYK
+806 0 R]/PANTONE4525PC[/Separation/PANTONE#204525#20PC/DeviceCMYK 807 0 R]/PANTONE4535PC[/Separation/PANTONE#204535#20PC/DeviceCMYK
+808 0 R]/PANTONE4545PC[/Separation/PANTONE#204545#20PC/DeviceCMYK 809 0 R]/PANTONE4625PC[/Separation/PANTONE#204625#20PC/DeviceCMYK
+810 0 R]/PANTONE4635PC[/Separation/PANTONE#204635#20PC/DeviceCMYK 811 0 R]/PANTONE4645PC[/Separation/PANTONE#204645#20PC/DeviceCMYK
+812 0 R]/PANTONE4655PC[/Separation/PANTONE#204655#20PC/DeviceCMYK 813 0 R]/PANTONE4665PC[/Separation/PANTONE#204665#20PC/DeviceCMYK
+814 0 R]/PANTONE4675PC[/Separation/PANTONE#204675#20PC/DeviceCMYK 815 0 R]/PANTONE4685PC[/Separation/PANTONE#204685#20PC/DeviceCMYK
+816 0 R]/PANTONE4695PC[/Separation/PANTONE#204695#20PC/DeviceCMYK 817 0 R]/PANTONE4705PC[/Separation/PANTONE#204705#20PC/DeviceCMYK
+818 0 R]/PANTONE4715PC[/Separation/PANTONE#204715#20PC/DeviceCMYK 819 0 R]/PANTONE4725PC[/Separation/PANTONE#204725#20PC/DeviceCMYK
+820 0 R]/PANTONE4735PC[/Separation/PANTONE#204735#20PC/DeviceCMYK 821 0 R]/PANTONE4745PC[/Separation/PANTONE#204745#20PC/DeviceCMYK
+822 0 R]/PANTONE4755PC[/Separation/PANTONE#204755#20PC/DeviceCMYK 823 0 R]/PANTONE4975PC[/Separation/PANTONE#204975#20PC/DeviceCMYK
+824 0 R]/PANTONE4985PC[/Separation/PANTONE#204985#20PC/DeviceCMYK 825 0 R]/PANTONE4995PC[/Separation/PANTONE#204995#20PC/DeviceCMYK
+826 0 R]/PANTONE5005PC[/Separation/PANTONE#205005#20PC/DeviceCMYK 827 0 R]/PANTONE5015PC[/Separation/PANTONE#205015#20PC/DeviceCMYK
+828 0 R]/PANTONE5025PC[/Separation/PANTONE#205025#20PC/DeviceCMYK 829 0 R]/PANTONE5035PC[/Separation/PANTONE#205035#20PC/DeviceCMYK
+830 0 R]/PANTONE5115PC[/Separation/PANTONE#205115#20PC/DeviceCMYK 831 0 R]/PANTONE5125PC[/Separation/PANTONE#205125#20PC/DeviceCMYK
+832 0 R]/PANTONE5135PC[/Separation/PANTONE#205135#20PC/DeviceCMYK 833 0 R]/PANTONE5145PC[/Separation/PANTONE#205145#20PC/DeviceCMYK
+834 0 R]/PANTONE5155PC[/Separation/PANTONE#205155#20PC/DeviceCMYK 835 0 R]/PANTONE5165PC[/Separation/PANTONE#205165#20PC/DeviceCMYK
+836 0 R]/PANTONE5175PC[/Separation/PANTONE#205175#20PC/DeviceCMYK 837 0 R]/PANTONE5185PC[/Separation/PANTONE#205185#20PC/DeviceCMYK
+838 0 R]/PANTONE5195PC[/Separation/PANTONE#205195#20PC/DeviceCMYK 839 0 R]/PANTONE5205PC[/Separation/PANTONE#205205#20PC/DeviceCMYK
+840 0 R]/PANTONE5215PC[/Separation/PANTONE#205215#20PC/DeviceCMYK 841 0 R]/PANTONE5225PC[/Separation/PANTONE#205225#20PC/DeviceCMYK
+842 0 R]/PANTONE5235PC[/Separation/PANTONE#205235#20PC/DeviceCMYK 843 0 R]/PANTONE5245PC[/Separation/PANTONE#205245#20PC/DeviceCMYK
+844 0 R]/PANTONE5255PC[/Separation/PANTONE#205255#20PC/DeviceCMYK 845 0 R]/PANTONE5265PC[/Separation/PANTONE#205265#20PC/DeviceCMYK
+846 0 R]/PANTONE5275PC[/Separation/PANTONE#205275#20PC/DeviceCMYK 847 0 R]/PANTONE5285PC[/Separation/PANTONE#205285#20PC/DeviceCMYK
+848 0 R]/PANTONE5295PC[/Separation/PANTONE#205295#20PC/DeviceCMYK 849 0 R]/PANTONE5305PC[/Separation/PANTONE#205305#20PC/DeviceCMYK
+850 0 R]/PANTONE5315PC[/Separation/PANTONE#205315#20PC/DeviceCMYK 851 0 R]/PANTONE5395PC[/Separation/PANTONE#205395#20PC/DeviceCMYK
+852 0 R]/PANTONE5405PC[/Separation/PANTONE#205405#20PC/DeviceCMYK 853 0 R]/PANTONE5415PC[/Separation/PANTONE#205415#20PC/DeviceCMYK
+854 0 R]/PANTONE5425PC[/Separation/PANTONE#205425#20PC/DeviceCMYK 855 0 R]/PANTONE5435PC[/Separation/PANTONE#205435#20PC/DeviceCMYK
+856 0 R]/PANTONE5445PC[/Separation/PANTONE#205445#20PC/DeviceCMYK 857 0 R]/PANTONE5455PC[/Separation/PANTONE#205455#20PC/DeviceCMYK
+858 0 R]/PANTONE5463PC[/Separation/PANTONE#205463#20PC/DeviceCMYK 859 0 R]/PANTONE5467PC[/Separation/PANTONE#205467#20PC/DeviceCMYK
+860 0 R]/PANTONE5473PC[/Separation/PANTONE#205473#20PC/DeviceCMYK 861 0 R]/PANTONE5477PC[/Separation/PANTONE#205477#20PC/DeviceCMYK
+862 0 R]/PANTONE5483PC[/Separation/PANTONE#205483#20PC/DeviceCMYK 863 0 R]/PANTONE5487PC[/Separation/PANTONE#205487#20PC/DeviceCMYK
+864 0 R]/PANTONE5493PC[/Separation/PANTONE#205493#20PC/DeviceCMYK 865 0 R]/PANTONE5497PC[/Separation/PANTONE#205497#20PC/DeviceCMYK
+866 0 R]/PANTONE5503PC[/Separation/PANTONE#205503#20PC/DeviceCMYK 867 0 R]/PANTONE5507PC[/Separation/PANTONE#205507#20PC/DeviceCMYK
+868 0 R]/PANTONE5513PC[/Separation/PANTONE#205513#20PC/DeviceCMYK 869 0 R]/PANTONE5517PC[/Separation/PANTONE#205517#20PC/DeviceCMYK
+870 0 R]/PANTONE5523PC[/Separation/PANTONE#205523#20PC/DeviceCMYK 871 0 R]/PANTONE5527PC[/Separation/PANTONE#205527#20PC/DeviceCMYK
+872 0 R]/PANTONE5535PC[/Separation/PANTONE#205535#20PC/DeviceCMYK 873 0 R]/PANTONE5545PC[/Separation/PANTONE#205545#20PC/DeviceCMYK
+874 0 R]/PANTONE5555PC[/Separation/PANTONE#205555#20PC/DeviceCMYK 875 0 R]/PANTONE5565PC[/Separation/PANTONE#205565#20PC/DeviceCMYK
+876 0 R]/PANTONE5575PC[/Separation/PANTONE#205575#20PC/DeviceCMYK 877 0 R]/PANTONE5585PC[/Separation/PANTONE#205585#20PC/DeviceCMYK
+878 0 R]/PANTONE5595PC[/Separation/PANTONE#205595#20PC/DeviceCMYK 879 0 R]/PANTONE5605PC[/Separation/PANTONE#205605#20PC/DeviceCMYK
+880 0 R]/PANTONE5615PC[/Separation/PANTONE#205615#20PC/DeviceCMYK 881 0 R]/PANTONE5625PC[/Separation/PANTONE#205625#20PC/DeviceCMYK
+882 0 R]/PANTONE5635PC[/Separation/PANTONE#205635#20PC/DeviceCMYK 883 0 R]/PANTONE5645PC[/Separation/PANTONE#205645#20PC/DeviceCMYK
+884 0 R]/PANTONE5655PC[/Separation/PANTONE#205655#20PC/DeviceCMYK 885 0 R]/PANTONE5665PC[/Separation/PANTONE#205665#20PC/DeviceCMYK
+886 0 R]/PANTONE5743PC[/Separation/PANTONE#205743#20PC/DeviceCMYK 887 0 R]/PANTONE5747PC[/Separation/PANTONE#205747#20PC/DeviceCMYK
+888 0 R]/PANTONE5753PC[/Separation/PANTONE#205753#20PC/DeviceCMYK 889 0 R]/PANTONE5757PC[/Separation/PANTONE#205757#20PC/DeviceCMYK
+890 0 R]/PANTONE5763PC[/Separation/PANTONE#205763#20PC/DeviceCMYK 891 0 R]/PANTONE5767PC[/Separation/PANTONE#205767#20PC/DeviceCMYK
+892 0 R]/PANTONE5773PC[/Separation/PANTONE#205773#20PC/DeviceCMYK 893 0 R]/PANTONE5777PC[/Separation/PANTONE#205777#20PC/DeviceCMYK
+894 0 R]/PANTONE5783PC[/Separation/PANTONE#205783#20PC/DeviceCMYK 895 0 R]/PANTONE5787PC[/Separation/PANTONE#205787#20PC/DeviceCMYK
+896 0 R]/PANTONE5793PC[/Separation/PANTONE#205793#20PC/DeviceCMYK 897 0 R]/PANTONE5797PC[/Separation/PANTONE#205797#20PC/DeviceCMYK
+898 0 R]/PANTONE5803PC[/Separation/PANTONE#205803#20PC/DeviceCMYK 899 0 R]/PANTONE5807PC[/Separation/PANTONE#205807#20PC/DeviceCMYK
+900 0 R]/PANTONE5815PC[/Separation/PANTONE#205815#20PC/DeviceCMYK 901 0 R]/PANTONE5825PC[/Separation/PANTONE#205825#20PC/DeviceCMYK
+902 0 R]/PANTONE5835PC[/Separation/PANTONE#205835#20PC/DeviceCMYK 903 0 R]/PANTONE5845PC[/Separation/PANTONE#205845#20PC/DeviceCMYK
+904 0 R]/PANTONE5855PC[/Separation/PANTONE#205855#20PC/DeviceCMYK 905 0 R]/PANTONE5865PC[/Separation/PANTONE#205865#20PC/DeviceCMYK
+906 0 R]/PANTONE5875PC[/Separation/PANTONE#205875#20PC/DeviceCMYK 907 0 R]/PANTONE7401PC[/Separation/PANTONE#207401#20PC/DeviceCMYK
+908 0 R]/PANTONE7402PC[/Separation/PANTONE#207402#20PC/DeviceCMYK 909 0 R]/PANTONE7403PC[/Separation/PANTONE#207403#20PC/DeviceCMYK
+910 0 R]/PANTONE7404PC[/Separation/PANTONE#207404#20PC/DeviceCMYK 911 0 R]/PANTONE7405PC[/Separation/PANTONE#207405#20PC/DeviceCMYK
+912 0 R]/PANTONE7406PC[/Separation/PANTONE#207406#20PC/DeviceCMYK 913 0 R]/PANTONE7407PC[/Separation/PANTONE#207407#20PC/DeviceCMYK
+914 0 R]/PANTONE7408PC[/Separation/PANTONE#207408#20PC/DeviceCMYK 915 0 R]/PANTONE7409PC[/Separation/PANTONE#207409#20PC/DeviceCMYK
+916 0 R]/PANTONE7410PC[/Separation/PANTONE#207410#20PC/DeviceCMYK 917 0 R]/PANTONE7411PC[/Separation/PANTONE#207411#20PC/DeviceCMYK
+918 0 R]/PANTONE7412PC[/Separation/PANTONE#207412#20PC/DeviceCMYK 919 0 R]/PANTONE7413PC[/Separation/PANTONE#207413#20PC/DeviceCMYK
+920 0 R]/PANTONE7414PC[/Separation/PANTONE#207414#20PC/DeviceCMYK 921 0 R]/PANTONE7415PC[/Separation/PANTONE#207415#20PC/DeviceCMYK
+922 0 R]/PANTONE7416PC[/Separation/PANTONE#207416#20PC/DeviceCMYK 923 0 R]/PANTONE7417PC[/Separation/PANTONE#207417#20PC/DeviceCMYK
+924 0 R]/PANTONE7418PC[/Separation/PANTONE#207418#20PC/DeviceCMYK 925 0 R]/PANTONE7419PC[/Separation/PANTONE#207419#20PC/DeviceCMYK
+926 0 R]/PANTONE7420PC[/Separation/PANTONE#207420#20PC/DeviceCMYK 927 0 R]/PANTONE7421PC[/Separation/PANTONE#207421#20PC/DeviceCMYK
+928 0 R]/PANTONE7422PC[/Separation/PANTONE#207422#20PC/DeviceCMYK 929 0 R]/PANTONE7423PC[/Separation/PANTONE#207423#20PC/DeviceCMYK
+930 0 R]/PANTONE7424PC[/Separation/PANTONE#207424#20PC/DeviceCMYK 931 0 R]/PANTONE7425PC[/Separation/PANTONE#207425#20PC/DeviceCMYK
+932 0 R]/PANTONE7426PC[/Separation/PANTONE#207426#20PC/DeviceCMYK 933 0 R]/PANTONE7427PC[/Separation/PANTONE#207427#20PC/DeviceCMYK
+934 0 R]/PANTONE7428PC[/Separation/PANTONE#207428#20PC/DeviceCMYK 935 0 R]/PANTONE7429PC[/Separation/PANTONE#207429#20PC/DeviceCMYK
+936 0 R]/PANTONE7430PC[/Separation/PANTONE#207430#20PC/DeviceCMYK 937 0 R]/PANTONE7431PC[/Separation/PANTONE#207431#20PC/DeviceCMYK
+938 0 R]/PANTONE7432PC[/Separation/PANTONE#207432#20PC/DeviceCMYK 939 0 R]/PANTONE7433PC[/Separation/PANTONE#207433#20PC/DeviceCMYK
+940 0 R]/PANTONE7434PC[/Separation/PANTONE#207434#20PC/DeviceCMYK 941 0 R]/PANTONE7435PC[/Separation/PANTONE#207435#20PC/DeviceCMYK
+942 0 R]/PANTONE7436PC[/Separation/PANTONE#207436#20PC/DeviceCMYK 943 0 R]/PANTONE7437PC[/Separation/PANTONE#207437#20PC/DeviceCMYK
+944 0 R]/PANTONE7438PC[/Separation/PANTONE#207438#20PC/DeviceCMYK 945 0 R]/PANTONE7439PC[/Separation/PANTONE#207439#20PC/DeviceCMYK
+946 0 R]/PANTONE7440PC[/Separation/PANTONE#207440#20PC/DeviceCMYK 947 0 R]/PANTONE7441PC[/Separation/PANTONE#207441#20PC/DeviceCMYK
+948 0 R]/PANTONE7442PC[/Separation/PANTONE#207442#20PC/DeviceCMYK 949 0 R]/PANTONE7443PC[/Separation/PANTONE#207443#20PC/DeviceCMYK
+950 0 R]/PANTONE7444PC[/Separation/PANTONE#207444#20PC/DeviceCMYK 951 0 R]/PANTONE7445PC[/Separation/PANTONE#207445#20PC/DeviceCMYK
+952 0 R]/PANTONE7446PC[/Separation/PANTONE#207446#20PC/DeviceCMYK 953 0 R]/PANTONE7447PC[/Separation/PANTONE#207447#20PC/DeviceCMYK
+954 0 R]/PANTONE7448PC[/Separation/PANTONE#207448#20PC/DeviceCMYK 955 0 R]/PANTONE7449PC[/Separation/PANTONE#207449#20PC/DeviceCMYK
+956 0 R]/PANTONE7450PC[/Separation/PANTONE#207450#20PC/DeviceCMYK 957 0 R]/PANTONE7451PC[/Separation/PANTONE#207451#20PC/DeviceCMYK
+958 0 R]/PANTONE7452PC[/Separation/PANTONE#207452#20PC/DeviceCMYK 959 0 R]/PANTONE7453PC[/Separation/PANTONE#207453#20PC/DeviceCMYK
+960 0 R]/PANTONE7454PC[/Separation/PANTONE#207454#20PC/DeviceCMYK 961 0 R]/PANTONE7455PC[/Separation/PANTONE#207455#20PC/DeviceCMYK
+962 0 R]/PANTONE7456PC[/Separation/PANTONE#207456#20PC/DeviceCMYK 963 0 R]/PANTONE7457PC[/Separation/PANTONE#207457#20PC/DeviceCMYK
+964 0 R]/PANTONE7458PC[/Separation/PANTONE#207458#20PC/DeviceCMYK 965 0 R]/PANTONE7459PC[/Separation/PANTONE#207459#20PC/DeviceCMYK
+966 0 R]/PANTONE7460PC[/Separation/PANTONE#207460#20PC/DeviceCMYK 967 0 R]/PANTONE7461PC[/Separation/PANTONE#207461#20PC/DeviceCMYK
+968 0 R]/PANTONE7462PC[/Separation/PANTONE#207462#20PC/DeviceCMYK 969 0 R]/PANTONE7463PC[/Separation/PANTONE#207463#20PC/DeviceCMYK
+970 0 R]/PANTONE7464PC[/Separation/PANTONE#207464#20PC/DeviceCMYK 971 0 R]/PANTONE7465PC[/Separation/PANTONE#207465#20PC/DeviceCMYK
+972 0 R]/PANTONE7466PC[/Separation/PANTONE#207466#20PC/DeviceCMYK 973 0 R]/PANTONE7467PC[/Separation/PANTONE#207467#20PC/DeviceCMYK
+974 0 R]/PANTONE7468PC[/Separation/PANTONE#207468#20PC/DeviceCMYK 975 0 R]/PANTONE7469PC[/Separation/PANTONE#207469#20PC/DeviceCMYK
+976 0 R]/PANTONE7470PC[/Separation/PANTONE#207470#20PC/DeviceCMYK 977 0 R]/PANTONE7471PC[/Separation/PANTONE#207471#20PC/DeviceCMYK
+978 0 R]/PANTONE7472PC[/Separation/PANTONE#207472#20PC/DeviceCMYK 979 0 R]/PANTONE7473PC[/Separation/PANTONE#207473#20PC/DeviceCMYK
+980 0 R]/PANTONE7474PC[/Separation/PANTONE#207474#20PC/DeviceCMYK 981 0 R]/PANTONE7475PC[/Separation/PANTONE#207475#20PC/DeviceCMYK
+982 0 R]/PANTONE7476PC[/Separation/PANTONE#207476#20PC/DeviceCMYK 983 0 R]/PANTONE7477PC[/Separation/PANTONE#207477#20PC/DeviceCMYK
+984 0 R]/PANTONE7478PC[/Separation/PANTONE#207478#20PC/DeviceCMYK 985 0 R]/PANTONE7479PC[/Separation/PANTONE#207479#20PC/DeviceCMYK
+986 0 R]/PANTONE7480PC[/Separation/PANTONE#207480#20PC/DeviceCMYK 987 0 R]/PANTONE7481PC[/Separation/PANTONE#207481#20PC/DeviceCMYK
+988 0 R]/PANTONE7482PC[/Separation/PANTONE#207482#20PC/DeviceCMYK 989 0 R]/PANTONE7483PC[/Separation/PANTONE#207483#20PC/DeviceCMYK
+990 0 R]/PANTONE7484PC[/Separation/PANTONE#207484#20PC/DeviceCMYK 991 0 R]/PANTONE7485PC[/Separation/PANTONE#207485#20PC/DeviceCMYK
+992 0 R]/PANTONE7486PC[/Separation/PANTONE#207486#20PC/DeviceCMYK 993 0 R]/PANTONE7487PC[/Separation/PANTONE#207487#20PC/DeviceCMYK
+994 0 R]/PANTONE7488PC[/Separation/PANTONE#207488#20PC/DeviceCMYK 995 0 R]/PANTONE7489PC[/Separation/PANTONE#207489#20PC/DeviceCMYK
+996 0 R]/PANTONE7490PC[/Separation/PANTONE#207490#20PC/DeviceCMYK 997 0 R]/PANTONE7491PC[/Separation/PANTONE#207491#20PC/DeviceCMYK
+998 0 R]/PANTONE7492PC[/Separation/PANTONE#207492#20PC/DeviceCMYK 999 0 R]/PANTONE7493PC[/Separation/PANTONE#207493#20PC/DeviceCMYK
+1000 0 R]/PANTONE7494PC[/Separation/PANTONE#207494#20PC/DeviceCMYK 1001 0 R]/PANTONE7495PC[/Separation/PANTONE#207495#20PC/DeviceCMYK
+1002 0 R]/PANTONE7496PC[/Separation/PANTONE#207496#20PC/DeviceCMYK 1003 0 R]/PANTONE7497PC[/Separation/PANTONE#207497#20PC/DeviceCMYK
+1004 0 R]/PANTONE7498PC[/Separation/PANTONE#207498#20PC/DeviceCMYK 1005 0 R]/PANTONE7499PC[/Separation/PANTONE#207499#20PC/DeviceCMYK
+1006 0 R]/PANTONE7500PC[/Separation/PANTONE#207500#20PC/DeviceCMYK 1007 0 R]/PANTONE7501PC[/Separation/PANTONE#207501#20PC/DeviceCMYK
+1008 0 R]/PANTONE7502PC[/Separation/PANTONE#207502#20PC/DeviceCMYK 1009 0 R]/PANTONE7503PC[/Separation/PANTONE#207503#20PC/DeviceCMYK
+1010 0 R]/PANTONE7504PC[/Separation/PANTONE#207504#20PC/DeviceCMYK 1011 0 R]/PANTONE7505PC[/Separation/PANTONE#207505#20PC/DeviceCMYK
+1012 0 R]/PANTONE7506PC[/Separation/PANTONE#207506#20PC/DeviceCMYK 1013 0 R]/PANTONE7507PC[/Separation/PANTONE#207507#20PC/DeviceCMYK
+1014 0 R]/PANTONE7508PC[/Separation/PANTONE#207508#20PC/DeviceCMYK 1015 0 R]/PANTONE7509PC[/Separation/PANTONE#207509#20PC/DeviceCMYK
+1016 0 R]/PANTONE7510PC[/Separation/PANTONE#207510#20PC/DeviceCMYK 1017 0 R]/PANTONE7511PC[/Separation/PANTONE#207511#20PC/DeviceCMYK
+1018 0 R]/PANTONE7512PC[/Separation/PANTONE#207512#20PC/DeviceCMYK 1019 0 R]/PANTONE7513PC[/Separation/PANTONE#207513#20PC/DeviceCMYK
+1020 0 R]/PANTONE7514PC[/Separation/PANTONE#207514#20PC/DeviceCMYK 1021 0 R]/PANTONE7515PC[/Separation/PANTONE#207515#20PC/DeviceCMYK
+1022 0 R]/PANTONE7516PC[/Separation/PANTONE#207516#20PC/DeviceCMYK 1023 0 R]/PANTONE7517PC[/Separation/PANTONE#207517#20PC/DeviceCMYK
+1024 0 R]/PANTONE7518PC[/Separation/PANTONE#207518#20PC/DeviceCMYK 1025 0 R]/PANTONE7519PC[/Separation/PANTONE#207519#20PC/DeviceCMYK
+1026 0 R]/PANTONE7520PC[/Separation/PANTONE#207520#20PC/DeviceCMYK 1027 0 R]/PANTONE7521PC[/Separation/PANTONE#207521#20PC/DeviceCMYK
+1028 0 R]/PANTONE7522PC[/Separation/PANTONE#207522#20PC/DeviceCMYK 1029 0 R]/PANTONE7523PC[/Separation/PANTONE#207523#20PC/DeviceCMYK
+1030 0 R]/PANTONE7524PC[/Separation/PANTONE#207524#20PC/DeviceCMYK 1031 0 R]/PANTONE7525PC[/Separation/PANTONE#207525#20PC/DeviceCMYK
+1032 0 R]/PANTONE7526PC[/Separation/PANTONE#207526#20PC/DeviceCMYK 1033 0 R]/PANTONE7527PC[/Separation/PANTONE#207527#20PC/DeviceCMYK
+1034 0 R]/PANTONE7528PC[/Separation/PANTONE#207528#20PC/DeviceCMYK 1035 0 R]/PANTONE7529PC[/Separation/PANTONE#207529#20PC/DeviceCMYK
+1036 0 R]/PANTONE7530PC[/Separation/PANTONE#207530#20PC/DeviceCMYK 1037 0 R]/PANTONE7531PC[/Separation/PANTONE#207531#20PC/DeviceCMYK
+1038 0 R]/PANTONE7532PC[/Separation/PANTONE#207532#20PC/DeviceCMYK 1039 0 R]/PANTONE7533PC[/Separation/PANTONE#207533#20PC/DeviceCMYK
+1040 0 R]/PANTONE7534PC[/Separation/PANTONE#207534#20PC/DeviceCMYK 1041 0 R]/PANTONE7535PC[/Separation/PANTONE#207535#20PC/DeviceCMYK
+1042 0 R]/PANTONE7536PC[/Separation/PANTONE#207536#20PC/DeviceCMYK 1043 0 R]/PANTONE7537PC[/Separation/PANTONE#207537#20PC/DeviceCMYK
+1044 0 R]/PANTONE7538PC[/Separation/PANTONE#207538#20PC/DeviceCMYK 1045 0 R]/PANTONE7539PC[/Separation/PANTONE#207539#20PC/DeviceCMYK
+1046 0 R]/PANTONE7540PC[/Separation/PANTONE#207540#20PC/DeviceCMYK 1047 0 R]/PANTONE7541PC[/Separation/PANTONE#207541#20PC/DeviceCMYK
+1048 0 R]/PANTONE7542PC[/Separation/PANTONE#207542#20PC/DeviceCMYK 1049 0 R]/PANTONE7543PC[/Separation/PANTONE#207543#20PC/DeviceCMYK
+1050 0 R]/PANTONE7544PC[/Separation/PANTONE#207544#20PC/DeviceCMYK 1051 0 R]/PANTONE7545PC[/Separation/PANTONE#207545#20PC/DeviceCMYK
+1052 0 R]/PANTONE7546PC[/Separation/PANTONE#207546#20PC/DeviceCMYK 1053 0 R]/PANTONE7547PC[/Separation/PANTONE#207547#20PC/DeviceCMYK
+1054 0 R]/PANTONEBlack2PC[/Separation/PANTONE#20Black#202#20PC/DeviceCMYK 1055 0 R]/PANTONEBlack3PC[/Separation/PANTONE#20Black#203#20PC/DeviceCMYK
+1056 0 R]/PANTONEBlack4PC[/Separation/PANTONE#20Black#204#20PC/DeviceCMYK 1057 0 R]/PANTONEBlack5PC[/Separation/PANTONE#20Black#205#20PC/DeviceCMYK
+1058 0 R]/PANTONEBlack6PC[/Separation/PANTONE#20Black#206#20PC/DeviceCMYK 1059 0 R]/PANTONEBlack7PC[/Separation/PANTONE#20Black#207#20PC/DeviceCMYK
+1060 0 R]/PANTONEBlackPC[/Separation/PANTONE#20Black#20PC/DeviceCMYK 1061 0 R]/PANTONEBlue072PC[/Separation/PANTONE#20Blue#20072#20PC/DeviceCMYK
+1062 0 R]/PANTONECoolGray1PC[/Separation/PANTONE#20Cool#20Gray#201#20PC/DeviceCMYK
+1063 0 R]/PANTONECoolGray2PC[/Separation/PANTONE#20Cool#20Gray#202#20PC/DeviceCMYK
+1064 0 R]/PANTONECoolGray3PC[/Separation/PANTONE#20Cool#20Gray#203#20PC/DeviceCMYK
+1065 0 R]/PANTONECoolGray4PC[/Separation/PANTONE#20Cool#20Gray#204#20PC/DeviceCMYK
+1066 0 R]/PANTONECoolGray5PC[/Separation/PANTONE#20Cool#20Gray#205#20PC/DeviceCMYK
+1067 0 R]/PANTONECoolGray6PC[/Separation/PANTONE#20Cool#20Gray#206#20PC/DeviceCMYK
+1068 0 R]/PANTONECoolGray7PC[/Separation/PANTONE#20Cool#20Gray#207#20PC/DeviceCMYK
+1069 0 R]/PANTONECoolGray8PC[/Separation/PANTONE#20Cool#20Gray#208#20PC/DeviceCMYK
+1070 0 R]/PANTONECoolGray9PC[/Separation/PANTONE#20Cool#20Gray#209#20PC/DeviceCMYK
+1071 0 R]/PANTONECoolGray10PC[/Separation/PANTONE#20Cool#20Gray#2010#20PC/DeviceCMYK
+1072 0 R]/PANTONECoolGray11PC[/Separation/PANTONE#20Cool#20Gray#2011#20PC/DeviceCMYK
+1073 0 R]/PANTONEGreenPC[/Separation/PANTONE#20Green#20PC/DeviceCMYK 1074 0 R]/PANTONEOrange021PC[/Separation/PANTONE#20Orange#20021#20PC/DeviceCMYK
+1075 0 R]/PANTONEProc.BlackPC[/Separation/PANTONE#20Proc.#20Black#20PC/DeviceCMYK
+1076 0 R]/PANTONEProc.BluePC[/Separation/PANTONE#20Proc.#20Blue#20PC/DeviceCMYK 1077 0 R]/PANTONEProc.CyanPC[/Separation/PANTONE#20Proc.#20Cyan#20PC/DeviceCMYK
+1078 0 R]/PANTONEProc.Magen.PC[/Separation/PANTONE#20Proc.#20Magen.#20PC/DeviceCMYK
+1079 0 R]/PANTONEProc.YellowPC[/Separation/PANTONE#20Proc.#20Yellow#20PC/DeviceCMYK
+1080 0 R]/PANTONEPurplePC[/Separation/PANTONE#20Purple#20PC/DeviceCMYK 1081 0 R]/PANTONERed032PC[/Separation/PANTONE#20Red#20032#20PC/DeviceCMYK
+1082 0 R]/PANTONERef.BluePC[/Separation/PANTONE#20Ref.#20Blue#20PC/DeviceCMYK 1083 0 R]/PANTONERhod.RedPC[/Separation/PANTONE#20Rhod.#20Red#20PC/DeviceCMYK
+1084 0 R]/PANTONERub.RedPC[/Separation/PANTONE#20Rub.#20Red#20PC/DeviceCMYK 1085 0 R]/PANTONEVioletPC[/Separation/PANTONE#20Violet#20PC/DeviceCMYK
+1086 0 R]/PANTONEWarmGray1PC[/Separation/PANTONE#20Warm#20Gray#201#20PC/DeviceCMYK
+1087 0 R]/PANTONEWarmGray2PC[/Separation/PANTONE#20Warm#20Gray#202#20PC/DeviceCMYK
+1088 0 R]/PANTONEWarmGray3PC[/Separation/PANTONE#20Warm#20Gray#203#20PC/DeviceCMYK
+1089 0 R]/PANTONEWarmGray4PC[/Separation/PANTONE#20Warm#20Gray#204#20PC/DeviceCMYK
+1090 0 R]/PANTONEWarmGray5PC[/Separation/PANTONE#20Warm#20Gray#205#20PC/DeviceCMYK
+1091 0 R]/PANTONEWarmGray6PC[/Separation/PANTONE#20Warm#20Gray#206#20PC/DeviceCMYK
+1092 0 R]/PANTONEWarmGray7PC[/Separation/PANTONE#20Warm#20Gray#207#20PC/DeviceCMYK
+1093 0 R]/PANTONEWarmGray8PC[/Separation/PANTONE#20Warm#20Gray#208#20PC/DeviceCMYK
+1094 0 R]/PANTONEWarmGray9PC[/Separation/PANTONE#20Warm#20Gray#209#20PC/DeviceCMYK
+1095 0 R]/PANTONEWarmGray10PC[/Separation/PANTONE#20Warm#20Gray#2010#20PC/DeviceCMYK
+1096 0 R]/PANTONEWarmGray11PC[/Separation/PANTONE#20Warm#20Gray#2011#20PC/DeviceCMYK
+1097 0 R]/PANTONEWarmRedPC[/Separation/PANTONE#20Warm#20Red#20PC/DeviceCMYK 1098 0 R]/PANTONEYellowPC[/Separation/PANTONE#20Yellow#20PC/DeviceCMYK
+1099 0 R]/HKS05N[/Separation/HKS#2005#20N/DeviceCMYK 1103 0 R]/HKS14N[/Separation/HKS#2014#20N/DeviceCMYK
+1104 0 R]/HKS17N[/Separation/HKS#2017#20N/DeviceCMYK 1105 0 R]/HKS24N[/Separation/HKS#2024#20N/DeviceCMYK
+1106 0 R]/HKS38N[/Separation/HKS#2038#20N/DeviceCMYK 1107 0 R]/HKS49N[/Separation/HKS#2049#20N/DeviceCMYK
+1108 0 R]/HKS57N[/Separation/HKS#2057#20N/DeviceCMYK 1109 0 R]/HKS68N[/Separation/HKS#2068#20N/DeviceCMYK
+1110 0 R]/HKS74N[/Separation/HKS#2074#20N/DeviceCMYK 1111 0 R]/HKS92N[/Separation/HKS#2092#20N/DeviceCMYK
+1112 0 R]>>/Font<</F1 5 0 R/F2 7 0 R>>/ProcSet[/PDF/Text/ImageC/ImageB/ImageI]>>
+endobj
+1117 0 obj
+<</Filter/FlateDecode/Length 485>>
+stream
+xڥj$!@@bd`HhݐEIg5 sĒ&? 2X_S=Tyodf` Mp;>v81}s8P3ȮnCc /qz`b/A5 d,«)? TR~))-z VER%)eXj. 0,7] 6j]|0vg9=ѫ"r[@E
+endstream
+endobj
+1118 0 obj
+<</ColorSpace<</PANTONE100PC[/Separation/PANTONE#20100#20PC/DeviceCMYK 11 0 R]/PANTONE101PC[/Separation/PANTONE#20101#20PC/DeviceCMYK
+12 0 R]/PANTONE102PC[/Separation/PANTONE#20102#20PC/DeviceCMYK 13 0 R]/PANTONE103PC[/Separation/PANTONE#20103#20PC/DeviceCMYK
+14 0 R]/PANTONE104PC[/Separation/PANTONE#20104#20PC/DeviceCMYK 15 0 R]/PANTONE105PC[/Separation/PANTONE#20105#20PC/DeviceCMYK
+16 0 R]/PANTONE106PC[/Separation/PANTONE#20106#20PC/DeviceCMYK 17 0 R]/PANTONE107PC[/Separation/PANTONE#20107#20PC/DeviceCMYK
+18 0 R]/PANTONE108PC[/Separation/PANTONE#20108#20PC/DeviceCMYK 19 0 R]/PANTONE109PC[/Separation/PANTONE#20109#20PC/DeviceCMYK
+20 0 R]/PANTONE110PC[/Separation/PANTONE#20110#20PC/DeviceCMYK 21 0 R]/PANTONE111PC[/Separation/PANTONE#20111#20PC/DeviceCMYK
+22 0 R]/PANTONE112PC[/Separation/PANTONE#20112#20PC/DeviceCMYK 23 0 R]/PANTONE113PC[/Separation/PANTONE#20113#20PC/DeviceCMYK
+24 0 R]/PANTONE114PC[/Separation/PANTONE#20114#20PC/DeviceCMYK 25 0 R]/PANTONE115PC[/Separation/PANTONE#20115#20PC/DeviceCMYK
+26 0 R]/PANTONE116PC[/Separation/PANTONE#20116#20PC/DeviceCMYK 27 0 R]/PANTONE117PC[/Separation/PANTONE#20117#20PC/DeviceCMYK
+28 0 R]/PANTONE118PC[/Separation/PANTONE#20118#20PC/DeviceCMYK 29 0 R]/PANTONE119PC[/Separation/PANTONE#20119#20PC/DeviceCMYK
+30 0 R]/PANTONE120PC[/Separation/PANTONE#20120#20PC/DeviceCMYK 31 0 R]/PANTONE121PC[/Separation/PANTONE#20121#20PC/DeviceCMYK
+32 0 R]/PANTONE122PC[/Separation/PANTONE#20122#20PC/DeviceCMYK 33 0 R]/PANTONE123PC[/Separation/PANTONE#20123#20PC/DeviceCMYK
+34 0 R]/PANTONE124PC[/Separation/PANTONE#20124#20PC/DeviceCMYK 35 0 R]/PANTONE125PC[/Separation/PANTONE#20125#20PC/DeviceCMYK
+36 0 R]/PANTONE126PC[/Separation/PANTONE#20126#20PC/DeviceCMYK 37 0 R]/PANTONE127PC[/Separation/PANTONE#20127#20PC/DeviceCMYK
+38 0 R]/PANTONE128PC[/Separation/PANTONE#20128#20PC/DeviceCMYK 39 0 R]/PANTONE129PC[/Separation/PANTONE#20129#20PC/DeviceCMYK
+40 0 R]/PANTONE130PC[/Separation/PANTONE#20130#20PC/DeviceCMYK 41 0 R]/PANTONE131PC[/Separation/PANTONE#20131#20PC/DeviceCMYK
+42 0 R]/PANTONE132PC[/Separation/PANTONE#20132#20PC/DeviceCMYK 43 0 R]/PANTONE133PC[/Separation/PANTONE#20133#20PC/DeviceCMYK
+44 0 R]/PANTONE134PC[/Separation/PANTONE#20134#20PC/DeviceCMYK 45 0 R]/PANTONE135PC[/Separation/PANTONE#20135#20PC/DeviceCMYK
+46 0 R]/PANTONE136PC[/Separation/PANTONE#20136#20PC/DeviceCMYK 47 0 R]/PANTONE137PC[/Separation/PANTONE#20137#20PC/DeviceCMYK
+48 0 R]/PANTONE138PC[/Separation/PANTONE#20138#20PC/DeviceCMYK 49 0 R]/PANTONE139PC[/Separation/PANTONE#20139#20PC/DeviceCMYK
+50 0 R]/PANTONE140PC[/Separation/PANTONE#20140#20PC/DeviceCMYK 51 0 R]/PANTONE141PC[/Separation/PANTONE#20141#20PC/DeviceCMYK
+52 0 R]/PANTONE142PC[/Separation/PANTONE#20142#20PC/DeviceCMYK 53 0 R]/PANTONE143PC[/Separation/PANTONE#20143#20PC/DeviceCMYK
+54 0 R]/PANTONE144PC[/Separation/PANTONE#20144#20PC/DeviceCMYK 55 0 R]/PANTONE145PC[/Separation/PANTONE#20145#20PC/DeviceCMYK
+56 0 R]/PANTONE146PC[/Separation/PANTONE#20146#20PC/DeviceCMYK 57 0 R]/PANTONE147PC[/Separation/PANTONE#20147#20PC/DeviceCMYK
+58 0 R]/PANTONE148PC[/Separation/PANTONE#20148#20PC/DeviceCMYK 59 0 R]/PANTONE149PC[/Separation/PANTONE#20149#20PC/DeviceCMYK
+60 0 R]/PANTONE150PC[/Separation/PANTONE#20150#20PC/DeviceCMYK 61 0 R]/PANTONE151PC[/Separation/PANTONE#20151#20PC/DeviceCMYK
+62 0 R]/PANTONE152PC[/Separation/PANTONE#20152#20PC/DeviceCMYK 63 0 R]/PANTONE153PC[/Separation/PANTONE#20153#20PC/DeviceCMYK
+64 0 R]/PANTONE154PC[/Separation/PANTONE#20154#20PC/DeviceCMYK 65 0 R]/PANTONE155PC[/Separation/PANTONE#20155#20PC/DeviceCMYK
+66 0 R]/PANTONE156PC[/Separation/PANTONE#20156#20PC/DeviceCMYK 67 0 R]/PANTONE157PC[/Separation/PANTONE#20157#20PC/DeviceCMYK
+68 0 R]/PANTONE158PC[/Separation/PANTONE#20158#20PC/DeviceCMYK 69 0 R]/PANTONE159PC[/Separation/PANTONE#20159#20PC/DeviceCMYK
+70 0 R]/PANTONE160PC[/Separation/PANTONE#20160#20PC/DeviceCMYK 71 0 R]/PANTONE161PC[/Separation/PANTONE#20161#20PC/DeviceCMYK
+72 0 R]/PANTONE162PC[/Separation/PANTONE#20162#20PC/DeviceCMYK 73 0 R]/PANTONE163PC[/Separation/PANTONE#20163#20PC/DeviceCMYK
+74 0 R]/PANTONE164PC[/Separation/PANTONE#20164#20PC/DeviceCMYK 75 0 R]/PANTONE165PC[/Separation/PANTONE#20165#20PC/DeviceCMYK
+76 0 R]/PANTONE166PC[/Separation/PANTONE#20166#20PC/DeviceCMYK 77 0 R]/PANTONE167PC[/Separation/PANTONE#20167#20PC/DeviceCMYK
+78 0 R]/PANTONE168PC[/Separation/PANTONE#20168#20PC/DeviceCMYK 79 0 R]/PANTONE169PC[/Separation/PANTONE#20169#20PC/DeviceCMYK
+80 0 R]/PANTONE170PC[/Separation/PANTONE#20170#20PC/DeviceCMYK 81 0 R]/PANTONE171PC[/Separation/PANTONE#20171#20PC/DeviceCMYK
+82 0 R]/PANTONE172PC[/Separation/PANTONE#20172#20PC/DeviceCMYK 83 0 R]/PANTONE173PC[/Separation/PANTONE#20173#20PC/DeviceCMYK
+84 0 R]/PANTONE174PC[/Separation/PANTONE#20174#20PC/DeviceCMYK 85 0 R]/PANTONE175PC[/Separation/PANTONE#20175#20PC/DeviceCMYK
+86 0 R]/PANTONE176PC[/Separation/PANTONE#20176#20PC/DeviceCMYK 87 0 R]/PANTONE177PC[/Separation/PANTONE#20177#20PC/DeviceCMYK
+88 0 R]/PANTONE178PC[/Separation/PANTONE#20178#20PC/DeviceCMYK 89 0 R]/PANTONE179PC[/Separation/PANTONE#20179#20PC/DeviceCMYK
+90 0 R]/PANTONE180PC[/Separation/PANTONE#20180#20PC/DeviceCMYK 91 0 R]/PANTONE181PC[/Separation/PANTONE#20181#20PC/DeviceCMYK
+92 0 R]/PANTONE182PC[/Separation/PANTONE#20182#20PC/DeviceCMYK 93 0 R]/PANTONE183PC[/Separation/PANTONE#20183#20PC/DeviceCMYK
+94 0 R]/PANTONE184PC[/Separation/PANTONE#20184#20PC/DeviceCMYK 95 0 R]/PANTONE185PC[/Separation/PANTONE#20185#20PC/DeviceCMYK
+96 0 R]/PANTONE186PC[/Separation/PANTONE#20186#20PC/DeviceCMYK 97 0 R]/PANTONE187PC[/Separation/PANTONE#20187#20PC/DeviceCMYK
+98 0 R]/PANTONE188PC[/Separation/PANTONE#20188#20PC/DeviceCMYK 99 0 R]/PANTONE189PC[/Separation/PANTONE#20189#20PC/DeviceCMYK
+100 0 R]/PANTONE190PC[/Separation/PANTONE#20190#20PC/DeviceCMYK 101 0 R]/PANTONE191PC[/Separation/PANTONE#20191#20PC/DeviceCMYK
+102 0 R]/PANTONE192PC[/Separation/PANTONE#20192#20PC/DeviceCMYK 103 0 R]/PANTONE193PC[/Separation/PANTONE#20193#20PC/DeviceCMYK
+104 0 R]/PANTONE194PC[/Separation/PANTONE#20194#20PC/DeviceCMYK 105 0 R]/PANTONE195PC[/Separation/PANTONE#20195#20PC/DeviceCMYK
+106 0 R]/PANTONE196PC[/Separation/PANTONE#20196#20PC/DeviceCMYK 107 0 R]/PANTONE197PC[/Separation/PANTONE#20197#20PC/DeviceCMYK
+108 0 R]/PANTONE198PC[/Separation/PANTONE#20198#20PC/DeviceCMYK 109 0 R]/PANTONE199PC[/Separation/PANTONE#20199#20PC/DeviceCMYK
+110 0 R]/PANTONE200PC[/Separation/PANTONE#20200#20PC/DeviceCMYK 111 0 R]/PANTONE201PC[/Separation/PANTONE#20201#20PC/DeviceCMYK
+112 0 R]/PANTONE202PC[/Separation/PANTONE#20202#20PC/DeviceCMYK 113 0 R]/PANTONE203PC[/Separation/PANTONE#20203#20PC/DeviceCMYK
+114 0 R]/PANTONE204PC[/Separation/PANTONE#20204#20PC/DeviceCMYK 115 0 R]/PANTONE205PC[/Separation/PANTONE#20205#20PC/DeviceCMYK
+116 0 R]/PANTONE206PC[/Separation/PANTONE#20206#20PC/DeviceCMYK 117 0 R]/PANTONE207PC[/Separation/PANTONE#20207#20PC/DeviceCMYK
+118 0 R]/PANTONE208PC[/Separation/PANTONE#20208#20PC/DeviceCMYK 119 0 R]/PANTONE209PC[/Separation/PANTONE#20209#20PC/DeviceCMYK
+120 0 R]/PANTONE210PC[/Separation/PANTONE#20210#20PC/DeviceCMYK 121 0 R]/PANTONE211PC[/Separation/PANTONE#20211#20PC/DeviceCMYK
+122 0 R]/PANTONE212PC[/Separation/PANTONE#20212#20PC/DeviceCMYK 123 0 R]/PANTONE213PC[/Separation/PANTONE#20213#20PC/DeviceCMYK
+124 0 R]/PANTONE214PC[/Separation/PANTONE#20214#20PC/DeviceCMYK 125 0 R]/PANTONE215PC[/Separation/PANTONE#20215#20PC/DeviceCMYK
+126 0 R]/PANTONE216PC[/Separation/PANTONE#20216#20PC/DeviceCMYK 127 0 R]/PANTONE217PC[/Separation/PANTONE#20217#20PC/DeviceCMYK
+128 0 R]/PANTONE218PC[/Separation/PANTONE#20218#20PC/DeviceCMYK 129 0 R]/PANTONE219PC[/Separation/PANTONE#20219#20PC/DeviceCMYK
+130 0 R]/PANTONE220PC[/Separation/PANTONE#20220#20PC/DeviceCMYK 131 0 R]/PANTONE221PC[/Separation/PANTONE#20221#20PC/DeviceCMYK
+132 0 R]/PANTONE222PC[/Separation/PANTONE#20222#20PC/DeviceCMYK 133 0 R]/PANTONE223PC[/Separation/PANTONE#20223#20PC/DeviceCMYK
+134 0 R]/PANTONE224PC[/Separation/PANTONE#20224#20PC/DeviceCMYK 135 0 R]/PANTONE225PC[/Separation/PANTONE#20225#20PC/DeviceCMYK
+136 0 R]/PANTONE226PC[/Separation/PANTONE#20226#20PC/DeviceCMYK 137 0 R]/PANTONE227PC[/Separation/PANTONE#20227#20PC/DeviceCMYK
+138 0 R]/PANTONE228PC[/Separation/PANTONE#20228#20PC/DeviceCMYK 139 0 R]/PANTONE229PC[/Separation/PANTONE#20229#20PC/DeviceCMYK
+140 0 R]/PANTONE230PC[/Separation/PANTONE#20230#20PC/DeviceCMYK 141 0 R]/PANTONE231PC[/Separation/PANTONE#20231#20PC/DeviceCMYK
+142 0 R]/PANTONE232PC[/Separation/PANTONE#20232#20PC/DeviceCMYK 143 0 R]/PANTONE233PC[/Separation/PANTONE#20233#20PC/DeviceCMYK
+144 0 R]/PANTONE234PC[/Separation/PANTONE#20234#20PC/DeviceCMYK 145 0 R]/PANTONE235PC[/Separation/PANTONE#20235#20PC/DeviceCMYK
+146 0 R]/PANTONE236PC[/Separation/PANTONE#20236#20PC/DeviceCMYK 147 0 R]/PANTONE237PC[/Separation/PANTONE#20237#20PC/DeviceCMYK
+148 0 R]/PANTONE238PC[/Separation/PANTONE#20238#20PC/DeviceCMYK 149 0 R]/PANTONE239PC[/Separation/PANTONE#20239#20PC/DeviceCMYK
+150 0 R]/PANTONE240PC[/Separation/PANTONE#20240#20PC/DeviceCMYK 151 0 R]/PANTONE241PC[/Separation/PANTONE#20241#20PC/DeviceCMYK
+152 0 R]/PANTONE242PC[/Separation/PANTONE#20242#20PC/DeviceCMYK 153 0 R]/PANTONE243PC[/Separation/PANTONE#20243#20PC/DeviceCMYK
+154 0 R]/PANTONE244PC[/Separation/PANTONE#20244#20PC/DeviceCMYK 155 0 R]/PANTONE245PC[/Separation/PANTONE#20245#20PC/DeviceCMYK
+156 0 R]/PANTONE246PC[/Separation/PANTONE#20246#20PC/DeviceCMYK 157 0 R]/PANTONE247PC[/Separation/PANTONE#20247#20PC/DeviceCMYK
+158 0 R]/PANTONE248PC[/Separation/PANTONE#20248#20PC/DeviceCMYK 159 0 R]/PANTONE249PC[/Separation/PANTONE#20249#20PC/DeviceCMYK
+160 0 R]/PANTONE250PC[/Separation/PANTONE#20250#20PC/DeviceCMYK 161 0 R]/PANTONE251PC[/Separation/PANTONE#20251#20PC/DeviceCMYK
+162 0 R]/PANTONE252PC[/Separation/PANTONE#20252#20PC/DeviceCMYK 163 0 R]/PANTONE253PC[/Separation/PANTONE#20253#20PC/DeviceCMYK
+164 0 R]/PANTONE254PC[/Separation/PANTONE#20254#20PC/DeviceCMYK 165 0 R]/PANTONE255PC[/Separation/PANTONE#20255#20PC/DeviceCMYK
+166 0 R]/PANTONE256PC[/Separation/PANTONE#20256#20PC/DeviceCMYK 167 0 R]/PANTONE257PC[/Separation/PANTONE#20257#20PC/DeviceCMYK
+168 0 R]/PANTONE258PC[/Separation/PANTONE#20258#20PC/DeviceCMYK 169 0 R]/PANTONE259PC[/Separation/PANTONE#20259#20PC/DeviceCMYK
+170 0 R]/PANTONE260PC[/Separation/PANTONE#20260#20PC/DeviceCMYK 171 0 R]/PANTONE261PC[/Separation/PANTONE#20261#20PC/DeviceCMYK
+172 0 R]/PANTONE262PC[/Separation/PANTONE#20262#20PC/DeviceCMYK 173 0 R]/PANTONE263PC[/Separation/PANTONE#20263#20PC/DeviceCMYK
+174 0 R]/PANTONE264PC[/Separation/PANTONE#20264#20PC/DeviceCMYK 175 0 R]/PANTONE265PC[/Separation/PANTONE#20265#20PC/DeviceCMYK
+176 0 R]/PANTONE266PC[/Separation/PANTONE#20266#20PC/DeviceCMYK 177 0 R]/PANTONE267PC[/Separation/PANTONE#20267#20PC/DeviceCMYK
+178 0 R]/PANTONE268PC[/Separation/PANTONE#20268#20PC/DeviceCMYK 179 0 R]/PANTONE269PC[/Separation/PANTONE#20269#20PC/DeviceCMYK
+180 0 R]/PANTONE270PC[/Separation/PANTONE#20270#20PC/DeviceCMYK 181 0 R]/PANTONE271PC[/Separation/PANTONE#20271#20PC/DeviceCMYK
+182 0 R]/PANTONE272PC[/Separation/PANTONE#20272#20PC/DeviceCMYK 183 0 R]/PANTONE273PC[/Separation/PANTONE#20273#20PC/DeviceCMYK
+184 0 R]/PANTONE274PC[/Separation/PANTONE#20274#20PC/DeviceCMYK 185 0 R]/PANTONE275PC[/Separation/PANTONE#20275#20PC/DeviceCMYK
+186 0 R]/PANTONE276PC[/Separation/PANTONE#20276#20PC/DeviceCMYK 187 0 R]/PANTONE277PC[/Separation/PANTONE#20277#20PC/DeviceCMYK
+188 0 R]/PANTONE278PC[/Separation/PANTONE#20278#20PC/DeviceCMYK 189 0 R]/PANTONE279PC[/Separation/PANTONE#20279#20PC/DeviceCMYK
+190 0 R]/PANTONE280PC[/Separation/PANTONE#20280#20PC/DeviceCMYK 191 0 R]/PANTONE281PC[/Separation/PANTONE#20281#20PC/DeviceCMYK
+192 0 R]/PANTONE282PC[/Separation/PANTONE#20282#20PC/DeviceCMYK 193 0 R]/PANTONE283PC[/Separation/PANTONE#20283#20PC/DeviceCMYK
+194 0 R]/PANTONE284PC[/Separation/PANTONE#20284#20PC/DeviceCMYK 195 0 R]/PANTONE285PC[/Separation/PANTONE#20285#20PC/DeviceCMYK
+196 0 R]/PANTONE286PC[/Separation/PANTONE#20286#20PC/DeviceCMYK 197 0 R]/PANTONE287PC[/Separation/PANTONE#20287#20PC/DeviceCMYK
+198 0 R]/PANTONE288PC[/Separation/PANTONE#20288#20PC/DeviceCMYK 199 0 R]/PANTONE289PC[/Separation/PANTONE#20289#20PC/DeviceCMYK
+200 0 R]/PANTONE290PC[/Separation/PANTONE#20290#20PC/DeviceCMYK 201 0 R]/PANTONE291PC[/Separation/PANTONE#20291#20PC/DeviceCMYK
+202 0 R]/PANTONE292PC[/Separation/PANTONE#20292#20PC/DeviceCMYK 203 0 R]/PANTONE293PC[/Separation/PANTONE#20293#20PC/DeviceCMYK
+204 0 R]/PANTONE294PC[/Separation/PANTONE#20294#20PC/DeviceCMYK 205 0 R]/PANTONE295PC[/Separation/PANTONE#20295#20PC/DeviceCMYK
+206 0 R]/PANTONE296PC[/Separation/PANTONE#20296#20PC/DeviceCMYK 207 0 R]/PANTONE297PC[/Separation/PANTONE#20297#20PC/DeviceCMYK
+208 0 R]/PANTONE298PC[/Separation/PANTONE#20298#20PC/DeviceCMYK 209 0 R]/PANTONE299PC[/Separation/PANTONE#20299#20PC/DeviceCMYK
+210 0 R]/PANTONE300PC[/Separation/PANTONE#20300#20PC/DeviceCMYK 211 0 R]/PANTONE301PC[/Separation/PANTONE#20301#20PC/DeviceCMYK
+212 0 R]/PANTONE302PC[/Separation/PANTONE#20302#20PC/DeviceCMYK 213 0 R]/PANTONE303PC[/Separation/PANTONE#20303#20PC/DeviceCMYK
+214 0 R]/PANTONE304PC[/Separation/PANTONE#20304#20PC/DeviceCMYK 215 0 R]/PANTONE305PC[/Separation/PANTONE#20305#20PC/DeviceCMYK
+216 0 R]/PANTONE306PC[/Separation/PANTONE#20306#20PC/DeviceCMYK 217 0 R]/PANTONE307PC[/Separation/PANTONE#20307#20PC/DeviceCMYK
+218 0 R]/PANTONE308PC[/Separation/PANTONE#20308#20PC/DeviceCMYK 219 0 R]/PANTONE309PC[/Separation/PANTONE#20309#20PC/DeviceCMYK
+220 0 R]/PANTONE310PC[/Separation/PANTONE#20310#20PC/DeviceCMYK 221 0 R]/PANTONE311PC[/Separation/PANTONE#20311#20PC/DeviceCMYK
+222 0 R]/PANTONE312PC[/Separation/PANTONE#20312#20PC/DeviceCMYK 223 0 R]/PANTONE313PC[/Separation/PANTONE#20313#20PC/DeviceCMYK
+224 0 R]/PANTONE314PC[/Separation/PANTONE#20314#20PC/DeviceCMYK 225 0 R]/PANTONE315PC[/Separation/PANTONE#20315#20PC/DeviceCMYK
+226 0 R]/PANTONE316PC[/Separation/PANTONE#20316#20PC/DeviceCMYK 227 0 R]/PANTONE317PC[/Separation/PANTONE#20317#20PC/DeviceCMYK
+228 0 R]/PANTONE318PC[/Separation/PANTONE#20318#20PC/DeviceCMYK 229 0 R]/PANTONE319PC[/Separation/PANTONE#20319#20PC/DeviceCMYK
+230 0 R]/PANTONE320PC[/Separation/PANTONE#20320#20PC/DeviceCMYK 231 0 R]/PANTONE321PC[/Separation/PANTONE#20321#20PC/DeviceCMYK
+232 0 R]/PANTONE322PC[/Separation/PANTONE#20322#20PC/DeviceCMYK 233 0 R]/PANTONE323PC[/Separation/PANTONE#20323#20PC/DeviceCMYK
+234 0 R]/PANTONE324PC[/Separation/PANTONE#20324#20PC/DeviceCMYK 235 0 R]/PANTONE325PC[/Separation/PANTONE#20325#20PC/DeviceCMYK
+236 0 R]/PANTONE326PC[/Separation/PANTONE#20326#20PC/DeviceCMYK 237 0 R]/PANTONE327PC[/Separation/PANTONE#20327#20PC/DeviceCMYK
+238 0 R]/PANTONE328PC[/Separation/PANTONE#20328#20PC/DeviceCMYK 239 0 R]/PANTONE329PC[/Separation/PANTONE#20329#20PC/DeviceCMYK
+240 0 R]/PANTONE330PC[/Separation/PANTONE#20330#20PC/DeviceCMYK 241 0 R]/PANTONE331PC[/Separation/PANTONE#20331#20PC/DeviceCMYK
+242 0 R]/PANTONE332PC[/Separation/PANTONE#20332#20PC/DeviceCMYK 243 0 R]/PANTONE333PC[/Separation/PANTONE#20333#20PC/DeviceCMYK
+244 0 R]/PANTONE334PC[/Separation/PANTONE#20334#20PC/DeviceCMYK 245 0 R]/PANTONE335PC[/Separation/PANTONE#20335#20PC/DeviceCMYK
+246 0 R]/PANTONE336PC[/Separation/PANTONE#20336#20PC/DeviceCMYK 247 0 R]/PANTONE337PC[/Separation/PANTONE#20337#20PC/DeviceCMYK
+248 0 R]/PANTONE338PC[/Separation/PANTONE#20338#20PC/DeviceCMYK 249 0 R]/PANTONE339PC[/Separation/PANTONE#20339#20PC/DeviceCMYK
+250 0 R]/PANTONE340PC[/Separation/PANTONE#20340#20PC/DeviceCMYK 251 0 R]/PANTONE341PC[/Separation/PANTONE#20341#20PC/DeviceCMYK
+252 0 R]/PANTONE342PC[/Separation/PANTONE#20342#20PC/DeviceCMYK 253 0 R]/PANTONE343PC[/Separation/PANTONE#20343#20PC/DeviceCMYK
+254 0 R]/PANTONE344PC[/Separation/PANTONE#20344#20PC/DeviceCMYK 255 0 R]/PANTONE345PC[/Separation/PANTONE#20345#20PC/DeviceCMYK
+256 0 R]/PANTONE346PC[/Separation/PANTONE#20346#20PC/DeviceCMYK 257 0 R]/PANTONE347PC[/Separation/PANTONE#20347#20PC/DeviceCMYK
+258 0 R]/PANTONE348PC[/Separation/PANTONE#20348#20PC/DeviceCMYK 259 0 R]/PANTONE349PC[/Separation/PANTONE#20349#20PC/DeviceCMYK
+260 0 R]/PANTONE350PC[/Separation/PANTONE#20350#20PC/DeviceCMYK 261 0 R]/PANTONE351PC[/Separation/PANTONE#20351#20PC/DeviceCMYK
+262 0 R]/PANTONE352PC[/Separation/PANTONE#20352#20PC/DeviceCMYK 263 0 R]/PANTONE353PC[/Separation/PANTONE#20353#20PC/DeviceCMYK
+264 0 R]/PANTONE354PC[/Separation/PANTONE#20354#20PC/DeviceCMYK 265 0 R]/PANTONE355PC[/Separation/PANTONE#20355#20PC/DeviceCMYK
+266 0 R]/PANTONE356PC[/Separation/PANTONE#20356#20PC/DeviceCMYK 267 0 R]/PANTONE357PC[/Separation/PANTONE#20357#20PC/DeviceCMYK
+268 0 R]/PANTONE358PC[/Separation/PANTONE#20358#20PC/DeviceCMYK 269 0 R]/PANTONE359PC[/Separation/PANTONE#20359#20PC/DeviceCMYK
+270 0 R]/PANTONE360PC[/Separation/PANTONE#20360#20PC/DeviceCMYK 271 0 R]/PANTONE361PC[/Separation/PANTONE#20361#20PC/DeviceCMYK
+272 0 R]/PANTONE362PC[/Separation/PANTONE#20362#20PC/DeviceCMYK 273 0 R]/PANTONE363PC[/Separation/PANTONE#20363#20PC/DeviceCMYK
+274 0 R]/PANTONE364PC[/Separation/PANTONE#20364#20PC/DeviceCMYK 275 0 R]/PANTONE365PC[/Separation/PANTONE#20365#20PC/DeviceCMYK
+276 0 R]/PANTONE366PC[/Separation/PANTONE#20366#20PC/DeviceCMYK 277 0 R]/PANTONE367PC[/Separation/PANTONE#20367#20PC/DeviceCMYK
+278 0 R]/PANTONE368PC[/Separation/PANTONE#20368#20PC/DeviceCMYK 279 0 R]/PANTONE369PC[/Separation/PANTONE#20369#20PC/DeviceCMYK
+280 0 R]/PANTONE370PC[/Separation/PANTONE#20370#20PC/DeviceCMYK 281 0 R]/PANTONE371PC[/Separation/PANTONE#20371#20PC/DeviceCMYK
+282 0 R]/PANTONE372PC[/Separation/PANTONE#20372#20PC/DeviceCMYK 283 0 R]/PANTONE373PC[/Separation/PANTONE#20373#20PC/DeviceCMYK
+284 0 R]/PANTONE374PC[/Separation/PANTONE#20374#20PC/DeviceCMYK 285 0 R]/PANTONE375PC[/Separation/PANTONE#20375#20PC/DeviceCMYK
+286 0 R]/PANTONE376PC[/Separation/PANTONE#20376#20PC/DeviceCMYK 287 0 R]/PANTONE377PC[/Separation/PANTONE#20377#20PC/DeviceCMYK
+288 0 R]/PANTONE378PC[/Separation/PANTONE#20378#20PC/DeviceCMYK 289 0 R]/PANTONE379PC[/Separation/PANTONE#20379#20PC/DeviceCMYK
+290 0 R]/PANTONE380PC[/Separation/PANTONE#20380#20PC/DeviceCMYK 291 0 R]/PANTONE381PC[/Separation/PANTONE#20381#20PC/DeviceCMYK
+292 0 R]/PANTONE382PC[/Separation/PANTONE#20382#20PC/DeviceCMYK 293 0 R]/PANTONE383PC[/Separation/PANTONE#20383#20PC/DeviceCMYK
+294 0 R]/PANTONE384PC[/Separation/PANTONE#20384#20PC/DeviceCMYK 295 0 R]/PANTONE385PC[/Separation/PANTONE#20385#20PC/DeviceCMYK
+296 0 R]/PANTONE386PC[/Separation/PANTONE#20386#20PC/DeviceCMYK 297 0 R]/PANTONE387PC[/Separation/PANTONE#20387#20PC/DeviceCMYK
+298 0 R]/PANTONE388PC[/Separation/PANTONE#20388#20PC/DeviceCMYK 299 0 R]/PANTONE389PC[/Separation/PANTONE#20389#20PC/DeviceCMYK
+300 0 R]/PANTONE390PC[/Separation/PANTONE#20390#20PC/DeviceCMYK 301 0 R]/PANTONE391PC[/Separation/PANTONE#20391#20PC/DeviceCMYK
+302 0 R]/PANTONE392PC[/Separation/PANTONE#20392#20PC/DeviceCMYK 303 0 R]/PANTONE393PC[/Separation/PANTONE#20393#20PC/DeviceCMYK
+304 0 R]/PANTONE394PC[/Separation/PANTONE#20394#20PC/DeviceCMYK 305 0 R]/PANTONE395PC[/Separation/PANTONE#20395#20PC/DeviceCMYK
+306 0 R]/PANTONE396PC[/Separation/PANTONE#20396#20PC/DeviceCMYK 307 0 R]/PANTONE397PC[/Separation/PANTONE#20397#20PC/DeviceCMYK
+308 0 R]/PANTONE398PC[/Separation/PANTONE#20398#20PC/DeviceCMYK 309 0 R]/PANTONE399PC[/Separation/PANTONE#20399#20PC/DeviceCMYK
+310 0 R]/PANTONE400PC[/Separation/PANTONE#20400#20PC/DeviceCMYK 311 0 R]/PANTONE401PC[/Separation/PANTONE#20401#20PC/DeviceCMYK
+312 0 R]/PANTONE402PC[/Separation/PANTONE#20402#20PC/DeviceCMYK 313 0 R]/PANTONE403PC[/Separation/PANTONE#20403#20PC/DeviceCMYK
+314 0 R]/PANTONE404PC[/Separation/PANTONE#20404#20PC/DeviceCMYK 315 0 R]/PANTONE405PC[/Separation/PANTONE#20405#20PC/DeviceCMYK
+316 0 R]/PANTONE406PC[/Separation/PANTONE#20406#20PC/DeviceCMYK 317 0 R]/PANTONE407PC[/Separation/PANTONE#20407#20PC/DeviceCMYK
+318 0 R]/PANTONE408PC[/Separation/PANTONE#20408#20PC/DeviceCMYK 319 0 R]/PANTONE409PC[/Separation/PANTONE#20409#20PC/DeviceCMYK
+320 0 R]/PANTONE410PC[/Separation/PANTONE#20410#20PC/DeviceCMYK 321 0 R]/PANTONE411PC[/Separation/PANTONE#20411#20PC/DeviceCMYK
+322 0 R]/PANTONE412PC[/Separation/PANTONE#20412#20PC/DeviceCMYK 323 0 R]/PANTONE413PC[/Separation/PANTONE#20413#20PC/DeviceCMYK
+324 0 R]/PANTONE414PC[/Separation/PANTONE#20414#20PC/DeviceCMYK 325 0 R]/PANTONE415PC[/Separation/PANTONE#20415#20PC/DeviceCMYK
+326 0 R]/PANTONE416PC[/Separation/PANTONE#20416#20PC/DeviceCMYK 327 0 R]/PANTONE417PC[/Separation/PANTONE#20417#20PC/DeviceCMYK
+328 0 R]/PANTONE418PC[/Separation/PANTONE#20418#20PC/DeviceCMYK 329 0 R]/PANTONE419PC[/Separation/PANTONE#20419#20PC/DeviceCMYK
+330 0 R]/PANTONE420PC[/Separation/PANTONE#20420#20PC/DeviceCMYK 331 0 R]/PANTONE421PC[/Separation/PANTONE#20421#20PC/DeviceCMYK
+332 0 R]/PANTONE422PC[/Separation/PANTONE#20422#20PC/DeviceCMYK 333 0 R]/PANTONE423PC[/Separation/PANTONE#20423#20PC/DeviceCMYK
+334 0 R]/PANTONE424PC[/Separation/PANTONE#20424#20PC/DeviceCMYK 335 0 R]/PANTONE425PC[/Separation/PANTONE#20425#20PC/DeviceCMYK
+336 0 R]/PANTONE426PC[/Separation/PANTONE#20426#20PC/DeviceCMYK 337 0 R]/PANTONE427PC[/Separation/PANTONE#20427#20PC/DeviceCMYK
+338 0 R]/PANTONE428PC[/Separation/PANTONE#20428#20PC/DeviceCMYK 339 0 R]/PANTONE429PC[/Separation/PANTONE#20429#20PC/DeviceCMYK
+340 0 R]/PANTONE430PC[/Separation/PANTONE#20430#20PC/DeviceCMYK 341 0 R]/PANTONE431PC[/Separation/PANTONE#20431#20PC/DeviceCMYK
+342 0 R]/PANTONE432PC[/Separation/PANTONE#20432#20PC/DeviceCMYK 343 0 R]/PANTONE433PC[/Separation/PANTONE#20433#20PC/DeviceCMYK
+344 0 R]/PANTONE434PC[/Separation/PANTONE#20434#20PC/DeviceCMYK 345 0 R]/PANTONE435PC[/Separation/PANTONE#20435#20PC/DeviceCMYK
+346 0 R]/PANTONE436PC[/Separation/PANTONE#20436#20PC/DeviceCMYK 347 0 R]/PANTONE437PC[/Separation/PANTONE#20437#20PC/DeviceCMYK
+348 0 R]/PANTONE438PC[/Separation/PANTONE#20438#20PC/DeviceCMYK 349 0 R]/PANTONE439PC[/Separation/PANTONE#20439#20PC/DeviceCMYK
+350 0 R]/PANTONE440PC[/Separation/PANTONE#20440#20PC/DeviceCMYK 351 0 R]/PANTONE441PC[/Separation/PANTONE#20441#20PC/DeviceCMYK
+352 0 R]/PANTONE442PC[/Separation/PANTONE#20442#20PC/DeviceCMYK 353 0 R]/PANTONE443PC[/Separation/PANTONE#20443#20PC/DeviceCMYK
+354 0 R]/PANTONE444PC[/Separation/PANTONE#20444#20PC/DeviceCMYK 355 0 R]/PANTONE445PC[/Separation/PANTONE#20445#20PC/DeviceCMYK
+356 0 R]/PANTONE446PC[/Separation/PANTONE#20446#20PC/DeviceCMYK 357 0 R]/PANTONE447PC[/Separation/PANTONE#20447#20PC/DeviceCMYK
+358 0 R]/PANTONE448PC[/Separation/PANTONE#20448#20PC/DeviceCMYK 359 0 R]/PANTONE449PC[/Separation/PANTONE#20449#20PC/DeviceCMYK
+360 0 R]/PANTONE450PC[/Separation/PANTONE#20450#20PC/DeviceCMYK 361 0 R]/PANTONE451PC[/Separation/PANTONE#20451#20PC/DeviceCMYK
+362 0 R]/PANTONE452PC[/Separation/PANTONE#20452#20PC/DeviceCMYK 363 0 R]/PANTONE453PC[/Separation/PANTONE#20453#20PC/DeviceCMYK
+364 0 R]/PANTONE454PC[/Separation/PANTONE#20454#20PC/DeviceCMYK 365 0 R]/PANTONE455PC[/Separation/PANTONE#20455#20PC/DeviceCMYK
+366 0 R]/PANTONE456PC[/Separation/PANTONE#20456#20PC/DeviceCMYK 367 0 R]/PANTONE457PC[/Separation/PANTONE#20457#20PC/DeviceCMYK
+368 0 R]/PANTONE458PC[/Separation/PANTONE#20458#20PC/DeviceCMYK 369 0 R]/PANTONE459PC[/Separation/PANTONE#20459#20PC/DeviceCMYK
+370 0 R]/PANTONE460PC[/Separation/PANTONE#20460#20PC/DeviceCMYK 371 0 R]/PANTONE461PC[/Separation/PANTONE#20461#20PC/DeviceCMYK
+372 0 R]/PANTONE462PC[/Separation/PANTONE#20462#20PC/DeviceCMYK 373 0 R]/PANTONE463PC[/Separation/PANTONE#20463#20PC/DeviceCMYK
+374 0 R]/PANTONE464PC[/Separation/PANTONE#20464#20PC/DeviceCMYK 375 0 R]/PANTONE465PC[/Separation/PANTONE#20465#20PC/DeviceCMYK
+376 0 R]/PANTONE466PC[/Separation/PANTONE#20466#20PC/DeviceCMYK 377 0 R]/PANTONE467PC[/Separation/PANTONE#20467#20PC/DeviceCMYK
+378 0 R]/PANTONE468PC[/Separation/PANTONE#20468#20PC/DeviceCMYK 379 0 R]/PANTONE469PC[/Separation/PANTONE#20469#20PC/DeviceCMYK
+380 0 R]/PANTONE470PC[/Separation/PANTONE#20470#20PC/DeviceCMYK 381 0 R]/PANTONE471PC[/Separation/PANTONE#20471#20PC/DeviceCMYK
+382 0 R]/PANTONE472PC[/Separation/PANTONE#20472#20PC/DeviceCMYK 383 0 R]/PANTONE473PC[/Separation/PANTONE#20473#20PC/DeviceCMYK
+384 0 R]/PANTONE474PC[/Separation/PANTONE#20474#20PC/DeviceCMYK 385 0 R]/PANTONE475PC[/Separation/PANTONE#20475#20PC/DeviceCMYK
+386 0 R]/PANTONE476PC[/Separation/PANTONE#20476#20PC/DeviceCMYK 387 0 R]/PANTONE477PC[/Separation/PANTONE#20477#20PC/DeviceCMYK
+388 0 R]/PANTONE478PC[/Separation/PANTONE#20478#20PC/DeviceCMYK 389 0 R]/PANTONE479PC[/Separation/PANTONE#20479#20PC/DeviceCMYK
+390 0 R]/PANTONE480PC[/Separation/PANTONE#20480#20PC/DeviceCMYK 391 0 R]/PANTONE481PC[/Separation/PANTONE#20481#20PC/DeviceCMYK
+392 0 R]/PANTONE482PC[/Separation/PANTONE#20482#20PC/DeviceCMYK 393 0 R]/PANTONE483PC[/Separation/PANTONE#20483#20PC/DeviceCMYK
+394 0 R]/PANTONE484PC[/Separation/PANTONE#20484#20PC/DeviceCMYK 395 0 R]/PANTONE485PC[/Separation/PANTONE#20485#20PC/DeviceCMYK
+396 0 R]/PANTONE486PC[/Separation/PANTONE#20486#20PC/DeviceCMYK 397 0 R]/PANTONE487PC[/Separation/PANTONE#20487#20PC/DeviceCMYK
+398 0 R]/PANTONE488PC[/Separation/PANTONE#20488#20PC/DeviceCMYK 399 0 R]/PANTONE489PC[/Separation/PANTONE#20489#20PC/DeviceCMYK
+400 0 R]/PANTONE490PC[/Separation/PANTONE#20490#20PC/DeviceCMYK 401 0 R]/PANTONE491PC[/Separation/PANTONE#20491#20PC/DeviceCMYK
+402 0 R]/PANTONE492PC[/Separation/PANTONE#20492#20PC/DeviceCMYK 403 0 R]/PANTONE493PC[/Separation/PANTONE#20493#20PC/DeviceCMYK
+404 0 R]/PANTONE494PC[/Separation/PANTONE#20494#20PC/DeviceCMYK 405 0 R]/PANTONE495PC[/Separation/PANTONE#20495#20PC/DeviceCMYK
+406 0 R]/PANTONE496PC[/Separation/PANTONE#20496#20PC/DeviceCMYK 407 0 R]/PANTONE497PC[/Separation/PANTONE#20497#20PC/DeviceCMYK
+408 0 R]/PANTONE498PC[/Separation/PANTONE#20498#20PC/DeviceCMYK 409 0 R]/PANTONE499PC[/Separation/PANTONE#20499#20PC/DeviceCMYK
+410 0 R]/PANTONE500PC[/Separation/PANTONE#20500#20PC/DeviceCMYK 411 0 R]/PANTONE501PC[/Separation/PANTONE#20501#20PC/DeviceCMYK
+412 0 R]/PANTONE502PC[/Separation/PANTONE#20502#20PC/DeviceCMYK 413 0 R]/PANTONE503PC[/Separation/PANTONE#20503#20PC/DeviceCMYK
+414 0 R]/PANTONE504PC[/Separation/PANTONE#20504#20PC/DeviceCMYK 415 0 R]/PANTONE505PC[/Separation/PANTONE#20505#20PC/DeviceCMYK
+416 0 R]/PANTONE506PC[/Separation/PANTONE#20506#20PC/DeviceCMYK 417 0 R]/PANTONE507PC[/Separation/PANTONE#20507#20PC/DeviceCMYK
+418 0 R]/PANTONE508PC[/Separation/PANTONE#20508#20PC/DeviceCMYK 419 0 R]/PANTONE509PC[/Separation/PANTONE#20509#20PC/DeviceCMYK
+420 0 R]/PANTONE510PC[/Separation/PANTONE#20510#20PC/DeviceCMYK 421 0 R]/PANTONE511PC[/Separation/PANTONE#20511#20PC/DeviceCMYK
+422 0 R]/PANTONE512PC[/Separation/PANTONE#20512#20PC/DeviceCMYK 423 0 R]/PANTONE513PC[/Separation/PANTONE#20513#20PC/DeviceCMYK
+424 0 R]/PANTONE514PC[/Separation/PANTONE#20514#20PC/DeviceCMYK 425 0 R]/PANTONE515PC[/Separation/PANTONE#20515#20PC/DeviceCMYK
+426 0 R]/PANTONE516PC[/Separation/PANTONE#20516#20PC/DeviceCMYK 427 0 R]/PANTONE517PC[/Separation/PANTONE#20517#20PC/DeviceCMYK
+428 0 R]/PANTONE518PC[/Separation/PANTONE#20518#20PC/DeviceCMYK 429 0 R]/PANTONE519PC[/Separation/PANTONE#20519#20PC/DeviceCMYK
+430 0 R]/PANTONE520PC[/Separation/PANTONE#20520#20PC/DeviceCMYK 431 0 R]/PANTONE521PC[/Separation/PANTONE#20521#20PC/DeviceCMYK
+432 0 R]/PANTONE522PC[/Separation/PANTONE#20522#20PC/DeviceCMYK 433 0 R]/PANTONE523PC[/Separation/PANTONE#20523#20PC/DeviceCMYK
+434 0 R]/PANTONE524PC[/Separation/PANTONE#20524#20PC/DeviceCMYK 435 0 R]/PANTONE525PC[/Separation/PANTONE#20525#20PC/DeviceCMYK
+436 0 R]/PANTONE526PC[/Separation/PANTONE#20526#20PC/DeviceCMYK 437 0 R]/PANTONE527PC[/Separation/PANTONE#20527#20PC/DeviceCMYK
+438 0 R]/PANTONE528PC[/Separation/PANTONE#20528#20PC/DeviceCMYK 439 0 R]/PANTONE529PC[/Separation/PANTONE#20529#20PC/DeviceCMYK
+440 0 R]/PANTONE530PC[/Separation/PANTONE#20530#20PC/DeviceCMYK 441 0 R]/PANTONE531PC[/Separation/PANTONE#20531#20PC/DeviceCMYK
+442 0 R]/PANTONE532PC[/Separation/PANTONE#20532#20PC/DeviceCMYK 443 0 R]/PANTONE533PC[/Separation/PANTONE#20533#20PC/DeviceCMYK
+444 0 R]/PANTONE534PC[/Separation/PANTONE#20534#20PC/DeviceCMYK 445 0 R]/PANTONE535PC[/Separation/PANTONE#20535#20PC/DeviceCMYK
+446 0 R]/PANTONE536PC[/Separation/PANTONE#20536#20PC/DeviceCMYK 447 0 R]/PANTONE537PC[/Separation/PANTONE#20537#20PC/DeviceCMYK
+448 0 R]/PANTONE538PC[/Separation/PANTONE#20538#20PC/DeviceCMYK 449 0 R]/PANTONE539PC[/Separation/PANTONE#20539#20PC/DeviceCMYK
+450 0 R]/PANTONE540PC[/Separation/PANTONE#20540#20PC/DeviceCMYK 451 0 R]/PANTONE541PC[/Separation/PANTONE#20541#20PC/DeviceCMYK
+452 0 R]/PANTONE542PC[/Separation/PANTONE#20542#20PC/DeviceCMYK 453 0 R]/PANTONE543PC[/Separation/PANTONE#20543#20PC/DeviceCMYK
+454 0 R]/PANTONE544PC[/Separation/PANTONE#20544#20PC/DeviceCMYK 455 0 R]/PANTONE545PC[/Separation/PANTONE#20545#20PC/DeviceCMYK
+456 0 R]/PANTONE546PC[/Separation/PANTONE#20546#20PC/DeviceCMYK 457 0 R]/PANTONE547PC[/Separation/PANTONE#20547#20PC/DeviceCMYK
+458 0 R]/PANTONE548PC[/Separation/PANTONE#20548#20PC/DeviceCMYK 459 0 R]/PANTONE549PC[/Separation/PANTONE#20549#20PC/DeviceCMYK
+460 0 R]/PANTONE550PC[/Separation/PANTONE#20550#20PC/DeviceCMYK 461 0 R]/PANTONE551PC[/Separation/PANTONE#20551#20PC/DeviceCMYK
+462 0 R]/PANTONE552PC[/Separation/PANTONE#20552#20PC/DeviceCMYK 463 0 R]/PANTONE553PC[/Separation/PANTONE#20553#20PC/DeviceCMYK
+464 0 R]/PANTONE554PC[/Separation/PANTONE#20554#20PC/DeviceCMYK 465 0 R]/PANTONE555PC[/Separation/PANTONE#20555#20PC/DeviceCMYK
+466 0 R]/PANTONE556PC[/Separation/PANTONE#20556#20PC/DeviceCMYK 467 0 R]/PANTONE557PC[/Separation/PANTONE#20557#20PC/DeviceCMYK
+468 0 R]/PANTONE558PC[/Separation/PANTONE#20558#20PC/DeviceCMYK 469 0 R]/PANTONE559PC[/Separation/PANTONE#20559#20PC/DeviceCMYK
+470 0 R]/PANTONE560PC[/Separation/PANTONE#20560#20PC/DeviceCMYK 471 0 R]/PANTONE561PC[/Separation/PANTONE#20561#20PC/DeviceCMYK
+472 0 R]/PANTONE562PC[/Separation/PANTONE#20562#20PC/DeviceCMYK 473 0 R]/PANTONE563PC[/Separation/PANTONE#20563#20PC/DeviceCMYK
+474 0 R]/PANTONE564PC[/Separation/PANTONE#20564#20PC/DeviceCMYK 475 0 R]/PANTONE565PC[/Separation/PANTONE#20565#20PC/DeviceCMYK
+476 0 R]/PANTONE566PC[/Separation/PANTONE#20566#20PC/DeviceCMYK 477 0 R]/PANTONE567PC[/Separation/PANTONE#20567#20PC/DeviceCMYK
+478 0 R]/PANTONE568PC[/Separation/PANTONE#20568#20PC/DeviceCMYK 479 0 R]/PANTONE569PC[/Separation/PANTONE#20569#20PC/DeviceCMYK
+480 0 R]/PANTONE570PC[/Separation/PANTONE#20570#20PC/DeviceCMYK 481 0 R]/PANTONE571PC[/Separation/PANTONE#20571#20PC/DeviceCMYK
+482 0 R]/PANTONE572PC[/Separation/PANTONE#20572#20PC/DeviceCMYK 483 0 R]/PANTONE573PC[/Separation/PANTONE#20573#20PC/DeviceCMYK
+484 0 R]/PANTONE574PC[/Separation/PANTONE#20574#20PC/DeviceCMYK 485 0 R]/PANTONE575PC[/Separation/PANTONE#20575#20PC/DeviceCMYK
+486 0 R]/PANTONE576PC[/Separation/PANTONE#20576#20PC/DeviceCMYK 487 0 R]/PANTONE577PC[/Separation/PANTONE#20577#20PC/DeviceCMYK
+488 0 R]/PANTONE578PC[/Separation/PANTONE#20578#20PC/DeviceCMYK 489 0 R]/PANTONE579PC[/Separation/PANTONE#20579#20PC/DeviceCMYK
+490 0 R]/PANTONE580PC[/Separation/PANTONE#20580#20PC/DeviceCMYK 491 0 R]/PANTONE581PC[/Separation/PANTONE#20581#20PC/DeviceCMYK
+492 0 R]/PANTONE582PC[/Separation/PANTONE#20582#20PC/DeviceCMYK 493 0 R]/PANTONE583PC[/Separation/PANTONE#20583#20PC/DeviceCMYK
+494 0 R]/PANTONE584PC[/Separation/PANTONE#20584#20PC/DeviceCMYK 495 0 R]/PANTONE585PC[/Separation/PANTONE#20585#20PC/DeviceCMYK
+496 0 R]/PANTONE586PC[/Separation/PANTONE#20586#20PC/DeviceCMYK 497 0 R]/PANTONE587PC[/Separation/PANTONE#20587#20PC/DeviceCMYK
+498 0 R]/PANTONE600PC[/Separation/PANTONE#20600#20PC/DeviceCMYK 499 0 R]/PANTONE601PC[/Separation/PANTONE#20601#20PC/DeviceCMYK
+500 0 R]/PANTONE602PC[/Separation/PANTONE#20602#20PC/DeviceCMYK 501 0 R]/PANTONE603PC[/Separation/PANTONE#20603#20PC/DeviceCMYK
+502 0 R]/PANTONE604PC[/Separation/PANTONE#20604#20PC/DeviceCMYK 503 0 R]/PANTONE605PC[/Separation/PANTONE#20605#20PC/DeviceCMYK
+504 0 R]/PANTONE606PC[/Separation/PANTONE#20606#20PC/DeviceCMYK 505 0 R]/PANTONE607PC[/Separation/PANTONE#20607#20PC/DeviceCMYK
+506 0 R]/PANTONE608PC[/Separation/PANTONE#20608#20PC/DeviceCMYK 507 0 R]/PANTONE609PC[/Separation/PANTONE#20609#20PC/DeviceCMYK
+508 0 R]/PANTONE610PC[/Separation/PANTONE#20610#20PC/DeviceCMYK 509 0 R]/PANTONE611PC[/Separation/PANTONE#20611#20PC/DeviceCMYK
+510 0 R]/PANTONE612PC[/Separation/PANTONE#20612#20PC/DeviceCMYK 511 0 R]/PANTONE613PC[/Separation/PANTONE#20613#20PC/DeviceCMYK
+512 0 R]/PANTONE614PC[/Separation/PANTONE#20614#20PC/DeviceCMYK 513 0 R]/PANTONE615PC[/Separation/PANTONE#20615#20PC/DeviceCMYK
+514 0 R]/PANTONE616PC[/Separation/PANTONE#20616#20PC/DeviceCMYK 515 0 R]/PANTONE617PC[/Separation/PANTONE#20617#20PC/DeviceCMYK
+516 0 R]/PANTONE618PC[/Separation/PANTONE#20618#20PC/DeviceCMYK 517 0 R]/PANTONE619PC[/Separation/PANTONE#20619#20PC/DeviceCMYK
+518 0 R]/PANTONE620PC[/Separation/PANTONE#20620#20PC/DeviceCMYK 519 0 R]/PANTONE621PC[/Separation/PANTONE#20621#20PC/DeviceCMYK
+520 0 R]/PANTONE622PC[/Separation/PANTONE#20622#20PC/DeviceCMYK 521 0 R]/PANTONE623PC[/Separation/PANTONE#20623#20PC/DeviceCMYK
+522 0 R]/PANTONE624PC[/Separation/PANTONE#20624#20PC/DeviceCMYK 523 0 R]/PANTONE625PC[/Separation/PANTONE#20625#20PC/DeviceCMYK
+524 0 R]/PANTONE626PC[/Separation/PANTONE#20626#20PC/DeviceCMYK 525 0 R]/PANTONE627PC[/Separation/PANTONE#20627#20PC/DeviceCMYK
+526 0 R]/PANTONE628PC[/Separation/PANTONE#20628#20PC/DeviceCMYK 527 0 R]/PANTONE629PC[/Separation/PANTONE#20629#20PC/DeviceCMYK
+528 0 R]/PANTONE630PC[/Separation/PANTONE#20630#20PC/DeviceCMYK 529 0 R]/PANTONE631PC[/Separation/PANTONE#20631#20PC/DeviceCMYK
+530 0 R]/PANTONE632PC[/Separation/PANTONE#20632#20PC/DeviceCMYK 531 0 R]/PANTONE633PC[/Separation/PANTONE#20633#20PC/DeviceCMYK
+532 0 R]/PANTONE634PC[/Separation/PANTONE#20634#20PC/DeviceCMYK 533 0 R]/PANTONE635PC[/Separation/PANTONE#20635#20PC/DeviceCMYK
+534 0 R]/PANTONE636PC[/Separation/PANTONE#20636#20PC/DeviceCMYK 535 0 R]/PANTONE637PC[/Separation/PANTONE#20637#20PC/DeviceCMYK
+536 0 R]/PANTONE638PC[/Separation/PANTONE#20638#20PC/DeviceCMYK 537 0 R]/PANTONE639PC[/Separation/PANTONE#20639#20PC/DeviceCMYK
+538 0 R]/PANTONE640PC[/Separation/PANTONE#20640#20PC/DeviceCMYK 539 0 R]/PANTONE641PC[/Separation/PANTONE#20641#20PC/DeviceCMYK
+540 0 R]/PANTONE642PC[/Separation/PANTONE#20642#20PC/DeviceCMYK 541 0 R]/PANTONE643PC[/Separation/PANTONE#20643#20PC/DeviceCMYK
+542 0 R]/PANTONE644PC[/Separation/PANTONE#20644#20PC/DeviceCMYK 543 0 R]/PANTONE645PC[/Separation/PANTONE#20645#20PC/DeviceCMYK
+544 0 R]/PANTONE646PC[/Separation/PANTONE#20646#20PC/DeviceCMYK 545 0 R]/PANTONE647PC[/Separation/PANTONE#20647#20PC/DeviceCMYK
+546 0 R]/PANTONE648PC[/Separation/PANTONE#20648#20PC/DeviceCMYK 547 0 R]/PANTONE649PC[/Separation/PANTONE#20649#20PC/DeviceCMYK
+548 0 R]/PANTONE650PC[/Separation/PANTONE#20650#20PC/DeviceCMYK 549 0 R]/PANTONE651PC[/Separation/PANTONE#20651#20PC/DeviceCMYK
+550 0 R]/PANTONE652PC[/Separation/PANTONE#20652#20PC/DeviceCMYK 551 0 R]/PANTONE653PC[/Separation/PANTONE#20653#20PC/DeviceCMYK
+552 0 R]/PANTONE654PC[/Separation/PANTONE#20654#20PC/DeviceCMYK 553 0 R]/PANTONE655PC[/Separation/PANTONE#20655#20PC/DeviceCMYK
+554 0 R]/PANTONE656PC[/Separation/PANTONE#20656#20PC/DeviceCMYK 555 0 R]/PANTONE657PC[/Separation/PANTONE#20657#20PC/DeviceCMYK
+556 0 R]/PANTONE658PC[/Separation/PANTONE#20658#20PC/DeviceCMYK 557 0 R]/PANTONE659PC[/Separation/PANTONE#20659#20PC/DeviceCMYK
+558 0 R]/PANTONE660PC[/Separation/PANTONE#20660#20PC/DeviceCMYK 559 0 R]/PANTONE661PC[/Separation/PANTONE#20661#20PC/DeviceCMYK
+560 0 R]/PANTONE662PC[/Separation/PANTONE#20662#20PC/DeviceCMYK 561 0 R]/PANTONE663PC[/Separation/PANTONE#20663#20PC/DeviceCMYK
+562 0 R]/PANTONE664PC[/Separation/PANTONE#20664#20PC/DeviceCMYK 563 0 R]/PANTONE665PC[/Separation/PANTONE#20665#20PC/DeviceCMYK
+564 0 R]/PANTONE666PC[/Separation/PANTONE#20666#20PC/DeviceCMYK 565 0 R]/PANTONE667PC[/Separation/PANTONE#20667#20PC/DeviceCMYK
+566 0 R]/PANTONE668PC[/Separation/PANTONE#20668#20PC/DeviceCMYK 567 0 R]/PANTONE669PC[/Separation/PANTONE#20669#20PC/DeviceCMYK
+568 0 R]/PANTONE670PC[/Separation/PANTONE#20670#20PC/DeviceCMYK 569 0 R]/PANTONE671PC[/Separation/PANTONE#20671#20PC/DeviceCMYK
+570 0 R]/PANTONE672PC[/Separation/PANTONE#20672#20PC/DeviceCMYK 571 0 R]/PANTONE673PC[/Separation/PANTONE#20673#20PC/DeviceCMYK
+572 0 R]/PANTONE674PC[/Separation/PANTONE#20674#20PC/DeviceCMYK 573 0 R]/PANTONE675PC[/Separation/PANTONE#20675#20PC/DeviceCMYK
+574 0 R]/PANTONE676PC[/Separation/PANTONE#20676#20PC/DeviceCMYK 575 0 R]/PANTONE677PC[/Separation/PANTONE#20677#20PC/DeviceCMYK
+576 0 R]/PANTONE678PC[/Separation/PANTONE#20678#20PC/DeviceCMYK 577 0 R]/PANTONE679PC[/Separation/PANTONE#20679#20PC/DeviceCMYK
+578 0 R]/PANTONE680PC[/Separation/PANTONE#20680#20PC/DeviceCMYK 579 0 R]/PANTONE681PC[/Separation/PANTONE#20681#20PC/DeviceCMYK
+580 0 R]/PANTONE682PC[/Separation/PANTONE#20682#20PC/DeviceCMYK 581 0 R]/PANTONE683PC[/Separation/PANTONE#20683#20PC/DeviceCMYK
+582 0 R]/PANTONE684PC[/Separation/PANTONE#20684#20PC/DeviceCMYK 583 0 R]/PANTONE685PC[/Separation/PANTONE#20685#20PC/DeviceCMYK
+584 0 R]/PANTONE686PC[/Separation/PANTONE#20686#20PC/DeviceCMYK 585 0 R]/PANTONE687PC[/Separation/PANTONE#20687#20PC/DeviceCMYK
+586 0 R]/PANTONE688PC[/Separation/PANTONE#20688#20PC/DeviceCMYK 587 0 R]/PANTONE689PC[/Separation/PANTONE#20689#20PC/DeviceCMYK
+588 0 R]/PANTONE690PC[/Separation/PANTONE#20690#20PC/DeviceCMYK 589 0 R]/PANTONE691PC[/Separation/PANTONE#20691#20PC/DeviceCMYK
+590 0 R]/PANTONE692PC[/Separation/PANTONE#20692#20PC/DeviceCMYK 591 0 R]/PANTONE693PC[/Separation/PANTONE#20693#20PC/DeviceCMYK
+592 0 R]/PANTONE694PC[/Separation/PANTONE#20694#20PC/DeviceCMYK 593 0 R]/PANTONE695PC[/Separation/PANTONE#20695#20PC/DeviceCMYK
+594 0 R]/PANTONE696PC[/Separation/PANTONE#20696#20PC/DeviceCMYK 595 0 R]/PANTONE697PC[/Separation/PANTONE#20697#20PC/DeviceCMYK
+596 0 R]/PANTONE698PC[/Separation/PANTONE#20698#20PC/DeviceCMYK 597 0 R]/PANTONE699PC[/Separation/PANTONE#20699#20PC/DeviceCMYK
+598 0 R]/PANTONE700PC[/Separation/PANTONE#20700#20PC/DeviceCMYK 599 0 R]/PANTONE701PC[/Separation/PANTONE#20701#20PC/DeviceCMYK
+600 0 R]/PANTONE702PC[/Separation/PANTONE#20702#20PC/DeviceCMYK 601 0 R]/PANTONE703PC[/Separation/PANTONE#20703#20PC/DeviceCMYK
+602 0 R]/PANTONE704PC[/Separation/PANTONE#20704#20PC/DeviceCMYK 603 0 R]/PANTONE705PC[/Separation/PANTONE#20705#20PC/DeviceCMYK
+604 0 R]/PANTONE706PC[/Separation/PANTONE#20706#20PC/DeviceCMYK 605 0 R]/PANTONE707PC[/Separation/PANTONE#20707#20PC/DeviceCMYK
+606 0 R]/PANTONE708PC[/Separation/PANTONE#20708#20PC/DeviceCMYK 607 0 R]/PANTONE709PC[/Separation/PANTONE#20709#20PC/DeviceCMYK
+608 0 R]/PANTONE710PC[/Separation/PANTONE#20710#20PC/DeviceCMYK 609 0 R]/PANTONE711PC[/Separation/PANTONE#20711#20PC/DeviceCMYK
+610 0 R]/PANTONE712PC[/Separation/PANTONE#20712#20PC/DeviceCMYK 611 0 R]/PANTONE713PC[/Separation/PANTONE#20713#20PC/DeviceCMYK
+612 0 R]/PANTONE714PC[/Separation/PANTONE#20714#20PC/DeviceCMYK 613 0 R]/PANTONE715PC[/Separation/PANTONE#20715#20PC/DeviceCMYK
+614 0 R]/PANTONE716PC[/Separation/PANTONE#20716#20PC/DeviceCMYK 615 0 R]/PANTONE717PC[/Separation/PANTONE#20717#20PC/DeviceCMYK
+616 0 R]/PANTONE718PC[/Separation/PANTONE#20718#20PC/DeviceCMYK 617 0 R]/PANTONE719PC[/Separation/PANTONE#20719#20PC/DeviceCMYK
+618 0 R]/PANTONE720PC[/Separation/PANTONE#20720#20PC/DeviceCMYK 619 0 R]/PANTONE721PC[/Separation/PANTONE#20721#20PC/DeviceCMYK
+620 0 R]/PANTONE722PC[/Separation/PANTONE#20722#20PC/DeviceCMYK 621 0 R]/PANTONE723PC[/Separation/PANTONE#20723#20PC/DeviceCMYK
+622 0 R]/PANTONE724PC[/Separation/PANTONE#20724#20PC/DeviceCMYK 623 0 R]/PANTONE725PC[/Separation/PANTONE#20725#20PC/DeviceCMYK
+624 0 R]/PANTONE726PC[/Separation/PANTONE#20726#20PC/DeviceCMYK 625 0 R]/PANTONE727PC[/Separation/PANTONE#20727#20PC/DeviceCMYK
+626 0 R]/PANTONE728PC[/Separation/PANTONE#20728#20PC/DeviceCMYK 627 0 R]/PANTONE729PC[/Separation/PANTONE#20729#20PC/DeviceCMYK
+628 0 R]/PANTONE730PC[/Separation/PANTONE#20730#20PC/DeviceCMYK 629 0 R]/PANTONE731PC[/Separation/PANTONE#20731#20PC/DeviceCMYK
+630 0 R]/PANTONE732PC[/Separation/PANTONE#20732#20PC/DeviceCMYK 631 0 R]/PANTONE1205PC[/Separation/PANTONE#201205#20PC/DeviceCMYK
+632 0 R]/PANTONE1215PC[/Separation/PANTONE#201215#20PC/DeviceCMYK 633 0 R]/PANTONE1225PC[/Separation/PANTONE#201225#20PC/DeviceCMYK
+634 0 R]/PANTONE1235PC[/Separation/PANTONE#201235#20PC/DeviceCMYK 635 0 R]/PANTONE1245PC[/Separation/PANTONE#201245#20PC/DeviceCMYK
+636 0 R]/PANTONE1255PC[/Separation/PANTONE#201255#20PC/DeviceCMYK 637 0 R]/PANTONE1265PC[/Separation/PANTONE#201265#20PC/DeviceCMYK
+638 0 R]/PANTONE1345PC[/Separation/PANTONE#201345#20PC/DeviceCMYK 639 0 R]/PANTONE1355PC[/Separation/PANTONE#201355#20PC/DeviceCMYK
+640 0 R]/PANTONE1365PC[/Separation/PANTONE#201365#20PC/DeviceCMYK 641 0 R]/PANTONE1375PC[/Separation/PANTONE#201375#20PC/DeviceCMYK
+642 0 R]/PANTONE1385PC[/Separation/PANTONE#201385#20PC/DeviceCMYK 643 0 R]/PANTONE1395PC[/Separation/PANTONE#201395#20PC/DeviceCMYK
+644 0 R]/PANTONE1405PC[/Separation/PANTONE#201405#20PC/DeviceCMYK 645 0 R]/PANTONE1485PC[/Separation/PANTONE#201485#20PC/DeviceCMYK
+646 0 R]/PANTONE1495PC[/Separation/PANTONE#201495#20PC/DeviceCMYK 647 0 R]/PANTONE1505PC[/Separation/PANTONE#201505#20PC/DeviceCMYK
+648 0 R]/PANTONE1525PC[/Separation/PANTONE#201525#20PC/DeviceCMYK 649 0 R]/PANTONE1535PC[/Separation/PANTONE#201535#20PC/DeviceCMYK
+650 0 R]/PANTONE1545PC[/Separation/PANTONE#201545#20PC/DeviceCMYK 651 0 R]/PANTONE1555PC[/Separation/PANTONE#201555#20PC/DeviceCMYK
+652 0 R]/PANTONE1565PC[/Separation/PANTONE#201565#20PC/DeviceCMYK 653 0 R]/PANTONE1575PC[/Separation/PANTONE#201575#20PC/DeviceCMYK
+654 0 R]/PANTONE1585PC[/Separation/PANTONE#201585#20PC/DeviceCMYK 655 0 R]/PANTONE1595PC[/Separation/PANTONE#201595#20PC/DeviceCMYK
+656 0 R]/PANTONE1605PC[/Separation/PANTONE#201605#20PC/DeviceCMYK 657 0 R]/PANTONE1615PC[/Separation/PANTONE#201615#20PC/DeviceCMYK
+658 0 R]/PANTONE1625PC[/Separation/PANTONE#201625#20PC/DeviceCMYK 659 0 R]/PANTONE1635PC[/Separation/PANTONE#201635#20PC/DeviceCMYK
+660 0 R]/PANTONE1645PC[/Separation/PANTONE#201645#20PC/DeviceCMYK 661 0 R]/PANTONE1655PC[/Separation/PANTONE#201655#20PC/DeviceCMYK
+662 0 R]/PANTONE1665PC[/Separation/PANTONE#201665#20PC/DeviceCMYK 663 0 R]/PANTONE1675PC[/Separation/PANTONE#201675#20PC/DeviceCMYK
+664 0 R]/PANTONE1685PC[/Separation/PANTONE#201685#20PC/DeviceCMYK 665 0 R]/PANTONE1765PC[/Separation/PANTONE#201765#20PC/DeviceCMYK
+666 0 R]/PANTONE1767PC[/Separation/PANTONE#201767#20PC/DeviceCMYK 667 0 R]/PANTONE1775PC[/Separation/PANTONE#201775#20PC/DeviceCMYK
+668 0 R]/PANTONE1777PC[/Separation/PANTONE#201777#20PC/DeviceCMYK 669 0 R]/PANTONE1785PC[/Separation/PANTONE#201785#20PC/DeviceCMYK
+670 0 R]/PANTONE1787PC[/Separation/PANTONE#201787#20PC/DeviceCMYK 671 0 R]/PANTONE1788PC[/Separation/PANTONE#201788#20PC/DeviceCMYK
+672 0 R]/PANTONE1795PC[/Separation/PANTONE#201795#20PC/DeviceCMYK 673 0 R]/PANTONE1797PC[/Separation/PANTONE#201797#20PC/DeviceCMYK
+674 0 R]/PANTONE1805PC[/Separation/PANTONE#201805#20PC/DeviceCMYK 675 0 R]/PANTONE1807PC[/Separation/PANTONE#201807#20PC/DeviceCMYK
+676 0 R]/PANTONE1815PC[/Separation/PANTONE#201815#20PC/DeviceCMYK 677 0 R]/PANTONE1817PC[/Separation/PANTONE#201817#20PC/DeviceCMYK
+678 0 R]/PANTONE1895PC[/Separation/PANTONE#201895#20PC/DeviceCMYK 679 0 R]/PANTONE1905PC[/Separation/PANTONE#201905#20PC/DeviceCMYK
+680 0 R]/PANTONE1915PC[/Separation/PANTONE#201915#20PC/DeviceCMYK 681 0 R]/PANTONE1925PC[/Separation/PANTONE#201925#20PC/DeviceCMYK
+682 0 R]/PANTONE1935PC[/Separation/PANTONE#201935#20PC/DeviceCMYK 683 0 R]/PANTONE1945PC[/Separation/PANTONE#201945#20PC/DeviceCMYK
+684 0 R]/PANTONE1955PC[/Separation/PANTONE#201955#20PC/DeviceCMYK 685 0 R]/PANTONE2365PC[/Separation/PANTONE#202365#20PC/DeviceCMYK
+686 0 R]/PANTONE2375PC[/Separation/PANTONE#202375#20PC/DeviceCMYK 687 0 R]/PANTONE2385PC[/Separation/PANTONE#202385#20PC/DeviceCMYK
+688 0 R]/PANTONE2395PC[/Separation/PANTONE#202395#20PC/DeviceCMYK 689 0 R]/PANTONE2405PC[/Separation/PANTONE#202405#20PC/DeviceCMYK
+690 0 R]/PANTONE2415PC[/Separation/PANTONE#202415#20PC/DeviceCMYK 691 0 R]/PANTONE2425PC[/Separation/PANTONE#202425#20PC/DeviceCMYK
+692 0 R]/PANTONE2562PC[/Separation/PANTONE#202562#20PC/DeviceCMYK 693 0 R]/PANTONE2563PC[/Separation/PANTONE#202563#20PC/DeviceCMYK
+694 0 R]/PANTONE2567PC[/Separation/PANTONE#202567#20PC/DeviceCMYK 695 0 R]/PANTONE2572PC[/Separation/PANTONE#202572#20PC/DeviceCMYK
+696 0 R]/PANTONE2573PC[/Separation/PANTONE#202573#20PC/DeviceCMYK 697 0 R]/PANTONE2577PC[/Separation/PANTONE#202577#20PC/DeviceCMYK
+698 0 R]/PANTONE2582PC[/Separation/PANTONE#202582#20PC/DeviceCMYK 699 0 R]/PANTONE2583PC[/Separation/PANTONE#202583#20PC/DeviceCMYK
+700 0 R]/PANTONE2587PC[/Separation/PANTONE#202587#20PC/DeviceCMYK 701 0 R]/PANTONE2592PC[/Separation/PANTONE#202592#20PC/DeviceCMYK
+702 0 R]/PANTONE2593PC[/Separation/PANTONE#202593#20PC/DeviceCMYK 703 0 R]/PANTONE2597PC[/Separation/PANTONE#202597#20PC/DeviceCMYK
+704 0 R]/PANTONE2602PC[/Separation/PANTONE#202602#20PC/DeviceCMYK 705 0 R]/PANTONE2603PC[/Separation/PANTONE#202603#20PC/DeviceCMYK
+706 0 R]/PANTONE2607PC[/Separation/PANTONE#202607#20PC/DeviceCMYK 707 0 R]/PANTONE2612PC[/Separation/PANTONE#202612#20PC/DeviceCMYK
+708 0 R]/PANTONE2613PC[/Separation/PANTONE#202613#20PC/DeviceCMYK 709 0 R]/PANTONE2617PC[/Separation/PANTONE#202617#20PC/DeviceCMYK
+710 0 R]/PANTONE2622PC[/Separation/PANTONE#202622#20PC/DeviceCMYK 711 0 R]/PANTONE2623PC[/Separation/PANTONE#202623#20PC/DeviceCMYK
+712 0 R]/PANTONE2627PC[/Separation/PANTONE#202627#20PC/DeviceCMYK 713 0 R]/PANTONE2635PC[/Separation/PANTONE#202635#20PC/DeviceCMYK
+714 0 R]/PANTONE2645PC[/Separation/PANTONE#202645#20PC/DeviceCMYK 715 0 R]/PANTONE2655PC[/Separation/PANTONE#202655#20PC/DeviceCMYK
+716 0 R]/PANTONE2665PC[/Separation/PANTONE#202665#20PC/DeviceCMYK 717 0 R]/PANTONE2685PC[/Separation/PANTONE#202685#20PC/DeviceCMYK
+718 0 R]/PANTONE2695PC[/Separation/PANTONE#202695#20PC/DeviceCMYK 719 0 R]/PANTONE2705PC[/Separation/PANTONE#202705#20PC/DeviceCMYK
+720 0 R]/PANTONE2706PC[/Separation/PANTONE#202706#20PC/DeviceCMYK 721 0 R]/PANTONE2707PC[/Separation/PANTONE#202707#20PC/DeviceCMYK
+722 0 R]/PANTONE2708PC[/Separation/PANTONE#202708#20PC/DeviceCMYK 723 0 R]/PANTONE2715PC[/Separation/PANTONE#202715#20PC/DeviceCMYK
+724 0 R]/PANTONE2716PC[/Separation/PANTONE#202716#20PC/DeviceCMYK 725 0 R]/PANTONE2717PC[/Separation/PANTONE#202717#20PC/DeviceCMYK
+726 0 R]/PANTONE2718PC[/Separation/PANTONE#202718#20PC/DeviceCMYK 727 0 R]/PANTONE2725PC[/Separation/PANTONE#202725#20PC/DeviceCMYK
+728 0 R]/PANTONE2726PC[/Separation/PANTONE#202726#20PC/DeviceCMYK 729 0 R]/PANTONE2727PC[/Separation/PANTONE#202727#20PC/DeviceCMYK
+730 0 R]/PANTONE2728PC[/Separation/PANTONE#202728#20PC/DeviceCMYK 731 0 R]/PANTONE2735PC[/Separation/PANTONE#202735#20PC/DeviceCMYK
+732 0 R]/PANTONE2736PC[/Separation/PANTONE#202736#20PC/DeviceCMYK 733 0 R]/PANTONE2738PC[/Separation/PANTONE#202738#20PC/DeviceCMYK
+734 0 R]/PANTONE2745PC[/Separation/PANTONE#202745#20PC/DeviceCMYK 735 0 R]/PANTONE2746PC[/Separation/PANTONE#202746#20PC/DeviceCMYK
+736 0 R]/PANTONE2747PC[/Separation/PANTONE#202747#20PC/DeviceCMYK 737 0 R]/PANTONE2748PC[/Separation/PANTONE#202748#20PC/DeviceCMYK
+738 0 R]/PANTONE2755PC[/Separation/PANTONE#202755#20PC/DeviceCMYK 739 0 R]/PANTONE2756PC[/Separation/PANTONE#202756#20PC/DeviceCMYK
+740 0 R]/PANTONE2757PC[/Separation/PANTONE#202757#20PC/DeviceCMYK 741 0 R]/PANTONE2758PC[/Separation/PANTONE#202758#20PC/DeviceCMYK
+742 0 R]/PANTONE2765PC[/Separation/PANTONE#202765#20PC/DeviceCMYK 743 0 R]/PANTONE2766PC[/Separation/PANTONE#202766#20PC/DeviceCMYK
+744 0 R]/PANTONE2767PC[/Separation/PANTONE#202767#20PC/DeviceCMYK 745 0 R]/PANTONE2768PC[/Separation/PANTONE#202768#20PC/DeviceCMYK
+746 0 R]/PANTONE2905PC[/Separation/PANTONE#202905#20PC/DeviceCMYK 747 0 R]/PANTONE2915PC[/Separation/PANTONE#202915#20PC/DeviceCMYK
+748 0 R]/PANTONE2925PC[/Separation/PANTONE#202925#20PC/DeviceCMYK 749 0 R]/PANTONE2935PC[/Separation/PANTONE#202935#20PC/DeviceCMYK
+750 0 R]/PANTONE2945PC[/Separation/PANTONE#202945#20PC/DeviceCMYK 751 0 R]/PANTONE2955PC[/Separation/PANTONE#202955#20PC/DeviceCMYK
+752 0 R]/PANTONE2965PC[/Separation/PANTONE#202965#20PC/DeviceCMYK 753 0 R]/PANTONE2975PC[/Separation/PANTONE#202975#20PC/DeviceCMYK
+754 0 R]/PANTONE2985PC[/Separation/PANTONE#202985#20PC/DeviceCMYK 755 0 R]/PANTONE2995PC[/Separation/PANTONE#202995#20PC/DeviceCMYK
+756 0 R]/PANTONE3005PC[/Separation/PANTONE#203005#20PC/DeviceCMYK 757 0 R]/PANTONE3015PC[/Separation/PANTONE#203015#20PC/DeviceCMYK
+758 0 R]/PANTONE3025PC[/Separation/PANTONE#203025#20PC/DeviceCMYK 759 0 R]/PANTONE3035PC[/Separation/PANTONE#203035#20PC/DeviceCMYK
+760 0 R]/PANTONE3105PC[/Separation/PANTONE#203105#20PC/DeviceCMYK 761 0 R]/PANTONE3115PC[/Separation/PANTONE#203115#20PC/DeviceCMYK
+762 0 R]/PANTONE3125PC[/Separation/PANTONE#203125#20PC/DeviceCMYK 763 0 R]/PANTONE3135PC[/Separation/PANTONE#203135#20PC/DeviceCMYK
+764 0 R]/PANTONE3145PC[/Separation/PANTONE#203145#20PC/DeviceCMYK 765 0 R]/PANTONE3155PC[/Separation/PANTONE#203155#20PC/DeviceCMYK
+766 0 R]/PANTONE3165PC[/Separation/PANTONE#203165#20PC/DeviceCMYK 767 0 R]/PANTONE3242PC[/Separation/PANTONE#203242#20PC/DeviceCMYK
+768 0 R]/PANTONE3245PC[/Separation/PANTONE#203245#20PC/DeviceCMYK 769 0 R]/PANTONE3248PC[/Separation/PANTONE#203248#20PC/DeviceCMYK
+770 0 R]/PANTONE3252PC[/Separation/PANTONE#203252#20PC/DeviceCMYK 771 0 R]/PANTONE3255PC[/Separation/PANTONE#203255#20PC/DeviceCMYK
+772 0 R]/PANTONE3258PC[/Separation/PANTONE#203258#20PC/DeviceCMYK 773 0 R]/PANTONE3262PC[/Separation/PANTONE#203262#20PC/DeviceCMYK
+774 0 R]/PANTONE3265PC[/Separation/PANTONE#203265#20PC/DeviceCMYK 775 0 R]/PANTONE3268PC[/Separation/PANTONE#203268#20PC/DeviceCMYK
+776 0 R]/PANTONE3272PC[/Separation/PANTONE#203272#20PC/DeviceCMYK 777 0 R]/PANTONE3275PC[/Separation/PANTONE#203275#20PC/DeviceCMYK
+778 0 R]/PANTONE3278PC[/Separation/PANTONE#203278#20PC/DeviceCMYK 779 0 R]/PANTONE3282PC[/Separation/PANTONE#203282#20PC/DeviceCMYK
+780 0 R]/PANTONE3285PC[/Separation/PANTONE#203285#20PC/DeviceCMYK 781 0 R]/PANTONE3288PC[/Separation/PANTONE#203288#20PC/DeviceCMYK
+782 0 R]/PANTONE3292PC[/Separation/PANTONE#203292#20PC/DeviceCMYK 783 0 R]/PANTONE3295PC[/Separation/PANTONE#203295#20PC/DeviceCMYK
+784 0 R]/PANTONE3298PC[/Separation/PANTONE#203298#20PC/DeviceCMYK 785 0 R]/PANTONE3302PC[/Separation/PANTONE#203302#20PC/DeviceCMYK
+786 0 R]/PANTONE3305PC[/Separation/PANTONE#203305#20PC/DeviceCMYK 787 0 R]/PANTONE3308PC[/Separation/PANTONE#203308#20PC/DeviceCMYK
+788 0 R]/PANTONE3375PC[/Separation/PANTONE#203375#20PC/DeviceCMYK 789 0 R]/PANTONE3385PC[/Separation/PANTONE#203385#20PC/DeviceCMYK
+790 0 R]/PANTONE3395PC[/Separation/PANTONE#203395#20PC/DeviceCMYK 791 0 R]/PANTONE3405PC[/Separation/PANTONE#203405#20PC/DeviceCMYK
+792 0 R]/PANTONE3415PC[/Separation/PANTONE#203415#20PC/DeviceCMYK 793 0 R]/PANTONE3425PC[/Separation/PANTONE#203425#20PC/DeviceCMYK
+794 0 R]/PANTONE3435PC[/Separation/PANTONE#203435#20PC/DeviceCMYK 795 0 R]/PANTONE3935PC[/Separation/PANTONE#203935#20PC/DeviceCMYK
+796 0 R]/PANTONE3945PC[/Separation/PANTONE#203945#20PC/DeviceCMYK 797 0 R]/PANTONE3955PC[/Separation/PANTONE#203955#20PC/DeviceCMYK
+798 0 R]/PANTONE3965PC[/Separation/PANTONE#203965#20PC/DeviceCMYK 799 0 R]/PANTONE3975PC[/Separation/PANTONE#203975#20PC/DeviceCMYK
+800 0 R]/PANTONE3985PC[/Separation/PANTONE#203985#20PC/DeviceCMYK 801 0 R]/PANTONE3995PC[/Separation/PANTONE#203995#20PC/DeviceCMYK
+802 0 R]/PANTONE4485PC[/Separation/PANTONE#204485#20PC/DeviceCMYK 803 0 R]/PANTONE4495PC[/Separation/PANTONE#204495#20PC/DeviceCMYK
+804 0 R]/PANTONE4505PC[/Separation/PANTONE#204505#20PC/DeviceCMYK 805 0 R]/PANTONE4515PC[/Separation/PANTONE#204515#20PC/DeviceCMYK
+806 0 R]/PANTONE4525PC[/Separation/PANTONE#204525#20PC/DeviceCMYK 807 0 R]/PANTONE4535PC[/Separation/PANTONE#204535#20PC/DeviceCMYK
+808 0 R]/PANTONE4545PC[/Separation/PANTONE#204545#20PC/DeviceCMYK 809 0 R]/PANTONE4625PC[/Separation/PANTONE#204625#20PC/DeviceCMYK
+810 0 R]/PANTONE4635PC[/Separation/PANTONE#204635#20PC/DeviceCMYK 811 0 R]/PANTONE4645PC[/Separation/PANTONE#204645#20PC/DeviceCMYK
+812 0 R]/PANTONE4655PC[/Separation/PANTONE#204655#20PC/DeviceCMYK 813 0 R]/PANTONE4665PC[/Separation/PANTONE#204665#20PC/DeviceCMYK
+814 0 R]/PANTONE4675PC[/Separation/PANTONE#204675#20PC/DeviceCMYK 815 0 R]/PANTONE4685PC[/Separation/PANTONE#204685#20PC/DeviceCMYK
+816 0 R]/PANTONE4695PC[/Separation/PANTONE#204695#20PC/DeviceCMYK 817 0 R]/PANTONE4705PC[/Separation/PANTONE#204705#20PC/DeviceCMYK
+818 0 R]/PANTONE4715PC[/Separation/PANTONE#204715#20PC/DeviceCMYK 819 0 R]/PANTONE4725PC[/Separation/PANTONE#204725#20PC/DeviceCMYK
+820 0 R]/PANTONE4735PC[/Separation/PANTONE#204735#20PC/DeviceCMYK 821 0 R]/PANTONE4745PC[/Separation/PANTONE#204745#20PC/DeviceCMYK
+822 0 R]/PANTONE4755PC[/Separation/PANTONE#204755#20PC/DeviceCMYK 823 0 R]/PANTONE4975PC[/Separation/PANTONE#204975#20PC/DeviceCMYK
+824 0 R]/PANTONE4985PC[/Separation/PANTONE#204985#20PC/DeviceCMYK 825 0 R]/PANTONE4995PC[/Separation/PANTONE#204995#20PC/DeviceCMYK
+826 0 R]/PANTONE5005PC[/Separation/PANTONE#205005#20PC/DeviceCMYK 827 0 R]/PANTONE5015PC[/Separation/PANTONE#205015#20PC/DeviceCMYK
+828 0 R]/PANTONE5025PC[/Separation/PANTONE#205025#20PC/DeviceCMYK 829 0 R]/PANTONE5035PC[/Separation/PANTONE#205035#20PC/DeviceCMYK
+830 0 R]/PANTONE5115PC[/Separation/PANTONE#205115#20PC/DeviceCMYK 831 0 R]/PANTONE5125PC[/Separation/PANTONE#205125#20PC/DeviceCMYK
+832 0 R]/PANTONE5135PC[/Separation/PANTONE#205135#20PC/DeviceCMYK 833 0 R]/PANTONE5145PC[/Separation/PANTONE#205145#20PC/DeviceCMYK
+834 0 R]/PANTONE5155PC[/Separation/PANTONE#205155#20PC/DeviceCMYK 835 0 R]/PANTONE5165PC[/Separation/PANTONE#205165#20PC/DeviceCMYK
+836 0 R]/PANTONE5175PC[/Separation/PANTONE#205175#20PC/DeviceCMYK 837 0 R]/PANTONE5185PC[/Separation/PANTONE#205185#20PC/DeviceCMYK
+838 0 R]/PANTONE5195PC[/Separation/PANTONE#205195#20PC/DeviceCMYK 839 0 R]/PANTONE5205PC[/Separation/PANTONE#205205#20PC/DeviceCMYK
+840 0 R]/PANTONE5215PC[/Separation/PANTONE#205215#20PC/DeviceCMYK 841 0 R]/PANTONE5225PC[/Separation/PANTONE#205225#20PC/DeviceCMYK
+842 0 R]/PANTONE5235PC[/Separation/PANTONE#205235#20PC/DeviceCMYK 843 0 R]/PANTONE5245PC[/Separation/PANTONE#205245#20PC/DeviceCMYK
+844 0 R]/PANTONE5255PC[/Separation/PANTONE#205255#20PC/DeviceCMYK 845 0 R]/PANTONE5265PC[/Separation/PANTONE#205265#20PC/DeviceCMYK
+846 0 R]/PANTONE5275PC[/Separation/PANTONE#205275#20PC/DeviceCMYK 847 0 R]/PANTONE5285PC[/Separation/PANTONE#205285#20PC/DeviceCMYK
+848 0 R]/PANTONE5295PC[/Separation/PANTONE#205295#20PC/DeviceCMYK 849 0 R]/PANTONE5305PC[/Separation/PANTONE#205305#20PC/DeviceCMYK
+850 0 R]/PANTONE5315PC[/Separation/PANTONE#205315#20PC/DeviceCMYK 851 0 R]/PANTONE5395PC[/Separation/PANTONE#205395#20PC/DeviceCMYK
+852 0 R]/PANTONE5405PC[/Separation/PANTONE#205405#20PC/DeviceCMYK 853 0 R]/PANTONE5415PC[/Separation/PANTONE#205415#20PC/DeviceCMYK
+854 0 R]/PANTONE5425PC[/Separation/PANTONE#205425#20PC/DeviceCMYK 855 0 R]/PANTONE5435PC[/Separation/PANTONE#205435#20PC/DeviceCMYK
+856 0 R]/PANTONE5445PC[/Separation/PANTONE#205445#20PC/DeviceCMYK 857 0 R]/PANTONE5455PC[/Separation/PANTONE#205455#20PC/DeviceCMYK
+858 0 R]/PANTONE5463PC[/Separation/PANTONE#205463#20PC/DeviceCMYK 859 0 R]/PANTONE5467PC[/Separation/PANTONE#205467#20PC/DeviceCMYK
+860 0 R]/PANTONE5473PC[/Separation/PANTONE#205473#20PC/DeviceCMYK 861 0 R]/PANTONE5477PC[/Separation/PANTONE#205477#20PC/DeviceCMYK
+862 0 R]/PANTONE5483PC[/Separation/PANTONE#205483#20PC/DeviceCMYK 863 0 R]/PANTONE5487PC[/Separation/PANTONE#205487#20PC/DeviceCMYK
+864 0 R]/PANTONE5493PC[/Separation/PANTONE#205493#20PC/DeviceCMYK 865 0 R]/PANTONE5497PC[/Separation/PANTONE#205497#20PC/DeviceCMYK
+866 0 R]/PANTONE5503PC[/Separation/PANTONE#205503#20PC/DeviceCMYK 867 0 R]/PANTONE5507PC[/Separation/PANTONE#205507#20PC/DeviceCMYK
+868 0 R]/PANTONE5513PC[/Separation/PANTONE#205513#20PC/DeviceCMYK 869 0 R]/PANTONE5517PC[/Separation/PANTONE#205517#20PC/DeviceCMYK
+870 0 R]/PANTONE5523PC[/Separation/PANTONE#205523#20PC/DeviceCMYK 871 0 R]/PANTONE5527PC[/Separation/PANTONE#205527#20PC/DeviceCMYK
+872 0 R]/PANTONE5535PC[/Separation/PANTONE#205535#20PC/DeviceCMYK 873 0 R]/PANTONE5545PC[/Separation/PANTONE#205545#20PC/DeviceCMYK
+874 0 R]/PANTONE5555PC[/Separation/PANTONE#205555#20PC/DeviceCMYK 875 0 R]/PANTONE5565PC[/Separation/PANTONE#205565#20PC/DeviceCMYK
+876 0 R]/PANTONE5575PC[/Separation/PANTONE#205575#20PC/DeviceCMYK 877 0 R]/PANTONE5585PC[/Separation/PANTONE#205585#20PC/DeviceCMYK
+878 0 R]/PANTONE5595PC[/Separation/PANTONE#205595#20PC/DeviceCMYK 879 0 R]/PANTONE5605PC[/Separation/PANTONE#205605#20PC/DeviceCMYK
+880 0 R]/PANTONE5615PC[/Separation/PANTONE#205615#20PC/DeviceCMYK 881 0 R]/PANTONE5625PC[/Separation/PANTONE#205625#20PC/DeviceCMYK
+882 0 R]/PANTONE5635PC[/Separation/PANTONE#205635#20PC/DeviceCMYK 883 0 R]/PANTONE5645PC[/Separation/PANTONE#205645#20PC/DeviceCMYK
+884 0 R]/PANTONE5655PC[/Separation/PANTONE#205655#20PC/DeviceCMYK 885 0 R]/PANTONE5665PC[/Separation/PANTONE#205665#20PC/DeviceCMYK
+886 0 R]/PANTONE5743PC[/Separation/PANTONE#205743#20PC/DeviceCMYK 887 0 R]/PANTONE5747PC[/Separation/PANTONE#205747#20PC/DeviceCMYK
+888 0 R]/PANTONE5753PC[/Separation/PANTONE#205753#20PC/DeviceCMYK 889 0 R]/PANTONE5757PC[/Separation/PANTONE#205757#20PC/DeviceCMYK
+890 0 R]/PANTONE5763PC[/Separation/PANTONE#205763#20PC/DeviceCMYK 891 0 R]/PANTONE5767PC[/Separation/PANTONE#205767#20PC/DeviceCMYK
+892 0 R]/PANTONE5773PC[/Separation/PANTONE#205773#20PC/DeviceCMYK 893 0 R]/PANTONE5777PC[/Separation/PANTONE#205777#20PC/DeviceCMYK
+894 0 R]/PANTONE5783PC[/Separation/PANTONE#205783#20PC/DeviceCMYK 895 0 R]/PANTONE5787PC[/Separation/PANTONE#205787#20PC/DeviceCMYK
+896 0 R]/PANTONE5793PC[/Separation/PANTONE#205793#20PC/DeviceCMYK 897 0 R]/PANTONE5797PC[/Separation/PANTONE#205797#20PC/DeviceCMYK
+898 0 R]/PANTONE5803PC[/Separation/PANTONE#205803#20PC/DeviceCMYK 899 0 R]/PANTONE5807PC[/Separation/PANTONE#205807#20PC/DeviceCMYK
+900 0 R]/PANTONE5815PC[/Separation/PANTONE#205815#20PC/DeviceCMYK 901 0 R]/PANTONE5825PC[/Separation/PANTONE#205825#20PC/DeviceCMYK
+902 0 R]/PANTONE5835PC[/Separation/PANTONE#205835#20PC/DeviceCMYK 903 0 R]/PANTONE5845PC[/Separation/PANTONE#205845#20PC/DeviceCMYK
+904 0 R]/PANTONE5855PC[/Separation/PANTONE#205855#20PC/DeviceCMYK 905 0 R]/PANTONE5865PC[/Separation/PANTONE#205865#20PC/DeviceCMYK
+906 0 R]/PANTONE5875PC[/Separation/PANTONE#205875#20PC/DeviceCMYK 907 0 R]/PANTONE7401PC[/Separation/PANTONE#207401#20PC/DeviceCMYK
+908 0 R]/PANTONE7402PC[/Separation/PANTONE#207402#20PC/DeviceCMYK 909 0 R]/PANTONE7403PC[/Separation/PANTONE#207403#20PC/DeviceCMYK
+910 0 R]/PANTONE7404PC[/Separation/PANTONE#207404#20PC/DeviceCMYK 911 0 R]/PANTONE7405PC[/Separation/PANTONE#207405#20PC/DeviceCMYK
+912 0 R]/PANTONE7406PC[/Separation/PANTONE#207406#20PC/DeviceCMYK 913 0 R]/PANTONE7407PC[/Separation/PANTONE#207407#20PC/DeviceCMYK
+914 0 R]/PANTONE7408PC[/Separation/PANTONE#207408#20PC/DeviceCMYK 915 0 R]/PANTONE7409PC[/Separation/PANTONE#207409#20PC/DeviceCMYK
+916 0 R]/PANTONE7410PC[/Separation/PANTONE#207410#20PC/DeviceCMYK 917 0 R]/PANTONE7411PC[/Separation/PANTONE#207411#20PC/DeviceCMYK
+918 0 R]/PANTONE7412PC[/Separation/PANTONE#207412#20PC/DeviceCMYK 919 0 R]/PANTONE7413PC[/Separation/PANTONE#207413#20PC/DeviceCMYK
+920 0 R]/PANTONE7414PC[/Separation/PANTONE#207414#20PC/DeviceCMYK 921 0 R]/PANTONE7415PC[/Separation/PANTONE#207415#20PC/DeviceCMYK
+922 0 R]/PANTONE7416PC[/Separation/PANTONE#207416#20PC/DeviceCMYK 923 0 R]/PANTONE7417PC[/Separation/PANTONE#207417#20PC/DeviceCMYK
+924 0 R]/PANTONE7418PC[/Separation/PANTONE#207418#20PC/DeviceCMYK 925 0 R]/PANTONE7419PC[/Separation/PANTONE#207419#20PC/DeviceCMYK
+926 0 R]/PANTONE7420PC[/Separation/PANTONE#207420#20PC/DeviceCMYK 927 0 R]/PANTONE7421PC[/Separation/PANTONE#207421#20PC/DeviceCMYK
+928 0 R]/PANTONE7422PC[/Separation/PANTONE#207422#20PC/DeviceCMYK 929 0 R]/PANTONE7423PC[/Separation/PANTONE#207423#20PC/DeviceCMYK
+930 0 R]/PANTONE7424PC[/Separation/PANTONE#207424#20PC/DeviceCMYK 931 0 R]/PANTONE7425PC[/Separation/PANTONE#207425#20PC/DeviceCMYK
+932 0 R]/PANTONE7426PC[/Separation/PANTONE#207426#20PC/DeviceCMYK 933 0 R]/PANTONE7427PC[/Separation/PANTONE#207427#20PC/DeviceCMYK
+934 0 R]/PANTONE7428PC[/Separation/PANTONE#207428#20PC/DeviceCMYK 935 0 R]/PANTONE7429PC[/Separation/PANTONE#207429#20PC/DeviceCMYK
+936 0 R]/PANTONE7430PC[/Separation/PANTONE#207430#20PC/DeviceCMYK 937 0 R]/PANTONE7431PC[/Separation/PANTONE#207431#20PC/DeviceCMYK
+938 0 R]/PANTONE7432PC[/Separation/PANTONE#207432#20PC/DeviceCMYK 939 0 R]/PANTONE7433PC[/Separation/PANTONE#207433#20PC/DeviceCMYK
+940 0 R]/PANTONE7434PC[/Separation/PANTONE#207434#20PC/DeviceCMYK 941 0 R]/PANTONE7435PC[/Separation/PANTONE#207435#20PC/DeviceCMYK
+942 0 R]/PANTONE7436PC[/Separation/PANTONE#207436#20PC/DeviceCMYK 943 0 R]/PANTONE7437PC[/Separation/PANTONE#207437#20PC/DeviceCMYK
+944 0 R]/PANTONE7438PC[/Separation/PANTONE#207438#20PC/DeviceCMYK 945 0 R]/PANTONE7439PC[/Separation/PANTONE#207439#20PC/DeviceCMYK
+946 0 R]/PANTONE7440PC[/Separation/PANTONE#207440#20PC/DeviceCMYK 947 0 R]/PANTONE7441PC[/Separation/PANTONE#207441#20PC/DeviceCMYK
+948 0 R]/PANTONE7442PC[/Separation/PANTONE#207442#20PC/DeviceCMYK 949 0 R]/PANTONE7443PC[/Separation/PANTONE#207443#20PC/DeviceCMYK
+950 0 R]/PANTONE7444PC[/Separation/PANTONE#207444#20PC/DeviceCMYK 951 0 R]/PANTONE7445PC[/Separation/PANTONE#207445#20PC/DeviceCMYK
+952 0 R]/PANTONE7446PC[/Separation/PANTONE#207446#20PC/DeviceCMYK 953 0 R]/PANTONE7447PC[/Separation/PANTONE#207447#20PC/DeviceCMYK
+954 0 R]/PANTONE7448PC[/Separation/PANTONE#207448#20PC/DeviceCMYK 955 0 R]/PANTONE7449PC[/Separation/PANTONE#207449#20PC/DeviceCMYK
+956 0 R]/PANTONE7450PC[/Separation/PANTONE#207450#20PC/DeviceCMYK 957 0 R]/PANTONE7451PC[/Separation/PANTONE#207451#20PC/DeviceCMYK
+958 0 R]/PANTONE7452PC[/Separation/PANTONE#207452#20PC/DeviceCMYK 959 0 R]/PANTONE7453PC[/Separation/PANTONE#207453#20PC/DeviceCMYK
+960 0 R]/PANTONE7454PC[/Separation/PANTONE#207454#20PC/DeviceCMYK 961 0 R]/PANTONE7455PC[/Separation/PANTONE#207455#20PC/DeviceCMYK
+962 0 R]/PANTONE7456PC[/Separation/PANTONE#207456#20PC/DeviceCMYK 963 0 R]/PANTONE7457PC[/Separation/PANTONE#207457#20PC/DeviceCMYK
+964 0 R]/PANTONE7458PC[/Separation/PANTONE#207458#20PC/DeviceCMYK 965 0 R]/PANTONE7459PC[/Separation/PANTONE#207459#20PC/DeviceCMYK
+966 0 R]/PANTONE7460PC[/Separation/PANTONE#207460#20PC/DeviceCMYK 967 0 R]/PANTONE7461PC[/Separation/PANTONE#207461#20PC/DeviceCMYK
+968 0 R]/PANTONE7462PC[/Separation/PANTONE#207462#20PC/DeviceCMYK 969 0 R]/PANTONE7463PC[/Separation/PANTONE#207463#20PC/DeviceCMYK
+970 0 R]/PANTONE7464PC[/Separation/PANTONE#207464#20PC/DeviceCMYK 971 0 R]/PANTONE7465PC[/Separation/PANTONE#207465#20PC/DeviceCMYK
+972 0 R]/PANTONE7466PC[/Separation/PANTONE#207466#20PC/DeviceCMYK 973 0 R]/PANTONE7467PC[/Separation/PANTONE#207467#20PC/DeviceCMYK
+974 0 R]/PANTONE7468PC[/Separation/PANTONE#207468#20PC/DeviceCMYK 975 0 R]/PANTONE7469PC[/Separation/PANTONE#207469#20PC/DeviceCMYK
+976 0 R]/PANTONE7470PC[/Separation/PANTONE#207470#20PC/DeviceCMYK 977 0 R]/PANTONE7471PC[/Separation/PANTONE#207471#20PC/DeviceCMYK
+978 0 R]/PANTONE7472PC[/Separation/PANTONE#207472#20PC/DeviceCMYK 979 0 R]/PANTONE7473PC[/Separation/PANTONE#207473#20PC/DeviceCMYK
+980 0 R]/PANTONE7474PC[/Separation/PANTONE#207474#20PC/DeviceCMYK 981 0 R]/PANTONE7475PC[/Separation/PANTONE#207475#20PC/DeviceCMYK
+982 0 R]/PANTONE7476PC[/Separation/PANTONE#207476#20PC/DeviceCMYK 983 0 R]/PANTONE7477PC[/Separation/PANTONE#207477#20PC/DeviceCMYK
+984 0 R]/PANTONE7478PC[/Separation/PANTONE#207478#20PC/DeviceCMYK 985 0 R]/PANTONE7479PC[/Separation/PANTONE#207479#20PC/DeviceCMYK
+986 0 R]/PANTONE7480PC[/Separation/PANTONE#207480#20PC/DeviceCMYK 987 0 R]/PANTONE7481PC[/Separation/PANTONE#207481#20PC/DeviceCMYK
+988 0 R]/PANTONE7482PC[/Separation/PANTONE#207482#20PC/DeviceCMYK 989 0 R]/PANTONE7483PC[/Separation/PANTONE#207483#20PC/DeviceCMYK
+990 0 R]/PANTONE7484PC[/Separation/PANTONE#207484#20PC/DeviceCMYK 991 0 R]/PANTONE7485PC[/Separation/PANTONE#207485#20PC/DeviceCMYK
+992 0 R]/PANTONE7486PC[/Separation/PANTONE#207486#20PC/DeviceCMYK 993 0 R]/PANTONE7487PC[/Separation/PANTONE#207487#20PC/DeviceCMYK
+994 0 R]/PANTONE7488PC[/Separation/PANTONE#207488#20PC/DeviceCMYK 995 0 R]/PANTONE7489PC[/Separation/PANTONE#207489#20PC/DeviceCMYK
+996 0 R]/PANTONE7490PC[/Separation/PANTONE#207490#20PC/DeviceCMYK 997 0 R]/PANTONE7491PC[/Separation/PANTONE#207491#20PC/DeviceCMYK
+998 0 R]/PANTONE7492PC[/Separation/PANTONE#207492#20PC/DeviceCMYK 999 0 R]/PANTONE7493PC[/Separation/PANTONE#207493#20PC/DeviceCMYK
+1000 0 R]/PANTONE7494PC[/Separation/PANTONE#207494#20PC/DeviceCMYK 1001 0 R]/PANTONE7495PC[/Separation/PANTONE#207495#20PC/DeviceCMYK
+1002 0 R]/PANTONE7496PC[/Separation/PANTONE#207496#20PC/DeviceCMYK 1003 0 R]/PANTONE7497PC[/Separation/PANTONE#207497#20PC/DeviceCMYK
+1004 0 R]/PANTONE7498PC[/Separation/PANTONE#207498#20PC/DeviceCMYK 1005 0 R]/PANTONE7499PC[/Separation/PANTONE#207499#20PC/DeviceCMYK
+1006 0 R]/PANTONE7500PC[/Separation/PANTONE#207500#20PC/DeviceCMYK 1007 0 R]/PANTONE7501PC[/Separation/PANTONE#207501#20PC/DeviceCMYK
+1008 0 R]/PANTONE7502PC[/Separation/PANTONE#207502#20PC/DeviceCMYK 1009 0 R]/PANTONE7503PC[/Separation/PANTONE#207503#20PC/DeviceCMYK
+1010 0 R]/PANTONE7504PC[/Separation/PANTONE#207504#20PC/DeviceCMYK 1011 0 R]/PANTONE7505PC[/Separation/PANTONE#207505#20PC/DeviceCMYK
+1012 0 R]/PANTONE7506PC[/Separation/PANTONE#207506#20PC/DeviceCMYK 1013 0 R]/PANTONE7507PC[/Separation/PANTONE#207507#20PC/DeviceCMYK
+1014 0 R]/PANTONE7508PC[/Separation/PANTONE#207508#20PC/DeviceCMYK 1015 0 R]/PANTONE7509PC[/Separation/PANTONE#207509#20PC/DeviceCMYK
+1016 0 R]/PANTONE7510PC[/Separation/PANTONE#207510#20PC/DeviceCMYK 1017 0 R]/PANTONE7511PC[/Separation/PANTONE#207511#20PC/DeviceCMYK
+1018 0 R]/PANTONE7512PC[/Separation/PANTONE#207512#20PC/DeviceCMYK 1019 0 R]/PANTONE7513PC[/Separation/PANTONE#207513#20PC/DeviceCMYK
+1020 0 R]/PANTONE7514PC[/Separation/PANTONE#207514#20PC/DeviceCMYK 1021 0 R]/PANTONE7515PC[/Separation/PANTONE#207515#20PC/DeviceCMYK
+1022 0 R]/PANTONE7516PC[/Separation/PANTONE#207516#20PC/DeviceCMYK 1023 0 R]/PANTONE7517PC[/Separation/PANTONE#207517#20PC/DeviceCMYK
+1024 0 R]/PANTONE7518PC[/Separation/PANTONE#207518#20PC/DeviceCMYK 1025 0 R]/PANTONE7519PC[/Separation/PANTONE#207519#20PC/DeviceCMYK
+1026 0 R]/PANTONE7520PC[/Separation/PANTONE#207520#20PC/DeviceCMYK 1027 0 R]/PANTONE7521PC[/Separation/PANTONE#207521#20PC/DeviceCMYK
+1028 0 R]/PANTONE7522PC[/Separation/PANTONE#207522#20PC/DeviceCMYK 1029 0 R]/PANTONE7523PC[/Separation/PANTONE#207523#20PC/DeviceCMYK
+1030 0 R]/PANTONE7524PC[/Separation/PANTONE#207524#20PC/DeviceCMYK 1031 0 R]/PANTONE7525PC[/Separation/PANTONE#207525#20PC/DeviceCMYK
+1032 0 R]/PANTONE7526PC[/Separation/PANTONE#207526#20PC/DeviceCMYK 1033 0 R]/PANTONE7527PC[/Separation/PANTONE#207527#20PC/DeviceCMYK
+1034 0 R]/PANTONE7528PC[/Separation/PANTONE#207528#20PC/DeviceCMYK 1035 0 R]/PANTONE7529PC[/Separation/PANTONE#207529#20PC/DeviceCMYK
+1036 0 R]/PANTONE7530PC[/Separation/PANTONE#207530#20PC/DeviceCMYK 1037 0 R]/PANTONE7531PC[/Separation/PANTONE#207531#20PC/DeviceCMYK
+1038 0 R]/PANTONE7532PC[/Separation/PANTONE#207532#20PC/DeviceCMYK 1039 0 R]/PANTONE7533PC[/Separation/PANTONE#207533#20PC/DeviceCMYK
+1040 0 R]/PANTONE7534PC[/Separation/PANTONE#207534#20PC/DeviceCMYK 1041 0 R]/PANTONE7535PC[/Separation/PANTONE#207535#20PC/DeviceCMYK
+1042 0 R]/PANTONE7536PC[/Separation/PANTONE#207536#20PC/DeviceCMYK 1043 0 R]/PANTONE7537PC[/Separation/PANTONE#207537#20PC/DeviceCMYK
+1044 0 R]/PANTONE7538PC[/Separation/PANTONE#207538#20PC/DeviceCMYK 1045 0 R]/PANTONE7539PC[/Separation/PANTONE#207539#20PC/DeviceCMYK
+1046 0 R]/PANTONE7540PC[/Separation/PANTONE#207540#20PC/DeviceCMYK 1047 0 R]/PANTONE7541PC[/Separation/PANTONE#207541#20PC/DeviceCMYK
+1048 0 R]/PANTONE7542PC[/Separation/PANTONE#207542#20PC/DeviceCMYK 1049 0 R]/PANTONE7543PC[/Separation/PANTONE#207543#20PC/DeviceCMYK
+1050 0 R]/PANTONE7544PC[/Separation/PANTONE#207544#20PC/DeviceCMYK 1051 0 R]/PANTONE7545PC[/Separation/PANTONE#207545#20PC/DeviceCMYK
+1052 0 R]/PANTONE7546PC[/Separation/PANTONE#207546#20PC/DeviceCMYK 1053 0 R]/PANTONE7547PC[/Separation/PANTONE#207547#20PC/DeviceCMYK
+1054 0 R]/PANTONEBlack2PC[/Separation/PANTONE#20Black#202#20PC/DeviceCMYK 1055 0 R]/PANTONEBlack3PC[/Separation/PANTONE#20Black#203#20PC/DeviceCMYK
+1056 0 R]/PANTONEBlack4PC[/Separation/PANTONE#20Black#204#20PC/DeviceCMYK 1057 0 R]/PANTONEBlack5PC[/Separation/PANTONE#20Black#205#20PC/DeviceCMYK
+1058 0 R]/PANTONEBlack6PC[/Separation/PANTONE#20Black#206#20PC/DeviceCMYK 1059 0 R]/PANTONEBlack7PC[/Separation/PANTONE#20Black#207#20PC/DeviceCMYK
+1060 0 R]/PANTONEBlackPC[/Separation/PANTONE#20Black#20PC/DeviceCMYK 1061 0 R]/PANTONEBlue072PC[/Separation/PANTONE#20Blue#20072#20PC/DeviceCMYK
+1062 0 R]/PANTONECoolGray1PC[/Separation/PANTONE#20Cool#20Gray#201#20PC/DeviceCMYK
+1063 0 R]/PANTONECoolGray2PC[/Separation/PANTONE#20Cool#20Gray#202#20PC/DeviceCMYK
+1064 0 R]/PANTONECoolGray3PC[/Separation/PANTONE#20Cool#20Gray#203#20PC/DeviceCMYK
+1065 0 R]/PANTONECoolGray4PC[/Separation/PANTONE#20Cool#20Gray#204#20PC/DeviceCMYK
+1066 0 R]/PANTONECoolGray5PC[/Separation/PANTONE#20Cool#20Gray#205#20PC/DeviceCMYK
+1067 0 R]/PANTONECoolGray6PC[/Separation/PANTONE#20Cool#20Gray#206#20PC/DeviceCMYK
+1068 0 R]/PANTONECoolGray7PC[/Separation/PANTONE#20Cool#20Gray#207#20PC/DeviceCMYK
+1069 0 R]/PANTONECoolGray8PC[/Separation/PANTONE#20Cool#20Gray#208#20PC/DeviceCMYK
+1070 0 R]/PANTONECoolGray9PC[/Separation/PANTONE#20Cool#20Gray#209#20PC/DeviceCMYK
+1071 0 R]/PANTONECoolGray10PC[/Separation/PANTONE#20Cool#20Gray#2010#20PC/DeviceCMYK
+1072 0 R]/PANTONECoolGray11PC[/Separation/PANTONE#20Cool#20Gray#2011#20PC/DeviceCMYK
+1073 0 R]/PANTONEGreenPC[/Separation/PANTONE#20Green#20PC/DeviceCMYK 1074 0 R]/PANTONEOrange021PC[/Separation/PANTONE#20Orange#20021#20PC/DeviceCMYK
+1075 0 R]/PANTONEProc.BlackPC[/Separation/PANTONE#20Proc.#20Black#20PC/DeviceCMYK
+1076 0 R]/PANTONEProc.BluePC[/Separation/PANTONE#20Proc.#20Blue#20PC/DeviceCMYK 1077 0 R]/PANTONEProc.CyanPC[/Separation/PANTONE#20Proc.#20Cyan#20PC/DeviceCMYK
+1078 0 R]/PANTONEProc.Magen.PC[/Separation/PANTONE#20Proc.#20Magen.#20PC/DeviceCMYK
+1079 0 R]/PANTONEProc.YellowPC[/Separation/PANTONE#20Proc.#20Yellow#20PC/DeviceCMYK
+1080 0 R]/PANTONEPurplePC[/Separation/PANTONE#20Purple#20PC/DeviceCMYK 1081 0 R]/PANTONERed032PC[/Separation/PANTONE#20Red#20032#20PC/DeviceCMYK
+1082 0 R]/PANTONERef.BluePC[/Separation/PANTONE#20Ref.#20Blue#20PC/DeviceCMYK 1083 0 R]/PANTONERhod.RedPC[/Separation/PANTONE#20Rhod.#20Red#20PC/DeviceCMYK
+1084 0 R]/PANTONERub.RedPC[/Separation/PANTONE#20Rub.#20Red#20PC/DeviceCMYK 1085 0 R]/PANTONEVioletPC[/Separation/PANTONE#20Violet#20PC/DeviceCMYK
+1086 0 R]/PANTONEWarmGray1PC[/Separation/PANTONE#20Warm#20Gray#201#20PC/DeviceCMYK
+1087 0 R]/PANTONEWarmGray2PC[/Separation/PANTONE#20Warm#20Gray#202#20PC/DeviceCMYK
+1088 0 R]/PANTONEWarmGray3PC[/Separation/PANTONE#20Warm#20Gray#203#20PC/DeviceCMYK
+1089 0 R]/PANTONEWarmGray4PC[/Separation/PANTONE#20Warm#20Gray#204#20PC/DeviceCMYK
+1090 0 R]/PANTONEWarmGray5PC[/Separation/PANTONE#20Warm#20Gray#205#20PC/DeviceCMYK
+1091 0 R]/PANTONEWarmGray6PC[/Separation/PANTONE#20Warm#20Gray#206#20PC/DeviceCMYK
+1092 0 R]/PANTONEWarmGray7PC[/Separation/PANTONE#20Warm#20Gray#207#20PC/DeviceCMYK
+1093 0 R]/PANTONEWarmGray8PC[/Separation/PANTONE#20Warm#20Gray#208#20PC/DeviceCMYK
+1094 0 R]/PANTONEWarmGray9PC[/Separation/PANTONE#20Warm#20Gray#209#20PC/DeviceCMYK
+1095 0 R]/PANTONEWarmGray10PC[/Separation/PANTONE#20Warm#20Gray#2010#20PC/DeviceCMYK
+1096 0 R]/PANTONEWarmGray11PC[/Separation/PANTONE#20Warm#20Gray#2011#20PC/DeviceCMYK
+1097 0 R]/PANTONEWarmRedPC[/Separation/PANTONE#20Warm#20Red#20PC/DeviceCMYK 1098 0 R]/PANTONEYellowPC[/Separation/PANTONE#20Yellow#20PC/DeviceCMYK
+1099 0 R]/HKS05N[/Separation/HKS#2005#20N/DeviceCMYK 1103 0 R]/HKS14N[/Separation/HKS#2014#20N/DeviceCMYK
+1104 0 R]/HKS17N[/Separation/HKS#2017#20N/DeviceCMYK 1105 0 R]/HKS24N[/Separation/HKS#2024#20N/DeviceCMYK
+1106 0 R]/HKS38N[/Separation/HKS#2038#20N/DeviceCMYK 1107 0 R]/HKS49N[/Separation/HKS#2049#20N/DeviceCMYK
+1108 0 R]/HKS57N[/Separation/HKS#2057#20N/DeviceCMYK 1109 0 R]/HKS68N[/Separation/HKS#2068#20N/DeviceCMYK
+1110 0 R]/HKS74N[/Separation/HKS#2074#20N/DeviceCMYK 1111 0 R]/HKS92N[/Separation/HKS#2092#20N/DeviceCMYK
+1112 0 R]/SOMECOLOR[/Separation/Spot#20Color#20Name#20in#20PDF/DeviceCMYK 1116 0 R]>>/Font<</F1
+5 0 R/F2 7 0 R>>/ProcSet[/PDF/Text/ImageC/ImageB/ImageI]>>
+endobj
+1120 0 obj
+<</Filter/FlateDecode/Length 60>>
+stream
+xS(TuuRH.V0T(NVP(TS0
+endstream
+endobj
+1121 0 obj
+<</Filter/FlateDecode/Length 242>>
+stream
+x}J0>ż@f3 9XVA67SɃ])uf
+@! ' 5:<H5?l
+endstream
+endobj
+1122 0 obj
+<</ColorSpace<</PANTONE100PC[/Separation/PANTONE#20100#20PC/DeviceCMYK 11 0 R]/PANTONE101PC[/Separation/PANTONE#20101#20PC/DeviceCMYK
+12 0 R]/PANTONE102PC[/Separation/PANTONE#20102#20PC/DeviceCMYK 13 0 R]/PANTONE103PC[/Separation/PANTONE#20103#20PC/DeviceCMYK
+14 0 R]/PANTONE104PC[/Separation/PANTONE#20104#20PC/DeviceCMYK 15 0 R]/PANTONE105PC[/Separation/PANTONE#20105#20PC/DeviceCMYK
+16 0 R]/PANTONE106PC[/Separation/PANTONE#20106#20PC/DeviceCMYK 17 0 R]/PANTONE107PC[/Separation/PANTONE#20107#20PC/DeviceCMYK
+18 0 R]/PANTONE108PC[/Separation/PANTONE#20108#20PC/DeviceCMYK 19 0 R]/PANTONE109PC[/Separation/PANTONE#20109#20PC/DeviceCMYK
+20 0 R]/PANTONE110PC[/Separation/PANTONE#20110#20PC/DeviceCMYK 21 0 R]/PANTONE111PC[/Separation/PANTONE#20111#20PC/DeviceCMYK
+22 0 R]/PANTONE112PC[/Separation/PANTONE#20112#20PC/DeviceCMYK 23 0 R]/PANTONE113PC[/Separation/PANTONE#20113#20PC/DeviceCMYK
+24 0 R]/PANTONE114PC[/Separation/PANTONE#20114#20PC/DeviceCMYK 25 0 R]/PANTONE115PC[/Separation/PANTONE#20115#20PC/DeviceCMYK
+26 0 R]/PANTONE116PC[/Separation/PANTONE#20116#20PC/DeviceCMYK 27 0 R]/PANTONE117PC[/Separation/PANTONE#20117#20PC/DeviceCMYK
+28 0 R]/PANTONE118PC[/Separation/PANTONE#20118#20PC/DeviceCMYK 29 0 R]/PANTONE119PC[/Separation/PANTONE#20119#20PC/DeviceCMYK
+30 0 R]/PANTONE120PC[/Separation/PANTONE#20120#20PC/DeviceCMYK 31 0 R]/PANTONE121PC[/Separation/PANTONE#20121#20PC/DeviceCMYK
+32 0 R]/PANTONE122PC[/Separation/PANTONE#20122#20PC/DeviceCMYK 33 0 R]/PANTONE123PC[/Separation/PANTONE#20123#20PC/DeviceCMYK
+34 0 R]/PANTONE124PC[/Separation/PANTONE#20124#20PC/DeviceCMYK 35 0 R]/PANTONE125PC[/Separation/PANTONE#20125#20PC/DeviceCMYK
+36 0 R]/PANTONE126PC[/Separation/PANTONE#20126#20PC/DeviceCMYK 37 0 R]/PANTONE127PC[/Separation/PANTONE#20127#20PC/DeviceCMYK
+38 0 R]/PANTONE128PC[/Separation/PANTONE#20128#20PC/DeviceCMYK 39 0 R]/PANTONE129PC[/Separation/PANTONE#20129#20PC/DeviceCMYK
+40 0 R]/PANTONE130PC[/Separation/PANTONE#20130#20PC/DeviceCMYK 41 0 R]/PANTONE131PC[/Separation/PANTONE#20131#20PC/DeviceCMYK
+42 0 R]/PANTONE132PC[/Separation/PANTONE#20132#20PC/DeviceCMYK 43 0 R]/PANTONE133PC[/Separation/PANTONE#20133#20PC/DeviceCMYK
+44 0 R]/PANTONE134PC[/Separation/PANTONE#20134#20PC/DeviceCMYK 45 0 R]/PANTONE135PC[/Separation/PANTONE#20135#20PC/DeviceCMYK
+46 0 R]/PANTONE136PC[/Separation/PANTONE#20136#20PC/DeviceCMYK 47 0 R]/PANTONE137PC[/Separation/PANTONE#20137#20PC/DeviceCMYK
+48 0 R]/PANTONE138PC[/Separation/PANTONE#20138#20PC/DeviceCMYK 49 0 R]/PANTONE139PC[/Separation/PANTONE#20139#20PC/DeviceCMYK
+50 0 R]/PANTONE140PC[/Separation/PANTONE#20140#20PC/DeviceCMYK 51 0 R]/PANTONE141PC[/Separation/PANTONE#20141#20PC/DeviceCMYK
+52 0 R]/PANTONE142PC[/Separation/PANTONE#20142#20PC/DeviceCMYK 53 0 R]/PANTONE143PC[/Separation/PANTONE#20143#20PC/DeviceCMYK
+54 0 R]/PANTONE144PC[/Separation/PANTONE#20144#20PC/DeviceCMYK 55 0 R]/PANTONE145PC[/Separation/PANTONE#20145#20PC/DeviceCMYK
+56 0 R]/PANTONE146PC[/Separation/PANTONE#20146#20PC/DeviceCMYK 57 0 R]/PANTONE147PC[/Separation/PANTONE#20147#20PC/DeviceCMYK
+58 0 R]/PANTONE148PC[/Separation/PANTONE#20148#20PC/DeviceCMYK 59 0 R]/PANTONE149PC[/Separation/PANTONE#20149#20PC/DeviceCMYK
+60 0 R]/PANTONE150PC[/Separation/PANTONE#20150#20PC/DeviceCMYK 61 0 R]/PANTONE151PC[/Separation/PANTONE#20151#20PC/DeviceCMYK
+62 0 R]/PANTONE152PC[/Separation/PANTONE#20152#20PC/DeviceCMYK 63 0 R]/PANTONE153PC[/Separation/PANTONE#20153#20PC/DeviceCMYK
+64 0 R]/PANTONE154PC[/Separation/PANTONE#20154#20PC/DeviceCMYK 65 0 R]/PANTONE155PC[/Separation/PANTONE#20155#20PC/DeviceCMYK
+66 0 R]/PANTONE156PC[/Separation/PANTONE#20156#20PC/DeviceCMYK 67 0 R]/PANTONE157PC[/Separation/PANTONE#20157#20PC/DeviceCMYK
+68 0 R]/PANTONE158PC[/Separation/PANTONE#20158#20PC/DeviceCMYK 69 0 R]/PANTONE159PC[/Separation/PANTONE#20159#20PC/DeviceCMYK
+70 0 R]/PANTONE160PC[/Separation/PANTONE#20160#20PC/DeviceCMYK 71 0 R]/PANTONE161PC[/Separation/PANTONE#20161#20PC/DeviceCMYK
+72 0 R]/PANTONE162PC[/Separation/PANTONE#20162#20PC/DeviceCMYK 73 0 R]/PANTONE163PC[/Separation/PANTONE#20163#20PC/DeviceCMYK
+74 0 R]/PANTONE164PC[/Separation/PANTONE#20164#20PC/DeviceCMYK 75 0 R]/PANTONE165PC[/Separation/PANTONE#20165#20PC/DeviceCMYK
+76 0 R]/PANTONE166PC[/Separation/PANTONE#20166#20PC/DeviceCMYK 77 0 R]/PANTONE167PC[/Separation/PANTONE#20167#20PC/DeviceCMYK
+78 0 R]/PANTONE168PC[/Separation/PANTONE#20168#20PC/DeviceCMYK 79 0 R]/PANTONE169PC[/Separation/PANTONE#20169#20PC/DeviceCMYK
+80 0 R]/PANTONE170PC[/Separation/PANTONE#20170#20PC/DeviceCMYK 81 0 R]/PANTONE171PC[/Separation/PANTONE#20171#20PC/DeviceCMYK
+82 0 R]/PANTONE172PC[/Separation/PANTONE#20172#20PC/DeviceCMYK 83 0 R]/PANTONE173PC[/Separation/PANTONE#20173#20PC/DeviceCMYK
+84 0 R]/PANTONE174PC[/Separation/PANTONE#20174#20PC/DeviceCMYK 85 0 R]/PANTONE175PC[/Separation/PANTONE#20175#20PC/DeviceCMYK
+86 0 R]/PANTONE176PC[/Separation/PANTONE#20176#20PC/DeviceCMYK 87 0 R]/PANTONE177PC[/Separation/PANTONE#20177#20PC/DeviceCMYK
+88 0 R]/PANTONE178PC[/Separation/PANTONE#20178#20PC/DeviceCMYK 89 0 R]/PANTONE179PC[/Separation/PANTONE#20179#20PC/DeviceCMYK
+90 0 R]/PANTONE180PC[/Separation/PANTONE#20180#20PC/DeviceCMYK 91 0 R]/PANTONE181PC[/Separation/PANTONE#20181#20PC/DeviceCMYK
+92 0 R]/PANTONE182PC[/Separation/PANTONE#20182#20PC/DeviceCMYK 93 0 R]/PANTONE183PC[/Separation/PANTONE#20183#20PC/DeviceCMYK
+94 0 R]/PANTONE184PC[/Separation/PANTONE#20184#20PC/DeviceCMYK 95 0 R]/PANTONE185PC[/Separation/PANTONE#20185#20PC/DeviceCMYK
+96 0 R]/PANTONE186PC[/Separation/PANTONE#20186#20PC/DeviceCMYK 97 0 R]/PANTONE187PC[/Separation/PANTONE#20187#20PC/DeviceCMYK
+98 0 R]/PANTONE188PC[/Separation/PANTONE#20188#20PC/DeviceCMYK 99 0 R]/PANTONE189PC[/Separation/PANTONE#20189#20PC/DeviceCMYK
+100 0 R]/PANTONE190PC[/Separation/PANTONE#20190#20PC/DeviceCMYK 101 0 R]/PANTONE191PC[/Separation/PANTONE#20191#20PC/DeviceCMYK
+102 0 R]/PANTONE192PC[/Separation/PANTONE#20192#20PC/DeviceCMYK 103 0 R]/PANTONE193PC[/Separation/PANTONE#20193#20PC/DeviceCMYK
+104 0 R]/PANTONE194PC[/Separation/PANTONE#20194#20PC/DeviceCMYK 105 0 R]/PANTONE195PC[/Separation/PANTONE#20195#20PC/DeviceCMYK
+106 0 R]/PANTONE196PC[/Separation/PANTONE#20196#20PC/DeviceCMYK 107 0 R]/PANTONE197PC[/Separation/PANTONE#20197#20PC/DeviceCMYK
+108 0 R]/PANTONE198PC[/Separation/PANTONE#20198#20PC/DeviceCMYK 109 0 R]/PANTONE199PC[/Separation/PANTONE#20199#20PC/DeviceCMYK
+110 0 R]/PANTONE200PC[/Separation/PANTONE#20200#20PC/DeviceCMYK 111 0 R]/PANTONE201PC[/Separation/PANTONE#20201#20PC/DeviceCMYK
+112 0 R]/PANTONE202PC[/Separation/PANTONE#20202#20PC/DeviceCMYK 113 0 R]/PANTONE203PC[/Separation/PANTONE#20203#20PC/DeviceCMYK
+114 0 R]/PANTONE204PC[/Separation/PANTONE#20204#20PC/DeviceCMYK 115 0 R]/PANTONE205PC[/Separation/PANTONE#20205#20PC/DeviceCMYK
+116 0 R]/PANTONE206PC[/Separation/PANTONE#20206#20PC/DeviceCMYK 117 0 R]/PANTONE207PC[/Separation/PANTONE#20207#20PC/DeviceCMYK
+118 0 R]/PANTONE208PC[/Separation/PANTONE#20208#20PC/DeviceCMYK 119 0 R]/PANTONE209PC[/Separation/PANTONE#20209#20PC/DeviceCMYK
+120 0 R]/PANTONE210PC[/Separation/PANTONE#20210#20PC/DeviceCMYK 121 0 R]/PANTONE211PC[/Separation/PANTONE#20211#20PC/DeviceCMYK
+122 0 R]/PANTONE212PC[/Separation/PANTONE#20212#20PC/DeviceCMYK 123 0 R]/PANTONE213PC[/Separation/PANTONE#20213#20PC/DeviceCMYK
+124 0 R]/PANTONE214PC[/Separation/PANTONE#20214#20PC/DeviceCMYK 125 0 R]/PANTONE215PC[/Separation/PANTONE#20215#20PC/DeviceCMYK
+126 0 R]/PANTONE216PC[/Separation/PANTONE#20216#20PC/DeviceCMYK 127 0 R]/PANTONE217PC[/Separation/PANTONE#20217#20PC/DeviceCMYK
+128 0 R]/PANTONE218PC[/Separation/PANTONE#20218#20PC/DeviceCMYK 129 0 R]/PANTONE219PC[/Separation/PANTONE#20219#20PC/DeviceCMYK
+130 0 R]/PANTONE220PC[/Separation/PANTONE#20220#20PC/DeviceCMYK 131 0 R]/PANTONE221PC[/Separation/PANTONE#20221#20PC/DeviceCMYK
+132 0 R]/PANTONE222PC[/Separation/PANTONE#20222#20PC/DeviceCMYK 133 0 R]/PANTONE223PC[/Separation/PANTONE#20223#20PC/DeviceCMYK
+134 0 R]/PANTONE224PC[/Separation/PANTONE#20224#20PC/DeviceCMYK 135 0 R]/PANTONE225PC[/Separation/PANTONE#20225#20PC/DeviceCMYK
+136 0 R]/PANTONE226PC[/Separation/PANTONE#20226#20PC/DeviceCMYK 137 0 R]/PANTONE227PC[/Separation/PANTONE#20227#20PC/DeviceCMYK
+138 0 R]/PANTONE228PC[/Separation/PANTONE#20228#20PC/DeviceCMYK 139 0 R]/PANTONE229PC[/Separation/PANTONE#20229#20PC/DeviceCMYK
+140 0 R]/PANTONE230PC[/Separation/PANTONE#20230#20PC/DeviceCMYK 141 0 R]/PANTONE231PC[/Separation/PANTONE#20231#20PC/DeviceCMYK
+142 0 R]/PANTONE232PC[/Separation/PANTONE#20232#20PC/DeviceCMYK 143 0 R]/PANTONE233PC[/Separation/PANTONE#20233#20PC/DeviceCMYK
+144 0 R]/PANTONE234PC[/Separation/PANTONE#20234#20PC/DeviceCMYK 145 0 R]/PANTONE235PC[/Separation/PANTONE#20235#20PC/DeviceCMYK
+146 0 R]/PANTONE236PC[/Separation/PANTONE#20236#20PC/DeviceCMYK 147 0 R]/PANTONE237PC[/Separation/PANTONE#20237#20PC/DeviceCMYK
+148 0 R]/PANTONE238PC[/Separation/PANTONE#20238#20PC/DeviceCMYK 149 0 R]/PANTONE239PC[/Separation/PANTONE#20239#20PC/DeviceCMYK
+150 0 R]/PANTONE240PC[/Separation/PANTONE#20240#20PC/DeviceCMYK 151 0 R]/PANTONE241PC[/Separation/PANTONE#20241#20PC/DeviceCMYK
+152 0 R]/PANTONE242PC[/Separation/PANTONE#20242#20PC/DeviceCMYK 153 0 R]/PANTONE243PC[/Separation/PANTONE#20243#20PC/DeviceCMYK
+154 0 R]/PANTONE244PC[/Separation/PANTONE#20244#20PC/DeviceCMYK 155 0 R]/PANTONE245PC[/Separation/PANTONE#20245#20PC/DeviceCMYK
+156 0 R]/PANTONE246PC[/Separation/PANTONE#20246#20PC/DeviceCMYK 157 0 R]/PANTONE247PC[/Separation/PANTONE#20247#20PC/DeviceCMYK
+158 0 R]/PANTONE248PC[/Separation/PANTONE#20248#20PC/DeviceCMYK 159 0 R]/PANTONE249PC[/Separation/PANTONE#20249#20PC/DeviceCMYK
+160 0 R]/PANTONE250PC[/Separation/PANTONE#20250#20PC/DeviceCMYK 161 0 R]/PANTONE251PC[/Separation/PANTONE#20251#20PC/DeviceCMYK
+162 0 R]/PANTONE252PC[/Separation/PANTONE#20252#20PC/DeviceCMYK 163 0 R]/PANTONE253PC[/Separation/PANTONE#20253#20PC/DeviceCMYK
+164 0 R]/PANTONE254PC[/Separation/PANTONE#20254#20PC/DeviceCMYK 165 0 R]/PANTONE255PC[/Separation/PANTONE#20255#20PC/DeviceCMYK
+166 0 R]/PANTONE256PC[/Separation/PANTONE#20256#20PC/DeviceCMYK 167 0 R]/PANTONE257PC[/Separation/PANTONE#20257#20PC/DeviceCMYK
+168 0 R]/PANTONE258PC[/Separation/PANTONE#20258#20PC/DeviceCMYK 169 0 R]/PANTONE259PC[/Separation/PANTONE#20259#20PC/DeviceCMYK
+170 0 R]/PANTONE260PC[/Separation/PANTONE#20260#20PC/DeviceCMYK 171 0 R]/PANTONE261PC[/Separation/PANTONE#20261#20PC/DeviceCMYK
+172 0 R]/PANTONE262PC[/Separation/PANTONE#20262#20PC/DeviceCMYK 173 0 R]/PANTONE263PC[/Separation/PANTONE#20263#20PC/DeviceCMYK
+174 0 R]/PANTONE264PC[/Separation/PANTONE#20264#20PC/DeviceCMYK 175 0 R]/PANTONE265PC[/Separation/PANTONE#20265#20PC/DeviceCMYK
+176 0 R]/PANTONE266PC[/Separation/PANTONE#20266#20PC/DeviceCMYK 177 0 R]/PANTONE267PC[/Separation/PANTONE#20267#20PC/DeviceCMYK
+178 0 R]/PANTONE268PC[/Separation/PANTONE#20268#20PC/DeviceCMYK 179 0 R]/PANTONE269PC[/Separation/PANTONE#20269#20PC/DeviceCMYK
+180 0 R]/PANTONE270PC[/Separation/PANTONE#20270#20PC/DeviceCMYK 181 0 R]/PANTONE271PC[/Separation/PANTONE#20271#20PC/DeviceCMYK
+182 0 R]/PANTONE272PC[/Separation/PANTONE#20272#20PC/DeviceCMYK 183 0 R]/PANTONE273PC[/Separation/PANTONE#20273#20PC/DeviceCMYK
+184 0 R]/PANTONE274PC[/Separation/PANTONE#20274#20PC/DeviceCMYK 185 0 R]/PANTONE275PC[/Separation/PANTONE#20275#20PC/DeviceCMYK
+186 0 R]/PANTONE276PC[/Separation/PANTONE#20276#20PC/DeviceCMYK 187 0 R]/PANTONE277PC[/Separation/PANTONE#20277#20PC/DeviceCMYK
+188 0 R]/PANTONE278PC[/Separation/PANTONE#20278#20PC/DeviceCMYK 189 0 R]/PANTONE279PC[/Separation/PANTONE#20279#20PC/DeviceCMYK
+190 0 R]/PANTONE280PC[/Separation/PANTONE#20280#20PC/DeviceCMYK 191 0 R]/PANTONE281PC[/Separation/PANTONE#20281#20PC/DeviceCMYK
+192 0 R]/PANTONE282PC[/Separation/PANTONE#20282#20PC/DeviceCMYK 193 0 R]/PANTONE283PC[/Separation/PANTONE#20283#20PC/DeviceCMYK
+194 0 R]/PANTONE284PC[/Separation/PANTONE#20284#20PC/DeviceCMYK 195 0 R]/PANTONE285PC[/Separation/PANTONE#20285#20PC/DeviceCMYK
+196 0 R]/PANTONE286PC[/Separation/PANTONE#20286#20PC/DeviceCMYK 197 0 R]/PANTONE287PC[/Separation/PANTONE#20287#20PC/DeviceCMYK
+198 0 R]/PANTONE288PC[/Separation/PANTONE#20288#20PC/DeviceCMYK 199 0 R]/PANTONE289PC[/Separation/PANTONE#20289#20PC/DeviceCMYK
+200 0 R]/PANTONE290PC[/Separation/PANTONE#20290#20PC/DeviceCMYK 201 0 R]/PANTONE291PC[/Separation/PANTONE#20291#20PC/DeviceCMYK
+202 0 R]/PANTONE292PC[/Separation/PANTONE#20292#20PC/DeviceCMYK 203 0 R]/PANTONE293PC[/Separation/PANTONE#20293#20PC/DeviceCMYK
+204 0 R]/PANTONE294PC[/Separation/PANTONE#20294#20PC/DeviceCMYK 205 0 R]/PANTONE295PC[/Separation/PANTONE#20295#20PC/DeviceCMYK
+206 0 R]/PANTONE296PC[/Separation/PANTONE#20296#20PC/DeviceCMYK 207 0 R]/PANTONE297PC[/Separation/PANTONE#20297#20PC/DeviceCMYK
+208 0 R]/PANTONE298PC[/Separation/PANTONE#20298#20PC/DeviceCMYK 209 0 R]/PANTONE299PC[/Separation/PANTONE#20299#20PC/DeviceCMYK
+210 0 R]/PANTONE300PC[/Separation/PANTONE#20300#20PC/DeviceCMYK 211 0 R]/PANTONE301PC[/Separation/PANTONE#20301#20PC/DeviceCMYK
+212 0 R]/PANTONE302PC[/Separation/PANTONE#20302#20PC/DeviceCMYK 213 0 R]/PANTONE303PC[/Separation/PANTONE#20303#20PC/DeviceCMYK
+214 0 R]/PANTONE304PC[/Separation/PANTONE#20304#20PC/DeviceCMYK 215 0 R]/PANTONE305PC[/Separation/PANTONE#20305#20PC/DeviceCMYK
+216 0 R]/PANTONE306PC[/Separation/PANTONE#20306#20PC/DeviceCMYK 217 0 R]/PANTONE307PC[/Separation/PANTONE#20307#20PC/DeviceCMYK
+218 0 R]/PANTONE308PC[/Separation/PANTONE#20308#20PC/DeviceCMYK 219 0 R]/PANTONE309PC[/Separation/PANTONE#20309#20PC/DeviceCMYK
+220 0 R]/PANTONE310PC[/Separation/PANTONE#20310#20PC/DeviceCMYK 221 0 R]/PANTONE311PC[/Separation/PANTONE#20311#20PC/DeviceCMYK
+222 0 R]/PANTONE312PC[/Separation/PANTONE#20312#20PC/DeviceCMYK 223 0 R]/PANTONE313PC[/Separation/PANTONE#20313#20PC/DeviceCMYK
+224 0 R]/PANTONE314PC[/Separation/PANTONE#20314#20PC/DeviceCMYK 225 0 R]/PANTONE315PC[/Separation/PANTONE#20315#20PC/DeviceCMYK
+226 0 R]/PANTONE316PC[/Separation/PANTONE#20316#20PC/DeviceCMYK 227 0 R]/PANTONE317PC[/Separation/PANTONE#20317#20PC/DeviceCMYK
+228 0 R]/PANTONE318PC[/Separation/PANTONE#20318#20PC/DeviceCMYK 229 0 R]/PANTONE319PC[/Separation/PANTONE#20319#20PC/DeviceCMYK
+230 0 R]/PANTONE320PC[/Separation/PANTONE#20320#20PC/DeviceCMYK 231 0 R]/PANTONE321PC[/Separation/PANTONE#20321#20PC/DeviceCMYK
+232 0 R]/PANTONE322PC[/Separation/PANTONE#20322#20PC/DeviceCMYK 233 0 R]/PANTONE323PC[/Separation/PANTONE#20323#20PC/DeviceCMYK
+234 0 R]/PANTONE324PC[/Separation/PANTONE#20324#20PC/DeviceCMYK 235 0 R]/PANTONE325PC[/Separation/PANTONE#20325#20PC/DeviceCMYK
+236 0 R]/PANTONE326PC[/Separation/PANTONE#20326#20PC/DeviceCMYK 237 0 R]/PANTONE327PC[/Separation/PANTONE#20327#20PC/DeviceCMYK
+238 0 R]/PANTONE328PC[/Separation/PANTONE#20328#20PC/DeviceCMYK 239 0 R]/PANTONE329PC[/Separation/PANTONE#20329#20PC/DeviceCMYK
+240 0 R]/PANTONE330PC[/Separation/PANTONE#20330#20PC/DeviceCMYK 241 0 R]/PANTONE331PC[/Separation/PANTONE#20331#20PC/DeviceCMYK
+242 0 R]/PANTONE332PC[/Separation/PANTONE#20332#20PC/DeviceCMYK 243 0 R]/PANTONE333PC[/Separation/PANTONE#20333#20PC/DeviceCMYK
+244 0 R]/PANTONE334PC[/Separation/PANTONE#20334#20PC/DeviceCMYK 245 0 R]/PANTONE335PC[/Separation/PANTONE#20335#20PC/DeviceCMYK
+246 0 R]/PANTONE336PC[/Separation/PANTONE#20336#20PC/DeviceCMYK 247 0 R]/PANTONE337PC[/Separation/PANTONE#20337#20PC/DeviceCMYK
+248 0 R]/PANTONE338PC[/Separation/PANTONE#20338#20PC/DeviceCMYK 249 0 R]/PANTONE339PC[/Separation/PANTONE#20339#20PC/DeviceCMYK
+250 0 R]/PANTONE340PC[/Separation/PANTONE#20340#20PC/DeviceCMYK 251 0 R]/PANTONE341PC[/Separation/PANTONE#20341#20PC/DeviceCMYK
+252 0 R]/PANTONE342PC[/Separation/PANTONE#20342#20PC/DeviceCMYK 253 0 R]/PANTONE343PC[/Separation/PANTONE#20343#20PC/DeviceCMYK
+254 0 R]/PANTONE344PC[/Separation/PANTONE#20344#20PC/DeviceCMYK 255 0 R]/PANTONE345PC[/Separation/PANTONE#20345#20PC/DeviceCMYK
+256 0 R]/PANTONE346PC[/Separation/PANTONE#20346#20PC/DeviceCMYK 257 0 R]/PANTONE347PC[/Separation/PANTONE#20347#20PC/DeviceCMYK
+258 0 R]/PANTONE348PC[/Separation/PANTONE#20348#20PC/DeviceCMYK 259 0 R]/PANTONE349PC[/Separation/PANTONE#20349#20PC/DeviceCMYK
+260 0 R]/PANTONE350PC[/Separation/PANTONE#20350#20PC/DeviceCMYK 261 0 R]/PANTONE351PC[/Separation/PANTONE#20351#20PC/DeviceCMYK
+262 0 R]/PANTONE352PC[/Separation/PANTONE#20352#20PC/DeviceCMYK 263 0 R]/PANTONE353PC[/Separation/PANTONE#20353#20PC/DeviceCMYK
+264 0 R]/PANTONE354PC[/Separation/PANTONE#20354#20PC/DeviceCMYK 265 0 R]/PANTONE355PC[/Separation/PANTONE#20355#20PC/DeviceCMYK
+266 0 R]/PANTONE356PC[/Separation/PANTONE#20356#20PC/DeviceCMYK 267 0 R]/PANTONE357PC[/Separation/PANTONE#20357#20PC/DeviceCMYK
+268 0 R]/PANTONE358PC[/Separation/PANTONE#20358#20PC/DeviceCMYK 269 0 R]/PANTONE359PC[/Separation/PANTONE#20359#20PC/DeviceCMYK
+270 0 R]/PANTONE360PC[/Separation/PANTONE#20360#20PC/DeviceCMYK 271 0 R]/PANTONE361PC[/Separation/PANTONE#20361#20PC/DeviceCMYK
+272 0 R]/PANTONE362PC[/Separation/PANTONE#20362#20PC/DeviceCMYK 273 0 R]/PANTONE363PC[/Separation/PANTONE#20363#20PC/DeviceCMYK
+274 0 R]/PANTONE364PC[/Separation/PANTONE#20364#20PC/DeviceCMYK 275 0 R]/PANTONE365PC[/Separation/PANTONE#20365#20PC/DeviceCMYK
+276 0 R]/PANTONE366PC[/Separation/PANTONE#20366#20PC/DeviceCMYK 277 0 R]/PANTONE367PC[/Separation/PANTONE#20367#20PC/DeviceCMYK
+278 0 R]/PANTONE368PC[/Separation/PANTONE#20368#20PC/DeviceCMYK 279 0 R]/PANTONE369PC[/Separation/PANTONE#20369#20PC/DeviceCMYK
+280 0 R]/PANTONE370PC[/Separation/PANTONE#20370#20PC/DeviceCMYK 281 0 R]/PANTONE371PC[/Separation/PANTONE#20371#20PC/DeviceCMYK
+282 0 R]/PANTONE372PC[/Separation/PANTONE#20372#20PC/DeviceCMYK 283 0 R]/PANTONE373PC[/Separation/PANTONE#20373#20PC/DeviceCMYK
+284 0 R]/PANTONE374PC[/Separation/PANTONE#20374#20PC/DeviceCMYK 285 0 R]/PANTONE375PC[/Separation/PANTONE#20375#20PC/DeviceCMYK
+286 0 R]/PANTONE376PC[/Separation/PANTONE#20376#20PC/DeviceCMYK 287 0 R]/PANTONE377PC[/Separation/PANTONE#20377#20PC/DeviceCMYK
+288 0 R]/PANTONE378PC[/Separation/PANTONE#20378#20PC/DeviceCMYK 289 0 R]/PANTONE379PC[/Separation/PANTONE#20379#20PC/DeviceCMYK
+290 0 R]/PANTONE380PC[/Separation/PANTONE#20380#20PC/DeviceCMYK 291 0 R]/PANTONE381PC[/Separation/PANTONE#20381#20PC/DeviceCMYK
+292 0 R]/PANTONE382PC[/Separation/PANTONE#20382#20PC/DeviceCMYK 293 0 R]/PANTONE383PC[/Separation/PANTONE#20383#20PC/DeviceCMYK
+294 0 R]/PANTONE384PC[/Separation/PANTONE#20384#20PC/DeviceCMYK 295 0 R]/PANTONE385PC[/Separation/PANTONE#20385#20PC/DeviceCMYK
+296 0 R]/PANTONE386PC[/Separation/PANTONE#20386#20PC/DeviceCMYK 297 0 R]/PANTONE387PC[/Separation/PANTONE#20387#20PC/DeviceCMYK
+298 0 R]/PANTONE388PC[/Separation/PANTONE#20388#20PC/DeviceCMYK 299 0 R]/PANTONE389PC[/Separation/PANTONE#20389#20PC/DeviceCMYK
+300 0 R]/PANTONE390PC[/Separation/PANTONE#20390#20PC/DeviceCMYK 301 0 R]/PANTONE391PC[/Separation/PANTONE#20391#20PC/DeviceCMYK
+302 0 R]/PANTONE392PC[/Separation/PANTONE#20392#20PC/DeviceCMYK 303 0 R]/PANTONE393PC[/Separation/PANTONE#20393#20PC/DeviceCMYK
+304 0 R]/PANTONE394PC[/Separation/PANTONE#20394#20PC/DeviceCMYK 305 0 R]/PANTONE395PC[/Separation/PANTONE#20395#20PC/DeviceCMYK
+306 0 R]/PANTONE396PC[/Separation/PANTONE#20396#20PC/DeviceCMYK 307 0 R]/PANTONE397PC[/Separation/PANTONE#20397#20PC/DeviceCMYK
+308 0 R]/PANTONE398PC[/Separation/PANTONE#20398#20PC/DeviceCMYK 309 0 R]/PANTONE399PC[/Separation/PANTONE#20399#20PC/DeviceCMYK
+310 0 R]/PANTONE400PC[/Separation/PANTONE#20400#20PC/DeviceCMYK 311 0 R]/PANTONE401PC[/Separation/PANTONE#20401#20PC/DeviceCMYK
+312 0 R]/PANTONE402PC[/Separation/PANTONE#20402#20PC/DeviceCMYK 313 0 R]/PANTONE403PC[/Separation/PANTONE#20403#20PC/DeviceCMYK
+314 0 R]/PANTONE404PC[/Separation/PANTONE#20404#20PC/DeviceCMYK 315 0 R]/PANTONE405PC[/Separation/PANTONE#20405#20PC/DeviceCMYK
+316 0 R]/PANTONE406PC[/Separation/PANTONE#20406#20PC/DeviceCMYK 317 0 R]/PANTONE407PC[/Separation/PANTONE#20407#20PC/DeviceCMYK
+318 0 R]/PANTONE408PC[/Separation/PANTONE#20408#20PC/DeviceCMYK 319 0 R]/PANTONE409PC[/Separation/PANTONE#20409#20PC/DeviceCMYK
+320 0 R]/PANTONE410PC[/Separation/PANTONE#20410#20PC/DeviceCMYK 321 0 R]/PANTONE411PC[/Separation/PANTONE#20411#20PC/DeviceCMYK
+322 0 R]/PANTONE412PC[/Separation/PANTONE#20412#20PC/DeviceCMYK 323 0 R]/PANTONE413PC[/Separation/PANTONE#20413#20PC/DeviceCMYK
+324 0 R]/PANTONE414PC[/Separation/PANTONE#20414#20PC/DeviceCMYK 325 0 R]/PANTONE415PC[/Separation/PANTONE#20415#20PC/DeviceCMYK
+326 0 R]/PANTONE416PC[/Separation/PANTONE#20416#20PC/DeviceCMYK 327 0 R]/PANTONE417PC[/Separation/PANTONE#20417#20PC/DeviceCMYK
+328 0 R]/PANTONE418PC[/Separation/PANTONE#20418#20PC/DeviceCMYK 329 0 R]/PANTONE419PC[/Separation/PANTONE#20419#20PC/DeviceCMYK
+330 0 R]/PANTONE420PC[/Separation/PANTONE#20420#20PC/DeviceCMYK 331 0 R]/PANTONE421PC[/Separation/PANTONE#20421#20PC/DeviceCMYK
+332 0 R]/PANTONE422PC[/Separation/PANTONE#20422#20PC/DeviceCMYK 333 0 R]/PANTONE423PC[/Separation/PANTONE#20423#20PC/DeviceCMYK
+334 0 R]/PANTONE424PC[/Separation/PANTONE#20424#20PC/DeviceCMYK 335 0 R]/PANTONE425PC[/Separation/PANTONE#20425#20PC/DeviceCMYK
+336 0 R]/PANTONE426PC[/Separation/PANTONE#20426#20PC/DeviceCMYK 337 0 R]/PANTONE427PC[/Separation/PANTONE#20427#20PC/DeviceCMYK
+338 0 R]/PANTONE428PC[/Separation/PANTONE#20428#20PC/DeviceCMYK 339 0 R]/PANTONE429PC[/Separation/PANTONE#20429#20PC/DeviceCMYK
+340 0 R]/PANTONE430PC[/Separation/PANTONE#20430#20PC/DeviceCMYK 341 0 R]/PANTONE431PC[/Separation/PANTONE#20431#20PC/DeviceCMYK
+342 0 R]/PANTONE432PC[/Separation/PANTONE#20432#20PC/DeviceCMYK 343 0 R]/PANTONE433PC[/Separation/PANTONE#20433#20PC/DeviceCMYK
+344 0 R]/PANTONE434PC[/Separation/PANTONE#20434#20PC/DeviceCMYK 345 0 R]/PANTONE435PC[/Separation/PANTONE#20435#20PC/DeviceCMYK
+346 0 R]/PANTONE436PC[/Separation/PANTONE#20436#20PC/DeviceCMYK 347 0 R]/PANTONE437PC[/Separation/PANTONE#20437#20PC/DeviceCMYK
+348 0 R]/PANTONE438PC[/Separation/PANTONE#20438#20PC/DeviceCMYK 349 0 R]/PANTONE439PC[/Separation/PANTONE#20439#20PC/DeviceCMYK
+350 0 R]/PANTONE440PC[/Separation/PANTONE#20440#20PC/DeviceCMYK 351 0 R]/PANTONE441PC[/Separation/PANTONE#20441#20PC/DeviceCMYK
+352 0 R]/PANTONE442PC[/Separation/PANTONE#20442#20PC/DeviceCMYK 353 0 R]/PANTONE443PC[/Separation/PANTONE#20443#20PC/DeviceCMYK
+354 0 R]/PANTONE444PC[/Separation/PANTONE#20444#20PC/DeviceCMYK 355 0 R]/PANTONE445PC[/Separation/PANTONE#20445#20PC/DeviceCMYK
+356 0 R]/PANTONE446PC[/Separation/PANTONE#20446#20PC/DeviceCMYK 357 0 R]/PANTONE447PC[/Separation/PANTONE#20447#20PC/DeviceCMYK
+358 0 R]/PANTONE448PC[/Separation/PANTONE#20448#20PC/DeviceCMYK 359 0 R]/PANTONE449PC[/Separation/PANTONE#20449#20PC/DeviceCMYK
+360 0 R]/PANTONE450PC[/Separation/PANTONE#20450#20PC/DeviceCMYK 361 0 R]/PANTONE451PC[/Separation/PANTONE#20451#20PC/DeviceCMYK
+362 0 R]/PANTONE452PC[/Separation/PANTONE#20452#20PC/DeviceCMYK 363 0 R]/PANTONE453PC[/Separation/PANTONE#20453#20PC/DeviceCMYK
+364 0 R]/PANTONE454PC[/Separation/PANTONE#20454#20PC/DeviceCMYK 365 0 R]/PANTONE455PC[/Separation/PANTONE#20455#20PC/DeviceCMYK
+366 0 R]/PANTONE456PC[/Separation/PANTONE#20456#20PC/DeviceCMYK 367 0 R]/PANTONE457PC[/Separation/PANTONE#20457#20PC/DeviceCMYK
+368 0 R]/PANTONE458PC[/Separation/PANTONE#20458#20PC/DeviceCMYK 369 0 R]/PANTONE459PC[/Separation/PANTONE#20459#20PC/DeviceCMYK
+370 0 R]/PANTONE460PC[/Separation/PANTONE#20460#20PC/DeviceCMYK 371 0 R]/PANTONE461PC[/Separation/PANTONE#20461#20PC/DeviceCMYK
+372 0 R]/PANTONE462PC[/Separation/PANTONE#20462#20PC/DeviceCMYK 373 0 R]/PANTONE463PC[/Separation/PANTONE#20463#20PC/DeviceCMYK
+374 0 R]/PANTONE464PC[/Separation/PANTONE#20464#20PC/DeviceCMYK 375 0 R]/PANTONE465PC[/Separation/PANTONE#20465#20PC/DeviceCMYK
+376 0 R]/PANTONE466PC[/Separation/PANTONE#20466#20PC/DeviceCMYK 377 0 R]/PANTONE467PC[/Separation/PANTONE#20467#20PC/DeviceCMYK
+378 0 R]/PANTONE468PC[/Separation/PANTONE#20468#20PC/DeviceCMYK 379 0 R]/PANTONE469PC[/Separation/PANTONE#20469#20PC/DeviceCMYK
+380 0 R]/PANTONE470PC[/Separation/PANTONE#20470#20PC/DeviceCMYK 381 0 R]/PANTONE471PC[/Separation/PANTONE#20471#20PC/DeviceCMYK
+382 0 R]/PANTONE472PC[/Separation/PANTONE#20472#20PC/DeviceCMYK 383 0 R]/PANTONE473PC[/Separation/PANTONE#20473#20PC/DeviceCMYK
+384 0 R]/PANTONE474PC[/Separation/PANTONE#20474#20PC/DeviceCMYK 385 0 R]/PANTONE475PC[/Separation/PANTONE#20475#20PC/DeviceCMYK
+386 0 R]/PANTONE476PC[/Separation/PANTONE#20476#20PC/DeviceCMYK 387 0 R]/PANTONE477PC[/Separation/PANTONE#20477#20PC/DeviceCMYK
+388 0 R]/PANTONE478PC[/Separation/PANTONE#20478#20PC/DeviceCMYK 389 0 R]/PANTONE479PC[/Separation/PANTONE#20479#20PC/DeviceCMYK
+390 0 R]/PANTONE480PC[/Separation/PANTONE#20480#20PC/DeviceCMYK 391 0 R]/PANTONE481PC[/Separation/PANTONE#20481#20PC/DeviceCMYK
+392 0 R]/PANTONE482PC[/Separation/PANTONE#20482#20PC/DeviceCMYK 393 0 R]/PANTONE483PC[/Separation/PANTONE#20483#20PC/DeviceCMYK
+394 0 R]/PANTONE484PC[/Separation/PANTONE#20484#20PC/DeviceCMYK 395 0 R]/PANTONE485PC[/Separation/PANTONE#20485#20PC/DeviceCMYK
+396 0 R]/PANTONE486PC[/Separation/PANTONE#20486#20PC/DeviceCMYK 397 0 R]/PANTONE487PC[/Separation/PANTONE#20487#20PC/DeviceCMYK
+398 0 R]/PANTONE488PC[/Separation/PANTONE#20488#20PC/DeviceCMYK 399 0 R]/PANTONE489PC[/Separation/PANTONE#20489#20PC/DeviceCMYK
+400 0 R]/PANTONE490PC[/Separation/PANTONE#20490#20PC/DeviceCMYK 401 0 R]/PANTONE491PC[/Separation/PANTONE#20491#20PC/DeviceCMYK
+402 0 R]/PANTONE492PC[/Separation/PANTONE#20492#20PC/DeviceCMYK 403 0 R]/PANTONE493PC[/Separation/PANTONE#20493#20PC/DeviceCMYK
+404 0 R]/PANTONE494PC[/Separation/PANTONE#20494#20PC/DeviceCMYK 405 0 R]/PANTONE495PC[/Separation/PANTONE#20495#20PC/DeviceCMYK
+406 0 R]/PANTONE496PC[/Separation/PANTONE#20496#20PC/DeviceCMYK 407 0 R]/PANTONE497PC[/Separation/PANTONE#20497#20PC/DeviceCMYK
+408 0 R]/PANTONE498PC[/Separation/PANTONE#20498#20PC/DeviceCMYK 409 0 R]/PANTONE499PC[/Separation/PANTONE#20499#20PC/DeviceCMYK
+410 0 R]/PANTONE500PC[/Separation/PANTONE#20500#20PC/DeviceCMYK 411 0 R]/PANTONE501PC[/Separation/PANTONE#20501#20PC/DeviceCMYK
+412 0 R]/PANTONE502PC[/Separation/PANTONE#20502#20PC/DeviceCMYK 413 0 R]/PANTONE503PC[/Separation/PANTONE#20503#20PC/DeviceCMYK
+414 0 R]/PANTONE504PC[/Separation/PANTONE#20504#20PC/DeviceCMYK 415 0 R]/PANTONE505PC[/Separation/PANTONE#20505#20PC/DeviceCMYK
+416 0 R]/PANTONE506PC[/Separation/PANTONE#20506#20PC/DeviceCMYK 417 0 R]/PANTONE507PC[/Separation/PANTONE#20507#20PC/DeviceCMYK
+418 0 R]/PANTONE508PC[/Separation/PANTONE#20508#20PC/DeviceCMYK 419 0 R]/PANTONE509PC[/Separation/PANTONE#20509#20PC/DeviceCMYK
+420 0 R]/PANTONE510PC[/Separation/PANTONE#20510#20PC/DeviceCMYK 421 0 R]/PANTONE511PC[/Separation/PANTONE#20511#20PC/DeviceCMYK
+422 0 R]/PANTONE512PC[/Separation/PANTONE#20512#20PC/DeviceCMYK 423 0 R]/PANTONE513PC[/Separation/PANTONE#20513#20PC/DeviceCMYK
+424 0 R]/PANTONE514PC[/Separation/PANTONE#20514#20PC/DeviceCMYK 425 0 R]/PANTONE515PC[/Separation/PANTONE#20515#20PC/DeviceCMYK
+426 0 R]/PANTONE516PC[/Separation/PANTONE#20516#20PC/DeviceCMYK 427 0 R]/PANTONE517PC[/Separation/PANTONE#20517#20PC/DeviceCMYK
+428 0 R]/PANTONE518PC[/Separation/PANTONE#20518#20PC/DeviceCMYK 429 0 R]/PANTONE519PC[/Separation/PANTONE#20519#20PC/DeviceCMYK
+430 0 R]/PANTONE520PC[/Separation/PANTONE#20520#20PC/DeviceCMYK 431 0 R]/PANTONE521PC[/Separation/PANTONE#20521#20PC/DeviceCMYK
+432 0 R]/PANTONE522PC[/Separation/PANTONE#20522#20PC/DeviceCMYK 433 0 R]/PANTONE523PC[/Separation/PANTONE#20523#20PC/DeviceCMYK
+434 0 R]/PANTONE524PC[/Separation/PANTONE#20524#20PC/DeviceCMYK 435 0 R]/PANTONE525PC[/Separation/PANTONE#20525#20PC/DeviceCMYK
+436 0 R]/PANTONE526PC[/Separation/PANTONE#20526#20PC/DeviceCMYK 437 0 R]/PANTONE527PC[/Separation/PANTONE#20527#20PC/DeviceCMYK
+438 0 R]/PANTONE528PC[/Separation/PANTONE#20528#20PC/DeviceCMYK 439 0 R]/PANTONE529PC[/Separation/PANTONE#20529#20PC/DeviceCMYK
+440 0 R]/PANTONE530PC[/Separation/PANTONE#20530#20PC/DeviceCMYK 441 0 R]/PANTONE531PC[/Separation/PANTONE#20531#20PC/DeviceCMYK
+442 0 R]/PANTONE532PC[/Separation/PANTONE#20532#20PC/DeviceCMYK 443 0 R]/PANTONE533PC[/Separation/PANTONE#20533#20PC/DeviceCMYK
+444 0 R]/PANTONE534PC[/Separation/PANTONE#20534#20PC/DeviceCMYK 445 0 R]/PANTONE535PC[/Separation/PANTONE#20535#20PC/DeviceCMYK
+446 0 R]/PANTONE536PC[/Separation/PANTONE#20536#20PC/DeviceCMYK 447 0 R]/PANTONE537PC[/Separation/PANTONE#20537#20PC/DeviceCMYK
+448 0 R]/PANTONE538PC[/Separation/PANTONE#20538#20PC/DeviceCMYK 449 0 R]/PANTONE539PC[/Separation/PANTONE#20539#20PC/DeviceCMYK
+450 0 R]/PANTONE540PC[/Separation/PANTONE#20540#20PC/DeviceCMYK 451 0 R]/PANTONE541PC[/Separation/PANTONE#20541#20PC/DeviceCMYK
+452 0 R]/PANTONE542PC[/Separation/PANTONE#20542#20PC/DeviceCMYK 453 0 R]/PANTONE543PC[/Separation/PANTONE#20543#20PC/DeviceCMYK
+454 0 R]/PANTONE544PC[/Separation/PANTONE#20544#20PC/DeviceCMYK 455 0 R]/PANTONE545PC[/Separation/PANTONE#20545#20PC/DeviceCMYK
+456 0 R]/PANTONE546PC[/Separation/PANTONE#20546#20PC/DeviceCMYK 457 0 R]/PANTONE547PC[/Separation/PANTONE#20547#20PC/DeviceCMYK
+458 0 R]/PANTONE548PC[/Separation/PANTONE#20548#20PC/DeviceCMYK 459 0 R]/PANTONE549PC[/Separation/PANTONE#20549#20PC/DeviceCMYK
+460 0 R]/PANTONE550PC[/Separation/PANTONE#20550#20PC/DeviceCMYK 461 0 R]/PANTONE551PC[/Separation/PANTONE#20551#20PC/DeviceCMYK
+462 0 R]/PANTONE552PC[/Separation/PANTONE#20552#20PC/DeviceCMYK 463 0 R]/PANTONE553PC[/Separation/PANTONE#20553#20PC/DeviceCMYK
+464 0 R]/PANTONE554PC[/Separation/PANTONE#20554#20PC/DeviceCMYK 465 0 R]/PANTONE555PC[/Separation/PANTONE#20555#20PC/DeviceCMYK
+466 0 R]/PANTONE556PC[/Separation/PANTONE#20556#20PC/DeviceCMYK 467 0 R]/PANTONE557PC[/Separation/PANTONE#20557#20PC/DeviceCMYK
+468 0 R]/PANTONE558PC[/Separation/PANTONE#20558#20PC/DeviceCMYK 469 0 R]/PANTONE559PC[/Separation/PANTONE#20559#20PC/DeviceCMYK
+470 0 R]/PANTONE560PC[/Separation/PANTONE#20560#20PC/DeviceCMYK 471 0 R]/PANTONE561PC[/Separation/PANTONE#20561#20PC/DeviceCMYK
+472 0 R]/PANTONE562PC[/Separation/PANTONE#20562#20PC/DeviceCMYK 473 0 R]/PANTONE563PC[/Separation/PANTONE#20563#20PC/DeviceCMYK
+474 0 R]/PANTONE564PC[/Separation/PANTONE#20564#20PC/DeviceCMYK 475 0 R]/PANTONE565PC[/Separation/PANTONE#20565#20PC/DeviceCMYK
+476 0 R]/PANTONE566PC[/Separation/PANTONE#20566#20PC/DeviceCMYK 477 0 R]/PANTONE567PC[/Separation/PANTONE#20567#20PC/DeviceCMYK
+478 0 R]/PANTONE568PC[/Separation/PANTONE#20568#20PC/DeviceCMYK 479 0 R]/PANTONE569PC[/Separation/PANTONE#20569#20PC/DeviceCMYK
+480 0 R]/PANTONE570PC[/Separation/PANTONE#20570#20PC/DeviceCMYK 481 0 R]/PANTONE571PC[/Separation/PANTONE#20571#20PC/DeviceCMYK
+482 0 R]/PANTONE572PC[/Separation/PANTONE#20572#20PC/DeviceCMYK 483 0 R]/PANTONE573PC[/Separation/PANTONE#20573#20PC/DeviceCMYK
+484 0 R]/PANTONE574PC[/Separation/PANTONE#20574#20PC/DeviceCMYK 485 0 R]/PANTONE575PC[/Separation/PANTONE#20575#20PC/DeviceCMYK
+486 0 R]/PANTONE576PC[/Separation/PANTONE#20576#20PC/DeviceCMYK 487 0 R]/PANTONE577PC[/Separation/PANTONE#20577#20PC/DeviceCMYK
+488 0 R]/PANTONE578PC[/Separation/PANTONE#20578#20PC/DeviceCMYK 489 0 R]/PANTONE579PC[/Separation/PANTONE#20579#20PC/DeviceCMYK
+490 0 R]/PANTONE580PC[/Separation/PANTONE#20580#20PC/DeviceCMYK 491 0 R]/PANTONE581PC[/Separation/PANTONE#20581#20PC/DeviceCMYK
+492 0 R]/PANTONE582PC[/Separation/PANTONE#20582#20PC/DeviceCMYK 493 0 R]/PANTONE583PC[/Separation/PANTONE#20583#20PC/DeviceCMYK
+494 0 R]/PANTONE584PC[/Separation/PANTONE#20584#20PC/DeviceCMYK 495 0 R]/PANTONE585PC[/Separation/PANTONE#20585#20PC/DeviceCMYK
+496 0 R]/PANTONE586PC[/Separation/PANTONE#20586#20PC/DeviceCMYK 497 0 R]/PANTONE587PC[/Separation/PANTONE#20587#20PC/DeviceCMYK
+498 0 R]/PANTONE600PC[/Separation/PANTONE#20600#20PC/DeviceCMYK 499 0 R]/PANTONE601PC[/Separation/PANTONE#20601#20PC/DeviceCMYK
+500 0 R]/PANTONE602PC[/Separation/PANTONE#20602#20PC/DeviceCMYK 501 0 R]/PANTONE603PC[/Separation/PANTONE#20603#20PC/DeviceCMYK
+502 0 R]/PANTONE604PC[/Separation/PANTONE#20604#20PC/DeviceCMYK 503 0 R]/PANTONE605PC[/Separation/PANTONE#20605#20PC/DeviceCMYK
+504 0 R]/PANTONE606PC[/Separation/PANTONE#20606#20PC/DeviceCMYK 505 0 R]/PANTONE607PC[/Separation/PANTONE#20607#20PC/DeviceCMYK
+506 0 R]/PANTONE608PC[/Separation/PANTONE#20608#20PC/DeviceCMYK 507 0 R]/PANTONE609PC[/Separation/PANTONE#20609#20PC/DeviceCMYK
+508 0 R]/PANTONE610PC[/Separation/PANTONE#20610#20PC/DeviceCMYK 509 0 R]/PANTONE611PC[/Separation/PANTONE#20611#20PC/DeviceCMYK
+510 0 R]/PANTONE612PC[/Separation/PANTONE#20612#20PC/DeviceCMYK 511 0 R]/PANTONE613PC[/Separation/PANTONE#20613#20PC/DeviceCMYK
+512 0 R]/PANTONE614PC[/Separation/PANTONE#20614#20PC/DeviceCMYK 513 0 R]/PANTONE615PC[/Separation/PANTONE#20615#20PC/DeviceCMYK
+514 0 R]/PANTONE616PC[/Separation/PANTONE#20616#20PC/DeviceCMYK 515 0 R]/PANTONE617PC[/Separation/PANTONE#20617#20PC/DeviceCMYK
+516 0 R]/PANTONE618PC[/Separation/PANTONE#20618#20PC/DeviceCMYK 517 0 R]/PANTONE619PC[/Separation/PANTONE#20619#20PC/DeviceCMYK
+518 0 R]/PANTONE620PC[/Separation/PANTONE#20620#20PC/DeviceCMYK 519 0 R]/PANTONE621PC[/Separation/PANTONE#20621#20PC/DeviceCMYK
+520 0 R]/PANTONE622PC[/Separation/PANTONE#20622#20PC/DeviceCMYK 521 0 R]/PANTONE623PC[/Separation/PANTONE#20623#20PC/DeviceCMYK
+522 0 R]/PANTONE624PC[/Separation/PANTONE#20624#20PC/DeviceCMYK 523 0 R]/PANTONE625PC[/Separation/PANTONE#20625#20PC/DeviceCMYK
+524 0 R]/PANTONE626PC[/Separation/PANTONE#20626#20PC/DeviceCMYK 525 0 R]/PANTONE627PC[/Separation/PANTONE#20627#20PC/DeviceCMYK
+526 0 R]/PANTONE628PC[/Separation/PANTONE#20628#20PC/DeviceCMYK 527 0 R]/PANTONE629PC[/Separation/PANTONE#20629#20PC/DeviceCMYK
+528 0 R]/PANTONE630PC[/Separation/PANTONE#20630#20PC/DeviceCMYK 529 0 R]/PANTONE631PC[/Separation/PANTONE#20631#20PC/DeviceCMYK
+530 0 R]/PANTONE632PC[/Separation/PANTONE#20632#20PC/DeviceCMYK 531 0 R]/PANTONE633PC[/Separation/PANTONE#20633#20PC/DeviceCMYK
+532 0 R]/PANTONE634PC[/Separation/PANTONE#20634#20PC/DeviceCMYK 533 0 R]/PANTONE635PC[/Separation/PANTONE#20635#20PC/DeviceCMYK
+534 0 R]/PANTONE636PC[/Separation/PANTONE#20636#20PC/DeviceCMYK 535 0 R]/PANTONE637PC[/Separation/PANTONE#20637#20PC/DeviceCMYK
+536 0 R]/PANTONE638PC[/Separation/PANTONE#20638#20PC/DeviceCMYK 537 0 R]/PANTONE639PC[/Separation/PANTONE#20639#20PC/DeviceCMYK
+538 0 R]/PANTONE640PC[/Separation/PANTONE#20640#20PC/DeviceCMYK 539 0 R]/PANTONE641PC[/Separation/PANTONE#20641#20PC/DeviceCMYK
+540 0 R]/PANTONE642PC[/Separation/PANTONE#20642#20PC/DeviceCMYK 541 0 R]/PANTONE643PC[/Separation/PANTONE#20643#20PC/DeviceCMYK
+542 0 R]/PANTONE644PC[/Separation/PANTONE#20644#20PC/DeviceCMYK 543 0 R]/PANTONE645PC[/Separation/PANTONE#20645#20PC/DeviceCMYK
+544 0 R]/PANTONE646PC[/Separation/PANTONE#20646#20PC/DeviceCMYK 545 0 R]/PANTONE647PC[/Separation/PANTONE#20647#20PC/DeviceCMYK
+546 0 R]/PANTONE648PC[/Separation/PANTONE#20648#20PC/DeviceCMYK 547 0 R]/PANTONE649PC[/Separation/PANTONE#20649#20PC/DeviceCMYK
+548 0 R]/PANTONE650PC[/Separation/PANTONE#20650#20PC/DeviceCMYK 549 0 R]/PANTONE651PC[/Separation/PANTONE#20651#20PC/DeviceCMYK
+550 0 R]/PANTONE652PC[/Separation/PANTONE#20652#20PC/DeviceCMYK 551 0 R]/PANTONE653PC[/Separation/PANTONE#20653#20PC/DeviceCMYK
+552 0 R]/PANTONE654PC[/Separation/PANTONE#20654#20PC/DeviceCMYK 553 0 R]/PANTONE655PC[/Separation/PANTONE#20655#20PC/DeviceCMYK
+554 0 R]/PANTONE656PC[/Separation/PANTONE#20656#20PC/DeviceCMYK 555 0 R]/PANTONE657PC[/Separation/PANTONE#20657#20PC/DeviceCMYK
+556 0 R]/PANTONE658PC[/Separation/PANTONE#20658#20PC/DeviceCMYK 557 0 R]/PANTONE659PC[/Separation/PANTONE#20659#20PC/DeviceCMYK
+558 0 R]/PANTONE660PC[/Separation/PANTONE#20660#20PC/DeviceCMYK 559 0 R]/PANTONE661PC[/Separation/PANTONE#20661#20PC/DeviceCMYK
+560 0 R]/PANTONE662PC[/Separation/PANTONE#20662#20PC/DeviceCMYK 561 0 R]/PANTONE663PC[/Separation/PANTONE#20663#20PC/DeviceCMYK
+562 0 R]/PANTONE664PC[/Separation/PANTONE#20664#20PC/DeviceCMYK 563 0 R]/PANTONE665PC[/Separation/PANTONE#20665#20PC/DeviceCMYK
+564 0 R]/PANTONE666PC[/Separation/PANTONE#20666#20PC/DeviceCMYK 565 0 R]/PANTONE667PC[/Separation/PANTONE#20667#20PC/DeviceCMYK
+566 0 R]/PANTONE668PC[/Separation/PANTONE#20668#20PC/DeviceCMYK 567 0 R]/PANTONE669PC[/Separation/PANTONE#20669#20PC/DeviceCMYK
+568 0 R]/PANTONE670PC[/Separation/PANTONE#20670#20PC/DeviceCMYK 569 0 R]/PANTONE671PC[/Separation/PANTONE#20671#20PC/DeviceCMYK
+570 0 R]/PANTONE672PC[/Separation/PANTONE#20672#20PC/DeviceCMYK 571 0 R]/PANTONE673PC[/Separation/PANTONE#20673#20PC/DeviceCMYK
+572 0 R]/PANTONE674PC[/Separation/PANTONE#20674#20PC/DeviceCMYK 573 0 R]/PANTONE675PC[/Separation/PANTONE#20675#20PC/DeviceCMYK
+574 0 R]/PANTONE676PC[/Separation/PANTONE#20676#20PC/DeviceCMYK 575 0 R]/PANTONE677PC[/Separation/PANTONE#20677#20PC/DeviceCMYK
+576 0 R]/PANTONE678PC[/Separation/PANTONE#20678#20PC/DeviceCMYK 577 0 R]/PANTONE679PC[/Separation/PANTONE#20679#20PC/DeviceCMYK
+578 0 R]/PANTONE680PC[/Separation/PANTONE#20680#20PC/DeviceCMYK 579 0 R]/PANTONE681PC[/Separation/PANTONE#20681#20PC/DeviceCMYK
+580 0 R]/PANTONE682PC[/Separation/PANTONE#20682#20PC/DeviceCMYK 581 0 R]/PANTONE683PC[/Separation/PANTONE#20683#20PC/DeviceCMYK
+582 0 R]/PANTONE684PC[/Separation/PANTONE#20684#20PC/DeviceCMYK 583 0 R]/PANTONE685PC[/Separation/PANTONE#20685#20PC/DeviceCMYK
+584 0 R]/PANTONE686PC[/Separation/PANTONE#20686#20PC/DeviceCMYK 585 0 R]/PANTONE687PC[/Separation/PANTONE#20687#20PC/DeviceCMYK
+586 0 R]/PANTONE688PC[/Separation/PANTONE#20688#20PC/DeviceCMYK 587 0 R]/PANTONE689PC[/Separation/PANTONE#20689#20PC/DeviceCMYK
+588 0 R]/PANTONE690PC[/Separation/PANTONE#20690#20PC/DeviceCMYK 589 0 R]/PANTONE691PC[/Separation/PANTONE#20691#20PC/DeviceCMYK
+590 0 R]/PANTONE692PC[/Separation/PANTONE#20692#20PC/DeviceCMYK 591 0 R]/PANTONE693PC[/Separation/PANTONE#20693#20PC/DeviceCMYK
+592 0 R]/PANTONE694PC[/Separation/PANTONE#20694#20PC/DeviceCMYK 593 0 R]/PANTONE695PC[/Separation/PANTONE#20695#20PC/DeviceCMYK
+594 0 R]/PANTONE696PC[/Separation/PANTONE#20696#20PC/DeviceCMYK 595 0 R]/PANTONE697PC[/Separation/PANTONE#20697#20PC/DeviceCMYK
+596 0 R]/PANTONE698PC[/Separation/PANTONE#20698#20PC/DeviceCMYK 597 0 R]/PANTONE699PC[/Separation/PANTONE#20699#20PC/DeviceCMYK
+598 0 R]/PANTONE700PC[/Separation/PANTONE#20700#20PC/DeviceCMYK 599 0 R]/PANTONE701PC[/Separation/PANTONE#20701#20PC/DeviceCMYK
+600 0 R]/PANTONE702PC[/Separation/PANTONE#20702#20PC/DeviceCMYK 601 0 R]/PANTONE703PC[/Separation/PANTONE#20703#20PC/DeviceCMYK
+602 0 R]/PANTONE704PC[/Separation/PANTONE#20704#20PC/DeviceCMYK 603 0 R]/PANTONE705PC[/Separation/PANTONE#20705#20PC/DeviceCMYK
+604 0 R]/PANTONE706PC[/Separation/PANTONE#20706#20PC/DeviceCMYK 605 0 R]/PANTONE707PC[/Separation/PANTONE#20707#20PC/DeviceCMYK
+606 0 R]/PANTONE708PC[/Separation/PANTONE#20708#20PC/DeviceCMYK 607 0 R]/PANTONE709PC[/Separation/PANTONE#20709#20PC/DeviceCMYK
+608 0 R]/PANTONE710PC[/Separation/PANTONE#20710#20PC/DeviceCMYK 609 0 R]/PANTONE711PC[/Separation/PANTONE#20711#20PC/DeviceCMYK
+610 0 R]/PANTONE712PC[/Separation/PANTONE#20712#20PC/DeviceCMYK 611 0 R]/PANTONE713PC[/Separation/PANTONE#20713#20PC/DeviceCMYK
+612 0 R]/PANTONE714PC[/Separation/PANTONE#20714#20PC/DeviceCMYK 613 0 R]/PANTONE715PC[/Separation/PANTONE#20715#20PC/DeviceCMYK
+614 0 R]/PANTONE716PC[/Separation/PANTONE#20716#20PC/DeviceCMYK 615 0 R]/PANTONE717PC[/Separation/PANTONE#20717#20PC/DeviceCMYK
+616 0 R]/PANTONE718PC[/Separation/PANTONE#20718#20PC/DeviceCMYK 617 0 R]/PANTONE719PC[/Separation/PANTONE#20719#20PC/DeviceCMYK
+618 0 R]/PANTONE720PC[/Separation/PANTONE#20720#20PC/DeviceCMYK 619 0 R]/PANTONE721PC[/Separation/PANTONE#20721#20PC/DeviceCMYK
+620 0 R]/PANTONE722PC[/Separation/PANTONE#20722#20PC/DeviceCMYK 621 0 R]/PANTONE723PC[/Separation/PANTONE#20723#20PC/DeviceCMYK
+622 0 R]/PANTONE724PC[/Separation/PANTONE#20724#20PC/DeviceCMYK 623 0 R]/PANTONE725PC[/Separation/PANTONE#20725#20PC/DeviceCMYK
+624 0 R]/PANTONE726PC[/Separation/PANTONE#20726#20PC/DeviceCMYK 625 0 R]/PANTONE727PC[/Separation/PANTONE#20727#20PC/DeviceCMYK
+626 0 R]/PANTONE728PC[/Separation/PANTONE#20728#20PC/DeviceCMYK 627 0 R]/PANTONE729PC[/Separation/PANTONE#20729#20PC/DeviceCMYK
+628 0 R]/PANTONE730PC[/Separation/PANTONE#20730#20PC/DeviceCMYK 629 0 R]/PANTONE731PC[/Separation/PANTONE#20731#20PC/DeviceCMYK
+630 0 R]/PANTONE732PC[/Separation/PANTONE#20732#20PC/DeviceCMYK 631 0 R]/PANTONE1205PC[/Separation/PANTONE#201205#20PC/DeviceCMYK
+632 0 R]/PANTONE1215PC[/Separation/PANTONE#201215#20PC/DeviceCMYK 633 0 R]/PANTONE1225PC[/Separation/PANTONE#201225#20PC/DeviceCMYK
+634 0 R]/PANTONE1235PC[/Separation/PANTONE#201235#20PC/DeviceCMYK 635 0 R]/PANTONE1245PC[/Separation/PANTONE#201245#20PC/DeviceCMYK
+636 0 R]/PANTONE1255PC[/Separation/PANTONE#201255#20PC/DeviceCMYK 637 0 R]/PANTONE1265PC[/Separation/PANTONE#201265#20PC/DeviceCMYK
+638 0 R]/PANTONE1345PC[/Separation/PANTONE#201345#20PC/DeviceCMYK 639 0 R]/PANTONE1355PC[/Separation/PANTONE#201355#20PC/DeviceCMYK
+640 0 R]/PANTONE1365PC[/Separation/PANTONE#201365#20PC/DeviceCMYK 641 0 R]/PANTONE1375PC[/Separation/PANTONE#201375#20PC/DeviceCMYK
+642 0 R]/PANTONE1385PC[/Separation/PANTONE#201385#20PC/DeviceCMYK 643 0 R]/PANTONE1395PC[/Separation/PANTONE#201395#20PC/DeviceCMYK
+644 0 R]/PANTONE1405PC[/Separation/PANTONE#201405#20PC/DeviceCMYK 645 0 R]/PANTONE1485PC[/Separation/PANTONE#201485#20PC/DeviceCMYK
+646 0 R]/PANTONE1495PC[/Separation/PANTONE#201495#20PC/DeviceCMYK 647 0 R]/PANTONE1505PC[/Separation/PANTONE#201505#20PC/DeviceCMYK
+648 0 R]/PANTONE1525PC[/Separation/PANTONE#201525#20PC/DeviceCMYK 649 0 R]/PANTONE1535PC[/Separation/PANTONE#201535#20PC/DeviceCMYK
+650 0 R]/PANTONE1545PC[/Separation/PANTONE#201545#20PC/DeviceCMYK 651 0 R]/PANTONE1555PC[/Separation/PANTONE#201555#20PC/DeviceCMYK
+652 0 R]/PANTONE1565PC[/Separation/PANTONE#201565#20PC/DeviceCMYK 653 0 R]/PANTONE1575PC[/Separation/PANTONE#201575#20PC/DeviceCMYK
+654 0 R]/PANTONE1585PC[/Separation/PANTONE#201585#20PC/DeviceCMYK 655 0 R]/PANTONE1595PC[/Separation/PANTONE#201595#20PC/DeviceCMYK
+656 0 R]/PANTONE1605PC[/Separation/PANTONE#201605#20PC/DeviceCMYK 657 0 R]/PANTONE1615PC[/Separation/PANTONE#201615#20PC/DeviceCMYK
+658 0 R]/PANTONE1625PC[/Separation/PANTONE#201625#20PC/DeviceCMYK 659 0 R]/PANTONE1635PC[/Separation/PANTONE#201635#20PC/DeviceCMYK
+660 0 R]/PANTONE1645PC[/Separation/PANTONE#201645#20PC/DeviceCMYK 661 0 R]/PANTONE1655PC[/Separation/PANTONE#201655#20PC/DeviceCMYK
+662 0 R]/PANTONE1665PC[/Separation/PANTONE#201665#20PC/DeviceCMYK 663 0 R]/PANTONE1675PC[/Separation/PANTONE#201675#20PC/DeviceCMYK
+664 0 R]/PANTONE1685PC[/Separation/PANTONE#201685#20PC/DeviceCMYK 665 0 R]/PANTONE1765PC[/Separation/PANTONE#201765#20PC/DeviceCMYK
+666 0 R]/PANTONE1767PC[/Separation/PANTONE#201767#20PC/DeviceCMYK 667 0 R]/PANTONE1775PC[/Separation/PANTONE#201775#20PC/DeviceCMYK
+668 0 R]/PANTONE1777PC[/Separation/PANTONE#201777#20PC/DeviceCMYK 669 0 R]/PANTONE1785PC[/Separation/PANTONE#201785#20PC/DeviceCMYK
+670 0 R]/PANTONE1787PC[/Separation/PANTONE#201787#20PC/DeviceCMYK 671 0 R]/PANTONE1788PC[/Separation/PANTONE#201788#20PC/DeviceCMYK
+672 0 R]/PANTONE1795PC[/Separation/PANTONE#201795#20PC/DeviceCMYK 673 0 R]/PANTONE1797PC[/Separation/PANTONE#201797#20PC/DeviceCMYK
+674 0 R]/PANTONE1805PC[/Separation/PANTONE#201805#20PC/DeviceCMYK 675 0 R]/PANTONE1807PC[/Separation/PANTONE#201807#20PC/DeviceCMYK
+676 0 R]/PANTONE1815PC[/Separation/PANTONE#201815#20PC/DeviceCMYK 677 0 R]/PANTONE1817PC[/Separation/PANTONE#201817#20PC/DeviceCMYK
+678 0 R]/PANTONE1895PC[/Separation/PANTONE#201895#20PC/DeviceCMYK 679 0 R]/PANTONE1905PC[/Separation/PANTONE#201905#20PC/DeviceCMYK
+680 0 R]/PANTONE1915PC[/Separation/PANTONE#201915#20PC/DeviceCMYK 681 0 R]/PANTONE1925PC[/Separation/PANTONE#201925#20PC/DeviceCMYK
+682 0 R]/PANTONE1935PC[/Separation/PANTONE#201935#20PC/DeviceCMYK 683 0 R]/PANTONE1945PC[/Separation/PANTONE#201945#20PC/DeviceCMYK
+684 0 R]/PANTONE1955PC[/Separation/PANTONE#201955#20PC/DeviceCMYK 685 0 R]/PANTONE2365PC[/Separation/PANTONE#202365#20PC/DeviceCMYK
+686 0 R]/PANTONE2375PC[/Separation/PANTONE#202375#20PC/DeviceCMYK 687 0 R]/PANTONE2385PC[/Separation/PANTONE#202385#20PC/DeviceCMYK
+688 0 R]/PANTONE2395PC[/Separation/PANTONE#202395#20PC/DeviceCMYK 689 0 R]/PANTONE2405PC[/Separation/PANTONE#202405#20PC/DeviceCMYK
+690 0 R]/PANTONE2415PC[/Separation/PANTONE#202415#20PC/DeviceCMYK 691 0 R]/PANTONE2425PC[/Separation/PANTONE#202425#20PC/DeviceCMYK
+692 0 R]/PANTONE2562PC[/Separation/PANTONE#202562#20PC/DeviceCMYK 693 0 R]/PANTONE2563PC[/Separation/PANTONE#202563#20PC/DeviceCMYK
+694 0 R]/PANTONE2567PC[/Separation/PANTONE#202567#20PC/DeviceCMYK 695 0 R]/PANTONE2572PC[/Separation/PANTONE#202572#20PC/DeviceCMYK
+696 0 R]/PANTONE2573PC[/Separation/PANTONE#202573#20PC/DeviceCMYK 697 0 R]/PANTONE2577PC[/Separation/PANTONE#202577#20PC/DeviceCMYK
+698 0 R]/PANTONE2582PC[/Separation/PANTONE#202582#20PC/DeviceCMYK 699 0 R]/PANTONE2583PC[/Separation/PANTONE#202583#20PC/DeviceCMYK
+700 0 R]/PANTONE2587PC[/Separation/PANTONE#202587#20PC/DeviceCMYK 701 0 R]/PANTONE2592PC[/Separation/PANTONE#202592#20PC/DeviceCMYK
+702 0 R]/PANTONE2593PC[/Separation/PANTONE#202593#20PC/DeviceCMYK 703 0 R]/PANTONE2597PC[/Separation/PANTONE#202597#20PC/DeviceCMYK
+704 0 R]/PANTONE2602PC[/Separation/PANTONE#202602#20PC/DeviceCMYK 705 0 R]/PANTONE2603PC[/Separation/PANTONE#202603#20PC/DeviceCMYK
+706 0 R]/PANTONE2607PC[/Separation/PANTONE#202607#20PC/DeviceCMYK 707 0 R]/PANTONE2612PC[/Separation/PANTONE#202612#20PC/DeviceCMYK
+708 0 R]/PANTONE2613PC[/Separation/PANTONE#202613#20PC/DeviceCMYK 709 0 R]/PANTONE2617PC[/Separation/PANTONE#202617#20PC/DeviceCMYK
+710 0 R]/PANTONE2622PC[/Separation/PANTONE#202622#20PC/DeviceCMYK 711 0 R]/PANTONE2623PC[/Separation/PANTONE#202623#20PC/DeviceCMYK
+712 0 R]/PANTONE2627PC[/Separation/PANTONE#202627#20PC/DeviceCMYK 713 0 R]/PANTONE2635PC[/Separation/PANTONE#202635#20PC/DeviceCMYK
+714 0 R]/PANTONE2645PC[/Separation/PANTONE#202645#20PC/DeviceCMYK 715 0 R]/PANTONE2655PC[/Separation/PANTONE#202655#20PC/DeviceCMYK
+716 0 R]/PANTONE2665PC[/Separation/PANTONE#202665#20PC/DeviceCMYK 717 0 R]/PANTONE2685PC[/Separation/PANTONE#202685#20PC/DeviceCMYK
+718 0 R]/PANTONE2695PC[/Separation/PANTONE#202695#20PC/DeviceCMYK 719 0 R]/PANTONE2705PC[/Separation/PANTONE#202705#20PC/DeviceCMYK
+720 0 R]/PANTONE2706PC[/Separation/PANTONE#202706#20PC/DeviceCMYK 721 0 R]/PANTONE2707PC[/Separation/PANTONE#202707#20PC/DeviceCMYK
+722 0 R]/PANTONE2708PC[/Separation/PANTONE#202708#20PC/DeviceCMYK 723 0 R]/PANTONE2715PC[/Separation/PANTONE#202715#20PC/DeviceCMYK
+724 0 R]/PANTONE2716PC[/Separation/PANTONE#202716#20PC/DeviceCMYK 725 0 R]/PANTONE2717PC[/Separation/PANTONE#202717#20PC/DeviceCMYK
+726 0 R]/PANTONE2718PC[/Separation/PANTONE#202718#20PC/DeviceCMYK 727 0 R]/PANTONE2725PC[/Separation/PANTONE#202725#20PC/DeviceCMYK
+728 0 R]/PANTONE2726PC[/Separation/PANTONE#202726#20PC/DeviceCMYK 729 0 R]/PANTONE2727PC[/Separation/PANTONE#202727#20PC/DeviceCMYK
+730 0 R]/PANTONE2728PC[/Separation/PANTONE#202728#20PC/DeviceCMYK 731 0 R]/PANTONE2735PC[/Separation/PANTONE#202735#20PC/DeviceCMYK
+732 0 R]/PANTONE2736PC[/Separation/PANTONE#202736#20PC/DeviceCMYK 733 0 R]/PANTONE2738PC[/Separation/PANTONE#202738#20PC/DeviceCMYK
+734 0 R]/PANTONE2745PC[/Separation/PANTONE#202745#20PC/DeviceCMYK 735 0 R]/PANTONE2746PC[/Separation/PANTONE#202746#20PC/DeviceCMYK
+736 0 R]/PANTONE2747PC[/Separation/PANTONE#202747#20PC/DeviceCMYK 737 0 R]/PANTONE2748PC[/Separation/PANTONE#202748#20PC/DeviceCMYK
+738 0 R]/PANTONE2755PC[/Separation/PANTONE#202755#20PC/DeviceCMYK 739 0 R]/PANTONE2756PC[/Separation/PANTONE#202756#20PC/DeviceCMYK
+740 0 R]/PANTONE2757PC[/Separation/PANTONE#202757#20PC/DeviceCMYK 741 0 R]/PANTONE2758PC[/Separation/PANTONE#202758#20PC/DeviceCMYK
+742 0 R]/PANTONE2765PC[/Separation/PANTONE#202765#20PC/DeviceCMYK 743 0 R]/PANTONE2766PC[/Separation/PANTONE#202766#20PC/DeviceCMYK
+744 0 R]/PANTONE2767PC[/Separation/PANTONE#202767#20PC/DeviceCMYK 745 0 R]/PANTONE2768PC[/Separation/PANTONE#202768#20PC/DeviceCMYK
+746 0 R]/PANTONE2905PC[/Separation/PANTONE#202905#20PC/DeviceCMYK 747 0 R]/PANTONE2915PC[/Separation/PANTONE#202915#20PC/DeviceCMYK
+748 0 R]/PANTONE2925PC[/Separation/PANTONE#202925#20PC/DeviceCMYK 749 0 R]/PANTONE2935PC[/Separation/PANTONE#202935#20PC/DeviceCMYK
+750 0 R]/PANTONE2945PC[/Separation/PANTONE#202945#20PC/DeviceCMYK 751 0 R]/PANTONE2955PC[/Separation/PANTONE#202955#20PC/DeviceCMYK
+752 0 R]/PANTONE2965PC[/Separation/PANTONE#202965#20PC/DeviceCMYK 753 0 R]/PANTONE2975PC[/Separation/PANTONE#202975#20PC/DeviceCMYK
+754 0 R]/PANTONE2985PC[/Separation/PANTONE#202985#20PC/DeviceCMYK 755 0 R]/PANTONE2995PC[/Separation/PANTONE#202995#20PC/DeviceCMYK
+756 0 R]/PANTONE3005PC[/Separation/PANTONE#203005#20PC/DeviceCMYK 757 0 R]/PANTONE3015PC[/Separation/PANTONE#203015#20PC/DeviceCMYK
+758 0 R]/PANTONE3025PC[/Separation/PANTONE#203025#20PC/DeviceCMYK 759 0 R]/PANTONE3035PC[/Separation/PANTONE#203035#20PC/DeviceCMYK
+760 0 R]/PANTONE3105PC[/Separation/PANTONE#203105#20PC/DeviceCMYK 761 0 R]/PANTONE3115PC[/Separation/PANTONE#203115#20PC/DeviceCMYK
+762 0 R]/PANTONE3125PC[/Separation/PANTONE#203125#20PC/DeviceCMYK 763 0 R]/PANTONE3135PC[/Separation/PANTONE#203135#20PC/DeviceCMYK
+764 0 R]/PANTONE3145PC[/Separation/PANTONE#203145#20PC/DeviceCMYK 765 0 R]/PANTONE3155PC[/Separation/PANTONE#203155#20PC/DeviceCMYK
+766 0 R]/PANTONE3165PC[/Separation/PANTONE#203165#20PC/DeviceCMYK 767 0 R]/PANTONE3242PC[/Separation/PANTONE#203242#20PC/DeviceCMYK
+768 0 R]/PANTONE3245PC[/Separation/PANTONE#203245#20PC/DeviceCMYK 769 0 R]/PANTONE3248PC[/Separation/PANTONE#203248#20PC/DeviceCMYK
+770 0 R]/PANTONE3252PC[/Separation/PANTONE#203252#20PC/DeviceCMYK 771 0 R]/PANTONE3255PC[/Separation/PANTONE#203255#20PC/DeviceCMYK
+772 0 R]/PANTONE3258PC[/Separation/PANTONE#203258#20PC/DeviceCMYK 773 0 R]/PANTONE3262PC[/Separation/PANTONE#203262#20PC/DeviceCMYK
+774 0 R]/PANTONE3265PC[/Separation/PANTONE#203265#20PC/DeviceCMYK 775 0 R]/PANTONE3268PC[/Separation/PANTONE#203268#20PC/DeviceCMYK
+776 0 R]/PANTONE3272PC[/Separation/PANTONE#203272#20PC/DeviceCMYK 777 0 R]/PANTONE3275PC[/Separation/PANTONE#203275#20PC/DeviceCMYK
+778 0 R]/PANTONE3278PC[/Separation/PANTONE#203278#20PC/DeviceCMYK 779 0 R]/PANTONE3282PC[/Separation/PANTONE#203282#20PC/DeviceCMYK
+780 0 R]/PANTONE3285PC[/Separation/PANTONE#203285#20PC/DeviceCMYK 781 0 R]/PANTONE3288PC[/Separation/PANTONE#203288#20PC/DeviceCMYK
+782 0 R]/PANTONE3292PC[/Separation/PANTONE#203292#20PC/DeviceCMYK 783 0 R]/PANTONE3295PC[/Separation/PANTONE#203295#20PC/DeviceCMYK
+784 0 R]/PANTONE3298PC[/Separation/PANTONE#203298#20PC/DeviceCMYK 785 0 R]/PANTONE3302PC[/Separation/PANTONE#203302#20PC/DeviceCMYK
+786 0 R]/PANTONE3305PC[/Separation/PANTONE#203305#20PC/DeviceCMYK 787 0 R]/PANTONE3308PC[/Separation/PANTONE#203308#20PC/DeviceCMYK
+788 0 R]/PANTONE3375PC[/Separation/PANTONE#203375#20PC/DeviceCMYK 789 0 R]/PANTONE3385PC[/Separation/PANTONE#203385#20PC/DeviceCMYK
+790 0 R]/PANTONE3395PC[/Separation/PANTONE#203395#20PC/DeviceCMYK 791 0 R]/PANTONE3405PC[/Separation/PANTONE#203405#20PC/DeviceCMYK
+792 0 R]/PANTONE3415PC[/Separation/PANTONE#203415#20PC/DeviceCMYK 793 0 R]/PANTONE3425PC[/Separation/PANTONE#203425#20PC/DeviceCMYK
+794 0 R]/PANTONE3435PC[/Separation/PANTONE#203435#20PC/DeviceCMYK 795 0 R]/PANTONE3935PC[/Separation/PANTONE#203935#20PC/DeviceCMYK
+796 0 R]/PANTONE3945PC[/Separation/PANTONE#203945#20PC/DeviceCMYK 797 0 R]/PANTONE3955PC[/Separation/PANTONE#203955#20PC/DeviceCMYK
+798 0 R]/PANTONE3965PC[/Separation/PANTONE#203965#20PC/DeviceCMYK 799 0 R]/PANTONE3975PC[/Separation/PANTONE#203975#20PC/DeviceCMYK
+800 0 R]/PANTONE3985PC[/Separation/PANTONE#203985#20PC/DeviceCMYK 801 0 R]/PANTONE3995PC[/Separation/PANTONE#203995#20PC/DeviceCMYK
+802 0 R]/PANTONE4485PC[/Separation/PANTONE#204485#20PC/DeviceCMYK 803 0 R]/PANTONE4495PC[/Separation/PANTONE#204495#20PC/DeviceCMYK
+804 0 R]/PANTONE4505PC[/Separation/PANTONE#204505#20PC/DeviceCMYK 805 0 R]/PANTONE4515PC[/Separation/PANTONE#204515#20PC/DeviceCMYK
+806 0 R]/PANTONE4525PC[/Separation/PANTONE#204525#20PC/DeviceCMYK 807 0 R]/PANTONE4535PC[/Separation/PANTONE#204535#20PC/DeviceCMYK
+808 0 R]/PANTONE4545PC[/Separation/PANTONE#204545#20PC/DeviceCMYK 809 0 R]/PANTONE4625PC[/Separation/PANTONE#204625#20PC/DeviceCMYK
+810 0 R]/PANTONE4635PC[/Separation/PANTONE#204635#20PC/DeviceCMYK 811 0 R]/PANTONE4645PC[/Separation/PANTONE#204645#20PC/DeviceCMYK
+812 0 R]/PANTONE4655PC[/Separation/PANTONE#204655#20PC/DeviceCMYK 813 0 R]/PANTONE4665PC[/Separation/PANTONE#204665#20PC/DeviceCMYK
+814 0 R]/PANTONE4675PC[/Separation/PANTONE#204675#20PC/DeviceCMYK 815 0 R]/PANTONE4685PC[/Separation/PANTONE#204685#20PC/DeviceCMYK
+816 0 R]/PANTONE4695PC[/Separation/PANTONE#204695#20PC/DeviceCMYK 817 0 R]/PANTONE4705PC[/Separation/PANTONE#204705#20PC/DeviceCMYK
+818 0 R]/PANTONE4715PC[/Separation/PANTONE#204715#20PC/DeviceCMYK 819 0 R]/PANTONE4725PC[/Separation/PANTONE#204725#20PC/DeviceCMYK
+820 0 R]/PANTONE4735PC[/Separation/PANTONE#204735#20PC/DeviceCMYK 821 0 R]/PANTONE4745PC[/Separation/PANTONE#204745#20PC/DeviceCMYK
+822 0 R]/PANTONE4755PC[/Separation/PANTONE#204755#20PC/DeviceCMYK 823 0 R]/PANTONE4975PC[/Separation/PANTONE#204975#20PC/DeviceCMYK
+824 0 R]/PANTONE4985PC[/Separation/PANTONE#204985#20PC/DeviceCMYK 825 0 R]/PANTONE4995PC[/Separation/PANTONE#204995#20PC/DeviceCMYK
+826 0 R]/PANTONE5005PC[/Separation/PANTONE#205005#20PC/DeviceCMYK 827 0 R]/PANTONE5015PC[/Separation/PANTONE#205015#20PC/DeviceCMYK
+828 0 R]/PANTONE5025PC[/Separation/PANTONE#205025#20PC/DeviceCMYK 829 0 R]/PANTONE5035PC[/Separation/PANTONE#205035#20PC/DeviceCMYK
+830 0 R]/PANTONE5115PC[/Separation/PANTONE#205115#20PC/DeviceCMYK 831 0 R]/PANTONE5125PC[/Separation/PANTONE#205125#20PC/DeviceCMYK
+832 0 R]/PANTONE5135PC[/Separation/PANTONE#205135#20PC/DeviceCMYK 833 0 R]/PANTONE5145PC[/Separation/PANTONE#205145#20PC/DeviceCMYK
+834 0 R]/PANTONE5155PC[/Separation/PANTONE#205155#20PC/DeviceCMYK 835 0 R]/PANTONE5165PC[/Separation/PANTONE#205165#20PC/DeviceCMYK
+836 0 R]/PANTONE5175PC[/Separation/PANTONE#205175#20PC/DeviceCMYK 837 0 R]/PANTONE5185PC[/Separation/PANTONE#205185#20PC/DeviceCMYK
+838 0 R]/PANTONE5195PC[/Separation/PANTONE#205195#20PC/DeviceCMYK 839 0 R]/PANTONE5205PC[/Separation/PANTONE#205205#20PC/DeviceCMYK
+840 0 R]/PANTONE5215PC[/Separation/PANTONE#205215#20PC/DeviceCMYK 841 0 R]/PANTONE5225PC[/Separation/PANTONE#205225#20PC/DeviceCMYK
+842 0 R]/PANTONE5235PC[/Separation/PANTONE#205235#20PC/DeviceCMYK 843 0 R]/PANTONE5245PC[/Separation/PANTONE#205245#20PC/DeviceCMYK
+844 0 R]/PANTONE5255PC[/Separation/PANTONE#205255#20PC/DeviceCMYK 845 0 R]/PANTONE5265PC[/Separation/PANTONE#205265#20PC/DeviceCMYK
+846 0 R]/PANTONE5275PC[/Separation/PANTONE#205275#20PC/DeviceCMYK 847 0 R]/PANTONE5285PC[/Separation/PANTONE#205285#20PC/DeviceCMYK
+848 0 R]/PANTONE5295PC[/Separation/PANTONE#205295#20PC/DeviceCMYK 849 0 R]/PANTONE5305PC[/Separation/PANTONE#205305#20PC/DeviceCMYK
+850 0 R]/PANTONE5315PC[/Separation/PANTONE#205315#20PC/DeviceCMYK 851 0 R]/PANTONE5395PC[/Separation/PANTONE#205395#20PC/DeviceCMYK
+852 0 R]/PANTONE5405PC[/Separation/PANTONE#205405#20PC/DeviceCMYK 853 0 R]/PANTONE5415PC[/Separation/PANTONE#205415#20PC/DeviceCMYK
+854 0 R]/PANTONE5425PC[/Separation/PANTONE#205425#20PC/DeviceCMYK 855 0 R]/PANTONE5435PC[/Separation/PANTONE#205435#20PC/DeviceCMYK
+856 0 R]/PANTONE5445PC[/Separation/PANTONE#205445#20PC/DeviceCMYK 857 0 R]/PANTONE5455PC[/Separation/PANTONE#205455#20PC/DeviceCMYK
+858 0 R]/PANTONE5463PC[/Separation/PANTONE#205463#20PC/DeviceCMYK 859 0 R]/PANTONE5467PC[/Separation/PANTONE#205467#20PC/DeviceCMYK
+860 0 R]/PANTONE5473PC[/Separation/PANTONE#205473#20PC/DeviceCMYK 861 0 R]/PANTONE5477PC[/Separation/PANTONE#205477#20PC/DeviceCMYK
+862 0 R]/PANTONE5483PC[/Separation/PANTONE#205483#20PC/DeviceCMYK 863 0 R]/PANTONE5487PC[/Separation/PANTONE#205487#20PC/DeviceCMYK
+864 0 R]/PANTONE5493PC[/Separation/PANTONE#205493#20PC/DeviceCMYK 865 0 R]/PANTONE5497PC[/Separation/PANTONE#205497#20PC/DeviceCMYK
+866 0 R]/PANTONE5503PC[/Separation/PANTONE#205503#20PC/DeviceCMYK 867 0 R]/PANTONE5507PC[/Separation/PANTONE#205507#20PC/DeviceCMYK
+868 0 R]/PANTONE5513PC[/Separation/PANTONE#205513#20PC/DeviceCMYK 869 0 R]/PANTONE5517PC[/Separation/PANTONE#205517#20PC/DeviceCMYK
+870 0 R]/PANTONE5523PC[/Separation/PANTONE#205523#20PC/DeviceCMYK 871 0 R]/PANTONE5527PC[/Separation/PANTONE#205527#20PC/DeviceCMYK
+872 0 R]/PANTONE5535PC[/Separation/PANTONE#205535#20PC/DeviceCMYK 873 0 R]/PANTONE5545PC[/Separation/PANTONE#205545#20PC/DeviceCMYK
+874 0 R]/PANTONE5555PC[/Separation/PANTONE#205555#20PC/DeviceCMYK 875 0 R]/PANTONE5565PC[/Separation/PANTONE#205565#20PC/DeviceCMYK
+876 0 R]/PANTONE5575PC[/Separation/PANTONE#205575#20PC/DeviceCMYK 877 0 R]/PANTONE5585PC[/Separation/PANTONE#205585#20PC/DeviceCMYK
+878 0 R]/PANTONE5595PC[/Separation/PANTONE#205595#20PC/DeviceCMYK 879 0 R]/PANTONE5605PC[/Separation/PANTONE#205605#20PC/DeviceCMYK
+880 0 R]/PANTONE5615PC[/Separation/PANTONE#205615#20PC/DeviceCMYK 881 0 R]/PANTONE5625PC[/Separation/PANTONE#205625#20PC/DeviceCMYK
+882 0 R]/PANTONE5635PC[/Separation/PANTONE#205635#20PC/DeviceCMYK 883 0 R]/PANTONE5645PC[/Separation/PANTONE#205645#20PC/DeviceCMYK
+884 0 R]/PANTONE5655PC[/Separation/PANTONE#205655#20PC/DeviceCMYK 885 0 R]/PANTONE5665PC[/Separation/PANTONE#205665#20PC/DeviceCMYK
+886 0 R]/PANTONE5743PC[/Separation/PANTONE#205743#20PC/DeviceCMYK 887 0 R]/PANTONE5747PC[/Separation/PANTONE#205747#20PC/DeviceCMYK
+888 0 R]/PANTONE5753PC[/Separation/PANTONE#205753#20PC/DeviceCMYK 889 0 R]/PANTONE5757PC[/Separation/PANTONE#205757#20PC/DeviceCMYK
+890 0 R]/PANTONE5763PC[/Separation/PANTONE#205763#20PC/DeviceCMYK 891 0 R]/PANTONE5767PC[/Separation/PANTONE#205767#20PC/DeviceCMYK
+892 0 R]/PANTONE5773PC[/Separation/PANTONE#205773#20PC/DeviceCMYK 893 0 R]/PANTONE5777PC[/Separation/PANTONE#205777#20PC/DeviceCMYK
+894 0 R]/PANTONE5783PC[/Separation/PANTONE#205783#20PC/DeviceCMYK 895 0 R]/PANTONE5787PC[/Separation/PANTONE#205787#20PC/DeviceCMYK
+896 0 R]/PANTONE5793PC[/Separation/PANTONE#205793#20PC/DeviceCMYK 897 0 R]/PANTONE5797PC[/Separation/PANTONE#205797#20PC/DeviceCMYK
+898 0 R]/PANTONE5803PC[/Separation/PANTONE#205803#20PC/DeviceCMYK 899 0 R]/PANTONE5807PC[/Separation/PANTONE#205807#20PC/DeviceCMYK
+900 0 R]/PANTONE5815PC[/Separation/PANTONE#205815#20PC/DeviceCMYK 901 0 R]/PANTONE5825PC[/Separation/PANTONE#205825#20PC/DeviceCMYK
+902 0 R]/PANTONE5835PC[/Separation/PANTONE#205835#20PC/DeviceCMYK 903 0 R]/PANTONE5845PC[/Separation/PANTONE#205845#20PC/DeviceCMYK
+904 0 R]/PANTONE5855PC[/Separation/PANTONE#205855#20PC/DeviceCMYK 905 0 R]/PANTONE5865PC[/Separation/PANTONE#205865#20PC/DeviceCMYK
+906 0 R]/PANTONE5875PC[/Separation/PANTONE#205875#20PC/DeviceCMYK 907 0 R]/PANTONE7401PC[/Separation/PANTONE#207401#20PC/DeviceCMYK
+908 0 R]/PANTONE7402PC[/Separation/PANTONE#207402#20PC/DeviceCMYK 909 0 R]/PANTONE7403PC[/Separation/PANTONE#207403#20PC/DeviceCMYK
+910 0 R]/PANTONE7404PC[/Separation/PANTONE#207404#20PC/DeviceCMYK 911 0 R]/PANTONE7405PC[/Separation/PANTONE#207405#20PC/DeviceCMYK
+912 0 R]/PANTONE7406PC[/Separation/PANTONE#207406#20PC/DeviceCMYK 913 0 R]/PANTONE7407PC[/Separation/PANTONE#207407#20PC/DeviceCMYK
+914 0 R]/PANTONE7408PC[/Separation/PANTONE#207408#20PC/DeviceCMYK 915 0 R]/PANTONE7409PC[/Separation/PANTONE#207409#20PC/DeviceCMYK
+916 0 R]/PANTONE7410PC[/Separation/PANTONE#207410#20PC/DeviceCMYK 917 0 R]/PANTONE7411PC[/Separation/PANTONE#207411#20PC/DeviceCMYK
+918 0 R]/PANTONE7412PC[/Separation/PANTONE#207412#20PC/DeviceCMYK 919 0 R]/PANTONE7413PC[/Separation/PANTONE#207413#20PC/DeviceCMYK
+920 0 R]/PANTONE7414PC[/Separation/PANTONE#207414#20PC/DeviceCMYK 921 0 R]/PANTONE7415PC[/Separation/PANTONE#207415#20PC/DeviceCMYK
+922 0 R]/PANTONE7416PC[/Separation/PANTONE#207416#20PC/DeviceCMYK 923 0 R]/PANTONE7417PC[/Separation/PANTONE#207417#20PC/DeviceCMYK
+924 0 R]/PANTONE7418PC[/Separation/PANTONE#207418#20PC/DeviceCMYK 925 0 R]/PANTONE7419PC[/Separation/PANTONE#207419#20PC/DeviceCMYK
+926 0 R]/PANTONE7420PC[/Separation/PANTONE#207420#20PC/DeviceCMYK 927 0 R]/PANTONE7421PC[/Separation/PANTONE#207421#20PC/DeviceCMYK
+928 0 R]/PANTONE7422PC[/Separation/PANTONE#207422#20PC/DeviceCMYK 929 0 R]/PANTONE7423PC[/Separation/PANTONE#207423#20PC/DeviceCMYK
+930 0 R]/PANTONE7424PC[/Separation/PANTONE#207424#20PC/DeviceCMYK 931 0 R]/PANTONE7425PC[/Separation/PANTONE#207425#20PC/DeviceCMYK
+932 0 R]/PANTONE7426PC[/Separation/PANTONE#207426#20PC/DeviceCMYK 933 0 R]/PANTONE7427PC[/Separation/PANTONE#207427#20PC/DeviceCMYK
+934 0 R]/PANTONE7428PC[/Separation/PANTONE#207428#20PC/DeviceCMYK 935 0 R]/PANTONE7429PC[/Separation/PANTONE#207429#20PC/DeviceCMYK
+936 0 R]/PANTONE7430PC[/Separation/PANTONE#207430#20PC/DeviceCMYK 937 0 R]/PANTONE7431PC[/Separation/PANTONE#207431#20PC/DeviceCMYK
+938 0 R]/PANTONE7432PC[/Separation/PANTONE#207432#20PC/DeviceCMYK 939 0 R]/PANTONE7433PC[/Separation/PANTONE#207433#20PC/DeviceCMYK
+940 0 R]/PANTONE7434PC[/Separation/PANTONE#207434#20PC/DeviceCMYK 941 0 R]/PANTONE7435PC[/Separation/PANTONE#207435#20PC/DeviceCMYK
+942 0 R]/PANTONE7436PC[/Separation/PANTONE#207436#20PC/DeviceCMYK 943 0 R]/PANTONE7437PC[/Separation/PANTONE#207437#20PC/DeviceCMYK
+944 0 R]/PANTONE7438PC[/Separation/PANTONE#207438#20PC/DeviceCMYK 945 0 R]/PANTONE7439PC[/Separation/PANTONE#207439#20PC/DeviceCMYK
+946 0 R]/PANTONE7440PC[/Separation/PANTONE#207440#20PC/DeviceCMYK 947 0 R]/PANTONE7441PC[/Separation/PANTONE#207441#20PC/DeviceCMYK
+948 0 R]/PANTONE7442PC[/Separation/PANTONE#207442#20PC/DeviceCMYK 949 0 R]/PANTONE7443PC[/Separation/PANTONE#207443#20PC/DeviceCMYK
+950 0 R]/PANTONE7444PC[/Separation/PANTONE#207444#20PC/DeviceCMYK 951 0 R]/PANTONE7445PC[/Separation/PANTONE#207445#20PC/DeviceCMYK
+952 0 R]/PANTONE7446PC[/Separation/PANTONE#207446#20PC/DeviceCMYK 953 0 R]/PANTONE7447PC[/Separation/PANTONE#207447#20PC/DeviceCMYK
+954 0 R]/PANTONE7448PC[/Separation/PANTONE#207448#20PC/DeviceCMYK 955 0 R]/PANTONE7449PC[/Separation/PANTONE#207449#20PC/DeviceCMYK
+956 0 R]/PANTONE7450PC[/Separation/PANTONE#207450#20PC/DeviceCMYK 957 0 R]/PANTONE7451PC[/Separation/PANTONE#207451#20PC/DeviceCMYK
+958 0 R]/PANTONE7452PC[/Separation/PANTONE#207452#20PC/DeviceCMYK 959 0 R]/PANTONE7453PC[/Separation/PANTONE#207453#20PC/DeviceCMYK
+960 0 R]/PANTONE7454PC[/Separation/PANTONE#207454#20PC/DeviceCMYK 961 0 R]/PANTONE7455PC[/Separation/PANTONE#207455#20PC/DeviceCMYK
+962 0 R]/PANTONE7456PC[/Separation/PANTONE#207456#20PC/DeviceCMYK 963 0 R]/PANTONE7457PC[/Separation/PANTONE#207457#20PC/DeviceCMYK
+964 0 R]/PANTONE7458PC[/Separation/PANTONE#207458#20PC/DeviceCMYK 965 0 R]/PANTONE7459PC[/Separation/PANTONE#207459#20PC/DeviceCMYK
+966 0 R]/PANTONE7460PC[/Separation/PANTONE#207460#20PC/DeviceCMYK 967 0 R]/PANTONE7461PC[/Separation/PANTONE#207461#20PC/DeviceCMYK
+968 0 R]/PANTONE7462PC[/Separation/PANTONE#207462#20PC/DeviceCMYK 969 0 R]/PANTONE7463PC[/Separation/PANTONE#207463#20PC/DeviceCMYK
+970 0 R]/PANTONE7464PC[/Separation/PANTONE#207464#20PC/DeviceCMYK 971 0 R]/PANTONE7465PC[/Separation/PANTONE#207465#20PC/DeviceCMYK
+972 0 R]/PANTONE7466PC[/Separation/PANTONE#207466#20PC/DeviceCMYK 973 0 R]/PANTONE7467PC[/Separation/PANTONE#207467#20PC/DeviceCMYK
+974 0 R]/PANTONE7468PC[/Separation/PANTONE#207468#20PC/DeviceCMYK 975 0 R]/PANTONE7469PC[/Separation/PANTONE#207469#20PC/DeviceCMYK
+976 0 R]/PANTONE7470PC[/Separation/PANTONE#207470#20PC/DeviceCMYK 977 0 R]/PANTONE7471PC[/Separation/PANTONE#207471#20PC/DeviceCMYK
+978 0 R]/PANTONE7472PC[/Separation/PANTONE#207472#20PC/DeviceCMYK 979 0 R]/PANTONE7473PC[/Separation/PANTONE#207473#20PC/DeviceCMYK
+980 0 R]/PANTONE7474PC[/Separation/PANTONE#207474#20PC/DeviceCMYK 981 0 R]/PANTONE7475PC[/Separation/PANTONE#207475#20PC/DeviceCMYK
+982 0 R]/PANTONE7476PC[/Separation/PANTONE#207476#20PC/DeviceCMYK 983 0 R]/PANTONE7477PC[/Separation/PANTONE#207477#20PC/DeviceCMYK
+984 0 R]/PANTONE7478PC[/Separation/PANTONE#207478#20PC/DeviceCMYK 985 0 R]/PANTONE7479PC[/Separation/PANTONE#207479#20PC/DeviceCMYK
+986 0 R]/PANTONE7480PC[/Separation/PANTONE#207480#20PC/DeviceCMYK 987 0 R]/PANTONE7481PC[/Separation/PANTONE#207481#20PC/DeviceCMYK
+988 0 R]/PANTONE7482PC[/Separation/PANTONE#207482#20PC/DeviceCMYK 989 0 R]/PANTONE7483PC[/Separation/PANTONE#207483#20PC/DeviceCMYK
+990 0 R]/PANTONE7484PC[/Separation/PANTONE#207484#20PC/DeviceCMYK 991 0 R]/PANTONE7485PC[/Separation/PANTONE#207485#20PC/DeviceCMYK
+992 0 R]/PANTONE7486PC[/Separation/PANTONE#207486#20PC/DeviceCMYK 993 0 R]/PANTONE7487PC[/Separation/PANTONE#207487#20PC/DeviceCMYK
+994 0 R]/PANTONE7488PC[/Separation/PANTONE#207488#20PC/DeviceCMYK 995 0 R]/PANTONE7489PC[/Separation/PANTONE#207489#20PC/DeviceCMYK
+996 0 R]/PANTONE7490PC[/Separation/PANTONE#207490#20PC/DeviceCMYK 997 0 R]/PANTONE7491PC[/Separation/PANTONE#207491#20PC/DeviceCMYK
+998 0 R]/PANTONE7492PC[/Separation/PANTONE#207492#20PC/DeviceCMYK 999 0 R]/PANTONE7493PC[/Separation/PANTONE#207493#20PC/DeviceCMYK
+1000 0 R]/PANTONE7494PC[/Separation/PANTONE#207494#20PC/DeviceCMYK 1001 0 R]/PANTONE7495PC[/Separation/PANTONE#207495#20PC/DeviceCMYK
+1002 0 R]/PANTONE7496PC[/Separation/PANTONE#207496#20PC/DeviceCMYK 1003 0 R]/PANTONE7497PC[/Separation/PANTONE#207497#20PC/DeviceCMYK
+1004 0 R]/PANTONE7498PC[/Separation/PANTONE#207498#20PC/DeviceCMYK 1005 0 R]/PANTONE7499PC[/Separation/PANTONE#207499#20PC/DeviceCMYK
+1006 0 R]/PANTONE7500PC[/Separation/PANTONE#207500#20PC/DeviceCMYK 1007 0 R]/PANTONE7501PC[/Separation/PANTONE#207501#20PC/DeviceCMYK
+1008 0 R]/PANTONE7502PC[/Separation/PANTONE#207502#20PC/DeviceCMYK 1009 0 R]/PANTONE7503PC[/Separation/PANTONE#207503#20PC/DeviceCMYK
+1010 0 R]/PANTONE7504PC[/Separation/PANTONE#207504#20PC/DeviceCMYK 1011 0 R]/PANTONE7505PC[/Separation/PANTONE#207505#20PC/DeviceCMYK
+1012 0 R]/PANTONE7506PC[/Separation/PANTONE#207506#20PC/DeviceCMYK 1013 0 R]/PANTONE7507PC[/Separation/PANTONE#207507#20PC/DeviceCMYK
+1014 0 R]/PANTONE7508PC[/Separation/PANTONE#207508#20PC/DeviceCMYK 1015 0 R]/PANTONE7509PC[/Separation/PANTONE#207509#20PC/DeviceCMYK
+1016 0 R]/PANTONE7510PC[/Separation/PANTONE#207510#20PC/DeviceCMYK 1017 0 R]/PANTONE7511PC[/Separation/PANTONE#207511#20PC/DeviceCMYK
+1018 0 R]/PANTONE7512PC[/Separation/PANTONE#207512#20PC/DeviceCMYK 1019 0 R]/PANTONE7513PC[/Separation/PANTONE#207513#20PC/DeviceCMYK
+1020 0 R]/PANTONE7514PC[/Separation/PANTONE#207514#20PC/DeviceCMYK 1021 0 R]/PANTONE7515PC[/Separation/PANTONE#207515#20PC/DeviceCMYK
+1022 0 R]/PANTONE7516PC[/Separation/PANTONE#207516#20PC/DeviceCMYK 1023 0 R]/PANTONE7517PC[/Separation/PANTONE#207517#20PC/DeviceCMYK
+1024 0 R]/PANTONE7518PC[/Separation/PANTONE#207518#20PC/DeviceCMYK 1025 0 R]/PANTONE7519PC[/Separation/PANTONE#207519#20PC/DeviceCMYK
+1026 0 R]/PANTONE7520PC[/Separation/PANTONE#207520#20PC/DeviceCMYK 1027 0 R]/PANTONE7521PC[/Separation/PANTONE#207521#20PC/DeviceCMYK
+1028 0 R]/PANTONE7522PC[/Separation/PANTONE#207522#20PC/DeviceCMYK 1029 0 R]/PANTONE7523PC[/Separation/PANTONE#207523#20PC/DeviceCMYK
+1030 0 R]/PANTONE7524PC[/Separation/PANTONE#207524#20PC/DeviceCMYK 1031 0 R]/PANTONE7525PC[/Separation/PANTONE#207525#20PC/DeviceCMYK
+1032 0 R]/PANTONE7526PC[/Separation/PANTONE#207526#20PC/DeviceCMYK 1033 0 R]/PANTONE7527PC[/Separation/PANTONE#207527#20PC/DeviceCMYK
+1034 0 R]/PANTONE7528PC[/Separation/PANTONE#207528#20PC/DeviceCMYK 1035 0 R]/PANTONE7529PC[/Separation/PANTONE#207529#20PC/DeviceCMYK
+1036 0 R]/PANTONE7530PC[/Separation/PANTONE#207530#20PC/DeviceCMYK 1037 0 R]/PANTONE7531PC[/Separation/PANTONE#207531#20PC/DeviceCMYK
+1038 0 R]/PANTONE7532PC[/Separation/PANTONE#207532#20PC/DeviceCMYK 1039 0 R]/PANTONE7533PC[/Separation/PANTONE#207533#20PC/DeviceCMYK
+1040 0 R]/PANTONE7534PC[/Separation/PANTONE#207534#20PC/DeviceCMYK 1041 0 R]/PANTONE7535PC[/Separation/PANTONE#207535#20PC/DeviceCMYK
+1042 0 R]/PANTONE7536PC[/Separation/PANTONE#207536#20PC/DeviceCMYK 1043 0 R]/PANTONE7537PC[/Separation/PANTONE#207537#20PC/DeviceCMYK
+1044 0 R]/PANTONE7538PC[/Separation/PANTONE#207538#20PC/DeviceCMYK 1045 0 R]/PANTONE7539PC[/Separation/PANTONE#207539#20PC/DeviceCMYK
+1046 0 R]/PANTONE7540PC[/Separation/PANTONE#207540#20PC/DeviceCMYK 1047 0 R]/PANTONE7541PC[/Separation/PANTONE#207541#20PC/DeviceCMYK
+1048 0 R]/PANTONE7542PC[/Separation/PANTONE#207542#20PC/DeviceCMYK 1049 0 R]/PANTONE7543PC[/Separation/PANTONE#207543#20PC/DeviceCMYK
+1050 0 R]/PANTONE7544PC[/Separation/PANTONE#207544#20PC/DeviceCMYK 1051 0 R]/PANTONE7545PC[/Separation/PANTONE#207545#20PC/DeviceCMYK
+1052 0 R]/PANTONE7546PC[/Separation/PANTONE#207546#20PC/DeviceCMYK 1053 0 R]/PANTONE7547PC[/Separation/PANTONE#207547#20PC/DeviceCMYK
+1054 0 R]/PANTONEBlack2PC[/Separation/PANTONE#20Black#202#20PC/DeviceCMYK 1055 0 R]/PANTONEBlack3PC[/Separation/PANTONE#20Black#203#20PC/DeviceCMYK
+1056 0 R]/PANTONEBlack4PC[/Separation/PANTONE#20Black#204#20PC/DeviceCMYK 1057 0 R]/PANTONEBlack5PC[/Separation/PANTONE#20Black#205#20PC/DeviceCMYK
+1058 0 R]/PANTONEBlack6PC[/Separation/PANTONE#20Black#206#20PC/DeviceCMYK 1059 0 R]/PANTONEBlack7PC[/Separation/PANTONE#20Black#207#20PC/DeviceCMYK
+1060 0 R]/PANTONEBlackPC[/Separation/PANTONE#20Black#20PC/DeviceCMYK 1061 0 R]/PANTONEBlue072PC[/Separation/PANTONE#20Blue#20072#20PC/DeviceCMYK
+1062 0 R]/PANTONECoolGray1PC[/Separation/PANTONE#20Cool#20Gray#201#20PC/DeviceCMYK
+1063 0 R]/PANTONECoolGray2PC[/Separation/PANTONE#20Cool#20Gray#202#20PC/DeviceCMYK
+1064 0 R]/PANTONECoolGray3PC[/Separation/PANTONE#20Cool#20Gray#203#20PC/DeviceCMYK
+1065 0 R]/PANTONECoolGray4PC[/Separation/PANTONE#20Cool#20Gray#204#20PC/DeviceCMYK
+1066 0 R]/PANTONECoolGray5PC[/Separation/PANTONE#20Cool#20Gray#205#20PC/DeviceCMYK
+1067 0 R]/PANTONECoolGray6PC[/Separation/PANTONE#20Cool#20Gray#206#20PC/DeviceCMYK
+1068 0 R]/PANTONECoolGray7PC[/Separation/PANTONE#20Cool#20Gray#207#20PC/DeviceCMYK
+1069 0 R]/PANTONECoolGray8PC[/Separation/PANTONE#20Cool#20Gray#208#20PC/DeviceCMYK
+1070 0 R]/PANTONECoolGray9PC[/Separation/PANTONE#20Cool#20Gray#209#20PC/DeviceCMYK
+1071 0 R]/PANTONECoolGray10PC[/Separation/PANTONE#20Cool#20Gray#2010#20PC/DeviceCMYK
+1072 0 R]/PANTONECoolGray11PC[/Separation/PANTONE#20Cool#20Gray#2011#20PC/DeviceCMYK
+1073 0 R]/PANTONEGreenPC[/Separation/PANTONE#20Green#20PC/DeviceCMYK 1074 0 R]/PANTONEOrange021PC[/Separation/PANTONE#20Orange#20021#20PC/DeviceCMYK
+1075 0 R]/PANTONEProc.BlackPC[/Separation/PANTONE#20Proc.#20Black#20PC/DeviceCMYK
+1076 0 R]/PANTONEProc.BluePC[/Separation/PANTONE#20Proc.#20Blue#20PC/DeviceCMYK 1077 0 R]/PANTONEProc.CyanPC[/Separation/PANTONE#20Proc.#20Cyan#20PC/DeviceCMYK
+1078 0 R]/PANTONEProc.Magen.PC[/Separation/PANTONE#20Proc.#20Magen.#20PC/DeviceCMYK
+1079 0 R]/PANTONEProc.YellowPC[/Separation/PANTONE#20Proc.#20Yellow#20PC/DeviceCMYK
+1080 0 R]/PANTONEPurplePC[/Separation/PANTONE#20Purple#20PC/DeviceCMYK 1081 0 R]/PANTONERed032PC[/Separation/PANTONE#20Red#20032#20PC/DeviceCMYK
+1082 0 R]/PANTONERef.BluePC[/Separation/PANTONE#20Ref.#20Blue#20PC/DeviceCMYK 1083 0 R]/PANTONERhod.RedPC[/Separation/PANTONE#20Rhod.#20Red#20PC/DeviceCMYK
+1084 0 R]/PANTONERub.RedPC[/Separation/PANTONE#20Rub.#20Red#20PC/DeviceCMYK 1085 0 R]/PANTONEVioletPC[/Separation/PANTONE#20Violet#20PC/DeviceCMYK
+1086 0 R]/PANTONEWarmGray1PC[/Separation/PANTONE#20Warm#20Gray#201#20PC/DeviceCMYK
+1087 0 R]/PANTONEWarmGray2PC[/Separation/PANTONE#20Warm#20Gray#202#20PC/DeviceCMYK
+1088 0 R]/PANTONEWarmGray3PC[/Separation/PANTONE#20Warm#20Gray#203#20PC/DeviceCMYK
+1089 0 R]/PANTONEWarmGray4PC[/Separation/PANTONE#20Warm#20Gray#204#20PC/DeviceCMYK
+1090 0 R]/PANTONEWarmGray5PC[/Separation/PANTONE#20Warm#20Gray#205#20PC/DeviceCMYK
+1091 0 R]/PANTONEWarmGray6PC[/Separation/PANTONE#20Warm#20Gray#206#20PC/DeviceCMYK
+1092 0 R]/PANTONEWarmGray7PC[/Separation/PANTONE#20Warm#20Gray#207#20PC/DeviceCMYK
+1093 0 R]/PANTONEWarmGray8PC[/Separation/PANTONE#20Warm#20Gray#208#20PC/DeviceCMYK
+1094 0 R]/PANTONEWarmGray9PC[/Separation/PANTONE#20Warm#20Gray#209#20PC/DeviceCMYK
+1095 0 R]/PANTONEWarmGray10PC[/Separation/PANTONE#20Warm#20Gray#2010#20PC/DeviceCMYK
+1096 0 R]/PANTONEWarmGray11PC[/Separation/PANTONE#20Warm#20Gray#2011#20PC/DeviceCMYK
+1097 0 R]/PANTONEWarmRedPC[/Separation/PANTONE#20Warm#20Red#20PC/DeviceCMYK 1098 0 R]/PANTONEYellowPC[/Separation/PANTONE#20Yellow#20PC/DeviceCMYK
+1099 0 R]/HKS05N[/Separation/HKS#2005#20N/DeviceCMYK 1103 0 R]/HKS14N[/Separation/HKS#2014#20N/DeviceCMYK
+1104 0 R]/HKS17N[/Separation/HKS#2017#20N/DeviceCMYK 1105 0 R]/HKS24N[/Separation/HKS#2024#20N/DeviceCMYK
+1106 0 R]/HKS38N[/Separation/HKS#2038#20N/DeviceCMYK 1107 0 R]/HKS49N[/Separation/HKS#2049#20N/DeviceCMYK
+1108 0 R]/HKS57N[/Separation/HKS#2057#20N/DeviceCMYK 1109 0 R]/HKS68N[/Separation/HKS#2068#20N/DeviceCMYK
+1110 0 R]/HKS74N[/Separation/HKS#2074#20N/DeviceCMYK 1111 0 R]/HKS92N[/Separation/HKS#2092#20N/DeviceCMYK
+1112 0 R]/SOMECOLOR[/Separation/Spot#20Color#20Name#20in#20PDF/DeviceCMYK 1116 0 R]>>/Font<</F1
+5 0 R/F2 7 0 R>>/ProcSet[/PDF/Text/ImageC/ImageB/ImageI]>>
+endobj
+1124 0 obj
+<</Filter/FlateDecode/Length 172>>
+stream
+xڥM
+@ ]t2
+U]h{0vUB ! {-J4 (]c5RIn%⊪Hk9Z؀)`Kޣ{F]Dr`蔜w5\ '$">0O/U#Pfjä`"`vp~\}
+endstream
+endobj
+1125 0 obj
+<</ColorSpace<</PANTONE100PC[/Separation/PANTONE#20100#20PC/DeviceCMYK 11 0 R]/PANTONE101PC[/Separation/PANTONE#20101#20PC/DeviceCMYK
+12 0 R]/PANTONE102PC[/Separation/PANTONE#20102#20PC/DeviceCMYK 13 0 R]/PANTONE103PC[/Separation/PANTONE#20103#20PC/DeviceCMYK
+14 0 R]/PANTONE104PC[/Separation/PANTONE#20104#20PC/DeviceCMYK 15 0 R]/PANTONE105PC[/Separation/PANTONE#20105#20PC/DeviceCMYK
+16 0 R]/PANTONE106PC[/Separation/PANTONE#20106#20PC/DeviceCMYK 17 0 R]/PANTONE107PC[/Separation/PANTONE#20107#20PC/DeviceCMYK
+18 0 R]/PANTONE108PC[/Separation/PANTONE#20108#20PC/DeviceCMYK 19 0 R]/PANTONE109PC[/Separation/PANTONE#20109#20PC/DeviceCMYK
+20 0 R]/PANTONE110PC[/Separation/PANTONE#20110#20PC/DeviceCMYK 21 0 R]/PANTONE111PC[/Separation/PANTONE#20111#20PC/DeviceCMYK
+22 0 R]/PANTONE112PC[/Separation/PANTONE#20112#20PC/DeviceCMYK 23 0 R]/PANTONE113PC[/Separation/PANTONE#20113#20PC/DeviceCMYK
+24 0 R]/PANTONE114PC[/Separation/PANTONE#20114#20PC/DeviceCMYK 25 0 R]/PANTONE115PC[/Separation/PANTONE#20115#20PC/DeviceCMYK
+26 0 R]/PANTONE116PC[/Separation/PANTONE#20116#20PC/DeviceCMYK 27 0 R]/PANTONE117PC[/Separation/PANTONE#20117#20PC/DeviceCMYK
+28 0 R]/PANTONE118PC[/Separation/PANTONE#20118#20PC/DeviceCMYK 29 0 R]/PANTONE119PC[/Separation/PANTONE#20119#20PC/DeviceCMYK
+30 0 R]/PANTONE120PC[/Separation/PANTONE#20120#20PC/DeviceCMYK 31 0 R]/PANTONE121PC[/Separation/PANTONE#20121#20PC/DeviceCMYK
+32 0 R]/PANTONE122PC[/Separation/PANTONE#20122#20PC/DeviceCMYK 33 0 R]/PANTONE123PC[/Separation/PANTONE#20123#20PC/DeviceCMYK
+34 0 R]/PANTONE124PC[/Separation/PANTONE#20124#20PC/DeviceCMYK 35 0 R]/PANTONE125PC[/Separation/PANTONE#20125#20PC/DeviceCMYK
+36 0 R]/PANTONE126PC[/Separation/PANTONE#20126#20PC/DeviceCMYK 37 0 R]/PANTONE127PC[/Separation/PANTONE#20127#20PC/DeviceCMYK
+38 0 R]/PANTONE128PC[/Separation/PANTONE#20128#20PC/DeviceCMYK 39 0 R]/PANTONE129PC[/Separation/PANTONE#20129#20PC/DeviceCMYK
+40 0 R]/PANTONE130PC[/Separation/PANTONE#20130#20PC/DeviceCMYK 41 0 R]/PANTONE131PC[/Separation/PANTONE#20131#20PC/DeviceCMYK
+42 0 R]/PANTONE132PC[/Separation/PANTONE#20132#20PC/DeviceCMYK 43 0 R]/PANTONE133PC[/Separation/PANTONE#20133#20PC/DeviceCMYK
+44 0 R]/PANTONE134PC[/Separation/PANTONE#20134#20PC/DeviceCMYK 45 0 R]/PANTONE135PC[/Separation/PANTONE#20135#20PC/DeviceCMYK
+46 0 R]/PANTONE136PC[/Separation/PANTONE#20136#20PC/DeviceCMYK 47 0 R]/PANTONE137PC[/Separation/PANTONE#20137#20PC/DeviceCMYK
+48 0 R]/PANTONE138PC[/Separation/PANTONE#20138#20PC/DeviceCMYK 49 0 R]/PANTONE139PC[/Separation/PANTONE#20139#20PC/DeviceCMYK
+50 0 R]/PANTONE140PC[/Separation/PANTONE#20140#20PC/DeviceCMYK 51 0 R]/PANTONE141PC[/Separation/PANTONE#20141#20PC/DeviceCMYK
+52 0 R]/PANTONE142PC[/Separation/PANTONE#20142#20PC/DeviceCMYK 53 0 R]/PANTONE143PC[/Separation/PANTONE#20143#20PC/DeviceCMYK
+54 0 R]/PANTONE144PC[/Separation/PANTONE#20144#20PC/DeviceCMYK 55 0 R]/PANTONE145PC[/Separation/PANTONE#20145#20PC/DeviceCMYK
+56 0 R]/PANTONE146PC[/Separation/PANTONE#20146#20PC/DeviceCMYK 57 0 R]/PANTONE147PC[/Separation/PANTONE#20147#20PC/DeviceCMYK
+58 0 R]/PANTONE148PC[/Separation/PANTONE#20148#20PC/DeviceCMYK 59 0 R]/PANTONE149PC[/Separation/PANTONE#20149#20PC/DeviceCMYK
+60 0 R]/PANTONE150PC[/Separation/PANTONE#20150#20PC/DeviceCMYK 61 0 R]/PANTONE151PC[/Separation/PANTONE#20151#20PC/DeviceCMYK
+62 0 R]/PANTONE152PC[/Separation/PANTONE#20152#20PC/DeviceCMYK 63 0 R]/PANTONE153PC[/Separation/PANTONE#20153#20PC/DeviceCMYK
+64 0 R]/PANTONE154PC[/Separation/PANTONE#20154#20PC/DeviceCMYK 65 0 R]/PANTONE155PC[/Separation/PANTONE#20155#20PC/DeviceCMYK
+66 0 R]/PANTONE156PC[/Separation/PANTONE#20156#20PC/DeviceCMYK 67 0 R]/PANTONE157PC[/Separation/PANTONE#20157#20PC/DeviceCMYK
+68 0 R]/PANTONE158PC[/Separation/PANTONE#20158#20PC/DeviceCMYK 69 0 R]/PANTONE159PC[/Separation/PANTONE#20159#20PC/DeviceCMYK
+70 0 R]/PANTONE160PC[/Separation/PANTONE#20160#20PC/DeviceCMYK 71 0 R]/PANTONE161PC[/Separation/PANTONE#20161#20PC/DeviceCMYK
+72 0 R]/PANTONE162PC[/Separation/PANTONE#20162#20PC/DeviceCMYK 73 0 R]/PANTONE163PC[/Separation/PANTONE#20163#20PC/DeviceCMYK
+74 0 R]/PANTONE164PC[/Separation/PANTONE#20164#20PC/DeviceCMYK 75 0 R]/PANTONE165PC[/Separation/PANTONE#20165#20PC/DeviceCMYK
+76 0 R]/PANTONE166PC[/Separation/PANTONE#20166#20PC/DeviceCMYK 77 0 R]/PANTONE167PC[/Separation/PANTONE#20167#20PC/DeviceCMYK
+78 0 R]/PANTONE168PC[/Separation/PANTONE#20168#20PC/DeviceCMYK 79 0 R]/PANTONE169PC[/Separation/PANTONE#20169#20PC/DeviceCMYK
+80 0 R]/PANTONE170PC[/Separation/PANTONE#20170#20PC/DeviceCMYK 81 0 R]/PANTONE171PC[/Separation/PANTONE#20171#20PC/DeviceCMYK
+82 0 R]/PANTONE172PC[/Separation/PANTONE#20172#20PC/DeviceCMYK 83 0 R]/PANTONE173PC[/Separation/PANTONE#20173#20PC/DeviceCMYK
+84 0 R]/PANTONE174PC[/Separation/PANTONE#20174#20PC/DeviceCMYK 85 0 R]/PANTONE175PC[/Separation/PANTONE#20175#20PC/DeviceCMYK
+86 0 R]/PANTONE176PC[/Separation/PANTONE#20176#20PC/DeviceCMYK 87 0 R]/PANTONE177PC[/Separation/PANTONE#20177#20PC/DeviceCMYK
+88 0 R]/PANTONE178PC[/Separation/PANTONE#20178#20PC/DeviceCMYK 89 0 R]/PANTONE179PC[/Separation/PANTONE#20179#20PC/DeviceCMYK
+90 0 R]/PANTONE180PC[/Separation/PANTONE#20180#20PC/DeviceCMYK 91 0 R]/PANTONE181PC[/Separation/PANTONE#20181#20PC/DeviceCMYK
+92 0 R]/PANTONE182PC[/Separation/PANTONE#20182#20PC/DeviceCMYK 93 0 R]/PANTONE183PC[/Separation/PANTONE#20183#20PC/DeviceCMYK
+94 0 R]/PANTONE184PC[/Separation/PANTONE#20184#20PC/DeviceCMYK 95 0 R]/PANTONE185PC[/Separation/PANTONE#20185#20PC/DeviceCMYK
+96 0 R]/PANTONE186PC[/Separation/PANTONE#20186#20PC/DeviceCMYK 97 0 R]/PANTONE187PC[/Separation/PANTONE#20187#20PC/DeviceCMYK
+98 0 R]/PANTONE188PC[/Separation/PANTONE#20188#20PC/DeviceCMYK 99 0 R]/PANTONE189PC[/Separation/PANTONE#20189#20PC/DeviceCMYK
+100 0 R]/PANTONE190PC[/Separation/PANTONE#20190#20PC/DeviceCMYK 101 0 R]/PANTONE191PC[/Separation/PANTONE#20191#20PC/DeviceCMYK
+102 0 R]/PANTONE192PC[/Separation/PANTONE#20192#20PC/DeviceCMYK 103 0 R]/PANTONE193PC[/Separation/PANTONE#20193#20PC/DeviceCMYK
+104 0 R]/PANTONE194PC[/Separation/PANTONE#20194#20PC/DeviceCMYK 105 0 R]/PANTONE195PC[/Separation/PANTONE#20195#20PC/DeviceCMYK
+106 0 R]/PANTONE196PC[/Separation/PANTONE#20196#20PC/DeviceCMYK 107 0 R]/PANTONE197PC[/Separation/PANTONE#20197#20PC/DeviceCMYK
+108 0 R]/PANTONE198PC[/Separation/PANTONE#20198#20PC/DeviceCMYK 109 0 R]/PANTONE199PC[/Separation/PANTONE#20199#20PC/DeviceCMYK
+110 0 R]/PANTONE200PC[/Separation/PANTONE#20200#20PC/DeviceCMYK 111 0 R]/PANTONE201PC[/Separation/PANTONE#20201#20PC/DeviceCMYK
+112 0 R]/PANTONE202PC[/Separation/PANTONE#20202#20PC/DeviceCMYK 113 0 R]/PANTONE203PC[/Separation/PANTONE#20203#20PC/DeviceCMYK
+114 0 R]/PANTONE204PC[/Separation/PANTONE#20204#20PC/DeviceCMYK 115 0 R]/PANTONE205PC[/Separation/PANTONE#20205#20PC/DeviceCMYK
+116 0 R]/PANTONE206PC[/Separation/PANTONE#20206#20PC/DeviceCMYK 117 0 R]/PANTONE207PC[/Separation/PANTONE#20207#20PC/DeviceCMYK
+118 0 R]/PANTONE208PC[/Separation/PANTONE#20208#20PC/DeviceCMYK 119 0 R]/PANTONE209PC[/Separation/PANTONE#20209#20PC/DeviceCMYK
+120 0 R]/PANTONE210PC[/Separation/PANTONE#20210#20PC/DeviceCMYK 121 0 R]/PANTONE211PC[/Separation/PANTONE#20211#20PC/DeviceCMYK
+122 0 R]/PANTONE212PC[/Separation/PANTONE#20212#20PC/DeviceCMYK 123 0 R]/PANTONE213PC[/Separation/PANTONE#20213#20PC/DeviceCMYK
+124 0 R]/PANTONE214PC[/Separation/PANTONE#20214#20PC/DeviceCMYK 125 0 R]/PANTONE215PC[/Separation/PANTONE#20215#20PC/DeviceCMYK
+126 0 R]/PANTONE216PC[/Separation/PANTONE#20216#20PC/DeviceCMYK 127 0 R]/PANTONE217PC[/Separation/PANTONE#20217#20PC/DeviceCMYK
+128 0 R]/PANTONE218PC[/Separation/PANTONE#20218#20PC/DeviceCMYK 129 0 R]/PANTONE219PC[/Separation/PANTONE#20219#20PC/DeviceCMYK
+130 0 R]/PANTONE220PC[/Separation/PANTONE#20220#20PC/DeviceCMYK 131 0 R]/PANTONE221PC[/Separation/PANTONE#20221#20PC/DeviceCMYK
+132 0 R]/PANTONE222PC[/Separation/PANTONE#20222#20PC/DeviceCMYK 133 0 R]/PANTONE223PC[/Separation/PANTONE#20223#20PC/DeviceCMYK
+134 0 R]/PANTONE224PC[/Separation/PANTONE#20224#20PC/DeviceCMYK 135 0 R]/PANTONE225PC[/Separation/PANTONE#20225#20PC/DeviceCMYK
+136 0 R]/PANTONE226PC[/Separation/PANTONE#20226#20PC/DeviceCMYK 137 0 R]/PANTONE227PC[/Separation/PANTONE#20227#20PC/DeviceCMYK
+138 0 R]/PANTONE228PC[/Separation/PANTONE#20228#20PC/DeviceCMYK 139 0 R]/PANTONE229PC[/Separation/PANTONE#20229#20PC/DeviceCMYK
+140 0 R]/PANTONE230PC[/Separation/PANTONE#20230#20PC/DeviceCMYK 141 0 R]/PANTONE231PC[/Separation/PANTONE#20231#20PC/DeviceCMYK
+142 0 R]/PANTONE232PC[/Separation/PANTONE#20232#20PC/DeviceCMYK 143 0 R]/PANTONE233PC[/Separation/PANTONE#20233#20PC/DeviceCMYK
+144 0 R]/PANTONE234PC[/Separation/PANTONE#20234#20PC/DeviceCMYK 145 0 R]/PANTONE235PC[/Separation/PANTONE#20235#20PC/DeviceCMYK
+146 0 R]/PANTONE236PC[/Separation/PANTONE#20236#20PC/DeviceCMYK 147 0 R]/PANTONE237PC[/Separation/PANTONE#20237#20PC/DeviceCMYK
+148 0 R]/PANTONE238PC[/Separation/PANTONE#20238#20PC/DeviceCMYK 149 0 R]/PANTONE239PC[/Separation/PANTONE#20239#20PC/DeviceCMYK
+150 0 R]/PANTONE240PC[/Separation/PANTONE#20240#20PC/DeviceCMYK 151 0 R]/PANTONE241PC[/Separation/PANTONE#20241#20PC/DeviceCMYK
+152 0 R]/PANTONE242PC[/Separation/PANTONE#20242#20PC/DeviceCMYK 153 0 R]/PANTONE243PC[/Separation/PANTONE#20243#20PC/DeviceCMYK
+154 0 R]/PANTONE244PC[/Separation/PANTONE#20244#20PC/DeviceCMYK 155 0 R]/PANTONE245PC[/Separation/PANTONE#20245#20PC/DeviceCMYK
+156 0 R]/PANTONE246PC[/Separation/PANTONE#20246#20PC/DeviceCMYK 157 0 R]/PANTONE247PC[/Separation/PANTONE#20247#20PC/DeviceCMYK
+158 0 R]/PANTONE248PC[/Separation/PANTONE#20248#20PC/DeviceCMYK 159 0 R]/PANTONE249PC[/Separation/PANTONE#20249#20PC/DeviceCMYK
+160 0 R]/PANTONE250PC[/Separation/PANTONE#20250#20PC/DeviceCMYK 161 0 R]/PANTONE251PC[/Separation/PANTONE#20251#20PC/DeviceCMYK
+162 0 R]/PANTONE252PC[/Separation/PANTONE#20252#20PC/DeviceCMYK 163 0 R]/PANTONE253PC[/Separation/PANTONE#20253#20PC/DeviceCMYK
+164 0 R]/PANTONE254PC[/Separation/PANTONE#20254#20PC/DeviceCMYK 165 0 R]/PANTONE255PC[/Separation/PANTONE#20255#20PC/DeviceCMYK
+166 0 R]/PANTONE256PC[/Separation/PANTONE#20256#20PC/DeviceCMYK 167 0 R]/PANTONE257PC[/Separation/PANTONE#20257#20PC/DeviceCMYK
+168 0 R]/PANTONE258PC[/Separation/PANTONE#20258#20PC/DeviceCMYK 169 0 R]/PANTONE259PC[/Separation/PANTONE#20259#20PC/DeviceCMYK
+170 0 R]/PANTONE260PC[/Separation/PANTONE#20260#20PC/DeviceCMYK 171 0 R]/PANTONE261PC[/Separation/PANTONE#20261#20PC/DeviceCMYK
+172 0 R]/PANTONE262PC[/Separation/PANTONE#20262#20PC/DeviceCMYK 173 0 R]/PANTONE263PC[/Separation/PANTONE#20263#20PC/DeviceCMYK
+174 0 R]/PANTONE264PC[/Separation/PANTONE#20264#20PC/DeviceCMYK 175 0 R]/PANTONE265PC[/Separation/PANTONE#20265#20PC/DeviceCMYK
+176 0 R]/PANTONE266PC[/Separation/PANTONE#20266#20PC/DeviceCMYK 177 0 R]/PANTONE267PC[/Separation/PANTONE#20267#20PC/DeviceCMYK
+178 0 R]/PANTONE268PC[/Separation/PANTONE#20268#20PC/DeviceCMYK 179 0 R]/PANTONE269PC[/Separation/PANTONE#20269#20PC/DeviceCMYK
+180 0 R]/PANTONE270PC[/Separation/PANTONE#20270#20PC/DeviceCMYK 181 0 R]/PANTONE271PC[/Separation/PANTONE#20271#20PC/DeviceCMYK
+182 0 R]/PANTONE272PC[/Separation/PANTONE#20272#20PC/DeviceCMYK 183 0 R]/PANTONE273PC[/Separation/PANTONE#20273#20PC/DeviceCMYK
+184 0 R]/PANTONE274PC[/Separation/PANTONE#20274#20PC/DeviceCMYK 185 0 R]/PANTONE275PC[/Separation/PANTONE#20275#20PC/DeviceCMYK
+186 0 R]/PANTONE276PC[/Separation/PANTONE#20276#20PC/DeviceCMYK 187 0 R]/PANTONE277PC[/Separation/PANTONE#20277#20PC/DeviceCMYK
+188 0 R]/PANTONE278PC[/Separation/PANTONE#20278#20PC/DeviceCMYK 189 0 R]/PANTONE279PC[/Separation/PANTONE#20279#20PC/DeviceCMYK
+190 0 R]/PANTONE280PC[/Separation/PANTONE#20280#20PC/DeviceCMYK 191 0 R]/PANTONE281PC[/Separation/PANTONE#20281#20PC/DeviceCMYK
+192 0 R]/PANTONE282PC[/Separation/PANTONE#20282#20PC/DeviceCMYK 193 0 R]/PANTONE283PC[/Separation/PANTONE#20283#20PC/DeviceCMYK
+194 0 R]/PANTONE284PC[/Separation/PANTONE#20284#20PC/DeviceCMYK 195 0 R]/PANTONE285PC[/Separation/PANTONE#20285#20PC/DeviceCMYK
+196 0 R]/PANTONE286PC[/Separation/PANTONE#20286#20PC/DeviceCMYK 197 0 R]/PANTONE287PC[/Separation/PANTONE#20287#20PC/DeviceCMYK
+198 0 R]/PANTONE288PC[/Separation/PANTONE#20288#20PC/DeviceCMYK 199 0 R]/PANTONE289PC[/Separation/PANTONE#20289#20PC/DeviceCMYK
+200 0 R]/PANTONE290PC[/Separation/PANTONE#20290#20PC/DeviceCMYK 201 0 R]/PANTONE291PC[/Separation/PANTONE#20291#20PC/DeviceCMYK
+202 0 R]/PANTONE292PC[/Separation/PANTONE#20292#20PC/DeviceCMYK 203 0 R]/PANTONE293PC[/Separation/PANTONE#20293#20PC/DeviceCMYK
+204 0 R]/PANTONE294PC[/Separation/PANTONE#20294#20PC/DeviceCMYK 205 0 R]/PANTONE295PC[/Separation/PANTONE#20295#20PC/DeviceCMYK
+206 0 R]/PANTONE296PC[/Separation/PANTONE#20296#20PC/DeviceCMYK 207 0 R]/PANTONE297PC[/Separation/PANTONE#20297#20PC/DeviceCMYK
+208 0 R]/PANTONE298PC[/Separation/PANTONE#20298#20PC/DeviceCMYK 209 0 R]/PANTONE299PC[/Separation/PANTONE#20299#20PC/DeviceCMYK
+210 0 R]/PANTONE300PC[/Separation/PANTONE#20300#20PC/DeviceCMYK 211 0 R]/PANTONE301PC[/Separation/PANTONE#20301#20PC/DeviceCMYK
+212 0 R]/PANTONE302PC[/Separation/PANTONE#20302#20PC/DeviceCMYK 213 0 R]/PANTONE303PC[/Separation/PANTONE#20303#20PC/DeviceCMYK
+214 0 R]/PANTONE304PC[/Separation/PANTONE#20304#20PC/DeviceCMYK 215 0 R]/PANTONE305PC[/Separation/PANTONE#20305#20PC/DeviceCMYK
+216 0 R]/PANTONE306PC[/Separation/PANTONE#20306#20PC/DeviceCMYK 217 0 R]/PANTONE307PC[/Separation/PANTONE#20307#20PC/DeviceCMYK
+218 0 R]/PANTONE308PC[/Separation/PANTONE#20308#20PC/DeviceCMYK 219 0 R]/PANTONE309PC[/Separation/PANTONE#20309#20PC/DeviceCMYK
+220 0 R]/PANTONE310PC[/Separation/PANTONE#20310#20PC/DeviceCMYK 221 0 R]/PANTONE311PC[/Separation/PANTONE#20311#20PC/DeviceCMYK
+222 0 R]/PANTONE312PC[/Separation/PANTONE#20312#20PC/DeviceCMYK 223 0 R]/PANTONE313PC[/Separation/PANTONE#20313#20PC/DeviceCMYK
+224 0 R]/PANTONE314PC[/Separation/PANTONE#20314#20PC/DeviceCMYK 225 0 R]/PANTONE315PC[/Separation/PANTONE#20315#20PC/DeviceCMYK
+226 0 R]/PANTONE316PC[/Separation/PANTONE#20316#20PC/DeviceCMYK 227 0 R]/PANTONE317PC[/Separation/PANTONE#20317#20PC/DeviceCMYK
+228 0 R]/PANTONE318PC[/Separation/PANTONE#20318#20PC/DeviceCMYK 229 0 R]/PANTONE319PC[/Separation/PANTONE#20319#20PC/DeviceCMYK
+230 0 R]/PANTONE320PC[/Separation/PANTONE#20320#20PC/DeviceCMYK 231 0 R]/PANTONE321PC[/Separation/PANTONE#20321#20PC/DeviceCMYK
+232 0 R]/PANTONE322PC[/Separation/PANTONE#20322#20PC/DeviceCMYK 233 0 R]/PANTONE323PC[/Separation/PANTONE#20323#20PC/DeviceCMYK
+234 0 R]/PANTONE324PC[/Separation/PANTONE#20324#20PC/DeviceCMYK 235 0 R]/PANTONE325PC[/Separation/PANTONE#20325#20PC/DeviceCMYK
+236 0 R]/PANTONE326PC[/Separation/PANTONE#20326#20PC/DeviceCMYK 237 0 R]/PANTONE327PC[/Separation/PANTONE#20327#20PC/DeviceCMYK
+238 0 R]/PANTONE328PC[/Separation/PANTONE#20328#20PC/DeviceCMYK 239 0 R]/PANTONE329PC[/Separation/PANTONE#20329#20PC/DeviceCMYK
+240 0 R]/PANTONE330PC[/Separation/PANTONE#20330#20PC/DeviceCMYK 241 0 R]/PANTONE331PC[/Separation/PANTONE#20331#20PC/DeviceCMYK
+242 0 R]/PANTONE332PC[/Separation/PANTONE#20332#20PC/DeviceCMYK 243 0 R]/PANTONE333PC[/Separation/PANTONE#20333#20PC/DeviceCMYK
+244 0 R]/PANTONE334PC[/Separation/PANTONE#20334#20PC/DeviceCMYK 245 0 R]/PANTONE335PC[/Separation/PANTONE#20335#20PC/DeviceCMYK
+246 0 R]/PANTONE336PC[/Separation/PANTONE#20336#20PC/DeviceCMYK 247 0 R]/PANTONE337PC[/Separation/PANTONE#20337#20PC/DeviceCMYK
+248 0 R]/PANTONE338PC[/Separation/PANTONE#20338#20PC/DeviceCMYK 249 0 R]/PANTONE339PC[/Separation/PANTONE#20339#20PC/DeviceCMYK
+250 0 R]/PANTONE340PC[/Separation/PANTONE#20340#20PC/DeviceCMYK 251 0 R]/PANTONE341PC[/Separation/PANTONE#20341#20PC/DeviceCMYK
+252 0 R]/PANTONE342PC[/Separation/PANTONE#20342#20PC/DeviceCMYK 253 0 R]/PANTONE343PC[/Separation/PANTONE#20343#20PC/DeviceCMYK
+254 0 R]/PANTONE344PC[/Separation/PANTONE#20344#20PC/DeviceCMYK 255 0 R]/PANTONE345PC[/Separation/PANTONE#20345#20PC/DeviceCMYK
+256 0 R]/PANTONE346PC[/Separation/PANTONE#20346#20PC/DeviceCMYK 257 0 R]/PANTONE347PC[/Separation/PANTONE#20347#20PC/DeviceCMYK
+258 0 R]/PANTONE348PC[/Separation/PANTONE#20348#20PC/DeviceCMYK 259 0 R]/PANTONE349PC[/Separation/PANTONE#20349#20PC/DeviceCMYK
+260 0 R]/PANTONE350PC[/Separation/PANTONE#20350#20PC/DeviceCMYK 261 0 R]/PANTONE351PC[/Separation/PANTONE#20351#20PC/DeviceCMYK
+262 0 R]/PANTONE352PC[/Separation/PANTONE#20352#20PC/DeviceCMYK 263 0 R]/PANTONE353PC[/Separation/PANTONE#20353#20PC/DeviceCMYK
+264 0 R]/PANTONE354PC[/Separation/PANTONE#20354#20PC/DeviceCMYK 265 0 R]/PANTONE355PC[/Separation/PANTONE#20355#20PC/DeviceCMYK
+266 0 R]/PANTONE356PC[/Separation/PANTONE#20356#20PC/DeviceCMYK 267 0 R]/PANTONE357PC[/Separation/PANTONE#20357#20PC/DeviceCMYK
+268 0 R]/PANTONE358PC[/Separation/PANTONE#20358#20PC/DeviceCMYK 269 0 R]/PANTONE359PC[/Separation/PANTONE#20359#20PC/DeviceCMYK
+270 0 R]/PANTONE360PC[/Separation/PANTONE#20360#20PC/DeviceCMYK 271 0 R]/PANTONE361PC[/Separation/PANTONE#20361#20PC/DeviceCMYK
+272 0 R]/PANTONE362PC[/Separation/PANTONE#20362#20PC/DeviceCMYK 273 0 R]/PANTONE363PC[/Separation/PANTONE#20363#20PC/DeviceCMYK
+274 0 R]/PANTONE364PC[/Separation/PANTONE#20364#20PC/DeviceCMYK 275 0 R]/PANTONE365PC[/Separation/PANTONE#20365#20PC/DeviceCMYK
+276 0 R]/PANTONE366PC[/Separation/PANTONE#20366#20PC/DeviceCMYK 277 0 R]/PANTONE367PC[/Separation/PANTONE#20367#20PC/DeviceCMYK
+278 0 R]/PANTONE368PC[/Separation/PANTONE#20368#20PC/DeviceCMYK 279 0 R]/PANTONE369PC[/Separation/PANTONE#20369#20PC/DeviceCMYK
+280 0 R]/PANTONE370PC[/Separation/PANTONE#20370#20PC/DeviceCMYK 281 0 R]/PANTONE371PC[/Separation/PANTONE#20371#20PC/DeviceCMYK
+282 0 R]/PANTONE372PC[/Separation/PANTONE#20372#20PC/DeviceCMYK 283 0 R]/PANTONE373PC[/Separation/PANTONE#20373#20PC/DeviceCMYK
+284 0 R]/PANTONE374PC[/Separation/PANTONE#20374#20PC/DeviceCMYK 285 0 R]/PANTONE375PC[/Separation/PANTONE#20375#20PC/DeviceCMYK
+286 0 R]/PANTONE376PC[/Separation/PANTONE#20376#20PC/DeviceCMYK 287 0 R]/PANTONE377PC[/Separation/PANTONE#20377#20PC/DeviceCMYK
+288 0 R]/PANTONE378PC[/Separation/PANTONE#20378#20PC/DeviceCMYK 289 0 R]/PANTONE379PC[/Separation/PANTONE#20379#20PC/DeviceCMYK
+290 0 R]/PANTONE380PC[/Separation/PANTONE#20380#20PC/DeviceCMYK 291 0 R]/PANTONE381PC[/Separation/PANTONE#20381#20PC/DeviceCMYK
+292 0 R]/PANTONE382PC[/Separation/PANTONE#20382#20PC/DeviceCMYK 293 0 R]/PANTONE383PC[/Separation/PANTONE#20383#20PC/DeviceCMYK
+294 0 R]/PANTONE384PC[/Separation/PANTONE#20384#20PC/DeviceCMYK 295 0 R]/PANTONE385PC[/Separation/PANTONE#20385#20PC/DeviceCMYK
+296 0 R]/PANTONE386PC[/Separation/PANTONE#20386#20PC/DeviceCMYK 297 0 R]/PANTONE387PC[/Separation/PANTONE#20387#20PC/DeviceCMYK
+298 0 R]/PANTONE388PC[/Separation/PANTONE#20388#20PC/DeviceCMYK 299 0 R]/PANTONE389PC[/Separation/PANTONE#20389#20PC/DeviceCMYK
+300 0 R]/PANTONE390PC[/Separation/PANTONE#20390#20PC/DeviceCMYK 301 0 R]/PANTONE391PC[/Separation/PANTONE#20391#20PC/DeviceCMYK
+302 0 R]/PANTONE392PC[/Separation/PANTONE#20392#20PC/DeviceCMYK 303 0 R]/PANTONE393PC[/Separation/PANTONE#20393#20PC/DeviceCMYK
+304 0 R]/PANTONE394PC[/Separation/PANTONE#20394#20PC/DeviceCMYK 305 0 R]/PANTONE395PC[/Separation/PANTONE#20395#20PC/DeviceCMYK
+306 0 R]/PANTONE396PC[/Separation/PANTONE#20396#20PC/DeviceCMYK 307 0 R]/PANTONE397PC[/Separation/PANTONE#20397#20PC/DeviceCMYK
+308 0 R]/PANTONE398PC[/Separation/PANTONE#20398#20PC/DeviceCMYK 309 0 R]/PANTONE399PC[/Separation/PANTONE#20399#20PC/DeviceCMYK
+310 0 R]/PANTONE400PC[/Separation/PANTONE#20400#20PC/DeviceCMYK 311 0 R]/PANTONE401PC[/Separation/PANTONE#20401#20PC/DeviceCMYK
+312 0 R]/PANTONE402PC[/Separation/PANTONE#20402#20PC/DeviceCMYK 313 0 R]/PANTONE403PC[/Separation/PANTONE#20403#20PC/DeviceCMYK
+314 0 R]/PANTONE404PC[/Separation/PANTONE#20404#20PC/DeviceCMYK 315 0 R]/PANTONE405PC[/Separation/PANTONE#20405#20PC/DeviceCMYK
+316 0 R]/PANTONE406PC[/Separation/PANTONE#20406#20PC/DeviceCMYK 317 0 R]/PANTONE407PC[/Separation/PANTONE#20407#20PC/DeviceCMYK
+318 0 R]/PANTONE408PC[/Separation/PANTONE#20408#20PC/DeviceCMYK 319 0 R]/PANTONE409PC[/Separation/PANTONE#20409#20PC/DeviceCMYK
+320 0 R]/PANTONE410PC[/Separation/PANTONE#20410#20PC/DeviceCMYK 321 0 R]/PANTONE411PC[/Separation/PANTONE#20411#20PC/DeviceCMYK
+322 0 R]/PANTONE412PC[/Separation/PANTONE#20412#20PC/DeviceCMYK 323 0 R]/PANTONE413PC[/Separation/PANTONE#20413#20PC/DeviceCMYK
+324 0 R]/PANTONE414PC[/Separation/PANTONE#20414#20PC/DeviceCMYK 325 0 R]/PANTONE415PC[/Separation/PANTONE#20415#20PC/DeviceCMYK
+326 0 R]/PANTONE416PC[/Separation/PANTONE#20416#20PC/DeviceCMYK 327 0 R]/PANTONE417PC[/Separation/PANTONE#20417#20PC/DeviceCMYK
+328 0 R]/PANTONE418PC[/Separation/PANTONE#20418#20PC/DeviceCMYK 329 0 R]/PANTONE419PC[/Separation/PANTONE#20419#20PC/DeviceCMYK
+330 0 R]/PANTONE420PC[/Separation/PANTONE#20420#20PC/DeviceCMYK 331 0 R]/PANTONE421PC[/Separation/PANTONE#20421#20PC/DeviceCMYK
+332 0 R]/PANTONE422PC[/Separation/PANTONE#20422#20PC/DeviceCMYK 333 0 R]/PANTONE423PC[/Separation/PANTONE#20423#20PC/DeviceCMYK
+334 0 R]/PANTONE424PC[/Separation/PANTONE#20424#20PC/DeviceCMYK 335 0 R]/PANTONE425PC[/Separation/PANTONE#20425#20PC/DeviceCMYK
+336 0 R]/PANTONE426PC[/Separation/PANTONE#20426#20PC/DeviceCMYK 337 0 R]/PANTONE427PC[/Separation/PANTONE#20427#20PC/DeviceCMYK
+338 0 R]/PANTONE428PC[/Separation/PANTONE#20428#20PC/DeviceCMYK 339 0 R]/PANTONE429PC[/Separation/PANTONE#20429#20PC/DeviceCMYK
+340 0 R]/PANTONE430PC[/Separation/PANTONE#20430#20PC/DeviceCMYK 341 0 R]/PANTONE431PC[/Separation/PANTONE#20431#20PC/DeviceCMYK
+342 0 R]/PANTONE432PC[/Separation/PANTONE#20432#20PC/DeviceCMYK 343 0 R]/PANTONE433PC[/Separation/PANTONE#20433#20PC/DeviceCMYK
+344 0 R]/PANTONE434PC[/Separation/PANTONE#20434#20PC/DeviceCMYK 345 0 R]/PANTONE435PC[/Separation/PANTONE#20435#20PC/DeviceCMYK
+346 0 R]/PANTONE436PC[/Separation/PANTONE#20436#20PC/DeviceCMYK 347 0 R]/PANTONE437PC[/Separation/PANTONE#20437#20PC/DeviceCMYK
+348 0 R]/PANTONE438PC[/Separation/PANTONE#20438#20PC/DeviceCMYK 349 0 R]/PANTONE439PC[/Separation/PANTONE#20439#20PC/DeviceCMYK
+350 0 R]/PANTONE440PC[/Separation/PANTONE#20440#20PC/DeviceCMYK 351 0 R]/PANTONE441PC[/Separation/PANTONE#20441#20PC/DeviceCMYK
+352 0 R]/PANTONE442PC[/Separation/PANTONE#20442#20PC/DeviceCMYK 353 0 R]/PANTONE443PC[/Separation/PANTONE#20443#20PC/DeviceCMYK
+354 0 R]/PANTONE444PC[/Separation/PANTONE#20444#20PC/DeviceCMYK 355 0 R]/PANTONE445PC[/Separation/PANTONE#20445#20PC/DeviceCMYK
+356 0 R]/PANTONE446PC[/Separation/PANTONE#20446#20PC/DeviceCMYK 357 0 R]/PANTONE447PC[/Separation/PANTONE#20447#20PC/DeviceCMYK
+358 0 R]/PANTONE448PC[/Separation/PANTONE#20448#20PC/DeviceCMYK 359 0 R]/PANTONE449PC[/Separation/PANTONE#20449#20PC/DeviceCMYK
+360 0 R]/PANTONE450PC[/Separation/PANTONE#20450#20PC/DeviceCMYK 361 0 R]/PANTONE451PC[/Separation/PANTONE#20451#20PC/DeviceCMYK
+362 0 R]/PANTONE452PC[/Separation/PANTONE#20452#20PC/DeviceCMYK 363 0 R]/PANTONE453PC[/Separation/PANTONE#20453#20PC/DeviceCMYK
+364 0 R]/PANTONE454PC[/Separation/PANTONE#20454#20PC/DeviceCMYK 365 0 R]/PANTONE455PC[/Separation/PANTONE#20455#20PC/DeviceCMYK
+366 0 R]/PANTONE456PC[/Separation/PANTONE#20456#20PC/DeviceCMYK 367 0 R]/PANTONE457PC[/Separation/PANTONE#20457#20PC/DeviceCMYK
+368 0 R]/PANTONE458PC[/Separation/PANTONE#20458#20PC/DeviceCMYK 369 0 R]/PANTONE459PC[/Separation/PANTONE#20459#20PC/DeviceCMYK
+370 0 R]/PANTONE460PC[/Separation/PANTONE#20460#20PC/DeviceCMYK 371 0 R]/PANTONE461PC[/Separation/PANTONE#20461#20PC/DeviceCMYK
+372 0 R]/PANTONE462PC[/Separation/PANTONE#20462#20PC/DeviceCMYK 373 0 R]/PANTONE463PC[/Separation/PANTONE#20463#20PC/DeviceCMYK
+374 0 R]/PANTONE464PC[/Separation/PANTONE#20464#20PC/DeviceCMYK 375 0 R]/PANTONE465PC[/Separation/PANTONE#20465#20PC/DeviceCMYK
+376 0 R]/PANTONE466PC[/Separation/PANTONE#20466#20PC/DeviceCMYK 377 0 R]/PANTONE467PC[/Separation/PANTONE#20467#20PC/DeviceCMYK
+378 0 R]/PANTONE468PC[/Separation/PANTONE#20468#20PC/DeviceCMYK 379 0 R]/PANTONE469PC[/Separation/PANTONE#20469#20PC/DeviceCMYK
+380 0 R]/PANTONE470PC[/Separation/PANTONE#20470#20PC/DeviceCMYK 381 0 R]/PANTONE471PC[/Separation/PANTONE#20471#20PC/DeviceCMYK
+382 0 R]/PANTONE472PC[/Separation/PANTONE#20472#20PC/DeviceCMYK 383 0 R]/PANTONE473PC[/Separation/PANTONE#20473#20PC/DeviceCMYK
+384 0 R]/PANTONE474PC[/Separation/PANTONE#20474#20PC/DeviceCMYK 385 0 R]/PANTONE475PC[/Separation/PANTONE#20475#20PC/DeviceCMYK
+386 0 R]/PANTONE476PC[/Separation/PANTONE#20476#20PC/DeviceCMYK 387 0 R]/PANTONE477PC[/Separation/PANTONE#20477#20PC/DeviceCMYK
+388 0 R]/PANTONE478PC[/Separation/PANTONE#20478#20PC/DeviceCMYK 389 0 R]/PANTONE479PC[/Separation/PANTONE#20479#20PC/DeviceCMYK
+390 0 R]/PANTONE480PC[/Separation/PANTONE#20480#20PC/DeviceCMYK 391 0 R]/PANTONE481PC[/Separation/PANTONE#20481#20PC/DeviceCMYK
+392 0 R]/PANTONE482PC[/Separation/PANTONE#20482#20PC/DeviceCMYK 393 0 R]/PANTONE483PC[/Separation/PANTONE#20483#20PC/DeviceCMYK
+394 0 R]/PANTONE484PC[/Separation/PANTONE#20484#20PC/DeviceCMYK 395 0 R]/PANTONE485PC[/Separation/PANTONE#20485#20PC/DeviceCMYK
+396 0 R]/PANTONE486PC[/Separation/PANTONE#20486#20PC/DeviceCMYK 397 0 R]/PANTONE487PC[/Separation/PANTONE#20487#20PC/DeviceCMYK
+398 0 R]/PANTONE488PC[/Separation/PANTONE#20488#20PC/DeviceCMYK 399 0 R]/PANTONE489PC[/Separation/PANTONE#20489#20PC/DeviceCMYK
+400 0 R]/PANTONE490PC[/Separation/PANTONE#20490#20PC/DeviceCMYK 401 0 R]/PANTONE491PC[/Separation/PANTONE#20491#20PC/DeviceCMYK
+402 0 R]/PANTONE492PC[/Separation/PANTONE#20492#20PC/DeviceCMYK 403 0 R]/PANTONE493PC[/Separation/PANTONE#20493#20PC/DeviceCMYK
+404 0 R]/PANTONE494PC[/Separation/PANTONE#20494#20PC/DeviceCMYK 405 0 R]/PANTONE495PC[/Separation/PANTONE#20495#20PC/DeviceCMYK
+406 0 R]/PANTONE496PC[/Separation/PANTONE#20496#20PC/DeviceCMYK 407 0 R]/PANTONE497PC[/Separation/PANTONE#20497#20PC/DeviceCMYK
+408 0 R]/PANTONE498PC[/Separation/PANTONE#20498#20PC/DeviceCMYK 409 0 R]/PANTONE499PC[/Separation/PANTONE#20499#20PC/DeviceCMYK
+410 0 R]/PANTONE500PC[/Separation/PANTONE#20500#20PC/DeviceCMYK 411 0 R]/PANTONE501PC[/Separation/PANTONE#20501#20PC/DeviceCMYK
+412 0 R]/PANTONE502PC[/Separation/PANTONE#20502#20PC/DeviceCMYK 413 0 R]/PANTONE503PC[/Separation/PANTONE#20503#20PC/DeviceCMYK
+414 0 R]/PANTONE504PC[/Separation/PANTONE#20504#20PC/DeviceCMYK 415 0 R]/PANTONE505PC[/Separation/PANTONE#20505#20PC/DeviceCMYK
+416 0 R]/PANTONE506PC[/Separation/PANTONE#20506#20PC/DeviceCMYK 417 0 R]/PANTONE507PC[/Separation/PANTONE#20507#20PC/DeviceCMYK
+418 0 R]/PANTONE508PC[/Separation/PANTONE#20508#20PC/DeviceCMYK 419 0 R]/PANTONE509PC[/Separation/PANTONE#20509#20PC/DeviceCMYK
+420 0 R]/PANTONE510PC[/Separation/PANTONE#20510#20PC/DeviceCMYK 421 0 R]/PANTONE511PC[/Separation/PANTONE#20511#20PC/DeviceCMYK
+422 0 R]/PANTONE512PC[/Separation/PANTONE#20512#20PC/DeviceCMYK 423 0 R]/PANTONE513PC[/Separation/PANTONE#20513#20PC/DeviceCMYK
+424 0 R]/PANTONE514PC[/Separation/PANTONE#20514#20PC/DeviceCMYK 425 0 R]/PANTONE515PC[/Separation/PANTONE#20515#20PC/DeviceCMYK
+426 0 R]/PANTONE516PC[/Separation/PANTONE#20516#20PC/DeviceCMYK 427 0 R]/PANTONE517PC[/Separation/PANTONE#20517#20PC/DeviceCMYK
+428 0 R]/PANTONE518PC[/Separation/PANTONE#20518#20PC/DeviceCMYK 429 0 R]/PANTONE519PC[/Separation/PANTONE#20519#20PC/DeviceCMYK
+430 0 R]/PANTONE520PC[/Separation/PANTONE#20520#20PC/DeviceCMYK 431 0 R]/PANTONE521PC[/Separation/PANTONE#20521#20PC/DeviceCMYK
+432 0 R]/PANTONE522PC[/Separation/PANTONE#20522#20PC/DeviceCMYK 433 0 R]/PANTONE523PC[/Separation/PANTONE#20523#20PC/DeviceCMYK
+434 0 R]/PANTONE524PC[/Separation/PANTONE#20524#20PC/DeviceCMYK 435 0 R]/PANTONE525PC[/Separation/PANTONE#20525#20PC/DeviceCMYK
+436 0 R]/PANTONE526PC[/Separation/PANTONE#20526#20PC/DeviceCMYK 437 0 R]/PANTONE527PC[/Separation/PANTONE#20527#20PC/DeviceCMYK
+438 0 R]/PANTONE528PC[/Separation/PANTONE#20528#20PC/DeviceCMYK 439 0 R]/PANTONE529PC[/Separation/PANTONE#20529#20PC/DeviceCMYK
+440 0 R]/PANTONE530PC[/Separation/PANTONE#20530#20PC/DeviceCMYK 441 0 R]/PANTONE531PC[/Separation/PANTONE#20531#20PC/DeviceCMYK
+442 0 R]/PANTONE532PC[/Separation/PANTONE#20532#20PC/DeviceCMYK 443 0 R]/PANTONE533PC[/Separation/PANTONE#20533#20PC/DeviceCMYK
+444 0 R]/PANTONE534PC[/Separation/PANTONE#20534#20PC/DeviceCMYK 445 0 R]/PANTONE535PC[/Separation/PANTONE#20535#20PC/DeviceCMYK
+446 0 R]/PANTONE536PC[/Separation/PANTONE#20536#20PC/DeviceCMYK 447 0 R]/PANTONE537PC[/Separation/PANTONE#20537#20PC/DeviceCMYK
+448 0 R]/PANTONE538PC[/Separation/PANTONE#20538#20PC/DeviceCMYK 449 0 R]/PANTONE539PC[/Separation/PANTONE#20539#20PC/DeviceCMYK
+450 0 R]/PANTONE540PC[/Separation/PANTONE#20540#20PC/DeviceCMYK 451 0 R]/PANTONE541PC[/Separation/PANTONE#20541#20PC/DeviceCMYK
+452 0 R]/PANTONE542PC[/Separation/PANTONE#20542#20PC/DeviceCMYK 453 0 R]/PANTONE543PC[/Separation/PANTONE#20543#20PC/DeviceCMYK
+454 0 R]/PANTONE544PC[/Separation/PANTONE#20544#20PC/DeviceCMYK 455 0 R]/PANTONE545PC[/Separation/PANTONE#20545#20PC/DeviceCMYK
+456 0 R]/PANTONE546PC[/Separation/PANTONE#20546#20PC/DeviceCMYK 457 0 R]/PANTONE547PC[/Separation/PANTONE#20547#20PC/DeviceCMYK
+458 0 R]/PANTONE548PC[/Separation/PANTONE#20548#20PC/DeviceCMYK 459 0 R]/PANTONE549PC[/Separation/PANTONE#20549#20PC/DeviceCMYK
+460 0 R]/PANTONE550PC[/Separation/PANTONE#20550#20PC/DeviceCMYK 461 0 R]/PANTONE551PC[/Separation/PANTONE#20551#20PC/DeviceCMYK
+462 0 R]/PANTONE552PC[/Separation/PANTONE#20552#20PC/DeviceCMYK 463 0 R]/PANTONE553PC[/Separation/PANTONE#20553#20PC/DeviceCMYK
+464 0 R]/PANTONE554PC[/Separation/PANTONE#20554#20PC/DeviceCMYK 465 0 R]/PANTONE555PC[/Separation/PANTONE#20555#20PC/DeviceCMYK
+466 0 R]/PANTONE556PC[/Separation/PANTONE#20556#20PC/DeviceCMYK 467 0 R]/PANTONE557PC[/Separation/PANTONE#20557#20PC/DeviceCMYK
+468 0 R]/PANTONE558PC[/Separation/PANTONE#20558#20PC/DeviceCMYK 469 0 R]/PANTONE559PC[/Separation/PANTONE#20559#20PC/DeviceCMYK
+470 0 R]/PANTONE560PC[/Separation/PANTONE#20560#20PC/DeviceCMYK 471 0 R]/PANTONE561PC[/Separation/PANTONE#20561#20PC/DeviceCMYK
+472 0 R]/PANTONE562PC[/Separation/PANTONE#20562#20PC/DeviceCMYK 473 0 R]/PANTONE563PC[/Separation/PANTONE#20563#20PC/DeviceCMYK
+474 0 R]/PANTONE564PC[/Separation/PANTONE#20564#20PC/DeviceCMYK 475 0 R]/PANTONE565PC[/Separation/PANTONE#20565#20PC/DeviceCMYK
+476 0 R]/PANTONE566PC[/Separation/PANTONE#20566#20PC/DeviceCMYK 477 0 R]/PANTONE567PC[/Separation/PANTONE#20567#20PC/DeviceCMYK
+478 0 R]/PANTONE568PC[/Separation/PANTONE#20568#20PC/DeviceCMYK 479 0 R]/PANTONE569PC[/Separation/PANTONE#20569#20PC/DeviceCMYK
+480 0 R]/PANTONE570PC[/Separation/PANTONE#20570#20PC/DeviceCMYK 481 0 R]/PANTONE571PC[/Separation/PANTONE#20571#20PC/DeviceCMYK
+482 0 R]/PANTONE572PC[/Separation/PANTONE#20572#20PC/DeviceCMYK 483 0 R]/PANTONE573PC[/Separation/PANTONE#20573#20PC/DeviceCMYK
+484 0 R]/PANTONE574PC[/Separation/PANTONE#20574#20PC/DeviceCMYK 485 0 R]/PANTONE575PC[/Separation/PANTONE#20575#20PC/DeviceCMYK
+486 0 R]/PANTONE576PC[/Separation/PANTONE#20576#20PC/DeviceCMYK 487 0 R]/PANTONE577PC[/Separation/PANTONE#20577#20PC/DeviceCMYK
+488 0 R]/PANTONE578PC[/Separation/PANTONE#20578#20PC/DeviceCMYK 489 0 R]/PANTONE579PC[/Separation/PANTONE#20579#20PC/DeviceCMYK
+490 0 R]/PANTONE580PC[/Separation/PANTONE#20580#20PC/DeviceCMYK 491 0 R]/PANTONE581PC[/Separation/PANTONE#20581#20PC/DeviceCMYK
+492 0 R]/PANTONE582PC[/Separation/PANTONE#20582#20PC/DeviceCMYK 493 0 R]/PANTONE583PC[/Separation/PANTONE#20583#20PC/DeviceCMYK
+494 0 R]/PANTONE584PC[/Separation/PANTONE#20584#20PC/DeviceCMYK 495 0 R]/PANTONE585PC[/Separation/PANTONE#20585#20PC/DeviceCMYK
+496 0 R]/PANTONE586PC[/Separation/PANTONE#20586#20PC/DeviceCMYK 497 0 R]/PANTONE587PC[/Separation/PANTONE#20587#20PC/DeviceCMYK
+498 0 R]/PANTONE600PC[/Separation/PANTONE#20600#20PC/DeviceCMYK 499 0 R]/PANTONE601PC[/Separation/PANTONE#20601#20PC/DeviceCMYK
+500 0 R]/PANTONE602PC[/Separation/PANTONE#20602#20PC/DeviceCMYK 501 0 R]/PANTONE603PC[/Separation/PANTONE#20603#20PC/DeviceCMYK
+502 0 R]/PANTONE604PC[/Separation/PANTONE#20604#20PC/DeviceCMYK 503 0 R]/PANTONE605PC[/Separation/PANTONE#20605#20PC/DeviceCMYK
+504 0 R]/PANTONE606PC[/Separation/PANTONE#20606#20PC/DeviceCMYK 505 0 R]/PANTONE607PC[/Separation/PANTONE#20607#20PC/DeviceCMYK
+506 0 R]/PANTONE608PC[/Separation/PANTONE#20608#20PC/DeviceCMYK 507 0 R]/PANTONE609PC[/Separation/PANTONE#20609#20PC/DeviceCMYK
+508 0 R]/PANTONE610PC[/Separation/PANTONE#20610#20PC/DeviceCMYK 509 0 R]/PANTONE611PC[/Separation/PANTONE#20611#20PC/DeviceCMYK
+510 0 R]/PANTONE612PC[/Separation/PANTONE#20612#20PC/DeviceCMYK 511 0 R]/PANTONE613PC[/Separation/PANTONE#20613#20PC/DeviceCMYK
+512 0 R]/PANTONE614PC[/Separation/PANTONE#20614#20PC/DeviceCMYK 513 0 R]/PANTONE615PC[/Separation/PANTONE#20615#20PC/DeviceCMYK
+514 0 R]/PANTONE616PC[/Separation/PANTONE#20616#20PC/DeviceCMYK 515 0 R]/PANTONE617PC[/Separation/PANTONE#20617#20PC/DeviceCMYK
+516 0 R]/PANTONE618PC[/Separation/PANTONE#20618#20PC/DeviceCMYK 517 0 R]/PANTONE619PC[/Separation/PANTONE#20619#20PC/DeviceCMYK
+518 0 R]/PANTONE620PC[/Separation/PANTONE#20620#20PC/DeviceCMYK 519 0 R]/PANTONE621PC[/Separation/PANTONE#20621#20PC/DeviceCMYK
+520 0 R]/PANTONE622PC[/Separation/PANTONE#20622#20PC/DeviceCMYK 521 0 R]/PANTONE623PC[/Separation/PANTONE#20623#20PC/DeviceCMYK
+522 0 R]/PANTONE624PC[/Separation/PANTONE#20624#20PC/DeviceCMYK 523 0 R]/PANTONE625PC[/Separation/PANTONE#20625#20PC/DeviceCMYK
+524 0 R]/PANTONE626PC[/Separation/PANTONE#20626#20PC/DeviceCMYK 525 0 R]/PANTONE627PC[/Separation/PANTONE#20627#20PC/DeviceCMYK
+526 0 R]/PANTONE628PC[/Separation/PANTONE#20628#20PC/DeviceCMYK 527 0 R]/PANTONE629PC[/Separation/PANTONE#20629#20PC/DeviceCMYK
+528 0 R]/PANTONE630PC[/Separation/PANTONE#20630#20PC/DeviceCMYK 529 0 R]/PANTONE631PC[/Separation/PANTONE#20631#20PC/DeviceCMYK
+530 0 R]/PANTONE632PC[/Separation/PANTONE#20632#20PC/DeviceCMYK 531 0 R]/PANTONE633PC[/Separation/PANTONE#20633#20PC/DeviceCMYK
+532 0 R]/PANTONE634PC[/Separation/PANTONE#20634#20PC/DeviceCMYK 533 0 R]/PANTONE635PC[/Separation/PANTONE#20635#20PC/DeviceCMYK
+534 0 R]/PANTONE636PC[/Separation/PANTONE#20636#20PC/DeviceCMYK 535 0 R]/PANTONE637PC[/Separation/PANTONE#20637#20PC/DeviceCMYK
+536 0 R]/PANTONE638PC[/Separation/PANTONE#20638#20PC/DeviceCMYK 537 0 R]/PANTONE639PC[/Separation/PANTONE#20639#20PC/DeviceCMYK
+538 0 R]/PANTONE640PC[/Separation/PANTONE#20640#20PC/DeviceCMYK 539 0 R]/PANTONE641PC[/Separation/PANTONE#20641#20PC/DeviceCMYK
+540 0 R]/PANTONE642PC[/Separation/PANTONE#20642#20PC/DeviceCMYK 541 0 R]/PANTONE643PC[/Separation/PANTONE#20643#20PC/DeviceCMYK
+542 0 R]/PANTONE644PC[/Separation/PANTONE#20644#20PC/DeviceCMYK 543 0 R]/PANTONE645PC[/Separation/PANTONE#20645#20PC/DeviceCMYK
+544 0 R]/PANTONE646PC[/Separation/PANTONE#20646#20PC/DeviceCMYK 545 0 R]/PANTONE647PC[/Separation/PANTONE#20647#20PC/DeviceCMYK
+546 0 R]/PANTONE648PC[/Separation/PANTONE#20648#20PC/DeviceCMYK 547 0 R]/PANTONE649PC[/Separation/PANTONE#20649#20PC/DeviceCMYK
+548 0 R]/PANTONE650PC[/Separation/PANTONE#20650#20PC/DeviceCMYK 549 0 R]/PANTONE651PC[/Separation/PANTONE#20651#20PC/DeviceCMYK
+550 0 R]/PANTONE652PC[/Separation/PANTONE#20652#20PC/DeviceCMYK 551 0 R]/PANTONE653PC[/Separation/PANTONE#20653#20PC/DeviceCMYK
+552 0 R]/PANTONE654PC[/Separation/PANTONE#20654#20PC/DeviceCMYK 553 0 R]/PANTONE655PC[/Separation/PANTONE#20655#20PC/DeviceCMYK
+554 0 R]/PANTONE656PC[/Separation/PANTONE#20656#20PC/DeviceCMYK 555 0 R]/PANTONE657PC[/Separation/PANTONE#20657#20PC/DeviceCMYK
+556 0 R]/PANTONE658PC[/Separation/PANTONE#20658#20PC/DeviceCMYK 557 0 R]/PANTONE659PC[/Separation/PANTONE#20659#20PC/DeviceCMYK
+558 0 R]/PANTONE660PC[/Separation/PANTONE#20660#20PC/DeviceCMYK 559 0 R]/PANTONE661PC[/Separation/PANTONE#20661#20PC/DeviceCMYK
+560 0 R]/PANTONE662PC[/Separation/PANTONE#20662#20PC/DeviceCMYK 561 0 R]/PANTONE663PC[/Separation/PANTONE#20663#20PC/DeviceCMYK
+562 0 R]/PANTONE664PC[/Separation/PANTONE#20664#20PC/DeviceCMYK 563 0 R]/PANTONE665PC[/Separation/PANTONE#20665#20PC/DeviceCMYK
+564 0 R]/PANTONE666PC[/Separation/PANTONE#20666#20PC/DeviceCMYK 565 0 R]/PANTONE667PC[/Separation/PANTONE#20667#20PC/DeviceCMYK
+566 0 R]/PANTONE668PC[/Separation/PANTONE#20668#20PC/DeviceCMYK 567 0 R]/PANTONE669PC[/Separation/PANTONE#20669#20PC/DeviceCMYK
+568 0 R]/PANTONE670PC[/Separation/PANTONE#20670#20PC/DeviceCMYK 569 0 R]/PANTONE671PC[/Separation/PANTONE#20671#20PC/DeviceCMYK
+570 0 R]/PANTONE672PC[/Separation/PANTONE#20672#20PC/DeviceCMYK 571 0 R]/PANTONE673PC[/Separation/PANTONE#20673#20PC/DeviceCMYK
+572 0 R]/PANTONE674PC[/Separation/PANTONE#20674#20PC/DeviceCMYK 573 0 R]/PANTONE675PC[/Separation/PANTONE#20675#20PC/DeviceCMYK
+574 0 R]/PANTONE676PC[/Separation/PANTONE#20676#20PC/DeviceCMYK 575 0 R]/PANTONE677PC[/Separation/PANTONE#20677#20PC/DeviceCMYK
+576 0 R]/PANTONE678PC[/Separation/PANTONE#20678#20PC/DeviceCMYK 577 0 R]/PANTONE679PC[/Separation/PANTONE#20679#20PC/DeviceCMYK
+578 0 R]/PANTONE680PC[/Separation/PANTONE#20680#20PC/DeviceCMYK 579 0 R]/PANTONE681PC[/Separation/PANTONE#20681#20PC/DeviceCMYK
+580 0 R]/PANTONE682PC[/Separation/PANTONE#20682#20PC/DeviceCMYK 581 0 R]/PANTONE683PC[/Separation/PANTONE#20683#20PC/DeviceCMYK
+582 0 R]/PANTONE684PC[/Separation/PANTONE#20684#20PC/DeviceCMYK 583 0 R]/PANTONE685PC[/Separation/PANTONE#20685#20PC/DeviceCMYK
+584 0 R]/PANTONE686PC[/Separation/PANTONE#20686#20PC/DeviceCMYK 585 0 R]/PANTONE687PC[/Separation/PANTONE#20687#20PC/DeviceCMYK
+586 0 R]/PANTONE688PC[/Separation/PANTONE#20688#20PC/DeviceCMYK 587 0 R]/PANTONE689PC[/Separation/PANTONE#20689#20PC/DeviceCMYK
+588 0 R]/PANTONE690PC[/Separation/PANTONE#20690#20PC/DeviceCMYK 589 0 R]/PANTONE691PC[/Separation/PANTONE#20691#20PC/DeviceCMYK
+590 0 R]/PANTONE692PC[/Separation/PANTONE#20692#20PC/DeviceCMYK 591 0 R]/PANTONE693PC[/Separation/PANTONE#20693#20PC/DeviceCMYK
+592 0 R]/PANTONE694PC[/Separation/PANTONE#20694#20PC/DeviceCMYK 593 0 R]/PANTONE695PC[/Separation/PANTONE#20695#20PC/DeviceCMYK
+594 0 R]/PANTONE696PC[/Separation/PANTONE#20696#20PC/DeviceCMYK 595 0 R]/PANTONE697PC[/Separation/PANTONE#20697#20PC/DeviceCMYK
+596 0 R]/PANTONE698PC[/Separation/PANTONE#20698#20PC/DeviceCMYK 597 0 R]/PANTONE699PC[/Separation/PANTONE#20699#20PC/DeviceCMYK
+598 0 R]/PANTONE700PC[/Separation/PANTONE#20700#20PC/DeviceCMYK 599 0 R]/PANTONE701PC[/Separation/PANTONE#20701#20PC/DeviceCMYK
+600 0 R]/PANTONE702PC[/Separation/PANTONE#20702#20PC/DeviceCMYK 601 0 R]/PANTONE703PC[/Separation/PANTONE#20703#20PC/DeviceCMYK
+602 0 R]/PANTONE704PC[/Separation/PANTONE#20704#20PC/DeviceCMYK 603 0 R]/PANTONE705PC[/Separation/PANTONE#20705#20PC/DeviceCMYK
+604 0 R]/PANTONE706PC[/Separation/PANTONE#20706#20PC/DeviceCMYK 605 0 R]/PANTONE707PC[/Separation/PANTONE#20707#20PC/DeviceCMYK
+606 0 R]/PANTONE708PC[/Separation/PANTONE#20708#20PC/DeviceCMYK 607 0 R]/PANTONE709PC[/Separation/PANTONE#20709#20PC/DeviceCMYK
+608 0 R]/PANTONE710PC[/Separation/PANTONE#20710#20PC/DeviceCMYK 609 0 R]/PANTONE711PC[/Separation/PANTONE#20711#20PC/DeviceCMYK
+610 0 R]/PANTONE712PC[/Separation/PANTONE#20712#20PC/DeviceCMYK 611 0 R]/PANTONE713PC[/Separation/PANTONE#20713#20PC/DeviceCMYK
+612 0 R]/PANTONE714PC[/Separation/PANTONE#20714#20PC/DeviceCMYK 613 0 R]/PANTONE715PC[/Separation/PANTONE#20715#20PC/DeviceCMYK
+614 0 R]/PANTONE716PC[/Separation/PANTONE#20716#20PC/DeviceCMYK 615 0 R]/PANTONE717PC[/Separation/PANTONE#20717#20PC/DeviceCMYK
+616 0 R]/PANTONE718PC[/Separation/PANTONE#20718#20PC/DeviceCMYK 617 0 R]/PANTONE719PC[/Separation/PANTONE#20719#20PC/DeviceCMYK
+618 0 R]/PANTONE720PC[/Separation/PANTONE#20720#20PC/DeviceCMYK 619 0 R]/PANTONE721PC[/Separation/PANTONE#20721#20PC/DeviceCMYK
+620 0 R]/PANTONE722PC[/Separation/PANTONE#20722#20PC/DeviceCMYK 621 0 R]/PANTONE723PC[/Separation/PANTONE#20723#20PC/DeviceCMYK
+622 0 R]/PANTONE724PC[/Separation/PANTONE#20724#20PC/DeviceCMYK 623 0 R]/PANTONE725PC[/Separation/PANTONE#20725#20PC/DeviceCMYK
+624 0 R]/PANTONE726PC[/Separation/PANTONE#20726#20PC/DeviceCMYK 625 0 R]/PANTONE727PC[/Separation/PANTONE#20727#20PC/DeviceCMYK
+626 0 R]/PANTONE728PC[/Separation/PANTONE#20728#20PC/DeviceCMYK 627 0 R]/PANTONE729PC[/Separation/PANTONE#20729#20PC/DeviceCMYK
+628 0 R]/PANTONE730PC[/Separation/PANTONE#20730#20PC/DeviceCMYK 629 0 R]/PANTONE731PC[/Separation/PANTONE#20731#20PC/DeviceCMYK
+630 0 R]/PANTONE732PC[/Separation/PANTONE#20732#20PC/DeviceCMYK 631 0 R]/PANTONE1205PC[/Separation/PANTONE#201205#20PC/DeviceCMYK
+632 0 R]/PANTONE1215PC[/Separation/PANTONE#201215#20PC/DeviceCMYK 633 0 R]/PANTONE1225PC[/Separation/PANTONE#201225#20PC/DeviceCMYK
+634 0 R]/PANTONE1235PC[/Separation/PANTONE#201235#20PC/DeviceCMYK 635 0 R]/PANTONE1245PC[/Separation/PANTONE#201245#20PC/DeviceCMYK
+636 0 R]/PANTONE1255PC[/Separation/PANTONE#201255#20PC/DeviceCMYK 637 0 R]/PANTONE1265PC[/Separation/PANTONE#201265#20PC/DeviceCMYK
+638 0 R]/PANTONE1345PC[/Separation/PANTONE#201345#20PC/DeviceCMYK 639 0 R]/PANTONE1355PC[/Separation/PANTONE#201355#20PC/DeviceCMYK
+640 0 R]/PANTONE1365PC[/Separation/PANTONE#201365#20PC/DeviceCMYK 641 0 R]/PANTONE1375PC[/Separation/PANTONE#201375#20PC/DeviceCMYK
+642 0 R]/PANTONE1385PC[/Separation/PANTONE#201385#20PC/DeviceCMYK 643 0 R]/PANTONE1395PC[/Separation/PANTONE#201395#20PC/DeviceCMYK
+644 0 R]/PANTONE1405PC[/Separation/PANTONE#201405#20PC/DeviceCMYK 645 0 R]/PANTONE1485PC[/Separation/PANTONE#201485#20PC/DeviceCMYK
+646 0 R]/PANTONE1495PC[/Separation/PANTONE#201495#20PC/DeviceCMYK 647 0 R]/PANTONE1505PC[/Separation/PANTONE#201505#20PC/DeviceCMYK
+648 0 R]/PANTONE1525PC[/Separation/PANTONE#201525#20PC/DeviceCMYK 649 0 R]/PANTONE1535PC[/Separation/PANTONE#201535#20PC/DeviceCMYK
+650 0 R]/PANTONE1545PC[/Separation/PANTONE#201545#20PC/DeviceCMYK 651 0 R]/PANTONE1555PC[/Separation/PANTONE#201555#20PC/DeviceCMYK
+652 0 R]/PANTONE1565PC[/Separation/PANTONE#201565#20PC/DeviceCMYK 653 0 R]/PANTONE1575PC[/Separation/PANTONE#201575#20PC/DeviceCMYK
+654 0 R]/PANTONE1585PC[/Separation/PANTONE#201585#20PC/DeviceCMYK 655 0 R]/PANTONE1595PC[/Separation/PANTONE#201595#20PC/DeviceCMYK
+656 0 R]/PANTONE1605PC[/Separation/PANTONE#201605#20PC/DeviceCMYK 657 0 R]/PANTONE1615PC[/Separation/PANTONE#201615#20PC/DeviceCMYK
+658 0 R]/PANTONE1625PC[/Separation/PANTONE#201625#20PC/DeviceCMYK 659 0 R]/PANTONE1635PC[/Separation/PANTONE#201635#20PC/DeviceCMYK
+660 0 R]/PANTONE1645PC[/Separation/PANTONE#201645#20PC/DeviceCMYK 661 0 R]/PANTONE1655PC[/Separation/PANTONE#201655#20PC/DeviceCMYK
+662 0 R]/PANTONE1665PC[/Separation/PANTONE#201665#20PC/DeviceCMYK 663 0 R]/PANTONE1675PC[/Separation/PANTONE#201675#20PC/DeviceCMYK
+664 0 R]/PANTONE1685PC[/Separation/PANTONE#201685#20PC/DeviceCMYK 665 0 R]/PANTONE1765PC[/Separation/PANTONE#201765#20PC/DeviceCMYK
+666 0 R]/PANTONE1767PC[/Separation/PANTONE#201767#20PC/DeviceCMYK 667 0 R]/PANTONE1775PC[/Separation/PANTONE#201775#20PC/DeviceCMYK
+668 0 R]/PANTONE1777PC[/Separation/PANTONE#201777#20PC/DeviceCMYK 669 0 R]/PANTONE1785PC[/Separation/PANTONE#201785#20PC/DeviceCMYK
+670 0 R]/PANTONE1787PC[/Separation/PANTONE#201787#20PC/DeviceCMYK 671 0 R]/PANTONE1788PC[/Separation/PANTONE#201788#20PC/DeviceCMYK
+672 0 R]/PANTONE1795PC[/Separation/PANTONE#201795#20PC/DeviceCMYK 673 0 R]/PANTONE1797PC[/Separation/PANTONE#201797#20PC/DeviceCMYK
+674 0 R]/PANTONE1805PC[/Separation/PANTONE#201805#20PC/DeviceCMYK 675 0 R]/PANTONE1807PC[/Separation/PANTONE#201807#20PC/DeviceCMYK
+676 0 R]/PANTONE1815PC[/Separation/PANTONE#201815#20PC/DeviceCMYK 677 0 R]/PANTONE1817PC[/Separation/PANTONE#201817#20PC/DeviceCMYK
+678 0 R]/PANTONE1895PC[/Separation/PANTONE#201895#20PC/DeviceCMYK 679 0 R]/PANTONE1905PC[/Separation/PANTONE#201905#20PC/DeviceCMYK
+680 0 R]/PANTONE1915PC[/Separation/PANTONE#201915#20PC/DeviceCMYK 681 0 R]/PANTONE1925PC[/Separation/PANTONE#201925#20PC/DeviceCMYK
+682 0 R]/PANTONE1935PC[/Separation/PANTONE#201935#20PC/DeviceCMYK 683 0 R]/PANTONE1945PC[/Separation/PANTONE#201945#20PC/DeviceCMYK
+684 0 R]/PANTONE1955PC[/Separation/PANTONE#201955#20PC/DeviceCMYK 685 0 R]/PANTONE2365PC[/Separation/PANTONE#202365#20PC/DeviceCMYK
+686 0 R]/PANTONE2375PC[/Separation/PANTONE#202375#20PC/DeviceCMYK 687 0 R]/PANTONE2385PC[/Separation/PANTONE#202385#20PC/DeviceCMYK
+688 0 R]/PANTONE2395PC[/Separation/PANTONE#202395#20PC/DeviceCMYK 689 0 R]/PANTONE2405PC[/Separation/PANTONE#202405#20PC/DeviceCMYK
+690 0 R]/PANTONE2415PC[/Separation/PANTONE#202415#20PC/DeviceCMYK 691 0 R]/PANTONE2425PC[/Separation/PANTONE#202425#20PC/DeviceCMYK
+692 0 R]/PANTONE2562PC[/Separation/PANTONE#202562#20PC/DeviceCMYK 693 0 R]/PANTONE2563PC[/Separation/PANTONE#202563#20PC/DeviceCMYK
+694 0 R]/PANTONE2567PC[/Separation/PANTONE#202567#20PC/DeviceCMYK 695 0 R]/PANTONE2572PC[/Separation/PANTONE#202572#20PC/DeviceCMYK
+696 0 R]/PANTONE2573PC[/Separation/PANTONE#202573#20PC/DeviceCMYK 697 0 R]/PANTONE2577PC[/Separation/PANTONE#202577#20PC/DeviceCMYK
+698 0 R]/PANTONE2582PC[/Separation/PANTONE#202582#20PC/DeviceCMYK 699 0 R]/PANTONE2583PC[/Separation/PANTONE#202583#20PC/DeviceCMYK
+700 0 R]/PANTONE2587PC[/Separation/PANTONE#202587#20PC/DeviceCMYK 701 0 R]/PANTONE2592PC[/Separation/PANTONE#202592#20PC/DeviceCMYK
+702 0 R]/PANTONE2593PC[/Separation/PANTONE#202593#20PC/DeviceCMYK 703 0 R]/PANTONE2597PC[/Separation/PANTONE#202597#20PC/DeviceCMYK
+704 0 R]/PANTONE2602PC[/Separation/PANTONE#202602#20PC/DeviceCMYK 705 0 R]/PANTONE2603PC[/Separation/PANTONE#202603#20PC/DeviceCMYK
+706 0 R]/PANTONE2607PC[/Separation/PANTONE#202607#20PC/DeviceCMYK 707 0 R]/PANTONE2612PC[/Separation/PANTONE#202612#20PC/DeviceCMYK
+708 0 R]/PANTONE2613PC[/Separation/PANTONE#202613#20PC/DeviceCMYK 709 0 R]/PANTONE2617PC[/Separation/PANTONE#202617#20PC/DeviceCMYK
+710 0 R]/PANTONE2622PC[/Separation/PANTONE#202622#20PC/DeviceCMYK 711 0 R]/PANTONE2623PC[/Separation/PANTONE#202623#20PC/DeviceCMYK
+712 0 R]/PANTONE2627PC[/Separation/PANTONE#202627#20PC/DeviceCMYK 713 0 R]/PANTONE2635PC[/Separation/PANTONE#202635#20PC/DeviceCMYK
+714 0 R]/PANTONE2645PC[/Separation/PANTONE#202645#20PC/DeviceCMYK 715 0 R]/PANTONE2655PC[/Separation/PANTONE#202655#20PC/DeviceCMYK
+716 0 R]/PANTONE2665PC[/Separation/PANTONE#202665#20PC/DeviceCMYK 717 0 R]/PANTONE2685PC[/Separation/PANTONE#202685#20PC/DeviceCMYK
+718 0 R]/PANTONE2695PC[/Separation/PANTONE#202695#20PC/DeviceCMYK 719 0 R]/PANTONE2705PC[/Separation/PANTONE#202705#20PC/DeviceCMYK
+720 0 R]/PANTONE2706PC[/Separation/PANTONE#202706#20PC/DeviceCMYK 721 0 R]/PANTONE2707PC[/Separation/PANTONE#202707#20PC/DeviceCMYK
+722 0 R]/PANTONE2708PC[/Separation/PANTONE#202708#20PC/DeviceCMYK 723 0 R]/PANTONE2715PC[/Separation/PANTONE#202715#20PC/DeviceCMYK
+724 0 R]/PANTONE2716PC[/Separation/PANTONE#202716#20PC/DeviceCMYK 725 0 R]/PANTONE2717PC[/Separation/PANTONE#202717#20PC/DeviceCMYK
+726 0 R]/PANTONE2718PC[/Separation/PANTONE#202718#20PC/DeviceCMYK 727 0 R]/PANTONE2725PC[/Separation/PANTONE#202725#20PC/DeviceCMYK
+728 0 R]/PANTONE2726PC[/Separation/PANTONE#202726#20PC/DeviceCMYK 729 0 R]/PANTONE2727PC[/Separation/PANTONE#202727#20PC/DeviceCMYK
+730 0 R]/PANTONE2728PC[/Separation/PANTONE#202728#20PC/DeviceCMYK 731 0 R]/PANTONE2735PC[/Separation/PANTONE#202735#20PC/DeviceCMYK
+732 0 R]/PANTONE2736PC[/Separation/PANTONE#202736#20PC/DeviceCMYK 733 0 R]/PANTONE2738PC[/Separation/PANTONE#202738#20PC/DeviceCMYK
+734 0 R]/PANTONE2745PC[/Separation/PANTONE#202745#20PC/DeviceCMYK 735 0 R]/PANTONE2746PC[/Separation/PANTONE#202746#20PC/DeviceCMYK
+736 0 R]/PANTONE2747PC[/Separation/PANTONE#202747#20PC/DeviceCMYK 737 0 R]/PANTONE2748PC[/Separation/PANTONE#202748#20PC/DeviceCMYK
+738 0 R]/PANTONE2755PC[/Separation/PANTONE#202755#20PC/DeviceCMYK 739 0 R]/PANTONE2756PC[/Separation/PANTONE#202756#20PC/DeviceCMYK
+740 0 R]/PANTONE2757PC[/Separation/PANTONE#202757#20PC/DeviceCMYK 741 0 R]/PANTONE2758PC[/Separation/PANTONE#202758#20PC/DeviceCMYK
+742 0 R]/PANTONE2765PC[/Separation/PANTONE#202765#20PC/DeviceCMYK 743 0 R]/PANTONE2766PC[/Separation/PANTONE#202766#20PC/DeviceCMYK
+744 0 R]/PANTONE2767PC[/Separation/PANTONE#202767#20PC/DeviceCMYK 745 0 R]/PANTONE2768PC[/Separation/PANTONE#202768#20PC/DeviceCMYK
+746 0 R]/PANTONE2905PC[/Separation/PANTONE#202905#20PC/DeviceCMYK 747 0 R]/PANTONE2915PC[/Separation/PANTONE#202915#20PC/DeviceCMYK
+748 0 R]/PANTONE2925PC[/Separation/PANTONE#202925#20PC/DeviceCMYK 749 0 R]/PANTONE2935PC[/Separation/PANTONE#202935#20PC/DeviceCMYK
+750 0 R]/PANTONE2945PC[/Separation/PANTONE#202945#20PC/DeviceCMYK 751 0 R]/PANTONE2955PC[/Separation/PANTONE#202955#20PC/DeviceCMYK
+752 0 R]/PANTONE2965PC[/Separation/PANTONE#202965#20PC/DeviceCMYK 753 0 R]/PANTONE2975PC[/Separation/PANTONE#202975#20PC/DeviceCMYK
+754 0 R]/PANTONE2985PC[/Separation/PANTONE#202985#20PC/DeviceCMYK 755 0 R]/PANTONE2995PC[/Separation/PANTONE#202995#20PC/DeviceCMYK
+756 0 R]/PANTONE3005PC[/Separation/PANTONE#203005#20PC/DeviceCMYK 757 0 R]/PANTONE3015PC[/Separation/PANTONE#203015#20PC/DeviceCMYK
+758 0 R]/PANTONE3025PC[/Separation/PANTONE#203025#20PC/DeviceCMYK 759 0 R]/PANTONE3035PC[/Separation/PANTONE#203035#20PC/DeviceCMYK
+760 0 R]/PANTONE3105PC[/Separation/PANTONE#203105#20PC/DeviceCMYK 761 0 R]/PANTONE3115PC[/Separation/PANTONE#203115#20PC/DeviceCMYK
+762 0 R]/PANTONE3125PC[/Separation/PANTONE#203125#20PC/DeviceCMYK 763 0 R]/PANTONE3135PC[/Separation/PANTONE#203135#20PC/DeviceCMYK
+764 0 R]/PANTONE3145PC[/Separation/PANTONE#203145#20PC/DeviceCMYK 765 0 R]/PANTONE3155PC[/Separation/PANTONE#203155#20PC/DeviceCMYK
+766 0 R]/PANTONE3165PC[/Separation/PANTONE#203165#20PC/DeviceCMYK 767 0 R]/PANTONE3242PC[/Separation/PANTONE#203242#20PC/DeviceCMYK
+768 0 R]/PANTONE3245PC[/Separation/PANTONE#203245#20PC/DeviceCMYK 769 0 R]/PANTONE3248PC[/Separation/PANTONE#203248#20PC/DeviceCMYK
+770 0 R]/PANTONE3252PC[/Separation/PANTONE#203252#20PC/DeviceCMYK 771 0 R]/PANTONE3255PC[/Separation/PANTONE#203255#20PC/DeviceCMYK
+772 0 R]/PANTONE3258PC[/Separation/PANTONE#203258#20PC/DeviceCMYK 773 0 R]/PANTONE3262PC[/Separation/PANTONE#203262#20PC/DeviceCMYK
+774 0 R]/PANTONE3265PC[/Separation/PANTONE#203265#20PC/DeviceCMYK 775 0 R]/PANTONE3268PC[/Separation/PANTONE#203268#20PC/DeviceCMYK
+776 0 R]/PANTONE3272PC[/Separation/PANTONE#203272#20PC/DeviceCMYK 777 0 R]/PANTONE3275PC[/Separation/PANTONE#203275#20PC/DeviceCMYK
+778 0 R]/PANTONE3278PC[/Separation/PANTONE#203278#20PC/DeviceCMYK 779 0 R]/PANTONE3282PC[/Separation/PANTONE#203282#20PC/DeviceCMYK
+780 0 R]/PANTONE3285PC[/Separation/PANTONE#203285#20PC/DeviceCMYK 781 0 R]/PANTONE3288PC[/Separation/PANTONE#203288#20PC/DeviceCMYK
+782 0 R]/PANTONE3292PC[/Separation/PANTONE#203292#20PC/DeviceCMYK 783 0 R]/PANTONE3295PC[/Separation/PANTONE#203295#20PC/DeviceCMYK
+784 0 R]/PANTONE3298PC[/Separation/PANTONE#203298#20PC/DeviceCMYK 785 0 R]/PANTONE3302PC[/Separation/PANTONE#203302#20PC/DeviceCMYK
+786 0 R]/PANTONE3305PC[/Separation/PANTONE#203305#20PC/DeviceCMYK 787 0 R]/PANTONE3308PC[/Separation/PANTONE#203308#20PC/DeviceCMYK
+788 0 R]/PANTONE3375PC[/Separation/PANTONE#203375#20PC/DeviceCMYK 789 0 R]/PANTONE3385PC[/Separation/PANTONE#203385#20PC/DeviceCMYK
+790 0 R]/PANTONE3395PC[/Separation/PANTONE#203395#20PC/DeviceCMYK 791 0 R]/PANTONE3405PC[/Separation/PANTONE#203405#20PC/DeviceCMYK
+792 0 R]/PANTONE3415PC[/Separation/PANTONE#203415#20PC/DeviceCMYK 793 0 R]/PANTONE3425PC[/Separation/PANTONE#203425#20PC/DeviceCMYK
+794 0 R]/PANTONE3435PC[/Separation/PANTONE#203435#20PC/DeviceCMYK 795 0 R]/PANTONE3935PC[/Separation/PANTONE#203935#20PC/DeviceCMYK
+796 0 R]/PANTONE3945PC[/Separation/PANTONE#203945#20PC/DeviceCMYK 797 0 R]/PANTONE3955PC[/Separation/PANTONE#203955#20PC/DeviceCMYK
+798 0 R]/PANTONE3965PC[/Separation/PANTONE#203965#20PC/DeviceCMYK 799 0 R]/PANTONE3975PC[/Separation/PANTONE#203975#20PC/DeviceCMYK
+800 0 R]/PANTONE3985PC[/Separation/PANTONE#203985#20PC/DeviceCMYK 801 0 R]/PANTONE3995PC[/Separation/PANTONE#203995#20PC/DeviceCMYK
+802 0 R]/PANTONE4485PC[/Separation/PANTONE#204485#20PC/DeviceCMYK 803 0 R]/PANTONE4495PC[/Separation/PANTONE#204495#20PC/DeviceCMYK
+804 0 R]/PANTONE4505PC[/Separation/PANTONE#204505#20PC/DeviceCMYK 805 0 R]/PANTONE4515PC[/Separation/PANTONE#204515#20PC/DeviceCMYK
+806 0 R]/PANTONE4525PC[/Separation/PANTONE#204525#20PC/DeviceCMYK 807 0 R]/PANTONE4535PC[/Separation/PANTONE#204535#20PC/DeviceCMYK
+808 0 R]/PANTONE4545PC[/Separation/PANTONE#204545#20PC/DeviceCMYK 809 0 R]/PANTONE4625PC[/Separation/PANTONE#204625#20PC/DeviceCMYK
+810 0 R]/PANTONE4635PC[/Separation/PANTONE#204635#20PC/DeviceCMYK 811 0 R]/PANTONE4645PC[/Separation/PANTONE#204645#20PC/DeviceCMYK
+812 0 R]/PANTONE4655PC[/Separation/PANTONE#204655#20PC/DeviceCMYK 813 0 R]/PANTONE4665PC[/Separation/PANTONE#204665#20PC/DeviceCMYK
+814 0 R]/PANTONE4675PC[/Separation/PANTONE#204675#20PC/DeviceCMYK 815 0 R]/PANTONE4685PC[/Separation/PANTONE#204685#20PC/DeviceCMYK
+816 0 R]/PANTONE4695PC[/Separation/PANTONE#204695#20PC/DeviceCMYK 817 0 R]/PANTONE4705PC[/Separation/PANTONE#204705#20PC/DeviceCMYK
+818 0 R]/PANTONE4715PC[/Separation/PANTONE#204715#20PC/DeviceCMYK 819 0 R]/PANTONE4725PC[/Separation/PANTONE#204725#20PC/DeviceCMYK
+820 0 R]/PANTONE4735PC[/Separation/PANTONE#204735#20PC/DeviceCMYK 821 0 R]/PANTONE4745PC[/Separation/PANTONE#204745#20PC/DeviceCMYK
+822 0 R]/PANTONE4755PC[/Separation/PANTONE#204755#20PC/DeviceCMYK 823 0 R]/PANTONE4975PC[/Separation/PANTONE#204975#20PC/DeviceCMYK
+824 0 R]/PANTONE4985PC[/Separation/PANTONE#204985#20PC/DeviceCMYK 825 0 R]/PANTONE4995PC[/Separation/PANTONE#204995#20PC/DeviceCMYK
+826 0 R]/PANTONE5005PC[/Separation/PANTONE#205005#20PC/DeviceCMYK 827 0 R]/PANTONE5015PC[/Separation/PANTONE#205015#20PC/DeviceCMYK
+828 0 R]/PANTONE5025PC[/Separation/PANTONE#205025#20PC/DeviceCMYK 829 0 R]/PANTONE5035PC[/Separation/PANTONE#205035#20PC/DeviceCMYK
+830 0 R]/PANTONE5115PC[/Separation/PANTONE#205115#20PC/DeviceCMYK 831 0 R]/PANTONE5125PC[/Separation/PANTONE#205125#20PC/DeviceCMYK
+832 0 R]/PANTONE5135PC[/Separation/PANTONE#205135#20PC/DeviceCMYK 833 0 R]/PANTONE5145PC[/Separation/PANTONE#205145#20PC/DeviceCMYK
+834 0 R]/PANTONE5155PC[/Separation/PANTONE#205155#20PC/DeviceCMYK 835 0 R]/PANTONE5165PC[/Separation/PANTONE#205165#20PC/DeviceCMYK
+836 0 R]/PANTONE5175PC[/Separation/PANTONE#205175#20PC/DeviceCMYK 837 0 R]/PANTONE5185PC[/Separation/PANTONE#205185#20PC/DeviceCMYK
+838 0 R]/PANTONE5195PC[/Separation/PANTONE#205195#20PC/DeviceCMYK 839 0 R]/PANTONE5205PC[/Separation/PANTONE#205205#20PC/DeviceCMYK
+840 0 R]/PANTONE5215PC[/Separation/PANTONE#205215#20PC/DeviceCMYK 841 0 R]/PANTONE5225PC[/Separation/PANTONE#205225#20PC/DeviceCMYK
+842 0 R]/PANTONE5235PC[/Separation/PANTONE#205235#20PC/DeviceCMYK 843 0 R]/PANTONE5245PC[/Separation/PANTONE#205245#20PC/DeviceCMYK
+844 0 R]/PANTONE5255PC[/Separation/PANTONE#205255#20PC/DeviceCMYK 845 0 R]/PANTONE5265PC[/Separation/PANTONE#205265#20PC/DeviceCMYK
+846 0 R]/PANTONE5275PC[/Separation/PANTONE#205275#20PC/DeviceCMYK 847 0 R]/PANTONE5285PC[/Separation/PANTONE#205285#20PC/DeviceCMYK
+848 0 R]/PANTONE5295PC[/Separation/PANTONE#205295#20PC/DeviceCMYK 849 0 R]/PANTONE5305PC[/Separation/PANTONE#205305#20PC/DeviceCMYK
+850 0 R]/PANTONE5315PC[/Separation/PANTONE#205315#20PC/DeviceCMYK 851 0 R]/PANTONE5395PC[/Separation/PANTONE#205395#20PC/DeviceCMYK
+852 0 R]/PANTONE5405PC[/Separation/PANTONE#205405#20PC/DeviceCMYK 853 0 R]/PANTONE5415PC[/Separation/PANTONE#205415#20PC/DeviceCMYK
+854 0 R]/PANTONE5425PC[/Separation/PANTONE#205425#20PC/DeviceCMYK 855 0 R]/PANTONE5435PC[/Separation/PANTONE#205435#20PC/DeviceCMYK
+856 0 R]/PANTONE5445PC[/Separation/PANTONE#205445#20PC/DeviceCMYK 857 0 R]/PANTONE5455PC[/Separation/PANTONE#205455#20PC/DeviceCMYK
+858 0 R]/PANTONE5463PC[/Separation/PANTONE#205463#20PC/DeviceCMYK 859 0 R]/PANTONE5467PC[/Separation/PANTONE#205467#20PC/DeviceCMYK
+860 0 R]/PANTONE5473PC[/Separation/PANTONE#205473#20PC/DeviceCMYK 861 0 R]/PANTONE5477PC[/Separation/PANTONE#205477#20PC/DeviceCMYK
+862 0 R]/PANTONE5483PC[/Separation/PANTONE#205483#20PC/DeviceCMYK 863 0 R]/PANTONE5487PC[/Separation/PANTONE#205487#20PC/DeviceCMYK
+864 0 R]/PANTONE5493PC[/Separation/PANTONE#205493#20PC/DeviceCMYK 865 0 R]/PANTONE5497PC[/Separation/PANTONE#205497#20PC/DeviceCMYK
+866 0 R]/PANTONE5503PC[/Separation/PANTONE#205503#20PC/DeviceCMYK 867 0 R]/PANTONE5507PC[/Separation/PANTONE#205507#20PC/DeviceCMYK
+868 0 R]/PANTONE5513PC[/Separation/PANTONE#205513#20PC/DeviceCMYK 869 0 R]/PANTONE5517PC[/Separation/PANTONE#205517#20PC/DeviceCMYK
+870 0 R]/PANTONE5523PC[/Separation/PANTONE#205523#20PC/DeviceCMYK 871 0 R]/PANTONE5527PC[/Separation/PANTONE#205527#20PC/DeviceCMYK
+872 0 R]/PANTONE5535PC[/Separation/PANTONE#205535#20PC/DeviceCMYK 873 0 R]/PANTONE5545PC[/Separation/PANTONE#205545#20PC/DeviceCMYK
+874 0 R]/PANTONE5555PC[/Separation/PANTONE#205555#20PC/DeviceCMYK 875 0 R]/PANTONE5565PC[/Separation/PANTONE#205565#20PC/DeviceCMYK
+876 0 R]/PANTONE5575PC[/Separation/PANTONE#205575#20PC/DeviceCMYK 877 0 R]/PANTONE5585PC[/Separation/PANTONE#205585#20PC/DeviceCMYK
+878 0 R]/PANTONE5595PC[/Separation/PANTONE#205595#20PC/DeviceCMYK 879 0 R]/PANTONE5605PC[/Separation/PANTONE#205605#20PC/DeviceCMYK
+880 0 R]/PANTONE5615PC[/Separation/PANTONE#205615#20PC/DeviceCMYK 881 0 R]/PANTONE5625PC[/Separation/PANTONE#205625#20PC/DeviceCMYK
+882 0 R]/PANTONE5635PC[/Separation/PANTONE#205635#20PC/DeviceCMYK 883 0 R]/PANTONE5645PC[/Separation/PANTONE#205645#20PC/DeviceCMYK
+884 0 R]/PANTONE5655PC[/Separation/PANTONE#205655#20PC/DeviceCMYK 885 0 R]/PANTONE5665PC[/Separation/PANTONE#205665#20PC/DeviceCMYK
+886 0 R]/PANTONE5743PC[/Separation/PANTONE#205743#20PC/DeviceCMYK 887 0 R]/PANTONE5747PC[/Separation/PANTONE#205747#20PC/DeviceCMYK
+888 0 R]/PANTONE5753PC[/Separation/PANTONE#205753#20PC/DeviceCMYK 889 0 R]/PANTONE5757PC[/Separation/PANTONE#205757#20PC/DeviceCMYK
+890 0 R]/PANTONE5763PC[/Separation/PANTONE#205763#20PC/DeviceCMYK 891 0 R]/PANTONE5767PC[/Separation/PANTONE#205767#20PC/DeviceCMYK
+892 0 R]/PANTONE5773PC[/Separation/PANTONE#205773#20PC/DeviceCMYK 893 0 R]/PANTONE5777PC[/Separation/PANTONE#205777#20PC/DeviceCMYK
+894 0 R]/PANTONE5783PC[/Separation/PANTONE#205783#20PC/DeviceCMYK 895 0 R]/PANTONE5787PC[/Separation/PANTONE#205787#20PC/DeviceCMYK
+896 0 R]/PANTONE5793PC[/Separation/PANTONE#205793#20PC/DeviceCMYK 897 0 R]/PANTONE5797PC[/Separation/PANTONE#205797#20PC/DeviceCMYK
+898 0 R]/PANTONE5803PC[/Separation/PANTONE#205803#20PC/DeviceCMYK 899 0 R]/PANTONE5807PC[/Separation/PANTONE#205807#20PC/DeviceCMYK
+900 0 R]/PANTONE5815PC[/Separation/PANTONE#205815#20PC/DeviceCMYK 901 0 R]/PANTONE5825PC[/Separation/PANTONE#205825#20PC/DeviceCMYK
+902 0 R]/PANTONE5835PC[/Separation/PANTONE#205835#20PC/DeviceCMYK 903 0 R]/PANTONE5845PC[/Separation/PANTONE#205845#20PC/DeviceCMYK
+904 0 R]/PANTONE5855PC[/Separation/PANTONE#205855#20PC/DeviceCMYK 905 0 R]/PANTONE5865PC[/Separation/PANTONE#205865#20PC/DeviceCMYK
+906 0 R]/PANTONE5875PC[/Separation/PANTONE#205875#20PC/DeviceCMYK 907 0 R]/PANTONE7401PC[/Separation/PANTONE#207401#20PC/DeviceCMYK
+908 0 R]/PANTONE7402PC[/Separation/PANTONE#207402#20PC/DeviceCMYK 909 0 R]/PANTONE7403PC[/Separation/PANTONE#207403#20PC/DeviceCMYK
+910 0 R]/PANTONE7404PC[/Separation/PANTONE#207404#20PC/DeviceCMYK 911 0 R]/PANTONE7405PC[/Separation/PANTONE#207405#20PC/DeviceCMYK
+912 0 R]/PANTONE7406PC[/Separation/PANTONE#207406#20PC/DeviceCMYK 913 0 R]/PANTONE7407PC[/Separation/PANTONE#207407#20PC/DeviceCMYK
+914 0 R]/PANTONE7408PC[/Separation/PANTONE#207408#20PC/DeviceCMYK 915 0 R]/PANTONE7409PC[/Separation/PANTONE#207409#20PC/DeviceCMYK
+916 0 R]/PANTONE7410PC[/Separation/PANTONE#207410#20PC/DeviceCMYK 917 0 R]/PANTONE7411PC[/Separation/PANTONE#207411#20PC/DeviceCMYK
+918 0 R]/PANTONE7412PC[/Separation/PANTONE#207412#20PC/DeviceCMYK 919 0 R]/PANTONE7413PC[/Separation/PANTONE#207413#20PC/DeviceCMYK
+920 0 R]/PANTONE7414PC[/Separation/PANTONE#207414#20PC/DeviceCMYK 921 0 R]/PANTONE7415PC[/Separation/PANTONE#207415#20PC/DeviceCMYK
+922 0 R]/PANTONE7416PC[/Separation/PANTONE#207416#20PC/DeviceCMYK 923 0 R]/PANTONE7417PC[/Separation/PANTONE#207417#20PC/DeviceCMYK
+924 0 R]/PANTONE7418PC[/Separation/PANTONE#207418#20PC/DeviceCMYK 925 0 R]/PANTONE7419PC[/Separation/PANTONE#207419#20PC/DeviceCMYK
+926 0 R]/PANTONE7420PC[/Separation/PANTONE#207420#20PC/DeviceCMYK 927 0 R]/PANTONE7421PC[/Separation/PANTONE#207421#20PC/DeviceCMYK
+928 0 R]/PANTONE7422PC[/Separation/PANTONE#207422#20PC/DeviceCMYK 929 0 R]/PANTONE7423PC[/Separation/PANTONE#207423#20PC/DeviceCMYK
+930 0 R]/PANTONE7424PC[/Separation/PANTONE#207424#20PC/DeviceCMYK 931 0 R]/PANTONE7425PC[/Separation/PANTONE#207425#20PC/DeviceCMYK
+932 0 R]/PANTONE7426PC[/Separation/PANTONE#207426#20PC/DeviceCMYK 933 0 R]/PANTONE7427PC[/Separation/PANTONE#207427#20PC/DeviceCMYK
+934 0 R]/PANTONE7428PC[/Separation/PANTONE#207428#20PC/DeviceCMYK 935 0 R]/PANTONE7429PC[/Separation/PANTONE#207429#20PC/DeviceCMYK
+936 0 R]/PANTONE7430PC[/Separation/PANTONE#207430#20PC/DeviceCMYK 937 0 R]/PANTONE7431PC[/Separation/PANTONE#207431#20PC/DeviceCMYK
+938 0 R]/PANTONE7432PC[/Separation/PANTONE#207432#20PC/DeviceCMYK 939 0 R]/PANTONE7433PC[/Separation/PANTONE#207433#20PC/DeviceCMYK
+940 0 R]/PANTONE7434PC[/Separation/PANTONE#207434#20PC/DeviceCMYK 941 0 R]/PANTONE7435PC[/Separation/PANTONE#207435#20PC/DeviceCMYK
+942 0 R]/PANTONE7436PC[/Separation/PANTONE#207436#20PC/DeviceCMYK 943 0 R]/PANTONE7437PC[/Separation/PANTONE#207437#20PC/DeviceCMYK
+944 0 R]/PANTONE7438PC[/Separation/PANTONE#207438#20PC/DeviceCMYK 945 0 R]/PANTONE7439PC[/Separation/PANTONE#207439#20PC/DeviceCMYK
+946 0 R]/PANTONE7440PC[/Separation/PANTONE#207440#20PC/DeviceCMYK 947 0 R]/PANTONE7441PC[/Separation/PANTONE#207441#20PC/DeviceCMYK
+948 0 R]/PANTONE7442PC[/Separation/PANTONE#207442#20PC/DeviceCMYK 949 0 R]/PANTONE7443PC[/Separation/PANTONE#207443#20PC/DeviceCMYK
+950 0 R]/PANTONE7444PC[/Separation/PANTONE#207444#20PC/DeviceCMYK 951 0 R]/PANTONE7445PC[/Separation/PANTONE#207445#20PC/DeviceCMYK
+952 0 R]/PANTONE7446PC[/Separation/PANTONE#207446#20PC/DeviceCMYK 953 0 R]/PANTONE7447PC[/Separation/PANTONE#207447#20PC/DeviceCMYK
+954 0 R]/PANTONE7448PC[/Separation/PANTONE#207448#20PC/DeviceCMYK 955 0 R]/PANTONE7449PC[/Separation/PANTONE#207449#20PC/DeviceCMYK
+956 0 R]/PANTONE7450PC[/Separation/PANTONE#207450#20PC/DeviceCMYK 957 0 R]/PANTONE7451PC[/Separation/PANTONE#207451#20PC/DeviceCMYK
+958 0 R]/PANTONE7452PC[/Separation/PANTONE#207452#20PC/DeviceCMYK 959 0 R]/PANTONE7453PC[/Separation/PANTONE#207453#20PC/DeviceCMYK
+960 0 R]/PANTONE7454PC[/Separation/PANTONE#207454#20PC/DeviceCMYK 961 0 R]/PANTONE7455PC[/Separation/PANTONE#207455#20PC/DeviceCMYK
+962 0 R]/PANTONE7456PC[/Separation/PANTONE#207456#20PC/DeviceCMYK 963 0 R]/PANTONE7457PC[/Separation/PANTONE#207457#20PC/DeviceCMYK
+964 0 R]/PANTONE7458PC[/Separation/PANTONE#207458#20PC/DeviceCMYK 965 0 R]/PANTONE7459PC[/Separation/PANTONE#207459#20PC/DeviceCMYK
+966 0 R]/PANTONE7460PC[/Separation/PANTONE#207460#20PC/DeviceCMYK 967 0 R]/PANTONE7461PC[/Separation/PANTONE#207461#20PC/DeviceCMYK
+968 0 R]/PANTONE7462PC[/Separation/PANTONE#207462#20PC/DeviceCMYK 969 0 R]/PANTONE7463PC[/Separation/PANTONE#207463#20PC/DeviceCMYK
+970 0 R]/PANTONE7464PC[/Separation/PANTONE#207464#20PC/DeviceCMYK 971 0 R]/PANTONE7465PC[/Separation/PANTONE#207465#20PC/DeviceCMYK
+972 0 R]/PANTONE7466PC[/Separation/PANTONE#207466#20PC/DeviceCMYK 973 0 R]/PANTONE7467PC[/Separation/PANTONE#207467#20PC/DeviceCMYK
+974 0 R]/PANTONE7468PC[/Separation/PANTONE#207468#20PC/DeviceCMYK 975 0 R]/PANTONE7469PC[/Separation/PANTONE#207469#20PC/DeviceCMYK
+976 0 R]/PANTONE7470PC[/Separation/PANTONE#207470#20PC/DeviceCMYK 977 0 R]/PANTONE7471PC[/Separation/PANTONE#207471#20PC/DeviceCMYK
+978 0 R]/PANTONE7472PC[/Separation/PANTONE#207472#20PC/DeviceCMYK 979 0 R]/PANTONE7473PC[/Separation/PANTONE#207473#20PC/DeviceCMYK
+980 0 R]/PANTONE7474PC[/Separation/PANTONE#207474#20PC/DeviceCMYK 981 0 R]/PANTONE7475PC[/Separation/PANTONE#207475#20PC/DeviceCMYK
+982 0 R]/PANTONE7476PC[/Separation/PANTONE#207476#20PC/DeviceCMYK 983 0 R]/PANTONE7477PC[/Separation/PANTONE#207477#20PC/DeviceCMYK
+984 0 R]/PANTONE7478PC[/Separation/PANTONE#207478#20PC/DeviceCMYK 985 0 R]/PANTONE7479PC[/Separation/PANTONE#207479#20PC/DeviceCMYK
+986 0 R]/PANTONE7480PC[/Separation/PANTONE#207480#20PC/DeviceCMYK 987 0 R]/PANTONE7481PC[/Separation/PANTONE#207481#20PC/DeviceCMYK
+988 0 R]/PANTONE7482PC[/Separation/PANTONE#207482#20PC/DeviceCMYK 989 0 R]/PANTONE7483PC[/Separation/PANTONE#207483#20PC/DeviceCMYK
+990 0 R]/PANTONE7484PC[/Separation/PANTONE#207484#20PC/DeviceCMYK 991 0 R]/PANTONE7485PC[/Separation/PANTONE#207485#20PC/DeviceCMYK
+992 0 R]/PANTONE7486PC[/Separation/PANTONE#207486#20PC/DeviceCMYK 993 0 R]/PANTONE7487PC[/Separation/PANTONE#207487#20PC/DeviceCMYK
+994 0 R]/PANTONE7488PC[/Separation/PANTONE#207488#20PC/DeviceCMYK 995 0 R]/PANTONE7489PC[/Separation/PANTONE#207489#20PC/DeviceCMYK
+996 0 R]/PANTONE7490PC[/Separation/PANTONE#207490#20PC/DeviceCMYK 997 0 R]/PANTONE7491PC[/Separation/PANTONE#207491#20PC/DeviceCMYK
+998 0 R]/PANTONE7492PC[/Separation/PANTONE#207492#20PC/DeviceCMYK 999 0 R]/PANTONE7493PC[/Separation/PANTONE#207493#20PC/DeviceCMYK
+1000 0 R]/PANTONE7494PC[/Separation/PANTONE#207494#20PC/DeviceCMYK 1001 0 R]/PANTONE7495PC[/Separation/PANTONE#207495#20PC/DeviceCMYK
+1002 0 R]/PANTONE7496PC[/Separation/PANTONE#207496#20PC/DeviceCMYK 1003 0 R]/PANTONE7497PC[/Separation/PANTONE#207497#20PC/DeviceCMYK
+1004 0 R]/PANTONE7498PC[/Separation/PANTONE#207498#20PC/DeviceCMYK 1005 0 R]/PANTONE7499PC[/Separation/PANTONE#207499#20PC/DeviceCMYK
+1006 0 R]/PANTONE7500PC[/Separation/PANTONE#207500#20PC/DeviceCMYK 1007 0 R]/PANTONE7501PC[/Separation/PANTONE#207501#20PC/DeviceCMYK
+1008 0 R]/PANTONE7502PC[/Separation/PANTONE#207502#20PC/DeviceCMYK 1009 0 R]/PANTONE7503PC[/Separation/PANTONE#207503#20PC/DeviceCMYK
+1010 0 R]/PANTONE7504PC[/Separation/PANTONE#207504#20PC/DeviceCMYK 1011 0 R]/PANTONE7505PC[/Separation/PANTONE#207505#20PC/DeviceCMYK
+1012 0 R]/PANTONE7506PC[/Separation/PANTONE#207506#20PC/DeviceCMYK 1013 0 R]/PANTONE7507PC[/Separation/PANTONE#207507#20PC/DeviceCMYK
+1014 0 R]/PANTONE7508PC[/Separation/PANTONE#207508#20PC/DeviceCMYK 1015 0 R]/PANTONE7509PC[/Separation/PANTONE#207509#20PC/DeviceCMYK
+1016 0 R]/PANTONE7510PC[/Separation/PANTONE#207510#20PC/DeviceCMYK 1017 0 R]/PANTONE7511PC[/Separation/PANTONE#207511#20PC/DeviceCMYK
+1018 0 R]/PANTONE7512PC[/Separation/PANTONE#207512#20PC/DeviceCMYK 1019 0 R]/PANTONE7513PC[/Separation/PANTONE#207513#20PC/DeviceCMYK
+1020 0 R]/PANTONE7514PC[/Separation/PANTONE#207514#20PC/DeviceCMYK 1021 0 R]/PANTONE7515PC[/Separation/PANTONE#207515#20PC/DeviceCMYK
+1022 0 R]/PANTONE7516PC[/Separation/PANTONE#207516#20PC/DeviceCMYK 1023 0 R]/PANTONE7517PC[/Separation/PANTONE#207517#20PC/DeviceCMYK
+1024 0 R]/PANTONE7518PC[/Separation/PANTONE#207518#20PC/DeviceCMYK 1025 0 R]/PANTONE7519PC[/Separation/PANTONE#207519#20PC/DeviceCMYK
+1026 0 R]/PANTONE7520PC[/Separation/PANTONE#207520#20PC/DeviceCMYK 1027 0 R]/PANTONE7521PC[/Separation/PANTONE#207521#20PC/DeviceCMYK
+1028 0 R]/PANTONE7522PC[/Separation/PANTONE#207522#20PC/DeviceCMYK 1029 0 R]/PANTONE7523PC[/Separation/PANTONE#207523#20PC/DeviceCMYK
+1030 0 R]/PANTONE7524PC[/Separation/PANTONE#207524#20PC/DeviceCMYK 1031 0 R]/PANTONE7525PC[/Separation/PANTONE#207525#20PC/DeviceCMYK
+1032 0 R]/PANTONE7526PC[/Separation/PANTONE#207526#20PC/DeviceCMYK 1033 0 R]/PANTONE7527PC[/Separation/PANTONE#207527#20PC/DeviceCMYK
+1034 0 R]/PANTONE7528PC[/Separation/PANTONE#207528#20PC/DeviceCMYK 1035 0 R]/PANTONE7529PC[/Separation/PANTONE#207529#20PC/DeviceCMYK
+1036 0 R]/PANTONE7530PC[/Separation/PANTONE#207530#20PC/DeviceCMYK 1037 0 R]/PANTONE7531PC[/Separation/PANTONE#207531#20PC/DeviceCMYK
+1038 0 R]/PANTONE7532PC[/Separation/PANTONE#207532#20PC/DeviceCMYK 1039 0 R]/PANTONE7533PC[/Separation/PANTONE#207533#20PC/DeviceCMYK
+1040 0 R]/PANTONE7534PC[/Separation/PANTONE#207534#20PC/DeviceCMYK 1041 0 R]/PANTONE7535PC[/Separation/PANTONE#207535#20PC/DeviceCMYK
+1042 0 R]/PANTONE7536PC[/Separation/PANTONE#207536#20PC/DeviceCMYK 1043 0 R]/PANTONE7537PC[/Separation/PANTONE#207537#20PC/DeviceCMYK
+1044 0 R]/PANTONE7538PC[/Separation/PANTONE#207538#20PC/DeviceCMYK 1045 0 R]/PANTONE7539PC[/Separation/PANTONE#207539#20PC/DeviceCMYK
+1046 0 R]/PANTONE7540PC[/Separation/PANTONE#207540#20PC/DeviceCMYK 1047 0 R]/PANTONE7541PC[/Separation/PANTONE#207541#20PC/DeviceCMYK
+1048 0 R]/PANTONE7542PC[/Separation/PANTONE#207542#20PC/DeviceCMYK 1049 0 R]/PANTONE7543PC[/Separation/PANTONE#207543#20PC/DeviceCMYK
+1050 0 R]/PANTONE7544PC[/Separation/PANTONE#207544#20PC/DeviceCMYK 1051 0 R]/PANTONE7545PC[/Separation/PANTONE#207545#20PC/DeviceCMYK
+1052 0 R]/PANTONE7546PC[/Separation/PANTONE#207546#20PC/DeviceCMYK 1053 0 R]/PANTONE7547PC[/Separation/PANTONE#207547#20PC/DeviceCMYK
+1054 0 R]/PANTONEBlack2PC[/Separation/PANTONE#20Black#202#20PC/DeviceCMYK 1055 0 R]/PANTONEBlack3PC[/Separation/PANTONE#20Black#203#20PC/DeviceCMYK
+1056 0 R]/PANTONEBlack4PC[/Separation/PANTONE#20Black#204#20PC/DeviceCMYK 1057 0 R]/PANTONEBlack5PC[/Separation/PANTONE#20Black#205#20PC/DeviceCMYK
+1058 0 R]/PANTONEBlack6PC[/Separation/PANTONE#20Black#206#20PC/DeviceCMYK 1059 0 R]/PANTONEBlack7PC[/Separation/PANTONE#20Black#207#20PC/DeviceCMYK
+1060 0 R]/PANTONEBlackPC[/Separation/PANTONE#20Black#20PC/DeviceCMYK 1061 0 R]/PANTONEBlue072PC[/Separation/PANTONE#20Blue#20072#20PC/DeviceCMYK
+1062 0 R]/PANTONECoolGray1PC[/Separation/PANTONE#20Cool#20Gray#201#20PC/DeviceCMYK
+1063 0 R]/PANTONECoolGray2PC[/Separation/PANTONE#20Cool#20Gray#202#20PC/DeviceCMYK
+1064 0 R]/PANTONECoolGray3PC[/Separation/PANTONE#20Cool#20Gray#203#20PC/DeviceCMYK
+1065 0 R]/PANTONECoolGray4PC[/Separation/PANTONE#20Cool#20Gray#204#20PC/DeviceCMYK
+1066 0 R]/PANTONECoolGray5PC[/Separation/PANTONE#20Cool#20Gray#205#20PC/DeviceCMYK
+1067 0 R]/PANTONECoolGray6PC[/Separation/PANTONE#20Cool#20Gray#206#20PC/DeviceCMYK
+1068 0 R]/PANTONECoolGray7PC[/Separation/PANTONE#20Cool#20Gray#207#20PC/DeviceCMYK
+1069 0 R]/PANTONECoolGray8PC[/Separation/PANTONE#20Cool#20Gray#208#20PC/DeviceCMYK
+1070 0 R]/PANTONECoolGray9PC[/Separation/PANTONE#20Cool#20Gray#209#20PC/DeviceCMYK
+1071 0 R]/PANTONECoolGray10PC[/Separation/PANTONE#20Cool#20Gray#2010#20PC/DeviceCMYK
+1072 0 R]/PANTONECoolGray11PC[/Separation/PANTONE#20Cool#20Gray#2011#20PC/DeviceCMYK
+1073 0 R]/PANTONEGreenPC[/Separation/PANTONE#20Green#20PC/DeviceCMYK 1074 0 R]/PANTONEOrange021PC[/Separation/PANTONE#20Orange#20021#20PC/DeviceCMYK
+1075 0 R]/PANTONEProc.BlackPC[/Separation/PANTONE#20Proc.#20Black#20PC/DeviceCMYK
+1076 0 R]/PANTONEProc.BluePC[/Separation/PANTONE#20Proc.#20Blue#20PC/DeviceCMYK 1077 0 R]/PANTONEProc.CyanPC[/Separation/PANTONE#20Proc.#20Cyan#20PC/DeviceCMYK
+1078 0 R]/PANTONEProc.Magen.PC[/Separation/PANTONE#20Proc.#20Magen.#20PC/DeviceCMYK
+1079 0 R]/PANTONEProc.YellowPC[/Separation/PANTONE#20Proc.#20Yellow#20PC/DeviceCMYK
+1080 0 R]/PANTONEPurplePC[/Separation/PANTONE#20Purple#20PC/DeviceCMYK 1081 0 R]/PANTONERed032PC[/Separation/PANTONE#20Red#20032#20PC/DeviceCMYK
+1082 0 R]/PANTONERef.BluePC[/Separation/PANTONE#20Ref.#20Blue#20PC/DeviceCMYK 1083 0 R]/PANTONERhod.RedPC[/Separation/PANTONE#20Rhod.#20Red#20PC/DeviceCMYK
+1084 0 R]/PANTONERub.RedPC[/Separation/PANTONE#20Rub.#20Red#20PC/DeviceCMYK 1085 0 R]/PANTONEVioletPC[/Separation/PANTONE#20Violet#20PC/DeviceCMYK
+1086 0 R]/PANTONEWarmGray1PC[/Separation/PANTONE#20Warm#20Gray#201#20PC/DeviceCMYK
+1087 0 R]/PANTONEWarmGray2PC[/Separation/PANTONE#20Warm#20Gray#202#20PC/DeviceCMYK
+1088 0 R]/PANTONEWarmGray3PC[/Separation/PANTONE#20Warm#20Gray#203#20PC/DeviceCMYK
+1089 0 R]/PANTONEWarmGray4PC[/Separation/PANTONE#20Warm#20Gray#204#20PC/DeviceCMYK
+1090 0 R]/PANTONEWarmGray5PC[/Separation/PANTONE#20Warm#20Gray#205#20PC/DeviceCMYK
+1091 0 R]/PANTONEWarmGray6PC[/Separation/PANTONE#20Warm#20Gray#206#20PC/DeviceCMYK
+1092 0 R]/PANTONEWarmGray7PC[/Separation/PANTONE#20Warm#20Gray#207#20PC/DeviceCMYK
+1093 0 R]/PANTONEWarmGray8PC[/Separation/PANTONE#20Warm#20Gray#208#20PC/DeviceCMYK
+1094 0 R]/PANTONEWarmGray9PC[/Separation/PANTONE#20Warm#20Gray#209#20PC/DeviceCMYK
+1095 0 R]/PANTONEWarmGray10PC[/Separation/PANTONE#20Warm#20Gray#2010#20PC/DeviceCMYK
+1096 0 R]/PANTONEWarmGray11PC[/Separation/PANTONE#20Warm#20Gray#2011#20PC/DeviceCMYK
+1097 0 R]/PANTONEWarmRedPC[/Separation/PANTONE#20Warm#20Red#20PC/DeviceCMYK 1098 0 R]/PANTONEYellowPC[/Separation/PANTONE#20Yellow#20PC/DeviceCMYK
+1099 0 R]/HKS05N[/Separation/HKS#2005#20N/DeviceCMYK 1103 0 R]/HKS14N[/Separation/HKS#2014#20N/DeviceCMYK
+1104 0 R]/HKS17N[/Separation/HKS#2017#20N/DeviceCMYK 1105 0 R]/HKS24N[/Separation/HKS#2024#20N/DeviceCMYK
+1106 0 R]/HKS38N[/Separation/HKS#2038#20N/DeviceCMYK 1107 0 R]/HKS49N[/Separation/HKS#2049#20N/DeviceCMYK
+1108 0 R]/HKS57N[/Separation/HKS#2057#20N/DeviceCMYK 1109 0 R]/HKS68N[/Separation/HKS#2068#20N/DeviceCMYK
+1110 0 R]/HKS74N[/Separation/HKS#2074#20N/DeviceCMYK 1111 0 R]/HKS92N[/Separation/HKS#2092#20N/DeviceCMYK
+1112 0 R]/SOMECOLOR[/Separation/Spot#20Color#20Name#20in#20PDF/DeviceCMYK 1116 0 R]>>/Font<</F1
+5 0 R/F2 7 0 R>>/ProcSet[/PDF/Text/ImageC/ImageB/ImageI]>>
+endobj
+851 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.06 .06 0 .05]/Domain[0 1]/N 1>>
+endobj
+852 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .44 0 .76]/Domain[0 1]/N 1>>
+endobj
+853 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.58 .17 0 .46]/Domain[0 1]/N 1>>
+endobj
+854 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.42 .08 0 .4]/Domain[0 1]/N 1>>
+endobj
+250 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.84 0 .56 0]/Domain[0 1]/N 1>>
+endobj
+855 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.3 .04 0 .31]/Domain[0 1]/N 1>>
+endobj
+251 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .66 .09]/Domain[0 1]/N 1>>
+endobj
+400 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .15 .11 0]/Domain[0 1]/N 1>>
+endobj
+856 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.13 .03 0 .17]/Domain[0 1]/N 1>>
+endobj
+252 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .67 .29]/Domain[0 1]/N 1>>
+endobj
+401 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .74 1 .72]/Domain[0 1]/N 1>>
+endobj
+857 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.08 .01 0 .13]/Domain[0 1]/N 1>>
+endobj
+253 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .71 .43]/Domain[0 1]/N 1>>
+endobj
+402 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .79 1 .52]/Domain[0 1]/N 1>>
+endobj
+858 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.06 0 0 .09]/Domain[0 1]/N 1>>
+endobj
+254 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.98 0 .72 .61]/Domain[0 1]/N 1>>
+endobj
+403 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .7 .66 .3]/Domain[0 1]/N 1>>
+endobj
+859 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .18 .83]/Domain[0 1]/N 1>>
+endobj
+255 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.27 0 .23 0]/Domain[0 1]/N 1>>
+endobj
+404 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .46 .23 .05]/Domain[0 1]/N 1>>
+endobj
+256 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.38 0 .32 0]/Domain[0 1]/N 1>>
+endobj
+405 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .33 .13 0]/Domain[0 1]/N 1>>
+endobj
+257 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.55 0 .47 0]/Domain[0 1]/N 1>>
+endobj
+406 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .24 .11 0]/Domain[0 1]/N 1>>
+endobj
+258 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .86 .03]/Domain[0 1]/N 1>>
+endobj
+407 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .16 .09 0]/Domain[0 1]/N 1>>
+endobj
+259 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .85 .24]/Domain[0 1]/N 1>>
+endobj
+408 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .7 1 .78]/Domain[0 1]/N 1>>
+endobj
+409 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .64 1 .6]/Domain[0 1]/N 1>>
+endobj
+780 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .46 .15]/Domain[0 1]/N 1>>
+endobj
+781 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .5 .07]/Domain[0 1]/N 1>>
+endobj
+930 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .55 .23 0]/Domain[0 1]/N 1>>
+endobj
+782 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .54 .2]/Domain[0 1]/N 1>>
+endobj
+931 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .75 .3 0]/Domain[0 1]/N 1>>
+endobj
+783 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .49 .46]/Domain[0 1]/N 1>>
+endobj
+932 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .9 .3 .07]/Domain[0 1]/N 1>>
+endobj
+784 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .53 .21]/Domain[0 1]/N 1>>
+endobj
+933 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 .45 .18]/Domain[0 1]/N 1>>
+endobj
+180 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.78 1 0 .33]/Domain[0 1]/N 1>>
+endobj
+785 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .57 .42]/Domain[0 1]/N 1>>
+endobj
+934 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 .65 .28]/Domain[0 1]/N 1>>
+endobj
+181 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.31 .27 0 0]/Domain[0 1]/N 1>>
+endobj
+330 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.29 0 .36 1]/Domain[0 1]/N 1>>
+endobj
+786 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .54 .69]/Domain[0 1]/N 1>>
+endobj
+935 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .8 .45 .55]/Domain[0 1]/N 1>>
+endobj
+182 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.43 .37 0 0]/Domain[0 1]/N 1>>
+endobj
+331 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 0 .15]/Domain[0 1]/N 1>>
+endobj
+787 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .61 .61]/Domain[0 1]/N 1>>
+endobj
+936 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .18 .03 0]/Domain[0 1]/N 1>>
+endobj
+183 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.58 .48 0 0]/Domain[0 1]/N 1>>
+endobj
+332 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 0 .26]/Domain[0 1]/N 1>>
+endobj
+788 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .6 .72]/Domain[0 1]/N 1>>
+endobj
+937 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.02 .31 0 0]/Domain[0 1]/N 1>>
+endobj
+184 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .96 0 .08]/Domain[0 1]/N 1>>
+endobj
+333 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 0 .33]/Domain[0 1]/N 1>>
+endobj
+789 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.35 0 .25 0]/Domain[0 1]/N 1>>
+endobj
+938 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .38 .02 .05]/Domain[0 1]/N 1>>
+endobj
+185 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 1 0 .28]/Domain[0 1]/N 1>>
+endobj
+334 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 0 .44]/Domain[0 1]/N 1>>
+endobj
+939 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .55 .03 .1]/Domain[0 1]/N 1>>
+endobj
+186 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.98 1 0 .43]/Domain[0 1]/N 1>>
+endobj
+335 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 0 .61]/Domain[0 1]/N 1>>
+endobj
+187 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 1 0 .58]/Domain[0 1]/N 1>>
+endobj
+336 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 0 .77]/Domain[0 1]/N 1>>
+endobj
+188 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.27 .07 0 0]/Domain[0 1]/N 1>>
+endobj
+337 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 0 .99]/Domain[0 1]/N 1>>
+endobj
+189 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.39 .14 0 0]/Domain[0 1]/N 1>>
+endobj
+338 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 0 .11]/Domain[0 1]/N 1>>
+endobj
+339 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.02 0 0 .18]/Domain[0 1]/N 1>>
+endobj
+860 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .33 .94]/Domain[0 1]/N 1>>
+endobj
+861 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.82 0 .28 .52]/Domain[0 1]/N 1>>
+endobj
+862 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.55 0 .27 .73]/Domain[0 1]/N 1>>
+endobj
+863 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.62 0 .21 .31]/Domain[0 1]/N 1>>
+endobj
+864 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.35 0 .16 .54]/Domain[0 1]/N 1>>
+endobj
+260 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .91 .42]/Domain[0 1]/N 1>>
+endobj
+865 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.43 0 .14 .21]/Domain[0 1]/N 1>>
+endobj
+261 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.79 0 1 .75]/Domain[0 1]/N 1>>
+endobj
+410 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .58 1 .49]/Domain[0 1]/N 1>>
+endobj
+866 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.17 0 .09 .63]/Domain[0 1]/N 1>>
+endobj
+262 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.17 0 .16 0]/Domain[0 1]/N 1>>
+endobj
+411 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .38 .21 .11]/Domain[0 1]/N 1>>
+endobj
+867 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.29 0 .1 .14]/Domain[0 1]/N 1>>
+endobj
+263 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.27 0 .25 0]/Domain[0 1]/N 1>>
+endobj
+412 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .27 .13 .03]/Domain[0 1]/N 1>>
+endobj
+868 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.1 0 .06 .27]/Domain[0 1]/N 1>>
+endobj
+264 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.38 0 .36 0]/Domain[0 1]/N 1>>
+endobj
+413 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .18 .1 .01]/Domain[0 1]/N 1>>
+endobj
+869 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.18 0 .07 .05]/Domain[0 1]/N 1>>
+endobj
+265 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.8 0 .9 0]/Domain[0 1]/N 1>>
+endobj
+414 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .11 .08 0]/Domain[0 1]/N 1>>
+endobj
+266 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.94 0 1 0]/Domain[0 1]/N 1>>
+endobj
+415 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.65 1 1 .35]/Domain[0 1]/N 1>>
+endobj
+267 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.95 0 1 .27]/Domain[0 1]/N 1>>
+endobj
+416 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.5 1 1 .25]/Domain[0 1]/N 1>>
+endobj
+268 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.8 0 1 .56]/Domain[0 1]/N 1>>
+endobj
+417 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.45 1 1 .15]/Domain[0 1]/N 1>>
+endobj
+269 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.27 0 .38 0]/Domain[0 1]/N 1>>
+endobj
+418 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.11 .45 .22 0]/Domain[0 1]/N 1>>
+endobj
+419 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.04 .34 .11 0]/Domain[0 1]/N 1>>
+endobj
+790 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.45 0 .33 0]/Domain[0 1]/N 1>>
+endobj
+791 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.61 0 .45 0]/Domain[0 1]/N 1>>
+endobj
+940 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .75 .15 .15]/Domain[0 1]/N 1>>
+endobj
+792 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.85 0 .65 0]/Domain[0 1]/N 1>>
+endobj
+941 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .8 .15 .2]/Domain[0 1]/N 1>>
+endobj
+793 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .77 .22]/Domain[0 1]/N 1>>
+endobj
+942 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 .1 .35]/Domain[0 1]/N 1>>
+endobj
+794 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .78 .42]/Domain[0 1]/N 1>>
+endobj
+943 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.03 .08 0 0]/Domain[0 1]/N 1>>
+endobj
+190 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.68 .34 0 0]/Domain[0 1]/N 1>>
+endobj
+795 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .81 .66]/Domain[0 1]/N 1>>
+endobj
+944 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.06 .2 0 0]/Domain[0 1]/N 1>>
+endobj
+191 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .72 0 .18]/Domain[0 1]/N 1>>
+endobj
+340 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.03 0 0 .32]/Domain[0 1]/N 1>>
+endobj
+796 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.01 0 .68 0]/Domain[0 1]/N 1>>
+endobj
+945 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.15 .35 0 0]/Domain[0 1]/N 1>>
+endobj
+192 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .72 0 .32]/Domain[0 1]/N 1>>
+endobj
+341 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.05 0 0 .45]/Domain[0 1]/N 1>>
+endobj
+797 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.03 0 .85 0]/Domain[0 1]/N 1>>
+endobj
+946 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.2 .35 0 0]/Domain[0 1]/N 1>>
+endobj
+193 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .68 0 .54]/Domain[0 1]/N 1>>
+endobj
+342 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.11 .01 0 .64]/Domain[0 1]/N 1>>
+endobj
+798 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.06 0 1 0]/Domain[0 1]/N 1>>
+endobj
+947 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.3 .4 0 0]/Domain[0 1]/N 1>>
+endobj
+194 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.35 .09 0 0]/Domain[0 1]/N 1>>
+endobj
+343 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.23 .02 0 .77]/Domain[0 1]/N 1>>
+endobj
+799 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.08 0 1 0]/Domain[0 1]/N 1>>
+endobj
+948 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.36 .5 0 0]/Domain[0 1]/N 1>>
+endobj
+195 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.55 .19 0 0]/Domain[0 1]/N 1>>
+endobj
+344 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.33 .03 0 .95]/Domain[0 1]/N 1>>
+endobj
+949 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.5 .7 0 0]/Domain[0 1]/N 1>>
+endobj
+196 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.89 .43 0 0]/Domain[0 1]/N 1>>
+endobj
+345 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.07 .09 .1 0]/Domain[0 1]/N 1>>
+endobj
+197 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .66 0 .02]/Domain[0 1]/N 1>>
+endobj
+346 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.13 .15 .15 0]/Domain[0 1]/N 1>>
+endobj
+198 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .68 0 .12]/Domain[0 1]/N 1>>
+endobj
+347 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.24 .25 .26 0]/Domain[0 1]/N 1>>
+endobj
+199 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .67 0 .23]/Domain[0 1]/N 1>>
+endobj
+348 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.46 .45 .49 0]/Domain[0 1]/N 1>>
+endobj
+349 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.75 .68 1 .1]/Domain[0 1]/N 1>>
+endobj
+870 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.08 0 .05 .17]/Domain[0 1]/N 1>>
+endobj
+871 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.11 0 .05 .03]/Domain[0 1]/N 1>>
+endobj
+872 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.06 0 .04 .11]/Domain[0 1]/N 1>>
+endobj
+873 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.66 0 .57 .82]/Domain[0 1]/N 1>>
+endobj
+874 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.59 0 .5 .52]/Domain[0 1]/N 1>>
+endobj
+270 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.36 0 .49 0]/Domain[0 1]/N 1>>
+endobj
+875 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.43 0 .34 .38]/Domain[0 1]/N 1>>
+endobj
+271 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.58 0 .8 0]/Domain[0 1]/N 1>>
+endobj
+420 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .24 .07 0]/Domain[0 1]/N 1>>
+endobj
+876 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.3 0 .24 .26]/Domain[0 1]/N 1>>
+endobj
+272 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.69 0 1 0]/Domain[0 1]/N 1>>
+endobj
+421 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .17 .06 0]/Domain[0 1]/N 1>>
+endobj
+877 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.2 0 .16 .17]/Domain[0 1]/N 1>>
+endobj
+273 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.7 0 1 .09]/Domain[0 1]/N 1>>
+endobj
+422 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.6 1 .45 .3]/Domain[0 1]/N 1>>
+endobj
+878 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.12 0 .11 .1]/Domain[0 1]/N 1>>
+endobj
+274 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.68 0 1 .24]/Domain[0 1]/N 1>>
+endobj
+423 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.5 1 .15 .1]/Domain[0 1]/N 1>>
+endobj
+879 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.07 0 .08 .07]/Domain[0 1]/N 1>>
+endobj
+275 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.65 0 1 .42]/Domain[0 1]/N 1>>
+endobj
+424 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.44 .83 0 0]/Domain[0 1]/N 1>>
+endobj
+276 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.12 0 .29 0]/Domain[0 1]/N 1>>
+endobj
+425 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.15 .5 0 0]/Domain[0 1]/N 1>>
+endobj
+277 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.2 0 .44 0]/Domain[0 1]/N 1>>
+endobj
+426 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.07 .38 0 0]/Domain[0 1]/N 1>>
+endobj
+278 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.32 0 .59 0]/Domain[0 1]/N 1>>
+endobj
+427 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.03 .27 0 0]/Domain[0 1]/N 1>>
+endobj
+279 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.57 0 1 0]/Domain[0 1]/N 1>>
+endobj
+428 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .18 0 0]/Domain[0 1]/N 1>>
+endobj
+429 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.7 1 .55 .25]/Domain[0 1]/N 1>>
+endobj
+950 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.06 .05 0 0]/Domain[0 1]/N 1>>
+endobj
+951 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.2 .17 0 0]/Domain[0 1]/N 1>>
+endobj
+952 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.3 .2 0 .03]/Domain[0 1]/N 1>>
+endobj
+953 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.43 .38 0 0]/Domain[0 1]/N 1>>
+endobj
+954 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.6 .58 0 .19]/Domain[0 1]/N 1>>
+endobj
+350 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.8 .73 1 .2]/Domain[0 1]/N 1>>
+endobj
+955 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.32 .42 0 .55]/Domain[0 1]/N 1>>
+endobj
+351 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.82 .76 1 .3]/Domain[0 1]/N 1>>
+endobj
+500 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 .4 0]/Domain[0 1]/N 1>>
+endobj
+956 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.72 1 .77 .4]/Domain[0 1]/N 1>>
+endobj
+352 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.06 0 .07 .09]/Domain[0 1]/N 1>>
+endobj
+501 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 .5 0]/Domain[0 1]/N 1>>
+endobj
+957 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.2 .1 0 0]/Domain[0 1]/N 1>>
+endobj
+353 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.08 0 .09 .19]/Domain[0 1]/N 1>>
+endobj
+502 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 .69 .01]/Domain[0 1]/N 1>>
+endobj
+958 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.4 .21 0 0]/Domain[0 1]/N 1>>
+endobj
+354 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.12 0 .12 .3]/Domain[0 1]/N 1>>
+endobj
+503 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 .88 .03]/Domain[0 1]/N 1>>
+endobj
+959 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.5 .32 0 0]/Domain[0 1]/N 1>>
+endobj
+355 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.15 0 .15 .42]/Domain[0 1]/N 1>>
+endobj
+504 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .02 1 .07]/Domain[0 1]/N 1>>
+endobj
+356 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.2 0 .2 .65]/Domain[0 1]/N 1>>
+endobj
+505 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .04 1 .12]/Domain[0 1]/N 1>>
+endobj
+357 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.21 0 .23 .75]/Domain[0 1]/N 1>>
+endobj
+506 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 .18 .01]/Domain[0 1]/N 1>>
+endobj
+358 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.16 0 .31 .82]/Domain[0 1]/N 1>>
+endobj
+507 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 .32 .02]/Domain[0 1]/N 1>>
+endobj
+359 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.65 .58 1 .35]/Domain[0 1]/N 1>>
+endobj
+508 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 .46 .04]/Domain[0 1]/N 1>>
+endobj
+509 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 .58 .06]/Domain[0 1]/N 1>>
+endobj
+880 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.65 0 .56 .94]/Domain[0 1]/N 1>>
+endobj
+881 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.49 0 .44 .64]/Domain[0 1]/N 1>>
+endobj
+882 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.28 0 .29 .48]/Domain[0 1]/N 1>>
+endobj
+883 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.13 0 .18 .33]/Domain[0 1]/N 1>>
+endobj
+884 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.07 0 .11 .23]/Domain[0 1]/N 1>>
+endobj
+280 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.59 0 1 .07]/Domain[0 1]/N 1>>
+endobj
+885 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.06 0 .09 .16]/Domain[0 1]/N 1>>
+endobj
+281 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.56 0 1 .27]/Domain[0 1]/N 1>>
+endobj
+430 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.67 1 .3 .1]/Domain[0 1]/N 1>>
+endobj
+886 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.05 0 .07 .1]/Domain[0 1]/N 1>>
+endobj
+282 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.43 0 1 .56]/Domain[0 1]/N 1>>
+endobj
+431 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.64 1 .12 0]/Domain[0 1]/N 1>>
+endobj
+887 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.33 0 .85 .82]/Domain[0 1]/N 1>>
+endobj
+283 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.1 0 .33 0]/Domain[0 1]/N 1>>
+endobj
+432 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.27 .47 0 0]/Domain[0 1]/N 1>>
+endobj
+888 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.32 0 1 .79]/Domain[0 1]/N 1>>
+endobj
+284 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.16 0 .46 0]/Domain[0 1]/N 1>>
+endobj
+433 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.17 .37 0 0]/Domain[0 1]/N 1>>
+endobj
+889 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.25 0 .81 .67]/Domain[0 1]/N 1>>
+endobj
+1112 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.1 0 .1 .5]/Domain[0 1]/N 1>>
+endobj
+285 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.24 0 .57 0]/Domain[0 1]/N 1>>
+endobj
+434 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.1 .26 0 0]/Domain[0 1]/N 1>>
+endobj
+11 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 .51 0]/Domain[0 1]/N 1>>
+endobj
+286 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.41 0 .78 0]/Domain[0 1]/N 1>>
+endobj
+435 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.06 .15 0 0]/Domain[0 1]/N 1>>
+endobj
+12 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 .79 0]/Domain[0 1]/N 1>>
+endobj
+287 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.5 0 1 0]/Domain[0 1]/N 1>>
+endobj
+436 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.84 1 .45 .05]/Domain[0 1]/N 1>>
+endobj
+13 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 .95 0]/Domain[0 1]/N 1>>
+endobj
+288 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.45 0 1 .24]/Domain[0 1]/N 1>>
+endobj
+437 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.76 1 .07 0]/Domain[0 1]/N 1>>
+endobj
+14 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .03 1 .18]/Domain[0 1]/N 1>>
+endobj
+289 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.34 0 1 .6]/Domain[0 1]/N 1>>
+endobj
+438 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.73 1 0 0]/Domain[0 1]/N 1>>
+endobj
+15 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .03 1 .3]/Domain[0 1]/N 1>>
+endobj
+439 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.41 .55 0 0]/Domain[0 1]/N 1>>
+endobj
+16 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .03 1 .5]/Domain[0 1]/N 1>>
+endobj
+17 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .02 .69 0]/Domain[0 1]/N 1>>
+endobj
+960 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.5 .26 0 0]/Domain[0 1]/N 1>>
+endobj
+18 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .04 .79 0]/Domain[0 1]/N 1>>
+endobj
+961 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.5 .24 0 .1]/Domain[0 1]/N 1>>
+endobj
+19 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .06 .95 0]/Domain[0 1]/N 1>>
+endobj
+962 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.8 .53 0 0]/Domain[0 1]/N 1>>
+endobj
+963 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.55 .35 0 .07]/Domain[0 1]/N 1>>
+endobj
+964 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.12 0 .02 0]/Domain[0 1]/N 1>>
+endobj
+360 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.65 .55 1 .28]/Domain[0 1]/N 1>>
+endobj
+965 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.4 0 .05 .06]/Domain[0 1]/N 1>>
+endobj
+361 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.6 .5 1 .22]/Domain[0 1]/N 1>>
+endobj
+510 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .01 .92 .11]/Domain[0 1]/N 1>>
+endobj
+966 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.57 0 .06 .13]/Domain[0 1]/N 1>>
+endobj
+362 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.33 .28 .58 0]/Domain[0 1]/N 1>>
+endobj
+511 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .02 1 .2]/Domain[0 1]/N 1>>
+endobj
+967 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 0 .05]/Domain[0 1]/N 1>>
+endobj
+363 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.24 .18 .42 0]/Domain[0 1]/N 1>>
+endobj
+512 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .04 1 .3]/Domain[0 1]/N 1>>
+endobj
+968 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.78 .28 0 0]/Domain[0 1]/N 1>>
+endobj
+364 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.14 .1 .27 0]/Domain[0 1]/N 1>>
+endobj
+513 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 .2 .04]/Domain[0 1]/N 1>>
+endobj
+969 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .5 0 .1]/Domain[0 1]/N 1>>
+endobj
+365 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.09 .06 .17 0]/Domain[0 1]/N 1>>
+endobj
+514 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .01 .27 .06]/Domain[0 1]/N 1>>
+endobj
+366 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .17 1 .65]/Domain[0 1]/N 1>>
+endobj
+515 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .02 .35 .09]/Domain[0 1]/N 1>>
+endobj
+367 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .15 1 .43]/Domain[0 1]/N 1>>
+endobj
+516 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .02 .48 .17]/Domain[0 1]/N 1>>
+endobj
+368 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .15 1 .28]/Domain[0 1]/N 1>>
+endobj
+517 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .03 .87 .3]/Domain[0 1]/N 1>>
+endobj
+369 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.1 .1 .73 0]/Domain[0 1]/N 1>>
+endobj
+518 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .04 1 .43]/Domain[0 1]/N 1>>
+endobj
+519 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .05 1 .53]/Domain[0 1]/N 1>>
+endobj
+890 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.27 0 .95 .55]/Domain[0 1]/N 1>>
+endobj
+891 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.16 0 .74 .57]/Domain[0 1]/N 1>>
+endobj
+892 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.15 0 .68 .39]/Domain[0 1]/N 1>>
+endobj
+893 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.09 0 .43 .38]/Domain[0 1]/N 1>>
+endobj
+894 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.1 0 .49 .28]/Domain[0 1]/N 1>>
+endobj
+290 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.09 0 .58 0]/Domain[0 1]/N 1>>
+endobj
+895 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.06 0 .28 .27]/Domain[0 1]/N 1>>
+endobj
+291 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.13 0 .72 0]/Domain[0 1]/N 1>>
+endobj
+440 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.26 .4 0 0]/Domain[0 1]/N 1>>
+endobj
+896 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.07 0 .31 .13]/Domain[0 1]/N 1>>
+endobj
+292 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.2 0 .91 0]/Domain[0 1]/N 1>>
+endobj
+441 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.18 .31 0 0]/Domain[0 1]/N 1>>
+endobj
+897 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.04 0 .21 .18]/Domain[0 1]/N 1>>
+endobj
+1103 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .15 1 0]/Domain[0 1]/N 1>>
+endobj
+293 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.29 0 1 0]/Domain[0 1]/N 1>>
+endobj
+442 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.1 .2 0 0]/Domain[0 1]/N 1>>
+endobj
+898 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.05 0 .24 .09]/Domain[0 1]/N 1>>
+endobj
+1104 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .75 .7 0]/Domain[0 1]/N 1>>
+endobj
+294 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.2 0 1 .19]/Domain[0 1]/N 1>>
+endobj
+443 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .8 .7 .25]/Domain[0 1]/N 1>>
+endobj
+899 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.02 0 .12 .11]/Domain[0 1]/N 1>>
+endobj
+1105 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .1 .6 0]/Domain[0 1]/N 1>>
+endobj
+20 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .1 1 0]/Domain[0 1]/N 1>>
+endobj
+295 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.18 0 1 .31]/Domain[0 1]/N 1>>
+endobj
+444 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .83 .46 .13]/Domain[0 1]/N 1>>
+endobj
+1106 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .1 .3 0]/Domain[0 1]/N 1>>
+endobj
+21 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .12 1 .07]/Domain[0 1]/N 1>>
+endobj
+296 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.03 0 1 .58]/Domain[0 1]/N 1>>
+endobj
+445 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .8 .3 .05]/Domain[0 1]/N 1>>
+endobj
+1107 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.9 .5 .15 .3]/Domain[0 1]/N 1>>
+endobj
+22 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .11 1 .27]/Domain[0 1]/N 1>>
+endobj
+297 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.06 0 .56 0]/Domain[0 1]/N 1>>
+endobj
+446 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.42 .27 .07 0]/Domain[0 1]/N 1>>
+endobj
+1108 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .08 0]/Domain[0 1]/N 1>>
+endobj
+23 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .1 1 .38]/Domain[0 1]/N 1>>
+endobj
+298 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.1 0 .74 0]/Domain[0 1]/N 1>>
+endobj
+447 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.31 .2 .05 0]/Domain[0 1]/N 1>>
+endobj
+1109 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.8 0 .6 .7]/Domain[0 1]/N 1>>
+endobj
+24 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .07 .66 0]/Domain[0 1]/N 1>>
+endobj
+299 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.14 0 .79 0]/Domain[0 1]/N 1>>
+endobj
+448 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.22 .12 .03 0]/Domain[0 1]/N 1>>
+endobj
+1110 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.2 .07 1 0]/Domain[0 1]/N 1>>
+endobj
+25 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .08 .73 0]/Domain[0 1]/N 1>>
+endobj
+449 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.12 .07 .02 0]/Domain[0 1]/N 1>>
+endobj
+1111 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .3 1 .25]/Domain[0 1]/N 1>>
+endobj
+26 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .09 .8 0]/Domain[0 1]/N 1>>
+endobj
+27 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .16 1 0]/Domain[0 1]/N 1>>
+endobj
+970 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .43 0 .65]/Domain[0 1]/N 1>>
+endobj
+28 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .18 1 .15]/Domain[0 1]/N 1>>
+endobj
+971 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.25 0 .1 0]/Domain[0 1]/N 1>>
+endobj
+29 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .18 1 .27]/Domain[0 1]/N 1>>
+endobj
+972 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.5 0 .25 0]/Domain[0 1]/N 1>>
+endobj
+973 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.7 0 .23 0]/Domain[0 1]/N 1>>
+endobj
+974 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.95 0 .25 0]/Domain[0 1]/N 1>>
+endobj
+370 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.06 .07 .55 0]/Domain[0 1]/N 1>>
+endobj
+975 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .1 0 .28]/Domain[0 1]/N 1>>
+endobj
+371 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.04 .05 .44 0]/Domain[0 1]/N 1>>
+endobj
+520 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.13 0 .1 .02]/Domain[0 1]/N 1>>
+endobj
+976 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .2 0 .4]/Domain[0 1]/N 1>>
+endobj
+372 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.03 .03 .35 0]/Domain[0 1]/N 1>>
+endobj
+521 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.24 0 .19 .04]/Domain[0 1]/N 1>>
+endobj
+977 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.8 .15 0 .45]/Domain[0 1]/N 1>>
+endobj
+373 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.5 .58 1 .45]/Domain[0 1]/N 1>>
+endobj
+522 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.32 0 .24 .1]/Domain[0 1]/N 1>>
+endobj
+978 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.28 0 .14 0]/Domain[0 1]/N 1>>
+endobj
+374 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.3 .56 1 .37]/Domain[0 1]/N 1>>
+endobj
+523 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.44 0 .35 .2]/Domain[0 1]/N 1>>
+endobj
+979 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.52 0 .25 0]/Domain[0 1]/N 1>>
+endobj
+375 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.1 .49 1 .35]/Domain[0 1]/N 1>>
+endobj
+524 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.56 0 .44 .33]/Domain[0 1]/N 1>>
+endobj
+376 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.2 .32 .58 0]/Domain[0 1]/N 1>>
+endobj
+525 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.76 0 .64 .62]/Domain[0 1]/N 1>>
+endobj
+377 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.12 .22 .43 0]/Domain[0 1]/N 1>>
+endobj
+526 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.9 0 .75 .83]/Domain[0 1]/N 1>>
+endobj
+378 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.09 .15 .34 0]/Domain[0 1]/N 1>>
+endobj
+527 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.19 0 .06 0]/Domain[0 1]/N 1>>
+endobj
+379 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.06 .09 .23 0]/Domain[0 1]/N 1>>
+endobj
+528 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.34 0 .09 0]/Domain[0 1]/N 1>>
+endobj
+529 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.47 0 .11 0]/Domain[0 1]/N 1>>
+endobj
+450 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .49 0 .7]/Domain[0 1]/N 1>>
+endobj
+451 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .55 0 .55]/Domain[0 1]/N 1>>
+endobj
+600 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .45 .2 0]/Domain[0 1]/N 1>>
+endobj
+452 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .57 0 .38]/Domain[0 1]/N 1>>
+endobj
+601 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .69 .34 .05]/Domain[0 1]/N 1>>
+endobj
+453 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.62 .22 0 .03]/Domain[0 1]/N 1>>
+endobj
+602 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .83 .54 .16]/Domain[0 1]/N 1>>
+endobj
+30 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .12 1 .49]/Domain[0 1]/N 1>>
+endobj
+454 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.41 .11 0 0]/Domain[0 1]/N 1>>
+endobj
+603 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .9 .72 .29]/Domain[0 1]/N 1>>
+endobj
+31 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .09 .58 0]/Domain[0 1]/N 1>>
+endobj
+455 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.3 .06 0 0]/Domain[0 1]/N 1>>
+endobj
+604 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .09 .06 0]/Domain[0 1]/N 1>>
+endobj
+32 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .11 .69 0]/Domain[0 1]/N 1>>
+endobj
+456 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.22 .03 0 0]/Domain[0 1]/N 1>>
+endobj
+605 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .17 .1 0]/Domain[0 1]/N 1>>
+endobj
+33 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .17 .8 0]/Domain[0 1]/N 1>>
+endobj
+457 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.95 .09 0 .83]/Domain[0 1]/N 1>>
+endobj
+606 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .3 .14 0]/Domain[0 1]/N 1>>
+endobj
+34 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .24 .94 0]/Domain[0 1]/N 1>>
+endobj
+458 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .19 0 .75]/Domain[0 1]/N 1>>
+endobj
+607 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .46 .22 0]/Domain[0 1]/N 1>>
+endobj
+35 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .28 1 .06]/Domain[0 1]/N 1>>
+endobj
+459 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .24 0 .64]/Domain[0 1]/N 1>>
+endobj
+608 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .66 .38 0]/Domain[0 1]/N 1>>
+endobj
+36 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .26 1 .26]/Domain[0 1]/N 1>>
+endobj
+609 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .79 .58 0]/Domain[0 1]/N 1>>
+endobj
+37 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .25 1 .37]/Domain[0 1]/N 1>>
+endobj
+980 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.7 0 .38 .08]/Domain[0 1]/N 1>>
+endobj
+38 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .07 .5 0]/Domain[0 1]/N 1>>
+endobj
+981 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.9 0 .28 .22]/Domain[0 1]/N 1>>
+endobj
+39 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .11 .65 0]/Domain[0 1]/N 1>>
+endobj
+982 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.5 0 .25 .3]/Domain[0 1]/N 1>>
+endobj
+983 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .43 .6]/Domain[0 1]/N 1>>
+endobj
+984 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.8 0 .1 .68]/Domain[0 1]/N 1>>
+endobj
+380 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .52 1 .62]/Domain[0 1]/N 1>>
+endobj
+985 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.18 0 .14 0]/Domain[0 1]/N 1>>
+endobj
+381 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .58 1 .33]/Domain[0 1]/N 1>>
+endobj
+530 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.67 0 .12 .02]/Domain[0 1]/N 1>>
+endobj
+986 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.55 0 .5 0]/Domain[0 1]/N 1>>
+endobj
+382 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .59 1 .18]/Domain[0 1]/N 1>>
+endobj
+531 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.92 0 .15 .05]/Domain[0 1]/N 1>>
+endobj
+987 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.6 0 .5 0]/Domain[0 1]/N 1>>
+endobj
+383 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .34 .52 0]/Domain[0 1]/N 1>>
+endobj
+532 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .1 .25]/Domain[0 1]/N 1>>
+endobj
+988 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.6 0 .55 0]/Domain[0 1]/N 1>>
+endobj
+384 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .23 .36 0]/Domain[0 1]/N 1>>
+endobj
+533 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .09 .4]/Domain[0 1]/N 1>>
+endobj
+989 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.8 0 .75 0]/Domain[0 1]/N 1>>
+endobj
+1000 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.14 0 .36 .1]/Domain[0 1]/N 1>>
+endobj
+385 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .15 .26 0]/Domain[0 1]/N 1>>
+endobj
+534 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.32 0 .08 0]/Domain[0 1]/N 1>>
+endobj
+1001 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.25 0 .4 .15]/Domain[0 1]/N 1>>
+endobj
+386 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .11 .2 0]/Domain[0 1]/N 1>>
+endobj
+535 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.45 0 .09 0]/Domain[0 1]/N 1>>
+endobj
+1002 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.25 0 .8 .3]/Domain[0 1]/N 1>>
+endobj
+387 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.57 .8 1 .45]/Domain[0 1]/N 1>>
+endobj
+536 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.55 0 .09 0]/Domain[0 1]/N 1>>
+endobj
+1003 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.4 0 1 .38]/Domain[0 1]/N 1>>
+endobj
+388 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.5 .85 1 .35]/Domain[0 1]/N 1>>
+endobj
+537 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.83 0 .1 0]/Domain[0 1]/N 1>>
+endobj
+1004 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.4 .3 .7 .25]/Domain[0 1]/N 1>>
+endobj
+389 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.4 .86 1 .3]/Domain[0 1]/N 1>>
+endobj
+538 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .05 .05]/Domain[0 1]/N 1>>
+endobj
+1005 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.25 0 1 .8]/Domain[0 1]/N 1>>
+endobj
+539 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 0 .22]/Domain[0 1]/N 1>>
+endobj
+1006 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .02 .15 0]/Domain[0 1]/N 1>>
+endobj
+1007 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .02 .15 .03]/Domain[0 1]/N 1>>
+endobj
+1008 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .04 .2 .06]/Domain[0 1]/N 1>>
+endobj
+1009 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .08 .35 .1]/Domain[0 1]/N 1>>
+endobj
+460 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.52 .06 0 .25]/Domain[0 1]/N 1>>
+endobj
+461 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.38 .04 0 .19]/Domain[0 1]/N 1>>
+endobj
+610 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 .8 .02]/Domain[0 1]/N 1>>
+endobj
+462 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.27 .03 0 .13]/Domain[0 1]/N 1>>
+endobj
+611 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .14 .31 0]/Domain[0 1]/N 1>>
+endobj
+463 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.15 0 0 .09]/Domain[0 1]/N 1>>
+endobj
+612 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .19 .41 0]/Domain[0 1]/N 1>>
+endobj
+40 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .16 .77 0]/Domain[0 1]/N 1>>
+endobj
+464 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.59 0 .53 .8]/Domain[0 1]/N 1>>
+endobj
+613 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .27 .55 0]/Domain[0 1]/N 1>>
+endobj
+41 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .3 1 0]/Domain[0 1]/N 1>>
+endobj
+465 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.78 0 .63 .67]/Domain[0 1]/N 1>>
+endobj
+614 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .36 .71 0]/Domain[0 1]/N 1>>
+endobj
+42 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .32 1 .09]/Domain[0 1]/N 1>>
+endobj
+466 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.75 0 .6 .55]/Domain[0 1]/N 1>>
+endobj
+615 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .45 .91 0]/Domain[0 1]/N 1>>
+endobj
+43 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .28 1 .3]/Domain[0 1]/N 1>>
+endobj
+467 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.42 0 .33 .27]/Domain[0 1]/N 1>>
+endobj
+616 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .53 1 .02]/Domain[0 1]/N 1>>
+endobj
+44 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .2 1 .56]/Domain[0 1]/N 1>>
+endobj
+468 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.3 0 .2 .15]/Domain[0 1]/N 1>>
+endobj
+617 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .56 1 .08]/Domain[0 1]/N 1>>
+endobj
+45 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .11 .45 0]/Domain[0 1]/N 1>>
+endobj
+469 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.19 0 .14 .09]/Domain[0 1]/N 1>>
+endobj
+618 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .1 .25 0]/Domain[0 1]/N 1>>
+endobj
+46 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .19 .6 0]/Domain[0 1]/N 1>>
+endobj
+619 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .15 .36 .01]/Domain[0 1]/N 1>>
+endobj
+47 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .27 .76 0]/Domain[0 1]/N 1>>
+endobj
+990 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.85 0 1 .55]/Domain[0 1]/N 1>>
+endobj
+48 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .35 .9 0]/Domain[0 1]/N 1>>
+endobj
+991 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .85 .5]/Domain[0 1]/N 1>>
+endobj
+49 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .42 1 .01]/Domain[0 1]/N 1>>
+endobj
+992 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.06 0 .1 0]/Domain[0 1]/N 1>>
+endobj
+993 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.2 0 .3 0]/Domain[0 1]/N 1>>
+endobj
+994 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.3 0 .45 0]/Domain[0 1]/N 1>>
+endobj
+390 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.3 .48 .57 0]/Domain[0 1]/N 1>>
+endobj
+995 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.43 0 .6 0]/Domain[0 1]/N 1>>
+endobj
+391 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.15 .29 .33 0]/Domain[0 1]/N 1>>
+endobj
+540 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .04 0 .3]/Domain[0 1]/N 1>>
+endobj
+996 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.6 0 .8 .07]/Domain[0 1]/N 1>>
+endobj
+392 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.09 .19 .23 0]/Domain[0 1]/N 1>>
+endobj
+541 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.16 .04 0 .02]/Domain[0 1]/N 1>>
+endobj
+997 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.45 0 .8 .35]/Domain[0 1]/N 1>>
+endobj
+393 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.05 .11 .15 0]/Domain[0 1]/N 1>>
+endobj
+542 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.25 .07 0 .04]/Domain[0 1]/N 1>>
+endobj
+998 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.32 0 1 .4]/Domain[0 1]/N 1>>
+endobj
+394 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .91 1 .6]/Domain[0 1]/N 1>>
+endobj
+543 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.42 .15 0 .06]/Domain[0 1]/N 1>>
+endobj
+999 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.12 0 .5 .07]/Domain[0 1]/N 1>>
+endobj
+1010 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .12 .35 .25]/Domain[0 1]/N 1>>
+endobj
+395 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .95 1 .29]/Domain[0 1]/N 1>>
+endobj
+544 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.55 .24 0 .09]/Domain[0 1]/N 1>>
+endobj
+1011 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .25 .45 .4]/Domain[0 1]/N 1>>
+endobj
+396 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .95 1 0]/Domain[0 1]/N 1>>
+endobj
+545 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.65 .3 0 .11]/Domain[0 1]/N 1>>
+endobj
+1012 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .3 .7 .55]/Domain[0 1]/N 1>>
+endobj
+397 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .47 .41 0]/Domain[0 1]/N 1>>
+endobj
+546 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .56 0 .23]/Domain[0 1]/N 1>>
+endobj
+1013 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .05 .15 0]/Domain[0 1]/N 1>>
+endobj
+398 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .35 .28 0]/Domain[0 1]/N 1>>
+endobj
+547 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .62 0 .52]/Domain[0 1]/N 1>>
+endobj
+1014 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .1 .3 0]/Domain[0 1]/N 1>>
+endobj
+399 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .26 .19 0]/Domain[0 1]/N 1>>
+endobj
+548 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.1 .04 0 .01]/Domain[0 1]/N 1>>
+endobj
+1015 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .15 .4 .04]/Domain[0 1]/N 1>>
+endobj
+549 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.24 .09 0 .02]/Domain[0 1]/N 1>>
+endobj
+1016 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .2 .5 .05]/Domain[0 1]/N 1>>
+endobj
+1017 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .3 .72 .11]/Domain[0 1]/N 1>>
+endobj
+1018 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .45 1 .25]/Domain[0 1]/N 1>>
+endobj
+1019 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .46 1 .33]/Domain[0 1]/N 1>>
+endobj
+470 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.14 0 .1 .06]/Domain[0 1]/N 1>>
+endobj
+471 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.8 0 .63 .75]/Domain[0 1]/N 1>>
+endobj
+620 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .24 .52 .03]/Domain[0 1]/N 1>>
+endobj
+472 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.85 0 .54 .52]/Domain[0 1]/N 1>>
+endobj
+621 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .36 .76 .09]/Domain[0 1]/N 1>>
+endobj
+473 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.85 0 .5 .31]/Domain[0 1]/N 1>>
+endobj
+622 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .43 .97 .17]/Domain[0 1]/N 1>>
+endobj
+50 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .37 1 .23]/Domain[0 1]/N 1>>
+endobj
+474 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.52 0 .32 .01]/Domain[0 1]/N 1>>
+endobj
+623 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .51 1 .36]/Domain[0 1]/N 1>>
+endobj
+51 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .27 1 .54]/Domain[0 1]/N 1>>
+endobj
+475 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.37 0 .2 0]/Domain[0 1]/N 1>>
+endobj
+624 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .53 1 .48]/Domain[0 1]/N 1>>
+endobj
+52 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .19 .51 0]/Domain[0 1]/N 1>>
+endobj
+476 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.23 0 .13 0]/Domain[0 1]/N 1>>
+endobj
+625 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .08 .23 .02]/Domain[0 1]/N 1>>
+endobj
+53 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .28 .76 0]/Domain[0 1]/N 1>>
+endobj
+477 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.14 0 .1 0]/Domain[0 1]/N 1>>
+endobj
+626 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .15 .34 .05]/Domain[0 1]/N 1>>
+endobj
+54 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .35 .85 0]/Domain[0 1]/N 1>>
+endobj
+478 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.82 0 .64 .7]/Domain[0 1]/N 1>>
+endobj
+627 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .21 .48 .1]/Domain[0 1]/N 1>>
+endobj
+55 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .48 1 0]/Domain[0 1]/N 1>>
+endobj
+479 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.88 0 .57 .36]/Domain[0 1]/N 1>>
+endobj
+628 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .31 .62 .18]/Domain[0 1]/N 1>>
+endobj
+56 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .47 1 .08]/Domain[0 1]/N 1>>
+endobj
+629 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .38 .78 .29]/Domain[0 1]/N 1>>
+endobj
+57 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .43 1 .33]/Domain[0 1]/N 1>>
+endobj
+58 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .28 1 .56]/Domain[0 1]/N 1>>
+endobj
+59 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .16 .37 0]/Domain[0 1]/N 1>>
+endobj
+550 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.38 .18 0 .06]/Domain[0 1]/N 1>>
+endobj
+551 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.5 .25 0 .1]/Domain[0 1]/N 1>>
+endobj
+700 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.46 .63 0 0]/Domain[0 1]/N 1>>
+endobj
+552 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .62 0 .2]/Domain[0 1]/N 1>>
+endobj
+701 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.59 .66 0 0]/Domain[0 1]/N 1>>
+endobj
+553 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .67 0 .38]/Domain[0 1]/N 1>>
+endobj
+702 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.6 .9 0 0]/Domain[0 1]/N 1>>
+endobj
+1020 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .18 .28 .03]/Domain[0 1]/N 1>>
+endobj
+554 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .68 0 .52]/Domain[0 1]/N 1>>
+endobj
+703 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.61 .89 0 0]/Domain[0 1]/N 1>>
+endobj
+1021 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .24 .38 .05]/Domain[0 1]/N 1>>
+endobj
+555 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.14 .03 0 0]/Domain[0 1]/N 1>>
+endobj
+704 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.85 1 0 0]/Domain[0 1]/N 1>>
+endobj
+1022 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .35 .5 .12]/Domain[0 1]/N 1>>
+endobj
+100 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .37 .1 0]/Domain[0 1]/N 1>>
+endobj
+556 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.24 .07 0 0]/Domain[0 1]/N 1>>
+endobj
+705 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.63 1 0 .03]/Domain[0 1]/N 1>>
+endobj
+1023 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .52 1 .35]/Domain[0 1]/N 1>>
+endobj
+101 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .55 .22 0]/Domain[0 1]/N 1>>
+endobj
+557 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.3 .15 0 0]/Domain[0 1]/N 1>>
+endobj
+706 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.69 1 0 .02]/Domain[0 1]/N 1>>
+endobj
+1024 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .6 1 .44]/Domain[0 1]/N 1>>
+endobj
+102 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .76 .38 0]/Domain[0 1]/N 1>>
+endobj
+558 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.55 .3 0 0]/Domain[0 1]/N 1>>
+endobj
+707 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.81 1 0 .07]/Domain[0 1]/N 1>>
+endobj
+1025 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .4 .55 .6]/Domain[0 1]/N 1>>
+endobj
+103 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 .68 0]/Domain[0 1]/N 1>>
+endobj
+559 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.9 .57 0 0]/Domain[0 1]/N 1>>
+endobj
+708 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.64 1 0 .14]/Domain[0 1]/N 1>>
+endobj
+1026 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.5 .6 1 .48]/Domain[0 1]/N 1>>
+endobj
+104 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 .66 .13]/Domain[0 1]/N 1>>
+endobj
+709 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.63 1 0 .15]/Domain[0 1]/N 1>>
+endobj
+1027 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .16 .19 0]/Domain[0 1]/N 1>>
+endobj
+105 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 .64 .33]/Domain[0 1]/N 1>>
+endobj
+1028 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .25 .2 .1]/Domain[0 1]/N 1>>
+endobj
+106 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 .6 .55]/Domain[0 1]/N 1>>
+endobj
+1029 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .4 .3 .16]/Domain[0 1]/N 1>>
+endobj
+107 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .25 .04 0]/Domain[0 1]/N 1>>
+endobj
+108 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .45 .1 0]/Domain[0 1]/N 1>>
+endobj
+109 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .78 .33 0]/Domain[0 1]/N 1>>
+endobj
+480 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.98 0 .57 .17]/Domain[0 1]/N 1>>
+endobj
+481 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.48 0 .29 0]/Domain[0 1]/N 1>>
+endobj
+630 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .52 1 .54]/Domain[0 1]/N 1>>
+endobj
+482 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.32 0 .19 0]/Domain[0 1]/N 1>>
+endobj
+631 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .55 1 .64]/Domain[0 1]/N 1>>
+endobj
+483 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.23 0 .14 0]/Domain[0 1]/N 1>>
+endobj
+632 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .05 .31 0]/Domain[0 1]/N 1>>
+endobj
+60 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .23 .47 0]/Domain[0 1]/N 1>>
+endobj
+484 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.14 0 .09 0]/Domain[0 1]/N 1>>
+endobj
+633 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .09 .45 0]/Domain[0 1]/N 1>>
+endobj
+1116 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.5 1 .51 0]/Domain[0 1]/N 1>>
+endobj
+61 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .35 .7 0]/Domain[0 1]/N 1>>
+endobj
+485 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.34 0 .81 .71]/Domain[0 1]/N 1>>
+endobj
+634 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .17 .62 0]/Domain[0 1]/N 1>>
+endobj
+62 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .48 .95 0]/Domain[0 1]/N 1>>
+endobj
+486 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.48 0 1 .53]/Domain[0 1]/N 1>>
+endobj
+635 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .29 .91 0]/Domain[0 1]/N 1>>
+endobj
+63 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .51 1 .01]/Domain[0 1]/N 1>>
+endobj
+487 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.49 0 1 .39]/Domain[0 1]/N 1>>
+endobj
+636 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .28 1 .18]/Domain[0 1]/N 1>>
+endobj
+64 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .46 1 .18]/Domain[0 1]/N 1>>
+endobj
+488 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.24 0 .46 .1]/Domain[0 1]/N 1>>
+endobj
+637 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .27 1 .34]/Domain[0 1]/N 1>>
+endobj
+65 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .46 1 .34]/Domain[0 1]/N 1>>
+endobj
+489 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.2 0 .4 .06]/Domain[0 1]/N 1>>
+endobj
+638 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .27 1 .51]/Domain[0 1]/N 1>>
+endobj
+66 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .12 .28 0]/Domain[0 1]/N 1>>
+endobj
+639 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .14 .47 0]/Domain[0 1]/N 1>>
+endobj
+67 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .22 .42 0]/Domain[0 1]/N 1>>
+endobj
+68 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .43 .7 0]/Domain[0 1]/N 1>>
+endobj
+69 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .61 .97 0]/Domain[0 1]/N 1>>
+endobj
+560 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .69 0 .09]/Domain[0 1]/N 1>>
+endobj
+561 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .71 0 .18]/Domain[0 1]/N 1>>
+endobj
+710 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.79 1 0 .15]/Domain[0 1]/N 1>>
+endobj
+562 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.07 .06 0 0]/Domain[0 1]/N 1>>
+endobj
+711 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.57 .98 0 .46]/Domain[0 1]/N 1>>
+endobj
+563 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.11 .09 0 0]/Domain[0 1]/N 1>>
+endobj
+712 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.59 1 0 .32]/Domain[0 1]/N 1>>
+endobj
+1030 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .4 .35 .2]/Domain[0 1]/N 1>>
+endobj
+564 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.2 .17 0 .02]/Domain[0 1]/N 1>>
+endobj
+713 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.77 1 0 .31]/Domain[0 1]/N 1>>
+endobj
+1031 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .55 .6 .27]/Domain[0 1]/N 1>>
+endobj
+565 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.31 .3 0 .07]/Domain[0 1]/N 1>>
+endobj
+714 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.28 .27 0 0]/Domain[0 1]/N 1>>
+endobj
+1032 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .45 .5 .3]/Domain[0 1]/N 1>>
+endobj
+110 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 .62 0]/Domain[0 1]/N 1>>
+endobj
+566 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.52 .49 0 .14]/Domain[0 1]/N 1>>
+endobj
+715 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.4 .36 0 0]/Domain[0 1]/N 1>>
+endobj
+1033 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .65 1 .35]/Domain[0 1]/N 1>>
+endobj
+111 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 .63 .12]/Domain[0 1]/N 1>>
+endobj
+567 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.65 .64 0 .3]/Domain[0 1]/N 1>>
+endobj
+716 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.54 .49 0 0]/Domain[0 1]/N 1>>
+endobj
+1034 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .02 .06 .07]/Domain[0 1]/N 1>>
+endobj
+112 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 .63 .29]/Domain[0 1]/N 1>>
+endobj
+568 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.76 .78 0 .47]/Domain[0 1]/N 1>>
+endobj
+717 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.62 .6 0 0]/Domain[0 1]/N 1>>
+endobj
+1035 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .03 .1 .1]/Domain[0 1]/N 1>>
+endobj
+113 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 .61 .43]/Domain[0 1]/N 1>>
+endobj
+569 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .13 0 0]/Domain[0 1]/N 1>>
+endobj
+718 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.96 1 0 .1]/Domain[0 1]/N 1>>
+endobj
+1036 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .04 .12 .17]/Domain[0 1]/N 1>>
+endobj
+114 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .34 .03 0]/Domain[0 1]/N 1>>
+endobj
+719 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.91 1 0 .49]/Domain[0 1]/N 1>>
+endobj
+1037 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .08 .21 .32]/Domain[0 1]/N 1>>
+endobj
+115 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .58 .03 0]/Domain[0 1]/N 1>>
+endobj
+1038 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .1 .27 .5]/Domain[0 1]/N 1>>
+endobj
+116 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .84 .09 0]/Domain[0 1]/N 1>>
+endobj
+1039 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .17 .5 .65]/Domain[0 1]/N 1>>
+endobj
+117 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 .38 .03]/Domain[0 1]/N 1>>
+endobj
+118 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 .43 .19]/Domain[0 1]/N 1>>
+endobj
+119 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 .36 .37]/Domain[0 1]/N 1>>
+endobj
+490 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.17 0 .34 .03]/Domain[0 1]/N 1>>
+endobj
+491 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.12 0 .26 .02]/Domain[0 1]/N 1>>
+endobj
+640 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .2 .56 0]/Domain[0 1]/N 1>>
+endobj
+492 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.02 0 1 .72]/Domain[0 1]/N 1>>
+endobj
+641 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .29 .72 0]/Domain[0 1]/N 1>>
+endobj
+493 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.13 0 1 .46]/Domain[0 1]/N 1>>
+endobj
+642 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .4 .9 0]/Domain[0 1]/N 1>>
+endobj
+70 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .66 1 .07]/Domain[0 1]/N 1>>
+endobj
+494 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.23 0 1 .17]/Domain[0 1]/N 1>>
+endobj
+643 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .44 1 .07]/Domain[0 1]/N 1>>
+endobj
+71 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .62 1 .32]/Domain[0 1]/N 1>>
+endobj
+495 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.12 0 .79 .06]/Domain[0 1]/N 1>>
+endobj
+644 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .41 1 .37]/Domain[0 1]/N 1>>
+endobj
+72 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .52 1 .64]/Domain[0 1]/N 1>>
+endobj
+496 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.11 0 .66 .02]/Domain[0 1]/N 1>>
+endobj
+645 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .36 1 .63]/Domain[0 1]/N 1>>
+endobj
+73 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .15 .22 0]/Domain[0 1]/N 1>>
+endobj
+497 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.09 0 .53 0]/Domain[0 1]/N 1>>
+endobj
+646 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .27 .54 0]/Domain[0 1]/N 1>>
+endobj
+74 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .31 .44 0]/Domain[0 1]/N 1>>
+endobj
+498 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.05 0 .4 0]/Domain[0 1]/N 1>>
+endobj
+647 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .33 .67 0]/Domain[0 1]/N 1>>
+endobj
+75 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .46 .73 0]/Domain[0 1]/N 1>>
+endobj
+499 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 .29 0]/Domain[0 1]/N 1>>
+endobj
+648 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .42 .77 0]/Domain[0 1]/N 1>>
+endobj
+76 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .59 .96 0]/Domain[0 1]/N 1>>
+endobj
+649 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .58 1 .1]/Domain[0 1]/N 1>>
+endobj
+77 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .64 1 0]/Domain[0 1]/N 1>>
+endobj
+78 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .6 1 .17]/Domain[0 1]/N 1>>
+endobj
+79 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .57 1 .59]/Domain[0 1]/N 1>>
+endobj
+570 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.01 .2 0 0]/Domain[0 1]/N 1>>
+endobj
+571 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.03 .34 0 0]/Domain[0 1]/N 1>>
+endobj
+720 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.4 .3 0 0]/Domain[0 1]/N 1>>
+endobj
+572 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.06 .49 0 0]/Domain[0 1]/N 1>>
+endobj
+721 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.19 .09 0 0]/Domain[0 1]/N 1>>
+endobj
+573 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.09 .67 0 0]/Domain[0 1]/N 1>>
+endobj
+722 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.17 .06 0 0]/Domain[0 1]/N 1>>
+endobj
+1040 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .22 .85 .85]/Domain[0 1]/N 1>>
+endobj
+574 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.17 1 0 .03]/Domain[0 1]/N 1>>
+endobj
+723 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.26 .1 0 0]/Domain[0 1]/N 1>>
+endobj
+1041 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .02 .08 .1]/Domain[0 1]/N 1>>
+endobj
+575 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.06 1 0 .22]/Domain[0 1]/N 1>>
+endobj
+724 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.57 .45 0 0]/Domain[0 1]/N 1>>
+endobj
+1042 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .03 .15 .2]/Domain[0 1]/N 1>>
+endobj
+120 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 .34 .53]/Domain[0 1]/N 1>>
+endobj
+576 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.02 .13 0 0]/Domain[0 1]/N 1>>
+endobj
+725 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.45 .29 0 0]/Domain[0 1]/N 1>>
+endobj
+1043 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .04 .22 .32]/Domain[0 1]/N 1>>
+endobj
+121 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .39 .06 0]/Domain[0 1]/N 1>>
+endobj
+577 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.03 .21 0 0]/Domain[0 1]/N 1>>
+endobj
+726 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.29 .12 0 0]/Domain[0 1]/N 1>>
+endobj
+1044 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.03 0 .1 .2]/Domain[0 1]/N 1>>
+endobj
+122 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .55 .08 0]/Domain[0 1]/N 1>>
+endobj
+578 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.05 .27 0 0]/Domain[0 1]/N 1>>
+endobj
+727 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.67 .41 0 0]/Domain[0 1]/N 1>>
+endobj
+1045 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.09 0 .13 .3]/Domain[0 1]/N 1>>
+endobj
+123 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .72 .11 0]/Domain[0 1]/N 1>>
+endobj
+579 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.1 .43 0 .02]/Domain[0 1]/N 1>>
+endobj
+728 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.77 .68 0 0]/Domain[0 1]/N 1>>
+endobj
+1046 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.02 0 .09 .36]/Domain[0 1]/N 1>>
+endobj
+124 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .95 .27 0]/Domain[0 1]/N 1>>
+endobj
+729 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.79 .66 0 0]/Domain[0 1]/N 1>>
+endobj
+1047 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 0 .72]/Domain[0 1]/N 1>>
+endobj
+125 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 .34 .08]/Domain[0 1]/N 1>>
+endobj
+1048 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.02 0 0 .05]/Domain[0 1]/N 1>>
+endobj
+126 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 .35 .27]/Domain[0 1]/N 1>>
+endobj
+1049 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.1 0 .03 .16]/Domain[0 1]/N 1>>
+endobj
+127 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .95 .4 .49]/Domain[0 1]/N 1>>
+endobj
+128 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .28 0 0]/Domain[0 1]/N 1>>
+endobj
+129 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.02 .61 0 0]/Domain[0 1]/N 1>>
+endobj
+650 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .53 1 .38]/Domain[0 1]/N 1>>
+endobj
+651 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .53 1 .72]/Domain[0 1]/N 1>>
+endobj
+800 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 1 .29]/Domain[0 1]/N 1>>
+endobj
+652 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .22 .34 0]/Domain[0 1]/N 1>>
+endobj
+801 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .03 1 .41]/Domain[0 1]/N 1>>
+endobj
+80 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .2 .2 0]/Domain[0 1]/N 1>>
+endobj
+653 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .34 .49 0]/Domain[0 1]/N 1>>
+endobj
+802 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .03 1 .64]/Domain[0 1]/N 1>>
+endobj
+81 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .4 .44 0]/Domain[0 1]/N 1>>
+endobj
+654 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .45 .72 0]/Domain[0 1]/N 1>>
+endobj
+803 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .26 1 .69]/Domain[0 1]/N 1>>
+endobj
+82 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .53 .68 0]/Domain[0 1]/N 1>>
+endobj
+655 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .56 .9 0]/Domain[0 1]/N 1>>
+endobj
+804 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .2 .95 .46]/Domain[0 1]/N 1>>
+endobj
+83 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .66 .88 0]/Domain[0 1]/N 1>>
+endobj
+200 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .64 0 .6]/Domain[0 1]/N 1>>
+endobj
+656 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .59 1 .05]/Domain[0 1]/N 1>>
+endobj
+805 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .15 .78 .36]/Domain[0 1]/N 1>>
+endobj
+84 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .69 1 .04]/Domain[0 1]/N 1>>
+endobj
+201 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.25 .02 0 0]/Domain[0 1]/N 1>>
+endobj
+657 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .56 1 .3]/Domain[0 1]/N 1>>
+endobj
+806 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .09 .5 .24]/Domain[0 1]/N 1>>
+endobj
+85 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .7 1 .36]/Domain[0 1]/N 1>>
+endobj
+202 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.33 .03 0 0]/Domain[0 1]/N 1>>
+endobj
+658 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .56 1 .43]/Domain[0 1]/N 1>>
+endobj
+807 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .07 .39 .17]/Domain[0 1]/N 1>>
+endobj
+86 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .65 1 .6]/Domain[0 1]/N 1>>
+endobj
+203 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.49 .11 0 0]/Domain[0 1]/N 1>>
+endobj
+659 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .31 .37 0]/Domain[0 1]/N 1>>
+endobj
+808 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .04 .3 .11]/Domain[0 1]/N 1>>
+endobj
+87 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .25 .18 0]/Domain[0 1]/N 1>>
+endobj
+204 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .57 0 .02]/Domain[0 1]/N 1>>
+endobj
+809 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .03 .19 .06]/Domain[0 1]/N 1>>
+endobj
+88 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .45 .4 0]/Domain[0 1]/N 1>>
+endobj
+205 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .58 0 .21]/Domain[0 1]/N 1>>
+endobj
+89 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .59 .56 0]/Domain[0 1]/N 1>>
+endobj
+206 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .57 0 .4]/Domain[0 1]/N 1>>
+endobj
+207 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .46 0 .7]/Domain[0 1]/N 1>>
+endobj
+208 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.49 .01 0 0]/Domain[0 1]/N 1>>
+endobj
+209 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.69 .07 0 0]/Domain[0 1]/N 1>>
+endobj
+580 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.21 .61 0 .04]/Domain[0 1]/N 1>>
+endobj
+581 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.25 .79 0 .12]/Domain[0 1]/N 1>>
+endobj
+730 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.71 .42 0 0]/Domain[0 1]/N 1>>
+endobj
+582 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.11 1 0 .43]/Domain[0 1]/N 1>>
+endobj
+731 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.96 .69 0 0]/Domain[0 1]/N 1>>
+endobj
+583 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .17 0 .02]/Domain[0 1]/N 1>>
+endobj
+732 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .95 0 .03]/Domain[0 1]/N 1>>
+endobj
+1050 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.07 0 0 .3]/Domain[0 1]/N 1>>
+endobj
+584 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .25 0 .03]/Domain[0 1]/N 1>>
+endobj
+733 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .91 0 0]/Domain[0 1]/N 1>>
+endobj
+1051 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.1 .01 0 .4]/Domain[0 1]/N 1>>
+endobj
+585 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .3 0 .05]/Domain[0 1]/N 1>>
+endobj
+734 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .87 0 .02]/Domain[0 1]/N 1>>
+endobj
+1052 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.23 .02 0 .63]/Domain[0 1]/N 1>>
+endobj
+130 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.01 .88 0 0]/Domain[0 1]/N 1>>
+endobj
+586 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.02 .44 0 .12]/Domain[0 1]/N 1>>
+endobj
+735 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .95 0 .15]/Domain[0 1]/N 1>>
+endobj
+1053 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.33 .04 0 .72]/Domain[0 1]/N 1>>
+endobj
+131 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 .13 .17]/Domain[0 1]/N 1>>
+endobj
+587 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.05 .57 0 .19]/Domain[0 1]/N 1>>
+endobj
+736 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .92 0 .1]/Domain[0 1]/N 1>>
+endobj
+1054 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.35 .04 0 .94]/Domain[0 1]/N 1>>
+endobj
+132 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 .15 .3]/Domain[0 1]/N 1>>
+endobj
+588 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.07 .77 0 .34]/Domain[0 1]/N 1>>
+endobj
+737 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .85 0 .13]/Domain[0 1]/N 1>>
+endobj
+1055 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .03 .55 .87]/Domain[0 1]/N 1>>
+endobj
+133 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 .1 .59]/Domain[0 1]/N 1>>
+endobj
+589 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .97 0 .59]/Domain[0 1]/N 1>>
+endobj
+738 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .88 0 .14]/Domain[0 1]/N 1>>
+endobj
+1056 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.6 0 .6 .91]/Domain[0 1]/N 1>>
+endobj
+134 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .46 0 0]/Domain[0 1]/N 1>>
+endobj
+739 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .97 0 .3]/Domain[0 1]/N 1>>
+endobj
+1057 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .22 1 .89]/Domain[0 1]/N 1>>
+endobj
+135 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.01 .63 0 0]/Domain[0 1]/N 1>>
+endobj
+1058 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .4 .22 .87]/Domain[0 1]/N 1>>
+endobj
+136 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.01 .83 0 0]/Domain[0 1]/N 1>>
+endobj
+1059 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .35 0 1]/Domain[0 1]/N 1>>
+endobj
+137 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .99 0 0]/Domain[0 1]/N 1>>
+endobj
+138 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 .07 .19]/Domain[0 1]/N 1>>
+endobj
+139 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 .04 .41]/Domain[0 1]/N 1>>
+endobj
+660 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .39 .48 0]/Domain[0 1]/N 1>>
+endobj
+661 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .49 .66 0]/Domain[0 1]/N 1>>
+endobj
+810 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .6 1 .79]/Domain[0 1]/N 1>>
+endobj
+662 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .63 .91 0]/Domain[0 1]/N 1>>
+endobj
+811 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .48 .96 .44]/Domain[0 1]/N 1>>
+endobj
+90 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .79 1 0]/Domain[0 1]/N 1>>
+endobj
+663 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .68 1 0]/Domain[0 1]/N 1>>
+endobj
+812 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .37 .68 .28]/Domain[0 1]/N 1>>
+endobj
+91 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .79 1 .11]/Domain[0 1]/N 1>>
+endobj
+664 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .67 1 .28]/Domain[0 1]/N 1>>
+endobj
+813 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .26 .45 .18]/Domain[0 1]/N 1>>
+endobj
+92 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .74 1 .47]/Domain[0 1]/N 1>>
+endobj
+665 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .68 1 .44]/Domain[0 1]/N 1>>
+endobj
+814 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .18 .32 .1]/Domain[0 1]/N 1>>
+endobj
+93 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .26 .1 0]/Domain[0 1]/N 1>>
+endobj
+210 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.85 .19 0 0]/Domain[0 1]/N 1>>
+endobj
+666 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .38 .21 0]/Domain[0 1]/N 1>>
+endobj
+815 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .11 .21 .06]/Domain[0 1]/N 1>>
+endobj
+94 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .46 .21 0]/Domain[0 1]/N 1>>
+endobj
+211 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .44 0 0]/Domain[0 1]/N 1>>
+endobj
+667 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .27 .12 0]/Domain[0 1]/N 1>>
+endobj
+816 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .07 .14 .04]/Domain[0 1]/N 1>>
+endobj
+95 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .68 .41 0]/Domain[0 1]/N 1>>
+endobj
+212 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .45 0 .18]/Domain[0 1]/N 1>>
+endobj
+668 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .47 .29 0]/Domain[0 1]/N 1>>
+endobj
+817 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .81 1 .77]/Domain[0 1]/N 1>>
+endobj
+96 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .91 .76 0]/Domain[0 1]/N 1>>
+endobj
+213 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .25 0 .5]/Domain[0 1]/N 1>>
+endobj
+669 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .58 .36 0]/Domain[0 1]/N 1>>
+endobj
+818 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .62 .71 .49]/Domain[0 1]/N 1>>
+endobj
+97 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 .81 .04]/Domain[0 1]/N 1>>
+endobj
+214 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .11 0 .74]/Domain[0 1]/N 1>>
+endobj
+819 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .42 .45 .34]/Domain[0 1]/N 1>>
+endobj
+98 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 .79 .2]/Domain[0 1]/N 1>>
+endobj
+215 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.3 0 .08 0]/Domain[0 1]/N 1>>
+endobj
+99 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .97 1 .5]/Domain[0 1]/N 1>>
+endobj
+216 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.51 0 .09 0]/Domain[0 1]/N 1>>
+endobj
+217 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.75 0 .07 0]/Domain[0 1]/N 1>>
+endobj
+218 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .16 0 .27]/Domain[0 1]/N 1>>
+endobj
+219 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .05 0 .47]/Domain[0 1]/N 1>>
+endobj
+590 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .15 .08 .01]/Domain[0 1]/N 1>>
+endobj
+591 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .23 .1 .02]/Domain[0 1]/N 1>>
+endobj
+740 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .94 0 .29]/Domain[0 1]/N 1>>
+endobj
+592 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .3 .12 .06]/Domain[0 1]/N 1>>
+endobj
+741 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .82 0 .3]/Domain[0 1]/N 1>>
+endobj
+593 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .36 .21 .1]/Domain[0 1]/N 1>>
+endobj
+742 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .8 0 .26]/Domain[0 1]/N 1>>
+endobj
+1060 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 .15 .82]/Domain[0 1]/N 1>>
+endobj
+594 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .5 .28 .2]/Domain[0 1]/N 1>>
+endobj
+743 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .97 0 .45]/Domain[0 1]/N 1>>
+endobj
+1061 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .13 .49 .98]/Domain[0 1]/N 1>>
+endobj
+595 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .6 .36 .32]/Domain[0 1]/N 1>>
+endobj
+744 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .94 0 .47]/Domain[0 1]/N 1>>
+endobj
+1062 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .88 0 .05]/Domain[0 1]/N 1>>
+endobj
+140 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 .15 .6]/Domain[0 1]/N 1>>
+endobj
+596 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .68 .47 .42]/Domain[0 1]/N 1>>
+endobj
+745 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .78 0 .54]/Domain[0 1]/N 1>>
+endobj
+1063 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 0 .06]/Domain[0 1]/N 1>>
+endobj
+141 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .34 0 0]/Domain[0 1]/N 1>>
+endobj
+597 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .16 .08 0]/Domain[0 1]/N 1>>
+endobj
+746 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .78 0 .44]/Domain[0 1]/N 1>>
+endobj
+1064 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 0 .1]/Domain[0 1]/N 1>>
+endobj
+142 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.01 .52 0 0]/Domain[0 1]/N 1>>
+endobj
+598 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .24 .1 0]/Domain[0 1]/N 1>>
+endobj
+747 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.41 .02 0 0]/Domain[0 1]/N 1>>
+endobj
+1065 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 0 .17]/Domain[0 1]/N 1>>
+endobj
+143 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.03 .67 0 0]/Domain[0 1]/N 1>>
+endobj
+599 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .36 .14 0]/Domain[0 1]/N 1>>
+endobj
+748 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.59 .07 0 0]/Domain[0 1]/N 1>>
+endobj
+1066 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 0 .24]/Domain[0 1]/N 1>>
+endobj
+144 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.11 1 0 0]/Domain[0 1]/N 1>>
+endobj
+749 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.85 .24 0 0]/Domain[0 1]/N 1>>
+endobj
+1067 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 0 .29]/Domain[0 1]/N 1>>
+endobj
+145 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.06 1 0 .26]/Domain[0 1]/N 1>>
+endobj
+1068 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 0 .31]/Domain[0 1]/N 1>>
+endobj
+146 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.05 1 0 .4]/Domain[0 1]/N 1>>
+endobj
+1069 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 0 .37]/Domain[0 1]/N 1>>
+endobj
+147 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.01 .3 0 0]/Domain[0 1]/N 1>>
+endobj
+148 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.03 .49 0 0]/Domain[0 1]/N 1>>
+endobj
+149 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.06 .63 0 0]/Domain[0 1]/N 1>>
+endobj
+670 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .67 .5 0]/Domain[0 1]/N 1>>
+endobj
+671 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .76 .6 0]/Domain[0 1]/N 1>>
+endobj
+820 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .32 .35 .25]/Domain[0 1]/N 1>>
+endobj
+672 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .84 .88 0]/Domain[0 1]/N 1>>
+endobj
+821 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .22 .23 .15]/Domain[0 1]/N 1>>
+endobj
+673 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .94 1 0]/Domain[0 1]/N 1>>
+endobj
+822 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .17 .18 .1]/Domain[0 1]/N 1>>
+endobj
+674 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 .99 .04]/Domain[0 1]/N 1>>
+endobj
+823 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .1 .12 .06]/Domain[0 1]/N 1>>
+endobj
+675 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .91 1 .23]/Domain[0 1]/N 1>>
+endobj
+824 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .73 1 .8]/Domain[0 1]/N 1>>
+endobj
+220 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .09 .72]/Domain[0 1]/N 1>>
+endobj
+676 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 .96 .28]/Domain[0 1]/N 1>>
+endobj
+825 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .59 .48 .48]/Domain[0 1]/N 1>>
+endobj
+221 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.43 0 .1 0]/Domain[0 1]/N 1>>
+endobj
+677 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .9 1 .51]/Domain[0 1]/N 1>>
+endobj
+826 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .48 .38 .34]/Domain[0 1]/N 1>>
+endobj
+222 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.63 0 .12 0]/Domain[0 1]/N 1>>
+endobj
+678 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .9 1 .66]/Domain[0 1]/N 1>>
+endobj
+827 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .38 .27 .23]/Domain[0 1]/N 1>>
+endobj
+223 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.96 0 .11 0]/Domain[0 1]/N 1>>
+endobj
+679 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .28 .07 0]/Domain[0 1]/N 1>>
+endobj
+828 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .25 .15 .11]/Domain[0 1]/N 1>>
+endobj
+224 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .08 .13]/Domain[0 1]/N 1>>
+endobj
+829 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .18 .12 .07]/Domain[0 1]/N 1>>
+endobj
+225 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .09 .3]/Domain[0 1]/N 1>>
+endobj
+226 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .12 .43]/Domain[0 1]/N 1>>
+endobj
+227 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .27 .68]/Domain[0 1]/N 1>>
+endobj
+228 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.18 0 .08 0]/Domain[0 1]/N 1>>
+endobj
+229 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.38 0 .15 0]/Domain[0 1]/N 1>>
+endobj
+750 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .46 0 0]/Domain[0 1]/N 1>>
+endobj
+751 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .45 0 .14]/Domain[0 1]/N 1>>
+endobj
+900 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.02 0 .14 .03]/Domain[0 1]/N 1>>
+endobj
+752 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .45 0 .37]/Domain[0 1]/N 1>>
+endobj
+901 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 .91 .79]/Domain[0 1]/N 1>>
+endobj
+1070 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .01 0 .43]/Domain[0 1]/N 1>>
+endobj
+753 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .38 0 .64]/Domain[0 1]/N 1>>
+endobj
+902 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .02 .87 .59]/Domain[0 1]/N 1>>
+endobj
+1071 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .01 0 .51]/Domain[0 1]/N 1>>
+endobj
+754 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.3 0 .05 0]/Domain[0 1]/N 1>>
+endobj
+903 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .02 .67 .4]/Domain[0 1]/N 1>>
+endobj
+1072 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .02 0 .6]/Domain[0 1]/N 1>>
+endobj
+150 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.11 .79 0 0]/Domain[0 1]/N 1>>
+endobj
+755 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.59 0 .06 0]/Domain[0 1]/N 1>>
+endobj
+904 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .01 .47 .3]/Domain[0 1]/N 1>>
+endobj
+1073 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .02 0 .68]/Domain[0 1]/N 1>>
+endobj
+151 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.18 .94 0 0]/Domain[0 1]/N 1>>
+endobj
+300 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.2 0 .85 0]/Domain[0 1]/N 1>>
+endobj
+756 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.9 .11 0 0]/Domain[0 1]/N 1>>
+endobj
+905 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 .31 .18]/Domain[0 1]/N 1>>
+endobj
+1074 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .59 0]/Domain[0 1]/N 1>>
+endobj
+152 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.27 1 0 .02]/Domain[0 1]/N 1>>
+endobj
+301 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.22 0 1 .08]/Domain[0 1]/N 1>>
+endobj
+757 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .34 0 .02]/Domain[0 1]/N 1>>
+endobj
+906 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 .25 .13]/Domain[0 1]/N 1>>
+endobj
+1075 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .53 1 0]/Domain[0 1]/N 1>>
+endobj
+153 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.1 1 0 .49]/Domain[0 1]/N 1>>
+endobj
+302 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.13 0 1 .33]/Domain[0 1]/N 1>>
+endobj
+758 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .3 0 .2]/Domain[0 1]/N 1>>
+endobj
+907 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 .26 .11]/Domain[0 1]/N 1>>
+endobj
+1076 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 0 1]/Domain[0 1]/N 1>>
+endobj
+154 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.05 .29 0 0]/Domain[0 1]/N 1>>
+endobj
+303 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.07 0 1 .49]/Domain[0 1]/N 1>>
+endobj
+759 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .17 0 .51]/Domain[0 1]/N 1>>
+endobj
+908 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .04 .18 0]/Domain[0 1]/N 1>>
+endobj
+1077 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .1 0 .1]/Domain[0 1]/N 1>>
+endobj
+155 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.09 .38 0 0]/Domain[0 1]/N 1>>
+endobj
+304 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.03 0 .55 0]/Domain[0 1]/N 1>>
+endobj
+909 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .06 .3 0]/Domain[0 1]/N 1>>
+endobj
+1078 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 0 0]/Domain[0 1]/N 1>>
+endobj
+156 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.14 .53 0 0]/Domain[0 1]/N 1>>
+endobj
+305 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.06 0 .76 0]/Domain[0 1]/N 1>>
+endobj
+1079 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 0 0]/Domain[0 1]/N 1>>
+endobj
+157 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.29 .9 0 0]/Domain[0 1]/N 1>>
+endobj
+306 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.08 0 .85 0]/Domain[0 1]/N 1>>
+endobj
+158 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.36 1 0 0]/Domain[0 1]/N 1>>
+endobj
+307 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.11 0 .94 0]/Domain[0 1]/N 1>>
+endobj
+159 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.4 1 0 .02]/Domain[0 1]/N 1>>
+endobj
+308 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.1 0 1 .11]/Domain[0 1]/N 1>>
+endobj
+309 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.07 0 1 .28]/Domain[0 1]/N 1>>
+endobj
+680 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .41 .09 0]/Domain[0 1]/N 1>>
+endobj
+681 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .71 .2 0]/Domain[0 1]/N 1>>
+endobj
+830 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .1 .09 .03]/Domain[0 1]/N 1>>
+endobj
+682 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 .55 0]/Domain[0 1]/N 1>>
+endobj
+831 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.75 1 .7 .15]/Domain[0 1]/N 1>>
+endobj
+683 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 .57 .05]/Domain[0 1]/N 1>>
+endobj
+832 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.65 .86 .49 0]/Domain[0 1]/N 1>>
+endobj
+684 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 .56 .19]/Domain[0 1]/N 1>>
+endobj
+833 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.47 .64 .28 0]/Domain[0 1]/N 1>>
+endobj
+685 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 .6 .37]/Domain[0 1]/N 1>>
+endobj
+834 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.3 .44 .13 0]/Domain[0 1]/N 1>>
+endobj
+230 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.52 0 .19 0]/Domain[0 1]/N 1>>
+endobj
+686 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.02 .27 0 0]/Domain[0 1]/N 1>>
+endobj
+835 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.17 .29 .08 0]/Domain[0 1]/N 1>>
+endobj
+231 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .31 .07]/Domain[0 1]/N 1>>
+endobj
+687 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.1 .57 0 0]/Domain[0 1]/N 1>>
+endobj
+836 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.08 .17 .05 0]/Domain[0 1]/N 1>>
+endobj
+232 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .31 .23]/Domain[0 1]/N 1>>
+endobj
+688 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.19 .79 0 0]/Domain[0 1]/N 1>>
+endobj
+837 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.05 .1 .03 0]/Domain[0 1]/N 1>>
+endobj
+233 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .33 .35]/Domain[0 1]/N 1>>
+endobj
+689 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.27 .95 0 0]/Domain[0 1]/N 1>>
+endobj
+838 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.8 1 .85 .25]/Domain[0 1]/N 1>>
+endobj
+234 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .38 .47]/Domain[0 1]/N 1>>
+endobj
+839 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.72 .9 .75 .15]/Domain[0 1]/N 1>>
+endobj
+235 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.28 0 .12 0]/Domain[0 1]/N 1>>
+endobj
+236 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.56 0 .26 0]/Domain[0 1]/N 1>>
+endobj
+237 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.87 0 .38 0]/Domain[0 1]/N 1>>
+endobj
+238 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .44 .17]/Domain[0 1]/N 1>>
+endobj
+239 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .45 .32]/Domain[0 1]/N 1>>
+endobj
+760 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .05 .72]/Domain[0 1]/N 1>>
+endobj
+761 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.43 0 .12 0]/Domain[0 1]/N 1>>
+endobj
+910 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .1 .5 0]/Domain[0 1]/N 1>>
+endobj
+762 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.63 0 .18 0]/Domain[0 1]/N 1>>
+endobj
+911 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .09 .79 0]/Domain[0 1]/N 1>>
+endobj
+1080 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 1 0]/Domain[0 1]/N 1>>
+endobj
+763 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.83 0 .21 0]/Domain[0 1]/N 1>>
+endobj
+912 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .1 .99 0]/Domain[0 1]/N 1>>
+endobj
+1081 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.38 .88 0 0]/Domain[0 1]/N 1>>
+endobj
+764 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .16 .09]/Domain[0 1]/N 1>>
+endobj
+913 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .18 1 0]/Domain[0 1]/N 1>>
+endobj
+1082 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .9 .86 0]/Domain[0 1]/N 1>>
+endobj
+160 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.4 1 0 .28]/Domain[0 1]/N 1>>
+endobj
+765 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .19 .23]/Domain[0 1]/N 1>>
+endobj
+914 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .22 .85 .11]/Domain[0 1]/N 1>>
+endobj
+1083 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .73 0 .02]/Domain[0 1]/N 1>>
+endobj
+161 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.05 .18 0 0]/Domain[0 1]/N 1>>
+endobj
+310 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 1 .43]/Domain[0 1]/N 1>>
+endobj
+766 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .24 .38]/Domain[0 1]/N 1>>
+endobj
+915 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .25 .95 0]/Domain[0 1]/N 1>>
+endobj
+1084 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.03 .89 0 0]/Domain[0 1]/N 1>>
+endobj
+162 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.13 .39 0 0]/Domain[0 1]/N 1>>
+endobj
+311 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .03 .06 .16]/Domain[0 1]/N 1>>
+endobj
+767 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .28 .65]/Domain[0 1]/N 1>>
+endobj
+916 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .3 .95 0]/Domain[0 1]/N 1>>
+endobj
+1085 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 .15 .04]/Domain[0 1]/N 1>>
+endobj
+163 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.24 .56 0 0]/Domain[0 1]/N 1>>
+endobj
+312 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .05 .11 .23]/Domain[0 1]/N 1>>
+endobj
+768 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.37 0 .18 0]/Domain[0 1]/N 1>>
+endobj
+917 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .3 .55 0]/Domain[0 1]/N 1>>
+endobj
+1086 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.98 1 0 0]/Domain[0 1]/N 1>>
+endobj
+164 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.43 .95 0 0]/Domain[0 1]/N 1>>
+endobj
+313 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .06 .14 .31]/Domain[0 1]/N 1>>
+endobj
+769 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.34 0 .19 0]/Domain[0 1]/N 1>>
+endobj
+918 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .35 .69 0]/Domain[0 1]/N 1>>
+endobj
+1087 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .02 .03 .06]/Domain[0 1]/N 1>>
+endobj
+165 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.5 1 0 0]/Domain[0 1]/N 1>>
+endobj
+314 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .07 .17 .43]/Domain[0 1]/N 1>>
+endobj
+919 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .42 1 .07]/Domain[0 1]/N 1>>
+endobj
+1088 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .02 .05 .09]/Domain[0 1]/N 1>>
+endobj
+166 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.51 1 0 .25]/Domain[0 1]/N 1>>
+endobj
+315 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .08 .22 .56]/Domain[0 1]/N 1>>
+endobj
+1089 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .04 .08 .17]/Domain[0 1]/N 1>>
+endobj
+167 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.07 .2 0 0]/Domain[0 1]/N 1>>
+endobj
+316 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .1 .33 .72]/Domain[0 1]/N 1>>
+endobj
+168 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.14 .34 0 0]/Domain[0 1]/N 1>>
+endobj
+317 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .05 .06 .16]/Domain[0 1]/N 1>>
+endobj
+169 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.43 .76 0 0]/Domain[0 1]/N 1>>
+endobj
+318 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .08 .09 .26]/Domain[0 1]/N 1>>
+endobj
+319 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .1 .11 .34]/Domain[0 1]/N 1>>
+endobj
+690 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.34 1 0 0]/Domain[0 1]/N 1>>
+endobj
+691 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.33 1 0 .08]/Domain[0 1]/N 1>>
+endobj
+840 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.5 .58 .5 0]/Domain[0 1]/N 1>>
+endobj
+692 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.37 1 0 .26]/Domain[0 1]/N 1>>
+endobj
+841 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.28 .35 .24 0]/Domain[0 1]/N 1>>
+endobj
+693 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.19 .35 0 0]/Domain[0 1]/N 1>>
+endobj
+842 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.17 .25 .15 0]/Domain[0 1]/N 1>>
+endobj
+694 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.22 .33 0 0]/Domain[0 1]/N 1>>
+endobj
+843 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.1 .15 .1 0]/Domain[0 1]/N 1>>
+endobj
+695 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.29 .36 0 0]/Domain[0 1]/N 1>>
+endobj
+844 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.06 .08 .07 0]/Domain[0 1]/N 1>>
+endobj
+240 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .46 .46]/Domain[0 1]/N 1>>
+endobj
+696 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.3 .47 0 0]/Domain[0 1]/N 1>>
+endobj
+845 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 .8 0 .55]/Domain[0 1]/N 1>>
+endobj
+241 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .48 .6]/Domain[0 1]/N 1>>
+endobj
+697 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.3 .43 0 0]/Domain[0 1]/N 1>>
+endobj
+846 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.77 .7 0 .4]/Domain[0 1]/N 1>>
+endobj
+242 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.24 0 .16 0]/Domain[0 1]/N 1>>
+endobj
+698 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.4 .45 0 0]/Domain[0 1]/N 1>>
+endobj
+847 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.6 .47 0 .3]/Domain[0 1]/N 1>>
+endobj
+243 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.3 0 .2 0]/Domain[0 1]/N 1>>
+endobj
+699 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.46 .72 0 0]/Domain[0 1]/N 1>>
+endobj
+848 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.31 .27 0 .2]/Domain[0 1]/N 1>>
+endobj
+244 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.43 0 .27 0]/Domain[0 1]/N 1>>
+endobj
+849 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.2 .15 0 .1]/Domain[0 1]/N 1>>
+endobj
+245 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .6 .03]/Domain[0 1]/N 1>>
+endobj
+246 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .65 .3]/Domain[0 1]/N 1>>
+endobj
+247 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .67 .47]/Domain[0 1]/N 1>>
+endobj
+248 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.31 0 .2 0]/Domain[0 1]/N 1>>
+endobj
+249 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.47 0 .32 0]/Domain[0 1]/N 1>>
+endobj
+770 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.43 0 .24 0]/Domain[0 1]/N 1>>
+endobj
+771 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.47 0 .24 0]/Domain[0 1]/N 1>>
+endobj
+920 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .53 1 .04]/Domain[0 1]/N 1>>
+endobj
+772 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.49 0 .28 0]/Domain[0 1]/N 1>>
+endobj
+921 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .46 1 .11]/Domain[0 1]/N 1>>
+endobj
+1090 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .04 .09 .24]/Domain[0 1]/N 1>>
+endobj
+773 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.59 0 .33 0]/Domain[0 1]/N 1>>
+endobj
+922 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .18 .15 0]/Domain[0 1]/N 1>>
+endobj
+1091 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .05 .1 .29]/Domain[0 1]/N 1>>
+endobj
+774 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.71 0 .33 0]/Domain[0 1]/N 1>>
+endobj
+923 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .6 .6 0]/Domain[0 1]/N 1>>
+endobj
+1092 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .06 .12 .31]/Domain[0 1]/N 1>>
+endobj
+170 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.55 1 0 .15]/Domain[0 1]/N 1>>
+endobj
+775 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.69 0 .37 0]/Domain[0 1]/N 1>>
+endobj
+924 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .75 .75 0]/Domain[0 1]/N 1>>
+endobj
+1093 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .08 .14 .38]/Domain[0 1]/N 1>>
+endobj
+171 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.52 1 0 .26]/Domain[0 1]/N 1>>
+endobj
+320 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .13 .15 .45]/Domain[0 1]/N 1>>
+endobj
+776 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.9 0 .49 0]/Domain[0 1]/N 1>>
+endobj
+925 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .7 .6 .05]/Domain[0 1]/N 1>>
+endobj
+1094 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .09 .16 .43]/Domain[0 1]/N 1>>
+endobj
+172 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.48 1 0 .4]/Domain[0 1]/N 1>>
+endobj
+321 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .18 .21 .56]/Domain[0 1]/N 1>>
+endobj
+777 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .44 0]/Domain[0 1]/N 1>>
+endobj
+926 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .6 .45 .18]/Domain[0 1]/N 1>>
+endobj
+1095 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .11 .2 .47]/Domain[0 1]/N 1>>
+endobj
+173 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.45 1 0 .55]/Domain[0 1]/N 1>>
+endobj
+322 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .27 .36 .72]/Domain[0 1]/N 1>>
+endobj
+778 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.95 0 .47 0]/Domain[0 1]/N 1>>
+endobj
+927 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .8 .42 .2]/Domain[0 1]/N 1>>
+endobj
+1096 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .14 .28 .55]/Domain[0 1]/N 1>>
+endobj
+174 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.1 .14 0 0]/Domain[0 1]/N 1>>
+endobj
+323 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .3 .66 .98]/Domain[0 1]/N 1>>
+endobj
+779 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[1 0 .55 .05]/Domain[0 1]/N 1>>
+endobj
+928 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 1 .3 .61]/Domain[0 1]/N 1>>
+endobj
+1097 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .17 .34 .62]/Domain[0 1]/N 1>>
+endobj
+175 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.26 .28 0 0]/Domain[0 1]/N 1>>
+endobj
+324 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 .09 .2]/Domain[0 1]/N 1>>
+endobj
+929 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .09 .05 0]/Domain[0 1]/N 1>>
+endobj
+1098 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .75 .9 0]/Domain[0 1]/N 1>>
+endobj
+176 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.54 .56 0 0]/Domain[0 1]/N 1>>
+endobj
+325 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 .1 .3]/Domain[0 1]/N 1>>
+endobj
+1099 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 .01 1 0]/Domain[0 1]/N 1>>
+endobj
+177 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.79 .9 0 0]/Domain[0 1]/N 1>>
+endobj
+326 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 .12 .41]/Domain[0 1]/N 1>>
+endobj
+178 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.89 1 0 0]/Domain[0 1]/N 1>>
+endobj
+327 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[0 0 .16 .5]/Domain[0 1]/N 1>>
+endobj
+179 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.82 1 0 .12]/Domain[0 1]/N 1>>
+endobj
+328 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.01 0 .25 .65]/Domain[0 1]/N 1>>
+endobj
+329 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.03 0 .31 .75]/Domain[0 1]/N 1>>
+endobj
+850 0 obj
+<</C0[0 0 0 0]/FunctionType 2/C1[.14 .1 0 .06]/Domain[0 1]/N 1>>
+endobj
+3 0 obj
+<</Resources 9 0 R/Type/Page/Parent 1126 0 R/Contents[8 0 R]>>
+endobj
+10 0 obj
+<</Resources 1101 0 R/Type/Page/Parent 1127 0 R/Contents[1100 0 R]>>
+endobj
+1102 0 obj
+<</Resources 1114 0 R/Type/Page/Parent 1127 0 R/Contents[1113 0 R]>>
+endobj
+1127 0 obj
+<</Type/Pages/Count 2/Parent 1126 0 R/Kids[10 0 R 1102 0 R]>>
+endobj
+1115 0 obj
+<</Resources 1118 0 R/Type/Page/Parent 1126 0 R/Contents[1117 0 R]>>
+endobj
+1119 0 obj
+<</Resources 1122 0 R/Type/Page/Parent 1128 0 R/Contents[1120 0 R 1121 0 R]>>
+endobj
+1123 0 obj
+<</Resources 1125 0 R/Type/Page/Parent 1128 0 R/Contents[1124 0 R]>>
+endobj
+1128 0 obj
+<</Type/Pages/Count 2/Parent 1126 0 R/Kids[1119 0 R 1123 0 R]>>
+endobj
+1126 0 obj
+<</Type/Pages/Count 6/Kids[3 0 R 1127 0 R 1115 0 R 1128 0 R]/MediaBox[0 0 595.28
+841.89]>>
+endobj
+2 0 obj
+<</Creator( XeTeX output 2014.11.13:2152)/Producer(xdvipdfmx \(20140317\))/CreationDate(D:20141113215222+02'00')>>
+endobj
+1 0 obj
+<</Pages 1126 0 R/Type/Catalog>>
+endobj
+1129 0 obj
+<</Filter/FlateDecode/Length 345>>
+stream
+x]n0 <E4F¿mBjz:.RI
+F)- fr-J{"dRJmzAqg ipS;;?Y2zV+UcnՌ ܿ"e:RZYAweX=FwgOix^NNSʞ.E;d z#^ 뭑0غW+x,O5`9iOC[hH Bwh DRByo-h}9~0^lpIOL5*RL&)U W]RZ1vrn1 hquKz~
+endstream
+endobj
+1130 0 obj
+<</Filter/FlateDecode/Length 262>>
+stream
+x]Pj0+B?
+CN>@V
+Y++H>fv4iݜ=D6D$yR e#IZ_}#BǒFdi vTdĮh2a~;WY풿D-.DZ1,4ڇpXigkxȒtC 7=&eАUP^©4_Cujϋ0[ /yDW՗1;dDW-%V
+endstream
+endobj
+1132 0 obj
+<</Subtype/CIDFontType0C/Filter/FlateDecode/Length 3779>>
+stream
+x}W Xg
+
+1pc~.5.]QYeW
+plI>=XSyɾN-T
+Ղ&FlHoda5=JզcGUڈK?Cc615ݚaעJ$YjH>nxn4x\+{kezi7!.05疜WF^;M1]?E 4g6I(]Ak K\h[%k&T'Qez})
+v6uю;ۜ6x6Z 4UxVL!c'?:<F5W++*gO򑠢Tk G:A w/`A{Aq yx
+pl'N
+-twXDž?|!?]<Q+3즦H 7Š|wArEdyJ
+Ess},9U
+$ eJ}VʊOΒ}F\ &8Ӵx2d z~_x/D``3ҀU祿C~!Ckivf=l(3i73)|zyZ'Щ[?J+&5I6DZqX{lfz^_fc6̥a
+ytEࣣ9=[}VK4Ý-Wx
+wA.$Ո^B̦"Nd!xa5PWoXPVb먵o
+Rٙ}[n-HOo|"p= ]DӴ(1KBЫyY{0Jm3պx_[!?WzJ!E Üy߆‡fuZTؚ.|96vOr'eEZJJ
+UҸ?(֭2kRwV?N~k}P{>70>73E|H#
+\2wt`OڱGK-c&LY.˒-볶ѐZ삹,X)ÉGeU \ p{W͆3
+_Sj&i"n26*It
+endstream
+endobj
+1133 0 obj
+[14[347 245]27[245]34[700 619]41[777]44[692]49[586]52[494]66[456 525 422 540 433
+319 483 544 285]76[507 269 834 559 520 538]83[392 377 326 546]89[478]109[565]]
+endobj
+1134 0 obj
+<</Filter/FlateDecode/Length 22>>
+stream
+xk`f0`ρ
+endstream
+endobj
+4 0 obj
+<</Type/Font/Subtype/CIDFontType0/BaseFont/HBCXLA+MinionPro-Semibold/CIDSystemInfo<</Registry(Adobe)/Ordering(Identity)/Supplement
+0>>/FontDescriptor 1131 0 R/DW 500/W 1133 0 R>>
+endobj
+1131 0 obj
+<</Type/FontDescriptor/Ascent 727/Descent -273/StemV 110/CapHeight 651/XHeight 438/AvgWidth
+555/FontBBox[-308 -360 1684 917]/ItalicAngle 0/Flags 6/Style<</Panose<000002040603060201020203>>>/FontName/HBCXLA+MinionPro-Semibold/FontFile3
+1132 0 R/CIDSet 1134 0 R>>
+endobj
+1136 0 obj
+<</Subtype/CIDFontType0C/Filter/FlateDecode/Length 1116>>
+stream
+x}T}L[U=A<ڇc&c+G\PP
+'rqZ UtQMyQ *ƆYe(w b!"lB&k)i-v.>Fզ[sA;k%a}aR4o0އO˫Ji)
+UVhM1\jE瓶qoɉe8Εq1y؃-8'#ASD\1Nkڝ>38l? q]k4
+8=?-rf YbyvqF)X}Uʬ]0󶘭p0*"`b>%?rQ$с91bNll3FIjV#v{`'dAmJ (1$1)` גxCCFim0wza><Jm} 2, =&wW{_ɑrle
+0P1MJno6x]=Ξ `ey synl,^-jP43"l%݅[rﱧf˧Mog<TiS>E
+VF-5Mf8WHzV_t*5`eP J1Xxi,`=P0oWlT=:OR5ʀoQ(R g
+endstream
+endobj
+1137 0 obj
+[18[480 480 480 480 480 480]]
+endobj
+1138 0 obj
+<</Filter/FlateDecode/Length 11>>
+stream
+xk`
+endstream
+endobj
+6 0 obj
+<</Type/Font/Subtype/CIDFontType0/BaseFont/PXBUQK+MinionPro-Regular/CIDSystemInfo<</Registry(Adobe)/Ordering(Identity)/Supplement
+0>>/FontDescriptor 1135 0 R/DW 500/W 1137 0 R>>
+endobj
+1135 0 obj
+<</Type/FontDescriptor/Ascent 727/Descent -273/StemV 79/CapHeight 727/AvgWidth 542/FontBBox[-290
+-360 1684 989]/ItalicAngle 0/Flags 6/Style<</Panose<000002040503050201020203>>>/FontName/PXBUQK+MinionPro-Regular/FontFile3
+1136 0 R/CIDSet 1138 0 R>>
+endobj
+5 0 obj
+<</Type/Font/Subtype/Type0/BaseFont/HBCXLA+MinionPro-Semibold-Identity-H/Encoding/Identity-H/DescendantFonts[4 0 R]/ToUnicode
+1129 0 R>>
+endobj
+7 0 obj
+<</Type/Font/Subtype/Type0/BaseFont/PXBUQK+MinionPro-Regular-Identity-H/Encoding/Identity-H/DescendantFonts[6 0 R]/ToUnicode
+1130 0 R>>
+endobj
+xref
+0 1139
+0000000000 65535 f
+0000451215 00000 n
+0000451085 00000 n
+0000450294 00000 n
+0000456155 00000 n
+0000458427 00000 n
+0000457968 00000 n
+0000458579 00000 n
+0000000015 00000 n
+0000000291 00000 n
+0000450372 00000 n
+0000379011 00000 n
+0000379251 00000 n
+0000379490 00000 n
+0000379730 00000 n
+0000379969 00000 n
+0000380129 00000 n
+0000380208 00000 n
+0000380368 00000 n
+0000380529 00000 n
+0000384684 00000 n
+0000385005 00000 n
+0000385330 00000 n
+0000385654 00000 n
+0000385976 00000 n
+0000386301 00000 n
+0000386545 00000 n
+0000386624 00000 n
+0000386783 00000 n
+0000386943 00000 n
+0000389884 00000 n
+0000390127 00000 n
+0000390368 00000 n
+0000390609 00000 n
+0000390851 00000 n
+0000391093 00000 n
+0000391335 00000 n
+0000391496 00000 n
+0000391658 00000 n
+0000391819 00000 n
+0000395558 00000 n
+0000395801 00000 n
+0000396042 00000 n
+0000396285 00000 n
+0000396528 00000 n
+0000396769 00000 n
+0000397012 00000 n
+0000397174 00000 n
+0000397335 00000 n
+0000397494 00000 n
+0000401254 00000 n
+0000401498 00000 n
+0000401739 00000 n
+0000401983 00000 n
+0000402226 00000 n
+0000402470 00000 n
+0000402714 00000 n
+0000402877 00000 n
+0000402957 00000 n
+0000403037 00000 n
+0000406929 00000 n
+0000407252 00000 n
+0000407495 00000 n
+0000407737 00000 n
+0000407979 00000 n
+0000408222 00000 n
+0000408464 00000 n
+0000408625 00000 n
+0000408705 00000 n
+0000408784 00000 n
+0000412692 00000 n
+0000412934 00000 n
+0000413178 00000 n
+0000413422 00000 n
+0000413664 00000 n
+0000413905 00000 n
+0000414145 00000 n
+0000414305 00000 n
+0000414383 00000 n
+0000414462 00000 n
+0000418199 00000 n
+0000418439 00000 n
+0000418680 00000 n
+0000418922 00000 n
+0000419246 00000 n
+0000419569 00000 n
+0000419893 00000 n
+0000420216 00000 n
+0000420460 00000 n
+0000420620 00000 n
+0000424683 00000 n
+0000424923 00000 n
+0000425167 00000 n
+0000425410 00000 n
+0000425734 00000 n
+0000426057 00000 n
+0000426380 00000 n
+0000426704 00000 n
+0000426948 00000 n
+0000427107 00000 n
+0000404256 00000 n
+0000404580 00000 n
+0000404903 00000 n
+0000405227 00000 n
+0000405549 00000 n
+0000405793 00000 n
+0000405956 00000 n
+0000406118 00000 n
+0000406199 00000 n
+0000406279 00000 n
+0000410006 00000 n
+0000410330 00000 n
+0000410658 00000 n
+0000410984 00000 n
+0000411308 00000 n
+0000411554 00000 n
+0000411717 00000 n
+0000411881 00000 n
+0000411962 00000 n
+0000412043 00000 n
+0000415679 00000 n
+0000416006 00000 n
+0000416331 00000 n
+0000416657 00000 n
+0000416985 00000 n
+0000417227 00000 n
+0000417390 00000 n
+0000417554 00000 n
+0000417636 00000 n
+0000417715 00000 n
+0000422161 00000 n
+0000422490 00000 n
+0000422818 00000 n
+0000423146 00000 n
+0000423470 00000 n
+0000423711 00000 n
+0000423875 00000 n
+0000424036 00000 n
+0000424115 00000 n
+0000424196 00000 n
+0000428653 00000 n
+0000428977 00000 n
+0000429297 00000 n
+0000429619 00000 n
+0000429942 00000 n
+0000430182 00000 n
+0000430343 00000 n
+0000430503 00000 n
+0000430583 00000 n
+0000430664 00000 n
+0000434158 00000 n
+0000434484 00000 n
+0000434886 00000 n
+0000435290 00000 n
+0000435689 00000 n
+0000436093 00000 n
+0000436413 00000 n
+0000436653 00000 n
+0000436814 00000 n
+0000436974 00000 n
+0000440621 00000 n
+0000440947 00000 n
+0000441351 00000 n
+0000441758 00000 n
+0000442163 00000 n
+0000442573 00000 n
+0000442899 00000 n
+0000443147 00000 n
+0000443309 00000 n
+0000443473 00000 n
+0000447122 00000 n
+0000447449 00000 n
+0000447858 00000 n
+0000448265 00000 n
+0000448675 00000 n
+0000449082 00000 n
+0000449405 00000 n
+0000449645 00000 n
+0000449806 00000 n
+0000449965 00000 n
+0000364153 00000 n
+0000364396 00000 n
+0000364721 00000 n
+0000365043 00000 n
+0000365364 00000 n
+0000365688 00000 n
+0000365928 00000 n
+0000366088 00000 n
+0000366246 00000 n
+0000366406 00000 n
+0000369826 00000 n
+0000370068 00000 n
+0000370392 00000 n
+0000370715 00000 n
+0000371037 00000 n
+0000371360 00000 n
+0000371603 00000 n
+0000371766 00000 n
+0000371930 00000 n
+0000372094 00000 n
+0000419002 00000 n
+0000419326 00000 n
+0000419648 00000 n
+0000419972 00000 n
+0000420296 00000 n
+0000420539 00000 n
+0000420700 00000 n
+0000420780 00000 n
+0000420860 00000 n
+0000420941 00000 n
+0000425489 00000 n
+0000425814 00000 n
+0000426137 00000 n
+0000426460 00000 n
+0000426784 00000 n
+0000427027 00000 n
+0000427186 00000 n
+0000427267 00000 n
+0000427348 00000 n
+0000427429 00000 n
+0000431637 00000 n
+0000431882 00000 n
+0000432125 00000 n
+0000432369 00000 n
+0000432614 00000 n
+0000432778 00000 n
+0000432858 00000 n
+0000432939 00000 n
+0000433020 00000 n
+0000433101 00000 n
+0000438109 00000 n
+0000438354 00000 n
+0000438598 00000 n
+0000438842 00000 n
+0000439086 00000 n
+0000439251 00000 n
+0000439332 00000 n
+0000439413 00000 n
+0000439494 00000 n
+0000439575 00000 n
+0000444614 00000 n
+0000444855 00000 n
+0000445096 00000 n
+0000445338 00000 n
+0000445580 00000 n
+0000445742 00000 n
+0000445822 00000 n
+0000445902 00000 n
+0000445983 00000 n
+0000446063 00000 n
+0000361395 00000 n
+0000361558 00000 n
+0000361803 00000 n
+0000362048 00000 n
+0000362291 00000 n
+0000362536 00000 n
+0000362700 00000 n
+0000362862 00000 n
+0000363024 00000 n
+0000363186 00000 n
+0000367060 00000 n
+0000367224 00000 n
+0000367469 00000 n
+0000367715 00000 n
+0000367961 00000 n
+0000368207 00000 n
+0000368367 00000 n
+0000368527 00000 n
+0000368688 00000 n
+0000368849 00000 n
+0000372754 00000 n
+0000372918 00000 n
+0000373161 00000 n
+0000373403 00000 n
+0000373646 00000 n
+0000373891 00000 n
+0000374053 00000 n
+0000374214 00000 n
+0000374375 00000 n
+0000374537 00000 n
+0000377629 00000 n
+0000377793 00000 n
+0000378037 00000 n
+0000378282 00000 n
+0000378524 00000 n
+0000378850 00000 n
+0000379089 00000 n
+0000379329 00000 n
+0000379568 00000 n
+0000379810 00000 n
+0000383306 00000 n
+0000383470 00000 n
+0000383714 00000 n
+0000384038 00000 n
+0000384360 00000 n
+0000384761 00000 n
+0000385085 00000 n
+0000385410 00000 n
+0000385733 00000 n
+0000386056 00000 n
+0000434565 00000 n
+0000434967 00000 n
+0000435370 00000 n
+0000435770 00000 n
+0000436174 00000 n
+0000436494 00000 n
+0000436733 00000 n
+0000436893 00000 n
+0000437054 00000 n
+0000437134 00000 n
+0000441028 00000 n
+0000441432 00000 n
+0000441839 00000 n
+0000442244 00000 n
+0000442651 00000 n
+0000442980 00000 n
+0000443227 00000 n
+0000443390 00000 n
+0000443554 00000 n
+0000443637 00000 n
+0000447530 00000 n
+0000447938 00000 n
+0000448346 00000 n
+0000448755 00000 n
+0000449163 00000 n
+0000449486 00000 n
+0000449725 00000 n
+0000449885 00000 n
+0000450046 00000 n
+0000450129 00000 n
+0000364477 00000 n
+0000364802 00000 n
+0000365124 00000 n
+0000365445 00000 n
+0000365767 00000 n
+0000366009 00000 n
+0000366167 00000 n
+0000366327 00000 n
+0000366487 00000 n
+0000366566 00000 n
+0000370149 00000 n
+0000370473 00000 n
+0000370796 00000 n
+0000371118 00000 n
+0000371441 00000 n
+0000371684 00000 n
+0000371847 00000 n
+0000372011 00000 n
+0000372175 00000 n
+0000372258 00000 n
+0000375182 00000 n
+0000375346 00000 n
+0000375588 00000 n
+0000375828 00000 n
+0000376072 00000 n
+0000376315 00000 n
+0000376479 00000 n
+0000376641 00000 n
+0000376805 00000 n
+0000376969 00000 n
+0000380853 00000 n
+0000381018 00000 n
+0000381265 00000 n
+0000381507 00000 n
+0000381751 00000 n
+0000381992 00000 n
+0000382158 00000 n
+0000382322 00000 n
+0000382486 00000 n
+0000382649 00000 n
+0000387264 00000 n
+0000387427 00000 n
+0000387671 00000 n
+0000387919 00000 n
+0000388164 00000 n
+0000388409 00000 n
+0000388574 00000 n
+0000388739 00000 n
+0000388904 00000 n
+0000389068 00000 n
+0000392141 00000 n
+0000392303 00000 n
+0000392547 00000 n
+0000392790 00000 n
+0000393031 00000 n
+0000393355 00000 n
+0000393600 00000 n
+0000393843 00000 n
+0000394087 00000 n
+0000394332 00000 n
+0000397813 00000 n
+0000397975 00000 n
+0000398219 00000 n
+0000398467 00000 n
+0000398713 00000 n
+0000399042 00000 n
+0000399289 00000 n
+0000399532 00000 n
+0000399776 00000 n
+0000400018 00000 n
+0000361639 00000 n
+0000361884 00000 n
+0000362129 00000 n
+0000362374 00000 n
+0000362617 00000 n
+0000362781 00000 n
+0000362943 00000 n
+0000363105 00000 n
+0000363267 00000 n
+0000363347 00000 n
+0000367305 00000 n
+0000367550 00000 n
+0000367796 00000 n
+0000368042 00000 n
+0000368286 00000 n
+0000368446 00000 n
+0000368608 00000 n
+0000368768 00000 n
+0000368930 00000 n
+0000369013 00000 n
+0000372998 00000 n
+0000373240 00000 n
+0000373483 00000 n
+0000373727 00000 n
+0000373972 00000 n
+0000374134 00000 n
+0000374294 00000 n
+0000374456 00000 n
+0000374616 00000 n
+0000374695 00000 n
+0000377874 00000 n
+0000378118 00000 n
+0000378362 00000 n
+0000378605 00000 n
+0000378931 00000 n
+0000379170 00000 n
+0000379407 00000 n
+0000379649 00000 n
+0000379890 00000 n
+0000380048 00000 n
+0000383551 00000 n
+0000383794 00000 n
+0000384117 00000 n
+0000384440 00000 n
+0000384842 00000 n
+0000385166 00000 n
+0000385491 00000 n
+0000385813 00000 n
+0000386137 00000 n
+0000386381 00000 n
+0000389313 00000 n
+0000389393 00000 n
+0000389554 00000 n
+0000389718 00000 n
+0000389964 00000 n
+0000390207 00000 n
+0000390448 00000 n
+0000390688 00000 n
+0000390931 00000 n
+0000391173 00000 n
+0000394986 00000 n
+0000395069 00000 n
+0000395232 00000 n
+0000395396 00000 n
+0000395638 00000 n
+0000395878 00000 n
+0000396122 00000 n
+0000396364 00000 n
+0000396607 00000 n
+0000396849 00000 n
+0000400676 00000 n
+0000400758 00000 n
+0000400923 00000 n
+0000401089 00000 n
+0000401334 00000 n
+0000401578 00000 n
+0000401819 00000 n
+0000402063 00000 n
+0000402306 00000 n
+0000402548 00000 n
+0000406360 00000 n
+0000406443 00000 n
+0000406605 00000 n
+0000406767 00000 n
+0000407009 00000 n
+0000407331 00000 n
+0000407575 00000 n
+0000407817 00000 n
+0000408059 00000 n
+0000408302 00000 n
+0000412124 00000 n
+0000412207 00000 n
+0000412370 00000 n
+0000412532 00000 n
+0000412772 00000 n
+0000413014 00000 n
+0000413258 00000 n
+0000413502 00000 n
+0000413744 00000 n
+0000413985 00000 n
+0000375428 00000 n
+0000375671 00000 n
+0000375911 00000 n
+0000376154 00000 n
+0000376398 00000 n
+0000376560 00000 n
+0000376724 00000 n
+0000376888 00000 n
+0000377052 00000 n
+0000377133 00000 n
+0000381099 00000 n
+0000381348 00000 n
+0000381590 00000 n
+0000381833 00000 n
+0000382075 00000 n
+0000382239 00000 n
+0000382403 00000 n
+0000382567 00000 n
+0000382730 00000 n
+0000382811 00000 n
+0000387510 00000 n
+0000387754 00000 n
+0000388001 00000 n
+0000388246 00000 n
+0000388491 00000 n
+0000388656 00000 n
+0000388822 00000 n
+0000388987 00000 n
+0000389151 00000 n
+0000389232 00000 n
+0000392384 00000 n
+0000392628 00000 n
+0000392871 00000 n
+0000393112 00000 n
+0000393436 00000 n
+0000393680 00000 n
+0000393925 00000 n
+0000394169 00000 n
+0000394413 00000 n
+0000394575 00000 n
+0000398058 00000 n
+0000398302 00000 n
+0000398550 00000 n
+0000398793 00000 n
+0000399123 00000 n
+0000399368 00000 n
+0000399613 00000 n
+0000399857 00000 n
+0000400099 00000 n
+0000400264 00000 n
+0000403117 00000 n
+0000403200 00000 n
+0000403362 00000 n
+0000403523 00000 n
+0000403767 00000 n
+0000404013 00000 n
+0000404336 00000 n
+0000404661 00000 n
+0000404984 00000 n
+0000405306 00000 n
+0000408864 00000 n
+0000408945 00000 n
+0000409107 00000 n
+0000409271 00000 n
+0000409515 00000 n
+0000409761 00000 n
+0000410085 00000 n
+0000410411 00000 n
+0000410739 00000 n
+0000411065 00000 n
+0000414542 00000 n
+0000414622 00000 n
+0000414782 00000 n
+0000414944 00000 n
+0000415190 00000 n
+0000415434 00000 n
+0000415760 00000 n
+0000416087 00000 n
+0000416412 00000 n
+0000416738 00000 n
+0000421022 00000 n
+0000421105 00000 n
+0000421269 00000 n
+0000421431 00000 n
+0000421674 00000 n
+0000421916 00000 n
+0000422242 00000 n
+0000422571 00000 n
+0000422898 00000 n
+0000423226 00000 n
+0000427510 00000 n
+0000427593 00000 n
+0000427756 00000 n
+0000427918 00000 n
+0000428162 00000 n
+0000428408 00000 n
+0000428733 00000 n
+0000429056 00000 n
+0000429378 00000 n
+0000429700 00000 n
+0000389474 00000 n
+0000389635 00000 n
+0000389801 00000 n
+0000390045 00000 n
+0000390287 00000 n
+0000390529 00000 n
+0000390771 00000 n
+0000391012 00000 n
+0000391254 00000 n
+0000391415 00000 n
+0000395152 00000 n
+0000395315 00000 n
+0000395477 00000 n
+0000395720 00000 n
+0000395961 00000 n
+0000396204 00000 n
+0000396447 00000 n
+0000396688 00000 n
+0000396932 00000 n
+0000397091 00000 n
+0000400840 00000 n
+0000401006 00000 n
+0000401171 00000 n
+0000401417 00000 n
+0000401658 00000 n
+0000401900 00000 n
+0000402143 00000 n
+0000402388 00000 n
+0000402631 00000 n
+0000402794 00000 n
+0000406524 00000 n
+0000406686 00000 n
+0000406848 00000 n
+0000407090 00000 n
+0000407414 00000 n
+0000407656 00000 n
+0000407898 00000 n
+0000408141 00000 n
+0000408383 00000 n
+0000408544 00000 n
+0000412290 00000 n
+0000412451 00000 n
+0000412613 00000 n
+0000412853 00000 n
+0000413097 00000 n
+0000413341 00000 n
+0000413583 00000 n
+0000413824 00000 n
+0000414064 00000 n
+0000414225 00000 n
+0000417796 00000 n
+0000417877 00000 n
+0000418037 00000 n
+0000418277 00000 n
+0000418518 00000 n
+0000418760 00000 n
+0000419082 00000 n
+0000419407 00000 n
+0000419729 00000 n
+0000420053 00000 n
+0000424277 00000 n
+0000424358 00000 n
+0000424519 00000 n
+0000424761 00000 n
+0000425003 00000 n
+0000425247 00000 n
+0000425570 00000 n
+0000425893 00000 n
+0000426218 00000 n
+0000426540 00000 n
+0000430745 00000 n
+0000430825 00000 n
+0000430988 00000 n
+0000431152 00000 n
+0000431313 00000 n
+0000431476 00000 n
+0000431718 00000 n
+0000431962 00000 n
+0000432206 00000 n
+0000432450 00000 n
+0000437215 00000 n
+0000437296 00000 n
+0000437458 00000 n
+0000437619 00000 n
+0000437783 00000 n
+0000437947 00000 n
+0000438190 00000 n
+0000438435 00000 n
+0000438679 00000 n
+0000438923 00000 n
+0000443719 00000 n
+0000443798 00000 n
+0000443960 00000 n
+0000444124 00000 n
+0000444288 00000 n
+0000444450 00000 n
+0000444695 00000 n
+0000444935 00000 n
+0000445177 00000 n
+0000445417 00000 n
+0000403281 00000 n
+0000403442 00000 n
+0000403604 00000 n
+0000403848 00000 n
+0000404094 00000 n
+0000404417 00000 n
+0000404741 00000 n
+0000405064 00000 n
+0000405386 00000 n
+0000405630 00000 n
+0000409026 00000 n
+0000409188 00000 n
+0000409352 00000 n
+0000409597 00000 n
+0000409843 00000 n
+0000410168 00000 n
+0000410493 00000 n
+0000410822 00000 n
+0000411144 00000 n
+0000411389 00000 n
+0000414703 00000 n
+0000414863 00000 n
+0000415025 00000 n
+0000415271 00000 n
+0000415515 00000 n
+0000415841 00000 n
+0000416168 00000 n
+0000416493 00000 n
+0000416820 00000 n
+0000417066 00000 n
+0000421188 00000 n
+0000421350 00000 n
+0000421512 00000 n
+0000421755 00000 n
+0000421996 00000 n
+0000422325 00000 n
+0000422654 00000 n
+0000422981 00000 n
+0000423307 00000 n
+0000423549 00000 n
+0000427675 00000 n
+0000427838 00000 n
+0000428000 00000 n
+0000428243 00000 n
+0000428490 00000 n
+0000428816 00000 n
+0000429137 00000 n
+0000429458 00000 n
+0000429781 00000 n
+0000430021 00000 n
+0000433182 00000 n
+0000433261 00000 n
+0000433425 00000 n
+0000433669 00000 n
+0000433915 00000 n
+0000434239 00000 n
+0000434645 00000 n
+0000435048 00000 n
+0000435451 00000 n
+0000435851 00000 n
+0000439656 00000 n
+0000439737 00000 n
+0000439897 00000 n
+0000440137 00000 n
+0000440380 00000 n
+0000440701 00000 n
+0000441107 00000 n
+0000441515 00000 n
+0000441922 00000 n
+0000442327 00000 n
+0000446144 00000 n
+0000446225 00000 n
+0000446387 00000 n
+0000446633 00000 n
+0000446878 00000 n
+0000447203 00000 n
+0000447613 00000 n
+0000448021 00000 n
+0000448429 00000 n
+0000448837 00000 n
+0000363427 00000 n
+0000363508 00000 n
+0000363669 00000 n
+0000363829 00000 n
+0000363991 00000 n
+0000364234 00000 n
+0000364558 00000 n
+0000364881 00000 n
+0000365203 00000 n
+0000365524 00000 n
+0000369096 00000 n
+0000369177 00000 n
+0000369341 00000 n
+0000369503 00000 n
+0000369664 00000 n
+0000369907 00000 n
+0000370230 00000 n
+0000370554 00000 n
+0000370879 00000 n
+0000371201 00000 n
+0000417958 00000 n
+0000418118 00000 n
+0000418358 00000 n
+0000418599 00000 n
+0000418840 00000 n
+0000419163 00000 n
+0000419487 00000 n
+0000419810 00000 n
+0000420134 00000 n
+0000420377 00000 n
+0000424439 00000 n
+0000424600 00000 n
+0000424840 00000 n
+0000425084 00000 n
+0000425328 00000 n
+0000425651 00000 n
+0000425974 00000 n
+0000426299 00000 n
+0000426621 00000 n
+0000426865 00000 n
+0000430905 00000 n
+0000431069 00000 n
+0000431231 00000 n
+0000431394 00000 n
+0000431557 00000 n
+0000431799 00000 n
+0000432042 00000 n
+0000432286 00000 n
+0000432531 00000 n
+0000432695 00000 n
+0000437376 00000 n
+0000437537 00000 n
+0000437700 00000 n
+0000437864 00000 n
+0000438027 00000 n
+0000438271 00000 n
+0000438515 00000 n
+0000438760 00000 n
+0000439004 00000 n
+0000439167 00000 n
+0000443879 00000 n
+0000444041 00000 n
+0000444205 00000 n
+0000444369 00000 n
+0000444531 00000 n
+0000444775 00000 n
+0000445015 00000 n
+0000445257 00000 n
+0000445498 00000 n
+0000445661 00000 n
+0000450212 00000 n
+0000361066 00000 n
+0000361149 00000 n
+0000361230 00000 n
+0000361313 00000 n
+0000361476 00000 n
+0000361720 00000 n
+0000361965 00000 n
+0000362210 00000 n
+0000362455 00000 n
+0000366647 00000 n
+0000366728 00000 n
+0000366811 00000 n
+0000366894 00000 n
+0000366977 00000 n
+0000367141 00000 n
+0000367386 00000 n
+0000367633 00000 n
+0000367879 00000 n
+0000368124 00000 n
+0000372340 00000 n
+0000372423 00000 n
+0000372506 00000 n
+0000372589 00000 n
+0000372672 00000 n
+0000372835 00000 n
+0000373079 00000 n
+0000373321 00000 n
+0000373564 00000 n
+0000373808 00000 n
+0000377214 00000 n
+0000377297 00000 n
+0000377380 00000 n
+0000377463 00000 n
+0000377546 00000 n
+0000377710 00000 n
+0000377955 00000 n
+0000378199 00000 n
+0000378443 00000 n
+0000378686 00000 n
+0000382892 00000 n
+0000382975 00000 n
+0000383058 00000 n
+0000383141 00000 n
+0000383224 00000 n
+0000383387 00000 n
+0000383631 00000 n
+0000383875 00000 n
+0000384196 00000 n
+0000384521 00000 n
+0000433342 00000 n
+0000433506 00000 n
+0000433750 00000 n
+0000433995 00000 n
+0000434320 00000 n
+0000434725 00000 n
+0000435129 00000 n
+0000435530 00000 n
+0000435932 00000 n
+0000436255 00000 n
+0000439818 00000 n
+0000439978 00000 n
+0000440218 00000 n
+0000440461 00000 n
+0000440782 00000 n
+0000441188 00000 n
+0000441596 00000 n
+0000442003 00000 n
+0000442408 00000 n
+0000442734 00000 n
+0000446306 00000 n
+0000446468 00000 n
+0000446714 00000 n
+0000446959 00000 n
+0000447284 00000 n
+0000447693 00000 n
+0000448100 00000 n
+0000448510 00000 n
+0000448918 00000 n
+0000449243 00000 n
+0000363588 00000 n
+0000363749 00000 n
+0000363910 00000 n
+0000364072 00000 n
+0000364315 00000 n
+0000364639 00000 n
+0000364962 00000 n
+0000365283 00000 n
+0000365605 00000 n
+0000365846 00000 n
+0000369258 00000 n
+0000369422 00000 n
+0000369584 00000 n
+0000369745 00000 n
+0000369988 00000 n
+0000370311 00000 n
+0000370635 00000 n
+0000370958 00000 n
+0000371280 00000 n
+0000371524 00000 n
+0000374777 00000 n
+0000374858 00000 n
+0000374938 00000 n
+0000375019 00000 n
+0000375100 00000 n
+0000375263 00000 n
+0000375506 00000 n
+0000375749 00000 n
+0000375992 00000 n
+0000376235 00000 n
+0000380288 00000 n
+0000380448 00000 n
+0000380609 00000 n
+0000380689 00000 n
+0000380772 00000 n
+0000380936 00000 n
+0000381182 00000 n
+0000381428 00000 n
+0000381670 00000 n
+0000381913 00000 n
+0000386702 00000 n
+0000386863 00000 n
+0000387023 00000 n
+0000387103 00000 n
+0000387183 00000 n
+0000387347 00000 n
+0000387592 00000 n
+0000387837 00000 n
+0000388083 00000 n
+0000388328 00000 n
+0000391576 00000 n
+0000391737 00000 n
+0000391899 00000 n
+0000391980 00000 n
+0000392060 00000 n
+0000392222 00000 n
+0000392467 00000 n
+0000392711 00000 n
+0000392951 00000 n
+0000393192 00000 n
+0000397254 00000 n
+0000397414 00000 n
+0000397574 00000 n
+0000397654 00000 n
+0000397733 00000 n
+0000397895 00000 n
+0000398138 00000 n
+0000398385 00000 n
+0000398633 00000 n
+0000398876 00000 n
+0000393272 00000 n
+0000393517 00000 n
+0000393761 00000 n
+0000394006 00000 n
+0000394249 00000 n
+0000394494 00000 n
+0000394654 00000 n
+0000394736 00000 n
+0000394820 00000 n
+0000394903 00000 n
+0000398958 00000 n
+0000399206 00000 n
+0000399450 00000 n
+0000399694 00000 n
+0000399938 00000 n
+0000400181 00000 n
+0000400347 00000 n
+0000400429 00000 n
+0000400512 00000 n
+0000400594 00000 n
+0000403683 00000 n
+0000403929 00000 n
+0000404173 00000 n
+0000404498 00000 n
+0000404822 00000 n
+0000405145 00000 n
+0000405467 00000 n
+0000405711 00000 n
+0000405874 00000 n
+0000406036 00000 n
+0000409433 00000 n
+0000409678 00000 n
+0000409924 00000 n
+0000410248 00000 n
+0000410574 00000 n
+0000410902 00000 n
+0000411224 00000 n
+0000411470 00000 n
+0000411635 00000 n
+0000411798 00000 n
+0000415106 00000 n
+0000415351 00000 n
+0000415596 00000 n
+0000415922 00000 n
+0000416249 00000 n
+0000416574 00000 n
+0000416901 00000 n
+0000417147 00000 n
+0000417308 00000 n
+0000417471 00000 n
+0000421593 00000 n
+0000421834 00000 n
+0000422077 00000 n
+0000422406 00000 n
+0000422734 00000 n
+0000423062 00000 n
+0000423388 00000 n
+0000423629 00000 n
+0000423792 00000 n
+0000423956 00000 n
+0000428080 00000 n
+0000428324 00000 n
+0000428571 00000 n
+0000428897 00000 n
+0000429218 00000 n
+0000429539 00000 n
+0000429862 00000 n
+0000430102 00000 n
+0000430263 00000 n
+0000430423 00000 n
+0000433587 00000 n
+0000433833 00000 n
+0000434077 00000 n
+0000434402 00000 n
+0000434806 00000 n
+0000435210 00000 n
+0000435611 00000 n
+0000436013 00000 n
+0000436335 00000 n
+0000436575 00000 n
+0000440059 00000 n
+0000440298 00000 n
+0000440540 00000 n
+0000440865 00000 n
+0000441269 00000 n
+0000441676 00000 n
+0000442083 00000 n
+0000442489 00000 n
+0000442815 00000 n
+0000443063 00000 n
+0000446549 00000 n
+0000446795 00000 n
+0000447038 00000 n
+0000447365 00000 n
+0000447774 00000 n
+0000448182 00000 n
+0000448591 00000 n
+0000448998 00000 n
+0000449324 00000 n
+0000449565 00000 n
+0000000378 00000 n
+0000000665 00000 n
+0000450457 00000 n
+0000383958 00000 n
+0000384279 00000 n
+0000384604 00000 n
+0000384925 00000 n
+0000385247 00000 n
+0000385574 00000 n
+0000385895 00000 n
+0000386220 00000 n
+0000386464 00000 n
+0000378769 00000 n
+0000071975 00000 n
+0000072242 00000 n
+0000450624 00000 n
+0000407171 00000 n
+0000144082 00000 n
+0000144638 00000 n
+0000450711 00000 n
+0000216552 00000 n
+0000216682 00000 n
+0000216995 00000 n
+0000450807 00000 n
+0000288909 00000 n
+0000289152 00000 n
+0000450976 00000 n
+0000450544 00000 n
+0000450894 00000 n
+0000451263 00000 n
+0000451679 00000 n
+0000456349 00000 n
+0000452012 00000 n
+0000455885 00000 n
+0000456063 00000 n
+0000458161 00000 n
+0000456629 00000 n
+0000457839 00000 n
+0000457887 00000 n
+trailer
+<</Root 1 0 R/Info 2 0 R/ID[<553b51934a2db140568f9f99bc2366bc><553b51934a2db140568f9f99bc2366bc>]/Size
+1139>>
+startxref
+458730
+%%EOF
diff --git a/Master/texmf-dist/doc/xelatex/xespotcolor/spotcolor-test.tex b/Master/texmf-dist/doc/xelatex/xespotcolor/spotcolor-test.tex
new file mode 100644
index 00000000000..9538301241e
--- /dev/null
+++ b/Master/texmf-dist/doc/xelatex/xespotcolor/spotcolor-test.tex
@@ -0,0 +1,50 @@
+\documentclass{article}
+\usepackage[hks,pantone]{xespotcolor}
+\usepackage{xltxtra}
+\setmainfont[Mapping=tex-text]{Minion Pro}
+\begin{document}
+ \color{blue}
+ \bf\Huge Blue text color using color package
+
+ \clearpage
+ \pagecolor{white}
+
+ \SetPageColorSpace{PANTONE}
+ \SpotColor{PANTONEGreenPC}{1.0}
+ \bf\Huge Pantone spot color
+
+ \clearpage
+ \SetPageColorSpace{HKS}
+ \SpotColor{HKS68N}{1.0}
+ \bf\Huge HKS spot color
+
+ \clearpage
+ \NewSpotColorSpace{SOMECOLORSPACE}
+ \AddSpotColor{SOMECOLORSPACE} {SOMECOLOR} {Spot\SpotSpace Color\SpotSpace Name\SpotSpace in\SpotSpace PDF} {0.5 1.0 0.51 0}
+ \SetPageColorSpace{SOMECOLORSPACE}
+ \definecolor{Spots}{spotcolor}{SOMECOLOR,1.0}
+
+ \SpotColor{SOMECOLOR}{1.0}
+ \bf\Huge Self defined spot color\\
+ Some shades are also possible:\\
+ \SpotColor{SOMECOLOR}{1.0}\rule{1cm}{1cm}\\
+ \SpotColor{SOMECOLOR}{0.9}\rule{1cm}{1cm}\\
+ \SpotColor{SOMECOLOR}{0.8}\rule{1cm}{1cm}\\
+ \SpotColor{SOMECOLOR}{0.7}\rule{1cm}{1cm}\\
+ \SpotColor{SOMECOLOR}{0.6}\rule{1cm}{1cm}\\
+ \SpotColor{SOMECOLOR}{0.5}\rule{1cm}{1cm}\\
+ \SpotColor{SOMECOLOR}{0.4}\rule{1cm}{1cm}\\
+ \SpotColor{SOMECOLOR}{0.3}\rule{1cm}{1cm}\\
+ \SpotColor{SOMECOLOR}{0.2}\rule{1cm}{1cm}\\
+ \SpotColor{SOMECOLOR}{0.1}\rule{1cm}{1cm}\\
+ \SpotColor{SOMECOLOR}{0.0}\rule{1cm}{1cm}
+
+ \clearpage
+ \pagecolor{Spots}
+ \SpotColor{SOMECOLOR}{0.1}
+ A spotcolor as background color.
+
+ \clearpage
+ \pagecolor{white}
+ \colorbox{Spots}{xxx}
+\end{document}
diff --git a/Master/texmf-dist/doc/xelatex/xespotcolor/xespotcolor.pdf b/Master/texmf-dist/doc/xelatex/xespotcolor/xespotcolor.pdf
new file mode 100644
index 00000000000..22ee859858b
--- /dev/null
+++ b/Master/texmf-dist/doc/xelatex/xespotcolor/xespotcolor.pdf
Binary files differ
diff --git a/Master/texmf-dist/source/xelatex/xespotcolor/xespotcolor.dtx b/Master/texmf-dist/source/xelatex/xespotcolor/xespotcolor.dtx
new file mode 100644
index 00000000000..847374f9785
--- /dev/null
+++ b/Master/texmf-dist/source/xelatex/xespotcolor/xespotcolor.dtx
@@ -0,0 +1,279 @@
+%% \CharacterTable
+%% {Upper-case \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z
+%% Lower-case \a\b\c\d\e\f\g\h\i\j\k\l\m\n\o\p\q\r\s\t\u\v\w\x\y\z
+%% Digits \0\1\2\3\4\5\6\7\8\9
+%% Exclamation \! Double quote \" Hash (number) \#
+%% Dollar \$ Percent \% Ampersand \&
+%% Acute accent \' Left paren \( Right paren \)
+%% Asterisk \* Plus \+ Comma \,
+%% Minus \- Point \. Solidus \/
+%% Colon \: Semicolon \; Less than \<
+%% Equals \= Greater than \> Question mark \?
+%% Commercial at \@ Left bracket \[ Backslash \\
+%% Right bracket \] Circumflex \^ Underscore \_
+%% Grave accent \` Left brace \{ Vertical bar \|
+%% Right brace \} Tilde \~}
+%%
+%\iffalse
+%
+% (c) Copyright 2014 Apostolos Syropoulos
+% This program can be redistributed and/or modified under the
+% terms of the LaTeX Project Public License Distributed from
+% http://www.latex-project.org/lppl.txt; either
+% version 1.3c of the License, or any later version.
+%
+% This work has the LPPL maintenance status `maintained'.
+%
+% Please report errors or suggestions for improvement to
+%
+% Apostolos Syropoulos (asyropoulos@yahoo.com)
+%
+%\fi
+% \CheckSum{98}
+% \iffalse This is a Metacomment
+%
+%<xespotcolor, >\ProvidesFile{xesporcolor.sty}
+%
+%<xespotcolor, > [2014/11/12 v1.0 Package `xespotcolor.sty']
+%
+% \begin{macrocode}
+%<*driver>
+\documentclass{ltxdoc}
+\GetFileInfo{xspotcolor.drv}
+\usepackage{xltxtra}
+\usepackage{fullpage}
+\begin{document}
+\setmainfont[Mapping=tex-text,Script=Greek]{Arno Pro}
+\setmonofont{UM Typewriter}
+\setsansfont[Mapping=tex-text]{GFS Neohellenic}
+ \DocInput{xespotcolor.dtx}
+\end{document}
+%</driver>
+% \end{macrocode}
+% \fi
+%\MakeShortVerb{\|}
+%\StopEventually{}
+%\title{The \textsf{xespotcolor} package}
+%\author{Apostolos Syropoulos\\
+% Xanthi, Greece\\
+% \texttt{asyropoulos@yahoo.com}}
+% \date{2014/11/12}
+%\maketitle
+% \begin{abstract}
+% A spot color is one that is printed with its own ink. Typically, printers use spot colors
+% in the production of books or other printed material. The \textsf{spotcolor} package
+% by Jens Elstner is a first attempt to introduce the use of spot colors with pdfLaTeX.
+% The \textsf{xespotcolor} package is a reimplementation of this package so to be usable with
+% \XeLaTeX. As such, it has the same user interface and the same capabilities.
+%\end{abstract}
+%
+%\section{Introduction}
+%
+% Using spot colors with \XeLaTeX\ is very important since most printers use spot colors in the
+% production of books and magazines. The \textsf{spotcolor} package makes it possible to use
+% spot colors with pdf\LaTeX\ but it cannot be used with \XeLaTeX. In the following I first
+% describe how to translate certain pdf\TeX\ code snippets into \XeTeX\ and then I present the
+% code of the package. Thus one can view this text as a short tutorial on how to port pdf\TeX\
+% code to \XeTeX\ as well as a description of the functionality of the \textsf{xespotcolor} package.
+% Since the package is a port of a pdf\TeX\ package, it has the same functionality as the original
+% package.
+%
+% \section{Porting pdf\TeX\ code to \XeTeX}
+%
+% Translating pdf\TeX\ code, which adds PDF code to the output file, to \XeTeX\ is not a straightforward exercise
+% since pdf\TeX\ provides primitive commands that directly access and modify the structure of the resulting PDF file.
+% In the case of \XeTeX\ one has to use |\special| commands that pass code to the driver. In this particular case,
+% I had to translate code snippets like the following one:
+% \begin{center}
+% |1. \newcount\theCNTa |\\
+% |2. \newcount\theCNTb |\\
+% |3. \def\obj{ 0 R}% |\\
+% |4. \pdfobj{Raw PDF code 1}% |\\
+% |5. \theCNTa=\the\pdflastobj% |\\
+% |6. \pdfobj{Raw PDF code \the\theCNTa \obj}% |\\
+% |7. \theCNTb=\the\pdflastobj% |\\
+% |8. \pdfrefobj\theCNTa% |\\
+% |9. \pdfrefobj\theCNTb% |\\
+% \end{center}
+% Here pdf\TeX\ creates two PDF objects, where the second contains a reference to the first one. The two counters
+% defined in lines 1 and 2 are used to reference these two objects. The macro on line 3 is used to create code
+% that references an object. The commands on lines 5 and 7 assign the object reference numbers and these numbers are
+% used by the |\pdfrefobj| primitive. After some experimentation and some… Googling, I have found out that the following
+% \XeTeX\ code is a reasonable translation of the previous code snipper:
+% \begin{center}
+% |\newcount\CNT |\\
+% |\newtoks\TOK |\\
+% |\TOK={@TOK \the\CNT}% |\\
+% |\advance\CNT by1% |\\
+% |\edef\A{\the\TOK Raw PDF code 1}%|\\
+% |\edef\B{Raw PDF code \the\TOK}% |\\
+% |\special{pdf:obj \A}% |\\
+% |\special{pdf:obj \B}% |\\
+% \end{center}
+% The two |\edef|initions are used to do the work done by |\pdfobj|. Note that here there I introduce only
+% one unique object and the first two lines define a counter and a token variable. The token variable uses
+% the counter to create a unique identifier, which is passed to the driver. This way the driver will
+% create a number of different objects, if required to do so. The last two commands pass the raw PDF
+% code and the unique identifier to the driver.
+%
+% The original package contains a definition identical to the following one:
+% \begin{center}
+% |\def\R#1{% |\\
+% | \edef\act{\noexpand\pdfpageresources={\the\pdfpageresources\space |\\
+% | /ColorSpace<<#1>>}} |\\
+% | \act} |\\
+% \end{center}
+% The net effect of this command is to add a specific color space to the page resources of all subsequent pages.
+% Unfortunately, when the following code is executed, it adds the particular color space to the current page only:
+% \begin{center}
+% |\def\R#1{% |\\
+% | \special{pdf:put @resources <</ColorSpace <<#1>>>>}}|\\
+% \end{center}
+% In order to add the color space to all subsequent pages, I had to use the |\AddEverypageHook| command of
+% package \textsf{everypage}. This command modifies the contents of the ship-out box by adding to it its argument.
+% And this is done for every single page. Also, one should note how the page resources are augmented by the two
+% systems. In the case of \XeTeX\ we have to create a PDF dictionary that is merged with the current page resources,
+% while in the case of pdf\TeX\ one just ``appends'' what is supposed to be included in the page resources dictionary.
+% Let me now proceed with the description of the source code of the package.
+%
+% \section{The Source Code and Package Usage}
+% The first part of the code is the identification part.
+% \begin{macrocode}
+%<*xespotcolor>
+\NeedsTeXFormat{LaTeX2e}
+\ProvidesPackage{xespotcolor}
+ [2014/11/12 v.1.0, Package for adding Spot Color support to XeLaTeX.]
+% \end{macrocode}
+% The package needs three packages in to operate properly: \textsf{graphics}, \textsf{color}, and \textsf{everypage}.
+% The first two packages must be loaded with the \texttt{xetex} option, since auto-detection does not work in this case.
+% \begin{macrocode}
+\RequirePackage[xetex]{graphics}
+\RequirePackage[xetex]{color}
+\RequirePackage{everypage}
+% \end{macrocode}
+% The original package defines two ``boolean'' variables that are set when the package is loaded with the \texttt{hks} and
+% the \texttt{pantone} options, respectively. When these variables are true, then the package pre-loads color values in the
+% corresponding color space (i.e., ``hks'' and ``pantone''). These color values are stored in two separate source files.
+% These files are part of the original package distribution.
+% \begin{macrocode}
+\newif\ifhks\hksfalse
+\newif\ifpantone\pantonefalse
+\DeclareOption{hks}{\hkstrue}
+\DeclareOption{pantone}{\pantonetrue}
+\ProcessOptions
+% \end{macrocode}
+%
+% The |\NewSpotColorSpace| command should be used to define a new color space for spot colors. The new color space can be
+% any imaginable word! This color space is the place where a new spot color will live. The \texttt{hks} and
+% the \texttt{pantone} options create two color spaces where the corresponding colors live.
+% \begin{macrocode}
+\def\NewSpotColorSpace#1{%
+ \expandafter\newtoks\csname #1\endcsname%
+ \csname #1\endcsname{}%
+}
+% \end{macrocode}
+% The |\AddSpotColor| macro should be used to introduce a new spot color. Thus it is one of the first commands on should play
+% with when using this package. This command takes four parameters---the name of a new color
+% space, which has been declared with |\NewSpotColorSpace|, the name of a new color, a name which will be used internally, and a
+% CMYK representation of the new color. For example, here is a typical use of this macro:
+% \begin{center}
+%|\AddSpotColor{NEWCS}{NEWCOLOR}{Name\SpotSpace in\SpotSpace PDF}{0.5 1.0 0.51 0}|
+% \end{center}
+% Macro |\SpotSpace| is used to introduce blanks in names. According to the PDF standard a blank is denoted by the
+% character sequence |#20| and this is the reason why |\SpotSpace| is defined as follows:
+% \begin{macrocode}
+\catcode`\#=12%
+\def\SpotSpace{#20}
+\catcode`\#=6%
+% \end{macrocode}
+%The macro |\csgrab| is quite unsual---it takes two arguments and creates a sequence of them.
+% \begin{macrocode}
+\gdef\csgrab#1#2{#2\expandafter{\the#2 #1}}%
+% \end{macrocode}
+%Note that this command should never be used by an ordinary package user.
+%
+% The following variables are used in the definition of macro |\AddSpotColor|. Their functionality has been
+% described in the previous section.
+% \begin{macrocode}
+\newcount\colorprofilecnt
+\newtoks\mycolorprofilename
+% \end{macrocode}
+% Macro |\AddSpotColor| first defines a new color profile by assigning a value to |\mycolorprofilename|. The name
+% consists of the word |@mycolorprofile| followed by an integer. And since all names must be distinct
+% the macro increments the value of the |\colorprofilecnt| counter by one.
+% \begin{macrocode}
+\def\AddSpotColor#1#2#3#4{%
+ \mycolorprofilename={@mycolorprofile\the\colorprofilecnt}%
+ \advance\colorprofilecnt by1%
+% \end{macrocode}
+% The following two macros expand to PDF instructions that define the spot color. The PDF instructions are copied verbatim from
+% the original \textsf{spotcolor} package.
+% \begin{macrocode}
+ \edef\mycolorprofile{\the\mycolorprofilename
+ <</C0[0 0 0 0]/FunctionType 2/C1[#4]/Domain[0 1]/N 1>>}%
+ \edef\mycolor{[/Separation/#3 /DeviceCMYK \the\mycolorprofilename]}%
+% \end{macrocode}
+% The next two lines have been copied verbatim from the original macro definition.
+% \begin{macrocode}
+ \edef\tempcs{/#2 \mycolor}%
+ \expandafter\csgrab\expandafter{\tempcs}{\csname #1\endcsname}%
+% \end{macrocode}
+% In the last part of the macro definition, the driver is instructed to build two objects which should contain the definition of
+% the new spot color.
+% \begin{macrocode}
+ \special{pdf:obj \mycolorprofile}%
+ \special{pdf:obj \mycolor}%
+}
+% \end{macrocode}
+%
+% Command |\SetPageColorResource| is used by command |\SetPageColorSpace| to set the color space.
+% The |\special| command below sets the page resources only for the current page. Since the color
+% space should be visible to every subsequent page, I have opted to use command |\AddEverypageHook| of the
+% \textsf{everypage} package.
+% \begin{macrocode}
+\def\SetPageColorResource#1{%
+ \AddEverypageHook{\special{pdf:put @resources <</ColorSpace <<#1>>>>}}%
+}%
+\def\SetPageColorSpace#1{%
+ \expandafter\SetPageColorResource\expandafter{\the\csname #1\endcsname}%
+}%
+% \end{macrocode}
+% If a user wants to set a spot color as the default color, she should use the |\SpotColor| command:
+% \begin{macrocode}
+\def\SpotColor#1#2{%
+ \special{pdf:literal /#1 cs /#1 CS #2 sc #2 SC}%
+ \aftergroup\reset@color%
+}%
+% \end{macrocode}
+% The commands |\color@spotcolor| and |\c@lor@@spotcolor| are ``low-level'' commands and should never be used by
+% anyone. These commands are used to define new spot colors. They are automatically
+% executed everytime a someone uses a command that defines a new spot color:
+% \begin{center}
+% |\definecolor{Spots}{spotcolor}{SPCOLOR,1.0}|
+% \end{center}
+% Note that the second argument must always be |spotcolor|. In addition, this command is meaningful only when
+% one has defined a few things using command like the following ones:
+%\begin{center}
+%\begin{tabular}{l}
+%|\NewSpotColorSpace{SPCOLORSPACE}|\\
+%|\AddSpotColor{SPCOLORSPACE}{SPCOLOR}{Some\SpotSpace Name}{0.5 1.0 0.51 0}|\\
+%|\SetPageColorSpace{SPCOLORSPACE}|\\
+%\end{tabular}
+%\end{center}
+% The code that follows has been taken and subsequently modified from \texttt{xetex.def},
+% which is {\em not yet} part of the Standard LaTeX ``Graphics Bundle.'' Note that these command work only
+% if the \texttt{xdvipdfm-x} driver has been patched to recognize the \texttt{spot} command.
+% \begin{macrocode}
+\def\color@spotcolor#1#2{\c@lor@@spotcolor#2\@@#1}
+\def\c@lor@@spotcolor#1,#2\@@#3{%
+ \c@lor@arg{#2}%
+ \edef#3{spot #1 #2}%
+}
+% \end{macrocode}
+% If pantone or hks option specified then load corresponding color tables
+% \begin{macrocode}
+\ifhks\input{spotcolorhks}\fi
+\ifpantone\input{spotcolorpantone}\fi
+%</xespotcolor>
+% \end{macrocode}
+% \Finale
diff --git a/Master/texmf-dist/source/xelatex/xespotcolor/xespotcolor.ins b/Master/texmf-dist/source/xelatex/xespotcolor/xespotcolor.ins
new file mode 100644
index 00000000000..a801d2ddafb
--- /dev/null
+++ b/Master/texmf-dist/source/xelatex/xespotcolor/xespotcolor.ins
@@ -0,0 +1,54 @@
+%% Copyright 2014 Apostolos Syropoulos
+%%
+%% This file is part of the `decimal' package.
+%% You are not allowed to modify its contents.
+%%
+\def\filedate{2014/11/13}
+\def\batchfile{xespotcolor.ins}
+\input docstrip.tex
+
+{\ifx\generate\undefined
+\Msg{**********************************************}
+\Msg{*}
+\Msg{* This installation requires docstrip}
+\Msg{* version 2.3c or later.}
+\Msg{*}
+\Msg{* An older version of docstrip has been input}
+\Msg{*}
+\Msg{**********************************************}
+\errhelp{Move or rename old docstrip.tex.}
+\errmessage{Old docstrip in input path}
+\batchmode
+\csname @@end\endcsname
+\fi}
+
+\preamble
+
+ (c) Copyright 2007—2013 Apostolos Syropoulos
+ This program can be redistributed and/or modified under the
+ terms of the LaTeX Project Public License Distributed from
+ http://www.latex-project.org/lppl.txt; either
+ version 1.3c of the License, or any later version.
+
+ This work has the LPPL maintenance status `maintained'.
+
+ Please report errors or suggestions for improvement to
+
+ Apostolos Syropoulos (asyropoulos@yahoo.com)
+
+
+\endpreamble
+
+
+\keepsilent
+
+\generate{\generateFile{xespotcolor.sty}{f}{\from{xespotcolor.dtx}{xespotcolor}}}
+\postamble
+\endpostamble
+\Msg{**********************************************************}
+\Msg{* To finish installation you have to copy}
+\Msg{* the generated .sty file in the appropriate}
+\Msg{* directory and then to rehash your TeX system}
+\Msg{* Happy XeTeXing!}
+\Msg{**********************************************************}
+\endinput
diff --git a/Master/texmf-dist/tex/xelatex/xespotcolor/xespotcolor.sty b/Master/texmf-dist/tex/xelatex/xespotcolor/xespotcolor.sty
new file mode 100644
index 00000000000..9481a1dc24b
--- /dev/null
+++ b/Master/texmf-dist/tex/xelatex/xespotcolor/xespotcolor.sty
@@ -0,0 +1,91 @@
+%%
+%% This is file `xespotcolor.sty',
+%% generated with the docstrip utility.
+%%
+%% The original source files were:
+%%
+%% xespotcolor.dtx (with options: `xespotcolor')
+%%
+%% (c) Copyright 2007—2013 Apostolos Syropoulos
+%% This program can be redistributed and/or modified under the
+%% terms of the LaTeX Project Public License Distributed from
+%% http://www.latex-project.org/lppl.txt; either
+%% version 1.3c of the License, or any later version.
+%%
+%% This work has the LPPL maintenance status `maintained'.
+%%
+%% Please report errors or suggestions for improvement to
+%%
+%% Apostolos Syropoulos (asyropoulos@yahoo.com)
+%%
+%%
+%% \CharacterTable
+%% {Upper-case \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z
+%% Lower-case \a\b\c\d\e\f\g\h\i\j\k\l\m\n\o\p\q\r\s\t\u\v\w\x\y\z
+%% Digits \0\1\2\3\4\5\6\7\8\9
+%% Exclamation \! Double quote \" Hash (number) \#
+%% Dollar \$ Percent \% Ampersand \&
+%% Acute accent \' Left paren \( Right paren \)
+%% Asterisk \* Plus \+ Comma \,
+%% Minus \- Point \. Solidus \/
+%% Colon \: Semicolon \; Less than \<
+%% Equals \= Greater than \> Question mark \?
+%% Commercial at \@ Left bracket \[ Backslash \\
+%% Right bracket \] Circumflex \^ Underscore \_
+%% Grave accent \` Left brace \{ Vertical bar \|
+%% Right brace \} Tilde \~}
+%%
+\ProvidesFile{xesporcolor.sty}
+ [2014/11/12 v1.0 Package `xespotcolor.sty']
+\NeedsTeXFormat{LaTeX2e}
+\ProvidesPackage{xespotcolor}
+ [2014/11/12 v.1.0, Package for adding Spot Color support to XeLaTeX.]
+\RequirePackage[xetex]{graphics}
+\RequirePackage[xetex]{color}
+\RequirePackage{everypage}
+\newif\ifhks\hksfalse
+\newif\ifpantone\pantonefalse
+\DeclareOption{hks}{\hkstrue}
+\DeclareOption{pantone}{\pantonetrue}
+\ProcessOptions
+\def\NewSpotColorSpace#1{%
+ \expandafter\newtoks\csname #1\endcsname%
+ \csname #1\endcsname{}%
+}
+\catcode`\#=12%
+\def\SpotSpace{#20}
+\catcode`\#=6%
+\gdef\csgrab#1#2{#2\expandafter{\the#2 #1}}%
+\newcount\colorprofilecnt
+\newtoks\mycolorprofilename
+\def\AddSpotColor#1#2#3#4{%
+ \mycolorprofilename={@mycolorprofile\the\colorprofilecnt}%
+ \advance\colorprofilecnt by1%
+ \edef\mycolorprofile{\the\mycolorprofilename
+ <</C0[0 0 0 0]/FunctionType 2/C1[#4]/Domain[0 1]/N 1>>}%
+ \edef\mycolor{[/Separation/#3 /DeviceCMYK \the\mycolorprofilename]}%
+ \edef\tempcs{/#2 \mycolor}%
+ \expandafter\csgrab\expandafter{\tempcs}{\csname #1\endcsname}%
+ \special{pdf:obj \mycolorprofile}%
+ \special{pdf:obj \mycolor}%
+}
+\def\SetPageColorResource#1{%
+ \AddEverypageHook{\special{pdf:put @resources <</ColorSpace <<#1>>>>}}%
+}%
+\def\SetPageColorSpace#1{%
+\expandafter\SetPageColorResource\expandafter{\the\csname #1\endcsname}%
+}%
+\def\SpotColor#1#2{%
+\special{pdf:literal /#1 cs /#1 CS #2 sc #2 SC}%
+ \aftergroup\reset@color%
+}%
+\def\color@spotcolor#1#2{\c@lor@@spotcolor#2\@@#1}
+\def\c@lor@@spotcolor#1,#2\@@#3{%
+ \c@lor@arg{#2}%
+ \edef#3{spot #1 #2}%
+}
+\ifhks\input{spotcolorhks}\fi
+\ifpantone\input{spotcolorpantone}\fi
+\endinput
+%%
+%% End of file `xespotcolor.sty'.
diff --git a/Master/tlpkg/bin/tlpkg-ctan-check b/Master/tlpkg/bin/tlpkg-ctan-check
index adf114ee82b..d6209515c35 100755
--- a/Master/tlpkg/bin/tlpkg-ctan-check
+++ b/Master/tlpkg/bin/tlpkg-ctan-check
@@ -543,7 +543,7 @@ my @TLP_working = qw(
wnri wnri-latex wordlike
wrapfig wsemclassic wsuipa
xargs xcharter xcite xcjk2uni xcolor xcomment xcookybooky xdoc
- xecjk xecolor xecyr xeindex xepersian xesearch
+ xecjk xecolor xecyr xeindex xepersian xesearch xespotcolor
xetex-def xetex-devanagari xetex-itrans xetex-pstricks xetex-tibetan
xetexfontinfo xetexko
xetexref xevlna xfor xgreek xhfill
diff --git a/Master/tlpkg/tlpsrc/collection-xetex.tlpsrc b/Master/tlpkg/tlpsrc/collection-xetex.tlpsrc
index 1b5edad301d..92d63fe338f 100644
--- a/Master/tlpkg/tlpsrc/collection-xetex.tlpsrc
+++ b/Master/tlpkg/tlpsrc/collection-xetex.tlpsrc
@@ -28,6 +28,7 @@ depend xecyr
depend xeindex
depend xepersian
depend xesearch
+depend xespotcolor
depend xetex
depend xetex-def
depend xetex-itrans
diff --git a/Master/tlpkg/tlpsrc/xespotcolor.tlpsrc b/Master/tlpkg/tlpsrc/xespotcolor.tlpsrc
new file mode 100644
index 00000000000..e69de29bb2d
--- /dev/null
+++ b/Master/tlpkg/tlpsrc/xespotcolor.tlpsrc