aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/language/en/lang_main.php
blob: b695f3af5e63eb242bb2076c7d02f5cf16229daf (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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
<?php
/***************************************************************************
 *                           lang_main.php [ English ]
 *                              -------------------
 *     begin                : Sat Dec 16 2000
 *     copyright            : (C) 2001 The phpBB Group
 *     email                : support@phpbb.com
 *
 *     $Id$
 *
 ****************************************************************************/

/***************************************************************************
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; either version 2 of the License, or
 *   (at your option) any later version.
 *
 ***************************************************************************/

$this->lang = array_merge($this->lang, array(
	'ENCODING' => 'iso-8859-15',
	'DIRECTION' => 'ltr',
	'LEFT' => 'left',
	'RIGHT' => 'right',
	'DATE_FORMAT' => 'd M Y',

	'Forum' => 'Forum',
	'Subforum' => 'Subforum',
	'Subforums' => 'Subforums',
	'Category' => 'Category',
	'Topic' => 'Topic',
	'Topics' => 'Topics',
	'Replies' => 'Replies',
	'Views' => 'Views',
	'Post' => 'Post',
	'Posts' => 'Posts',
	'Posted' => 'Posted',
	'Rating' => 'Rating',
	'Username' => 'Username',
	'Password' => 'Password',
	'Email' => 'Email',
	'Poster' => 'Poster',
	'Author' => 'Author',
	'Time' => 'Time',
	'Hours' => 'Hours',
	'Message' => 'Message',
	'1_Day' => '1 Day',
	'7_Days' => '7 Days',
	'2_Weeks' => '2 Weeks',
	'1_Month' => '1 Month',
	'3_Months' => '3 Months',
	'6_Months' => '6 Months',
	'1_Year' => '1 Year',
	'Ascending' => 'Ascending',
	'Descending' => 'Descending',
	'Post_time' => 'Post time',
	'Go' => 'Go',
	'Jump_to' => 'Jump to',
	'Submit' => 'Submit',
	'Reset' => 'Reset',
	'Cancel' => 'Cancel',
	'Preview' => 'Preview',
	'Confirm' => 'Confirm',
	'Spellcheck' => 'Spellcheck',
	'Yes' => 'Yes',
	'No' => 'No',
	'Enabled' => 'Enabled',
	'Disabled' => 'Disabled',
	'Error' => 'Error',
	'Next' => 'Next',
	'Previous' => 'Previous',
	'Goto_page' => 'Goto page',
	'Start_page' => 'Make my start page',
	'Joined' => 'Joined',
	'IP_Address' => 'IP Address',
	'Select_forum' => 'Select a forum',
	'View_latest_post' => 'View latest post',
	'View_newest_post' => 'View newest post',
	'Page_of' => 'Page <b>%d</b> of <b>%d</b>',
	'ICQ' => 'ICQ Number',
	'AIM' => 'AIM Address',
	'MSNM' => 'MSN Messenger',
	'YIM' => 'Yahoo Messenger',
	'Forum_Index' => '%s Forum Index',
	'Post_new_topic' => 'Post new topic',
	'Reply_to_topic' => 'Reply to topic',
	'Reply_with_quote' => 'Reply with quote',
	'Click_return_topic' => 'Click %sHere%s to return to the topic',
	'Click_return_login' => 'Click %sHere%s to try again',
	'Click_return_forum' => 'Click %sHere%s to return to the forum',
	'Click_view_message' => 'Click %sHere%s to view your message',
	'Click_return_modcp' => 'Click %sHere%s to return to the Moderator Control Panel',
	'Click_return_group' => 'Click %sHere%s to return to group information',
	'Admin_panel' => 'Go to Administration Panel',
	'Board_disable' => 'Sorry but this board is currently unavailable',
	'Board_unavailable' => 'Sorry but the board is temporarily unavailable, please try again in a few minutes',
	'ADMINISTRATORS' => 'ADMINISTRATORS',
	'SUPER_MODERATORS' => 'SUPER MODERATORS',
	'MODERATORS' => 'MODERATORS',
	'REGISTERED' => 'REGISTERED USERS',
	'INACTIVE' => 'INACTIVE USERS',
	'GUESTS' => 'GUESTS',
	'Registered_users' => 'Registered Users:',
	'Browsing_forum_guest' => 'Users browsing this forum: %s and %d guest',
	'Browsing_forum_guests' => 'Users browsing this forum: %s and %d guests',
	'Online_users_zero_total' => 'In total there are <b>0</b> users online :: ',
	'Online_users_total' => 'In total there are <b>%d</b> users online :: ',
	'Online_user_total' => 'In total there is <b>%d</b> user online :: ',
	'Reg_users_zero_total' => '0 Registered, ',
	'Reg_users_total' => '%d Registered, ',
	'Reg_user_total' => '%d Registered, ',
	'Hidden_users_zero_total' => '0 Hidden and ',
	'Hidden_user_total' => '%d Hidden and ',
	'Hidden_users_total' => '%d Hidden and ',
	'Guest_users_zero_total' => '0 Guests',
	'Guest_users_total' => '%d Guests',
	'Guest_user_total' => '%d Guest',
	'Record_online_users' => 'Most users ever online was <b>%s</b> on %s',
	'Legend' => 'Legend',
	'Admin_online_color' => '%sAdministrator%s',
	'Mod_online_color' => '%sModerator%s',
	'User_online_color' => '%sUser%s',
	'You_last_visit' => 'You last visited on %s',
	'Current_time' => 'The time now is %s',
	'Search_new' => 'View posts since last visit',
	'Search_your_posts' => 'View your posts',
	'Search_unanswered' => 'View unanswered posts',
	'Register' => 'Register',
	'Profile' => 'Control Panel',
	'Edit_profile' => 'Edit your profile',
	'Search' => 'Search',
	'Memberlist' => 'Members',
	'FAQ' => 'FAQ',
	'BBCode_guide' => 'BBCode Guide',
	'Usergroups' => 'Groups',
	'Last_Post' => 'Last Post',
	'Moderator' => 'Moderator',
	'Moderators' => 'Moderators',
	'View_moderators' => 'List forum moderators',
	'Login_check_pm' => 'Login to check your private messages',
	'New_pms' => '<b>%d</b> new messages',
	'New_pm' => '<b>%d</b> new message',
	'No_new_pm' => 'No new messages',
	'Unread_pms' => 'You have %d unread messages',
	'Unread_pm' => 'You have %d unread message',
	'No_unread_pm' => 'You have no unread messages',
	'You_new_pm' => 'A new private message is waiting for you in your Inbox',
	'You_new_pms' => 'New private messages are waiting for you in your Inbox',
	'You_no_new_pm' => 'No new private messages are waiting for you',
	'Posted_articles_zero_total' => 'Our users have posted a total of <b>0</b> article',
	'Posted_articles_total' => 'Our users have posted a total of <b>%d</b> articles',
	'Posted_article_total' => 'Our users have posted a total of <b>%d</b> article',
	'Registered_users_zero_total' => 'We have <b>0</b> registered users',
	'Registered_users_total' => 'We have <b>%d</b> registered users',
	'Registered_user_total' => 'We have <b>%d</b> registered user',
	'Newest_user' => 'The newest registered user is <b>%s%s%s</b>',
	'No_new_posts_last_visit' => 'No new posts since your last visit',
	'No_new_posts' => 'No new posts',
	'New_posts' => 'New posts',
	'New_post' => 'New post',
	'No_new_posts_hot' => 'No new posts [ Popular ]',
	'New_posts_hot' => 'New posts [ Popular ]',
	'No_new_posts_locked' => 'No new posts [ Locked ]',
	'New_posts_locked' => 'New posts [ Locked ]',
	'Forum_is_locked' => 'Forum is locked',
	'Enter_password' => 'Please enter your username and password to login',
	'Login' => 'Login',
	'Logout' => 'Logout',
	'Forgotten_password' => 'I forgot my password',
	'Log_me_in' => 'Log me on automatically each visit',
	'Error_login' => 'You have specified an incorrect or inactive username or an invalid password',
	'Index' => 'Index',
	'No_Posts' => 'No Posts',
	'No_forums' => 'This board has no forums',
	'Category_not_exist' => 'The category you selected does not exist',
	'Private_Message' => 'Private Message',
	'Private_Messages' => 'Private Messages',
	'Who_is_Online' => 'Who is Online',
	'Mark_all_forums' => 'Mark all forums read',
	'Forums_marked_read' => 'All forums have been marked read',
	'View_forum' => 'View Forum',
	'Forum_not_exist' => 'The forum you selected does not exist',
	'Reached_on_error' => 'You have reached this page in error',
	'Display_topics' => 'Display topics from previous',
	'All_Topics' => 'All Topics',
	'Topic_Announcement' => '<b>Announcement:</b>',
	'Topic_Sticky' => '<b>Sticky:</b>',
	'Topic_Moved' => '<b>Moved:</b>',
	'Topic_Poll' => '<b>[ Poll ]</b>',
	'Mark_all_topics' => 'Mark all topics read',
	'Topics_marked_read' => 'The topics for this forum have now been marked read',
	'Rules_post_can' => 'You <b>can</b> post new topics in this forum',
	'Rules_post_cannot' => 'You <b>cannot</b> post new topics in this forum',
	'Rules_reply_can' => 'You <b>can</b> reply to topics in this forum',
	'Rules_reply_cannot' => 'You <b>cannot</b> reply to topics in this forum',
	'Rules_attach_can' => 'You <b>can</b> post attachments in this forum',
	'Rules_attach_cannot' => 'You <b>cannot</b> post attachments in this forum',
	'Rules_download_can' => 'You <b>can</b> download attachments in this forum',
	'Rules_download_cannot' => 'You <b>cannot</b> download attachments in this forum',
	'Rules_edit_can' => 'You <b>can</b> edit your posts in this forum',
	'Rules_edit_cannot' => 'You <b>cannot</b> edit your posts in this forum',
	'Rules_delete_can' => 'You <b>can</b> delete your posts in this forum',
	'Rules_delete_cannot' => 'You <b>cannot</b> delete your posts in this forum',
	'Rules_vote_can' => 'You <b>can</b> vote in polls in this forum',
	'Rules_vote_cannot' => 'You <b>cannot</b> vote in polls in this forum',
	'Rules_moderate' => 'You <b>can</b> %smoderate this forum%s',
	'No_topics_post_one' => 'There are no posts in this forum<br />Click on the <b>Post New Topic</b> link on this page to post one',
	'Stop_watching_forum' => 'Stop watching this forum',
	'Start_watching_forum' => 'Watch this forum for new posts',
	'No_longer_watching_forum' => 'You are no longer watching this forum',
	'You_are_watching_forum' => 'You are now watching this forum',
	'View_topic' => 'View topic',
	'Guest' => 'Guest',
	'Post_subject' => 'Post subject',
	'View_next_topic' => 'View next topic',
	'View_previous_topic' => 'View previous topic',
	'Submit_vote' => 'Submit Vote',
	'View_results' => 'View Results',
	'No_newer_topics' => 'There are no newer topics in this forum',
	'No_older_topics' => 'There are no older topics in this forum',
	'Topic_post_not_exist' => 'The topic or post you requested does not exist',
	'No_posts_topic' => 'No posts exist for this topic',
	'Display_posts' => 'Display posts from previous',
	'All_Posts' => 'All Posts',
	'Back_to_top' => 'Back to top',
	'Read_profile' => 'View users profile',
	'Send_email' => 'Send email',
	'Visit_website' => 'Visit posters website',
	'ICQ_status' => 'ICQ Status',
	'Edit_delete_post' => 'Edit/Delete this post',
	'View_IP' => 'View IP of poster',
	'Delete_post' => 'Delete this post',
	'wrote' => 'wrote',
	'Quote' => 'Quote',
	'Code' => 'Code',
	'Edited_time_total' => 'Last edited by %s on %s, edited %d time in total',
	'Edited_times_total' => 'Last edited by %s on %s, edited %d times in total',
	'Quick_mod' => 'Quick-mod tools',
	'Lock_topic' => 'Lock topic',
	'Unlock_topic' => 'Unlock topic',
	'Move_topic' => 'Move topic',
	'Delete_topic' => 'Delete topic',
	'Split_topic' => 'Split topic',
	'Merge_topic' => 'Merge topic',
	'Stop_watching_topic' => 'Stop watching this topic',
	'Start_watching_topic' => 'Watch this topic for replies',
	'No_longer_watching_topic' => 'You are no longer watching this topic',
	'You_are_watching_topic' => 'You are now watching this topic',
	'Rate_topic' => 'Rate this topic',
	'Very_poor' => 'Very Poor',
	'Quite_poor' => 'Quite Poor',
	'Unrated' => 'Unrated',
	'Quite_good' => 'Quite Good',
	'Very_good' => 'Very Good',
	'Total_votes' => 'Total Votes',
	'Message_body' => 'Message body',
	'Topic_review' => 'Topic review',
	'Topic_icon' => 'Topic icon',
	'No_post_mode' => 'No post mode specified',
	'Post_a_new_topic' => 'Post a new topic',
	'Post_a_reply' => 'Post a reply',
	'Post_topic_as' => 'Post topic as',
	'Edit_Post' => 'Edit post',
	'Options' => 'Options',
	'Post_Announcement' => 'Announcement',
	'Post_Sticky' => 'Sticky',
	'Post_Normal' => 'Normal',
	'Confirm_delete' => 'Are you sure you want to delete this post?',
	'Confirm_delete_poll' => 'Are you sure you want to delete this poll?',
	'Flood_Error' => 'You cannot make another post so soon after your last, please try again in a short while',
	'Empty_subject' => 'You must specify a subject when posting a new topic',
	'Empty_message' => 'You must enter a message when posting',
	'Too_many_chars' => 'Your message contains too many characters',
	'Too_many_smilies' => 'Your message contains too many emoticons',
	'Forum_locked' => 'This forum is locked you cannot post, reply to or edit topics',
	'Topic_locked' => 'This topic is locked you cannot edit posts or make replies',
	'No_post_id' => 'No post ID was specified',
	'No_topic_id' => 'You must select a topic to reply to',
	'No_valid_mode' => 'You can only post, reply edit or quote messages, please return and try again',
	'No_such_post' => 'There is no such post, please return and try again',
	'Edit_own_posts' => 'Sorry but you can only edit your own posts',
	'Delete_own_posts' => 'Sorry but you can only delete your own posts',
	'Cannot_delete_replied' => 'Sorry but you may not delete posts that have been replied to',
	'Cannot_delete_poll' => 'Sorry but you cannot delete an active poll',
	'Empty_poll_title' => 'You must enter a title for your poll',
	'To_few_poll_options' => 'You must enter at least two poll options',
	'To_many_poll_options' => 'You have tried to enter too many poll options',
	'Post_has_no_poll' => 'This post has no poll',
	'Already_voted' => 'You have already voted in this poll',
	'No_vote_option' => 'You must specify an option when voting',
	'Add_poll' => 'Add a Poll',
	'Add_poll_explain' => 'If you do not want to add a poll to your topic leave the fields blank',
	'Poll_question' => 'Poll question',
	'Poll_option' => 'Poll option',
	'Add_option' => 'Add option',
	'Update' => 'Update',
	'Delete' => 'Delete',
	'Poll_for' => 'Run poll for',
	'Days' => 'Days',
	'Poll_for_explain' => '[ Enter 0 or leave blank for a never ending poll ]',
	'Delete_poll' => 'Delete Poll',
	'Add_attach' => 'Add an Attachment',
	'Add_attach_explain' => 'If you wish to attach ...',
	'Add_file' => 'Add File',
	'Filename' => 'Filename',
	'File_comment' => 'File comment',
	'Disable_HTML_post' => 'Disable HTML in this post',
	'Disable_BBCode_post' => 'Disable BBCode in this post',
	'Disable_Smilies_post' => 'Disable Smilies in this post',
	'Disable_magic_url' => 'Disable Magic urls',
	'HTML_is_ON' => 'HTML is <u>ON</u>',
	'HTML_is_OFF' => 'HTML is <u>OFF</u>',
	'BBCode_is_ON' => '%sBBCode%s is <u>ON</u>',
	'BBCode_is_OFF' => '%sBBCode%s is <u>OFF</u>',
	'Smilies_are_ON' => 'Smilies are <u>ON</u>',
	'Smilies_are_OFF' => 'Smilies are <u>OFF</u>',
	'Images_are_ON' => '[img] is <u>ON</u>',
	'Images_are_OFF' => '[img] is <u>OFF</u>',
	'Flash_is_ON' => '[flash] is <u>ON</u>',
	'Flash_is_OFF' => '[flash] is <u>ON</u>',
	'Attach_signature' => 'Attach signature (signatures can be changed in profile)',
	'Notify' => 'Notify me when a reply is posted',
	'Save' => 'Save',
	'Stored' => 'Your message has been entered successfully',
	'Deleted' => 'Your message has been deleted successfully',
	'Poll_delete' => 'Your poll has been deleted successfully',
	'Vote_cast' => 'Your vote has been cast',
	'Topic_reply_notification' => 'Topic Reply Notification',
	'bbcode_b_help' => 'Bold text: [b]text[/b]  (alt+b)',
	'bbcode_i_help' => 'Italic text: [i]text[/i]  (alt+i)',
	'bbcode_u_help' => 'Underline text: [u]text[/u]  (alt+u)',
	'bbcode_q_help' => 'Quote text: [quote]text[/quote]  (alt+q)',
	'bbcode_c_help' => 'Code display: [code]code[/code]  (alt+c)',
	'bbcode_l_help' => 'List: [list]text[/list] (alt+l)',
	'bbcode_o_help' => 'Ordered list: [list=]text[/list]  (alt+o)',
	'bbcode_p_help' => 'Insert image: [img]http://image_url[/img]  (alt+p)',
	'bbcode_w_help' => 'Insert URL: [url]http://url[/url] or [url=http://url]URL text[/url]  (alt+w)',
	'bbcode_a_help' => 'Close all open bbCode tags',
	'bbcode_s_help' => 'Font color: [color=red]text[/color]  Tip: you can also use color=#FF0000',
	'bbcode_f_help' => 'Font size: [size=x-small]small text[/size]',
	'Emoticons' => 'Emoticons',
	'More_emoticons' => 'View more Emoticons',
	'Font_size' => 'Font size',
	'font_tiny' => 'Tiny',
	'font_small' => 'Small',
	'font_normal' => 'Normal',
	'font_large' => 'Large',
	'font_huge' => 'Huge',
	'Close_Tags' => 'Close Tags',
	'Styles_tip' => 'Tip: Styles can be applied quickly to selected text',
	'Private_Messaging' => 'Private Messaging',
	'Unread_message' => 'Unread message',
	'Read_message' => 'Read message',
	'Read_pm' => 'Read message',
	'Post_new_pm' => 'Post message',
	'Post_reply_pm' => 'Reply to message',
	'Post_quote_pm' => 'Quote message',
	'Edit_pm' => 'Edit message',
	'Inbox' => 'Inbox',
	'Outbox' => 'Outbox',
	'Savebox' => 'Savebox',
	'Sentbox' => 'Sentbox',
	'Flag' => 'Flag',
	'Subject' => 'Subject',
	'From' => 'From',
	'To' => 'To',
	'Date' => 'Date',
	'Mark' => 'Mark',
	'Sent' => 'Sent',
	'Saved' => 'Saved',
	'Delete_marked' => 'Delete Marked',
	'Delete_all' => 'Delete All',
	'Save_marked' => 'Save Marked',
	'Save_message' => 'Save Message',
	'Delete_message' => 'Delete Message',
	'Display_messages' => 'Display messages from previous',
	'All_Messages' => 'All Messages',
	'No_messages_folder' => 'You have no messages in this folder',
	'PM_disabled' => 'Private messaging has been disabled on this board',
	'Cannot_send_privmsg' => 'Sorry but the administrator has prevented you from sending private messages',
	'No_to_user' => 'You must specify a username to send this message',
	'No_such_user' => 'Sorry but no such user exists',
	'Disable_HTML_pm' => 'Disable HTML in this message',
	'Disable_BBCode_pm' => 'Disable BBCode in this message',
	'Disable_Smilies_pm' => 'Disable Smilies in this message',
	'Message_sent' => 'Your message has been sent',
	'Click_return_inbox' => 'Click %sHere%s to return to your Inbox',
	'Click_return_index' => 'Click %sHere%s to return to the Index',
	'Send_a_new_message' => 'Send a new private message',
	'Send_a_reply' => 'Reply to a private message',
	'Edit_message' => 'Edit private message',
	'Notification_subject' => 'New Private Message has arrived',
	'Find_username' => 'Find a username',
	'Find' => 'Find',
	'No_match' => 'No matches found',
	'No_such_folder' => 'No such folder exists',
	'No_folder' => 'No folder specified',
	'Mark_all' => 'Mark all',
	'Unmark_all' => 'Unmark all',
	'Confirm_delete_pm' => 'Are you sure you want to delete this message?',
	'Confirm_delete_pms' => 'Are you sure you want to delete these messages?',
	'Inbox_size' => 'Your Inbox is %d%% full',
	'Sentbox_size' => 'Your Sentbox is %d%% full',
	'Savebox_size' => 'Your Savebox is %d%% full',
	'Click_view_privmsg' => 'Click %sHere%s to visit your Inbox',
	'Viewing_user_profile' => 'Viewing profile :: %s',
	'About_user' => 'All about %s',
	'Preferences' => 'Preferences',
	'Items_required' => 'Items marked with a * are required unless stated otherwise',
	'Registration_info' => 'Registration Information',
	'Profile_info' => 'Profile Information',
	'Profile_info_warn' => 'This information will be publicly viewable',
	'Avatar_panel' => 'Avatar control panel',
	'Avatar_gallery' => 'Avatar gallery',
	'Website' => 'Website',
	'Location' => 'Location',
	'Contact' => 'Contact',
	'Email_address' => 'Email address',
	'Send_private_message' => 'Send private message',
	'Hidden_email' => '[ Hidden ]',
	'Search_user_posts' => 'Find all posts by %s',
	'Interests' => 'Interests',
	'Occupation' => 'Occupation',
	'Poster_rank' => 'Poster rank',
	'Total_posts' => 'Total posts',
	'User_post_pct_stats' => '%.2f%% of total',
	'User_post_day_stats' => '%.2f posts per day',
	'No_user_id_specified' => 'Sorry but that user does not exist',
	'Wrong_Profile' => 'You cannot modify a profile that is not your own.',
	'Only_one_avatar' => 'Only one type of avatar can be specified',
	'File_no_data' => 'The file at the URL you gave contains no data',
	'No_connection_URL' => 'A connection could not be made to the URL you gave',
	'Incomplete_URL' => 'The URL you entered is incomplete',
	'Wrong_remote_avatar_format' => 'The URL of the remote avatar is not valid',
	'No_send_account_inactive' => 'Sorry, but your password cannot be retrieved because your account is currently inactive. Please contact the forum administrator for more information',
	'Always_smile' => 'Always enable Smilies',
	'Always_html' => 'Always allow HTML',
	'Always_bbcode' => 'Always allow BBCode',
	'Always_add_sig' => 'Always attach my signature',
	'Always_notify' => 'Always notify me of replies',
	'Always_notify_explain' => 'Sends an email when someone replies to a topic you have posted in. This can be changed whenever you post',
	'Board_style' => 'Board Style',
	'Default_style' => 'Default style',
	'No_themes' => 'No Themes In database',
	'Board_lang' => 'Board Language',
	'Timezone' => 'Timezone',
	'Date_format' => 'Date format',
	'Date_format_explain' => 'The syntax used is identical to the PHP <a href=\"http://www.php.net/date\" target=\"_other\">date()</a> function',
	'Signature' => 'Signature',
	'Signature_explain' => 'This is a block of text that can be added to posts you make. There is a %d character limit',
	'Public_view_email' => 'Always show my Email Address',
	'Current_password' => 'Current password',
	'New_password' => 'New password',
	'Confirm_password' => 'Confirm password',
	'Confirm_password_explain' => 'You must confirm your current password if you wish to change it or alter your email address',
	'password_if_changed' => 'You only need to supply a password if you want to change it',
	'password_confirm_if_changed' => 'You only need to confirm your password if you changed it above',
	'Avatar' => 'Avatar',
	'Avatar_explain' => 'Displays a small graphic image below your details in posts. Only one image can be displayed at a time, its width can be no greater than %d pixels, a height no greater than %d pixels and a file size no more than %dkB.',
	'Upload_Avatar_file' => 'Upload Avatar from your machine',
	'Upload_Avatar_URL' => 'Upload Avatar from a URL',
	'Upload_Avatar_URL_explain' => 'Enter the URL of the location containing the Avatar image, it will be copied to this site.',
	'Pick_local_Avatar' => 'Select Avatar from the gallery',
	'Link_remote_Avatar' => 'Link to off-site Avatar',
	'Link_remote_Avatar_explain' => 'Enter the URL of the location containing the Avatar image you wish to link to.',
	'Avatar_URL' => 'URL of Avatar Image',
	'Select_from_gallery' => 'Select Avatar from gallery',
	'View_avatar_gallery' => 'Show gallery',
	'Select_avatar' => 'Select avatar',
	'Return_profile' => 'Cancel avatar',
	'Select_category' => 'Select category',
	'Delete_Image' => 'Delete Image',
	'Current_Image' => 'Current Image',
	'Notify_on_privmsg' => 'Notify on new Private Message',
	'Popup_on_privmsg' => 'Pop up window on new Private Message',
	'Popup_on_privmsg_explain' => 'Some templates may open a new window to inform you when new private messages arrive',
	'Hide_user' => 'Hide your online status',
	'Profile_updated' => 'Your profile has been updated',
	'Profile_updated_inactive' => 'Your profile has been updated, however you have changed vital details thus your account is now inactive. Check your email to find out how to reactivate your account, or if admin activation is require wait for the administrator to reactivate your account',
	'Password_mismatch' => 'The passwords you entered did not match',
	'Current_password_mismatch' => 'The current password you supplied does not match that stored in the database',
	'Password_long' => 'Your password must be no more than 32 characters',
	'Username_taken' => 'Sorry but this username has already been taken',
	'Username_invalid' => 'Sorry but this username contains an invalid character such as \'',
	'Username_disallowed' => 'Sorry but this username has been disallowed',
	'Email_taken' => 'Sorry but that email address is already registered to a user',
	'Email_banned' => 'Sorry but this email address has been banned',
	'Email_invalid' => 'Sorry but this email address is invalid',
	'Signature_too_long' => 'Your signature is too long',
	'Fields_empty' => 'You must fill in the required fields',
	'Avatar_filetype' => 'The avatar filetype must be .jpg, .gif or .png',
	'Avatar_filesize' => 'The avatar image file size must be less than %d kB',
	'Avatar_imagesize' => 'The avatar must be less than %d pixels wide and %d pixels high',
	'Welcome_subject' => 'Welcome to %s Forums',
	'New_account_subject' => 'New user account',
	'Account_activated_subject' => 'Account Activated',
	'Account_added' => 'Thank you for registering, your account has been created. You may now login with your username and password',
	'Account_inactive' => 'Your account has been created. However, this forum requires account activation, an activation key has been sent to the email address you provided. Please check your email for further information',
	'Account_inactive_admin' => 'Your account has been created. However, this forum requires account activation by the administrator. An email has been sent to them and you will be informed when your account has been activated',
	'Account_active' => 'Your account has now been activated. Thank you for registering',
	'Account_active_admin' => 'The account has now been activated',
	'Reactivate' => 'Reactivate your account!',
	'Already_activated' => 'You have already activated your account',
	'COPPA' => 'Your account has been created but has to be approved, please check your email for details.',
	'Registration' => 'Registration Agreement Terms',
	'Reg_agreement' => 'While the administrators and moderators of this forum will attempt to remove or edit any generally objectionable material as quickly as possible, it is impossible to review every message. Therefore you acknowledge that all posts made to these forums express the views and opinions of the author and not the administrators, moderators or webmaster (except for posts by these people) and hence will not be held liable.<br /><br />You agree not to post any abusive, obscene, vulgar, slanderous, hateful, threatening, sexually-orientated or any other material that may violate any applicable laws. Doing so may lead to you being immediately and permanently banned (and your service provider being informed). The IP address of all posts is recorded to aid in enforcing these conditions. You agree that the webmaster, administrator and moderators of this forum have the right to remove, edit, move or close any topic at any time should they see fit. As a user you agree to any information you	have entered above being stored in a database. While this information will not be disclosed to any third party without your consent the webmaster, administrator and moderators cannot be held responsible for any hacking attempt that may lead to the data being compromised.<br /><br />This forum system uses cookies to store information on your local computer. These cookies do not contain any of the information you have entered above, they serve only to improve your viewing pleasure. The email address is used only for confirming your registration details and password (and for sending new passwords should you forget your current one).<br /><br />By clicking Register below you agree to be bound by these conditions.',
	'Agree_under_13' => 'I Agree to these terms and am <b>under</b> 13 years of age',
	'Agree_over_13' => 'I Agree to these terms and am <b>over</b> 13 years of age',
	'Agree_not' => 'I do not agree to these terms',
	'Wrong_activation' => 'The activation key you supplied does not match any in the database',
	'Send_password' => 'Send me a new password',
	'Password_updated' => 'A new password has been created, please check your email for details on how to activate it',
	'No_email_match' => 'The email address you supplied does not match the one listed for that username',
	'New_password_activation' => 'New password activation',
	'Password_activated' => 'Your account has been re-activated. To logon please use the password supplied in the email you received',
	'Send_email_msg' => 'Send an email message',
	'No_user_specified' => 'No user was specified',
	'User_prevent_email' => 'This user does not wish to receive email. Try sending them a private message',
	'User_not_exist' => 'That user does not exist',
	'CC_email' => 'Send a copy of this email to yourself',
	'Email_message_desc' => 'This message will be sent as plain text, do not include any HTML or BBCode. The return address for this message will be set to your email address.',
	'Flood_email_limit' => 'You cannot send another email at this time, try again later',
	'Recipient' => 'Recipient',
	'Email_sent' => 'The email has been sent',
	'Empty_subject_email' => 'You must specify a subject for the email',
	'Empty_message_email' => 'You must enter a message to be emailed',
	'Select_sort_method' => 'Select sort method',
	'Sort' => 'Sort',
	'Sort_Top_Ten' => 'Top Ten Posters',
	'Sort_Joined' => 'Joined Date',
	'Sort_Username' => 'Username',
	'Sort_Location' => 'Location',
	'Sort_Posts' => 'Total posts',
	'Sort_Email' => 'Email',
	'Sort_Website' => 'Website',
	'Sort_Ascending' => 'Ascending',
	'Sort_Descending' => 'Descending',
	'Order' => 'Order',
	'Group_Control_Panel' => 'Group Control Panel',
	'Group_member_details' => 'Group Membership Details',
	'Group_member_join' => 'Join a Group',
	'Group_Information' => 'Group Information',
	'Group_name' => 'Group name',
	'Group_description' => 'Group description',
	'Group_membership' => 'Group membership',
	'Group_Members' => 'Group Members',
	'Group_Moderator' => 'Group Moderator',
	'Pending_members' => 'Pending Members',
	'Group_type' => 'Group type',
	'Group_open' => 'Open group',
	'Group_closed' => 'Closed group',
	'Group_hidden' => 'Hidden group',
	'Current_memberships' => 'Current memberships',
	'Non_member_groups' => 'Non-member groups',
	'Memberships_pending' => 'Memberships pending',
	'No_groups_exist' => 'No Groups Exist',
	'Group_not_exist' => 'That user group does not exist',
	'Join_group' => 'Join Group',
	'No_group_members' => 'This group has no members',
	'Group_hidden_members' => 'This group is hidden, you cannot view its membership',
	'No_pending_group_members' => 'This group has no pending members',
	'Group_joined' => 'You have successfully subscribed to this group<br />You will be notified when your subscription is approved by the group moderator',
	'Group_request' => 'A request to join your group has been made',
	'Group_approved' => 'Your request has been approved',
	'Group_added' => 'You have been added to this usergroup',
	'Already_member_group' => 'You are already a member of this group',
	'User_is_member_group' => 'User is already a member of this group',
	'Group_type_updated' => 'Successfully updated group type',
	'Could_not_add_user' => 'The user you selected does not exist',
	'Could_not_anon_user' => 'You cannot make Anonymous a group member',
	'Confirm_unsub' => 'Are you sure you want to unsubscribe from this group?',
	'Confirm_unsub_pending' => 'Your subscription to this group has not yet been approved, are you sure you want to unsubscribe?',
	'Unsub_success' => 'You have been un-subscribed from this group.',
	'Approve_selected' => 'Approve Selected',
	'Deny_selected' => 'Deny Selected',
	'Not_logged_in' => 'You must be logged in to join a group.',
	'Remove_selected' => 'Remove Selected',
	'Add_member' => 'Add Member',
	'Not_group_moderator' => 'You are not this groups moderator therefor you cannot preform that action.',
	'Login_to_join' => 'Login to join or manage group memberships',
	'This_open_group' => 'This is an open group, click to request membership',
	'This_closed_group' => 'This is a closed group, no more users accepted',
	'This_hidden_group' => 'This is a hidden group, automatic user addition is not allowed',
	'Member_this_group' => 'You are a member of this group',
	'Pending_this_group' => 'Your membership of this group is pending',
	'Are_group_moderator' => 'You are the group moderator',
	'None' => 'None',
	'Subscribe' => 'Subscribe',
	'Unsubscribe' => 'Unsubscribe',
	'View_Information' => 'View Information',
	'Search_query' => 'Search Query',
	'Search_options' => 'Search Options',
	'Search_keywords' => 'Search for Keywords',
	'Search_keywords_explain' => 'You can use <u>AND</u> to define words which must be in the results, <u>OR</u> to define words which may be in the result and <u>NOT</u> to define words which should not be in the result. Use * as a wildcard for partial matches',
	'Search_author' => 'Search for Author',
	'Search_author_explain' => 'Use * as a wildcard for partial matches',
	'Find_username_explain' => 'Use this form to search for specific usernames. You do not need to fill out all fields, to partialy match data use * as a wildcard. When entering dates use the format yyyy-mm-dd, e.g. 2002-01-01. Click the username to automatically enter it into the form you are viewing (several usernames may be accepted depending on the form itself). Alternatively you can mark the users required and click the Insert Marked button.',
	'Last_active' => 'Last active',
	'Select_marked' => 'Select Marked',
	'Search_for_any' => 'Search for any terms or use query as entered',
	'Search_for_all' => 'Search for all terms',
	'Search_title_msg' => 'Search topic title and message text',
	'Search_msg_only' => 'Search message text only',
	'Return_first' => 'Return first',
	'characters_posts' => 'characters of posts',
	'Search_previous' => 'Search previous',
	'Sort_by' => 'Sort by',
	'Sort_Time' => 'Post Time',
	'Sort_Post_Subject' => 'Post Subject',
	'Sort_Topic_Title' => 'Topic Title',
	'Sort_Author' => 'Author',
	'Sort_Forum' => 'Forum',
	'Sort_Post_count' => 'Post count',
	'Sort_Last_active' => 'Last active',
	'Less_than' => 'Less than',
	'Equal_to' => 'Equal to',
	'More_than' => 'More than',
	'Before' => 'Before',
	'After' => 'After',
	'Never' => 'Never',
	'Display_results' => 'Display results as',
	'All_available' => 'All available',
	'No_searchable_forums' => 'You do not have permissions to search any forum on this site',
	'No_search_match' => 'No topics or posts met your search criteria',
	'Found_search_match' => 'Search found %d match',
	'Found_search_matches' => 'Search found %d matches',
	'Close_window' => 'Close Window',
	'Sorry_auth_announce' => 'Sorry but only %s can post announcements in this forum',
	'Sorry_auth_sticky' => 'Sorry but only %s can post sticky messages in this forum',
	'Sorry_auth_read' => 'Sorry but only %s can read topics in this forum',
	'Sorry_auth_post' => 'Sorry but only %s can post topics in this forum',
	'Sorry_auth_reply' => 'Sorry but only %s can reply to posts in this forum',
	'Sorry_auth_edit' => 'Sorry but only %s can edit posts in this forum',
	'Sorry_auth_delete' => 'Sorry but only %s can delete posts in this forum',
	'Sorry_auth_vote' => 'Sorry but only %s can vote in polls in this forum',
	'Auth_Anonymous_Users' => '<b>anonymous users</b>',
	'Auth_Registered_Users' => '<b>registered users</b>',
	'Auth_Users_granted_access' => '<b>users granted special access</b>',
	'Auth_Moderators' => '<b>moderators</b>',
	'Auth_Administrators' => '<b>administrators</b>',
	'Not_Moderator' => 'You are not a moderator of this forum',
	'Not_Authorised' => 'Not Authorised',
	'You_been_banned' => 'You have been banned from this forum<br />Please contact the webmaster or board administrator for more information',
	'Reg_users_zero_online' => 'There are 0 Registered users and ',
	'Reg_users_online' => 'There are %d Registered users and ',
	'Reg_user_online' => 'There is %d Registered user and ',
	'Hidden_users_zero_online' => '0 Hidden users online',
	'Hidden_users_online' => '%d Hidden users online',
	'Hidden_user_online' => '%d Hidden user online',
	'Guest_users_online' => 'There are %d Guest users online',
	'Guest_users_zero_online' => 'There are 0 Guest users online',
	'Guest_user_online' => 'There is %d Guest user online',
	'No_users_browsing' => 'There are no users currently browsing this forum',
	'Online_explain' => 'This data is based on users active over the past five minutes',
	'Forum_Location' => 'Forum Location',
	'Last_updated' => 'Last Updated',
	'Forum_index' => 'Forum index',
	'Reading_topic' => 'Reading topic in %s',
	'Logging_on' => 'Logging on',
	'Posting_message' => 'Posting message in %s',
	'Searching_forums' => 'Searching forums',
	'Viewing_profile' => 'Viewing profile',
	'Viewing_online' => 'Viewing who is online',
	'Viewing_member_list' => 'Viewing member list',
	'Viewing_priv_msgs' => 'Viewing Private Messages',
	'Viewing_FAQ' => 'Viewing FAQ',
	'Mod_CP' => 'Moderator Control Panel',
	'Mod_CP_explain' => 'Using the form below you can perform mass moderation operations on this forum. You can lock, unlock, move or delete any number of topics.',
	'Select' => 'Select',
	'Move' => 'Move',
	'Lock' => 'Lock',
	'Unlock' => 'Unlock',
	'Topics_Removed' => 'The selected topics have been successfully removed from the database.',
	'Topics_Locked' => 'The selected topics have been locked',
	'Topics_Moved' => 'The selected topics have been moved',
	'Topics_Unlocked' => 'The selected topics have been unlocked',
	'No_Topics_Moved' => 'No topics were moved',
	'Confirm_delete_topic' => 'Are you sure you want to remove the selected topic/s?',
	'Confirm_lock_topic' => 'Are you sure you want to lock the selected topic/s?',
	'Confirm_unlock_topic' => 'Are you sure you want to unlock the selected topic/s?',
	'Confirm_move_topic' => 'Are you sure you want to move the selected topic/s?',
	'Move_to_forum' => 'Move to forum',
	'Leave_shadow_topic' => 'Leave shadow topic in old forum.',
	'Split_Topic' => 'Split Topic Control Panel',
	'Split_Topic_explain' => 'Using the form below you can split a topic in two, either by selecting the posts individually or by splitting at a selected post',
	'Split_title' => 'New topic title',
	'Split_forum' => 'Forum for new topic',
	'Split_posts' => 'Split selected posts',
	'Split_after' => 'Split from selected post',
	'Topic_split' => 'The selected topic has been split successfully',
	'Too_many_error' => 'You have selected too many posts. You can only select one post to split a topic after!',
	'None_selected' => 'You have no selected any topics to preform this operation on. Please go back and select at least one.',
	'New_forum' => 'New forum',
	'This_posts_IP' => 'IP for this post',
	'Other_IP_this_user' => 'Other IP\'s this user has posted from',
	'Users_this_IP' => 'Users posting from this IP',
	'IP_info' => 'IP Information',
	'Lookup_IP' => 'Look up IP',
	'All_times' => 'All times are %s %s',
	'-12' => 'GMT - 12 Hours',
	'-11' => 'GMT - 11 Hours',
	'-10' => 'GMT - 10 Hours',
	'-9' => 'GMT - 9 Hours',
	'-8' => 'GMT - 8 Hours',
	'-7' => 'GMT - 7 Hours',
	'-6' => 'GMT - 6 Hours',
	'-5' => 'GMT - 5 Hours',
	'-4' => 'GMT - 4 Hours',
	'-3.5' => 'GMT - 3.5 Hours',
	'-3' => 'GMT - 3 Hours',
	'-2' => 'GMT - 2 Hours',
	'-1' => 'GMT - 1 Hours',
	'0' => 'GMT',
	'1' => 'GMT + 1 Hour',
	'2' => 'GMT + 2 Hours',
	'3' => 'GMT + 3 Hours',
	'3.5' => 'GMT + 3.5 Hours',
	'4' => 'GMT + 4 Hours',
	'4.5' => 'GMT + 4.5 Hours',
	'5' => 'GMT + 5 Hours',
	'5.5' => 'GMT + 5.5 Hours',
	'6' => 'GMT + 6 Hours',
	'6.5' => 'GMT + 6.5 Hours',
	'7' => 'GMT + 7 Hours',
	'8' => 'GMT + 8 Hours',
	'9' => 'GMT + 9 Hours',
	'9.5' => 'GMT + 9.5 Hours',
	'10' => 'GMT + 10 Hours',
	'11' => 'GMT + 11 Hours',
	'12' => 'GMT + 12 Hours',
	'tz' => array(
		'-12' => 'GMT - 12 Hours',
		'-11' => 'GMT - 11 Hours',
		'-10' => 'GMT - 10 Hours',
		'-9' => 'GMT - 9 Hours',
		'-8' => 'GMT - 8 Hours',
		'-7' => 'GMT - 7 Hours',
		'-6' => 'GMT - 6 Hours',
		'-5' => 'GMT - 5 Hours',
		'-4' => 'GMT - 4 Hours',
		'-3.5' => 'GMT - 3.5 Hours',
		'-3' => 'GMT - 3 Hours',
		'-2' => 'GMT - 2 Hours',
		'-1' => 'GMT - 1 Hours',
		'0' => 'GMT',
		'1' => 'GMT + 1 Hour',
		'2' => 'GMT + 2 Hours',
		'3' => 'GMT + 3 Hours',
		'3.5' => 'GMT + 3.5 Hours',
		'4' => 'GMT + 4 Hours',
		'4.5' => 'GMT + 4.5 Hours',
		'5' => 'GMT + 5 Hours',
		'5.5' => 'GMT + 5.5 Hours',
		'6' => 'GMT + 6 Hours',
		'6.5' => 'GMT + 6.5 Hours',
		'7' => 'GMT + 7 Hours',
		'8' => 'GMT + 8 Hours',
		'9' => 'GMT + 9 Hours',
		'9.5' => 'GMT + 9.5 Hours',
		'10' => 'GMT + 10 Hours',
		'11' => 'GMT + 11 Hours',
		'12' => 'GMT + 12 Hours',
		'dst' => '[ DST ]'
	),
	'datetime' => array(
		'Sunday' => 'Sunday',
		'Monday' => 'Monday',
		'Tuesday' => 'Tuesday',
		'Wednesday' => 'Wednesday',
		'Thursday' => 'Thursday',
		'Friday' => 'Friday',
		'Saturday' => 'Saturday',
		'Sun' => 'Sun',
		'Mon' => 'Mon',
		'Tue' => 'Tue',
		'Wed' => 'Wed',
		'Thu' => 'Thu',
		'Fri' => 'Fri',
		'Sat' => 'Sat',
		'January' => 'January',
		'February' => 'February',
		'March' => 'March',
		'April' => 'April',
		'May' => 'May',
		'June' => 'June',
		'July' => 'July',
		'August' => 'August',
		'September' => 'September',
		'October' => 'October',
		'November' => 'November',
		'December' => 'December',
		'Jan' => 'Jan',
		'Feb' => 'Feb',
		'Mar' => 'Mar',
		'Apr' => 'Apr',
		'Jun' => 'Jun',
		'Jul' => 'Jul',
		'Aug' => 'Aug',
		'Sep' => 'Sep',
		'Oct' => 'Oct',
		'Nov' => 'Nov',
		'Dec' => 'Dec',
		'AM' => 'AM',
		'PM' => 'PM'
	),

	'Information' => 'Information',
	'Critical_Information' => 'Critical Information',
	'General_Error' => 'General Error',
	'Critical_Error' => 'Critical Error',
	'An_error_occured' => 'An Error Occurred',
	'A_critical_error' => 'A Critical Error Occurred'
));
?>
H]jR>ΐvغʹYf~bl}aԵtJ2j}& mMKL"c?؆lR(kkX)EX S P6꛳؁ FN0=`5 Y !:yW8{khpVc= d Ga+: )`edEű):6rG%sj}<#F\Oa.doIPaV췁mZg% 6`b^Ge1ve ״k! G \@\-TaJ\Qb?饃Ra;4F.ckYKx )^A,mtK^HAnO$5FMq6hP0巯61،ExZSkr{LIޣ{صu~ c۔/m((6:]M֗z,s_$խ {IvEiXdS{^( nVO'3A 65 qRTĶ'-\k/FUrA|gM!)KY[,5΁sds\?, 1ĨS_vd>,ZG}$:rFB'-&XR+_f+́}Z^oQ}xJQ]<.!^'ZzWc𚟒wߣ*,RGi{rNEo.I;{̀\JBi aM QC<fřz [39h]xt! 2G~gJyANy 砯&0НurI4e3 J^Zߞb#7 0]TȬOS~7lr@1.`DDeC%-?P$pp@ص:JMjUh*&䙘Ӻ\ }vcvfe9]o[7F׿ GT۲#D^-\zMjQAK_G^XıAc\ԋ7Ť9^U^4]4;ʡAx|7YfW;lģ: ![Dd~σ1N~*S]_T^!xVWu\e ~(yu:_uݫ՝~t#s42( 1{2=t=g $t.!}p)KBtKoAPyd_rڅЛ˵gJ]ɮˠʟeCs>ASe̜ox\kRV3ߖju:-?qdGQWuBV5zޣ; 4>L̋)es0oG-㝯2IȠFEG3qHV|x=H"[X7y:qDQǺɟceppmxYHcC׺ 7S.IGjC*C$9 rJIQ$@H9Q%doHNMĭ8/4 ɸ;ԎGTPІS~5XH)b0I:i2.[t;Mޑ*YƄZP iC-TJ \M1)x9u$o0ŅA#ygbC3j0LWc9L`I uGG:#zx_uKPCo^1P^!ZoDҐ<27!<{娔 $j;{(?7gq2ᲅ37Z;E<$FdcoK\O*0EaxZvJATaq| la4[T!HoBu&y \mw}g:5^e[wVFಧ0 ǒ @99G|lnC:񾷲7fV녋T;).dBH&92if:S188}b{0M0Uz' &"nWZV~]#$8)5/Ei@l3֣N:+qGSp_cV0%|#Wb:eIUGR_ ]DVp6<، JM]`BJ4y&}WTdE6k:_mrnyvot%~GAS߃9}!]߂AbT=e[™cr6 픶MncE|HL!q{.%ao_,SƼ*̗0k HF)_Ҧ=!|řg>i^ 3MA1AkzTm{+bz@]qit T}׽$\>J 5уI N+HUU~q( ܺ!>ۭ7L 1 I1 Wd,[j6ύqK=k@6]`q77aP5IJ]|[ݨSl ):/b˨ZMxcfMnx[>0H^*JmW~1"LW<~RnP.O[~AM:\_2bplk=S# !7/@=0!NS̠Ю.*^ʪ#RդhjWI{|*cٛm¬!Ǖ_7A 7~KPL^^%.S|1S\&ڐk 8%0}UAL(cN1pqG@C(R'2qѦߒnUW7N[v;k:N28%ւvt,|.Ӎ#o9{Bm-\XZ?=i9Mv,*6ـT`كΡ 7|x&_>/"f^D# ,[ '|Fܵ:_hB՜gԞL$O KT_ "ӼlG[1Yp^ FZv8ƺ!3i+C91/gagT034g4CL3`-cT[A+R.@ocVžh .]n.ئUA  PaDE{9rk uYaɨ4 >dZ5J&lǩk=A$?βsmp1P^b}oz~B;גS6,&EsΝnr_M$:KʈmдMbAr2%nLl,m5$v]HQ jp&@.,@/4|p_&5֯Ǖ4^ Ѵǃ.63A웹ϙ;w ,KL6޳ 3@l07. S2@2-xkOyɔqb*^,0rSZ ƽnf%[{\Vn'{mCl+=CD1|iMQ;!7zZzqŋ.6_f<Ǧv?NI24*vKF8Ljut}aY)ji+φj/G,l]LX]t l8q=WzZ{ɿf Y5vFnN?QKs\!T;%I!)cy1DEJI;|"+Me1&+3\ZlC4ie"Qi&y P|;U@iJ_aapz1f.wk#DBD&,P#X%>Ը+UP{bng#hF[!H=ED`ʘF<)̧#?E*D/s$(4-"J2co^O7|ЏH ݾܓ JM<\ ܋0$lU8í,ŧP1Ȟj%aݾ?[{o,MH (y%*!CqfR7EN8w~ qe8jW+}(H8 ӳ _,>Hm\m7NƖ91] di~2X+Ksrr@V+u)~ Aդsu0j*&p ֘zj,8k[ٳnC-T9y6Ԁx2&dzChӾB `\ i}^cd&Rk*ԩ|%Oě.5!ȀmNB;k.$HT?.| Aouίjh`%ESR$u;wi ĚdZ/15FS&a9{8ČF/EaGqrUF%^-7싌0XgOR!ƴvGHºR4*^2t$wHyW#訵 >"C*֜Y}@E9c#,/!>"vOq,^!|>V泷ACMF[>SmJչ~Wo3'JJ[ۙBpC5RpARI<2tYH y:;)J,f]FB5õCnpMax_Vz> ozqY}Pc눇1C%FP矵'OpSFKKXGkP_1׏?MuoyE* ޸v1l2%= D>52SlB`=ؔW^67 j 7e=/'xMj*d'}djеx^e;0eM 8zqSy_r_4 0 em [p99*U"s854Z`-#$pڕҝDo ̅V@+c_A$ ?Ћ<6#fmP0K{ݫq*(#V@%p7nr,cx3\7ͺ!cD׉Hf)fS:9IPfWz1Hjc |Wڢd&M-3jGiE؜'s)%lrUo#vifY̰ڮLx{oiJ#AlK91kzb2+9P@x-ܬJHvMzE!A@[m@{=DLdSW`al8Ac˲u;9ǽσ%6+ RW7 "̰oOFq6 1m5rOisAӲ!Y6ůbێΩu_JvDءepo-S"5 4Ko9d[`8"8贍L[_bS|N%$ܳ#ܧE&}?̿+2r=B<;iCΊex~|Bx @Lxi3o :@ b0eAh|rm Ռ 9b y5V>a-Kš؇k'u^ zn瑫]ŢU7xnU5b-Hv rUh!fٰ=uVx>:bE[D}Glc\ߌ]Vխ\_`gAlȸ)*' ʦ3 c8qv .&K!*]hrQw%( ̹i59򊮼ewv^WuWbqO"QQM^cAg&\=ύ0*;*}(~QFr >}N;Q)ݮxkFDh佛\@9F*y6S7[z=753{?^["n]l_9 $(EZP:| X}GiN^ ޷K}Q[,sR`3HvGVʰ|-NL |HAܛ;S`Ίo `u!AڦTڤvLY&s.zczୢa I>8Q[<Zۍ/Bv84 .FQ3O׉Þ"t+rF ~i{wfPY>6`[QUr{+wB,-h96BC}xz*L5A Uj3Ɓj_1uw5^]RwD߯ϾQb%)D!wG f6԰UzVP(X'鸔3sHÐ &xJ  4 Y Ϙ `zϘ؏H$4 (Mmgj,qCLՌ]qK`(4-bDT2*olOAM|#P W ۝ ٨~TA_gh[`Jk',/Of-3e.߬Tye c_zbQ(!hj@TN31Xз|Q_&Li5m 7̜y2'DP~؆CP7NL]X;0q3bRO=Z$J:/?)%AU`;16 v܋k(2(WZ8MS T:ںq:2T;6p~|`~`qu!]Ơt@zǴR͵D5 bj6M4:8j' +D6Ղ5Qgl߀M}uȝBGGP+15d @RрY;WYv~^^ .r(njBc$æՏ.*"eGB/O] TЗ;%a9Njh B@Jj+-(IAˆz S0O]^2{=a?Nm4*E6 !KR0ʿMx2=~]S8;tp%~1;}lJ]SջQ$+:Dt0x2qƿE|Й4r~@oXr ~kRvir$8=e9HdE79YzW:/PsWHK8'qPH"&,^gEj,4Y<>@rnԧ%yW꯹.dĬ*lO@/id=o͖+WTw鞁}0wRM"o 5P̺k*L2J.NLŶeYVd% _a'rN_^1Kwr[;~I@n0_b8R'.I 5NW؅oJCh:.H(=[ې%\ןK\{l89CԢݾ|5c=oۊsAsWh;NRqϾ*l~pD,GБȵu}5Tvd,^R6?2' `+&8n DWZϵ52CXv tpIpd}[āqkڡ'z;bltdk_-ċȭ:AJH#^') *\1T#F,)GsuJ*uRǩ5(Bsg-h8)utk[{E?Z1لR6B4'UAqDl] V+̠]ڡfA+ -0PۛAo*QXO,Œu\sTRݭ2N·bT1: B0 J!Ч mQ@6V84"m_沊!G>D _dbS2Lo1B$G9&, pObdM8;O7/|1C-)+Q3%bQE`r`81 lbdgy Su>]x+pkTCo"[Jё3uX`5%$NvH-Y茢HJߘ ׬k4bp|IMN0T:{s>F(O=-z3i!^FZPk#ZLwW3/z2r|_-i]oWGPZ2` %F;f|IP-e$_ڙa)jH6U8ۂWc;7aۣ`săIz )KZ@ ¦М^V'v`&$E1>w#"Q&!ё4|?$wxOI"NO}iWhFU^^GlhȪјQ'ڤ>|;Ý|{>|Xvxw1WO>Py@&tӊyVަG[-a?(,-IЍ,\X(hN3n.OCjǏI^14z6ZR|vl#u1"/8aM Z-6&920)Ikny+YouO>x$/ײ9S7\d*x%4V,IdT`(jɅNoeRBoNj݉(jaw~C䴳JSOJrsrFk:pmѳ/{L i33,|RFjB0QS %Cj@޵݆x ZPT赿84Ar,bW_5 Y9s*Fr3Us>2jz=k| YZrK֪;fƋ59],L.J L6_ryMVGCwDɡn!T`­,>̈́鸼MxFgz)QPgBW!Iiӯv$AuF;<+ J˙JK {x Lz62HW#9Q?6/#uNmQ|鱶^`n ^Ca辊U5aA1q"&R*|An0|ygǤ~gߣq(Q& ݾ%}۠{O^xW(hWη{Ƹ'SG#w!#"Ʒ[xy%4E%_ɥ~:vWi-9iM3rUK ƅU1T9ZT rUª /oMgp|ԫةEtrVO[1D::%w"Jޮh[<ξFQh8zlM5q]LHe|Ҝ1!я6 =|ژ{5 .s!2Ff Sk-E^c)ë^"旄mw,J+ʑd؏ 9؂ἵ1 ļWm|LOI:Z&YC3xۿ[]%]Dpwh]nټsV0:SuU|7"5^ᖟm͘f@Q?88x @vG!2A;=; pɑl1ⅢalYdn3-ܝnW]Q'$t5$2 [cRm337Z]H&~liR= 9mS-Q!1Hμ{IGJu~+D%D@/1 Hr^ ldrT Xv:)p;Y( mg-Opz;q~ɇ K#f&$v/ՋhJR?$~oTYcDכ%VEWVLQ=NnLJ3{;L"9 r $E:a=L'P7k9򤒸UfWQp1^'0l/◖HIġOhBՇ+C{;\<v'RH]tD+Ԑ8T>*5C/ӡ"/clq,YI?K36RwbֵPFNɮ{E~$^qw~݃/SH գO OW .[4SكSҊ5K5ۑP 3(K[iZZxP ϶$s8=(|,|:)\ق|>$(6;Ja!V9Zsn4qBڮ[B]MA`8\$lL`p5 J1~ɡFܪ/c 4C33EVHAQo&q`nχ8W)X-ŽÓ7+H>M}dt. R#_2 ZSzEhF'-?GglY7w6ュ?8 ӻe Iu>`{4K. f|xF(5/2]z)r;'> q%sF(_[$t5*5.?v(n\}?!=Ƿ{ vm\GE"aG3igmJu״4i"Mwߏc`.@ VyYV~>f4P@C7CU:˰z!2 M;ƣy1Fnbg5Aw7$Rl -zOP~~  Ϥyl/QµLLVD X7/ >%?I"\GxňnG lsXns B-Oo/b65_1D.־.G.R@i}x#rG= _.#\,X ]ᆏEtL31جT.eT9چ M3 Us–EɍfT?Lm({,N)|MB!e G^b. ADQ؅.kVo-+I5t_IhȻyWڽcȌY#ye{L6t-uPvlNߝNq66:/GsbYz z#[k>\~V Cp/lV{ GXx8AK* -Ok2ǫ/ K-:Caܸ'.1tSjnCF:똏_ S[^w-\Ra23E6:i?5`,Hx:^ûM XSdH\ෲZq #<Ȧw~"-n0uЍ $;JQxlPgK9w̧3B#3iXKio)"LVζae -OeWee;{eט r[@r4 ~-a^Uv}e;럫$/ _AZbB =4Nfܴ (~4G{ể q.ZV\8,#Ur%"`NHʄ[s U51Z2x1!!b%57ևXD;,2iO9KV ʔNf7ruEL+.]^P%1~agLAI3o 7[b  cQDlv"s=MG! $ 5'mv^IQ+5bVP[q?Rt#?^Ol@T_p>#3+S q* T$h#4˦ǽ]++~ƶTp@tF-% #_w;8)*ޒtG39/2g s7ziB)oj h.Ɉ2/@klDj_f­klnUL6k$'CΤ.;48&!/ [yt0F޳$pW`$]@* b$Ū+XC  վVuW; s͹&u#@4M(E)MX?> N?-.!ǐ󚘿:.fј`6?-B#>VB"ԯ 7!Tؼ/?UO}0ε-jwJsvH\nY,ٿd'-]]VS|I*n1 %,4D?99{V6[Ȥ{GF[5NsM55yOxJ,7;?03r rf7%?+%#.C6ҧi;yzsΫ&Uws l٫ 9=Qh t ȼSTеt9_.JfV2J'W$f7pp\|c)IretA;н.eWvsh9 A]eif08N6 gm6>|JWkjPUq}.5-sĮ<N?b8F$]L )`i7X漁oVʂ".Jwt4Ѐ pgD`k3v ܼ1D6;@pޕXD 1TkW4hxW(fqkŌSǗT/5-p"z"[[ 8*4K-Kkr7n`tmˍ^R\}NYI@3>c*rnaTšohpJ Q⡭Jv!e{I0<Ae,rw,]D sEQyQfQL<9g>;w/W| (dNEsTN%FWk  边jw]SJ/Gtܴ H_VSRx'u[5oo:^Li9'8]ئ[4˷yUWv{rsXQxV`wU,_,]=R^gHJQ s\+uLlv >EQV|$RpD{]'u#0-''rlARmg4yo^{ 4\ h i9pD/qihE6#f_ V2Tǰ:z$n#UɩDfqá}Ob ,c6,*qQh ғ0Q xEq-t/3Nji)ȇw3ύ&uOyU~<˔d 8 {T}[" ,; L:u+4~dl.(N-|ҩV|5lյV]5F2"a{@ loi1JM|yM@޽ C[xm 2;_=!jɢ=]x!=.qTm/ &Ztz_^P{Oiٲ65 ^R"> %V]@.?Xeo#F7O T@Jȏ&XD_s@H5=]+[$|/kuxU}Q~WOަ~pMN9刷6W?ڦZ #N~luboc0Fw ^uœ,1*Xe;r6-όGfv$YoPq6ӍHL{P! a)Bxn YWˎq9@`Nom ؁;}bH %B3~5AFF d%/Ic,E??A4vᘶ${3[_gf1|+c]CoziAk] ˎ*'DmZ-T.JsXɖLO6'""_󭐹{H95 k| `Qj0t@:a; S}>;e*Fw$ kd]5/SPuFwtPѣS%w(Dg'#I"ؿ.?~!L&BO곐,F X{{jxtїumQM2x5I%Wc UC{{K 5I{pBlZqSٶNN(|NqSB#mG5Cw>FY+` 94p0QȇLA i0Yh܋ q`E~R{J//IRb iX4knɎnbx0>}3ͧ(v%.LPV=hj }bW θ..vVj`w{ vԧ eLb{ ܈CPMe֘g`UcbPxTF rˇ< Tw3]D< `?t}d];pЇ\]A B;h0BJNa/nS[$5 ѿIh&q'Cv'X'8vROH V|#$:%Qۈ:#ׇuKSv<˹fE-4U3{8 !LnI6E#0_ Wwߐ_'}'}_8hu</kCDqQ~}#`f8V7`9s.HE駈 D}wLZ[\e*j"aJB=+CfSAdnWR@,Io`BSTHՃe\'oxv7(k~6%™BfF[`~Cbۻ؆jz%Rl%C//6ztGi05h R +s d]#^[{$ejU{9_%4vа7=NXkyfp?q d9TVY4Wux !ab0(: 8BnQ{=ɔPBdžưzX=KRPw( aSK@NS $-p ʤgv)ܞPY [q c 8pĸwּ6ͫ[MwW*mm~f *{Q^|1s;E7C(Ht|>he<ΐu %n}UɂND2k@c ɜG0[7h=А]:h# ! Pz:in̥9V'x]FHfbѪM#šeo>FS}|3( "kDX,]ԖҒؖm[/X<kr%ՊA$-2<|0$@p=W0mܡDtl5D$4r=e漸l/ؼ0ש6\Wr/bwP,?) O-αpҰc b >133#לYHG@k, Jy[ QP~_@`53孁d1r|U$m!wNx!=啯VHnSԌ$0f_|%̴N"mf"AJV>!sO/f+4_f=t]:xzl%^ك6iN[c!q,w0z1acS宠JS2Zt=,&(f{تcW+.ZְUZ{_wG)vJ097 G^bҡT" XrɸoA{q\XM*V/s!)6X.dV ޛk#H]QtrJ`lHBDܗ?0,A¿.#/['^+zkې̳ q |uY+wȝ~B8_YTR`i'|m]p!!afsKV8n j]MPY0*qAQ/.f{nF j`RFԆ`Qt=y)/g5ǜGߤݨz}є#[A9,Ä`/!0aR*I~+دU>}\z3IHMgMbOH]Ԋ7 sM&^"4vK"F i~3Qa\ZHT!&560 )ޞwho瞎%é@.@ t]堠[R?.r]q)Rs\`sq+Oq zW2_d.WOּ#,:=E_ f=Ej$~ߥG"1 BG  Hܑ BA~dEcNFDdžB%xmEk3M+nxw|0\_ԃ*KW:A 4 -NQYV78I$olHH+Bi*4@XT%zs/6ɱ^b Y%ML04$2̄tf*Dv?t?RU^{x`>Mk9Z'0'йqEIf"A8!f=<^ؤKZx0u8{6az0A=ժ.+]RIڙXVSw._5rYhm%=Vւ"3:_%zD_R?r IZ{@12Y}W;)OCempQ́Tϳg~wxt@l(C)SfTwy VjSK{\XߝbOR8uTe[}PeIgf Z ҙdnUh]#ܵvpq,nCMO$IBRIi+/~ל؀6glz?!^Ƿ#Ϧr.V縲s\LC|y)1bs17D< \}Q_g.mN>./ߺՅax12؏)o2ᙓ ufjʼ)^?rTrf4;^c?n66M4 CHg*~d, DWepͧA$jX ʼyE$KrD Ѳ^t0;q]š'ӐMp9, =@߹YBe =#`*t#4n?d|*{(U۳ʮSkP!`TQDJsN֥ $32zܷ8P[{Y4fEç `VoyiwZ}c'Z8RP`~wJRPjDŽ9djѫ{ŝ~_w˙lqJVzQj/#2X6_nP?qxDo(橨 vw.Uق'= sxTww'`i2;Z)}$)iɥYqԬ?:C"O4l+n 1·ʣ ڈ< Ca 뢛,}8sRWpbCCcŁ|;?#G4KRs0mJJAvv 6U”΂wXOmє@c>AdyVġZ2/:0J]Frnl0bu2}l]6>dXc"#j#TAPLhnj̓pf>:ˆr$Us-s%>#hȓhoW*DWWx6t񂸳<'qR"{PV]FIqp.ښF\6( TD½RD&]l ,c(d B5S;&,uS@6ƲUøsK Kgyuf\ V]Di0AƵi&GT[82S c˼1=ArM;۵k 09\k_oyTQg >8m Sg,t0eqq y%גJGd/{I4$:N3YJòMNcYt22 v@oXvP-yZbʧ>v< CLU4&PͦE4:@aofzS"ljY0vJlcު4 :_"?t904{ƤYJkjl'oѸ:>АْqmJw2+8sDZg A 8Z*ܞI1zgݸ)* ¸$D?rY)‰)𹉽lbk>MGkt ~ _2'6,D1;a'=tL@*xPbcv"IEdSf< y+w/vp}8պ@BHB_['밈AIUW7U^qsR[VL1M2bC=. TBY@S^Sb$"ԪfI5Xl2.}g:~XEͪ@Tש 'j_Zi&Qϝ(*n6xt BN>ig[,(ĉ(I1g)o# 7cR >r &L zI__Qa^ť݊nu&_N%5ChGɜq55| /걲J&RgCݘe7T9ٙaV}`ݩ?Q-_/50)C~s@\W'6w$R-\O%u_P>U?lrTQ3Q;2oVY*AZ !! e,C90e@)+ >DIր R7ڳ3EEtYͫдNx O-ҦU4=gyP/@R x75!Ac fo DE$9h|)& MG6*!QU`}B )G5 ȪQىKF;KdZ9 ]4QЬg%uqk/FxD'kXYiQg B/| lUkxCIaRefҺ[*LQ41&/ @p'K(~Z/Aܦ7LY2:o-$h́ EmB@"NWzI޼ ݇Tna=7I=?dK9GJC9p/_GU=\{>eRb&?ΘdIk!1(4v!MN]^.}zEaCA0)n{JEQ4/sҊ!dx^$ׂdA%lxE>@ T0 !&*Ri#ȃ!xQ; 9OK pUw=][:][A!8D-7ܥnWIe8I;\(̓wN'r0sjp?R^J~ė9M؍pbFqZh!u } SqB`[[)߬LN(mp`Jn΅}c (s{:xl{3эT4B/ȗD^/c[z/V1Q_JrÌI˾#9}L\케~|ñ'j⮈]# RdXnbtM{L6UzIEs #`BZ/nk~Z㶂Z[14?w=xlŐE ,r|%~6iG_j^^.3S* r޲{& 1K7o{0on$vs̰sEG$*m(3qF8b''|B Y)ҙn*TæwF-9Jii'Y667~YH{&ɿ٠`|:|掴K͎" `USٱ^aUZn&"k܏n-NUm"~nxGs҆VzC6+cC5M6]'Vq@^'p? zh!-n[rHʞ,ĐW:^r.FCj#ƙR5˴T9S\~1qHl)It@PXmkE O2!b3 N/`ac7J"ҟlb/<;\j# cyl%0PhI2F ќi H{iUikÞp06MnSx#9ڧ.xMi u ƾKw Hɚǒjp^qa,Mie TviCiZg547ݍQ7 &p/P߽aHܤ/^҂߻dk v?u| "^:f&޼r&/c0?)i7Ny iqL;ciV17,YO63Řx۹Or c}NQFN}?A+UǫnN* 0j?)J=qy2ɕDMD(Hel9_ADC,^QͰR:G v[ .sgB3;4q2nMv;:kE OIa),Fk(⳥H~b~-+ .3S~,Zinѯup5-##l^qNXuE@tM,Ŝ}vg R/=&D&vI5RGѕNەwYmP.~P̩KcQ#jҺz0k?MYvE^nRƌtԎU.C*JXO0*7*񢪅Oڴ5rܐ#j8#ǎN6~\R[X^5*zÜSO=}@ _C_-{Paqrg9Oʮmy@z=:(l#!C"maHgnzD3w,$ެu2a|4Q.FʖyMt\+Ùd#w\G>a;]0kVFU!2P҇n`Apʯ-! .5FoҘoɈb0 ַ% 9fwy/B̪Σ/fۏbQ72jߘLRos3j\;wORLsbIR*N"`P(_4, 'C)al ݿ7A=^uDU5jCdJuܥL7׵4oIDďdgLb[M^iQrsD^X@M徜KFDv; wP3OXh;7sxH94e(f:j5isZg2+dټ9138<5m U#xG_0 {ԏ[CwN%U'M3^~5Ԅꠉ?VHslp--6%I &!XTX_C"Sz$g=}ש I%)  <x5*ǀleo,Jgܽ&PAѢ0ծ*,=Af%Z*7A{ub_jw7%HdWY>xbuf{/ӵ%H}N.ŦIM唿,TW|2q*O=&J>̘hnQPzIx-Tx.)zv1@G=Ti7jXwlo :E@7(S]CDךkP"1Fk >;Dڂfcwu% 5IPf^H?3i)5/⚩%κAjV# wRz'%Q%1:px*"lQEлloCYVrI# pw7^.@XɐE1]B=OHlr1՟#R}^UD/к=G;UeZf D~XgjvR5@SaetDqHWGF*}}{JS9H[4G I/(Sv@JG,LwEd2.Z qTx;pչ5rAnGJG{~H%.۪?stݞsc\ZoN\23^մ8c492Cjado͊w.2TK&PB(r ͞hgק^1x{5A-W^F"XE۹DbA(/ cl!<&X3[œmC3l 5yF_Uu0oQ@nê]Ze?Os%48K؁ kS0|}taɺi5; wh`YSCEc~KYØ ̨()qMzQLs3mOV:fȼD:r4.c>$Cqd]!i!+5RA#^dB$lmqvYT~hʃ1&( wT  JlҘ?+c'g}zr' r~u/9d-6Vw?%{; !nbf_]=U9Yaa 'y ,&߂`$ɜaU!e񑬛Œ`:Vs H(-Эg݂-@%5@ExJr;c ⓣ|}?BB5޾jMu b+O"EF# Id#mTb(Iғ􉛞,u %J(xefGX,m]&F5Jp`v2{XG&ꘓ{4=yB;Kt``悄 ƙ_OH[ԂzDEǃ!^+@#QU k:H054 +0n=%qnvOMtu-)5y"pB<|L6 > WE{z jbÁTHѝ c61: *^kFYJ=< >@3Rr}c0ŃQ~5p(Wʵv-\_ه׆j,VlinY)1[YO}>QAͪ#T, l/ؖ }a^ˈ%PMEtuU5=ݟ31@И~q7k6ZkꎝpScۚGB).8W!}9 t8]-q 6j9PP@)%`Bz8CLQ8;5eæ!&n\;3qFXc<>ϒN_^o'Clͬ>>~s`Qyhz.;h 6zٻTdcbqb<œ6c+ɑkd#)aA9z#c7UG;]QX;GZn?#Bu (H%o,]i ѭ.%,F X,KŽ _e]҆#UOV~WHUv%%a&D][rL-YDflq1rI[z2$ fޥtVY1BϬWsha(oTHQ97m۹_*'YR6@ ?D)6/Yj/NFLej T5X.z>aqVlQ5 *'7 ?D*N/X_}|@ b#}bfDr/ŊZ4QAD o9MQ 9&cʾ@ǹŎ%pm q43\.gŮ>|+vDi,c?36>v(i:_=AYYV, $"J  DS;n,sRg mx[p1Larv^׍1a9LƾIᄈA,5;U"0Klk+{Kdu5r1m۷͌XQ099e]pc8CbA '4h,4ȧK{ٯ\k<꬞g;!lD%FIkUHCi6HA(bX^Ԯŗ}c1PVkO:" ZcvíJ?*PX2+Hg:vO uUTy`$4 04%W1TGёmNʥ_.o J+0AK \NMeJvYY:e6M|Ox&o L;, boj/F%*m ?睧Y D;n"s ^׊ТDlV2bGr:hl3M4)EEkBh vT'nm=0e8vU>ʌ,yʾ;778HKy2E9H0?gD gi͚orv Ͻ7kњ;&~XvJYQ @[qE1B/gM' P`/,a׹ \_kc|:XGT՜WK`!`aݼ,La#O@<ґȧp*o.m׍P;M`h8zǾ`..W=J}aAm!%'H{v5mA8 }~7_q5%6GJ%'oW%V +.+"Iaq%>~hl: 0+'T;ܟ#g Swjw/'df^?!k6hO;[7M+-gTVm?N 387JDJXSmƞe}p(BIm=60}^gtYcS᫊ɝ{t WX 'EIdߝő[&U΃#h,>{0j76ڂWvAe4QDNK9 %oK@4- :5T8CM'aTu 7ND)(wBKj R8q xF; BfƩn5Az&,$܋ѠRi0bCȈ16LB9VWQ'UCVStE EDjxRt;[@ʣ3 ;^(j|tFls< :# ( >LX+h<1u!su<$?P,O5"'8<942>:sy;OA0:Lw>2UHw<$gXю6MgU!Quvv`bq'PVm "&"5|y\rmti_ک^7UjWP_rl j޷#W3d "vBQ·C7zݵܦQ`kR==n{b"2NK7@!®1 KdF:z p r3ؑ(@t :e+lE81?k/1G5*Q؎$hQ`o 9`žJ'6oKm\bӰ葭-f,)F 'ǥE8dˢ*67U᫑%-W'UrI4Vrw1Ly{%}/ґ9BאP=쿡sX q&1 cE8wNz9=I<^A3\?HJ7lz鶖H6e'0{E8M1f)Ճo[Pt7C♧Oa9GK }xAmWJ=- 4*J\2Ypεʢ>I܎z'lύn!#KDA(d9K$ܢG |:g Cɳ:̞>y^F+F@mQ<GiHTfL=U<'tVdQ` &GzK6&ۃ>JP홚d#+1mgpkg_Əzʹ3+d`#0(9a dkč_)E؂x+Sa&B~[z$BMQ"cT~5b58/Wr3ݴ!hV(ALLSL3$|O9~V2=sj5:'61 Xl,w7; o#_bM%㠋܊C+~ErZ_o\ fف6^EQy ͋*Ts1{|߇6yH[}S /(;lh\soW/9FY11A N IsLf$ir'k<t;9\-:F!!Y}6OTXA_6<cd+t glU,u&mrTFԅt&O*ŢKz-]$|ϕVA^>oKbivhO074$CW .h0TN&ahOfZ)%7VQQW\Бj``c  j#U# 0dhpH>i):L>90O-.: |[{JMV",aV2shKALrI݄smط?|J# Enϟ.D% :]bЉV^N9`)?!gnDޯ?/_G7k5bajGT`VR_8BT-X%/Bv}cs)82iMNwi4kY3%pzs]9 ]lE!\b2Ű[BBcQuwt_>ȪT";4ݪE֚1+<|'G5C4G2N$)W9;{CA& AŻArPT5Lt>t\/wWt;ڜŤϴӏNs<*cdXB[|3U&21 7 ۠"̝dulfSg4'chE,mja^;^|oROX)vLQ>\āC~ӣR0Q迏X Jm608!܇Og86QCL *yJd9/h@QM6'%sQ.Wr8cAi.<9B;CגFCe(eX*2) ')cڨ7|M~=*>T_!+QdT.Rq7jG"!AY-LHHM=NGh$iLmZMKךu[KUV ukz$%L3&K@S2Ky0׌>^G;G3Ґ n]~ 8Q?k,*&~LG]Q篻7?|]W#.cnl\lkAM 4!2-NE_]`xoPk#o($ 嫏$jKŏ\oq"zd<7TLff@J3,>`pL &F.㿨9[dOBOVp%.?0.E܄s,JG}(=^\3T֫d;@ZzQҮz`u%wx{8k1@ ڈBX }Mⴋc,jR% >GN ^OxxeLij]j RL{ u3gM&SAQLW'Xr%tbNBnbLVP44O]S=Xir#%Dx?[d21JЗi?h^CHp ʉ()Uɖc6jս.Op T/9M%×e|Y3"4%%% E:F/ ߽aD/ԌoyoMۓakEvDMK I8T &Q7 fC>U.ד{e]]ªHwY_PDa{d jS s*9{u$& ,_RgnHM[ p^Z瀩QRKPq=)!-ΑK;rM4UȀR s!jBmJ "\@kWZtu "pyPx^bL (s]@Dcݞ8P1tLO@d ||j >?gchXڂS͖wq?lxmT{PyT dqdzq%(F[1%OUsWg|}4;ucv.qX`t?_fL &iLL:@ ebbkak0xrY=sFZ @Q>jq%(M>G32XxL v7kˮ {n/~1J-A~&f"izUJpO\b*|<#Gq|ttgl?ٍ!ch&q&[J.K oZΌ;l4+t4LȽp%Π&5!YsQ$~=,17 &/Q-fN둈~y`YfɅ-4E E5`ltBξd~2}+z&l{Ɇ1XKMY#N)RQ+b>Eq-*W] [%~RoL5k&z`UnVt\oK/P7רWE5'4%rYH^9 U/ec-]>~`  %6G퉂O\%;'=a:*9Nyx5} dn$@Y ?zG^R8 m7Ź{ >f|&3]ΟQw.x^h AN71j p eT" rmv0n=^x⫅[x;uh`ճ89j->k3g ڇ{cjDphj//W_7 X6rz(t/ǘNӖ{WϨr5(q\KhQIBvլr1!(ﯙnZDK&f!4pͱ̄}Ef*t^FA-- CjPɞ0$bu{Կ@LҢYM/p"{b__ =L^|ꦎ ~VDNr.°)/־aLƟOUI=jm.zJ^[{b:ks( X`%8pIWHxd65+`>+ o.@մMe>W3;6~RLWdя\z#F1J9i` ? 'R=V@ Ov/*B۹=q3.1 =@_72Ylww \6)F CxK -'ٞ)hlj= }W@{o-=\(dArNǀq1&W ^UOe:x,b]ٖ$)lYx>Ɣ~2#6%HЯ&.(@7>ЄerCP+o(dWd[uHAfWQHE>ߗZ(צc$<Mt2E=}6,ITeo^_XNc@sP/Oqr$GۺI6CO hR<-B9|͑`7~1ht/ t]P0 ڡfD1f4Wnijv4t;, ܜaF5s;f=:ٱo9 /B@f2ÝND>2F(_lֻr;&|gn 7b{@Qwʑ7#%:w(>:*S05yPy~YE|:ߖ'~ ? YQx) 2kϵ$sv+h`F˂:|]ڏ>ƕϦҖ - 5d{'J `VOHtH epMp7ER=ך^$>I\P sEb hv cO[9C ,d Fedͩ4vJNN'TQ>1Y(uTfYAP,]Vk4h[zE!vu)>-m[&& -:{MJh\U|W||a4!Xl'D=Uɯ)j+v]< R`H{r\Kf~Jȹ3Uي4K QiP4\ F}f.hWЖ 3y= Rk$U g5ڼ, )6MճOc7Z"G(rLfH)?p ~){9rXGN37?-޲Q.P{ 1kN-Ԉ.¸uL>̅!`y q)hO6(y*'=bms9:\P@V1}2IRBgZuY#FPi{ EƬ@?(WA,"R՚Wa`"E۔$N}$/ 8rsqvkPtwU |ՑU2Fht`LY0=Mֿ }טwo3%/C ,b镘vPX Fc<{{=]@yKOY·9Ox/J?{d!?OSCܮUERV*sY^ ery^W? 1X7LP$?2?߻%f{/x,/' @ʜB/<.o7,rxRD tTB dx*C&8 LG~>IVhMb#\ubN+2J)w^ 78#$ĄbX;4a̻y%WTjh߫Uv<Ӓߧ<Bv!h U,h:@ O Pl=./)}oeKt[cBE3Cvx ѱ(eH0:͗Bv|Wԁ׽Bw E/ARʶ%h_qV˪Z[uz;2f䚎 Dg yƁ6+scfMLk˹%fzYfv/ߺ3_$嘨f,q}|nZng^*n?/VsU/3eO .׬voE>Y]>ӥl%RuYV`/_S{X._RWS0eR{pKPd"<0WZW4 mGŊϋ6EB$k֐БXKOd B ύ 着<{ HginAf5$'tƖOICO77ɧ(t9 P؇ֿepenD^p\i@Fw'?4#AABܻa ܞP.q.tm :X*C+oo^u#pq'}) ծ jt'dCᥞS^#qr'S)T,퓨kW"UZ'FAwtHhCg-1t5:#pp,k۠w;UIDu|= 6BB=9Lv"[Kz#ZqMjVݖ_ֺ_ ̴RӋ.{j{X& < JL(krlMUK _+r R!o?L鱚`NJ wL2Vz=Kf J^E`qԱd@`N~d) 8of$8}64U6NӴ+5eYt ̚7`0UcbSz6%)3 @3i5fsȉSOڨDxeF80۱M+zN|w`mC@>OP4!iM.3/-eh=>KFf[aSÞFxO=@x7k1k'ױQ}l®mp=]2 ?NOU\6aJkz!U?hB:CLBZIC؛u@}t;.99.?uer\Yv'w̷w)ArPA=.L4O $lh(䜴~-~n@;w!-okrԛ 03y7K鼍by`)<1- 2KEsTChbY{x—=d|21QiRxGDh/SmTUҺܐƃw)21MA|N5,(9.%mm w  5O!+g54݂TX^ A% ^9ƶeN44!ߜnAz:[Bk=.VA ik7бVѯ/yjMucM](u;|Suyc2j4E;̜n1LڠJ*/#@+wү}rqӇrsĂ3`e`K;x@`D0}}`-u0TI~O;t!i i*ry1!ٸHHoQF0&H``7^GgǼi¢,h0YVZ" /ҥ5ʺ6{^4-+.-s6/Vu]Pe. yvT=DjFDb1/lW=&mPʹh~޳ *OrX-ٮI@9dӃtR9lB&q=Yo\5 }&t=$*#ew豻kۉ5`$B[?yצWrcǻVUvA2/P@5Uw:&[c$[K,(ݯ& R5T2KJ4w$yiSN?ǯ-uėϠ}t]AV' :U@j EuwZJcAzHkt=,)KlŊtʿ]\WM<ȑa+r(?Oumɢ9C:(M3}wZmp],w?.CߡfnwY6 xTKٯ"V"I_c)z1sSI^* q{ou~bzNtW~siqVx4Ыko9J !}E9_ Iyۼlۄ]s> FQ_pwbH: Owo_]C,z>c ]R@fBͳ(e%F''mtB 51w2#bQUo ű[UduNn6'=Ɩ>jnI:>UӨqKW\m&=qglE?N?6*DE\}qh5|h{vĆDF‹ k?\b 31ї kV%{MTL}j. w(5ɏ]L ,Y ;Mۀ4y_EТ/iJ adh[hݽ}0vF\8eTý@cc,Xńgmo.->h#s+}^`gJߨQ!@ H 9ւ&h9 $y՜QZ0HAB͟4ܫ _2\Fr%3 ?*aLgni)VZ1*jOw_LX~;wG yo),+ ǭ2v-kI8ު{$wY@L5},ܶtNɥgCJTFIה ǥt6:Rf"!LFpc' }<` 0po2fP$XWI~\4K)V'X밒p#A͝SJT޺9X֮SIk$+{W[Lf.繞rp|D&oP8Os>b0+JF wG$eֽeĮ~H/cJlK7By>,_gMFLg>kfav3Yd,G1Tg߷Ii0bQ 1E?Ho_#iMAő"(y?9hGCyQXu}fNk*>7U:yKIAOmh:Hmch{…1#`)+) .[J` 9uM-p(w&HTE?L&QRƵD͗Zd_Xم 2-ɤ.?U5fa e^%՚4GLb<-+`  91[;rjyi$݀+tƣ^W«GדBo]ؒB0,~7M j 4kqKXr63qkws_tO6 M-4AqI׳Avd;*Wef1 y/EωŘSC~a>QES=`=U[Ovأ5RGi@|F);o ;E;C˺}vB'X[⏲V]!?W8 Gp"N1ÑwJ6*L4ԩف1XrP2w\,[ ' k^NzOd`xf6gjtMJno[vLZ2\1P)Qf&/ٌ*].z ~߳ajO;mAn"(~ `<([9qr($\Ds`LRz9KćL{-!# w"vO'DU>8/C`<٭Cl'j's\|S-#{ BY0pJ{|= =YTtGM|:tEI-A6uUW?E+:P*jkwvu|) (1YjX2ϊ SKtLt4ݦJÕKmټi{5R6r?_y_ {diq4Y8rc]xOc8 9ż_ػn"G:b6"&RS gp0 zԹ*-v|Blr͞RW.#y7]8vV2~b9|W]!$A,A_Vi(@I\I3uxFu@3CBI,h39{wnE 6;y5HxXSlgYyDi+dBtI0z''/C1! yl~s Sż whq/iҢD2&WCNKu̖Ǹ_Q+^ 8qZewE{7CܗBRVvSi^z M4q ~fY $fuaŶkjܚoQ[RV3'&>$ %fiJaZӯL_#*OG~%f:AxiI}oӬLTL$T-fAiv-w_S5Y+0 8dFߟH^@Lҝ{(XNv-1bu`/BcN|/iJcᄙ}\9&e,VBiږT-v2DiуlqS`Q3θ6ir&PmEJOzl q Nm#,A}ziTȰsn pkB$gAcBӁ{I+B0Θ.WiM/c;rΣTP']/KIC'}&U]Oxݕq.U3%1Z "Ղ.AxHRv'-|~?z4~Mj57k0o )3PQayH%>_7&K",|CȜ`Rٙ,@id 1?јg%2,mi0::hl*yL<_{ڟG8˵k+dWz̳M %]Z ͇sԦ1Σ3fOQT 2UGME@TU|N zWEɪ0=trod)V*FM#.#NqGqۡ 0]'nJW[)Bͫ~e:4O J)럆/կ}ӄ+]^%T+TQޖq'v'_k8@f4a} 1S.z|ÖYssQL9EV$?l5*t2d<q*^j6N]['6W9z#7O|S 3vTJ QNTp$G*)f 7⟯6 V{[zj=Ba.J)ۻzrVrV{_xX )D,!9)0,*g_b|0mr,EwI| K[!+x  Z'5"#0}VeKNPISrNQL8F) wُ7/~~\ DS͑"6!I!I*iIڊ"#1yk(ʶ DM"ˮS:`qːm&⸔zIn> 63xACYghT3”q@M0yęXqmPy@)|m!X ܲlˁbv;sy#1E4C pqm`tiS4(0.x. z|V^'ل +aD~ߞSi%|~r",,PgwDK}KwX+aś H@VddAA`er:C}Zpq(E ? S#F$$6Szt0!#=y:A}?Fm&TAn|<,T"+QM) ;%F/@@w~-); w|;zb3_3GfEC6-kdC=7aBU^?ttK*)%Ȳp8}Ҵȁ)䛓/a')!9FZJ@x-Cul.Vp֭$f-9oԆk`|E!͠>ٹ!3lps0o??]Z^yՙZUGA R ixa=mWC_0_'N@h:Ԥpuт@:"y'M#na h8Cp9+s P粋;~?T?* ?8]vhw?*@\t};Fv)6:vsdI}-6SzܿFe=8V~zZvZzZRlv[ƥGGΰ{Fp?g .v$&CNzl *u`Qϴą׈8&Ü]"ct$~gn@眦?'YJJf~E͍[AKqrigw5G!7<":curaKp*Ŭ[Y aiu.It4bS̗=\| }>E9,ݣ,-vYx@\;2ﱧ:[4@[}R,I Fv_/ӈ! g DAFU `,,sƀbBw뢡3PPb^:6^ןp㇕;f">,LxG]qd*:ԳdͫgCMd.4z3wŝ..l)jcBܴB/X c VBS^@I('o3Qww^{pZR+:3}a[F܈a*Pk'%ܸxA h/ @zd\=r;˫NcTud˙5rCвJ&?Mv:HojESQa_YP \"p^Kl$2oEqbЬDAu'yV,'uB$zaHaH\X=_|F~pcLP$sN \\aK"i=@@癄y-O(h@LUAl"pZ~2;Qsz3ߵxYw_E)И~[Ǟ`V(1 8M.v<㋞&`DʂuN 8#!_Pʥ 'os-0/_8|Ƀv@ꀹWHyfMNF o=萚bs8ۡ.jb%GϾ@X]>Okx&Lm43|jn`Pyx* <3FJ?k~m_̺*~8|] T? lTؼX2;FSdWqIuw3N@<h'c?Z#ӆ]_g|\۷'/wwļ_ZhLfϼM 5RcU(./Yf (_"Po>0sK0VU|) C:ɮZ7ҭnv` 3 ڑg{Prh\' kd#_78[T.vJ7}eT% kV(@wa >cpjJ!^bx@KGbO&NL] )޲Y {,: PD AM `"f-v@&ͦ= }D}g$Y!k+zv9?1KS /!}-,j"ei/%fzjʦ79C$r۔;q1< _״fʍB- p?Q*6@1)g BC$jZ`shjl%8Bchuɨ™7k|=grD2 Ӿbwulb5$MIķV |7HguoD#`FyypC 3"w|[9gLI8&N>CxImw*Ȗk 韷t(*s<;7G%b; a>&9rcJeU@L{;+o /^Ȩ&ձ텗@*M zwxW( J?ߧPU7oCJݔ>;ǥo3UnI\ Ka*B/G;0l1 20G%H~5wObU[,j-g=cgEo{!cO|xD'+(O5o@ZÅqOZrEOfZ-Na 88䱅EDЕDXM6T%NG*#,hu{Rk\I$OʾQdTjĸI?1JhEjĭ;v&P[푒!h5)Z´[fb}FRbs{; BAh_DN !xܐk4)8Ss739FͬiYCh7ht]8 |}AmPofC֦L849HXi &GPiB~Yv J] Qf. [g~캞ŤCa!B;Nm/*2F-nE%/ŧX3"Qgʶ冓E@6_7<p!w?F[MiFGҘI|4/-JeW_D>ZvY0Ъ;'F2 MJ>aW|6N*&-sˌG~ُL |f|j%8&et%W:4|8Qȣ(|x\zGH~<e?YA9S,kB-[S8?Hh8g3&8i >I[i&v4qʕ/k?JGN Ȣj^(&M0r.&=j5lՋ/ΕМ,QtP~T\ƖHV$WATbA PxC.|ϫ~N^絇Dպ&e{{8f| A ڶiU9A$eX7t1 dűTW~}oyբ>{B.ҖgO.m؞!=UuܶD /ja`5}ОJU|5=h[OVh%YL ʦ @rz(p)ͱ$6j7 v;޻v/ Tˢ\b@$.o3E(1>q?yucѹ:, w&}ŹH]'dLG)2yit#vX~4ÅjKw"s=5Ծ*cjp``~z (.;D {V)% l7JhÆv [xp, YBW$hIr-֚S:=${Bz¤%A'2`7 s`:s(m15} p-{`If۳N4Jd]B :B}RVVhS ΡocFO]PK"dNf 88| (Ov*Zet}ӡ͆f1+]s[Q!_&ŚPDƨi8z 2' }D nxk׼$ٵ'Gm_.z*zoNRaoH{ |>/ LB&gl 2HVKkn3 :{ɀ#4 c;s~%Q3?}x)A[z\/16yI{%Ap AH?nkd oAEㆧ,z*&-^KC#QDD#6< q1 oTG.Sp w-jLq?$W7"ܽbbPSQ&ُ(b*x/ivQ2ؙ? D Ecq'g--1f:qKKR<7 T,tEb}e'o8&]+.& wpp(1;< &r% h0<6$G^CW }O\Ԝ׹@,*#-n Ais?qNSEaB V;g>7DE.4nN(>Q$׎]7LXR5{-:rI%H(( ~eka.DB9dp(\ض~%y5P[b(6U5b*9Eiww,xx3TS%L?QАe87Ȕeʩf)eeUXc5`qO\A>"Ah:6kBNy5v  T vY2yrŇb+ ,Zd~t If6?%6ߵpO4%#&MS܋ bam}¿[= FJ/`βf|8P[̦F߀(@@$}~jd8嶨 KgNJ|VXD+3y*^ɹlǬX oH#g3Gf1ȧwV  _'GMN\"' ReD)!mBI˒Y8_9UÌ"E]֫iL@ƲO3-"/M#`QnnO I d%33RuN/h-z ~dUpR}t TAWĞR/SYH4'Xv_a{K'L)0a/Sr\zCB~Poб"4=H.fiI^@b4jxJڴ O-u`(zX#jSJZgꔨVu /!+ w:v{Ƥ]$Bi 2_MUCj ~P{f1Oc>/WHz.GU/u[W:dQRղ ?%jT&L&*]1(Јg~ y0Hh1HK`4"T9W;Q-s(&l AQ"0$cLpؒ£KJei]8SS~}037Ɨi. 7ЖAR8!#/ڷ3Eb]p%xWW.6)QOp{ eq˼q1h+c(%][ whHӆ?ȡudQ ):MP LI `tWBF=TX9Dr u[(dd<6ZN/F;ڈ|u?.8\=>٦!kQQ>M뺛p|oxa3xE})zzKpBh`WonD NKLSиҩL6M괭fD,ˑPl85DJ@灙; ߺzA[}Ҏ .k9JrľwFV(EM\}sb◆jYH;_XAc?D00Qk7ueqxkƦZ"xs\$C,`gC$3B{T/[ҝܳ@/mIKyt2F\Զs6y#"( X jx|fIf1{἞̣4TYnзr#:p2e=yIjKVQValz|3쫬Hڼ "Qyگ=wOX'q[0}.&Ԑ]Olvb3ɷ5Jr!X\ݛ]sWǡ+cJ`{f!pK|"vVNݔ<7xC~fxkgsmlfmӿTx(Xǃ""ŗ=?zhqIc̻}gŃ(Sn#w#b{UN1S, Rߧ&ؾD^e̒ȩ;uN].xX OMqeY"tf <$ ُ5}Ai!j)蜰vBJi\BWEӏn&*L޿oyoBbA dq:7p5^*P姷zK/<A_5=ffl&f|S5{}1^#H}6/AS֤Wr3%mXd=kEH 8okPX[e1)M!}:*~sΆ KVfjaOߠRUH 9#ϯyNFEeXIQClU(LцDT*ޡSwi&vV32xe):'@n8P89Lk ^f$xLjZ}Ye:BآWV=h!0P(|A>",1@/uKiLC{ G!;eb|LT{$ax%-ۮ{s t*k98p&괃eT8K[l\Qxd] r~y̖Z's:ڸ ?6DPlY"oŚP:>q *rpގUHhQ Iր, zGt{&c=T#ꆰp9?1Mvֈ(z*k†h= g1݊_"n_L>W)לMyJ_h93M ?ϦwU]`xP"IET:B.BX1Ak2xZrS?.i 8PXZ [&F}n/g|5m\ l-!VàX4QNڃFIQv࣓Eshi*PW9&bk'rXQ22PHr|=7:SU4OqJU`YB}=kz?CهY?HbCh>#&Ƽ#K1D㊊y ٙN;(wE^my-ѭ:LͅO>z}uF2v#aܨڢ8wf|/YZ"װq)A8{lԩ-%U@7l.$ޞ5ݔ%MED/<9́nͧ 7V~ f\ >a`jv:?Q"8<͑&.K5e"kZŁ"R蹔tYϞS&+CH6/0B Vp6aä'ɞiK#Wn*8)I ݊iD͛m#޹WB]8#= \D2;hJ59/9A-\|_wzP#|73~e8~`ߵEMz;0!⭓i6{Cߢ NHvL&#Ł4BIi@.,䫱7%y*Vyz{$KT7Y>Ī[كŎ^k)_}yՎ&{/=*ڤMXB! LHG`(\3.`ojdZ3TF=E q8XT0g?G>55fzs@Mdrz1⍰׭c﬇XṠ͝~EmӅO?:+%X7@ةv.l3]_>dSz]QTru=M9rAsyvqH&Dj˜'VJ@E|e>:@.`Xx ʔh+_g9Bn`W~ v/'0xXW -;˴W!_ cݏ 4&Y}YKܩvC+^n+:=Y$;gXB;>`hi r͙]v&vt٢k_B0fPc-E1}nӔ)Y L(u+ \8LVǤfb3wvCY'nT1JQp^z5`G!ڑ&ͬcZzLGf>'"BB>| zmDEpe쓯A'#3RYS1t?_C>*M+'3{"FnFl˅+ἷ(L)Epr %[H͋.Q@RՍA"\*"9rSf?(ލ i)xТڞ9h[D4`Ku6䣚x' ALFAmAO,x>}CNd|/d $1AL"߂$U2V--fM8;m`# S4JF1BZQ%StEZW#A#?(bss ɷ%bՆ˰Z<n*շ*e\>rݝ!5,>u:6c[ I7)E#lSi4nqO.9^3~T[;;Y-PA+GUO>x'hvW-F2:m1 -]Xj UN S3`X*H ' d +둳J{LJI-܈<[1GA|:'WXIGy&hߗK,Uv_rDp1XL&?.Ȕ?1re)5 UMیrH0䃅w_V8`F' J Jq)+ :VNc@`sUs  . K#ݔ .h&jLig[0 31qVQvs3dKh_eHB59/\JeX([۝3}Dqf=;st8nco_l7k43'Eǫ=\I/槨^X5FVF$ ϱϐV!d2Q{BX1#g#Ϛ|ӸpM\j"XQ,#dacc<k嬯ߺБ=g(d ITS!2LUY :=ޜ^¾XBDV!EL7oYѺ?8$5#stBK2Nf S'RvK~yv8+ⰬQHjJæwɼӄB{_c͎eiL[l[ Sު /'(^EmV m ˙e7OPx#慨{N:?=p,c!~=eXcc4.LIn7D\NjAR؋(25x!7RM zvSmjS"f!^s)+nIpu&GY`tf)ޯ7O.ImA>w85z2WYv*L5!?f-PIpջr0̘|WB 5F2ށͣT A؞\XQy[,Cbx-rQ"){D ,[O ^qr舂wWq'!(Gf(Mw MǛ)ϙqJ74I! f ^іsSJ*<ذ4lObEk ]ԖM.B׮ijVl$e(P?ョhnBh)ڊ2Fo;@Eӟ9Ζ1;S 1A sL=4:+@f~,C]󣢨ȷtJJQDNj"  ttxansJR0H^ZW;F#lS<dxZ%Ș3ݤclO%ys buZ1@x+7Vu~)5)`L gBH+d*Dt2 ۡ. xAD%}Q܉{<492;[_rRaL,ɫ\@8\>WɕN ̀b)پ6cT* $uNIQ5ۈs٥jLW hYWSXo?>0<>$~g`֢q6 )QBdء&dh#V0/;TviWM> =H/UI^XVXhWxvgz\\dSˠUg^zX()1˙nq1Dʪ;|*Ce1r*3$ޏi 6M<Ώƾ3m\õG_׻8[aHk26(QN`{M±͹:zwGa1dIo>o􁮐c#ʫ˪cEb-D˪6LW'g8SRQSBωy52aEin.D+z!ӝq&~|ش)E>MUhu[ټ5*|2dcgÉηWWŅ%z0}32IB/w%TLtx޿wKfAS9 qGZe]$d^C7ճ0\R#d,1#5#`'yΏ}S]e4d5i'\1#+tHtҗvU9JI~C8~6O`lQ[t9`:gmWOmEoحo=NZ ~$ukld%,r8|h%\s#E>DOWJ^tH7>|,};`nuJ@~ RByq݌P)I8`clO +z^ez<`TA¯.'~ښ0EQ@#Gu8 `1/%A>]jlA n>9QZ:!(9\" 5CBh=te-DIț@!Rz$ ۙ Mp¬g,2>[-P$oLG(Jg'xXuuhZG?|,|js@~3CbnɶƼlsD:Γ.9zh $3kx9ݓfʔ^ٴLXgֱ}CkM] +h%;c9v'Em'wӾ p W#z1(%Wɽ˳`ۡkgq)෷< p#{*&Pƅ 6BiyTD_E2,fSBcG"K#m>[ϺBޖ!z`#\pU3RoͶKX2.VK#>+&HRKm~g5;l 1 m4Jpx@qМRq> Sg?(;,D){ ~x-͍tbpQl:!?g( JkdimD7G?\x,+svd ğb [O`ː TӜ5yXzhC SJw\!z̝A:<0S'^o=@M*YTWU9Q-?]RJNJQ}Y=H??_ypHV! k!v ܾ&Cg8&y޻"*kQ]uR×zIg? L_lB٫'adFL^Kb/j|ebE ͺR[j%єѹtեs}&ߠ[\٬6cP)!\H>'"`Z>ʰ2FAKII`:*W9Zu/6$AoYA M?# a 9ٞܠFׂS@DC@Ce@.*juRj3 r|<@mQa0'?[8\h Z):RP6<=bkQT(]+b'l7 N=Ue젋:Դ7͸';I?{>AiI+cqYzzIjwFjdW~/k%- A+?tˊjf;H{$ؚ/Z,4<<˂B =ޣ?O|D<{[SOn5Kï˘skt\B {A,Uzw8-% X/rb˷\S.xrnB'M:4 ^od -}=) Vy +HU5<ȧ"joY}~[gRrwV?A&c[i3îBWs|[ 8FV8JMH5+ι hM!w\W+4s@,ǯ^PԊ"߹vJ9b`,Y!WS!U6DănNyeVt&$FUR^?:ޜSMt#cq"3xyl^tg&W*Z T2J>8p"T0b?O'>j{G3y5:5L*!k6 =I#Q{wi4<\_n͖+|% nwA0QZ;[9pO 0ϐ҄ec,by;v$vibp}i1V&^z5ygߺ< {;2.Yl[: \+}pa4MZJ>ʑl&i+K57b5Bn]wtQe;*tmq=xzێ#V+2XQ < }~Oy{sB)9Ź%D"]Ǝƍzc!(%Mۉ:4-cd%@ՄFǙ|jv*v ̀oא7nޜNCS4Z .YY92 WD/bĢ5b!~~|6.0]`a"tD:ƓGorZ/nrY멏 +̞<188 c-X% fC"E#=Ȝ}W$foawi p82CJ+W' Orؕ XÝto6q&;s!k31)^\!,6l)stZB%8e5h58,,K YzvENI8϶"Mw3^>1*@Cݢ -hqyݫ6\g 𙐡VПD20rdO:ldrqu lLs BJB UX=`:4uGJ y nƪ |&Ph}izRO F7쾚U¡,XHt]lq*s8pJVQdܯwm &SX !M7 WfE Q3xl/} Ã(TUoӼ € ߀WYLZOqt<$mƊHb OE,u $h6v@2q0ue[y=n;D*6J=Bܯah&7^4+3hpvݓ*t91-{U[>1E aDEn;YFqfUCb[A}};tH?!k ObV:8Ɲ;Hβާhs8@mVE俤B9 W3F$F )i4Wd{|d TBdu_1Ui+@/ XBmO uHw96>. /ap!۪0)stos >*U:'@yK }zHce#tAF" $6[qA:.8b<@>:/jɹxh gP`!2 !f0,IP[iv"d%2\܏X2%0i'5ޒyt&LE  XD'swS40Ly̘AIwv!f|!QZ$$ AEgkI=7cqPE7lLk;~Vҝ⬩.d,ƕ.$ced4ẽTο$(? Z%8/RemF>xqbΉoLc'"kN`cfw1=`Ǔw l+h"K@j.ZAX!0JT/+f؉!A>*L mu/Tquuj;ΉX\G ~^:L[:d#=i{5 uX5R" VwG`@~ ;ĦEՊ0'Lk[^:s|Ed ?;UQ"3ʝ{eeC;-)8IbFr#w Ok\mkBmTV$4s=xIOӠ.h-_qQV"oGg5On/\vcO^ᜇar6qpr#&5{S /ep}K7 ,?cenZ8j03;(z^QbuRh^y X^Bz].Jt.cS\E:ow RͫaE LAQ9V|#'> gX2|ף0P\3E37%b QpI`,'mǦ[G6]ce@p˾&%LQژ*_d@})sv 9]{0J}c9yhHc9s΋:g8xT:= 0׽J"ּ$6 쵪waRY1r!Eh% @>8|ͦ]#^&PJsPݔ#WOq֕PÜ}$ENE@JZ <F/l+_p#,V{v`0U[ra͒h-""RGШb#ʻ)t@ zif ›YrF%M|ګBXqhjkcA5ɗݬ˛"lٚ"WT1bjDvj-FF_#NNXlTNcϤ24\i Ԓ!ר*/|vh?s}~_U/uL[CҿƘ{% }%(Ju-IBC'kSD#Q+ f[uB2s @)eBo{bDQL^@3c\7q`I+|J^D2gGx|*G 1|َ}_N"j,܃#⭵pd5hTQJߧ;ǠN]t RODkAOh cdyɪ;VXl[ ;rSNHaA)k&&l\Gtp~"VWQtu` \Z~[.tWء]pWLwTx.+sL|zjliz[r6¸KiEE(d*麹Лޣ/'i,^fSy|B|=ВՊho+DR=bkBĂ{vn8$O`(usKV8ov:GZAo$(ߜ~vdk=8IC(5H jgGVK%3;萠fB`_>lgYD@W. S$ fE!|dez\ oԒyͥ# &>5b];)eMJw[Bb*PX߷ܐ& HVoBp')-vBūm4ZЩ ZAʱVE}d1:>v^Y++\#hiJyli"e+&; D57DŒ ;?\JKLuqz{I]4$sAv(-Z'Vee뻍Qm|K_[o2!0US]-٧N ߲$_#s7&ݯr3_TLXlolޖ`^=_>#Yiv@v7Uc{Z_׭  !VVW/J!(1 q"*{fCaLPB./)6,Vpd~֡"v WHUS@/ -J鴘!"3!!+P{ )J`؍Zw!+/)jwDI\o<>őz$ODZ}Ŵ':uk3#s_h"Dx/J0}D+vL0I%J!nj;>v.BசAg֌rz̔.:Ѻ=+SmO[] õRhTH ܺ\n Kk.."fU`M}t>h:d`>Ρ24x"q/H8GU/Ra5zH㥭bx* r,*BMbג =:IQ;peS@4 $o\<@ZJܟ契,we+lGEZ,ǽD͓.tqp50v.raCPﴽSϖr 7)dK<`; st?%CT?B&yN.9~BY+ )48XV+ɠaMx Z{Ȅ˓{[[ 8qov/x] -/7*%BL6<`F_nnxۤZ64.KJΤK))'bPL*I˹˛$h=,Z)r;t-6u7.GƒKF36{PIdi+|,6Үx*Ϥ):׆V`@FD1C d|YS{f\9~-є՚ƌ/|XJi+dd!ąWLٕcN^י-{xc:R_ &DFB/Cyq,A/mqfzW`A ^ {'QIީ/f?!@(8yOXϸ4}kwּ9wp -b_yFu=cXV4]R۽4PTcИ, rĈ% =mBr/X&gS=.*~e{p_׭hCN6"ƹm3ٕ&'" їssrȞe= &V`IЧeLö`-t{PAk'"y1@>柰D[-7:L?( :|/cK3(" :,E?/>ƱK1$TczZkgNK FCxWO=< ۼs9(;P# $Uf%+,;1`ᰐOB0?mU4,爋?;ma:+|eY5XH.L/R lnjihJ+5ˌkvDYoxguspb:3ၲi;pġr]H`v1kD}>ZHzz1gujWcHint UuU;ǟ$UC=Ϙde2R<3d fXګp3 ssƴ 2'mb2YZ)]U)<'W,ce6s"H:(3?] Fwœ 51VO}m{y%Mh:~Cq뼡kk>$IiE^HnPfN4yK곱<`ý]j+%U):ɏU4ѤOJ*TFS/ߧT5ℂJ !RC45,>iIku;n$OƾqK@o "&{̸JmP渭(`OƱ]p6(p+!Cw\WҕQDZψbqe-hܭс't@FY,c5,}éyuoBtie0:Xzq.&;[<4a`V +AK,]Ml.\c9) ҁ).^G>_+![RK.fXxPG0DwqB,t|kk[4Sy"0f4!jړE?e 7\DQ'-N'+@?1g;K&>gQkv#8Ue 7Cr Qڒ r˳Cy Yt!N|L>IXYZEeg_U?4#1=WF}+ik=?yʁ9Y'LghBOs[.o#|Pַ- }0h۲1% XM0+s!Ku6w94L$kda RR _= f?cSܓ335_;APCMMӔ@J},ZL dőF]-Z[=ʨ2S-/nRR@t(Q~'DX ~6aN8{R#n$"VBy !7 z]axλ:B\0ךDۀhq=ߧԳߎF.)oؤ!2/c&qXruk=ډoRunW+o#k& c]!l)̰X"hirBdK Fޯ 2 _d@7+@NvZcMbNqQ"WY!5MyG6rd > %TX` O~᡼p:wk40-T<Eb7ѿn|m׃ Lŗʦ_U:ʱL:PݛL!R;:*TzV?u/zv@x3^֑:qQ#P>Ӑco3pʩTq7#xhRR2\Ȓ">!  n<iB  \fH6fôTN{F?356swe#0>h8iSI=Kۭc"Oi +%`>*ebƐP~]6( 2^hxtUFTWAX<if.vP%M`:6˅\ 4#]zwLz16=7HrFga4CIi$M2aAB99)|}^GC:7.6Lr؃lgfKɶ׆"beOk fJ+ƛ[ }v; V_N(4ue~sm]!R)G5fhgYzDtU,AzUEEM*IB: kB{boޛ(r^%u|e|[~ D2kY)9mvNC3-Fv5zcc\DHA&QnD!10]XtdQ5܇xْU~咦BANF+Vgi2  "wzm`dWP6>/zmRFh:%+.d/B]uUWFjV}\PAe &!sXOc'%z ar)z᯦&ͳ[RzVSH!R R][_('Fڂ\l9!' CΡuk M@ ևS;6I 6 +, q92 ,>tgFWzRp,N }£E 6T#xE7gpVp-3눘ums`N ,VՂ# Z}ruf{ZLe'#|ӀHw$*P"v+g*.{ٶbЁ#!B{Std@hCq%DZfhDm@Ľqcp1=ps/1/CMJ%6[#nGWcSZ;x-*G`,TjDs(tpL W5Rtme.Q97i/Hq|t8DEh3lBHN-JB看[<13Xr'MQQZӝcfHe\5'3g^p$",HzvhC[&2ͅ-Ez5F?[R²CɀTg&~zP!߻pbDI΄v-7^C?/3\n ٱ-- fc*}%KqDt7/:CBb_q2I#2{|-Ɯ?!Scf+'f`7KqK|UA0|.flKR `I|&P٨:^<%HMUbzRZœWݱ5Ž.|I9}bI7|xUJb\u[uton<^mCHӅ_d&jMr]w:ҦXEoiHe5}Z5* -|_"`l+8 8e@Ց[ S9/a0,ľ_qnx`QvYH<<# o-"y6+IpKQ*վq4MG3/}*uL ^ADXݱfD\CP'ߍ\rE(Q W u^>Qjc4sū8=E)q b&@5"^l[ Y%%Ʌ5ns*& =&"ee3 /pߨUd$iH Z52-i?<թ]ٞUúnk %1Մg.?|4)=q ?/7r4WѨD'Vzrg칞nxII`"&E>v5urN9`b?( by5!Djyի 2ՙnY7`gs]OK`oKF8Ndݩ[r_n&؂zyv'uxFr92",l@Ն~ߜy ғ 0\9 ҡ!%j Oǒ?O?Aw~on>ҡ^nK2i1vسo9%&ߙO/ HB<ƬZi;4y2= Ev^woz={Ƅq!du啥m%>"~8}^#$=>0W|F#Z ( AZHjn#@9 ghܗEy ó#}XRE<@I(Nl +(弖7.~}BO qIҜ84/(. fn:'lZPdDv: =Vv/ hR߁SB'Zg/ukȬC0Qk,lhe |LJdgߌ!`zJpL|!;YWxB}#2LP~T׶& 0kaAIJſ;uE}A9<;0¦]h oq-^ @.@佻qPфyCem6#}QWR^1U$棞pXiz*Wօ)gm( ,&~%g26ߣ%!R2_F;ې,X恗S* ywiB;3$Q^WI8 Td|Xyk%BhF8S! |4B'm5m&7H]Mb6}ryPr=vD W~M T?=.]}^V,y8 u< m`e,܋8 L@]ڧ'4۞]^JaYS_K:Ag5Qҋ0饎u8"T;Zty󴠔H+-Hʅh&.^w)(chU"Ph_FRȋٙU0L  zEtF&ԄNcɱ11z#ɢVw9ITrc|uKeVA֥ ,je9\ni8E24[xq 164AE*Jd^0ݷ; Yعpyu/P 2/HxGz2%U6UJR"DŽŋ-L=:dc9sŹ{0k;Z'b(Elz)"JF&r0}#J|sfRqRW4B>? [j {A;I7qg3>KV{Akq\aΡCANr4TQ.QO/mMv\` ?{֡b+V*OdA/XK^SwM9b z 1 Vfq W;1K e֧ kQz0^Yrﲃ}4Yl ~}jt_^/O4>z:Nf}V3͡Is!EW'Dƾ UKCepi 8"mZ檟N)%0å O?q]ǿ<&9cOLZ1 C( 7ʌ e?AU5p]HNj^oK_i };P?I[;jn:Bi5~sc<.cLr-"Z0׸zs2. 7V3b"_e(wd!ƶqǯ(VZ>ȁwLğG/5A`5*?:¦*f?ꚏ<Ǩr8I3cu~^S1 o@U@vm{SGy$6 ȧV헰vxdK1)$Xh'!rXM]W0p;OC 2@UMc+*3xdiD~Z6zQ4 )1E}!ɸS V QZ9CiT 7TMo8 Ϗx - 8t؄N&94OG ଧ$FΗ?i.ӞkJUrQ25gc$2~qH\%٭ԩ1* p<$ MUi4[Y4'n/ ”{/lt|e5>pXGR,__sϻ ;Pyu~+s2>irۡ`a6 ݓ褠Oƻ*\UQF<&1{3QQktt={Sz<" Da&EWt_slhkj۪ۨB;Hv}F>p4W}W~<]m3bmZ(H/ oݩǮHFeAM ^!ʊ"?"(Ld=؛(!@hQ'%MTk ~V9&^业tB%?G75^G{20@nQ"Ca0}g2p۹$szg jWW Di/Kh36״{r%ﰂ-O+c:5O$@i =#7ZqEvǦT ~kH{6>Y^~<u y1AgߣX8ɍǏ຿cq'b$yPNݠU 9N U_;=m6\Iw:,2mAd2~?D!žY|!V:JL )BuNW =s,Y!cQ(Yy|W\iqZq%._"/%ݧ0D^xQRRfp\[+7Z˺>r{\4׿ hP_a¬)P'fA SY.+ao]\6ёD[F|N}yrJ`錾#]^m̉U폇z`A2 >Sv~NqXx}m-ejKSk35J!4+~lK-3Le8L2bndF=c۰F, GD{B#TR1%ܮE]s͋`w\ J?Laoյ!;A!キTE685j>sPOކӏw%ĥ>KT8@5$6arxwiP_+ĵ ݦ?·?my!%ψJ?v^.0X0eG9F`-պԎi"*`C+NW%eV+^焘|ϫ>2.^'ߧ׏ X#_$@稀#ҝ.iׯ3/Ro9]y-dD^}&[e7',//\D–k"<"`jMn*+I EG$˿{/r1EE#RSiW#S>@>c S'lc@ڞU{wؑOPo-Dl&9X[prtZ=sKq&>L'[@ҶjD4P lY2gD ɦVQrP\QNuQb?g[F`oc&'FEHfM_Q"M=m# !2#/τC]}^Nq K,Ct'83լ`i 8E0l0=Y\W/}&7ݭB;"ÞNq v}!0R'Xn+13DsD B,MɆ0LDlD]!}= |  `IB~Gol {ͻdu&.\;d3 _}Sz- 4“ ;Z|h#դ4id԰XmHZWCW²5g]ss0kP狖{`3}øզjb}7{(hyk l\{@{OdʥLZ7Mɇ0jP=4]Ρ `P6ȋhS-UPo/$wN1p#qBmty!)=16[AgK+,꽡C3}IYM`)0ovћW8R]N;cDIWƗ4=zy,RKr*>S=ed*aw,YN}oBFZO*@F#3Ft$3ɟnaD?|_5d X*tk#fPFrͺ.33cwhx|05\x1Ohfoxe uqF0\^7tLl(%ģv_F9w,m}K|~ύ¤x-7ߊXZyޒQJi4L}QB';udڌ+wNfgSȵ`i, $v_m ZRUQ=U.X=81Y"y"J~?+of'Ϥ+؊PSM/+<y9C7{/)BK6OjX=2!oEOJji2xOt"IxnVFTHhB 'zpǻbZ΃w[X_|gR/V;h-K"JKٗn+A T2WmDB8"k ON4Rh :?\x5ʽ'r׹H!&r#~ϥNaj]tnd_fvm]xaj47{YDKn:O%fݧj QW(ĥv8L볃r& : Sytʏxb8 f Wď*ɠA؄K|gk?۬/&2 A# wkCR~tymC9f2]8xmyz;׌!v½pȵ8(4|k_Ϳwm O AJU@(|9ϣg^`]#! QDvqL#8yykA0B::?KSqm'& h2OdYIÇX/bXٷC!APB4~ĮiQs/]\Xk<*sXWXﲣ(Xmťw!ݪݦ)M{Dj+2V~lFص଄T{$+DB.(6d!бv͜HpdnUi̸̍ *DbI8-9a2gg:: >R0dVB|F :n68>έ*9˧BTx3Qq)4$#B;D _m+(j`{qlם1)/%r-["tBO6)IV4=6z@$ҿ--'yM֙~ޑB/z."<1 &F M3]g1gXWVP@  wqaX[IsP:5i;4ް%*M@4V~-7\F Mܑ)!vfjQBr@{ e\|pOdu$fCzxឦ ֜B"/'o XR5g,g8o2ZMC_bZ|#>aE$K0ur"Ɯ8E.~A&f( aN4ȒGҰ%QS<4}Kۺ&",z1h{U'jfBl-^ 2JsȿAx5p,@z[2mِ/u@ Z$Tkri$ܧ9?UDҢ+/5x7Kٛ+J8^HBlRJj*'heuM"ruy\b T9,J_Y%Ψm `A;<xI_8)f<,-4*& ⵗH˄67ЦК1܁IaF}~ÿN#l^ҶY0*eGW-FK4Ad6 Oj19(bDe.vo(}l{q{BK"mrn' >C;DѮCN֘w>ZO` O{b< uR5]l9w&*X=Ѹ*jꏥ{u}[Uޫt)ũrNUR絞+۰x ͤb@7(-GzkBf»=mZ(⣙rڜ.{5wښݮ%^l^o'2^u]|+zlD,2ѯmoR\6r\ΝЎędo#R9ؓfy=Bߏm uǩQI:d:U!%5fR#%cij`#KTl}t3Ohd\"uNxWc O .YeYq*j.ֵ&!"*$(v癃Zָ W lIy*@'G+!bI fu%-{LѬ{xT15ThLmh=ީ8)Lw+Z3TY Qn";g*2#K";~V3WZnW;g$õa|dyN 1Q>WDSAZJֿRX2A|T鿈7kΊJ]?'?*=X'^2[F~~TͺK V5X@]%L 7C-.߀sC C qÃIKXj䲜*!@86~&)!^YC>q?qP]2W0YԽIPv( ":rh琈5z$[ڟLgk;&m8ָ*.raj |+5@3VO/p 29q}!xb"дbD. L)0:`DMf4B]lem+׮Rzλ%-2"9a<7k?^Ŋ=~s3iv5o-K6|ˊ/er$iT:zLXT٘~w͡qzڝ]klX&2Ztp`#UȮi{ܠDr£[D'S\S"Kv3"؄=Q5.oF *jK+`by5A,.@;u^T|4klQm> +BfQ].IuBB!r0:mD"J9*lmֹ1S~PvmS y-V gl5y2 n_Hw 7">2#= 甚*;vl1Byh_7S ?DH0"uzbVlF|iKnϋrdt癣n F4&F2=SGPzO =Rr]gH=4`"'c%= `d-u{k>1FԮ?̃}HhH|~pUk#X/_9Xc-:U7Q&)TbGLoDEO5ŃGJr:0[!r;C쁺gk";Xnyg㾾lqPafa x9c)%e4FPkAR+SQAXVyiݣCݹIK<^.>Bg\jUv IN T^2ĶlG<pnx {{4XG ZN'9'A/O"V]Lbk(4|c_4 Ms'x#V$: @m:- `v9"ˇX&*A4"`LK0My!ԺyٓvFpݜ,,cQ?  MMk*zy οP1Usrw}o9Nm*s18`9bTn{3(@27T>YP4aP2:!s~>N1禇D5?-`a&^h:-05Gj*Rh9u 7gҝ𜤴4(y&^}pwW&i4¢fh JPQY9KQdHG͊QNBΒq["j8_eGR8cD2c ^-ҸsfCE<S7jg+f}?Wk>B sh[E^QV b'NɠTosSؤ`щԤ?M bִk' Wf[Dbe.O7xo-%"EӨgaMQ5D ]_X&+{B ;ӞJc%e~ (/ (ns1hYdXnbRz(A}6YGiA\jB2˔Y ӽmQ]g[r Xe/5gz6`F^f/iJWԎ4HB"f6U(udЬ/^ "JD:~-!k| 9~jՓRwyP@ F!NVaHz "K@6:ӿKc2BC ,fh#--=Ruq@T?=ډ 0X5qW90oQ$<( &SqL- ?dXTdqUlAiF&47~׫_Kf17ёy4=qG&ʉgf2KlG(7`u%1YctiedѬqg]c#]ZVm4"147xVx=؎F!oRz5b[Mb'`38AGxgEpȟ)UaHy n[I3D,d]ܡsM_ZxPZ͵1FvpMs*Iqs %M%UTXS41>pL'y"EDiks9'X, ]u<(Ƶ)~+ɣdxFمϓʋB:3B^YZ>Ҭ~Kb}-LCS&k |lǖ(CTZdNYM gQmLgXLF:?ѱ+ݢ)iQazHCf+|R&# %#iE:U]3S;7x?}]1Iwc[X% >ndn鏳r$tg@l&I B -2 (^@I} ,5 3_㠩˦yRW:7Bm]BJL*E- XhЭ (bOd6}QtgN<-Ds ƹ+{`)CtW'*8W_Kba(Aӝ&yĺ!]jX]&1 Y'm W7K-S,NU {#}$C)H2 0h3^E{=E& EX|M,W|M>u-XHe?sig_]B (R~?^Ld+VjK블2J$lJcԎpO~F-w[|P}gD $ڧ72Oi,ŲƇejPS߁ W x uDf3x @+b{<&r H2(7Fcj|"kR2e%P@GO@DFϪfcOJ4l2b_1cD&H;_wgoc9,Zm16013unQ=XWSߓZ?wQ{@d~0SzqK1=?ՂoRgqL1ڍ(]_1EbO8n"1d)&)m%C(?0(,Zf8+5rutTp~w.f/ Ğa̦HD#SIYn<}o!#wU*!4nSA?]ړҏ6'h\ 4q zIy2Pe+-1Y[h$+9_ ~ dwW!LlH@|wk FhK_E ?T̡Hhfb,zJ"LR`8rƋh+7;yAQsBDg(ܫQƑAB;cںAGqQFʟ=0@J}z{zL^?BCU:>TP(M1AxahDyL&(E9ek[#뛝Y|%<`m 3 l#ɿGbYVfPv}@+u}ljR) ,Ÿ u4Z1T-Đf˾\wJ r~zg F?[!NhilM}NR a,j"˥skZCa--/@ZO[QglAKWs|[冨/%^^~(,\HpFD (gƞ(1x8kb>fؔ0SFP%#JD*h̴Jά 0=Qqh)WXr}X T)SLG"yضGu`P_rD 4:+9 F(%v5J-^ɀlqwD/bԮuIZAQ=/`) GbmQ9$(WX#B@f]mLcO$Yy4 Uj MǗCB#w :_㝝F2T$=vvvYbSk X^Wd YTQn\:`8(̡pmI1 \%$3ZsSsfJ+cHMqe~tԤ4Eks3_>-z *4]\bo 0h#δ DL<5SkT:Mtnn{|'F>|ѢpXKvedㄒLЊeN+:+2spbsoy/ P)kfte3or|=í0gڑPl/ -z[ߘ eVMt匏ahWgBUvO^LهLŮapPG[WuYM`Vopn!9p uP0yq(N\H ݜ&:s:EVk! 5a2팵*<:*IMWY*Y+}t8oe7Iȴ)ŧuM;jEHpeyx :1Әk'Zcۇb$TH,m` *CZlQMzG~״3gm0^V#kC+#R @A{1#Km>&bMbXz^y^(šʳǀ(a) !uåq00Ĝ&ئMC24gy9kBfA׾p(͙dߤ< ~N)#e?;LZ_Kf7f=oU͹{ #CLtoMΆ:v XOlץzŰͪ}jt3R 6d?uΌ36@݊ӏ:HW&:N+4%O㴿[ACV@~b9v&$?T.]b$!o:?ii4_3  g/_Jaq8i'T7y8tnPvC=,NIK-?8~합+fu#FA פɭ<\nm ۝ <^^ɟSL)L]ʶ]ת3%҆Aw+]"@釞ѻu}<0LS01# 1hj-'%”3RNIŐwhnp5 1$9CKWχؾhg9<%WMN(^߾&|@l3\`ԮW<5T7Ty$FD@3SB5yihN9F,u#ȜXBe0P6K ƞj0ԭo#W:T…_>[w0=VbBu@ REźzn dK᣻SZM3ugm mɕtN)Q]8:7"F6'n{aQhJM94e$,*ZRK.[P&"CDay/+~㤄I{k!d{S2"z5ڵgZghHTԜ :}kxfK%nbbǤm7lwJbX9|~Ya/;ws `C+ k=":{7Hv@X//2uI`lPT^OLP ~!fY}"e32KZqHNJ5298u\M)O?:J}<_dSK%M0lN/5ӤiY&O\)*FF?RGvzGv`] m׍|M^`o 'XG[QwQ\msAy51vc[2b딧h`9r=QFmuTۼB):VW. eWeS5 Xg5ex76=~47muo\^8YIP5XFEf< jPn[Bs#@C EcM*ͷ=$*7#25P4t@5-h;.T_8`ӔCNASh1rZOkWY\!Zʮr#u'tgoZΐpL?@.<&moPӍ29niLȀͰ;չ`6/'{O!6NElD 2#34JOB l.m|Hw4Jяfـ/;,85I'b3{⦼f]j|t6=`Oi@.)w9 #Rft.$ @zL~V;t*PLEӹâUm}y?]0R04EqT B@g0Byε9!W(o{Xf:"h(_x砿,jtzK<=ijTMWOG+O^p鸡J&oEbrlX$-R9Q}aL/5~b S`BL#HYDs3)kIOYe krrfsgsLj>dÐp GhW]?`_],L]wn{mSMߒ^H9*&x{0,tÕ3WIٵQƍQdsskյ]: L; <F8Vnt)Muգ4 ,UX7R%CL)Ƙk4ܗlٌ]FK %L i,B>N1*آ%4H`y&͐%h#5oA 䉼=dAi4N<>H \l5 \!%w5)t칵{=?-  zui3:Ӂj? P"`us /xJ.A_zךdovW0tKm$,/MɢS,z@:MҨ7nU06CrŃ'Į\ <Ƀ0 *+44B5(x(ʢGn'Ҙy54*^kVK@@5,Fy6LFVwoVHucyFU-IvhZIhȻ5ʂeg?ΰYTӴ |,P,12=P=!uCZyݛHbm  ڈ_s{?^Fz="1<Tk.,_Pz̷!qB/.܃/"+8ȳJM[kV j(hѱJ4 X*.ts5ˑVьaa (o+hK(扭>_|Z;T%EGcPn}`ݩ]`v6K0.ޞIAmeAΘvaؤ{38l˃#Ӌ 5w>$e%6Y+}BB2M Хkt6WwMK7~rkN8bT/[ZsMƈuOrԝɢRN|b& i)!! =05\ =e5$Y0aVc^b{VSa:Bc7++&7g rNP!>:-KIqͤڶN/Q'EfȠ ^=yS[J>Z6Z9#hؓ$ޛrj.:`Iiy4jXY-~e~|eٟTSGxSK_`mZ#!Ƴ1ב#Ri׹.2!qDHw0Zlqʧ*v]n .ʓy?zɡ-!B6י#mO&N?JLf">GgEK)m!"<+yad@QxQކ%P&2n̠Vvz@Am_e-'(9Pc:y͑Т6xa*"Nϣ䩀}$6uZ͂e̮cpfN$E72$#goy鰰n9"Vbq^j"u/FO燛bgAp53LBO7)b`AI[ّ,ztxd"NfK[)**4Bc)1~ϖIfLڕ°_8^Sr74с1&'q4 Z Ⱦ2(pb$zU['g9W.[5BdB+#@N (uyT-/`3kc2xlYyxZx.썋F0UJ s& ĎwgsoG6{aA2 v^xqm"u`/g&afCow)OhK WUPqWx@a['m?1w*wyPUh1IWnSeF|Prujgbms/HB/bg]Kùt"S98\D+ٖ,5# 'qt7/FOWpԸl7ccƢ ͼj ~Wp(:Ts1=͆͞}R >f*OLlyc5 4vHv] XuLQ:WnUH]JqQf#(}HQ\P?c*9 DPdңSNXBI$:B+ui]v99'C\̴<ktI^&]OvjBy] #|1]sCO%}%K>ups]싘D;;i5RǬ,w5b0eoz6@^j\gaNMG!~f4O԰dK]+j mmBOmĊ$d4K٨&ӎ>ؓy Xz3xѻ#tlF` ̑Qp>-O7jS[O`RD-5>/I/˳읨p0֗wOh(S" 2l]PzG$Qzt.Yq%r7ڷim rEXީ%` }rXo)IFZz-8v91wȷz9t*b>pCT"fsvV&{W-ƨ}I߄\uxQ,].upGv%+r NYsY`Uj3T_М8;SdBnsϷd?b륗mp1N$ɰ-\Ii2gٷ{-@70QpF;xn@@@kΑܸ$e%j͵l|nQ@WG jKռz!izzW!0@Љ Yd&ia)O[ꀟ(1ۨc.U (n ~yLI@++@{ҏ{,")̘xq)DݙK60cebz$!1H  1]J&[zŰziIR]R2F c.1lh,?xQf;syL_V` ZhLb_3oMI=_a~@]^slh"s/.&:VS?u RL2G :G;5Coj&?g8SwPL D7C37QS9߿v:\܂nJN9uduVzR`~ΥD>: ڧꯞ'czQ g]ofi mw_5+KBz(1GtUyGdgœ2.F= >~Z^[l4aYaZ/R=ʼnM\h{d6Rs,nq3$pɉjy 픒*1)ߚCIG[:6u!_b.E-K0Y[ReKh[}~/sz3'" cn*v7 &@:^4[Djt*p3B-~D3a9Px5GK7I)@lC¹,Ӽok٦zKσl -/5w냅_i*ST!nyTqboփsopOv$yMc9>yUc49xbD;{a,?P6̦~ة(˱A-=S]Gկz7=~؁ZDoP,.CψIq#?UZƾ8}Z҉B Nc2΋9R]* Bk?%@eW|]1m HVIgX@)e_tnD; ),]P%l(~@vzl~]L*[3 ,ȼ,wx?ę;|2~kH kUG;'t1KO=L@F؞iQ-;Ye̼a#!0Fy:{;lHԶ%RW c&y+ #䋝svr!yHA&k@Y13)ˋ/}ap6}MZ  Wf v@DIH:U_R43 r Gr"s02_7恚}Q,M|10N RW/2e^_Z(c y"޸3g| RYQk)4("wV=l1˺o:L|ثĵgiMR0 ¾[' 'rb:a~̔TB%xUR XS]}&(KKLjEQi6~:ѸfIG >ڮKC_E(TrԷodضMƋ@T>U@OMħךS@<'IF tɽW ~TR$:j XN_ _`G4TnB̙tEܘ67h*dj>9my M.ݎKXDžjǯS1^&x"ydZNfy$|R;D FG>r2AddbybQ|q\R Ovzv;3q[RXy\ejD˚捘鋣̌yKbu,Xcv[*.mq_}B]??(!y`zPfK=g(RL[F5&IٟPM{=oC-zSN3۩`k Րh}8@ϑDX ^x8;sGRȭަ;H"] 5.nt^g:SIPk]8_.MR56cL4Po'Q)s‚ZjJ|pNúzpL:+ucj%DڒQ( ctobE|y=x2ŀ;`/>Sno?$eBb;" *VZMNaSQdd-k`gD!tBѼ0CDA2&tC+Gg.^:w,lfoRyC:Pw{&VE _!|k8ם4Vb,U<㦛Woְr`` pC>X 'LutyHyiôLe燿׳Nc)&d%/-a3@W^Xό2ݶW%YBngtN02 ;i4P),ZWdd;ʐD}KGYLmBJ}Ch&/ +{Ծ}Tf|۝N jrP!+b3Y@w>!a)ю]Y$ç0UZ( /]-0@EWqfsC ;m8pĪFꓯQ@y7|ㅁpBX1_ V@vhBDE=9%l1Jn:x.کpq@&vjz~12exD.c*T//A`F̍&IFN=ZĹN^yd+ſmfp͆)P]y/iXt0Du>|EI5AbFQ2!NYtCGa7dW]&!;LJt}ZNZ87 *en`K"S#VhoX$Ӹ;ڐX2g?nJ]~P"HtzƄA⯹9p[h?2Rh=o ;]gW+;VBkdBqJ) P=G:DyDLQ'kOdᯆL_41Y:vtUޒVEX II#[*%AiMY]9!BS\7nĖD± TU`4f{S8m-^^9^j,s$Z>7A混GQ H=n-qks9w(cImoseaHTWTwDxh:`kkscW%b\^u# \⑙pRUE6 #ZÛI"ش.DP-X@9e| ͌ϳț2h 5M R/ƭ{ʔ$3M) ˿WoAL~ݨG4 sײu!Ef}{*wĭb(۹#ab]/kp'ۏ7s,l)/ %ܐiӎON0/ca:@u/ʲy/yx:J~||Mغ#ڐҧeȺP{ I>!=gSہzu}?{;rx;0iٚ8wF"q7W9-\HP'>N YDS*V6tfCܜae_ .#;~h"^!m5C$ꈗrO96JP7?<shE^m39#B73AF$0}[U|]ʿ Hsށ{G}:h><5-\f{t 3Jr!o~KOj^ +՟v-7L!Y頷8c8F"`ưB1_`p+~8p|:"7V'#OzƯxRF߆(k<霮:hFL4_5[)&556> ڋͰanl GL19w:E,3>5  ʱo6Swu4q711[ص$/TWBUN{|yMT8F~.gM{r(0bdTshh#)qihi0~(L*S٫WdB}zEDz~|G#! ȇjApAX(BKPw`B\c6@rV+cm7P31HύR.Ec Tw =]bCFb$v !N^xt{$02>қ < 'cbr){UPuMq1(N5?ƒ'e5^]&A0sESf [&3jl9mJf8->J;E~&oG/W`ssOPp݈M;^!EG5n?toㇳDkbZ}BU$NhzѮU@a{Ry & ڈ+h!knޥ\A{^ե}?<==gH)j ::KC2ẐigIYLp@, g]2,=V4ڟ5^n~cu c0SBe/ĕ2dHw=e"UO>,*bpI$#-bfiSkꉯ1rJR3%dLN 7:;RjH8Yl'Ix΍FSpqc>l8wlWy.x`앉e'C='5!_k7mIN{HbLÓQ .!<2Յ-) KTk&px$k*2u}f7T cn8B}l7}AZ8U~zM/7+/ &{EJ;^I1Q/b#N+"梽[-uMwx޺h-CPbƻfwc[-78 YDدw's^?/nJzwC056 AS9l웴<Ԥ`'D`.`?=i.\HGkʛPGRC*fgLeMQ`Z L#bO^c "@d -x:t1;Jed3Sak+LpvG ϻTbg 0_af*"CkI.Zyiߔzwҙ ;WU/I\R5nf'oMټs$:~C%۪Jc'b'Ev>,BԋMJ\AoǍ-bQ}+>%\*|\[My6[ĝ9e>`w.P_}0aeuJ.27`>LM{0vŶl0mB]2>U0rxyS\X!O+HM^+CݏxJkPTuCU[qҟ bYi~hVkg0EBPOBu7XЎqE8R5w7g@ +\{ +)rׄq> G_hnɻ Й4!˾P㤗~%զ?&=֮t$\IŃ |lJz%־fFj](7}7+8-%?7Ly15Eu8&: J.-b>H Jػ@lօemKjGѯI=n aP7Hu 0 ~m[n=Gpu̫fC&c E?E vo{k55]ă׿-"}7C3?C!G0vnkŀZ.vcjvp:5m<jfNr&z-nH?}.a]4 ~h1^@fYEh'?ٚ rw ;"XOUӜ4Tx& ]=92^ +)9}{A(X)8`+܎sW"5, &7y9u<{X`"{քStt Ƿw)&]fgylh-+pQ7 cOe!A P)~Q!_qcWaӵzl;=3i=[uy?[phR\«Seվ)>H?!\$))! yz^_PiY˟*yhAJ~`y/]M٪iGxg /n6KpxE7WR [`X EM#_>!mB`odpbI04VDy haR <)p+` -0~uP@E ~%lb)3ՐtN#Nr! OJH@BnBU0|XT@/4h̭*RߠPjZ*v/nؔWqќݻ:z+:v%7d #<ݦN4E}{FQ8K'/"2闉,ST^ 5f"bc$i-۶Pc*~$,{? VχmXS|\N6}>v54\7\{4:e`L)m~hW #6?奎÷ Y#Wr m.Ou?0E!R6~'1xӷ㍯i_E9ajE΃S;/$:Kw"s~650-.TtDBGI; wѓrOmbD a~=hW0Ni&!vqV) f SA>_걞⋊|sFjrBYKIPh$X9ro[ؙiq^{)7T|b}czKGw4{U# jZMkУBQ 1fqŀZ+PvKm+8Q"yRnݾkdyh.+P̟G F|))xdH/1TpPgj&NGU@9,z"Dm Dl(}$>Ғ *@?\6xUgdp3(be.\ϙ8]2v&|>W..swƥYԎչlo'ǰѴ~$w5\0#l@a9 ?x*+p 2 |"h‹+m9(ErP.B~gXzfNfAƯ5%Rދq%1"uwϮKȭl{yC{D^n~LI´.!zf%NV%< ;`eb*xdSږa)0_hBTWsV Dʕ}2 .-EVfLKUaqQ}*U1C_3|w-,=<[ M;ifn^^2M~u#WAΕ4@5֝ǕX=W06x#@{7dTH_ %.җdeO1.B^82T#e= I,ހ[Z'1p 'hGCz>JCKQ,i Re mTtW(w- K| Lzל g_s&hWNyN3%hVi(ʑ ; $/.jsy-楞7[DhՒUR31芩`-ZʹUe wpXt{Gehj:~MyGX/Z-gHW!/φtH-ޯkцG_J\%|}5v"G=Epz5T\#4UʙD %ͱu YQHX0mS&k Z%*b\ hӧUt$S"( 6ՋOsr" d075 sPj61Gi,F~|D {z֎@Qy =5~Jg*_۷KC8 4ZT4LL {Q=-J d6CCTJwޏ}x& 9l:غ0b%;,CVcyrF41B^`׮t6eHNj&*n7C4%,@c5P|Arg86,.fA zy좈D(v$MKI6*Ҋ% y܀ Ħ=?Ŵ%+|Q]j׸3QGYz $6awT+7_>>-Y"*# aԋЌ.mtHmZ.4vm|kyn;iM:@Sj/[n4WimO O2009֤+h"H2@ :uOnB lΑD[y7˲Aжu`l:҈ĉ:[]4ac=8ܞSJ֜@{"fҙVNY:BV S~/爔ǜK-Qe {2;7>' n*9PaD@o!gA{8AcfT"-9&z0b@I(;cvĹݯ"<ކ/P*=dɒkKBx-PqiFZp] Hӂ"kcJWv/6w4-%Mf$ZDI*$gtrSCѰNYrFSY\s"uRˀ :s/h]śS9S%`gT<$2L\nQᄴV̎s(5|XA4&g8ɖNqߐ`+N*4J{@m33'7q.dz)=?9=L}`_Zg oEl= MR!̚3 P,Hgxj&2X|L"exM'VǣCC@6*ōvҁ#S8IiKRpȴRŋX,|mSȆvUWw b3 DTz[>.aߦC!VWu2twRH2#,ㆭ:0,|u "0mhg;VK"V ;n\o7]6Pإ$#uqar¹NDy9&-W@DIFaR J*,+qX9` [!2[#3%DQ@HUnA|1==h )4unJ46! ϥ0@ަ|9L\ U# Kժk+j?۰my58x".|iȎlW7-!]I-Ѐ"!z,MvXA7u}]\{2dOEII VEj {!QED728I~N36jR 8xvW4e/:5PEulDM/H!Xn/J|} Ժ&xnRʵ}mHD{X愪*h$M0,F뜳♫\c+NҜddoYcӂl;nEc{GBHc\<:;MQ]To|chF6-9HPMLLvC WĴc мr-at>eWv='wL8{Zad޼秮(y+vh6,0x?)#4C>[zr=!MuC1pENird/& }.9&^"x14~ 5Mrk>ނ&HUnQ:zXo^3 w=J)$h{R^d2pvr2}"'{&)áGM;Ún՜dǓ%\ݼ{".Oa#w(qyTczVa[rǀ"&I܇lUKb+)N~#v([ o}^hm:2" zl+~Li=j@;ҎpP=k(ɨݸQmqaU6][l3R?f)l}Ds.0ٱĽX寡co,#(ӧgCAʬ0rc=u 瑫(m:&g"r ێ#+^:%TG4CÕM;wvyv{J=ꍿZ%["%3@#x JO,ARzO{.\QwKi/x8yvG/}P4K,Ŋ^VAXƿ(Ô嘇j߁>3^)l Cbv^O_:x# B,: ּ,] ۷rg)K. ּ_:k&ōf/d9 +:G[2bY ,p\Yq Ns`-C~ zR ; ADa0Ⱦ'ԘF{Pz!fP J“;~JI]ʮ70؀bm1lkRc$@fs__8J+L~UNTX|Kp!Q\zqr(tgyu][$imʊaq7@ʼnJq]Wp(̫n%HFt?w3mu r\n23l36I׍C }Ď/ېuBlLXNꏋ>֡@1[s fyuFo|WuZ0Cb($꣙aItdɨ|9QNAbV4v1vŪ+IY٠+eOB`yEi`cD5/uGpȱ{7i!W:%~RD`Џ_}rW3Wm&!N%?w<luh9b9M[ E.k {,4kMSȌ.-6"׹r' wW<?[O[wA%J0xx1Xzɀ 6KY辠ٻFWoG-cSdD-bZ7I9a?<.oC\dV_g-җr.YbA4^bB3yHW+iw M_rd#'J 4> VkoJ IՊ[ӑ c{qoUZ19Pr A)sw+N:5s3|C il;ןś>$ql,= LLY57/6w tDq<f;#T NeSw 1u[Ag:Uq0Qu$'ϡ\2[w!< #ot6Р!(w7yK,xnղ\z@.bޭM$ Maa^_; /zW`{d}kS5{!sXJ(uܩJlC|SlTk [Ya$8w2R<0Y4ٮ>> LL/ (υǓ,.hџ%8W`,6^\v (@lۼ!(pZf'n—fA 4#Csz&^T$6dծsC^']Q[Tz<^+ ,