summaryrefslogtreecommitdiffstats
path: root/ipapython/certmonger.py
blob: f29050ea96318a9564358f42405fc8849a2e27b7 (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
# Authors: Rob Crittenden <rcritten@redhat.com>
#
# Copyright (C) 2010  Red Hat
# see file 'COPYING' for use and warranty information
#
# 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 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

# Some certmonger functions, mostly around updating the request file.
# This is used so we can add tracking to the Apache and 389-ds
# server certificates created during the IPA server installation.

import os
import sys
import re
import time
from ipapython import ipautil
from ipapython import dogtag

REQUEST_DIR='/var/lib/certmonger/requests/'
CA_DIR='/var/lib/certmonger/cas/'

# Normalizer types for critera in get_request_id()
NPATH = 1

def find_request_value(filename, directive):
    """
    Return a value from a certmonger request file for the requested directive

    It tries to do this a number of times because sometimes there is a delay
    when ipa-getcert returns and the file is fully updated, particularly
    when doing a request. Generating a CSR is fast but not instantaneous.
    """
    tries = 1
    value = None
    found = False
    while value is None and tries <= 5:
        tries=tries + 1
        time.sleep(1)
        fp = open(filename, 'r')
        lines = fp.readlines()
        fp.close()

        for line in lines:
            if found:
                # A value can span multiple lines. If it does then it has a
                # leading space.
                if not line.startswith(' '):
                    # We hit the next directive, return now
                    return value
                else:
                    value = value + line[1:]
            else:
                if line.startswith(directive + '='):
                    found = True
                    value = line[len(directive)+1:]

    return value

def get_request_value(request_id, directive):
    """
    There is no guarantee that the request_id will match the filename
    in the certmonger requests directory, so open each one to find the
    request_id.
    """
    fileList=os.listdir(REQUEST_DIR)
    for file in fileList:
        value = find_request_value('%s/%s' % (REQUEST_DIR, file), 'id')
        if value is not None and value.rstrip() == request_id:
            return find_request_value('%s/%s' % (REQUEST_DIR, file), directive)

    return None

def get_request_id(criteria):
    """
    If you don't know the certmonger request_id then try to find it by looking
    through all the request files. An alternative would be to parse the
    ipa-getcert list output but this seems cleaner.

    criteria is a tuple of key/value/type to search for. The more specific
    the better. An error is raised if multiple request_ids are returned for
    the same criteria.

    None is returned if none of the criteria match.
    """
    assert type(criteria) is tuple

    reqid=None
    fileList=os.listdir(REQUEST_DIR)
    for file in fileList:
        match = True
        for (key, value, valtype) in criteria:
            rv = find_request_value('%s/%s' % (REQUEST_DIR, file), key)
            if rv and valtype == NPATH:
                rv = os.path.abspath(rv)
            if rv is None or rv.rstrip() != value:
                match = False
                break
        if match and reqid is not None:
            raise RuntimeError('multiple certmonger requests match the criteria')
        if match:
            reqid = find_request_value('%s/%s' % (REQUEST_DIR, file), 'id').rstrip()

    return reqid

def get_requests_for_dir(dir):
    """
    Return a list containing the request ids for a given NSS database
    directory.
    """
    reqid=[]
    fileList=os.listdir(REQUEST_DIR)
    for file in fileList:
        rv = find_request_value(os.path.join(REQUEST_DIR, file),
                                'cert_storage_location')
        if rv is None:
            continue
        rv = os.path.abspath(rv).rstrip()
        if rv != dir:
            continue
        id = find_request_value(os.path.join(REQUEST_DIR, file), 'id')
        if id is not None:
            reqid.append(id.rstrip())

    return reqid

def add_request_value(request_id, directive, value):
    """
    Add a new directive to a certmonger request file.

    The certmonger service MUST be stopped in order for this to work.
    """
    fileList=os.listdir(REQUEST_DIR)
    for file in fileList:
        id = find_request_value('%s/%s' % (REQUEST_DIR, file), 'id')
        if id is not None and id.rstrip() == request_id:
            current_value = find_request_value('%s/%s' % (REQUEST_DIR, file), directive)
            if not current_value:
                fp = open('%s/%s' % (REQUEST_DIR, file), 'a')
                fp.write('%s=%s\n' % (directive, value))
                fp.close()

    return

def add_principal(request_id, principal):
    """
    In order for a certmonger request to be renewable it needs a principal.

    When an existing certificate is added via start-tracking it won't have
    a principal.
    """
    return add_request_value(request_id, 'template_principal', principal)

def add_subject(request_id, subject):
    """
    In order for a certmonger request to be renwable it needs the subject
    set in the request file.

    When an existing certificate is added via start-tracking it won't have
    a subject_template set.
    """
    return add_request_value(request_id, 'template_subject', subject)

def request_cert(nssdb, nickname, subject, principal, passwd_fname=None):
    """
    Execute certmonger to request a server certificate
    """
    args = ['/usr/bin/ipa-getcert',
            'request',
            '-d', nssdb,
            '-n', nickname,
            '-N', subject,
            '-K', principal,
    ]
    if passwd_fname:
        args.append('-p')
        args.append(os.path.abspath(passwd_fname))
    (stdout, stderr, returncode) = ipautil.run(args)
    # FIXME: should be some error handling around this
    m = re.match('New signing request "(\d+)" added', stdout)
    request_id = m.group(1)
    return request_id

def cert_exists(nickname, secdir):
    """
    See if a nickname exists in an NSS database.

    Returns True/False

    This isn't very sophisticated in that it doesn't differentiate between
    a database that doesn't exist and a nickname that doesn't exist within
    the database.
    """
    args = ["/usr/bin/certutil", "-L",
           "-d", os.path.abspath(secdir),
           "-n", nickname
          ]
    (stdout, stderr, rc) = ipautil.run(args, raiseonerr=False)
    if rc == 0:
        return True
    else:
        return False

def start_tracking(nickname, secdir, password_file=None, command=None):
    """
    Tell certmonger to track the given certificate nickname in NSS
    database in secdir protected by optional password file password_file.

    command is an optional parameter which specifies a command for
    certmonger to run when it renews a certificate. This command must
    reside in /usr/lib/ipa/certmonger to work with SELinux.

    Returns the stdout, stderr and returncode from running ipa-getcert

    This assumes that certmonger is already running.
    """
    if not cert_exists(nickname, os.path.abspath(secdir)):
        raise RuntimeError('Nickname "%s" doesn\'t exist in NSS database "%s"' % (nickname, secdir))
    args = ["/usr/bin/ipa-getcert", "start-tracking",
            "-d", os.path.abspath(secdir),
            "-n", nickname]
    if password_file:
        args.append("-p")
        args.append(os.path.abspath(password_file))
    if command:
        args.append("-C")
        args.append(command)

    (stdout, stderr, returncode) = ipautil.run(args)

    return (stdout, stderr, returncode)

def stop_tracking(secdir, request_id=None, nickname=None):
    """
    Stop tracking the current request using either the request_id or nickname.

    This assumes that the certmonger service is running.
    """
    if request_id is None and nickname is None:
        raise RuntimeError('Both request_id and nickname are missing.')
    if nickname:
        # Using the nickname find the certmonger request_id
        criteria = (('cert_storage_location', os.path.abspath(secdir), NPATH),('cert_nickname', nickname, None))
        try:
            request_id = get_request_id(criteria)
            if request_id is None:
                return ('', '', 0)
        except RuntimeError:
            # This means that multiple requests matched, skip it for now
            # Fall back to trying to stop tracking using nickname
            pass

    args = ['/usr/bin/ipa-getcert',
            'stop-tracking',
    ]
    if request_id:
        args.append('-i')
        args.append(request_id)
    else:
        args.append('-n')
        args.append(nickname)
        args.append('-d')
        args.append(os.path.abspath(secdir))

    (stdout, stderr, returncode) = ipautil.run(args)

    return (stdout, stderr, returncode)

def _find_IPA_ca():
    """
    Look through all the certmonger CA files to find the one that
    has id=IPA

    We can use find_request_value because the ca files have the
    same file format.
    """
    fileList=os.listdir(CA_DIR)
    for file in fileList:
        value = find_request_value('%s/%s' % (CA_DIR, file), 'id')
        if value is not None and value.strip() == 'IPA':
            return '%s/%s' % (CA_DIR, file)

    return None

def add_principal_to_cas(principal):
    """
    If the hostname we were passed to use in ipa-client-install doesn't
    match the value of gethostname() then we need to append
    -k host/HOSTNAME@REALM to the ca helper defined for
    /usr/libexec/certmonger/ipa-submit.

    We also need to restore this on uninstall.

    The certmonger service MUST be stopped in order for this to work.
    """
    cafile = _find_IPA_ca()
    if cafile is None:
        return

    update = False
    fp = open(cafile, 'r')
    lines = fp.readlines()
    fp.close()

    for i in xrange(len(lines)):
        if lines[i].startswith('ca_external_helper') and \
            lines[i].find('-k') == -1:
            lines[i] = '%s -k %s\n' % (lines[i].strip(), principal)
            update = True

    if update:
        fp = open(cafile, 'w')
        for line in lines:
            fp.write(line)
        fp.close()

def remove_principal_from_cas():
    """
    Remove any -k principal options from the ipa_submit helper.

    The certmonger service MUST be stopped in order for this to work.
    """
    cafile = _find_IPA_ca()
    if cafile is None:
        return

    update = False
    fp = open(cafile, 'r')
    lines = fp.readlines()
    fp.close()

    for i in xrange(len(lines)):
        if lines[i].startswith('ca_external_helper') and \
            lines[i].find('-k') > 0:
            lines[i] = lines[i].strip().split(' ')[0] + '\n'
            update = True

    if update:
        fp = open(cafile, 'w')
        for line in lines:
            fp.write(line)
        fp.close()

# Routines specific to renewing dogtag CA certificates
def get_pin(token, dogtag_constants=None):
    """
    Dogtag stores its NSS pin in a file formatted as token:PIN.

    The caller is expected to handle any exceptions raised.
    """
    if dogtag_constants is None:
        dogtag_constants = dogtag.configured_constants()
    with open(dogtag_constants.PASSWORD_CONF_PATH, 'r') as f:
        for line in f:
            (tok, pin) = line.split('=', 1)
            if token == tok:
                return pin.strip()
    return None

def dogtag_start_tracking(ca, nickname, pin, pinfile, secdir, command):
    """
    Tell certmonger to start tracking a dogtag CA certificate. These
    are handled differently because their renewal must be done directly
    and not through IPA.

    This uses the generic certmonger command getcert so we can specify
    a different helper.

    command is the script to execute.

    Returns the stdout, stderr and returncode from running ipa-getcert

    This assumes that certmonger is already running.
    """
    if not cert_exists(nickname, os.path.abspath(secdir)):
        raise RuntimeError('Nickname "%s" doesn\'t exist in NSS database "%s"' % (nickname, secdir))

    if command is not None and not os.path.isabs(command):
        if sys.maxsize > 2**32:
            libpath = 'lib64'
        else:
            libpath = 'lib'
        command = '/usr/%s/ipa/certmonger/%s' % (libpath, command)

    args = ["/usr/bin/getcert", "start-tracking",
            "-d", os.path.abspath(secdir),
            "-n", nickname,
            "-c", ca,
            "-C", command,
           ]

    if pinfile:
        args.append("-p")
        args.append(pinfile)
    else:
        args.append("-P")
        args.append(pin)

    if ca == 'dogtag-ipa-retrieve-agent-submit':
        # We cheat and pass in the nickname as the profile when
        # renewing on a clone. The submit otherwise doesn't pass in the
        # nickname and we need some way to find the right entry in LDAP.
        args.append("-T")
        args.append(nickname)

    (stdout, stderr, returncode) = ipautil.run(args, nolog=[pin])

def check_state(dirs):
    """
    Given a set of directories and nicknames verify that we are no longer
    tracking certificates.

    dirs is a list of directories to test for. We will return a tuple
    of nicknames for any tracked certificates found.

    This can only check for NSS-based certificates.
    """
    reqids = []
    for dir in dirs:
        reqids.extend(get_requests_for_dir(dir))

    return reqids

if __name__ == '__main__':
    request_id = request_cert("/etc/httpd/alias", "Test", "cn=tiger.example.com,O=IPA", "HTTP/tiger.example.com@EXAMPLE.COM")
    csr = get_request_value(request_id, 'csr')
    print csr
    stop_tracking(request_id)
lT} Ԫ?0!Q]H1&6vΗ]p)ZeB̳&KOX+Ty7x = c.nKދ+gx-2!G4e'u?C} Y.:wd (؃(l3>rXjHtBH$}DHЩD_DCi9KL/81{ (*53DU)EuO̒ʥ'0@\Q+ׄ.NUCDC>9V,0^U ;fjG=ަڤxl "_ND˜`ХH#Ũ8d+9˿샴 ?qGA$jU7 l.Myw C*IAtÒE gr$c"A=5j4R[Whg/)Lİ@{2 ':aiNiG f>(JGZn;>¢a9%yUtN}ཎ3fvtkbѩjh:e ]]:|cͤwj"2)]ca4Mު1e& "6,4F܊g&tGيvD)2RO; o@2ޚ@HwUB}= ;=c)Ey~c@:mѺ [rj=Íc76iC"bLWxkdQf@E5pe#. l{ dBa]v7m1y*!Q؃?6.VxG3=' 6 zWرZ@ViSɷt#|Z0d٩à((BCS\g-kE.2 jyOYSRz$) Ɇ;Dx"z;`):u%9tnFUs4})sx 2TPmoϤe`*]\fA.`-ЭG*$:I 8+q҇PE:"däixx0P!tu!s a!q}j&_6 99_p}wxЎ|'JK,ZY|x?tz0t7v% ʿp3Q~ie[LK”d A5D`ay&*)p%T]yTD@.ǂ0K}GE]fAyEqqn_Ҫo<8Q憄4+ih(ϯ=UJ#h+]&r[] \QHthrAbPr۱} uf2-hܫ'(ΦZq4E 1LIe~8 Q ]thtU*"Qb̅,܃CրNV)#ڏ("wn!  >_TԖb`CL*=E.oD0ZT';j|?t.b{ i\3a07V?!a\^ܽƹۈGJ &C8P^kjHƷviım] PygRtfUHـ6nfBGSx[ U[$$yR!ҍܳ%;}@5J;zf cݹs$3DzL*//F!#PfoO$LPhyjbi퐁V{ƉI=' n]+0>#yߩ q7Ah}=DC'\n{\ۻnK*M9QnQs[Q^6d=sh1nI9alCpjuQ&\"NN˖g&:?>oGoad/Kn9C$QؓH *x|oZ%BG6.M(TxE$cj6ewRGA}$Ю ŗQ~zfαQ\NcLL&1<;+qvN| q(yh6$hyq_qVIBbf:i~3v_X>!K̯f%3PVg%)A)7ZbŁBXIEn|lώo*v O FR?tEŪײPJHЎ|ANXH:s\u*Gud']j&!)W;E|VǬ}pA`GFKMŮ>1T!ԉWϴkx ki|LtVBefD[NB]m^N'JdkeKW_H ͬ``i٦QgԑEZuEYH'ۤ6I*7X`=*'O*maf+D|s$vQԀ|?h'/DV/R f30nF} `lde~i6Z6Y-ЇIo`1ckMHGkfdȑ+MWE-#GfS>?4~< JWtz8PeP>SحW060Zɢ8uf>PRDF:ÞkϨxΠh.>NӀ/owpGU#%ѲL*6tZN 26%Q+daAU.TSypZ֦Bw/\4{"^}WOlJO}+R k bSPn+x"o'eJAULTcar[&ڠ,` U'thwav֬-m5ExBL+G cgʴE<*RJ7'b {[N&6tDg!w]TSjs xB!0мM+5&dfn3F `ʴx?#b,kO's`w`=6[%pʁ5"=Ԅª^H7\x)MO]=v GC%vb=i ^׉Kw #Zo`})bԎ1Z9ɇq0T.!ZesI5iDFXBllW}9wK~B~"/s.6ݿ#/)-A_j2u|drR*bߠc:6(vqD5 l ,χVnjK(HǺ{[dil"0ҮF(g/`w#lثeI]\&`k9 ƅ'xJ R/vɇ>'B ܠͰ"?Ľqgd4]r^WZ6y@(ƸhD1.5Sp_΀k|K@9{Cgnj5.0~]L3{Pd=:~}.8X(u}~OL%rM"XIQ˅=PX(kd=&uߠ瓦I~bG[,,=xmBqggʺӣDf]ZpZjzU*=8AVOdZ!ݩb ʢ8pS?>Ƒ/Pqx#5`}Z*}$rac ?9-` ѱPИR{pJxZo d;qo;VjoONa4˖fTt`ԏVf^pK;R:֑s3',a>>H^/Hxs>T ρ Tg =a˫h{M IK1!]}KMTGHZޱH(Z(.n 8𠨻0Yx^ ՘;zHƝI `;69kF9_YE{." u(,`p_˳ͥ:W,00cIЇ t|ݾdKPX 'kdJ(ˍ,tʨ*ۢHftƳ(m@clO}zeAb݌CrrB^w]Ըp)aDn,":f~rm9npϺ 'RC(㽲z8o2'ܬ+P͘x.blUwR4jzs% =s>a8W]{]IzxBgjb[9!xwК? x hgӉ|?GK| E;d nH/b`V&rĚ"X4=MݒrքFU89Fg&+{УK#1R6#t,*xS dfN7+1R˿~w%;*Ci̺}52 BAt7<[OW64i=@o\0.i71@';4&#z$.ܡO\905$@.0i0{ŰG( qݍ*-y(Ĩ=|ąs+o/k?w &r\£|R䁪SskzM9\!"itxH_xs]R>ic8ys =Vh]9 Z^* Pgڷ_i{2BYaX񱼛ۿ70|!tbhdP*-5qCŗʉ IF`|&0wmYpӽt9]Q*ij'OS%44Wk9 HH436y0b20;'lě/0)jkIs 4G%|<`c EZ2i27/3Qȓc!)oźa1(:p?@6e|njs, "OLaUc39ٝp( ܘƠOɕ.YcNr/skm|,Ո.͙zdR[j1]cN f&C%~SD/ ʾkLj7vR=@;#+Mq=[GD к~ƞP%[񕌾1lB G۱qNLr͒{EB ʇDAGICl.$0(+ vb@*JJb[k?Š*d6kr[B/hiWէ8%0%GO*{gCu?i!jg|Oj׃g'1LIUwOް$ ƿq1e)p5B`SwզVW @Z) )dC^Y_042b`fX{j%΅ |]"TjuCkDFxcX\DҙL/EFeQ;Lz$\ ; (zބN+$;R֯y Ib bSb<x?4mBʤ:cUmT$8z« ٥^UUBuBblI ~NHM]9Qq[Ҡ{, .;P`_ڪpKn άn?n:0?Y/ p*o'ؽaxqo`vҙمgǣ n[Qym C%IswyT!:~BD`7= f-M;bh@p.f7 pDDG4*ӿq (g 1Ѻ6'(RE~e}:`5Q͗@3~Zp5//΂Hj ̈́htwV['9V,ϡ\H0BOO f}4I#枊, m268Z[5αS *7?{ h$G4-tn-f/Wa Jªȋ)Mz{#p v4$ _^gR+zBheK{ \˧%VK>]VAI#十| kitL_}ln|f;TfRfo:Uv+oIFɹ(ۥ _.% <>_̽9!uX2;ZȢ ǰƔ%Evn~XZG JN]X/p7'!DSdw\^(+D1 u\',m\t2[6 p .陊GyA<{l,Fn1I=\aa1%e]RʆZ@+ d %Q0}_Zp꘩鳠au'[b@ a?GY0ẂDe3Sa~:P3+lr3JE\|.#T/րDKͰ^ ?4B2 117{j y,ӟFҵK{]p[* >7!_lz57쫸cxQ!* $I7P%iIH M?Y~^S }82;JYC.fWmġ[IU*Ņ%d~dyHkYCnM4FqXG{괱gߚ*]X|vq(-y,MAޘT':TTLCp7]Ƌ%ܫn+Bh奄y(F4iű}YP"K)hPŻtP_,> ܨ}{C /fz~}/4X_xbmT2evQh/:[7YQXfHbOZ9r0_g3,MlBBGУ }ARk$zYk05 ,u(F)^<—G0xyniNm6E`b3ĵh<=t]3S*=l?)W3,evn4eG$([bib5*}|h|+6;x!WqX-s ABKVn"@GA?gi%}95|_v d-ž Lf1ivnjgr($~WarV6P#jn.VX4 FAh-&c[Qh:ot0x8 e6pNZ{!Q`5Ko )%=!F5!Gl$1+E ^C e #^`IsRpͮu6K  0I1;.#F/Ī~8Qa̎{(̍`uU" cH\6/ D麤7ChJ(!ȍ_e(\\֙{Q8`yZQ8{Il0A#|@[;~i1TKH`K*)@3/ qudɞw+zq@S7PΆdc pE#:܊@͜0ƄVI_)\ ߹I Nߘ7,6wxƫk{nU;f5 P~3uVaV X f9|!r_9#e0im^mٰj_דV|\-#qR"$˜pB&{LB,(/EqlKP<z+u.6)5Ό:e1@6VHگdNp . ,М;V=$ӓQ)`F$)e<" 24%7O?;Ư\H$en{B ~ D8|+ CNv&Id>.bn#h)>cfv+IGl24Ja.ff$d T+#h2rRvq*Jg64.nv,{ hO¿#V})HfZb5i&Ha L Ma0 GWF. 7u?MR`]&>tG@mY87&D[l:L =6*qUE£鴨 rЙ|KIPT=U{^XxLj_LD-2W]lxsuxHA\-Cv(>( 1*[PPP !w69L(SouH^oOvXO]„>"ی\ f->[uLs+4͒_wcySO h+&v(YZM,s5dzcA"nɳPP;J5Gj<4SM 8(8&,7`<=e{-.JrO?u!;kF<%N׍ʚFEX $ZMݙ]N#9|vk/MW@qR+wJn1w6 |D.7XEX)!dIaӜ6cᛲ8'Dc/J&ѓ /4 +:rF-_IOn> /]i@@u~JX# 6DwN`1%iڨϖ6İ1iƂͰdz_{O. {As+jÀ^^pE++Y؋߭_᪳/PVhFn' ,\ǗݪܧhC)!Ao dvIԯ*rɏ+W. mc0{\1`hٛ4_˨BkB38|m@w6F(rl]MuaUP>CLEDG["Cs`qxh.% P FɄr壀1R=]V6's#[C4ICN4(VC0&ZKrZ񁭥$yu"s$z*4ɋ!_#sFjUaIC+IJv0w2փ5u^4x,pEC (FêظŝUbH'Lrvn}%t1o9d nk7IK `Rs/S ӭ<ͲO~4 ݼe̋F\ >`Qy2T4Z8saH=eKTbN!Js{!Jexy@,gv"*P};Mb}dsxud4^LQs,s F=I#>>gEsUwH/i\H;}V\P{ *X[`bC'޾j5Hd{[11#Ts#m$ .)Gmmb>yAQge! kd`DK%I]GNӮl,A.Lx^8x?2b~2NßIت&Ϸ*9|$XGj> =0AʉeI4aUl˫y1YlGk%:-қ;;E2i26UU?+Q\S!FZ4FU';otE(l_ѡ((1`Aj=xzW`ܴm$`9GDKoK|Au.pt?1N/ʏ:>?I*9cM3%qq=*xU 05 Eg 2o ЫȲ|Da[::DnBbdx#P%?$+ f@y_tpIb]Khweɍ9G1؉85?uyxU2A0) T,=f,#qM!#x7܍#٭H_t{ʞO V0 ‹{@B V9 IX{:,ׅ]nxngMƮSDHZ]`64A#X y{dt;8@s}gS-?7ŭ4'wOF\ ELhvbȻD߄^҃2)mݱM!kgT^ُQqϒR=Zp) x2Ô^ (SтV}g^1Y6X,r]亸yGϻ @2677K%*Ԧ^¢렆PdR.IfWɔ>y4=Sk\{9% B̎sU[/{i~6I -:밆=ԅDۏ '?G߼3'SSiYr8`G J5w$2qȂ9lytߕfg/(Rm)њ5Mc/:n}WΉ䅒$YzH{OˢMphX9d4X}FW$'E׏obgQ٘Q0{^BCwD{M]>+,fȹG"8}'39@X|b*yil6-1PȢ;ԛ(OW*Y%tec1򜏐|ids.bJ~ZQ/v];8d'@nD8!3WF=E?t"i9{v2;Ғon5 7&,qynpc&C? z[$8==?s28O#Zq'59zC#%A46I.1;8bH5 !$ԍˡ݃+m&?ɗ'@n*Υ!"ѓׂFTOf. ycdLC÷q6cT}P&[O qV?dE=9(U J~ A|}Q'"^,֢Kݪ-lg3Խ Ϙ0a+h e¿8(@ʃyO/ M h٪[˚S)?q;ԃdڴ}Ce5 l24ϏmF~}9<m鐚$)MrQQ|sů@%%$ꌎa<ݵ_ó#ZуȜ@A//AKbXf?fh<&xy xʺ8sS{QĄ,K9f<`*BmVa*(S lݢ^<>a2B]u$p,JPB Ylo jk_ mMMi$Syo׭&;KG[ ɑ/L#yhBorH7$T7^S>X:<{ NQ`@9[,q `DDnƩt`m4C*dj?mXn{6Řbnf8iMc}{6,X:_&05o*84=ze 3W}ߋhnE8l>(^l hOٻV*yֶ&2Zk+!'Ԩm-rz9Lʄ M<"ގiEv!#lYedͱߍH: P5ncO};A+ma31#x0-~jZ\ E=dĶ)"V87k cǖ^w^ wAW0vfbadv9T ۞z}.q?`hCt-O'h}Kjaz iXa5)bpA_ 2(\WA xjAT[;|k-_݊w쒔i_=.CJPhv[\++39G­v?S0HA st>ɛgV`R L:8 S=ȉ& \C\Rߜ_[#q m4 ^JEg{urT.ޜO8'TI1[[2]GHؿs<--c^GEG]X.7 2GRo~ )fb73;z? Ҥ{EyAndס*fs#`j1(2s8+ >}6Egx=+ fH i쥵&>#Σ1`6f Q]u@ jN34e &]|,LJFaJ\2F,?tզR.Bާ1MnK,ϸX ]L<6-܀tꘗzj卧^02Cl?E d^},nda:73<|Q[s$+mHIUUHeG !@qkO'BPǧ2<5o$ ޚl J3j脋7+62ik$c}82ʎ<=so\ضpՌrot*ن/z1 AS>\dcn[S+ i#4@qv&ղW^QnYpz҉C.[Bʌ'Z5b׾&釂EnGP@A-8F>^CLp9'ُ>e&?CO{{ I;3or͸1?vFf%Tx֋ʷAI0#h*|I;<OxHcn2@u5 MmجU0rDs%A]]n+鹶V7o;i5'$s^$i9kR-YW>Ȓ3=9d^,Cr4Xۏm E׼)Z/*>oׇ^;t58ek*$i7)? CK^ 6 ˈ3%8Db.>[.V-W*Z.:@@ lC^fS%Ďb~#MȓK, H:X6ΐz3]| Q]K! (S~a!z@j+z]d-]XQ02A$]V0c{RnFb`s^Jzeփ巖1"HڬvoLMǢG\lr;YS*eD@^vUT2tdh7kԜgg|q1':y2R> k\R$]KQ ؁*7f (cMH%,¿@ O%+h4Jq8.Jѷ~Xw&i G2wV"}>_1>B?*?W&퐻oH ntR.%#FI6Ǹr,_cGv@.o-mj Y9=k; ( ]/HD`"TIv{3U>⿭Hy͉O,VkJ^<*xȚe1.n56m :{*3-EP(OevĨ.(顙T&nUbIP:ҰWд.~u8xһkQenBo?cH1<dHks7_2cA:BA|Va<h^hZ5_?i-YTα|C}CT*GؾO*;bMLD:{hMfyb4. d,?c;U\W$Leѡ`z4M[7`y|/'CbF,*kɞl"\\;\ эqó'rr` jv|>*ʋ g/l,aX4r()X=sa"C:F  v>^ۡɩBLٳ|H+ٵ;_>LcfVkI{%S1VbA vغTa^~h몊I,$f"mBϴ_AUtI$@:"9J*MGR%`Gg{K7[LA{f(^,mZQp;P$co -r{G9`KzMQYEt>Wxt-}!Lm#f~F\y61'=Äg KMn(meubyA!a"7{q'j)m3*"&aNUrByCߋX%z]#2NC-0L͡?7sKqu٣/p]0L;qhW+aj+ Kx,HIB1" oUte /8,֠[V|w!?"Dϧ?"Ƿcv5|P:X&VJI0!%W&fi`afE:A*HR>gf |te(wj/pSVN"e)Cg!WEz) FKY(n@ptWg ng2\ "imDQv{mQ*pGE sԺM0Cczq|5apUnkrG$sO_'<6OPg*vYL5Ppp&\"̥ ^) 9!f1jN ߖPj[R3%$| aZ1v}P\{}̸a]D_BbnY+BVQĔ,Q g)Poi}C~{(?1;oڱoli`&^[پX}#@ZO΋RC)tV C9t:U;1N[_{2&P n"|NJܻ#M4:~EScւؿ*\|K7TYNO{["0|r Y)2ĔĖx oP5)@\QfX?#]VM]CbQu}(˛{Tf&C˧BmEX }ąo eR7@]U\g@ 4z(o%گcfjЈ-㖳I`9f&"Y:+ʝ=7Mh2fdXLf+ U=&qaȁLOd( b`ye3_% "?[LI |RIԥ`9cBf!M.uw07AL"`OFj/9UU]mCUf4h/Q5N57uUmװrBFrnL_τttu";?/ƈ wdQzÄ3ó?pUVK8DcqKО^h3~LjZaVD~nV."xdʾ,蝲[|sC@kK#\ewLXn&-őtV8Q=,qA*Uac`23a<-6Ǝ|md7[. Uzr -R7>lMM7i`զ!^|jMWg.3H/EglSPlGV}sd2 [s5^| ûV-M¶ML^^̹SrN&pk#30)zxy|C~+ GRpNƔ:c+]tq#T"f [05h֭&Q0Ύ/ FhlHվ\4^ʤ݇a1vBC4(0Ğ0;wWo ܿYTy㡠ZGقq*$?/c6bMg}dTS|JO9AnMj5pRe >u#]6ޅ]n* R) N:W"p(k<-v)mYmΙ(%C, mT(J}Uj}œY,t_}.[#8jripSU_"ÎS1"нgD!@|"?-|07h3u72EXI0#Zŕrr{'Ty p-vJ5SMC E!Qܒ=AYNKetVct=gw]kHR0:Ͷ58\%͆}h5҈ݑ}aI p_]reh4t6Z8Y叔')ɢ}}^bDB _*>'u]kz3RNz]6j⠖ƎF&D1 Vp:ŝ見бL!8#s`-m oXI1;xZndO宗cۤt  U09'ȩxclFHm -jeY=H\7+s`Jz51~1^v0,1Mw9_Hl,@6pkVa `<7& }F%ikh4}ۤh/3Kfov#IktJͶMF d\`KwB 0JQaꯁ"cR[]?8y@zWX4kqf }ȟM/^KpCp: |Cd(ZkF}S |(;;E+UvID]-qkz`jrt' gl`;iyWX A( n 4efҧMFOB4EFyJd7q.UpAnn&-}_Z:E%fyj-Z:$<@$NN?&3A;,Fl= P+{ĉ湢);M >1t;79K9v\hʛġ)&df0Fd%wat"c,Q ]@PTJuL R 12O)GZN-5[2yAo`==ï b)d$BFޔ'>Y dڍxgak 9#YY{ UŊIlOޙ2F1.İX-ckxy\: /d LA39-|0 5O/sY|Y/{S,ɩ8Ĩ-uNZ1-lXDmS[ 9 ]tޠ*_%"z/(V6^žr0-]X vEG#JF-i4&O0"LLjkZvd +dwHYB6kXPe(K^ڢ~gd#~$h/Cvڡ&):sw_ ҺD[]'ݭsh3D Pg%36P) 3~ wű5 fZrW !$u|N0xV.9Z = Ad΢@\lEEU-L?ӌa e=q XHCYГJcҍfn1F E̫"mI6ZlzcWAoy[rF)qiIx6^:Ҧg>$'y19A?}1:uÍ?}h& :\xaD1-HuH?0 "5bR93][N3gm\CZIk&yz-9e.:[OG fF!zKTGZ ),A3|[ ϭi^CzNR2)9@}!]BQ\/tX@C { j{+Gǰ&lI\lPQ3E|h\)d4k%ZVh!OVQw8Qђ'z7[khT}GJ(IO3a`!==H/QΤdp:MiGgACblV0wk=mk &Ĺf0O[o]yHJXId=m.UA=CO_Vކf˼G#f;ݪ9sFBb7|,IZthx ip2$7uy89<^+},} mar0ME7U.7=6Ȧ-7"D61P@ry!0pX{@2ȣgc+REjR(xNQYPt&'_4Ё4"M*/y+s|/$z^Opm>gLSIsIᶌk@E97ғHș| <DPKPb Pt4,sF-HvxLmY Zx +kף_¯%\*ԉ _FA =3&8ZT)b5]TNpvٔuobX dN?l'MW,O1Ǝ!j:m}&̗CJ.>0[0w 8Vt @h aٸ4 ~aSx1ڥ^ok,S2dX61;^`w/DA]uhqA]*."gp[C+<|$ RAr浹ζFɧ f3 [q5 y# 6O/+1P=׀*ݣ{D(puu#.ojwַ!X+Hi0M)>g$kP:fAdetb@|uyeq|IܑAc|6=6IR(4[\jM$y"a_U|01<_=هޕmyG=qC%bvƒb}JC#$zdPUΒz%>xC ѢdT,\pUZE?"(55/ؑ4pgS軲RuP89u{3)0,qA Oi7 ,;lsrAM f稁[Lm\~j]m7=҄N+Nj,Q.mn νw*4ˤ+ "*&BSCH2$1o~ӬD#ldOr“0*^!T څv~'lj)ik es8uBu5U]Zyh(S?5L(hf*1npF jb$g[::ʋd٥5=E63,YrtJSi$jbGu 7u|c3ߜ \(TIl~܀%c\dg`W= yd%8u'NҥreQ}BGd~nc 1 o1*:!gMǽ hg/ ӊ㚋Mڼ0 ӻ:j_a-iHNX+~hb[>2> %skp(9nݣ x |cNwՎ\Vo_qGf6u>P܋b,kX]rhsM7TSaz=Aew91zOa (z+yL G|݀}LƤ:Q߀FC>YYܛ!23SJTg^feRq1t y,QꏘNnMIda$GW~R`!4 K7L;&karrGq@)^ TJ5<:qSHF7ᣂS"Q్O#=nkyk9T?m60u{s#?7d>ṘyM]f{rK\˕(rC&0tȭSs{}Q$[q9YqiQeȚKE"76AɹHbԌYCohjHG B73`ch. `w,,]VcilFIt?D3Ii\е4caZ{&ցt9D }+.H~Te=,P&qrw͚%{84|X(Qa?no}wMՏw D>p/L*wߓ12'N ]gc~X_zqcnu#>_h PpzaJ1nad?/EU`F0Oٔe{s~9|.ֱ\u\mr~FDGQQAx=PQrn͖l~DZA7럇5_"m( DgDvW)~Rn~8zr`WmEK+T ;Ύ0XZ;R¾zt#8ܹnNۆBlh[Yhngkb,rh'80?k"n XZ̠zΗk*MhH7`Ǫ L| 7Gl/E3RwOl3qp AqsM/*z.v4? 1cu%Oޏ7 "T9O w) j'pG/>t D +{k۷4kv8Jb-_ ǑṀE lE!6+ w#uŸwn`8D4m:a;5ZҝF K=u=ӆ0w@:!A[Ӽȣhy&YI3 M u5 ;r ;5`s1pI.6ϼI)$W Z.͚& z(v X ҳnC>+K;=Jc{/4>t',eY67{`,A﫧+W@/Ԁ+A:{eUC9bYX`~\rM(cq;/ďۍ>49EK,R0 Q hRJ'*r}Ȏ}\oAb1;G۞S`#EQ>B@ $jSUڷTMT8)KxtYkoo:DOKU*|.|(e gX\K G[~r!t/zo 5VM ==Hrs{9fL-5K 9S|D1q}>LC[/WWi렄Xn<?f–-giӢ뼁ex'P.ܲ&FI/@ 4-i١z(SDxzkeK@cTWO݈BA.KQb7m5d 701-EN,Ҙ~R4VX$IF;t]O5vwT2͓&FvDY N% ONUO(6kefo 5j^s&pivf1?Cwg)_.$ٵ(%>!LuJ23Z^iNn}=ez NrPff(dckm~wǙUQ2t?&M^8Lg$mM4;et"SRL$d>̳HHDOw*~{3rhZC?@Gh7s`ni;'k˕_$+_AѹĦ8\BkEHy(DE L_#`gZ@+\ 980KƂ =r؂vZ Ia# 67I0Q߷$#K0.Vձ|gۦ2ipR[=Hm3m%[Ǡ}5*ϛݟ\̚EOl˺Y P6h`޳jtZCвgG_ vaMސ?޾e?=ߊP +wO şeXF)g"60x^־FJ[MEW_>].MѿjxȠML.RD*% /ǰh|xd}d[۟0g 뽷}9S];gYZ9v ԩ ٽ~p*:`- +$hqm)`y{qÐtjբ9&6ξwn!ΉkO\т Rrއ"'(K2k1!i; tz\݁rĞT;7hoeaDM;?h(۫)#A?6l#?U_e;k>z^&3&RP!aiCv692 zڧJ͒T5I ͭ~?ਓ' @s=3nVW#[UȾ*fh/: 5ϝ 6/6Vzb5|  7e".+U'I[o \KQ"=m3leK./pt@Dgy4F `[M453M妯9`tYJfLjQpgedZr)_Vq財4먢1-I1i#:pFђy$CU:u뼝sUq!G.i([,*B@wڝzNXB` Lu(p'7 t3 _B,kovf.r:ui&BeӄP#N;9hz5րվLt/(ڲX{l>!5c:G9%t}Ol̓ܬ D;r'ˆdۧe]32J'6͋=Envك;!…Ce{|4~%<=9ׄ<"DDq*`qvVQf*3붕U$3E’c Gj`6L,aD˪p*G "@P? #>uY\*s}e|sXPmq{q*J^ccoǦLQXV숎3u.;jR#w|=oJ?,O ͇0iK3jiD"FnHTy܄L_v$ lˁBg24!TyG83Rw3+ΨvQ ) ~} H0sLzVn9E֐ /ॼfR:Ҳm€2G<}cAn`Ͱ>M˥{?э,y{ Ps'T:U2#9ᱠ<̷iL=GLtf<9C[' \8( uMΡ$뀞LvҜ}٩ςv"/t9ʴ*?9 P48GA3wFo LK]D'`X:x1Y |pa?Ctj32{q+{ G`yϰgfhڂG-dIsق>H+z}W&SLEN骋V@<}'n(-ZS #3:*aΤ/RU'*:UxfBg^$гE*Bo2#0&D p)Q*=_13Jpz tT;ǒɨdǯGbWvi>N+)cZ.%Ƒ C? :&ʶIƀI“S)c<-cW}X f_z%[P-:#û_z4]x|v+g+H ͊s/A._sj t[!T$*SRQ C1#E-l},^]^ ,]_HPG*uf`2ćNf0\:&4ܹ`wMۇyk*KxC6˿n(.Y#MJSbaGey#O^>8:*DtXj`ͨ)*~h`/jI,{#:jfMu`GAL2U\́G$hK&*!KXl1icoxxؙ*ߗzyOɎEIyUl.pjBOmI Fw)3UZ - 22R >4\Q#!2X>s ^4̸PEpnHSeEgTK[) #7f,$[!:R y;a.3 6G>"t{Y$`XXo^8 Oc ]JdVC\͉m:\>D'uViy RC5_pS W]åwq;ti!ܩ wJ8Tw%Z0Fۍ0mK4A&iKZZ m C/\ÉnsD!Ol,Ȳd^<~asW.YHb \IV̞Et"}vQh{.hl4\޾5̹EUFgWD4R"0Y1~~SvTFUv;K~NSȇ@bGSWgԟD/P98(u^)U3[MWDkގD1#.j?(LOXd7-GN_[I4|yu:Jxtv9/(Oj Ϟ#pJ"x!rgV :?m ҦB@|GSV>5*F:<R{KA4m̿0,(6>-,lSd#\] {@yVF)@Iu^n-L p>'$ IQ,NkK4Ԇ}4} ƫ$෽{؀xٝȁE\qπ"јTMTzԓ1z$y5uK߃[/\z0E$CՂSR3tXst LN#J+ih8n¨̷݇ SlK . o`E"&E~Eub3f$923>G`3~V`XNw }`&}g9?HC$ s'wAIjϊԳq%0}?|F3T?غ︾4wki ._]=hS xk|u۩o:)PJUg=!$=|# WiJڧ2O6V>KV$X'm>ڕPoU40Tq3'y{LڪW}Hr ^c/1` lߤ'P:κe{!ee@[wc ˎ$ͼh">&E[Dc쭅} ׹ dṂ{EՅoet[^ ONABt\ą}T0HZȽ+Y.6u<&+;1XHHלuУV ;۽0|?}@5]wggX(v mq;NUw#I'~ @S=j1y cžF4.{8Wtܨ0Oչ)<[Ԙ^jU>{ZT:ܪ'"`Ws}Šo"cX*_GLL9&<\bdd Uhk3jǣP!~^ MI-Qi#s׻0t(<$#¨y|fa~I”Ț0ucYv<l^E4>lO /imfNQ_L6 LCtwuI1KLX"թX *BHP"Z @ NRu&V2N|k(捱i]JCnZp B~[ب+?ɿ.D]}<9:[88zj.y hK8H9?g |enmc%ed4` RCt6mɲ6:FIu!ˏz&ܶ5>#sTO#!]eO{ Uũ^<9LȘ  Q&\!ըTH5% n[zki!k.N}9bɈp E={/ JoKiu![r '͉eW@ĩ˴,nAN2,1am,r|=>m*M?4^@pP{\q 1T8F?#R/1ZsJtŹ{mr g[4A }ͽITՈɳRLf-1ZpޟM5LLnh3윊ʃA:HV!I@׆Mg :EHorK ASoNKLOq縸iȝiCѿhB|mZ)* FD#RMj!yRAC/Iwy;*4d|i};d0?J 4H[XQ^ jLh-~p(@SyGZ_Pa?+TF95i/]oߏʘ^= }q]3{xEixLeQ0.5´fteȘ̈́Ȣ90܋yb lk{ܸH哻cӛs10\X1D~/ "Gz'!$?ͦ)7v4 hwsf@}(TF9bPpE@d'+ҭ^?Zi,κ1"4ɌncGc!H(]J B !_*38hi( 镙W]p`VfU;7!Ce~/HzCE|/ʩ%{ʂ\T %z>iNGXKHƦ˰-ETS wКr=6cUd k!r6M.eL"O2VQב@S㛄ZI*7X@l>ys痣h3_ S#4W~yW|6kz(7>$Bjz!w'Fg-rXD&.v';4Bg3i+..!5{qQ*0x Jh:v洴7OSA]&,ů|-S}{2M"b ѯZີ>v.Ss>B_jxxWHpxjt_ŝҬ g`:a!{um;YX ܿ(jC{Nls8+T$=(%u9+@ 3 zޏU݄o>{.]~*(m]Ur+`͋xY!@$H'Dӹqc'c%?5Vw_غ 1C\,φ1) KNzϲ/GlcEzc1 'a[E:NlovQm5粣&yry,!Mx1Z~]{&SLMbνCi씍w2"6gVWH]_QH"Q*ׁN;@Pj-K,4ߩIYTv `-1}'z=hV,2Php'b#03,ԡ X䊡AUǫ!yk!h+6\u"PУ૖l鐂s(l#ɏɽWıeU]3DtL5 DfD:rZ QeKcl7ʢBrɝB{ P˴}@O;rzg3B/O۰H5 p2LۘWv_IdŊ:D!.b~z z8!\ہ<5%(G1.+|h9]!Th4k⸽y2&$ jg)h㞡ZoC(V5!`,Gu.-WѢC?&VYcNM:%"jŅ$ޗ,x,>Yeq$t_Xd"*r} l db _k7g"0VQ.0<[xq<v}&Q$p4/.5߻lFD": ӕ h7iF;|J֙jF\H3SتYJ^yd_v˖+p߄6,Cw36M$z O %r $$TP 򡝧ɚD0'f?gsXucEUg4F]J1 7m0gJ}-Nŋkޭ$j0)ErNR^Gˮmք- %2C|vVYU0?NkUcھ3`7{CGx Мj n+7 SayH_!jJ]E$Ʋ] cbF$lB)k;msc//qAbO~e u\Ƨ(cg/){L4 9ý*P`VI'Q؇ؠzI/cvytw3QgZp0bj0-@GW\vhNր 536&cBOQ0oWC)uӁQ&24u6վ>υiۆ0,/&חAK @0V8M<=j}h?<ۘhWCƱh`R`!0ν#B&S9GA?pw w|uzE O\ +=6](lJz5Czd<|{PN^m=ӧ1ƆE.p3(Ζ'(n7<f_Pf0ضXw8 gG,P5bWhu%C:Yd[Cy2:^smTC4ߡ@G8QThgD+I7.7E~@~xOZ+֥1T[b0Ѱ3EuKm4NWd["(/I༚96<8ѝXB^9K|fu v<s 4vz̥+(aj<ƪ0?%ITrJ_8sR(| .dgƤCGW9 3~2{"m~fOC%.Xt':7_Dk}%\tfFIdH :Kx#~.xiI1B>NDkJZ?QRb} >jϰC Ԏ&^:x4c45ݯ}.4Ԩ8tik?XV=CFw9 Zͳ@%6p` %y}NVjT\Sp>Jp{UȜ0}܍B!7+%iwtBze|2w#߷11_+]v? -us^)ODIl/ a ޏHta]{Ά*'0γ԰2Ca6m^e3U"6ٽIM[zj_M>E6A̮hd%SM'Y9PD\]J*8ϑ5o0CwPS.~^D if@ '_ԟUM0P= լSJ-+I`c!Fώ9"_^N|4;ŋ .{DDB(q:XÔy*.+Kl`רB4DGՏ9b"pY@M}I&efL֌6Sjɽ]lٿ`MjAÒ_Q2i$ar/. > OW񱚳y0d|{}߶`qmL̓~478VƵ{T@ʥES\R<׃iWbVQ1%qM}v2̢,{ӵȠ,3U}: IpE=ܒ&ιPr+bP&h'UaڌY7S: L4[Grgo9xUU>GϮw8n3%aXi @}1HMWUPv<6D'nhc`XQoMyOyI;)-@>%q1|go Fb#"It{dk+XD&?)xt8hp(c>TYيv |R2lP 5_y &pR TY!3ذqX+A0`JaއUz<}7F~Wr0q وI`dvn/T&+~SU3/[ua$rDGTWKEW+y86VxNȿv 9E1i{|QUs /ž-;Dg.v]ے0q@|jKbw@Atl%)Q*dYŶ$p̌'q]\G8zk4qb"8;o#}eV]Or{] f}B ѝ`{ȃCHԲbɇ mgd˷xM r\4JI|DEKRq ߣ=|8kt D? OD#?@(:fPm:!s8$[S(UsHJעy.!LKŢ}zrlG2 ?ȵ:'s:n AljStc+K!Xubq>,CUGkXX`TׄԹ&iؽjgQs`Ht忧lF)؝>!W)#xJ+^M@]\3$f-}zg<nmݦ"ntoE=-^ɟ#HƾIAk҅SDx#G RṂL~֎.}Wmlgi6e5Ӑ)u'u8P5AZWhz?qJ̝Wz%& o@\1Iy{BYTĀNhG aW1p Ttv2&sTǽ{|PUzbA𨖥vuu|D}7&y:~S)к2Tˑ] +ڷiW,}s7v2{" ~1*9DѲ$eEwEʗgc]_h6<X噢BwQb<(#- RC`ޙӛ;aN0G)f[z E]Obwӎo$uoؚ+u!l d Jd'ׂ=tT*'ޞRwԒrt2>[K&A"jق9CIM4-3/v¶~2^8NԿBHLwԎ[j̙Q*I\aEdZ\V|K9#"z!榁ċlOѓ NSᨩ9Qږ7(^{wlS *L<1f\lQ;W x~kKt_Xpب v_'*mzJ[b/8yZˏomp)%vqΘn&w,er/l(S.-MMAdP;Xb7#ƦkVn_Cr*YΦa;?W y(s8kF;CH51Q0FF$X!THk/@*>jNfyom0١Rdo<a,Dd\U0Yiiv'Kt,-2P۳DtgQY8\vO8燸ӜxܓXKTB|d+qnf;ǫ q.NDH%;\w,mP*E wW“Іx$Q$Lr"X!_l`2[%A^-em=I1lbjV$8G=`1I#W)^\$z}`=<-hsw8fr]#xQzpβMpZWGt-"xx3 zъT7: ;;署 ԱN:Bш0yuY_8 =>Y 'q]U.V 6 Z/zPQd~h.-xO[M`+U$Q19ˆ|9` Ql~(LBOֱZTSm{QWHGxv 1;/##Ͷ4P9QivuZi^-gWQZGM<Ńq$X~S:z5fXjcߗ cw]6ʀI[!w[y%w'[QH@PGΫ+2JufS!Bb6zoe? "Z˶@9sڹgUD}Q[GgZaRDmAVZ:mд@1V(5gG Ak EПqLc04 c{+j8ޔ|%)>#.fIQIDf+ֶ-mpvÖ$?VBgpkA s9Qj9sT- GlduVIqLҥr ҬTǮLJk[pFGh ]3\BB*N k\\jSd@{;fhKH$@n`EqbKFgz&eSfȊ *2JƃiUZQU嵼Ͻ)]\BdSGSyl#2KT $v :6hm^N(4ʼn;=.4xbd\bPAדPh|6Ӯ&'vjga-. d?IPGl4g6Y:-MBme2Ep%,>2i봬^7E`Ƞ0&)t5Qdo“r_ {)+YЭ&Yh{RhJc&&\ 2]TTK!1+UkWŏ=$`B=+UФlh㮹ԭ[\߽r/Of̯c剦qw(iڇ y f,]=㦅HԻ ?r *ijbV)+pR]#V8N^xGNs8FD7ч3%.iZmZYBQ[ަpB˙(O32zxn/0eD>ݍ5 (UE?hR\_po{]!3*Z{/84 ՝iks Tqy9RSϘo+sb>/xCeru u7HU[$rM77N='xXc2$W;g>; f .9ԓw$} hoJziќډ I`y*@!/'ؘi ӛ<ׅi4R5v7'<9aU#v}/:JP$~ƯB힄M :1ܰR~`'D᷵.DZнl =zpJX2{uE/4_5/ٮTWV26`'J+MC 7wgSJV?kl-/Q/޼F1cCȑΥ3vhζLs.)X#eНlS#Q3qԥFd 8=\7rgIj_ͯS{q߽C놛e¡ ~'ePruD߃,o#[j_c[n$)\ , 7b |6r$YV<,E%ro@y߻U?At50+ 9thő|D)5{.)b9<-" 1.@YN:NPGS_0ygWȼSR M|&7KV+%Dv`3z"4e֟h\T1Ъs84, ||5#HyTmFgK昀~h{RR|]Q_ZPcXOk}K~X{` o ,$kjp1imhĮbF`&pxL *lL>%їJw9Xde WpCTv淑pY]z4|pC~ 3K5N"h_.o#koQbK)kc44I/rJ݌4Z5U c, e4Ҧ]Zp F .ΐ·qzF%;GT;9??"" ƒOY| }:ݲmXY[z].Gq 5SV_m݅j O?V}3 0|PB=A+u,i#kS:I+䙩c^2eXw|hwׇUg<+?OAvڄ^WDV6)"qLF@ U^,Ĕݜ6 7lܮn³ϗnWcG /XE]~>D!5Emu7-5P 'Rz݌<è g9¤xuVq'kEZ ֊4jS9y1!#& ާFUVYgb<419UһM*{$T]đڒUX5{VtvG`[*u86wIZ`f+^ rZ> ,95>Ch ";ʖao6'm$ڝY,8T3ljHQa6aj0c`\\\c[ xx'QXyg +þ4N5/S4{D 8ɟ21ݿ.$[a$wݜý&7#3[vsnA7vF m:U^Ā.pu*5fJW!))04F|qjy ց#;8lyu(t"%.F/yNUϭΜk/mR)B#v.sZ('k%؏%P|C]n LN(]&r߮ePx6&df %bYU?Ol0%Z*GPA ib4O E(̎ wZ-v3"ˬPd(Fe!|Z"xS37w&TkXůA zSާ!$hQ6.KЗiPtqE|BY%D * f[,Wa# ;\72s>͈fq@Z`1M籍[鐥7QT$zQ&SOHk_fژÇBF} ;.ng.X؉|4&aPÊe$uU彐f=^_=M&rXdz@O|3kgIcb&㚛L2Oɢ3+;Qs',,}>h>}1L*{L[zysn&=,H. vÂРS|Z6[8h{@}17ǜk4%N)'!$3V WY-1 MO l- `gA6r<LJ8􌜵Rh;<(<~-߻[Z*C=o@*#-7͇@t<%΀C}f\vfDHc}eHgGx*[q̭M+0wPkmB3|lƸ>Gg"bà\b$Qu䝇|sP4/N֐@FoJ])UU#LMZ JQ,۽q!04W1E`gvs%Q^v|M^S>ę*v8ux+خ4V\bxR0(L|JGj7e㆙"-ßˉ$xʽk6~75γs.b_[ZrZjᜮlzhdO{ŒgQU_ءYrr]Zqm¶RsN~ƕQP}r;7L2,Nv %I[Z%As̑Nӄ74$+YGekqm1U%Y3`'JX8gK2/ U"|f AǙ?Ga qz\X< ] XbЪ?0:1-|pu#pC5Ry6PtvnX#y`3 '8`dGkk ȯBPNc"]|O#l9=˟> rYW{ס%cl':)c~2yHJԏ̭Kmh@if/5& 3b;dXw wM0q,; ˔9FޓEƖL?R!IB8PC taDRxkTbC{Kb~# LO%CڐT`^SNuCfRVWepnkv %4vY6 A üR`ެ3._ûײ3]9&@:/f>ZaZk74`0|4nTو7_6Cfqn[(~Ҏk Fdd(1[ lN^A-]w]j+70p;b\uotqk_b?HuMcHܩ[KīI l$,߶ 51͛\ j2]j&x44u\f_CZ0M ##a8\&K˟QK#;fF4>u#ibefV mC8_N8swj+$#HeyDLo"LI>ӻP Qh?^ @ۨ kIǡ70[g!NlcSb1* "0kz6C״-8N1Ba~ڍY]7 #ROvдfm}` Z.ɩS:Aw'*P%S-_lb&u_Sezg󐍍L",fj2~- !BjHuٲāPn'" `zR/ n̓:~ ̃u{$BN"#y[W%7A ћ*K.! SD'1!U%ֆ8D'r,#*q(}g1|Vz g{[] \"jQ4X\(-s(\]tx)g)"ӱr.+A+#65v>Qm5pݚK }{VؤlMAMIX(3LOyUsVPsC [08ْS %`0N3SKd^\SªPRKg>{6R+7xڈ[Wuew[ʟE">pv^̜ KҰ-hA%}.!$vBD_` SB]Vz7+Iȸ5 mO*c݂G\ky`F\ &TpGX~<pSOJZa]QNQ5 o=I3 o!4UR3Ԛ(Db̧͂?^~x]:RoNg{ֿ NǑD@2BBJ! ךt9(TF e׋>5gX$_؈y(e0I307l6VQ t/+.WpP)yRD&֪js]*