aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/request/request.php
blob: ea9854894c79877cc751318ae7e324f55f1dc926 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
<?php
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/

namespace phpbb\request;

/**
* All application input is accessed through this class.
*
* It provides a method to disable access to input data through super globals.
* This should force MOD authors to read about data validation.
*/
class request implements \phpbb\request\request_interface
{
	/**
	* @var	array	The names of super global variables that this class should protect if super globals are disabled.
	*/
	protected $super_globals = array(
		\phpbb\request\request_interface::POST => '_POST',
		\phpbb\request\request_interface::GET => '_GET',
		\phpbb\request\request_interface::REQUEST => '_REQUEST',
		\phpbb\request\request_interface::COOKIE => '_COOKIE',
		\phpbb\request\request_interface::SERVER => '_SERVER',
		\phpbb\request\request_interface::FILES => '_FILES',
	);

	/**
	* @var	array	Stores original contents of $_REQUEST array.
	*/
	protected $original_request = null;

	/**
	* @var
	*/
	protected $super_globals_disabled = false;

	/**
	* @var	array	An associative array that has the value of super global constants as keys and holds their data as values.
	*/
	protected $input;

	/**
	* @var	\phpbb\request\type_cast_helper_interface	An instance of a type cast helper providing convenience methods for type conversions.
	*/
	protected $type_cast_helper;

	/**
	* Initialises the request class, that means it stores all input data in {@link $input input}
	* and then calls {@link \phpbb\request\deactivated_super_global \phpbb\request\deactivated_super_global}
	*/
	public function __construct(\phpbb\request\type_cast_helper_interface $type_cast_helper = null, $disable_super_globals = true)
	{
		if ($type_cast_helper)
		{
			$this->type_cast_helper = $type_cast_helper;
		}
		else
		{
			$this->type_cast_helper = new \phpbb\request\type_cast_helper();
		}

		foreach ($this->super_globals as $const => $super_global)
		{
			$this->input[$const] = isset($GLOBALS[$super_global]) ? $GLOBALS[$super_global] : array();
		}

		// simulate request_order = GP
		$this->original_request = $this->input[\phpbb\request\request_interface::REQUEST];
		$this->input[\phpbb\request\request_interface::REQUEST] = $this->input[\phpbb\request\request_interface::POST] + $this->input[\phpbb\request\request_interface::GET];

		if ($disable_super_globals)
		{
			$this->disable_super_globals();
		}
	}

	/**
	* Getter for $super_globals_disabled
	*
	* @return	bool	Whether super globals are disabled or not.
	*/
	public function super_globals_disabled()
	{
		return $this->super_globals_disabled;
	}

	/**
	* Disables access of super globals specified in $super_globals.
	* This is achieved by overwriting the super globals with instances of {@link \phpbb\request\deactivated_super_global \phpbb\request\deactivated_super_global}
	*/
	public function disable_super_globals()
	{
		if (!$this->super_globals_disabled)
		{
			foreach ($this->super_globals as $const => $super_global)
			{
				unset($GLOBALS[$super_global]);
				$GLOBALS[$super_global] = new \phpbb\request\deactivated_super_global($this, $super_global, $const);
			}

			$this->super_globals_disabled = true;
		}
	}

	/**
	* Enables access of super globals specified in $super_globals if they were disabled by {@link disable_super_globals disable_super_globals}.
	* This is achieved by making the super globals point to the data stored within this class in {@link $input input}.
	*/
	public function enable_super_globals()
	{
		if ($this->super_globals_disabled)
		{
			foreach ($this->super_globals as $const => $super_global)
			{
				$GLOBALS[$super_global] = $this->input[$const];
			}

			$GLOBALS['_REQUEST'] = $this->original_request;

			$this->super_globals_disabled = false;
		}
	}

	/**
	* This function allows overwriting or setting a value in one of the super global arrays.
	*
	* Changes which are performed on the super globals directly will not have any effect on the results of
	* other methods this class provides. Using this function should be avoided if possible! It will
	* consume twice the the amount of memory of the value
	*
	* @param	string	$var_name	The name of the variable that shall be overwritten
	* @param	mixed	$value		The value which the variable shall contain.
	* 								If this is null the variable will be unset.
	* @param	\phpbb\request\request_interface::POST|GET|REQUEST|COOKIE	$super_global
	* 								Specifies which super global shall be changed
	*/
	public function overwrite($var_name, $value, $super_global = \phpbb\request\request_interface::REQUEST)
	{
		if (!isset($this->super_globals[$super_global]))
		{
			return;
		}

		$this->type_cast_helper->add_magic_quotes($value);

		// setting to null means unsetting
		if ($value === null)
		{
			unset($this->input[$super_global][$var_name]);
			if (!$this->super_globals_disabled())
			{
				unset($GLOBALS[$this->super_globals[$super_global]][$var_name]);
			}
		}
		else
		{
			$this->input[$super_global][$var_name] = $value;
			if (!$this->super_globals_disabled())
			{
				$GLOBALS[$this->super_globals[$super_global]][$var_name] = $value;
			}
		}

		if (!$this->super_globals_disabled())
		{
			unset($GLOBALS[$this->super_globals[$super_global]][$var_name]);
			$GLOBALS[$this->super_globals[$super_global]][$var_name] = $value;
		}
	}

	/**
	* Central type safe input handling function.
	* All variables in GET or POST requests should be retrieved through this function to maximise security.
	*
	* @param	string|array	$var_name	The form variable's name from which data shall be retrieved.
	* 										If the value is an array this may be an array of indizes which will give
	* 										direct access to a value at any depth. E.g. if the value of "var" is array(1 => "a")
	* 										then specifying array("var", 1) as the name will return "a".
	* @param	mixed			$default	A default value that is returned if the variable was not set.
	* 										This function will always return a value of the same type as the default.
	* @param	bool			$multibyte	If $default is a string this paramater has to be true if the variable may contain any UTF-8 characters
	*										Default is false, causing all bytes outside the ASCII range (0-127) to be replaced with question marks
	* @param	\phpbb\request\request_interface::POST|GET|REQUEST|COOKIE	$super_global
	* 										Specifies which super global should be used
	*
	* @return	mixed	The value of $_REQUEST[$var_name] run through {@link set_var set_var} to ensure that the type is the
	*					the same as that of $default. If the variable is not set $default is returned.
	*/
	public function variable($var_name, $default, $multibyte = false, $super_global = \phpbb\request\request_interface::REQUEST)
	{
		return $this->_variable($var_name, $default, $multibyte, $super_global, true);
	}

	/**
	* Get a variable, but without trimming strings.
	* Same functionality as variable(), except does not run trim() on strings.
	* This method should be used when handling passwords.
	*
	* @param	string|array	$var_name	The form variable's name from which data shall be retrieved.
	* 										If the value is an array this may be an array of indizes which will give
	* 										direct access to a value at any depth. E.g. if the value of "var" is array(1 => "a")
	* 										then specifying array("var", 1) as the name will return "a".
	* @param	mixed			$default	A default value that is returned if the variable was not set.
	* 										This function will always return a value of the same type as the default.
	* @param	bool			$multibyte	If $default is a string this paramater has to be true if the variable may contain any UTF-8 characters
	*										Default is false, causing all bytes outside the ASCII range (0-127) to be replaced with question marks
	* @param	\phpbb\request\request_interface::POST|GET|REQUEST|COOKIE	$super_global
	* 										Specifies which super global should be used
	*
	* @return	mixed	The value of $_REQUEST[$var_name] run through {@link set_var set_var} to ensure that the type is the
	*					the same as that of $default. If the variable is not set $default is returned.
	*/
	public function untrimmed_variable($var_name, $default, $multibyte = false, $super_global = \phpbb\request\request_interface::REQUEST)
	{
		return $this->_variable($var_name, $default, $multibyte, $super_global, false);
	}

