From 64ec42e825dcc823ee05164bebdee0c3dcf9e3c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Terr=C3=B3n?= Date: Sat, 7 Mar 2020 22:05:36 +0100 Subject: [PATCH 01/31] Ignore keywords mapping to None in random_data() --- test/test_fitsimage.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/test_fitsimage.py b/test/test_fitsimage.py index cbaddd4..9ba2f1c 100644 --- a/test/test_fitsimage.py +++ b/test/test_fitsimage.py @@ -99,6 +99,11 @@ def random_data(cls, **keywords): """ + # Ignore keywords mapping to None. + for k, v in keywords.items(): + if v is None: + keywords.pop(k) + x_size = random.randint(cls.MIN_SIZE, cls.MAX_SIZE) y_size = random.randint(cls.MIN_SIZE, cls.MAX_SIZE) path = cls.mkfits(x_size, y_size, **keywords) From e199535e02f4b7b3888027b3165843df82ca0d17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Terr=C3=B3n?= Date: Sat, 7 Mar 2020 23:21:11 +0100 Subject: [PATCH 02/31] Refactor test_date_and_year() into Abseil's parameterized tests Also, hardcode expected values instead of using helper functions strptime_utc() and unstrip(), per https://testing.googleblog.com/2014/07/testing-on-toilet-dont-put-logic-in.html (Don't Put Logic in Tests). --- test/test_fitsimage.py | 419 +++++++++++++++++++++-------------------- 1 file changed, 212 insertions(+), 207 deletions(-) diff --git a/test/test_fitsimage.py b/test/test_fitsimage.py index 9ba2f1c..a8ee7b2 100644 --- a/test/test_fitsimage.py +++ b/test/test_fitsimage.py @@ -18,6 +18,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . +import absl.testing.parameterized as parameterized import datetime import calendar import numpy.random @@ -53,7 +54,7 @@ def __exit__(self, *args): os.unlink(self.path) -class FITSImageTest(unittest.TestCase): +class FITSImageTest(parameterized.TestCase): MIN_PIXEL_VALUE = 0 MAX_PIXEL_VALUE = 65535 @@ -348,220 +349,224 @@ def test_delete_keyword(self): with self.assertRaises(KeyError): img.read_keyword('HIERARCH ' + keyword) - def test_date_and_year(self): - - def strptime_utc(date_string): - """ Parse a string representing a UTC time according to strptime's - format '%Y-%m-%d %H:%M:%S.%f' and return it in seconds since the - Unix epoch. Note that '%s' is not a documented option to strftime() - as it is OS dependent, but it should work on any decent system.""" - - format_ = "%Y-%m-%d %H:%M:%S.%f" - dt = datetime.datetime.strptime(date_string, format_) - struct_time = dt.utctimetuple() - # strftime('.%f') because struct_time does not store fractions - return calendar.timegm(struct_time) + float(dt.strftime('.%f')) - - def unstrip(str_, max_whitespaces = 5): - """ Return a copy of 'str' with leading and trailing whitespaces. - The number of whitespaces on each side is a random number in the - range [1, max_whitespaces] """ - - leading = ' ' * random.randint(1, max_whitespaces) - trailing = ' ' * random.randint(1, max_whitespaces) - return '%s%s%s' % (leading, str_, trailing) - - # (1) The ideal case: date format 'yyyy-mm-ddTHH:MM:SS.sss' - # Start of observation = 2009-06-12 21:12:47.238, EXPTIME = 1505 - # 2009-06-12 21:12:47.238 + (00:25:05 / 2) = - # 2009-06-12 21:12:47.238 + 00:12:32.5 = - # 2009-06-12 21:25:19.738 UTC ~= - # 2009.44628104 - - keywords = {'DATE-OBS' : '2009-06-12T21:12:47.238', - 'EXPTIME' : 1505} - with self.random(**keywords) as img: - expected_date = strptime_utc("2009-06-12 21:25:19.738") - expected_year = 2009.44628104 - self.assertAlmostEqual(expected_date, img.date()) - self.assertAlmostEqual(expected_year, img.year()) - - # (2) Format 'yyyy-mm-ddTHH:MM:SS', without fractions of a second - # Start of observation = 1998-11-29 02:53:21, EXPTIME = 1834 - # 1998-11-29 02:53:21 + (0:30:34 / 2) = - # 1998-11-29 02:53:21 + 0:15:17 = - # 1998-11-29 03:08:38 UTC ~= - # 1998.90994793 - - keywords = {'DATE-OBS' : '1998-11-29T02:53:21', - 'EXPTIME' : 1834} + @parameterized.named_parameters( + { + 'testcase_name': 'yyyy-mm-ddTHH:MM:SS.sss', + 'date': '2009-06-12T21:12:47.238', + 'time': None, + 'exptime': 1505, + 'want_date': 1244841919.738, # 2009-06-12 21:25:19.738 + 'want_year': 2009.44628104, + },{ + 'testcase_name': 'yyyy-mm-ddTHH:MM:SS', + 'date': '1998-11-29T02:53:21', + 'time': None, + 'exptime': 1834, + 'want_date': 912308918.0, # 1998-11-29 03:08:38.0 + 'want_year': 1998.90994793, + },{ + 'testcase_name': 'yyyy-mm-ddTHH:MM:SS (leading and trailing whitespaces)', + 'date': ' 1998-11-29T02:53:21 ', + 'time': None, + 'exptime': 1834, + 'want_date': 912308918.0, # 1998-11-29 03:08:38.0 + 'want_year': 1998.90994793, + },{ + 'testcase_name': 'yyyy-mm-ddTHH:MM:SS.sss (midpoint falls in the following year)', + 'date': '1999-12-31T23:53:12.565', + 'time': None, + 'exptime': 4312.56, + 'want_date': 946686548.845, # 2000-01-01 00:29:08.845 + 'want_year': 2000.00005528, + },{ + 'testcase_name': 'yyyy-mm-dd and HH:MM:SS.sss', + 'date': '2003-03-28', + 'time': '04:23:17.87', + 'exptime': 1357.25, + 'want_date': 1048826076.495, # 2003-03-28 04:34:36.495 + 'want_year': 2003.23613889, + },{ + 'testcase_name': 'yyyy-mm-dd and HH:MM:SS.sss (leading and trailing whitespaces)', + 'date': ' 2003-03-28 ', + 'time': ' 04:23:17.87 ', + 'exptime': 1357.25, + 'want_date': 1048826076.495, # 2003-03-28 04:34:36.495 + 'want_year': 2003.23613889, + },{ + 'testcase_name': 'yyyy-mm-dd_and_HH:MM:SS', + 'date': '2011-06-13', + 'time': '19:04:28', + 'exptime': 2341, + 'want_date': 1307993038.5, # 2011-06-13 19:23:58.5 + 'want_year': 2011.44878989, + },{ + 'testcase_name': 'yy/mm/dd', + 'date': '89/08/30', # interpreted as 1989 + 'time': '01:32:22.14', + 'exptime': 83.55, + 'want_date': 620443983.915, # 1989-08-30 01:33:03.915 + 'want_year': 1989.66045101, + },{ + 'testcase_name': 'yy/mm/dd (another example)', + 'date': '13/04/20', # interpreted as 1913 + 'time': '22:58:12.1', + 'exptime': 1328, + 'want_date': -1789260643.9, # 1913-04-20 23:09:16.1 + 'want_year': 1913.30127334, + }, + ) + def test_date_and_year(self, date, time, exptime, want_date, want_year): + keywords = { + 'DATE-OBS': date, + 'TIME-OBS': time, + 'EXPTIME': exptime, + } with self.random(**keywords) as img: - expected_date = strptime_utc("1998-11-29 03:08:38.0") - expected_year = 1998.90994793 - self.assertAlmostEqual(expected_date, img.date()) - self.assertAlmostEqual(expected_year, img.year()) + self.assertAlmostEqual(img.date(), want_date) + self.assertAlmostEqual(img.year(), want_year) - # Repeat (2) with leading and trailing whitespaces - keywords['DATE-OBS'] = unstrip(keywords['DATE-OBS']) - with self.random(**keywords) as img: - self.assertAlmostEqual(expected_date, img.date()) - self.assertAlmostEqual(expected_year, img.year()) - - # (3) Another one with fractions of a second, turn to a new year - # Start of observation = 1999-12-31 23:53:12.565, EXPTIME = 4312.56 - # 1999-12-31 23:53:12.565 + (1:11:52.56 / 2) = - # 1999-12-31 23:53:12.565 + 0:35:56.28 = - # 2000-01-01 00:29:08.845 UTC =~ - # 2000.00005528 - - keywords = {'DATE-OBS' : '1999-12-31T23:53:12.565', - 'EXPTIME' : 4312.56} - with self.random(**keywords) as img: - expected_date = strptime_utc("2000-01-01 00:29:08.845") - expected_year = 2000.00005528 - self.assertAlmostEqual(expected_date, img.date()) - self.assertAlmostEqual(expected_year, img.year()) - - # (4) Format 'yyyy-mm-dd', HH:MM:SS.sss read from TIME-OBS - # Start of observation = 2003-03-28 04:23:17.87, EXPTIME = 1357.25 - # 2003-03-28 04:23:17.87 + (0:22:37.25 / 2) = - # 2003-03-28 04:23:17.87 + 0:11:18.625 = - # 2003-03-28 04:34:36.495 UTC ~= - # 2003.23613889 - - keywords = {'DATE-OBS' : '2003-03-28', - 'TIME-OBS' : '04:23:17.87', - 'EXPTIME' : 1357.25} - with self.random(**keywords) as img: - expected_date = strptime_utc("2003-03-28 04:34:36.495") - expected_year = 2003.23613889 - self.assertAlmostEqual(expected_date, img.date()) - self.assertAlmostEqual(expected_year, img.year()) - - # Repeat (4) with leading and trailing whitespaces - keywords['DATE-OBS'] = unstrip(keywords['DATE-OBS']) - keywords['TIME-OBS'] = unstrip(keywords['TIME-OBS']) + def test_date_and_year_non_standard_keywords(self): + # The FITS image does not use standard keywords, but date() and year() + # can be pointed to read the date, time and exposure duration from the + # right keywords. + keywords = { + 'DATE': '2011-06-13', + 'TIME': '19:04:28', + 'EXPOSURE': 2341, + } with self.random(**keywords) as img: - self.assertAlmostEqual(expected_date, img.date()) - self.assertAlmostEqual(expected_year, img.year()) - - # (5) Another 'yyyy-mm-dd', HH:MM:SS (no fractions) read from TIME-OBS - # Start of observation = 2011-06-13 19:04:28, EXPTIME = 2341 - # 2011-06-13 19:04:28 + (0:39:01 / 2) = - # 2011-06-13 19:04:28 + 0:19:30.5 = - # 2011-06-13 19:23:58.5 UTC ~= - # 2011.44878989 - - keywords = {'DATE-OBS' : '2011-06-13', - 'TIME-OBS' : '19:04:28', - 'EXPTIME' : 2341} + got_date = img.date( + date_keyword='DATE', + time_keyword='TIME', + exp_keyword='EXPOSURE', + ) + got_year = img.year( + date_keyword='DATE', + time_keyword='TIME', + exp_keyword='EXPOSURE', + ) + self.assertAlmostEqual(got_date, 1307993038.5) # 2011-06-13 19:23:58.5 + self.assertAlmostEqual(got_year, 2011.44878989) + + @parameterized.named_parameters( + { + 'testcase_name': 'Missing DATE-OBS', + 'date': None, + 'exptime': 1500, + 'want': KeyError, + },{ + 'testcase_name': 'Missing EXPTIME', + 'date': '1988-09-13T21:45:19', + 'exptime': None, + 'want': KeyError, + },{ + # DATE-OBS in the 'yyyy-mm-dd' format, so the time at the start of + # the observation must be read from TIME-OBS (which is not found). + 'testcase_name': 'Missing TIME-OBS', + 'date': '1993-04-29', + 'exptime': 1200, + 'want': KeyError, + }, + ) + def test_date_and_year_missing_keyword(self, date, exptime, want): + keywords = { + 'DATE-OBS': date, + 'EXPTIME': exptime, + } with self.random(**keywords) as img: - expected_date = strptime_utc("2011-06-13 19:23:58.5") - expected_year = 2011.44878989 - self.assertAlmostEqual(expected_date, img.date()) - self.assertAlmostEqual(expected_year, img.year()) - - # (6) Repeat (5), but using different, non-standard keywords - keywords['DATE'] = keywords.pop('DATE-OBS') - keywords['TIME'] = keywords.pop('TIME-OBS') - keywords['EXPOSURE'] = keywords.pop('EXPTIME') + with self.assertRaises(want): + img.date() + with self.assertRaises(want): + img.year() + + @parameterized.named_parameters( + { + 'testcase_name': 'Slashes instead of dashes', + 'date': '1993/04/29T12:42:23', + },{ + 'testcase_name': "'T' surrounded by whitespaces", + 'date': '1993-04-29 T 12:42:23', + },{ + 'testcase_name': "No 'T' between date and time", + 'date': '1993-04-29 12:42:23', + },{ + 'testcase_name': 'Whitespaces instead of colons', + 'date': '1993-04-29T12 42 23', + },{ + 'testcase_name': "Nothing after the 'T'", + 'date': '1993-04-29T', + },{ + 'testcase_name': "Year missing", + 'date': '04-29T12:42:23', + },{ + 'testcase_name': 'Time present but date missing', + 'date': '12:42:23', + },{ + 'testcase_name': 'ctime() format', + 'date': 'Thu Apr 29 12:42:23 1993', + }, + ) + def test_date_and_year_nonstandard_DATE_OBS(self, date): + keywords = { + 'DATE-OBS': date, + 'EXPTIME': 1800, + } with self.random(**keywords) as img: - kwargs = dict(date_keyword = 'DATE', - time_keyword = 'TIME', - exp_keyword = 'EXPOSURE') - self.assertAlmostEqual(expected_date, img.date(**kwargs)) - self.assertAlmostEqual(expected_year, img.year(**kwargs)) - - # (7) Format 'yy/mm/dd' (only for dates from 1900 through 1999) - # The year 13, when this format is used, is interpreted as 1913 - # Start of observation = 1913-04-20 22:58:12.1, EXPTIME = 1328 - # 1913-04-20 22:58:12.1 + (0:22:08 / 2) = - # 1913-04-20 22:58:12.1 + 0:11:04 = - # 1913-04-20 23:09:16.1 UTC ~= - # 1913.30127334 - + with self.assertRaisesRegexp(fitsimage.NonStandardFITS, 'DATE-OBS'): + img.date() + with self.assertRaisesRegexp(fitsimage.NonStandardFITS, 'DATE-OBS'): + img.year() + + @parameterized.named_parameters( + { + 'testcase_name': 'Slashes instead of colons', + 'time': '12/42/23', + },{ + 'testcase_name': 'Whitespaces instead of colons', + 'time': '12 42 23', + },{ + 'testcase_name': 'Seconds missing', + 'time': '12:42', + },{ + 'testcase_name': "'h', 'm' and 's' instead of colons", + 'time': '12h42m23s', + },{ + 'testcase_name': 'Empty', + 'time': '', + }, + ) + def test_date_and_year_nonstandard_TIME_OBS(self, time): keywords = { - 'DATE-OBS' : '13/04/20', - 'TIME-OBS' : '22:58:12.1', - 'EXPTIME' : 1328} + 'DATE-OBS': '1998-11-29', + 'TIME-OBS': time, + 'EXPTIME': 1800, + } with self.random(**keywords) as img: - expected_date = strptime_utc("1913-04-20 23:09:16.1") - expected_year = 1913.30127334 - self.assertAlmostEqual(expected_date, img.date()) - self.assertAlmostEqual(expected_year, img.year()) - - # (8) Another 'yy/mm/dd' format: year 89 means here 1989 - # Start of observation = 1989-08-30 01:32:22.14, EXPTIME = 83.55 - # 1989-08-30 01:32:22.14 + (0:01:23.55 / 2) = - # 1989-08-30 01:32:22.14 + 0:00:41.775 = - # 1989-08-30 01:33:03.915 ~= - # 1989.66045101 - - keywords = { - 'DATE-OBS' : '89/08/30', - 'TIME-OBS' : '01:32:22.14', - 'EXPTIME' : 83.55} + with self.assertRaisesRegexp(fitsimage.NonStandardFITS, 'TIME-OBS'): + img.date() + with self.assertRaisesRegexp(fitsimage.NonStandardFITS, 'TIME-OBS'): + img.year() + + @parameterized.named_parameters( + { + 'testcase_name': 'Not a number', + 'exptime': 'unknown', + },{ + 'testcase_name': 'Empty', + 'exptime': '', + }, + ) + def test_date_and_year_nonstandard_EXPTIME(self, exptime): + keywords = { + 'DATE-OBS': '2003-03-28', + 'TIME-OBS': '04:23:17.87', + 'EXPTIME': exptime, + } with self.random(**keywords) as img: - expected_date = strptime_utc("1989-08-30 01:33:03.915") - expected_year = 1989.66045101 - self.assertAlmostEqual(expected_date, img.date()) - self.assertAlmostEqual(expected_year, img.year()) - - def assertRaised(exception, keywords): - """ Assert that a random FITS image with the 'keywords' FITS - keywords raises 'exception' when both its date() and year() - methods are called.""" - with self.random(**keywords) as img: - with self.assertRaises(exception): - img.date() - with self.assertRaises(exception): - img.year() - - # Keyword DATE-OBS not found - keywords = {'EXPTIME' : 1500} - assertRaised(KeyError, keywords) - - # Keyword EXPTIME not found - keywords = {'DATE-OBS' : '1988-09-13T21:45:19'} - assertRaised(KeyError, keywords) - - # DATE-OBS in the 'yyyy-mm-dd' format, so the time at the start of - # the observation must be read from TIME-OBS (which is not found) - keywords = {'DATE-OBS' : '1993-04-29', 'EXPTIME' : 1200} - assertRaised(KeyError, keywords) - - # Both DATE-OBS and EXPTIME exist, but the latter does not contain a - # floating-point number giving the exposure time in units of seconds. - keywords = {'DATE-OBS' : '1988-09-13T21:45:19', 'EXPTIME' : 'unknown'} - assertRaised(fitsimage.NonStandardFITS, keywords) - - # Several non-standard DATE-OBS formats - nonstandard_dates = [ - '1993/04/29T12:42:23', # slashes, not dashes - '1993-04-29 T 12:42:23', # 'T' surrounded by whitespaces - '1993-04-29 12:42:23', # no 'T' between date and time - '1993-04-29T12 42 23', # whitespaces, not colons - '1993-04-29T', # nothing after the 'T' - '04-29T12:42:23', # year missing - '12:42:23', # time, but not date - 'Thu Apr 29 12:42:23 1993'] # ctime() format - - for wrong_date in nonstandard_dates: - keywords['DATE-OBS'] = wrong_date - assertRaised(fitsimage.NonStandardFITS, keywords) - - # Several non-standard TIME-OBS formats - nonstandard_times = [ - '12/42/23', # slashes, not colons - '12 42 23', # whitespaces, not colons - '12:42', # seconds missing - '12h42m23s', # 'h', 'm' and 's' instead of colons - ''] # empty - - keywords = {'DATE-OBS' : '1993-04-29', 'EXPTIME' : 1200} - for wrong_time in nonstandard_times: - keywords['TIME-OBS'] = wrong_time - assertRaised(fitsimage.NonStandardFITS, keywords) + with self.assertRaisesRegexp(fitsimage.NonStandardFITS, 'EXPTIME'): + img.date() + with self.assertRaisesRegexp(fitsimage.NonStandardFITS, 'EXPTIME'): + img.year() def test_ra(self): From 854914d77ca3dae5f9bce915032793e53ff92d18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Terr=C3=B3n?= Date: Sat, 7 Mar 2020 23:28:53 +0100 Subject: [PATCH 03/31] Add Abseil --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index d8b77b5..0a85fd5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,6 +6,7 @@ # setup.py files, not pip's fault. Serial installation is the only # answer here [https://github.com/pypa/pip/issues/25] +absl-py>=0.9.0 APLpy>=0.9.9 scipy>=0.12.0 matplotlib>=1.2.1 From 73a88f93a0e50b93051a0942d5d349aebb49e157 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Terr=C3=B3n?= Date: Sun, 8 Mar 2020 20:47:57 +0100 Subject: [PATCH 04/31] Add FITS image of HD 23642 This is an example of a FITS image with BJD_TDB in the header. Contributed by David Valls-Gabaud. --- .../test_data/fits/HD23642_20200222_0050u.fit | 9278 +++++++++++++++++ 1 file changed, 9278 insertions(+) create mode 100644 test/test_data/fits/HD23642_20200222_0050u.fit diff --git a/test/test_data/fits/HD23642_20200222_0050u.fit b/test/test_data/fits/HD23642_20200222_0050u.fit new file mode 100644 index 0000000..12a543b --- /dev/null +++ b/test/test_data/fits/HD23642_20200222_0050u.fit @@ -0,0 +1,9278 @@ +SIMPLE = T / Created by ImageJ FITS_Writer BITPIX = 16 / number of bits per data pixel NAXIS = 2 / number of data axes NAXIS1 = 533 / length of data axis 1 NAXIS2 = 400 / length of data axis 2 BZERO = 32768.0 / data range offset BSCALE = 1.0 / scaling factor DATE-OBS= '2020-02-22T19:41:54' / [ISO 8601] UTC date/time of exposure start EXPTIME = 9.00000000000E+001 / [sec] Duration of exposure EXPOSURE= 9.00000000000E+001 / [sec] Duration of exposure SET-TEMP= -20.000000000000000 /CCD temperature setpoint in C CCD-TEMP= -20.417621345447451 /CCD temperature at start of exposure in C XPIXSZ = 22.199999999999999 /Pixel Width in microns (after binning) YPIXSZ = 22.199999999999999 /Pixel Height in microns (after binning) XBINNING= 3 / Binning level along the X-axis YBINNING= 3 / Binning level along the Y-axis XORGSUBF= 0 /Subframe X position in binned pixels YORGSUBF= 0 /Subframe Y position in binned pixels READOUTM= 'Raw ' / Readout mode of image FILTER = 'u'' ' / Filter name IMAGETYP= 'LIGHT ' / Type of image FOCALLEN= 1200.0000000000000 /Focal length of telescope in mm APTDIA = 150.00000000000000 /Aperture diameter of telescope in mm APTAREA = 17671.459168195724 /Aperture area of telescope in mm^2 EGAIN = 0.93000000715255737 /Electronic gain in e-/ADU SWCREATE= 'MaxIm DL Version 6.11 141223 1VH7F' /Name of software SWSERIAL= '1VH7F-K9Y6J-9C35K-TUXJ7-6J8QF-V2' /Software serial number OBJECT = 'Autosave Image' / Target object name OBJCTRA = '03 47 24.00' / [hms J2000] Target right ascension OBJCTDEC= '+24 15 19.0' / [dms +N J2000] Target declination OBJCTALT= ' 54.0234' / Nominal altitude of center of image OBJCTAZ = '244.0597' / Nominal azimuth of center of image OBJCTHA = ' 2.3619' / Nominal hour angle of center of image PIERSIDE= 'EAST ' / Side of pier telescope is on SITELAT = 46.62716944444445 / geographic latitude of observatory SITELONG= 4.5404583333333335 / geographic longitude of observatory JD = 2458902.3207638888 /Julian Date at start of exposure JD-HELIO= 2458902.3209503954 /Heliocentric Julian Date at exposure midpoint AIRMASS = 1.2322413297700756 / Target airmass at mid-exposure TELESCOP= '6 inch achromatic refractor F8' / Telescope name image INSTRUME= 'SBIG ST-2K 3 CCD Camera' / Detector instrument name OBSERVER= 'Vivien Pic' / Observer name NOTES = ' ' FLIPSTAT= ' ' SWMODIFY= 'MaxIm DL Version 6.11 141223 1VH7F' /Name of software HISTORY Bias Subtraction (Bias 2, 533 x 400, Bin3 x 3, Temp -20C, HISTORY Exp Time 0ms) CALSTAT = 'BDF ' HISTORY Dark Subtraction (Dark 2, 533 x 400, Bin3 x 3, Temp -20C, HISTORY Exp Time 90s) HISTORY Flat Field (Flat 1, 533 x 400, Bin3 x 3, Temp -20C, Exp Time 300ms) HISTORY Flat-Bias(Bias 2,533 x 400,Bin3 x 3,Temp -20C,Exp Time 0ms) HISTORY Flat-Dark (Dark 2,533 x 400,Bin3 x 3,Temp -20C,Exp Time 90s) PEDESTAL= 0 / Correction to add for zero-based ADU SWOWNER = 'Tan Yong Liang' / Licensed owner of software HISTORY File was processed by PinPoint 6.0.5 at 2020-02-22T19:43:30 DATE = '22/02/20' / [old format] UTC date of exposure start TIME-OBS= '19:41:54' / [old format] UTC time of exposure start UT = '19:41:54' / [old format] UTC time of exposure start TIMESYS = 'UTC ' / Default time system RADECSYS= 'FK5 ' / Equatorial coordinate system RA = '03 47 24.00' / [hms J2000] Target right ascension DEC = '+24 15 19.0' / [dms +N J2000] Target declination FWHM = 1.72772622705E+000 / [pixels] Mean Full-Width-Half-Max of image starZMAG = 1.31188288243E+001 / Mag zero point for 1 sec exposure COMMENT Original key: "EQUINOX" _QUINOX = 2000.0 / Equatorial coordinates are J2000 EPOCH = 2000.0 / (incorrect but needed by old programs) PA = 1.99270276808E+002 / [deg, 0-360 CCW] Position angle of plate HISTORY WCS added by PinPoint 6.0.5 at 2020-02-22T19:43:30 HISTORY Matched 21 stars from the Gray GSC-ACT Catalog HISTORY Average residual was 0.83 arc-seconds INPUTFMT= 'FITS ' / Format of file from which image was read HISTORY Align Images CSTRETCH= 'Medium ' / Initial display stretch mode CBLACK = 100 /Initial display black level in ADUs CWHITE = 231 /Initial display white level in ADUs HISTORY Removed pedestal value of -100.0 from image Autosave Image -0050u.fi HISTORY ... t JD_SOBS = 2458902.320763889 / Julian Date at start of exposure JD_UTC = 2458902.321284722 / Julian Date (UTC) at mid-exposure HJD_UTC = 2458902.3209500727 / Heliocentric JD (UTC) at mid-exposure BJD_TDB = 2458902.321777873 / Barycentric JD (TDB) at mid-exposure ALT_OBJ = 54.190615117683144 / Target altitude at mid-exposure AZ_OBJ = 243.85281945180117 / Target azimuth at mid-exposure HA_OBJ = 2.3477086833935705 / Target hour angle at mid-exposure ZD_OBJ = 35.809384882316856 / Target zenith distance at mid-exposure RAOBJ2K = 3.791515 / J2000 right ascension of target (hours) DECOBJ2K= 24.28833888888889 / J2000 declination of target (degrees) RA_OBJ = 3.8112177929805324 / EOD right ascension of target (hours) DEC_OBJ = 24.348687098600077 / EOD declination of target (degrees) HISTORY Previous Filename = Autosave Image -0050u.fit COMMENT Original key: "END" COMMENT COMMENT --Start of Astrometry.net WCS solution-- COMMENT --Put in by the new-wcs program-- COMMENT WCSAXES = 2 / no comment CTYPE1 = 'RA---TAN-SIP' / TAN (gnomic) projection + SIP distortions CTYPE2 = 'DEC--TAN-SIP' / TAN (gnomic) projection + SIP distortions EQUINOX = 2000.0 / Equatorial coordinates definition (yr) LONPOLE = 180.0 / no comment LATPOLE = 0.0 / no comment CRVAL1 = 56.981131259 / RA of reference point CRVAL2 = 24.2637840631 / DEC of reference point CRPIX1 = 349.875751495 / X reference pixel CRPIX2 = 209.236545563 / Y reference pixel CUNIT1 = 'deg ' / X pixel scale units CUNIT2 = 'deg ' / Y pixel scale units CD1_1 = 0.000992828526848 / Transformation matrix CD1_2 = 0.000346183138867 / no comment CD2_1 = -0.000346748126831 / no comment CD2_2 = 0.000992674074969 / no comment IMAGEW = 533 / Image width, in pixels. IMAGEH = 400 / Image height, in pixels. A_ORDER = 2 / Polynomial order, axis 1 A_0_0 = 0 / no comment A_0_1 = 0 / no comment A_0_2 = -2.45947747586E-06 / no comment A_1_0 = 0 / no comment A_1_1 = -2.09268658969E-07 / no comment A_2_0 = -3.89422629306E-08 / no comment B_ORDER = 2 / Polynomial order, axis 2 B_0_0 = 0 / no comment B_0_1 = 0 / no comment B_0_2 = 1.60066913822E-05 / no comment B_1_0 = 0 / no comment B_1_1 = 3.58742064329E-07 / no comment B_2_0 = -6.95662561738E-06 / no comment AP_ORDER= 2 / Inv polynomial order, axis 1 AP_0_0 = -1.30934748958E-05 / no comment AP_0_1 = -1.35156665198E-06 / no comment AP_0_2 = 2.46201449006E-06 / no comment AP_1_0 = -8.56676631634E-08 / no comment AP_1_1 = 2.03655664928E-07 / no comment AP_2_0 = 3.82569252693E-08 / no comment BP_ORDER= 2 / Inv polynomial order, axis 2 BP_0_0 = 0.000133679693051 / no comment BP_0_1 = 8.87912981034E-06 / no comment BP_0_2 = -1.60249099309E-05 / no comment BP_1_0 = 1.01689137826E-06 / no comment BP_1_1 = -3.23017999325E-07 / no comment BP_2_0 = 6.9591760734E-06 / no comment HISTORY Created by the Astrometry.net suite. HISTORY For more details, see http://astrometry.net. HISTORY Git URL https://github.com/dstndstn/astrometry.net HISTORY Git revision 0.73 HISTORY Git date Thu_Nov_16_08:30:44_2017_-0500 HISTORY This WCS header was created by the program "blind". HISTORY Astrometry done via LEMON on Sun Feb 23 15:21:54 2020 UTC HISTORY [Astrometry] WCS solution found by Astrometry.net HISTORY [Astrometry] Original image: 20200222/HD23642-0050u_out.fit COMMENT Original WCS key: "DATE" _ATE = '2020-02-23T16:21:54' / Date this file was created. COMMENT -- blind solver parameters: -- COMMENT Index(0): /usr/local/astrometry/data/index-4219.fits COMMENT Index(1): /usr/local/astrometry/data/index-4218.fits COMMENT Index(2): /usr/local/astrometry/data/index-4217.fits COMMENT Index(3): /usr/local/astrometry/data/index-4216.fits COMMENT Index(4): /usr/local/astrometry/data/index-4215.fits COMMENT Index(5): /usr/local/astrometry/data/index-4214.fits COMMENT Index(6): /usr/local/astrometry/data/index-4213.fits COMMENT Index(7): /usr/local/astrometry/data/index-4212.fits COMMENT Index(8): /usr/local/astrometry/data/index-4211.fits COMMENT Index(9): /usr/local/astrometry/data/index-4210.fits COMMENT Index(10): /usr/local/astrometry/data/index-4209.fits COMMENT Index(11): /usr/local/astrometry/data/index-4208.fits COMMENT Index(12): /usr/local/astrometry/data/index-4207-11.fits COMMENT Index(13): /usr/local/astrometry/data/index-4207-10.fits COMMENT Index(14): /usr/local/astrometry/data/index-4207-09.fits COMMENT Index(15): /usr/local/astrometry/data/index-4207-08.fits COMMENT Index(16): /usr/local/astrometry/data/index-4207-07.fits COMMENT Index(17): /usr/local/astrometry/data/index-4207-06.fits COMMENT Index(18): /usr/local/astrometry/data/index-4207-05.fits COMMENT Index(19): /usr/local/astrometry/data/index-4207-04.fits COMMENT Index(20): /usr/local/astrometry/data/index-4207-03.fits COMMENT Index(21): /usr/local/astrometry/data/index-4207-02.fits COMMENT Index(22): /usr/local/astrometry/data/index-4207-01.fits COMMENT Index(23): /usr/local/astrometry/data/index-4207-00.fits COMMENT Index(24): /usr/local/astrometry/data/index-4206-11.fits COMMENT Index(25): /usr/local/astrometry/data/index-4206-10.fits COMMENT Index(26): /usr/local/astrometry/data/index-4206-09.fits COMMENT Index(27): /usr/local/astrometry/data/index-4206-08.fits COMMENT Index(28): /usr/local/astrometry/data/index-4206-07.fits COMMENT Index(29): /usr/local/astrometry/data/index-4206-06.fits COMMENT Index(30): /usr/local/astrometry/data/index-4206-05.fits COMMENT Index(31): /usr/local/astrometry/data/index-4206-04.fits COMMENT Index(32): /usr/local/astrometry/data/index-4206-03.fits COMMENT Index(33): /usr/local/astrometry/data/index-4206-02.fits COMMENT Index(34): /usr/local/astrometry/data/index-4206-01.fits COMMENT Index(35): /usr/local/astrometry/data/index-4206-00.fits COMMENT Index(36): /usr/local/astrometry/data/index-4205-11.fits COMMENT Index(37): /usr/local/astrometry/data/index-4205-10.fits COMMENT Index(38): /usr/local/astrometry/data/index-4205-09.fits COMMENT Index(39): /usr/local/astrometry/data/index-4205-08.fits COMMENT Index(40): /usr/local/astrometry/data/index-4205-07.fits COMMENT Index(41): /usr/local/astrometry/data/index-4205-06.fits COMMENT Index(42): /usr/local/astrometry/data/index-4205-05.fits COMMENT Index(43): /usr/local/astrometry/data/index-4205-04.fits COMMENT Index(44): /usr/local/astrometry/data/index-4205-03.fits COMMENT Index(45): /usr/local/astrometry/data/index-4205-02.fits COMMENT Index(46): /usr/local/astrometry/data/index-4205-01.fits COMMENT Index(47): /usr/local/astrometry/data/index-4205-00.fits COMMENT Index(48): /usr/local/astrometry/data/index-4204-47.fits COMMENT Index(49): /usr/local/astrometry/data/index-4204-46.fits COMMENT Index(50): /usr/local/astrometry/data/index-4204-45.fits COMMENT Index(51): /usr/local/astrometry/data/index-4204-44.fits COMMENT Index(52): /usr/local/astrometry/data/index-4204-43.fits COMMENT Index(53): /usr/local/astrometry/data/index-4204-42.fits COMMENT Index(54): /usr/local/astrometry/data/index-4204-41.fits COMMENT Index(55): /usr/local/astrometry/data/index-4204-40.fits COMMENT Index(56): /usr/local/astrometry/data/index-4204-39.fits COMMENT Index(57): /usr/local/astrometry/data/index-4204-38.fits COMMENT Index(58): /usr/local/astrometry/data/index-4204-37.fits COMMENT Index(59): /usr/local/astrometry/data/index-4204-36.fits COMMENT Index(60): /usr/local/astrometry/data/index-4204-35.fits COMMENT Index(61): /usr/local/astrometry/data/index-4204-34.fits COMMENT Index(62): /usr/local/astrometry/data/index-4204-33.fits COMMENT Index(63): /usr/local/astrometry/data/index-4204-32.fits COMMENT Index(64): /usr/local/astrometry/data/index-4204-31.fits COMMENT Index(65): /usr/local/astrometry/data/index-4204-30.fits COMMENT Index(66): /usr/local/astrometry/data/index-4204-29.fits COMMENT Index(67): /usr/local/astrometry/data/index-4204-28.fits COMMENT Index(68): /usr/local/astrometry/data/index-4204-27.fits COMMENT Index(69): /usr/local/astrometry/data/index-4204-26.fits COMMENT Index(70): /usr/local/astrometry/data/index-4204-25.fits COMMENT Index(71): /usr/local/astrometry/data/index-4204-24.fits COMMENT Index(72): /usr/local/astrometry/data/index-4204-23.fits COMMENT Index(73): /usr/local/astrometry/data/index-4204-22.fits COMMENT Index(74): /usr/local/astrometry/data/index-4204-21.fits COMMENT Index(75): /usr/local/astrometry/data/index-4204-20.fits COMMENT Index(76): /usr/local/astrometry/data/index-4204-19.fits COMMENT Index(77): /usr/local/astrometry/data/index-4204-18.fits COMMENT Index(78): /usr/local/astrometry/data/index-4204-17.fits COMMENT Index(79): /usr/local/astrometry/data/index-4204-16.fits COMMENT Index(80): /usr/local/astrometry/data/index-4204-15.fits COMMENT Index(81): /usr/local/astrometry/data/index-4204-14.fits COMMENT Index(82): /usr/local/astrometry/data/index-4204-13.fits COMMENT Index(83): /usr/local/astrometry/data/index-4204-12.fits COMMENT Index(84): /usr/local/astrometry/data/index-4204-11.fits COMMENT Index(85): /usr/local/astrometry/data/index-4204-10.fits COMMENT Index(86): /usr/local/astrometry/data/index-4204-09.fits COMMENT Index(87): /usr/local/astrometry/data/index-4204-08.fits COMMENT Index(88): /usr/local/astrometry/data/index-4204-07.fits COMMENT Index(89): /usr/local/astrometry/data/index-4204-06.fits COMMENT Index(90): /usr/local/astrometry/data/index-4204-05.fits COMMENT Index(91): /usr/local/astrometry/data/index-4204-04.fits COMMENT Index(92): /usr/local/astrometry/data/index-4204-03.fits COMMENT Index(93): /usr/local/astrometry/data/index-4204-02.fits COMMENT Index(94): /usr/local/astrometry/data/index-4204-01.fits COMMENT Index(95): /usr/local/astrometry/data/index-4204-00.fits COMMENT Index(96): /usr/local/astrometry/data/index-4203-47.fits COMMENT Index(97): /usr/local/astrometry/data/index-4203-46.fits COMMENT Index(98): /usr/local/astrometry/data/index-4203-45.fits COMMENT Index(99): /usr/local/astrometry/data/index-4203-44.fits COMMENT Index(100): /usr/local/astrometry/data/index-4203-43.fits COMMENT Index(101): /usr/local/astrometry/data/index-4203-42.fits COMMENT Index(102): /usr/local/astrometry/data/index-4203-41.fits COMMENT Index(103): /usr/local/astrometry/data/index-4203-40.fits COMMENT Index(104): /usr/local/astrometry/data/index-4203-39.fits COMMENT Index(105): /usr/local/astrometry/data/index-4203-38.fits COMMENT Index(106): /usr/local/astrometry/data/index-4203-37.fits COMMENT Index(107): /usr/local/astrometry/data/index-4203-36.fits COMMENT Index(108): /usr/local/astrometry/data/index-4203-35.fits COMMENT Index(109): /usr/local/astrometry/data/index-4203-34.fits COMMENT Index(110): /usr/local/astrometry/data/index-4203-33.fits COMMENT Index(111): /usr/local/astrometry/data/index-4203-32.fits COMMENT Index(112): /usr/local/astrometry/data/index-4203-31.fits COMMENT Index(113): /usr/local/astrometry/data/index-4203-30.fits COMMENT Index(114): /usr/local/astrometry/data/index-4203-29.fits COMMENT Index(115): /usr/local/astrometry/data/index-4203-28.fits COMMENT Index(116): /usr/local/astrometry/data/index-4203-27.fits COMMENT Index(117): /usr/local/astrometry/data/index-4203-26.fits COMMENT Index(118): /usr/local/astrometry/data/index-4203-25.fits COMMENT Index(119): /usr/local/astrometry/data/index-4203-24.fits COMMENT Index(120): /usr/local/astrometry/data/index-4203-23.fits COMMENT Index(121): /usr/local/astrometry/data/index-4203-22.fits COMMENT Index(122): /usr/local/astrometry/data/index-4203-21.fits COMMENT Index(123): /usr/local/astrometry/data/index-4203-20.fits COMMENT Index(124): /usr/local/astrometry/data/index-4203-19.fits COMMENT Index(125): /usr/local/astrometry/data/index-4203-18.fits COMMENT Index(126): /usr/local/astrometry/data/index-4203-17.fits COMMENT Index(127): /usr/local/astrometry/data/index-4203-16.fits COMMENT Index(128): /usr/local/astrometry/data/index-4203-15.fits COMMENT Index(129): /usr/local/astrometry/data/index-4203-14.fits COMMENT Index(130): /usr/local/astrometry/data/index-4203-13.fits COMMENT Index(131): /usr/local/astrometry/data/index-4203-12.fits COMMENT Index(132): /usr/local/astrometry/data/index-4203-11.fits COMMENT Index(133): /usr/local/astrometry/data/index-4203-10.fits COMMENT Index(134): /usr/local/astrometry/data/index-4203-09.fits COMMENT Index(135): /usr/local/astrometry/data/index-4203-08.fits COMMENT Index(136): /usr/local/astrometry/data/index-4203-07.fits COMMENT Index(137): /usr/local/astrometry/data/index-4203-06.fits COMMENT Index(138): /usr/local/astrometry/data/index-4203-05.fits COMMENT Index(139): /usr/local/astrometry/data/index-4203-04.fits COMMENT Index(140): /usr/local/astrometry/data/index-4203-03.fits COMMENT Index(141): /usr/local/astrometry/data/index-4203-02.fits COMMENT Index(142): /usr/local/astrometry/data/index-4203-01.fits COMMENT Index(143): /usr/local/astrometry/data/index-4203-00.fits COMMENT Index(144): /usr/local/astrometry/data/index-4202-47.fits COMMENT Index(145): /usr/local/astrometry/data/index-4202-46.fits COMMENT Index(146): /usr/local/astrometry/data/index-4202-45.fits COMMENT Index(147): /usr/local/astrometry/data/index-4202-44.fits COMMENT Index(148): /usr/local/astrometry/data/index-4202-43.fits COMMENT Index(149): /usr/local/astrometry/data/index-4202-42.fits COMMENT Index(150): /usr/local/astrometry/data/index-4202-41.fits COMMENT Index(151): /usr/local/astrometry/data/index-4202-40.fits COMMENT Index(152): /usr/local/astrometry/data/index-4202-39.fits COMMENT Index(153): /usr/local/astrometry/data/index-4202-38.fits COMMENT Index(154): /usr/local/astrometry/data/index-4202-37.fits COMMENT Index(155): /usr/local/astrometry/data/index-4202-36.fits COMMENT Index(156): /usr/local/astrometry/data/index-4202-35.fits COMMENT Index(157): /usr/local/astrometry/data/index-4202-34.fits COMMENT Index(158): /usr/local/astrometry/data/index-4202-33.fits COMMENT Index(159): /usr/local/astrometry/data/index-4202-32.fits COMMENT Index(160): /usr/local/astrometry/data/index-4202-31.fits COMMENT Index(161): /usr/local/astrometry/data/index-4202-30.fits COMMENT Index(162): /usr/local/astrometry/data/index-4202-29.fits COMMENT Index(163): /usr/local/astrometry/data/index-4202-28.fits COMMENT Index(164): /usr/local/astrometry/data/index-4202-27.fits COMMENT Index(165): /usr/local/astrometry/data/index-4202-26.fits COMMENT Index(166): /usr/local/astrometry/data/index-4202-25.fits COMMENT Index(167): /usr/local/astrometry/data/index-4202-24.fits COMMENT Index(168): /usr/local/astrometry/data/index-4202-23.fits COMMENT Index(169): /usr/local/astrometry/data/index-4202-22.fits COMMENT Index(170): /usr/local/astrometry/data/index-4202-21.fits COMMENT Index(171): /usr/local/astrometry/data/index-4202-20.fits COMMENT Index(172): /usr/local/astrometry/data/index-4202-19.fits COMMENT Index(173): /usr/local/astrometry/data/index-4202-18.fits COMMENT Index(174): /usr/local/astrometry/data/index-4202-17.fits COMMENT Index(175): /usr/local/astrometry/data/index-4202-16.fits COMMENT Index(176): /usr/local/astrometry/data/index-4202-15.fits COMMENT Index(177): /usr/local/astrometry/data/index-4202-14.fits COMMENT Index(178): /usr/local/astrometry/data/index-4202-13.fits COMMENT Index(179): /usr/local/astrometry/data/index-4202-12.fits COMMENT Index(180): /usr/local/astrometry/data/index-4202-11.fits COMMENT Index(181): /usr/local/astrometry/data/index-4202-10.fits COMMENT Index(182): /usr/local/astrometry/data/index-4202-09.fits COMMENT Index(183): /usr/local/astrometry/data/index-4202-08.fits COMMENT Index(184): /usr/local/astrometry/data/index-4202-07.fits COMMENT Index(185): /usr/local/astrometry/data/index-4202-06.fits COMMENT Index(186): /usr/local/astrometry/data/index-4202-05.fits COMMENT Index(187): /usr/local/astrometry/data/index-4202-04.fits COMMENT Index(188): /usr/local/astrometry/data/index-4202-03.fits COMMENT Index(189): /usr/local/astrometry/data/index-4202-02.fits COMMENT Index(190): /usr/local/astrometry/data/index-4202-01.fits COMMENT Index(191): /usr/local/astrometry/data/index-4202-00.fits COMMENT Field name: COMMENT /tmp/HD23642-0050u_out_91BXbL_astrometry.net/HD23642-0050u COMMENT _out.axy COMMENT Field scale lower: 0.675422 arcsec/pixel COMMENT Field scale upper: 1215.76 arcsec/pixel COMMENT X col name: X COMMENT Y col name: Y COMMENT Start obj: 0 COMMENT End obj: 0 COMMENT Solved_in: (null) COMMENT Solved_out: COMMENT /tmp/HD23642-0050u_out_91BXbL_astrometry.net/HD23642-0050u COMMENT _out.solved COMMENT Solvedserver: (null) COMMENT Parity: 2 COMMENT Codetol: 0.01 COMMENT Verify pixels: 1 pix COMMENT Maxquads: 0 COMMENT Maxmatches: 0 COMMENT Cpu limit: 300.000000 s COMMENT Time limit: 0 s COMMENT Total time limit: 0 s COMMENT Total CPU limit: 0.000000 s COMMENT Tweak: yes COMMENT Tweak AB order: 2 COMMENT Tweak ABP order: 2 COMMENT -- COMMENT -- properties of the matching quad: -- COMMENT index id: 4206 COMMENT index healpix: 0 COMMENT index hpnside: 1 COMMENT log odds: 92.8158 COMMENT odds: 2.0388e+40 COMMENT quadno: 472178 COMMENT stars: 229924,229941,229926,229771 COMMENT field: 2,0,12,3 COMMENT code error: 0.00880733 COMMENT nmatch: 21 COMMENT nconflict: 2 COMMENT nfield: 54 COMMENT nindex: 41 COMMENT scale: 3.7853 arcsec/pix COMMENT parity: 1 COMMENT quads tried: 70849 COMMENT quads matched: 109654 COMMENT quads verified: 108168 COMMENT objs tried: 13 COMMENT cpu time: 3.46173 COMMENT -- COMMENT COMMENT --End of Astrometry.net WCS-- COMMENT --(Put in by the new-wcs program)-- COMMENT END €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€ €€€€ €€€ € €€€€€€€ €€€ €€€€€€ €€€€€€ €€€€€€ €€€€€€ +€€€€€ €€€€€€€€€€€ € €€€€€€€€ €€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ € € € €€ € €€ +€€€€€€ €€ €€€ €€€€ € €€€ +€€€€€ +€ +€€ +€€€€€ +€€€ €€ €€€€€€€€ €€€€€€€€€€ €€ €€ €€ +€ € +€€ €€€€€€€€€€€€€€€€€€€ €€ €€€€ +€ €€€€ €€€ €€€ € € €€ € +€€ €€€ €€ € +€ +€€ €€€ €€ €€ +€€ +€€ € € €€ €€€€€€€€ €€ €€€€€€€€ €€ +€€€€€€€€ € €&„@€ €€€€€€€€ €€€€€€€ €€ €€€€€€€€ €€€€€&€"€€€!€&€€ €#€#€€,€-€#€€€'€#€$€!€*€&€-€!€,€ €4€!€*€*€,€+€5€>€.€8€*€?€.€7€7€+€>€0€5€)€4€?€)€<€1€=€I€O€A€G€6€5€6€;€/€C€O€F€4€N€X€J€:€7€B€4€>€?€B€@€@€I€I€=€M€,€C€O€G€E€C€N€0€8€1€;€?€B€E€1€,€6€?€7€$€*€:€P€9€-€8€&€.€=€@€€:€6€.€9€6€6€:€9€3€7€0€/€:€"€€3€€&€€)€€€€€€€"€€€€€€€€€€€€€€€ €€€€€€€#€€€ €€€ +€€€€€€€€€€€€€€€€€€€€€€€ € €€ €€€€€€€€€€€ € € €€€€€ € €€ €€€€€€€ €€€€ €€€€€€ €€ € €€€€€€€€ €€€ +€ €€€€€€€€ €€€ €€€€€€ €€€€€€€€€€€€€€€ € +€ €€€€€ €€€€€€€€€ +€ €€€€€€ €€€€€€€ €€€ € +€€€ € €€€ €€ €€€ € €€€€€€€€€€€ € € €€€ €€€€ € €€€€€€€€€€€€€ €€€ €€€€€€€€ € € €€€€€ €€ € €€€€€€€€€ € €€€€€€€€€€€€€ € € €€€€€€€€€€€ €€€ €€€€€€€€€€€ +€€€ €€€€€ €€€ €€€ €€€€ €€€€€€€€€€€€€€€€ €€ €€€€€€ €€€ € €€€€€€€€€€€ € €€ €€€ €€€ € €€€€€€€€€€€€€ +€ +€€ €€€ €€€€€€€€€€€€€€€€€€€€€€ €2€€€&€€€%€ €€€$€2€€€€&€/€:€+€'€.€€"€(€$€4€+€3€3€?€8€3€,€)€1€1€/€/€/€$€€.€)€:€3€ €/€S€;€9€5€I€0€5€C€A€E€H€B€G€=€D€D€4€=€?€8€:€F€F€H€:€.€?€H€P€;€N€<€M€N€J€6€'€G€M€G€,€?€E€2€8€L€@€9€<€0€8€J€8€4€<€$€*€>€5€6€>€:€/€5€:€7€?€9€,€7€4€.€1€$€.€)€€6€€!€€€€%€€ +€2€€€€€+€€ € +€&€€€€€€€!€€ €€€ €€€€€€ €€€ €€€ +€ €€€ €€€€ €€€ +€ €€€€€€€€€€€€€ €€ €€€€€€€€ +€ €€€ € €€€ €€€ €€€€€€€€€ €€€€€€€€€€€€ +€€€€ €€€€€€ €€€ €€€ € €€ +€€€€€€€€€€€€€€€€€€€€€€ +€€€ €€€€ €€ €€€ €€€€€€€€€€€€€€€€ €€ €€€ +€ €€€€ € € €€ €€€€€ +€€ €€ € €€€€ +€€ €€€ €€€€€€€€ € € €€€ €€€€€ €€€ €€€€€€€€ €€€ €€€€€€€€€€€€€ +€€€€ €€€ € € € € €€€€€€ € +€€€€ € €€ €€ €€ +€€€€€€€€€€€€€€ € €€€ +€ +€ €€ +€ €€ € +€€ +€€ €€€€€ € €€€€€€€€€€€€ +€ €€€€€€ € €€€€€€€€ €€€€ +€ €€€€€€ €€ € €€€€ €€€ €€€€€€€€ €€€€€€ €!€€ €€€ € € €€€€$€*€€€€€#€€$€€€#€€€ €€€%€$€€€*€/€.€0€$€*€+€)€%€,€.€€!€"€*€#€0€6€6€+€.€F€8€1€€€>€&€6€8€;€2€>€+€:€A€:€/€=€3€1€>€#€=€?€F€F€=€J€?€?€;€>€H€:€9€F€8€-€8€B€>€F€7€2€M€8€:€H€B€5€C€E€=€I€,€*€C€N€C€8€J€2€9€=€B€-€@€<€,€5€0€-€F€.€?€9€0€0€1€1€C€2€;€8€,€,€$€6€1€,€;€(€G€0€&€=€)€+€ €€)€#€$€%€ €€€€€€ €€€ € €€€€€€€€€ €€€ € €€€€€€€€€€€€ €€€€ €€€€ €€€€€€€ €€€€€ €€€€€ € +€ €€ +€€€€€€€€€€€€#€€ +€€€€€€€€€€€€€ +€€€€€€€€€€€€€€€€€€€ €€ €€ € +€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€ €€€€€€€ €€€€ € € €€€ € € €€€€€€ +€€€€€€ €€€€€€ €€ €€€€€ € +€€€ €€€€€€€ €€€€€€€ €€€€€€€ €€€€€€€€ €€€€ €€ € €€€€€€€€€€ €€€€€€€€ +€€€€ € €€€€€€ €€€ €€€ €€€€€€€ €€€€€ €€ €€€€ +€€€€€ +€€€€€€€ €€ €€€€€€€€€ €€€€€€€€€€€€€€ €€ € €€€€ +€€€€€€ €€€€€€€€ €€€€€€€€ €€€ +€€€€ € +€€ € €€€ €€ € €€€€€€€€€€€€€€"€€€$€€€€€(€€!€€ €#€€ €(€€€$€€€+€&€,€ €0€€3€€€€)€€€)€-€.€;€&€-€;€€.€6€3€0€;€€5€1€6€1€D€4€4€'€1€=€7€<€B€"€5€>€+€I€8€2€:€C€Z€X€O€@€>€H€D€D€D€U€0€P€6€2€R€B€C€H€E€9€K€;€2€<€?€K€=€5€F€8€F€J€T€@€9€1€:€C€$€3€J€@€.€"€0€@€,€3€6€3€#€)€3€4€.€C€5€3€>€8€<€+€€=€€"€/€"€€#€€€.€€€€€€€€ €€€€€€€€€€€€€€'€€€ +€€€€€ +€€€€ €€€€ €€€€ €€€ €€€ €€€ €€€€ €€€€€€€€€ €1€€€€€€ €€€€€ € +€€€€€€€ €€€€€€€ +€€€€€€€ €€ €€ €€€€€€€€€€€ €€€€€€€€ €€€€€ €€€€€€€ €€€€ +€€€€€€ €€€ €€€€ +€€€ +€€€€€€ €€ €€€€€€€€€€€€€€ +€€€ €€€€€€€€€€ +€€€€€ € €€€€€€ +€ +€€€ €€€€€ €€€€€€€€€€€€€€€ +€€€€€€€ €€€€ €€ € €€ €€€€ €€ +€€ €€€€€€€€€ €€€€ €€€€€€€€€€€€ +€€€ €€ €€€€ €€ €€€€€€ €€ € +€€€ €€ +€€ € €€€€ +€€ €€€€ € €€€€ €€€€€€€€€€€€€€ +€€€€€€€€€€ €€€€€€€ €€€€€€€€ € +€ €€€€€€€€ €€€€€€€€€€€€€€€ €€ €€€€€ €€€€€€€€!€€#€€€€€€€#€€'€€€ €!€$€$€"€2€€'€$€/€)€ €(€€*€%€,€"€3€-€#€5€-€€-€(€0€0€6€6€/€/€9€;€E€4€7€6€1€-€5€<€>€4€B€2€9€8€;€6€I€7€@€E€2€<€A€E€L€>€<€@€<€?€A€2€H€4€S€J€;€C€7€H€0€=€C€E€K€A€F€?€L€W€Q€?€:€H€3€:€,€I€A€C€)€2€5€6€3€C€'€B€3€0€+€7€9€7€7€0€8€2€>€4€"€0€-€(€-€.€,€€€€"€€€€€€€&€€€$€€€€!€€€!€€€€€€€€€€€ € €€€€€ €€ €"€€€€ €€€€€ € € +€ +€€€€€€€€€€€€€€€€€€€€€€€€ +€€€€€ €€€ €€€€€ €€€€€ € € € € € € €€€ €€ +€€€€€€€€€€€€ +€ +€€€€€€€€€€ €€€€€ €(€€€€€€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€€€ +€€ €€€€€€ € €€€€ +€€€€€€€€€€€€€€ €€€ €€€€€€ €€ €€€€€€€€€ €€€€ €€€ +€€€€€ € € € +€€€ +€ €€€ €€€ €€ +€€€€ +€ €€€€€€€€€€€€€ €€€ €€€€€€€€ €€€ €€€€€€€€ €€€ € € € +€€ €€ €€ € €€€€€€€ € €€ +€€€€€€€€€€€€ €€€€€ €€€€ € €€ €€€€€€€€ €€€€€ €€ €€€ € €€€€ €€€€€€€€€€€ +€ €€€ € €€€€€€€€€€ €€€€ € €€€€€ € €€€€ +€€€.€€€€€€€!€€€!€ +€€€€&€$€ €$€(€7€€#€"€/€(€I€+€!€%€7€0€'€7€€6€#€#€9€'€3€*€=€,€6€%€4€:€*€A€>€3€6€6€6€?€9€7€4€@€5€:€A€4€0€D€G€.€4€@€:€F€:€@€B€`€@€?€A€;€D€9€:€Z€J€P€L€J€G€B€I€C€K€l€?€e€6€D€4€>€E€R€&€4€C€4€=€=€>€#€!€:€/€<€:€'€2€)€%€<€=€8€5€-€€:€/€5€€$€ €,€/€2€;€/€ €$€$€€€€€€€€€€€€€'€€€ +€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€ €€€ € €€€€ €€ € +€€€€€ €€€€€€ € € €€ € €€€€€€ +€ €€€ +€€>€€€€€€€ €€€ €€ € +€ €€€€€ €€ €€€€€ €€€€€€€€€€€€€€€€€€€€€ € € €€€€ €€€€€€ €€€ €€ € € €€ €€€€€ +€€€€€€ €€ € +€€€€€€€€€€€€€€ €€€€ +€€€€€ € €€ €€€€€€€€€ €€€€€€€€€€€€€€€€€ €€€€€€ €€ €€€€ €€ € €€€€€€€€€€€ €€€€€ €€€€€€€€ €€€€€€€ €€€€€€ € €€€€€€€€€ €€€€ €€€€ € +€€€€€ €€€ €€€ € €€€€ € +€€ €€€€€€€€ €€€€€€€€€€€€€ €€€€€€€€€ € € €€ €€€€ € €€€€€€ € € €€ € €€ € €€€€ €€€€€€€€ €€ +€€€ €€€€€€€€€€€€€€€€€c€€%€#€%€%€$€"€€€$€€$€€"€-€€+€-€0€,€$€+€€'€€'€0€*€#€J€;€6€3€€%€$€1€:€8€4€&€:€6€C€-€B€5€=€H€=€7€4€F€6€G€I€+€6€&€:€3€C€B€8€9€3€<€9€6€P€@€C€B€h€<€I€q€M€?€?€O€C€S€<€L€B€C€H€/€2€1€9€]€K€:€L€C€F€6€>€Q€E€?€4€1€7€B€A€,€9€;€;€>€3€5€B€1€&€A€0€3€9€9€8€7€*€@€€$€8€3€8€'€€4€)€'€-€%€!€ €€€€€€ € +€€€€ €€€€€€ +€€€€€ € +€ +€€€ €€"€"€€€€€ €€€ +€€€€€€ €€€€€ +€€€€€ €€€€€€ €!€€€€€€€€ €€ +€€€€€ €€€€ €€ €€€€€€€€ €€€€€ +€€€ €€€ €€ €€€ €)€€€€€€€€€€€€ €€€ € €€€€€€€€€€€ +€€€€€ €€€ €€€€€€€€€€€€€€€ € +€€ €€ €€€€€ +€€€€€€€€€ €€ €€€ € €€ € €€€€€€€ € € €€€€€ € €€ € €€€ €€ +€€€€ +€€€€€€€€€€ €€€€€€€€ €€ +€€€€€€ €€€€€ +€ €€€ +€€€€€€€€€ €€€€€ €€€€ €€€€ +€€€€ €€€ €€€€€ € +€€€€€ €€€€€€€€€ € +€ +€ €€€ €€€€€ € +€€€€€ +€€€€€€ €€€€€€€€€€€€€ €€€ €€€€€€€€ €€€€€€ €€€ +€€€€€€€€€ €€€€€€€€€€€€€ €€ €€€ €€€€€€ €€€€€€€9€(€#€€€ €!€€&€€"€&€€$€€'€%€#€ €<€-€.€)€#€ €&€€4€6€'€5€>€-€+€2€"€6€=€7€3€3€*€.€?€4€7€<€9€B€B€H€6€<€A€@€J€6€1€,€E€1€@€?€7€D€;€(€D€)€I€6€F€B€<€C€:€9€T€Q€R€@€F€O€K€=€U€I€F€M€5€=€<€;€H€N€K€D€E€H€S€;€H€;€L€E€D€@€T€D€A€.€3€?€=€9€.€2€&€B€)€€4€:€(€+€=€G€5€0€3€0€6€2€€G€)€/€3€-€!€€€*€€!€&€€€€ €€€€€€€€€€€"€€€€€€€€€€€€€€ €€€€€€€€€ +€€ € €€€€ €€€€€€€€€€€€€ +€€€€€ €#€€€€ €€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€€ +€€€€€€€€€€€€€€€€€€$€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€€ €€€€€€€ €€ +€€€€€€€€€€€€€€€€€€€€€€€€€ €€€ +€€€€€€€€€€€€€ €€€€€€ +€€ € €€ €€€€€€ €€ € +€ €€€€ €€ €€€€€ €€ €€ +€€€€ €€ €€€ €€€€€€€ €€€ € €€ €€€€ €€ +€ € €€€€€€€€€ +€ €€ € €€€ €€€€€€€€€€€ +€€ € +€€€€€€€€€€ € €€ +€ €€€ +€ €€€€€ €€ € €€€€€ €€€€€€€€ € +€ €€€€ +€ €€ €€€ +€€€ +€ €€€€€ +€€€#€€€€€ €€)€(€€ +€"€€ +€€€'€%€€!€€€€)€!€+€C€!€&€1€3€/€#€-€3€?€0€5€ €(€"€9€;€"€5€A€:€%€/€2€,€>€4€0€N€=€9€H€<€1€7€K€:€@€7€>€8€B€5€1€8€2€6€B€@€F€K€5€8€:€0€2€:€?€K€Z€U€^€P€I€=€R€S€T€N€P€R€T€A€D€7€E€T€?€?€K€O€9€J€W€:€G€7€>€D€M€B€D€G€C€=€3€3€8€2€-€3€6€:€1€,€6€7€H€6€,€'€.€.€%€8€5€€€$€€(€€€€'€€€"€€€€€€€€€€€€€€€€€€ € €€€ €€€€ +€€€€€€€€€€€€€€ €€€€€ €€€€€€€!€€€€€€€!€€€€€€€/€€€€ €€€€€€€€€€€€€€€ +€ €€€ +€€€€€€€€€€€€€€ +€€€ +€€€€€€€€€€€€€€€€€ €€€€€€€€ €€€€€ €€€€ €€ €€€ €€€€€€€€ +€€€€ € +€€€€€€€€€ €€€€€€€€€ €€ €€€ €€€€€€€€€€ +€€€€ +€€€€€€ €€€€€€€€ €€€ €€€€€€€€€€€€€€€€€ €€€€€€€€€€€€ € €€€€€ € € € € € €€€ €€€€€€ €€€€€€ +€€ €€ € € €€€€ €€€ €€€€ €€€€ €€€ €€€€€€€€ € €€€€€€€ €€€ +€€€ € €€ € €€ €€€€€€ €€€ €€€ +€€€ €€€€€€€ +€€ € €€€€€€€€€€€ € €€€€€ €€ € €€€ € € +€€€€€€€€€ €€€€€€€ +€€€!€€€€"€€€€€€(€€!€"€€ €"€7€A€)€*€1€"€'€5€2€&€>€3€,€(€)€+€$€1€*€)€+€+€€/€D€?€*€/€7€>€:€.€B€E€7€8€/€D€M€3€1€4€;€E€(€>€ê€/€l€6€C€M€?€L€_€1€U€>€K€U€S€_€e€C€[€D€U€@€S€W€h€W€Q€X€?€P€7€R€H€+€A€>€4€>€7€7€9€3€A€7€E€(€;€)€L€8€8€8€A€=€J€<€-€+€,€6€6€9€&€*€3€5€7€,€%€*€!€/€"€"€ €%€"€€€€!€€%€€€.€ € €$€€,€€€€€€€ €€€ €€€€€€€€€ €€€€€€€€$€€€ €€€€€€ €€€€€€ €€€€€€€€)€ €€€€€€ +€ €€€€ €€€ +€€ € €€€€€€€ €€€€€ € €€€€€€€€€€€€ €€ €€€ €€ € €€ € € €€€€ +€€€€ € €€€€€€€€€€€ +€ € €€€€€€ €€€€€€€€€€€€ €€€€€ +€€€€€€€ €€ +€ € €€€€€€ €€€€€€€€€ +€€€€ € €€€ +€ €€€€€ € €€€€€€ €€€€€€€€€€€€€€€ €€€€€ €€€€€€ +€€€€€€€€€€€€ +€ €€€€€€€€€ €€€€€€€€€€€€ +€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ € €€€ €€€€ €€€€€€€€€ €€€€ +€€€€€ € +€ +€ €€€€ €€€€ € €€€ +€€€€€€ € € € € €€€ €€€€ €€€€ +€€€€€€€€€€€€€€€ €€€€€ € € €€€%€€€€€€€ €€€!€€€€€ €*€&€*€€)€€&€4€2€#€$€#€€/€=€.€*€5€,€2€'€ €'€#€/€4€*€2€8€$€2€1€/€€)€8€+€5€8€;€+€1€I€/€W€>€B€F€+€A€<€2€D€|€:€a€@€8€A€?€)€E€D€;€7€D€P€T€T€\€O€b€D€Q€a€S€]€P€N€X€F€>€^€O€T€=€F€?€I€>€3€4€Y€;€C€&€M€6€3€D€E€<€=€.€7€F€2€1€4€,€2€9€<€<€=€7€C€D€#€4€€=€+€)€0€!€5€€"€€4€€ € €€ €€€€/€ €€1€€€€€€ +€€€€€€€ €€ €€ +€€€€ €€ €€€€€€€€€€€€€ €€ +€€ € €€€ € € €€€€ +€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€ +€€ €€€€€€€ €€€ €€€€ €€€€€€€€€€€€€€€ €€ €€€€€€€ €€ € €€€€€€€ +€€€ +€€€€€€ €€€€€€ +€€€€€ +€€€€€€€ €€€€€€€€ € €€€€€ € €€€ € €€€€ €€€ €€ +€€€€ €€ € +€€€€€ +€ +€€€€€€€€€€€€€ €€€ € +€€€€ €€ €€€€€€ €€€€ €€€€€€€€€€€€€€€€ +€ €€€€€€€€€€ € €€ €€€€€€€€ +€€€€€€ €€€€€€€€€€€ € €€€€€€€€€ +€ €€€€€€ €€ €€€€€€€€€ €€ €€ €€€€€ €€€€€€€ €€€ €€ €€€€€€€€€ +€€€€€€ €€€€€€ € €€€ €€€ €€€€€ €€€€€€#€€€€€€€$€ €4€€%€€€4€€)€!€€2€€&€;€€%€+€%€6€/€<€-€7€%€2€/€.€#€%€(€/€)€1€=€5€A€<€/€<€9€)€;€'€.€6€*€2€I€H€.€E€*€G€4€2€1€D€S€N€:€1€P€M€R€J€K€9€N€T€K€G€4€Q€c€N€D€^€R€Z€l€f€Z€[€T€\€O€U€_€`€a€V€B€G€D€U€K€C€5€W€G€L€1€S€=€<€>€7€C€<€;€4€-€F€#€+€&€ €7€+€4€<€8€5€"€3€$€*€€C€(€"€*€€3€"€€4€ +€ €$€"€€€€€€€€,€€€€€€€€€ €€€€€€€€!€€€€€€€€€€ €€€€€€€€€€€%€€ €€€ €€ € €€€€€€€€€€ €€€€€%€€€€€ +€€€ € +€€€€ €€€€ €€€€ €€€ €€€ €€€€€ €€€€€€ €€€€€ € €€€€€€ € € +€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€ € €€€ €€ +€€€€€€€€€ €€€€€ €€€ +€€€€€€€ €€€€€ +€ € € +€ € €€ €€ €€€€ +€ € +€ +€ € €€€€€€€ € € €€€ €€€ € +€€€ +€ €€ +€€€€€€€€ €€€€€ €€ € €€€ €€€€€€ +€€€€€€€€€€€€€€€ €€ € +€€ € +€€ € +€€ €€ € € €€ €€€€ € €€€€ +€ +€€€ +€€€ €€€€€€€€€€€€€€€€€€ €€€€€ €€€€€€€€€€ € €€ €€ €€€ € € +€€€ +€€ +€ €€€€€€ €€ €€ €€ € €€ +€€€€€€ € €€€€€€ € € € €€€€ €"€€€€"€€€€€%€€€€€"€€€€.€,€€€2€€ €€€9€$€9€)€6€'€<€(€3€/€2€>€'€,€A€5€3€D€0€:€<€5€€A€I€0€1€E€<€?€6€0€)€3€K€-€6€3€R€R€N€J€K€H€:€$€?€@€K€@€R€c€S€Q€Z€]€V€T€n€`€v€{€h€w€€V€u€U€e€[€Y€i€F€W€Z€I€F€=€J€:€F€C€V€D€F€5€8€?€M€I€$€J€B€/€?€K€,€0€/€,€8€9€6€2€6€)€"€+€@€0€2€!€€€*€€ €$€"€€€€#€€€€€€€€€€€€ €€€€€€ €€€ +€€€€ +€€€€€ €€€€€€ €€€€€€€€€€€€€€€€€ €€€€ € € €€ €€€€€€€€€€€ +€€€€€€€€€€€€€€€€€€ €€€ €€ +€ +€€€€€€€€€ € €€€€ €€€€€€€€€€ € € €€€€ €€€€€€€€€€€€ +€€€ €€ €€ €€€ €€€€€€€€ €€€€€€€€€€ € +€ €€ € €€ € €€€€€€€ €€€€€€€€ +€ +€€€€€€€€€€€ €€€€€€ +€€€€ +€€ €€ € €€€€ € €€€€ €€€€€€€€€ €€ €€ € €€€ €€€ € €€ +€ +€€€ +€€€€ +€€€ € +€€ €€€€€ €€€ €€€€€€€€ €€ €€ €€€€€€€€€€ €€€ €€€€ € €€ €€€ +€€€€€€ +€€€€€€€€€€€€ +€€€€€€€€€€€€ €€€€ +€€ €€€€€ €€€ +€€€ € +€€ €€€€ €€€€€€ €€€€€ €€€€ € +€€€€€ €€€€€€)€ €!€ €€€€€$€'€ €€"€€#€)€€€(€€-€€#€€(€1€€5€"€&€(€0€)€(€?€%€G€4€1€3€&€-€6€2€:€.€9€<€E€=€?€-€8€E€*€)€:€4€:€A€<€@€H€<€N€H€<€9€7€-€A€=€T€C€`€L€V€P€f€P€`€X€r€€q€€€g€d€l€x€e€u€o€p€i€c€h€O€I€S€X€N€9€4€?€J€5€I€8€A€N€D€>€=€@€D€B€C€"€7€'€C€9€&€2€1€F€?€€)€8€4€2€@€6€*€-€2€€+€$€.€€€/€+€€"€€%€€ €€€€€ €€€€€€€€€ €€ €€€€€€ +€€#€€ €€€€€ €€€€ € +€€€ +€€€€€ +€€€€€ €€ €€ €€€€€€ €€€€€ € +€ €€€ €€€€€ +€€ €€€€€€€€€€ +€€€€€€€€€€€€€€€€€€€€€ €€€€ € €€€€€ € €€€€€€€ +€€€€ +€€€ €€€€€€€€€€€ +€€€ € €€ €€ €€€€ €€€ € €€€€€€€€€ €€€€€€ €€€€€ +€ €€€ €€€€€ € €€€ €€€ € € € €€ € +€€€€€€€€€€€€€€€€€€ +€€€ € €€€€€€€€€€€€€€€€€ €€ €€€€ €€€€ € €€€ €€€€ €€€€ +€€€€€€€ € €€€€€€€€ €€€ €€€ €€€€€€€ €€ €€€€ €€€€ €€ € €€€€€ € €€€€ €€ €€ € €€€€€€€€€€€€€ €€ €€€€€€ €€€€ +€€€€€ €€€€€ € +€€€€€€ € € € €€€€€€€€ €€€€ € €€€€ €€€€€ €€€€(€&€#€€!€$€ €#€€€*€€€€"€/€.€%€-€€&€+€#€$€0€'€=€2€=€5€1€:€8€1€3€D€1€.€?€?€<€B€7€<€?€,€5€:€H€D€A€:€@€@€O€B€;€;€?€H€@€G€T€A€X€L€X€L€]€[€y€l€U€}€€~€w€r€y€‚€}€y€s€~€‚€v€i€U€j€c€R€_€f€N€P€F€-€2€=€G€#€A€A€.€@€;€?€@€C€D€€3€1€<€E€5€9€.€+€)€*€3€,€3€1€.€;€(€>€0€€%€€€€,€€*€€#€#€€'€!€€€€€ +€€!€€€€€€ €€€€ € €%€"€ € €€€ €€€€€€€€€€€€€ +€€ € €€€€ €€ €€€€€€€€€€€ €€ €€€€€€€€€€ €€€€€€ €€€€€ €€€€€€€€€€€€ €€ €€€ €€ €€ €€€€€ +€€ € +€€€€€ €€ €€ €€€€€€€€€€€€ € €€ €€ +€€€€€€€€€€ €€€€€ +€ +€€ +€€€€ €€€€€€€€€€€€€€ €€€€ €€€€ €€€ +€€€€€€€ +€ €€!€€ +€€€€€ €€ € €€€€€€€€€€€ € +€ €€€€€€ €€€€€€ +€€€ € € +€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€ +€€€ €€€€€€€€€€€€€€€ €€€€€ € € +€€€€ € +€€€€€€ €€€€€€ €€ €€€ €€€€ €€€€€€€€ €€€€€€€€€ +€€€ €€€€€€€€€ € €€ +€€€€€€ €€ €€€€€ € +€€ € €€€€€%€ €€€€ €€"€€€ €€ €€€€€€€"€€€€%€€#€€)€€€!€&€€€€-€+€(€,€!€€€€-€,€8€.€8€"€;€0€9€B€3€2€B€'€A€1€?€.€:€/€I€9€4€B€5€4€4€?€A€?€7€.€K€F€>€O€S€Q€F€E€@€L€g€H€Q€R€W€E€q€`€k€b€c€m€‰€€€~€€‰€|€˜€}€‰€€{€m€m€k€T€\€[€T€a€K€W€8€;€8€6€D€>€I€G€>€K€H€4€;€;€8€0€4€3€/€9€B€2€7€>€-€2€=€)€%€5€(€€,€*€ €2€€2€€-€ € €2€,€€€€€€€ €€ +€€€€%€€0€ +€€€€€#€€€€ €€€€€€€€€€ €€$€ €€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€ €€ € €€€€ € €€ +€€€€ €€ €€€€€€€ €€€€€€€€€€€€ +€€€€€ € €€€€€€ +€€€€€€€€€€ €€€€€€€ € €€€€ €€€ €€€€€€€€€€€€€€ €€€€€€€€€ €€€ €€€€€€€ +€€€ €€€€ €€€€€ €€€ €€€€ €€€€€€€€€€€€€€€€€€€ €€ +€€€€€€€€€€€€ € +€€€€ €€ +€€€€€€€€ €€€€€€€ €€€€€€€ € €€ €€€€G€€€€€ € €€ €€€€€€€ € +€€ +€€€ € €€€€€€ €€€€ +€€€€€€€ €€€€€€€ €€€€€€€€€€ €€€€€€€€€ € € €€€€€€€€€€€€€€€€€€€€€€ € +€€€€ €€ € €€€€€€€ €€ €€€€€ €€'€ € €€€€€€'€€€€€%€ €#€&€€€-€(€$€ €€3€3€€/€"€€*€$€$€+€6€€,€<€D€(€3€>€%€&€:€-€H€,€4€&€O€6€8€>€-€>€8€;€9€5€J€A€5€K€@€A€=€=€*€X€=€Q€L€S€X€T€k€`€X€O€Z€h€t€y€u€€…€€{€€›€®€—€€‹€Œ€€€w€v€v€u€r€Q€]€O€V€F€M€;€U€@€I€?€=€I€@€9€:€4€G€=€L€B€1€/€<€'€;€'€7€:€%€0€1€/€-€7€€*€$€,€ €,€€ €!€€€ €€-€-€ €€#€€€ € €€€€€€€ +€€€€€€€#€C€ €€€€€€€€€€€ €€€€€€€€€€ €€ € €€€€€€€€€€€€€ +€€€€ €€ €€€€ €€€ €€€€€€€€ €€ +€€€€€€€€€+€€€€€€ €€€€€€€€€€ +€€€€€€€€ €€€ €€ €€ +€€€ € €€€€€€€€ +€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€€ €€€€€€ €€€€€€€ €€€€ €€ +€€€€€€€€€€€€€ €€ €€ € €€ €€€€€€€€€€€ € €€€ €€€€€€ €€€ € €€€ € €€€€€€€€€ €€€€€€€€€€€€ € €€€=€€€€€ +€€€ €€€ €€€€ €€€ +€€€€ € €€ +€ €€ € €€€ +€€€ €€€ € €€€€€€€ € +€€€€ €€€€€€€€€ +€€ € €€€€€€€€€€€€€ €€ €€€ €€ € €€€€€€ +€ +€€€€€€€€€€€ €€ €€ € €€€€€€€€€+€&€€€€€€€'€"€€"€€€ €'€*€€€*€ €&€&€€&€)€.€%€€+€)€>€(€€4€7€.€<€2€5€;€.€@€N€,€F€4€8€O€5€U€<€B€:€3€N€:€4€?€D€A€>€E€L€B€@€R€T€W€]€b€a€g€p€X€[€U€€r€j€y€”€r€š€›€”€Ÿ€À€µ€©€ª€€œ€—€£€’€Œ€h€|€e€c€]€O€?€`€L€5€S€6€:€P€D€A€D€:€/€1€P€M€?€;€;€B€8€.€4€=€=€'€8€;€€>€+€3€&€5€€€+€"€€(€ €%€4€€#€%€ €€€)€ €€€ € €$€€€ €-€€#€€ +€€€"€€€€ €€€€€€€€€$€€ €€€€ € €€€$€€€€ €€€€€€€€€€€€€ €€€€ €€€ €€€€€€€ €€€#€€€€€€ +€€ €€€€ €€€€€€€ €€€€€€#€€€ €€€€€ €€ €€ €€ €€€€€ +€€€ €€€ €€€€€ €€€ €€ +€€ €€€€€€€€€€€€ €€ € €€€€ +€€€€€€€€€€€€ €€€ +€ €€ €€€ € €€ +€€€€€€€€€ €€€ €)€€,€#€€€€€€€ €€€€€€€€€€ +€€€€€€€€€ +€€€ €€€€€ €€€ €€€ €€€€€ €€€ € +€ € +€€€€€€€€€€€ € €€€€€€€€€€€€€ €€€ €€€€€€ € €€€€€€€ €€€€€€€€€€€ €€€€€€ € +€€€€€€€€€€€€€€€€€€€ +€€ € €€ €€€€€ €€€€€€€€€€€€€€€€ €€ € €€€€€ €€€€ € €€€€€€€€ €€ €€ €€€ €€ €€€€€€€€-€'€#€€€€*€€$€€/€7€#€#€%€€(€+€.€.€€/€€4€3€'€,€6€0€7€C€/€D€:€5€C€3€>€*€2€A€)€G€5€@€C€4€@€7€8€C€B€F€I€P€=€N€[€E€F€`€d€\€K€y€}€R€a€i€x€‚€‹€’€¢€™€Ã€µ€°€¯€°€å€Û€Ì€Ç€Æ€¦€¬€”€Ÿ€Œ€ƒ€j€w€d€h€e€P€L€K€@€?€R€J€K€F€K€/€<€E€3€7€I€;€?€-€=€8€L€9€*€8€G€F€*€0€3€€ € €"€€€&€€ €€*€,€€%€€&€!€!€€€ €€€€€€€€€$€€€€€ €€ €€€€€ €€ €€€€€€€€€ € € €€€€€€€€€€€€€€ €€€€ €€€€€ €€€ €€€€€€€€€€ € €€€ €€€%€€ €€€(€€€€€€€ €€€€ €€€€€€€€€€€ €€€ €€€€ €€ €€ +€€€€€€€€ €€€ +€ €€€€€€€€€€€ +€€€€€€€ €€€€€€ €€ €€€€€€€€ € € €€€ €€€€€€ +€€€€€€€€€€€€€€€€#€€:€5€S€E€%€€€ €€€€€€€€€€€€€ €€€ €€€ €€€€€€€€€€€ +€€€ € € €€€€€€€€€€ €€€€€€€€€€€€€€€€€€€ €€ +€€€€€€€€€€ €€ +€€ € €€€ +€€€ €€ €€€€ € €€€ +€€€€ € €€€€ €€€€€€ € €€ €€€€€€€€€€ +€€ €€ +€ €€ €€ +€€€€ € € €€€€€ €€€€€ €€€ € € € €€€€€€€€€€ € €€€ €€€€€€€ €€€€€€€"€ € €€€€ €€$€€&€€#€€€€*€)€!€,€€/€$€0€5€;€$€€1€/€€$€:€2€<€6€5€4€7€'€?€6€>€3€2€8€>€3€@€R€8€J€?€A€5€5€4€?€B€<€:€A€P€S€F€e€J€J€i€V€|€j€c€h€ƒ€š€|€š€±€Ý€¬€È€Â€ä€þ€÷€á€Ñ€Â€Í€ª€¦€v€t€|€]€l€b€n€n€^€B€F€G€H€S€/€8€>€3€?€=€@€9€?€D€Z€?€6€G€E€A€=€;€€€7€4€1€0€)€#€€"€€#€#€€$€+€)€"€€(€ +€€€€ €€€€€€€€€€"€ €€€ €€€€€€€€ €€ €€ +€€€€ €€ +€€ +€€€€€€€€€ €€€€€ € € €€€€€€€€ € €€€ +€€€€€€ +€€ €€ €€€€€€€€€€€ € €€ €€€€ +€€€ €€€€€€€€€€ € €€€€€€ €€€ € +€€€€€ +€ €€€€€ €€€€€€€€€€€€€€€€€€ €€ €€€€€ +€€ €€ €€€€€€€€€€ +€€€€€€€€€€€ €€ €€€€€€ +€€€€€ €2€0€v€Ì€Ý€v€;€€€€ €€€€€€€ €€ +€ € € €€€€€ +€€€ €€€€€€ €€€ €€€ €€€ € € € €€€€€ +€€€€€€€€€ €€ €€€€€€€ €€ € €€€€€€€€€€€€€€€€€€€€ €€€ € €€ €€€€€€€€€ €€€€€ €€€€€€ €€ €€ € € €€€€€ +€€ €€ €€ +€€ €€€€€€€€ +€€ € €€ €€€€ €€€€€€ +€€ €€€€€€€ +€€€€€€€€€€ € €€€€ +€€€€€€€%€€€€€€€ €€€€€,€,€€&€!€*€#€2€'€#€2€€8€3€0€%€-€6€€/€$€(€=€(€*€:€(€(€9€)€C€2€%€L€1€A€@€J€;€A€@€I€>€A€9€4€E€<€O€W€A€T€=€M€I€b€a€V€e€o€t€v€€€©€µ€Ç€ß€é€Ù )IAbX9€à€è€á€À€€€†€‰€p€s€a€U€`€[€R€T€K€;€I€6€B€E€(€:€E€:€L€D€;€1€(€:€=€:€+€;€-€€(€#€&€$€>€1€,€1€1€€-€#€*€#€€€€*€ €€€€€€%€ € €€€ €€%€€€€€€€/€ €€ €.€€€€€€€ €€€€€€€€ €€€€€ €€€€€€ € €€€€€ € €€€€€€€ €€€€ €€€€ €€€€€€€€ +€€€€€ €€ €€€€€€ €€€€ €€€ € +€€€€€$€€€€€€ €€ €€€€€€€€€€€€ €€€€ +€€€€€ +€€€ €€€€€ €€€ € +€€ €€€€€ €€€€€€€€€€€€€€ +€€€€ €€€ €€€€€€€ €€ €€ €€€€€€€€,€L ƒbƒD€W€7€$€€€€€ €€€€€€€ €€ €€€€€ +€€€€ €€€ €€€€€ €€ +€ €€ +€€€€€€€ €€€€€€€ €€€€€€€ € +€€ €€€€ € €€€€€ € €€€€€€€ €€€€ € €€€ +€ +€€€€€€€€€€€€€€ €€ €€€ +€€€ +€ € €€ €€€€€€€ €€€€€€€ €€ +€€€ €€€€€€ +€€€€€€€€€€ €€€ €€ € €€ €€ € €€ €€€€€ €€€ €€€€€€ €€)€€€€€€€€€ €€€€€€$€€€€€)€)€#€$€€€€-€€*€+€/€*€9€(€5€;€'€€3€€.€<€'€5€9€:€-€;€&€G€K€-€>€L€2€0€#€>€9€;€@€=€=€J€:€>€E€D€?€8€B€T€C€K€U€k€X€e€s€l€†€ƒ€¨€Ä€Î€î'Sˆ“£ºÅ„z?€ú€Ë€©€–€Ž€Š€u€c€p€`€R€T€L€?€T€c€B€7€2€7€4€D€Q€C€J€5€?€B€;€5€K€;€1€D€7€)€<€8€.€H€4€+€'€"€)€>€€€ €%€€€)€€€€€€€-€!€#€€"€€€ €€ €€€€"€A€ €€€€ €€$€ €€€€ €€$€€€€#€€€€€#€€€€€€€€€€5€ €€€ €€ €€€€€ €€€€€€€€€€€€€€€€ €€ €€€ €€€€€ €€€€€€ €€€€€€ € €€€€ +€ € +€ € +€€ +€€€€ +€ +€€ €€€€ €€€€ € €€€€€€€€€ €€€ €€€€€€€€ € €€€€€€ €€€€€€€€€€€ € € € €€ €€€€€ €€€€€ €€ € €€ €€ +€€€€€-€J…r…Zš€m€:€€ €€€€ €€€€€€€€€€ €€€€€ €€€€ +€€ €€€€€ +€ +€ € +€€€ € €€ €€€€ € +€€€€€€€€ €€ +€€€€€€€€€€€€€€€ € € €€€ +€€€ +€€€€€€€€€€ €€€ € € €€ € € € €€€ €€ €€€€€ €€€ +€€€€€ +€€€€€ €€€ €€ €€€€ € € € €€ €€€€€ +€ €€ €€€ €€€€€€€€€€ +€ €€€€ +€€ €€ +€€€€€€€€€€ €€€€€€€€€€€!€€€&€€€€&€€€€€#€€ €+€ €+€&€€4€2€,€!€<€$€2€:€:€%€4€'€2€.€$€%€,€D€@€)€C€H€B€Q€H€A€4€+€+€E€;€1€N€:€^€D€K€F€C€F€J€F€Q€J€N€Q€`€k€X€n€u€Œ€‘€¡€Ë€¿€ÖQw¾Ú‚ ‚K‚h‚K‚U‚$‚Êw4€ç€¿€«€­€œ€€€x€l€r€E€a€K€D€<€K€U€F€>€Q€:€>€F€6€D€/€B€F€7€#€2€5€I€5€3€=€+€5€<€€-€$€$€2€€ €(€)€'€(€ €$€0€#€€!€)€€€#€€€€€€€€€"€€ €€'€€ €€ € €€€ €)€ €€ €€€€€ €€€€€€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€ +€€€€€€ €€€€€ €€€€€ +€ € +€€€ €€€€€€€€ +€ €€€€€€€€ €€€€€€€€€€ € €$€ €€€ €€€€€€€€€ €€ +€€€€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€€ €€€€€€€€ € +€€€€ € €€ €€€€€ € € €€€%€AƒDƒ`/€c€,€€€€€€ €€€€€€€€ €€€€€€€ € +€€€ +€€ +€ €€€ +€ € € €€€ +€€€€ €€€€ €€€€€€€€€€€€€€€ +€€€€€ € €€€€€€€€€€ € €€€ €€€€€€€€€€€€ €€€ €€ € € €€€€€€ +€€ €€€€ €€ € €€ € €€€€ € €€€€€€€ €€€€€€€ €€€€€ € +€€ €€€€ +€€€ +€€€%€€€€€€€ €€€€€€€$€€ € € €€€€ €€€€€€€€€€€%€€€€!€€€&€€€€%€#€€€(€ € €,€,€0€2€(€0€0€!€3€3€=€7€0€)€€!€,€+€8€,€+€/€S€:€=€U€5€:€9€>€>€H€4€;€S€A€W€Z€Q€c€X€8€J€^€L€T€Z€B€i€W€^€j€…€ˆ€ƒ€¥€È€Ú€ýI¯Ò‚#‚—‚׃ƒƒ^ƒU‚³‚¹‚Œñ’D&€ß€Ñ€¦€¶€€Š€k€o€R€h€=€R€A€M€Q€H€L€S€@€7€H€R€L€:€+€7€:€9€$€2€/€%€!€;€8€%€6€?€5€%€*€&€ €$€'€!€ €#€+€,€$€€+€€€€€€€€€ € €€€ €€€€€€€ €€€€€€ € €€€ €€€ €€ +€€€ +€€€€€ €€€€€ €€ €€€€€€€ €€ €€€#€€€€€€ €€€€ €€-€€€€€€€€€€€€€€€€€€€€&€€€€€€ €€€€€€ €!€€ € €€ €€€€€€ €€€€€€€€€ €€€€€€€€€€€€€€€€€€€€ €€€ €€€€€€€ €€ € €€€€€ €€ €€€€ €€ €€€€€€ €€€€ €€€8€F€€€€€€#€&€y€Ö€è€l€B€#€€€€€€€€€ +€ €€€€€€€ +€ €€ +€ €€€€€€€ €€ €€€ €€€€€€€€€€ €€€€€ €€€€€€€€€€€ € € +€€€ €€€ €€€€€€€ +€€€€€€ € €€€€€€ €€€ €€€€€ € € +€ €€€€ € €€€€€€€ €€€ € +€ €€€ +€€ +€€ €€€€€ +€€ €€€ €€ €€€€€€€€€€€ +€€€ +€€€€ +€ +€€€€€€€€ € €€€€€€€ €€€ € € €€€€€€ €€€$€€€#€ €€€€'€"€"€ €#€€€%€€€€"€$€€!€(€)€!€$€1€/€1€0€4€A€1€)€+€4€.€7€3€1€7€B€)€E€1€7€]€1€C€C€G€7€S€T€B€V€G€m€S€\€U€L€N€B€A€O€Q€Z€N€\€V€y€j€€ƒ€§€Æ€â ?þ‚p‚ÓƒMƒµ„„ „D„/ƒ¾ƒ¡ƒ‚†‚—P€ý€ª€´€˜€‰€„€q€p€c€`€\€?€S€N€P€?€J€D€?€7€B€O€>€T€D€H€3€;€:€D€>€-€5€H€€?€.€8€(€+€€*€+€$€€$€ €€ €(€(€€€€€€€€€.€&€€ €€!€€€€€€€€€€€$€€ €€€€€€ € €€€€€€ €€ € € +€€€€€ € +€€€€€€€€!€ €€€&€€€€€€€€€€€ €€ €€€ €€€ €€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€ €€€€€€€ €€€€€€ +€ €€€€ €€€ €€€€€€€€€ €€ €€€€€€€€€€€€€ €€€€€€€ +€€€ +€€€€ €€€€ €€ € €€€€€ €€€€-€®€¾€9€€€€€#€€;€F€c€4€1€€€€€€€ €€€€€€ € € €€€€€€ €€€€ € € +€€€ +€ €€€ €€€€€€€€€€€€€€€€€€€€ €€€€€€€ € € € €€€€ €€€€€€ € +€€€€€€€€ +€€€€€ € €€€ €€€€€€ € €€€€ €€ €€€€€€€€€€€ € € €€€€€€€€€€€€€€€ €€ € € €€€ +€€€€€ +€ +€€ € €€€€€€€€€ €€€€ € €€ €€€€€€€€€€ €€ €€ €€€ €€€€ €€€€€€€€$€€€€'€€€&€€-€'€-€1€2€#€€"€#€,€9€'€-€6€0€'€,€*€0€;€C€3€,€0€@€7€0€;€@€/€F€5€1€7€Z€K€W€g€Z€b€P€b€\€o€[€_€E€<€[€]€^€f€{€t€^€{€p€°€Î€ò “ð‚Xƒƒ‘„„å…„…–…•…¦….„žƒëƒC‚¡‚€Ï€Æ€–€Š€’€u€s€W€g€a€O€O€O€P€@€A€:€)€@€O€6€-€E€8€C€3€<€&€G€F€*€/€,€+€%€*€(€/€/€-€6€$€(€,€*€ €€"€€€€$€€)€€&€€ € €€€*€ €€€€ €€€€ €$€€€#€ €€€€€€€€€€€€€ €€€€€€ €€€€€€ €€€€#€ €€ €€ € €€€ € €€€€€€€€ +€€€€€€€€€€€ €€€€€€€€€€€€€€ €€€€ +€€€ +€€€€€ €€€€€€ +€€€ €€€€€€ €€€€€ €€ €€€€€€€€€ €€€ €€€ €€€ €€€ €€ €€€€€€€ € +€€€ €€ €€€€€€€€€ €€ €€€€ +€€€4€±€Î€>€€€ €€€€&€!€4€!€ €€€ +€€€€ € +€ €€€€€€ €€ +€€€€ €€€€€€€€ € € €€ €€€€€€ €€€ € €€€€€€€€€ €€€€€ €€€€ €€€€€ €€€€ +€€€€ +€€€€€€€€ +€ €€€€€€ €€ +€€€€€€€ € € +€€€ € € € €€€ €€ +€ € €€€€€€€€€€€€€ €€ €€€ +€€ € €€€€€€€€ +€€ €€€ €€€ €€€€ € € €€€€ €€€€ €€€€€€€€ +€€€ €€€ € +€%€ +€€€€ €%€€$€€ €€€€€€€€€$€€€*€3€€:€,€G€3€5€7€€,€6€4€2€,€5€(€>€+€/€6€)€(€&€2€@€5€1€6€-€@€>€?€E€;€M€_€Z€p€j€u€ƒ€u€p€b€k€R€L€`€X€[€N€b€w€o€z€‡€€¼€ÜaÊ‚i‚òƒ¸„–…ƒ†v‡}ˆ ˆ ˆ,‡u†!… „ƒx‚±‚ …€Ô€È€¤€˜€’€‚€~€l€b€W€U€X€D€T€D€8€V€C€7€F€A€E€J€F€8€4€"€4€.€*€€,€5€>€€*€0€=€0€€#€.€'€$€!€%€€€"€!€$€€"€€€€€€€€€€€€€€€€€€€€€€€$€€€€€€€ +€€€€€€€$€€ €€€€ €€ €€€€€ +€ €€€€ +€€€ € +€€€€€€ € € €€€€ €€€€€€€€€€ €€€€€€€€€€€ €€€€€€ €€€€€ € €€ €€&€ € € €€ +€€€€€€ €€€€€€€ €€€ €€€€€€€€€€€€€€€ €€€ €€ €€€ €€€€€€€€€€€€€€ € €€ +€€€€€€€€€ €€€ +€€ €7€Y€%€€€€ €€€€€'€€€€€€€ €€€€€ €€€€ €€€€€€ € €€€ +€€€€€ €€€ €€€€€€€€€€€€€€€ +€€€€ €€€ €€€€€€€ € +€€€€ €€€ € €€€€€€€ €€ €€€ € €€€€€ €€ €€€€€€€€€€ € +€€ € €€€ €€€€€€€ €€ € €€€€€€ €€€€ €€€€€ € € €€€€€ € +€€€€€€ +€€€€€ €€€€€€€€€ €€€€€€€€€€ € € € € €€€€€€€ €€€€€ €€€ €€%€&€%€€€)€€ € €4€€-€€€#€$€'€&€3€.€&€%€,€+€&€?€<€(€#€)€'€;€,€5€8€/€:€0€2€*€1€@€>€J€]€M€Z€c€q€~€l€˜€¡€€z€h€n€T€Q€ €f€X€Y€{€j€w€’€‘€–€Á€ï.¼‚7‚؃„S…•‡‰ŠÚŒ‰Œ²ŒŠÚˆ‡…S„ƒM‚ˆÂX€¸€»€¤€|€o€v€j€l€T€A€R€T€S€+€N€K€@€K€=€@€=€K€@€5€1€F€<€5€€.€9€-€"€?€,€:€(€(€+€€'€+€€<€)€ €)€#€€+€*€€€€€€€€€€€€&€-€%€€€€€ €€ €€€ €€€€€ +€€€€€€ €€ €€€%€€ +€ € €€€€ €€€$€€€€€€€ €€€€€€€ €€€€€ €€€€€€€€€€ €€€€€€€€€€ €€€€€ €€ €€€ +€€ €€€€ +€€€€ €€€€€ € €€€€€€€€€€€ €€€€€€€ €€€€€€€ € +€€ €€ €€ € +€ €€€ €€€€€ €€€€€€ +€€ €€€€€€€ €€€€€€ €€€ +€€€€€€€€€€€ +€€€€ € € €€ €€ € €€€€€€€€€ +€€ € +€ €€€€€ €€€€€€€€€€ +€ €€€€€€€ +€€ +€€€€€€€€€€€€€€€ €€€€€ €€€€€ € €€€ €€€€ €€ €€ €€€€ € €€ €€€ +€€€€€€€€€€ +€€€ € €€ € €€€€€ €€€€ €€€€€€ €€€ +€€€€€€ +€€€€€€€€€ €€€€€€€€ +€€€ € €€€€€ €€€€€€€€ €€ € €€ €€€€€ €€ €€€€!€ €€€€ €€ €€'€(€(€/€€*€€"€ €6€€$€€$€(€€€&€-€.€,€€#€7€*€;€=€%€.€)€6€2€&€B€A€+€@€*€:€5€:€=€H€B€X€^€b€j€b€ž€—€¤€À€€o€s€z€[€m€<€y€N€V€z€n€a€u€›€¨€»€çJù‚{ƒ-„…-‡ˆüŒïî”/•}”Ž?ЇM…!ƒ¸ƒñt€Ó€Î€»€}€o€„€z€_€\€[€`€N€b€;€F€<€F€P€<€I€:€;€?€/€3€B€+€8€?€+€*€+€G€(€0€€5€/€%€0€/€2€$€ €€*€)€ € €€€#€€€€€€€€€€€!€ +€€€€€"€€ €€&€ €€ €€€ € €€€ €€€€€€€€€€"€€€€ €€€€€€ €€€€€€ €€€€€€€€€€€#€€€€€ € €€ €€€€€€€€€€€€ € €€€ €€€€$€€€€€€€ €€€€€€ €€€€€€€€€€€€€€€€€ +€€ +€€€€€€ €€€€€ €€€ €€ € €€€€€€€€€€€ €€€ €€€€ €€€€€€€€€€€€€€€ € €€ +€€€€€€€€€€€ €€€ €€€€€€ €€€€€€€€ €€ €€€€ €€€ €€€€€€€ +€€€€ €€€€€€€€ €€ +€€€ €€€€€ €€ € € +€€€ €€€€€€€€€€€€€€€€€€€€€€ € € € €€ € € € +€€€€€€€€€€€€€€ € €€€ €€€ €€€€ € +€€€€€ +€€ €€€ € € +€ € €€€€€€€ €€€€ € € €€ €€€ €€€€€€ €€€€ €€€ € €€ €€ €€ €€€€ €€€€ €€€€€€ € €€/€ +€$€€€€€€€'€€€.€+€!€,€&€&€$€€)€6€7€€$€€1€5€-€€"€'€+€%€7€>€5€>€€,€3€?€3€+€$€-€1€D€5€8€A€B€M€K€a€m€„€¤€Ð€õ€÷€È€ €€ƒ€e€j€X€x€k€`€€€€…€Š€™€Ä€Ôvö‚¶ƒp„„†0ˆ¾Œn’Aœ¤¦]©¥”œÄ“Ãr‰ †O„Kƒ<‚4“6€ð€Å€£€¯€—€o€d€Y€i€d€8€R€L€Q€2€D€K€:€F€A€;€=€8€4€A€G€6€3€€(€ €€;€&€=€,€.€&€.€$€*€+€.€€€€#€"€€)€€€€€€€€€€ +€€€€€€ €€€€ € +€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ +€€€€€ €€€ €€ €€€€€€€€€ € €€€€ €€€ € €€ +€€€€€€€€€ €€€€€€€€€€€ €€€€ €€€€ €€€ €€€€€€€ € € €€ +€€€ €€ +€€ € +€€€ € €€€€€€€€€€€€€€€€ €€€ €€ €€€ €€€€€€€€ €€ €€€ +€€€€€€ €€€€€ €€€€€ €€€€€ €€€€€ +€€€€€€€€€€€€€€€€€€€€€ +€ €€€€€€ €€€€€ € € €€€€ €€€€€ €€ +€€€€€€€€€ €€ €€€€ €€€ €€€€ €€€€€€€€ €€€€€€€€€€€€ €€€ €€ +€€€€ €€€€€€€€ €€ €€€€€€ € € +€€€ € €€€ +€ +€€€€€€ +€€€ €€ +€€ €€€€€€€€€ €€€€€€€ +€€€€ €€ €€ € +€€€€€€€€ +€€€€€€€€€&€€€5€€-€/€1€/€ €%€#€,€3€)€€"€€/€)€.€5€5€4€9€0€N€B€:€.€0€1€>€E€;€<€E€?€R€W€g€y€š€õ9ÏíÆN €Ä€‡€h€k€g€f€\€W€x€s€‘€˜€¡€Í€ê–‚#‚ʃȅ+‡dоñ™Ù­´ÉcÞØD¸í u’³Œ‡—…-ƒŽ‚ëb €ì€®€¥€•€€\€€€Z€X€H€P€S€N€;€F€R€A€A€F€H€;€4€3€@€2€?€@€9€-€+€&€.€*€7€'€3€"€€(€4€+€.€ €€€"€€,€*€!€€ +€€€€"€€€€€ €€€€€€€ €€€€€€€€€€€€€€!€€€€ € €€€!€€€€€€€ €€€€€€€€€€€€ €€€€€€€ €€ €€€€€€ €€ €€€ +€€€€€€€€€€€ €€€€€ € €€ +€ €€ €€€€€€ €€€ €€€€€€€€€€€€€€€€€ +€€ €€€ € €€ € € € €€€€ €€ +€ €€€ +€€€ +€€€ €€€ €€€€ €€€€€€€ €€€€€ +€€ € €€€ €€ +€€€ € € +€ +€ € € €€€€ €€€€ €€ +€€€ +€ +€€€€€€€€€€ €€€€€€€€€€€ €€€ € € +€€€€€€€ € €€€€€€€€€€€ € +€€ €€€€ € €€€€€ +€€€€€€€€€€€€€ €€ +€€€€ +€€ +€€€€€€ € € € +€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€ +€€ €€€€ €€€€ € €€€ € €€€ €€€€€€ € +€€€ € €€€€€€€ €€ €€€€€ €€€€€€€€€ €€€!€€€€#€!€€!€€"€&€$€*€'€(€#€)€'€$€€,€)€#€2€0€%€!€)€.€0€8€2€4€:€7€I€0€<€B€E€H€9€C€B€N€L€T€|€†€«€ÿ¥‚Ý„ô…\‚è]€ÿ€›€ƒ€q€m€p€g€\€f€z€•€›€×€´€Û-’‚2ƒ„…»ˆ$Œp“Ù£ƒÃ†€€€€µ½šqJ‰/†„‚Ø‚N/€Þ€»€»€£€‚€i€^€F€R€Y€?€N€R€6€K€C€G€P€M€J€M€6€1€(€"€.€A€3€2€'€3€4€3€7€.€,€5€)€"€4€-€#€1€$€&€ €,€€€(€ € €€€€€€€€ €€€€€ €€ €€€€ €€ €€ €€€€€ €€ €€€€€€ € €€€€€€€ €€ €€€€€€€€€€ +€ € €€ +€€€€€€€€€€€€€€€€€€ €€€€€ € €€€ €€€€€€ € €€€ € €€ €€€ € €€€€ €€€ €€€€€€€€€€€€€ +€€€€€€ € €€€€€€€ €€€€€€€€€€€ € €€€€€€ +€€€€€€ €€€ € +€ +€€€€ €€ €€€€€€€ €€ € € € €€ €€€€€€ €€€€€€€€€€€€€ +€ €€€€ +€€ €€€€€€ €€€€€€€€ € +€€€€€€€€€ €€€€€€€€€€ € €€€€ €€ €€€€€€ €€€ €€ €€ €€ +€€€€€ € €€€ +€ €€€€€ €€€€€€€€€€€ €€ €€ +€€ +€€€€€ +€€€€€€ €€ +€ € €€€€€€€ +€€€€€€ €€€€€€€€€€€€€ €€€ € €€€ €€€€€€ +€ €€€ €€ €€€ +€ € +€€€€ € €€€€ € +€ €€€€ €&€€€ €€€€&€-€€!€€#€€'€"€(€'€0€-€€+€,€#€-€(€.€:€&€ €"€5€/€@€8€9€€9€9€3€=€@€6€.€=€4€N€H€Y€[€o€€¹:‚R† –u›V‡R‚F€Ä€”€p€h€^€\€n€k€e€‡€¦€õ€Ñ€ß(ž‚‚ö„…Ј&Œà•¡¨›Úl€€€€Ìò Í‘ІJ„Fƒâ€8€û€«€¬€ž€€n€W€a€V€G€a€B€E€-€Q€=€M€A€G€=€=€€.€4€B€?€>€-€/€1€;€0€.€'€%€2€-€1€"€&€%€%€'€5€%€€€*€!€ €€€€ €€€$€€€€€ +€€€€€€€ €€€ +€€€€€€€€ € €€ +€€ €€€ +€€€€ € €€€€€€€€€€€€ €€€€€€€€€ +€€€€€€€€€ +€,€€€€€€€€ €€€€€€€ € €€ € +€€€ €€€€€€€€ €€ €€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€ €€€€€€€€ +€€€€€€€€€€€ €€€€ €€€€€€€€ €€€€€ €€€ € € €€€€€€ €€€ +€€€€ € € €€€€€€€€ € €€ €€€€€ € €€€€€€€ €€ +€€€€€€€€€€€€ €€€€€€€€€€€€€ €€€€ €€ €€ €€€€€€€ +€€ €€€€€ €€€ €€€€ € €€€ €€€ € € €€€ €€ €€€€€€ €€€ €€€ € €€ €€€ €€€ €€€ €€ €€€€ € €€ € +€€€€€€ €€€ €€ +€€€€€€ €€€€€ € €€€ €€€€€€€€ € € €€€€€ €€€€€ €€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€3€€€€&€+€/€€€5€2€0€:€ €(€/€6€€/€C€0€;€3€4€0€A€A€/€@€Q€F€T€?€:€P€U€Q€Z€d€†€âB‚k‡¨¡t¬ö‹Q‚™5€Ô€š€u€s€y€i€r€v€{€w€¥€Ÿ€•€å(uü‚Ûƒà…v‡ƒŒ¡”Ú§JÓù€€€€ÍJ¡nÏŠ†g„‚äö4€Ù€¯€¤€‘€w€U€e€e€>€]€R€H€A€9€N€/€I€C€H€@€;€C€9€O€,€)€=€5€+€>€P€#€)€=€K€€€.€;€+€€+€€€"€€'€*€€)€%€€ €&€ €€€€€ €€"€€ +€€€€€%€€€€€€€ €€€ € €€€€€€€€€€€€€€€ €€€€€€€€€€ €€€ €€,€ € €€€€€€€ €€€€€€€ €€€€€€ € € €€€€€€ +€€ +€€€€€€€€€€€€ €€€ €€ +€€€€€€€ +€€ €€ +€€€ €€€€€€€€€€€€ € +€ €€€€ € +€€R€ €€€€ +€ €€ € €€€€ €€€€ +€€€€ €€ +€€€ € €€ +€€ €€ € €€€€€€ €€€€ €€€€€ € €€€ €€€€ €€€€€€€ €€€€ € € € €€ €€€€€€€€ €€€€€€€€€ €€€€€€€ € +€€€€€€€€ +€€€ +€€ € €€ €€ €€€€€€€€€€€ €€€€€ +€€ +€€ €€€€€€€€€€ €€€€€€€ +€€€€€€ +€€€€€ +€€ €€€€€€€ €€€€ +€€€€€€ €€€€€ €€€€€€ € € € €€ € € € €€€€ €€ €€€€€ +€€€ +€€€€€€ €€€ €€€€ €€€ € €$€€€€€€€€ €€€€,€!€€ €€#€€€€€&€)€.€€,€-€5€0€0€8€&€2€2€-€,€*€(€;€8€5€F€M€F€,€F€G€.€B€H€C€E€9€c€_€f€€Îì„–€“«‡2‚t0€Â€Š€‚€{€r€x€b€~€r€Ž€‘€®€·€ú{΂ºƒ±…‡>‹l’Ÿ5¼+ú €€€»ø›ÜŽãˆÖ† ƒý‚Ë‚!€á€É€ˆ€~€m€f€`€[€E€q€P€S€F€C€`€A€O€=€?€3€*€+€A€7€:€;€1€5€,€.€I€2€6€€0€;€"€5€$€€>€!€-€=€4€&€ €(€€ €€ +€€€€€ +€€ €€€ €€ €€€€!€€€€€€€€€ €€ €€ €€€€€€ €€€€ € €€€ €€ +€€€ €€€€ €€€€€€€€€€ €€ € €€ € €€€€€€€€€#€ €€€€€€€€€€€€€€€ +€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ € +€€ €€€€€€ €€ €€€€€ €€€€ €€€€€€€ € +€€€€€€€€€€€ € €€€ +€ +€ € € €€€€€ € € +€€€€€ €€€€€€€ € €€€€€€€€€ €€€€€€€€€€€€€€€€ €€ +€€€ €€€€€€€€€€€€ +€€€€€€€€€€€€€€ € € €€€€€€€€€ +€€ €€€€€€ €€€€ €€€ €€€€€€€€ +€€€€ €€€€€€€ € €€€ €€€€ +€ €€€€ €€€€€€€ €€€€ €€ €€€ €€€€€€ € +€€€ € €€€ € +€€€€€ €€€ € €€€€ +€ €€!€ +€€ €€€€ +€€€ €€€ €€ +€€€ +€€€€€€€€€€!€#€&€€€€ €!€€"€ €0€€*€)€+€€/€2€7€:€*€,€€6€+€€%€K€S€0€M€H€O€6€G€A€/€B€G€E€F€I€E€X€y€l€ª€ÞL‚T„j„¶‚ï„€­€•€o€h€P€g€m€d€‚€€€²€»€íR¤‚lƒ“„”†7‰UŽK–™¦(½ÚðÙ[ §6–¹Œ¸‡®…PƒË‚‰‚k0€ê€Ù€±€‘€w€s€o€I€S€X€^€V€:€N€c€D€:€X€8€6€,€;€<€F€J€1€-€;€5€*€.€"€/€&€:€4€,€5€7€€(€%€%€€%€€€"€€ +€€!€€€ €€ €€/€€€€€€€ € €€€)€€€€€€€€ €€!€ €+€ € €€ +€€!€ €€€€€€€ €€€€€ +€€€€€€ €€ € €€€€€€€€€€€ €€€ +€€€€€ €€€€€€€ €€€€€€ € €€€€€€ € €€ € € €€€€€ €€€€€€€€ €€€ €€€ € +€€ +€€€€€ €€€€ €€€ €€€€€€€€€€€€€€€ +€€€€€€€€€€€€€€ +€€€€€€€ €€€€€ €€€€€ €€€€ +€€€€€ € €€ €€€€ €€€ +€€ €€€€€€€€€€€€€€ €€€€€ €€ € €€€ €€€€€€€€€ +€ €€ €€€€€€ € €€€€€€€€€ €€€€€€€€€€€ € €€ +€ +€ €€€€€€€€€€€€€€ +€€ €€€€€€ +€€€ € €€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€ +€ +€€€€€ €€€ €€€ €€€€ € €€ €€ € €€€€ € € +€€€€€€ €€€€€€ € € +€€ +€€ € €€ €€!€ +€€€€€€€ €€€€€ €€%€"€€€/€$€'€€€-€.€.€E€"€)€,€"€(€-€,€.€4€?€T€R€b€e€M€8€C€5€A€K€B€B€7€T€L€X€p€‘€ª€óD£ Q +€»€¢€€k€V€G€m€e€{€\€–€}€Œ€±€ã€ò@‚‚݃ê…J‡LŠ£¢—3Ÿù¨ó¦§ A—ÖgŠ‘†]„ˆƒ‚ŸÕX3€ì€½€™€“€m€j€I€^€`€N€T€J€C€M€0€J€9€J€A€6€I€D€'€I€@€€E€1€<€@€)€*€9€€6€%€0€€€.€'€€)€€#€=€(€€€€ €€€€ €€€$€€€ €€€€€"€€€€€€€€€ +€!€€€€€€€€ €€€€ € €€€€€€€ €€€!€#€€ €€€ €€€€€€€ +€€€ €€€€€€€€€€€ €€€€€€ €€€€€€€ +€€€€€€€€€ +€€€€€ €€€€€€€€€€€€€€ € €€€€€€ €€€€ +€€€€€€ € €€€ €€€€€€ €€€€€€€€€€ € €€€€€€ €€€€€€€€ €€€ € €€ €€€€€€€€€€€€€€€ +€ €€€€ €€€€€€€€ € €€ €€€€€€ €€€€ € € € € €€€€€€€€€€€€€€€€€ +€€ €€€€ € +€€€ €€ €€ €€€€€€ +€ +€€ €€ €€€€€€€ €€€ +€€€ €€€€€ € €€€€€ +€ € €€ €€€€€€€ +€€ €€€ +€€€€€€€ €€€€€€€ €€ €€€€ €€ € +€€€€€€€€€€ +€€ €€€€ €€€€€€ €€€€€ €€€€ € €€€€€ +€€ +€€€€ €€ € +€€€ €€€ €€€ €$€€€€€€€"€€€€€€€€ €€€€€5€ €+€€+€.€9€D€(€#€)€0€/€7€=€E€(€T€P€t€í€ï€o€L€<€O€O€>€7€K€D€W€a€O€c€u€ƒ€§€É€à€Ï€Í€Š€ˆ€~€j€\€S€Q€i€Y€p€{€’€‘€°€¼€õ0LÑ‚aƒ„M…’‡¸Š‹ŽB’c•“ç‘{ŽZŠË‡þ… ƒÆ‚h‚!Œ3+€Î€—€°€y€e€…€I€Y€I€W€F€H€O€L€@€2€<€7€A€-€1€9€:€4€M€)€5€D€/€K€*€/€€/€,€€(€ €'€€(€1€€€€"€#€€€€€€€€€€ € € €€€€€€€€€ €€ €€"€ €€ €€€€€ €€€€€ €€€€€€€€€€€€€€€$€€€€€€€€€€€€ €€€ €€!€€€€€€€ € € +€ +€€€€€€€€€€€€ +€€€€€€€€€ €€ +€€ +€€€ €€ € €€€€ €€ +€€€€€€€ €€ €€€€€€€€€€€€€€ €€€€€ €€€€€€€€ +€€€€€€€€ +€€€€€€€€€€€€€€ €€€€€ +€€€€€€€ €€€€€€ +€€€€€€€ +€€€€€€€€€ +€€ € € € € €€ +€€€€ €€€€€€€ € € €€ €€€€ € +€ €€€ €€€ +€ €€€€€€€€ € € +€ € €€€€€ € +€€ €€€€ €€€€ €€€€€€€€€ €€ €€€€€€€€ €€€€€€€€€€€€€ € €€ € €€€€€€ €€ € €€€€€€€ € € €€€€€€€€€€€€€€€€€€€€€ € +€€€€€ €€ € €€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€!€€ €€€ €€ €€€!€€€€€€#€#€0€5€0€#€2€7€/€#€'€1€;€0€B€2€%€J€R€ª‚‚Ë€×€Q€V€J€;€5€3€N€<€T€U€P€[€k€|€“€s€¤€§€²€’€t€m€‚€W€]€H€c€d€_€v€€…€«€Â€³€Ê€ç%tú‚‡ƒ^„h…¡†ò‰ŠÚŒJ‹Š>‰3‡!…¤„Jƒ(‚½i€þ€î€¹€§€«€’€€y€h€V€O€L€<€G€e€H€0€N€6€>€>€1€$€3€N€8€:€.€"€€D€5€>€9€0€!€)€'€'€€$€(€€(€&€/€€€€€ € €€€€$€€(€€€€ €€€€€€€€€€ € €€€€€€€€€€€€€€€€€ €€€€€€€ €€€ €€€€€ €€€ +€ €€€€€ €€€€€€€€ €€ €€€€ €€€€€€ +€ €€€€€€€€€ € +€€€ +€€€€€€€€ +€€€€€€€ +€ €€€€€€€€€€ €€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€ +€€€€€€€€ €€€€€€€€€€€€€€€€€€ € +€€€€ +€€€€€€€€ €€€€€€€ €€ €€€€ €€€ €€€€€€€ €€€€€€€€€€€€ €€€€ +€€€€ €€€€€€€€ €€ € +€€€€€€€€ €€ €€€€€€€€ +€ €€ € €€ €€€€ €€ €€ €€€€€ +€€€€€€€€€€€€€€€€€€€ +€ €€€ €€€ +€€€ €€ €€€€€ €€€€€ €€€€€€€€€€ +€ +€€ €€€€ €€€€ € +€€€€ €€€€ +€ €€ €€ €€€€€€ €€€ €€€€€€ €€€ €€€€€€ € €€€€€€€€€€€$€"€€€€€$€%€0€€6€-€/€)€#€/€0€"€"€'€9€5€,€(€F€K€a€ž‚‚[€À€i€F€C€.€;€?€<€?€D€.€>€^€h€O€o€‚€h€ƒ€i€„€b€g€X€K€P€W€^€]€P€e€z€{€‘€€·€«€ñG‚‚£ƒR„%„û††´‡c‡Q†s†…"„ƒc‚«‚¨?€þ€Ò€Ô€¥€¤€‡€„€z€l€^€W€L€D€;€E€;€/€L€=€"€9€0€W€/€M€6€F€-€*€+€C€D€H€E€2€%€ €€%€*€€€*€1€€€&€€€€€'€€-€ € €€€€€€ €€ €€ €"€€€€€€€ €€€ €€€ € €€€€€ € € €€ €€ +€€ €€€€€€#€ €€€ €€€ +€€€€€€€€€ €€€€ € €€€€€€€ €€ €€€€€€€€€€€€$€€€€€€€€ €€€€€ €€€ €€'€€ €€€€€ €€€€€ €€€€€ +€€€ € € +€ +€€€€€ €€€ €€€ €€ €€€€€€€€€€ €€ €€€€ €€€€ €€€ €€€€ €€ €€€€€€ €€€€€€€€ €€€€ € €€€€€€€€€€€€ €€€€€€ €€€€ €€€€ € €€€ €€€ €€ +€€ €€ +€€ € €€€ +€€ €€ €€ € €€€ €€€€€€ €€ €€€€€ €€ €€ €€€€ €€€€€€€€ €€ €€€ € €€€€€ +€ +€ €€€ +€€€€€ € € €€ +€€€ +€€€ +€€ € €€€€€€€ €€€€€€€ €€ € €€€€€ €€€€€€€€€€€ +€€€€€€€ +€€ € €€€€ €€&€€€€ €€€ €€€€ € €€ €€€€ €€ €€€€ €€#€!€€€€ €€€&€ €€$€€!€€)€=€€0€€.€ €€/€.€.€2€3€5€7€6€?€G€D€K€y€Þ€ß€Œ€f€W€4€0€;€B€7€9€F€=€M€R€U€J€M€N€q€j€^€`€S€`€T€X€O€e€_€_€U€U€V€l€•€€œ€¦€Õ€õ^¤‚ +‚ŸƒCƒÐ„ „º„²„¿„>„ƒ¯‚Û‚‚æŒ!€Õ€­€¿€§€}€s€u€z€I€_€Y€S€@€?€H€K€:€*€1€6€@€2€2€:€>€A€>€5€&€J€<€€<€&€*€0€$€!€€,€F€!€-€€€€"€€%€€€€€"€€€€4€%€€ +€€€€€€ €€€!€€€€ €€€€ €#€€€€€€ €€€ € €€ €€"€€€€€%€ €€€€€ €€€€€ € €€€€€€ €€€€%€€€ +€€ €€€€€€€€ €€ €€€€ +€€€ €€€€€€ € €€€ € €€€€ +€€€€€ +€€€€€€€€€€€€€ €€€€€ €€ € +€€€ +€€ €€€€€€€ € € €€ €€ €€€€€€ €€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€ +€€€ +€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€ € € €€€ € +€€ +€€€€€€ € €€€€€€ € +€ €€ €€€€€€€ € €€€€€€€€€€ €€€€€€ €€ € €€€ € +€€€€€€€€€ € €€€ +€€€€€ €€€€€ +€ €€ +€€ +€€€ +€€€€ €€€€€€€€€€€€€ +€€€ €€€ €€€€ €€€€€€ +€ €€€€ €€ €€€€ €"€€€€ € €€"€€€€€€€€ € +€€€ +€€€ €€€€%€€€€€€€ €"€#€€(€€)€€*€8€€*€6€+€+€%€5€1€+€?€6€,€(€-€6€5€A€H€H€u€[€B€B€F€:€,€B€Q€:€+€J€8€L€E€H€E€R€@€S€Z€_€g€a€[€I€Q€[€S€I€S€Z€R€T€p€€€€‘€§€¤€ð€Ù.X¯õ‚_‚´‚ãƒUƒCƒWƒ-‚¼‚´‚Wû¦0€Ñ€­€·€§€ƒ€q€Y€r€L€M€L€A€O€B€>€G€B€B€6€9€.€E€A€4€.€7€4€5€)€>€3€;€3€,€)€€>€1€€(€%€!€$€)€2€%€%€€%€€€2€€ +€€€ €€€€€!€€€€€€€ € € €€€€€€€€€%€€€€€4€€€€€€€ € +€ +€ +€€€€$€ € €€€€€ €€€€€€€€€€ € €€€!€€€€€€€€€€ €€€€€€€€ €€€€€€€ €€€€€€€ +€€ +€€€€€€€ €€€€ €€€€€€€€€ €€ €€€€€€€€€€€€€€€€ € €€€€ €€€€€€€€€€€€€ €€€€€€€€€€€€€€€€ +€€€ +€€€€€€€€€€€ +€€€€€ +€€€ €€ €€€€ +€€€€€€€€€€€€€€ +€ €€€ +€€€€€€ € €€ € €€€€€€ €€ +€€ € € €€€€€€€ € € €€€€€€€€€ € €€€€€ +€€€€ €€€€ € +€€€€€€ +€ € €€€ € €€€ €€€€€€€€€€ €€€€€€ €€€€ +€€€ €€€€€€€€€ €€€€€€€€ +€€€€€ +€€€€€ +€€ € €€€€ €€€€€€€€€€€€€€€ € +€ € +€€€€€€ € +€€€€€€€€ € €€ €€ € €€€!€€€€€8€!€"€€€€-€.€ €!€'€2€)€&€6€%€9€B€8€6€(€@€H€/€=€9€?€E€D€8€I€7€;€:€A€F€I€€B€/€=€7€G€C€T€\€C€:€R€Q€@€J€I€G€U€D€M€J€_€`€N€\€U€y€ˆ€£€®€Ã€Î +Q‚Âý‚‚F‚{‚N‚:ÿ‚“j9€þ€ù€º€©€•€y€€‚€y€b€Z€T€K€Q€Q€>€V€7€G€4€2€@€:€@€7€3€%€:€$€9€'€F€'€-€3€%€?€0€@€0€&€9€%€"€$€#€€€€€ € €%€€1€€4€!€€€ €€€ €€€€€ €€%€€€€€€ €€€€€€€€€€€€€€€€€€'€ € €€€€€€€€ €€€€€€€€ €€ €€€€€ €€€ €€€€€€€€€€€€€€€€ +€€€ €€€€€€€€€ €€ €€€€€€€€€ €€€€€€€€ €€ €€€€ €€ +€€€ €€€€€€€ +€€€€€€€€ €€€€€€!€ €€ €€€ €€€ €€€€ €€€ €€€€€€€€€€€ € +€€€€ €€ +€€€€€€ € €€€€ +€€€€€€€€€€ €€€€€€ €€€ € €€ €€€€€ €€€€€€€ €€€€€ €€ +€€€€€ € €€ €€€€€€€€ € +€€€€€ €€ €€ €€€€€€€€€€€€€ € €€€€€€€ €€ €€ +€€ €€ +€ +€ €€€ €€ €€ +€ €€€€€€€€€€€ € +€ €€€€€€ €€€€€€€€ € €€€€€ €€ €€€ €€€€€€ €€€€ +€€€€ €€€€€€€€€€ € €€ €€€€ €€€€€€€€€€€€€ €€€€€€€€!€€€#€€3€ €€€€€%€!€)€,€€-€+€ €2€,€7€'€.€0€,€+€^€B€K€0€<€;€<€C€;€,€J€4€1€6€K€E€6€7€&€B€:€<€H€C€=€>€M€H€]€N€E€K€W€B€R€J€L€w€P€Z€c€o€€€…€–€¼€Á€é (ys¬­îåÔšºo>2€ÿ€ö€Ï€Â€Œ€‚€_€w€ƒ€Z€\€^€S€E€H€W€R€V€D€L€3€N€>€2€7€A€(€1€3€/€2€>€3€>€B€7€$€0€6€ €0€-€)€9€C€5€4€ €€)€0€€€)€)€ € €8€€€€€€!€ €€ €€$€€€€€€€€€€€ €€€#€ €€€ € €€ €€€ €€€€€€ +€ +€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€ € +€€€€€€€€€€€€€€ €€ €€€€€€€€€ €€€#€€ €€€€ €€€€€€€ €€€€€€ €€ €€€€€€€€€ €€€ € € +€ €€€€€€€€€€ €€€ €€€€€€€€€€ €€€€ € +€€€ +€€€€ € € € €€ €€€€€€€€€€€ €€€€€€ €€€€€ € € €€€ €€€€€€ +€€ €€ €€€€ +€ €€€ €€ €€€€€€€€ €€€ +€€€€ €€€€€€€€€€€€ € +€€ € €€€€€€€€ € € €€€€€€€ €€€€ € +€ €€ +€ €€€ € €€€ €€€€€€€€€ €€ +€€€€€€ € +€€€€€ €€ €€€€ € € €€€€€€€€€€€€€€ €€€€ € +€€ €€€ +€€€€€ € €€ € €€ €€€€€€ €€€ €€€€€€ € €€€ €€€€€€€ +€€€€€€€€€€€€)€-€"€€€€*€€'€$€#€2€:€.€€.€A€:€€6€:€=€?€A€5€9€A€<€A€7€5€9€*€W€7€D€9€&€F€@€>€8€7€>€D€E€>€U€I€D€L€?€=€I€O€K€i€a€V€h€u€†€}€„€„€°€»€¾€÷ASS€œlZA€ú€é€¯€²€”€‡€s€v€™€k€j€Z€S€X€E€E€d€F€G€@€S€M€4€.€:€:€.€D€<€-€+€@€4€5€B€2€2€1€.€I€1€2€'€'€(€/€€5€€€/€!€ €€€€+€€,€€€€€€+€2€ € € +€€€€ €€€€€€€ +€€€€€€€€€ +€+€ €€€€€!€€€€€€ € €€€€€€€&€€€€ +€€€€ +€€€€ €€€€€€€€€€ €€ €€ €!€€€7€€€€€€€€€€€€€€€ +€€€€€€€€€€ € €€€€€€€€ €€€€€€€€ €€ €€ € +€€€ €€€ €€€€€€€ € €€ € €€€€€€€€€€€€€€€€€ €€€€€€€ € €€€€€€ € €"€€€€€€€€€€€ +€€€€€€€ €€€€ €€ €€€€€€ €€€€ € €€€ +€€€ +€€ €€ € +€ €€€ €€€€€ +€€ €€ +€ €€€€ €€€€€€€€€€€€€ €€€€€€€€€€€€ € €€€€€€ €€€ €€€€€€€€ +€€€ € € +€€€ €€€€€ +€€ €€€€€€€€€€ +€€€€€€€ €€€ +€€€€ € +€ €€ +€€€ €€€€€ €€€€€ €€ € € €€ €€€ +€ € €€€€€€ +€€€ €€€€€€€€€€ € €€€ €€€€€€€!€2€€€#€€%€€€€'€'€*€ €€€5€!€)€4€&€2€#€,€#€)€€<€2€,€-€€=€?€;€O€2€H€T€6€>€@€I€>€*€M€2€D€D€4€I€@€B€=€F€@€O€G€=€E€7€=€N€?€J€H€R€<€M€K€`€_€z€t€p€–€‹€€€¡€¶€Û€è€Ò€ù,€ï€î€î€Ý€¿€€¦€z€€r€v€m€O€`€R€c€@€C€L€W€(€I€M€T€J€G€0€:€5€5€E€/€/€"€A€D€/€/€1€8€,€"€)€7€€9€€!€€€%€€€#€*€ €*€€€€€€€€€€€€€€€€€€€€€€ €€O€€ €€€"€€€ €€€€€€€€ +€€€€€ €€€ € +€€€€€ €€ €€€€€€€€€€€€€€€€€ €€€€ €€ €€€€€€€€€ € €€€€€€ €€€ € €€€€€€€€€€€ +€€ €€€€€ €€ +€ €€ €€€€€€€€€€€ €€€€ €€€€ +€€ €€€€€€€€€€ € +€€€€€€€ € € €€€€€€€€ € €€€€€€€ €€€€ +€€ €€€€€€€€€ €€€€ €€€€€€ €€€€€€ €€€€€€€€ €€€€€€€€€€ €€ +€€€€€€€€ €€ €€€ € +€ +€€€€€ €€€€€€€€ € +€€€€€€€€ €€€€€€€ +€€€€€€€€ +€€€€ € € € € €€€€€ € €€€ €€ €€ +€ €€ €€€€€€€€€€€ +€€€€ +€€€€€€€ +€ € +€€ +€€€€€€€€€ € € € €€€ € €€€ € € +€ €€€€€€€ €€ € €€ €€€ € €€€ €€€ € €€€€€€ €€€€€,€€ €*€€%€€.€€,€%€#€&€$€€!€.€€€ €+€)€.€-€0€)€9€4€/€=€>€8€B€H€:€€7€S€E€5€=€6€<€L€L€3€;€C€.€A€:€<€7€1€=€E€J€K€9€<€I€H€E€A€O€G€N€C€P€N€H€q€j€c€r€€€q€€¤€®€¾€Ç€È€Ê€ô€ê€é€ó€Æ€Ä€Á€¸€·€©€™€†€}€y€U€j€l€N€T€F€B€V€V€J€O€A€@€O€I€B€B€1€:€B€'€A€K€3€/€+€B€J€.€9€$€€*€€+€+€#€*€ €€€#€"€€€ €€€6€€€%€€%€ €*€€€2€#€€€€€€€€€€)€ +€€ € +€€€€$€€€ €!€€€€€€€€€€€€€ €€ €€€€€€€!€ €€€ €€€€€€€€#€€€€€€€€€€€€ €€ €€ €€€€€€ €€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€ € €€ €€ +€€€€€€€€€%€€€€€€€€€€ €€€€ € € €€€ +€€€€€ €€€€ €€€€ € €€€€ € €€€ +€ € €€€ €€€ €€€€ +€€€ €€€€€€€ +€€€€€€ +€€€€€€€ €€€€€ +€ €€€ +€ €€€ +€ €€€€€€€ €€€€€€€€€€€€ €€€€€€ €€€€€€ €€€€€€ €€€€€€ € € € €€€€€€€€€ €€ +€€ € +€€€€€ +€ +€€€ € €€€€€€€€€€€€€ €€€€€€ +€€€€€€€€€€ €€€ € €€€€€€€ +€€€€ € +€€€€ €€€ € €€€€€€€€€€ €€€€€€€€€€€€€€&€€€€€€€ €*€'€#€€€#€'€€€€+€&€!€)€0€#€€2€<€%€0€7€2€9€=€6€*€+€@€L€6€I€H€G€R€H€7€D€/€1€I€?€%€6€>€3€0€5€C€1€H€5€0€K€<€O€G€O€J€D€B€P€V€h€e€l€r€p€¦€Š€¥€¹€¼€§€Æ€Å€Â€Ç€¼€¹€¯€¨€µ€¡€¡€€‡€c€`€u€j€M€Q€N€T€=€>€F€=€H€K€3€I€5€E€=€?€ €.€/€1€7€-€,€+€?€4€3€2€:€ €26€!€!€,€"€€€€,€ €€€€€€-€€€€€6€€€€€€€€€ €€€€ €€€€€€€€ €€€€ €€€€€ +€€€€€ € +€€€€ €€€€€€€€ €€€ € €€€€€€€€€€€ €€€€€€€€€ +€€€€€%€€€€€€€€€€€€€ €€€€€€€ €€€€€€ €€€€€ €€ € € €€€€€ €€€€€€€€€€€€€€€ € €€€ €€€€ €€€€€€'€€€€€€ €€€€€€€€€€€€ € +€€€€€€€€€€ € €€ €€€€€€€€€€€ +€€ +€€ €€ €€€ €€€€€€€€€€ €€€€ €€ €€ €€€€€€€ €€€€€€ €€ €€€ €€€€€€ +€ +€€€€€€€€ € € €€€€€ €€€€ €€€€ €€ €€€€€€€€€€€€€ €€€€€€€€ €€ €€€€€€ €€€ €€€€ €€€€€€€ €€€€€ €€€€€€€€€€ €€€€ €€€ €€ €€ €€€€ € € +€€ €€ +€€€ +€ +€€ € €€€€ €€ € €€ €€€€€€€ €€€€€€€€€€ €€#€€€€"€€&€€€€(€0€€€€ €'€2€€'€!€)€,€1€$€!€'€€&€7€,€+€8€€@€'€7€1€;€R€2€3€L€P€f€H€X€/€M€C€0€5€B€1€@€7€5€1€1€7€4€>€B€;€J€D€U€B€O€E€V€I€a€]€e€]€[€`€o€y€{€{€–€œ€˜€¬€ª€´€±€œ€©€’€’€“€“€‰€†€l€h€|€o€b€^€L€H€G€I€O€Q€M€M€N€A€L€.€>€7€5€7€&€9€3€I€(€4€L€/€.€.€4€3€(€€F€%€€8€(€,€1€€(€#€€+€€€€€€3€€€€ €€€€€"€ €€€€€ €€€€€€€€€€€€€€€ €€€€ € €€€€€€€€€€€€€€€ €€€ €€€€€€€ +€€€€€€ € € €€€€€€€€€€€€ €€ €€€ € +€€€€€€€ €€€€€ €€€€ +€ €€€€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€ €€€€ €€ €€€€€€€€€0€$€ € €€€ +€€€€€€€€€€ +€€ €€€€€ €€€€€€ +€€€ €€€€€ €€€€€€€€ +€€€€€€ €€€€€€€€€€ €€€€€ € €€€ +€€€ €€€€ € €€ €€€€ €€€€€€ €€€ € €€€€€€€€ €€€€€€€ €€€€€€ € € €€€€€ €€€€ €€€€€€ € +€ €€€ €€€€ +€€€ €€ €€€€ € €€€€€ €€ €€€€€€€€ € +€ €€€€€€€ €€€€ € € € €€€€ € € € €€€€€€ € €€ € +€€ € €€€ +€€€ +€€€€ €€ €€€€ € €€€€€!€ €€ €€€ €€€ €€€€€$€'€€€€0€)€€€€#€ €6€.€)€!€$€6€€"€.€"€/€#€/€>€€/€1€=€2€.€@€D€Q€<€c€e€‡€Š€b€P€D€A€@€9€5€1€6€;€8€=€:€/€>€>€<€E€=€K€J€:€9€\€E€F€U€T€]€Q€Y€T€a€t€g€m€•€w€i€w€”€“€˜€¥€€’€w€¢€‹€q€‰€m€r€r€n€j€`€K€G€I€A€7€^€B€3€2€:€D€A€,€>€7€C€6€;€6€<€5€?€8€>€:€5€,€3€€+€!€0€#€€+€€ €#€)€€ €€€€€#€€€ €€€%€ €€€€€€€€€€0€€€€€ €€!€ €€€€€€€€€€€ €€€€€ € €€€€€€ €€€ +€(€€€€€€ €€€€€€ €€€€€€ +€€€€€€€€€ +€€€ €€€€ €€€€€€€€€ +€ €€€ +€€ €€€€€ €€€€€€ € €€€ +€€€€ €€€€€€€€ € €€€€ € +€€€ +€ +€€€ € +€€€ €€€€€€€$€§€Œ€€ €€ €€ €€€€€€€€€€€€€€€€ €€€ +€€ €€€€ €€€€€ €€€€€€€€€€ €€€ € €€€€€€ €€€€€€€ €€€€€€ € €€€€€€ € €€€€€€ €€€ €€ +€€€€€€€ €€€€€ € +€€€€€€€€€ €€€€€€€€€€€€€€ +€ €€€€€€€€€ €€€€€ €€€€ +€€€€ €€€€€€€€€ +€ € €€€ € €€€ €€€€ €€€ € +€ €€€€€ €€€€ €€ €€ +€€€ +€€€€€ €€€ €€€€€€€€€€€€ €€€ €€€ €€€€ €€€€€€€€€€€€€€€€€€€€ €€€€€€#€.€€)€2€%€!€1€)€+€%€,€%€+€+€0€,€5€-€3€,€8€D€:€8€@€U€l€ªl½€Ø€}€E€C€>€4€<€=€4€%€<€8€1€2€<€G€@€:€@€7€G€2€<€S€7€G€?€A€N€E€B€Y€n€k€n€[€}€f€i€€€Š€o€‡€‰€€€x€|€{€s€o€h€Q€i€`€l€n€D€m€P€]€>€;€A€C€<€J€D€T€8€1€D€?€=€2€=€5€=€0€;€€*€&€L€/€+€.€3€€%€€,€"€*€€€€€€€€$€)€€€€€€€"€%€€€€€ €€€€€€ +€€ +€€€€€€ € €€ €€€ +€ €€€€ € €€€€€€€#€€€€€€€€€€€€€€€€ €€€€€€€€€€€ € +€€€"€€ €€€€ +€€€€€€€€ €€€€€ €€€ €€€€€ +€€€€€€€€€€ €€€ €€€€€€€€€€€€ €€€€€€€€€ € € +€€€€€€ € €€€€€/€Î€§€&€€€€€€€€ €€€ €€ € €€€ €€€€€€€€€€€€ +€€€€€€€€ €€€€€ € €€€€€€ €€€€€€ +€€€€€€€ € €€€ €€€€€€€€€ €€€€€€ €€€€€ € €€€€€€ +€ €€€ €€ € €€€€€ € +€€€€€ €€€€ €€€€€€€€ € +€€€ €€€ +€€€€ +€ €€ +€ €€€€ +€€€€€€ €€€€€€€ €€€€ €€€€ €€€€€€ €€€ €€€!€ €€€€ €€ €€€ € €€€€ €€€€€€ € €€ +€€€€€€€ +€€€ €€€€€€€€€ +€ € €€€€ € €€€€€#€€€€€€ +€*€€€€€ €€€#€%€€(€'€'€€"€0€7€€€/€!€"€'€3€4€,€%€>€>€>€3€;€L€T€y€ßƒä…S´€€_€L€:€G€P€4€0€4€7€K€/€C€6€6€E€=€A€I€+€7€@€K€K€M€C€O€F€B€H€Q€N€[€y€k€r€Š€h€d€q€j€…€Z€u€‚€X€q€w€t€p€_€_€k€d€X€>€O€\€I€n€R€1€J€A€4€&€6€I€D€+€Z€C€7€<€N€J€B€9€<€$€E€8€%€€7€€€€(€€'€$€7€&€€€%€€ €!€€€!€!€€€€!€$€€€€€€€€€ €€ €€ € €€€€€€ €€€ +€€"€€€€€€!€€€€€€ €€€ €€€€€€ € €€€€ +€€€ +€ €€€€€€€€€ €€€ €€€!€€€€€ +€ €€€€€€€ € +€€€€ € €€€€€ €€€€ €€€ €€€€€€€€€€ €€€€€ +€ €€€€ € € €€€€€ +€ €€€€€€€€€€€€€€ €€'€.€4€€€€€€€ €€ +€€€ € €€€€€€€€ € € €€ € €€€€ €€€€€€€€€ €€ +€€€€ € +€€€€€ €€€€ +€ €€€€ +€€€€ € +€€ €€ +€ €€€€€€ €€€ € +€€ €€€€€ €€€ €€€€€€€€ €€€€€€€€€ € €€€ +€ €€€€ €€ +€€€€€€€€€€ +€€€ €€€€€€€ € € € €€€€€ €€€€€ € €€ €€ €€€€€€€€€€€€€ € €€€ €€€€ € €€€€€€€€€€€€€€ € €€€€ € €€€ €€€€€ € €€€ €€€€€€ € +€€€€€€€€€ €€€ +€€€€ +€€€€€€$€€€€€€#€,€€€,€€,€€ €,€>€#€%€ €/€#€"€+€0€,€?€=€,€9€;€G€0€^€j€È‚ô„ v€ˆ€W€P€:€4€=€:€0€-€,€5€8€9€D€ €B€8€/€=€7€R€&€A€B€9€9€9€;€^€Y€H€Y€K€^€U€X€n€a€c€K€V€^€^€c€n€r€c€j€i€\€N€O€m€e€H€B€C€@€Q€V€<€G€1€=€6€<€?€5€$€-€I€-€5€F€?€L€9€#€@€ €:€1€2€(€7€€&€ €€)€#€€$€€€€€!€€€'€€€&€€€ +€€€€€€€!€€€€€€ €€ €€€ €€ €€€€€€€€€€€€€ €€€€€€€€€ +€€€€€€€€€€€ €€€€€€€ € €€€€€€€€ €€€€€€€€€ €€€€€€€€€€€€ +€€€ €€€€€€€€€€€€ €€€€€ €€€€€ € €€€€€ €€€€€€€ +€€€ € €€€ €€€€€€€€€€€€€€€€ €€€€ €€€€€€ € €€ € +€€€€ €€€ +€€€€ €€€€€€€€€€€€ €€€€ +€€ €€€€€€€€€€€€ € €€€ €€€€€€€€€€€€ +€€€ €€€€ € €€€ €€€€€€ € € +€€ €€€€ €€€€€€€€€€€€€€€ € € €€€ € €€€€€€ €€€€€€€€ +€ € €€ € € €€ €€€€€ +€€ € +€€€€€€€ €€€ €€ €€€€ €€€€€€€€€€€ €€€€€€€ €€€€€ +€ €€ €€€€ +€€€ +€€€ € € € €€€€€ € €€ €€€€€€€€€ € €€€"€€€€€€€€ € €€€€€1€€€€€€*€1€€$€€€.€2€#€2€1€3€&€*€4€$€*€*€2€€E€)€/€4€7€?€7€W€g€ˆ*d€Ë€p€L€R€5€K€7€/€-€2€@€1€3€4€6€A€2€5€"€2€,€C€8€O€=€6€S€D€8€V€S€A€]€b€M€H€:€a€\€_€L€q€`€Q€d€T€e€L€P€]€g€Q€\€N€I€R€<€D€G€H€K€4€P€B€=€5€2€<€.€*€:€/€0€1€6€<€1€5€0€#€:€6€)€.€=€+€?€#€%€'€€*€)€"€€*€,€"€%€€+€&€€€#€€€€€€€€€!€€€€€€"€€-€€€ €€€€€€ € €€€€€€ €€€ €€€ € €€ €€€€€€€€€€ +€€ €€€€€€ €€ €€€ €(€€€€€€€ €€€€€€€€€€€€€ €€ €€€€€ € €€€€€€€€€€€€€€ €€ € +€€€€€€€€ €€€€€€ +€€€€ +€€€ €€€!€€ €€€ €€€€€€€€€€ +€€€€€€€€€€€€€€ € €€ € € +€€€€€ €€€€€€€ €€€€€ € €€€ € €€€€€€€ €€€€€€€€€€€€€€€ +€€€€€ +€€€€€€€ +€€€€€€€ €€€ +€€€€ €€ +€ €€€€€€€€€€ € €€€ €€ €€€ € €€€ € € €€€ € +€€€€€€€ € €€€€€ € +€€ €€ €€€€€€ €€ €€€€€€€€€€€€€ € €€€€€€ €€€ €€€€ €€ +€€€€€€€€€ €€ €€€€€€€ €€€€€€€€€ €€€ +€€€€€€€€€€€ €€€€ €!€€€€ €€€€€€€ €€€€€ €€€€€€€€€€%€€#€,€#€5€+€1€&€#€!€7€&€-€/€-€4€1€*€E€)€G€2€,€)€=€E€<€a€p€€c€[€O€D€=€1€4€>€/€3€Q€>€;€E€4€=€-€0€:€4€4€0€G€O€;€5€5€?€E€;€P€;€T€\€9€_€Q€U€a€v€Q€x€v€\€N€S€K€<€N€d€K€W€L€X€C€T€?€=€L€G€Q€L€=€M€2€C€(€T€8€=€C€;€,€(€-€=€5€8€0€:€1€5€0€>€8€&€#€'€€%€+€€,€$€&€"€€€,€ €€€€€€€€€€*€€€€€€€€ +€€ +€€!€€€€$€€ +€€ €€ €€€€$€€€€€€€€0€€ €€€ €€€ €€€€ +€€€€€€€€€€ €€ € €€€€€#€€€€€€€€€€€ €€€€ €€ €€€€€€€€€€€€€ €€€€ €€€€€€€€€€ € € €€€ €€€€ +€€€ €€€€ € € €€€€ €€€€€€€€€€€€ +€€€€ €€€ € € +€€€€€€€€€€ €€€€€€€€ €€€ €€€ € € €€€ €€€ €€€ €€ €€€€€€€€€€ €€ €€€ €€€€€€€ +€€€ +€€€ € € +€ € €€€ €€€€ €€€€ +€€€€ €€€€€€€ €€€€€ +€€€ €€€ €€ €€€ €€€ € €€ €€€€€€€ €€€ € +€€€ €€€€ €€€ € +€€ +€€ €€€ €€€€ €€ € €€€€ €€€ +€€€€€€€€€€ €€€€€€ €€€€€€€ € €€€€€ +€€€€ € €€€€€€€ € € €€€€€ €€€€€€€€ €€€€€ € €€€ €€€€ €€ €€€€€€€€€€€€€€€€€#€#€'€5€*€€-€€%€+€,€-€0€A€(€,€&€<€+€9€/€M€&€=€A€4€=€P€c€M€X€J€O€@€9€H€;€=€6€4€=€8€8€:€;€C€2€B€8€8€A€D€F€F€=€9€6€6€D€C€;€4€N€1€Y€H€W€E€R€M€O€L€Z€O€P€D€Q€]€W€E€Z€4€I€G€W€K€O€H€?€L€=€D€I€:€D€$€A€6€8€,€3€9€5€2€)€-€*€)€-€-€ €(€%€.€!€)€)€$€$€,€/€"€#€+€"€€$€ €*€€€€€€#€€€€€€ +€€ € € €€€€€€€€€€€ €%€ €€ +€€€€€€€€€€€ €€ €€€ €€ €€€ +€€€€ €€ € €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€€€€ €€€ €€€€€€€€ €€€€€ €€€€€€€€€ €€€ €€€€€€ +€€€€€'€=€€€€€€ €€€ €€€€€ €€ €€€ +€€€€ €€€€€ €€ +€ €€€€€€€€€€€€€ €€€ €€€ €€ €€€€ €€€€ +€€€€€€€€€ €€ € €€ €€ €€€€€€€€ €€ €€ €€€ € +€€€€€€ €€€€€€€€€€€€€€€ €€ €€€ € €€€€ €€ € +€€€€€€ €€€€€€€ €€€€€€ €€€€€ +€€€€€€€ €€€ €€€€€ +€€€€€ €€ € €€€ € €€€€ €€€ €€€ +€ €€€€€ €€€€ € +€€€€ € +€ €€ €€ €€€ €€€€ € €€€€€€€€ €€€€€€€ €€€€ €€ +€€ €€€€€€€€€€€ €€€€"€ €€€€€€€#€€€+€%€.€ €9€€)€.€-€"€(€2€0€'€.€1€*€'€4€L€)€,€A€9€9€1€J€I€J€N€:€?€5€2€9€6€/€7€4€2€6€1€:€*€/€3€8€>€@€?€E€8€<€4€4€2€<€C€D€G€N€F€Y€Q€M€M€E€R€>€R€V€K€Q€U€F€U€<€M€I€2€@€V€M€M€A€S€=€*€=€Q€:€N€E€3€:€5€4€/€2€:€4€4€@€I€)€4€+€,€1€-€A€#€!€+€)€1€€ €€€#€€€€€€"€€€€€€€€#€€#€ +€€ €€€€€€€€€2€#€€€ €€€ €€€€€€€€€€ €€€€€ €€€ €€€!€€€€€€!€ €€€€€€ +€€€€ +€ +€€€€€€ €€€ €€€€€€€€ €%€€€€€€€€ €€ €€ +€€€'€€ +€€€€€€ € € +€ €€€€€ +€€€€ €€€€€€ € €€ €€€€€€€ +€€€€€€€ € €€€€€€€€€€€€€€€ €"€€€€€€€€€€ +€ €€€€€ +€€€€€€ +€€€€€€€€€ €€ €€€€€€€€ €€€ € +€€€€€ € €€€€€€ €€€€€€€€ +€€€€€€ +€€€€€€€€€€€ € €€€€ €€ € +€ €€€€€ €€€€€€€ +€ +€€ € €€ €€€€€€€€€ +€ € € € € +€ €€€€€€€ €€€€€€€€ €€€€€€€ €€€€€€€€€€€€ €€ € +€ €€€€€€ €€€€€€€€€ €€€€ +€€ €€€€€€€€€ €€ +€€€€€€ +€€€€€€€€€ €€ €€ +€€€€€€€ €€ €€€ €€€ €€€€€€#€€€€€5€€€€€ €€&€%€.€-€/€%€€"€/€(€)€)€,€!€2€€€)€0€.€#€/€=€8€=€.€B€:€E€<€-€9€9€/€?€3€:€:€)€4€1€9€8€.€2€:€'€>€B€)€9€8€0€.€<€4€D€1€L€=€€Q€K€N€Q€D€C€A€>€<€V€L€j€M€R€D€E€F€8€@€2€@€J€L€J€G€4€1€>€6€4€+€H€3€A€@€=€3€?€@€5€3€'€.€-€:€0€-€&€2€-€,€*€"€ €"€ €,€!€6€+€€€"€!€'€€€.€€€€ € €€ € +€€€€ €€ +€ € €€ €€€€€€ +€€€ €€€(€€€€ €€€€ € € €"€€€ €€€€ €€ €€€!€€€€€€ €€€€ €€€€€€€€€€€€€€€€ +€€€ €€€€ € €€€€€ €€€€€€€€€€ € €€€ € €€€€€€€€€€€€€€€€ €€ €€€€€€ €€€€€€€€€€€€€ €€€€€ €€ €€€€€ €€ € €€€€ € +€€€€€€€€ +€€€ €€€€€€ +€€€ € € €€€€€€€€€€€ €€ €€€€€€€€€€€€€€€€€€€€€€€ €€€ +€€ € €€€€€€€ €€€€€€€ €€€ €€€€€ +€€ +€€€€ €€€€€ €€ €€€€€€€ €€€€€€€€ +€ €€€ €€€€€ €€ € €€ €€€€€ +€€ €€€ +€€€€€ €€ € €€€€ +€€€ €€ € +€€€€ €€€ €€€€ €€€€ +€€ €€€ €€€ € € €€€€€€ €€€€€ €€€€ €€€€€ €€€€€ €€ € € +€€ +€€€€ € €€€€€€ €€€€€€!€€€€€)€€€€€€€"€!€$€"€!€€€1€3€"€ €2€€,€-€)€A€+€!€;€.€<€F€-€6€1€<€,€A€-€@€D€+€I€@€4€6€8€2€J€>€6€B€1€D€5€3€9€6€1€-€6€9€D€6€0€<€K€A€<€<€J€D€F€H€B€J€J€A€D€L€E€P€L€W€E€=€?€7€F€3€B€I€D€'€G€I€6€>€9€?€7€8€D€:€*€@€@€:€<€5€-€0€(€€<€&€2€(€2€%€)€#€"€%€"€ €%€&€(€-€€&€€€€(€€(€ €€€€€€€,€€€€(€€€!€€€ €€ €€ €€&€ € €€ € € +€€€€"€€€ €€€€€€€€ €€€€€€€€€€ €€€€€€€ +€€€ €€€€ +€€€€ €€ €€€€€€ €€€€€ +€€€€€€ €€€€€ €€€€€€€€€ €€€ €€ € € € €€€€ €€ €€€€€€€€€€€ €€€€€ €€€ €€€€€€€€€€€€€€€€€€€ €€€€ € €€€€ €€ €€ +€€€ €€€ €€€ €€€€€ +€€€€ +€ €€€€€€€ €€€€ €€€€€€€€€€€€€€€€€€ €€€€€ €€€ €€ €€€ €€€ € €€ €€€€ +€€€€ €€€€ €€€€€€€ € €€€€€ €€€€€€€€€€€€€€€€€€€€€€€€ €€ € €€ € €€€€ €€€€€€€€€€€€€ +€€ €€ €€ € €€€€€€€€€€€€ €€€€€€ €€€ € +€€ €€ € €€€€ +€€€€ € €€€ €€ € +€ € +€€ €€ +€ €€€€€€€€ €€ €€€€ €€€€ €€ €€€€€€€€€€€€€"€"€ +€!€€€%€"€/€€!€"€€A€!€0€!€*€?€€#€6€4€1€0€;€;€(€>€+€1€/€/€"€9€2€4€0€-€?€/€2€<€B€5€/€1€4€H€!€$€/€@€6€,€8€$€<€<€8€"€*€=€>€=€8€6€E€N€?€I€D€J€L€F€J€=€I€@€B€F€6€8€Z€6€@€=€3€?€>€=€4€J€A€@€K€/€.€O€C€D€2€;€/€9€E€E€3€2€;€/€3€*€%€,€€#€€1€$€&€.€&€/€+€+€€!€€€€€€€€€€€&€ €,€€ €"€€€'€ €€€€€ €€€€€€€€%€€€ € €€€€€€€ +€€(€€ €€€€ €€€€€ €€€€€€ €€€€ €€ €€€ €€€€€€€€€€€€€€ €€€€ €€ €€€€ €€€€€ €€€ €€€€€€€€€€€€€€ +€€€€€€ €€ €€€€€€ € €€€ €?€€€€€€€€€€€€€€€€€€ € €€ €€€ €€€€€€€€ €€€€€ €€ €€€€€ +€€€€€ €€€€ €€€€€€€ €€€€ € € € €€€€€€€€€ +€€€€€ €€€€€€€€€€€€€ €€€€€ +€€ €€€€€ €€€€€€€€€€€€€€€ €€€€€ €€ €€€€€€€€€€€€ +€€€€€€€€€ €€ €€ €€€€€€€€ €€€€€€ +€€€€€€€€ €€€ €€ € €€€ €€€€€€€€€€€€ €€€€€ +€€ € € +€€€€€€ € €€ €€ €€ €€ +€€ €€€ €€ +€€ €€ €€ €€€€€€ €€ +€€€€€€€€€ €€ €€€€ € € € €€ €€€€€€€€€€€€€€#€,€0€€+€€&€+€%€3€,€4€/€=€>€+€%€)€&€@€C€/€2€"€6€$€3€+€&€$€*€-€=€9€0€>€7€0€4€:€E€7€5€)€&€0€-€)€9€3€€(€3€'€C€9€(€-€=€=€7€@€B€/€O€=€L€G€F€C€F€I€H€F€9€K€H€>€Q€C€6€F€6€I€<€U€F€J€<€@€6€,€-€;€+€9€6€C€'€:€5€9€.€6€#€€3€#€1€#€)€€=€"€.€%€4€&€&€*€€"€ €'€€ €€€€€€€€€€€€*€€€€€€"€2€€€€ €€€/€€€€€#€ € +€ €€€ € €€€€€€€€ €€€€€€€ €€€€#€€€€ €€€ €€€€€ €€ €€ €€€€€€€€€€€€€ €)€€€€€€ +€ +€€€€€€€€€€ € €€€€ €€€ €€€€€€€€€€€ €€€€€ €€ €€€€ €€€€€€€€ €€€€€ €€€€€€€ +€€ +€€€€ €€ € +€€€€€€€€€ €€€€€€€€€ €€€ €€ €€€€€€€€€€€€€ €€€€€€ € €€€€€€€€€€€€€€€€€€ € €€€€€€€€€ € +€ € € +€ +€ €€€€ €€€€ +€€€€€ €€€€€€€ €€€€€ €€€€ €€ €€€€ €€€€€€ €€ € € +€€€€ +€€€€€ € € € € €€€€€€€€€€€€ € € €€€€€ €€€€€ € €€ €€ €€ €€€ +€€ €€ €€€€ +€ €€€€€€€ €€€€€ € €€€€€ €€€€€€€€ €€€€€€ €€€€€€€€€€ +€€ €€ € €€€€€€€€€€€ €€%€€€€€€€€(€-€.€"€#€*€#€)€8€3€6€ €6€?€1€3€-€2€G€?€@€7€2€>€€G€*€5€2€7€5€>€,€3€,€.€:€/€<€:€6€3€.€0€:€?€8€9€=€.€:€3€-€/€>€"€:€=€D€8€B€N€<€P€I€P€?€D€L€Q€R€;€U€N€C€8€K€=€6€8€G€H€E€:€;€A€0€A€I€+€5€E€6€/€;€9€C€;€(€%€,€-€)€€5€€&€2€'€(€$€/€€4€"€&€€3€€€*€€€€$€€€ €€€€€€€€€*€€€€€€€€ €€€€ € +€€€€ +€€"€€€,€€€€'€€ +€€ €€€ +€€ €(€€€€€ +€ €€€ +€€€€€€€ € € +€ € €€ € €€€€€ €€€ €€€€ €€ €€€€ +€€ +€€€€€€€ €€€€€ +€€€ €€€€ €€ €€€€ €€€€€€€€ €€€€€€€€ €€€€€ €€€€€ +€€€ €€€ €€ €€ +€€€€ €€€ €€€ €€!€€€€€€ +€€€ € €€€€€ €€€€ € € +€€€€ +€€€€€€€€€€€€€ €€€ € € +€ €€€ +€€ +€€ €€€€€ +€ €€€ +€ +€€€ € € €€ €€ +€€€€€€ € € € €€€€€€€€€€€€€€€ +€€ +€€ €€€€€€€€ +€ €€€ +€ €€€€€ € €€ +€€€ €€€ €€€€€ €€€€€ €€€€€ +€€ +€€€€ +€€ €€€ +€€ +€€ €€ € €€€€ €€€€€€ € € +€€€ €€€ €€€€€ €€€€€€€€ €€€ €€€€€ €€€€€ € +€€"€€€€€€€€€ €€€€€€€€€€!€€€€€€€€€€€€€ +€€€!€€"€&€€€&€0€$€+€&€#€+€5€%€'€#€"€$€*€-€1€<€(€6€:€6€"€?€€D€0€C€+€;€8€7€9€*€#€6€:€)€<€0€3€>€9€5€;€4€5€'€H€)€:€5€2€9€8€$€<€C€O€5€9€H€7€4€;€T€>€D€@€J€=€=€:€O€D€D€6€7€B€1€E€=€@€D€?€6€&€2€:€0€,€@€8€7€5€?€3€8€>€2€4€5€2€$€=€$€€3€+€€ €.€%€-€€(€€0€ €€€€€€€/€€€€#€€ €€€€€€€#€€€€€€€"€€€ €€€€€€€€€€-€€€€€€€ +€ € +€ €€€€$€9€:€€€#€ €€€€€€€€ +€€€€ €€€€€€!€€€ €€€€ +€€€€€€€€€ €€€€€€€€€€ +€€€ €€€€€€€€€€€€€€€ €€€€€€€€ €€€ €€€€€€€€€€€€€ €€€€€€€ +€€€ € €€€ € €€€€€€€€ €€€€€€€ +€ +€€€€€€€€€€ € € €€€€€€€€€ € €€€€€ €€€€€€€€€ €€€ €€€€€ +€€€€€€€€€€ €€€ +€ € €€€€€€€€€€€ €€€€ €€€€ €€€€€€€ €€€€€€ €€€€ €€€€ €€€€€ +€€€€€ € €€€€€€€ €€€€€ €€€€€€ € €€€€ €€€€ €€€€€€ € €€ €€ €€€€€ €€€€€ €€ €€€ € €€€€€ €€€ €€€ €€€ €€ €€€€€€€€ €€ €€€€€ €€€€ €€ +€€ €€ €€€ €€€ €€€€€ +€€€€€€€€€€€€€€€#€€€€€ €€€#€"€!€&€$€!€)€.€"€€"€ €"€ €7€*€&€)€)€6€2€0€5€€3€'€.€-€)€*€5€.€1€,€,€<€€)€:€5€4€F€9€<€:€=€5€.€7€<€3€.€0€B€€G€;€?€8€A€E€A€4€8€D€(€^€6€>€1€L€-€E€S€K€:€A€9€1€8€5€4€-€C€2€+€*€@€3€1€6€7€/€?€0€-€+€1€€F€:€ €3€"€7€€€€€-€%€$€€"€€€'€€€,€ €"€&€€ +€#€&€€ €€€ €€#€€€€€€"€€'€€€€€&€€ €€€€€€€€ €€€ €€€€€ €€ €€€€€/€Å€¾€'€€€€€€€!€€€€€€ €€€€ € €€€€€ +€€€ €€€ +€€€ €€€€€ €€€€€€ €€€ +€ €€€€€€€€€€€ +€€ €€€€€ €€ €€€€ +€€€€€€€€€ €€ €€€€€€€ €€ +€€€€€ €€€€€€€€€€€ €€.€€ € €€€€€€€€ €€€€€€€€€ €€€€€ €€€€€€ +€€€€€ +€€€€€€€€€€€€ €€€€€€€€€ €€€ €€€€ € €€ €€ €€€ € +€ +€€ €€€€ €€€€ €€ €€€€€€€€€€ € €€€€€€€€€€€€€ €€€ +€€ € +€€ €€€€ € €€€€€€ +€ +€ €€ €€€ €€€€ €€€€€€€€€ +€€ €€ €€€€€€ +€€€€€€€€€€€€€ € € € € +€€€€€ €€€ +€€€€ €€€ € € €€€€€ €€ +€€ € € €€€ +€€€€€€€ €€ €€€€€€€€ €€€€€€€€€ €€€€€€€€ €(€"€€€€€€€(€5€)€€%€'€&€(€'€%€C€#€!€$€6€.€9€6€,€(€0€'€,€0€2€7€7€/€6€7€1€(€1€(€0€,€6€%€'€C€(€@€7€7€5€.€6€;€5€?€0€1€8€B€0€>€8€7€:€A€5€A€B€;€@€5€L€O€J€+€E€3€+€3€'€/€=€D€;€J€C€8€A€J€G€0€*€0€€€5€1€3€)€?€8€,€/€G€F€7€0€+€2€*€ €€€,€.€>€#€€€€€€€%€#€€,€€€€€€€€€€#€€€€€€€€ €€€€$€€€€€ €#€ €€€ € € €€€€€"€€ €€€€ €€€€ €€a€Z€€€ €€ €€€4€€€€€€ €€€ €€€€€€€ € €€€€ €€€+€€ € €€€€€€€€€€ €€€ € +€€ €€ €€€#€*€ +€€€€€€€€€€,€€€€ €€€€€€€€€€ €€€€ €€€€ +€€€ € €€€€ €€€€€€€€€ +€ € +€€€€€€€ € €€€€€ €€ €€€€€ €€ +€ +€€ € € +€€€€€€€€ €€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€ €€€€€ €€€€€ € €€€€€€ +€ € € € €€ +€€€€€ €€€€€ €€€ €€€€ €€€€€€€€€€€ €€€€ €€ +€ €€€€ €€€€€ €€ €€€€€€€€€€€ €€ €€€€€€€ €€€€ +€ €€€€ +€€ +€€ €€€ €€€€€ €€€€€ €€€€ €€€€€€€€€ €€€ € €€€€€€€ € €€€€ €€€€€€€€€€€ +€€ €€€ €€ €€ €€€€ €€ € €€€ €€€€*€€€$€!€€!€€#€/€€'€!€ €#€€"€&€8€)€$€2€/€8€3€7€ €-€'€0€)€8€1€-€+€!€6€/€.€2€=€1€*€€"€;€+€9€$€2€*€(€4€I€.€6€+€=€1€1€6€7€C€-€+€-€6€9€1€F€D€@€-€Q€N€?€9€<€6€3€O€1€*€7€E€M€B€E€B€8€>€Y€C€0€-€E€4€*€%€1€,€/€#€M€6€+€*€%€4€/€,€!€7€ €€ €+€€)€€€€)€!€&€€&€€€€#€ +€€ €€€€!€€€€€.€€€€€€€€€€€ € +€€€€€€€€€€€€€ €€€ +€ €€€ €€€ € €€€€€€€€€€€€€€€€€€€€€:€€ €€€ €€ € €€€€€€ €€€ €€€€€€ € € €€€ € €€ €€€€€€€€€€€ € €€€ €€€€€€€€ +€€€€€€€€€€€€€ €€€€€ € € €€€ €€ €€€€€€€€ €€€€€ +€ €€€€€€€€€€€€€€€€ €€€ €€€€€ €€€€€ € €€ €€€€€ €€€ +€€€€€€ €€€€€€€ €€€€€€ €€€€€€€€€ €€ €€€€€€€€ €€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€ €€€€€ +€€€€ €€€€€€€€€ €€€ +€€€ €€€€ €€€ +€€€€ € +€€ €€€ €€€€€ € € +€ € € €€€€€€€€ €€€€€ +€€€€ +€€€€ €€€€€ +€€ € €€€€€€€€€ €€ € €€ +€€€ €€ €€ €€€ €€€€€€€€€ € €€€ +€€ €€"€€€€€!€€€€,€€*€&€&€€%€€€€-€-€€€!€€%€"€:€%€0€7€0€"€.€6€9€€%€6€'€$€-€4€1€)€/€2€+€4€'€,€€.€2€:€"€B€1€0€1€0€A€,€4€>€:€$€7€>€-€<€;€,€%€A€<€6€7€4€E€@€9€>€0€;€5€K€C€=€F€C€=€B€C€@€1€N€3€C€-€@€_€;€'€0€6€G€=€+€(€9€9€C€4€9€(€/€"€>€€$€*€$€€.€*€#€0€€€€€#€€$€€€$€€€€ €€€€€€€ €€€€€€€ €€"€€€ €€€€€€€ € €€€€€€€€€€€ €€ €€€€€€€€€ +€€€€€€ €€€€€€€€€€€€€€€€ €€€€ € +€€€€€€€€€ €€€€€€ € €€€€€€€€€€€€ €€€ +€€€€€€€€€€€€€ €€€ €€ +€ €€€€€€€€€€ €€ €€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€ € €€ €€€ €€€€ +€€€ €€ € € €€€ €€€€€€€€€€€€€€€€ € € €€€€€€ € € €€€ €€ €€ €€€€ +€€€ €€€ +€€€€€€ €€€€€ €€€€ +€€ €€ €€€ +€€ €€€ € €€€€€ €€€€ €€€€€€€€€€€€ €€€ € €€€ € +€ € €€€€€ €€€€€€€ €€€€€€€€€€€ €€ €€€€€ €€€€€€ +€€ +€€€€€€€ +€€ €€€€€€€€€ € +€ €€ € €€€€€ € € €€€€€€€€ €€€€ € +€€ €€€€€€ +€€€€ €€€ +€€€€€€€€ €$€€!€€€€#€€€€€&€ €'€)€€€+€,€*€.€€#€;€'€!€-€3€=€&€3€"€(€.€)€'€%€-€6€4€1€&€5€'€%€.€8€/€-€:€A€(€J€3€)€3€0€/€5€8€9€;€7€>€4€1€>€=€.€?€$€=€1€7€;€)€>€C€H€;€H€9€5€=€<€2€,€.€&€3€-€/€:€H€7€Q€4€-€$€.€+€2€2€;€€(€E€€1€/€"€€-€€A€+€2€+€'€€)€)€€ +€€(€€€€0€€€€€€€ +€,€€€€€€ +€€€€€€€!€€€ €€€€€€€ €€€€€ €€€ €€€€€€€ €€€ €€€€%€(€€€€€€ €€€ € €€€€ €€€€€€€€€€€€€€€€€€€€€ €€€€€€ €€€€ +€€€€ €'€€ €€€€€€€€€€€€ €€€€ €€€ €€€€€€€€€€€ +€ +€€€ €€€€€ +€ €€€€€ €€€ €€€€€ €€€€€€€€ +€€€€ +€ €€€€ €€€€€€€€€€€ €€€€€€€ €€€ €€ €€€€€€€€€€€€€€€€€€ €€€€ €€ +€€€ €€ €€€€ €€€ €€€€€ €€€ €€€€€€ €€ +€€ €€€€€€€€€ €€ € €€ €€€ € €€ € € €€€€ €€€€€€€€€ +€€ € €€€€ € €€€ € +€€ €€€€€€€€€ €€€ €€€€€€€€€€ €€€€€€ €€€€€€*€ €€€€€ € +€€€€ € €€€€€ €€€ €€€ +€ +€ €€€€ €€€€ € +€€€€€ €€€€€€€€ €€€ € €€€€€€ € € €€€€€!€€ +€€€€€€€€€€€$€€€€ €'€'€€ €%€-€€€(€€1€€-€4€&€€:€?€@€5€)€1€*€€?€7€ € €'€*€!€4€,€-€'€;€#€,€;€=€F€3€?€)€0€/€:€4€@€3€,€>€)€+€R€-€-€7€+€0€"€4€3€6€F€+€6€B€4€F€@€5€4€8€0€@€C€B€>€=€*€(€7€/€*€1€$€:€ €3€9€,€3€$€(€+€8€€%€€)€€%€€€€€/€€!€ €€€€€€€€€€ +€€€€€ €€€ €€ € € +€€€€€€€ €€€€€€ € € €€ €€€€€ +€€€ +€€€€€€ +€€)€€€ €€€€€ €€ €€€€€ €€€)€€€€€€ €€€€€€€ +€€€ € €'€€€€€€€€ €€ €€ €€€€ €€6€ €€ €€ €€€€€€ €€ € €€€€€€€€€€ €€€€ €€€€€€€€€€€€€€ € € €€€€€ €€ €€€€€€€€€€ +€€€€€€€ +€€€€ €€ € +€ +€€ +€€€ €€€€ € € +€€€€€€€€ € €€€€€€ +€€€€€€€€€ € € € € €€€€ €€€€€ € €€€ € €€€€€€€€€€€€€€€€€€€€€€ €€€ +€ €€ €€€€ +€€ €€€€€€ € €€€€€€€€€€€€€€€€ €€€€ €€€€€€€€ € €€€€€€€€€€ €€€€€ €€€€€€€€€ €€€€€€ €€ +€€€ +€€ € €€ €€€€€€€ €€€€€€ +€ €€€€ €€€ €€ +€€€€€€€€€€€€€€€€€€€€.€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€&€€€ €€€%€(€ €€+€+€€(€(€2€+€-€9€2€*€.€,€.€+€.€4€0€=€B€)€4€0€/€2€3€>€3€&€2€=€0€B€4€8€2€(€B€9€>€)€.€D€8€6€2€!€8€,€:€/€<€7€1€0€5€:€5€0€T€7€7€6€F€>€4€B€D€3€D€;€?€<€:€5€"€1€*€3€0€<€9€;€2€3€0€*€/€+€'€-€)€€.€€€-€€€€ €€€€€ +€€)€€€ +€"€ +€ € €€€ € €€€€€€€€€€€€€#€€ €€€€€€€€ € +€ € €€€€€ €€€(€€€€€€€ €€€ €€€€€€€€€€ €€€ €€€€€ €€€€€ € €€€€ €€€€€€€€€€€€€€€€ €€€€€€ €€€ € €€€€€€€€€€ +€€€€€€€€ €€€€€€€ €€ €€€€€ € +€€€€€€€€€€€€€€€€€€ €€€€€€ €€€€ € € € €€€ +€ €€€€€€ €€€€€€ €€€€ € € €€€€€€ € €€€€€ +€€ €€€ €€€€€€ €€ € €€€ €€ +€ +€€ €€ +€€€€€€ €€€€ +€€€€€€€€€€€€€€€€€ €€€€€€€ € €€ +€€ +€ +€ €€ €€ €€€€€€€€€€€€€ €€€€ € €€€€€€€€€€ €€ €€€€€€€ € €€€ €€€€ € +€ € €€€€€€€€€€ €€€€ €€€€€ +€€€€€ +€ €€ €€€€€ €€€ € €€€€ €€€ €€€€€€ +€ €€€€ €€€ € +€€ € €€€€€€ +€€ +€€€€€€€€€€€€€€€€!€€€)€€"€€€€€ €€€(€-€1€3€1€$€€-€*€&€:€4€0€:€€.€#€,€$€'€(€%€(€/€ €.€"€/€-€&€B€E€,€7€3€2€N€1€3€2€2€>€6€8€.€2€;€&€7€4€7€:€+€=€/€A€+€&€/€2€/€4€5€*€<€E€*€O€5€9€<€6€=€'€8€>€3€*€*€,€,€+€;€2€1€#€-€&€'€+€'€#€>€8€5€€€€4€$€€€*€€€€€#€ €€€€€ €€€€"€ € €#€ +€ €€€€€€€€€€€ +€€€€ €€€€€€ € €€€€ +€€€ €€€€+€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€ €€ €€€€€€ +€€€€€€€€€€€€€€€€€ € €€€€ €€€€€€€ €€€€€€€ +€€€ € €€ €€€€€€€€€ €€€€€€€€ €€€€€€€ €€ €€€€€€ €€€€ +€ €€€€€€€ €€€ €€€ €€€ +€€€€€€€ € €€€€ +€€ €€ €€€€€ €€€€€€€€ +€€€€€€€€€€€€€ €€€€€€ €€€ +€ €€€€€€€€€€ +€ €€€€€€€€ €€€€ +€€€€€€ €€€ € €€ € € +€€€€€€€€ €€ +€€ €€€€ € €€ €€€€€ € +€€€€€€ €€€ €€ €€€€€ €€€€€€€ €€€€€€€€ €€ € +€€€€€ €€€€€€€ €€€ € € € +€€€ € €€€€€€€€€€€ €€€€€€ €€ € +€ €€€ €€ € € +€ +€€€ +€€€ € € €€€€ € €€€€ €€€€€€€&€€€€€ €€€€€)€$€€€€€"€"€€€,€€€<€2€2€+€(€!€&€;€5€2€+€/€)€.€4€A€2€)€€€!€?€)€&€'€2€"€*€0€1€1€€+€+€,€:€€@€?€7€@€7€0€:€4€A€3€3€6€@€5€%€7€7€:€x€2€1€8€7€6€7€3€/€8€8€@€9€5€8€-€€0€5€4€9€'€/€/€7€(€-€€'€*€!€€(€€'€€#€€!€#€€€'€€€ +€€!€€€€€€&€ €€€€€€€€$€€€€€€€€€€€ €€€€ €€€€€ €€€€€€€ €€€€€€ €€€€€€€ €€ €€€€€€ € €€€€€€ €€€€€ €€€€€€€ €€ €€€€€€€€€€€€ €€€€€€€ €€ € +€€€€€€€€€€ € €€€€ €€ €€ €€€€ €€€€€€€€ €€€€ +€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€€€€€€€€ +€ €€€€€€€€ € +€€ €€€ €€€€€€€€€€€€€€€ € +€ €€€€€ €€€€€€€ €€ +€€ € €€€€€€€€€€€€€€ €€€ € €€€€€€€€€ +€€€ +€€ €€€€ €€€€ € +€€€€€€€€€€€€€€€€€ €€€€€€€ €€€€ €€€ €€€€€€€€€€€ € €€ € €€€€ +€€€ €€€€ €€€ €€€€ €€€€€€ € €€€€ +€€€€€ €€ €€ € €€€€€€ €€€€€€€ € €€€€ €€€ €€ € +€€€ €€ €€ € +€€€€€€€€ €€€€ +€€€ €€€ €€€!€€€ €€€€€€€ €#€€!€€€€€#€$€&€!€€€$€€€/€&€&€7€.€%€&€C€:€,€€-€.€,€L€-€4€3€5€$€%€$€'€%€€"€"€/€/€*€ €3€3€*€/€6€8€7€:€0€0€=€5€2€4€5€$€;€;€-€8€1€*€=€2€B€*€.€4€6€8€1€-€3€+€@€8€+€M€D€S€/€*€<€8€)€*€,€*€3€*€'€"€€€€!€€!€ €€$€€€#€€€€-€€€€€€€€€€€€€€€€€€€€€ +€€ €€ +€€€€€€€€ €€ €€€,€€ €€ €€€€€€ €€€€€€€ +€€€€ +€€€€€€€€€€ +€€€€ +€ €€ €€€€€€ +€€€€ € €€€€€€€€€€€ +€€€ €€€€€€€€€€€€€€€€€€€€€€€€€ € €€€€€€€ €€ €€€€€€€€€€€€%€€€€€€€€€ €€€€€ +€ €€€€€€€€€€€€€€€€€ €€ €€€€ € €€€€€€€ €€€ € € +€ +€€€€€€€€€ € €€€€ +€€ € €€€€€€€€€€ +€ €€€€€€€€€€€€€€€€€€ €€€€"€€€€€€€€€€€€€ € €€ €€€ €€€€€ € +€€€€€€ €€€€€€€€ €€€€€€€€€€€€ €€€€€€€€€ +€€€€ €€€€€€€€ +€ €€€ €€ +€ € €€€€ +€€€€€€ €€€€€€ +€€€€€€€€ €€€€ €€€€ +€€€€€€ €€ € €€ +€€ €€€€ €€ €€€ €€ €€€€€ €€ +€€€€ +€ €€€€ €€€€€ €€ € € €€€€€€€€€€€€#€€€€€€(€€€€"€)€/€/€€,€%€0€5€%€2€'€&€+€2€1€9€/€4€7€/€3€6€+€'€€.€=€5€(€'€=€0€+€-€2€(€6€#€4€-€+€F€1€@€€-€%€!€0€2€9€5€&€€4€6€3€9€D€D€*€L€F€2€<€,€8€1€3€L€M€:€,€9€:€3€ €/€<€;€7€ €+€-€€7€€€€&€-€-€(€"€€#€€ €€ €€/€#€ €%€"€€ € €€€€ €"€€ €€€€€ € €€€€€€ €€€€€ €€ €€€€€ €&€€ €€€ €€€€€€ +€ €€€€€€€€€€€€€€€€€€€€€ €€ € €€€€€ €€€€€ +€€€€€€€€€€€ €€€€€ € +€€€€€ €€ €€€€€€€€€!€€€€€€€€€€ € €€€€€ €€€€ €€€ €€€€€ € +€€€€€€€€€ +€€€€€€€€€€€€ +€ €€€€€€€€€€€€€ €€ €€€€€€€€ € €€€ €€€ €€€ €€ € €€€€€€ +€€€ €€€€€ €€ € +€€€ € €€€€ €€€€€ € € €€ €€€€€€€€€€€ €€€€€€ €€€€€ +€€€€€€€€€ € €€€€ €€€€ +€€€ €€ €€ +€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€ €€€€€€€ €€€€€€€€€€€€€€€€€€€ € € +€€€€€ €€€€€€€ €€€ € €€ €€€€€ €€ +€ €€€€ €€ €€€€€€€€€€€€ €€€€€€ €€€€€€€€€€ €€€€€€€ €€€€€€€€€ €€€€%€€€€"€€%€€€€€$€(€"€0€,€3€€$€ €+€4€3€/€>€1€)€6€2€*€*€€0€.€+€4€*€2€$€2€€-€%€%€-€8€4€-€L€B€4€6€€6€B€F€I€;€P€7€/€6€€0€5€3€3€.€;€€D€A€€1€B€-€;€R€/€&€€>€2€€9€7€6€2€?€,€*€€€#€/€#€ €€€"€"€€ €€€€+€"€+€€€€€€€€ €€€ € €€€"€€ €#€€€€ €€ €€€€€€€€€€€€€€€ €€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€ € €€€€€ €€€€€€ €€€ € €€€€€€€€€€€€€ €€€€€€€€€€ €€€€€€ +€€€€ €€€€€ €€€€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€€€€€€€€€€€€ +€€ €€€€€€€€€ +€€€ €€€€ €€€ €€€€€€€€€€€ €€ € €€€ € €€€€€€€ +€ €€€€€€ €€€€€ € €€€€ €€€€€€€€ € €€€€ € € €€ €€ €€€€€ €€€€€ €€€€ €€ €€ €€ €€€€€ €€€€€€€ €€€ +€€€€ €€€€€€€€€€ €€ €€€€ €€€€€€€€€€€ €€€€€€€€€€€ +€ €€€€€€ €€€€€ €€€€ € € €€€€€ +€€€€€€ €€€€€€€€€ +€€€€€ € €€€ +€€€€ €€€ €€ +€€€€€€ €€ €€€€€ €€€€€€€ +€€ +€€ €€ +€ €€ € +€€ €€€€€*€%€'€€€€"€*€€€!€'€€€€€$€€+€#€€*€-€€ €€0€8€/€-€0€$€,€1€.€ €7€€5€-€"€)€;€/€-€4€*€1€€€3€3€1€2€5€&€€9€;€,€8€?€,€G€9€-€@€%€4€+€.€3€&€€&€7€8€0€4€+€/€-€:€2€;€(€&€1€3€(€7€'€&€<€0€2€>€€!€'€6€&€)€(€(€#€,€€)€/€€€€€€€€+€€€ €€€€ €€€€€ € €€€€ €€ € € €€€€"€€*€€€€€€€€€€€ €€€€ €€€ €€€€€€€€€€€€€€€ +€€€ €€€ +€€€€€€€€ €€€€€ € €€€€€.€ €€ €€€€€€€€€€ €€€€ €€€€€€€€€€€€€ €€€€€€€€€€ +€ € €€€€€ €€€€€€€€€ +€€€ €€€€€ € € € €€ +€€€€ +€€€€€ €€€€ €€ € €€€€€€€€ €€ €€€ €€€€€€€€€€€€€ €€€ +€€€€€€€€€€ €€€€€€€ €€€€ € € €€ €€ € €€€€€€€€ €€ +€€€€€ €€ €€ €€ €€€ €€€€€€€ €€€€€€€ €€€ +€€€€€ € €€€€€€€€€€€€€€ €€€ €€€€ €€€€€€€€€€€ +€€€€€€€€ €€ +€ +€ €€ €€€ € €€€€€€€ €€€€€ €€ +€€€€€ €€ €€€€€ +€€€€ €€€€€€€€ € +€€ € €€€€€€€€€€€ +€€ € € € €€€€ € €€ €€€€€ +€ +€€€€€ € €€€€€€€€€€ €€€€ €!€€€$€€€€)€€"€€&€€€€€"€€€$€!€€)€!€€€(€5€'€+€*€+€'€5€+€)€4€"€:€€6€%€0€(€'€/€)€(€$€€.€/€.€/€1€€€1€@€<€7€)€3€(€%€;€3€1€8€H€?€-€,€9€+€8€*€8€0€/€1€;€:€'€,€€€!€:€%€(€F€$€+€€*€I€7€$€'€*€!€"€€%€€€€€€€ €€€ €€€€€€€$€€€€ €€€ €€ €€€€€€&€€€€ €€€€€ €€ €€€€ +€ €€ +€€€€€ €€ €€€€€€€€€€€€€€(€€ €€€€€€€€€€€€€€€€€ € €€€€ € +€ €€€€€€€€ +€€€€€€€ €€€€€€€€€ €€ €€€€€€€€€ €€€€€€€€€€€€ +€ €€€€€€€€€€€€€ €€€€ €€ +€€€'€€ +€€€€€€ +€€ +€€€€€€€€ €€€ €€€ +€€€ €€ +€€€€€€€€€€€€€ €€€€€€€€€€€€€€€ €€€€€ €€€€€€€ +€ €€€ +€€€€€€€€ € €€€€ € €€€€ +€€€€€€ €€€€€€ €€€€ €€€ €€€€€€€€ € € +€€€€€ €€€€€€€€€ €€€ +€€€€€€ € € +€€€€€€€€€€€€€€€ €€ €€€€ €€€€€ €€€ €€€€€ € €€ €€€€€€€€€€€ €€ €€ €€€€€ € €€€€€€ +€ € € €€€€€€ +€€€ €€€€€ €€€ +€€€ €€€€ €€€€ €€€ € €€ €€€€€€"€€#€€ €€€€€ €€€ €$€€€ € € €€&€€€€'€€-€€€ €&€€€€$€,€"€+€#€4€*€)€ €+€?€7€.€1€*€€3€4€0€"€2€*€+€€-€ €(€+€0€€5€3€'€-€;€(€D€2€5€&€'€*€3€8€+€5€.€,€9€4€,€€6€*€;€!€8€?€+€(€*€€€,€3€,€,€"€?€4€)€€*€'€)€(€!€)€€$€€€$€&€$€€ €+€#€€€€)€€€€€€€€€€€€€€€#€€€€€€€ €€€ €€€€€€ €€€€ €€€€€&€€ €€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€€ +€€€€€€€€€€ €€€€€€€€€€€€!€€€€ +€€€€€€€€€€€€€€ € €€€€€ €€€ +€€€€€€€€€€€€ +€€€€€€€€€€€ €€€€€€€ € +€€ +€€€€ € €€€€€€€ +€ €€€ €€€€€€€€€€€€€€€€€€ €€ €€€€€€€€ +€€€€€€€ €€€€€€€€€€ +€€€€€€€€ €€ +€€€€ €€€ €€€€ €€ € +€ €€€ €€€ +€€€€€€ +€€ +€€€€ € +€€€€€€€ € € +€€€€ €€€€€€ +€€€ +€ €€€€ €€€€€€€€ € €€€€€€€ €€€€ €€€€€€€€ € €€ €€€ +€€€ €€€ €€€ €€€€ €€€€ €€ €€€€€€€ €€ €€€€€€€€€ €€€€€ €€€€€€ €€€ € +€€€ €€€€€ € € €€€ € +€€€€€€ +€€€€€€ €€€€ €€€€€€ +€ €€€€€€€#€€'€€€€#€€&€€%€€(€€*€#€#€€#€&€1€"€€€€/€,€5€5€5€#€-€,€(€9€3€%€ €'€)€*€2€ €2€8€"€)€)€$€,€B€ €!€9€<€#€+€1€;€2€)€6€8€;€8€3€%€9€'€(€ €0€5€€9€2€5€€%€5€0€/€0€-€€'€€)€*€&€(€(€A€,€%€+€%€"€€€€€€€€€€ €€%€€€€€€%€ €€€€"€#€ €€€€€€€€€€€€€€"€€ € €€€€€€!€ €€€€€ €€€€€ €€ €€€€ +€€€€ € +€ €€ €€ € +€€€€€€€ € €€€€€€€ €€ €€ €€€€€€€€€€ +€€€€€€ €€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€ +€€€€€€€€ € €€€€€ €€€€€€€€€ €€€€€€ €€€€ € €€€€€€€€€ €€€€€ +€€€ €€€€ € € €€€€ €€€€ € +€€€€€€€ €€€ €€€ €€€€€ € €€€€€ €€€€€€€€€€ € €€€ +€ € €€€ +€ +€€€€€ € €€€€€€€€€ +€€ € +€€€ €€ €€ €€€ +€ €€€€€ €€€€ +€ +€€ +€€€€€ +€€€ € €€€€€ € €€ +€€ € € €€€€€€€€€€€€€€€€€€€€€ +€€€ €€€€ € +€€€€€€€€ +€ +€€ €€ +€€ € €€ € €€ €€€€€€€€€ €€ €€€ €€ €€€€€€€€ €€ € € +€€€€€ €€€ +€€ €€€€€€€€ €€€€€€€€€€€€€€€ €€€€€ €€$€€€€&€*€€€€€€.€€!€#€%€€&€#€€%€€€$€*€€/€/€6€1€5€"€2€+€+€*€&€+€$€$€.€+€*€8€*€3€*€€$€=€!€)€6€6€ €8€+€3€(€€-€?€5€3€#€8€4€,€%€?€A€B€7€-€)€,€,€(€(€3€/€$€*€,€€€*€)€1€€$€-€.€)€0€€.€-€#€€€$€€€!€€€€€€€€€€€€€€€€#€ €€€ € +€€€ +€€€ +€ €€ €&€€€ €€€€€€€€€€€$€€€€ +€ +€€€€€€€ €€ €€€€€ € € +€€€ +€€€€ +€€€€€€ €€€€€€€€€ € €€€ €€€€€€€ €€€€€€ +€€€€€€€€ €€€€€€€€€€ +€€€€€€€ €€€€€€€€€ €€€€€€€€€€€€€€ +€€€€ €€ +€ €€€€€ €€ €€€€€€€ € €€€€€ € €€ €€€ +€€€€€€€€€ +€ €€€€ € €€€€€€€ +€€€€ € €€€€€€€€€€€€€ €€€ €€€€ €€€ €€€€ €€€ €€€€€€€€€€€€ €€€ €€€€€€ €€€ € €€€ €€€€€€ € +€ €€€€€€€€€€€€€€ +€ €€ €€ €€€€€€€ €€€ €€€ € €€ €€ € € €€ +€€€ €€€€€€ €€€€€ +€€€€€€ € €€€€ €€€ +€ €€ +€€€€ +€€€€€€€ €€€€€€€€€€€€€€ €€€€€ €€ €€€€€ +€€€€€€€ €€ € +€ +€ €€€€ €€€€€€€€€€ €€€ €€€€ €€ €€€ +€€€€€€ €€€€€€-€€€,€€$€€€#€(€€*€"€€#€#€!€€"€#€€*€/€%€0€1€-€1€+€$€(€€,€,€.€7€@€5€)€"€;€+€*€5€-€ €;€.€.€/€0€.€8€*€9€€#€.€0€0€&€€ €0€4€#€4€.€)€,€(€,€'€1€<€*€%€€€'€€+€-€?€(€7€)€-€€€#€!€€€€€€€€€€€€ +€€€€€€€€€€€€€ €&€€€ €€€€€€€€ +€€€€ €€€€ € € +€€€€€ +€€€ €€€ €€€ € €€€€€€€€€€€€€€ +€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€ €€€€€€ +€€€€€ €€€€ € € €€€ €€€€€ €€€€€€ €€€ €€€€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€ +€€€€ €€€€€€€€€€ €€€€€€€€€ €€€€€ +€ €€€€€€ +€€ +€€€ +€€€€€ €€€€€€€€ € € €€€€€€€€€€ +€ €€€€€ +€€€€€€€€ € €€ €€ €€€€€ €€€€€€ +€€€€ €€€€ €€ €€€ €€€ €€€€€€€€€€€€€€€ € €€€ +€€€€€€ €€€ €€ €€ €€€€ €€€ €€€€€ €€€€€€ €€ € €€€€€€ +€€ €€€ €€ +€ €€€€€€€€ €€ € +€€ +€ € € €€€€€€ € +€€€ +€€€€€€€€ € €€ €€€€ € +€€€€€€€ € €€€€€ €€€ € +€€ € €€€ €€#€ +€€€€€€€!€€€€€ €€ €€€€ €€€$€€€€"€#€(€%€%€$€&€.€$€€€(€€€€/€&€)€#€€€-€2€7€+€*€2€)€+€%€€,€F€4€4€#€-€(€*€9€*€-€2€ €€#€.€+€3€-€*€,€ €4€%€/€€!€*€7€5€4€'€,€*€;€"€&€0€!€"€"€)€$€€0€*€7€&€2€/€ €€(€€€€(€€-€€€*€€ +€€€€€ €€€)€&€€€€€ €€2€€ €!€€ €€ €!€ +€-€€€€€€ €€ +€€€€€€€ +€€€€#€ €€€€€€€€€€€€€€ € €€€€€€ €€ €€€€€€€€€€€€€€€€€ €€€€ +€€€€€€€€€€€€€ €€€€ +€€€€€€€€ € +€€€€ +€€€€ € €€€€€€€€€ €€€€ € €€ € €€€€€ €€€€€€€€€€€€€€ €€ +€€€€ € €€€€€"€€€€€€€€€€€€€€ €€€€€€ € € +€ € €€€€€€€€€ €€ €€€€€€ +€€€€€ €€ €€€€€ €€€€€€€€€ €€€ +€ € € €€ €€ €€€€€ €€ €€€€€€€€€ €€€€€€ €€€€€ +€ +€€€€€€€€€ € +€€€€€€€€€ €€ €€€ €€€€€€€€ € €€€€€€€€€ +€ €€€€€€€€€€€€ € €€ €€€€€€€€€€€€ €€€€ € €€ €€€€€ +€€ € +€€€€ €€€€€€ €€ €€€€€€ €€€ €€ +€€ +€€€€ € € €€€€€ € €€ € +€€€€€ €€ €€€€ €€€€€€ +€€€€€€€€€ €€ €"€ +€€€!€"€€#€€,€ €€€€)€ €(€&€$€"€5€€€€&€€+€)€€#€3€$€$€-€,€.€%€€0€6€€/€)€3€(€,€:€'€0€>€/€1€+€(€7€;€(€ €-€2€(€4€(€'€2€%€€*€5€A€#€-€1€,€/€6€7€,€'€&€*€2€€€.€!€€€#€€€%€-€€/€$€$€€€€'€*€€'€#€€€€€€€€"€€€€ € €€2€€€€ €€&€€€€&€€€€€ €€ €€€€€€€€€ € €€ €€€€€€€ € €€€ €€€€€€€€€€€€€€€€€€€ €€€€€€€€€ +€ €€€ €€€€ €€€€€€ €€€€€€€ +€€€€€€€ €€€ € +€€€€ €€€€€ €€ +€€1€€ €€€€€€€ +€€€€€€€€€€€ +€€€€€€ €€ €€€€€€ €€€ €€€€€ €€€€€€ € € € €€€€€€ €€€€€€€€ €€€€ +€ €€€€€€€€ +€€ €€€ € €€€ €€€ €€€€€€€€ €€ € +€ €€€ €€€€€€ €€€€ €€ €€€€€€€€€ +€€€€€€€ €€€€€€€€€ €€ €€€€€€€€€€ €€€€€€€€€ €€€ €€€€€€€€€€€ € €€€€€€€€€€ +€ +€€€€ €€ +€€ €€€€€€ € € €€€€€€€€€€€€ €€€€ €€ +€ €€ €€€€€€€€ € € €€€€€€ €€€€ +€€€€€€€ €€€ €€ €€€€€€€ +€€€€€ €€€€€€€€ +€ €€€€€€€€€ €€€€€ +€ +€ €€€€€€€€€"€€€€€€€€€ €€$€€€%€$€€€€&€€!€€'€-€€)€,€€"€€'€&€!€5€+€3€/€5€%€&€%€#€G€)€+€$€;€€!€"€"€!€6€7€/€2€5€0€0€)€€-€$€€)€=€-€(€€.€A€&€&€,€+€6€€"€#€/€€€%€$€*€(€(€#€%€€,€'€€ €€€€1€ €0€€#€"€€"€€"€!€€€€€€ €€€€€€!€€€€€€€€€%€€ +€ €€€€€€€€€€€ €€€ +€€ €€€ €€€€€€€€€€€€€€&€€€€€€€€€ € €€€€€€€ €€€€€€€€€€€€€€€€€€€ € € €€€€ €€€€€€ €€€ +€€€€ €€€€"€€€ €€€€€€€€ €€€€€€€€€€€€ +€€ €€€€€€€€€€ € €€€ € €€€ €€€€ €€€ €€ €€€€€€ €€ €€€€€€€€€€€€ €€€ €€€€€€€€€ €€€ €€ €€€€€€€€€€€€€ €€€€€ €€€€€€€ +€€€€€€€ +€€ +€€€ € €€€€€ €€€€ +€€€€ +€€ €€€€ € €€ € € +€ € +€€€€€ €€€ €€€€€ € €€ €€€€€€ €€€€€€ €€€€€€€€€€€€€€€€€ €€ €€€ €€€€ +€ € €€€€€ €€€€€ €€€€€€€€ € €€€ +€ € €€€€€€ +€ € €€€€€€ €€ € +€€€€€€ €€€ €€€€€€€€ € € +€€ € € €€ +€€€€ +€ €€€€ € €€€€€€€ +€ €€€€€€€€ €€€ € €€€€€€€€€€€$€€€ €€-€€$€€€€€"€€€€2€ €'€€/€6€ €€€&€€€!€*€)€€€1€€€9€,€€$€€"€€!€2€€4€'€)€-€1€€/€J€.€4€€5€)€+€€'€€(€-€+€€,€€*€$€ €+€-€,€€€"€,€1€%€#€-€(€!€€€ +€€!€€€€€€€-€%€ €€€€€,€#€ €€€€€€€ €€ €€"€€€€€"€€€€#€€ +€€€€€€€€ +€ +€€€+€"€€€€€€€€€€ €€€€ €€€€€ €€€€ €€€€ €€€ €€ €€€ +€€ +€€€€€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€€€€€€€€€€€ € €€€€ +€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€ +€€€€€ €€€€ +€€ €€€€€€€€€ €€"€ €€ €€€ +€€€€ +€€ €€ € +€€€€€ € €€ €€ €€€€€ € €€€ €€€€€ +€€€ €€ € € € €€€ €€ € €€€ €€€€ €€€€ €€ €€€€€€ €€ +€€ +€€€€€€€€€ +€€€€€€€€ € €€ € +€€€€€€€€€€€€€€€€€€ +€ +€ € €€€€€€€ €€€ € € €€€€€€€€€€€€ €€€€ €€€€€€€ €€€ €€€ +€€€€€€€€€ +€€€ € €€€€€€€€€€€€ €€€ €€€€€ € €€€€€€€€€ €€ € €€€ €€€€€ € € €€€ €€ €€ €€€€€ €€€ €€ €€ +€ +€ €€€ € €€€€€€€€€€€€€€€€#€€€€€€!€€€%€&€-€€€€€!€"€€(€€"€€€€€€&€$€6€'€(€/€#€€"€-€#€/€€-€#€€4€%€<€+€"€&€)€€*€(€7€#€ €€€*€€%€#€€,€(€#€:€(€$€,€1€ +€,€"€"€1€&€$€€)€€'€6€ €$€€€€ € €€€ €&€#€+€€ €€€€ €€€€€€ €€ €!€ €€€ €€€€ +€€ +€ +€€€&€€ €€€€€€€€€€€€€€€€€ €€€"€€€ €€€€€€ € €€€€€€€€€€ +€ €€€€ €€€€ €€€€ €€ €€€€€ €€ €€€€€€ +€ +€€€€€€€€€3€ €€€€€€€€€ +€€€€€€€€€€ €€€€€€ €€€€€€ €€ +€€€ € €€€€€ +€€€€ € €€€€€€€€€ € €€€€ €€€€ €€€ +€€€€€€€€€€€€€€ €€€ €€ €€€€ €€€€€€€€€ € € €€€€€€€ € +€€€€ € +€€€€€€€€ €€€€!€ €€€€€€€€ € €€€€€ €€€€€€€€€€€€€€€ €€€€€€ +€€ € € +€ €€€€ €€€€€€€€€ €€€ +€ €€€€€ € +€€€€€€€ €€ € €€€€€€ €€€€€€€ €€€ €€€ +€ €€€ +€€€€ €€€€€ +€€€€ €€€€€ +€€€€€€ € € €€€€€€ +€€ €€ +€€€€€€ €€€ €€ +€€€ €€€€€ € €€ €€€€€€€€€ +€€ €€€€ €€€€€€€€€ € €€€€€€ €€ €€€€€€€€€€€&€(€*€€€€"€"€"€€€€€.€€€'€€ €&€€%€€€€%€€0€.€0€!€€1€€€-€<€)€(€'€€4€*€+€&€€)€/€)€€4€+€!€.€+€&€%€!€(€)€€/€#€?€1€*€€0€*€$€-€€@€&€€€&€€€€€)€!€'€ €€€ €)€#€€ €€€€$€(€#€ € €€€€ € €€ +€€€€€ €€ €€&€ €€€€ € €€€ €€ € €€ €€€ €€€€ €€€€€€€€€€€€ €€€€€€€€€€€€€ €€€€€€€€€ € € +€€ €€€€€€€€€ €€€€€€€€€€€ €€€€€€)€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€ €€ € +€€€€€€€€€€€€€€€€ +€€€ €€ +€€€€€€€€ €€€€€ €€€ €€ +€ €€€€€€€€ +€€€€€€€€€€€€ €€€ €€€ € €€€ €€€€€€€€€€ €€€€€ € € € €€€€€€ €€€ €€€€ +€ €€€ €€€ +€ € €€€€€€€€€€€€€ €€ € €€€€€€€€€€€€€€€ € €€ € +€€€€ +€€€€ €€€€ € € €€€€ €€€ €€€ €€€€€€€€€€€€€€ € +€€€€€€ €€€€ €€ €€ €€€€€€ € €€ €€ €€ €€€€€€€€€€ €€€ +€ €€€€€€€ €€ €€ +€€€€€€€€€ €€€ +€€€€€€ € €€€€€ €€€ +€€€€€€ € €€€€€€ +€€€ €€ +€€€€€!€ €€€#€€ €€"€€€ €%€ €€€€€€€€.€€'€€"€€$€$€%€%€€/€€*€'€€"€€€&€6€4€#€-€(€€(€+€$€(€"€7€€$€=€/€&€€'€€€"€)€#€'€8€€)€€ €$€.€€8€€)€ €,€€/€+€/€&€€#€)€€ €€€%€€€€€(€€€ €%€€#€€€"€€ €€€€€#€€(€ €€€ €€€€"€€€€€ +€€€!€€ €€€ +€ €€€€€€ €€"€€€€€€"€ €$€€€€€€€ +€€€ €$€€€€€€€€€€€€€€€€€"€ €€ €€€€ €€€€ € € € €€€€€ € €€€€€€€ €€€€ € +€ €€ €€€€ € €€€€€ €€€€€€€€€€ €€€€ €€€€€€ +€€ €€€€€ €€ €€€€ €€€€ €€ € €€ €€€€€€€€ €€€€€€€€ € € € +€ €€€€€€€€€€€€€€ +€€€€€ €€€€€ +€€ € €€€€ +€€€€€€ €€ €€€€ €€€€€€ € €€€€&€€€€€€€€€€€€€€€ +€€€ +€€€€ €€€€ €€€ € €€€€€€€€ +€€€€ € €€€ +€ €€€€€€€€€€€€€€€€€€€€€€€€€ €€€€ €€ +€€€€€€€ € €€ €€€€ €€€€ €€€€€ €€€ €€ € +€€€€€€€€ €€€€€ €€€€ €€€€€€€€€€ €€€ €€€ € € € €€€€ €€€€ €€€€ €€ € €€€ +€€ €€€€€€€€€€ €€ €€€ €€&€€€€€€€€#€€€€€€€€€ +€€€€€!€!€€€"€&€€€€ €'€€$€#€€$€€"€€€&€€€€%€€*€€€€€*€-€&€€€"€#€+€1€-€0€8€"€€+€0€!€)€%€€8€€€'€,€€€€€,€ €&€3€"€(€(€.€)€,€€+€-€#€€€€€(€€ €(€#€€'€€€'€€€€€!€€€€€€ +€€)€€€€€€€€ €€€€€ €€ €€€€€€€€€!€€€€€€ € +€€€€€€€€€ €€€ €€€ +€€ € €€€€ €€€€€€€€ €"€€ € €€ €€€€ €€€ €€€€ €€€€€€ €€€€ €€€€€€ +€€€€€€€€ € €€€€€€€ €€€€€€€€ €€€€ +€€€ €€€€€ €€ €€€ €€€€€€€ +€€€€€€ +€€ €€€€ +€ +€ € € +€ €€€€"€ € €€€€€€€€€€ €€€€€€ €€€€€€€€ € €€€€€€€€€€€€€€€ €€€€€€€€ €€€ €€€€€€ €€€€€€#€,€5€4€€€€€€€€€€€€€€€ €€€ €€€€ €€€€€€€€€€€ €€Ì€#€€ €€ €€€ €€ +€€€ €€€€ € +€ +€€€€€€ €€€€€€ €€ €!€ €€€€€€€ +€€€ +€ € +€€€ €€€€€ €€ €€ €€€€€€ +€€€ +€€€€€€€€€ €€€€€€€ €€€€€€ €€ €€€€€ +€ €€€ € +€€€€€€ +€€€€€ €€€€ €€€€ +€ €€ €€ +€€ € €€€€ € €€ €€€€€€€€€€ €€€ € €€€€ €€€ €€€%€$€€€€€€€€€€€€€€€€€$€#€!€"€ €)€€€,€$€"€€€€€!€"€€€€€#€(€/€#€#€(€;€/€€!€€€&€$€€-€%€€'€!€&€&€€ €€€(€€1€&€€)€%€,€€#€'€#€€-€€*€€$€!€€*€€€€€ €(€€!€€€ €'€€€€€€)€€€€€€ €€€€€€&€€€€€€€€€€€€€€€€€€€€€ € € €€€€ €€!€€€ €€ €)€ € €€€€ €€€€€€€€€€€€ € +€€ €€€ €€€ €€ € +€€€€€€ €€ +€€ +€€€€€€€€ €€€€€€€€€€€€€ €€ €€€€ €€€€ €€€€€€€€ €%€€€€€ €€€ €€ €€ €€€€€€€€€€ €€€€€€€€€€€€€€€ +€€€€€€€€€€€€€€€€€ €€€€€€ €€€€€€€€€€€€ €€€€ €€€€€€€€€ € € +€€ €€ € €€ €€€€€€€€ €+€0€<€J€Q€E€/€"€ €€ €€€ €€€€€€€€€€€€€€€€€€ €€€ +€€€€ €€§€€€€€€€€ € €€ €€€ €€€ +€€€€ € € €€ €€ €€€€€€€€€€€ €€€€€€ €€€€€ €€€€€ € €€€€€ €€€€€ € € €€€ +€€€ +€€€€€€€€ €€ €€ €€ €€€€€ €€€€ €€€€€€€ €€ +€€ €€ € €€ €€€ €€€€€€€€€€€€€€€€€€ €€ €€€€€€€€ +€ €€€€€ €€€ +€€ €€ +€ €€€€ €!€€€€€€€€€€€€€!€€€€€$€€€$€€€€!€*€€€€ €!€€€€&€€&€€€'€(€!€3€€€$€€+€+€#€€$€€€€!€€&€(€"€€,€,€€(€6€€/€'€.€€€€.€€$€+€#€€€€€€€€ €€,€€€"€€€€€€€€€€ € €€€€€€€€€ €€€ +€"€€ €€€€€€€€€ €€ €€€€€€€€€€€€"€€€€€€€€ €€€€€€€ €€€ €€€€€ € €€ €€ €€€€€€!€€€€ € +€€€€€ €€€€ €€ €€€ €€€€€€€€€€€ €€€ +€ € +€€€€€€€€ €€€€€ €€ €€€€€€€€€€ €€ €€€€€€€€€€€€€€ €€ €€€€ +€€ € +€€€ +€ €€€€€€€€€€ +€€€€€€€€€€€€€€€€€ €€€€€€ €€€€€€€ +€€€€€€€€ +€€ € € €€€€€ €€€€€ +€€€€€"€4€G€j€•€š€x€F€9€$€€€€€ €€ €€€€€€€€€ €€€€€€€€€€€€€€ €€ +€ €€€€€€€ € € +€ +€ € €€€€€€ €€€ €€ € €€€€€€ +€€€ €€€€€€€€€€€€€€€€ € +€ €€€€€€€€ € €€€€€€€€€ € €€€€ +€€ € €€€€€€ € €€ €€ €€€ +€€€€ € € +€ +€ €€€ €€€€€€ €€€€ € €€€€ €€ €€€€€ +€€€€ €€€€€ €€€€€€€€ €€€ € €€€€€ €€€€€ +€€ €€ +€€€€€ +€€"€€€€ €€€€+€€!€€€€€€€€ +€'€"€)€€€"€€"€#€€€!€€€#€+€(€€€€&€€#€!€#€$€€€€)€$€€€€%€€€+€€€€#€€€€1€-€)€€€€€$€)€.€€€€€€+€€€€€€%€€€€€€ €€ €€€€€€€ €€€"€€€€€€/€€€€€ €€€€€€€ €€€!€€€€€€ € €€€€€ +€€€€ €€ €€€€€€ €€€€€€€€€€€€€ €€ +€€ €€€€€€€€€€€€€€€ €€€€€€€€€€ €€€ +€€€€ €€ €€ € € € € +€€€€€€ €€€ +€€ €€€€€€€€€€ € €€€ € +€ +€€€ €€ +€ €€€ €€ €€€€€€€€€€€ €€€€€€ €€ €€€€€ € €€€€ € +€€€ €€€€€€€ +€€€€ €€€€€€€€€ € +€ € € € €€€€ +€€€€€ €€€€€€ € +€ € € €€€€ €"€>€g€ÇÇ‚+0€‡€H€(€€€€ € €€€€€€ € +€€€ €€€€€€€€€€€€€€€€€ €€€€ +€€€€€€€€€€ €€ € € € +€€ € €€ € +€€€€€€€€€€ €€ €€€€€€€€€€€€€€€€€ €€€€€ €€ € €€ +€€€ +€€ € € €€€€€€€€ € €€ €€€€€€ €€€€€€ +€€€€€€€ € €€€€€€ €€€ +€ € €€€ +€ € €€€€ €€ €€ +€ €€€€€€€€€ €€€€ €€€€€€€€€€ €€€€€ €€€€€€€ +€€ +€€€ €€€€€€ €€"€€€€€-€#€€€$€#€&€%€€%€€5€€(€€€ €€ €'€€€€%€€€1€#€€+€€'€€€ €€/€&€-€"€#€€$€€.€*€€(€€€"€+€€€!€€€)€ €€€€#€€€€€ € €€#€€ €!€€€€€€ € €€€!€€"€!€ €€ €€€€€ €€€€€ €€€€€€!€ €€€ €€ €€ €€€€ €€€ €€ €€ €€€€€€€ €€!€€€ €€€€€ € €€ €€€€ €€ +€ € +€€€€€ €€€€ €€€€€€!€€€€€€€€€€€€€€€€€€ €€€€€€€€€€ €€€ €€ €€€€€€€ €€ €€€€€ +€€€€€ €€€ €€ €€ € +€€€€ +€ €€ €€€€ €€ € €€€€€€€€€€€€€ €€€€€€€€€€€€€€ €€ € €€ € +€€€€€€€ €€€ +€€ € €€€€€€€€€€€€€ €€ €€ +€€ €€ +€€ €€(€O€‹¥†°ˆƒ‹€ô€c€0€&€€€ € €€€ +€€€ €€€€ €€ €€ €€€€€€€€€€ +€ €€€€€€ € €€ € €€€€€€€€ €€€€€€€€ €€€€ €€€€ €€€€€€€ €€ €€€€ €€€€ +€€€€€€€€€€ +€€€ €€ €€€ €€ €€€€€ +€€€€€€€€ €€ € €€€€€€ €€€€€€€€€€€€€ €€ €€€ € € € €€€€€€€€€€€€€€€€ +€€€€€ €€€€€ +€€€€€€ €€€€€ €€€€ €€ € €€€€€€€$€€€€€ €€€ €€€€€'€€€!€€€€#€€€€!€$€€€-€€€$€€#€€+€ €%€(€€€ €€,€'€€%€(€%€#€€,€€#€1€#€"€€&€$€€'€(€"€€€€€€#€€€#€ €&€€€€€€€€ €€#€%€€€€€€€'€€€-€€€€€€€€€€€€€€€ € +€ +€€€€ € € +€€€€€€€€€€€ €€€€ € €!€ €€ +€€€ €€€€€€€€€€€€€€€ € €€€€ €€€€€€ € € € €€€€€ €€€€€€€€€ €€€€€€ +€€€€€€ €€€€€€€€€€ €€ €€ +€€€€€€€€€€€ +€€€€ € €€€€ €€€€€ €€€ +€€€€€€ +€ €€€€€€€€ €€€€€€€€€€€ +€€€€€€€€ €€€€€€ €€ +€€€€€ €€€€ € +€€ € €€€€ € €€€€€ +€€ €€ €€€€€€€€€€€€ €€€€€€€€€€"€T€–‚‰zŒ„ß)€v€.€/€€€ € +€€€ €€€€ €€ €€€€€ €€€€€€€€ €€ €€€€€€€ €€€€€€€€€€€€ € €€€€€€€ € +€€ €€€€€€€€€€ €€ +€ €€ € €€ €€€€ € € € € €€€€ €€€€ €€ +€€€ €€€€€€€€ +€€€€€€€€ +€€ €€€€€€€€€€ €€€ €€€ €€€€€€ €€ +€€€ € €€€€€€€€€€€€ € +€ €€€ €€ €€€ €€ €€ € €€€€€€€€€€€ €€€"€€€€€€€€ €€€€€ €€€€€ €€%€€€'€€€€€€€€ €€€€#€€€€ € €€(€ €€€'€€€€'€#€€/€€,€€%€0€ €€.€€2€+€ €€€€#€ €€#€€€€!€€€€ €"€"€$€€ +€€!€€ +€€ €€€€%€€€ €€€€ €€!€€€€€€€€€ €€€ €€€€€ +€€€€€&€€€€ €€€€€ €€€€€ +€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€ +€€ +€€€€€€ +€ €€€€€ +€€€€€ €€€ +€€€€"€€€€€€€€€€ €€€€€€€€€€€ €€€€€ +€€€€ €'€€€€€€€€ €€ € +€€ € +€€€€€€ +€€€ €€ €€€€ €€ +€€€€€€€ €€€€€€€€€€€€ €€ €€€€€ € €€€€€ €€ €€€€ +€€ €€€ €€€€€ €€ +€ €€€ +€ €€ +€€€€ €€€€€€€€€€€€€€ +€ € +€€€€€€€;€|I…†o‚à€Ý€b€/€7€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€ +€ +€ € €€€€€€€ €€€€ €€€€€ € €€€€€€€€€€€€€€€€€€€ €€€€€ €€€€€€ +€ €€€€€€€ €€€€€€€€€€ € €€€€€€€€ €€€€€€€€€ €€€€ €€ €€ € €€€€€€ €€ €€€€€€€ €€€€ €€ € €€€ +€€€ +€€€€€€€€€€€ +€ €€ €€€€€ €€€€€€€€€€/€€€€€€€€€ €€€€€€€€€€€"€€€ €€€€€€€€€€€&€€&€ €€€€#€'€ €€€€€€€#€€€€"€€€€'€€€+€€.€)€&€ €€€€€3€€#€€€$€-€€€€€ € +€€€)€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€$€€€ €€€€€€€€€€€€€€€€€ €€€ +€ +€ €€ €€€!€€€€€€€€€€%€€€€€€€€€€€€ €€€ €€ +€€€ €€!€€€€€ €€ €€€€€€€ €€€€ +€€€€€ €€€€ €€€€€€€ €€€€€ €€€€€€€€€€€ €€€€€€€ € +€€€€€€€€€€€€€ €€€€€ €€ € €€€€€€€€€ €€€€€€€€€€ €€ €€ € €€€€€€€€€€ €€€ €€€€ €€€€€ +€ €€€ +€ €€ €€€€€€€€ €€ € €€€€€€€€ € € +€€ €"€#€L€Œ4ƒ€ð€r€I€+€3€€€€€ +€€€€ €€€€€€€€€€€ € +€€€€€€€€€ +€€€€€ +€€€€€€€€€€€€€ €€€ €€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€ €€€€ +€€€€€€ €€€€€€ €€€€ €€€€€€ €€€€€€€€€€€€€€ +€ €€ +€€ € €€€€€€ € €€€ € +€€ € € € €€€€€€€€€ +€€€ +€ € € €€€€€€€€€€€€€€€€€ €€€€&€€ €€€"€€€€€ €€€€ +€€€€ €€€€€€€€€€€€€$€€ €€€€€ €€€ €€€€€&€€ € €€€€!€€€€€€€&€&€€€!€)€€€,€€%€€€4€1€€-€€ €€€€!€€€"€€€€€€€€ €€#€€€$€(€€€€€€€€ €€€"€ €€"€€ €€€€ €€€€ €€€%€€€€€€€ €€€€ €€ €€€€ €€€€€ €€€€€€€€€€€€€€€€€ +€€€€€€€€€€€€€€€€€!€€€€€ € €€€€ €"€€€€!€€€ +€€€€€€€€€€€€€ +€€€€ +€€ +€€€€€€€&€€€€ €€€€€€€€€€€€€€€ €€€ €€€€€€ +€ +€€ € €€€ € €€€€€€€€€ €€€€€€€€€€ € +€ €€ €€€€€€ € €€€€€€€ € €€€€ €€€€€€€€ € € €€€€€ € € €€€€€ €€€ €€€€€€€€ €€ € +€€€€€€,€C€c€ˆ€a€A€9€€!€€ €€€ € €€€ €€€ € €€ €€€€€€€ +€€€€ €€€€€€€€€€€ € +€€€€ €€ +€€ +€€€€€ €€€€€€€€ €€ € € € €€ €€€ €€€€€€€ €€ €€€€€ €€€ €€€€€€€€€ +€€€€ € +€€ +€€ € €€ € €€€ €€€€€€€€€€ €€ €€€€€€€€€ € €€€€ +€€€€ €€ €€ €€€€€ € €€ +€€€ +€ € €€ € €€ +€€€€€€€€€€€€€ €€€#€€€€€€€ €€€€€€ €€€€€€€€€€€€€ €€€€€€€€!€ € €€ €"€€€€€€.€€%€€€€'€€€"€€%€&€!€€€ € +€€€ €%€€€€€,€€€€€€(€€€,€€!€€€)€€€€€€€ €€€#€€€"€€€€€€€€%€€€€&€€€"€ €€€€€€€%€€€€€€+€€!€€€€€€€€€€€€€ +€€€€€€€€ € €€€€€€€€€€€€€€€€ +€ € €€-€€€€€ +€€€€€€€€ €€€€€€€€ € €€€€€ €€€ +€ €€€€ € +€€€€ € €€ € € €€€ €€€€€€€€ €€€€€€€€ €€€€€€€€€€€ €€€ +€€€ €€€€€€€ €€€€€€€€€ € €€€€€€€€€€€€€€ €€€ €€€€€€ €€ €€€€€ € € € +€ +€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€ +€ € €€€€€€€€ €€-€0€,€B€1€'€"€€€€€€€€€ €€€€€ € €€ €€€€€ € €€€€€€ €€€€ +€ €€€€€ €€€€€€ € € €€€€ €€€€ € €€€ €€€ €€€€€€€ €€€€€€€€€€€€€€ +€€€€ €€ €€€€ € +€ €€€€€ €€ €€€ +€ +€ €€€ +€€€ € €€€ €€€ €€€€€€€€ +€€€€€€ €€€€€€€€$€€€€ €€€€ €€€€ €€€€€€ +€€€ €€€€€€€€€€€ €€ €€€€€ €€€€€€ €€€ €€€€ €€€€ €€ €€&€€€€€€€ €€€€ €€€€ €€€€€€€€€€€*€ +€€€€%€$€€&€%€!€"€€€€€/€%€€)€€!€€ €&€)€&€€€€€€"€€€€€€€€€€ €€€0€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€ €€€€€€€€€€€€€€€€€ €€€€€ € € €€€€€€ +€€ €€ € €€€ +€ €€€€ €€€ +€ €€€€€ €€€€€€€€€€ +€€€€€ €€€€€ €€€€€€€€€€€ € +€€€€€€ € € €€€€€€€€€€€ €€€€€ €€€€€€€€ €€€ €€€€€€€€ €€€€€ €€ €€ € €€€€€€€€ €€€€ €€€ € €€€€€€€€ €€€€€€€€€€€ € € €€ € +€€€€€€€ +€ +€€€€€€€€€€€€€€€€€€€€€€ €€ €€€€€€€€€€€€€ € €€€"€#€!€'€+€€€€€€€€ €€€€ €€€€ €€€ +€€€€€ € € €€€€€ €€ €€ +€€€ €€€ +€€€€€€€€€ €€€€€€€€€€€ €€€ € +€€€€ € € €€€€€€€€€ € €€€ €€ € +€€€ €€€€€€€ €€€ €€€€€€ +€ +€ +€€€€€ €€€ €€€€ €€€ € € €€€ €€ €€€ +€ €€€€€ €€ €€€€€ €€€€€€ €€ €€€€€€€ €€€€ € +€€€€€€€€€ €€€€€€€ €€€€ €€€€€ € € € +€ €€€ €€ €€€€€€€€€€€€€'€€€€ € €€€€€ €€€€€ €€€€€€€ €€€)€€ €€€€€€€€€€€€€$€€€€€€€ €€€ €€ €€€€)€€€€ €€€ €€ €€€ €€€€+€-€€€€€€€€€€€€€ €€€€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€ €€€€€$€€ €€ €€ €€ +€€ +€€€€€€€€ € +€ +€ € +€€€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€ €€€€€ € €€€ €€€ €€ €€€€€€ +€€€€ € +€€€€€€ +€€€ €€ €€€ +€€€€€€€€€€€€ €€€€€€ €€€ € +€€€ +€€€€€ €€€€€€ €€€€€€€€€€€ +€€€ €€€ €€€€ +€€€€€ €€€ €€ +€€ €€€ €€€€€€€€€€€€€ €€€€€€€€ € +€ €€ +€ +€€€€€€€€,€#€€€€ €€€ € €€ €€€€€€€ € €€ €€€€ €€€€€€ €€€ €€€ € €€€€€€€€€ €€€ €€€€ €€€€ € €€€€€ €€€€€€€€ €€€€€€ €€€ €€€€€€€€€€€€ €€€ +€ +€€€€€€ €€€€€€€ €€€€€€€€ +€€€ € €€€€ €€€ €€€€€€€€ €€€€ €€ +€ € +€€€€€€€€€€ +€€€€ €€€ €€€ +€€ +€€€€€ €€€€€ €$€€€€€€€€€ € +€€ €€€ €€ €€€€€€€€€€€ €€€!€€€€ € €€€€€€€€ €€!€€€€"€€€ €€€!€€€*€€€€€€€€€€€€€€€€€€€€€ +€ €€#€€€€%€€€€€#€€€€$€€€ €€ €€ €€€#€%€€€"€€€€€€ €€€€€€€€€€€$€€€€€€€€€€ € € €€ €€€ €€#€€€€€€€€€€€€€€€ €€ €€€€€€ €€ €€ €€€€€€€€€€€€€€€€€ €€€ €€ €€€€€ €€€€ +€€€€€€€€€€€ € €€ €€€ €€€€€€€€ €€€€ € €€€ €€ €€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€ +€€€€€€€ +€€€ €€€€€€€€€€€ +€€€€€ +€ €€€€€€€€€ €€ €€ € €€€€ €€€ €€€ +€€ €€ €€€€€€€€€€€€€€ € €€€€€€ €€€€ €€€€ € €€ +€€€€€€€€€€€€ €€€ € €€ € € +€ €€€€ €€€ € € € +€ € +€ €€€€ €€€€€€€€€€ €€€€ €€ €€€ € +€€€€€€€€€€ €€ €€€€€€€€€€ +€€€€ €€€€€ € +€ €€€€€ € €€ €€ €€€€€€€€€€€€€€€€€ €€€ €€€€ +€€€€€€ +€ €€ +€€€€€€€€€€€€€€€ € €€€€€€€ € €€€€€ €€ +€€ € €€€ €€€€ €€€ €€€ +€€€€€€€€€€€€#€ €€€€€€ € €€€€€€#€€€ €€€!€ € +€€€€€ € €€€€ € €€€!€€€ €€€€€ €€€€ €€"€€$€€€€ € €€€#€€€€€€€€€,€%€€€€€€€€€ € €€€€€€€ €€€€!€€€€ €€ €€%€€€€€ €€€€ +€€€*€€€ €€ €€€ €€€€€€€€ €€€€€€€€€ € € €€ €€€ €€€€€€€€€ €€€€€€€€€€€€€€€ €€€€€ € €€€€€€€€€ €€€€€€€€€€ € € €€€ €€€€€€€€ €€€€€€€€€€€ €€ €€€€€€ €€€€€€€€€€€ €€ €€€€€€ € €€ +€€€ €€ +€ €€€ €€€ €€€€€ +€€€€ €€€€€ €€€€€€€€ €€€€ € € +€€ +€ € €€€ +€€€€€€€€ € € € +€ €€€ €€€ €€€€ €€€€ +€ +€€€ €€€€ €€€€€€€ €€ €€ €€€€€ €€€€€€€€€€ +€ € € € € +€€€ €€€€ €€€ € €€€€€ €€€€ €€€€ +€ €€€€€€€€€€€€€€ +€€ €€€ +€€ €€€ € €€€ €€€ €€ €€ €€ €€€€€€ €€€€€€€€ € €€ €€€€€€ €€ €€€ €€€€€€€€€€€€€€€€ €€€€€€€ +€€€€€€€ € € € €€€€€€€€€€€€€ € € € € €€€€ €€€ €€€€€€€€€€€€€€€€€€ €€€ €€€€ €€€ €€€€€€ €€€€€€€€'€€!€€€€ €€€€€€€€ €€ +€€!€€€$€"€€€€€€ €€#€€€ €€'€€€€€€€€#€€€$€€€€€€€€ €(€ €€€€ €€€€€ +€!€€€€€€€€€€€#€ +€€€€€!€€€€ €€€€€€€€€,€ €€€ +€ +€€€ €€€ €€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€ € €€€€ +€€€€€€€€ € +€€€ +€ +€ €€€€€€€€€€ €€€ €€€€€€€€€€€€ €€€ €€€ €€€€€€€€€€€€ +€€€€€€€€€€ +€€€€€ €€(€€€€€ €€€ +€€€€€€€€ €€ €€€€ €€ € +€€€€€€€€€€€€€€ €€€€€€€€€€€ +€€€€€€€€€ €€€ € +€€€ € €€€€€€€€€ €€€€€€ € €€€€ €€€€ €€€€ €€€€€€ €€€€€€€€ +€€€ €€€€ €€€€€€ €€€€€€ €€€€€ €€€€€€€ +€€€€€€€ € €€ €€€€€€€ € €€€€€€€€€ €€ €€€€€€€ +€€ +€€€ €€€€€€ € +€€ €€€€€€€€€€€€ +€ €€€€€€€ €€€ €€€€€€€€€€ €€ €€€€ € +€ +€€€€€€ €€€€€€€ €€€€ +€ €€€ €€€€ +€€€€ €€ +€ € +€€€€€€€€ € €€ €€ €€€€ € +€€€€€€€€€€€€€€€€€€€€€ € €€ €€€€€€€€€€,€€€€€€€€€€€ € €€€€ €€€$€€"€€€ €€€€€€€€€€€ €€"€€€€€€€€€€€$€€€€€€€€€€€€€€€€€€€€€ €€%€€€ € €€€€€€€€€€€ +€€ +€€€€€€€€€€€€ €€€€€ € +€€€€€ €€ €€€ €€€€$€€€€€!€€€€€€ €€€€€ €€€€€€€€€ € €€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€ €€€€€€€ €€€€€€€ €€€ €€ € €€ +€€€€€€ €€€ € €€€€€€€ €€€€€ €€ €€ +€€€€€€€€€€ € €€€€€€€€€€€ €€€€€€€€ €€€ € +€€€ €€€€€ +€€€€€ € € €€€€€€ € +€€€€€ €€€€€€ € +€€€ €€ €€ +€€ €€€€ € €€€ +€ €€ €€€€€€ +€ €€€ €€€ €€€ € €€€€€€€€€€€€€€ €€€ +€€€ €€€€€ +€€€€ €€€€€€€ €€ €€€€€€ €€€ € €€€€€€€€€€ +€€ € +€ €€€€€ €€€€ €€€ €€€€€€€€€ €€€€€€ +€€ €€ €€€ +€€€€€ € +€ €€€€€€€€€€€€€€ €€€€ +€€ +€€€€ € +€€ €€ +€€ €€€€€€€€€€€ €€ € €€€ € €€€€ €€ +€€€€€ € €€€€ €€ €€ €€€ € €€ €€€ €€€ €€€€€€€€€€€€€€ +€€€€ €!€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€#€5€ €€€€€€€#€€€€€€%€€€ +€€€€€€€!€€€€ €€€€€€€€ €€€€€€ +€€ +€€€€€€€ €€#€€€€€€€ €€€€€€€€€€ € €€€€€'€€€€ €€€€€ +€€ € €€€€€€€€€ €€€ €€€€ +€€€ €€€€€ €€€ €€ € €€€€€€€€€€ +€€€€€ +€ €€€€ +€ +€€€€€€ €€€€ €€ €€€€€ €€ €€€€€'€€€€€€ €€€€€€€€ €€€€€€€€€€€ €€€ € €€€€€€€€€€ €€€ €€€€€€€ €€ € +€€€ +€ +€€€€ +€€ € €€ +€€€€ €€€€ +€ €€ +€€ € +€€ €€€€€€€ €€ +€€€€€ +€€€€ +€€€ €€ +€€€ +€€€€ €€ €€€€€ €€ +€€€€ € €€ €€€€ € €€€€ € €€€€€€ € €€€€ +€€ €€€ €€€ € +€€€€€€€€€€€€€ €€€€€€€€€€€€ €€ €€€€€€€€€€€€€€€€€ €€ € €€ €€€ €€ €€€€€€€€€€€€€€€€€€ €€ € €€€€€€ €€€ +€€ €€€€€€€€€€€ +€€€€€ €€€€€€ €€€€ €€€ +€€ €€€€€ € +€ €€€€ €€€€€ €€€€€€€ €€€€€ €€ €€€€€€€€€€€€€€ €€€€€€€€€€€€€€ +€€€€€€€€€€€ +€"€ €€€€€€€€€€€€€€€ €€€€€€%€€ €€,€€€€€€€€€€€€€€€€€€€€€ €€€€€€%€€€€ € €€€€€€€€€€€€€€€€€€ €€ €€€€€€€€€€ €€€!€€€€€€€€€ €*€€€€ €€ €€ €€ €€€€€€ +€€€€€€ +€ +€ € € €€€€€€€€€€ € +€€€€ €€€€ €€€ +€€ €€)€ €€€€€€ €€€ €€€ +€€ €€ €€€€€€ € € +€€€€€€ €€€€€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€ €€€€€€€€ +€€€ +€€€€ €€€€ €€€€€€€€€€€€€€ +€ € €€ €€€€€ €€€€€€€€ € €€€€€ €€€ €"€€€€€€ €€€€ € +€€€€€€€€ €€€€€€€€ €€ €€ €€€€ €€ €€€€ €€€ €€ +€ €€€€€€€€€€ €€€€€€€ €€€€€ €€ €€€€ € €€ € €€ +€€€€€€ €€€€ €€€€€€€€€€€ €€€€€ +€ € €€€ €€€€€€ € €€€€€€€ €€€€€ €€€€€€€€ €€ € +€€ € €€ €€€ +€€€€ €€€ €€€€€€ €€€ €€€ €€€ € +€€€€ +€€€ €€€€ €€€€ €€€€€€€€€ € €€€ € €€€€€€ €€€€€€€€€€€€€€!€€€ € € €€ €€€€€ €€€€€€€€ €€€€€ €€€€€€€€€€€€€€ €€ €€€€€€€€€€"€€ €€€€€"€€€€ €€€€€€€€€ €€€ €€€€€€€€ €€€€€€€ +€ €€€€ €€€)€€ €€€ €€€€€€€ €€ +€€€€€ € +€€€€€€€€€€"€€ €€€€ €€ € €€€ €€ €€€€ €€€€ €€€ €€€€ €€€€€€ € €€€€€ €€€!€ € +€€€ €€ €€€€€€€€ +€€€€€ €€€€€€€ €€€€ €€€€€€€€€€€€ € €€€ €€€€€ €€€€€€€ € +€€€€ €€€ +€€€€€€ €€ €€€€ €€€€€ €€€ €€€€€€€€€€€€€€€€ €€€€€€€ €€€ €€€€€€€€€€€ +€ € €€ €€€€€ €€€€€ €€€€€ €€€€ €€€€ €€ €€ €€€€€ € +€€€€€ +€€€€€ € € €€ +€€€ €€€€€€€€€ +€€€€€€ +€€€€€€ €€€€€ €€€ €€ €€€€ €€ €€€€€ € +€ €€€€ €€ €€ € +€€€€€€ +€€€€€€€€€ €€€€€€ €€€€€€€€€€€€ €€€€€€€€€€€€€ €€ €€€€€ €€€€€€€€€€€€ € €€€ €€ €€€ +€ €€ €€ €€€ +€ €€€€ €€€€ +€€ €€€ €€€€€€€€€ +€€€€€€€ € €€€€ €€€€€€ €€€€€ €€€€€€€€€€ €€€€€€ €€€€€€€ € €€€€€€€*€€ €€€€€€€€€€€€€"€€€€€€€€€€€€€€ €€€€ €€€€ € € €€€€€€€ €€ € € €€€ €€€€€€ +€€€€€€€€€€€ € +€€ +€€€€€€€€ €€€€€€€€ +€)€ €€€€€€€€€€€€ €€€€€€ €€€€€€€€€€€€€€€€€€€€€€€ €€€ €€ +€€€€ €€€€€€€€ €€€€€ €€€ €€€€€€€€€€€ €€€€€€€€€€ € €€€€€€€€€€€€€ €€€€ €€ €€€€€€€€€ €€€€€ +€ +€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€ €€ €€€ €€€ €€€€ €€€€€€ €€ €€€€€€ +€ €€ €€ € €€ €€€€ €€€€ €€€ € € €€€ €€ +€€ € €€€€€€€€€€€€ +€€€€€ €€ €€€ +€€ €€€€€€€€€ €€€€€€€ € €€ €€€€€€ +€ €€€€€ +€€€€€ €€€€€€ €€€ €€€€€€€€€ €€€€€€€ €€€€ € € € €€€€€€€€€€€€€€ +€ +€€€€ +€€ +€€€€€€ €€ €€€€€€ €€€€€ € €€€€ €€€ € €€€ €€ €€ €€€€€€ €€€€€ +€ +€€€€€€€€€€ €€ € €€ €€ €€ € €€ €€€ €€€€ €€€€€€€ €€€ €€€ €€ € €€€€ € € +€€€€€€ €€ €€€ € €€€€ € € € € €€€€€€€€€ €€€€€€€€€€!€€€€€€€€€€€€€€€€€€€€€€ € €€€ €€€€€ €€€€€#€€ €€€€€€€€€€€€€€€€€€€€€€€€€"€%€ €€€€€€€€€€€€€ +€€€€€€€€€€€€€€€€€€€ € €€ €€ +€€ € €€€€€ € €€€ €€ +€€€ € €€ €€€€ €€€€€#€€(€!€$€'€€€€€€€€€€€€€€€€€€€€€€ €€€ €€ +€€€€€€€€€€€€€ +€€€€ € € €€€€€ €€€€ €€€€€ €€€€€€€€€€€ € +€ €€€€€ €€ €€ € €€€€€€€€€€€ € € €€€€ €€€€€€€€€ €€€€ € €€ €€€ €€€€€€ €€ € €€€ +€€€ €€ +€€€€€€€€ +€€€ €€€€€ €€€€€€€€€€€€€€ € €€€€ €€ €€€€ € €€€€€€€€€€€€€ € €€ €€ +€ €€€ +€€€€€€€€€ €€€€€€€€ €€ €€ €€€€€ €€€€€€€€ €€€€ €€€€€€€€€€ €€€ € €€€€€ +€€€ €€€ +€€€€€ +€ €€€€€€€€ +€ € €€€€€€€€ €€€€€€€ €€€ €€€€ € +€€€€ €€€€€€ € €€ €€€€ €€€€€€ €€€ €€€€ €€€€€€€€€€€€€€ +€€ € €€€€€ € +€€€€€ €€€€ +€ +€€€ € €€ €€€€ € €€€€€€€€€€ €€€€€€€€€€€€€€€€€ €€€€€€€€€€ € €€€'€€€€€€€'€€€ € +€ €€€€€€€€€€€€€€€€€€!€"€€€€ €€€€€ +€€€€!€€€€€€€€€€ +€€€€€€€€€€ €€€ €€€€€€€€€€€€€€ €€€€ €€ +€€€€€€ €€ +€€€€€ +€ € €€€€€€ €€€€(€€.€.€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€ € +€€ €€ € +€€€€€€€ €€€€€€ €€€€€€ +€€€€ € € €€€€€€ +€€€€€€ +€€€€€€€ €€€€ €€€€ €€€€€€€€€€€€€€€€€€€€€€€€€ €€ €€€€€€€€ €€€€€€€€€€€ €€€ €€€€ €€€ +€€ +€ €€ +€€€€€€€€ €€€€€€€€€€ €€€€€€ €€€€€€ €€€ €€€€€€ €€€€ €€€ €€ €€€€€€ € +€€€ € €€€ € € €€€€€ €€€ +€€€€€€€€ €€€€€€ €€ +€ € €€€€€€€ €€€€€€€€€€€ €€€€€€ €€€€ €€ €€€€ €€€€ €€€€€€€ +€€ €€€€€€€ € +€ € € €€€€€ +€€€€ € €€€€€€€€€ €€ €€ € +€€ +€ +€€€ €€€€€€€€€ €€€€ +€ €€€€ €€€€ € € €€€ +€ € +€ €€€€€ €€€ € €€€€€€€€ € € €€€€%€€ € €€€€€€€€€€€€€€€€€€€€€€€ €€€€€€ €€€€!€€€€€€ €€€€ +€ € € €€'€€ +€€ €€€€€€€€€ €€ € € +€ €€ €€€ +€€€ € +€ € €€€ +€€ €€€€€€€€ €€€ €€ €€€ +€ +€ € € +€ €€ +€€€ €€ €€ €€€€ €€ €€€€€€€€€€€€€€€$€e€Ì€j€,€€ €"€ €€ €€€€ +€€€ €€€€€€€ €€€ €€ +€ €€€€€€€€€€o€€ +€€€€€ €€€ € €€ €€€€€€€€ €€€€€€€€ €€€€€€ €€€€ €€€ €€€€ €€€ €€€€ €€€ €€€€ €€€€€€€€€€€ €€ € € €€€€€€€€€€€€€ €€ €€€ €€€ +€€€€€ +€ €€€ €€€€€ €€€€€€€€€ € +€€€€ €€ +€€€€€ €€€€ €€€€€€€€€ €€ € +€€ €€€€€€ €€€€ €€€ +€€€€ €€€€ +€€€€€ €€€€€€€€€€€€€ € +€ €€ +€€€ €€€ +€€ €€ €€€€ € €€€ € €€€€€ €€ €€ +€ € €€€ €€€€ +€€€ €€ €€€€€€€ +€ +€€€ €€€ €€€€€€€€€€€€€ €€€€ € €€€ €€ €€ €€€€€€€ €€€€€ €€€ € +€€"€ +€€ €€€€ €€€ €€€€ +€€ +€ €€€ € €€€€€€ €€ €€ €€ € € €€€€ €€€€ +€ €€€€ +€€€€€ +€€$€€€€€€ €€€€ €€€€€€€€€€ € €€€€€€"€ +€€€€€€€€ €€€ €€€€€€€€€€€€€ €€€€€€€€"€€%€€€€€€€€ €€€€€€€ +€€€€ € +€€€^€€€€€€ €€1€ €€€ € €€ €€€€€€€€€€€€€€€€€€€€ €€€€€ € €€€€€€€€€€ +€€ €€€*€ €€€€€-€Íð€÷€D€€€€€€€€ €€€€ €€€€ €€€€€€€€€€€ €€€€€ +€ € +€…`€c€€€€€ +€€€€€€€€ €€€€€€ €€€€€€€ +€€€€€€€€€€€€€€€€€€€ €€€€€ €€€€€€€€€€€ € +€€€€€€ €€ €€€ €€€€€ € €€€€€€€€€€€€€€ +€€€€€€€€€€€€ +€ €€ +€ €€€€€€€€€ € +€€ +€€ €€€ +€€ +€€€€€€ €€€€€€€€€ €€€ €€€€€€ €€€€€ €€€€€€€ +€€€€€ +€€€€€€€€€€€€€ +€€€€€€ +€€€€€€€€€€€€ €€€€ €€ €€ €€€€€€€€€ +€ €€€€€€€ €€€€€€ +€€ +€€€€€ €€ € +€ €€ €€€ €€ €€€ € +€€ €€€€€ +€€€€ € +€€€ € +€€€€ € €€€ € €€€€€€€€€ €€€€€€€ +€€ € €€!€ € +€ €€ +€€€ €€€€€ €€€ €€€€€€€€€ €€(€ € €€ €€€€€€ +€€ € +€€€€€€€"€ €€ €€€€ €€€€€.€€ €€#€€€ +€€#€€ €€€€€€€€ €€!€"€ € €€€€€€€€€€ €€ €€"€€€€ €€€€€€!€€€€€€€€€€ €€ +€ €€€€€€€ €€€ +€€ €€€€€€€€€€€€ €€ € +€€€€€€€€€€€€€ € €€€€€€€ +€€ €€€€ €€€€€€€€€€ €€€ €€€€€€!€Y€Í€€€€€€ €€€€€ +€ €€€ €€€€€€ €€ € €€€€€€€€€ €€€€€€€ €€€€€€€€ €€€€ €€€€€€ +€€€ €€€€€€€%€ €€€€€€ €€€ €€€ €€ +€ +€€€€€€€€€€ €€€€€€€€€€€ € +€€ € € €€€ +€ €€€€€ €€€€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€ € +€€€€€ € +€€€€ €€€€€ +€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€ € €€€€€€€ €€€ +€€€€€ +€ €€€€€€ €€€ +€ +€€€ +€ €€€€ €€€ +€€€€€ € €€ +€€€€€ € €€ €€€€€ €€€ +€€€ +€€ €€ € €€€€€€€ €€ €€€ +€€€€€€€ €€€€€€ +€€€€€€ +€€€€€ €€€ +€€€ €€ € €€€€€ +€€€€€€€€ +€€€€€ €€€€€€€€ €€€€€€€ € € €€€€ € €€ € € €€€€€€€€ €€€*€€€€ €€€ €€€€€€€ €€€€€€€€€€€ €€€ €€€€ €€€€ +€€€€ €€€€€ €€€ € €€€€€€ €€€€€€€€ €€€€ €€ €€€€€€€€€€€€€ €€€ +€€€€€ €€ €€(€€€€€ € €€€€€€€€€ €€ €€€€€€€ +€€€€€ € €€€€€€€ € €€ +€€€€€€€€€€€€€ € +€€€€€€€€€€€€€ €€€€#€€€;€ €!€€€€€€€€€€€€€ €€€ €€ € €€€€€€€€€€€€€€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€€€€ €€ +€€€€€€ €€€€ €€€€€€ €€€€€€€ +€ € +€€€ € €€€ €€ €€€€€€€€ +€€€€ €€ €€€€ €€€ € +€€ €€€€€ +€€ €€ €€€€€€€€ +€€€€ +€€€ € +€ €€€ € €€€€€€€€€ €€ € €€€€ €€€€€ €€€ €€€€ €€€€ €€€€€€ +€€€€€€€ +€ €€ €€ € €€€€€ € €€€€€€ €€€€€€€ €€ € €€€€€€ +€€€ +€€€€€ €€€€€ € € +€€€€ €€€€ € +€€€€ €€€€€€€€€€€€€ €€ €€€ €€€€€ +€€€€€ €€€€€€€€ € €€ € +€€ €€€€€€€€€€€€€ € +€€€ €€€ €€ €€€€€€€ €€€€€€ € €€ €€ +€ €€ €€€€ +€€€€ €€ +€€€€ +€ € €€€€€€€€€€€€ €€€€€ € € €€€€ +€€€€€€€€€€€ +€€€€€€€ €€ +€ €€ €€€%€€€€€€€€€€ €€€€€ €€ €*€€€€€€€€€€€€€€€€€ € €€ €€€ €€ €€€ €€€€€€$€€€€€ €€ €€€€€€€€€€€€€€€€€€€ € €€€€ € €€€ €€€ € € €€ €€€ €€€€ € €€€€€€$€€ €€€€€€ €€€€€€€€€€€ +€€€ €€€€€€€ €€€ € +€€ €€€€€€€€ €€€€€€ €€€€€€ €€ +€€€€€ €€€€ +€€€ €€€€€€ €€€ €€€ €€€€€€€ €€ €€ €€€€€ +€ € €€€€ €€€€€€ €€€ €€ €€ €€€€€€€€€ € +€€ €€€€€€ +€€€ +€€€€€€ €€€€ €€€€€€ €€ €€€€€€€€€€ € €€€ +€€€€€€€ €€€€€€€€ €€€€€ € €€ €€€€ €€€€€€€€€€€€ € €€€€€€€ +€€€ €€ €€€€€€€€€€€€€€€€€€€€€ €€€ €€€€€ €€€€€ €€€€ €€€ €€€€ €€ € €€€ €€€ €€€€ €€ €€€€€€€ € € € +€€ €€€€€ €€€€ €€€ € €€€€€€ € +€ €€ €€€€€€ €€€ €€€€ €€€€€ €€ €€ € €€€€ €€€ € +€ € €€ €€ +€ +€ +€€€€€€€€ €€ +€€€ €€€€€€€€ €€€€€€€€€€€€€€€€€€ €€ +€"€€€€€ +€€€€ €€ €€€€€€€"€ €€€€€ €€€€€€€€€€€€€€€€€€€€€$€€€€€€ +€€€ €€€€(€€ €€€€€ € €€€€€€€€€$€€ €€€ €%€!€ €€€ €€€ € € €€ +€€€€€ €€€€€€€ € +€ €€€ +€€€€ +€"€€€€€€€€€€€€€ € €€€€€€€€€€€€ € € € €€€€€€€€€€€€€€€ €€€€€ € €€€€ +€€€€€€€€€€€€€€€€€€€€ €€€ €€€€€ €€€ € € € +€ +€€€€€€€ €€€ €€ €€ € €€€€€€€€€ +€€€ € €€€€ €€€€€€€€ € € €€€€€€ €€€€€€ € € €€ €€ € €€€€ € +€€€ €€€ € €€€€ +€€€€ +€€€€€ €€€€€€€€ +€€€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€€€€€€€ €€€ €€€€€€ €€€€€€€ +€€€€ € €€€€ € €€€€€ €€€€ +€€€€€€€ +€ € €€€€ €€ €€€€ € € €€€€ €€€€€ €€€€€€€€€€€ +€ €€€ €€€€ €€€€€€€€€€€ €€€ € € €€€ €€€€ €€€€ €€€€€ €€ €€€ € +€€ +€€€€€€€€€€€€ €€€€€ €€€ +€€€ +€ €€€ €€€€€ € €€€ €€€ € €€€€€€ +€€€€€€€€€€€ € €€€€#€$€€€€ € €€€ € €€€€€€€€€€€€€€€ € €€€€€€€€ €€€ €€ €€€€€ € €€€ €€€€€€€ €€€€€ €€€€€€€ €€€€€€€€ € €€€€€€€€€€€€€€€€€€ €€ €€€€€€€€€ €€€!€€€€€ €€€€€ €€ €€€€€€€€€ +€€€€ €€ €€€€€€€€€€ +€€€€€€€€€€ €€€€€€€€€0€€ €€€€ +€€€€ € +€€€€ €€€€ € €€ € +€€€€€€€€€€€ €€€€€€€€€€€€€ +€€€€€€€€€€ €€€€€€€€ €€€€ €€€€€€€ €€€ € +€ +€€€€€€€ €€€ €€€€€€€€ €€€ €€€€ € €€€ €€€€€€€ €€€€€ €€€€€€€€€ +€ +€ €€€€€€€€€ € €€€€ € €€€ € € €€ € €€€€€€€€€€ €€€ €€€€€€ €€€€€ €€€ €€ €€€ €€€€€€€€ +€€€€€€€€ €€€€€€ €€€€€€ €€€€€€€€€€€€€€€€€€€ €€€€ +€€€€€€€€€€€€€ € €€€ €€ € €€€ €€€€ € €€€€€ € +€ € €€€€€€€ €€€€€€€ €€€€€€€ € €€€ € € €€€€€€ +€€€€€€€€€€ €€€€€€ € €€€€€€€ +€€€€€€ €€ €€ €€€€€€ +€€ € € €€ €€€€ €€€€€€€€ € €€€€€€€€€ +€€€€€ €€€€€ +€€€€€ €€€€ € €€€€ € +€€€€€€€€ € €€€€€€€ „瀻€$€€€€ +€ €€€€€€€€ +€€€€€€€€ € €€ € +€€€€€€€€€€€€€€€€ €€#€€€€ €€€ €€€€€€€€€€€€€€ €€€€€€ €€ €€ +€€€€€ €€€€€€€€€€€€€€ +€€€€€€ +€€ €€€€€"€€ €€ € €€€€ € €€€€€€€€ +€€€€€€€€€ €€€"€ €€€€€€ € €€€ +€€€ +€€€€€€ +€€€€€€€ €!€€€ € +€€€ €€€€€ € +€ €€ € +€€ € €€€€€€€€€€€€€€ €€€€€€€ €€ +€ €€€€€€ €€€€ € €€€€€€ +€€€€€€€€€€€ +€€ €€€ +€ €€ +€€€€ €€€€€€ €€€€€ € € +€€€€€€ €€ +€€€€€ € € +€€€€€€€€ €€€€€€€€€€€ € €€€€€€ €€€€€€€€€€€ €€€ € €€ +€€€€€€€ €€ +€€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€€€€ €€€€€€€ €€ €€€€€€€ €€€€€€€€€ +€ €€€ € €€€€ € €€ €€€€€€€€ € € €€€ +€€ € €€€€€ +€€€€ +€€ €€€€€€€€ €€€ +€€ +€€€ €€€€€€ €€ € € +€ €€€ €€ €€$€€ €€€€€€ €€ €€ €€ €€€€€ €€€#€€€€ €€€ €€ €€€€€€€€€€€€€€!€€€€€€€€€ €€€€€€€€€€€%€€ €€€€Ê€/€€€ €€€€€€€€€€€€€€€ € € €€ €€ €€€€ +€€ €€ €€€€€€€€€€€€ €€€€€€€ €€ € €€€€ € €€€ € € € +€€€€€€€S€€ +€€ €€ € € €€€€%€ €€€€€€€€€€€ €€€€ +€€€€€€€€€€€€€€€€€€€€€ €€€ € +€ +€€€€€€ €€€€ €€€€€€€€€ €€€ € +€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€ € €€€€ +€ €€€€€€ €€€€€€€ €€€ €€€€€€€€€€€€€€ +€€€€€€€€€€€€€€€€€ +€€€€€€€€ +€€€€ €€€€€€ €€€ € +€€€ €€ +€€€€€€€€€ €€€€€ €€€€€€ €€€€ € €€€ €€€€ €€€€€ € €€€€€ €€€€€ +€ €€€€€€ €€€ € € +€€ €€ €€ € €€€€€€€€€€ €€ €€€€€€ €€€€€€€€ €€€€€€€€€€€€€ €€ €€€€€€€€€€€ +€€€€€€€€ €€€€ €€ € €€ € €€€ €€€€€ €€€€€€ +€€€€€ €€€ +€€€ €€€€€€ € €€€€€€€ €€€ € +€ € €€€€€€€ €€€€ €€€€€ €€‡€!€ €€€€€€ €€€ € €€€€€ € €€€€$€!€€€ € +€€ €€€€€ €€€€€€€€€€€€€€€€€€€ € +€€€€€ €€€ € +€€€€€€€ €€ €€€€ €€ € €€€€€€€€€ € € €€€€€€ €€€€ €€ €€€€€€€€€€ €€€€€€€€€€€€€ +€"€ +€€€!€€€€ +€€€€€€€€€€ €€€€€€€ € €€€€€€€ €€€€€€ € €€€€€€€€€€€€€€€€ €€€€€ €€€€€€€ +€€ +€€€€€+€€ €€€€€€€ €€€€€ €€€€€€€€ €€€€ € € €€€€€€€€€€ € € €€€€€€€ €€€€€€€ €€€€€€€€ €€ €€€€€ € € +€€€ €€€€€€€€€€€€€€ +€ +€€€€ €€€€€ €€€€ €€ €€ € €€€€€€€€€€€€€€ € +€€€ +€ +€€€€€€€€€€€€€€ €€ +€ €€ €€€€€€ €€ € +€€€€€€ €€ +€€€€€€€ € €€€€€ € +€ €€€€€€€€€€ +€€€€€ +€ €€ €€€€ €€ € €€€€€€€€ +€ €€ €€€ €€ € €€€€€ €€ €€€ +€ +€€€€€€€ € €€€ € €€ +€€ €€€€€€ €€€ € €€ €€€€ €€€€€ €€€€€€€€€€€ € +€€€€€€€€€ +€€€€ € €€ +€€€€€€€€ € € €€ € €€€ +€ € €€ € +€€€€€€€€€€€€ € €€€7€€"€€€€€ €€€ € €€€€€€€ €€€€€€ €€€€€€€€€€€€€€€€€ +€€ +€€€€€€#€€€€ €€€ €€€€€€€€€€€€€ €€€€€€€€€€€€€ +€ €€ €€€€ €€€€ €€ €€€ € +€ € +€€€ €€ €€€ € €€€ +€ €€€€€€€€€€€€€€ € €€€€€€€ €€€€€ +€€€€€€€€€ €€€ €€€€€€ €€€€€€€€ €€€€€€ €€€€€€€€€€ €€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€ €€ +€€€€€€€€€€€€€€€€€ +€ €€€€€€€€€ €€ €€€ €€€€€€€€€ +€€€€€€€€ €€€ €€ €€€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€ €€ €€ € €€€€€€€€€€ € €€ €€€€ +€€ €€€€ €€€€€ €€ €€ €€ € € €€€€€€€ €€€ €€ +€€ € €€€ €€ +€€ €€€€€ € €€€€€€€€€ €€€ €€ €€€€€€ €€€€€€€€€€ € € +€€€€ €€€€€€€€€€€€€€€€€€€€ €€€€€€€ +€€€€ € +€€€€€ €€ €€€€€ €€ €€€ €€€ € €€€ €€€€€ €€€€ €€€€ +€€€€€€€€ €€€ € € € € €€€€€€ €€€€ €€ €€ € €€€ €€€€€€€€€ +€€€€€€€ €€€€€€€ +€€€ €€€€ €€€ € €€€€ €€€€€ €€€€ €€€€€€€ €€€€€€€€€ € €€€ €€ €€€€ €€ €€€€€€€€€€€€€€€€€€ €€ € +€€€€ €€€€€€€ €€€€€€€€€€€€€€ +€€€€ €€ €€€ +€€€ €€€ €€ €€€€€€€€€€€ € €€ +€€ €€€€€ +€€ +€€€€ +€€€€€ €€€€€ €€€ €€€€€ €€€€ €€€€ €€€€€€€€ +€€€€€ €€€€€€€€€€€€€ €€€ € €€ €€€€€€€€ € €€ +€ €€€€€€€€ +€€€€€€€ € +€€€€€€€€€ €€€€€€€€€€€€€ €€ €€€€€€ +€ +€ €€ €€€€ €€€ €€€€ €€€ € €€ € €€€€€€ € €€ €€€€€€€€€€€€ €€ +€€ € €€€ € €€€ €€€ € €€€€ +€ € € +€€€ €€€€€ +€€€€€€ € €€€€€ €€€€€€€€€€ €€€€€€€€€€€€ €€€€ € € +€ €€ €€ €€ €€ +€ €€ € € €€€€€€€ +€ +€€€€€ +€€€€ +€ +€€€ €€ €€€€€€€€€€€ €€€ +€€€€€ +€€€ €€ €€ €€ € €€€€ €€ €€€€€ €€€€€ € €€ €€€€€€€ €€ €€€€€€€ +€€€€€€ €€€€€ €€ €€€ €€ €€€ €€€€ €€€€ +€€€ +€€€ €€€ €€€€€€ € +€€€€€€€€€€ € +€€€€€€€ €€€€ €€€€€€€ €€€€€€ +€€€€€€€€€€€€€€€ €€€€€€€€*€€€€€€€€€€ €!€€€€€€€€ €€€€€€€€ € €€€€€€€ +€€€"€ € €€€€ €€€ €€€€ +€ €€€ €€€€ €%€ +€ +€€€€€€€€€€€ +€€ +€€€€€€€€€€€€€€€€€€€€€ €€€€€€ €€€€€€€€€€ €€€€€ €€ €€ €€€€€€€ +€ €€ €€€€€€€€€€€€€€€€€€ €€ € €€€€€ €€€€€€€ €€€€€€€€€€€ €€€€€€€€€ €€€€€€€€ €€€€€€ +€ €€€€€ €€ €€€€€€€ €€€€€€€€€€€€€€€€ +€ +€€€€€ €€€€€€€ € €€€ €€€€€€€€€€ €€€ €€ €€ € €€€€€€€€€ €€ €€ €€€€ €€€€€ +€€€€€€€€ € +€€€€€€€ +€ €€€€€ €€€ €€€€€€€€€€ €€€€ €€ +€€€€€€€€€€€ €€€€€ +€€ €€€ €€€€€ €€€€€€€ €€€ €€€ € €€€€€€ €€€€€ €€€€€€€ €€€€€ €€ €€€ € €€€€€€€€€€€€€ €€€ € €€€€€ €€€€€€€€€€€€ €€ +€ €€ +€€€€ € € +€€ €€ € € € €€€ €€€€€€€ €€ €€€€€€€€€€€€€€€ €€€ €€€€€€€ €€€€€€€ € € €€€€ €€€€€ €€€€€€€ €€€€ €#€€$€€€€€€€ € € €€€€€€€ €€€€€€ +€ € €€ +€€€€€€€ € €€ €€€€€€€€€€€ €€€€ €€€€ €€ €€€€ € €€ €€ €€€ €€€ €€€€€ €€€€€€€€€ €€€€ €€ +€€ € €€€€ €€€€€€ €€€€€ €€€€€€ €€€€€€€€€€€€€€€€€€ +€€€ €€ €€€ +€€ €€ €€€ €€€€€€€ €€ €€ €€ € €€ €€€ € +€€€€€ €€€€€€€ €€ €€€€ €€€€€€€€€€€€€€ +€€ €€€€€€€€€ €€€ €€€€€€€ +€€€ +€€€€€ €€€€€€€€€€€€ €€€€€ €€ € €€ +€€€€ € +€€€ € +€ €€ €€€€ €€ € € +€€€€€€€ €€€€ €€€ €€ € €€€€ +€ €€ €€€€ €€€ +€€€€€ +€€€€€ +€€€ +€€€ € +€ +€ €€€€€€€€€ €€€ €€ €€ € €€€€ €€€€€€€€ €€ €€€€€ €€€€€ +€ €€€€€ € €€€€ €€ €€€ +€€€€€ € +€ +€€€€€€€€€€€€€€€€€€€€€ +€ €€ €€€€ € €€€€ +€€€€ € € €€€ €€ €€€€€€ €€€€€€€€ €€€ +€ €€€ €€ € €€€€€€ €€€€€€€€ €€€€€€€€€ +€€€€€€€€€€ € €€€€ €€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ € €€€€€ €€€€€€ €€ €€€ €€€€€€ €€€€ €€€ €€€€ € €€€ €€ €€ €€ +€€€ €€ €€€€€€ €€€€ € +€€€€€ +€€€"€"€€€€€ €€€€ €€€€€€€€€€ €€ +€€€€€€€€€ €€€€ +€ €€€€ € +€€ €#€€ +€€€€€ +€€€€ €€€€€ +€ € € +€€€€€ € +€€ €€ €€€ €€€€€€€€ +€€€€€€ €€€ €€€€€€ +€€€€€€€€€€€€ +€€€€€€€€€€€€ €€€ €€€ +€€€ € €€€€€€€ €€€ €€€€ € €€€€ €€€€€€€€€€€ €€€€€€€€€ €€€€€€ €€€ €€€ € €€ €€ € €€ €€ €€ €€ € € €€ €€€€€ +€€ €€€€€€€€€€€€€€ +€€€€ € €€€€€€€ €€€ €€€€ € €€ €€€€ €€ € €€ € €€€€€ €€ € €€€€€€€€€€ +€ €€€ € €€€€ €€€€€€€ +€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€ € +€€€€€€€€€€€€€€ +€€€€€ €€ €€€€ € +€€€ €€€€€€ +€€ € +€€€€€ €€€ €€€€ €€€ € €€ €€€ €€€€€€€€€€€€€€€€€ +€€€€!€€€€€€€ €€€€€€€€€€€ € € +€€ € € +€€€ €€€ €€€€ € +€€€€€€ € € € €€€€ € +€€€€€€€€€ €€€€€€€€ €€€ €€€ +€€€€€€€€€€€ +€€€€€€€ €€ € € €€ € € €€ €€€€€€€€ €€€€€€€ +€€ €€€€ €€€€€€€€€€ €€€ €€€€€€€€€€€%€€€ € +€€ €€€€€€€ €€ €€€€ € € +€€€ €€€€ +€€€€€€€0€€€€€ +€€ € €€ €€ €€ +€€€ €€€€€ €€€€€€€€ €€€€€€€€ €€€€€€€€€€€€€€ €€ €€€ €€€€ € +€€€€€€€€ +€€€€€€€ €€ €€€ € +€€€€€€€€ €€€€€€ +€€€€€€€ €€€€€€€€ €€€€€ €€€€€ € €€€ €€€€€€€€ +€€€€€€ +€€€€ €€€€ +€ € +€€€€€€€ €€€ € +€€€€€ € €€€€€€€€€€€€ €€€€ €€€€€€€€ €€€€€ €€ €€€€ €€€€€€€€€ € € € +€ €€€€€€ €€€ €€ +€€€€ +€€€ €€ +€€ €€ € +€€€€€€€€€€€€€€€€ €€€€€ €€ €€€ +€€€€€€€ € €€ +€ +€€€€€€€€€€ € €€€€€€€€€ €€€€€€€€€ € €€ €€€ € €€€€€ €€ €€€€€€€ +€€€€ € €€€€ € €€ €€€€€ € €€ € € €€ € €€€€€€ €€€€€€ €€€€€ € +€€€ €€€€ +€ €€€ €€€€€€€€€€€ +€€€€€ €€€€ +€€€€ € €€€ +€ €€ €€€€€ € € € €€€€ €€€€ €€€€€€€ €€€ €€€€#€€€€€€€€€ €€€$€ €€€€€€€ €€€€€ +€€€ €€€€€ € €€€€€€€€€€ +€€ €€€€€ €€€€€€€€€€€€ +€€€€€€€€ +€€ €€€€€€ €€ € €€€€€ € € € €€€ +€€€&€€ +€ +€€€€€€€€€€ €€€€€€ €€€ €€€ +€ €€€€€€€ +€€€€€€€€ +€ €€€€€€ €€€€€€€€€€€€ €€€€€€€ €€€€€ €€€€€€€ +€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ € €€€€€€€ € €€€€ €€€ € €€€€ €€€€€€€€€€€€ €€€ €€ €€€€€ +€ €€ €€€€ €€€€€€€€€ +€€€€€€ € € €€€€€€€€€€€€€€€€ €€€€€€€ €€€€€€€ €€€€€€ €€€€€€€€ €€€€€€€€€€€€€ € €€€ € € €€€€€€ +€ €€€€ +€€ € €€€ € +€€ +€€€€€€ €€€€ +€€ €€€ €€€ €€€€€€ €€€€€€€€€ €€€ €€€€€ +€€€ €€€€€€€€€€€€€ €€ € €€€€ €€€€ €€€ €€ €€€€€€€ € € €€€€€€ € € € €€€€€€€€€€€€€€€€ €€€€€€€€€€€ € +€€€€ €€€ €€€€€€€ €€€€ € +€€€€€ €€ €€€€€ €€ € € €€€€ +€ € €€ €€€€€!€€€€ € € €€€€€€ €€€€€€ €€€€€€€€ €€€€€€€ €€€ +€€€€€€€€€€€€ €€ +€€€€ +€€€ €€€ +€€€€€€ €€€ +€€€€€€ € €€ € €€€ €€€€€ €€ +€€€€€€€€€€€€€€€(€ € €€€€€ €€ €€€€€ € € € €€ €€€€€ €€ €€ €€€€€€€€ €€€€ €€ €€€€€€ €€€€€€ €€€ €€ € €€€€€€ €€€€€€€€€€€€€ €€€€ €€€ €€€€ € €€€€€€€€ +€€€ €€€ €€€€ +€€€ €€€€€ €€ € €€€€€€€ € +€ € € €€€€€€€€€€ +€ € €€€ +€€ €€ € €€€ +€€ +€ €€ €€ € € € €€€€ €€€ €€€€€€€€€€€€€€€€€€€ € €€ +€€€€€ €€ €€€€€€€€€ €€ € +€€ +€€€ € € €€€€€€€€ €€€€€€€€€ +€€€€€ € €€€€€€€€€ €€ +€€ +€ €€ €€€€€€€€€€€€€€€€€ €€ €€€€€€ €€€€€€ €€€€ €€ € €€€ € +€€ €€ € € €€€€€€€€€ +€ €€€€€€€€ +€€€€€ €€€€€€€€€ €€ €€ €€€ €€€€€ +€€€€€ € € +€€ €€€€€€€€ €€€€€€€ €€€€€ +€€€€€€€€€€€€ €€€€€ € +€ €€ €€€€€€ € €€€€€€ €€€€ €€€€€ €€ € € €€€€€€ +€€€€€€€€€€€€€€€€€€€ € €€€€!€ €€€€€*€€ €€€€€€€ €€€€€€€€ €€€€€€€ €€€ €€€€€€€€ €€€€€€€€€€€€€€€€€€€€ €€€€€€ € €€€€€€€€€€€€€ +€ € € €€ €€€€#€€ €€ €€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€€ +€€ €€€€€€€€€€ +€€€€€€€€ € +€ €€€€ +€€€€€€€€ €€€€€€ € +€€€€ +€€€€€€€€€ €€ €€€ +€€ €€ €€ €€€€€€€€€€€ €€€ € €€ €€€€€€€ +€€€€€€€€ €€ +€€ € €€€€€€€€ €€ € € €€€€€€€€€€€€€€ €€€€€€€€€ +€ €€€€ €€€€€€€€€€€€€ +€ +€ € +€ +€€€ € €€€€ +€€ €€€€€ €€€ €€€€€€€€€€ € +€ +€ €€ €€ €€ €€€€€€€€€€€€€€ +€€€ €€€€ € +€ €€€ €€ €€€€€ €€ € €€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€%€ +€€€€€€ €€€ €€€ €€€€ € €€€€€ +€ € € €€ €€€€€€€€ € €€ €€ €€€ € €€!€€€€ €€€€€ € €€€€€€€€€€€ +€€ € €€€€€€€€€ €€€ +€€ € €€€ +€ €€€ +€€€ €€)€€€ €€€€€€€€€ +€€ +€ €€€€ €€€€ €€€€€ €€€€ €€€€€€ €€)€€€€€€ €€€ €€€€€€€€€ +€€ +€€ +€€ €€€€€€ +€ €€€€€ +€€€€€ €€€€€ € +€€€€€ € €€€€€€€€€€ +€€€€€€€€ +€€€€€€€ €*€€€€€€€€€€ €€€€€€ €€€€€€€ +€ +€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€ €€€€€€€€€ €€€€€ +€€€€€€€€€ +€€€€€€€€€€ €€€€€€€€€ €€€€ €€€€ €€ €€€ +€ +€ €€€€ € €€ +€€€€€€€€ €€€€€€€€€€ € +€€€ € € € €€ € € €€€ €€ € +€€€€ +€€ +€ € +€ €€€€€€ €€€ €€€ €€ €€€ € €€€ €€€€ € € €€€ +€€€€€ €€€€€€€€€€€ €€€€€€€ +€€€ +€€€€€€ €€ €€ € +€€€ +€ €€ € €€€ €€ +€€€€€ €€ €€ €€ € €€€€€€ +€ +€€€€ +€€€ €€€€€€€ +€ €€€€ € +€€€€€€€€€€ +€€ €€€€ +€ +€€€€€€€€€€€€€€ +€ €€ €€€ +€€ €€€€€€€€ +€ €€€€ +€€ € +€€€ €€€€€€€€€€€€ € +€€€€ +€€€€€€€ €€€€€ €€€€ +€€€€€€€€€€ +€€€€ €€€€€ €€€€ €€€€€€€€ €€€€€ € €€€€€€ €€ €€€€€€€€€€ € €€€€€€€€€ €€€ €€€€€€€€€€€€€€€ +€€ €€ € +€€ +€€€€€ €€ € €€€€€€ €€ €€ €€€€€€€€€ +€€€€€€ +€€€€€€ €€€€€€€ € €€€€€€ €€€€ €€ +€€€ €€€ €€€€ +€€€ € €€€€€€€ +€ € €€€€ €€€€€€ € € €€€€€ +€ €€€€ €€€€€€ € €€€ €€€ €€€€€€€€€€ €€€€ €€€€€€ €€€ € €€€ €€€€€ € € €€ €€€€€€€€€€€€€€€€€€€€€€ +€ +€ € €€ +€ € €€€€€€€€ +€ €€€€€€€ +€€€€€€€€ €€€€€€ €€ +€ € € €€ €€€€€€€€€€ €€€ €€€ €€€ € € €€€€€ €€€€€€ €€€€€€ +€€€ € +€€€€ €€ € €€€€ € € € € € €€€ €€€€ +€€ €€ +€€ € +€€€€€€€ €€€€ €€ €€€€€ +€€ € €€€€ €€ €€€€€€€€ € +€€€€€ €€€ +€ € +€ €€€€€€€€€€€ € €€ € €€ €€€€ € +€€€ €€€€ € €€€€ € € €€€ €€€€€ € +€ €€€ €€€€€€ €€€€€ +€€€€€€€€€ +€€€ +€ €€ €€ €€ € +€€ €€€€€ €€€€ € € € €€ €€ € € €€€€€ +€ €€ +€ +€€€€€€€ €€€€€€€€ € € +€€€ +€€€ €€€ € +€€€€€ +€€ €€ €€€€€ € €€€€€€€ €€€€€€ €€€ € €€€€€ € +€€ +€€€€#€!€ €€ €€€€€€€€ €$€€€ €€€€€ €€€€€€€€€€€€ €€ €€€€€€€€€€ €€€€€ €€€ €€ € €€€€€€ €€€€€ +€€€ +€€€€€ €€€€€€€€€ €€€€€€€ +€€ €€€ +€ €€ € €€€€€ €€ +€€€€€€€ €€€€€€€€€€€ € €€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€ €€€ € € +€€ €€€€€€€€€€ €€€€€ +€ €€€€€€€€ €€€€ +€€€€ +€ €€€€€€€€€ €€€€€€ € €€€€€€ €€€€€€€ € €€€€€€€€€€€ €€€€€€ €€€ €€€€€ €€ € € €€€ € €€€€€€€€€€€€ €€ €€ +€€€ €€€€€€€ € € €€€€€€€€ €€ +€ €€€€ €€€€€€€ €€€€€€ +€€ €€€€€€ €€ € €€ +€ €€ € +€€€€€€€ € €€€ € +€€€€€€€€€ +€€€€€ +€ €€€€ €€€ €€€€€€€€€€€ €€€€ +€€€ €€€€€ €€ € €€€€€ € €€ €€€€€€€ €€€ €€ €€€ € €€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€ €€ € €€€ €€€€€€ €€€ € €€€€€ €€ €€ €€ €€€ +€ € €€€€€&€€€€ €€€€€€€ €€€€€ +€€€€€€€€€€€€€€€ +€€ €€€ +€ €€ €€€€ +€€€€€ +€ €€€€€ €€€€€€€€ €€ € € €€€€€€ €€€€€ €€ €€ +€€€€ €€€€€€€€ € €€€€€€€€€€€€ €€€€€ €€€€€ € €€€ €€€ €€ € €€€€€€€€€€€€€ €€ €€ +€€€€€ +€€€ €€€€€€ +€ €€€€€€ €€€€ €€ €€€€€€€€€€€€€ €€€€ €€€€€€€€€€€€ €€€€ €€ +€€ €€ €€€ +€€€ € +€€€€€€€ €€€ +€ €€€ € € +€€€ €€€€€€€€€€€€€€€€€€€€€€€ €€ € €€€ € €€€€€€€ +€€€€€€€€ +€ +€€€€€€ € €€€€€€€€€€ € €€€€ € €€€€ +€€ €€€€ €€€€€ +€€€€€€€€€€€€€ €€€€€€€ € €€€€€€€ € €€€€€€€ € € € €€€€€€€€ +€€ € €€€€ € €€ €€€€ +€ €€€€€€ € € €€€€€ +€ €€€€ +€€€€ €€€ €€ €€€ €€€ +€€ +€€€€€€€€€€€€€ €€€€€€ €€€ +€€€€€€€€€ €€€€€€ +€€ €€€ +€€ €€€€€ €€€€€€ +€€€€€€ € €€€ €€€€ € +€€€€€€€€ €€€€€€ +€€€€€€€€€€€€€ €€€€€ €€€€€€€€€ €€€€ €€€€€€€€€€€€€€€€€€€ +€€€ €€€ € €€€€ €€€€€€€€€€€€€€€ €€ +€€€€€€€€ +€€€€€€€ €€€€€ €€€€€€ €€€€€€ €€€€€€€€€€ €€€€€€ +€ €€€€€€€€€€€ €€€€€€ € +€€€€€ €€€ €€ €€€ €€€€€ €€ €€€ €€€€€€€ +€ €€€€€€€€€€€€€€€€€€ €€ € €€ €€€ €€ €€€€€'€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€ +€ €€€€€€€ € +€€€€ € +€€ €€€€€€€€€€ €€€€€€€€€€ +€€ €€€€€ €€€€€€€€€€€€€ €€€ €€€€€€€€€ +€€ €€€ +€€€€€€€€ € +€€€€ €€€€€ € €€€€€€€€€€€€€€€€€€ €€€€€€€€ €€€ €€ € €€€€ +€€€€€€€€€€€€ +€€€ +€€ € €€ €€€€ €€€€€ +€€ €€€€€€€€€€ +€ €€ €€€ €€€€€€€€ € +€€€€€€€€€ € €€€€ +€€€€€€ +€ €€€€ €€€€ +€€ €€€ €€€€€€€€€€€€€€€ +€€€€€ € €€€€€€€€€ +€ €€ € €€ €€€€ €€ +€€€€€€€€€€ €€€€€€ €€ € €$€ € €€€€ +€€ €€€€ €€"€ € € +€€ +€€€€ € € +€€€€€€ €€€€€€€ €€€€ €€€€€ +€€€ € €€ € €€ €€€ €€€€€€ +€ € € €€€ € €€€€€€€€€€€€€€€€€ € +€€€ +€€"€ € € +€€€€ +€€ €€ €€€€ €€€ +€€€ +€€€€ +€ +€ €€€ €€€€€ €€€€ €€€ € €€€€€€€ €€€€€€€€€€€€€ +€€€ €€ €€€€€ +€€€€€€€€€€€ €€ €€€€€€ €€ €€€€)€ € €€€€€€ € €€€€€€ +€€ +€€€€€€ €€€€ +€€€ €€€€€€€€ +€€€€€€€€€ € +€€€€€€€€€€€€ €€€€ +€€€€ € €€€€ € € €€€€ €€€€€€€ €€€€€ €€€€€€€ €€€€€€€€€€€€€ € €€€ €€€€€€€€ €€€€€€€€€€€€€€€€ €€€€€€€€€ +€ €€€ €€€€€€€€€€€€€ € €€ € €€€€€ €€€€€€€€€€ +€€€€ € € €€€€ +€ €€ € €€€€€ € €€€€€ €€€€€€€€€€€ €€€ +€€€€€ €€€€ €€€€€€€€€€ €€ €€ +€€€€€€€ €€€€€€€€€€€ € €€€€ €€€€€€€€€€€€€€ € €€ +€€ € €€€ € €€€€€ €€€€ €€€ €€ € €€€€€€€€€€€€ € €€ €€€ €€ €€€€€€ € €€€ €€€ € €€€€€€€€ € +€€€€€€€€€€€ €€€€€€€€€€€€ €€ €€ €€ +€ €€€€€ € €€€ €€€€€€ €€ € €€€€€€€€€€*€€€€ €€€€€€ € +€€€ +€€€€€€€€€€ €€€€€€€ €%€€€€ +€ €€€€€€€€€€€€€€€€€€ €€€ +€€€€ €€ €€€€€€€€ € €€ +€ €€€€€ +€ €€€€€ €€ +€ €€ €€€ € €€€€€ €€€€€€ €!€€€€€ €€€€ +€€€€ €€€€€€€€€€€€€€ €€€€€ €€€€€ €€€€€€€€€€€€€€€€ €€€€ €€€€€€ +€€ €€ €€€€€€€€ €€€€€€€€ € € +€€€€ €€€€€ € € €€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€ € €€€€€€€€€€€€ €€€€ €€€ +€€€ +€€€€€ €€€€€€€€€€ €€ €€€€€€€€€€€€€ €€€ €€€€€€€€€€€€ €€€€€€€€€€€ €€€€€ €€€€€€€€€ €€€€€ +€€€ +€€€ €€€€€ €€€€€€€€€€ € €€ € €€€€€€€€ € €€€€€ € €€€€ +€€€€€€ +€ € € €€€€€€€€€€€€€ € €€€€€ +€€€€€€ €€€€ € €€€€€€ €€€€ €€€ €€€€€ +€€€€€€€€ €€€ +€ €€€€ €€€ € €€€ €€ €€ €€€€€€€€€€€ €€€€€ €€€€ +€€€€€€€€€ € €€ €€€€ € +€€€€€€€ €€€€ €€€€€ +€€ € €€€€€€€€ €€€ €€€€ € €€€ €€€€€ €€€€€€€€€ +€€€€€€€€€ €€ €€ €€€€ € €€€ €€€€€€€€€€€€€€€ €€€€€€€$€€€€€€€€€€€€€ €€€€ € €€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€€€€€€€€€€€ +€€€€€ €€€€ +€€€€€€€ €€€ €€ €€€ +€€ € €€€ €€€€€ € +€€€€€ €€ €€ €€ €€€€€€€€ €€€€€€€ € €€€€€€€€€€ €€€€€€€€ +€€ €€€€ +€€€€€€€ €€ €€€€€€€€ € € €€€€€€ €€€€€€€€€€€ € €€€ € €€€ € +€€€€€ €€€€ €€€€€€€€€ €€€€€€€€€€€€€€ €€€€€€€€€€€€ €€ +€ +€€€€€€€€€ €€ €€€ +€€€€€€€ +€€ € €€ +€€€€€€ €€ € € +€€€€€€€€€ € €€€€€€ €€€€€€€€€€€ €€ €€€€€€ € €€€€ +€€€€ +€€ € +€€€€ € € €€€€€€€€€€€ +€ +€€€€€€ €€ € €€€€€€€ € +€ +€€€€ € € €€€€€€€€ +€€€ €€ €€€€€ € €€€ +€€ €€€ €€€€€ €€€€€ €€ € +€ €€€€€€€€ +€ € +€€€ €€€€ € €€€€€€€€€ €€€€ € €€€€€€€ €€€€€€ €"€€€€€€€€ €€ €€€ +€€€€€€€€€€€€€€€€%€ €€€ €€€ €€€ € +€€€€ +€€€€€€€ +€ €€€ €€€€€€€€€€€€€€ €€€€ € €€€€€ €€€€ +€ €€€€€€ €€€€€ €€€€ €€€€€ €€€€€ +€€€€€€€€€€ €€ €€€ €€ €€ €€€€ +€€ €€€€€ €€€€ €€€€ €€€€€€€€€€€ +€€€€€ €€€€€ €€€€€ +€€€ € €€€€€€€€ € €€€€ € €€€€ €€ €€€€€€€€ +€ €€€€€€€€ € € € +€€€€€€ €€€€ €€€€€€€€ €€€€ €€€€€€€€ €€€ +€€€€ +€ €€€€€ €€€€€ € €€€ €€ €€€ €€ €€€€€ €€€€€€€€€€€€€€€€€€€€€€€ € €€€€€€€ +€ €€ €€ € €€€ €€ €€€ € €€€€ +€€€€ €€€ €€€€ €€ +€€ € €€€ €€ €€€€€€€€€€€€€ €€ +€ €€€€€€ €€€€ €€€€€ € € €€€€€€€€ +€€€€€ € +€€€€€€€€€€€€€€€€ €€ €€ €€ € +€€€ €€€ € €€ €€€ €€€ €€ €€€€€ €€€€€€ € €€ €€€ € € € +€€€€ €€€-€ €€€€ €€ €€ € € €€€€€€€€ €€€ €€€€€€€€€ €€€ € € € € € €€€€€€€€€ € +€€€€€€€€€€€ €€€€€ +€€ € € € € € +€€€ €€€€€ +€€€€€ €€ €€€ +€€€ € +€€€€ €€ €€ € €€€€€€ €€€€€€€€€€€€€ €€€€ +€€€€€€€€€€ €€€€€€€€€€€€ € €€€€ € € €€€€€€€ €€€€€€ €€€€€ € €€€€€€€*€€ €€€ € € +€€€ +€ € €€ +€€€€€ €€ €€€ €€€ €€€€€ +€ €€€ €€€€€€€€€ € € €€€€€€€€€€€!€€€€€€€ €€€€€€ €€ €€ +€€ +€ +€ +€€€ €€€ €€€ +€€€ € +€€€€€€€ €€€ €€€€€€€€€€€€ €€€€€ €€€€€€€ € €€€€€€€€€€€€ € €€€€ +€€ €€€ +€€€€€€ € +€ €€€€€ €€€€€ €€€€€ €€€ €€€ €€ € €€€€€€€€ €€€€€€€€€€€€€€€€ +€€€€€€ +€€€ €€€€ €€€€€€ €€€€€€€€€€ €€€€€ €€€ €€€€ € €€ €€ €€€ €€ € €€€€ €€€ €€€ €€ €€ €€ €€ +€€€€€€ €€€ €€€€€ €€ +€ € +€€€€€ €€€€ €€€€€€€€€€€ € €€ €€ €€ €€€€€€€€ +€ € € €€€€€€€€ €€ € €€ €€€€ €€€€€€ € €€€€ € +€€€€€€€€€€€€€€€€€€€€€€ €€€€ €€€€ €€€€€€€€€€€ +€ € +€ € +€ €€€€€€ +€€€€€€€ +€ €€€€€€€ €€ €€€ €€€€ €€ +€€€€ €€ €€€€€€ € €€€€€€€€€€€€€€ € € €€!€€€€€€€€ €€ € €€€€ €€€€€€€€€ €€ €€ €€€€€€€€€€€€€€€€€€ +€€€ €€€€€€€ €€ €€€€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€ +€ €€€ €€ €€€€€€€€€€€ €€€ €€€€€€€€€€€€ €€€€€€€€ €€€ € €€€€€€€€€€€€€€€€€ +€ €€€ +€€ €€€ € € €€€ €€€€€€ €€€ +€€€€ €€€€€ +€ +€€€ €€€€ €€ €€ € €€€€€€€ €€€ +€€€€€€ +€€ +€ € +€€€€€€€ €€€€€€€€ €€€€€€€€ +€€€€€€€ €€€€€€€€€ €€€ €€€€€€€€€ +€ € € € +€€€€€ +€€ €€€€€€€ €€€€€€€€€€ +€ € €€€€ €€ €€€ +€ € €€€ €€ €€€ €€€€€€€€€€€€€ €€€€€ +€ €€€€ +€€ €€ €€ €€€€ €€€€€ €€€ €€€€€€€€€ +€ €€€€ €€€€€€ €€€€€€€ €€€ € €€€€ €€€€ €€€€€€€€€€€€€ € €€€€ € +€€€€€ € €€€€€€ +€€€€ € €€€€€€€€€€€€ +€€€ € €€€€€ €€€€€€€€ €€€€€ €€€€€ € €€ €€ €€€,€!€ €€€ €€€ €€ €€€€€ €€€ +€€€€€€€ +€€€ €€€ €€€€€€€€€€€€€€€ €€€€ €€€ €€ €€€€€ +€€€€€€ € €€€#€€€ €€€€€ €€€€€€€€€€€€€€€€ €€€€€€€€€€€€ +€ €€€€ €€€€ +€ €€€ +€€€ €€€€€€ €€€ €€€€€€€€€€€€€€€€€ €7€ € €€€€€ €€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ € €€ +€€€ €€€€€€€ € €€€€ € +€€ €€ € +€€ +€€€€ +€ +€€ €€€€€€€€€€€€€€€€€€ €€€ +€€€ €€€ +€€€€€€€€€€€€€€€€€€ +€€€€ €€€ € €€ €€€ +€€€€€€ +€ €€€ €€€€€€€€€€€€€€€ +€€ €€€ € €€€€ € € €€ €€€€ € +€€€€€ €€€€€ €€€€€€€€€€€ €€ €€€€€€€€€€ €€€€€€€ +€€ €€€€€€€€ +€€€ €€ €€€€ € +€€€€€ €€€€€€€€€€€€ €€€€€€€ €€€ €€€€ €€€ € +€ +€€€€ € €€€ €€€€€€€ +€€ €€€€€€€ €€ €€€€€ €€€€€€€€ €€€ €€€€€€€ €€ € €€€€€ €€€€€€€€€€€€€€€€ €€€€€ € €€€ +€ €#€€€ €€€€ € €€€€€ +€€€€ €€€ +€ €€€€ € +€€€€ +€€€€€€€€€€€ €€€ €€ € € €€€€€€€ €€ €€€€#€ €€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€ € €€ €€€ €€€€€€ €€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€ €€€€€€€€€€€€€ €€€€ €€ €€€€€€€€€€€€ € €€ €€€€€€€ €€€€€ € €€€€ €€€€€ +€€ €€€€€€€€ +€€€€€€ €€€€ € €€ €€€€€ €€€ €€€€€€€ € €€€€ €€€€€ €€€ +€ € €€€€€ €€€€ €€€ €€€€ € €€€€€€ €€€€€€€ €€€€€€€€€ € €€€€ €€€€ €€€€€€€€ +€€ € € € +€€€ €€€€€ €€ €€ € +€€€€ €€ +€€ €€€€€€€€ €€ €€ €€€€ €€€€€ €€€ €€€€€€€€ €€€€ €€€ +€ € €€€€ €€€€€ +€€ +€€€ €€ €€€ €€€ +€ +€€ €€ €€€€€ +€€€€€€€€ €€ €€ €€€€€ €€€€ €€€€€ +€€€ € € +€ €€€ € € €€€ €€€€€ €€ €€€€€ € +€€€€€€ €€€€€€ €€ €€€€€ €€ €€ €€ €€€€€€ €€€€€€ € €€€ +€€€€€ €€€ €€€€€€€€€€€ €€€ €€ €€€€€€€€€€ €€€€€€€€€€ €€ €€€€€€€€ €€€€€€€€€ € € €€ +€€€€€€€€€€ €€€ € +€€€€€€€ €€€€€ €€€ € € €€€€€€ €€€ €€€€€€€€€ €€ +€€ €€ € €€€ €€€ €€€€€€€€ € €€€€€ €€€€€€€€ €€€€€ +€ €€€€€ €€€€€€€€ €€€€€€ €€€€€ €€ +€€ €€€€€ € €€€€€ +€€€€€€€€€€€€€ €€€€€€€€€€€€ +€€€ +€€€€€€ €€€€€ +€€€€ € +€€€ +€€ €€€€€€€ +€€€€€€€€€ +€ +€€€ €€€€ +€ €€€ €€€€ €€ +€€ €€ €€€€€€€€€€ €€€ € € €€€ € € €€€ €€€€€€€ +€€ €€€€€€€ €€€€ +€€€€€€€€€€€€€€€€ €€€ €€€€ € €€€ €€ €€€€ € +€ €€€€€ €€ €€€€ € € €€€€€€€€ € €€€€ €€€€ €€€€€€€€€€€€€ +€ €€€€€€€ +€ +€€€ +€€€€€€€ €€ € €€€€ € +€ € +€ €€€€€€€€€ € € €€€ €€€!€€€€€€€€€€ +€€ +€ €€€€€ €€€€€€€€€€€€€€ €€€€€€ €€€€€€ € +€€€€€€€ €€ +€ € €€ +€€ €€ €€;€€€ €€€€ €€€€€€€€€€€€ € € +€€€€€ €€€€€ €€ €€ € €€€ €€ € €€€€€€€€€-€€€€€€€€€€€€€ € +€€€€ €€€€€€€€€€€€€€€€€€€ +€€€€€€€ +€ +€ €€€€€€€€€€ € €€€€€ +€€€€ €€€€€€ +€€€€€€€€€€ +€1€%€€€€€€€€ €€€€€€ €€€€€€€ €€€€ €€€€ +€€€€€ +€€€€€€€€€€ €€€€€ +€€€€€€€ €€€€ €€ € +€€€ €€€€€€ €€€€€€€ €€€ +€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ € €€€€€€€€ +€ € €€ +€€€€€€ +€€€€€€€€€€€€€ €€€€€€€€ €€ €€€€€ +€ €€€€€€€€ +€ +€€€€€€€€€€€€ € +€€€ +€€ € €€€€€€€€€€€ € +€€€€ €€ € € €€€ € € €€€ €€€€€€ €€€€€€€€€€€€€€€€€€ +€€€€€€ +€ €€€€€ €€€ €€€ €€€€€ €€€€€€€€€€€€€€ €€€€€ +€ €€€€ € €€€€€€€ €€€ €€€€ +€ €€€ €€€€€ €€å€=€ €€ €€€€€ €€€€ € € +€€€€€€€€€ €€ €€€€€ €%€ € €€€ € €€€ € € €€€ €€€ €€ €€€ €€€€€€€€€€€€ €€€€€€ € €€ €€€ +€€€!€€€€€€€€€€ +€€€€€€€ € €€€ €€€€€€€€€ € €€€ € €€ €€€€€€€ €€€€€€ € €€€ €€ €€€€€ €€#€ €€€€€ +€€€€€€€ €€€ +€€€€€€€€€€€ €€€€€€€€€ € €€€€ €€€€€ €€ € € €!€€€€€ €€ €€€€€€€€€ €€ €€€€€€€€€€€€€°€+€€ € +€ €€€€€€€ € €€€€ €€€€€€€€€€€€€€€€€€€€€€€€€ €€€€ €€€ € €€ €€€€€€€€ €€€€€€€ €€€€ € €€€ €€€€ €€€€€€ €€€€ +€€€€€€€€€€ €€€€€€€€€€€€€€€€ €€ €€ € +€ +€ €€€ €€€€€€ €€ €€ € € € €€€€€ €€€€ +€€€€€€€ +€€€€€€€€€ +€€ € € € +€€€€€€ €€ €€ € +€€€€€€ €€€€€ +€ +€€ €€€€€€ € €€€ €€ € € +€ €€€€€€€€€€€ € +€€€€€ €€€€€€€€€€€€€€€€ +€€€€€€€€€ € € € €€€€€ +€ €€€€€€€€€€€€€€€€€€€€€ €€ +€€€€€ € €€€€ +€€€€ €€€ +€€€€ +€€€€n€&€€€ €€€ €€ €€ € € €€€€€€€€€ €€ € +€€ +€€€€€€€€ +€ €€€€€€€€ €€€€€€€€€€ €€€€ +€€€ +€€ +€€€€ €€€€€€€€ €€ €€€€€€€€€€€ +€ €€€€ €€€€€€€ € +€ +€€€€€€ €€€ € €€€ € € € €€€ €€€€€€€€ €€€€€€€ € €€€€€"€ €€€€€€€€€ +€€€€€€ €€€€€ €€ €€€€€€€€€€ €€€ +€ €€ €€ +€€ €€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€ €€ €€€€ €€€€€€€ €€€€€€€€€€€ € €€ € € € €€ €€ € €€ € €€ € €€€ €€€€ €€€€€€€€€€€ +€ €€€€€€€€ €€ +€€€€ €€ +€€ €€€€€€ €€€€€€ € €€ +€ €€€€€€€€€€€€ +€€€€€€ +€€ €€€€€€€€€€€€ +€€€€ €€ €€€€€ €€€ +€€ €€€€ €€€€ €€€€ €€€€€€ €€€€€€€€€€€€€€ € € €€€€€ €€€ €€€€€€ €€€€€€€€€€€€ €€€€€ +€€€€€€€€€€€€€€€€€ €€€ €€€ +€€€€ € € €€€€€€€€€€€€€€€€ € €€€ €€€€€€ +€ +€ €€€ €€€€€€€€ €€€€€€€€ +€€€ +€€ +€€€€ €€€€ €€€€€ €€€€€ € €€ € €€ €€ €€ €€€€€€ €€€€ €€€€€€€ +€€ +€ € €€ €€ €€€€€€€€ € +€€ €€ € €€ €€€€€ €€ €€€€ €€ €€€€€€€€€ € €€€€€€€ €€€€ +€€€€ €€ €€ € +€€€€€€ +€€ €€€€€€€€ €€€ € +€€€€€€ € €€€€€ € € € €€ +€€€ €€€€€€€€ +€€€€€€ €€ €€€ €€€€€€€€€€€ +€€€€€€€€€ +€€€€€€€€€ € +€€ +€€€€ €€€ €€€ €€€ €€ €€€€€€€€€ +€€ €€€€€€€€€€€€€€€€€ €€€€€ €€€€€€€"€€ € €€€€ €€€€€€€ €€€€€€€€€€€€€€ € +€€€€ +€€€€€€€€€ € +€€€€ +€€€€ €€€€€€€€ €€ €€€€€€€€ +€€€€€€€€ €€ €€€ €€€€€ +€ +€€ €€ €€ €€€€€€€€€€ €€€€€€€€ €€€€ €€€€€ € €€€€ €€ € €€€€€€€€ +€ € +€€€€€€€€ €€ +€ €€€€€ €€€ €€€€€ €€€€€ €€€ +€€€ €€€€€€€€€ € € €€€€€€€€ €€€€€€€ €€ +€ +€ €€€€ € +€ € € €€€€ €€ €€€€€€€€€ € € €€ +€€€ €€ €€€€€€€ €€€€€€€€ €€€€€€€€€€€ €€€€€€€€€ €€€€€€€€€€€€ €€€€ € €€€€€ € +€€€€€ € +€ €€€ €€ €€€€€€ € € €€€€€€€€ € +€€€ +€€€€€ €€ +€ €€ €€€€€€€ €€€€ € €€€ +€ € €€ €€€€€ +€€€ €€€€€ €€€ €€€€€€€€ €€ €€ €€ € +€€ €€€ € €€€€€ € +€€€€€€ €€ €€€ € € €€€€€ +€€ €€ € €€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€ +€€€€€ € €€€€€€€€€€€€ € €€€€€€€€€ € € €€€€€€€ €€€ €€€€€€€€ +€€€€ +€€€ €€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€ €€ +€€€ €€€€€€€€€€€€€€€€€ €€€€€€ € +€€€€€€€€€€€€€€€ +€€€ €€€€€ €€€€ €€€€€€ €€€ €€€€€€€ € € € +€€€€€ +€€€€€€€€€€€ € +€€€€ €€€€€€ €€€€€€ €€€€€ €€€€€€ €€€ €€€€€€ €€ €€€ €€€€€€ €€ +€ € €€ € €€€€€ €€€€€€ €€€€€€€€ €€€€€€€€€ € €€ €€€€ € € €€€€ €€€€€ €€€€€€€€ +€€ +€ €€€€€€€ € +€€€ €€€€€ € €€€€€€€€ €€€€€ €€€€€€ €€€€€€ €€€€€ €€€€ € €€€€€€ +€€€€ € €€ €€ € €€€€€€€€€€€ +€€€€€€€ +€€€ €€€€ €€€ € €€€€ € €€€ € €€€ € €€ €€€ € +€ € €€ €€€ €€€€€€€€ €€€ €€€€€€ €€ +€ €€ €€€€ €€ €€ €€ €€ €€€€€€€ €€€€€€€ €€€ € €€ +€€ € €€€€€ €€€ +€ €€€ € €€€€€€€€€€€ +€€€ € €€€€€€€€ +€€€€€€€€€€€€€€ €€€€€€€€€ +€€ €€€€€€ €€€€€€€€ €€€€€€€€€€ +€€€€€€€€ €€€ +€ +€ €€€€!€€€€ €€€ €€€€€€€ €€€€€€€ € €€€€€ €€€€€€€€€€ €€ €€€€ +€ €€ €€€ € € €€€€€€€€€€€€€ €€€ € €€€€€€€€€€ €€ €€ €€€ +€€€€ +€€€€€€€€€€€€ €€€€€ €€€€€€€€€€€€€€ € € €€€€€€€ +€ € €€€€€€€€ +€€€€€€€€€ €€ € €€€€€€ € € € € €€€€€€€€€€€€€€€€ €€€€€€ €€€€€€€€ €€€ €€€€€€€€€€€ €€€€€€€ +€€€ € € €€€€ +€€€€ €€€€€ € €€€€€€€€€ € € €€€€€€€€€€€€ +€€€€€€€€€€ €€€€ € €€€€€€ €€€ €€€ €€€€ +€ +€ €€€€€€€€€€€€ €€€ +€ €€€€€€ €€€€€€€ € € €€€€€ +€€€€€€€€€ €€€€€$€€€ +€€ € €€€€ €€€ +€€ € €€€€€€€ +€€€ €€€€€€ +€ €€€€€€€ +€ €€ € +€€€€€ +€€€ €€ € €€ € €€ € €€€ €€€ €€€€€€ €€€€€ € €€€€€€€€€€€€€€€€€€ +€€€€€€€€ €€€ €€€€ +€ €€ €€€ €€€€€€€€€€€€€€ € €€€€ € € € +€ €€€€€ €€€ €€€ €€€€€ € +€€€€€€€€€€€€€€€€€€€ €€€ +€€ €€€€€€€€€€€ +€€€€€€ +€€ € €€€€€€€€ € €€€€€€€€€€€€ +€€€€€€€€€€€ €€€€ €€€€€€€€€ €€ €€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€ €€ € €€€ € € +€€€€€ € €€€€€€€ € €€€€ €€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€ +€€€€€€ €€€€ €€€€ €€ €€€€€ €€ €€ € € €€€€€€€€ €€€€€€€€€€ €€€€€€ €€ €€€€€ +€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€ €€ €€€ €€ € +€€ €€€€€€ €€€ € € € €€€€ +€€€€€€ €€€ €€€ €€€€ +€€€€€€€€€€€€€€€€€€ €€€€€ +€€€€€€ €€ €€€ €€€ €€€€€ €€€€€ €€€ €€€€€€ €€€ € +€€ €€€€€ €€€€€€€€€€ € €€ € €€ € €€€ € €€ € +€€€€€€€ €€€€ +€€€ €€ €€€€€ €€ € €€ €€€€€ €€€ €€€€€€ €€€€€€€ +€€€ €€€€€ € €€€€€ €€€€€€€€€€ €€ € €€ €€ €€ €€€€€€€€€€€€€€ € +€ +€ €€ +€€ +€€€€€€€€€€€€ €€€€€€ €€€€€€ €€€€€ €€€ €€€€€ +€ €€€€ € € €€€ €€€€€€€ € €€€€€ €€ €€€€€€€€ +€ €€€ € +€€€€€€€€€€€ +€ €€ €€€€€€ € €€ €€€€€ +€ € €€€€€€€€ €€ €€€€ €€€€€ €€€€€€€€€ +€ €€ €€€€€€€ €€ € €€ +€€€ €€€€€ €€€€€€€€€€€€€€€ €€ €€€ +€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€ €€€€ €€€€ €€€ €€€€€€€€ €€€€€€€€€ +€ €€ € € +€€€€ €€€€€€€ €€€€€€€€€€€ € €€€€€€€€€€ € +€€€€ €€€€€€€€€€€ €€€€ +€€€€ €€€ € €€€€ +€€€€€€€€€€€€€€ € €€€€€€€€€€€ € +€€€€€ €€€€€€€ € € € € € +€ €€€€€€€€ €€€€€€€ +€€€€€ +€ € €€ €€€€€€€€€ €€€€€€ €€€€€€€ +€€€€€€ € €€€ +€ €€ € €€ €€€€€ € €€€€€€ € €€ €€€€€ €€€€ €€€€ €€€€€€ € € €€€€ € € € +€ €€€€ €€ € +€€€€€ €€€ €€€€€€€€€ €€€€€€ €€€€€ +€€€€€€€ €€€€€€€€ €€€ € € +€€€ +€€ +€€€ €€ €€ €€€ €€€€€ €€€€€€€ €€ € €€ +€€€€€ € €€€€€€€€€€€ €€€€€€ € €€€ €€€€€€€€€€€€€€ €€€ €€€€€ € € €€ €€€"€@€€ +€€ €€€€€€€€€ +€€€€€€€€€€ €€€€€ € €€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€ €€!€ €€€€€€€€€€€€ €€€€€€€ € €€€€€€€€€€ €€€€€€€€€€€€€€€€ €€€€€ €€ €€€ +€%€€€€ €€€€€€ €€€ €€€€€€ €€€€€€€€€€€€€€€€€€€ +€ € €€€€€€€ € € €€ €€€€ +€€€€€ +€€€€ €€ €€€€€€€ €€ +€€€€€€ €€€€€€€€ +€€ +€ € €€€ € €€€€€€€ €€€ €€ €€€ €€€€€ € €€€ +€€€€ €€ +€€€€€€ € €€€€€€€€€€ +€€ € €€€ +€ +€€€€€€€ €€€ €€€€€ € €€€€€€€€€€€€€€€€ +€ €€€€€€ €€€ €€ €€€€€ €€€ +€€€€ €€€€€€ € €€€ €€€€€€€€€€€€€€€€€€€€ +€ € +€€€ € €€ €€€ €€ €€ € +€ € €€€€€€€ €€€€ +€€€€€€€ €€€€€€€€€€ €€ €€€€ €€€€€ €€ €€€€€€€€ +€€€€ +€€€ €€€ €€€€€€€€€€€ €€€€€€€ +€€€€€€ €€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€ +€€€ €€€€€€€€€ +€€€€€€€ +€€ € €€€€€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€ €€€€€€€€€ €€ € €€€€€€€€€ €€€€ €€€€€€ €€€€€€€€€ +€ €€ €€€€ €€ €€€€ €€ +€€€€€€ €€€€€€ €€€ € €€€ € +€€€€€€€€ +€ €€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€ € €€ € €€€€€€€€€ € +€ €€€€€€€€€€€€€€€€€€ €€€ €€ €€€€€ €€€ €€€ €€ €€€€€ €€ € €€€€ €€€€ €€€ €€ €€ € +€€€ € € +€ €€€€€€ €€ €€ €€€€ +€€ € €€€€€€€€€€€€€€€ €€ +€ € +€ €€€€€€ €€€ €€ € €€€ €€ €€ €€€€€€€ €€€ €€€€€€€€€€€€€€ +€€€€€€€€€€€€€€€€€€ €€€€€ +€€€€€€€€€ €€€€€€€€ +€€€€ € +€€€€€€€ +€€€ +€€€€ € €€ €€€ +€ € €€€ € € € +€€ €€€€€€€€€€ +€€€€ €€€€€ €€€€€ €€€ €€€ +€ +€ €€€€€€€€ €€ €€€€€ €€€€€€€€€€ €€ €€€€€€€€€€€€€€€€ €€€€€€€ +€ +€ €€€ €€€ € € €€€€€€ € € € €€€€€ +€ € € €€€€€ €€€€ +€ €€€€ €€€€€€€ €€€€ €€ €€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€ €€€€€€€€€ +€€€€€€€€€€€€€€€€ €€€€€€€€ €€ €€€€ +€ €€€€€€€€€€€€€€€ € €€€€€€€€€ € €€€€€€€ +€€€ €€ +€€€€€€ €€ € €€€€€€€ +€€ € €€€ € €€€€€€€€ €€€€€ +€€ €€€ €€€€€€€ +€ €€€€€€€ € €€€€€€€€€€ €€€€€€€€ €€€€€€€€ €€€€€€ €€€€€€€€€€€€€ € €€€€€ +€€ € +€€ €€€€€€ € +€€€€€€€€ € € €€€€€€€ € € € +€€€€€€ €€€€€€€€€€€€€€ €€€ € €€€€€€€€€€€€€€€€€€€€ €€ € +€€€ €€ €€ € €€€ €€€€€€ € €€€€€€ € € +€ €€€€€€€€€€ +€ €€€€€€€€€ €€€ € €€€ € +€€€€€€€€€€€€€ € € €€ € € € € € € +€€€€€ +€€€€ €€€€€ €€€€ € € € €€ €€€€€ € +€ +€€€€€€€€€ €€€€€€€€€€€€€€€€€€€ +€€€ +€€ €€€€€€€€€€€€€€€!€ €€€€€ €€€€€€€€€€ €€€€€ €€€€ €€ +€€€€€€€€€€€€€#€€ € +€€ €€ € €€ €€ €€ +€€€€€ €€€€ €€€€€€€€€€€€€ €€ € €€ €€€€€ +€€ €€€ € +€€€€€€€€€ +€€€€€€€ €€€ +€€€€€€€€€ €€€€€ €€€€€€€€€ €€€€ €€€€€€€€ €€€€ €€ € €€ €€€€€€€€€€€€€€ +€€ €€€€ €€ € €€€ +€€€ €€€€€ +€€€€€€ €€€ +€€€€€€ €€€€€ €€€ €€ €€€ €€€€ +€€€€€€€€ +€€ € € +€ +€€€€ €€ €€ €€€€€€€€€€€ €€€€€€€€€€ €€€€€€€ €€€€ +€€€€€€€€ €€€€€€ €€ +€€€€€€€€€€€ € €€ +€ +€€€€€€€ € €€€€ € €€€€€€€€€ €€ €€€€ €€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€ €€€ € €€ € €€€€€€ €€ €€ €€ €€ +€€€€€€€€€ +€ €€€€ +€ €€ +€ +€€€€ € €€€ €€€€€€€ €€€€€ €€ € €€€€€ €€€€€€€€€€€€€€ +€€€ +€€ €€ €€€ +€€€ €€€€€€€ +€€€ +€€€€ €€€€€€ €€€€€ €€€€€ € € €€€€€€ €€€€€€€ € €€ €€ €€ € €€€ € €#€!€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€ € € €€ +€€ €€€ €€€€€€€€€ € €€€ €€ €€€€€€ +€€€€€€€€€€€€€€ +€€€ +€€€€€ +€€€€ €€€€€€€€€ €€€€€€€€ € €€ € €€€€€ €€€€€€€€€ €€€€ €€€€ €€€€€€ €€ €€€€€€€€€ €€ €€€€€€€€€&€ €€ €€€€ € +€€€€€€€€€ €€€€ +€€€€€€ € +€ +€€€€€€ €€€€€€€ €€€€€€ €€ +€€ €€€€€ €€€€ €€€ € € +€€€ € €€€ € +€€€€€ € €€ +€€€€€ € €€€ €€€€€€€€€ +€€€€€€€ €€€ €€€€€€€€€ €€€€€€ +€€€€€€€€€€€€€€€€€ €€€ €€ €€€€€€ €€ € €€€ +€€€ € €€€€€€€€€€€€ €€€€€€€€€€€€€€€€€ € €€€€€€€€€ €€€€ €€€€€ €€ €€ €€€ €€ €€€€€€€€€€€€ €€€€€€€€€ +€€ €€€€€€€ +€€ € €€ €€€€ € €€€ €€€€€€€ +€€€€€€€€ € €€ € €€€€€€€€€ €€€ +€ €€€ +€ €€€€€€€€€€€€ €€ €€€ €€€€€ €€€€€€ +€€ € € € €€ € €€€ € +€€ +€€€€€€€€€ €€ € €€ € € € €€€€€€ €€€ €€€€ € €€ +€€ €€€€ €€ € € € €€€€€ €€€€€€€ € +€ €€€€ €€€€€€ €€€€ +€€€€€ €€ €€€-€€€ +€ €€ €€€€€ € €€€€€€€ +€€ €€ €€€€€€ +€€€€€ €€€€€€€€ €€ €€€€€ € €€€ €€€€€ €€€ €€€€€ €€ €€€€€ €€€€€€€€€€€€€€€€€€€€€ € €€€ €€ €€€€€€€€€9€;€€ € €€ €€€€€ €€ +€€€€€€€€ +€€€€€€€€€ +€€€ €€€€€ €€€ +€€€€€ €€€€ €€€€€ € +€€ €€€ €€€ €€€€€€ €€€ €€€€€€ +€€ € € €€€€€€€€€€ € +€€ €€€ €€ €€€€€€ €€€ +€ €€€€€€€€€€€€€€€€€ €€€€€ +€ € € €€€€€€ €€ €€ € €€€€€ €€ €€€€€€€ € +€€€€€€€€ €€€€ €€€€€ €€€€€€€€€€€€ € € +€€ +€ €€€€ €€€€€ € €€€€€€€€ €€€€ €€ +€€€€€€€€€€€€ €€€ € € +€ €€€ +€€€€€ €€€ +€€€€€ €€€€€€€€€ € €€€€ € €€€€ €€ € € €€€€€€€€€€€€€€€€€€€€€€€ € €€ €€€€€€€€€€€€ € +€ €€€€ € €€€€€ €€€€€ €€ €€€€€€€€ €€ € €€€€€€€€ €€€€€€€€€€€€€€€ +€€ €€€ €€ € €€ €€€€€ €€€€ € €€€€€ €€€€ €€€€€ €€€€€€€ €€€ €€€ +€€€€€€€ €€€€ €€€€€ +€ €€€ +€€ €€€€€€€ €€ €€€ €€€ €€€€ € €€ € €€€€€ € +€€€€€€ €€€€ €€€€€€ €€€€€€€€ €€€ €€€€€€€€ €€€€ € €€€€ €€€€€ +€€ € €€€€€ €€€€€€ €€ €€€ €€€€€€€€€€ +€€€€€€ €€€€ €€€€ €€€ +€€€ €€€ +€€€ €€€ €€€€€ € €€€€ €€€€€€ €€€ € +€€€€ €€€€€€€€ €€€€€€ €€€€€€€ +€ +€€ € €€€€ €€€€€€€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€ €€ €€€€€€ € € €€€ €€€ +€€€€€€ €€ €€€€€€€€€ €€€€€ €€ +€€ +€€ +€€ +€€€ +€€€ €€€€€€ €€€€€€ +€€€€€ €€ € €€€€€€€€€€€€ +€€€€ €€ €€€€€€€€ €€€€ € €€€€€€ €€€€€ €€€€€€€€€€ € +€ €€ +€€€€€ € +€€€€€€€€€€€€ € +€€ € +€ +€ €€€€€ € €€ €€€€€€ € € +€€€€€€€€€€€€ €€ +€€€€ +€€€ €€€€ € €€€€ +€ € €€ €€€€€€ €€€€€ €€€€ € €€ €€€€€ € €€€€ €€€ €€€ €€€ €€ +€€€ €€ €€€€ €€ €€€€€€€ €€€ € € €€€€€ €€ €€€ +€€€ +€€€€€€ €€€€€ €€€€ € +€ €€€ €€€€€ €€€€€€€ €€ €€€€€€ +€€€ €€€€ € €€ €€€€€ €€ €€€€ €€€ €€€€€€€ +€€€€€€€ €€€€€€€€€€ €€€€ €€€€€€€€€€€€€€€€€ €€€€€ €€ €€ €€€ €€ €€€€€ +€€€€ €€€€#€€€€€€€€€€€€€€€€€€€€ €€€€ € €€€€€€€ +€€€€ € €€€€ €€ +€€€€€ €€€ €€€€€ €€ €€ +€€€€€€€ € +€ €€€ €€ +€€€ €€€€€€€ €€€€€€€€€€€€€€€ +€ € € €€€€€€€ €€ +€€€€€€€€€ +€€€ +€€ €€ €€€€€ €€ €€€ €€€€€ €€€€€€€€ €€ +€€€ €€€ € €€€€€ € €€€ € €€€€€€€€€€€€€ €€€€€€€€€€€€€ €€€€€€€€€€ € €€€€ +€€€€ €€ €€€ €€€ €€€ €€€€ €€€ €€€€€€€€€ €€ €€€€€€ +€€€€€ +€€ +€ +€€€€€€€ €€€€€ €€€ +€€€€€€€€€€ +€€€ +€€€€€ €€ +€ +€€€ €€ €€€€€ €€ €€€€ €€€€ €€€€€€€€€ €€€€ €€ +€€ €€€€€€€€€€ €€€ €€ €€€€€€€€€€€€€€€€€€€€€€€€€ +€ € €€€€ +€€ €€€€€€€€€€€€€€ €€€ €€€€€€ €€€€€€€€€€€€€€€ +€€€€€€€ €€€ €€€€€ €€€€€€ €€€ +€€ €€€€€ €€ +€€ +€€€€€€ € €€€€€€ €€€€€€€ +€€€ €€€€ +€€ €€€€€€€ €€ +€€€€€ €€€€€€€€ € €€ €€€€€€€ €€€ +€€€€€€€ €€€ € €€€€€€€ €€€ €€€€€€ €€€€€€€€€€#€€€€€€€€€€€€€€ €%€€€€€€ €€ +€ €€€ €€€ +€ +€€ €€€€€€€ €€€€€ +€€€€ € €€€ € +€ €€€€€€€€ €€€€€€€ €€€€€ €€€€€€ €€€€€€€€€ €€ € €€€€ €€ +€€€€ €€€€€€€€€€ €€€€€€€ €€€€€€ €€€€ € +€€€ € +€€ +€ €€€ €€ €€€€€€ +€€€€€€€€€€€€ +€€€€€€€€ €€€€€€€ €€€€€€€€€ €€€€€ €€€ € €€€€ €€€ €€€€€€€€€€€€ €€€€€€€€€€ € €€€€€€€€€€€€ €€€€€€ € €€€€€ €€€ €€€€€€€ € € €€€ €€€€ € €€€ € €€€€€ €€€ €€ €€€ € €€€€€€€ € €€€€€€€ €€€ €€€€€€€€€€ €€€€€ €€€€€€ +€€ €€€ €€€ €€€€€€€€€ +€ €€€€€€€€€€€€€€€€€€€€€€€ €€€€ €€€€€€ € €€€ €€€€€€€€ €€ € € € € € €€€€€€ €€€ € €€€€€€€ +€€€ € +€€€€€€€€€€ €€ +€€ € €€€€€€ €€€€€€ €€€ € +€€€ +€€€ € €€€€€€ €€€€€€€€ €€ +€€€ +€€€€€€€€ €€€€€€€ €€€€€ € € €€€€€€€€€€€ €€€€€€€€ € +€ € €€ € € € € €€€€€ €€€€€€€€€€€€€€€€€€ €€ +€€€€€€€€€ €€ +€€€€€ €€€€€€€ € € €€€€€ €€€€€€€€ €€€€€ €€€€€ +€ +€ € € +€€€€€€€ +€ +€€ €€€€€ +€€€€€€€€€€ € €€€€ € +€ € € €€€ +€€€€ € €€€€€€€€ €€€€€€ €€ €€ +€ €€ € €€€ +€€ +€€ € €€€ €€€€€€€€€€€€ +€€€€€€€ €€€€ +€€ €€€ € €€€€€€€€€€€€€€ € €€€€€€€€€€€ €€€€€ € €€€€€€€ € €€ €€€ €€€€€€€€€ €€€€€ € €€€€ € +€€€ €€€€€€€ €€ €€€€€ €€€€€€€€€€€€€ €€€ € €€ € € € €€ €€€€€€€€€€€ €€ €€€€ €€€€ +€ €€ €€ +€€ €€€ €$€ €€€€ €€€€ € €€€€€€ €€€€€€€€€€ €€ € €€€€€ €€€€€€ €€ €€€€ +€ €€€€€ € +€€€€€€€€€€€€€€€€ € +€€€€€€€€€€€€ €€€€€ €€€ +€€ €€€€€€€€€€ €€€€€ € €€€€€€ €€€€€€€€€ € €€€ €€€€€€€ +€€€€€€ €€€€€ €€€ €€€€€€€€€€€€€€€€ €€€€€€ €€€€€€ €€€€€€€€€€€€€€€ €€€€€ €€ € €€€ €€€€€€€€€€ +€ €€€€€€€ €€€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€ €€€€€ €€€€ € € +€€€€€€ +€ €€€ +€€ €€€€€€ +€ +€€€ €€ +€€ +€€€€€€ €€ €€€€€€ +€€€€€€€€ €€ €€ €€ €€€ €€€ € €€€€€€ €€€€ €€€€ € +€ €€€€€€€ €€ €€ € € +€€€€ € €€ € €€ € €€€€€€€€€€ +€€ €€€ € €€€€ € € €€€€ € +€ € +€ +€ €€€€€€ € +€€€€€€ €€€€€€ €€ +€€€€€ €€ €€5€;€'€€ € €€€€ €€€ €€€€€€€€ € €€ €€€ +€€€ +€€€€ +€€€ € +€€ €€€€€€€€ +€€ €€ €€ €€€€ € € +€ €€€€€€€€ +€€€€ €€ €€€€€€€€€€ €€ +€€€ € € € € €€€€€€ € €€€€€€€€€€ €€ €€€ +€€€€€€€ €€€ € €€€€€€ +€ +€€€€ +€€€€€€€€ +€€€€€ €€€ €€€€ € +€ +€ € €€€€ €€€€€€€€ €€€€€€€ +€ +€ €€€€ €€€€€€€€€€ €€€€€€ € €€ €€€€€ €€€ €€€ € € €€€€€€€€€€ +€ €€ +€€€€€€ +€ +€€ €€€€€€€€€€€€€€€ €€€€€€€ €€€ €€€€€€€€€ €€€€€€€€€ €€€€ €€€€€€€€€€ € € € +€ +€€€€ €€€ €€€€€ €€ €€ €€€ €€€ €€€€€€€ €€ € €€€€€€€ €€€€€€€€€!€€€€ €€€€ € €€€ €€€€€€€€€€€€€€ €€€€€€€€€€€€ €€ € €€€€€€€€ €€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€ € +€€€ € €€ € €€€€ +€€€€€€€€€€€€€ € +€ € +€€€€€€ €€ €€€€€€€€ €€ €€€€ € +€€€€€ +€€ €€€€€ +€ € +€€€€ +€€€€ +€ +€€€€€ €€ € € €€€ € €€€€€€€€€€ € €€€€€€&€…€õ€„€1€€€ €€€ € €€€€€ €€ € € +€ €€€€€€€ +€€€ €€ €€ € +€ +€€€€ €€ €€ € €€ €€€€€€€€€€€€€ +€ +€ €€€€€ €€€€€€€€€ € €€€€€€€€€€ €€€ €€€€€€ €€ €€€€€€€€€€€€ € € € € €€€ +€ € € €€ €€ €€ €€€€€€€€€€€€€€ €€€€€€€€€€€€ € +€€€ €€ € €€ €€€€ €€€€ +€€ € €€€€ €€€€ €€ € €€€€€€ €€€€€€€€€ €€ €€€€ € +€ € € €€€€ €€€€€€€€€€€ €€€€€ +€€€€€€€€€€ +€€€€ €€€€ €€€€€€€€ €€€€€€ +€€€€€€ € €€ € €€€€€€€ +€€€€€€ +€€€€€€€ €€€€€€€ €€€€€€ +€ € €€ €€€€€ €€ +€ €€€€€ €€€€ €€€€€€€€€€€ €€ €€€ €€€ €€€ €€€)€€€€€€€ € +€€€ € € €€€€€€€€€€€€ +€ €€€€€€€€€€€€ €€€€€€€€€€ € € €€€€€€€ €€€€€ € € +€€ €€€€€ € € €€ €€€ €€ €€ +€ €€€€ €€€€€€€€ +€€€ €€ € € +€€€€ €€€ +€ €€€ € €€€€€ €€€ €€€ €€ €€€€€€€ €€€ €€€€ +€ +€ +€ €€€€€€€€ +€€€ € €€€€€€€€€ €€ € €€ €€€€€€ €€ €€ € €€*€«{€Ã€8€€€ +€€€ €€ €€ €€€€ €€€€€€€€€€€ €€€€€€ €€ +€€€€ € €€ €€€€ €€€€ €€€€€€€ €€€€€ €€€€ € +€€€€€ €€ +€€€€€€€ +€ € +€€€€€€€€€ +€€ +€€€ € +€€€ +€€ €€€€€€€€€ +€€€€€ €€€ €€ +€€€ +€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€ €€ € € €€€€ +€€ €€€€ €€ € €€€€€€€€€€ €€€ €€€€€€€€ €€€€€€€€€€€€ € €€€€€€€ €€ €€€ +€€€€€€€€€ € €€€€ €€€€€€ €€€€€€€€€ € +€€€€€€ +€€€ €€€€ €€€€€€ +€€ €€€€€€€ €€€€€ €€ € €€€€€€€€€€€€€€€€€€ €€€€ +€€€€€€€€€€€€€€€€€€ €€€ +€€€€€€€€ €€€ €€ € +€€ +€ +€€€€€€ € €€€€ €€ € +€ €€€€€€€€ +€ € €€€€€ +€€€€€ €€€€ €€€ €€€€€€€€€€€€€€€€ €€€€€€€€€ € € € € €€€€ €€-€\€;€€€ € €€€€€€€€€€€ €€€€€€€€ €€€€€ +€€ €€€€€€€ +€€€€€€€€€€€€ +€€€ €€€ €€€ €€€ €€ €€ €€€€€€€ €€ +€€€€€€€€€ € +€€€ €€€€ € €€ €€€'€^€Ì€o€,€€€€€€€€€ €€€ +€€€€€€€€€€€€€ +€€€€€€€€€€€€€€ € +€ € €€ € €€ €€€€€ +€ +€ €€€€ €€€€€ €€ +€ +€ €€€€€€€€€€€ €€€€€€ €€€ € €€€€€ €€€€€€ +€€ € €€€€€€ €€ € €€€ €€ €€€€€€€€€€ €€ €€ €€€€€€€€ €€€€€ +€ +€ € € €€ €€€€ €€€€€ €€€€€€ +€€€€€€€€€€€ +€ € € €€€€€€ €€€€€€€€€€ € €€€€€€€ +€ +€€ €€€ €€€€€ +€€€€ €€€ €€€€€€€ €€ €€ €€€€ €€€€€ € €€ €€ €€€€ € €€ €€€€€€€€€€ +€ €€ € €€€ €€€€€€ €€€€ € €€€ €€€ €€€€ +€€€€€€€ €€ €€€€€€€€€€ €€ €€€€€€ € €€ €€€ €€ €€€ €€€€€ €€€€€€ €€€€ €€ €€€€€ € € € €€€€€€€€ € +€€€€ €€€€€ €€€€€ €€€€€€€ € € €€ +€ € € +€ €€€€€ € +€€€€€€€ +€€€€€ +€€€€€ €€€€€€ €€ €€€€ € € +€€;€~€X€%€€€€€€ €€€€€ €€€ +€€€ €€€€€ €€€€€€€€ €€€ € € €€€ €€€€€€ € +€€€€€€€ € € €€ €€€€ €€€ +€€€€€€€€€€€€ €€ €€€€€€€€ €€€€€€€€€€€€+€>€,€€€€€ +€ €€€€€€€€ €€ €€€€ €€ €€€ €€€€€€€€ €€€€ € +€€€€€€€€ € € €€€€ € € €€€ €€€ €€€€€€€€ €€€ +€€€ €€ €€€€€€€€€€€ +€ € €€€€€€ €€€€€€€€€ € € €€€€€€€€€ € €€€€€€€€€€€€ €€ €€€€ €€€ €€ €€€€€ € €€€ €€€€€€€€ +€ €€€€€ €€€€ €€€€ €€€ €€€€ +€€€€€€€€€€€€€€€€€ € € €€€ €€ € €€€€€€€ +€€€€€€€€€€ +€ €€ +€€€€€€€ € €€€€€€€€€€ €€€€€€€€€€€€€€€€€ +€€€€€€€€€€ €€€€€€€€€€€ €€€€€ €€ €€ € €€€€€ €€€€€ +€€€€€€€ €€€€ +€ €€€€€€ €€€€€€€€€ € €€€€€€ €€€€€€€€€ €€ € €€€€ € € €€ € € +€€€€€€€€€€€€€€€€€€ +€€€€€€€€€ +€€€€€€€€€€€€€€ +€€ € €€€€ €€ €€€ € €€ €€€€ +€ €€€ €€€ €€€€€€€€ +€ +€€B€5€€€€€€€€€€ €€€ €€€€€€ € € €€€€€€€€€€€ € € €€ €€€ +€ € +€€€€€€€€€€€€ € €€€€€€€ €€€€€€€€€€€€€€ +€ +€€€ € +€ €€€€€€ €€€€€€€€ €€ €€€€€€ € €€€€€€€ €€ € €€€ +€ €€€€€€€€€€€€ €€€ €€€ €€€€ €€ € +€ €€€€ +€€ €€ +€€€€€€€€€€ +€€ €€€ €€€€€ +€€€ € €€€€€€ +€€ €€€€ €€€€€€€€€€€€ €€€ €€ €€ €€€€€€ € €€€ € +€€€€€€€€€€€€ €€€€€€ €€ €€€ €€€€ €€€€€€€€€€€ +€€ € €€ € +€€€ €€ € €€€€€ +€€€€€€ €€€ €€€€€€ €,€ +€€€ € +€€€€€€€€€ €€ €€€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€ €€€€ € +€€€ €€ € €€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€ €€€€€€ € €€€€€ € €€€ €€€€ €€€€€€€€€€€€€€€€ +€€€€€€ €€ €€€€€€ +€€€€€€ € €€ €€€€ €€€€ €€€ €€€€€€ +€€ +€€ +€€ €€€€€ € € €€ € €€ € € €€€€€€€ €€€ €€€€ +€€€€ € €€€€ €€€€€€€€€€ €€€€€ €€€ €€ €€€ €€€€€ € €€€€ €€€€ +€€€ +€€€€ €€ +€ €€€ €€ €€€€€€€€€€€ +€€€€€€€€€€€€ €€ +€€€€€€ +€€ € €€€€ € +€€€€€€€ +€€€€€ €€€€ € €€€ €€€ €€€€€ €€ +€€ € € €€ +€€ +€€ € €€€€€€€€€€ € €€ +€€€ €€€€€ € € €€€ € +€€€€€€€€€ €€€€ +€€€ €€ €€€ € € € €€€€ € +€€€€ €€ €€ €€€ +€ +€ €€€€€€€€€€€€ +€ €€€€€€€€€€ €€€€€€ €€€€€€ +€ €€€€ €€ € €€ €€€€ €€€€ € €€ +€€€€€€€€€€€€€€€€€€€€ €€ +€€€€€€€€€€€ €€€€€€ €€€ € +€€€€ €€€€€€€ € €€€€€€€€€€€ €€ €€ €€€€€€ +€€ €€€€€€€€€ +€€€€€€€ +€€ €€€€ +€€ +€€€ € € +€€€€€€ €€€ €€ €€€€€€€€ +€€ €€€ +€€ €€ +€€€ €€€ €€€€ € €€€€ €€ €€ +€€€€€ €€ +€€€€€ € € +€ € €€€€€€ €€€€ €€ +€€€€ € €€€€€ €€€ +€€€€€€€ €€€€€€€€€€ €€€€€€€€ €€€€ € €€ +€€€€€ € €€ € +€€ €€€€€€ +€€ € €€€€ €€ €€ €€€ €€€ €€ +€ €€€€€€€ +€ € +€ € €€€€€ €€€€ +€€€€ €€€€ € €€€€€ €€ € €€€ €€€ €€ +€€€ €€€€€€€€€€€€€ +€€€ € +€ €€ € €€€€€€€€€€€€€€€€ €€€€ € €€€€ +€€€€ €€€€ +€€€ +€€€€€ €€€€€ € €€€ € € +€€ € €€€ €€€€ €€ € € €€ +€€ € +€€€ € +€€ €€€ €€ €€€ €€€€ +€€€€€ €€ +€€€€ +€ €€€ € +€€€€€€ €€ +€€ €€€€€€€€€ €€ +€€€€ €€€€ € €€€€ €€ +€ +€ +€ €€€€ Ѝ‚Ì€€ €€€ +€ €€€€€€€ €€€€€€ €€€€ € € €€€€ +€€ +€€€ € €€€€€€ €€€€ €€€ €€€€€ €€ €€€€€ €€ €€€€€€€€€€€€€€€€€ €€€ € €€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€ €€€€€€€€ € +€€€€€ €€€€€€€€€€€€€€ €€€€€ +€€€€€€€ €€€€ +€€€ € €€€ € €€€ €€€€ €€ €€€€€€€€€€€€€€€ €€ €€€€€ € +€ € €€ €€€€€ € €€ € €€€ €€€€€ €€€€€€€€€€€€€€€ € €€€ €€€€€ €€€€€€€€€€€ € €€€€€€€€€€€ €€€€ € €€€€€€€ € €€€ € €€€ €€€€€€€ €€€ €€€€ €€€ €€€€€€€€€€ +€€€€€€€€€ €€€ € €€€€ € €€€ €€€€€€€€€ € € € +€€€€€€€€€€€ €€€€ +€ € € +€€€€€€€€€€€€€ €€€€ € €€€!€€€€€€ €€ +€€€ €€€€ €€€ +€ €€€ €€€€€€€€ +€€ +€€ € € €€€€€€€€ € +€ € €€€€ €€€€€€€ €€ € +€€€€€ € +€ €€ €€€€€ € €€€€€ +€€ € €€€ +€€€ +€€€ €€€ €€€€ €€€€€ €€€€ € +€ €€ €€€€€ €€€ € € € €€€€‚”€±€€ €€€€€ +€€€ € €€€€€€€€€ €€€€ €€€€ €€ +€€€€€€ €€€€€#€€€€€€€€€€€€€€€€ +€ €€€ +€€€€ €€€€€€€€ €€ €€€ € € €€ €€ €€€ €€€€€ €€€€€€€€€ €€ €€€€€€€ +€€ +€€€€€€€ €€€€€€€€€€€€ €€ +€ € €€ €€€€€€€ €€ €€ €€€€€€€€ €€ €€€€ €€€€€ €€ €€€€€ € €€€€€€€€ €€ €€€€ €€€€ +€€€€ €€€€€€€ +€€€€€€€€€€€€ €€€€ €€ € €€ €€€€€€€€€€€€€€€€ +€ € €€€ +€€€€€€€€ €€€€€€ €€€ € €€€€€€€€ €€€€€ €€€€€€ €€ +€€€€€€€€€ €€€€€€€ €€€ +€€€€ €€€ €€€ €€€€ €€€€€€€€€€ € € €€€€€€ €€ +€€ €€€€€ €€ €€€€€€€€€€€€€ € €€€€€ +€€€€€€ € €€ €€€€€€€ €€ €€€€€€ €€€ €€€€€ +€ +€€€€€€€€€€€€ € €€€€€€€€ €€€€€ €€€€€€€ +€€€€€€€ €€€€€ € +€ €€ €€ +€€ €€€€€€€ € €€€ €€€ €€€€€€€€ €€ € €€€€€€€€ €€€€ € € €€€€€€€€€€ € +€€€ € € €€€€€ +€€€€ € € €€ €€€€ €€€€€€€ +€€€€€ € €€€ €€ €€€ € +€ €€ €€€ € € +€€€ +€ +€€€€ €€€ € €€ €€€€€ +€€€€€€€ +€ € €€€€€ +€€€€€€€€€€ €€€€€€€€€ €€€€€€€€€€€€€€ € €€€€€€ € €€€€€€€ €€€€€€€€€€€€€ € €€€€€€€€€€ €€€€ +€ €€€€€€ +€ €€€ € € +€€€ €€€€ €€ €€€€€€€ €€€€€€€€€ +€€€€€€€ €€ €€ €€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€ €€ € +€€€€€€€€ €€€€€€ €€€€€€ € €€€€ € +€€€€€€€€€€€€ €€€ €€ +€€€€ €€ +€€€€ +€€€ +€ € +€ €€ € €€€€€€€€€€€ +€€€€€€€€€€€ € €€€ € € +€€ €€ €€ €€€ €€€€ €€€€€€€€€€€ € €€ € € €€€ +€€€€€€€€€€€ €€€€€€€ € +€ €€€ €€€€€ +€€€€€€€ € € €€€€€€ € +€€€ +€€€€€€€€€ +€€€€€€€ +€€ €€ € +€ €€€€ €€ €€ €€ €€€€€€€ +€€€€€ €€ +€€€€€€€€€€ €€ € € €€€€€€€ +€ € +€€€€€€€€€€€€€€ +€ €€€€€€ €€€ €€€ €€€ €€€ €€€€ +€€ € €€€ €€€ € € €€ € € €€€€€ +€€€€€€€€€ € +€ €€€€€€€€ +€ €€€€€€€€€€€€ +€€ €€€€€ € €€€€€€€€ € €€ +€€€€€€€ € €€€ €€€€€€€€€€€€€€€€ €€ +€€€€€€ €€€ €€€€€€ € +€€€€€ € +€€€€€€€€ €€€ +€€€€€ +€€ +€€€€€€€€€€€€€€€€€€€€ € €€€€€€ €€€€€€€€ €€€€ €€€€*€€ €€€ €€€ € €€€ €€ +€€€€ €€€€ €€€€€€€€€€€€€€€€€€ +€!€ €€ €€€€€€€€€€€€ +€€€€€ €€€€€ € +€€€€€+€€ €€€€€€€€€€€€€€€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€€€ +€€€€ €€ €€€€ €€€€€€ € +€€€€€€€€€€€ €€ €€€€ €€ €€€€ €€€ € € €€ €€€€€ €€€€€ € €€€ €€€ €€ €€€€ € € €€€€€€ €€ €€€ €€ €€€€€ +€€ €€ € €€ €€ €€ +€€€€€€€€€€€ €€€€€ € +€ € €€ €€€€€€ €€€€€€€€€€ €€€€€€ €€€€ €€€ +€€€€€ +€€ €€€€€ €€€€ €€€€€ €€€€€ € €€€€ +€€€€€€€€€€ +€€€€€€€€€€€ €€€€€ €€ €€€€€ +€€ €€ € €€€€€€€€ €€€€ +€€ € €€€ € +€€ +€€ +€€€€€€€€€€ € +€€€ +€ €€€€€€ €€€€ €€ €€€€€ €€ +€€€€€€€ € €€€ € € €€€ € +€€€€ € €€€€€ €€€€€ €€€ +€ €€€ €€€€€€€€€ +€ €€€€€€€ €€€€€€ €€€€€€ €€ €€€€ €€€€€€€€€ € €€€€€ €€€€€€€€€€ €€€€ €€€ €€€€€€ +€€ +€€ +€ €€€€€€€ €€€ €€€ €€€€€€€€€€€€€€€ €€€€€€ +€ +€€ +€ €€ €€ €€€€€€€€€€€€€€€ €€€ € €€€€ €€ €€ €€€ €€€€€€€€ €€€€€€€€€€€€€€ €€€€€€€€€€€€ € € +€€ € +€€€ €€€ €€€€ €€€€€€ €€€ €€€€€ € +€€€€€€€€€€ +€€ € €€ +€ +€€ €€ +€€€ €€€€€€€€ +€€€€€€€€€€€€ €€ € €€ €€€€€€€€€€€€€€€ €€€€ €€€ €€€€€€ €€€€€ €€€€€€€€ €€€€ € €€€ € € € €€€€€€€ +€€ +€€€€€ €€ €€€€€€€ €€ €€ €€ €€€€€ € €€€€ €€€€ €€€€€€€€ € €€€€€€ €€ € €€€€€€€ +€€ €€ +€€ €€€€€€€€€€€€ +€€€€ +€€€€€€€ € €€€ €€ +€€€€€ €€€€€€€€€€€ €€ €€€€€€€ €€€€ €€€€€€€€€€€€ € € €€€€€€ €€€€€€€€€€ +€ €€ €€€ €€ €€ €€€ €€€€€€€ €€€ € €€ €€€€€€€€ € +€ €€€ +€ €€ €€€€€!€ €€€€ €€€€€€ +€€ € €€€€€€ € €€€€€€ +€€€€€€€€ €€€€ € € +€€€€€€€€€€ +€€€€€ €€€€€ €€€€€€€€€ €€€ €€ €€€ €€€€€ €€€€€€ €€€€ €€€€ €€ €€€ €€ €€ €€€€€€ €€€€€€€€€€€€€€€€€€€€€ €€€!€€€ €€€ € €€€€€€€€ € €€ +€ € €€€€ €€€€ €€€ €€ €€€€€€ €€€€€€€€€ €€€€€€€€€€€ €€ €€ €€€€€€€€€#€€€€€€€€€€€€€ +€€ €€€€€€€€€€ +€€€ €€€ €€€ € €€€€€€€ +€€€ €€ €€€€ € € € € +€ +€€ €€€€€€€ €€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€ +€€€€ +€€€€€€€ € €€€€ +€€€€€€ +€ €€ €€€€ € €€€ €€€€€ €€€ €€€€€€€€€€ € €€€€€€€€€ €€ €€ €€€ +€€€€€€ €€€€ €€€€ € € € +€€€€€€€€€ € €€ €€€€€€€ €€ €€€€€€ € €€ €€€€ € € €€ €€ €€ € € €€ €€€€€€€€€ +€€€€€€€ +€€€€€ €€€ €€ €€ +€€€ € +€ €€€€ +€ €€ € €€€€€€€€€€ +€€€€ €€€€€ €€ €€€ € €€€ +€€€ +€ € €€€€€€ €€€€€€€ €€€ +€€€ € € +€€€€€€ €%€€ €€€€€€€€€ €€€€ €€€€€€€€€€ €€€€€€€ €€€€€€€€€€€ €€ €€€€€€€€€€ +€€€€€ €€ +€€€€€ € €€ €€€€€€€€€€€€ €€ €€€ +€€€€€ € +€€€ €€€ +€ €€€€3€€€€€€€€€€€2€€ € €€€€ € €€ €€€ +€€€€€€€€€€€€ €€€€€€€€€€€€ €€ €€€€€ €€€€€€ €€ +€€€ € +€€€€€€€ €€€€ €€€ € € €€€€€ €€€ € € € €€ +€€ €€€€€€€€ €€ €€ €€ €€€€€€ €€€ €€ € +€ +€ +€€€€€€€€€€ +€ +€ € € €€€€€€ +€€€€€€ €€€€€€€ €€€€€€€ € €€€€ €€€€€€€€€€€€€€€€ €€€ €€€€€€ +€€€€€€ €€€€€€€€€ +€ €€€€€€€€€€€€€€€€€ € €€ € €€€ €€ €€€€€€ €€ € € €€€€ +€ €€€€ +€€ €€ €€ € €€€ +€ €€€€€€€€ €€ €€€€€€€€€€€€€ €€€€€€€€ +€ €€ €€€ +€€€€ €€ € €€€€€€€€€€ €€€€€€ +€ €€€€€€€€€€ +€ €€€€€€€ €€ €€€€€ €€€ €€ €€ €€€€ €€ +€€€€€€€€ € €€€€€€€€ €€€€€ €€€€ €€€ €€€€€€ +€€ +€ €€€€ € €€€€ €€€€€€€€€€€€€€€€€€€€€€ €€€€€€ €€€€€€€€€€€ +€ €€€€€€€€€€ €€€€ €€ +€€€ +€€€€€€€ € €€ € +€€ € €€€€€ €€€€ €€ +€€€ € € €€€€€€€€€€€ € €€€€ € €€ €€€€€ € +€€€€…°5€€€€ €€€€€ €€€€€ €€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€ € €€€€€€€€ €€€€€€€€ +€€€€€€€€€€€€€ €€€€€€€$€ €€€€ €€€ +€€€€€ €€€€€€€€ € €€€€€€€€€€€€€ € €€€€€ €€€€€€€€€€€€ €€€ €€ € €€€ € €€€€€ €€€€ €€€€€€€€€€ €€€€€€€€€€ €€ +€€€ €€€€€€€€€€€€€€ € € €€€€€€€ €€€€€€ €€ €€€€ €€€€€€€€€ € €€€ € +€€€ €€€€€€€€€ € € €€€€€€€€ €€€ +€€€€ € +€€ €€ €€€€ € €€€ €€€€€ €€ +€€€€€ €€€€€€ +€€€ € € €€€ € +€ +€€€€ +€ € €€€€€ € € € € €€€ €€ €€€€€€€€ €€€ €€€ €€€€€€€€€€ € €€€ €€ €€ €€ €€ €€ €€€ €€ €€€€€ €€ +€€€ €€€€ € €€€€€€€ € €€ €€€€ +€€ €€ €€ €€ €€ € € €€€ +€€€€€€€€€ €€ €€€€€ +€€€ €€€€ €€€€€€€ €€€€€€€ €€€€€€€€€€€€ +€ €€€€€€€€ €€ € €€€€ €€€€€€€€ +€ €€€ €€€€€€€€ €€ €€ € €€ €€ €€€ €€€€€ €€€€€€€€€€€€€€ €€€€€ +€€€€€€€€€€€€€€€€$€€€€ € €€€€€€€€€€€€€ €€€€€€€ €€€ €€€€€€€€€€€ +€€€€€€€€€ €€ +€€ € € €€€€€€€€ €€€€€ €€ +€ €0€G€K€<€*€€€ +€€€€€€€€€€€€ €€€€ €€€€€ +€€€ €€ €€€ € €€ €€€ €€€€€ €€€ €€€€ € €€ € +€€€€€€€€ €€€€ +€€€€ €€€€ +€€€€€ € € €€€€€ € €€€ € +€€€€ € €€€€€€€€ +€€€€ +€ €€€€€€ €€ €€€€€ +€€€€ €€€€€ +€€ €€€ €€ €€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€€€ € € +€€€ +€ €€€ €€€€€€€ +€ €€€€€€€€€€€€€€€€€ € €€€€€€€ €€€€ €€ €€€€€€€€ +€€€€ €€€ € +€€ € €€€€€€€€ +€ €€€ € €€€ €€€ €€€€€€€€ € +€€€€€€€ €€€€€€€€ €€€€€€ €€€ €€€ €€ €€€€€€€€ €€€€€€€€€ € €€€€€€€€€€€€ +€€€€ €€€ €€€€€€€€€ €€€ € € €€€€ +€€€ €€ €€ €€€€€€€€ €€€ €€€€€€ € €€€ €€ €€€€ €€ €€€€€€€ €€€€ € +€€€ €€€€ €€€ €€€€ €€€€ +€€€€€€€€€€€ €€€ €€€€€€€€€€ €€ €€€€€€€€€€€€€€€€€€ € €€€ € €€€€€€ €€€€€€ € €€€€€€€€€€€ +€€€€€€€€€€€€€ €€€ €€€€ €€ €€ €€€€€ € € € €€€ €€€2€€‘€ €"€€ €€€€ €€€€ +€ +€€ € €€€€€€ €€€€€ +€ €€€€€€€€ € +€€ € +€€€€€€ €€€ +€€€€ +€€€€€€ € €€€ €€€€ +€ €€€€€€€€ +€€€€ +€ €€€ +€€ +€€ €€€€€€€€€ €€€€€€€€ €€€€ +€ €€€€€€€€€€€€€ €€€€€€€€€€€€€€€€ €€€€ +€€€€€€€ +€€€€ +€€€€€€€€€€€€€€€€€€€€€€€ € €€ € €€€ €€€ €€€€€ €€€€€ €€€€€€€€€€€€€€€ +€ €€€€€€ +€ +€ €€€€€ € €€€ +€ +€€€ +€€€ €€€€€€ +€ € €€€€€€€ € €€€€€€€ € +€ €€ €€€ €€ €€€€€€ +€€€ +€€€€€€€€€ €€€€€€€€€€€€ €€ €€€ €€€ €€€€€€€€ €€€€€ +€€€€€€€€ €€€ € €€€€€€ €€ €€€€€ +€€€€€€ +€€€ +€€€ € +€ €€ €€€ €€€€€ +€€€ +€€€€€€€ +€€ € €€€ €€€€€€€€€€€€€€€€ € €€€€€€€ €€ €€ € €€ €€ €€€€€€€€€€€€ € €€€€ €€€€€€ +€€€€€€€ €€ €€€€ €€€€ €€ €€ €€€€€€€€€€€€€€€€€€€€€€€€ €€€ €€€€ €€ € +€ €€€€€€ €€€ €€€€€€€€€€€€€€€ €€€€€ € €€€7‚X€C€€€€€ € € € €€€€€ €€ €€ €€€€€€€€€€€ €€€ € +€ €€€ €€ +€ +€€€€€€€€ €€€€€€ €€ +€€€ € €€ €€€€ €€€€ +€€€€€€ €€€€€€€€ +€ € +€€€ € +€€€€ €€€€€€ € €€€€€ € €€ €€€€€€ €€€€€€€€€€€€€ €€€ €€€€ €€€€ €€€€ €€€€€ +€€€€€€ €€€€€ €€€ € €€€€€€€ +€€€€€€€€ +€ €€€€€ €€€ €€€ €€ €€€€€€ € € €€€€€€€ €€ €€€€ €€€ +€ €€€ +€€€€€€€€€€€€€€€€ €€€ €€ €€€€€€€€€ €€€€€€€€ € €€€€€€€€€€€€€ €€€€€€ €€€€ €€€€€ € €€€€ €€€€€€ €€€ € €€€€€ € €€€€€€€€ € €€€ €€€€ €€ +€€€ +€€€€€€€€€€ € +€ €€ €€ € €€€€€€€ €€€€€€ € €€€€€€ +€€€€ € +€€€€€€€€€€€€ +€€€€€€ € €€€€€€ €€€€€€€ €€€€€€€€€€€€€€€ €€€ €€ € +€€€ +€€€€€€€€€€€€€€€€€€€€€ +€€€€ €€€€€€ €€€€€ €€€€€ €€€€€€€€€€ €€ €€ €€€€ €€€€€€ €€ €€€€ €€€ €€€€€€€€€€€ €€€€ €€€€€€€€€€€€€€9€›4€²€6€€ € +€€€€€ € € €€ €€ € €€€€ +€€€€€€€€€€€€€€€€ € € €€ € €€€ €€€€€ € €€€€ € €€€ € €€€€€ €€ +€ €€€ €€€€€€€€€€€€€ €€€ €€ +€€€ €€€€€€€ +€ € € €€€€€ € € €€€€€€€€€€€€ +€€€€€€€€ € € +€ €€€€€ € € €€€€€€€ € €€ +€€€€€ +€€€€ €€ €€€€ €€€€€€€€€ +€€€ € +€€ €€ € +€€ +€ € €€ +€ +€€ €€€€€€€€ +€ €€€ €€€€€ €€€€€€ € +€€ €€ +€ €€€ €€€€€ €€ € € €€ € €€€€€ €€€€ €€€€ +€€€€€€€€€€€€€ €€ €€€€€€ €€€ €€ €€ €€€€€ +€€€€€€€€€€ € €€€€€ €€€ €€€€€ €€€€€€ €€€ €€ €€€€€€ € € €€€€€€€€€€€ €€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€€€€ € €€€€ +€€€€€€€€ €€€ € €€€ €€€ €€ €€€€ +€€€ €€€ €€ €€€€€€€€ €€€€€€ €€ €€€€€€€€€€ €€ €€€ +€€€€€€€€€€€ €€€ €€€€€€ €€ €€€€€€ €€€€€€ +€€€€€ €€€€€ €€€€€€€€€€ €€€€€€€€€€ €€€€€€€€ +€ €€€€€€€€€ €€€€ €€€€€€ €€ €-€;€?€?€€€€ €€€€€ € +€ +€€ €€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€€ +€€€€€€€€€ €€€€€€€€€€€€€€€€€€ +€ €€€€€€ €€€€€ +€€€€€€ €€ €€€ €€€€ €€ +€€ € €€€€€€ € €€€€€€€€€€€€€€€€€ €€€€€€ €€€€ €€€ €€€€ €€€ €€ €€€€€€€€ € +€ +€€€€€ €€€€€€€€€€€ +€€€ €€€€€ €€€€€ € €€€€€€€€€€€€ €€€€€€€ €€ €€€€€€€ €€€€€ +€€€€ € € €€€ €€€€€ €€€ €€ € €€€ +€€€€ €€ €€€ € € € € € € € +€ €€ €€€€€€€€ €€ € € €€€ € +€€€€€€€€€€€€€€€€€€ +€€ €€€€€€ € €€€€€€€€ € € € €€ € €€€€€ € €€ €€€ €€€€€€€€ €€€ €€€€€ €€€€ €€ € €€ €€€€€€€€€€€ € +€€€€€€€€€€€ +€ €€€€€€€€€€€€€€€€€€€€ +€ €€€€€€€€€€€€€€€€€€ €€€ +€€€€€€ +€ +€€€€€€€€€€ €€€€€€€€€€€ €€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ € € €€€ €€€€€€€€€€ €€€€€€€ €€€ +€€€€€€€€ +€€€€€ +€€€€€ €€€ +€€€€€€ €€€€€€€€€€€ €€€ € €€€€€€€ €€€€€€€€€ €€€€€€€€€€€€€€€ +€€€€€€€ €€ € €€€€€€€€ €€€ +€€ +€€€ €€ € € €€€€ +€€€€€€€€€€€ €€€ €€ € +€€€ €€€€€ €€€€€€€€€€€ €€€€ +€ +€ €€ €€€€ € € €€€€€€€€€€€€€€€€€€€€€ €€ € € €€€€ €€€ €€€€€ €€€€€€€€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€ +€ € €€€€€€€€€€ € €€ €€€€€€€ € €€ €€€€€ € € €€€€€ €€€ € €€€€€€€€€€ +€ €€ €€€€€€€€€€€€€€€ € € € € €€€€€ €€ €€€ €€ €€€ € €€€€€ €€ €€ €€€€€€ €€€€€ €€€€€€ €€€ € €€€€€€ €€€€€€€€€€€€€ € €€ +€€€€€ €€€€ €€ €€€ € €€€€€€€€€ € €€€ €€€€€ +€€€ €€€ +€€ €€ €€ €$€€ +€€€€€€€€€€€€€€€€€€€€€€€ € +€€€ +€€€€ €€€ +€€€€€€€€€ €€ €€ +€€ €€€ €€€€€€€ +€€€€€€€€ €€ +€€ +€ € €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€€€€€ € € +€€€€ € +€€€ €€ €€€ €€€ €€ €€€ +€ € +€€€€€ €€€€€€€€€€€ +€ +€ +€€€€ +€ €€ €€€€€€€€ +€ €€€ € € €€€€ €€€ +€ €€€€ +€ €€€€ +€ +€ € €€ +€€€€€€ €€€€€€ €€€€€€€€€€ €€€€€€€€€€€ +€ € € €€€ €€€€€ € €€ +€€€€€ +€ €€€€€€€ €€ €€€€€€€€ €€€€ € +€€€ €€€€€€€ €€ €€€ €€€ +€€€€€€€€€ +€ €€ €€€ €€€€€€€€ € €€€ +€€€€€€€€€€€€€€ +€ € +€€€€€€€€€€€€€€€€€ €€€€€ €€€ €€€€€€€ +€ €€€ €€€€€€€€€€ €€€ €€ €€€€ € €€€€€€ € €€ +€ €€€ +€ €€€€ +€€ €€ €€€ €€€€€ +€ € € €€€ +€ +€€ +€€€€€ €€€€ €€€€€€€€€€€ +€€€ €€€€ € +€€€ € €€ €€€€€€€€ €€€€€€€€ €€€€ € €€€€€€€€ € €€€€€€ €€€€€€€€€€ €€€€€ +€€ €€€€ +€€€€€€€ €€€ €€€€ € +€€€€€€€€€€€€ €€ €€ € €€€€€€ €€€ €€€ €€€€ €€€€€€€ €€€ +€€€€ € €€ +€€€€€ €€€€€€€ €€€€ € €€ €€ € +€€ +€€ €€€ +€€ €€€€€ €€€€€€€€€ +€ €€€€ € €€€€€ €€ +€€€€ +€€€€€€€€€€ €€€ €€€€€ €€€ +€ +€ € €€ +€€€€€€€ € € +€€€€€€€€€€€ €€€€€€ €€ €€€€€ € €€€€€€ +€ €€€€€€€€€€€ €€€€€€ +€€€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€ €€€€€€€€€€€ +€€€€€€€ € €€€€€€€€€ +€€€€€ € €€€€€ €€ +€ €€ €€€€€€ €€ €€€€€€€€ € €€€ €€ +€€ €€€€ +€ €€€€ +€ € +€€€€€ +€ €€€ €€€€ +€€ €€€€€€ +€ +€ €€€€€€ €€€ € € +€ € €€€€€€€€€€€€€€€€€€€ €€€€€ +€ €€ €€€€€ +€ € € €€€€€€ € € €€€€ €€ +€€€€€ +€€€€€ +€ +€€€ +€€€ +€€€€€€€€ € €€ €€€€€€€ €€€ +€€ €€€€€€€€ € €€€ €€€€€€ €€€ €€€€ €€€ € €€€€€€€ €€€€€€ €€ €€ €€€€€€€€€€€ €€€€€€€€€€€€ €€€€€ €€€ €€€€€€€€€ +€€€€ +€€€€€€ +€€ €€€€€€ €€€ +€ €€€€€€€€€ €€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€ +€€€€€€€€€€€€ €€€ € €€€ €€€€ € €€€€€€€€€€€€ +€€€€€€€ +€ €€ €€€€€ €€€€ € € €€ €€€€€€€€€€€€ €€€€€ €€€€€€€ €€€ €€€ € € € +€€€€ €€€€€€€€€€€€€€ €€€€€€€€ € €€€€€€€€ €€€€€€ €€€€€€€€€€€€€€€ +€ € € €€€€€€€€€€€€€€€€€€€€€ +€€€€€€ € +€€€ €€€€ €€€€ €€€€€€€€€ €€ € €€€€ €€€€ €€€€ +€€€€€ € €€€ €€€ € €€€€€€€€€€ € €€ € € €€€ €€€ € €€€€€€€€€€ €€€€€€€€€€€€€€€ €€ +€€€€€€€€€ €€ €€ € €€ €€€ €€€ € € €€€€€€€€ +€€ +€€ €€€ € €€€ €€€€€ €€ €€€€ +€€ €€€ € €€ € €€€€ €€€€€ +€ €€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€ € €€€ € €€€€€ €€€€€ €€€ +€€€ € €€ €€€€€€€€€€€€€€ € €€ €€€€€€€ €€€€€ €€€€€€ €€€€€€€€ €€€€ €€€ €€ €€€€€€€ +€€€ €€ +€ €€ €€€€ €€€€€ €€€€€€ €€€€€ €€€€€€€€€€€ +€€€ € €€€€€ €€€€€€€€€€ +€€€€€€€€€€€€€€€€€€€€€€€ € €€€ €€€€€€€ +€€%€€€€ € €€ €€€€€€€ € +€ €€€€€ €€€€€€ € € € €€ €€€€€ €€ € €€€€ €€€€€€€€€€€€€€€€ €€€€€€€ € €€ €€€ €€€€€€€€ €€ €€€€€€ € € € €€€€ +€€€€€€€€ €€€€€€€ +€€€€€€€€€€€€ €€€€€ € +€ €€€€€€ €€€ €€€€€ €€ € € €€€€€€€€ € +€€€ €€€€€€€€€€€€€€€ €€€€ €€€€€€€€ €€€€ €€€€€€ €€ +€€€€ €€€€€€€€€€€€€€€ € €€€ +€€€ €€€€€€€ €€ €€€€ € €€ €€€ €€€€€€€€€ €€ € €€€ €€€€€ €€€€€ €€€€€ €€€€€€€€€€€€€€€ € € €€ €€€€€€€€€ €€€ €€€€€€€€ +€ +€€€ €€ € +€€€€€ +€ €€€€€ €€€€€€€ € €€€€ € €€ €€€€€€€€€€ €€€€€€€€€ €€ € €€€€ € €€ +€ €€€€€€€ € +€€€€ €€ €€€€€€€€€€€€€€€ €€ +€€€€€€€€€€€€€€€€€€ €€ +€€ € €€ €€€€€€€€€€€€€€€ €€€ +€€€ €€€€€€€€€€€€€€€ €€€€€€€€€ €€€€€€€€€€€€€€ €€€€€€€€€ +€€ €€€€€ +€ €€€€€€ €€ €€ +€€€ €€€€€€ € € €€ € € € €€€€€€€€€ € €€€ €€€€€ €€€€€€€€€€€€€€ €€€€€ € +€ € +€€ €€ €€ €€€€€€€€€€€ €€€€€€€ € € €€ €€ € € €€ € €€€ €€ €€€€€€€€€€ € €€€€€ +€€€€€ +€ +€€ €€€€€€€ +€€ € €€€ € € €€€€€ +€€€€€€ €€€ +€€€€€€€ €€€€€€ +€ +€€ €€ €€€€€ €€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€ €€€€ €€€ €€€ € € +€ €€ €€€€€€ +€€ €€€€ +€€€€€€€ €€€€€€€€ €€ €€€€€ € €€€€€€€€ € +€€ +€€€€€€ €€ +€ €€€€€€€€€€€€€€€€!€€€€€ +€€€€€€€€ € € €€€€€ € €€ €€€ €€ €€€ €€€€€€€€€€ € €€€€€€ €€€ € +€€ €€€€€€€€€€ €€€€ €€€€ +€€ +€€ +€ €€€€€€€€€€€€€€€€€€€€€€ +€ €€€€€ € +€€€€€€€€€€€€ €€€€ €€€€€€€€€€€€€€€€ +€€€€ +€€€€€€€€€€€€€€€€€ +€€€€€€€€€€ €€€€ €€€€€€€€ +€€€ €€ €€ €€€€ +€€€ € €€€€€€€€€€ €€€€€€€ €€€€€€€€€€€ +€ €€€€€€€€€ €€€€€€€ +€€ €€€€ €€€ +€€€€€€€€€€€€€€€€€€€€€ +€€€ € €€ € €€€ €€€ €€€€€ +€ €€€ +€€€ € €€€ € €€ € €€€€€€€ €€€€€ €€€€ € € €€€ +€€ €€€ € €€€€€ € +€ +€ +€€€€€€€€ €€€€€€€€€€€ €€ € € +€€ €€€€€ +€€€ € €€€ +€€ +€€€ +€€€€€€€€€€€€€€€€€€€€ €€ € € € €€€ € €€€€€€€€€€€€€€ €€€€€ €€ +€€€€€ +€€€€€€€€ +€€€€€€€€€ +€€€€€ €€€ €€€€€€ € € € €€€€€€€ €€ €€€€€€€€€€€ €€€€ €€€€€€€€€ €€€€ €€€€€ € +€ €€€ €€ € €€€€ €€€€€€ €€€€€€€€€€€€€ € €€€€€ €€€ € € €€ € €€€€€€€ €€€€ €€ €€ +€€€ €€€€€€€€€€€€€€€ €€€ € €€€€ €€€€€€€€€ €€€ €€€€€€€ €€€€€€ €€ €€€€€€€€€ €€€€€€€€ €€€€€ €€€€€€€€ €€€€€€ € €€ €€ € € +€ €€€ +€€€€ € +€€€€€€ € €€ €€€ € €€ €€€€ €€€€%€€€€€€€€€ +€€€€€€€€€ € € €€€ +€€ €€€€€ €€ €€ €€€ €€€€€€ €€€ €€€€€€ €€ €€€€€€ €€€ €€€€€ € €€€€€€€ €€€€€ €€€ €€€ €€€ +€€€€€ €€€€€ € €€€€€€€€€€€ €€ € €€ €€€€€€ €€€€€€ € +€€€€ € +€ €€€€€€€€ €€€€€ +€€€€€€€ € €€€€€€€€€ € €€€€€€€€€€ €€€€ €€€ +€€€ €€€€ € +€ €€ €€€ +€ €€€€ € €€€€€€€€ € €€€€€€€ +€ €€€€€€€€€ € €€€€ +€ €€€ €€€€€ €€€ €€€€ €€€€€€€€€€ €€€ +€€€ €€€€€€€€€€€€€€€€ +€€€€€€€ €€€€€€ €€ +€€€€€€€€€€€€€€5€€€ €€€€ €€€€ €€€€€€ +€ €€€€ €€€€ +€ €€€€€ €€€€ €€ € €€ € +€€ €€€€€€%€&€%€0€&€#€)€€€€€€€€€€€€ €€ €€€€€€€€€€ €€€€€ €€ €€€€€ € €€€ €€€ €€€€ +€€€€ €€€ +€€€ € €€€ €€€€€€€€€€€€€€ € € €€ +€€ €€€€ € +€ €€ €€€€€ € € €€ +€ €€€€€€€€€€€€€€ € €€ +€€ € €€€€€€ €€€€€€ €€€€ +€€€$€€€€€€€€€€€ +€€ € €€ € +€ €€ € +€€€€€€€€ €€€€ €€ €€€€€€€€€ €€€€€€€€ €€€€€ €€€€ € €€€€ €€€€€ €€ €€ € +€ €€€€€ €€€€€€€€€€€€€€€€ +€€€€€€€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€ €€€€€ € +€€€ € +€€€€ €€€€€€ €€ €€ €€ +€ € € €€€ € € +€€€€€€€ €€€€€€€€€ € +€€€€€€€€ +€€ +€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€ €€€€ +€€€ +€€€€€ +€€€€€€ €€€€€€€€€ €€ € €€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€ +€ € € €€€€€€€€€ €€€€ €€€€€€€€€€€ €€€€€€€€€€ € €€€€€€ €€€€€ €€€€€ € € €€ +€€€€€€€€€€€€€€€€€€€€€€ €€€€€€ € €€€€€€-€/€,€!€&€,€*€€€%€€ €€ €€€€€€ € €€ €€ €€€ €€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€ +€€€ €€€€ +€€ € €€€ €€€€€€€ € +€ € € €€ €€€ €€€€€ € €€€€€ €€€ +€€€ +€€ € +€€€€€€€ €€€€€ €€€€€€ €€€€€€€ +€€ +€ €€€€€€€€ €€€€€€€€€ €€ €€€€ €€€€€€ € € €€ €€€€ €€€€€€€ €€€€€€€€€€€€€ €€€€€€€€€€€€€€€ € €€€€€€€€€€€€ €€€€ €€€€ €€€€€€ +€€ €€€€€€ +€€€€€ €€€ +€€€ €€ €€€€€€€€€€€€ €€€€€€ +€ €€€ €€€€€€€€€€€ €€€€€€€€ € +€€€€€ €€€€ +€€ € +€€ +€€€€ € €€€€€€€€€€€€ €€€€ €€ €€€€€€ € €€€ €€€€€€€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€€€ €€€ €€ €€€€ €€ €€€€ € €€€€€€€€ € +€€€ +€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€ €€€€ +€ € €€€ € +€€€€€ €€€€€€€€€€€ €€€€€€€€€ +€€ €€€€€€€€ +€€€ €€€ +€ €€€€ €€€€€€€€ +€ €€€ €€€€€€€€€ €€€€€ €€€€ €€ €€€ €"€"€€!€)€.€3€4€?€C€@€:€!€%€!€€ €€€ €€ €€€€ €€€ €€ € € €€ +€€€€€ €€€€€€€€€€€ €€€€€€€€€€ €€€€ €€ €€€€€€€€€€€ €"€€€€€ €€€€ €€€€€€€€ +€ +€€€€ € +€€ €€€€€€€€€€€€€€€€€€ +€€€€€€ +€€€€€€€€€€€€€ €€€€€€€ € €€€€€€€€€€€€€€ +€ € €€ €€€€ €€€€€€€€€€€€ €€€ €€€€€ €€€€€€ €€ €€€€ €€€€ €€€ €€€€€€ €€€€€€ €€€€ €€€€ €€ € €€€€€ €€€€ € €€ €€€€€€€ €€€€€€ +€ +€ €€ €€€€ € €€€€€ €€ €€€€ €€€€€€€€€ €€€€€ €€€€€ € €€€ € €€€ €€€€€€ € €€€ €€€ €€ € €€€ € €€€ €€€ +€€€€€ € €€€€€€€€€ €€€ €€ € €€€ €€€€€€€€ +€€€€€ +€€€€€€€€€ €€ +€€€€ € €€€€€€€ €€ € €€ €€€ €€€€ €€€€ €€€ € € €€ +€€€€€€ +€€€ €€ €€€ €€€€€ €€€€€€€€€ €€€€€€ €€€€€€ +€€€ €€€€€€€€€€€ € €€€€ €€€€ € €€ €€€€ €€€ €€€ €€ €€€€€ € € +€€€€€€€€€ € +€ €€€ €€ € €€€€€€€€€€€ +€€ €€€€€€€%€/€-€9€V€X€\€\€X€Q€A€8€€€€€€ €€€ +€€€ €€€€€€ €€€€€€€ € € €€€ €€ €€€€€€€ € €€€€€€€€€€€€€ €€€€ €€€€ € €€ €€ € +€€€€ €€€ €€ +€€€€€€ € +€€ €€ +€€€€€€€#€€€ +€€€€€€€ €€€ +€ €€€ €€ €€ €€€€ €€€ +€€€€€€ €€€€ €€€€€€€€ €€€€€ €€€€€€€ €€€€€ €€€€€€€€€ €€ €€€€€ € +€€€€ €€€ €€€€€€€ €€€€ €€€€€ €€€€€€€€ €€€ +€ €€€€€€€ €€€€€€€€€€ +€€ €€€€€€€€€€€€€€€€€€ €€€€€ €€€ €€€ +€€€ €€ €€€€€€€€€€€ €€€€€€€ € € €€€€€€€€€€€€€€ € € € €€€ +€€€€ €€€ +€ € +€ €€€€€ € +€€€€ € €€€€€ € € € € €€€€ € €€ €€€€€€€€€€ €€€€€€ +€ €€€€€€€€ €€€€€€€€ € €€ +€ €€€ €€€ +€€€€€€€€€ € +€€ €€ +€€€€€ € +€€€€ € € €€€ €€€€€€€€ €€€€€€€€€€ +€€€€€ €€€€€ €€ € € +€€€ €€€€ € +€€ €€ €€€€€€€ € €€€€€€€€ €€€€€ +€€€€€ € €€€€€€ +€€€ €€€€€€ +€€€€€€€ €€€€€€€€€€€ €€€€€€€$€@€K€G€^€—€¼€¿€‡€r€H€:€"€$€(€€€€€€ €€ € €€€ €€€€€€ €€ €€€ €€€€ +€€€€€€€ €€ €€€€€€€ €€€€€€€€€€€€€€€ € €€€€€€€€€€€ €€€€ +€€€€ €€€€€€€€€€€ €€€€€€€ €€€ +€€€€€€€€€ €!€€€€€€€€€€ €€€ €€€€€€ €€ €€€€€€€€€€€€€€€€ €€€€€€€ €€ €€ € €€€€€ € €€€€ €€ €€€€€€€€€€ €€€€€ € €€€€€€ €€€€ €€ €€€€€€€€€€€€€€€€€€€€€€€ +€€€€€€ +€ €€€€€€€€€€€€€€€€€€€ € € €€€€€€€€€€€€€€ € +€ €€€€€ €€€€€€€ €€ € € +€ €€€€€ €€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€ +€€ €€€ +€€€€€€€€€ €€ € € +€€€€€ € +€€€€€ €€€€€€ €€€€€€ +€ € € € €€€€ €€ € €€€€€ €€€€€€€€ €€€€€€€ +€€€€€€€€€ € +€€ €€€€€€€€€ €€€ +€€ € €€€€ €€€ +€ +€€€€€ € +€ €€€€ €€€ €€€€ € €€€€€€€€ € €€€ €€€ € € +€€€€€€€€€ €€€€€€€€€ €€€€€€€€ €€€€€€€€€€€€€ +€€€€ +€€€ € € €€€€€€€€€€€$€4€U€„€è<®‹€¦€g€A€-€!€#€€€€€€€€€€€€€ +€ €€ €€€€ €€€€€€€€€€€ €€€ €€ € €€€€ €€€ €€€ € €€€€ +€€€€€ €€€€€ €€€ € €€ €€€ € €€€ €€ €€ €€€ €€€ +€€ € +€€€€ € €€€€€€€€€ €€€€ € €€ €€ €€€ € +€€€€ €€€€€€€€€€€€€€ +€€€€€€ € €€ € +€€€€€€€€€€ € €€€€ +€€€€ €€€€ €€€€ € €€ € €€ €€€€ €€€ €€€€!€ €€€ €€€€ +€€€ € € +€ +€€€ +€ €€€€ € € €€€ €€€ +€€ €€€€€€€€€€€ +€ +€€€€€€€ € +€€ € +€€ +€€€€ € € €€€€€€€ €€€€€ €€ € € +€€ € €€€ €€€€€€ € €€€€€ €€€ €€€€€€€€€€€ €€€€€€€€€ +€€€€€€ € €€€€ €€€ €€ €€ €€€€€€€€€€€ €€€€€€€€€€ €€€ €€€€€€€ €€ € €€€€€ +€€€ € €€€€€€€€€€ €€€€ €€€ €€ €€€€€ € €€€€€€€ €€ € € €€€€ € +€ €€€ €€€€ €€€€€€€€€€€ +€€ € €€€€ +€€ € € €€€ €€ €€€€€€€ €€€€€€ € +€€€€€€€€€ €€€€€€€€€€€€ +€€€€€€€€€ €€€€€€€€ €€ € € € €€ €€€€€€ € €€€ +€€ €)€€)€5€:€W€ŸE‚ɆF†‚ €U€.€€€€€€€ €€€€€ € €€€€€€€€€€€ €€€€ € €€€€€ € € €€€€€€€€ €€ +€€€€€ €€€ € €€ +€€ +€ €€€€€ €€ +€€€€€€€€ € +€€€€€€ €€ €€ +€€€€€€€€ €€€€€€€ €€ € €€€€€€€€€ €€€ € €€ €€€€€ €€€€€€€€€€€€ +€€ €€ €€€€€€ +€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€ €€€€€€€€ €€€€€€ €€!€€€€€€ +€ €€ +€€€€ € €€€€€€€ €€€€€€€€€€€€ +€€€€€€ €€€€ €€€€€ €€€€€€€€€€ €€€€€€ €€ €€€€€€€€€€€ €€€ € € +€€€€€€€ € €€ € €€€ € +€€ € €€ €€€€€€ €€€ €€€€€ € +€ € € +€€ +€ €€€€€€€ €€€ +€€€€€€€€€€ €€€€ €€€€€€€ € +€€€€€ +€€€€€€€€€€€€€€€€€€€€€€€€€ €€€ €€€€€ €€€ €€ €€€€€€€€€€€€ €€€€€ € €€€ € €€€ € €€€€€€ +€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ +€€€ +€€€€€€€€ +€ +€€€€€ € +€ €€ +€€€ €€€€€€€€€€€€€€€€ €€ +€€ +€ €€€€€ +€€€€€ €€ €€€€€€€€€€ +€!€€!€-€@€w€Å¢…•ô”؇rÁ€£€_€=€$€€ €€ +€ € €€€€€ €€€€€€€€€ €€€€ €€€€€€€€€€€ €€ €€ €€€ €€€€€€€ +€€€€€ €€€€€€€ €€€€ +€€€€€ €€ €€€€€€€€ €€ €€€€€€€€€€€€€ €€€€€€ +€ € €€ €t€0€€€ +€€€€€€€€ € €€€€€€ € €€€€€€€€ €€ +€€ €€ €€€€€€€ €€€€ €€€ €€€€ €€€€€€€€ €€€€€€ +€€€ €€€€€€€€€€ €€€€€€€€ €€€€ €€€€€ €€€€€€ € €€ €€€ €€ €€€€€€€€€€€€ €€€€€€€ +€€€€€€€€ +€€€€€€ +€€€€€€€€ €€€€€€ €€€€€€€€ €€ +€€€€€€ € +€€€€€€ € € +€€ €€€ € €€ € €€ €€ € €€€€€ +€€€€€€€€€€€€€€€ €€ €€€€ €€€€€€€ €€€ €€€€ €€€ € €€€€€€€ +€€€€€€€ +€€€€€€€€€ €€€€€€ €€€€€€€€€ +€€€ €€ €€€€€€€€€€€€€€€€€€€€ +€€ +€€€ +€€€€€€€ € €€€€€€€€€ € €€€€€€€ €€€€€€€€€€€€€€€€€€€€ €€ € €€€€ € +€€€ €€€€€ €€ €€€€€€€€ € +€€€€€€€€ €€€€€€ € € €€ +€€€€€€€ €€€€€ €€€ €+€@€m€´v„¿iƒ†g¬€€Y€.€"€€€€ €€€€€€€€€€€ €€ +€€ €€ €€ €€€ € +€€€€€€€€ +€€€€ €€ €€€€€€€€€ €€€€€€ €€€ +€€€€ €€€€ €€ € €€€€€€€€€ +€€€ €€€€€€€ € € €€€€€€€ € +€€€ €€€€ +€€€€€€ €€€ €€€€ €€€€€€€€ +€€€€ +€€€ €€€€€€ € €€€€€€€€€ €€ +€€€ € €€€€€€€ +€€€ € +€€€€ €€€€€ € +€€€€€ +€€€€€ € € €€€€€€€€€€€€€€€€€€€€€€€€€€ € €€€€ €€€ €€€€€ €€€€€€€€ €€€ +€€€€€€€€€ €€€€€€ €€€€ €€€€€ €€€€ €€€€€€€€€€€€€ €€ €€ € +€€€€€€€€€ € € €€ €€€€€€€€€€€€€€€€€€€€ € €€€€€€€€€ +€ € +€€€€€€€€€ € € €€€€ € € +€€€€€€€€ €€€€€€ €€ +€€€€€ €€€ € €€€€€€€€€€€€€€€ €€€€€ €€ +€€€€€€€€€€€€ €€€€ €€ € €€ €€€€€€€ €€€€€€€ €€€ €€€€€ € +€€€€ €€€€€€€€ +€€€€€€€€€€€€ +€€ +€€€ €€ € €€€€€€ €€€€€€€ €€€ +€€€€€€€ +€ € €€ € +€ €€€ €€€€ €€€€€ +€€€€€ €/€!€ €/€5€K€€÷‚)…3…h‚´€z€K€.€%€€€€€ € €€ € € €€ €€ €€€€€ €€ €€€€€€€€€€€€€€€€€ €€ €€€€€€€ €€€€€€€€€€ €€€€€€ €€€ €€€ €€€€€€€ €€ €€ €€€€€€€ +€ € €€€€€€ +€ €€€€€€€€€ €€€€€€ €€€€ €€€€€ €€ €€ € € +€ €€ +€€€€€€€ € €€€ € +€€€€ +€€€€ € € +€€€€€ € €€€ +€€€€€€€€€€ €€ € €€ €€€€€€€€€€€ €€ +€€€€€€ €€€€€€ €€ €€€€€€€ +€€€€€€€€€€€€€€€ € € €€€ €€€€€€ €€€ €€€€€€€€ €€ €€€€€€ €€€€€ €€€€ €€€€ €€€€€€€€€€€€€€€€€€€ €€ €€€€€€€€€€€ €€€€€€ € €€€ €€ +€€€€€€€ € €€€€€ +€€€€€€€€ €€€€€€€€€€ +€€ € €€€€ €€€ +€ €€€€€€ € €€€€€€€€€€€€€€€€€€€€€ €€€€€€ €€€€ €€€€€ € €€€ €€€€€€ +€€€€€ € €€€€€€€€€€ € €€€€ € €€€ € +€ € €€€€€€€ +€€€ +€€ +€€€€ €€€€€€€€€ €€€ €€€€€€€€€ €€ +€€ €€€€ +€€€€€€€ € +€ € +€ € € +€€€€€€€€€€ €€€€€€€€€€€ €€€€+€#€€/€6€:€i€Ÿ€ÜMQ€ø€¨€c€?€,€€€ €€€€€ €€€€€€€€€€€ €€€€ €€€€€ €€€€€€€ €€€ €€€ €€ €€€€€€€€€€€€€ € €€€€€ €€€€ €€€€€€€€€€€€€€€ +€ €€€€€€€€€€€€€€€€ € € €€ €€€ €€€€ €€€ €€€ +€ €€ €€€€€€€€€€€ €€€€€ €€€€ €€€ +€ €€€ € €€€€€%€€ €€€ +€€€€€ +€€€€ €€€€€€€€€ €€€€€€ €€€ €€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€ € €€ €€€€€€€€€€€€€€ €€€€€€€ +€€€€ €€€€ €€ €€€€€€€€€€ €€ €€€€€€€€€€ €€ €€€ +€€€€€€€€ +€ +€€ € €€€€€€€€€€€€€€ €€ +€€€€€€€ €€ €€€€€€€€€ €€€ €€ €€€€€ €€€€€€€ €€€€ +€€ €€€€€€€€€ €€ €€€€ €€ €€€€€ €€€€€€€€ € €€€ €€€ €€€€ €€€€€€ €€€€€€€ €€€€€ +€€€€€€€€ € €€€€€€€€€€€€€€€€ €€ €€€€€ +€ +€ +€€€€€€€€ €€ € €€€€€€€ +€€€€€€€€€€€€€ €€ €€ €€€€€ €€€€€€€€€€ €€ €€€€€ €€€€€ €€€€€€€ €€ €€€€ €€€€ € €€ €€€7€N€e€x€ƒ€€~€Y€9€6€"€€€€ +€€€€€€€ €€€ €€€€€€€€€ +€€€€€ € €€ € +€€€€€€ €€€ € €€€€€€ €€€€€€€€€€ €€€€€€€€€€€€ € +€ €€€€ € € € €€€€€€€€€€€ +€€€€ +€€€€€€€€€€€€ €€€€€€€€€€€ €€€€ €€€€€€ €€€€€€€ € € €€€€€€€€€€€€€€€€€ +€€ €€€€€ €€€€€€ +€€€€€€€€ €€€ +€€€€ € €€€ +€€€€€ €€€€€€€€€€€ +€ €€€€€€€€€€€ €€€€€ +€€€ +€€ +€ €€€€ € €€ €€ €€€€€€€€ € € € €€ €€ € +€€€ €€€€€€€€€€€€€ +€€€€€€€€ +€€€ +€€€ €€€ +€€€ €€€ €€€ €€€€€€€€€€€€€€ €€€€€€€ +€ €€ +€ € €€€€ +€ +€€€€ €€€€ € +€ +€€€€€ €€€€ €€€€ +€€ € €€€€€€€€€€€€€€€€€€€€€€ €€€€€ € €€€€€€€ +€ +€ € € €€€€€€ €€€€€€€€€€€€€ € € +€€€€€€€€€ +€€ € €€€€€ +€€€€€€€€€€€€€ +€ +€€€€€€€€€€ €€€€€€€€€€€€€ €€"€ +€€€€€€€ €€€ +€€€€ +€€€€ +€ €€ €€€€€€ +€€€ € €€€€€€€€€€€€€ €€€€€ +€ €€ € €€€#€!€$€-€@€X€R€N€I€>€.€%€$€€€€€ +€€€ +€ +€€€€€ +€€ +€€€€€ €€€€€€€ €€ € +€€€€€ € €€ € € €€€€€€€€ €€€ +€€€€ €€ €€ € € +€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€ €€€€€ €€€€€€€€€€ €€€ €€€€€€€€€€€ +€ +€€€€€ €€€€€€€ €€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€ €€ €€€€€€€€ €€€ €€€€€€ €€€€€€ €€ € €€€€€€€€€€€ +€€€€€ €€€ €€€€€€ €€€ +€€€€ €€€€€€€ €€€€€€€ € €€€€€€€€€ €€ €€€€€€€€€€ +€€ +€€€€€€€€€€€€ +€ €€€€€€ € €€€ €€€ € €€€ +€ €€€€ € +€€€€€€€€€ €€€€€€€ € € € €€€€€ €€€€€€€€€€€€€€€€€ +€€€ +€ €€€€€€€€€€€€€ € +€€€€€€€€€€€€€€€€€€€ +€€€€€ € €€€€€€€ +€€€€€€€€€€€€€ € €€ € +€€€€€€€€€€€ €€€€€€€€ €€€ €€€€€€ €€€ €€€€€€ € € €€€€€€€€€ €€€ € €€€€€ €€€€€€ €€€ € €€ €€€€ € €€ € +€€€€ € €€€ € €€€€€€€€ €€€€€€€ € € €€ €€€€€€ €€€€$€-€3€+€-€&€'€.€ €€ €€€€€ € €€€ €€ €€ €€€ +€€€€€€€€€€€ €€ € € € €€€€€€€€ €€€€ € €€€€€€€€€€€€€€€€€ +€€€€€€€€ €€ €€€€ €€ +€ €€ €€€ €€€ €€€€€€ € €€€€€€ €€€€€ €€€€€ +€€ €€€ €€€€€€€€ +€€ €€ +€€€€ €€€€ €€€€ €€€ €€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€ +€€€€€€€ +€€€€€€€€€€€ +€€€€€€€€ +€€€€ +€€€€ €€€€ €€€ €€€€€ €€€ €€ €€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€ € €€€€€€€ €€€ €€€€€€ +€€ +€€€€€ +€€€€€ € €€€€€€€ € €€€€ +€ +€ €€ €€€ €€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ +€€€ € €€ € €€ €€€€ +€€ +€ +€€€ +€€€€€€€ €€ +€€ €€€ €€€€€ € €€€ €€ €€ €€€€€€€€€€€€€€€€€€€€€ €€ €€€€€€€€€€€€€ €€€€€€€€€€€€€€ €€ € +€€ €€€ €€ €€ €€€€ €€ +€€€€ €€ €€€€€€ €€ €€ €€€€€€€€ € €€€€€ €€€ €€€€!€€€€€€€#€€€€€€€€ +€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€ €€€€€ +€€€€€€€ €€€€ € € €€€ €€€€€ €€€€€ € € +€€€€€€€€€€€€ +€€€€ €€€€ € €€ €€€€ €€ €€ € +€€€ €€€€€€€€€€€€€€€€ €€ +€ €€ €€€€€€ €€€€€€€ +€ € +€€ € € €€€€€ €€€ €€ €€ €€€€€€€€€ € €€€ €€€ €€€€€€€€€€€€€€€€€€ €€ €€€€€ €€ €€ +€€ +€ €€€€€€€€€€€€€€€€€€€ €€€€€€ €€€€€€€€€€€€ € €€ € €€€€€€€€€€€€€ €€€€€€€ €€ +€€€€ €€€€€€€€€€€€€€€€ €€€€ +€€€€€ +€€ € €€€€€€€€€€ €€€€€€ € €€€€ €€€€€ +€€€€€€ €€€€ €€€€€ +€ € +€€€€€€ €€€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€€ +€€€ +€€€€€€ € €€€ €€€€€€€ €€€ €€€€ €€€ € €€€€€€ €€€€€€ +€€€€€€ €€€€€ €€€€€€€€€€€€€ €€€€ €€€€€ € €€€€€€€€€€€€€€€ €€ +€ € +€€€ +€€ +€€€€€€€€€€€€€ €€ +€€€€€ +€€€€€€€€ €€€€€ €€€ +€€ €€ €€€ € €€ € €€€ €€€€€€!€€€ €€ +€ +€€ €€€€€€ +€€€ €€€€€€€€€€€€€ €€€€ €€€€€€€€€€ €€ €€ €€ €€€€€€€ +€€€€"€€€€€ €€€ € €€€€€€€€ € €€ € €€€€ €€€ €€€€€€€€€€ +€€€€€€€€ €€€€€€€€€€€ €€€€€€€€ € +€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€ €€ €€€€€ €€ €€€€ €€€ €€ €€ €€€€€€€€ €€€€€€ € €€ €€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€ € €€€€€€€ €€€ € €€€€€ €€€€€€€ €€ €€ €€€ €€€ €€ €€€ € € +€€ €€ €€€€€€€ +€€€ +€€€€€€ +€€€€€ +€€€€€€€€ +€€€€€€€€€ €€€€€€ +€€€€€€€ €€ €€€€€€€€€ +€€€€€ € € €€€€€€€ +€€€€€€€€€ € € €€€€ € €€€€ +€ €€€€€€€€€ €€€ € € €€€€€€€€€€€ €€€ +€€€€€€ €€€€€€€€ €€€ €€€€€€€€€ €€€€€€ €€€€€ €€€€€ €€€ €€€€€ €€€€€ € € €€€€ €€€€€ +€ +€€€€ €€€€€ +€€€€€€€€€€€€€€€€€€€€€€€ € +€€ €€€€€€ €€ €€€€€€€€€€€€€€€ €€ € € € € €€€€€ € €€€€€€€€€€ €€ €€€ €€€ € +€€€ +€ €€€ +€ €€€€€€€ +€€€€€€€ €€€€€€€€€€€ €€€€€ €€€€ +€€€€€ €€€€€€ +€€€€ +€€€€ € €€€ €€€ €€€€€€€€ €€€ €€ € €€€€€€€€€€€€€€ €€ €€€€€ € €€€€€€€ € +€€€€€€€€€€€€€€€€€€€ €€€€€ €€€ €€€€€€€€€ €€€€ € +€ € €€€€€€€€€€€€€€€€€€€€ € €€ €€ €€€€€€€€€€€€€ €€€ €€€ €€€€ €€€€ € €€ €€ €€€€€ €€ €€€ +€€€ +€€€€€€€€€€€€ € +€€€€€ €€€€€€€€ € €€€€ +€€€€€€ €€€€€ € +€€€ €€€€€€€€€€€€ €€€€€€€ +€€€ €€€€€€€€ € €€€ +€€€€€€ € €€€€€€€€ € €€ €€€€€ +€€ €€€€€€€€€€€€€ +€€€€€€€€ +€€ €€€€€ +€ €€€€ €€€€€€ +€ € €€€ €€€€ €€€ €€€€€€ €€€€ +€€€ €€€ €€€€€€€€ €€€€€€€€ €€€€ +€€ €€ +€ €€€€€€ € €€€€ €€€€€ € +€€€€ €€ €€€€€€€€€ +€€€€€ €€€€€€€ € €€€€€€ €€€€€€ €€€€€€€€ €€€€€€€€ €€€ €€€€ +€€€€ €€ €€ €€ €€€ €€ +€€€€€€€ €€ € € +€€€€ €€€€ € +€€€€ €€€ € €€€ +€ +€€ €€ € €€€ €€ €€ €€€ €€€€€€€€€ +€€€€€€€€€€€€€ +€€€€€€€€€€€€€€ € € €€€€€ €€€€€ €€€€€€€ €€€ +€€€€€€€ €€€€€ €€€€€€€€€€€€€€€ €€ €€€€€€ €€€€€€€ € € €€€€€€€€€€€€ € €€€€€€€ €€€€€€€€€€€€€€€€ +€€ €€€€€€€ € +€€€€€€€€€ €€€€€€€€€€€€ €€€€ +€€€ € €€€€€ € €€€€€ +€€€€ +€€€ € €€€ €€€€€€€€€€€€ +€ +€€ € €€€€€€€€ €€ €€€€€€ €€€€€ € €€€ €€ +€€€ € € €€€€€ € +€ €€€€€€€€€€€€€€€€ €€€€ +€ €€€€€€€€€€€€€ € € +€€€ € €€€€€€€€€€ € €€€€€ €€€€ +€ € €€€€€€ €€€€€€ +€€ €€ € €€ +€€€€€€ €€€ €€€€€€€ +€€€€€€€€€€€€€ €€€ €€€€€ €€€€€€€€€€€€€ €€€ € € +€€€ €€€ €€€€€€€ +€€€ € €€ €€€€ +€ €€€€€€€€€ +€€ €€€€ €€€€ €€€€€ €€€ € €€€ € €€€ €€€€€€ +€ €€ € €€€€ € €€€€€€€ € €€€€€€€€€€€€€€€€€€ €€ +€€ +€€ € €€€€€ € €€€€€€,€€€ € €€€€ €€€€€ €€€€€€ +€€€ €€ €€€€€ €€€€€€€€€ €€€€€€€€€ €€€€€ € € €€€ €€€€ +€€€€ +€ €€ €€€€€€€€€€€ €€€€€€€€€ €€€€€€ € €€€€€€€€ €€€€€€€€€€€€€ €€€€€€€€€€ €€€ € €€€€€ €€€€€ €€€€€€€€€€€€€ +€€ +€€€€€€€€€ €€ +€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€ €€€ €€€€€€€ +€€ €€€€€€€€€€€€ € €€€ +€€ €€€€ +€ €€€€ +€€€€ €€€€€€€€€€ €€ € €€ €€€€ €€€€€€ € €€€€€ € €€€€ € €€€ €€€€€€€€€€ €€€€€€ €€€ €€€€€€€€ +€€ €€€ € €€€ €€ €€€€ €€€€€€€ € +€€€€€€€€€€ €€ € €€€€ €€€€ +€€€€€ € +€€€€€€ €€€€€ €€€€€€€€€€€ €€€€€ €€€€€€€€€ €€€€ €€€ €€€€€ +€€€€ €€€€€€€€ +€€ +€€€€€€€€€€€€€€€ +€€€€ € +€€€€€€ € € €€€ €€€€ €€€€€ +€ € +€€€ €€ +€€€ €€€€€€€ €€€ €€€€€ +€ €€€€€€ € +€ €€ €€€€€ €€ +€€€ €€€€ €€€€€€ €€ +€ €€€€€€€€€€€€ € € € +€€ €€ €€€€€€€ €€€€€€€ +€€€€€ €€€€€ €€ €€€ € €€€€ €€€€€ € €€ €€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€ +€€ +€ +€€ €€€ +€ € +€€€€€ € €€€€€€€€ €€€€ €€€€ € €€€€€ €€€€ €€€€ €€€€€€€€€€€€€€€€€ €€€€€ +€€ € €€ +€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€ € €€€ €€€€€€€€€€€€€€ +€€€€ €€€€€€€ € €€€ € €€€€€ +€ +€€€€€€ €€ €€ €€€€€€€ €€ €€€€ €€€€€€€ € €€€€€€ €€€€€€ €€€€€ €€ €€ +€€€€€€€ €€€€€€€€€€€€€€€€€€€€ €€ €€€ €€ €€€ €€€ € €€€€€€€€ €€€€€ €€€€€ €€€ € €€ €€€€€€ +€€€€€€€€€€€€ +€€€ +€ €€ +€€€€€ €€€€ +€€ +€€€€€€€€€ €€ € € € €€€€€€ €€€ €€€€€€€€€ € €€€€ €€ €€ €€ +€€€€€€€€ €€€€€€€€€ €€€ € €€€€€ € €€ €€€€€€ +€€ €€ €€€€€€ €€€€ €€€€€€ +€ +€€€€€€€€€ € €€€€€€€€€€€ € €€€€€ €€€ €€€€ €€ €€ € +€€ €€€€€€€€€€€€€€€€€€ €€€€€€€ +€€€€€€€€€€€€ +€ €€€ €€ +€€€ €€ +€ € € €€ €€ €€ €€€€€ €€€€€€€€€€€€€ €€€€€€€€€ € €€€€€€€ +€€€€€€ +€€€€ € €€€ €€€€€€ €€€€€€€€ €€€€€€ €€ +€€€€€ €€€€€€€€€€€€€ €€ +€€ €€€€€€€€ € +€€ €€€€€ €€€€€ €€€€€€€€€€ €€€€€€€€€€€€€ +€€€€€ € €€€€€€€€ € €€€€€€ €€€€ €€€€ €€€ €€€€€€ €€€€€€€€€ € +€ € +€€ +€ €€ €€€€€€€€€ +€€ €€ €€€ €€€€€€€€€€€€€ €€€€€€€€ €€ +€ €€ €€€€€€€€ € €€€€€€€ € +€ €€€ €€€€€€€€ € €€€€€€€€ +€€€€€ €€€€€€€€€€€€€€€€ €€€€ +€€€€ €€€€€€€€€€ €€ €€ €€€€ €€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€€€ €€ +€€€€€€ €€ €€€€€ €€€ € +€€€€€€€€€€€€€€ €€€€ +€€€€€€€€€ € +€ € €€€€€€€€€ €€€€€ € +€€ € € € +€€€€€€€ €€ € € €€€ €€€€€€€ +€€ +€€ €€€ €€ €€€ €€ € +€€€ €€€€€€ €€€€€€€€€€€ €€ € €€€€ € € €€€€€€€€€€€€€€€€ €€€ €€€€€€ € +€€€€€€€€€ €€ €€ € +€ €€€€€€€€€€€€€€€€€€€€€ +€€€€€€€€ €€€€€ €€€€€€€€€ +€€%€€€€€€ €€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ €€€ €€€€€€€€€€€ €€$€€€ €€€€€€€€€€€ +€€€€€€€€€€€€€€ €€€€€€€ € €€€€ €€€ €€ €€€€€ €€€€€€€€€€€€€€€€€€€ €€€ +€ € € €€€€€ € €€€€€€€ €€ +€€ € +€ €€€€ +€€€ €€€€ €€€€€€€€€€ €€ +€ €€€ €€€€ €€€ €€€€€€€€ €€€€ €€ € €€ €€€€€€€€€€ €€€€€€€€€€€€€ €€€€€€€€ € € €€ € +€€€€€€ €€€€€€€€€€ € €€€€€€ €€€€€ +€€€ €€€€€€€€€€ €€€€€€ €€€€€€ €€€€€ € +€€€€€€€€ € €€ €€€€€€ €€€€€ € €€€ +€€€ € +€€€ €€€ €€ €€€€ +€€€€€€€€€ € €€€ €€€ +€€€ €€€€€€€€€€€ €€ €€€€ €€€€€ +€€€ +€€€ € €€€€€€€ € € €€€€€€ € €€ +€€€€€€€€€€€€€ € €€€€ €€€€€€€€€€€€€€€€ €€ €€ €€€€ € € €€€€€€€€ €€ €€€€€ €€€€ €€ €€ €€ €€€€€€€€ €€€€ €€€€€ €€ €€€ +€€€€€€€ €€€€€€€€€€ €€€€€ +€€€€€ €€ €€€€€€€€€€€€€€ €€€€€€ €€€€ € +€ €€€ +€€€€ €€€€ +€ €€ €€ €€€ €€€€€ +€€ +€€€€ € €€€ €€€€ +€€€€€€€€€€€€€ €€€ +€€€€€€€€ €€€€ €€€€€€ €€€€€€ €€€€€€€€ €€ +€ € €€€€€€€€€€€€€€;€€ +€€ €€ €€€ €€ €€€ +€€€ € €€€€€ € € €€€€€€€€ €€€€€€€€ €€€€ €€€€ +€€€€€€€€€€€ € €€€€€€€ +€€€ € €€€€€€€€€€€ €€€ +€€ €€€€€€ €€€€€€€€€ €€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€€€€ € €€€€€€€€ €€€€€€ € €€€€€€€€€ €€ €€€€€€ € €€€€€€€€ €€€€€€€€€€ €€€€ +€€€€€ €€€€€ €€€ € € €€€€ € €€€€ €€€€€€€€ € €€€€ € +€ €€€€€€€€ €€€€ €€ €€ €€€€€)€€€ €€€ €€€ €€€€€ €€€ +€€€€€ € €€€€€ € +€€€€€€€€€€€ +€€€€ €€ €€€€ €€ €€ +€€€€ €€€ € € €€€€€ €€€€ €€€€€€ €€€€€€ +€€€ €€€ +€€ € €€€ €€€€€ €€ +€€€€€€€€€€€€€€€€ €€ €€€€€€€€€€ +€€€€€€ €€€€€€€€€€€€€ €€ € €€€€€€€ +€€€€ €€€ €€ €€ € € €€€ €€€€€€€€€€€€ €€€€ +€€ €€ €€€€€€€€€€€€€€€€€€ €€€€€€€ €€€€€ €€€€€ €€€€€€€€€€€€€€€€€€€€€€€ €€ €€€ €€ € +€ €€€ €€€€€€€€€€€€€ €€^€i€€€€€ €€ €€€€€ €€€ +€€€ €€€€€€ +€€€€€€ +€€€€€€€€€€ +€ €€€€ +€€€ €€€€€€€€€€€€ +€€€€ € €€€ €€€€€€€€€ €€€€ € €€€€€ +€€€€€€ € +€€€ €€€€€ €€€€€€€€ € €€€€€€€€€ €€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ €€€€€€ +€€€€€€€€€€ €€ € +€€€ €€ €€€€€€ +€€€€ +€€ € +€€€€€€€€€ +€€€ +€€€€ +€€ €€ € €€€€ €€€€€€€€€€ €€€€€€€€€€ €€€€ €€€€ €€ +€€ €€€ €€€€ €€€ € €€€ €€€ € €€€€€€€€ €€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€ €€€€€ €€€€€ €€€€€€ €€€€€€€ €€ +€€€€€€€ €€€€ +€€ €€€ €€ €€€€€ +€€€€€€€€€€€€€€€€€ €€€€€€€€ €€€€€ €€€€ € €€€€ €€ +€€€€€€€ €€€€€ €€€€€€€€ +€€€€€ € €€ +€ €€ +€ +€€€€ €€ € € +€€ €€€€€ € €€€ €€€€ €€€€€€ €€€ €€€ €€€€€€€€ € +€ €€€€€€ €€ € €€€€ +€€€€€€€€ €€ €€€€€€€€ €€€€€€ €€ +€€ €€€€€€€€€€€€€€€€€€€€€ €€ +€€ € +€ €€€ €€€€€€ € €€€€€ €€€€€ +€€€€€€€€€€€€€€€€€€€€€€ +€ €€€ €€€€€€€€€€€€ €€ € € €€€ +€€ €€€€ € €€€€€ €€€€ €€€ +€ € €€ € €€€€ €€€ €€€ €€ €€€€€€€ € € € +€€€€€€€€€€€€€€€€ €€€ €€€€ € +€ € €€€€€€€€€€€€€€€€€ €€€€€€€ € €€€€€ €€€€€€€€€ €€€€€€€€€€€€€€€€€ +€€ €€€€ € €€ €€€€€€€ €€€€€€$€€€€€€€ +€€€€€€€€€ €€ € +€€€€€€ +€€€ €€€€€€ €€€ € +€€ € €€€€ €€€€€ €€€€€€€€€€€€ €€€ €€ €€ €€€€ € €€€ €€€€€€€€€€ +€€€ €€€€€€€€ €€€€€€€€ +€€€ €€€€€€ +€€ €€ €€€€€€ €€€€€€€ +€€€ €€€€ € €€ €€€ €€€€€€€€€ €€€€€€ €€€€€€€ € +€ +€!€€€€€€ +€€€€€ €€€€€€€€ €€€€€€€€€€€€ €€ +€€€€€€€€€€€€€€€€€€ €€ +€€€€ €€€€€€€€ €€€ € €€ € +€ € €€€€ €€€ €€€€€€€€€€€€€€ +€€ €€€ €€ +€€€€ +€€ +€€€€€€€€ €€€"€ €€€€ €€€€€€€€ €€€ +€€€€ €€€ €€€€€ €€€€€€€€€€ €€€€€€€€€€ € €€ €€ € € +€€€€ €€€€€€€ € +€€€€ € €€€€€ €€€€ € €€€€ €€€€ €€ €€€ € +€€€€€€€€€€ +€€€€€€€€€ € +€ €€€€€ +€ €€€ €€ €€ €€ +€ €€€€ €€ € € €€ € € €€€€€€ +€ +€€€€€ €€€€€€ +€ € €€€€€ €€€€ +€ €€€€€€€€€€€€ €€€€ €€€€€€€€€€€ +€€€ +€ +€€ € +€€€ €€€€€€ €€€€€€€€€ +€€€ +€€€€€€€€€€€ €€€€€€€€€€ €€€ +€€€€€€ +€€€€€€€€€€€€€ €€€€€ +€€€ +€ € €€€€€€€€€€€€€€€ € +€ € €€€€ €€€€€ €€€€€€€€€ € €€€€€€€€€€€€€€ €€€€€ € €€€€€ €€ +€€€€€€ €€€€€€€€ €€€€€€€ € €€€€ € €€€ € +€€€€€€€€€€ € +€€€€€ € €€€ €€€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€6€€€ +€€€€€€€ €€ €€1€€€ €€€€ € €€ € €€ €€ €€€€€€€ € €€ €€€€€€€€€€€ €€€€€ €€€€€€€€€€€€€€ €€€€ €€ €€€ +€ €€€€€€€€€€ €€€€€€€€€€ € +€ +€€€€ € €€€€€€€€€€€€€€€ €€€€€€€€ +€€€€€€€€€€ +€ € € €€ +€€ €€€ €€€€€ +€ +€€€€€€€€ €€€ € € +€ € € +€ €€€€€ €€€€ € +€€ €€€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€ €€€€ +€€€€€€€€€ €€€€€ €€€ €€€ +€ €€€€ € €€€€€€ +€€€€€ € € €€€€€ €€ €€ €€€€€€€€€€€€%€€€€€€ €€€€€€€€€ €€€€€€€€€€€ €€€ € €€€€ +€ +€€ +€€ €€€€€€ € €€€€€ € +€€ €€€€€€€€ €€€€€ € €€€€€€€€€€ €€€€€ €€€€ € €€€ € +€ €€€€€€ €€€€€ €€€€€ +€€€ € €€ €€€ €€€€€€€€€€€€€€ € €€ +€ €€€€€ €€€€ € € € €€€€€€€€€€ +€€€€ +€€€ +€€€€€€€€€€€€€€€€ €€€ €€€€€ € €€ € €€€€€€€ €€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€ €€€€’v…¡€€€€€€ €€€€€€€€€ €€ €€€€€€€€ €€ €€€ €€€ +€€ +€€€ €!€€€€€€€€€ €€€€€€ €€€€€€€ €€€ +€€€€€€€€ € €€€€€€€€€€ €€€€€€€€ €€€€€ €€€€€ €€€€€ €€€€ €€€€€€€€ €€ +€€ €€€ €€€ €€€€€€€€€ +€ €€ € +€€€€ €€€€€€€ € €€€€€€€€€ €€€€€€€€ € €€€€€€€€€€ € €€ €€€ +€€€€€€€€€€€€€€ €€€ +€€€€ +€ €€€€€€ €€€€€ €€ € €€€€€ +€€€ €€€€€€€€€€€€€€€€€€€€ €€€€€€ € € €€€€€ +€€€ €€€€€€€€€€€€€€ € €€€€ +€€€€€ €€€€€€ €€ €€€€€ € €€€€ €€€€€€ € €€ €€€ +€€€€ €€€€ € €€€ €€€€ €€€€€€€€€ +€€€€€ €€ € +€€€€ €€€€ +€€€€ € € € €€€€€ €€€€€€€€€€€€€€€€€€ €€ +€€€€€€€€€ €€€ €€€€€€€€€€€€€€ € €€€€€€€€€€ +€€€€€€€€ € €€ +€€€€€€€€ €€ €€ €€€€€€ +€ €€€€€€€€€€€ € €€€ +€€€€€€€€€€ €€€€€€€€€€€€€ €€ €€€€€€€€€ € €€€€€€€€€€€€ €€ +€ +€€€€€ € €€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€ €€€ €€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€ € € €€ €€€€€€€ €€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€ +€€€€€ €€ +€ €€€€€€ €€€ € €€€€€€€€ +€ €€€€€€€€ € +€€€€ €€€€€€ €€ € €€€ €€€€€€€€€€€€€€€€€ +€€€€€€€€€€€ € €€€€€€€€€ €€€ +€ €€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€ €€€€€€€€€€€€€€€€€€€€€ €€ +€ €€€€€ +€ €€€€€€€ €€€€€€€€ € €€ € €€€€€€€€€€€€€ €€ €€€ €€€€€ € €€€€€€€€€ €€€€€€€€€€€€€€€ €€€ €€€€€€ €€€€€ €€€€€€€€€€ +€€€€€€€€€ €€€ €€ €€€€ € € €€€ € +€€€€€€€ €€€€€€€€€€€ €€€ €€ +€€€€€€ €€€€€€€ € € €€€€€€€€€€€€ €€€€€ €€€€€€ € +€€ €€€€€ +€ €€ €€€ €€€€ €€€€€€€€€ +€ € € €€€ €€€€€ +€€ € €€€€€€€€€€€€€€€€ €€€€€€ +€€€€€€€€€€€€€€ +€ €€ €€€ € €€€€€€€€€€€€€€€€ €€€€€ € +€$€ €€€€€€€€€€€€"€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€ €€€#€ € €€ € €€€€ €€€€€€€€€€€€ €€€€ +€€€€ €€€ €€€€€ € €€ €€€€€€€ €€€€€€€€€€ +€€€€ €€ €€€€€€ +€ €€€ € € €€€€€€ €€€€€€€€€€€€€€€€ +€€ €€€€€ €€€ +€€€€€€ € €€€ +€€€€€€€ €€€€€ +€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€ €€€€€€€€€ +€€ €€ €€€€€€€ € €€ €€ €€€€€€€€€€€€€€€€€€€€ +€ €€€€€ €€ € € €€€€€€ € +€€€€€€€ +€€€€ €€€ +€€€€€€€€ €€€€€€ €€€€€€€€€€€€ +€€€€ € +€€€ € €€€ +€ €€€€€€€€€ +€€€ €€€€€€€€€€€€ +€€ +€€€€ €€€€€€€ €€€€€€€€€€€ +€ +€ €€ € € €€€ € €€€€ €€€€€€€€€ €€€€€€€ €€€ € €€€€ €€€ +€€€€€€ €€€€ €€€€€€€€€ € +€ €€€€€€ €€€€ €€€ €€ € €€ €€€ €€ +€ € +€€ +€€ € € €€€€€ €€€€€ € +€ €€€ +€€ +€€€ €€€€€ €€ €€€€€€€€€€€€€€€€€€€€€€ +€€€ €€ € €€€€€€€€€€€ €€€€€€€€€€€€ €€€€€€€€€€€ €€€€€ € €€€€€€€€€ €€€€€€€ €€€€ €€€€€ €€€ €€€€€€€€€€€ €€ €€€€€€€€€€€ +€ € €€€€ +€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€ € €€€ € € € +€€€€€€€ €€€ €€€€€€€€€€€€€€€€€ € €€€ €€ € € € +€€€€€€€ € €€ € €€€€€€ € €€ € €€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€ €€€€€€ € € €€ € €€€€€€€€€€€€€€€€€€€ +€€€€€€ +€ €€€€€€€€ +€€ € € €€€ €€€€€€€€€€€ €€€ €€€€€€€€ €€€€€€€€€€€€€€ €€€ €€€€€ € €€€ €€€ €€€€€€€ €€€€€€€€€€€€ € €€€€€€€€ €€€€€€€€€ €€€€ € +€€€ €€€€€€€€€€€€€ € €€€€€€€ €€€€€ €€€ +€€€€€€€ €€€€ €€€ € € €€€€€€€ €€€€€€€ +€ €€€€€€€€€€€€€ €€€€€€€€ €€€€€€ € €€€€€€€€€€€€ €€€€€€ €€€€€€€€€€€€€€€€ €€€€€ €€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€€ +€ €€€€€€€€€€ €€€€€€€€€ €€€ +€€€ €€€€€€€€€€€€€€€€€ €€€€€€€ +€€€€ €€ €€€€€€€ +€€€€€€€€€€€€€€€€ € €€€€€€ €€€€€€€€€ +€ €€€€€€€€ €€€€ € € €€€€€ +€ €€€€ €€€€ €€€ €€€€€€€ € € €€ €€€€€ € € €€€€ €€€€€ €€€ €€€ +€€€€€€€€€€€ €€€€€€€€ €€ €€ +€ €€€ +€€€ €€€€€€ €€€€€ €€€€€€€€€€€€€€€€€ €€€€€€€€ €€€€€€€€€€€€€ € +€ +€€ € €€€€€€€€€ +€€€€ +€€€ +€ €€ €€€€€€€€€€ €€€€€€€€ €€€€€€€ +€€€€€€€€€ €€ +€€ +€€€ €€ €€€€€€ +€ +€ €€€€€€ €€ +€ +€ €‚J€ë€€ €€€€€€€€€ +€€ €€€€€€€ +€€€€€€€€€ €€ €€€€€€€€€€ €€€€€€€€€€€€€€€ +€ €€€ +€€€€€€€€€€€€€€€ +€€€€ €€€€€€ €€€€€€€€€€€€€ +€€€€€€€€€ +€€ €€€€€€€€€€€€€€€€ +€€€€!€€€ €€€€€€€€€€€€ € €€€€€€€€€€€€ €€€ €€€€€€€ €€€€€€ € €€€€€ +€€€€€€€€€ +€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€€ €€€€ +€ €€€€€€€€€ €€€€€€€€€ €€€€€€€€ €€€ €€€€€ +€€€€€€ +€ €€€ +€ +€ +€ €€€ €€€€€ €€ €€€ +€€€€€ €€€€€€€€€€€€€€€ € € €€€€€€€ €€€ +€€ €€€€€€ €€€ € +€€€€€€€€€€€€€ €€€€€€€€€ €€€€€€€ € €€€€€ €€€€ €€€ +€€€€€€€€€€€€€€€ € €€€€€€ € +€€€€€€€ € +€€ €€€ +€ +€€€€€€€€€€€€€ €€€€€€ +€€€€€€€€€ € +€€€€€€€€€€ €€€€€€€ €€ +€€€€ € €€€€ €€€€€€€ €€ +€€€€€€€€€ € €€€€€€€ €€€ +€€¡€@€€€€€€€€€€€ €€ €€€€€ € € €€ €€€€ +€€€ €€€ +€€ € +€€€ € € € €€€ +€€€ €€€€€€€€€€ €€ €€€€ €€€€€€€€€€€€ +€€€ € €€€€€€ +€€€€€€€€€€€€ €€€€€ +€€€€€€ €€ €€€€€ €€€€€€€ €€€€€ €€€€ €€€€€€€€€€€€ €€€€€€€€€ €€€ €€€€€ +€€€€€€€€€ €€ €€€ €€€€ €€€ €€€€€€€ € €€€€ +€€€€€€€€€ €€€€€ €€€€€ +€€€€ €€€€€€ +€€€€€ €€€€€€€€€€€€€€€ €€€€ €€€ €€€ +€ € €€€€€€€€€€€€€€€€€€ +€€€ +€ €€€€ €€ €€€€€€€ +€€€€€ €€€€€€ +€€€€€€€€ € €€ € €€€ €€ € +€€€ € € € €€€€€€ €€€€€€€€€€€ +€€€€ +€ €€€€ € +€€€€€€€€€€ €€€€€€ € €€€€€€€€€€ € +€€€ €€ €€€ €€ € +€€€€€€€€€€ € €€€€€€ €€€€€€€ € €€€€€ €€€ €€€€€€€ €€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ € €€€ €€€€€€€€€€€€ €€€ +€ €€ +€ € €€€€€€€€ +€€ €€€€€€ €€€€ €€ €€€ € € € +€ €€€€€€ €€ €€ €€€€€ €€ €€ €€ €€ € +€ € € €€ €€€€€€€€€€€€€€€ +€ +€€€€€€ €€ €€€€€ €€€€€€€€ €€ €€ +€€ €€€€€€€ €€ €€ €€€€€€€ +€€€ €€€€€ € €€€€€€€€€ +€ +€€€€€ € €€€€ +€€€€ €€€€€€€€€€ €€ € € €€€€ +€€€€€€€€€€€€€€ €€€€ € +€ €€€€€€€€€€€ € €€€ € €€€€€€€ €€€€€ €€€€€ €€€€€€€€ €€€ € €€€€€€€ €€€€€€ €€€€€€€€€€€€€ €€€ € +€ €€€€ €€€€€€ €€€€€€€€€€ +€€€€€€€€€€€€€ €€€ +€€€€€€€€ €€€€ €€€€€€€ +€ €€€€€€€€€€ €€€ € €€€€€€€€ €€€€€ €€€€ €€€€€€€€€€€€€€€€€ €€ €€€€ +€€€€€€€ +€€€ €€€€€€€€ +€€€€€€€€€€€€€€€€ €€€€€ +€€€€€€ €€€ +€€€€€€€€€€ +€€€€ +€ €€€€€€€€€€€€€€€ €€€ €€€€€€ €€€ €€€€€€ +€€€€€€€€€ € €€€€€€€€€€€€ +€€€€ +€ +€€€€€€€€€€€€€€ €€€ €€ €€ +€ €€ €€€ €€€€€€ +€ €€ €€ €€€€€€€€€€€€€€€€€€€€€€ €€ €€€€€€ +€€ +€ €€€€€€€€ € €€€€€€€€€€ €€€€€€€ € €€€€€ +€€€€ €€€€€€€€€€€€ €€€ €€€€€€€€€€€ €€€ +€€€€€€ €€ +€ €€€€ €€€€€€€€€€€€€€€ € € €€€€€ €€€€€€€€ €€€€€€€ €€€€€€€€€€€€€ € +€ +€€€€€€€€€ €€€€€€€€€€€€€ €€ €€ €€€€€ +€€€€ €€€€€€ €€€€€€€€€€€€€€€ € €€€€ +€ €€€€ €€ €€€€€€€€€€ €€€ €€€ €€€€ €€ € €€€€€€€€€€€€€€ € +€€€€€€ €€ +€€€€€€€€ +€€€ € €€€€ +€ €€€€ €€€€€ €€€ €€ €€€€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€ €€€ +€€€€€ +€€€€€€ € € +€€€€€€ +€ € €€€€€€€€€€€€€€€ €€€€ €€€€€ €€€ +€€€€€€€€€€€ €€€ € €€€€ € +€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€ €€€€ € €€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€€ €€€€ €€€€ €€€ +€€€€€€€€€ +€€€ +€€ €€€€ €€€ €€ €€€€€€€€€€€€€€ €€€ €€€€€€€€€€ €€€€ €€€ € € +€€€€€€€€€€€ €€ € +€€€ €€€€€€€€€€€€€€ +€€€ +€€€ € +€€€ €€€ € €€€€€€€€€€ € +€ €€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€ €€€€€€€€€ €€€€€€€ €€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€ €€€ +€€€€€€€€ €€€€€ €€€€ +€€€€€€€€€€€€€€€€€€ €€€€€€ €€€€ +€€ €€€€€€€€€ € +€€€ €€€€ €€€€€€€ +€€€€ +€€€€€€€€€ €€€ € €€€€€€€ € €€ € €€€€€€€€€€€€€ €€€€ +€€€€€€ €€€ +€ +€€€€€€€€€€€€€€€€€ €€€ €€ €€ +€€ €€€€ € €€€ €€ +€€ €€€€€ €€€€€€€€€€€€€ €€€€€ € €€ +€€ +€€€ €€€€€ +€ €€ €€€€€€€€€ €€€€€€€€ €€€€ +€ € €€€€ +€€€€ €€€€€€€€€ +€€ €€€€€€€€€€€€€€€€€€€ €€€€€€€€ +€€€€€€€€ € +€ €€€ +€€€€€€ € +€ €€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€ €€ +€ € € €€€ € €€ €€€€€€ €€€€ +€€ € €€ +€€€ €€€€ €€€€€ €€ € €€€€ € €€ € €€€€ € € €€€€€€€€€€€€€ € +€€ +€€€ € €€ €€€€€ €€€€€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€ €€€ €€€ €€€€€€€€€€€ € €€€ € € €€ €€€€€€€€€€ €€€ €€€€€ € +€€€€€ € €€€€€€ +€€ €€€€€€€€€€€€€€€€€€ €€€€ €€€€€€ €€€€ +€€€€ €€€€ € +€€€€€€ €€€€€ €€€€€€!€€ € €€€ € €€ €€€€ € €€€€€€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€€€ €€€€€€€€€€€ €€€ +€€€€€ €€€ €€€€ €€€€ +€€€€€€€€€€€€€€ € +€€€€€€ +€ €€€€€€€€€€€€€€ €€ +€€€€€ €€€ €€€€€ +€€€€€€€€€ +€ €€€€€ €€€€ €€€€€€€€€€€€€€€€€€€€€€€ € € €€ € € €€€€€€€€ €€€€€€€€€ +€€€€€€€€€ €€€€€€ €€€€€€ €€€ €€€ €€ € €€€€€€ +€€ +€€€ €€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€ €€€€€€€€€€€ +€€€€€ +€€€€€€€€€€€ €€€€€€€€€€€ € €€€€$€€€€€€€€ +€€ €€€€€ €€ € € € +€ €€€€ € €€€€€€€€€€€€ €€€ €€€€€€€€€€ € €€€€€ €€€€€€€€€€€€€€€€ €€ +€€€€€€ € € +€ €€€ €€€€€€€€€€€€€ € €€€€€€€€€ €€€€€€€€ €€€ €€ €€€€€€€€€ €€ €€€ € €€€€€€€ €€€ +€€€€€€€€€€€€€€€€€ €€ €€€€€€€ €€€€ +€ €€€€€€€€€ €€€ €€€€€€€€€ +€€€€€€€€€ €€€€€€ € €€ € € € €€€ € €€€€€€€€€€ €€€€€€€€€ €€ €€€€€€€ €€€€€€€€€ €€€€€€€€ €€€€€€€€€ €€€€€€€€€ €€€ € €€€€ €€€€€€€€€€€€€ +€€ €€€€€ +€€€€€ €€€€€€ +€€ +€€€€€€€€€€ +€€€€€€€ +€ €€€€€€€€€ € +€€€€ € €€€€€€€€ €€€ € € €€ €€€€ €€€€€€€€€€ €€€ €€€€ +€€€ € +€€€€€€ +€€€€€€€€€€€€€€€ €€€€€ € +€€ €€€ €€€€ €€€€€€ +€€€€€€€€€€€ €€€€€€€ €€€€ €€€€€ € €€€€€€€€€ €€€ €€€€€€€€€€€€€€€ €€ €€€€€€€€€€€€ €€€ €€ € €€€€€€ € € €€€ +€€€€ €€€€€€ € €€€€€ +€€ €€€€€€€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€ € +€€€€€€€€€€€€€€ +€ € €€€€ €€ € €€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€ €€ € +€€€€€€€€€€€€€€€€€ € +€ €€€€€ +€€ €€ € €€€ €€ +€ €€ €€€€ €€€€ €€€€€ €€€€€€€ +€€€ +€€€ € €€ €€€ € € €€€ +€€€€€€€€€€€€€€€ +€€€€€€€€€€€€€€€€€€€€€ €€€€€ €€ +€€€"€€€€€ €€€€€ € €€€€€ €€ €€ €€€€€€€€€ +€€€€ €€€€€ +€€€€€€ €€€€€€€ € €€€€€€€€€€€€€€€€€€ €€&€€€€€€€€€€ €€ €€€€ €€ €€€€€€€€€ €€€€ €€€€€ €€€ € €€€ €€€€€ +€€€€ €€€ € +€ €€€€€€€€€€€ €€€ €€€€€€€€€€€€ € +€€ +€€€€€€€€€€ €€€€ €€€€€ €€€€€€€€€€€€€ €€€€€€€€€€ +€€€€€€€€€€€€€€€€ +€€€€€€€€€€€€€ €€€€€€ €€€€€ €€€€€€€ €€€ €€€ €€€€ +€€€ €€€€€€€€€€€ €€€€€€€€€€€ €€€€€ +€€€€€€€ +€€€€€ €€ +€€€€€€€ €€ €€€€€ €€€€€ +€ +€€€€€ € €€€€€ €€€ €€€€€€ +€€ +€€€€€ €€€€€€€ €€ €€€€€€€€ €€ +€€€ €€€€€ €€€€ +€€€ €€ +€€€ €€€ €€€€€€€€ €€€€€€ +€ €€€€€€ +€ €€€ €€ € €€€€€€€€€€€€€€€€€€€€€ €€ €#€ €€€ €€€€€€€€€€ €€€ €€€ € € +€€ €€€€ €€€ +€ €€€€€ €€€€ €€€€€€€€ +€€ €€€€€€ €€€€€€€ +€€€€€€€ €€€€€€€ €€€€€€ €€€€ €€€€€€€€€€€ €€€ €€€€€€€ €€€ €€€€€€ €€€€€€€€€€€€€€€€ €€€€€€€€€€€€ €€€€ +€€ €€ €€€ €€€ €€ €€ +€€€€€€€€ +€ € +€€€ €€€ € +€€ €€€€€€ € €€€€ €€€€ €€€€€€€ +€ +€€€€€€ €€€€€€€ €€€€ €€€€€€ € +€€€ € +€€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€ € €€€ €€€€€ € €€€€€€€€ € €€€ € € €€€ €€ +€€€€ +€ €€€€€ €€€€€ €€€ € +€€€ €€€€ +€€ +€€€€€ €€€€€€ € €€ €€€€€€€ +€€€€€€€€ €€ €€€€ +€ +€€€€€ €€€€€€€€ €€€€ +€ €€ €€€€€€€€€€€€ €€ €€€€€€€€€€€ €€€€€ €€€ €€€ +€€€€€€€ €€€€ €€ +€ €€€€€€ €€€€€€€ +€€€€ €€ €€€€ €€€ +€ €€€€€€€€€ €€ € €€€€€€€€ +€ €€€€ +€€€€€€€€€ €€€ € € €€€€€€ €€€€€€€€€€€€€€€€ €€€€€€€€ +€€€€€€€€€€€€ € €€ €€€€€€€€€€€€€€ €€€ €€€€€ €€€ €€€€€€€ +€€€€€€ +€ € €€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€ €€€€€€€€ +€€€€ €€ €€€ €€€€ €€€€ +€€€€€€€€€€€€€€€€€€€ +€ € €€ € €€€€€ € +€€€€€€€€€€€€€€ € +€€€€ +€€#€ €€ € €€ €€€€€€ +€€€€ €€€ €€€€€ €€€€€ +€€ €€€ €€€ €€ €€€€ +€€€€€€€€€€€€ €€€€€€€€€€€€€€€ €€€€€€€€€ +€ €€€€€€€€€€€ €€€€€€€€€ €€€€€€€€€€€€ €€€€€€€€ € €€€€€€€€€ € € €€€ €€€€€€€€€€€€€€€ +€€€€€ €€€€ +€€ +€€ €€€ €€ € €€€ +€ €€€ €€€€€€€€ € €€€€€€€ €€€€€ € €€ +€€ €€€€€ €€€ €€€€€€ €€€ €€€€ €€€ +€€€€€€ € +€€€€ +€€€€€ +€€€€€€ € € +€€€ €€€€€€€ +€ +€ +€€€€€€€€€€ €€€€€ €€€ +€€ € €€€€€€€€€€€€ €€€ €€€€€€ +€€ €€€€ €€€€€€€ €€€ +€ +€ € €€ €€€ € € +€ € €€€€€ €€€€€€€€€ €€€€€€€€€ €€€ +€€€ €€ €€ +€€ € €€€€€€€€€€€€€€€€ €€€€€€ €€ +€€€€€€€€€€€€€€ €€€€ €€€€€€€€€€€€€ € €€€€€€€€€€€€€€€ € € €€€€€€€ €€ €€€€€€€€€€€€ € € €€€€ €€ €€€€€€€€ €€€€€€€€€€€€€€€ €€€ €€ €€€ +€€€€€ €€€€€€€€ +€ +€ €€€€ +€€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€€ +€€€€€ €€€€€€ +€ €€€€€€€€€€€€€ €€€ € €€€€€€€€€ €€€€€€€€€€€€€ +€€€€€ € +€€ €€ +€ €€€€€€ +€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€ €€€ +€€€€€€€ € € € €€€€€€€ €€€€€€ €€ +€€€€€€€€€€€ €€€€€€€€€€€€€ +€€€ €€€ +€€€€€ €€€€€€€€ €€€ € € € +€ €€€ € +€€€€€€€€€ +€€€€ +€ +€ €€€ +€€€€ +€€ €€€€€€€€€€€€€€€€€ € +€ € €€ €€€ +€€ +€ €€€ €€€€ €€€€ €€€€€€€ €€€€ +€€€€€€€€€€€€€€ €€€€€€€ €€€€ €€ €€ €€€€ €€€€€€€€€€€€€ €€€€ €€€ € €€€€€€€€€€€€€ €€ €€ € +€ € +€€€ €€ € €€€€ € €€€€ +€ +€€€€€ € €€€€€€€ €€ €€€ €€€ €€€€€ €€€€ €€€€€€€€€€€ +€€€€€€ €€€€ €€ +€€ €€€€€ €€€€€€ +€€€€€€€ +€€€€€ €€€€€€€€€€ € € €€€€€€€€ € +€€€€€€€€€ +€€ €€€€€€ €€€€€€€€€€€ €€ +€!€€€ €€ € €€€ €€€€€€€€€€€ €€ +€€€€€€€€€€ +€ €€€€€ +€€€€€€€€€€ +€€€€€€€ €€ €€€ €€ €€€ €€€€€€€€€€€€ +€€€€ €€€€€€€ €€€€€€€€€ € +€€ € €€€ €€€€€ € €€€€€ +€€€€€€€€ +€€€€€€€€€€€€€ €€ €€€€ €€€€€€€ € € +€€ +€ €€€ € €€€€€ +€€€€€€ € +€ €€€€ €€ €€€€ € €€€€ +€€€€€ € +€€€€€€€€€€€€€€€€€€€€€€ €€€€ € €€€€€€€ € €€€ €€ €€ € €€€ €€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€ € +€€€€€€€€€€€€€€€€€ €€€ €€€€ € €€ €€€€€€€€€ € €€€ € +€€€€ € € € € €€€€€€€€ € € €€€€€€ €€€€€€€€ €€€ €€€€€€ €€ €€ € €€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€ +€€€€€€€€€€ €€ €€€€€ +€€€€ €€€€€€€€€€ +€ +€€€ €€€€€ € €€ € +€ € €€€€€ €€€€€€€€€€€€€€€€€ € €€€€€€€€€ +€ € €€€€ +€€€€€ € € € €€ €€€€€€€€€€€€ +€€€€€€€€ €€€ €€€€ €€€€€€ €€€€€€ €€ +€€€ €€€€€€€ € € €€€ €€€€€€€€€€ €€€€€€€ +€€€€€€ €€ €€ €€€€€€€€ +€ €€ € +€€ € €€€€ €€ €€€€ €€€ €€€€€€€€€ €€€€€€€ €€ €€€€ €€€€€€€€€€€ €€€€€€ €€ €€€€€ €€€€€€€ +€€ €€€ +€€ €€€ €€€€ +€€€€€€€€€€€€€€€€€€€€€€€ €€€ €€ €€€€€€ € € +€€€ € €€€€€€ € € €€€€ €€€€€€€€ €€€€€€€ €€€€€€€€€€€€ €€ +€ €€€€ €€€€€€€ € €€€ € €€€€€€ €€ €€€€€€€€€€€ € €€€€€€€€ €€€€€€ €€€€€€€€ €€€€€€€€€€€ € +€€€€€€€ € €€€ € +€€ +€€€€€€€€€€€€ €€€ €€€€ +€€€€€€€€€€€€ +€€€€€€ €€€€€ € €€€€€€€€ € +€ € €€€€€€€€€€€€€ €€ €€€€€€€€€€€ €€€€ € € €€€ €€€€€€€ +€€€€ +€€ €€€€€€€€€€ € €€€€€ €€€ € +€ €€€€€€€€€ €€€ €€€€ € € €€€€€€€€ € €€ €€€ €€€€€€€€€€€€ €€€€€€€ € +€€€€€€€ € +€€€€€€€€€€€ €€€€€€ €€ €€ €€€€ € €€€€€€€€€ +€€€€€ €€ +€€€€€€€€€€ €€€€$€€€€€€€€€ +€ €€€€€€€ €€€€€ +€€€€€ €€€€€€ €€€€€€€€ € €€€€€ +€€€€ +€€ €€€€ €€ €€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€€ €€€€€€ €€€ € €€€€ €€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ € €€ €€ €€ €€€ €€ €€€€€€€€€ +€ €€€ +€€€€ €€€€€€€€€€€€€€ € €€€ +€ +€€€ +€ €€ € € +€€€ €€€€ € €€€€ €€€€€€ € €€€ €€€€ +€€€€€€€€€€€€€€€€€€€€ +€€€€€€€€ € €€€€€€€€€€ €€€€€€€€€€€€ € € +€€€€€ +€€€€€€€€€ €€€€€€€€ €€€€€€€€€€€ € +€€€€ +€€€€€€€€ +€€€ €€€€€€€€€€€€€€€ €€€€€ € +€€€€€ +€€€ +€ €€€€€€€ € €€€ +€ € +€ €€€€€€€€€ €€€€€€€€€€ +€€€€ €€ +€ €€€€€€€€€ €€€€ € +€€€ +€€€€€€€€ €€€€€€€ +€€€€ +€€ €€ €€€ +€ €€€ € +€€€€€ € €€ € € €€ +€€€ +€€€€€€€€€€€€€€€ € €€€€ +€€€€€ € €€€€€€€€€€€ +€€€€ €€€€€ €2€€€€€€€€€ €€€€€€€€€€€€€€€€€€ +€€€ €€€€€€€€€ +€€ € €€€€ €€€€€€€€ €€€€€€ €€€ €€€€€€€€ €€€€€€€€€ +€ €€€€€€€€€€€ €€€€€€ +€€€€€€€€€€ €€€€€€€ € €€€€€ €€ €€€€€€€€€€ €€€€€€ +€€€€€€€€€ €€ +€ +€ +€€€€€€€€€€€€ € +€€€€€€€€€€ €€ +€€ +€€ € € +€€€€€ € € +€ +€ € € € €€€ €€€€€€ €€€€€ €€€€ € €€€€€€€ €€€€€€€ +€€€€€ €€€ € €€€€ € €€€€€€€€€€€€€€ €€ +€€€€ €€€€€€€€€€€€€€€€ € €€€ +€€€€€€€€€€€ +€ €€€€€€€€€€ +€€ €€ € +€ €€€€€€€€€ €€€ +€€ €€€€€ €€€€€ €€€ €€€€€ +€€€ € €€ €€€€€ +€€ €€€€€ +€ +€ €€€€€€ +€€€€ +€ +€ €€ €€ € € €€€€€€ €€€€€€€€€€ €€ €€€€ € €€€€ €€€€€ €€€€€ € +€€€€€€€ €€ +€ +€ €€€€€€€€€€€€€€ +€€€€€€€€€€€€ €€ € +€ +€€€ +€€€€€€€€€€€€€€€ €€€€ +€ €€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€ € +€€€ € €€€ € +€ € € €€€€€€ €€€€€€€ +€ €€€€€ €€€€ €€€ +€ +€€€€€€€€€ €€ +€€€€ €€ +€€€€€€€€€€€ €€€€€€€ +€€€€€€€€€€€€€€ €€€€ €€€ € €€€ €€€€€€€€ +€€ €€€€€€ €€€€€€€ €€€ €€€€ €€€€€€€ €€€ €€€€€ +€€€€€€ +€€€€ €€€€€€€€ € €€€ € € €€ € +€ +€€ € €€ €€ €€€ +€€€€€€€€€€€€€ €€€ € € €€€ € € +€€€€€€€€€€€€€ € +€€€€€ € € €€€ +€ +€€ €€ €€€€€€€ €€€ €€€€€€€€€€€€€ €€€€€€ €€€€ €€€€€€€€ € €€€€€€€€ €€€€ +€ € € +€ € €€€€€€€€€€€€€€ +€€€€€€€ € €€€€€€€ € +€ +€ +€€€ € € +€€ € €€€€€€€€€ €€€€€€ +€€€€€€€€€€€€ +€€€ € €€€€€ €€ €€€ +€€€€€€€ +€€€€€€€€€€€€€€€€€ €€ €€€€€€€€ € €€€€€€€€€€€€ €€€€€€€€€€ € €€€€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€ €€€ €€€€ €€€€ +€€€ €€€€€€ €€€€€€€ €€€€€€€€ € €€€€€ €€€€€ €€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€ € €€€€€€€€€ +€€€€€ €€€€€€ € €€€€ +€€€ € €€ €€€ €€€€€ €€ +€€€€€€€€€€€€€€€€€€€€ €€€€€ +€ €€€€€€ €€€€€€€ €€ € €€ € €€€€ €€€ €€€ €€€€€€€€€€ €€€€ € +€ € €€ €€ +€ €€€€€€€€€ +€€€€€€€€€ € €€€€€€€€€€€€ +€€€€€ € +€€€ €€ €€€€€€€€€ € €€€ €€€€€€€€€ €€€€€€€€€€ €€ +€ +€€€€€€ +€€€€€€€€€€€€€ €€€€€€ +€€€€€€€€ €€ +€€ €€€€€€€€€€€€€€€ €€€€€€€€ +€€ €€€€€€€ € +€€€€€€€ € +€ +€€€ €€€€€€€ €€€ €€€€€€ € €€€€€€€€ €€ €€€€€€€ €€€€€€€€€€€€€€€ €€€€€€ €€€€€ € €€€€€€€ €€ +€€€€€€€€€€ € €€€€€€€ €€€€€€€€€€€€€€€ € €€€ € €€€€€€€€€€ €€ €€€€€ €€€€€€€ €€ €€€€€€€€ +€€€€€€€€€ €€€€€ €€€€€€€€€€€€€€ €€€€€€€€ €€€ €€€€€€€€ €€€€€€€€€ +€€€€€ +€€€€€€€€ €€€ +€€ +€ €€€€€€€€€€€€ €€€€€€€€€€€€€€€ € €€€€€ +€€ €€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ € € €€€€€€€€ +€€ +€€ €€€€ €€€€ €€€€€€ € €€ €€ €€€€€ +€€€€€€€€ +€ +€€€€ € €€ € €€ €€€€€ €€€€€€€€€ €€€€€€€€€€€€€€€ €€ +€€€€€€€€€€ € €€ +€€€€€€€ €€ €€€€€€ €€€ €€€€€€€ +€€€€ € €€€ € €€€€€ +€ €€€€€€€€€€ €€€€ +€ € +€€€€€€€€ +€ € € € +€€€€€€€€€ € +€€€€€€€ €€€ €€ +€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€ €€€ €€€€€€€€ +€€€ €€ € €€€€€ € € +€€€€€€ +€€€ +€€€€€€ +€€€€€€€ +€ € €€€€€€€ +€ €€ € €€€ €€€€€€€€ €€€€ €€€€€€ € € € €€€ €€€€€€€ €€€€€€€ +€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€ €€€€€ € €€€ € €€ €€€ €€€€€ € €€€€€€€€ €€€€ €€€€€€€€€€€ € € €€€€ €€€€€€€€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€ +€€€€ €€€€€€ €€€ € € +€ €€€€€€€€€€€€€€€€€€ +€ +€€€€ €€€€€€€€€€€€€ €€€ €€€ €€ €€€€€€€€€€ € +€€€€€ € €€€ €€€ €€ +€ €€€€ € €€€€€€€€ € +€ €€€€€€€€€€€€ €€€€€ € €€€€€€€ €€€€ +€€€€€€ €€€€€€€€€€€€€€€€ € +€ +€€€ €€€€€€€€€€€€€€ € +€€€€€ €€€€€€ € +€€€ +€€€€ €€€€€€€€ €€€€€€ +€ € €€€€€€€ +€ €€€ € €€ €€€€€€€€€€€€ €€€€€€€€€€€€€ €€€€€ €€ €€€€ € €€€€€€€ €€€€ €€€€€€€€€€€€€€€ €€€€ € €€€€€€€€€ €€€€€€€ €€€€€€€€ €€ €€€€ €€ €€€€€ +€ €€€€€€€€€€€€€ €€€€ €€€€ +€€€ +€€€€€€ €€ €€ +€€€ € €€€ €€€€€€€€€€€€€€€€€ €€€€€ +€€€ €€ +€€€ € +€€€€€€€€€€€€€ € € €€€€€€€€€€€€€€€€€ € +€€ +€€ €€€€ €€€€€€ €€€€ €€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€ €€€ €€€€ €€ € € €€ €€€€€€€€€€€€€€ €€€€€ € €€€€€€€€€ +€€€€ €€€€€€ +€€€€€€ €€€€€€€€€ €€€€€€€€€€€€€€€€ €€€€ €€€€ +€€€€€ €€€€€€€€€ €€€€€€€€ +€€€€€€€€€ €€€€€€ +€€ €€€€€ €€€€€ €€€€€€ +€€€€ +€€€€€€€ € €€€€€€ €€ +€ €€€€€ €€€ €€€€ € €€€€€€€€€ €€€€€ €€€ +€€€€€€€€€€€€€€€ € €€ €€€€€€ € € €€€€ €€€€ €€€ €€€€€€€€€€ € € €€€ €€€€€€€€ €€€€€€€€€€€€€€ €€€€ € €€€€ €€€€€ €€€€€€€€€€€ €€ +€€€€€€€ € € +€€€€€ €€ +€€€€€€€€€€ +€€€€€€€€€€€€€€ +€€€€€€ € €€€ €€€€€€€€€ €€€€ +€ €€ €€ +€€€€€€€ €€€€€€€€€ € €€€€ €€€€€ +€€€€€€€€ €€ +€ +€€€€ +€ €€€€€€ € +€ € +€€€€€€€€€€ €€€€ +€€ +€ €€€€€€€€€ €€€€€€€ +€€ € €€ €€€€€€€ +€€€€€ €€€€€€ €€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€€€€€ € +€€€ €$€€ €€€€ +€ €€€ +€ €€ €€€€€€€€€€€€€€€€€€€€€€€€ +€€€€€€ €€€ +€ €€€€ +€€€€ €€€€€€€€ €€€€ € €€€€€€€€€€€€€€€€€€ €€€€€€ € €€€€ €€ +€€ €€€€€€€€€€ +€€€€ €€€€€€€€€ € +€€€ €€€€€€€ €€€ €€ +€€€€€€€ +€€€€€ €€€ €€ €€ €€€€€ €€€ € €€€€€ € €€€€ €€€€€€€€€€€€€ €€ €€€€€ € €€€€€€€€€€€€ € €€€€€€€ €€€€€ € €€€€€€€ +€€ €€€€ €€€€€€ € € € +€ €€€€€€ € €€€€€ €€€€€€€€€€€€€€€ +€€€ +€€ €€€ €€€€€ € €€ €€€€€€€€€€€€€€€€€€€€€€ +€€ €€€€€€ +€€ € €€€€€€€€€€€ € +€ €€€€€€€€€€€ € € +€ €€€€€€€ +€€ €€€€ € € +€€€€€€€€€€ € €€€€€€€€ +€€ €€€€€€ €€€€€€€€ € €€€€€€ € +€ € €€€€€€€€ €€€€€€€€€€ +€€€€€€ €€€€€€€€ € €€ €€€ € €€ €€€€€€€€ € €€€€€€ €€€€€€€€€€€€ +€€€ €€€ € +€€ €€€€€€€ €€€€€€ € €€€ €€€€€€€€€ €€ +€€€€€€ €€€ €€€€€€€€€ €€€€€ +€ +€€€€€€ +€€€€€€€€€€€€€€ +€€€€ €€ €€ +€€€€ € € +€ +€€€€€€€€€€€€€€€€€€€€ €€€€€ +€€€€€€ €€€€€€€€ +€ €€€€€€€€€€€ €€ €€€€€€€€€ €€€€€€€€ +€€€€€ €€€€€€€ € €€€€€€€ €€ € € €€€€€€ €€ €€€ €€€ €€€€ +€ €€ € €€€ €€€€€ +€€€ €€€€ € € €€€ €€€€€€€€€€€ +€€€ €€€€€€€ €€€€€€€€€ +€ +€ +€€ €€€€€€ €€€€€€€€€€€€€€€ € €€€€ € +€€€€ +€ €€ +€€€€€ €€€€€ +€€€€ +€ €€€ € € €€€€ €€€€ €€€€€€ +€€€ €€ €€€€ +€€€€€€€€€€ € +€ €€€€€€ +€€€€€€€€€€€€€€€ +€ €€€ €€€€€€€€€ € € +€€€ € € +€€€€€€€ €€€€€€€€€ €€ € €€ +€ € €€€€ +€€€ €€€€ +€€ €€€€€ €€€€€€€€€€ +€€€ +€€€€ €€€ €€€ €€€€€€€ €€€€€€ € € €€€€€€ € €€€€€€€ +€€€€€€ €€€ €€€€€€€ +€ €€ €€€€€€€€€€ € +€€€€ €€€€€€€ +€€€€€€€ +€€€€ € +€ +€€€ €€ €€ +€€€€ +€€€€€€€€€€€ € +€€€€ €€€€€€€€ €€ €€€€ €€€ +€€ +€€€€€€€ € €€€€€ €€€€€€€€€€€ +€€ € €€€ € €€€€€€€€€€€ € € €€€€€€€€€ € +€€€€ +€€€€€€ € €€€€ +€€€€0€€€€€€ +€€€€ €€€ €€€€€€€€€€€€ €€€€€ €€€€ +€€ +€€€€€ € €€€€ +€€€€€€€€€€€€€€€€€€€ +€€€€€ €€€€ €€€€€€€€€€ € +€€€€€€ €€€€ € €€€€€€€€ € +€€€€€€€€€ €€€€€€ €€ € +€ € € € +€€€ €€€ € +€ € € €€€€€ € +€€€€ € €€€€€€ € +€€€ €€€€€ +€ €€€ €€€€€ €€€€€€€€€ +€€€€€€€€ € €€€€€ +€ €€€ €€€€€ €€ €€€€€€€€€€€€€€€€€€€€ €€€€€€€€ +€€€€€€€€€€€€€€€€ €€€ € € €€€ € +€€€€€€€€ €€€€€€€€€€€ +€€ +€€€ €€€ €€ €€€ €€€€ €€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€ €€€€€ € €€€€ €€€€ € €€€€€ +€ €€€ €€€€€€€€€€€€€€ €€ €€€ € € +€€€€€€€ +€€€€€€€€€€ €€€€€ +€€€€€€ €€€€€ €€€€€ €€€€€ +€€€€€€€€€€€ +€€€€€€€ €€€€€€ € €€ €€ €€€€ +€ €€ €€€€€€€€€ €€€ €€€€€€€€€€€€€ +€€ € +€€€€€€ €€€€€€ €€ €€€€ €€€€ €€ €€ €€€ €€€ +€€€€€ €€€ €€€€€€€ €€€€€€ €€€ +€ € € +€€€€ €€€€ €€ €€€€€€ € €€€€ +€€€€€€€€ €€€€€€€€€€€€€€€€€€€€ +€€€ €€€€€ +€€€ €€€€€ € €€€ €€ +€€€€ € €€ € €€€€€ €€€€€€€€ €€€€€€€€€€€€€€ €€€€ €€€€ €€€€€€€€ €€€ € €€€€ €€€€€€€€€€€€€€€ €€ +€€€€€ €€€€€ € €€€ € €€€€€ +€€€€€ €€€€€€€€€ €€€€€€€€ +€€€ € €€€€€€€€€€€€€€€ € €€ €€€€€€€€€ +€€ €€€€€€ €€ €€ € +€€€€ €€€€€€€€€€€ +€€€€ +€€€€€€€€€ €€€€ €€€€€€€€ € €€€€ +€€€€€€€ €€€€ €€€€€€€€ € €€€€ €€€€€€€€ €€€€€ €€ € € +€€€€ €€€€€€ € € €€€€€€€ € €€€ €€€€ €€€€ €€ €€€€€€€€€ +€€€€€€€€€€ +€€€€€€€€€€€ €€€€€ €€ +€€€€€€€€ € € €€€€€€ €€€€€€€ €€€€ €€€€ €€€€ €€€€€€€€€€€€€€ €€€€€ €€ €€€€€€€€€ €€ €€ €€€€ € €€€€€€ € € €€€€€%€€€€ €€€€€€€ €€€ € €€€€€ €€€€€€€ €€ €€€€ € €€€€€€€€€€€€€€€€ € €€€€€€€ € € +€ +€€€€ €€€ €€€€ €€€€€€€ €€ €€€€€ €€€€€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€€€€ €€€€ € €€€€€€ €€€€€€€€€ +€ €€ €€€ +€€€€€€€€€ €€€€€€€€€ €€€€€ +€ €€€€€ +€ €€€€€€€€ +€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€ € € +€€ €€€€ €€ €€€€€ €€€€€€€€€€ +€€€ € €€€€€"€€ €€€€€€€€€€€ €€€€€€€€€€€€€€ €€ € €€€€€€€€€€€ +€€€€€ €€€€€€€€€€€€ € +€ €€€€€€€€€€€€€€€€€€€€€€€ €€€ € €€ €€€ +€ €€€€ € +€€€€€ €€€€€€€€€€€€ +€€€€ +€€€€€€ € €€€€€ €€€€€ €€€ €€ €€€€€€€€€ €€€€€ €€€ €€ € €€€€€€€€€€€€ € +€€€€€€€ € +€€€€ €€€€€€€ +€ €€€€ €€ € +€€€€ €€€€€ € +€€€€ +€€€€€ €€€€ €€€€€€ € € €€€€€€ €€€€€€€€€ €€€€€ €€€€€€€€€€€€€ €€€€€€€ €€€ €€ € €€€ +€€€€€€ €€€€€€€€€€€€€€€ €€ €€€€ €€ +€€€€€€ €€€€€€ €€€€€€€ +€ €€€€ €€€€€€€€€ €€€€ €€€€€€€€€€ €€ €€€€ €€€€€€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€ €€€€€€ €€ +€€€€€€ +€€€ €€ +€€ +€€ €€€€€€€€ +€€€€€€€€€ +€€€€ € € €€ €€€€€€€€€€€€€€€€€€ €€€€€€€ € €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€ €€€€€ +€ €€€€€€€ +€ €€€€€€€€ € +€€€ €€€€€H€J€#€€€€ € €€€€€€€ +€ € €€ € €€ +€€€€€€€€ +€ €€€€€€ €€€ €€€ € € €€€ €€€€ +€€€€ € € € +€€ €€€€€€€€€€ € €€€ € €€€€€€€€€ €€€€€€€€€€€€ € € €€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€ €€€ €€€ €€€€€€€€€€ +€€ €€€€€ €€€€ +€€€€€€€€ € € +€€€€ €€€€€€€€€€€€€ €€€€€€€€€€€€€€€€ €€€€€ €€€€€€ € +€€€€ €€€€ €€ €€€ €€ €€€€€ €€€€€€ €€ € €€€€ €€ €€€€ €€€€€€€€€ +€€€ € €€€ €€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€ €€ €€€ €€€€€€ €€€ €€€ €€€€€€€€ € €€€€€ €€€€€€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€€€€€€€€€€€€ €€€€€€!€€€'€ +€€€€ € €€€€€€ €€€€€€€€€ €€€ €€€€ €€€ €€€€ +€ € €€€€ €€€€ €€€€€€€ +€ €€ +€€€€€€€ €€€€€€€€€€€€ €€ +€ €€ €€€€ €€€€€ €€€€€€€€€€€ € € €€€€ +€ € € €€ €€ +€€€€ €€ +€€€€€€€€ €€ €€€€€€€€€€€€€€ €€€€€€€@€K€$€€€ €€€€ € €€€€€€€€€ €€€€€ €€€€€€ €€€€€€€€€€€€€€€€ €€ €€€€€ +€ € +€€€€€€€€ +€€€€€€€€ +€ €€€ +€€ €€€€€€€€€€€€€€€ €€ €€€€€€ €€€€€ €€€ €€€€€€ €€€€€€ € € €€€€ +€ € +€ € € € +€ €€€€€ €€ +€€€€ +€€€ €€€€€€€€€€€€€€€€€€€€€ €€€ € €€€ €€€€ € €€ €€€€ €€ +€ €€€€ €€€€€€€€€€€€€ €€€€€€€ €€€ €€€€ +€€ €€€€€€ +€€ €€€ €€€€€ €€€ €€€€ +€€€€€€€€ €€€€€€€€€€ +€ €€€ € €€€€€€€€ €€€€ €€€ €€€€€ €€€€ € €€€€€€€ € €€€ €€€€€ € €€€€€€ €€€€€€€€€€€€€€ €€ €€€ €€€€€€ +€€ €€€€ € €€ +€€ €€€€€ €€€ €€€€€€€€ € €€€€€€€€€ € € €€€€ €€€€€€€€€€ €€ € +€€€ €€€€€€€€€€€€€€€€€€ +€€€€€€ +€ €€€€€€€€€€ €€€€€€€€€ €€€€€€€€€€€€ €€€€€€€ +€€€€€ €€€€ €€€€€€€€€€€€€€€€€€€€€€€ €€ +€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€ €€€ +€€€€€#€"€ €€ € €€ €€€€€€€€€€€€€ €€€€€€€€ € +€€€€€€€€€€€ €€€ +€€ € €€€ €€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€ €€ €€ +€ +€€€ +€ €€€€ +€€ €€ €€€€€€€€€€€€€€€ € € €€€€€ € €€€€€€ +€ +€€ €€€€€€€€€€€ €€€€€€€ €€ €€€€€€ € +€ €€€ € +€€€€€€€€€€ €€€€ € +€ €€€€ €€ €€ €€€€€ €€€€€€€€€€€€€€€ €€€€€ €€ €€€ €€ €€€€€€€€ +€ €€ €€€€€€€€€ +€€€€€ €€ € € € € +€ +€€€ €€€€€€€€€ € €€€€€€€€€€ +€ €€€€ +€€€€€€€€ €€€ €€€€ € €€€ €€€€€€€€ €€€ +€€€€€€ +€€ €€€€€ €€ €€€€€€€€€€€€€ € €€€ € €€€€ +€€€€€€€€€ €€€€€€€€ €€€€€€€€ € €€ +€€ €€€€€€€ €€€€€€€€€€€ €€€€ +€€€€€€€ € €€€€€€€€€€€€€€€€ € €€€€€€€€ +€€€€€€€€€ €€€€€€€€€ +€ €€€€€€€€€€ €€€€€€ €€€€ +€ €€€€ +€ €€ € €€€€ €€€€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€ +€ €€€€€€ €€ €€€€€ € €€€ €€€ €€€€€€€ €€€€€ +€€€€€ €€€€€€€€€€ €€ €€ +€€€€€ +€€ €€€€€€€€€ € € € € €€€€€€€ +€ €€€€ € €€€ € +€€€€€€ €€€ €€€€€€€€€€€€ €€€€ € +€€€ €€€€ €€€€€ €€€€€ +€€€€€€€ +€€€€€ €€ €€€€€ €€ €€€ +€€ +€€ +€€€€€ €€€€€€€€€ €€€€ €€€ €€€€€€€ € €€€ €€€€€€€ € +€€€€€€€€ €€ +€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€ +€€€€ €€ € €€ +€€€ €€€€ € €€€€€€€€€€€€ €€€€€€€€€€€€€€ €€€€€€ €€€€ €€€€€ +€€€€€€ €€€€ +€€€€€€€€€€€€€€€€€€ €€ €€€€€€€€€€€€€€€€€€€ €€€ € +€€€€€ €€€€€ €€€€€€€€€ €€€€ +€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€ €€€€€€€€ +€€€€€€€€€€€ €€€€€€€€€€ € € +€€€€€€€ € +€ €€€€€€€€ €€€ €€€€€€ €€ +€ +€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€ € €€€€ €€€€€€ € +€€€€€€€€€€€ €€€€€€ € € +€€€€ €€€€€€€ €€€€ € €€€€€€ €€€ +€€€€ € € €€€€€€€€€€ +€ +€€€ € € +€€€€€€€€€€ €€ €€€€€€€€€€ €€€€€ €€€ € €€€€€ €€€€€€€€€€€ €€ € €€€€€€ €€€€€€ +€ €€€€ € €€ € +€ €€€€€ €€ €€ € +€ +€€€ €€ €€€€€ €€ €€ €€€€€€ €€€€€€€€€€ €€€€€€€€€€€ €€€€€€€ €€€€ +€€€€€ +€€€€ €€€ €€€€ €€€ € +€ +€€€€€€€€€ €€€€€€€€€€€€€€€€ €€€€€€€€€ €€ €€€€€€€€ +€€€€€€€€ €€€€€€€ € €€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€€€€ +€€€€€ €€€€€€ +€€€€€€€€€€ €€€€€ €€ €€€€ +€ €€€€€€€€€€€ €€€€€ € +€ €€€ €€€€€€€€€€€€ €€€€€€€€€€€€ +€ € €€€€ €€€€€€€ €€€€ € €€€€ +€ €€€€ € €€€€ €€€€€€€€€€ +€ €€€ €€€€€ €€€€€ €€€€€€€€ €€€ +€€€€ +€ € +€ €€€€€€€ € €€€ €€€€ €€€€€ +€€ €€€€€€€€€€€€€€€€€ €€€€€€€€€€€ +€ €€€€€€€€€€€€€€€€€€€€ €€€€ €€ € €€ €€ +€€€€€€ € +€€€€€€€€€ €€€€€€€ €€€€€€€ €€€€€€€ €€€€€€€€€ € €€€€ €€€€€€€€ €€€€€€€€€€€€€ €€€€ €€€€€€€€€€ € €€€€€€€€€€€ € € € € €€€ €€€€€€€€€€€€ €€€€€€ €€€ €€€€€€€€€€ €€€ € €€€€€€€€ €€ +€€€€€€€€€€ €€€€€€€€ €€€ €€€€€€€€€€€€€€€€ €€€€ € +€€€ +€€€€€€ €€ €€€€€€€€€ +€€€€€€€€€€ € € €€€ +€€€ +€ €€€€€€€ €€ €€€€€ €€€€€€€€ € +€€€€€€€ +€€€€€€€€€€€€€€€ +€€€€ €€€€€€€ +€€€€€€ € €€€€€€€€€€€€€€ €€ €€€€ +€€€€€€€€€€€€€€€€€ €€€€€€€ +€€€€€€€€€€€€€€ €€€ €€€€€€€€€ € €€€€€ €€€€€€€€€€€ €€€€ €€€€€€ €€€€€€€€€ €€ € €€€€€€€€€€ € €€€€€ €€€€ €€€€€€€€€€€€ € +€€€€€€€€€ +€€€ €€€ €€€€€€€€€€€ +€€€ €€ €€€€€€ €€€€ €€€€€€€€ € €€€ € €€ € €€€€€€€€€€€€ €€€€ € €€€€€€€ +€€€ €€€ €€€€ +€€€€ € +€ €€ €€€€€€€€ +€€€€€€€€€€€ € +€€ € €€€€€€ +€ € €€€€ +€€€€€ €€€€€€€€€€€€ +€ €€ €€€ €€€ € €€€€€ +€€€€€ € +€€€€€ +€ +€€€€€€€ +€ €€€€€€ €€€€€€€€€€€€€€€€€€€€ €€ €€€€€€€€€€€ €€€€€ €€ € €€€€€€ €€€€€ +€€€ € €€€€€€€ €€€ €€€€€€ €€ €€ +€€€€€€€€€€€€€€€€€€€ +€ €€ € +€ +€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€ +€€€€€€€%€€€ €€€€ €€€€ +€ €€€€€€ +€€€ € €€€ €€€ € +€€ € +€€ €€€€ €€€€€€€€€€€ €€€€€€€€€€ € +€ +€€€ €€€ €€€€€€€€€€€€€€€€€ +€€€€ €€ €€€€€€ €€€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€€ €€€€€€€ € €€ €€€€€€€€ €€ €€€€€€€€€€€€€€€€€€€€€€ €€ +€ €€€€€€€€€€€ € €€€€€€ +€ +€€€€€€ €€€ €€€€€€ €€€€€ € €€€€€€€€€€ €€€€€ €€€€€€€€ +€€ €€€€€ €€€ €€€ €€€ €€€€€€€€€ € €€ € €€€€ +€ +€€€€€ € €€€ € € +€€€€€€€€ €€€€€€€€ €€€€€€€€€€ €€€€€€€ +€€ +€€€€€ +€ €€€ € €€€€€ €€ +€€ +€€€€ € €€€€€ € €€€€€€€€€€€€€€ €€€€ +€€€ €€€€ €€€€ +€€€€ €€€€€€€€€€€€€€€€€€ € €€€€ +€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ €€€€ +€ €€€€€€€€€€€€€€€€€ €€€€ € € € € € +€€ €€€€€€€€€€€€ €€€€€ €€€ €€€€ +€ €€€€€€€ +€€€€€€ €€ €€ +€€€€€€€€€€ €€€€€€€ +€€€€ +€€€€€'€€€€€€€€€€€ €€€ +€€€€€€ €€€€€ €€ +€€€€€€€€€€€€€€€€€€€€€€€€ €€€€ € € €€ €€€€€€€€€ €€ € €€€€€€€ €€€€€€€ €€€€€ € €€€€€€€ €€€ €€€€ €€€ €€ € €€€€ +€ € €€€€ € € €€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€ €€€€€€€€€€€€€ €€€ €€€€€€€ +€ € €€€€€€€€€ +€ €€€€€€ €€€€ €€€ € €€€ € +€ +€ € € € €€€€€€€ €€€€€ +€ €€€€€€ €€€€€€€€€€€€€€€€€ €€€€€€€€ € €€ € € €€ € € +€ +€€ +€€€€€€€€€€ €€€ €€ €€€€€ €€€€€ +€€€€€€€€€€ € +€€€€€€€€ €€€ €€€€€€ €€€€€€€€€ €€ €€€€€ €€€€€€€€€€ +€ € €€€€€€€€€ +€€€€€€€€€€€€€ €€€€ +€€ €€€€€€€€€€ €€€€ € € +€€€€€ € €€€€€€€€€€€€€€€€€ +€€€€€ €€€ €€€€ €€€€€€ €€€ €€ €€€€€€€€ €€€€€€€€€€ €€€ +€€€€€€ €€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€ €€€ €€ €€€€€€€€€ € € € €€ € €€€€€€ €€€ €€ €€€€€€€€€€€€€€%€€€€€€€€€€€€€€€€€€ €€€€€€€ +€€€€€€€€€€€€€€ €€€€ €€€ € €€€€€ €€€ €€€€€€ +€€€€€ € €€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€ € €€€€€€ € € €€€€€€ €€€€€€€€€€€€€€€€ €€€€€€€€ €€€ +€€€ +€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ +€€€€€€€€€€€€€€€€€€€ €€ +€€€ +€€€€€€€ €€€€€€€€€€€€ €€ +€€ €€€ €€€ +€€€€€€€ €€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€ € +€€€€€€€€ €€ €€€ +€€€€€€ €€€€€€€€€€€€ +€ €€€€€€ € €€€ +€€€€€€€€€€€€€€€€€€ € €€€€€€€ € +€€€€ €€€€ €€€€€€€€€€€€€€€€ €€€€€ €€€€€€€€€€€€ €€ €€€ €€ +€€€€€€€€€ €€€€€€€€€ +€€€ +€€€€€€€€ € €€€€€€ +€ €€€ €€€€€ € € +€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€ +€€€€€€€€ € €€€ €€€ €€€€€€€€ +€€€€€€€ € €€ +€€€€€€€€ €€€ €€€ +€€€ €€ € € €€ €€€€€€€€€€€ € €€ +€ €€€€€€€€ +€ €€€€€€€€€€€ € €€€ €€€€€€€ € +€€ €€€€€€€ +€€€€€€€€ €€€€ €€€€€€€€€ € €€€€€€€€ €€ €€€€€€€ €€ €€€€€€€€€€ €€€€€€€ €€€€€€ €€€€€€€€€€€€€ €€€€ €€€€€€€ €€€€€€€€€ € +€€ €€€ +€ €€€€€€ €€€€€€ €€€€ € €€€€€€€€€€€€€€€€€€€ €€€ +€ +€€€€ +€€€ +€€€ +€€€€€€ €€€€€€€€€€€€€€€€ € €€€€ €€€ +€ € €€ €€€ € €€€€€€€€€€€€€€€€€€€ €€€€€ €€€ +€€€€€€€€€€€€€€ +€€ +€ +€€€€€€€ €€€€ €€€ +€€€€€€€€€€€€€€ € € €€€ +€€€€ €€€€€€€ €€ €€€€€€€ € €€€ € € € €€€€€ +€ €€ +€€ €€€ €€€€€€€€€€€€€€€ €€ €€€€€€ €€€€€€€€€€€€ € €€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€€ € € €€€€ €€€€ €€€€€€€€€ €€€€€€€€€€ €€ €€€€€ € €€€ +€ €€ +€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€ € €€€€€ €€ +€€€€€€ €€€€€€€€€€€€€€€€€€€€€€ +€€€ €€ €€€€€€€€€€€ €€€€€€€€€ €€€€€€€€€€ €€€€€€€ € €€€€€€€€€€ +€ €€€€ +€€€€€€€€€€€€ €€€ €€€€€€€€€€ €€€€€€€€€€€€ €€€€€€€€€€€ +€€€€€ €€ € €€€€ € €€€€€€€€€€€€€€€€€€€€€ €€€€ € €€€€€€€ € €€€€€ €€€€€ €€€ € +€ € +€€€€€€€€€€€€€€€€ €€€€€€€€€ €€€€ €€ €€€ +€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€ € €€€€€€ +€€€€€€€€€€ €€€€€€ +€€€€€€ €€€€€€ € €€€ €€€€€€ +€€ €€€ € €€€ € €€€€€€€€€€€€ € €€€€€ €€€ €€€€€€€€€€€€ €€€ +€€ €€€€€ +€€€€€€€ €€€€€€€ € €€€€€€ +€ €€€ €€€€€€ € €€€€€€€€€€€€€ +€€€€€€€ +€€ €€ €€ +€€ €€ €€€€€€€€€€€€€€€€€€€ €€ € €€€ €€€€ +€€€€€€€€€€€€ +€€ € € €€€ €€€€€€€€€€ €€€€€€€€ +€€ € +€€€ €€€#€€ +€€€€€€€€€€€€€€€ €€€€€€€€€€€€ € +€€ +€€ €€ +€€ €€€€€€€€€€ €€€€€€€€ €€ +€€€ €€€ +€€ €€€€€€€€€€ €€€€€€€€€€€€€ +€ +€€ €€€€ €€€€ €€ €€€€€€€€€€€€€€ +€€€€€€€€€€ €€€€€€€€€€€ €€€€€ € €€€€€€ € €€€€€€€€€€€€€€€ €€ € € € € €€ €€€€€€€€€€€€€€€€ +€ €€€€ €€ €€€€€ €€€€€ €€€€€€€€ € +€ +€€€€€€€€€€€€ € €€€€€ € +€€€ € €€€€€€ € €€ € +€€€€€€€€€€€ €€€€€€€ €€€€€€€€€ € €€€€€€€€ +€€ €€ € +€ €€ €€€€€€ €€€€€€€€€€€€€€€ +€€€€€€€€€€€€ €€€€€€€€€€€ €€€ € +€€€€ +€ € €€€€€€€ €€€€€€€€€€€€€ € €€€€€€€€€ € €€ €€€€€€€ +€€€€ € +€€€€€€€€ €€€€€€ €€ +€ €€€€ €€€€€€ +€€ € €€€€€€€ €€€ €€€€€€€ € € €€€ €€€ €€ €€€€€€€€€€ €€€€€€€€€€€€€€€ €€ €€ €€€€€€€ +€€€€€€€€€€€€€€€ €€€€€ €€€€€€€€€ €€€ +€€€€€€ € € €€€ €€€€€€ € +€€€€€ €€€ +€€€€€€€€€€€€€€ +€€ €€€#€€€€€€ €€€€€€€€ €€€€ €€€€€ €€ €€ €€€€€€€€ +€€€€ € €€€ +€€€€€€€€€€€€€€€ +€€€€€€€€€€€€€€€€€ € €€€€€€€€€€ €€€€€€€ +€€ +€€€€€€€€€ +€€€€ €€€€€€€€€€€€€€€€ +€€€€€€€€€€€€€ €€€€ €€€ €€€€€€€€€€€€€ €€€€€€€€ +€€€€€€€ +€€€€€ €€€€ +€ €€€ € €€€ +€€€€ +€€€€€€€€ € €€€€ €€€€€€€€€€€ €€€€ € €€€€ €€€€€€€€ +€ €€€€ €€&€€€€€ €€ €€€€€€€€€€€€€ +€ €€€€€ €€€€€€€€€€€ € € +€€€€€ €€€€€€€€€ € €€ +€€€ €€€ € €€€€ €€ €€€€€€€€ +€€€€ €€€€€€€€€ € +€ €€ €€€ +€€€€ €€€€ €€ +€€€€€€€€ €€€€€€€€ € €€€ €€ €€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€ €€€ €€€€ € +€ €€€€€€€ €€ €€€€€€€€€€€ +€€€€€ €€ +€ +€€ €€€€€ €€ € €€ €€€€€ €€€ €€€ €€€€€€€€€€€€€€ +€€€€ €€ € €€ €€€€€€€€€€ €€ € €€€ €€ € €€€ €€€€ € € €€€€ €€€ +€€€ €€€€€€€€€€ +€€€€ €€€€€€€€€€€€€€€€€ €€€€€€€ +€€€€€ €€€€€€€€€ €€€€€ €€€€€€€€€€€€€€ +€€€€€€€€€€€€ €€€€€ €€€€€€€€€€€ €€€ €€€€€€€ +€ €€ € €€ €€€€€ +€ €€ €€€ € €€€ € €€€ +€€ +€ € +€€€€€€ +€ +€€€€ € €€€€€ €€€ €€€€€ €€€ €€€€ €€€€€€€€€€€€ €€€ €€€€ +€€€€€€ €€€€€€€€€€ +€€€€€€€ €€ +€€€€ € €€€€€ € €€€ € €€€€€€ €€€€€€ €€€€€€€€€€€€€€€€€€€ €€€€€ €€ €€ € €€€€€€€€€ +€€€€€€€€€€ +€€ €€€€€€€€€€€ +€€€€€€ €€€€€ +€€€ €€€€€ €€ €€€€€ +€€ €€€ €€€€€ €€€€€ €€ €€ +€€€€€€€€ +€€ € +€€€€€€€ €€€€€€€€€€ €€ € +€€€€€€€€€€€€€€€€€ € €€€ €€€€€€€€€€€€€€ € €€€€€€ € €€ €€€ €€ €€ €€€€€€ € € €€€€€€€€€€€€ €€€€€€€€€€€ €€€€ € €€€€€ €€€€€€€€ €€€€€€€€€ +€€€€€ €€€€ € +€€ +€€ € €€ €€€€€€€€€€€€€ € €€€€ €€€€€€€€€ €€ €€€€€€€€€€ €€ € €€€ €€ €€€€€€€€€ € €€€€€€€ €€€€ €€ €€ €€€ €€€€ +€€ € €€€ +€ €€€€€€€€ €€€€€€€€€€€ €€€ +€€€€€ +€€€ €€€€€ +€€€ +€€€€€€€ +€€€€€€€€€€ €€€ €€€ €€€€ +€€€€€€€ +€€€ € € €€ €€€ €€€€ €€€€€ €€€€€€€ € €€ €€€€ €€€€€€€ €€€€€€€€€€€€ € € +€€€€€ €€€ €€€€€€€€€€€€€€ €€€€€€€€ +€€€€€ €€€€€€€€€€€€€€ €€€€€€€€ €€€€€€€€€€€€€€€€ €€€€€€€€ +€€€€ € €€ €€€€€€ €€€€€€€€€ €€ +€€ € €€€€€ €€€€€€€€€€€ +€€€€€€€€€ €€€€€€€€€€ €€€€€€ €€€€ €€€€€€€ €€€ €€€€€€€€€€ +€ €€ €€€€€€€€€€€€€ €€ €€€€ +€€€€€€€€€€€€€€€ € +€€€€€€€€€€ +€€ €€€€€€€€€€€€€ +€€€€€ €€€€ € +€€€€€€€ €€€€€€€€€€€€€€€ € €€€ €€ € +€€€€€€€ € +€ € €€ € €€€€€ €€€€€ €€€€€€€€ € €€€ +€€€€ € €€€€€€ +€ €€€€ €€€€ +€€€€€ €€€ € €€€€€€€ €€€€€€€€€€ €€ € +€€€€€ €€€€€€€ €€€€€ € € €€€€€€€€ +€ +€ € €€€€ +€€ €€€€€€€€ €€€ € +€€€ €€€ €€€€ € +€€€ €€€€€€€€€€€€€€ +€€ €€€ €€€€ € €€€€€€€ € €€€ €€€€€€€ +€ € +€€€€€€ +€€€€€€€€€ € €€€€€ €€€ €€€ €€€ +€ +€ € €€€€€€€€€€ +€ €€€€€€ € €€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ € +€€€€ € €€€€€€€€€€€€€€ +€ €€€€€ €€€ +€€ €€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€ €€ € +€€€€€€€ €€€€€€ € €€€ +€€€€€ €€€€€ +€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ € €€€€€€€ €€€€€€€€€ €€€€€€€€ €€€€€€€€€ +€€€€€€€€€ € +€ +€€€€€€€€€€€€€€€ €€€ +€€€ €€€€€ +€€€€ €€€€€€ +€€€€€€€€ € € €€€ € €€€€ +€€€ €€€ € € € +€ €€€€ €€€ € € €€€€€€ €€€€ €€ €€€ €€€ € +€€€€€ €€€€€€€€€€€ €€ +€ €€€€€ +€€€ €€€€ €€€€€ +€€€ €€€€ €€€€€ +€€ € €€€€€€€€ +€€€ €€€€ +€€!€ € €€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€ €€!€ €€€€€€€ €€€ +€€ +€€€€€€€€ €€€€ €€€€€ +€€€€€€€€ €€ +€€€ €€€€ +€€€ €€€ €€€€ €€€€€ €€€€€€€€€€€€ €€€€€€€€€€€€€ +€ +€€€€€€€€ €€€€ +€ €€ +€ € €€€€€€ € €€ €€€€€ €€€€€€€€€€€€ € €€€€€ €€€€€€€€€€ €€€€€€€ €€€€€€ €€€€€€€€€ €€€€€€€€€€ +€€€ €€€€€€€ +€€€€€ €€€€€€€€€€€€ €€€€€€€ €€€€€€€€€ €€€€€€ €€€€€€€ +€€€ € +€€€€€€€€ € € +€€€€€€€€€€ €€ €€€€€€€€€€€€ €€€€€€€€€ +€€€€€€€€€€€ +€€€€ €€€ €€€€€€ € €€€€ € € €€€€€€€€ €€€ €€€€€€€€€ €€€ €€€€ €€€€ €€ €€€€€€€€ €€€€€ €€€€€ €€€€€€€ +€€€€€€€€€€€€€ € +€€€ € +€ € +€€€€€€€€€€€€€€ €€€€€€ +€€€€€€€€€ €€€€€€€€€ +€€€ €€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€ €€ +€€€€€€€€€ €€€€ €€€ €€€€€€€ +€ €€€ €€ €€€€€€€€ +€ € €€€€€ €€€€€€€ +€€€€€€ €€€€ +€€€ €€€ €€€€€€€€€€€€€€€ €€€€€€ +€€€€€€€€€ €€€ € €€€€€€€€ €€ €€€€€€€€€€€€€€ €€ +€ €€€€€ +€€ €€€ €€€€€ +€€ € €€ €€€ €€€€€ +€€€€€ €€ +€€€€ € €€ +€€€€€€€ €€€€€€€ +€€€€€€€ €€ €€€€€€ +€ +€€€ €€€€€ €€€€€€€€€€ +€ €€ € +€€€€€ €€€€ +€€€€€ € €€€€ €€€ €€€€€ +€€€€€€€€€€€ €€€€€ € €€€€€€ € € €€€€€€€€€ €€€€ € €€€€€€€€€€€ €€€€ €€€€€€€€€€€€€€€€€€€ €€€ +€€€ € € € €€ +€ €€€€€€€€€€€€€€€€€€€ +€€€€€€ € €€€€ +€ +€€€€ € € €€€€ € +€€ €€€€€€€ €€ € +€€€ €€ €€ €€€€€ €€€€€€€€€€€€ €€€€€€€ € +€€€€€€€ €€ +€ €€€€€€ +€€€ €€€€€€€€ +€€€€€€€€€ €€€ €€€€€€€ +€€€€€€€ +€€ € +€€€ € € +€€€€€€€€€€€€€€€€€ €€€€ +€€€€ €€€ +€€€ €€€€€€€ € € €€€€ €€€€€ €€€ € € €€€ +€€€ +€€€ €€€€ +€€€€€ € €€€€€€ +€€€€ +€€ €€€ +€€€ +€€ +€€ €€ €€€ €€ € € €€€€€€€€€€€€ €€€€€€€€€€ € €€€ €€€€€€€€€€€€€€€ €€ €€€ € €€€€€€€ €€€€ €€€€€€ €€€€€€€€€€ € € €€ +€€ €€€€ €€€€€€€ +€€ +€ +€€€ €€€€€€€€ +€€ €€€ +€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€ € €€€ €€€€€€€€€€€ € €€€€€€€€€€€ € €€ €€€€€€€€€ €€€€€€€ € € €€€ €€€€€€ €€€€€€€€€€€€€€€€€€ +€€ €€€€ +€€€€ € € €€€€€ €€€€€€ € €€€€€€€€€€ €€€€€€€ €€€ +€€€€€€ +€€ +€€€€ €€ €€€€€ €€€€ €€€€€€€€ €€€€€€€€ +€€ €€€€€ +€€ +€€€€€€ +€€ €€€€€€€€€€€€ +€€€€€ +€€€ €€€€€€ €€€€ €€ €€ € € +€€€€ € €€€€€€€€€€€€ +€ +€€€€ € €€€€€€€€€€€€€ €€ €€ €€€€€ €€€ € €€€€€ €€€€ €€€€ €€€ €€ € €€€ +€ €€€€€ € €€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€ +€ €€€€ €€€€€€ +€€€€€€€€€ € +€€€€€€€€ €€€€€€€ € €€€ € € €€€€€€€€€ +€ €€€€€€ €€€ +€€€€€€€€€€€€ +€€€€ €€ € +€€€€ €€ €€€€€ €€€€ €€€ +€€ €€€€€€ €€€€ €€ €€€ €€€!€€ +€€€€€€€€€€€€€€€€€€€€€€€ €€ € € €€€ € €€€€€€€€€ +€ €€€€€€€ €€€ €€€€€€€€€€€€€€ €€ € €€ €€€€ €€€ € €€€€ +€€€€€€€ €€€€ €€€€€€€€€€ €€€ +€ +€€€€€€€€ €€€€€€€€ €€ €€€ €€€€€€€€€€ €€€€€€€€€€€€€ € €€€€€€ €€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€ € €€€€ +€€€€ €€€€€€€€€€€€€ € €€€€€€€€€€€€€ €€€€€€€€€€€€ €€€€€€ € €€€€€ €€€ +€€€€€€€€€€€€€€€€€ +€ € €€€€ €€€€ +€€€€€€€€ €€€€€ €€€€€ € €€€€€€ €€€€ €€ +€€ € €€€€€€€€€€€€ €€ €€€€€€€€€€€ €€€€€ €€€€€ +€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€ +€ € +€€€€ € €€€€€€€€ € €€ €€€ €€€€€€€€€€€€€€€€€€€€€ +€€€ €€ +€€ +€€€€ €€€€€€€€€€€€€€ +€€€€€€€€ €€€€ +€€€€€€€ €€€€€€€€€€ +€€€€€€€€€ €€€€€€ +€€€€€ +€€€ +€ €€ €€ € €€€€€€€€€ € €€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€ +€€€€ €€€€ €€€€€€€ €€€€€ €€€€€€€€€€€€€€ €€€ €€€€€€ +€€€€€€€ € € €€€€€€€€€€€€ +€€€€ +€€€€€€ +€€€ €€€€€€€€ +€ +€ € € +€€€€€€€€€€€€€€€€€€ €€ € € € €€€€€€€€€€ €€€€€€€€€€€€€€ +€ +€€€€€€€€€€ €€€€€€€€€€€€ € +€€€€€€€€ +€ +€€€€€€€€ €€ €€€€€€€€ €€€ € € €€€ €€€€€€€ € €€ €€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ €€€€ +€ €€€ €€€€€ € +€€€€€€€€€€€€ €€ +€ € €€€ €€ € €€ €€€€€ €€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€€€€€€€€ +€€€ €€€€€€€€€€€ €€€€€€€€€€€€ €€€€€€€ €€€€€€€€€ €€€€€€€€ € €€ € €€€€€€€€€€€€€€ €€€ €€ €€€€€€€€€ €€€€€€€€€€€€€€€€€ € €€ €€€ €€€€ €€€ €€€€€€€€€ €€€€€€€€€ €€€€€€€€€ +€€ €€€€€€€€€€€€€€€€€€ € €€€€€€€€ € €%€ €€€ €€ +€€ +€€ €€€ €€ +€€€€€€€€€€€€ €€ € € € €€€ €€€€€ +€ €€ €€€€€€€ €€€€€ +€€€€€ €€€€€€ €€€€€€€€ €€ +€€€€€€ €€€€ €€€€€ +€ +€€€€€€€€€€€€€ € €€€€€ €€€€€€€€ +€ +€€€€€€€€ +€ € €€€€€€€€€€€€€ € €€€€€€ +€€ +€€ €€€€€€ +€€€€€€€€ € €€€€€€€€ € € +€ € €€€€€ €€€€€€€€€€ €€ € +€€ € €€€€€€€€€€€€€ +€€€€€€€€€€ €€€€€ +€€€€€€ €€€ +€€€€€€ €€€€€ €€€€€€€€€ +€€ € €€€€€€€€ € €€€ €€€ €€€€€€€€€€€€€€ €€ €€€€€€€€€€€ € €€€€ €€€€€ € € € €€€€€€€€€ €€€€€€€€€€€€ € +€ €€€€€€€€€€€€€ € €€€ +€€€ +€€€€€€€€ +€€€€ € € +€€€ €€€€€ €€€ €€€€€€€ +€€€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€€€ €€€€€€€€€ €€€€ €€€€€ €€€€ €€€ € € €€€€€€€€€€€€€€ € €€€€ €€€€€€€ +€€€€€€€€€€ +€€€ € €€ €€€€€ €€€€€€€€€€ € €€€€€€€€ € € +€€€€€€ € €€€ €€€ €€€ €€€€€€€ €€ €€€€€€€€€ +€ €€€€€€ €€€€€€€€€€€ €€€€€€€ €€€€€€ €€€€€ €€€€€€€€€€ +€ € +€ € € €€€€€€€ € +€€€€€ €€€€€ +€€€€ €€€€€€€€ +€€ +€ €€€€€€€€ €€€ € € €€€€ €€€€€€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€€ +€€€€€€€€€ €€€€€€€ €€€€ €€€€€€€€€€€€€ €€€€€€€€€€€ €€€€€€ +€ €€€€€ €€ €€€€€€€€€€€€€€€€€€€€€€€€€€€ € €€€ €€€€€€€ €€€€ € €€€€ €€€€€€ €€€€€€€ €€ €€ € +€ +€€€€€€€€ +€€€ €€€€€€€ € € €€ +€€€€€€€ € +€ € €€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ € €€ €€€€€€€€€€€€€€€€€€€ € €€€€€€€€ +€€€€€ €€€€ €€€€€€€€€€€€ € €€€€€€€€€€€€€€€ €€€€€€€ €€€€€ €€€€ €€ €€ € € € +€€€€€€€ €€€€€€€€€€€€€€€€€ €€€€€€€ €€ €€€€€€€€€€€€ €€€ €€ +€€€€€€€€€€€ €€ €€€€ € €€€€ €€€€€€ € € €€€€€€ €€€ +€€€€€€€€€€€€€€€€€€€€€€ €€€ € +€ +€ €€€€€ € +€ €€ €€ €€€€€€ €€ €€€ € +€€€ € €€€€ €€€€€€€€ €€€€€€€€€€ +€ +€ +€€€€€€€€ +€ €€€€ €€€€€€ +€ € +€€€€ €€ €€€€ +€€€€€€€ €€€€€€€ €€€€€ € € +€€€€€€€€ € € +€ €€€€ €€ € €€€€€ €€€€ €€€€€€€€ +€€€€€€€€€€€€€ €€€€€€€€€€€€ +€€ €€€€ €€€€€€€€€ €€€€€ €€€€€€€€€€ € €€€€€€€€€€€€ €€ €€€€€€€€€€€ € +€€ € € €€€€€€ €€€€€€€ €€ €€ €€€€ €€€ +€€€€€€€€ € €€€€€€€€€ +€€€€€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€ €€ €€€ €€€€ €€ €€ €€€ €€€€ €€€€€€€€€€€€€€€€ €€ +€€€€ +€€€€€€€€€€€€€ €€€€€ +€€€€€€ €€€ €€€€ €€€€€€€€ €€€€€€€€€€€€€"€€€€€ €€€€"€€€€€€€ € €€€ €€€€€€ €€€€€€€€€€€€€€€ €€ €€€€€€€€€€€€ +€ €€€€€€€ +€€€€€€€€€€€€€€€€€€€€€€€€€€ € € €€€€€ €€€€ €€€€€€ +€ €€€ €€€ €€€€€€ €€€€ +€€€€€€ € €€€€€€ €€€€ €€€€€ €€€€€€€€ +€€€ +€€€€€€€€ € €€€€€€€€ € €€€€€€€€€€€ €€€€€ € €€ +€€€€€ +€€€€€€ €€ € €€€€€€€€€€€€€€ +€€€€€€ +€€€€€€€ €€€ € €€€ €€ €€€€€€€€€€€€€€ +€€ +€€€€€€€€€€€€ € +€€€ € +€€€€€€€€€€€€€€€€ €€€€€€€€€ €€ €€€€€€€€€€€€€€€ €€€ € €€€€€€€€€€€ €€€ +€€€€€€ +€€€€ +€€€€€€€€€€€€€€€€€€ €€€€€€€ €€€ €€€€€€ € €€€€€€€€€€€€€ €€€ €€€€ € +€€€€€€ €€€€€€ +€€€€€€€€€ € +€€ €€€€.€€€€€€€€ +€ €€€ € €€€€€€€ +€ €€€€€€€€€€€€€€€€€€€€€€€€€ €€€ €€€€ €€€€€€ € +€€€€€€ +€€ €€€ €€€€€€€€€€€€€€ €€ €€€ €€€€€ €€€ €€€€€€€€€€€+€'€'€!€€€ €€€€€€€ +€ €€€€€€€€€€€€€ +€€€ €€€ € €€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€ €€€€€€€ €€€ € €€€€ €€ €€€€€€€€€€€€ +€€€€€€ +€€ €€ €€€€€€€€€€€€€€€€€€€€€ €€€ € +€€€€ €€€ €€€'€€€€€€€€€€€ € € €€€ +€€€€ +€€€€€€€€€€€€€€€€€€€€€€€€€ € +€ € €€€€€€€€€€€€€€€€ €€€€€€€€€ +€ €€€€€€€€ € €€€ €€€€ +€€€€ € €€ €€€€€€€€€€ +€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€ €€€ € +€ €€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€ €€€€€€€€€ €€€€€€€€€ +€ €€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€ €€€ €€€€€€€€€€€€€ +€€€€ +€€€€ €€€€€€€€€€€ +€ +€€ €€€ +€€€€€€ €€€€ € +€€€€ €€€ +€€€€ €€€€€€ € €€€ €€€€€ +€ € €€€ +€€ +€ €€€€ +€€€ +€€ +€€€€€ €€€€€€€€ € €€€€€€ €€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€ +€€ €€€€€€ €€€€€ €€€€€ €€€€€3€B€A€-€€€€€€ € €€€€€€ €€€ €€€€€€€€€€€€€€€€ €€ €€€€€€€€€€€€€€€ €€€€€ €€€€€€€€€ +€€€€€€ €€ €€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€ € € +€€€ €€ €€€€€€€ €€ €€€€€€€€ €€€€€€$€€€€€€€ € €€€€€€€€ €€€€ € €€€€ €€€ €€€€€€€€€€€€€€€€€€€ €€ €€ €€€ +€€€€€€€€€ +€€€€€€€€€ €€€€ € €€€€€€€€€ € €€€€€€€€€€€€€€€€ € € €€€€€€€€€€€€ €€ € €€€€€€€€ €€€ +€€€€ €€€€€ € €€ €€€€€€€€€€ €€€€€€€€€€€€€€ € +€€€€ € €€€€€€€€€€€€€€€ € €€ €€€€ +€ €€€€€€€€€€€ €€€€€€€€ €€ +€€€€ +€€€€€€€€€€€€€€€€€€€ +€€ € €€€€€€ €€€€ €€€€€€ +€€€€€ €€€€ €€€ €€€€ +€€ €€€€€€ € €€€€€€€€€€€ €€€ +€€€€ €€ €€ +€€€€€€ €€€€€ € +€€€€€€€€€€€€€€ €€€€€ €€€€€€€€€€€€ € €€€ €€€€€€€€€€€ €€€€€ +€€€ €€€€€€€€€€ €€€ € € € €€€ €€$€>€Q€‹€y€E€"€€€ €€€€€ €€€€€ €€€€€€€€ +€ +€ +€€€ € €€ +€€ +€ €€€€€ +€ €€€€€€ €€€€€ +€€€€€€€€€€€€€€ € €€€€€€ €€ €€€€ €€€€€ +€ € +€€€ € +€€€€€€€€€€€€€€€€€€€€€€€€€€€ € €€€ +€€€€€ €€€ €€€€€€€€€€€€€€ €€ €€€ €€€€ €€€€€€€€€€€ +€ €€€€€ €€€€€€€ € €€€ €€€€€ +€€€€€€ €€€€€€ €€€€€€€ € +€€€€€€€€€€€€€ €€ € €€€€€€€€€€ €€€€€€€€ € €€ +€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€ +€€€€€€ €€€€€ +€€€€€€€€ €€€€€ €€€€ €€ +€€€ +€ €€€€ +€€€ €€€€€€€€ €€€ €€€ € € €€€ € +€ €€€€€ €€€€€€€€€ €€€€€€€€€ € €€ €€€ €€ +€€€€€€€€€€€€ €€€€€ € +€€€€€ €€ € €€€ +€€€€€€€€€€ € € €€€€ €€€€€€€€€€€€ € €€€€€€ €€€€ € €€€€€€€€€ €€ +€ +€ +€€€€€€€€€ +€€ €€€€ € +€€€€€€€€€€€€€€€€€€€€ €€ € €€€€ € €€€€ €€€ +€ €€ € +€€€€ €€€€€ € €€ € € € +€€€ +€€€€€ €€€€€€ €]€ô‚e‚,€å€1€%€!€€€€€€ €€€ € €€€€€€ €€€€€€€ €€ €€€€€€€€€€€€€€ €€€€ €€€ €€€€€ +€ €€€€€€€€€€ € €€€€€€ €€ €€€€ € €€€€ € €€€€€€€€€€€€€ €€€€€€€€€€€ € €€ €€€€ €€€€€€ +€€ +€€€€€€€€€ €€€€€€€€€€€€€€€€€ €€€€ +€€€ € €€ €€€€€€€€€ +€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€ €€€€€€€€€€€€€€€€€€€€ +€ € €€€€€€€€ +€€€€ €€€€€ € +€€€€€ +€€€€€€ €€€€€€€€€€ +€ +€€€€€€€€€€ €€€€€€€€€ €€€€ €€€€€€€€€€ €€€ € €€€ €€€€€€ € € +€ €€€ €€€€€€€ €€€€€€ €€€€€€€€€€€€ +€ €€€€€€€€€ €€€ € €€€€ € €€€€€€ €€€€€€€€ €€€€€€€€ €€€€€ € €€€€€ €€€€ €€€€€€€€ € € €€ € +€€ € €€€€€ +€€€€€€€ +€€€€€€ €€€€€€€€€€€ €€€€€€€€€ +€€€€€€€€€€€€€ €€€€€ € +€ +€€€€€€€€€ € € €€€€€ €€€€ €€€€€€ €€ +€€€€€€€€€€€€€ €€€€€€€ €€ €€€ +€€€€€€€€€€2€d›…R„°§€U€€€€€€ €€€€€€€€€€€€€€ €€€€€€ €€€€€€ €€€€€€ €€€€€€€€€€€€€€ +€€€€€€€€ €€€€€€ €€€€€ €€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€ € € €€ €€€€€€€ €€€ €€€€€€ €€€€ €€ +€€ €€ €€€€ +€ €€€€€€€ €€€ +€€€ +€ €€€€€€€€€€€ € € €€ €€€€€€ €€€€€€€€€€€ +€€€ €€ € +€€€€€€€€ +€€€€ €€€€ €€€€€€€€€€ +€ €€ €€ € €€€€€ +€€€€€€€€€€ € +€€ +€€€ €€€€€ +€€€ €€€€€€€ €€€€€€€€ +€ €€€€€€€€€ € € €€€€€€€ +€€€ +€€€€€€€€ €€ +€€ €€€ €€€€€€ €€ +€€€€ +€€€€€ €€€€ €€€€€€ €€ €€€€ €€€€€€€€€ +€€€€ €€€€ €€ €€€€€€ € €€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€€ €€€€ +€ €'€H€6€€€€€€€€€€€€€ €€€ €€€€€ €€€€€€€€€€€ €€€ +€ €€ €€€€€€ +€ €€€€€ €€ €€ +€€ €€ € +€€€€€ €€€€€€€€€€€ € € +€€€€€ € €€€€ €€€€ €€€€€€ +€€€ €€€ €€€ €€€€ €€€€ +€€€€€€€€€+€F€Ä»µ€Ç€@€€€€€€€€€€€€€€€€ €€€ +€ € €€€€€€€ €€ € +€€€€€€€€€€€ €€ +€€€€€€€€€€€ € €€ € €€€€ +€€€€€€ €€ €€€ +€ €€€ +€€€ € €€€€€ €€€€€€€€€€ €€€€€€€ €€€ €€€€€€€ € € +€€ €€ € €€€€€€ €€€€ €€€€€ +€€€€€€€€€€ €€ €€ € €€€€€€ +€€€€€€€€€ €€€€ € €€ €€€ €€ € +€€€€€€€€€€€€€ €€€€€ € €€€€€€€€€€ +€€€€ €€€€€€€ €€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€ +€€€ € €€€€€€€€€€€€€€€€€€ €€€€€ €€€€€ €€€€€€€€€€€€€€€€ +€€€€ € +€€€€ €€€€€€€€€€€€€€€ €€€€€€ €€€€€€€€€ €€€ €€ €€ €€€€€€ €€€€€€ €€€€€€€€€€/€w€c€&€€€€ €€€€ €€€€ €€€€€€€ +€€€ €€€€€€ €€€€ +€€€€ € €€€€ €€€ €€€€€€€€€€€€€€€ € €€ +€€€€ +€€€€€€ €€€€€€€ +€€ € €€ +€ €€€€€€€€€€€€€€€€€€€ €€€€€€ €€ € €€€ €€€€€€(€7€V€l€v€U€%€€€€€ +€€ €€€€€ €€€€€ € €€€€€€€ +€€€€€€€€€€€€€€€ €€€ +€€€€€ €€ €€€€€€€€ €€€€€€€€ € €€ € €€ +€€ €€€€ €#€€€€€€€€€€€€€€€€€€€€€€ +€€€€€ €€€€€€ €€€€€ € +€€€ €€€ € €€ +€ €€ €€€€€€€€€€€€ € €€ €€ +€ € €€ +€€€€€€€€€€€€ €€€€€€€€ €€ € +€€ €€€€ €€€€ € € +€€€€€€ € € € € +€ € €€ €€€€ € €€ €€€€€ €€€€€€€€€€€€€€€€ €€€€ €€€ +€€€€€€€€€ +€ € €€€€ €€€€€€ €€€€€€€€€€€ €€€ €€€ €€€ €€€€ +€€€€€€€€ €€€€€€€€€€€€€ +€ € €€ €€€€ €€€€ €€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€€ €€€ €€ €€€€€€€€€€€€€€€€€€€€€€ € +€€€€€€€ €€€€€€€€€€€ €€€€€ +€ €€€€ €€€0€)€ €€€ €€€ €€€ €€€ €€€€€€€ +€€€€€€€€€ +€ €€ +€€€€€€€€ €€€€€€ € €€€€€€ +€€€€€ € +€ €€€€€€€ +€€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€€ €€€€ €€ €€€€€€€ €€€€€€€€ +€€€€€€€-€/€'€%€€ €€ +€ €€€€€€ € € €€€€€€€€€€€€€€ €€ € €€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€ €€€€€€€€€€ €€€€€€ +€€ € € +€€€€ €€ € € +€€ €€€€€€€€ €€ €€ €€€€€€€€€€€€ € €€ €€€€€€€€ €€€€ +€€ €€€€€€€ €€ € +€€€€ €€€€ €€€€€€€€€€€ +€ € €€€ +€ € €€€ € € €€€€€€€ € +€ +€€€€€€ €€ €€€€€€€€€€ € +€€€€€€€€€€ € €€€ € €€€ €€€€€€€€€€ +€€€ €€€€€€€€€ +€ +€ +€€ € +€€€€€€€ €€ €€€€ €€€€€€€ +€ €€€ €€€€€€€€€€€€€€€€€€€€€ €€€€ € +€€€€€€ €€€€€€€€€€ € +€€€€ €€€"€€€€ €€€€€€€€€ +€€€€€€€€€€€ €€€€€€€€€€€€€€ €€€ +€ €€€€ €€€ €€€€€ € €€€€€ €€€€ €€€ €€€€€€€€€ +€€ €€ +€€€€ +€€€ € €€€ € +€ € € €€€€€€€€ €€€€€ €€ €€€ € €[€6€ €€€€ €€ €€€€€€€€€€€€€ +€€ +€€ €€€€ €€€€€ +€€€€€ +€€€€€ €€ € €€€€€€€€€€€€€€€€€ €€€€€€€€€€€€ €€€€€€ €€€€€€€€€€€€"€€€€€€€€€€ € +€€€ €€ €€€€ +€€€€€€€ €€ € € €€€€€€€€€ €€€€ € €€"€€ €€€€€€€€€ €€€ € +€€€€€ +€€€€€€€€€€€€€€ +€ € +€€€ €€€ €€€ €€€€€ €€€€ €€€€€€€€€€€€€€€ €€€€€€€€€ €€ +€€€€€ €€€€ € +€€€€€€€ €€€€ € € +€€ €€ € €€€ € +€€€ +€€€€ +€ +€€€ €€ +€€€€€ €€ €€€€€€ €€€€ +€€€ +€ €€€ +€€ € €€€€€ € €€€€€€€€€€€ €€ €€ +€ €€€€€€€€€ +€€€ €€€€€€€€€€€ +€ € € +€ € €€ +€ +€ +€ €€ € € +€€€ € € €€€€€€€ € €€€ +€€€€ €€€€€€€€€€€ €€€€€ €€€ € €€ €€€€ €€ € €€€€€€€€€€ €€€ € €€€ €€€€ €€€€€€ €€€€€€€ €€€€€€€ €€ € +€€€€€€€€€ +€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€€€€€€ €€ €€€ €€€€€€€€€ €€€ €€€€€€ €€€€ € €€€€ +€€€€€ €€€€€€€€€€€€€€€€€€ +€€ € €€€€€€€€€€€€€€€€€€€€€€ +€€€ € €€€€€€ +€€€€€€€ € €€€€€€€€€€€€€€ €€€ +€€€€€€€€ €!€€€€€€ € €€ €€€€€€€€€ €€ € €€€ €€€€€€ +€ +€ €€€€ € €€€€€€€€€€€€€ €#€€ +€€€€€€€€€€€€€€€!€€€€€€€€€ €€€€€€€€€€€ €€€ €€€ €€ €€€€€€€€€€€€€€ +€€€€€€€€ €€€€€€€€€€€€€€ €€€€€€ +€€€€€€€€ €€€ +€ €€€€€ €€€ € €€€ €€ € €€€ € €€€€€€€€€€€€€€€ €€ €€€€€€ € €€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€ €€€€€ € € €€ € €€ +€ € € € €€ €€€€€€€€€€ €€€€€€€€€ €€€€ €€€ +€€ € €€ +€€€€ €€€€€€€ € €€€€ € €€ € €€€ +€ €€ €€€€€€€€€€€€€ +€€€€€€€€€€€€€€€ € €€€ +€€€ €€€ €€€€€€€€€ €€€ €€ €€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€ €€€€€€€€€ € €€€€€€€€€€€€€€€€€ €€€€€€€€ € +€ €€€ €€€€€€€€€€€€ €€ +€ €€€€€ €€€€ €€€€€€€€€€€€€ €€ +€€€ €€€€€€€€ +€€€€€€€€€ €€€€€€€€€€ € € +€€€€€€ € €€€€€€!€€ €€€€ +€ € €€€€€€€€€€€ €€ €€€ €€€€€€€€€€€€€€ €€ €€ € €€ €€€€€€"€+€€€€€€€€€€€€€€€€ €€ €€€ +€€ € €€€€€€€€€€€€€€€€€€€€€€€€ €€€€€ €€€€€€€ €€€€€€€€€€€€€€ € +€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€ +€ € €€€€€€ €€ € €€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€€ €€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€ +€€€€€ € +€€€€€€€ +€€€€€€ €€€€€€€€€€€€€ €€€€€€ €€€ €€€€€€€€€€€€€€€ +€€ €€€€€€€ €€€€€ € € € €€€ €€€€ +€€€€€€ € €€€€€€€€€ €€€€€€€€ €€€€€€€€€ +€€€€€ €€€€€€€€€ € €€€€€ €€€€€€€€€ +€ €€€€€€€€ €€€€€€€ €€ €€€€€€€€€ +€ € €€€ +€€€€ +€€€€ €€ +€€€€€€ €€€€€€€€ +€ €€€€€ €€€€€€€€€€€ € € €€€€€€€ € €€€€ +€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€ €€€ +€€€€€ +€€ € €€€€€€ € +€€ € +€€ €€ €€ +€€€€€€€€€€€€€€ €€ +€€€€€ €€€ €€€ € +€€€€€ €€€€€€ €€ €€€€ € €€€€ € €€€€ €€€€€ €€ +€ €€ €€€€€€€€€€€€€ +€€€€€€ €€€€€€€€€€€€€ €€€€€€€€€€€€ €€€€€€€€ +€ €€€€ €€€ €€€€€€€€€€€€€€€€ €€€€€€€€€ +€€€€ €€€€€€€€€ € € €€ +€€€€€€€€€€€€ +€ € € +€€€€€€€ €€€€ €€€ €€€€€ € +€€€ €€ €€ €€€€€€ €€€€ € €€€€€€€€ € €€ €€€€€€€€€€ € € € €€€€€ +€€€€€ €€€ €€€€€€ €€€€ +€ €€€€€€€€€ €€€€€€€€ €€€€€€€€ €€€ €€€€€€ € €€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€ €€€€ € +€ € +€ € €€ €€€€€€€ €€€€€€€€€€€€ €€€€€€€€€€€€€ € €€€€ €€€€€€€€€€€€€ €€€€€€€€ €€€ € €€€€€€€ € €€ € €€€€€€ +€€€€€€ €€€ €€€ +€€€ € € +€€ €€€ €€€€€€€€€ €€€ +€€€€€€€€€€€€€€€€€€€€€€ €€€ € € €€€€€ €€€€€ € +€€ €€ €€€ €€€€ €€€€€€€€€€€ +€€€€ €€€ +€€€€€€ €€ €€€€€€€€€€€ €€€€€€€€€€€€€€€ €€€€€€€€€ +€ €€ €€€€€€€€€€€ €€ €€€€€€€€€€€€ €€€€€ € €€€ €€€ +€€€€€€€€€€€€€€€€€€€€€€€€ €€€€ € €€€€€€€€ €€ €€€€€€€€€€ +€€€€€€€€€ € €€€€€€€€€€€€€€ €€€€€€€€€€€€€ € +€€ €€ €€€€ € +€€ +€€€€ € € € € € €€€€ €€€€ +€€€€€ €€€€ €€€ € €€€€ €€€€€ +€€€€ €€€ €€ +€ +€€€€€€€€€€€€€€€€€€ +€€€€€ €€€€€€ € +€€€ € €€€€€ € €€€ € €€€€€€€€€€ €€€ € €€ €€€€ €€€€€€€€€ €€€€ +€ +€€ € € +€ €€€€€€€€ €€ €€€€ € €€€€€€€€€€€€€ +€ €€€ € €€€€€€ €€€€€€€€€€ +€€€€€€€€ +€€€€€€€€€€ € €€€€ €€€€ +€€€€€€€€€ +€€€€€€€€€€€€€€€€€€€€€ € +€€€€€€ € €€ €€€€€ €€€€€ € +€€€€€€ +€ € +€€€€€€€€€ €€ € €€€ €€€€€€€€€€€€€€€€€€ € +€€€ € +€€€ €€€€€€€ €€ €€€€€€€€€€€€ €€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€ € € €€€€€ €€€€€ +€ €€€€€€€€€€ € € €€€€€€€ +€€€€ +€€€€€€€€€ +€€€ €€ €€€ € €€€€€€ +€€€€€€€€€€€€€€€€€€€€€€€!€€€€€€€ €€ +€€€€€ +€€€€ €€€€ €€€€€€€€€€€€ €€€€€€€€€€€€ €€€ €€€€€ € €€ €€€€€€€ €€ +€€€ € €€€€€€€€€€€ €€€€ € €€€€ €€ +€ € €€€ +€ €€ +€ € €€ +€ €€€ +€ +€€ €€ +€€€€€€€ € € €€€ +€€€€€€€ € €€ € €€€€€€ +€€€€ +€€€€€ +€ +€€€€€ +€ +€€€€€€€ € € €€€ € +€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€€€€€€€€ € €€€€€€€€€"€€€€€€€€€€€€€€ € +€€€€€€€€€€ €€ € €€ €€€€€€€€ €€€€€€€€€€€€ €€ +€ €€ €€€€ € €€€€ €€€€€€€€€ +€€€€€€€€€€€€€ € +€€€€€€€€€€€ €€€ +€€€€€€ €€€€€€ €€€€€€€ €€€ € €€ +€€€€€€€€€€€€ €€€€ € +€ +€€ €€€€€ € +€€€€€€€€€€€€ +€€€ +€€ €€€€€€€€€€€€€€ €€€€€ €€€€€€€€€€ €€€€€€ €€€€€€€€€€€€ €€ +€€€€ €€€ +€€€€€€€€€€€ €€€€€€€€€€€€ € €€€€€€€ €€€€€€€€€€ € € €€€€ € € €€ €€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€€€€ € €€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€ €€ €€€€€€€€ +€€ € €€€ €€€€€€€€€€€€€ +€€€€€€€€€ € +€€ €€€€€€€€ +€ € +€ +€€€€ +€ € €€ €€€€€€€ € +€ €€€ +€€€€€€€€ +€€€€€€€ €€€ €€€€€€ €€€€€ € +€€ €€ €€€€€ €€€ +€€€ €€ €€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€ €€ €€ €€€€€€ +€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€€€€€€€ +€ €€€€€ € €€€ +€€€€ €€€ +€€€€€€€€€€ €€€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€€€€ +€ €€€€€ €€€ +€€€€€€ +€€€€€€€€€ €€€€ € €€€€€€€€€ € €€€€€€€€€€€€€ €€€ € €€€€€€€€ €€€€ €€€€ €€€€ +€€€€€ +€€€€€ € +€ €€ €€€€ € +€€€ €€€ € +€ €€€ € +€€€ €€€€€€€ €€€ € +€€€€ € +€€€€ €€€€€€€€ €€€€€€ €€ €€€€€€€€ €€€€€ €€€€€€€€€€ +€€€€€€€€€ €€€€€€ €€€€ € €€€ € +€€€ €€ +€€€€€€ €€ +€€ €€€€€€€€€€ €€€€€ €€€€ €€€€€€€€€€€ +€€ €€ +€€€€€€€€ €€€€€ €€ +€€ €€€€ €€€€€€€€€€€ € +€€€ € €€ +€€€€€€€€€€€ € €€€ €€€€€€€€€€€€€€€ € +€€€ +€€ € €€€€ € +€€ €€ € +€€€€ +€€ €€ €€€ +€€€€€€€€€€€€€€€€€ €€€€€€€ +€€€€€€€€€ €€€€€ +€ +€€ +€ €€€€€€ €€€€€€€€€€€ €€€ €€€€ +€€€€€€€€€€ € € €€€€€€ € +€€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€€€€ € +€€€€ €€€€€€€€€€€€ € €€€€ €€€€€€€€€€€€€€ €€€€€€ € €€€ €€€ €€€€€€€€€€€€€€€ € +€€€€ € €€€€€€€€€ +€€€€€€€€€ €€€ +€€€€€ €€ €€ € €€€€ €€€€€€€€€€€€ +€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€ +€€€€€€€ € +€€€€€€€€€ €€€€€ €€ €€€€€€ €€€€€€ €€€€€€€€€€ €€ +€€€ €€€€€ €€€€€€€€€€€€ €€€€ €€€€ €€€€€€€€ €€€€€€ € +€€ €€ €€€€€€€€€ +€€ €€€€€€€€€€ € +€ €€€€€€€€€€€€ € +€€€€ €€ €€€€€€€ € +€€€ €€€€ €€€€€€€€€€€€€€€€ +€€ €€€€€€€€ €€€€€ +€ € +€€€€ €€€ €€€€€€€ €€€€€ €€€€€€€€€€€ € €€€€€€€ €€€€€€€€€€€ € €€€€ +€€€€€€ €€€ €€€€€€€ +€ +€€€ +€€ € € €€€d€€ €€€€€€€€€€€€ €€€€ €€€€ +€€€ €€€€ €€€€€€€€€€€€€€ €€ € €€€€€€€€€€€€€ €€€€€€ €€ €€€€€€€€€€ €€€€€€€€€€ +€€ €€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€ € +€ €€ +€ +€ +€€€ +€ €€€€€€ € €€€€€€€ +€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€ +€€€€€€€€ €€€€€€€ +€€€ +€€€€€€ +€ €€€€€ €€€€ € €€€€ € € € €€€€€€€€ €€€€ €€€ €€€€ €€ €€€ €€€€€€€ +€€€ €€€€€ €€€ €€€€€€€€€€€€€€€€€ € +€€€€€€€ €€€€€ +€€€€€€ +€€€€€ +€€€€ €€€€€ €€€ € +€ €€€€€€ € € €€€€ € €€€€€€€€€ €€€€€€€€€€€€€€ € €€€ €€ €€€€€€ +€€ €€€ €€€ € €€€€ €€€€€€€ €€ +€€€ €€ €€€€€€€€€€ €€€€€ +€ €€€€€ €€€ €€€€€€€ €€€€ €€€€€€ €€€€€€€€€€€€€€€ +€€€€ €€€ +€€€€€€€€ €€€€€€€€ +€€€ €€€€€€€€ €€€€€€€€€€€€€€ €€€€€€ +€ +€€€€€€€€€€€€ €€€€€€€ €€€ +€ €€€€ €Î€€ +€€€€€€€€€ €€€ €€€€ +€ €€€€€€€€ +€€ €€€€€€€€€€€€€€€€ €€€€€€ € +€€€€€€€€ €€€€€€€€€€ €€ €€ +€€€€€€ €€€€€€€€€€€€€€€ €€€ € €€€€€ €€€€€€€€€€€ +€€€ €€€€€€ €€€€€€€€ €€€€€€€€ € €€€€€€€ +€€€ €€€€€€€€ € € €€€€ €€€€€€€€€ € € € +€€ €€€€ +€ €€ € €€€ €€€ € +€€€ €€€€ € € €€ € €€ +€ €€€€€ €€ +€€€ €€€€€€€€€€ €€€ €€€ € € +€€€€€ +€€€€€€€€€€ €€€€€ +€€€ € €€€€€€ €€€€€€€€€€ +€€€€€ € €€€€€€€€€ € €€€€€€ € € €€€€€ € €€€ €€€€€€€€€ +€€ €€€€€€€€€€€€€€€ €€€ €€€€€€€€€€ €€€€€€€ +€€€ €€€€€ € € €€€ €€€ +€€€€€€€€ € +€€ € € €€€ € €€ €€€€€ €€€€ € €€€€€€€€€€€€€€€€€€€€€€ €€ €€ €€€ €€€€€€€€€€€€€€ €€€ €€€ €€€€€ €€€€ €€€ €€€€€€€€€€€€€€€€ €€€€€ € €€€€€€€€€€€ € €€€€ € +€€€€€ € €€€€€€€ €€€ +€ +€ €€€€€€€€ €€€€€€ € €€€€€€€€€€€€€ € €€€ €€€€€€€€€€ +€€€ €€ €€€ € €€€€€€€€€€€€€€€€€ € € €€€€€ +€€€€€€ €€ € € €€ €€€€€€ €€€€€ € €€€€€€€€€€€ € +€€ €€€€€€€€€€€€€€€€€€€€€€€€ +€€€ +€€€€€€€ €€€€€€€€ €€€€€€ €€€€ €€€ €€€€ €€€ €€€€€€€€€€ €€ €€€ €€ +€€*€€€€€€€€€€€ € €€€ +€ € € € +€€€€€€ €€€€€€€€€€€€€€ +€€€ €€€€€€€€€ €€ +€€€€ €€€€€€€ €€ € +€€ €€ €€ €€€€€ +€€€ € +€€€€€€€€€€€€€€€€€€€€ € €€ € € €€€€€€ €€ €€ € €€ €€€€ € +€€€€€€€€€€€€€€€€€€€ € €€ €€€€€€€€€€€€€ +€€€€€ +€€€€ €€€€€€€€€€€€ € €€ +€€€€€€€€€€€€€€€ € € €€€€€€€€€€€€€€€ +€€€€€€€€€€€€€€€€€ +€€€€€ €€€€ €€€ €€€€ €€€€ €€€€€ €€€€€ +€€€ € €€€€€€€€€€€€€€€€ €€€€€€€€€€ € €€€€ +€ €€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€€€ € €€€€€€€€ €€€€€ €€ €€€€€€€€€€€ € +€€€ € €€€ €€€€€€€ €€€€€ +€ €€€€€€€ +€€€€ €€€ €€€€€€€€€ +€€€€€ €€ € +€€€€ €€ €€€€ €€€€ €€€€€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€ €€€€€€ €€€€€€ €€€€€€ € +€€€ €€€€€€€€€€€€€€€€€€€ +€€ €€€€ € €€€ € €€€€€€ €€€€€€€€€ € €€€€€€€€ €€€€ €€€ €€€€ €€€ €€€ € €€ € € €€€€€€€€€ €€€€€€€€€ €€ +€ €€€ +€€€€€€€€€€€€€€ € €€€€€ € €€€€€€ €€ €€€€€€€ +€ +€€€€€€€€€€ €€ €€€€€€€€€ € +€€ € € € €€€ €€€€ €€ € €€€€€ +€€ €€€€ +€€€€ € € +€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€ € € +€€€€€€€€ €€€€€€€€€€€ €€€€€€€ € €€€€€ €€€€€ €€ +€€€ €€€€€€ €€€€€ € €€€ +€€€€€ € €€€€€€€€€€€ €€€€€€€€€€ €€€ +€€ €€€ €€€€ € +€ € €€€€€ +€ €€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€ +€€€ €€€€ €€€€€€€€€€€€€€ € €€€€€€€€ +€€€€€ +€ €€€ +€ +€ €€ € €€€€€€€€€€€€€€€ €€€€€€€€ €€€€€€€€€€€€ € +€ € € +€€€€€€ €€€ €€€ € €€€€€€€€€ € €€€€€ €€€€€€ € €€€€€€€€€€€€€ +€ €€€€€€€ € €€ €€€€€€€€€€ €€€€€€€€€€€€€ +€€ +€€€ €€ € €€€€€€€€€ €€€ € +€ € €€€€€ +€€€€ €€ €€€€ +€€€€€€€€€€ €€€€€ €€€ €€€€€€€€€ €€€€€€€€€€€€€ €€€ € +€ €€€€€ €€|€Þ€ €€€€€€€€ €€€ +€€€€€€ € €€€€€ €€€€€€ €€ € €€€€€€ € +€€€ € € +€ €€ €€€€€ +€€€€€€€€ € € €€€€€ €€ +€€€€€€€€€€ €€€€€ +€€€€€€€€€€€€€ €€€ +€€€ € €€€€€€€€ +€€€€€€€€€€€ €€€€€€€€€€€€€€€€ €€€€€€€€€€€€€ €€€€€€€€€€€€€€€€ € +€€€€€€€€€€€€€ €€€€€€ €€€ €€€€€€€€€€ €€ +€€€€€ €€€€€€€€€€€ €€€€€€ +€€€€ +€€€ +€ €€€€€€€€€ €€€€ €€€ €€€€€€€€€€€€€ €€€€€€ €€€€€€€ € € €€€€€€€€ € € €€€€€€€€€€€€€€€€€ +€ +€€€€€€€ € €€€€ €€€ €€€€€€€€ €€€€€€ +€€€€€€€€€ € €€ € € € €€€€€ € €€ €€ € €€€€€ +€ +€€€ €€€€€€ € €€€€€ +€ +€€ +€ € €€€€€€€€€€ +€€€€€€€€€€€ €€€€€€€€€€€€ € +€ € € €€€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€ +€€€€€€€€€€€€€€€ +€€€€€€€€€€€€€ € €€€€€ € € +€ €€ +€€€€€€€€ € €€ €€€€€€€ €€€ € €€€€€€€€€ €€ €€€ €€€€€€€€€€€€ € €€€€€€€ €€€ €€€€€€€ €€€ +€ €€ €€€€€€€€€€€€€€€€ €€€€€€€€ €€ +€€€€€€€€€€€€€€€€ € €€ +€€€€€€€€€€€€€€€€€€ +€€€€€€€ € € +€€€€€€ € €€ €€€ €€€€€ €€ € €€€€ €€€€€€ €€ €€€€€ €€€€ € € € +€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€ €€€€ +€€€€€€€€€€€*€€€€€€€€ € €€€ +€ +€ € +€€ €€€€€€€ €€€€ € €€€ +€€€€€€€€€€€€€€€€€ +€ €€€€€€€€€€€€€ €€€ +€€€€€€€€€ €€€€ € +€ € €€€ +€ +€€ €€€€€€€ €€€ €€€€€€€€€€€ €€€€ €€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€ € €€ €€€€€€€€€ € €€€€€€€€€€€€€€€€ +€€ €€€€€€€€€ €€€€ +€€€€€€€€ +€ € +€ €€€€ €€ €€€€ €€€€€€€€€€ €€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€ € € € €€€€€€€€€€€€€€€€ +€€€€€€ €€ +€€€€€ +€€€€€€€€ €€€€€€€€€€ +€ €€€€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€€€ €€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€ €€€ € €€€€€€€€€ +€€€€ €€€€€ € €€€€€€€€€€€ €€€€ +€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€ +€€ +€€€€ €€€€€ €€€€ €€€ € €€ €€ €€€€ €€€€€€€€€€€€ +€€€ €€€ €€€€€€€€ €€€€€€ €€ €€€€ +€€€ €€€€€€€€€€€ € € €€€ €€ +€€€€€ €€€€€€€€€€ +€€€€€ +€€€€€€ €€€€ €€€€€ €€€€€€€€ €€€€€€€€€€ €€ €€€€€€€€€ €€€ €€€€€€€ +€€ € €€€€€€€€€€€€€€€€ +€ +€€€€€€€ €€ €€€€€€€€€ €€€€ €€€ €€€ €€ €€€ €€€€€€€ € € €€€€€€€€€€€€€ € €€€€€€€€€€ +€€€ €€€€€€€€€€ €€€€€ €€€€€€€€€€ +€€€€ €€€ €€€€€€€€€€€ €€ +€ +€ €€€€€€€€€€ €€€€€€€€€ €€€€€ € €€€€€€€€€ €€ € € +€€€ +€ €€€€ €€€€ €€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€ +€€€€€ € €€ +€ +€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€ +€€€€€€€€€€€€ €€€€€€€€€€€€€€ €€€€€€€€€€€€€€€ +€€ €€ € +€€€€€€€€€€€ €€€€€ +€€€€€€€ €€€€€€€€ € €€€€€€€€€€ € €€€€€€€€€ € +€€€ €€€€€€€€€€€€€€€€ € €€ +€ €€€€€€€€€€€ +€€€€ €€€ €€€€€€€€ €€€€€€ +€€€€€€ €€€€ €€ €€€ €€ €€€€€€€ € €€€€€€ €€€€€€€€€€€€ € €€€€€€€ € € +€€€€€€€€€€€€€€€€€€€ € €€€€€ €€ +€€€€€€€€€ €€€€€€€€€ €€€€€€€ €€€€€€€ +€€ €€€€€ €€€€€€€€€€€€ €€€€€€€€€€€€€ €€€€€€€€€€€€€€€€ +€€€ € +€ +€€€€€€€€€€€€€€€ € €€€€€€€ €€€€€€€€€€ €€ €€ €€€€€€€€€€€€€€ € €€ € €€€ +€€€€€€€€€€ €€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€ € +€€€€ €€€€€€€€€€€€€€€€€€€€€€€€ €€€ +€ +€€€€€€€€€€ €€€€€€€€ €€€€€€€€€€€€€€€€€ € € €€ € +€€€€ €€ € €€ +€ €€€€ €€€€€ +€€€€ €€€€€€€€€ +€€ €€€€€€€ € €€€€€€€€€ +€€€€€€€€ € €€€€€€€€€€€€ +€ +€€ €€€€€€€€€ +€€ €€€€ +€ €€ € €€ € €€ €€€€€€€€€€ €€€ € € +€€€€€€€€€€ €€€€€ €€€€ €€ +€€€€€€€€€€€ +€€ €€€€ €€€€€€€€ +€€€€ €€€€€€€€€€€€€€€ €€€€€€ +€€€ € €€€€€€€€€€ €€€ €€€€ €€€€€€€€€€ € €€€ €€€€€€€€€ € +€€€ +€€€€€ +€ €€€€€€€€€€€€ +€€€€€ € €€€€€€€€€ €€€ €€€ +€€€€€€€€ €€€€ +€€€€€€€ € +€€€€€ €€€€€€ € €€€€ +€€ €€ € +€€€€€€€€€€ € €€€€€€€€€€€€€€ €€€€€€€€€ +€ €€€€€ €€ € €€€ €€€€€€€€€€€€€€€€€€€€€ +€ € €€ €€€€€€€€€€ +€€€€€€€ €€€€€€€€€€€€€ € €€€€€€ €€€€ € €€ € +€€€€€ € +€€ +€€€ €€ +€€€€€€€€€€€€€€€€€€ €€€€€€€ +€ +€€€€€€€€€€€€€€€€€€€€€ +€ €€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€€€€€ +€€ €€ +€€€€ +€€€€€€€€€€€ €€€€€€€ € € €€€ €€€€€€€€€ €€€€€€ €€€€ €€€€€€€€€€€€ +€ €€ +€€€€€€€€€€€€€ €€€€€€€€€ +€€€ € €€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€ €€ € €€ €€€€€€€€ €€€€ € €€ €€€ €€€€€€€€€€€ €€ €€€€ €€€€€€€€€€€€€€€€€ +€€€€ €€€ €€€ +€€€ +€€€€ +€€ +€€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€ €€€ €€€ €€€€€€€ €€€ +€€€€€€€€€€€€ € €€€ €€€€€€€ € €€€€€€ € €€€ € € €€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€ €€ € +€€€€€ €€€€€€€€ €€€€€€€€€€€€ €€ € +€ +€€€€€€ €€ €€€ €€€€€ €€€€€€€€€€€€€€€€€€€€€€ +€ +€€€€€€€€€€€ +€€€€€€€ +€€€€€€€€ € +€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€ €€ €€€€€€€€€€€€€€€€ € +€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€ €€€€€ +€€€€€€€€€€€ €€€€ +€€€€ €€€ €€€€ €€€€€ €€€€€€€€€ €€€ € €€ +€ €€€€€€€€€€€€ €€€€€€€€€€€€€ €€€€€€€€ € € +€€€ €€€€ €€€€€ +€€€€ +€€€€ €€€€€€€€€€€ €€€€ €€€ €€€ €€€€€€€€€ €€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€ €€€€€€€€€€€€€€ € €€€ €€ €€€€€€€€€€ €€€ €€€€€€€ €€€ +€€€€€€€€€€€ €€€€ +€€€€€€€€€€ € €€€ +€€€€€€€€€€€€€ €€€€€€€€€€€€ €€€ €€€€€€ +€€€€€€ € €€ € +€€€ € +€ €€€€€€€€€€ €€€€€ €€€€€€€€ € +€€€€€€ € € € €€€€€€€€ €€€€ €€€€€€ €€€€€€€ +€€€€ €€ +€ € €€€ € € +€€€€€€ €€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€ €€ €€€€€€ €€ €€€€ € €€€€€€€€ €€ +€€€ €€€€ € €€€€€€€€€€€€€€€€€€€€ +€€€€ € €€ +€€€ +€€€€€€€€€€€€€ €€€€€€ +€ €€€€€€€€€€ € € €€ €€€ +€€€€€€€€€€€€€ +€€€€€€€ €€€€€ +€€€€ € €€€€€€€ €€€€€€€ € € €€€€€€ +€€€€€€ €€€€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€ €€€ €€€€ €€€€€€ +€ +€€€€€€€€€€€€€€ +€€€€€€€€ €€€€ €€ €€€ €€ €€€€€€€€€€€€€ € € €€€€ € € €€€€ € €€€€€€€€€ €€€€€€ €€€ €€€ € €€€€ €€€€€ €€€€ €€€€€€ €€€€ €€€€€€€€€€ €€€€€€€ € €€€€€€€€€€ +€€ €€€€€€€€€€€€ € €€€€€ €€€€€ +€ +€€€€€€ €€€€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€€€ € +€€€€€€€ €€€ +€€ +€€€€€ €€€ €€€€€€€ +€ € €€€€€€ € €€€€€€€ +€€ € €€€€ +€€ €€€€ €€ €€ €€€€ €€€ €€€€€€ €€€€€€€€€€€€€€€€€€€ +€€ €€€ € +€€€€€€ €€€€ €€€€€€€€€€€ €€€ €€€€€€€€€€€€€ +€€€€€€€ € € €€€€€€ +€€ €€€€ €€€€€€€€€€€€€ €€€€€€€€ €€€ € €€€€ €€ +€€€€€€€€€€€€€€€€€€€€€€ € €€ +€ +€€€€€€€€€€€€ €€€€€€ €€€€€€ €€€ €€€€€ € € €€€€ €€€€ +€ +€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€ +€€€€€€€€ €€ € € €€ € €€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€ €€ €€ €€€€ €€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€ +€€€€ € €€€€€€€ €€€€ €€€€€ €€€€€€€ € €€ € +€€ +€ €€€€€€€€€€€€€€€€€ €€ +€€€€€€ +€ €€€€ € € +€ €€€€€€€ € €€€€€€€€€€€ €€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€ €€€ +€ € +€€ € € +€€€€€ €€ €€€€€€€€ € €€€€€€€€ €€€€ € €€€€€€€€ € +€ €€€€€€€€ € € €€€€€€€€€€€€€€€€ €€€€€€€ € €€€€€€€ € € +€€€€€ € € €€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€ € +€€€ €€ € +€ € €€€€€€ €€ € € € €€€€€€€€€€€€€ €€ +€€€ €€€€€€€€€€€ +€€€€€€€ € +€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€ € €€ €€€€€€€ €€€€€€€€ €€€€€€ €€€€€€€€€ +€€€€€€€€€€ € €€€€€€€€€€€€€€€€€ +€€€€€€€ €€€ € €€€€€ +€ €€€€ € €€€€€€ €€€€ € €€€€€€€ €€ +€€€€€€ +€€€€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€€ € €€€€€€€€€€ €€€€ €€€€€€€€€€€€€€€€€€€ €€€€€€€€ +€€€€ €€€ €€€€€€€ € € €€€€ €€ €€€€€€€€ €€ +€€€€€€€€€€€€€€ €€€€ €€ €€€ €€€€€€€€€ € +€€€€€ € €€€€€€€€€€€€€ € €€€ €€€€ €€€€€€€€€€ €€€ € €€€€€ € € +€€€€€€€€ +€€€€ €€€€€€€€€€ €€€€€€ €€€€€€€€ €€€€€€ €€€€€ €€€€€€€€€€€€€€ €€€€ +€€ €€€€€€€ €€€€€€€ +€€ €€€€€€€€ €€€ €€ € €€€ +€€€€€€€ € €€€€€€€€ € €€€€€€€€€€€ +€ €€€€€€€€€€€ € €€€€€ € €€€€€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€€€€ €€€€€€ €€€€€€€€€€€€€€€€€€€€€€ +€€€€€€ €€€€€€€€€€€€€€€€€€€€€€ €€€ €€€€€ €€€€€€€€€€€€ €€€€€ €€€ +€ €€€€€€€ € €€€ +€ +€ €€€ €€€€€€ €€€€€€€€€ €€€€ €€€€€€€€€€€ +€ €€€€€€€€€€€€€€€ € €€€€!€€€€€€€ +€€€ €€€€€ €€ €€€ € +€€€€€€€€€€ +€€€€€€ €€ +€ €€€€€€€€ €€€€€€ +€€€€€ €€€€ +€ €€€€€€€€€€ € €€ +€ +€€€€€€ +€€€€€€€€€€€€ €€ €€€€€€€€€€€€€€€€€ +€ €€€€ +€€€ +€€ €€€€€€ €€€€ €€€€€€ € +€€€€€€ €€ €€ €€ +€ €€€€€€€€ € €€€€€€€€€ € € €€€€€€€€€ €€€€ € €€€€€€€€€€ €€€€€ €€ +€ €€€€ €€€€€ € € € €€€€€€€€€ €€ +€€€ €€€€€€€€ € €€€€ € €€€€€€€€€€ € €€ +€ €€€€€ € +€€€€€€€€€€€€ €€€€€€€€€ € € € +€€€€ € €€ €€€€€€€ € €€€€€ +€€€ €€€€€€€€€€ €€€€ €€€€€€€€ € €€ €€€ €€ € €€€€€€ +€€€€€€€€€€€€€€€€€€€€€€ €€€€€ €€€€€ €€€€ €€€€€€€€€€ €€€ €€€ € +€€€€€€€ €€ €€€€€€€€€€ €€€€ €€€€€€€€€ € +€€€ € € €€ €€€€€€ € +€€€€€€ +€ € +€ +€€€€€ €€€€€ €€€€€€€ €€ +€€€ €€€€€€ € €€€€€€€€€ +€€€€ €€€€€€€€€ € +€ €€ +€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€ € €€€ €€€€€€ +€€ €€€ € € €€€€€ €€€€€ €€€€€€ €€€€€€€€€€ €€€€ €€€€€€€€€€€€€ €€€ €€€€€€€€ +€€€€€ € €€€€€€€€€€€€€€€ € +€€ € €€€ +€€ +€€€ €€€€ € €€€ €€€€€€ €€ €€€€€€€€€€€€€€€€€ €€€ €€€€€€€€ €€€€ €€€€€€€€€ € €€€€€€€€€€€€€€€€ €€€€€€€€ €€€€€€ +€€€ € € +€ €€€€€€€ € € €'€€€€€€€€€ € €€€€€€€ €€€€ €€€€ €€€€€€€€€ € € €€ €€ € €€€€ €€€€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€ €€€€€€€€ +€ €€€€€€€€€€€€€€€€€€€€€€€€€€ €ç€¡€€€€€€€ € € €€€€ €€ €€€€ €€€ € €€€€€ €€€€€€€€€€€€€€€€€€€€€€€€ +€€€€€€ €€€€€€ €€€€€€€€ €€€€€ € €€€ €€ € €€ +€€€€€€ €€€€€€€ €€€€€ €€€€€€ €€€€€ €€€€€€€€€€€€€€€€€€€€ +€€€€ €€€ +€ €€€ +€€€€€€€€€€€€ +€€€€€€€€€€€ € € €€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€ €€€€€€€€€ €€€€ €€€€ € €€€ €€€€€€ €€€€€€€€€€ +€ €€€€€€€€ € € €€€€€€€ €€€€€€€ € €€€ €€€ €€€€€€€€€€€€€€€€€€€ €€€€€ €€€€ €€€€€€€€€€€€€ €€€€€ €€€€ +€ €€€€€€€€€€€€€€€ €€ +€€ €€€€€€€€€€€€ € € € €€€ €€€€€€€ €€€€€€€€ +€ +€€€ €€€€€€ €€ +€€€€€€€€€ € €€ €€€€ €€€€€ €€€€ +€€€ €€€ €€ €€€€€€€€€€€€ +€ €€€€€ €€€€€€ € €€€€€€€€€€€€€€€€€€ €€€€€€ €€€€€€ € €€€€€ +€€€€ €€€€€ €€€€€ +€€€€ +€ €€€€ +€€€€ €€€ +€V€5€€€ +€€€ € €€€€€€€€€€€€€€€€ +€€€€€€€€ +€€€€€€€€€€ € €€€€ +€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€ € €€€ +€€ €€€€€€€€ +€€ €€€€€ €€€€ €€ +€€€€€€€ +€ +€€ +€€€€€ +€€€ €€€€ €€€€€€€€€€€ €€€€€€ +€€€€€€€€€ € €€€€€€€€€€€€€€€ €€€€€€€€€€ +€€ € €€€€€€€ €€€ €€€€€€€€€€ €€€€€€€€€€€€ +€€€€€€€ €€€€ €€€ €€ €€ +€€€€€€€€€€€€€€ €€€€€ €€€€€€€€€ +€€€ €€€€ €€€€€€ € €€€€€€€€€€ €€€€€ €€€ € +€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€ €€ +€€€€ €€€ €€€€ €€ €€€€€€€€€€€€€€€€€€€€€ € +€ €€€€€ €€ €€€€ €€ +€ +€€€€€ €€€ €€€€€€€€€€€€€€€€ € €€€€€€€€ €€ € €€€€€ €€€€€€€€€€€€€€€€€ €€ €€€€€€€€ €€€€€€ +€€€€€ €€€€ €€ €€ +€€€€€€ +€€€€€€€ +€ € € € € +€€€ €€€€€ +€ € +€ +€ +€ € €€€€€€€€€€€€€€€€€€€€€€€€€ €€ +€ €€€€ +€€€€ €€€€€€€€€€€ €€€€€ €€€€€€€€€ €€€€€€€€€€€€€ € € €€ € € €€€€€€€€ € €€ €€€€€ €€ € €€€€€€€€€€ €€ €€€€ € +€ €€ €€€ €€€€ +€ € € +€€€€€€€€€€€ €€ € +€ €€ €€€€€€€€€€€€€ € €€€€€ +€€€€€€€€€€€€€€€€€€€€€€€ € +€€€ €€€€€€€€€€€€€€€€ €€€€€€€€€€ €€€€ +€€€€€€€€€€€€€€€ +€€€€€€€ +€€ +€€€€€€€€€€€€€€€ €€€€€€ €€€€€€€€€€€€€€€€ €€€ €€ +€€€€€€€€€€€€ +€€€€€€€€€€€ € €€€€ € +€€ €€€€€€€€€€€ +€€€€€€€€€€ +€ €€€ €€ €€€ +€€€€€€€ +€ €€€ €€ € € €€€€€€€ +€€€€ +€ €€€€€€€€€€ € €€€€€€€€€€€ €€€€ €€€ €€€€€€ € €€€€€ €€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€ €€€€€€€€€ +€€€€€ +€€ €€€€€€ € €€€€ €€€€€ €€ +€€€€ €€€€ € €€€€€ +€€€ €€€€€€€€ € €€€ +€ €€€ +€€€€€€€€€ +€€€€€€€€€€€€€€€€€€€€€ +€€ € € €€€€€€€€€€€ €€€€€€€ +€€€€ +€ €€€€€€€€€€€€ €€€€€€€€€ €€ € €€€€€€€ €€ €€€€ € € € € € €€€€€ €€€€€ €€€€€€€€€€€€€€€€ € +€€€€€€€€€€€ € +€€€€€ € €€€€€ €€ € +€€€€€€€€ €€€ €€€€€ €€ +€€ €€€€€€€€€€ € €€€€€€€€€ € +€€€€€€€€€€ €€€€ €€€€€€€€€€€€ €€€€ €€€€€€€€€€€ €€ +€€ €€€€ € €€€€€€€€€€€€ € +€€€€€€ €€€€€€€ +€ € €€ +€ +€ €€€€ € € €€€€€€€€€€€€€ €€€€€€€€€€€ +€€€€€€ €€€€ € €€€€€ € € € +€€€€ +€€€€€€€€€€€ € €€€€€€€€€€ +€€€€€ +€ €€€ €€€€€ € €€€€€€ €€€ € € € € €€€€€€€€€€€€€€€€€€€ +€ €€€€€€€ € €€€€ € +€€ €€ €€€€€ € €€€€€€€ € €€€€€€ € € €€€€ € € €€ €€€€€ €€ €€€ € €€€ €€€€€€ €€€€€€€€ €€€€€€€€ +€ €€€ €€ +€ €€€ +€€€€€ €€€ € €€€€ € +€€€€ €€ €€€€€€ €€€ +€€€€€€€€€€€€€ +€€ +€€€€€€€ €€€ +€€ €€€€€€ € €€€ €€€€€€ +€€€€€€€€€€€€€€€ € €€€€€€€ €€€€€€€ €€€€ €€€€€€€€€€€€€€€€€ €€€ +€ €€€€€€€€€ €€€€€€ €€€€€€€€ € €€€€€€€€€€ € € € +€€ €€ +€€€€€€ €€€€€€€€ €€€ €€€€€€€€€€€ +€€€€ €€ € €€€€€€€€ +€€€€€€€€€€€ €€€€€ € +€ +€€€ €€ €€€ +€ €€€€ €€€€€€€€€€€€€€€€€€€€ €€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€ € +€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€ +€€€€ €€€€€€€€€€€€€€€€€€€€€€ €€€€€ €€€€€ €€€ +€€ +€€ €€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€€€ € +€ +€€ €€€€€€€€ €€ €€€€€€ +€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€ €€€ €€ €€€€€ €€€€€€ € €€€€€€€ € € +€ € €€€€€€ € €€€€€€€€€€€€ +€€€€€€€€€€€ +€ +€€€€€€€ €€ €€€€€ €€€€€ €€€€ €€€€€ +€€€€€ +€€€€ €€€€€ € +€€ €€€€€ €€€€€€€€€ +€€€€€€€ € € +€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€ € +€€€€ €€ +€€€€€€€€€ +€€ € +€ € €€€€€ €€€€ €€€€€€€€€€€€€€€€€€€€€€€€ €€€€€ € +€€€€€€ €€€€ €€€€€€ +€ €€€€ +€€ €€€ €€€€€€€€€€€€€€€€€€€€€€€ +€€€€€€ +€€€€€€ €€€€ € +€€€€€€€€€€€ €€€ +€€ €€€€€€ €€ €€ € €€€€€€€€€€€€€ €€€€€€€€€ €€€ €€€€€€€€€€€ €€ +€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€€€ € €€€€ €€€ €€€€€€€€€€€ €€€€ €€€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€ €€€€€ €€€€ €€€€€€€€€€€€€€ €€€€€€€€€ €€ +€€€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€ €€ € +€€€€€ +€ € €€€ +€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€€€€€ €€ € €€€€€€€€€€€€€€€€€€€ €€€ €€€ € €€€€€€€€€ € €€€€€€€€€ +€ €€€€€€€€ € €€€€€€€ € €€ +€ € +€ +€€€€€€€€€€€€ €€ € €€€€€€ € +€€€ +€€€ € +€€€€€€€€€€€€€€€€€€ €€€€€€€ €€ €€€€€€€€€€€€ €€€€ +€€€€ €€€€ € €€€€€€€ €€€ €€€€ € €€€€€ +€€€ €€€€€€€€€€€€€€€€€€€ € +€€€ €€€€€€€€€ € € €€€€€€€€ €€€€€€€€€€€€ €€€€€€€€ € +€ +€€€€€€€ €€ +€ €€€€€€€€€ € €€€€€ +€€€€ € € € € €€€€€€ €€€€€ €€€€ €€€€€€€€€€ +€€ €€€€€€ €€€€€€€€€€€€€€€ € € €€€€€€€€€€ +€€€€€€€€€€ € +€€€€€€ +€€€€ +€ € +€ € +€€€€€€€€€€€€€€€€€€€€€€ €€€€€ €€€€€ € € €€€€€€€€ €€€ €€€€ €€€€ €€€€€€€€€ € +€€ +€ +€€€€€€€€€€€€€€€€€€ €€ €€€€€€€ € €€€€€€€€€€€ €€€€€€€€€€€ € € +€ € € €€€ € € €€€ +€ +€ €€€€ € €€€€ €€€€€€€€€€€€€ € €€€€€ € €€€€€€€€€€ €€€€€€ € € € €€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€ €€€ € €€€€€€ €€€€€€€€€€€€€ €€€€€€€€€€€ €€€€ €€€€€€€€€€ €€€€€€€€€€€€ € €€€€€ €€€€ €€€€€€€€€ €€€€ +€€€€€€€ €€€€€€€€€€€ € €€€€€€ €€€€€€€ €€€€€€€€€€ € €€€€€€€€€€€€ €€€€€€€€€€€€€€ €€ €€€€€ €€€€€€€€€€ € €€€€€€€€€ +€€€€€€€€€€€€€ +€ €€€€€ €€ € € € €€ +€€€€ € +€ € €€€€€€ €€€€€ +€€€€€€€€€€€€€€ €€€€ €€ €€€ +€€€€€€€€€ €€€€€€€€€€€€€€€ +€ +€€€€€€ € €€€€€€€ € €€€€€€€!€€ €€€€€€ € +€€€ €€€€€€€€€€ € €€€€€€ € €€ € € €€€€€€€€€€€€€ €€€€€€€€ € € €€€€€€€€€ +€€ €€ € +€€€€€€€€€€€€€€€ €€€€ € €€ €€€€€€ €€ +€€€€€€€€€€€€€€€ € € €€€€€€€€ €€€ €€ €€ +€€€€€ €€ €€ € € € €€€€€€€€€€€ €€€€ +€ €€€€€€ € €€€€€ €€ €€ €€€€€€€€ €€€€ €€€€ €€€€€€€€€€€€€€ € €€€€€€ €€€ € €€€€€€€€€€€€€€€€ € € €€€€€€€ +€ €€€€€€ +€€€€€€ € +€ +€ €€€€€ €€€€ €€€€€ €€€€€€ €€€€€€€€ € €€€€€ € €€€€€€ € €€€€ €€€ €€€€€€€€ €€ € € € €€€€€€€ +€€€€€€€€ €€€€€€€€€ €€€ €€€€€€€€€€€€€€€€ +€ +€€€€€€€€€€ €€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€ €€ €€€€€€€ € €€€€€€€€ € €€€€€ +€€€€€€€€€€ €€€ € +€€ +€€€€€€€€€€€€ €€€€€€ € €€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€ €€ €€€€ €€€ €€€€€€€€€€ €€€ €€€€ €€€#€ €€%€€!€€"€€€€€€€€€€€€€€ €€€€€€€€€€ +€€€€€€€ €€€€€€€€€€ €€€ €€€€ €€ +€€ €€€€€€ € € € €€€€ €€€ €€€€€€€€€€€€€€€€€€€€€ €€€ +€€ €€ €€€€€€€€€€ +€€ € € +€ +€€ €€€€€€€€€ €€ €€€€€ €€ €€ +€€€ € € € €€€ €€€€€ €€€€€ €€€€ €€€ +€€€ €€€€€€ €€ €€€€€ €€€€€€€€€€€€€€ €€€€€€€€€€€€€€ €€€€€€€€€ +€ +€ €€€€ € €€€€€€€€€€€€€ €€€€€€€€€€ +€€€€ +€€€€€€ € +€ €€€€€€€€€ € +€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€€€ €€ €€€€€€€€€€€€€€€€ €€€€€€€ +€€€ € €€€€€€€€€€€€€€€ +€ €€ +€€€€€€ €€€€€ +€€€€€€€€€ € €€€€€ €€€€€ +€€€€€€€€€€€ €€€ €€€€€€€€€ €€€€€€ €€€€€€ €€€€€€€ €€ €€€€€€€€€ € €€€€€€€€€€€€€€€€€€ € €€€€ €€€€€ € € €€€ €€ €€€€ € +€€€€€€€€€€€ € € +€€€ €€ €€€ €€€ €€€€€€€€ €€ +€€€ +€€€€ €€$€$€€,€'€)€2€5€)€€€ €€€€ €€€€€€€€ +€ €€€ €€ €€ €€€€€ € €€€€€€ €€ €€€€€€ €€ €€€€€ €€€€ € +€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€ €€€€€€ €€€€€€€€€€€€€€ €€ € +€€€€€ € €€€€ € +€€€€€ €€€ €€€ € €€€€€€ €€ €€€€€€€€€€€ +€ € +€ € €€€€ €€ €€€€€€€ €€€ €€€€€€€€€€€€ € +€ €€€€€€€ € €€€€ +€€€€€€ €€€€€€€ €€ € €€€€€€€ €€€ +€€€€€€€ €€€€€€€€€€€€ +€€€€€€€€€€€€€ +€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€ €€€€€€ €€€€ € +€ €€€ +€€€€€€ €€ €€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€ €€€€€€€ €€€€€€€ €€€ +€€ € +€€€€ +€€€€€€€€€€€€€€€€€ €€€€ €€ +€ €€€ +€€ € €€€€€€€€€€€€€ €€€€ €€€€€ +€€ €€€€€€€€ +€ €€€ +€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€ € €€€€ €€€€€€€€ € €€€€€€€€€ €€€ €€€€€€€€€€€€€ € +€€€€€€€ €€€€€€ €€"€€€'€*€-€E€=€?€?€3€+€€€€ €€€€ +€€€€€€€€ €€€€ €€€€€ +€€ € €€ +€€€€€€€€€ €€€ +€€€€€€€ €€ +€€ €€ €€€€€€€€ €€€€€€€€€€€€€€€€ € €€€€€€€€€ +€ +€€€€€€€€€€€€€€€€€€€ €€€ €€ €€€ € € €€€€€€€ €€€ €€€€€€ €€€€ € +€€€€ €€€€€€€€ €€€€€€€€ €€ € +€ €€€€€€€€ €€€€€€ €€€€€€€€ €€€ +€€€€€€€€ € €€€€€ +€€€€€€€€€€€€€€€€€ €€€€€€€€ €€€€€ +€ +€€€€€€€ €€ €€€€€ €€€€€€€€€€€ €€€€ +€ € €€€€ +€ €€€€ €€€€€€€€€ €€€€€€ € €€€ €€€€ +€€€€€€€€ € €€€ € € €€ €€€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€ €€€ € +€€€€€€€€ € €€€€€€€ € €€€€€ € +€ €€€ €€€€€€ €€€€ €€ +€€€€ €€€€ +€€€€ +€€€€€ €€€€ € €€€€€ €€€€€€€€ €€€€€€ +€€€€€€ €€€€€€€€€ €€€€€ €€€ €€€ +€€€€€€€ +€€€ € €€€€€€€€€€€€€€€€€€€€€€ €€ € € €€€€€€ €€€€€€€€€ +€€€€€€€€€ €€ €€€€€€ €€/€A€^€€Œ€|€T€,€%€*€€€€€€€€€€€€€€€€€€€€€€€€ +€ € € € €€€ €€€€ €€€€€€€€ €€€€€€€€€ €€€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€ €€ +€€ €€ +€ +€ +€€ €€€€ +€ €€€€€€€€€€€€ +€€€€€€ +€ €€€€€€€€€€€€€€ €€€ € € € € €€€€ € €€€€€€€€€€€€€€€€€€ €€ +€ € +€€€€€€€ +€€€€€ +€€€ +€€ +€€€€€ +€€€€€€€€ € +€€€€€€€€€€€€€€ €€€€ €€€€€€€€€€ €€ €€€€€€ €€€€€€€ € €€€€ € €€€€€€€€€€€€€€€€€€ €€€€€€€€€€ €€€ €€€ €€€€€ € €€€€€€ € €€€ €€ €€ € €€€ €€ €€€€ +€€€€ +€€€ €€€€€€€€ €€€€€€€ €€€ €€€€€€€€€€€€ €€€ +€€€€€€€ €€€€€€€€€€€ €€€ €€€ € € € +€€€€ € +€ +€ €€ €€€€€€€ €€ €€€€€€€€ +€€€€€€€€€€€€€€€€€€ €€€ €€€€€ +€€€€€ € €€€ +€ +€€€ €€€€€ € €€ €€ € €€€€€€€€ €€€€€€€ +€€€€€€ +€€€€ € € +€€€ €€€€ € +€€€€€ +€ € €€€€€.€A€f€¦€Ï€ô€à€£€m€=€'€(€€€€€€€€€ €€€€€€€€€€€€€ +€ € €€€€€€ €€€€€€€€€€€€€ +€€€€€€€€€€ €€€ +€€€€€€€€€€€€€€ +€ €€€€€ € €€€€€ €€€€€ € +€ +€ €€€€€€€€€€€ €€ €€€€€€€ €€€€€€€€€€ €€ € +€€€€€ €€€€€€€ € €€ € € +€€€€€€€€€ €€€€€€€ €€ +€€€€€€€€€ +€€€€€€€€€€€€€€€€€€€€ € €€€ €€€€€€€€€€€€€€ €€€€€€ €€€€€€ €€ +€€€€€€€€€€ €€€€€€€€€ €€€€€€€€€€€€€€ € €€€€€ € €€€€€€€ €€ €€€€€€€€€€€€€€€€€€€€ €€ € €€€€€€€€ € €€€ €€ € +€€€ €€ €€€€€€€ +€€€ +€€€ €€ €€ +€ €€ €€ +€€ €€€€€ € +€ € +€ €€€€€ €€€ € €€€€ +€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€ +€ +€ €€€€€ €€€€€€€€€€€€€€€ €€€€€€ +€€ €€€ €€€€€€€€ +€€€ +€€€€€€€€€ +€€ € € +€€€ € €€€€€€€€€€€€€€€€ € €€€€€€ € +€€ €€€ +€€€ €€€€€€€€€€€€€€ +€ € €€ €€€€€€€.€Z€”€÷Ì‚¯‚`J€°€_€0€4€$€€€€€€€€€ €€€ €€€ €€€€€ € €€€€€€€ +€ € € € €€€ €€€€€€€ €€€€ €€€€€€€€€€ € € € €€ €€€€€€€€€€ €€€€ €€€€€€€€€€€€€€ +€€€€€€€€€€€€€€€€ €€€€€€€€€€€ € €€€€€€€€€€€€ €€ €€€€ €€€€€€€€ € +€€€€ €€€ +€€€€€ €€ €€€€€€ € € €€ €€€€€€€€€ €€€€€€€€€ +€€ €€€€€€€€€€€€€€€€€€€€€€€€ +€€€€ €€€€€€€€€€€€ €€€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€ €€€€€€€ € €€ €€€€€€€€€€€ € €€€ € +€€€ €€€€ €€€€€€€€€€€€€€ +€ +€€€€ € €€€€€€€€ € €€€ € €€ €€€€€€€€€€€ +€€€€€ €€€ +€€€ € +€€ +€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ € €€€ +€€€€€€€€ €€€€€€€ € +€€€€€€€ €€€ €€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€ €€€€€€€ € €€€€€ € €€€€€ €€€€€€€€€€€ +€€€€€ €€€€ €€€€€€€€€€€ €€€€€€€€€€ € € €€ € €€€ € €€€€€ +€ € €€*€"€6€[€£„¡Š5ˆ1ƒ€å€c€/€(€#€€€€€€ €€€€ €€€€ €€€ € €€ € €€€€€€€€ €€€€€€€€ +€ € +€€€€€€€€€€€€€€€€€ €€€€€ €€ €€€€€€ € €€€€€€€€€€€ €€€€€€ € €€€€€€€€€€€€€€ € €€€ +€€€€€€€€ € €€€ €€€€ € € +€€€ € +€€€€€ +€€€€€ €€€€ +€€€ €€ €€€€€€€€€€€ €€ €€€€€€€€€€€€ +€€€€€€€€€€€€€€€ +€ € €€€€€ €€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€ €€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€ €€€€€ €€€ €€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€ €€ €€€€€€€€€€ €€€€€€€€€€ €€€€ € +€ +€€€€€ € +€€ €€€€€€€ €€ €€€€ +€ €€€€€ € +€€€€€€€€ €€€€€€€ +€€€€€€€€€€€€€ €€€€€€€€ €€€€€€€€€ €€ €€€ € €€€ €€ €€€ €€€€ € € €€€€€€€€€€€€€€€€€€€€ +€€€€€€€€ €€€€€€€ € €€€€€€€€€€€€€€ € €€ € €€€€€€€€ +€ €€ €€€€€€€€ +€€€€€€€€€€€(€6€k€ÊЇþ—=’0…J€j€/€€ € € € €€ €€€€ €€€ €€€ +€€€€€€€€€€€ €€€€ € €€ +€€€€€€€ +€€€ €€€€ € €€€€ +€€ € +€€€€ €€€€€€€€€€€€€€€€€ +€€ € €€€ €€€€€ +€€€€€€€€€€€€ €€€ € +€€€€€€€€€€€€€ +€€€ €€€€€€€€ +€€€€€€€€€€€€ €€€ €€€€ € € € €€€€€€ € €€€€€€€€€€ €€€€€€ € €€€€€€€€€ €€€€ +€€€€€ € +€ € € € €€ +€ €€ €€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€€€€€€ €€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€€€ € +€ +€ +€€ € € €€€€ € € €€€€€ €€€€€€€€ €€ € +€ €€ € €€€€€€ €€€€€€€€€€€€€€€ €€€€ +€€€ €€€€€€€€€€€€€€€+€&€€€€€€€€€€€€€€€€€€€ +€ +€€€€€€ €€€€€€€€€€€€€€ €€€€€€€€€€€€ €€€€€€€€€€€€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€ €€ €€€€€€€€ €€ € €€€€€€€€€€€ €€€€€€€€€€ €€ €€€€ €€€€ € €€ +€€€€€€€€€€€+€>€g€ºnƒë‰#‡È‚Ó€¯€R€,€€€€€€€ +€€€€€ €€€€€ €€ +€€€€€€€€ €€€€€€ €€ € € €€€ €€ +€ €€€€€€ €€ € €€ €€€ €€€€€€€ €€€ €€€€ €€€€ €€ +€ €€€€€€ +€€€€€ +€ +€€€€€€€€ €€ €€€€€ €€€ +€€€€€€€€€€€€ €€€€€ €€€€€€€€€€€€€ €€€€ € +€ €€€€ €€€€€€€€€€€ €€€€ €€€ €€ €€€€€€€ €€€ €€€€€€ +€€€€€ €€€€€ €€€€€€€€€€€€ € €€€€€€€€€€€ +€€€€€ +€€€ € € €€€€€€€€€€€€€ €€€€€ +€€€€€€ €€€ +€€€€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€€€€ €€€€€ €€€€€€€ €€€€€€ €€€€ +€ € € €€€€ +€€€ € € +€ €€€ €€€€ €€€€€€€ €€€€€€ €€€€ € € +€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€ +€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ +€€ €€€€€€€€€ €€€€€ € €€€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€ €€€€ €€ €€€€€€€ +€€€ €€ €€€ €€€€€€€€€9€P€€ÖIÁŸ€l€<€0€€€€€€ €€€€ € +€€€€€€€€ €€ €€€€€€ +€ €€€ €€€€€€€€€€€€€€€ €€€€ €€€€€ +€€€€€€€€€€€€€€€€€ +€€€ €€ €€ €€€€€€€ +€€ € € +€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€ € €€ +€€€ € +€ €€€€€€€ +€€ €€€€ +€ +€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€ +€ €€€€€€€ +€€€€€€€€ +€€€€€€€ €€€€€€€€€€€€ +€ €€ €€€ €€€€€€ € +€€€ +€ € €€€€€€€ €€€€€ €€€€€€ +€€ +€€€€€€ €€€€€€ €€€€€€€€€€€€€ +€€€€€€€€ €€€€€€€ € +€€ +€€€€€€€€€ +€ €€€€€€€€€€ €€ € € €€€ € € €€€€ €€ €€€€€€€ € €€€€€€€ €€ +€€ € €€€€€€ €€€€€ € €€€€€€€€ €€€€€€€ € +€€€€€€ €€ €€€€€€€ €€€€€€€€!€€€€€€€€€€€€€ €€€€ €€€€€€€ €€ +€ +€€ €€€€€ +€ +€€€€€ € €€€€€ €€€€€€€€€€ € +€ €€€€€€€€€ +€ €€ €€ € €€€€€€€€ € €€€€€€€€€€ +€€€€€ €€ €€ €€€€€€€€ +€€€€€€€€ €€ € € €€€€*€;€R€i€€š€‰€h€G€:€€ €€€€€€ €€€ €€€€€€€ €€€€€€€€€€€ €€€€€ +€€€€€€€€€!€€ € €€€€€€€€€€ +€€€€ €€ €€€€ €€€€ €€€€ €€ €€€€€€€€ +€€€€€ € € €€€€€ €€€ €€€€€€€ €€€€€€€€€€€€€ €€€ €€€€€€ €€ €€€ +€€€ €€€€ €€€ €€ € +€€€€€€€ € €€€€€€€€€€€€€€€€€€ € +€€ €€€ +€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€ €€€ +€€ €€€ +€ € €€€€€€ € +€€€ € €€€€€€€€€€€€€€€€€€ €€€€€€€€€ € €€€€€€€€€€€ €€€€€€€€€€€€€ € € +€€€ €€€€€€€€€€€ € €€€€€€€€€ €€€€€ €€€€€€€€€ €€€ €€€ +€€€€ € €€€€ €€€€€€€€€€€€€€€€ +€€ € € +€ €€€€ € €€€€€ €€€€€€ +€ €€€ € €€ €€€€ € +€€€€€€€€ € € €€€€€€€€€€€€€€€ +€€€€€ €€€€€€€€€€€€€€€€€ +€€€€€ €€ €€ +€€ €€ €€€€€€ €€€€€€€€€€ €€ €€€€€€ €€€€€€€€ +€ €€€€€ € €€€€€€ +€€€ €€€€€€€ €€€€€€€€ €€€€€€€€€€€ €€€€-€B€N€Q€R€P€@€6€'€€€ €€€€ +€€€€€€€€ € €€€€€€€€€€ €€€€€€€€€€€ €€€ +€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€ +€ +€€€€€€€€€€ +€€ €€€€€€€€ €€€ € €€€ €€€ +€€ €€€€€€€€€€ € € €€€€€€€ +€ +€ +€€€€€€€€€€€ € €€€€€€€€€€€€ € € €€€€€€€ €€€€€€€€ € €€€€€€€€€€€ €€€ €€€€ €€€€€ €€ €€ €€€€€€€€€€€ +€€€ €€€€€€€ +€€€€€€€ €€ €€€€€€€€€€€€€€ +€ +€ €€ € +€ €€€€€€€€€€€ € €€€€€€ € € €€€€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€€€€€ +€ € +€ +€ € +€€€€€€€€€€€€ €€€ €€€ €€€€€€ +€€€€€€€ €€€€ €€ €€€€€€€€€€€€€€ €€€€€€€ €€€€€€ €€€€€€€€€€€€€€€ € € €€€€€€ +€ €€€€€ €€€€€ +€€€€€ €€€ €€€ €€€ €€ €€€ +€ €€€€€€€ +€€€€€€€€€€€ €€€€€€ €€€€€€€ €€€€€€€ € +€€€€€ € €€€€€€€€€ €€€€€ € € +€€€€€€€€€»€ €€€€€€€€ €€€€ €€ €€€€ €€€€€ €€€%€2€/€2€)€!€&€€ €€€ €€€€€€€€ € €€ €€€ €€€€€€€ €€€€€€€€ €€€€€€€€ € +€€€€€€ €€€€€€€ +€€ € €€€ +€€€€€ € €€€€€€€€€€€€ +€€€€€€€€€€€€€€ €€€€€€€€€€ +€€€€€€€€€€€€€€€€ € €€€€€€€ +€ +€€€€€€€€€€€€€€€€€€€ +€ +€€€€€€€€€€€€€ €€ €€€€€€ € € €€€€€€ €€€€€ €€€ € €€€€€€ +€€ € € € € €€€€€€€€€€€ €€€€€€ €€ €€€€€€€€€€€ +€€€€€€ € €€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€ +€€ € €€€€€€€€€ €€€€€ € €€€€€€€€ €€€€€€€ +€€€€€€€€€€€ +€€€ +€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€ €€ €€ +€ +€€€ €€€ €€€€€€€€€ +€€€€€€€€€ € +€ €€€€€€€€€€ € €€€€€ € €€€€€€€€€€€€€€€€€€€€€€€ €€€€€€ +€ € €€€ € €€€€ € €€€ +€€ € +€€€€€€€€€€€€ € € €€€€€€ €€€ €€€€€ +€€ €€€€€#€€ €€€€€€ €€€ +€€€€€€ €€€€ €€ €€€€€€ €€ € €€€ €€€ €€€"€)€€ € €€€€€€€ €€€€€€€€€€€€€ €€€ € +€€€€ €€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€ €€€€ +€€€€€€€ €€€€€€ €€€ +€ +€ €€€ €€€€€€ €€€€€€€€ €€€€€€€€€€€€ +€€€€€€ € €€€ +€€€ € € € €€€ €€€ €€€ +€€€€€€ +€€€€€€€€€€€€€€€€€€€€€ € €€€€€€ € €€€€ €€ € €€€€€ € €€€€€ +€€€€€ € €€€€ € +€€€€€€ € €€€€€€€€€€ €€ €€€€€€€€€€€€€€€€€€€€€ € € €€€ €€€€€€€€€€€ €€€€ +€€€€€€€ € € €€€€€€€€ €€ €€€€€€ €€€€ +€€€€ +€ € €€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€ €€€€€€€€€€€€€ €€ €€ €€€€€ +€€€€€€€€€€€€€€ €€€ +€ € +€€€€€ € €€€€€ €€€€€€€€€€€€€€€ € +€€€€€€€€ +€€€€€€€€€€€€€€€€€€€€€€€€ € €€ €€€ €€€€€€€€ €€€€€ € €€€€€€ €€€€ €€€€€€€ €€€€€ €€ €€€€€€€€€€€€ € +€€€€ +€€€ € €€€€€€€€€€€ € €€€€€€€€ +€ +€€€ €€€€ €€€€€€€€€€€€€ +€€€ € +€ €€€€€€€€€€€€€€€€ €€€€ € €€€€€€ €€€ € €€€€ €€€€ +€€€€ €€€€€€€€€€€€ €€€ €€€€€€€€€ € €€€€€€€€ €€€ € +€€€€ €€€€€€€€€€ +€ +€ €€ +€€€ +€€€€€ € €€€€€€€ +€€€€€€€€€ €€ € €€€€€€ €€€€€€€€€€€€€ €€€€€€€€€€€€€€€ +€€€€€ €€€€€€ €€€€€€€€€ €€€€ € €€€€€€€€€ € +€€ € €€ €€€€€€€€€ +€€€€€€€ €€€€ €€€€€€€€ €€€€€€€ €€€€€€€ € €€€ €€ €€€€€ €€€ € +€ €€€€€€€€€€€€€ €€ €€€€€ €€€ €€€€ €€€€€€€€€€ +€€€€ +€€€€€€€ €€€€ €€€€€€ €€€ € €€€ €€€ €€€€€ € €€ +€€€ +€ €€€€€€€€ € €€ +€ €€€€€€€€€€€€€ +€€€ €€€ €€€€€€€€€€€€ €€ €€€€€ €€€€ +€ €€€€€ € €€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€ €€&€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€ € € +€€€€€€ €€€€€€€ €€€€€ +€€€€€€ €€€ +€€€€€€€€€€€€€€€€€ €€ €€€€€€ €€€ +€€ €€€€€*€€€€€ € €€ €€€€€€€ €€€ € €€ €€ € €€€ €€€€€€€€€€€€€€€€€ € €€€€€€€€€€ €€€€€€€€€€€€€ € €€€€€€€€€€€€€€ €€€€€€€€€€€ €€ € € € € €€€ +€€€€€€ €€ €€€€€ €€€€€ € €€€€€€€ €€€ +€ € €€€€€€€€€€€€€€ €€€€€€ €€€€€€€ €€€ €€€ €€€€€€ €€ €€€€€€€€€€€€ € €€€€€€€€€€ +€ € € +€ +€€€€€€€€€€€ +€€€ €€€€€€€€€€ € +€ €€€€€€ € +€€€€€ +€€€€€€€€ € € €€ € €€€ € €€ €€€€ €€€€ +€€€€€€ +€€€€ €€€ +€€€€€€€€€€€€ +€€€€€€€€€€€€€€ €€ € €€€€€€€€ €€€€€€€€€ €€ €€€ +€€€€ € €€€€€€€€€€ €€€€€€€€€€ €€€€€€€ € €€€€€€€€€€ €€ €€€ €€€€€€€ €€€€€ €€€ €€€€ € €€€€ € €€€€€€€€€€€€€€€€ +€€€€ € €€€€€€€€€€€€€ €€€€ +€€€€€€€€€€€€€€€ +€€€€€€€€ € +€ +€€€€€€ €€€€€ +€€€ €€€€€€ € € +€ €€€ €€€ €€€€ €€€ €€ €€€ €€ €€ €€€€€€ € +€€€€€€€€€ € €€€€€€€€€€€€ €€ €€€€ €€ € €€€ €€€€€€ €€€€€ € €€€€€€€€€€€€€€€€€€ €€€ € €€€€€€€ € +€ € €€€€€€€€€€€ €€€€€ +€€€ € €€€€€€€ €€ €€ € €€€€€ € € €€€€€€ €€ +€ € €€€ €€€ +€ +€ +€€€ € € €€ € € € +€ €€€€ € €€€€€ €€€€€€ €€€ €€€€€€€€ € €€€€ € €€€€ +€€€ € €€ €€€€€€€€€€€€€€ € +€ € +€€€€€ € €€ € +€€€€€€€ +€€€€€€€ €€€€€€€€€€€ € €€€ +€€€€€€€€€€ € +€€ +€€ €€ €€€€€€€€€ € €€€€€€€€€€€€€€ €€€€€ +€€€€€ €€€€€€€€€€€€ € €€€ € €€€€€€€€€€ € €€€ €€€€ €€ €€ +€€€€€€ €€€€€€€€ € +€€€€€€ €€€€€€€€€ € €€€ €€€€€€€€€€ €€€ €€€€ € €€€ €€€€€€€€€€€€€ €€€€€€€€€ €€ +€€€ € +€€€€€ €€€€€€€€€€€€€ €€€€€€€€€€€€€ €€€€€€€€ € €€ €€€€€€€€ +€€€€€€€€€€€€€€€€€€ €€ €€€€€€ €€€€€€€€€€ +€€€€ +€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€ €€€€ +€€ € € €€€€€€ € €€€€€€€€ € €€€€€€ €€€ €€€€€€€€€€€ € €€€€€€ € €€€ +€€ €€€€€€€ €€€€€€€€€€€€€€€€€€ +€€€ +€€€€€€€€€€€€€ €€ €€€ €€€€ €€€ € €€ € +€€ €€€€€€€€€€€€ €€€€€ +€€€€€ € €€€€€€ € €€€€€€€€€€€€€ € € +€€€€€€€€€€ € €€€€€ +€ +€ € +€ €€€€ €€€ € €€ +€€€€€€€€€€ +€ € € €€€€€€€€ €€ €€€€€ €€€ €€€ €€ € +€€€€€€€€€€ €€€€ €€€€€€ €€€€€€€€€€€€€€€€€€€ € €€ €€€ € +€€€€€€€€€ +€€€€ € +€€€ € € € €€€€€€€€€€€€€€€ € €€ €€€ +€€€ +€ €€€€€€€€€€€€€ €€€€€€€€€€€€€€€ +€€€€€€€ €€€€€€€€€€€€€€€€€€€€€ €€€€€€€ +€ € +€€€€€ €€€€€€ €€€€ €€€€€€€€€ €€ € € +€€ €€€ €€€€€ € €€€€€€€€€€€€ +€€€ € €€€€€ +€ €€€€€€€ € €€€€€€ +€ +€€€€€€€€€€€€€€€€€€€ €€€ €€€€ €€€€€ €€€ € € €€ €€€€€€€€ €€€ €€ €€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€ €€€€€ € +€€ €€€ €€€ +€ € €€ €€€€€€€€ €€€€ €€€€€€€€ €€€€€€ €€€€€ €€€ €€€€€€ +€€€€€€€ +€€€€€ €€ +€€ +€€€€€€€€ €€ +€€ €€€€ €€€€ +€€ € €€ €€€ €€ +€€€€€€€ € €€€€€ €€€€€€€ € € +€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€ +€€€ €€€€€€€€€€€€€€€ € +€ €€€€€€€€ +€€ € €€€€€€€€€€€€ € +€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€ +€ €€€ € €€ € €€€€€€€ € € €€€€ €€ €€€€€€ €€€€€€€€€€€€€€€€€€€€ € €€€€€€ €€ +€ €€€€ €€€€€€€ €€€€€ €€€€€€€€€€€€€€ €€ €€€€€€€€€€€ +€€€ €€€€€ € €€€€€€€ €€€€€€€€€€€€€€€€€€€€ €€€€€ €€€€€€€€€ €€€€€ +€ +€ €€€ €€ €€€€€€€€€ +€€ €€ €€€€€ +€ €€€€ €€€€ +€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€ +€€€ +€€€€€€€€€€€ €€€€€ €€€€€€€€ €€€€€€€ €€€€€€€ €€€€€€€€€€ +€€€€€€€ €€€ €€ €€€€€€€ +€ +€€€€€€€€€€€€€€€€€€€€€ € +€€€ €€ €€€€€€€€ €€€€ +€€€ € €€€€€€€€€€€€ €€€€€ +€€€€€ €€€€€€€€€ €€€€€€€€ +€ €€€€€ €€€€€ +€€€ +€ €€€€€€€€€€€ €€€€€€€€€€€€ €€ +€€€€€€ €€ +€ € € €€€€€€€€€ € €€€€ € €€€€€ +€€€€€€€ +€€€€€ +€€€€€€€ €€€€ €€€€€€€€€ € € €€€€ +€€€€€€€€€€ € €€€€€€€€€€€ € +€ € €€€€€€€€€€€€€ €€ €€ +€€€€ €€ +€€€€ €€€€€ €€€€€€€€ € €€€€€€€€ +€ € +€€€€€ €€€€€€€€€€€€€€€€ € € € € € €€€ € € €€€ € €€€€€€€€€ €€ +€€€ +€€€€€€ € € € € € +€€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€ € +€€€€ €€€€€€€€€€€ €€€€€ €€€€ +€€€€€€€€€€€ +€ € €€€ €€€€€€€€ €€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€ €€€€ +€€€ €€€€ +€€€€€€ €€€ €€€€€ +€€€ €€€€€€€€ €€€€€ +€€€ € € € €€€€€€€€€ +€€€€ €€€€€€€€ €€ € €€€€€ €€€€€€ €€€€ €€€€ €€€ €€ +€€€€ +€ €€ € €€ +€ €€€ €€€€€ €€€€€€€€ +€€€ €€€€€€€€€€€€ +€€€€€€€€€€€€€€€€€ €€€€€ €€€€€€€€€ €€€€ €€€€€€€ €€€€€€€€€€€ €€€€ €€€€€€ € €€€€ € €€ +€€€ +€€ €€€€€€€€€€€€€€€€ € €€€€€€ € € € € € € +€€€€€€ € €€€€€€€€€€€€€€ +€ € +€ €€€€€€€€ €€€ €€€€ €€ +€€€€€€€€€€€€€ +€€€€€€€€€€€€€€€€€ €€ €€€€€€ €€ +€€€€ € €€€€€€€€€€€€€€€ €€€€€€ €€€ €€€€€€€€€€ +€€€€€€ +€ €€€€€€ € €€€€€ +€ +€ €€€€ € €€€€€€ +€€€€€ €€€ €€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€ €€€€€€ €€€ €€€€€€€€€ € €€€€€ €€ €€€ € € €€ € €€€€€€€€€€€ €€€ €€€ €€€€€€€€€€€€€€€€€€€€€€€ €€ +€€ € €€€ €€€€€ €€ €€ €€€€€€€€€ €€€€€ €€€€€€ €€€€€ €€€€ € €€€€€€€ €€€€€ €€€€ €€€€€€€€€€€€€€€€ €€€ €€ €€€ +€€ €€€€ €€€€€€ €€€€€€ € +€€€ €€ €€€ €€€€ €€€€€€€€€€€ € €€€ € +€€€ € +€ +€ €€€ € €€€ +€€€€€€€€€€€ € €€€ +€€ €€€€ €€€€€€ €€€€€€€ €€€€€ €€€ € +€€€ +€€€ € €€€€€€ €€ €€€€€€€€€€ +€ +€€ €€€€€€€€ € € +€€€€€€€ € € +€€€€€ €€€€€€€€€€ € € € +€€€€ +€ +€ +€€€ +€€€ +€€€ €€€€€ €€ €€€€€€€€€€€€€€€ €€€€€€€€€€€€€ +€€ €€€€€€€€€€€€€€€€€€€ €€€€€€€€€ € €€€ +€ €€€€€€€€ €€ €€€€€€€€€€€€ € € €€€ € €€€€€€€€€€ €€€€€€€ €€€€€ +€€€€€€€€€€€ €€€€€€ € € €€€€ €€€ +€€ +€ €€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€ €€ € +€€€€€€ € €€€€ € €€€€€€€€€€ +€ € €€€€€€€€€€ € +€€ +€€€€€€€ € €€€€€€€€€€€€€€ € € €€€€€€€€€€€€ +€ €€ €€€€€€€€€€€ +€€€€€€€€ +€€€€€€€ €€€€ €€€€ €€€ € €€€€€ €€€€€€ +€€€ €€€€€€€ € €€ +€ €€€€€€ € €€€€€ €€€ € €€€€ €€€€€€€€ €€€€€€ €€€€€€€€€ €€€€€ € €€ €€€€€€€€€€€€€€€€€€€€€€€€€€€ € € €€€€€ €€€€€€ +€€€€€€ € € €€€ €€ €€€€€€ +€€€ € €€€€€€ €€€ €€€ €€€€€€€€ € €€ +€ +€€€€ €€ €€€€€€€ € € € €€€€€ +€€€ €€€€€ €€€€€€€ €€€€€€€€€€€€€€€€ €€ €€€ €€€ €€ €€ +€€ €€€€€€€€€€€€€€€€€€ €€ €€ €€€€€€€€ € +€€€ €€€€€€€€€€€€ € +€ +€€€€€€€€€€ €€€€€€€€ €€€€€€€ €€€€€€€ +€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€ +€ € € €€€€€ +€€€€€ €€ €€€ €€€€ € +€ +€€€ € € € €€€€€ € +€€€€€ € €€€€€ € €€€€€€ +€€€€€€€€€€€€€€ €€€€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€ € €€€€€€€€€ +€€€€ €€ €€€€€€€€€€ +€€€€€€€€ € +€€€ +€€€€ €€€ +€€€€ €€€€ € €€€€€€€ €€€€€€€€€€€€ €€€ € €€€€ €€€€€€€€€ +€ +€€€€€€€€€€€€€€€€€ €€ +€€€€€€€€€€€€€€€€€€€ €€ +€ +€€ € € +€€€€ +€ +€€ €€ € € +€ €€€€€€€ €€€€ € €€€€€€€€ +€€€€ €€€€€€€€€ +€€€€€€€€€€€€€ €€€€€€ €€€€€€€€ €€ +€€€€€€ € €€ €€€€ €€€€€€ +€€€€€€€€€€€€ €€€€€€€€€€€ € €€ €€€ € €€€€€€€ +€€€ €€€€€€€€€€ €€€€€€€€ +€ +€ € €€€€€€ €€€ €€€ €€€€€ € +€ €€€€€€€€€€€€ €€€€€€€€€€€ €€€€ €€€€€€€€€€ €€€€€€€€€€€ €€€ €€€€€€€€€€€€€ €€€€€ €€ € €€€€€€€€€€€ € +€€€ +€€€€€€€ €€€€€€€€ € +€€€€€€€€€€ €€ €€ +€ €€€ €€€€€€€€€ +€€€€ €€€ €€€€€€ +€ €€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€ €€ € €€€€€€€€€€€€€ €€ €€€€ €€€€ +€€ €€ +€€€€€€€€€€€€€ € €€€ +€€€€€€€€€€€€€€€ €€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€ +€€€€€€€ € €€ €€€ +€€€€€€€€€€€€€€€ €€€"€€€€€€€€€ +€€€€€€€ € €€€€€€€ €€€€€€€€€€€€€ €€€€€€ €€€€)€"€€€€€ €€€€€€ € €€€€€€€€€€€€€ €€€€€€ €€ €€€ €€€€€€€€€€€€€ €€ €€€ €€€ €€€€ +€€ +€€€€€€€ €€€€ €€€€€€€€€ €€€€€€ +€ €€€€€€€€€€€€ €€€ €€€ €€€€€€ €€€€€€ €€€€€€€€€€€ € € +€€€€€€€€€€ +€ €€€ € €€€ €€€€ +€€€€€€€€€€€ € €€€€€€€ € € €€€€ €€€€€€€€ €€ €€€€€€€€€€ €€€€€€€€ €€€ €€€€€ € €€€€€€€€€€€€ €€ +€ € € +€€€€€€€€€€€€€€€€ €€€€€€ €€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€ +€€€€€€ +€€€€€€€€€€€€€€€€€€€€ +€ €€€€€€€€€€€€ € €€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€€ € €€€€€€€€€€€€€€€€ €€€€ € €€€€€€€€€€€ € €€ €€€€ €€€€€€€€€€€ €€€€€ €€€€€€ € €€€€€€€€€€€ € €€ € €€€ €€€€€ +€€€€€ € €€€€€€ € €€€€€€€€€€ €€€ € €€ € € €€€ € €€€€€€ €€€€ +€€€€€€€€€€€€€ €€€€€€€€€€€€€ €€€€€€€ € €€€ €€€€€€€€€€€ +€ +€ € €€ €€€€€ €€€€€€€€€€€€€ € €€€€€€€€ €€€€€€ €€€€ €€€€€€€€ €€€€€€€€€€ +€ € €€€€€ €€€ €€€€€€ €€ €€ €€ € € +€€€€€€ €€ +€€€€ €€ €€€€€€€€ +€€€€€€€€€€€€ €€€€€€€€€€€€ € €€€€ €€€€€€€€ € €€€€€€€€€ +€€€ € € € +€€€€€€€€ € +€€€€€ €€€€€€€€€€€€ +€ € €€€€€€€€€ €€€€ € €€€€€€€€ €€€€€€€€€€€ € €€€€€€€€€€€€€€€€€ € €€€€€ €€€€ €€€ +€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€€€€€€€€ +€€€€€ € €€ €€€ €€€€€€€€€€€€€€€€ € €€€€€ +€ € €€€€€€€€€€€€ € € € €€€€€€€ € €€€€€€€€ +€ €€ +€ € +€€€€ +€ €€ €€€€€€€€€€ +€€€€€ € €€€€€€€€€ €€€€€ € €€€€€€€€€€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€€€ €€€€€€€€ +€€€€€€€€€€ €€€€€€€€€€€€ €€€€€€ €€€€€€€€ +€€€€€€€€ €€ +€€€€ €€€ €€€€€€€€€€€€€€ €€€€€€€ € €€ € +€€€ +€€€€€€€€ €€€€€€€€€€ € +€ €€€€€€ € €€ €€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€ +€ €€ +€€€€€€€€€€€€€ €€€€€€ €€€€€€€€€€€€€€€€€€ +€ € €€€€€€€€€€€€€€€€€€ € +€€ €€€€ +€€ +€ €€€ € €€€ €€€ € +€ € €€€€€€€€ € €€€ € €€ €€€€€€€€€ €€ €€ +€€€ € €€ €€€€€€€ € +€€€€€€€€€€€€€€ € € €€€€€€ +€€€€€ €€€€€ +€€€€ €e€R€€ €€€€ €€€€€ €€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€€ +€€€€€€€€ €€€€€€€ € €€€€ €€€ € € €€ +€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€ +€€€€€ +€ € €€€€€€€€€€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€ €€€ € € +€€€€€ +€ +€€€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€ € €€ € €€€€€€€€€€ €€€€€€€€€ +€€€€€ €€ +€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€€€€ €€€ €€€€€€€ €€€€€ €€€€ €€€ +€ €€€€ €€ €€€€€€€€€ €€ € € +€ €€€€€€€€€ €€ €€ €€€€€€€ €€€€ €€€€ € +€€€€€€€€€€€€€€€€€€€ € €€€ € €€€€€€€€€€€€€€€€€€€ €€€€€ € +€ +€€ €€€€€€ €€€€ €€€€€€ €€ +€€€€€€€ € € € €€ € +€€€€ €€€€ +€€€€€€€€€ €€€ +€ €€€€ €€€€ € € € +€ +€€€ €€€€€€ €€ €€€ € €€€€ €€€€€€ +€€€€ € €€€€€€€€€ €€€€€ €€€€€€€€€€€€€€ €€€ € €€€€€.€"€€€€€€€€€€€€€€€€ +€€€€ €€€€€€ € €€ +€ €€€€€€€€€€€€€€€ €€€ €€€€€€€€€€ +€ €€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€€€€€€€€€€€ € €€€€€ €€€€€ € € €€€€€€ €€ € €€€€€€€€ €€ €€€€€€€€€€€ € +€€€€€ € +€€€€ € +€€ €€€€€ €€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€ €€€€€€€€€ +€ €€€ €€€€ €€€ €€€€€€€€€€€ € €€€€€€ €€€€€€ +€€€€€ €€€€€€€€€€€€€€ €€€€€€ €€€€€ €€€€€€€€€ €€€€€€ +€€€€€ €€€€€ +€€€ €€€ +€€ +€€€ €€€€ € +€ € € €€€€ €€€€€€€€ €€ €€ +€€€€ €€€€€€€€€ € € €€€€€€€€€€€ +€ €€€€€€€ €€€€€€€€ €€€€ € €€€€ €€ € € €€€€ € €€€€€€€€€€ +€€ +€€€€€€€€€ € +€€€€€€€€€€€ €€€€ €€€€€€€€€ € €€€€€€€ € € € €€€€€ €€€ €€€€€€€€€€ € €€€€€€€€ +€ €€€€€€ €€€€ +€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€ +€ €€€€€€ € €€ €€€€€€€€€€ €€€ €€ +€ € +€€€ € €€€€ €€€€€€€€ +€ €€ €€ +€ €€€€€ €€€€€€ € +€€ +€ € +€ €€€€€€€€€€€€€ +€€€€€€€€€€€€€ €€€€€€€€€ € +€€€€€€€€€€ +€€ €€€ €€€€€€€ € €€€€€€€€€€€€€€ +€€€€€€€€€€€ € €€ €€€€€€€€€€€€€€€€€ +€€ €€€ € €€€€€€€€ €€€ € €€€€€€ € €€ € €€ +€€€€€€ +€€€€€€ €€€€€ +€€€€€€€€€€€€€€€€€€ €€€€ +€€€€ € +€€€€€€€€€ €€ €€€€€ +€€€€€€€ €€ €€€ +€€€€€€€ +€€€ €€€€€€€€€€€€€€€€ €€€€€€€€ €€€€€ €€€ +€€€€€€ €€€€€€€€€€€ € €€ €€€€€€ +€€€€€€ €€ +€€ €€€€ € +€€€€ €€ +€€€€€ € +€€€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€ €€€ €€ €€€€ €€€ €€€€ €€€€ €€€€ € €€€€€€€€€€€€€€€€€ €€€€€€€ +€€€€ € €€ € €€€€€€€€€€€€€€€ €€€€€€€ +€ €€€€€€ € €€€ € €€ €€€€ €€€€€€€€€€€€€€ €€€€ €€ € +€ €€€€€€€€€€€€€€€€€€€€€€€€€€ € €€ €€€€€€€€€€€ € €€€€€€€€ €€€€€€€€€ €€€€€ € +€€ € +€€€€€€ €€€€€ € +€€€€€€€ €€€€ € € €€€€ € €€€€€€€€ € €€€ €€€€€ €€€ +€€ €€€€€€€€€€€€€€€€ € € €€€€€€€€ €€€ €€€€€€€€€ €€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€ €€ +€€ € €€€€€ € +€ €€€€€€€€€€€€ +€€€€ +€ +€€€€€€€€€€€€€€€€€€€€€€€€ +€ €€€€€€€€€ €€€€ +€ €€€€€€€€€€€€€€ €€€ +€€€€€€€€€€ €€€€ € € €€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€ +€€ €€€€€€€€ €€€€€€ € € €€€€€€€€€€ +€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€ €€€€€€€€€ +€€€ €€€€€€€€€€€€€€€€ €€€ € +€ €€€€€€€€€€€€ €€€€€€€€€€ €€€€ +€€€€€€ +€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ € €€€€€€€€€ € €€€ € €€€€€€€ €€€€€ €€€€ € €€€€€€ +€€€€€€ €€€€€€€€€ € € € €€€€€ €€€€€€€€€€€€€€ +€€€€ € €€€€€ €€€€ €€€€€€€€ € €€€€€€€ €€€€€ €€€€€€€€€€€€€ +€€€€€€€€ € €€€€€€€€€€€€ €€€€€€€€€ €€€€€€€€€€€€€€€€ +€€€€€€€€ €€€€€ +€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€ €€€€ € € +€€€€€€€€€ +€€€€€€€€€€ €€ € €€€ € €€€€€€€€€€€€€€ € €€ €€€€€€€€€ +€ €€€€€€€€€€€€ €€€€ +€€€ +€€ € +€ € +€€€€€€€€€€€€ € €€ +€€€€ € € €€€€€€€€€€ €€ €€€€€€€€ €€€€€ €€€€€€€€€€€ €€€€€€€€€€€ +€€€€€€€€€€€€€€€€ +€ € € €€€€ €€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€ € €€ € €€ +€€€€€€€€€€€ +€€€€€€€€ €€€ €€€€€€€€€€€€€€€ € € €€€ €€ € €€€€€€€ € € €€€ €€€€€€ €€€€€€€ +€€ €€€€€€€€€€€€ €€ € €€ € €€€€€€€ €€€€€€€€€€€ € +€€€€€€€ +€ €€€€€€ €€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€ €€€ €€€€€€€€€€€ +€ €€€€ €€€€€€€€€€€€€€€€€ €€€€ €€€ € €€ €€€€€€€€€€€€€ € € +€ +€€€€€€€€ €€€ € €€€€€€€€€€€€€€ €€€€€€€€€€€ € € € +€€€ € €€€€ €€€€€€€€€€€€€€€€€ €€€€€€ €€€€€ +€€ €€ €€€€€€€€€€€€€€€€€€€€€ €€€€€€€€ €€ € €€ € €€€€ €€€€€€€€€€€ € € €€€€€€€€€€€€€ +€€ €€€€€€€€ €€€€€€€€€ €€ €€€€ +€€€€€€€€€€€€ €€€€ €€€€ €€€€ €€€€€€€€ +€€€€€€ €€€€€€ +€ +€€€ € €€€ €€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€ € €€ € €€ €€€€ € € € €€€€€ €€ €€€€€€€€€ +€€€€€€€€ €€€€ €€€€€ €€€€€ € € +€ € €€€€ €€ € €€ +€ €€€€€€€ €€€€€ € € €€ €€€€€ € +€€€€ +€ +€€€ € € €€ €€€€€€€ €€€€€€€€€ €€ +€ € +€€€€€€€€€€€€€€ € €€€€€€€ € €€€€€€€€€€€€€€€ €€€€€€€€ €€€€€€ +€€€€€ € €€€€€€€€€ +€€€€€€€€ €€€€€€€€ € €€€€€ €€€€€€€€ €€€€€€€€ €€€€€ €€€ €€€€€€€ €€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€ €€€€€ €€ €€ € € € €€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€€ +€€€€ € +€€€€ € € €€€€€€€€€ +€ €€€ €€€€ €€€€€€€€€€€€€€€€ € €€€ €€€€€€ € €€€€ €€€ € € €€ +€ €€ €€€ € € €€€€€€€ € €€€ € +€€€€€€€€ € €€€€€€€ €€€€€€€€€ €€€ €€€€€€€€€€€ €€€€€€€€€ +€€€€€ +€ +€€ € €€€€€€€€€€€€€€€ €€€€€€€€€ €€€€€€ €€ €€€€€€ +€€€€ €€€€ €€€€€€€€€€ €€€€€€ +€€€€€€ € €€€€€€€€€€€€€€€ € € €€€€€ € €€€€€ €€ € €€€€€€€€€€ €€ €€€€ € €€€€€€€€€€ €€€ €€€€€€€€ € €€€€€€ €€€€ € €€€€€€€€€€€€€€€€€€€ € € € €€€ +€ +€€€€€€€€€ €€€€€€€€€€ € € €€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€ €€€€ €€€ € €€€€€€€€€€€€ € +€€€ €€€€€ €€€€€ €€€€ €€€€€€€€€€€€€ €€€€€€€ €€€€€€ €€ € +€ €€€€€€ €€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€ € €€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€ €€ €€€ €€€€€€€€€ €€€€€ €€€€ €€ €€€€ +€€€€€€€ €€ € +€€€€€€ €€€€€€€€€€€€€€€€€€ €€ €€€ € +€€ €€€€€ +€ €€€€€€€€€€€ €€€€€€€€€ € +€€ €€€ +€€€€€ €€€€€€€€€€€€€€€ €€ €€€€€€€ €€€€ +€€ €€€€€€€ €€€€€ € €€€€€€€€€ €€€€€€€ €€ +€€ +€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€ €€€€€€ €€ +€€€€€€ €€ €€€€€ €€€€ €€€€€€€€€€€€€€ €€ €€€€€€€€€€€ +€€€ +€ €€€€€€€€ +€€€€ €€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€ +€€€€€€ € €€€ +€€€€€€€€€ €€€€ €€€€€€€ € €€ €€€€€€€€€ € €€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€€ € €€€ € €€€€€€€€€€€€€ €€€€ € € €€€€€ €€€€€€€ € € €€€€€€€ +€ €€ €€€ € € € € €€€€€€€€€ +€€€€€€ €€€€ €€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€ +€€€ €€€€€€ €€€€€€€ € € € €€€€€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€ +€€€€€ +€€ €€€€ € €€ €€€€€€€€€€€€€€ €€ €€€ €€ €€€ +€€€€ €€€€€€€€ €€€€€€€ € +€ € € € €€€€ €€€€€€ € €€€€€€€€€€€€€ €€€€€€€ €€€ €€ €€€€€€€€€€€€€€€ €€€€€€€€€€€€ €€€€€ €€€€€€€ +€€ +€€€€€€ €€ €€€€€€€ €€€ €€€€€€€ €€ €€ +€€€ €€€€€€€€ +€€€€€€ +€ €€€ +€ €€€€€€€€€€€€€€€€€ +€€€€ € €€ €€€€€ €€€€€€€ € €€€€€€€€€€€€€€€€ €€€ € +€€€€ € €€€€€ € €€€€€€€€€€€€€€€€€ €€ +€ €€€€€€€€€ € €€€€€€€€€ +€ +€ +€€ +€€€ €€€€ €€€€€€€€€€€€€€€€€€€€€€€€€ +€€€€€€ €€€ €€€€€€€ €€€ €€€€€€ €€€€€€€ € € € €€€€ +€€€€€€€€€€€€ +€€€ €€€ € €€€€€€€€ € +€€€€€€€€€ +€€€€€€€€€€€€€€€€ €€€€€€€€€€€ € €€€€€€€€€€€ €€€€ +€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€ +€€€€€€ € € € € € €€€€€€€€€€€€ €€€€€€ € € €€ +€€ €€€€€€ €€€€ €€€€€ +€€€€ €€€€ € €€€€€€€€€€€€€€€€€ € €€ €€€ €€€€€€€€€€€€€€€€ €€ €€€€ +€€€€€€ €€€€€ €€ €€ € €€€€€€€€€€€ €€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€ €€€€€€€€€ €€€€€€€€€ +€€€€ €€€€€€€€€€€€€€€€€€€€ €€€ €€ €€ € €€€€€€€€ €€ € +€€€€€€€€€€€€€ € €€€€ +€€€€€€€ €€€ +€ €€€€€€ €€€ €€€€€€ € € €€€€€€ €€ €€€€€€€€€ +€€ +€ € € € €€ € € €€€€€€ €€€€€€€€ €€€ € €€€ +€€€€€ +€€€€€€€€€€€€€€€€€€€€€€€€€ +€ €€€€€ €€€€€€€€€€€€€ € € € € €€ €€€€€€ € +€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€ €€€€€ €€€€€€ €€€€€€ €€€€€€€€€€€€€€€€ +€€€€€€€€€€ +€ €€€€€€€€€€€€€€€€ € € €€€€€€€€€ €€€€€€€€€€€ €€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€ +€€ €€ €€€ €€€€€€ €€ €€€€€€€ +€€€€€€ +€€€€ €€€€€€€€ €€€€€€€€€€ €€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€€ € +€€€€€€€ € € €€€€€€€€ € €€€€ +€€ €€€€€€€ €€€€€€€€ +€€€€€€ €€€€€€€ €€€€€ +€ €€€€€€€€€€€€€ €€€€€€€€€€€€€€€ € +€€€ €€€€€€€€ €€€€€€€€ +€€€ €€€€€€€€€ +€ €€€ €€€€€€€ €€€€ €€€€€€€€€€€€ +€ €€€€ € €€€ €€€ €€€€€ €€€ +€ +€€€€ €€€€€ +€€€€€ €€ €€€€€€€€€€€ € €€€€€€€€€€ € € €€€€€€ € €€€€€ €€ € €€€€€€€ +€€€ +€ €€€€€€€€€€€€€€€€€€€€€ €€€ € €€€€€€€€€€€ +€€€€€€€ +€ +€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€ € €€€€ €€ +€€€ € +€ € €€€ +€ +€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€ €€€€ €€€€ €€€€€€€€€€€€€€€ € €€€€ € € €€€€€€€€€€€ €€ €€€€€€€€€€€€€ +€€€€ € €€€€€ €€€€€€€€€€ €€ €€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€ € +€€€€€ €€€€€ €€€€ +€€€ +€€€ € €€ € €€€ € € +€€€€€€€€€€€€€€ € € € €€€€€€€€€€€€€€€€€€ €€€ € €€€ +€ €€€ € €€€€€€€€€€ €€€€€ +€ €€€ €€€ € +€€€ €€€€€€€€ €€ €€€€ €€€€€ €€€€ €€€€€ € €€€€€ €€€€€€ € +€ €€€€€€ €€€€€€€€€€€€€ € € +€ €€ +€ €€€€ +€ €€€€€€€ €€€€€€€€ +€€ +€€€ €€€€ +€€€€€ € € €€€€€€€€ €€ € € € €€€€ +€€€ €€€ €€ +€€€€ €€€€€ €€€ €€€ +€€€€€€ € €€€ € €€ +€€€€€ € +€ € € +€€€€€€ €€€€ €€€ €€€€€€€€€€€ €€€€€€€€€€ €€€€ € €€€€€€€€€€€€€€€€€€ +€€€ €€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€ € €€€€€€ € €€€€ €€€€€ €€ +€€€€ € €€€€€€€€€€ +€€€ € +€€€ €€€€€€€€€€ €€€€€ +€ € €€€€€€€ € +€ +€€€€€€€€€€€€€€ €€€€€€€ €€€€ €€ €€€€ € €€€€€ €€€€€€€ € €€€€€€€€ +€ €€€ €€ +€€€€€€ €€€€€€€€€ €€€€€ +€€€€€ €€€€€€€€ €€ €€€ €€€€€€ €€€€€€€€€€€€€€ +€€€€€€€ € €€€€€ €€€€€€€€€€€ € €€€ €€ € +€€€€€€€€€€ +€€€€€€ €€ €€€€€€€€ +€€€ €€€€ +€ €€ €€€€€ €€€€€€€ €€€€€€€€ €€€€ +€€€€€€€ €€€€ €€ +€€ € €€€ €€€€€€€€€€ €€ € €€€€€€€€ € €€€ € €€€ € €€€€€ €€€€€€ €€€€€€ € +€€€€€€€€ +€€€€€€€€€€€€€€€ €€ €€€ +€ € €€ €€€€€€€€€ € €€ € € €€ €€€€ €€€ €€€€€€€€€€ €€€€€€ €€€€ € €€€€ € +€€€€€€€€€€€ +€ €€ € €€€€€€€€ +€ €€ €€€€€€€€€ +€ €€€€€ €€€€€ €€€€€ €€€€€€€€ +€ €€€ +€€€€€€€€ €€€€€€€€€€€€€€€€ €€€€€ +€€€ €€€ €€€€€ €€€€€ €€€€€€€€€€€€ €€€€€€€€€€ +€ € €€€€€€ +€€€€€€€€€€€€€€ €€€€€€ +€€ € +€€€€€€ +€€€€€€€€ €€€ +€€€€€€€ €€€€ €€€€€€€€€€€ € €€€€€€ € €€€€€€€€€€€€€€€€ +€ +€ € +€€ €€€ €€ +€€ +€€ €€€ €€ €€€€€€€€€ €€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€ €€€€ €€€€€ € €€€€€ €€ €€€€€€ €€€€ +€ €€ €€€ €€€€€€€€€€€€€€€ € +€€ +€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€ +€€€ €€ € +€€€€€€€€€€€€€€€ €€€€ €€€€€€€€€ € €€€€€€€ +€ €€€ € €€€€€€ €€ +€ €€€€ € +€€€ +€€€€€ €€€€ €€€€€ € € +€€€€€€€€€€€€€€€€€ €€€€ +€ €€€€ €€€€€€€€€€€€ € +€€€ +€€€€€ +€€€€ €€ €€ €€€€€€€€€€ €€€€€ €€€ +€€€ +€€€€ € +€€€€€ €€€€ +€€€€€€€€€€€€€€€€€€€€€€€ +€ +€€€ €€€ €€€€€€ € +€€€€€€€€€€€ €€€ € € €€€€€€€€€€ €€€€€ €€€ € €€€ €€ €€ € € €€€€ +€ €€€ €€ €€€€€€ €€ €€€ +€€€ € +€€€€€€€€€€ +€€€€ +€€€€€€€€€€€€€ €€€€€€€€ € €€€ €€€ €€ € +€ +€€€ € €€€€€ +€ €€€€€ € €€€€€ € €€€€€€€€ €€€€€€€€€€€€€€ €€ € €€€ €€€€€€€€€€€€€€€€ €€€ € €€€€ €€€ +€ €€€€€ €€€€€€€€€€€€€€€€ €€€€€€ €€€€ €€€€ €€€€€€€€€€€€€€€€€ € €€€€€€€€€ €€€€€€€€€€ €€€€€€€ €€€€€€€€€€€ €€€€ €€€€€€€€€€€ +€ € +€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€€€€ €€€€€€€€€€€ € €€ €€€ €€€€ +€ €€ €€€€€€€€€€ €€€€€€€ €€€€€ €€€ +€ € €€€€ €€€ €€ €€€€€€€€€ +€€€€€€€€ € €€€€€ +€€ € €€€€ €€€€€€€€€ € € €€ €€€ €€€€€€€€€€€ €€ € € €€€€€€€€€€€€€€€€€ € € € €€€€€€€€ € €€ €€€€€€€€€€€€€€€€€€€€€€ €€€ €€€€€€€€€ €€€€€€€€€€€€€€ +€€ €€€ €€€€€€€€€€€€€ € € €€€ €€€ €€ €€€€€€€€€ €€€€€€€€€ € € € +€€€€€€€€ € +€€€€€ €€€€€€€€€€€€€€ €€€€€€€€ €€€€ €€€€€€€€€€€€€€€€€€€ +€€ €€€ €€€€€ €€€€€€€€ € € € € €€€€ €€ €€ +€€€ € €€€€€€€€€€€€€€€€€€€€ +€ €€€€€€ +€€€€€€€€€€€€€€€€€€€€€€ €€€€€ € €€€ €€€€ €€€ +€€€ +€€ €€ €€€€€€€€€€€€€€€€ €€€€€€ €€€€€€€€€€ €€ €€€€ €€€€€€€€ € +€€€€€€€€€€€€ €€€ €€€€€€ €€€€€€ €€€€€ €€€€€€€€€€ €€ €€ +€€€ €€€€€€ €€€€€€€€€ +€€€€€€€€€€€€€€€€€€ €€€€€€€€ € €€€€ +€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€ +€€€ +€€€ €€ +€ €€€€€€€€€€€€€ € +€ €€€€€€€ € €€€€€€€€€ +€€€€€€€ +€€ €€€ €€€€€€€€€€€€€ +€€€€€ €€€€ € € €€€€€€€€€€ €€€€ €€€€€€ €€ +€€€€€ €€€€€ €€€€€€€€€ € €€€€€€€€€€ €€€€€€€€€€ +€€€€€€€ €€€€ €€€€€€€€€€€€€ € €€€ +€ € € €€€€ +€€€€ €€€€ €€€€€€€€€€ € €€€ € €€€ €€€€ +€€ €€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€ +€€€ €€ €€ €€€€€€€€€ €€€ € +€€€€€€ € +€ €€€ €€€€€€€€€ €€ €€€€€€€€€ €€ €€ €€€€€€€€€ €€€€ €€ €€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€ +€ €€€€ €€€€€€€€€€€€ €€€€ €€€€€€€€€ €€€€€ €€€€€€€€€€€€€ €!€€€€€€ €€€ €€€€€ €€€€€€€€€€€€ €€€€€€€€€€€ +€€€ € € €€€€ €€€€€€€€€€€ €€ €€ €€€€€€€€€€€€€€€€€€€€€€ € €€€€€€ €€€€€€€€€€€€€€€€€ +€€€€€€€€€ +€€€ €€ +€€€€€€€ €€€ €€€€€€€€€ € €€€€€€€€€ +€€ +€ €€€€€€ +€€€ €€€€€€€€€€€€ +€€€€€€€€ € € €€€€€€€€ €€€ €€€€€€ +€€€€€€€ +€ €€€ €%€#€€€ €€ €€€€€€€€€ €€€€€€€€€ +€ €€€€€ € €€€€€€€ +€€€€€€€€€€ +€€€ +€€ € €€€€€€€€€€ +€ +€€€€€€ +€€ € €€€€€€ €€€€€€ €€€€€€€€€€€€ +€€ € € +€ € €€€€ €€€€€ +€€€€ €€€ €€€€ € €€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€ € € €€€€€€€ € € +€€€€€€€€€€€€€€€€ € € € +€€€€€€€€€€€€€ € €€€€ €€€€€€€€€€€ €€€€€ €€€€€€ +€€ €€ € €€€€€€€€€€ +€€€€€€ €€€€€€€€€€€€ € +€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€ € €€€€€€ € €€€€€€€€€€€€ €€ €€€€€€€€€€€€€€ +€€€ € € €€€€€€ €€€€€€€€€€ €€€€€€ €€€€€€€€€€€€€€ €€€ €€ €€€ € +€€€€ +€€€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ € +€ €€€€€€ +€€ +€ +€ €€€ € +€€€€€€€€€ € +€€€€ €€€€€€€€€ € €€€ €€€€€€€€€€€€ €€€€ €€€€€€ +€€€€€€€€ €€ €€€€€ € € +€ €€€€€ €€€€€ €€€€€€€€€€€ +€€ €€€€€€€€€€€€ € €€€€€€ +€€ +€€€€€€€€€€€€€ € € €€€€€ €€ €€€€€ € € +€€€€€€€€€€€€ €€€ € €€ €€€€€€ +€€€€€€€€€€€€ +€€€€€€€ +€ €€€€ +€ €€€€€ €€€€€€€€€€€ € +€ €€€€€€€ +€€€€€€€€€€€€€€€ € €€€€€€ €€€€€€€€€€€€ €€ €€€€ € €€ € €€€€ €€€€€€ €€€€€€€€€€€€€€€€€ €€€€€€€€ +€ €€€€€ €€€ €€€€ €€€€€€€€ € +€€€€€€€€ €€€€€ €€€€€€€€ €€€€€€€ €€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€ €€€€ +€ €€€€€€€€€€€€€€€€€€€€ € € € €€€€€ €€€€€€€€€€€€€€€ € +€€€€ €€€€ € €€€€€€€€€€ €€€€€€€ +€€€€€€€€€€€€€€€€€€€€ €€€€€ € €€€€€ € €€€€ €€€€€€€€€€€€ €€€€€€ € €€€€€€€€€€ +€€€ € € €€€€€€ €€€€€€€€€€€€ €€€€ € €€€€€€€€€ €€€€€€€€€ €€€€€€€€€€€€€ € €€€ € € +€€ €€€€€ +€€€€€€€€€ €€€ €€€€ +€€€ €€€€€€€€ € +€€€€€€ € +€€ +€ +€ €€€€€€€€€€ +€€€ +€ €€ € €€€€€€ € +€€€€€€€€€€ +€€€ €€€ €€€€€€€€€€€€ €€€€€€ € €€€€€€€ €€€€€ € €€€ +€€€€€€€ +€€€€€€€€€€€€€€€€€€€€€ €€ +€ +€€€€€€€€€€€€€€€€ €€ € €€€€ € €€ +€€ € +€€€€€ +€ €€ €€€€ €€€ €€€€€ € €€€€€€€€€ €€€ €€€€€€ €€€€€€ €€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€ +€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€ +€ €€€€ €€€€€€ €€€€€€€€ +€ €€€€€ +€€ € €€€€€ €€€€€€ €€€€€€€€€ € +€€€€€€ €€€ €€€€€€€€€€€€€€ €€€ €€€ €€€€€€ €€€€€€€€€€€€€ €€€€€ €€€€ €€€€€€ +€€€€€€€€€€ €€€€€€€€€€€€€€€€€ €€€€€€€€€€€€ €€€€€€€€€€€€ €€€€ € € +€ €€€ €€€€€€€€€ €€€€€€ €€€€€€€€€€€ €€ €€€€€€€€ €€ €€€€€ €€€ € €€ €€ €€€€€ +€ € €€€ € €€€€€€ €€€€€€€ €€€€€€ € €€€€ +€ € €€€€€€€ +€ €€€€€ € € +€€€ €€€€ €€€ € €€€€€€€€€ +€€ € €€€€ €€€ €€€€€ +€ € +€€ € +€ € €€€€€€€ €€€€€ €€€€ € € +€€€ €€ +€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€ €€€€€€€€€ +€€€€€€€€€€ €€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€ €€€€€€€.€%€€€€€€€€€€ €€ +€ € €€€ €€€€ +€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€ € €€€€€€€€€€€€€ +€ €€€€ € €€€€€€€€€ €€ € €€€€€ +€ +€€€€€€€€€€€€€ +€€€€€€€ €€€€€€ €€€€ €€€€€€€€€€€€€€€-€!€ +€ €€€€€ €€€€€€€€€€€ € €€€€ €€€€€€ +€€€€ +€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ € +€€€€ €€ €€ € €€€€ €€€ € € €€€€€€€€€€ € +€€€€€€€€€€€€€€€ €€€€ €€€€€ €€ €€€€€€€ +€ +€€ € +€€ €€ € €€€€€€€ +€ €€ €€€ €€ €€€ € +€€ € +€ +€€€€ €€€€"€€€€€€ €€€€ +€€€€€€€€€€€€ +€ €€€€€€€€€€€€€€€ € +€€ € €€€ €€€€€€€€€€€€€€€€€€€€€€€€€ +€€ €€ €€€€€ €€€€€€ €€€€ €€€€€€ € €€€€€€€€€€€€€€€€€€€ +€€€€€ € €€€€€€€ +€€ €€€€ €€€€€€€€€€€€ €€€€€ +€€€€€€€€€€€ €€€ €€ € +€€ € €€€€€€€€€€€€€€€€€ €€€€€ € +€ €€ €€€ €€€€€€€€€€€€€ € +€ €€€€€€€€€ +€€€€€€€€€€ €€€€€€€€€€€€€*€#€ €€€€€€€€ € €€€€ +€€€€€€€€€ €€€€€€€€€€€€€€€€€ +€€€€€€€€€€€€€ €€€ €€€€€€ +€ €€!€€€ € €€€€ €€ +€€€€€€ € € €€€€€€€ +€€€€€ +€€€ € €€ € +€€ +€€€€€€€ € +€€€€€€€€€€€ €€€€ €€€€ €€€ € €€€€€ €€€€€€€€€€€ €€€€€€€ +€€€€€€€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€€€€€€€€ €€€ +€€€€€€€€€€€ € +€€€ €€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€ €€€€ €€€€€€€€€ €€€€€€ € € €€€ € € € €€€€€!€€€1€5€&€€$€€€.€/€€€€€€€€€ €€ € €€ €€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€ € €€€ €€€ €€€ €€€€€ €€€€€€ +€€ +€ €€€€€€€€€€€€€€€€€€€€€€€€ €€€€ €€€ €€€€€€€€€€€ +€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€ € +€€€€€€€ €€€€€€€€€€€€€€€ €€€€€€ €€ €€€ €€€€€€€€€€€€€ € €€ €€€€€€ +€ €€€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€€ €€€€€ €€ €€ €€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€ €€ €€€€ +€€€€ €€€€€ € €€€€€€€€€€ €€€€ €€€€€€ +€€€€€€€€ € +€€€€€€€€€€€ € €€ €€€€ €€€€ €€€ €€€€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€ €€€€€€€€ +€€€€€€ € €€€€$€(€5€;€B€>€6€:€0€%€+€%€€€€€€€€€€€€ +€ € €€€€€€ €€€€€€ +€€€€ € +€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€ € €€€€€€€ €€€€€€€ €€€€€€€€€€€€€€ €€ €€€€€€€€ €€€€€€€€€€€€€€ €€€€€€€€€€€€€€€ €€€€ € €€€€€€€€€€€€€ €€€€€€€€€€€ +€€€ +€ +€€€€€€ +€€€€ € €€€€ +€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€€€ € €€€€ +€€€€ +€ €€€€€€ €€ €€€€€ €€€€€€€€€€ €€€€€€€€€€€€€ €€€€€€€€€€€€€€€ €€€€€€ +€ €€€€€€€€€€ €€€€ €€ +€€€€€€€€ +€€€ € €€€€€€€ +€€€ € €€€€ €€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€ €€€€€ € €€€ € € €€ €€€€€€ €€€€€€€ € €€ €€€€€€€€ +€€ +€€€€ +€€€€€€€€€€€€€€€€€€€€ €€€ €€€ €€ € €€€€€€€€€€€ €€€€ +€€€€€€€€€€€€€€€€ € €€€€€€€€€ €€€ €€€€€ € € €€€€€€€€€€€€€€€€€€€ €€€€ +€€€€€€€€€€€€€€ €€€ €€€$€<€D€M€]€\€T€T€J€8€.€&€ €%€€ € +€ +€€€ € €€ € € €€ € +€€ +€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€ €€€€€€€€€€€ €€€€€€€ €€€€ €€€€ €€€€€€ € +€€€€€€€€€€ € € €€€€€€€€€ €€€ €€€€€ €€€ +€€€ €€€€€€€€€€€€€€€€€ € €€€€€ €€€€ +€ €€€ +€€€€€€€€€€€ €€€ +€ €€€€€€€€€€€ +€ €€€€€€€ €€€€€€€€€€€€€ €€€€ +€€ €€€ €€€€ € €€€€€€€€€€€€€€ € +€€ €€€€€€€€ €€€€ €€ +€€€€€€ €€€ €€ €€€€€ €€€€€€€€€€ €€€€€€€€€€ € €€€€ €€€€€€€€€€€ € €€€€€€€ €€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€ +€€ +€€€€€€€ +€€€€€€€€€€ €€€ €€€€ €€€€€€€€€€ +€€€€ € +€€€ +€€ €€ €€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€ €€€€€ € €€€ €€€€€€€ €€ €€€€€€€ € +€€ € €€€€ €€ € €€€ € €€€ €€€€€€€€€€€€€€ +€€€€€€€ €€€ €€€€ € €€€€ €€€!€0€S€S€a€w€€Ž€†€m€\€K€3€0€+€€€€ €€€ €€€ €€€€€ +€ €€€€€€€ +€€€€€€ €€€ €€ €€ +€€€€€€ €€ € +€€€€€€€ €€€€€ +€ €€€€€€€€€ € €€€€€€€€€ +€ +€ € €€€€€€ €€€€ €€€€€€€€€€€€€€€€€ €€€€€€€ €€€ +€ €€€€€€€€€€€€€€ €€€€€€€€€€ €€€€ € +€€€€€ €€€ €€€€€€€€€€€€€ €€€€ € +€ €€€€€€€€€€€€€ +€€ €€€ €€€€€€€€€€€€ € €€€€€€€€ +€€ €€€€€€€€€€€€€€ € €€ €€€€€€€€€€ €€€€€€€€€ +€ +€ €€€€€ +€€ €€€€€ €€€€€€€€€€€€€€€€€€€€€€ €€€€€ €€€€€€€€€€€ €€€€€€€ € +€€€€€ €€ € €€ €€€€€€ € €€€€€€€€€ € €€ €€€ €€€ €€€€ €€€€€€€ +€€€€ €€€ +€€€ €€€€€€€€€€ € €€€€€€€ €€€€€€€€€€€€ €€€€€ €€€€€€€ €!€€€€€€ +€€€€€ +€ €€€€€€€ €€€€€€€€€ € €€€€€€€€€€€€€€€ €€€€€ € € € € +€€€ € €€€€ €€ €€€€€€ €€ €€ € €€€€€€€€€€€€€€€€€€€ € € € € €€€€ € € € € €€€)€4€E€a€x€›€Ý /€ù€¡€q€P€4€/€*€€ +€€€ +€€ €€€€€€€ €€€€€ +€€€€€€€€€€€€€€ € +€€ €€€€ €€ € €€ € +€€€€€€€€€€€€ €€ €€ €€€€€€€€€€€€€€€€€€€€€€€€€ € +€€€ €€€€€€€€€€ €€€€€€€€€ €€€€ € +€€€€€€€€€€€€ €€€€€€€€€€€€€ € €€€€€€€ €€€€€€ +€€€€€€€€€€€€€€€ €€€€€ € €€€€€€€€€€€€€€ € €€ € €€€€€€€€€€€€€€€€€€€€€€€€ €€ €€ €€€€€€€€€€€€€€ €€€€ €€€€ €€€€€€€ €€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€ €€€ €€€€€€ €€€€€€€€€ € €€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€ € €€€€€€€€€€€€€€ € €€€€€€€€€ €€€€ € €€€ €€ €€€€€€€€€€€€€€€€€€€€ €€€€ +€€€€€€€€€ €€€€€€€€€€ €€ €€€€€€€€€€ €€€€€€€ +€€€€ € €€€ € €€€€€ €€€€€€€€ +€€€€€€€ €€€€€€€€€€€€ € +€ € +€€€€ +€€ € € € € €€€€€ €"€*€B€h€ªäƒ=ƒ“‚J€™€f€<€ €€€ € €€ € +€ € €€ €€€€€€ € €€ €€€ +€€€€€€€€€€ €€€€€€€ €€€€ € €€€€ +€ +€ +€€€€€€€€€ +€€ € +€€€€€€ +€ +€€€€€ €€€€€€€€€ €€€€€ €€€€€€€€ € €€€€€ €€€€ €€ €€€ €€€€€€€€€€€€€€€€€€€€ €€€ € +€€€€ €€€€€€€ €€€€€ +€€€ +€€€€€€€€€ €€€€€€ +€€€€ €€€€ +€ €€€€€€€€€€€€ €€€€€€€€€ € €€ +€€€ +€ +€€€€€€€€€ € €€€€€€€€ €€ €€€€€€ +€€€€€€€€€€€€€€€€€€ € € € € €€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€ +€€€ €€€ €€€ €€€€€ €€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€ €€€€€€€€ €€€€€ +€€€ €€€€ +€€€€ €€€€ €€ +€€€€€€€€ €€€ +€€€€€€€€ +€€€€€€€€€€€ € €€€ €€€€€€€€€€€€€€ €€ +€€ €€€€ € € € €€€ € € €€€ € €€€ €€ €€€€€€€ €€€€€€€€€€€€ +€ € € €€€€€€€€€€€ +€ €€ € +€€€€€€ € €€€€ €€€€€€€€€€ €€€€ €€€€€€ +€ € €€ +€ +€€€€€€#€(€@€m€É„ÑW +‡•þ€Ë€ƒ€T€.€!€€€ €€€ € €€ €€ €€€€ €€€€€ €€€€€€€€€ +€ €€ +€€€€€€ +€ €€€ +€€€€€€ +€€€€ € €€€€€€ €€€€€€€€€€€€€ €€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€€ €€€€€ € €€ €€€€€€€€€€€€€ €€€€€€ € +€€€€€ €€€ € €€€ € €€€€€€€€€€€ € +€€€€€€ €€€€€ €€€€€€ € €€€€€€€€€ € €€€€€€€€€ €€€€€€€€€€€ €€€€€€€€ €€€€€€€€€€€ €€€ €€€€€€€€€€€ € €€€€€€€€€€€€€ €€€€€€€€€€€€ € €€€€€€ €€€€ €€€ €€€€€€ +€€€€€ +€€ +€€€€€€ +€€€€€€€€€€€€€€€€€€€€ +€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€ €€ €€€€ €€€ €€ €€€€€€€€€ +€€€€€€ +€ €€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ €€€€€ €€€€ €€€ €€€€€€€€€€€€€€ € €€€€€€€€€ € +€€€€ +€ +€€€€ €€€€€€€€€€€€,€5€@€^€¸³†Ì–àœ¨Œ¸‚¾€€U€>€0€€€ €€ € € +€€€€ €€€ € +€€€€€ €€ € +€€ €€€€€ € +€ €€€€€€€€€€ €€€€€€€ € +€€€€ +€€€€€ €€€€€€ € €€ €€€€€ +€€€€€€€€€€€€€€€ €€€€ € €€€€€€€ €€€€€€€€ € €€€€€€€€€€€€ € +€€€€€ € € €€€€€€ €€€€ €€€ €€€€€€€€€€€€€€ €€€€€€€€€€ €€ +€€€€€€€€€€€ €€ €€€€€€€€€€€€€ €€€€€€€€€€ +€ +€€€€€€€€€ +€€€€€€€€€€€ €€€€ +€ €€€€€€€€ €€ +€€€€€!€€€ +€ €€€€€€€€€ €€€€ +€€€€€ €€€€ €€€ +€ +€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ €€€€€€ € €€€€€€€€€€€ €€€ €€€ €€€€€€€€€ €€€€€€€€€ €€€€ €€€€€€€€€€€€€€€€€ € €€€€€€ €€€€€€€€€€€€€€€€€€ +€€€€€€€ €€€€€€€€€€€€€ €€€ +€€€€€€€€€€€€ €€€€€€€€€€ € €€€€€€ € € €€ €€€€ €€€€€€ €€€€€€ €€€€€ € €€€€€€€€€€ +€€€€€ €€ €€€€€€ +€ +€ € €€€€€€€€€€€€€€ €€ €€€€ €%€1€3€H€‡6„Yí‘ÀˆŠ‚J€ó€u€I€8€'€€€€€ €€ €€€€€€ € € €€€€€ €€€€€€€€€€€€ +€€ €€€€€ €€€€ €€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€ € €€€€€ +€ +€€€€€€€€€ €€€€€€€ € € +€€€€ €€€€€ € +€€€€€ €€ € €€€€€ € €€€ € €€€€€€€€€€€ €€ €€ €€€ €€ €€ +€€€€€€€€ €€€€€€€€ € €€€ €€€ €!€€ €€€€€ €€€€ €€€€€€€ €€€€€€ €€€€€€€€€€€€€€€€€€€ €€€€€ € +€€€€€€€ +€ €€€€€€€ €€€€€€€€ €€€€€ +€€€€€€€€€€€€€€ €€€€ €€€ € €€ +€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€ € +€ +€ €€€ €€€€ +€ €€ €€€€€ €€ €€€€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€ € €€€€€ €€€€€€€ €€€€€ €€€€€€ +€ €€ € +€€€€€€ € +€€ €€ € €€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€ € €€€€ € €€€€€€€€ € €€€€€€€€€€€€ +€€ € €€€ € €€€€€€#€9€Z€¬‡ƒV„-‚«F€Å€p€=€&€€€ €€€ €€€€€€€€€ € €€€€€€€ €€€€ €€€ +€ €€ € +€€ €€€€€€€ €€€€€€ €€€€€€€€€€€ +€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€ €€ +€ € € +€€€ €€€€€€€€€€€€€€€ € €€ +€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€ € +€€€€€€€€€ €€ €€€€ €€€€ € €€€ €€ €€ €€ €€€€€ €€€€€€ +€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€ €€€€€€ € €€€€€ €€€€€€ +€ +€€€€€€ €€€€€€€€€€€€€€€€€€ +€€ €€€€€€€€€€ € €€€€€ €€€€€€€€€€€€ €€€€€€€€ €€€ €€€€ € € +€€€€€ +€ €€ €€€€ € € € €€€ €€€€€€€ €€ € €€€€ € +€ +€€ €€€€€€€€€ €€€€ €€€€€€ +€€€€€€€€€€€ € € +€€ +€€€€€€€€€€€€€ €€€€ € +€€€€€€€€€ €€€€€€ +€€€€ €€€€€€€€€ €€€€€€€€€€€€€€ €€€€€ € €€€€€€€ €€ € € € €€€ €€ +€€€€€€€ €€€€€ € €€€€ €€€€€€ +€ +€€€€€€€€€€€€ €€€€€€€-€>€\€—€Ò€÷€ß€°€†€U€.€€€€€€ €€€€€€€€€ €€€€€€€€€€€ €€ € +€€€€€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€ €€€€€ € €€ €€€€€€ +€ €€ €€€€ +€€€€ € +€€€€€€€€€€€€€ € €€€ €€€€ +€€€ +€ €€€€€€€ € €€ €€ €€€€€ +€ € +€€€€€€€€ €€€ +€€€€€€€€€€€ €€ +€€€€€€€ €€€€€€€€€ +€€ € +€€€ +€€ €€€€€€€€€ €€€ € € +€€€€€€€€€ €€€ +€ €€€€€ €€€€ €€€€€€€€€€€€€€€€€€ € €€€€€€ €€ €€ €€€€€€€€€€€€ €€€ €€€€€€ €€€€€€€€€€€ €€€ €€€€ €€€€€€€€€€€€€€€€€ € €€€€€ €€€€ €€ +€€€ +€€ € €€€€€€€€€€€€ €€€€€€€€ € +€€€€€ € €€€€€ € €€€€€€ € €€€€€€ €€€€€€€€€€€€€ €€€€€€€€ +€€€€€€€€€€€€€€€€€€€€€€ €€€€€€ € €€€€€€€€€€ +€€€ €€€€€€€€€€€€€€€€€ €€€€ € €€€€€ €€ €€€€€€€€€€€ €€€ +€ € €€€€€€€€€ €€€€€ €€ €€€€€€€€€€€€€€€€€€ € €€€ €€ €€€ +€ €€ +€€€€€(€1€>€O€a€m€p€j€R€6€€€!€€€€€€ +€€€€€ € € €€€€€€ +€€€€€€ €€€€ €€ +€ €€€ +€ +€ +€€€€ €€€€€ +€ +€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€ € €€€€ €€€€ € €€€€€€€€€€€€ +€ € €€ € €€€ €€€ € €€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€ € +€€€€€€€€ € +€€€€€ €€€ +€€€ €€€€€€ €€ € +€€€ €€€€€€€€€€€€€ € € €€€ €€€€€€€€€€€€€€ €€€ €€€€€€€€€€€ € +€€€€€€€€ €€€€€€ €€€€€€ €€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€ €€€ €€€€€ € €€€€€€ € €€ +€€ +€€€€€€€€€€ €€€ €€€€ € €€€€€€€€€ € € €€€ €€€€€€€ +€€ €€€€€€€€€ € € €€€€€€ € € €€ €€€€€€€€€€€€€€€€ +€ € +€ €€€€€€€€€€€€€€€€€€€ +€€€ +€€€€€€€ +€€€ €€€€€€€€€€€€€€€€€€€€€ € €€€€€ €€€€€€€€€€€€€€€€€€€€ €€ €€€€€€ €€€€€ +€€€€€€€€€€ €€€ +€€ €€€€€€€€€€€€€€€€€€€€€€ €€€ €€ +€ € € €€ €€€ €€ +€€€€"€ €+€3€>€C€6€-€*€'€€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€€ € €€€€€€ €€€€€€€ € €€€€€€€ €€€€€€€€€€ +€ € €€€€€€€€ €€€€€€€€€ € +€ € €€€ €€€€ € €€€€€€ €€€€€€€€€€ €€€ €€€€€€€€ €€ +€ €€€€€€€€€€€€€€€€ €€€€€ +€ € +€€ € €€€ €€€€€€€€€€€€€€€€€€ +€ € €€ € +€€€€ +€€€€ € €€€ € +€€€€€€€ €€€€ € €€€€€ €€€€€€€€ €€€€€€€€€€€€€€€€€ +€€€€ +€€ €€€ € €€€€ € € €€€ €€€€€€€€€€€€€€ € €€€€€€ € €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€ €€€€ €€€ €€€€ €€€€€€€€€€ €€€€€ +€€€€€€€€€€€€€€€€€€€€€€€ €€ +€€€ €€€€€€€€€€€€€€€€€ €€ €€€€€€€€€€ €€€€ €€€€€ €€€ € +€ +€€€€€€€€€ €€€€ € +€€€€€€€€€ € +€€€€€€€€€ €€€€€€€ €€ €€€€€ € €€€€ €€€€€€ €€€ €€€ €€€€ €€€€€€€€€€€€€ €€€€€€€€ €€€€€€€ €€ €€ +€ €€€€€€€€€€€'€"€ €#€€€€€€€€€€ +€€€€€€€ +€€ €€€ €€€€€€€€€€€ €€ € +€€€ €€€€€ €€€€€€€€€€€ €€€ € +€ +€ €€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€ €€€€ +€€€€€€ €€€€€ €€€€€€€€€€€€ +€€€ +€ +€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ €€ €€ € € €€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€ €€ € €€€€€ €€€€ €€ +€ +€€€€ €€€€€€€€ €€€€€€ €€€€€€€€€€€€€€€€€ €€€€ +€ €€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ € +€€ €€€€€€ €€ € €€€€€€€€ €€€€€€€€ +€ €€€€€€€€€€€ € €€ € +€€€€€€€€€€€€€ +€€€€€€ € € +€€€€€€ €€€€€ €€€€€€€€€€ +€€€€€€€€€€€€€€€€€€€ €€€ €€€ +€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€€€€€€ €€€€€€€€ € +€€€€€€€€€€€€ €€ € €€€€ € €€€€ €€€€€€€€€ € € € €€€ €€€€€€ €€€ €€€€ €€€ +€€ € € +€ +€ €€€€€€€€€ €Ó€ù€€€€€ €€€€€€€€€€€€€€€ €€€ € €€€ € +€€€€€€€ €€ €€€ €€€€€ € €€€ €€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€ €€€€€€€€ € +€€€€€€€€€ +€€€€ € €€€€€€€€€€€€€€€€ €€€€€ €€€€€€€ +€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€ €€€ € €€ €€€€ € €€€€ +€€€€€ +€€ €€€€ €€€€€€€€€€€€€ +€€€€€€€ € €€ €€ +€€€€€€€€€€€€€€€ +€ €€ €€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ €€€€€€€€€€ €€ +€€€ €€€€ +€€€€€€€€€ € +€€€€€€€€ €€€€€€€€ €€€€€€€€ €€ €€€€€ €€€€€€€€ € €€€€ +€€€€€€€€€ €€€€ +€€€€€€ €€€€€€€€ +€€€€€€€€€€ +€€€€€€€€€€ €€€€€€€€#€€€€€€€€€€€€€€ € +€€€€ €€€€€€€€€€€€ €€ €€€€€€€€€€€€€€ +€ €€€€€ € €€ €€€€€€ +€ €€€€€€ €€€ €€€€€€€€ +€€€€ +€€€€€“€´€ € €€€€ € €€€€€€€ €€€€€€€€€€€€€€ +€ +€ €€€€€€ +€€€€ € €€€€ € €€€€ €€ +€ € +€€€€ €€€€€€€€€ +€ +€ €€€€€€€€€€ +€€€€€€€€€€€€ +€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€ +€€€€€€€€€€ €€ €€€€€€€€€€€€€€€€€€ €€ €€€€€€€€ € €€€€ €€€€€€€€ € € € €€ €€ € €€€€€€€€€€€ +€€€ +€€€€€€ € €€€€€ € +€€ € € €€€€€€€€€€€€€€€€€€€€€€€€€€ +€€€ €€€€ +€ €€€€€€€€ € €€€€€€€€€€ €€€€€€ €€€ €€ €€€ €€€ €€€ €€€€€€€€€€ €€€€€€ +€€€€€€€€€€€ €€€€€€€ €€€€€€ +€€ €€€ € +€ €€€€€ €€ €€€€€€ +€ €€€€€€€ €€€ €€€€€€€€ € €€ +€€€€€€,€)€ €€€ €€ € €€€€€ € €€€€ €€€€€€€€€€ €€ +€€€€€€€€€ +€€€€ €€€€ € € €€€€€€€€€€ž€q€€€€€€€€€€€€€€ €€€€€€€€ +€€€€€€ €€ € +€ € € €€€€€€€€€ € € +€€€€€ +€€€€€€€ € €€€ +€€€€€€€€ €€€€€€€€€€€ +€€€€€€€€€€ €€€€€ €€€ €€€€ +€€€ € €€ +€€€€€€€€€€€€ €€€€€€€€ €€€€€€ €€€€€€€€€€€€ € €€€€ €€€€€€ +€€€€€€€€€€€€€€€€ € +€€ €€ €€€€ €€€€€€€€ €€€€€€ €€€€€€€€€€€€€€€€€€€€€€€ € +€€€€€€€€ €€€ €€€€€€€€€ €€ +€€€€€ €€€€ +€€€€€€ €€€€€€€€€€€€€€€€€€ € €€€ +€€€€€€€€€€€€€€€€ €€€€€€€€€€ €€€€ € €€ €€€€€€ € €€€€€ +€€€€€€€€€€€ € €€ +€€€€€€€€€ € €€€€€€€€€€ €€€€€ €€€ €€ €€€€€€€ €€€€€€€€€€€€€€€€€€€€ +€€€€€ €€€€€€€€€€ +€€€€€€€€ €€€ € € €€€€€€ €€ €€€ +€ €€€€€€€€€€€ €€€€€€€€ € +€€€€€€€ € €€€€€€€€€€ €€€€€€€ €€€ € €€€€ €€€€€€ €€€€€ € +€€€€€€€€€€€€€€€€€€€€ €€€€ € € +€€€€€€€€€€€€€€€ +€€€€€€€€€€€€€€ € €€€€€€ €€€€ €€€€€€ € € € € +€ +€ € €€€€ €€€€€€€€€€€€€ €€€€€ €€€ € €€€ €€€€€ €€€ +€ €€€€€€€€ € € €€€€ +€ +€€ €€ +€€€ +€ €€€€€€€€€€€€€€€€€€€€€€ € +€ €€€€€€€€€€€ +€ +€€€€€€€€€ €€€€€€€€€€€€€€€ €€€€€€€ €€€€ €€€€€ €€€€€€€€€€€ € €€€€€€€€ € € €€ €€€ +€ € €€€€€€€€€€€€€€€€€€€€ €€ €€€€€€€ €€€€€€€€ +€€€€€€€€ €€€€€€€€€€ €€€ €€€€€€€€€€ €€€€€ €€€€€€€€€€ €€ +€€€€€€€€ €€€€€€€€€€€€€ €€€ €€€€€€€€€€€ € €€€€€€€€€€ € €€€€ € €€€€€ €€€€€€ € €€€€€€€€€€€€€€ +€ +€€ +€€ +€€€ +€ €€€€€€ +€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€ € €€€ €€€€€ €€€€€€€ €€ € +€ €€ €€€€€€€€€€€€€€€€ €€ €€€€€€€€€€€€ €€€ +€€€€€€€ € €€€€€€€€€€ €€€€ €€€€€€€ +€ €€€€€€€€€€€€€ €€€€€ € € +€ € €€€€€€€€€€€€€€€€ €€ €€€€€€€€ €ƒ/‚d€€ €€€ €€ +€ €€ €€€€€€€€€€€ +€€ € €€€€€€€€€€€€€ €€ € €€ €€€€€€ €€ +€ €€€€€ €€€€€€€ €€€ € €€ +€€€€€€€€ € +€€ +€€€ €€€€ +€ €€€ +€ +€€ +€ +€€€€€€€€€€€€€ +€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€€€ €€€€€ €€ €€€€€€€€€€€€€€ €€€€€€€ €€€€€€€€€€€ +€€€€ € €€€€€ €€ € € +€€€ € €€€€€€ €€€€€€€€€ €€€€ €€€€ €€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€€€"€ €€ +€€€€€€ +€€€€€€€€€€€€ €€€€€€€€€€€€ €€ €€€€€ €€€€ € €€ +€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€ € € +€ € €€€ €€€€€ €€€ € €€ €€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€ € € +€€€€ €€€€€€ +€€€€ €€€ €€€€€€€ €€€€€€€€€ € € +€€€€€€€€ €€€€ € €€€€€€€€ €€€€ €€ €€€€€€€€€€€€€€€€ €€€€€ €€€€€€€ € €€ € € +€€€ €€€€ €€€€€€ €Їj€€ €€€€€€€€€€€€€€€€€€€ € €€€€€€€ €€ € €€€€€€€€€€€€ €€€€€€€€€€€ €€ +€€€€€€€€ €€€€ €€€€€€ €€ €€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€ €€ €€€€€€ €€€€€€ €€€ € €€€€ €€€ € €€€€€ +€€€€€ € €€€ +€€€€€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€ +€ € €€€ € +€€€€€€ €€€€€ € +€€€ +€€€€€€€€€€€€€ +€€€€€€€€€€€€€€€€€€€€€ €€€€ +€ +€€€€€€ +€ +€€€ €€€€€ €€€ €€€€€€€€€€€ €€€€€€ € € +€ €€€€€€€ €€ +€€€ +€€€€€€€€€€€€€€€€€€€€€€€€ € €€ +€€ €€ €€€€€ €€€ €€€ €€€€€€€€€€€€€€ € €€€€€ +€€€€€€€€€€€€€ +€€€€€€€€€€€€€€€€ €€€ €€€€€ €€€€€€€ €€€€ € €€€€€ € €€€€€€ €€€€€€€€€€€€ €€€€ €€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ € €€€€ €€€€€€€€€€ € €€€€€€€€€€€€€€€€€ €€€€ € €€€€€€€€€€€€€€€€€€€ +€ €€€€€ € €€€€€€€€€ +€€€€€ €€€€€€€€ €€€€€€€€ € €€€€€€€€€€€€€€ € €€€€ €€€ €€€ € €€€€€€€€€ €€€€€€€€€€€ €€€€€ €€€€ +€ €€€€€€€ €€€€ €€€€€€ €€€€€€€€€€€€€€€€€€ €€ €€€€ €€ € € +€€ €€€€€€ € +€€€€€€€€ € €€€€€€ €€€€€€€€€€€€€€€€€€ € +€€€€€€€€ €€€ € +€€€€€€€€€€€€€€€€€€€€€ +€ €€€€€€€€€€€€€€€€€€€€€€ +€€€€ €€€€€€€ € €€€€€€ €€ €€€ €€€ +€ €€ € €€€ €€€€€€€ €€€€€€€€€ +€ €€€ €€ €€€€€€€€€€€ €€€ +€€€€€€€€ €€€€€€€€€€€€€€ €€ €€€ €€€€€€ € €€€€€€ +€€€€ €€€€ €€€€€€€€€€€€€€€ €€€ +€ €€€€€€ €€€€€€€€€€ €€€€€€€€€€ €€€€€€€€ € +€€€ € €€ +€€€€€$€€€ €€€€ €€€ €€€ +€ €€€€€ €€€ €€€ +€€€€€€€ €€€€€ €€€€ € +€€€€€€€€€€ €€€€ €€€€€€€ €€ €€ +€ € €€€€€€€€€€€€ € +€€€€ +€€€€€€€ +€€€ € €€€€€€€€€€€€€€ €€€€ € €€€ €€ +€€€€€€€€ € € €€€ €€€€ +€ €€€€€€ € € € +€ € €€€€€€€€€€ € €€€€€€€€€€€€€ €€€€ +€ +€€€€€ +€€€€€ € €€€€€€€€€€€€ +€€€ € €€ €€€€€€€ €€€€€ € €€€€€€€€ € €€€€ +€€€€ € €€€€€ €€€€ € +€ €€€€€€€€€€ € €€€€€€€€€€€€€€€ €€€€€€ € +€€€€€€€€€€€€€€€€€€€ +€€€€ €€€€€€€€€€€€€ € €€€€ € +€€€€ €€ €€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€ € €€€ +€€€€€€ €€ €€€€€€€€€€€€€€€ €€ +€ €€€€€€€€ € +€€ €€€€ +€ €€ +€€€ €€€ €€€€€ +€€€€€€€€€ +€€€€€€€€ €€€€€€€€€ €€€€ +€€€€€€€ €€€€€ € +€€€€ €€€€€ €€ €€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€ €€€ €€€€€€ €€€€€€ €€€€€ €€€€€€€€€€€ € € +€ +€€€€€€€€ +€ €€€€ €€€€€ €€€€ € €€ €€€ +€ +€€€€€€€€€ € €€ €€€€€€€€€€€€€ +€€€€€ €€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€ €€€€ €€ +€€€€ +€€ €€ € €€€€ € €€€ €€€€€€ €€ €€€€€€ €€€€€ €€ +€€€€€€€€ +€€€ €€€€€€€€€€€ € €€€ +€ € €€€€€€€€€€€€€€€ €€€€€€€€€ €€€€€ €€€€€€ €€ €€ €€€ €€€€€€ € +€€€€€€€€€€ +€€€€€€€€€€€€€€€€€ € €€€€€€€€€ €€€€€€ €€€€ € +€€€€€€€€€€€€ €€ €€ +€€€€€€€€€€€€€€€€€ €€€€€€€ €€€ €€€€ +€€€€€€€€€€€€€€€€€€€€€€ €€ € €€€€ € €€ €€€€€ €€€ +€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€€€€ €€€ €€€€€€€€ +€€€€€€€ €€€ € +€€€€€€€€ € €€ €€€€€€€€€€ +€€€€€€€€€€€€€€€€€€€€ €€€€ +€€ €€€€€€€€€€€€€€ €€€ +€€€€ €€€€€€€€€€€€ +€€€€€ €€€ €€€€€€€€€€€€€ € €€€€€€€€ +€ € €€€ €€€€€€€€€€ €€€€ €€€€€€€€€€€€€€ € +€€ +€€ € €€€€€€€€€€ € €€€€€€€€ +€ +€€€€€ €€€€ +€€€€€€€€ €€ +€€ €€€€€€€€€€€€€€€€€€€€ +€ €€€€€€€€€ €€€ €€€ +€€€€ €€ +€€€€€€€€€€ € € € € €€€€€€€€€€€€ +€€€€€€€€€ € €€€€ €€€€€€€€ €€€€€€€€€€€€€€ €€€€€€€€€€€€€ € €€€€€ € €€€ +€ €€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€€€ € +€€€€€€ €€ +€€€ +€ +€€€€€€ €€€€ €€€€€€€€€€€€€€€€€€€ +€€€€€ +€€€€€€€€€€€€€€€€€€€ +€€ €€€€€€€€€€ +€€€€ €€€€€€€€€€€€ € €€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€ € €€€€ €€€ +€ €€€ +€ +€€ €€€ € €€€€€€€ € € €€€€€€€€€€ €€ +€ € €€€€€€ €€€€€€€€€ +€€€€€€€€€ €€€ €€ €€€€€€€ +€ €€ €€ €€€ € +€€ +€€€€ €€€€ € €€ €€€€€€€€€€ €€€€€€€ +€ €€€€ €€€€€€€€€€€€€€€€ €€€ €€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€ +€ +€€ € € €€€€€€€ €€ +€€€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€ €€€€€€ €€€ +€ €€€€ +€€€€€€€€€€€ € €€€€€€€€ € € €€€€ €€€ €€€€€€€€€€€ €€€€€€ € +€ +€ +€€€€€€€€€€€ €€€€€ €€ +€ +€€€€€ € €€€€€€€€ € € € €€€€€€€ +€ €€€ €€€ €€€€€€€€ € +€€€€€€€€ +€€€€€€€€€€€ €€€€€ +€€€€€€€€€ €€€€€€€€€€€€€€ €€ €€€€ €€€€€€€ € € € €€€€€€€€€€€€ €€€€€€€ €€€ €€€€€€€€€€€€€€€ € +€€€ €€€€€€€€ € +€ €€€€€€€€€€ €€€ €€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€ +€€€€€€ +€€€€€€ € €€€€ €€€€€€€€€ €€€€€€€€€€€ € €€€€€€€€€€€ €€€€€€€€€€€€ +€ € +€€€€€€€ € € €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ +€€€€€€€€€€€ €€€€€€ €€€€€€€€ €€€€€€€€€€€€ +€€€€ € € € €€ €€€ € €€€€€ +€ €€€€€€€€€€ € +€ €€€€ €€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€€ € €€€€€€€ €€€€€€€€€€ € €€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€ +€ €€€€€€€€€€€€€€€€€€€ €€€ €€€€€€ €€€€€€€€ €€€€€ +€€€ +€€€€€€€ € €€€€ € €€€€€€ € €€€€ €€€€€€ +€€€€€ € € €€€€ €€€ € € € +€€€€€€€€€ +€€€€€€€ +€ €€€€€€ € €€€€€€ €€€€€€ €€€ €€€€€ €€€€€€ € €€€€€ € €€€ €€€€€ +€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€ +€€€ € € €€€€€€€€€€€€ € €€€€€€€€€€€€€€€ € € € €€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€ €€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€€€ € +€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€€€€€€€€€€€ €€€ €€€€ €€€€€€€€€ €€ €€€ +€ €€€€€€€ €€ +€€ €€€ +€€€ €€ € € +€€€€€€ €€€€€€€€ €€€€ €€€€€€€€€€€ €€€€€€€€€€€€€ €€€€€€€ €€€€€ €€€€€ €€€ +€€€€ €€€€€€€€€€€€€€€€€ +€ +€ +€€€€€€€€€€ € €€€ €€€ € +€€€€ +€€ €€€€€€€ +€€€€€€€€€€€ +€€€€€ €€€€€€€ €€€€€€€€€€€€€€ € € €€€€ € €€€€ € €€ +€€€ €€ €€ +€€€€ €€€ +€€€€€€€€€ €€€ € +€€€€€€€€€€ €€€€€€ €€€€€€€€€ €€ €€€€€€€€€ € €€€ €€€ +€€€€€€€€€€€€€€€€€€€€€ €€ €€ €€€ +€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€€€€€€€€ € €€€€€ €€€€€ € €€€€€€€€€€€€€€€€€€ +€€ +€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€ €€€€€€€€€€€ €€ €€€€€€€€€ €€€€€€€ €€€€ €€€€ +€€€€€€€€€€€ €€€€€€€ €€ +€€€€€€€€€ €€€€€€€€€€ +€ €€ +€€€€€ €€€€€€€€€€€€€€ € +€€€€€€€€€ €€€€€€ €€€€ €€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€€€€ €€€€€€€€€€ €€€€€€€ +€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ € € +€€ €€ €€€€€€€€€€ € €€€ € +€€€€€€ €€ €€€€ € €€€€€€€€ +€ € €€€€€€€ €€ €€ €€€€€€€€€€ € €€€€€€€ € €€ € €€ € €€€€€€ €€€ +€€ € €€€€€€€€ €€€€ € € €€€€€€€€€ € +€€€€€€€€€€€€€€€€€€€€€€€ €€€ € €€€ €€€€€€€€€€ €€€€€€€€€€ +€€€ +€€€€ €€ € €€€€€€€€€€ €€€€€€€€ € €€€ € € +€€€€ +€ +€€€€€€ €€€ € €€€€€€ €€ €€€€€€€€€€€€€€€€€€ € €€€ €€€€€ +€€€€€€€€€€€€€€€€ €€€ +€ €€ € €€€€€€1€2€ +€€€ €€€€€€€ € €€€€€€€€€€€€€€€ €€€€€€€€ +€€€€€€€€€€€ €€€€€€€€€€€€ € €€€ €€€ +€€€€€€€€€€€€€ €€€€€€€€ € €€ +€€ +€€€€€€ €€€€€€€€€€€€€ +€€€€€€€€€ +€€ +€€€€€ €€ €€ €€ €€€€€€€ € +€ €€€€€€€€€€ +€€€€€€€€€€ €€€ €€€€€€€€€€€€ €€€€€€€€€ €€€€€ €€€€ +€ €€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€ € € €€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€ € € +€€€€€€€€€€ +€ €€€€ +€€€€ €€ € €€€€€ €€€€€€€€€ € €€€ +€€€ €€€€ € €€€€ +€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€ €€ +€€€€€€€€€€ €€€€€€€€€ €€€€€€€€€€€ € € €€€€€€€€€€€€€€€€€€ € €€€€€€€€€€ €€€€ +€€€€€€€ €€€ €€€€€€€€€ +€€ +€€€€€€€€ €€€€€ €€ €€€€€€€€€ €€€ €€€ €€€€€€€€€ € €€€€€€€€€€€€€ €€€€ +€€€€€€ €€€€€€€€€€€€€€€€€€€€€€ €€€€€ €€ €€€€€€€ €€€€€ +€€€€€€ €€€€€€€ €€€€ €€€€€€€€€€€ €€€€€€€€€ € €€€€€€ €€€€€€ €€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€ €€€ €€ €€€€€€ €€€€€€€ €€€€€ €€€€€€€€ €€€€ €€€€€€€€€€€€€€€€€€ +€€€€ €€€€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€€ €€ +€ +€ € €€€ € €€€€€€ €€€€ € €€€€€€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€ € €€€€€€€€€€€€ +€ € €€ +€€€€€€€€€€€€€ € €€€€ € €€ €€ € €€ +€€€ €€€€ +€€€€€ €€€€€€€€€€€ € +€€€ €€€€€€€€ +€€€€€€€€€€€€€€€ € €€€€€€ €€€€€€€€€€€€€€€ € €€€ €€€ € €€€€€€€€€€€€€€ € €€€€€€€ €€ €€ +€ €€€€€€€€€€€€€€€€€ €€ €€€€€ €€€€€€€€€€€€€€ €€€ +€€ €€€€€€€€ €€€€€€ €€€€€€€ +€ +€€€ € €€€€ €€€€€€€€€€ +€€€€€€ € €€ +€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€ +€€€€€€€€€€ +€€€€€€€€€ €€€€€€€€€€ € €€€€€€€€€€€ €€ €€€ € €€€€ +€€€ €€ €€€€ €€€€€€€€€€€€€!€€ €€€€€€€€€€€€€€€€€€€€€€€ €€€ +€€€€€€€ €€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€ +€€€€€€€€€ +€€€€ €€€€€€€€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€ €€ €€€€ € €€€€€€€€€€€€ €€€€€€€€€ €€€€ €€ +€€€€ +€€€€€€€€€ +€€€€€€€€€ €€€€€€€€€€€ € € €€ € €€€€€€ €€€€€ €€€€€ +€€€ €€ +€€€€€ €€€ +€ € € €€€€€€€€€€€€€€€€ € +€€€ €€€€ €€€€ €€ €€ €€ € €€ €€€€€€€€€€€€€€€€€ +€€€€€€ €€€€€€€ €€€€€€€€ € €€€€€€€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€€€€€ €€€ € €€€€€€€€€€€ € +€€€ € €€€€€€€€ +€€€€€€€€ €€€€€ €€ €€€€€ € €€€€€€€ €€€€€€ +€ €€€ €€€€€€€€€€ €€€€€ €€ €€€€€ € € +€€ € €€€€€€€€€€€€€€€€€€€€€ € € €€€€€ €€€ € €€€€€€ €€€€€€ € €€ €€€€€€€ €€€€€€ €€€€€ €€€€ € +€€€ € €€€€ € €€€€€ €€€ +€€€€€€ +€€€ €€€€€€€€€€ €€€€ €€€€€€€€ €€€€€€€€€€ €€€€€ +€€ €€€€€€ €€€€€€ +€ €€€€€ €€€€€€ €€€€€€ € €€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€ +€€ €€€€€€€ +€ €€€€€€€€€€€€€€ € €€€ +€€ €€€ €€€€€€ €€€€ €€ +€€€€€€€€€€€€€€€€€€ €€€€€€ €€€ € € +€€€€ €€€ +€€ €€€€€€€€€ € €€€€€€€€€€€ +€€€ €€€€€€€€ +€€€ € +€€ +€ €€€€€€ +€ €€€€ €€€€€€€€ +€€€€€ €€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€ +€ €€€€€€€€€€€ +€€€€€€€ €€€€€€€€ € €€ +€ €€€€€€€ +€€ €€€€ €€€€ €€€€€ +€ € +€€ €€€€€€€€€€€€€€ €€ +€ €€€€€€ € €€ €€ € +€€€€€€€€€€€€€€€€ €€ €€€€€€€€€€€ €€€ € €€€€€€€€€€€€€€€ € €€€€ €€€€ +€ +€ € +€€ € €€€€€€€€€ €€ € €€€€€€€€€€ €€€€€€ € € +€ +€€€€ +€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€ €€€ €€€€€€€€€€€€€ €€€€ +€ +€€€ €€€€€€ €€€€€€€€€€€ €€ € €€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€€€ € €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ +€€€€€ €€ €€€ €€€€ +€ € +€€ +€€€ +€€€ € €€€€€€€€€€ +€€€ +€ €€€€€€€€€€€€€€€€€€€€ €€€€ €€€€ € €€ € +€€€ €€€€ €€€ € €€€€€ €€€€ €€ €€€€ €€€€€€€ €€ € €€€€ €€€ €€ +€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€ €€ €€€ € €€€€€€€ +€ € € €€€€€€€€€€€ €€€€ € +€€€€€ +€ €€ € €€€€€€€ € €€€€€ €€€€€€€€ €€€€€€€€ €€€€€€€€€€€€€€€€€€ € +€ € +€€€€€€€€€€€€€€€€€€€€ € €€€€€ €€€€€€ €€€€€€ +€€€€€€€€ +€€€€€€ € €€ €€ € €€€ +€€€€€€€€ €€€€€€€€€€€€ €€€€€€€€€€€€€€€ € €€€€€€€€€€ € +€€€€€€€ €€ €€€€ €€ +€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€ €€€€ € €€€€€€€€ €€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€ €€€€€€€€ € €€€€€€€€€€€€€€€€€ +€€€€€€€€€€ +€€€€€ €€€€€€€€€€€€€€€€€€€€€ €€€€ €€€€€€€€€€€€ €€€€ +€ €€€ €€€ €€€€ +€€€€€€€€€€€ €€ +€ €€ €€€€€€ € +€ €€€ €€€€€€€€€€€ €€€€€€ +€€€ €€€€€€€€€€€€ €€ €€€€€€€€€€€ +€€€€ € € €€€€€€€ €€ €€€€€€€ +€€€€€€€ €€€€ € €€€€ €€€€€€€€€€€€€ +€€€€ €€ €€ € €€€€€€€ €€€ €€€€€€€€ +€€€€€€€ +€€€€ €€€€€€€ +€ €€€€€€€ €€€€€€€€€€€ €€ €€€ +€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€€€ €€€ +€€ +€€€€€€€€€€€€€ +€ €€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€ € €€€€€€€€ € €€ €€€€€ €€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ €€ €€€€€€€€€€€€€€€€€€€€ +€ €€€ +€€€€ +€€€€€€€€€€ € €€€€€€€€€€€€€€ € € €€€€ €€€€€€ €€ €€ € €€€€ €€€€€€€ € €€€€€ € €€€ € +€€€€€€€€€€€€ €€€€ €€€€€€ € €€€€ € € €€€€€ €€ €€€€€€ €€€€€€€ €€€ € € €€€€ €€€€€€€€€€€ +€ €€€€€€€ €€€ +€ €€€€€€€€€€ +€€€€€€€€€€€€€€€€ € €€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€€€€ € +€€€ € €€€€€€€€€ +€€€€€€€€€€€€€€€€€ € € €€€€€€€ € € +€€€€ € €€€€€€ +€€€€€€€ €€€€ € € €€€ +€€€€€€€ €€€€€€€ € €€€ €€€€€ +€€ €€€€€€€€€€€€ +€€€€€€€€€€ €€€€€€€€€€€€ €€€€ +€€€€€€€€€€€ € € € €€€€€€€€€€€€€€€€€€€€€ € €€€€€€€€€€ +€€€ €€€€€€€€€€€€€€€ €€€€€€€€€€€ €€€€€€€€€€€€ €€€€€ +€ €€€ €€€€€€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€ € €€€€€€€€€€ € +€ +€ €€€€€€€€€€ €€ €€ €€€€€€€ €€ +€€ €€€€€€€€€€€€€€€€€€€ €€€€€ +€€€€€€€€€€€€€€ €€€€ €€€€€€€€€€ €€€€€€€ €€€€€€€€€€€€€€€€€€€€ €€€€€€€€€€€€€€€€€€ €€€€€ €€€€€€€ €€€€ € € €€€€€€€€€€€ € €€€€ €€€€€€€€€€€€ €€€€€€ €€€€€ €€€ +€€€€ €€€€€€€€€€€€€€€€€€€€€€€€ €€€€€€ €€ \ No newline at end of file From cb28842ec04fe751cbf6b9169ef7f90d784ffc16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Terr=C3=B3n?= Date: Fri, 10 Apr 2020 12:17:04 +0200 Subject: [PATCH 05/31] Factor our existing code into _read_uncorrected_date() --- fitsimage.py | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/fitsimage.py b/fitsimage.py index 2593d91..f282e2a 100644 --- a/fitsimage.py +++ b/fitsimage.py @@ -326,15 +326,30 @@ def add_history(self, history): finally: handler.close(output_verify = 'ignore') - def date(self, date_keyword = 'DATE-OBS', time_keyword = 'TIME-OBS', - exp_keyword = 'EXPTIME'): + def date(self, + date_keyword='DATE-OBS', + time_keyword='TIME-OBS', + exp_keyword='EXPTIME', + ): + """ Return the date of observation (UTC), in Unix time.""" + return self._read_uncorrected_date( + date_keyword=date_keyword, + time_keyword=time_keyword, + exp_keyword=exp_keyword) + + def _read_uncorrected_date(self, date_keyword, time_keyword, exp_keyword): """ Return the date of observation (UTC), in Unix time. This method returns, in seconds after the Unix epoch (the time 00:00:00 UTC on 1 January 1970), the date at the 'midpoint' of the observation. This is defined as the time of the start of the exposure plus one-half - the exposure duration. It must be pointed out that these dates are - *always* interpreted as Coordinated Universal Time (UTC). + the exposure duration. + + This function makes no assumptions or corrections for the time reference + frame (e.g. geocentric, heliocentric or barycentric; i.e. the different + geometric locations from which one could measure time, differing by the + light-travel time between them). It simply just returns the date found + in the header as a UTC timestamp. The KeyError exception is raised if any of the specified keywords cannot be found in the FITS header. NonStandardFITS is thrown if the From a9617e66a2e418c42a72f36445f911731bde8a15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Terr=C3=B3n?= Date: Fri, 10 Apr 2020 16:11:01 +0200 Subject: [PATCH 06/31] Add barycorr submodule --- .gitmodules | 3 +++ barycorr | 1 + 2 files changed, 4 insertions(+) create mode 100644 .gitmodules create mode 160000 barycorr diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..3ce6503 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "barycorr"] + path = barycorr + url = git@github.com:vterron/barycorr.git diff --git a/barycorr b/barycorr new file mode 160000 index 0000000..942c679 --- /dev/null +++ b/barycorr @@ -0,0 +1 @@ +Subproject commit 942c67949e0a3634179c5c9d00ff3bcd4c9e1636 From 3b575e6509e791fa97fbe1cc8ae9a40d44f15674 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Terr=C3=B3n?= Date: Fri, 10 Apr 2020 16:11:37 +0200 Subject: [PATCH 07/31] Add read_barycentric_date() --- fitsimage.py | 14 +++++++++++++- test/test_fitsimage.py | 12 ++++++++++++ 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/fitsimage.py b/fitsimage.py index f282e2a..5c57e1a 100644 --- a/fitsimage.py +++ b/fitsimage.py @@ -28,8 +28,10 @@ # tasks which attempt to display graphics will fail, of course, but we are not # going to make use of any of them, anyway. -import astropy.io + +import astropy.time import astropy.wcs +import barycorr import calendar import collections import datetime @@ -337,6 +339,16 @@ def date(self, time_keyword=time_keyword, exp_keyword=exp_keyword) + def read_barycentric_date(self, + bjd_keyword='BJD_TDB', + ): + """Returns the Barycentric Julian Date as a UTC timestamp.""" + + bjd_tdb = self.read_keyword(bjd_keyword) + jd_utc = barycorr.bjd2utc(bjd_tdb, self.ra(), self.dec()) + t = astropy.time.Time(jd_utc, format='jd', scale='utc') + return t.unix + def _read_uncorrected_date(self, date_keyword, time_keyword, exp_keyword): """ Return the date of observation (UTC), in Unix time. diff --git a/test/test_fitsimage.py b/test/test_fitsimage.py index a8ee7b2..c35867b 100644 --- a/test/test_fitsimage.py +++ b/test/test_fitsimage.py @@ -349,6 +349,18 @@ def test_delete_keyword(self): with self.assertRaises(KeyError): img.read_keyword('HIERARCH ' + keyword) + def test_read_barycentric_date(self): + keywords = { + 'BJD_TDB': 2458902.321777873, + 'RA': '03:47:24.00', + 'DEC': '+24:15:19.0', + } + # From http://astroutils.astronomy.ohio-state.edu/time/bjd2utc.html, + # we see that for these coordinates, the input BJD_TDB corresponds to + # JD UTC = 2458902.321287484, which we convert this to a UTC timestamp. + with self.random(**keywords) as img: + self.assertAlmostEqual(img.read_barycentric_date(), 1582400559.23860979) + @parameterized.named_parameters( { 'testcase_name': 'yyyy-mm-ddTHH:MM:SS.sss', From 919cbdc0f26242fa6290704f4467ab51164f7497 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Terr=C3=B3n?= Date: Fri, 10 Apr 2020 16:23:45 +0200 Subject: [PATCH 08/31] Move default value of 'bjd_keyword' to keywords.py --- fitsimage.py | 2 +- keywords.py | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/fitsimage.py b/fitsimage.py index 5c57e1a..3f8f5d3 100644 --- a/fitsimage.py +++ b/fitsimage.py @@ -340,7 +340,7 @@ def date(self, exp_keyword=exp_keyword) def read_barycentric_date(self, - bjd_keyword='BJD_TDB', + bjd_keyword=keywords.bjd_keyword, ): """Returns the Barycentric Julian Date as a UTC timestamp.""" diff --git a/keywords.py b/keywords.py index c63aa9d..831d8f8 100644 --- a/keywords.py +++ b/keywords.py @@ -104,3 +104,11 @@ "determine the number of counts at which saturation arises in coadded " \ "observations. If the keyword is missing, we assume a value of one (that " \ "is, that the observation consisted of a single exposure) [default: %default]" + +bjd_keyword = 'BJD_TDB' +desc['bjd_keyword'] = ( +"keyword for the barycentric JD (TDB, Barycentric Dynamical Time) at " +"mid-exposure. Internally, LEMON stores all times as UTC Unix timestamps, so " +"BJD_TDB is converted to JD_UTC using Jason Eastman's web applet for time " +"correction (htttp://astroutils.astronomy.ohio-state.edu/time/bjd2utc.html) " +"[default: %default]") From 214c3bbe4f38e15e87dfc412e98fa8f9dc96a33c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Terr=C3=B3n?= Date: Fri, 10 Apr 2020 16:34:43 +0200 Subject: [PATCH 09/31] Add 'barycentric' keyword to date() At the same time, read_barycentric_date() becomes private. In this manner, FITSImage.date() is the single entry point, branching to either _read_uncorrected_date() (for the regular code path) or _read_barycentric_date() to read Baycentric Julian Dates. This allows us to extend the existing interface to add support for the BJD_TDB FITS keyword without having to update the rest of the pipeline. --- fitsimage.py | 17 +++++++++++++++-- test/test_fitsimage.py | 2 +- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/fitsimage.py b/fitsimage.py index 3f8f5d3..eeba890 100644 --- a/fitsimage.py +++ b/fitsimage.py @@ -332,14 +332,27 @@ def date(self, date_keyword='DATE-OBS', time_keyword='TIME-OBS', exp_keyword='EXPTIME', + barycentric=False, ): - """ Return the date of observation (UTC), in Unix time.""" + """ Return the date at mid-exposure (UTC), in Unix time. + + This function always returns a UTC Unix timestamp. By default, the date + at mid-exposure is derived using the traditional, standard FITS keywords + (e.g. DATE-OBS, EXPTIME). However, if 'barycentric' is set to True, the + value used is the Barycentric Julian Date in Barycentric Dynamical Time + (BJD_TDB)). This is a non-standard FITS keyword, but commonly used in + the exoplanet community for high-accuracy observations. For more + information, see http://astroutils.astronomy.ohio-state.edu/time/. + """ + + if barycentric: + return self._read_barycentric_date() return self._read_uncorrected_date( date_keyword=date_keyword, time_keyword=time_keyword, exp_keyword=exp_keyword) - def read_barycentric_date(self, + def _read_barycentric_date(self, bjd_keyword=keywords.bjd_keyword, ): """Returns the Barycentric Julian Date as a UTC timestamp.""" diff --git a/test/test_fitsimage.py b/test/test_fitsimage.py index c35867b..808d6ef 100644 --- a/test/test_fitsimage.py +++ b/test/test_fitsimage.py @@ -359,7 +359,7 @@ def test_read_barycentric_date(self): # we see that for these coordinates, the input BJD_TDB corresponds to # JD UTC = 2458902.321287484, which we convert this to a UTC timestamp. with self.random(**keywords) as img: - self.assertAlmostEqual(img.read_barycentric_date(), 1582400559.23860979) + self.assertAlmostEqual(img.date(barycentric=True), 1582400559.23860979) @parameterized.named_parameters( { From 24cca018b5291aa565096933f6914e6d89f1e757 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Terr=C3=B3n?= Date: Fri, 10 Apr 2020 16:54:02 +0200 Subject: [PATCH 10/31] Read the value of date()'s default parameters from keywords.py --- fitsimage.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fitsimage.py b/fitsimage.py index eeba890..47f6373 100644 --- a/fitsimage.py +++ b/fitsimage.py @@ -329,9 +329,9 @@ def add_history(self, history): handler.close(output_verify = 'ignore') def date(self, - date_keyword='DATE-OBS', - time_keyword='TIME-OBS', - exp_keyword='EXPTIME', + date_keyword=keywords.datek, + time_keyword=keywords.timek, + exp_keyword=keywords.exptimek, barycentric=False, ): """ Return the date at mid-exposure (UTC), in Unix time. From e242e59bbfa355757c70ea5a1def20db0d93a6eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Terr=C3=B3n?= Date: Fri, 10 Apr 2020 19:34:19 +0200 Subject: [PATCH 11/31] =?UTF-8?q?Rename=20bjd=5Fkeyword=20=E2=80=94=20for?= =?UTF-8?q?=20consistency=20with=20the=20rest=20of=20keywords.py=20variabl?= =?UTF-8?q?es?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fitsimage.py | 2 +- keywords.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/fitsimage.py b/fitsimage.py index 47f6373..f5bb9e6 100644 --- a/fitsimage.py +++ b/fitsimage.py @@ -353,7 +353,7 @@ def date(self, exp_keyword=exp_keyword) def _read_barycentric_date(self, - bjd_keyword=keywords.bjd_keyword, + bjd_keyword=keywords.bjdk, ): """Returns the Barycentric Julian Date as a UTC timestamp.""" diff --git a/keywords.py b/keywords.py index 831d8f8..24509ab 100644 --- a/keywords.py +++ b/keywords.py @@ -105,8 +105,8 @@ "observations. If the keyword is missing, we assume a value of one (that " \ "is, that the observation consisted of a single exposure) [default: %default]" -bjd_keyword = 'BJD_TDB' -desc['bjd_keyword'] = ( +bjdk = 'BJD_TDB' +desc['bjdk'] = ( "keyword for the barycentric JD (TDB, Barycentric Dynamical Time) at " "mid-exposure. Internally, LEMON stores all times as UTC Unix timestamps, so " "BJD_TDB is converted to JD_UTC using Jason Eastman's web applet for time " From 776be326127cf6ff525118de85bd7227804cffec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Terr=C3=B3n?= Date: Fri, 10 Apr 2020 19:48:14 +0200 Subject: [PATCH 12/31] Move bjd_keyword's default value to date() --- fitsimage.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/fitsimage.py b/fitsimage.py index f5bb9e6..9177910 100644 --- a/fitsimage.py +++ b/fitsimage.py @@ -333,6 +333,7 @@ def date(self, time_keyword=keywords.timek, exp_keyword=keywords.exptimek, barycentric=False, + bjd_keyword=keywords.bjdk, ): """ Return the date at mid-exposure (UTC), in Unix time. @@ -346,15 +347,13 @@ def date(self, """ if barycentric: - return self._read_barycentric_date() + return self._read_barycentric_date(bjd_keyword) return self._read_uncorrected_date( date_keyword=date_keyword, time_keyword=time_keyword, exp_keyword=exp_keyword) - def _read_barycentric_date(self, - bjd_keyword=keywords.bjdk, - ): + def _read_barycentric_date(self, bjd_keyword): """Returns the Barycentric Julian Date as a UTC timestamp.""" bjd_tdb = self.read_keyword(bjd_keyword) From dd7760b2f40e01d5daaa2aa09d0fbe17806dcc6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Terr=C3=B3n?= Date: Fri, 10 Apr 2020 19:50:24 +0200 Subject: [PATCH 13/31] Add knobs to enable BJD_TDB --- photometry.py | 42 ++++++++++++++++++++++++++++++++++++------ 1 file changed, 36 insertions(+), 6 deletions(-) diff --git a/photometry.py b/photometry.py index 28bba22..7ccc8a9 100644 --- a/photometry.py +++ b/photometry.py @@ -190,9 +190,13 @@ def parallel_photometry(args): pfilter = image.pfilter(options.filterk) logging.debug("%s: filter = %s" % (image.path, pfilter)) - kwargs = dict(date_keyword = options.datek, - time_keyword = options.timek, - exp_keyword = options.exptimek) + kwargs = dict( + date_keyword=options.datek, + time_keyword=options.timek, + exp_keyword=options.exptimek, + barycentric=options.barycentric, + bjd_keyword=options.bjdk, + ) unix_time = image.date(**kwargs) msg = "%s: observation date: %.2f (%s)" args = (image.path, unix_time, util.utctime(unix_time)) @@ -460,6 +464,28 @@ def parallel_photometry(args): dest = 'uncimgk', default = keywords.uncimgk, help = keywords.desc['uncimgk']) +bjd_group = optparse.OptionGroup(parser, + "Barycentric Julian Dates [experimental]" , + "By default, LEMON determines the date of mid-exposure via the --datek, " + "--timek and --expk keywords in the FITS header. However, high-accuracy " + "observations (e.g. transits of binaries or exoplanets) commonly use " + "Barycentric Julian Dates in Barycentric Dynamical Time (BJD_TDB). This " + "corrects for the amount of time it took light to travel to the changing " + "location of the observatory. For a brief, non-technical explanation, see " + "http://astroutils.astronomy.ohio-state.edu/time/bjd_explanation.html") + +bjd_group.add_option('--use_barycentric', action = 'store_true', + dest = 'barycentric', + help = "Use Barycentric Julian Dates in Barycentric " + "Dynamical Time (BJD_TDB). These dates are read from " + "the --bjdk FITS keyword.") + +bjd_group.add_option('--bjdk', action = 'store', type = 'str', + dest = 'bjdk', default = keywords.bjdk, + help = keywords.desc['bjdk']) + +parser.add_option_group(bjd_group) + parser.add_option_group(key_group) customparser.clear_metavars(parser) @@ -675,9 +701,13 @@ def main(arguments = None): def get_date(img): """ Return the date() of a FITSImage object """ - return img.date(date_keyword = options.datek, - time_keyword = options.timek, - exp_keyword = options.exptimek) + return img.date( + date_keyword=options.datek, + time_keyword=options.timek, + exp_keyword=options.exptimek, + barycentric=options.barycentric, + bjd_keyword=options.bjdk + ) files = fitsimage.InputFITSFiles() img_dates = {} From 4ce19056ebe833c679d5b155249bf720287bc7bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Terr=C3=B3n?= Date: Fri, 10 Apr 2020 19:53:04 +0200 Subject: [PATCH 14/31] Show the value that raises ValueError in ra() and dec() --- fitsimage.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fitsimage.py b/fitsimage.py index 9177910..4d00d6f 100644 --- a/fitsimage.py +++ b/fitsimage.py @@ -595,8 +595,8 @@ def ra(self, ra_keyword = keywords.rak): logging.debug("{0}: α = {1:.5f}".format(self.path, ra)) return ra else: - msg = "{0}: '{1}' not in decimal degrees or 'HH:MM:SS.sss' format" - raise ValueError(msg.format(self.path, ra_keyword)) + msg = "{0}: '{1}' not in decimal degrees or 'HH:MM:SS.sss' format (got = {2!r})" + raise ValueError(msg.format(self.path, ra_keyword, ra_str)) def dec(self, dec_keyword = keywords.deck): """ Return the declination, in decimal degrees. @@ -644,8 +644,8 @@ def dec(self, dec_keyword = keywords.deck): logging.debug("{0}: δ = {1:.5f}".format(self.path, dec)) return dec else: - msg = "{0}: '{1}' not in decimal degrees or 'DD:MM:SS.sss' format" - raise ValueError(msg.format(self.path, dec_keyword)) + msg = "{0}: '{1}' not in decimal degrees or 'DD:MM:SS.sss' format (got = {2!r}" + raise ValueError(msg.format(self.path, dec_keyword, dec_str)) @property def prefix(self): From 00184cf248d2beeac5c3cf35e8e6d0080a215154 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Terr=C3=B3n?= Date: Fri, 10 Apr 2020 20:29:00 +0200 Subject: [PATCH 15/31] Refactor test_ra() into Abseil's parameterized tests --- test/test_fitsimage.py | 110 ++++++++++++++++++++++++++--------------- 1 file changed, 69 insertions(+), 41 deletions(-) diff --git a/test/test_fitsimage.py b/test/test_fitsimage.py index 808d6ef..72866a1 100644 --- a/test/test_fitsimage.py +++ b/test/test_fitsimage.py @@ -580,50 +580,78 @@ def test_date_and_year_nonstandard_EXPTIME(self, exptime): with self.assertRaisesRegexp(fitsimage.NonStandardFITS, 'EXPTIME'): img.year() - def test_ra(self): - - ra_kwd = 'RA' - - keywords = {ra_kwd : 344.412916667} - with self.random(**keywords) as img: - self.assertAlmostEqual(keywords[ra_kwd], img.ra(ra_kwd)) - - keywords = {ra_kwd.lower() : '19:43:56.01'} - with self.random(**keywords) as img: - self.assertAlmostEqual(295.983375, img.ra(ra_kwd)) - - keywords = {ra_kwd : '17:58:17 '} - with self.random(**keywords) as img: - self.assertAlmostEqual(269.570833333, img.ra(ra_kwd)) - - keywords = {ra_kwd.lower() : ' 00:42:30.997 '} + @parameterized.named_parameters( + { + 'testcase_name': 'Decimal degrees', + 'keyword': 'RA', + 'ra': 344.412916667, + 'want': 344.412916667, + },{ + 'testcase_name': 'Sexagesimal', + 'keyword': 'RA', + 'ra': '19:43:56.01', + 'want': 295.983375, + },{ + 'testcase_name': 'Trailing whitespace', + 'keyword': 'RA', + 'ra': '17:58:17 ', + 'want': 269.570833333, + },{ + 'testcase_name': 'Leading and trailing whitespace', + 'keyword': 'RA', + 'ra': ' 00:42:30.997 ', + 'want': 10.6291541667, + },{ + 'testcase_name': 'Trailing decimal separator', + 'keyword': 'RA', + 'ra': '13:00:01.', + 'want': 195.004166667, + }, + { + 'testcase_name': 'Case-insensitive lookup', + 'keyword': 'ra', + 'ra': '00:42:30.997', + 'want': 10.6291541667, + }, + ) + def test_ra(self, keyword, ra, want): + keywords = {keyword: ra} with self.random(**keywords) as img: - self.assertAlmostEqual(10.6291541667, img.ra(ra_kwd)) + self.assertAlmostEqual(img.ra('RA'), want) - keywords = {ra_kwd : '13:00:01.'} + @parameterized.named_parameters( + { + 'testcase_name': 'Extraneous h/m/s', + 'ra': '00h42m30s', + 'want': ValueError, + 'regexp': "not in decimal degrees or 'HH:MM:SS.sss' format", + },{ + 'testcase_name': 'Too many decimal places', + 'ra': '00:42:30.9997', + 'want': ValueError, + 'regexp': "not in decimal degrees or 'HH:MM:SS.sss' format", + },{ + 'testcase_name': 'No leading zero', + 'ra': '3:24:57.12', + 'want': ValueError, + 'regexp': "not in decimal degrees or 'HH:MM:SS.sss' format", + },{ + 'testcase_name': 'Not an actual right ascension', + 'ra': 'N/A', + 'want': ValueError, + 'regexp': "not in decimal degrees or 'HH:MM:SS.sss' format", + },{ + 'testcase_name': 'Keyword not in FITS header', + 'ra': None, + 'want': KeyError, + 'regexp': "keyword 'RA' not found", + }, + ) + def test_ra_error(self, ra, want, regexp): + keywords = {'RA': ra} with self.random(**keywords) as img: - self.assertAlmostEqual(195.004166667, img.ra(ra_kwd)) - - def assertValueErrorRaised(ra_value): - """ Assert that a random FITS image whose right ascension is - 'ra_value' raises ValueError when its ra() method is called. """ - - keywords = {ra_kwd : ra_value} - with self.random(**keywords) as img: - regexp = "not in decimal degrees or 'HH:MM:SS.sss' format" - with self.assertRaisesRegexp(ValueError, regexp): - img.ra(ra_kwd) - - # Not in decimal or dd:mm:ss[.sss] format - assertValueErrorRaised('00h42m30s') - assertValueErrorRaised('00:42:30.9997') - assertValueErrorRaised('3:24:57.12') - assertValueErrorRaised('N/A') - - # 'RA' keyword not in FITS header - with self.assertRaises(KeyError): - with self.random() as img: - img.ra(ra_kwd) + with self.assertRaisesRegexp(want, regexp): + img.ra('RA') def test_dec(self): From 660cf42e52706c76e4b032223ad41783fd51c5e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Terr=C3=B3n?= Date: Fri, 10 Apr 2020 20:46:04 +0200 Subject: [PATCH 16/31] Refactor test_dec() into Abseil's parameterized tests --- test/test_fitsimage.py | 110 ++++++++++++++++++++++++++--------------- 1 file changed, 69 insertions(+), 41 deletions(-) diff --git a/test/test_fitsimage.py b/test/test_fitsimage.py index 72866a1..aaf073d 100644 --- a/test/test_fitsimage.py +++ b/test/test_fitsimage.py @@ -653,47 +653,75 @@ def test_ra_error(self, ra, want, regexp): with self.assertRaisesRegexp(want, regexp): img.ra('RA') - def test_dec(self): - - dec_kwd = 'DEC' - - keywords = {dec_kwd : -52.6956605556} - with self.random(**keywords) as img: - self.assertAlmostEqual(keywords[dec_kwd], img.dec(dec_kwd)) - - keywords = {dec_kwd.lower() : '45:59:52.768'} - with self.random(**keywords) as img: - self.assertAlmostEqual(45.9979911111, img.dec(dec_kwd)) - - keywords = {dec_kwd : '+19:10:56 '} - with self.random(**keywords) as img: - self.assertAlmostEqual(19.1822222222, img.dec(dec_kwd)) - - keywords = {dec_kwd.lower() : ' -08:12:05.8 '} + @parameterized.named_parameters( + { + 'testcase_name': 'Decimal degrees', + 'keyword': 'DEC', + 'dec': -52.6956605556, + 'want': -52.6956605556, + },{ + 'testcase_name': 'Sexagesimal', + 'keyword': 'DEC', + 'dec': '45:59:52.768', + 'want': 45.9979911111, + },{ + 'testcase_name': 'Trailing whitespace', + 'keyword': 'DEC', + 'dec': '+19:10:56 ', + 'want': 19.1822222222, + },{ + 'testcase_name': 'Leading and trailing whitespace', + 'keyword': 'DEC', + 'dec': ' -08:12:05.8 ', + 'want': -8.20161111111, + },{ + 'testcase_name': 'Trailing decimal separator', + 'keyword': 'DEC', + 'dec': '26:25:08.', + 'want': 26.4188888889, + }, + { + 'testcase_name': 'Case-insensitive lookup', + 'keyword': 'dec', + 'dec': '-08:12:05.8', + 'want': -8.20161111111, + }, + ) + def test_dec(self, keyword, dec, want): + keywords = {keyword: dec} with self.random(**keywords) as img: - self.assertAlmostEqual(-8.20161111111, img.dec(dec_kwd)) + self.assertAlmostEqual(img.dec('DEC'), want) - keywords = {dec_kwd : '26:25:08.'} + @parameterized.named_parameters( + { + 'testcase_name': 'Extraneous +/d/m/s', + 'dec': '+41d16m9s', + 'want': ValueError, + 'regexp': "not in decimal degrees or 'DD:MM:SS.sss' format", + },{ + 'testcase_name': 'Too many decimal places', + 'dec': '45:59:52.7685', + 'want': ValueError, + 'regexp': "not in decimal degrees or 'DD:MM:SS.sss' format", + },{ + 'testcase_name': 'No leading zero', + 'dec': '-8:12:05.8', + 'want': ValueError, + 'regexp': "not in decimal degrees or 'DD:MM:SS.sss' format", + },{ + 'testcase_name': 'Not an actual declination', + 'dec': 'N/A', + 'want': ValueError, + 'regexp': "not in decimal degrees or 'DD:MM:SS.sss' format", + },{ + 'testcase_name': 'Keyword not in FITS header', + 'dec': None, + 'want': KeyError, + 'regexp': "keyword 'DEC' not found", + }, + ) + def test_dec_error(self, dec, want, regexp): + keywords = {'DEC': dec} with self.random(**keywords) as img: - self.assertAlmostEqual(26.4188888889, img.dec(dec_kwd)) - - def assertValueErrorRaised(dec_value): - """ Assert that a random FITS image whose declination is - 'dec_value' raises ValueError when its dec() method is called.""" - - keywords = {dec_kwd : dec_value} - with self.random(**keywords) as img: - regexp = "not in decimal degrees or 'DD:MM:SS.sss' format" - with self.assertRaisesRegexp(ValueError, regexp): - img.dec(dec_kwd) - - # Not in decimal or dd:mm:ss[.sss] format - assertValueErrorRaised('+41d16m9s') - assertValueErrorRaised('45:59:52.7685') - assertValueErrorRaised('-8:12:05.8') - assertValueErrorRaised('N/A') - - # 'DEC' keyword not in FITS header - with self.assertRaises(KeyError): - with self.random() as img: - img.dec(dec_kwd) + with self.assertRaisesRegexp(want, regexp): + img.dec('DEC') From 6bdafd5ba9a5e5390303f785978c04d990893ef5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Terr=C3=B3n?= Date: Fri, 10 Apr 2020 21:01:47 +0200 Subject: [PATCH 17/31] Add to ra() and dec() support for whitespace separators HH MM SS.ss and DD MM SS.ss are not standard, but common enough to merit support. --- fitsimage.py | 4 ++-- test/test_fitsimage.py | 12 ++++++++++++ 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/fitsimage.py b/fitsimage.py index 4d00d6f..a67c6a7 100644 --- a/fitsimage.py +++ b/fitsimage.py @@ -580,7 +580,7 @@ def ra(self, ra_keyword = keywords.rak): logging.debug(msg3) # HH:MM:SS[.sss] - regexp = '^(?P\d{2}):(?P\d{2}):(?P\d{2}(\.\d{0,3})?)$' + regexp = '^(?P\d{2})[:\s](?P\d{2})[:\s](?P\d{2}(\.\d{0,3})?)$' match = re.match(regexp, ra_str.strip()) if match: hh = int(match.group('hh')) @@ -629,7 +629,7 @@ def dec(self, dec_keyword = keywords.deck): logging.debug(msg3) # DD:MM:SS[.sss] - regexp = '^(?P
([-+])?\d{2}):(?P\d{2}):(?P\d{2}(\.\d{0,3})?)$' + regexp = '^(?P
([-+])?\d{2})[:\s](?P\d{2})[:\s](?P\d{2}(\.\d{0,3})?)$' match = re.match(regexp, dec_str.strip()) if match: dd = int(match.group('dd')) diff --git a/test/test_fitsimage.py b/test/test_fitsimage.py index aaf073d..21ab364 100644 --- a/test/test_fitsimage.py +++ b/test/test_fitsimage.py @@ -613,6 +613,12 @@ def test_date_and_year_nonstandard_EXPTIME(self, exptime): 'ra': '00:42:30.997', 'want': 10.6291541667, }, + { + 'testcase_name': 'HH MM SS.ss', + 'keyword': 'RA', + 'ra': '03 47 24.00', + 'want': 56.85, + }, ) def test_ra(self, keyword, ra, want): keywords = {keyword: ra} @@ -686,6 +692,12 @@ def test_ra_error(self, ra, want, regexp): 'dec': '-08:12:05.8', 'want': -8.20161111111, }, + { + 'testcase_name': 'DD MM SS.s', + 'keyword': 'DEC', + 'dec': '+24 15 19.0', + 'want': 24.25527778, + }, ) def test_dec(self, keyword, dec, want): keywords = {keyword: dec} From 025cd63d80110730a622e398e8a050dcc5e388ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Terr=C3=B3n?= Date: Fri, 10 Apr 2020 21:07:12 +0200 Subject: [PATCH 18/31] Add requests-cache --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 0a85fd5..b1a5741 100644 --- a/requirements.txt +++ b/requirements.txt @@ -18,3 +18,4 @@ unittest2>=0.5.1 montage-wrapper>=0.9.7 requests>=2.0.1 subprocess32>=3.2.6 +requests-cache>=0.5.2 From 9d945b1586106e4c0b301cfbab554f6ed883f7a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Terr=C3=B3n?= Date: Fri, 10 Apr 2020 21:16:52 +0200 Subject: [PATCH 19/31] Use requests-mock in test_read_barycentric_date() Don't talk to production in tests. --- test/test_fitsimage.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/test/test_fitsimage.py b/test/test_fitsimage.py index 21ab364..b724b45 100644 --- a/test/test_fitsimage.py +++ b/test/test_fitsimage.py @@ -25,6 +25,7 @@ import os import pyfits import random +import requests_mock import stat import tempfile import warnings @@ -349,7 +350,9 @@ def test_delete_keyword(self): with self.assertRaises(KeyError): img.read_keyword('HIERARCH ' + keyword) - def test_read_barycentric_date(self): + + @requests_mock.Mocker() + def test_read_barycentric_date(self, mock): keywords = { 'BJD_TDB': 2458902.321777873, 'RA': '03:47:24.00', @@ -357,7 +360,11 @@ def test_read_barycentric_date(self): } # From http://astroutils.astronomy.ohio-state.edu/time/bjd2utc.html, # we see that for these coordinates, the input BJD_TDB corresponds to - # JD UTC = 2458902.321287484, which we convert this to a UTC timestamp. + # JD UTC = 2458902.321287484, which we convert to a UTC timestamp. + mock.get( + url='http://astroutils.astronomy.ohio-state.edu/time/convert.php?DEC=24.2552777778&FUNCTION=bjd2utc&JDS=2458902.321777873&RA=56.85&RAUNITS=degrees', + text='2458902.321287484') + with self.random(**keywords) as img: self.assertAlmostEqual(img.date(barycentric=True), 1582400559.23860979) From 9375f161ace3e5f78135ab2c00bfdb01655c477a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Terr=C3=B3n?= Date: Fri, 10 Apr 2020 21:21:59 +0200 Subject: [PATCH 20/31] Add barycorr's submodule in before_install --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 86015e4..2adc6ed 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,6 +18,7 @@ before_install: - sudo easy_install -U distribute - sudo pip install "numpy>=1.7.1" - sudo pip install -r pre-requirements.txt + - git submodule add git@github.com:vterron/barycorr.git # 'travis_wait': avoid timeout during SciPy installation - travis_wait 45 sudo pip install -r requirements.txt # Install IRAF and SExtractor From 67855665002ea2b4fe549b199478ad9630c19406 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Terr=C3=B3n?= Date: Fri, 10 Apr 2020 21:24:23 +0200 Subject: [PATCH 21/31] Add barycorr's submodule to installation instructions --- Doc/user/install.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/Doc/user/install.rst b/Doc/user/install.rst index 3a0e9b6..3339f4a 100644 --- a/Doc/user/install.rst +++ b/Doc/user/install.rst @@ -15,6 +15,7 @@ These are the steps to install LEMON on a fresh `Debian 7`_ machine: #. ``easy_install -U distribute`` #. ``git clone --branch v0.3 git://github.com/vterron/lemon.git ~/lemon`` #. ``cd ~/lemon`` +#. ``git submodule add git@github.com:vterron/barycorr.git`` #. ``pip install "numpy>=1.7.1"`` #. ``pip install -r pre-requirements.txt`` # :download:`[View] <../../pre-requirements.txt>` #. ``pip install -r requirements.txt`` # :download:`[View] <../../requirements.txt>` From 914a2e9a8b9187e8d61973ef326b72f68f8ced28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Terr=C3=B3n?= Date: Fri, 10 Apr 2020 21:34:55 +0200 Subject: [PATCH 22/31] Acknowledge Eastman et al. (2010) --- README.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.rst b/README.rst index f425a6c..1a660a8 100644 --- a/README.rst +++ b/README.rst @@ -21,6 +21,13 @@ Homepage http://lemon.readthedocs.org/ +Acknowledgments +--------------- + +LEMON uses `Eastman et al. (2010), PASP 122, pp. 935–946`__ for Barycentric Julian Date calculations. + +__ http://adsabs.harvard.edu/abs/2010PASP..122..935E + Acknowledging us ---------------- From b86e70db24337b52413ec3d589b8d03412057270 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Terr=C3=B3n?= Date: Sat, 11 Apr 2020 13:12:36 +0200 Subject: [PATCH 23/31] Track the 'init' branch until my pull requests to tronsgaard/barycorr are accepted https://github.com/tronsgaard/barycorr/pulls --- .travis.yml | 2 +- Doc/user/install.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2adc6ed..620e507 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,7 +18,7 @@ before_install: - sudo easy_install -U distribute - sudo pip install "numpy>=1.7.1" - sudo pip install -r pre-requirements.txt - - git submodule add git@github.com:vterron/barycorr.git + - git submodule add -b init git@github.com:vterron/barycorr.git # 'travis_wait': avoid timeout during SciPy installation - travis_wait 45 sudo pip install -r requirements.txt # Install IRAF and SExtractor diff --git a/Doc/user/install.rst b/Doc/user/install.rst index 3339f4a..add63ba 100644 --- a/Doc/user/install.rst +++ b/Doc/user/install.rst @@ -15,7 +15,7 @@ These are the steps to install LEMON on a fresh `Debian 7`_ machine: #. ``easy_install -U distribute`` #. ``git clone --branch v0.3 git://github.com/vterron/lemon.git ~/lemon`` #. ``cd ~/lemon`` -#. ``git submodule add git@github.com:vterron/barycorr.git`` +#. ``git submodule add -b init git@github.com:vterron/barycorr.git`` #. ``pip install "numpy>=1.7.1"`` #. ``pip install -r pre-requirements.txt`` # :download:`[View] <../../pre-requirements.txt>` #. ``pip install -r requirements.txt`` # :download:`[View] <../../requirements.txt>` From 6fd151f12c9e98351820859ba5a797ced755bc45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Terr=C3=B3n?= Date: Sat, 11 Apr 2020 13:25:38 +0200 Subject: [PATCH 24/31] Add requests-mock --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index b1a5741..4f30560 100644 --- a/requirements.txt +++ b/requirements.txt @@ -19,3 +19,4 @@ montage-wrapper>=0.9.7 requests>=2.0.1 subprocess32>=3.2.6 requests-cache>=0.5.2 +requests-mock>=1.7.0 From 929b46261198a7c8f100b5accda456540e4443b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Terr=C3=B3n?= Date: Mon, 13 Apr 2020 09:19:35 +0200 Subject: [PATCH 25/31] Don't `git submodule add` vterron/barycorr Travis CI clones Git submodules by default: https://docs.travis-ci.com/user/customizing-the-build#git-submodules --- .gitmodules | 1 + .travis.yml | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index 3ce6503..8ce0458 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,4 @@ [submodule "barycorr"] path = barycorr url = git@github.com:vterron/barycorr.git + branch = init diff --git a/.travis.yml b/.travis.yml index 620e507..86015e4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,7 +18,6 @@ before_install: - sudo easy_install -U distribute - sudo pip install "numpy>=1.7.1" - sudo pip install -r pre-requirements.txt - - git submodule add -b init git@github.com:vterron/barycorr.git # 'travis_wait': avoid timeout during SciPy installation - travis_wait 45 sudo pip install -r requirements.txt # Install IRAF and SExtractor From a87744f24023fe8383f5eef519084fc703fd0ece Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Terr=C3=B3n?= Date: Mon, 13 Apr 2020 09:44:18 +0200 Subject: [PATCH 26/31] Use HTTPS for the barycorr submodule This fixes the "Permission denied (publickey)" error: ``` Cloning into '/home/travis/build/vterron/lemon/barycorr'... Warning: Permanently added the RSA host key for IP address '140.82.112.3' to the list of known hosts. Permission denied (publickey). fatal: Could not read from remote repository. ``` https://stackoverflow.com/q/15674064/184363 --- .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index 8ce0458..91f2d9e 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,4 +1,4 @@ [submodule "barycorr"] path = barycorr - url = git@github.com:vterron/barycorr.git + url = https://github.com/vterron/barycorr.git branch = init From ffe0c6ac2d015ca359d890176b244498c5703d50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Terr=C3=B3n?= Date: Tue, 14 Apr 2020 19:49:52 +0200 Subject: [PATCH 27/31] Initialize vterron/barycorr submodule upon cloning --- Doc/user/install.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Doc/user/install.rst b/Doc/user/install.rst index add63ba..300ca54 100644 --- a/Doc/user/install.rst +++ b/Doc/user/install.rst @@ -13,9 +13,8 @@ These are the steps to install LEMON on a fresh `Debian 7`_ machine: #. ``apt-get build-dep python-matplotlib python-scipy`` #. ``apt-get install openmpi-dev`` #. ``easy_install -U distribute`` -#. ``git clone --branch v0.3 git://github.com/vterron/lemon.git ~/lemon`` +#. ``git clone --branch v0.3 --recurse-submodules git://github.com/vterron/lemon.git ~/lemon`` #. ``cd ~/lemon`` -#. ``git submodule add -b init git@github.com:vterron/barycorr.git`` #. ``pip install "numpy>=1.7.1"`` #. ``pip install -r pre-requirements.txt`` # :download:`[View] <../../pre-requirements.txt>` #. ``pip install -r requirements.txt`` # :download:`[View] <../../requirements.txt>` From 8d7d31a8f75cb72cf7837b56e877448b66b1f8d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Terr=C3=B3n?= Date: Tue, 14 Apr 2020 19:51:44 +0200 Subject: [PATCH 28/31] Remove --branch from `git clone` command Otherwise new users won't see the new features until v4 is released. --- Doc/user/install.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/user/install.rst b/Doc/user/install.rst index 300ca54..873b542 100644 --- a/Doc/user/install.rst +++ b/Doc/user/install.rst @@ -13,7 +13,7 @@ These are the steps to install LEMON on a fresh `Debian 7`_ machine: #. ``apt-get build-dep python-matplotlib python-scipy`` #. ``apt-get install openmpi-dev`` #. ``easy_install -U distribute`` -#. ``git clone --branch v0.3 --recurse-submodules git://github.com/vterron/lemon.git ~/lemon`` +#. ``git clone --recurse-submodules git://github.com/vterron/lemon.git ~/lemon`` #. ``cd ~/lemon`` #. ``pip install "numpy>=1.7.1"`` #. ``pip install -r pre-requirements.txt`` # :download:`[View] <../../pre-requirements.txt>` From 95794f8b73c4c2cac1e2c3784c498fb43dc14cee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Terr=C3=B3n?= Date: Wed, 15 Apr 2020 09:12:55 +0200 Subject: [PATCH 29/31] Add options --rak and --deck to 'photometry' And propagate them to _read_barycentric_date(). --- fitsimage.py | 16 ++++++++++------ photometry.py | 14 +++++++++++++- 2 files changed, 23 insertions(+), 7 deletions(-) diff --git a/fitsimage.py b/fitsimage.py index a67c6a7..6b990e6 100644 --- a/fitsimage.py +++ b/fitsimage.py @@ -334,6 +334,8 @@ def date(self, exp_keyword=keywords.exptimek, barycentric=False, bjd_keyword=keywords.bjdk, + ra_keyword=keywords.rak, + dec_keyword=keywords.deck, ): """ Return the date at mid-exposure (UTC), in Unix time. @@ -347,17 +349,19 @@ def date(self, """ if barycentric: - return self._read_barycentric_date(bjd_keyword) + return self._read_barycentric_date( + bjd_keyword, ra_keyword, dec_keyword) return self._read_uncorrected_date( - date_keyword=date_keyword, - time_keyword=time_keyword, - exp_keyword=exp_keyword) + date_keyword, time_keyword, exp_keyword=exp_keyword) - def _read_barycentric_date(self, bjd_keyword): + def _read_barycentric_date(self, bjd_keyword, ra_keyword, dec_keyword): """Returns the Barycentric Julian Date as a UTC timestamp.""" bjd_tdb = self.read_keyword(bjd_keyword) - jd_utc = barycorr.bjd2utc(bjd_tdb, self.ra(), self.dec()) + jd_utc = barycorr.bjd2utc( + bjd_tdb, + self.ra(ra_keyword=ra_keyword), + self.dec(dec_keyword=dec_keyword)) t = astropy.time.Time(jd_utc, format='jd', scale='utc') return t.unix diff --git a/photometry.py b/photometry.py index 7ccc8a9..b0496dc 100644 --- a/photometry.py +++ b/photometry.py @@ -196,6 +196,8 @@ def parallel_photometry(args): exp_keyword=options.exptimek, barycentric=options.barycentric, bjd_keyword=options.bjdk, + ra_keyword=options.rak, + dec_keyword=options.deck, ) unix_time = image.date(**kwargs) msg = "%s: observation date: %.2f (%s)" @@ -464,6 +466,14 @@ def parallel_photometry(args): dest = 'uncimgk', default = keywords.uncimgk, help = keywords.desc['uncimgk']) +key_group.add_option('--rak', action = 'store', type = 'str', + dest = 'rak', default = keywords.rak, + help = keywords.desc['rak']) + +key_group.add_option('--deck', action = 'store', type = 'str', + dest = 'deck', default = keywords.deck, + help = keywords.desc['deck']) + bjd_group = optparse.OptionGroup(parser, "Barycentric Julian Dates [experimental]" , "By default, LEMON determines the date of mid-exposure via the --datek, " @@ -706,7 +716,9 @@ def get_date(img): time_keyword=options.timek, exp_keyword=options.exptimek, barycentric=options.barycentric, - bjd_keyword=options.bjdk + bjd_keyword=options.bjdk, + ra_keyword=options.rak, + dec_keyword=options.deck, ) files = fitsimage.InputFITSFiles() From a97ca69fe8148b5254479e208d3f134742dd21ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Terr=C3=B3n?= Date: Wed, 15 Apr 2020 09:33:45 +0200 Subject: [PATCH 30/31] Add logging message to read_keyword() --- fitsimage.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/fitsimage.py b/fitsimage.py index 6b990e6..aaf4bf6 100644 --- a/fitsimage.py +++ b/fitsimage.py @@ -189,7 +189,9 @@ def read_keyword(self, keyword): if not keyword: raise ValueError("keyword cannot be empty") try: - return self._header[keyword.upper()] + value = self._header[keyword.upper()] + logging.debug("%s: %s = %s", self.path, keyword, value) + return value except KeyError: msg = "%s: keyword '%s' not found" % (self.path, keyword) raise KeyError(msg) From 2e42da7ca36c37ea73eaffecfc75200450688864 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Terr=C3=B3n?= Date: Wed, 15 Apr 2020 09:34:41 +0200 Subject: [PATCH 31/31] Add logging messages to _read_barycentric_date() --- fitsimage.py | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/fitsimage.py b/fitsimage.py index aaf4bf6..456b539 100644 --- a/fitsimage.py +++ b/fitsimage.py @@ -360,11 +360,21 @@ def _read_barycentric_date(self, bjd_keyword, ra_keyword, dec_keyword): """Returns the Barycentric Julian Date as a UTC timestamp.""" bjd_tdb = self.read_keyword(bjd_keyword) - jd_utc = barycorr.bjd2utc( - bjd_tdb, - self.ra(ra_keyword=ra_keyword), - self.dec(dec_keyword=dec_keyword)) + ra = self.ra(ra_keyword=ra_keyword) + dec = self.dec(dec_keyword=dec_keyword) + + logging.debug( + "Converting %f (%s, α=%f, δ=%f) to JD UTC", + bjd_tdb, bjd_keyword, ra, dec) + + jd_utc = barycorr.bjd2utc(bjd_tdb, ra, dec) + + logging.debug( + "%f (%s, α=%f, δ=%f) = %f (JD UTC)", + bjd_tdb, bjd_keyword, ra, dec, jd_utc) + t = astropy.time.Time(jd_utc, format='jd', scale='utc') + logging.debug("%f (JD UTC) = %f (UTC timestamp)", jd_utc, t.unix) return t.unix def _read_uncorrected_date(self, date_keyword, time_keyword, exp_keyword):