	/**
	* Shortcut method to retrieve SERVER variables.
	*
	* Also fall back to getenv(), some CGI setups may need it (probably not, but
	* whatever).
	*
	* @param	string|array	$var_name		See \phpbb\request\request_interface::variable
	* @param	mixed			$Default		See \phpbb\request\request_interface::variable
	*
	* @return	mixed	The server variable value.
	*/
	public function server($var_name, $default = '')
	{
		$multibyte = true;

		if ($this->is_set($var_name, \phpbb\request\request_interface::SERVER))
		{
			return $this->variable($var_name, $default, $multibyte, \phpbb\request\request_interface::SERVER);
		}
		else
		{
			$var = getenv($var_name);
			$this->type_cast_helper->recursive_set_var($var, $default, $multibyte);
			return $var;
		}
	}

	/**
	* Shortcut method to retrieve the value of client HTTP headers.
	*
	* @param	string|array	$header_name	The name of the header to retrieve.
	* @param	mixed			$default		See \phpbb\request\request_interface::variable
	*
	* @return	mixed	The header value.
	*/
	public function header($header_name, $default = '')
	{
		$var_name = 'HTTP_' . str_replace('-', '_', strtoupper($header_name));
		return $this->server($var_name, $default);
	}

	/**
	* Shortcut method to retrieve $_FILES variables
	*
	* @param string $form_name The name of the file input form element
	*
	* @return array The uploaded file's information or an empty array if the
	* variable does not exist in _FILES.
	*/
	public function file($form_name)
	{
		return $this->variable($form_name, array('name' => 'none'), false, \phpbb\request\request_interface::FILES);
	}

	/**
	* Checks whether a certain variable was sent via POST.
	* To make sure that a request was sent using POST you should call this function
	* on at least one variable.
	*
	* @param	string	$name	The name of the form variable which should have a
	*							_p suffix to indicate the check in the code that creates the form too.
	*
	* @return	bool			True if the variable was set in a POST request, false otherwise.
	*/
	public function is_set_post($name)
	{
		return $this->is_set($name, \phpbb\request\request_interface::POST);
	}

	/**
	* Checks whether a certain variable is set in one of the super global
	* arrays.
	*
	* @param	string	$var	Name of the variable
	* @param	\phpbb\request\request_interface::POST|GET|REQUEST|COOKIE	$super_global
	*							Specifies the super global which shall be checked
	*
	* @return	bool			True if the variable was sent as input
	*/
	public function is_set($var, $super_global = \phpbb\request\request_interface::REQUEST)
	{
		return isset($this->input[$super_global][$var]);
	}

	/**
	* Checks whether the current request is an AJAX request (XMLHttpRequest)
	*
	* @return	bool			True if the current request is an ajax request
	*/
	public function is_ajax()
	{
		return $this->header('X-Requested-With') == 'XMLHttpRequest';
	}

	/**
	* Checks if the current request is happening over HTTPS.
	*
	* @return	bool			True if the request is secure.
	*/
	public function is_secure()
	{
		return $this->server('HTTPS') == 'on';
	}

	/**
	* Returns all variable names for a given super global
	*
	* @param	\phpbb\request\request_interface::POST|GET|REQUEST|COOKIE	$super_global
	*					The super global from which names shall be taken
	*
	* @return	array	All variable names that are set for the super global.
	*					Pay attention when using these, they are unsanitised!
	*/
	public function variable_names($super_global = \phpbb\request\request_interface::REQUEST)
	{
		if (!isset($this->input[$super_global]))
		{
			return array();
		}

		return array_keys($this->input[$super_global]);
	}

	/**
	* Helper function used by variable() and untrimmed_variable().
	*
	* @param	string|array	$var_name	The form variable's name from which data shall be retrieved.
	* 										If the value is an array this may be an array of indizes which will give
	* 										direct access to a value at any depth. E.g. if the value of "var" is array(1 => "a")
	* 										then specifying array("var", 1) as the name will return "a".
	* @param	mixed			$default	A default value that is returned if the variable was not set.
	* 										This function will always return a value of the same type as the default.
	* @param	bool			$multibyte	If $default is a string this paramater has to be true if the variable may contain any UTF-8 characters
	*										Default is false, causing all bytes outside the ASCII range (0-127) to be replaced with question marks
	* @param	\phpbb\request\request_interface::POST|GET|REQUEST|COOKIE	$super_global
	* 										Specifies which super global should be used
	* @param	bool			$trim		Indicates whether trim() should be applied to string values.
	*
	* @return	mixed	The value of $_REQUEST[$var_name] run through {@link set_var set_var} to ensure that the type is the
	*					the same as that of $default. If the variable is not set $default is returned.
	*/
	protected function _variable($var_name, $default, $multibyte = false, $super_global = \phpbb\request\request_interface::REQUEST, $trim = true)
	{
		$path = false;

		// deep direct access to multi dimensional arrays
		if (is_array($var_name))
		{
			$path = $var_name;
			// make sure at least the variable name is specified
			if (empty($path))
			{
				return (is_array($default)) ? array() : $default;
			}
			// the variable name is the first element on the path
			$var_name = array_shift($path);
		}

		if (!isset($this->input[$super_global][$var_name]))
		{
			return (is_array($default)) ? array() : $default;
		}
		$var = $this->input[$super_global][$var_name];

		if ($path)
		{
			// walk through the array structure and find the element we are looking for
			foreach ($path as $key)
			{
				if (is_array($var) && isset($var[$key]))
				{
					$var = $var[$key];
				}
				else
				{
					return (is_array($default)) ? array() : $default;
				}
			}
		}

		$this->type_cast_helper->recursive_set_var($var, $default, $multibyte, $trim);

		return $var;
	}

	/**
	* {@inheritdoc}
	*/
	public function get_super_global($super_global = \phpbb\request\request_interface::REQUEST)
	{
		return $this->input[$super_global];
	}
}
=E~+9v:93wXKI5UG ~S,џ7X&Y4PߪB|AW|N1YX F﷣>eNG <XJh% 1.fdfq$:#G#ԔwꦆZA6DҮղfe5R[ ~1n0Y"w<0>_H˼jp[2rT4|yD29bCun+1i&)݄4X]>O@oGkBԠC=d|$K[Ae-, 3 PP߁w:SkL(ӰKah;%5-+vxBvMWB”4~'5a8c:gWQ٪ʜu~S%nJ{},~ghXlW>{+;fv蠡585m$|v፛.SWrSN;`Ԩi6nw{?'uKY$.*If'̷mt uĤ %8TA˿`ݦ;<8 # ɴX/b~4C>S3SeH9{˜AcV+*` dxɓDU`mx.՝jVT6RjAryWkMx"j>lu|-.9/.֡*) qF|̆QJ,7gclvOw6"i rv"%o_DqSt{-A6hlpU~V+j[ͷ8cY&7~@HVNIGW|+H0p0)uDbZz7̆HljN3ªV//ߦw39-PY`bTQjYEYAR4LA :դLrh%km:h9ZyGݪ|5?KF=hjY$v6;dJԌ5|Z Sf}bm4fF(OQ'^K<ŰCsNu.]mf']Ӑar1ZWrrJTfFO4X>?*7^)ų>B6i؀A-ڈ2kw ?f{UV6r1pCGhjCϮSVl xvCQ`N,:N2.<\7+9 sb+䇉Bψp3g4m<)y"<⻰U/qRF-)z}:r1 \Zі76Q!rD#$&l;$8çyMj n>뺥7Ƣn#jޑ!/<:*MB$O3a?7TH^3V`r ¨VMiAն&0Ck[e_ʱfOu Z <wJxTB]<{De ĥ1n=|bTR7,l6XymJt2v9 !&.`Lď11'Q 8ru2П\rj P{.ȈfX{+▒܆Ӊ2ciŨ|OX4PpzgR= @KҾ527CK?xklAxե@@gzM(BuCGg7d|!tNWycTVy\蝼H~gJnn(~(e@.-{8 $?3OEߙU%ȃ)$ʦ(:YtUmS瀥8;ڣ I>y,5aX%&x Hj TƄϺ qyƨp #u8dQ!\cBT ֘ SMٴ.9r0),.'3u>x@O'PFҀ#lޑ!@ymk8ͱIra.!<9?t@ꃋEUՂz-Va~:/cj dY `e:LF1Mr=I&LΦG̫7:[[7(@!nH#:j pOcvob%پj,Sxвrw,!vy=+á9( kTfG]R^BOy NYtXt⑩_i;g.SAҐ0 B.Big&vTxmfj+6;6:Y?wsw QJt3oH H\ͺƹHt*HT^>|0|l:Mb.ex e) aZ kJ=3?+ ].>- xC+ 4WFKDEӄ6F"r)#]2+imQ "yЌag D4gܭY&cnrj)͏XѨnqEA٥J+'3 O;7& WYr3Ɵ?0ޤ ^m~.keɇK`t`fY7m}PW#ꇙ[^D2)4!;Q1Y.:<7=4*S U ΅C{"$j$ȳJWFP$/ɚy!Ԧ 5Tm9q?LOǿ%;/qz.}!~~xHg{-U}/;sZ).!KwviAar>6| ʈ$zfRfY+hqQH¿5ocjjƿJ~b!aQO 0BpeDNEճEE'/<܁dبw|‘uڣl1vwF<2C;bG!nCsY|(jk?*h#mf*xSi~Q%[e:bdlO!ŶjA;8z ]3Ta5$! Е P z ;304;-zfݿ gs;8'nc,,E C};`uxF>ga 3Qz -Tr ?rgw!‹ jуi*s;O0 c<-⶝82>>Yxoʁ;:.puu6ф+!۰H*]בS ֹQdǩ#I[zV7& `e'+G+,^ah]<-]uZf4Y:SI" *)f=ȕ̮ؑuנ6N& ڻ_9鳶f g+.Nn\o)&!A)Qf?;ᴖUs7?R"yaQp ApK&T5$BE&OL=tKNO3ѻ[88-4]B~VmdFb{Ta tVA'8 ]9NiZZ/FI˲=mg|a"0R<4K(1]+ '^h\ XVJ.&f(gO/jde*ԵmGv!,w_ ڢ^jR\2:g5&e`K%>8uM*ҔȎLG$TVE{GWÚB+y,ejs7/ImT]Q5CwE//XJ_Rgq,43`\:-4 E Q^v̤[K }v[徳>#WĀ*#Q3 NZSe)@[Մ.= ΋C #7ZR㠨g2 c{!ra{ Zdzma/T}7<<+ٞ>L %COSB0V|=x I|Yc< !)#d.꾙|l:CIUL*%=K H } %Yn!@pK$䮭.;C4 dyv/ 97p翖#k?ц(;_!(fW(rz5p~O8i*u`mGάk.NPݜR1| 4<{#R䬵?"1Gqm'6ֽHc+U}uTU&VϞᰛ.l ZϮ %NE8LLh9k<}(XGq *Nx0 AK[ALwaCT?d#%wZx>/'A2O9y]umO(VITIVyvٵEùi_՛a|f. UwXR#ƋBo8t '#lBˆ8_=XG'jiZl~#i)Q]V\UzXn5Zk9P iDjxg ZobhsmЈM1צ4M׏c_bwDZ!z0]_ mmKx ,DvǑM?%G"dk^Gm7q]'PI~rɱI1D>6/*oLi͚ԳltGL"8r6PdP#H>LC8d[ohQY6aM|XT:Vj%Z6ÄLRIkGqh*"Wd#uVݬK6^6ֺ4h.My^"gF7uf ѽ#d4xacl?2:CZt_sƞvi[rl]A"9|q|0@Ĝ:\h%> G"?}\\; >@`E `K禚.׎@M'UDkW#QE\HqRvBw.(^ԋb W^TҴ72 fA uF6Σ= PXd;ϖ]S*wA&5mÙ%  3>6Yݟ?އbM#lܞ,wARmrnnvi/l!9a[7puKPݵ^FvQ̵$$Z+_z!BDDK#*6p~T0nҦLgVl%I60BO~lK[ǘGE7 ~ dݧ!BJ>,KBjADȅ?B_>T t˪Bn-|Y3rHwܣuIDj @{ l0hK?/6Rkx#H3wd~hGv~\itɹAM—Թ1215mN]Fjj/ىrP4g:vB6vv1rvuG[{=tǦrϜC9!)*0 1鼂dj1MJ[1gΔđ_58C˭4Zb2 MGGFJƎf++9[JXleg(u29ϵ:6Ն]AS*Xkߩ6X vwq0/$ )V1LJ"uH!ԋ7^=k?aՆAJE U%9BIF=Ѱ5.GI-.}KS4DAѵa)G7C36K1%i:/> F0dA/$#fYNb4g+M(8$U՗}T@+HypOa@'4\ٔ2nCKM1j++1^R++LcMQBΟYYޱد;=jwv3J!xDp.U= QywU3dܛsZ{B㊚t,udJX[GRp2s54Hp,I_t$ 6059o%c'?a6t{ڤ9\QÛ\?FUbtX%6-`nd3x9B|uq`(\ZY/Qt볙̺ )Ӧ~٩PS8 9ZMJOb4dhBKT`P;A DR!{ 0/g%H2@r$7`p~4?5kmpxHx/~ 5&\ϻX,J[x#X(.!8<;RKdRH)m,(FvVi k!s1oG{!uO^MzݛX`g\?束caZu2Ƚ cCn`xdkf8Umš/|+%\Nd>m&5rPtpn/竕^ 4eo B!"`u7&%ŷ m<45WSNE01_*akGO TP bڿFVx f>Sl6kR8 IxyC1EkT pau~m"BZ= L[Ѕ+gg'BBsh "PTX8 :xb&{D|ylh#MSznfA/-"X8'uktc߆C.xe)8JmD0bB >1˳|Q jH #1:zȁ3EZr2I% ` Ahbcc(I +̼KZ Ir[.DWtڸ6J6I4 VE&Av)7c$veb./hx`Q-2gAZ?RUZ&܈/HbЪ;;yМW>8@0y45Q,y`1027JExni hK 8Ah,*AN׈w({ 1_2}^vLȌXtk~փaBBZ8%~_!o^`8F'zv(7iX0ILD46zy"RwPfkMU_z.mg<b~-d`S +]Tړԭ;6Kfӧ96>8ϭ MuN \/fxw Rf^fJKC>3Gz;eeyZY8ۆgN*qy&R|\G8oNq7شGUdbk6/_:3= &7dNNJ~4=(waˆﻕ<ߊJzo)_P"O.쐍 &*.E B|N`<>#d+<]R= iK' @Oi*PBQ20=" [@P*="*(1lyĺ.16J4cUv0 g'EB2+Գkwdq|#~T-3H]0­Q`隼&L{+2W FDe'#ڨ;>'xH K>"oXFߞ)X]k˧(YMŴXbJ-EBDZjGt~?v},_`ғvS?5PAt2'1~y^Ц+r jVH:EqeHo*X}VSB,G3e:lȷ[ x՛pZ,XM%WCp0Q~S>-z5§F^h3g)ۖm@K`^@aD lz* -zXaIʬ/ *ĿA]s42'œSIr}δIy)vl EK0zh~o?_#1O& I 0X٠zx !Gj҆Say -b}os|UZG8& evJ~i ar`߆R5LbLqK.U+Lb%'.Q6Hf x)-?J-Ԑ`|ޒP'BGa!JW>Ef%_Jis]+ot'(M7fN@rfF'd}1[)8gqu:pq/9  DX습* pE@.aQxg٧*d1L}C:Gc*$H:_\Ofr i)J74fD7pTkEߘjNs$L*.H|Zٺ^6VBIAwtFSN dCʹ?6?`G!)'K_% ldO3='BK^(811'?zzu'Z,̧Oc {kf=I$cgaiؓ'uBvu]%6HPbzu%E({-: .|J]:Ņ+RÈ]lmozb?>fԆܿ 1tBb7{B63e]+CpH*J\Y,,;Aݯzf륒OQ]!3>\.[Ef۱r/h5?w+J;[*%Eմ&Z™`y C7Yn4iDu<糥Clgˠ Gs+W.5]/ƟZڋfO#03[I X‹C|V{%Bp;eF&4X5\lĦC5*ڦAHE Gwq}1S<5{Ͼ5{U'Zu9FN)8Km\n㖡x0$pf ]g8ђpn"Faʒ4J钍Ae޶@#1yk)d|y:CX XWr iDJ9#V8]*-$ WgPדGB@gƁ!XmOlԄs n6JxI{ W3]ڠ4h/"r25q+q&pJ9p&9N2D:mt},PAMo Ȣ3 B?A/@Tsl4 u"ù,Q^?U!-t|W~k.K7; uFsޞe*UhSŨ*YWW39U'S"M`_ޗ?5:arj@Zx'tC9'ttݯ=.9[8\oez=x!& u6r xg(e7 uwB2Pr 1:֦Tܣ\WA9cNM5 jMC+R[A[@~70H%Sր="G(9sHGqkSŠ /[61>TL#@Z~+Ttrй/]d{ o9Ky4I 0P' +8Jvu~6<JD Ƞ6T[mhv[}. ~2;i7^Te+h=xZ /:˰]lVpL_xy\!~4f d!3~ h֖^d@#G f?Tq$&=;o>ƒ)QgT(H4.Q v%ԍ՟f< W Xci3ᖀ XNjiXJ^Pbt "³{D".!3E[Se(vd1>ހ@taoPS WkٚrT"_7c՚2[N*<( K#.Op/J9(bdBZ6u{)J d"F Q7cԜ g-vu;3 IYyGEb|;A{a"a0z1Q!b/o#t||s㗋Z k |,Nd+f崥[aA-˙e(Xw+g!\fkk~w% L/'1?nDEn{R~PmOkEO7|"][y4*:=J*q.iz@-N~emq32GQ} ^ۀV|Bd[ф(!{/)'b:@ 7YsjalHA^/K6?4 _]!XrSז=5386d )ffUC3j^@| ybo}E:v"%- -n<ߋ&пj]>u˦Iς;(Qql~뮨ĖXgB)mַURxKR*PI*iz ?fS]70o!AcSrP9*|} {AvM3|Ag?lWLzUNʀ DЈ*tsZÏ֒QZS]^pل8rOW_sX $tH?$(O9k 1-ܼ9\oz?)9u;HW:ZMUѲYư#ծn*&w1B:;w¶*UT!!ڀ7;,[T+q"TuTHRyOIۭ05m~~S33`s5݌Ԡ`TC͚5jCd&E=t0@8q+.F Rб}O\HlAҷ[9 O]:C%(T~Ni0]GȘ ;#EWlꚰBI(L\09ٔӄ^$5###27bЀϹW~ ZZ%&'Q{ oxN8_خhpڥTAkѓb Ki, O qYK+ OX"Rܰ%3\]-.bid^qg30Ρ]"Hu|ݛ]jkMQǧ=NkvrҸY|Nwp 7k#,^e{w+Ƥ2Xlo`ZiTm1Q2!b4Xbު/ʢYosq1!zyx(SYKV~ m\cWa<=߱B;ri$QVtsTP)F=ie8^mţ"&f,X XQ~1̞t/MؖCFZХpIV`9"K.aCj)ޚ/\P/OJdo0\+,~tH _ඕR ܬ0W8,HjC ka$kgީs](˂^cxf! UDstjdG?dZqn0)evɠƄDɟ˲ 17o^05`|u 5@a+7ZƵbd:C>A~^^}gk-!=eQ\ߟ`I{*]lkEԂס )׮-.=[+Fİ[e""o 1%_DNF\ٛ=Uf [DXfN̫g盠e;% "މVvTUUv5y r=ޝl*՞iceяA"YwSy[KŘ@B]Ňf4x|W!12zTAE oϟ>|s e~L8(s0T֛Y253Cjgi2d3~\T, k8 b7c|;r_\he~32RiOD-r193oBCQgȦ#ckC_!;ϛqPcDƎ~#ZWv FvD1[nYqI.Ga eD@1Onm)3SA΀-|10i%,ʹ~Wd?"AXgڢjj~3i[@ w~x cp,Ϙ:.sWDάS$Z];qjwՊk?1=,8zf!AEjÍ E 'ٳ8;+az>b_I'g{ ;WCbex*i<.S?he`A\:!HZ8<5ToS@_t7-ECl:?uţ#]jHPZ`ƫ1)֯XըrٮwuY LtFX;{0=U]B>/SmŬBB( @FovXtC{_| -U9(g 1mnSpMezuK'I ֙izwOqϾ|dSW߁#@݄;13MxQۿ>&2ׁDS%"W~d䐞Y{r)x`Uͤ?)(9zsf%`-ox"F'ɴkIQƶ1mj7bC0w7~8+2+ܪ睑Qc&豏G.q^]r,Nvk5Yʼn0 详y!~M}XyA2GpIB*٥3!M(աM:pzvǬޥePe.:'*dlIL^-V*ͲyD ߺ:{m{J|CN UIS睷A|QV |F2|'W:,axz͖#] B&8TQ:ego"djLϊIZZ@~IH[Ɯ>8~vXm aш0+aSkR8I$=E&#Ex5-RRVef |b8/0f b;ucDևp)r5!x+AZh~!Z1-w v.>c\9\s<]zא]qÕ΍){'1_\,,pɆiy[+6(Awez(A384 1  Nf -if[WEiW2琱V64D?_)-es0.P夞ǃKzܺuy}v(.2'|aV`QLFt{3#\A\,0L!@v_YU:V!C Ph!PeFvEwm= " (-6l/Xxa⬽zM0\0+\[^=%j,4T3 )_ÆW*>Y9J\ybXTo/iq#u9XvUb/8L\1WY٘߫qsD_reuf4`Ks@FLz)E1KܘTPӪDX;.df>$tT"l˸Pe8 Rӕy'mַ0=&aSeGpj6 y]v3|,鹩M[UW~K[/>ξ+(^$6Bܮ^BCy-*ZiP}B}O(2I%JIWsX)Jњm<=ͳwfAp+>_c=X;XuTJ? _q2z%j {'~2 9䒲hohPSRNx|6+ qbuVʤ ˸Ћ>tl.PaafA,G(3XϻG}EJ [# X\+P$UzMz Ƅ%DwM:K݆l8t57IX /:ıgڡ*u'([pޗU)6/tRuHNyzP{x?*f_EpD|~vLH2Ɂ^()a!h輺'ӥC<6hSčE0m2oKyn>"\pᕙDy*EOvxןCZp_{x@MPFw_}/iY:u)6/۩iPNqlFNCXsl :Y6H5Oy#KvrDDT2`j 3EwCjzpbjQ!ֳPHqK&5ꁮ ' մj?YYPrPd0X]6Ԧq~dbd}oۘZga!X-5@79S+q+3xR~Pky$R(}m?3c.mB^{33]mF !fUcSMJhZN8) PN?z[1r.bڝ ,ZE`l46W&h)]1!~ȧ/B8wÞz<'|ƓeQƩppV8įdG7*@qmeO';b{cAتq,{̝OQ *Rk6 ?lYS7~#j+{Qq\”ڔiW8|2/Qb~Fhp_hH4 t V)P5U^,{5ͽx.M r$lZ)7}UxdWճO%j!].Ї׿&/.FTA@ UHnv? 9'_ ylER'_SQJ*'YeQvuluy;#)2²Q)dzq,Ŀ *wX}n{v^t\͈55A}Dc!lI' Df=bfp iraNQ;{r:0")(pZ:f:jF|ʁJon} RtS1i;RT %[-2$'j/7{օ(9L`yR{DAqP\f4۶Al5F!hH챰q~J4*뚲 ݰQ4p3$R3s:XiDi&WŲ֐OA|vu~ͭrId9v~h$2Þ't| O7#ë[-B`tk]SUEYRK[cIUZQ1qRw7V>xk$9a5 ƸIИ e)C?N[3\hw Gq2Wh*6Z!$#  ͯCJNo~"5"@ v},e#ע=΁n TUGJQ4 杺Ql(U3ɤ3x:@cOIPէ^96[fR;[ HdrNݞ֏?r!~-=9jG3S]cp7!N.ɅfO# HRN56xױAڡ"&$ mެ1mqf\u@pj(2ucǺK׆ lUZJWAq`FYxd[z)$apŤ.ZB{DsS/" :Vz\ @ `B 9Vo50z͉kM (Z^ޕ+eS Ne L\Bԓ3nzy?nB֚aU vw|mZkĬZ{7WURV0"'~[5!Dbjx"P6z 699 0/2֔]^Ca O;!k8\M#o?2V̧N 0L3~g:[v (pF|MI^ Nt5qV w:X0WsrDk*:M'C*r r1l"uy!Ke֑i'L]񛘩Z*zXc`y]"z[HZ7c?DXd{s 4|~1;$%Ġi1nyM kL_9n d]weG|yBrı!K uj;f )J 5U)l~{}r2=ϫɊ(Yȫ7*hQAB;¥HckJ4 دhߜ(G 䨴]gyT@Glٌӂ8OTFҧ_&Qz,;C7T/C3 ๵_ΉC,5dds%\Ɉ" S-)S(->!tOVdJ7d 0g d4lXs> iuN)NbRF0rwSN?[\;FѢQ<$rzO *0=S"JhoP eA*Z,͋kxCH>Sq} iwE.ML46*!@]N CJ:vK]2Cm6meΨ9 4?ākh/sx䂠#[V3i)d-7ɱBNͩ-L>i,]ƾcikgК3'n3$"9HyjLHT&eu3UHVr@iD b3ZZkEto d^(vYNVm mDw3L& 4\J-zDV^K&2)( xoٹñiXs sfhϪe&bW%M8:J5(o*1-D.A\ż[ ƣuRӮQS:w)H& c FB(V*֒ǕEo+2-4!h=mL[Wviu2%%ay e&4Mmx#Ē..#E|A]¬/@IT~HꆡM4%=;=nٻEG }X'1e!ej,WyVo;r$MH~ ^7 COIqVX, %prɏ0b3>QhoU{eܢp@Ur;hzToM{먟]j٣|⧜vht6A*<2ehdTc GY>}4/Miűn26<* >V??F=@4{"6 T,poƁ sبCI={nŠ L"]2y+u 1[ic-+Y NJ8my=}78Ђ9xJMyi5ŗi $Qj0[[RgM[\ޜN5Cp#ߍA0ljtpT ˘ՍmZ}4xqGVUiՅR19,Tjߊr ݣSz܆ѥ56%ZL2 <гЩXyo\~<Й1oUIF*Y.~ع-fR"k"SrlE+e:Ἄ9ܴ@08ȭ M(ȳKԱVƆ_WXb*m#}@\q}-D\< 6yanB*eE6FDoa m;QL_}c:%f(,5>̐GtoP BH;O? kZY/L a?V"DWYq,5P+U3qV`663m-2';U(ȊͿt8Jl@flurA?\: :Z6 f'6YiE詁hT;X+ v3׉@b *xQiMrGsRjN(/ v̩YW19p뺳Wws҇җ"&.<.I TU穰nZ8e7Y6#,q Tv9@f鵢"Q<\ z/V١wh1, [gu8x ͽc+rq-I6?H!T ZW= +7N̘ڑ;AHFұCtWKoQ"d)lՉ"Y93}OX8#l#L'-'_FP626hP(^9/9"93lKY[ K#1t^svC1qŒ[C֡zܫ`&!8OE^ *G پgsb JL6AzE_zI8(1u,,BʸC9[ly^s3_Jgej?yʈx%NN6ͷ|IϑrŠ)VKYۻ}qYLNRRb~;k/~}E֕ z>] teү!nx+LcHMna9|kz%)ͭ|#uܼf8K=,y;&]y!ZWC$mguq5@ԟGwj8)?MN䗓)r=Ai$^|;R ;:Q70:4?+cV<7KG~Vt E\yna鿁G 5+ bUe 6;l )kxjZ^<ˢ~猷= 4ӝ`53QW;.tseO2hB(wM]!_8/r`ϗ֍O6!l`l"&be 1%]cLMkE]_l6iy!xϒVHҡ7WZ?Te0O#%S>-I )& jhl/T,FEߨVLcg=О܊ \(*dЃG2Pup52>N9nDM?aÉ GU"[S.YAשWV~K d+Aߍ l jvhzυ#N="⌨brJ#J:sLPbi՜' qWfڞvuo%#/V,&7qaDY(2ݼ&ny9+W$ Vdb0h{ +GD&)iA}{8W΀g2ģ)r@Nlj~Ms\fa4?vOoTpܭ? <ʲYY=^$}- ʁ+6\XՂm$Boa$6 o).)tZ(8/dC_ht+|_(L "um.J.9ɉ8)a5q{X"@IC]<Ӎ^e$Waƌ*eVG $<8؆ :KfB}8OŎEvе[ \X,ćRa,,ɧOZ=orPȽB uq;m/o^ X* (цy{) Y.HQ-XLMmaD5Ѡs xP oq֑; d 43aq+56}@쩣8ni^dRfP8v~V_Vȁl}NslD"BaZ[Hq)gnyNxL񹡊C32Pgɣ@a{:+S5dd0Jm;p1PS4@} \b@XZ V@\Z\~CVvP)'IA媸XM2rB[ѝ=~}X:(ꂒg*gz`W\*<2 &ןO`Lܸ.TjwP|&BIcu71̑ vGJFd L?\`21(^3oT5sSS3 #/yfj/XH|Bxy T I`x?|d dmf a2W}ׄ{z]eZ'; e5S6B},[櫕Ot~Z vr qͭʆI) hݠIu6}Ed:1 YD=jy}ABPdS3/BKݴ5N{tů[aY$j AR%5m)BW9AEֱzQOB`)0ŵ#5 ;WnGt^ Mc;2!ؠjkBYb'ӷߐr<ߕ)6|h ,)0:hm$`~ #^yH)|'qC7oI`e0Lbgb./9,U5Sv-ih w5SZ8|$~qg en<~K4)y%>BHe,"R£8odv :gU-XbXҨ*_r $ }K[hi}Ͻ|e=^?W°\w_ ˯AjB go^uDh_"j$fhΈ5 %tEGFc Hn-9cA|3FUefP ̲X!6;]G:])nUE {N&YYc[783M_2|2dh̝06tsrݰɐJ,$fmtt==jٴ%s4HeRaKIqb'f13坨sGn.-imD,qe1 Qw[~= ()LE~K^o7͌YI{ہtc{F$;jk({ˈ5|mJgUw2H6*V ݧLzFٕ9\s>P³&[Kh~ʄDC{+'ϱZ|/Y9KHB!kP`6ĔA|/d_O ϨM2u>:U3Od?e,1brX#JTŠu nck=%@݊$~#t 0:kT4ҀuB)eY(Jul^?v-, !+.Ǣak8p$8"}L@7`"C5Ե7An8 Nz/‚ ڞ>~C<,v*ݻQ NY[#pST)lp[UHAHjV Oöo@. t.>$)t+HF6|5LZmaߚ~M4_#(3`$02= iȨ҆\tYS#CNk}.,5 ? k(c6`yYc>d991̡tbxY)Grh,U,峱QG_;tba V3N)<}Z* Jtbы{c$)K|ƇSln Gd wgs&c,Uep:Tu{P|8GCWb܌ tܔH#nu%qtp5[15<=q#e0NN &R# ! s~F ÞhVeډ 9q12EDED溥y֣B*yy2D d[.5CT?FyS$Rdf4ªMe}_PBvG|]zT 5L7-)҂65h t-.{MQyPz\,})dMaxTdz?r}CGzݜ?/AYp/NE^>ƫ\X7w}gO mB08m@h"_(",uDl+Gli>\cA ʟJBaFWLFK)2hlD~o|~iޒ(]̊q0ED>w _@7hB/$m<.x}DC_AƐ:۝HjqJײoW]ח+;߰`)B65䶅9V6"!L%L'!-v ԇ+~ x6J),` ={(R9 Ϛ)N\E ׮pkH3n>lO=%j1j ~uO%:^BnAW@BKqO[֌o"^v Up̓KzJK~sQ^00 17M5xT1}-XKljc_$-A1vٞmerJ}f (eݰ&+˱Ax{0SM=BZ{yO0f.O %;3RwO$UgLÝsQLZvaC3WyL̙^BD$x3t^2Ň*hgt`<)q2:::y=՛ Ktff x͵ JSbHq \Z ~MVB+h2Xe)kA"G?ӯ\P0gJ9"LFZ}6~\ݬOЦJ3^[ ND Ύ<]\Ў:b!4]zអ=2p [ \v+I(&d~B=M(> 3znI/#b!2{ x+,Aw ਓ' =*B4FTw-*W'~_A) =6A#œj9|7q]d8R(#SHjխm ؤvB76# cU ̒d§j2R梒Bgh 3n=C _`X@ШT/ f,X ^Q rXtje~Ї =C~hM Zyr^)k`egby(ɩA=N)OM #0m7y>S9$܃B%nIWf- H\=ն܈AV7Q=7wn|j1L#7a'#_|T52hW /b(ԓ1X;Fw6VP}II_}0  $CP7d"^O6iլl'$,"֓I-*TƘ!{i8} ̈́\hj֧*iǓnP%gUY[p'f!ay2K'##;+nW9B`;9 3hK}ѐ(5Hw /2vr-X{z^t$БLE#VŤLim%%vR$wkYis>(q|,VEtnM|5U>|Qg\ӏ9>N3/_$"sݖ%wEAE"X YH'{ m\)uh%9s H>%wyF)9*B=.<;sMs^C bEi)LשN.2)3gIsr5V ڂkzQY@5SKI6;Rkf؞\?:=R#Y fs]ԝC.k;lfnQnwtR xD-uԴIfnM F1h/.(P7_V9RB"{mW3M ,hۄxY Jſ*( zaĭ@coAW昤R$Xq@4Ӓ%R[q 3# |5Bѷʛ/JHN wu1tl _GGzI+*]*dk$M&Gsnp=z ~LǣA_=eBۋ2@fIf]/{ÜBUjꩂ(8Z1zf*e?-HMϋ$ KʍZFwY ؎obj_To'R nfR[(D:.?>]*0rH C:3C5OP[O{kݙ8Y(ى@0_T[| P&hMٰC`=Bg'ytn{f>G3;0}x 0uf'7x^v8rDYhqSC{,co?WnvPvqn}oa _r?j,^~M>.RV~}&$ Tȕ}=F&.w xdf᢬q9IzL,k֡Қybb]RX$O$\q"_eVU;5~eP9%4"U<G&1GI-̸Z wn b{]mZ&Rw(>nO+8T9Iuʏ GلԤxz?-ѣF<Ģe 4ߙ~C 4mu~B=:sKp+$O@ B:Y*y.eGSХ \o%qɔ)y^IQu.w.t1!69JΜA]1(O+ُА?3k>mϛnK-׊FV9gw (cI]HY62Ɖ5y8>?NV@J:^SR> 2x T;l.>s;cw픡|a{?ݾi-6|-![\DY> UȫUCa!!m!+E/x$浠49Z g񄓳U|&ddOJWePNHʋW>a ie~NLi'}eSضnWUYj}&;$ߋ@|B#rva.385w~si_Scr]ue-4=}]p @4xe ->c$XsQRE*}"jy~:U2#:Vb5~=SiK1 _I)άrCv%c*dFq]I!OK)-'Md# _fjP(iqi3X]^J[`+z[ oSFUV9f?,3%~-G|qOݍQŃqFFE#|YƝ䡺cHL4{? *J7UwgLȮx+YXNOLi>0=I3h.>wou$a/)I}=mm(4gn5xy+sKɗq@N8aYظ+d8.HNqft#RrQUj$??>tKѰq6FrB,cXVݞeȲ]oc#,(J\l3f9C|& rW~e+U'4kIv*5n;"cU Z!^o[) 0{饠/vjuG̓~ JPG1UM f2݌Ơuwu4㬽M\؞ǪI ,m[siw#-ķn-F3 =.}2[k GF A-&%,^vwGj)1͆6'D1ջD b|kxD_؈}{nXi隱VY\^hz1ǂha3.߶Zj:1/@RΟg Zʱ6hl爚/ v00aV. V86FvpD}&J{U;"-=͋Q0q80|.yP.ږ{X*/mo.3|E܄>0tPDa'PByIOnLQK{Mf _8՚]ZKzWh idODR~[fL o@jb}KI(vK1 2W1T"/ʪ G:npxّ087Z>[vP@N28Wl6<yЪ?_=_cِW"CCsz( Jm zS'P=D N.M-~g`PD+Pm4vX?_/즱7Pn hU ` 7(Pk)LS?!(ɼ#~ <_1{k&Rl<ju>,]RXEI)LcW!W5 }rE찗S!²t&L{$ i#U7F-`"Jxч/ (Gu$0d0j-E_֧Bׁ(FǏ_|k$j5&*;B rOf W'Mw_J]:#!.Ğ'1ŴU7w\9b8rHyӳm7fXNX%h++s"t,TA_D8w/ǯ) @8*{:uf!Q)Jɩf^r`P%2m1&͑Zx~g,0):,iֶ tp<͢sfK՞b?ɣ yq?|pD >,@I˞(f^Z 4rTɓBK^/极l LUɍ_12q#₀ VJ;q18䜳2-}C)o5K,9 _`8Q2UVA#",U*18DnDO} /4,ծAhɵuZ qlcaf%= b ۱ة~6T⽠jh)frĝ^OX)`؝ȖH v!s4S,.r135>'̭dž'[ TƸ@0l"7 bfԎWdp$rsY@%|3m!^2Y;9+ZRln HR,^2x${M-:!6w\}=,r `gΦ?pC{9)"j%u,=%;L:8ZIPVk6( AyIs Bű.W:?.]3MBݠأ[TkyH~ϮNCX\UOnh__7BO4gj@<`iL]?xM"Y*@ctq*Wbf&A;]\e&RMDrH4|dSY{:k0 兀IR~;1=R8zd1CiEL"3l'_=M.rn/mJܞ 6\L@A2f}T81zrt2>*2-.=Q;vϵZ]/>Rxr3QC!'"H,:Gx<'obZH a/_HXF(w,vyiS\otܐV:D3lHU+c@޴GD.je+M1 (W8lA erIwD#aT,9nP~P^8c2 ݝ~qt(jVkm 6$ 8/&g.J FyZq,;&3*˶-cEs,غ.rUm9Ʉk s+%py#} ?Gq&G'^5kܣ&$љ%/m7ۘ @yohq^bk)MHȭ XIXV QRRF] 4cpaPn,ih]7KCT'oFS%_H:`f -%ɕ#@@{\ӹzrJx7{T2`Qo%F? 4/ه$H7H0-XQ82R,Q ~I*yTX w#~R'w8SBxp+$"O" L L )?=ա{"edhj1:P2=Hry^_K=r5}ۍsDksޓkiS7e ɊUt|5ąN]w;[_)i)[N /M{yylu/!HgcڕMT[]^1i:x1c]yuyR6^=ŀ ;AAI WOF]BV] ٫P|6uC.{p \ `N"1-=ށB1A fZm|Oծ,jF%qĜl@U6|1A="%`-Per^5&8"2xݶ;W`FdTIj& E\l$s)ږϱ*kwK1pm"`c^H1Kv2w|ri9c fSF,U5զ 5I7 4bҞnpJ(kJPѣ璄7Kއ3.vZ^@0s6Fm]*iPh;kH,x[_B.OGӂ>Q>7G|ex;tS<#R.~ůF^ch9,awЃl]S9O:F)2Q5S μ2`oX@ڎxLW3K;=<8[M}Nܙʀ.m\bEa@@AHRu/N:)̇1/sb^uF)Qt܃'G78m|W@ 7QmGEO!WB/-&XύŲQ]8uCkC8R=YXH I!-MjI }5Pж*ػx׍=v-R:d~4u/vMsHR+Hm~:KtG"x!`{q.NhFh[f?0X(V\$8 z#;לEToA>;ZWZ(8 .%Ɵa}VMSv{ dV/2z.^ {MuU̻!OޤPCV'R= 7-Z\f=3ўuG\sY&#ckvD\^v\^bO5-Q;zq!v58O ʷ~:O:nȥ& 004 AAറsrSmm[']cowK7GvNFM؊Qɸ?;AZ\"OCtFhj+@(S#Sc[5:Y\ K)96dԇײ? j]6: 8(:}n^G$NT8OQ`b}Fy1(JV~C:8^9ڪm. ._4@RYdԫ.\'d~J ;-̿)3ѐ\bçG#Cd$ٱӢR-I0_Yы'MVJ*ؘ._n:>)tv]k&S)M*ʾ̧b'} 2jj)r9=]_8`԰c]]ՌQeƺ>M}WE&Tw6}`z5M{1 22 \j,hՔ;E+W.)/JJ2jl^ '+rW B9H߮)lw ~ =Q҂|A6Gi$Rئe6eހD5FeM2D˄ϷBTqBO }A^{ uUoGԯǥqd# mi:&3c]Mo.vͪ/Cx *P1HJOS^Bkrr@^PNj6Q8OwZ gykʠ`UkXEnBk%"{MFۢ^ׇܹw5~c(WӅ}'xGXAaW9mo %azi0ɯ:6j'J?#8ׂ:uVWb}A0xMf9+ş@;]=thm?\9j#9 :16G 4q}(lh)!,LT6$-kqf_{Qsj*t#?WS!Ah$Cӧ!"Aĺ]\5}̮ 琋sG-g96>M[7p0abFz #h/Y_,PO?_Sh9#R-6`ˠ8Cn]/=Rթ"nջ#5Id|<\=Ī^V0SM3u)eAoFLU'`%I)|M r([0f+:uG[#TZ24ڞFWi1֖Bde+x'Sop~Zq/hd,Q<i*yDsف2yɒBqZ?=[Ipu2Pz*,C #0M¸zXK%#M5 ̟~?],O7-O3̾*Iyh'xn$4lK;Kr-!1צ\bf̉2'+axjAhVSudx<0_&UT|˯* Ҳ~ޜ*ٮF$ iWaQgေYv >yG(צf秘h=ZCXjHc}qҳ".=M ?+nrWMuP]YH/?eo,4NK3eG. &>@㋓zk0K+|`w3 t9Of=̧O%7u7'`V ɰ H͘:Hq7yw8RVKZ,ѮsDqzXb*ek}\YĻXOoenG/S.Gz=Oyv9t< XZ[K&-",~^Hlh;/_/N{məI<F2 pדfn` va{`nM9Eg[iw;;[+ VKh+;̻v0'\*s|٩,!ȴ/;vC=ʱ%_1o>mRnN2%20`.k\Ai&H'/C{,q3>c<~:N*qGg>XJK Ƨ$׵oFm " 3~2XHo8WQNȄ lP 1;R?ݏ"3e)deC{)(dT">U˿ FxTTd&a"zX7*k=9RiN;NVHtRw%" r hnVNemaS)^\/4݋-uZsRI(T+^^;\v.0#Tnn"[ ,v Yg:,mϼK\鞚'X:_2bȨIge4¤R4DƆ(Fҫi[ƫ|6*Jh<3rJjr!c~0,iR V6G|H𩙶IyގSfjPSo:x2Y'CJ)Rfz3 o.D ^מJ<'Ȝ gb96ń}h$ڠ1Aakͨ+9B= _౹~u3lyԉ~ `'J)@K7ឱٯ͏G Cww }?;Má#RbX$?Mn8Xyh0P$. _)IEA1!l$z9"ԼwI9=~c|mlJ:," eW(Uf07lVp{$VB^^w]R-5z.ǘ7XОMt׫ EB#Av7 O`pkY'QH|k^FB}ER+JB(6*D288;;SKBi ,UX +]/vp6~fQ cr}b9%gY<4lWg('aP%<*l$qKo #alYr[`ݱFzzV {غ'> Qrghˀ&D0 5Y%a|Ĕ6Z{ڃSeネl։cf7]LsO*g%>Eg$i=\Z\^}i/`\hg(u:y9?0Zy̶+;#g wBGۖ"R\֦'NőD@Ld2(lj2q5tǘ)`n%3(%m( iݣe^|A:(hp,<"o9MXLh|B( Ha/s)iw02e4ᘃ*͢; %=uEIb/j@UAݏQ^ yʕi oRC4eNW?v '!BxównDRfB/[KP59d%K hG6O#]x$9<7%c4u($fk=bQ5-1W6 Y_-tFdp!ݢفVdbH_Lo6cny ~mm6uS֦O;.|h{t':XȄ[2ǸSy`yd.n[.fkx6-Ņn%p#^l&ETzF" >͔߅"n5T(d u$LS6E^/XAȫf5E 0< Y%h[|z5$n\B]-yPбך ma_[' Z$#j-3 "r!+88R_)?=_g TVEK54|35 X VźhX H\%_ua +& ֤2OYD~:T;k +5+k]`!zh)6'o#sB{ͦ| O }OH\ȐήaSZ7{ (G?p*HvaK ;GьNs $ RFpyNNqF1X"Fe#2Lr`I" J.#`;ɨ-unN;IgoQ\ T~ml5gL+ıEm%􍆜,L&YeW\մ4)yOufͰ^hяN+ɛ?S"z[VNk7Ŭ60szP6.ҪՁ˪i Tp0"yUNj j&tlsbLЮx <VjvЉ%Ì37΄:9dviG WeZo Sw^mն \9pRoB[t5N4A E\}qvKE@h;LdAαޓϋޗ Xi@Su#,d2zNš[A4x09m^nީ6k$JE}5LGI~?ӄic7^ 0n~-y tTY'j(^lܩVʱÄ< ) f2<{ÔjЩx:Ww[5wHbG4a|ԱʷS:¦H2O&QafOVa܄z> |IsΤ))U<@|m=(O:r2eQY"?&#bwC7b_t۟pMRX}\eLgѦƗ=t<}&4d rF ݐ]7M$GN! G0Rf8#Sc3(X7B, fEٹLrlst/s:P/akLtw=i=oGOʉ^ˏvCb h,/EA^`vn8hf<29? xD³|0#SAY ?1[^9{q0P$&Z: KͤT|#C1>L$F$ߩBF+?v4RhGOӲfHfeJG<3RſmeMlzBCAB uBz6$1kl{ lR̻y~՛$u sĞ`vX/#@E:Rfj2{/=h<UĈdH _xpw~_W?SyG0zCkz7퀓HZƴlZb}&Jfjmg e^ EUK8dޚ[io2EH @?h qxĮ$7k적NX}6vi1yaX %jhӤ/3fHrt ;SL{8Ӥ" PD O2b;$7p ,XpGsMB],sd'TWmlUt$r؝[^ӊ&mLǽ㤓|(P`.) |R{+|$pWwʔDlׅUI-⯾NS"Eȫ>X^Q*T ^zˑc2p?˨LP?X noaPysDWW * E쁪F=!ۯ'RGIA)/ЍA˘v~>KL8r,eK!ϼ2P'|\9=ʹ`+%WL' eohzЙwW|c7S= /5BZrGX5\g];J`:Xӎm[i+r@d(SU*y)IErF+&N Yi*ݱz|$ʚ5P ϰ+O3š.zGz$že ,4Ȩ5ZYr)af-z:%fǒŌ%A.<0Ls!q@;6v_VXNY!r^$a4n,},#tEf EJ(µlL_E@?Z[LKdbmfeUK@R+dXwѾ,=AI+tkn=ZF!(fj/7/*+&:o[i[xpRba*+_E,ˁ?S!%"zN7w+t^&.gpӋϳ)E 0K~-.Ol P67zy GQVt^J0dgT@JNQ\_@M}G0,oX}+ 렓-сuIY"G0(1|.9qmD{h5,}F[|7R Eʖ$ǵFc'•g8fIG$OU_N5LrGh/Bm)W+È\C~$vR+ns@7۪vQOI*ƾsTL[;suTyø۬P R/0<{aR >e6Uf^͆vy^F}";gP!'&ŀ7|@Nr'(t'X6g76hvTʱh?ѥyO.QZ jNj=Y[ !X^ 0Z< /3/7 эW:kIR=W"Q~4\gl.`hU`[&6G9QyNŒ"SB2&ˇ~1sJ]M_WN5+\R[Q  xK v5qPA> @vt8pau2bw4 PD3ztCv;ѐ$T6k\3ʏ*"Pr "mX4"BRXCehsDĊ\?\I CfðyH¥Rb؆iOnݔ^Fق>1aIEVrgLU255_V-/+ g YM-C~3ri@$qH&VIH[i~Y2ZQ eb+FaEDY,6VRk#c $t3B, ;ϟk`db:l[WtZv;'F2"d*EUqct=Įe_tK1y~Aqc򁛍@^TUG L)=zM>Hn@ʛbzBśY\]WA\"bP :'ymRW_O;d`L.Y:oE@qꜵv7:4-30Wog|~Kޓ)&yKK"nK-9,v){ pGsi>ZK@ |50tncJ<8R(9D$沣mv-1/SQA35 ST[.^5 7 2IUL=0e qW^>~@V%yIVojgL3Ffزل'9| aaВ@ƒZM١6!wx̸u&Q7 lu 1i6vdFZ0eu$[2[gΠ M:K[?sc]1,$ܫ bN*tMb?dzTQ/bN%o+J"q UILFq N&y_:ǿ/<=X6$3{s2rPF{kE=6>upr8d {Wv!jXВ=(m,{ť%p!f][A= @Fr0r'&Wc3c3C,`nje'eJdZO)Vp2~Ff[Xw\ J>P)gVIy罳%6sž v둾OđK$jvnMV$A rpӝ >O+&eyg2 //uWzRe82G6+;wI0R3#)ԯYx\"`w'bq^eXl74fm)՞Mt)#$`Ŏz2Z?n1q@w}d^OZ⛿ $wV?[,%ՈPn!-U& i7D*sPیjS/TPܙd H#,eL>bKtoEF!G#>8֤uz5jLxQq}dqVhF%Ol:ޱM y|8Nvf߁f!n?WowgT@$rdhhdn^̇uti)Y\98uVWQb,e=hBB-%ѥ2X7&+Y?BH/] ͤOhﲪq9+0qP;/7"(fm/9 ?gaPсTٓsp%VCfϖA耴hVY=1LEn_ b8[XLpˀ"(L Owk)=8zEA0LO̔N.-:}TDT9>! r;l-YZ9G6Q^QݍЏ3i+I henU%Vg3Ͱes;k<-/IDj؟=b.h 11x)^`?ѨYtڢM}Gf&aDvr7 &E+'F6J#[JTzE#l<,$s&^9!ٞxXH%g8^<5ﳦ ؟ON!A uljH">!7c~| % !B0]A9jKEMWIcZ\#!JU]`tL`4of5ܾѿ@TL?tf, Cde%`oڹW"XyrX"AK;hNC{2dp];娿Mb!Y6LTq~HA;JuȮ$*7~JEѹv>e|eH с=o3>*fKViD"MxGNwtm׺~ݓqTIqP$te Bޚ.K*kUAOLƖ0{2:' ]pr/e=a Nk [F 8jp#,gmY yhӤ@j$) &%TȂr!F|"_Q|b죹,ff!A5d+fr8ocn1;c[3 I74Ml!1WS-i/nlJvn1DEz%89$FupZ "6_U+e3ámtsLe65M|tP13Am>nkeN:mp_X ,@(۸L!nuv|Fok'@ 9M6nE4/1u|3(?<~LB&k#HnB?4EhM͂p/(ـ0,^ 4_T_$"?i0;8VN@珪b/('CMs%opXR"5 u(Uxqn]wISaA+=nkzS KvE?J,t.wFZzr7䷀Bk"452}qE/@Y9Rb*poJ9lHُVtrfJ9:rhhX f㈹r?Ok m#_NBDv۰%f}t|z;G"-j=t<@j:ѥ3gJS5зϟ@p=$?&u诰acT搸4hyadf6ܨa K$x9.GyhO?c@ i;V >w޹l!F=%J{)u +A {e42 kEdل;ˣИt0H”}Q=034*-/'ϧew(h.x?j_!ϾTضIEBwRkb ?Qw!XXz& BS#9km4-(?XzCJ ԚHɞ(6?{kn RL:HUWԵ\=A] ǘkw[ Q"Rtg[b)3w ὗsSB P(BV #_^"͓`eThKULǠ,`c~gO^t!$Z6_0kۓ؉PYn~yR˛Zrߤ1RIҕP F.\8JFJ҂DݍmZ]DoCJomY8*)f+ˡ=D^"$!u7%}L.AjǺ  $ΉG&zoy" wzΏpMę*ё4V V[؅oJh}qBW瞦Lo>@Pb!d=ܯ^S vP{ mAHg6h[*R}Fŧ!ĥ nWIE_)F_r浤R^q4=L@x$^BMꯃ`ein^^\-q$Q j׆@IB7/r2ӾrP־.RO !1;o+,ᄊG o:z<c<`Q`_݉RADZODD6RzNt5Qkz^斫4aUzvA >Ò 9Rx!3zD}Z07EZT ͽ䠄4!bִ5}&1\&B6oq9.AF NG4{)u\ǯ(5ZP #v֎jv;C`+1(fKLJoX_# vMUw:+8Nx6[&4h7w1y_ ؃B#ߋUMBpz޿ASZS") E:fYγF"m[\gC AڙlT{mV̪v@&Jk]L{䉪@@K?0OR|x 5DmN+g\wA9яs3ZcFTvOhej2 mdv_D-2eiϻ (5* |@Sa 𧂉EyʢqXzn5@29N1Uxpϰ駞'_IӪ|31Kh'@$3x㉽RwR)93+RGlSI eEn lZR<9h-/0@{hL欥%{T"b6o#r1ѨUxiVAdqQ$Rj`.@%u:މmd2˥'hTPvHoI_-/͓jVI<.4# 5B3/{5苒R8 ɽ^ `NZ&PM Z;b45f*ބP[(7dhg_@Ҳ>s`+\\dD%]Zsvt/ּW)n7zFZlu]+t(BJoҎs S<]W\T@Q3NFpJˇb0|;jq=ڊ95›w.0?]Ui 4lEe4oOKf=4rcA6}@yvR$ʅf%6r(:M8d h6O5SQ_*96A) #x9OYRnq{V\e鶆NYws!=s|L046ÑJMSh~URA.tzm "@7؝un7و^ѐ2":.^ݟep|iWdPrTm}\b^DWV>LW K12(l͜X\P7jUT.B#3J[1+HԈ bѮ[&gGONo鼰tP[$DHYKz[''?+Ϝዓ!_ _;~*WG0_Exfrm=Ķ𛏥_dzbȻfTz,*Z3꧑V0HI<֚84a%&'y*UiE6 Wgހ64gB 7IK^3Tx͘U!z;cO)'bsc(Xō .dnYp[k2(#kʌMvꖿuFEc̅pDlzH[9:%B''?k4R,)x\X㙺}Aa.Iwpw=(.Hp1U,$nG'T4sZз[d#X8 Ib@Qwh?91T>H*Hp0mhTO ^v 1N l<8P44f52 !