aboutsummaryrefslogtreecommitdiffstats
path: root/Bugzilla/DB.pm
blob: 7173ff8961844d217aeba6299986b9c3a20576f7 (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
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
# -*- Mode: perl; indent-tabs-mode: nil -*-
#
# The contents of this file are subject to the Mozilla Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Original Code is the Bugzilla Bug Tracking System.
#
# The Initial Developer of the Original Code is Netscape Communications
# Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s): Terry Weissman <terry@mozilla.org>
#                 Dan Mosedale <dmose@mozilla.org>
#                 Jacob Steenhagen <jake@bugzilla.org>
#                 Bradley Baetz <bbaetz@student.usyd.edu.au>
#                 Christopher Aillon <christopher@aillon.com>
#                 Tomas Kopal <Tomas.Kopal@altap.cz>
#                 Max Kanat-Alexander <mkanat@bugzilla.org>
#                 Lance Larsh <lance.larsh@oracle.com>

package Bugzilla::DB;

use strict;

use DBI;

# Inherit the DB class from DBI::db.
use base qw(DBI::db);

use Bugzilla::Constants;
use Bugzilla::Install::Requirements;
use Bugzilla::Install::Util qw(vers_cmp);
use Bugzilla::Install::Localconfig;
use Bugzilla::Util;
use Bugzilla::Error;
use Bugzilla::DB::Schema;

use List::Util qw(max);
use Storable qw(dclone);

#####################################################################
# Constants
#####################################################################

use constant BLOB_TYPE => DBI::SQL_BLOB;
use constant ISOLATION_LEVEL => 'REPEATABLE READ';

# Set default values for what used to be the enum types.  These values
# are no longer stored in localconfig.  If we are upgrading from a
# Bugzilla with enums to a Bugzilla without enums, we use the
# enum values.
#
# The values that you see here are ONLY DEFAULTS. They are only used
# the FIRST time you run checksetup.pl, IF you are NOT upgrading from a
# Bugzilla with enums. After that, they are either controlled through
# the Bugzilla UI or through the DB.
use constant ENUM_DEFAULTS => {
    bug_severity  => ['blocker', 'critical', 'major', 'normal',
                      'minor', 'trivial', 'enhancement'],
    priority     => ["Highest", "High", "Normal", "Low", "Lowest", "---"],
    op_sys       => ["All","Windows","Mac OS","Linux","Other"],
    rep_platform => ["All","PC","Macintosh","Other"],
    bug_status   => ["UNCONFIRMED","CONFIRMED","IN_PROGRESS","RESOLVED",
                     "VERIFIED"],
    resolution   => ["","FIXED","INVALID","WONTFIX", "DUPLICATE","WORKSFORME"],
};

# The character that means "OR" in a boolean fulltext search. If empty,
# the database doesn't support OR searches in fulltext searches.
# Used by Bugzilla::Bug::possible_duplicates.
use constant FULLTEXT_OR => '';

#####################################################################
# Connection Methods
#####################################################################

sub connect_shadow {
    my $params = Bugzilla->params;
    die "Tried to connect to non-existent shadowdb" 
        unless $params->{'shadowdb'};

    # Instead of just passing in a new hashref, we locally modify the
    # values of "localconfig", because some drivers access it while
    # connecting.
    my %connect_params = %{ Bugzilla->localconfig };
    $connect_params{db_host} = $params->{'shadowdbhost'};
    $connect_params{db_name} = $params->{'shadowdb'};
    $connect_params{db_port} = $params->{'shadowdbport'};
    $connect_params{db_sock} = $params->{'shadowdbsock'};

    return _connect(\%connect_params);
}

sub connect_main {
    my $lc = Bugzilla->localconfig;
    return _connect(Bugzilla->localconfig); 
}

sub _connect {
    my ($params) = @_;

    my $driver = $params->{db_driver};
    my $pkg_module = DB_MODULE->{lc($driver)}->{db};

    # do the actual import
    eval ("require $pkg_module")
        || die ("'$driver' is not a valid choice for \$db_driver in "
                . " localconfig: " . $@);

    # instantiate the correct DB specific module
    my $dbh = $pkg_module->new($params);

    return $dbh;
}

sub _handle_error {
    require Carp;

    # Cut down the error string to a reasonable size
    $_[0] = substr($_[0], 0, 2000) . ' ... ' . substr($_[0], -2000)
        if length($_[0]) > 4000;
    $_[0] = Carp::longmess($_[0]);
    return 0; # Now let DBI handle raising the error
}

sub bz_check_requirements {
    my ($output) = @_;

    my $lc = Bugzilla->localconfig;
    my $db = DB_MODULE->{lc($lc->{db_driver})};
    # Only certain values are allowed for $db_driver.
    if (!defined $db) {
        die "$lc->{db_driver} is not a valid choice for \$db_driver in"
            . bz_locations()->{'localconfig'};
    }

    die("It is not safe to run Bugzilla inside the 'mysql' database.\n"
        . "Please pick a different value for \$db_name in localconfig.")
        if $lc->{db_name} eq 'mysql';

    # Check the existence and version of the DBD that we need.
    my $dbd        = $db->{dbd};
    my $sql_server = $db->{name};
    my $sql_want   = $db->{db_version};
    unless (have_vers($dbd, $output)) {
        my $command = install_command($dbd);
        my $root    = ROOT_USER;
        my $dbd_mod = $dbd->{module};
        my $dbd_ver = $dbd->{version};
        my $version = $dbd_ver ? " $dbd_ver or higher" : '';
        die <<EOT;

For $sql_server, Bugzilla requires that perl's $dbd_mod $dbd_ver or later be
installed. To install this module, run the following command (as $root):

    $command

EOT
    }

    # We don't try to connect to the actual database if $db_check is
    # disabled.
    unless ($lc->{db_check}) {
        print "\n" if $output;
        return;
    }

    # And now check the version of the database server itself.
    my $dbh = _get_no_db_connection();

    printf("Checking for %15s %-9s ", $sql_server, "(v$sql_want)")
        if $output;
    my $sql_vers = $dbh->bz_server_version;
    $dbh->disconnect;

    # Check what version of the database server is installed and let
    # the user know if the version is too old to be used with Bugzilla.
    if ( vers_cmp($sql_vers,$sql_want) > -1 ) {
        print "ok: found v$sql_vers\n" if $output;
    } else {
        die <<EOT;

Your $sql_server v$sql_vers is too old. Bugzilla requires version
$sql_want or later of $sql_server. Please download and install a
newer version.

EOT
    }

    print "\n" if $output;
}

# Note that this function requires that localconfig exist and
# be valid.
sub bz_create_database {
    my $dbh;
    # See if we can connect to the actual Bugzilla database.
    my $conn_success = eval { $dbh = connect_main(); };
    my $db_name = Bugzilla->localconfig->{db_name};

    if (!$conn_success) {
        $dbh = _get_no_db_connection();
        print "Creating database $db_name...\n";

        # Try to create the DB, and if we fail print a friendly error.
        my $success  = eval {
            my @sql = $dbh->_bz_schema->get_create_database_sql($db_name);
            # This ends with 1 because this particular do doesn't always
            # return something.
            $dbh->do($_) foreach @sql; 1;
        };
        if (!$success) {
            my $error = $dbh->errstr || $@;
            chomp($error);
            die "The '$db_name' database could not be created.",
                " The error returned was:\n\n    $error\n\n",
                _bz_connect_error_reasons();
        }
    }

    $dbh->disconnect;
}

# A helper for bz_create_database and bz_check_requirements.
sub _get_no_db_connection {
    my ($sql_server) = @_;
    my $dbh;
    my %connect_params = %{ Bugzilla->localconfig };
    $connect_params{db_name} = '';
    my $conn_success = eval {
        $dbh = _connect(\%connect_params);
    };
    if (!$conn_success) {
        my $driver = $connect_params{db_driver};
        my $sql_server = DB_MODULE->{lc($driver)}->{name};
        # Can't use $dbh->errstr because $dbh is undef.
        my $error = $DBI::errstr || $@;
        chomp($error);
        die "There was an error connecting to $sql_server:\n\n",
            "    $error\n\n", _bz_connect_error_reasons(), "\n";
    }
    return $dbh;    
}

# Just a helper because we have to re-use this text.
# We don't use this in db_new because it gives away the database
# username, and db_new errors can show up on CGIs.
sub _bz_connect_error_reasons {
    my $lc_file = bz_locations()->{'localconfig'};
    my $lc      = Bugzilla->localconfig;
    my $db      = DB_MODULE->{lc($lc->{db_driver})};
    my $server  = $db->{name};

return <<EOT;
This might have several reasons:

* $server is not running.
* $server is running, but there is a problem either in the
  server configuration or the database access rights. Read the Bugzilla
  Guide in the doc directory. The section about database configuration
  should help.
* Your password for the '$lc->{db_user}' user, specified in \$db_pass, is 
  incorrect, in '$lc_file'.
* There is a subtle problem with Perl, DBI, or $server. Make
  sure all settings in '$lc_file' are correct. If all else fails, set
  '\$db_check' to 0.

EOT
}

# List of abstract methods we are checking the derived class implements
our @_abstract_methods = qw(new sql_regexp sql_not_regexp sql_limit sql_to_days
                            sql_date_format sql_interval bz_explain
                            sql_group_concat);

# This overridden import method will check implementation of inherited classes
# for missing implementation of abstract methods
# See http://perlmonks.thepen.com/44265.html
sub import {
    my $pkg = shift;

    # do not check this module
    if ($pkg ne __PACKAGE__) {
        # make sure all abstract methods are implemented
        foreach my $meth (@_abstract_methods) {
            $pkg->can($meth)
                or die("Class $pkg does not define method $meth");
        }
    }

    # Now we want to call our superclass implementation.
    # If our superclass is Exporter, which is using caller() to find
    # a namespace to populate, we need to adjust for this extra call.
    # All this can go when we stop using deprecated functions.
    my $is_exporter = $pkg->isa('Exporter');
    $Exporter::ExportLevel++ if $is_exporter;
    $pkg->SUPER::import(@_);
    $Exporter::ExportLevel-- if $is_exporter;
}

sub sql_istrcmp {
    my ($self, $left, $right, $op) = @_;
    $op ||= "=";

    return $self->sql_istring($left) . " $op " . $self->sql_istring($right);
}

sub sql_istring {
    my ($self, $string) = @_;

    return "LOWER($string)";
}

sub sql_iposition {
    my ($self, $fragment, $text) = @_;
    $fragment = $self->sql_istring($fragment);
    $text = $self->sql_istring($text);
    return $self->sql_position($fragment, $text);
}

sub sql_position {
    my ($self, $fragment, $text) = @_;

    return "POSITION($fragment IN $text)";
}

sub sql_group_by {
    my ($self, $needed_columns, $optional_columns) = @_;

    my $expression = "GROUP BY $needed_columns";
    $expression .= ", " . $optional_columns if $optional_columns;
    
    return $expression;
}

sub sql_string_concat {
    my ($self, @params) = @_;
    
    return '(' . join(' || ', @params) . ')';
}

sub sql_string_until {
    my ($self, $string, $substring) = @_;
    return "SUBSTRING($string FROM 1 FOR " .
                      $self->sql_position($substring, $string) . " - 1)";
}

sub sql_in {
    my ($self, $column_name, $in_list_ref) = @_;
    return " $column_name IN (" . join(',', @$in_list_ref) . ") ";
}

sub sql_fulltext_search {
    my ($self, $column, $text) = @_;

    # This is as close as we can get to doing full text search using
    # standard ANSI SQL, without real full text search support. DB specific
    # modules should override this, as this will be always much slower.

    # make the string lowercase to do case insensitive search
    my $lower_text = lc($text);

    # split the text we search for into separate words
    my @words = split(/\s+/, $lower_text);

    # surround the words with wildcards and SQL quotes so we can use them
    # in LIKE search clauses
    @words = map($self->quote("%$_%"), @words);

    # untaint words, since they are safe to use now that we've quoted them
    map(trick_taint($_), @words);

    # turn the words into a set of LIKE search clauses
    @words = map("LOWER($column) LIKE $_", @words);

    # search for occurrences of all specified words in the column
    return "CASE WHEN (" . join(" AND ", @words) . ") THEN 1 ELSE 0 END";
}

#####################################################################
# General Info Methods
#####################################################################

# XXX - Needs to be documented.
sub bz_server_version {
    my ($self) = @_;
    return $self->get_info(18); # SQL_DBMS_VER
}

sub bz_last_key {
    my ($self, $table, $column) = @_;

    return $self->last_insert_id(Bugzilla->localconfig->{db_name}, undef, 
                                 $table, $column);
}

sub bz_check_regexp {
    my ($self, $pattern) = @_;

    eval { $self->do("SELECT " . $self->sql_regexp($self->quote("a"), $pattern, 1)) };

    $@ && ThrowUserError('illegal_regexp', 
        { value => $pattern, dberror => $self->errstr }); 
}

#####################################################################
# Database Setup
#####################################################################

sub bz_setup_database {
    my ($self) = @_;

    # If we haven't ever stored a serialized schema,
    # set up the bz_schema table and store it.
    $self->_bz_init_schema_storage();
    
    my @desired_tables = $self->_bz_schema->get_table_list();

    foreach my $table_name (@desired_tables) {
        $self->bz_add_table($table_name);
    }
}

# This really just exists to get overridden in Bugzilla::DB::Mysql.
sub bz_enum_initial_values {
    return ENUM_DEFAULTS;
}

sub bz_populate_enum_tables {
    my ($self) = @_;

    my $enum_values = $self->bz_enum_initial_values();
    while (my ($table, $values) = each %$enum_values) {
        $self->_bz_populate_enum_table($table, $values);
    }
}

sub bz_setup_foreign_keys {
    my ($self) = @_;

    # We use _bz_schema because bz_add_table has removed all REFERENCES
    # items from _bz_real_schema.
    my @tables = $self->_bz_schema->get_table_list();
    foreach my $table (@tables) {
        my @columns = $self->_bz_schema->get_table_columns($table);
        my %add_fks;
        foreach my $column (@columns) {
            my $def = $self->_bz_schema->get_column_abstract($table, $column);
            if ($def->{REFERENCES}) {
                $add_fks{$column} = $def->{REFERENCES};
            }
        }
        $self->bz_add_fks($table, \%add_fks);
    }
}

# This is used by contrib/bzdbcopy.pl, mostly.
sub bz_drop_foreign_keys {
    my ($self) = @_;

    my @tables = $self->_bz_real_schema->get_table_list();
    foreach my $table (@tables) {
        my @columns = $self->_bz_real_schema->get_table_columns($table);
        foreach my $column (@columns) {
            $self->bz_drop_fk($table, $column);
        }
    }
}

#####################################################################
# Schema Modification Methods
#####################################################################

sub bz_add_column {
    my ($self, $table, $name, $new_def, $init_value) = @_;

    # You can't add a NOT NULL column to a table with
    # no DEFAULT statement, unless you have an init_value.
    # SERIAL types are an exception, though, because they can
    # auto-populate.
    if ( $new_def->{NOTNULL} && !exists $new_def->{DEFAULT} 
         && !defined $init_value && $new_def->{TYPE} !~ /SERIAL/)
    {
        ThrowCodeError('column_not_null_without_default',
                       { name => "$table.$name" });
    }

    my $current_def = $self->bz_column_info($table, $name);

    if (!$current_def) {
        my @statements = $self->_bz_real_schema->get_add_column_ddl(
            $table, $name, $new_def, 
            defined $init_value ? $self->quote($init_value) : undef);
        print get_text('install_column_add',
                       { column => $name, table => $table }) . "\n"
            if Bugzilla->usage_mode == USAGE_MODE_CMDLINE;
        foreach my $sql (@statements) {
            $self->do($sql);
        }
        $self->_bz_real_schema->set_column($table, $name, $new_def);
        $self->_bz_store_real_schema;
    }
}

sub bz_add_fk {
    my ($self, $table, $column, $def) = @_;
    $self->bz_add_fks($table, { $column => $def });
}

sub bz_add_fks {
    my ($self, $table, $column_fks) = @_;

    my %add_these;
    foreach my $column (keys %$column_fks) {
        my $col_def = $self->bz_column_info($table, $column);
        next if $col_def->{REFERENCES};
        my $fk = $column_fks->{$column};
        $self->_check_references($table, $column, $fk);
        $add_these{$column} = $fk;
        print get_text('install_fk_add',
                       { table => $table, column => $column, fk => $fk })
            . "\n" if Bugzilla->usage_mode == USAGE_MODE_CMDLINE;
    }

    return if !scalar(keys %add_these);

    my @sql = $self->_bz_real_schema->get_add_fks_sql($table, \%add_these);
    $self->do($_) foreach @sql;

    foreach my $column (keys %add_these) {
        my $col_def = $self->bz_column_info($table, $column);
        $col_def->{REFERENCES} = $add_these{$column};
        $self->_bz_real_schema->set_column($table, $column, $col_def);
    }

    $self->_bz_store_real_schema();
}

sub bz_alter_column {
    my ($self, $table, $name, $new_def, $set_nulls_to) = @_;

    my $current_def = $self->bz_column_info($table, $name);

    if (!$self->_bz_schema->columns_equal($current_def, $new_def)) {
        # You can't change a column to be NOT NULL if you have no DEFAULT
        # and no value for $set_nulls_to, if there are any NULL values 
        # in that column.
        if ($new_def->{NOTNULL} && 
            !exists $new_def->{DEFAULT} && !defined $set_nulls_to)
        {
            # Check for NULLs
            my $any_nulls = $self->selectrow_array(
                "SELECT 1 FROM $table WHERE $name IS NULL");
            ThrowCodeError('column_not_null_no_default_alter', 
                           { name => "$table.$name" }) if ($any_nulls);
        }
        # Preserve foreign key definitions in the Schema object when altering
        # types.
        if (defined $current_def->{REFERENCES}) {
            # Make sure we don't modify the caller's $new_def.
            $new_def = dclone($new_def);
            $new_def->{REFERENCES} = $current_def->{REFERENCES};
        }
        $self->bz_alter_column_raw($table, $name, $new_def, $current_def,
                                   $set_nulls_to);
        $self->_bz_real_schema->set_column($table, $name, $new_def);
        $self->_bz_store_real_schema;
    }
}


# bz_alter_column_raw($table, $name, $new_def, $current_def)
#
# Description: A helper function for bz_alter_column.
#              Alters a column in the database
#              without updating any Schema object. Generally
#              should only be called by bz_alter_column.
#              Used when either: (1) You don't yet have a Schema
#              object but you need to alter a column, for some reason.
#              (2) You need to alter a column for some database-specific
#              reason.
# Params:      $table   - The name of the table the column is on.
#              $name    - The name of the column you're changing.
#              $new_def - The abstract definition that you are changing
#                         this column to.
#              $current_def - (optional) The current definition of the
#                             column. Will be used in the output message,
#                             if given.
#              $set_nulls_to - The same as the param of the same name
#                              from bz_alter_column.
# Returns:     nothing
#
sub bz_alter_column_raw {
    my ($self, $table, $name, $new_def, $current_def, $set_nulls_to) = @_;
    my @statements = $self->_bz_real_schema->get_alter_column_ddl(
        $table, $name, $new_def,
        defined $set_nulls_to ? $self->quote($set_nulls_to) : undef);
    my $new_ddl = $self->_bz_schema->get_type_ddl($new_def);
    print "Updating column $name in table $table ...\n";
    if (defined $current_def) {
        my $old_ddl = $self->_bz_schema->get_type_ddl($current_def);
        print "Old: $old_ddl\n";
    }
    print "New: $new_ddl\n";
    $self->do($_) foreach (@statements);
}

sub bz_add_index {
    my ($self, $table, $name, $definition) = @_;

    my $index_exists = $self->bz_index_info($table, $name);

    if (!$index_exists) {
        $self->bz_add_index_raw($table, $name, $definition);
        $self->_bz_real_schema->set_index($table, $name, $definition);
        $self->_bz_store_real_schema;
    }
}

# bz_add_index_raw($table, $name, $silent)
#
# Description: A helper function for bz_add_index.
#              Adds an index to the database
#              without updating any Schema object. Generally
#              should only be called by bz_add_index.
#              Used when you don't yet have a Schema
#              object but you need to add an index, for some reason.
# Params:      $table  - The name of the table the index is on.
#              $name   - The name of the index you're adding.
#              $definition - The abstract index definition, in hashref
#                            or arrayref format.
#              $silent - (optional) If specified and true, don't output
#                        any message about this change.
# Returns:     nothing
#
sub bz_add_index_raw {
    my ($self, $table, $name, $definition, $silent) = @_;
    my @statements = $self->_bz_schema->get_add_index_ddl(
        $table, $name, $definition);
    print "Adding new index '$name' to the $table table ...\n" unless $silent;
    $self->do($_) foreach (@statements);
}

sub bz_add_table {
    my ($self, $name) = @_;

    my $table_exists = $self->bz_table_info($name);

    if (!$table_exists) {
        $self->_bz_add_table_raw($name);
        my $table_def = dclone($self->_bz_schema->get_table_abstract($name));

        my %fields = @{$table_def->{FIELDS}};
        foreach my $col (keys %fields) {
            # Foreign Key references have to be added by Install::DB after
            # initial table creation, because column names have changed
            # over history and it's impossible to keep track of that info
            # in ABSTRACT_SCHEMA.
            delete $fields{$col}->{REFERENCES};
        }
        $self->_bz_real_schema->add_table($name, $table_def);
        $self->_bz_store_real_schema;
    }
}

# _bz_add_table_raw($name) - Private
#
# Description: A helper function for bz_add_table.
#              Creates a table in the database without
#              updating any Schema object. Generally
#              should only be called by bz_add_table and by
#              _bz_init_schema_storage. Used when you don't
#              yet have a Schema object but you need to
#              add a table, for some reason.
# Params:      $name - The name of the table you're creating. 
#                  The definition for the table is pulled from 
#                  _bz_schema.
# Returns:     nothing
#
sub _bz_add_table_raw {
    my ($self, $name) = @_;
    my @statements = $self->_bz_schema->get_table_ddl($name);
    print "Adding new table $name ...\n" unless i_am_cgi();
    $self->do($_) foreach (@statements);
}

sub _bz_add_field_table {
    my ($self, $name, $schema_ref) = @_;
    # We do nothing if the table already exists.
    return if $self->bz_table_info($name);

    # Copy this so that we're not modifying the passed reference.
    # (This avoids modifying a constant in Bugzilla::DB::Schema.)
    my %table_schema = %$schema_ref;
    my %indexes = @{ $table_schema{INDEXES} };
    my %fixed_indexes;
    foreach my $key (keys %indexes) {
        $fixed_indexes{$name . "_" . $key} = $indexes{$key};
    }
    # INDEXES is supposed to be an arrayref, so we have to convert back.
    my @indexes_array = %fixed_indexes;
    $table_schema{INDEXES} = \@indexes_array;
    # We add this to the abstract schema so that bz_add_table can find it.
    $self->_bz_schema->add_table($name, \%table_schema);
    $self->bz_add_table($name);
}

sub bz_add_field_tables {
    my ($self, $field) = @_;
    
    $self->_bz_add_field_table($field->name,
                               $self->_bz_schema->FIELD_TABLE_SCHEMA, $field->type);
    if ($field->type == FIELD_TYPE_MULTI_SELECT) {
        my $ms_table = "bug_" . $field->name;
        $self->_bz_add_field_table($ms_table,
            $self->_bz_schema->MULTI_SELECT_VALUE_TABLE);

        $self->bz_add_fks($ms_table, 
            { bug_id => {TABLE => 'bugs', COLUMN => 'bug_id',
                         DELETE => 'CASCADE'},

              value  => {TABLE  => $field->name, COLUMN => 'value'} });
    }
}

sub bz_drop_field_tables {
    my ($self, $field) = @_;
    if ($field->type == FIELD_TYPE_MULTI_SELECT) {
        $self->bz_drop_table('bug_' . $field->name);
    }
    $self->bz_drop_table($field->name);
}

sub bz_drop_column {
    my ($self, $table, $column) = @_;

    my $current_def = $self->bz_column_info($table, $column);

    if ($current_def) {
        my @statements = $self->_bz_real_schema->get_drop_column_ddl(
            $table, $column);
        print get_text('install_column_drop', 
                       { table => $table, column => $column }) . "\n"
            if Bugzilla->usage_mode == USAGE_MODE_CMDLINE;
        foreach my $sql (@statements) {
            # Because this is a deletion, we don't want to die hard if
            # we fail because of some local customization. If something
            # is already gone, that's fine with us!
            eval { $self->do($sql); } or warn "Failed SQL: [$sql] Error: $@";
        }
        $self->_bz_real_schema->delete_column($table, $column);
        $self->_bz_store_real_schema;
    }
}

sub bz_drop_fk {
    my ($self, $table, $column) = @_;

    my $col_def = $self->bz_column_info($table, $column);
    if ($col_def && exists $col_def->{REFERENCES}) {
        my $def = $col_def->{REFERENCES};
        print get_text('install_fk_drop',
                       { table => $table, column => $column, fk => $def })
            . "\n" if Bugzilla->usage_mode == USAGE_MODE_CMDLINE;
        my @sql = $self->_bz_real_schema->get_drop_fk_sql($table,$column,$def);
        $self->do($_) foreach @sql;
        delete $col_def->{REFERENCES};
        $self->_bz_real_schema->set_column($table, $column, $col_def);
        $self->_bz_store_real_schema;
    }

}

sub bz_get_related_fks {
    my ($self, $table, $column) = @_;
    my @tables = $self->_bz_real_schema->get_table_list();
    my @related;
    foreach my $check_table (@tables) {
        my @columns = $self->bz_table_columns($check_table);
        foreach my $check_column (@columns) {
            my $def = $self->bz_column_info($check_table, $check_column);
            my $fk = $def->{REFERENCES};
            if ($fk 
                and (($fk->{TABLE} eq $table and $fk->{COLUMN} eq $column)
                     or ($check_column eq $column and $check_table eq $table)))
            {
                push(@related, [$check_table, $check_column, $fk]);
            }
        } # foreach $column
    } # foreach $table

    return \@related;
}

sub bz_drop_related_fks {
    my $self = shift;
    my $related = $self->bz_get_related_fks(@_);
    foreach my $item (@$related) {
        my ($table, $column) = @$item;
        $self->bz_drop_fk($table, $column);
    }
    return $related;
}

sub bz_drop_index {
    my ($self, $table, $name) = @_;

    my $index_exists = $self->bz_index_info($table, $name);

    if ($index_exists) {
        $self->bz_drop_index_raw($table, $name);
        $self->_bz_real_schema->delete_index($table, $name);
        $self->_bz_store_real_schema;        
    }
}

# bz_drop_index_raw($table, $name, $silent)
#
# Description: A helper function for bz_drop_index.
#              Drops an index from the database
#              without updating any Schema object. Generally
#              should only be called by bz_drop_index.
#              Used when either: (1) You don't yet have a Schema 
#              object but you need to drop an index, for some reason.
#              (2) You need to drop an index that somehow got into the
#              database but doesn't exist in Schema.
# Params:      $table  - The name of the table the index is on.
#              $name   - The name of the index you're dropping.
#              $silent - (optional) If specified and true, don't output
#                        any message about this change.
# Returns:     nothing
#
sub bz_drop_index_raw {
    my ($self, $table, $name, $silent) = @_;
    my @statements = $self->_bz_schema->get_drop_index_ddl(
        $table, $name);
    print "Removing index '$name' from the $table table...\n" unless $silent;
    foreach my $sql (@statements) {
        # Because this is a deletion, we don't want to die hard if
        # we fail because of some local customization. If something
        # is already gone, that's fine with us!
        eval { $self->do($sql) } or warn "Failed SQL: [$sql] Error: $@";
    }
}

sub bz_drop_table {
    my ($self, $name) = @_;

    my $table_exists = $self->bz_table_info($name);

    if ($table_exists) {
        my @statements = $self->_bz_schema->get_drop_table_ddl($name);
        print get_text('install_table_drop', { name => $name }) . "\n"
            if Bugzilla->usage_mode == USAGE_MODE_CMDLINE;
        foreach my $sql (@statements) {
            # Because this is a deletion, we don't want to die hard if
            # we fail because of some local customization. If something
            # is already gone, that's fine with us!
            eval { $self->do($sql); } or warn "Failed SQL: [$sql] Error: $@";
        }
        $self->_bz_real_schema->delete_table($name);
        $self->_bz_store_real_schema;
    }
}

sub bz_fk_info {
    my ($self, $table, $column) = @_;
    my $col_info = $self->bz_column_info($table, $column);
    return undef if !$col_info;
    my $fk = $col_info->{REFERENCES};
    return $fk;
}

sub bz_rename_column {
    my ($self, $table, $old_name, $new_name) = @_;

    my $old_col_exists  = $self->bz_column_info($table, $old_name);

    if ($old_col_exists) {
        my $already_renamed = $self->bz_column_info($table, $new_name);
            ThrowCodeError('db_rename_conflict',
                           { old => "$table.$old_name", 
                             new => "$table.$new_name" }) if $already_renamed;
        my @statements = $self->_bz_real_schema->get_rename_column_ddl(
            $table, $old_name, $new_name);

        print get_text('install_column_rename', 
                       { old => "$table.$old_name", new => "$table.$new_name" })
               . "\n" if Bugzilla->usage_mode == USAGE_MODE_CMDLINE;

        foreach my $sql (@statements) {
            $self->do($sql);
        }
        $self->_bz_real_schema->rename_column($table, $old_name, $new_name);
        $self->_bz_store_real_schema;
    }
}

sub bz_rename_table {
    my ($self, $old_name, $new_name) = @_;
    my $old_table = $self->bz_table_info($old_name);
    return if !$old_table;

    my $new = $self->bz_table_info($new_name);
    ThrowCodeError('db_rename_conflict', { old => $old_name,
                                           new => $new_name }) if $new;
    my @sql = $self->_bz_real_schema->get_rename_table_sql($old_name, $new_name);
    print get_text('install_table_rename', 
                   { old => $old_name, new => $new_name }) . "\n"
        if Bugzilla->usage_mode == USAGE_MODE_CMDLINE;
    $self->do($_) foreach @sql;
    $self->_bz_real_schema->rename_table($old_name, $new_name);
    $self->_bz_store_real_schema;
}

sub bz_set_next_serial_value {
    my ($self, $table, $column, $value) = @_;
    if (!$value) {
        $value = $self->selectrow_array("SELECT MAX($column) FROM $table") || 0;
        $value++;
    }
    my @sql = $self->_bz_real_schema->get_set_serial_sql($table, $column, $value);
    $self->do($_) foreach @sql;
}

#####################################################################
# Schema Information Methods
#####################################################################

sub _bz_schema {
    my ($self) = @_;
    return $self->{private_bz_schema} if exists $self->{private_bz_schema};
    my @module_parts = split('::', ref $self);
    my $module_name  = pop @module_parts;
    $self->{private_bz_schema} = Bugzilla::DB::Schema->new($module_name);
    return $self->{private_bz_schema};
}

# _bz_get_initial_schema()
#
# Description: A protected method, intended for use only by Bugzilla::DB
#              and subclasses. Used to get the initial Schema that will
#              be written to disk for _bz_init_schema_storage. You probably
#              want to use _bz_schema or _bz_real_schema instead of this
#              method.
# Params:      none
# Returns:     A Schema object that can be serialized and written to disk
#              for _bz_init_schema_storage.
sub _bz_get_initial_schema {
    my ($self) = @_;
    return $self->_bz_schema->get_empty_schema();
}

sub bz_column_info {
    my ($self, $table, $column) = @_;
    my $def = $self->_bz_real_schema->get_column_abstract($table, $column);
    # We dclone it so callers can't modify the Schema.
    $def = dclone($def) if defined $def;
    return $def;
}

sub bz_index_info {
    my ($self, $table, $index) = @_;
    my $index_def =
        $self->_bz_real_schema->get_index_abstract($table, $index);
    if (ref($index_def) eq 'ARRAY') {
        $index_def = {FIELDS => $index_def, TYPE => ''};
    }
    return $index_def;
}

sub bz_table_info {
    my ($self, $table) = @_;
    return $self->_bz_real_schema->get_table_abstract($table);
}


sub bz_table_columns {
    my ($self, $table) = @_;
    return $self->_bz_real_schema->get_table_columns($table);
}

sub bz_table_indexes {
    my ($self, $table) = @_;
    my $indexes = $self->_bz_real_schema->get_table_indexes_abstract($table);
    my %return_indexes;
    # We do this so that they're always hashes.
    foreach my $name (keys %$indexes) {
        $return_indexes{$name} = $self->bz_index_info($table, $name);
    }
    return \%return_indexes;
}

#####################################################################
# Protected "Real Database" Schema Information Methods
#####################################################################

# Only Bugzilla::DB and subclasses should use these methods.
# If you need a method that does the same thing as one of these
# methods, use the version without _real on the end.

# bz_table_columns_real($table)
#
# Description: Returns a list of columns on a given table
#              as the table actually is, on the disk.
# Params:      $table - Name of the table.
# Returns:     An array of column names.
#
sub bz_table_columns_real {
    my ($self, $table) = @_;
    my $sth = $self->column_info(undef, undef, $table, '%');
    return @{ $self->selectcol_arrayref($sth, {Columns => [4]}) };
}

# bz_table_list_real()
#
# Description: Gets a list of tables in the current
#              database, directly from the disk.
# Params:      none
# Returns:     An array containing table names.
sub bz_table_list_real {
    my ($self) = @_;
    my $table_sth = $self->table_info(undef, undef, undef, "TABLE");
    return @{$self->selectcol_arrayref($table_sth, { Columns => [3] })};
}

#####################################################################
# Transaction Methods
#####################################################################

sub bz_in_transaction {
    return $_[0]->{private_bz_transaction_count} ? 1 : 0;
}

sub bz_start_transaction {
    my ($self) = @_;

    if ($self->bz_in_transaction) {
        $self->{private_bz_transaction_count}++;
    } else {
        # Turn AutoCommit off and start a new transaction
        $self->begin_work();
        # REPEATABLE READ means "We work on a snapshot of the DB that
        # is created when we execute our first SQL statement." It's
        # what we need in Bugzilla to be safe, for what we do.
        # Different DBs have different defaults for their isolation
        # level, so we just set it here manually.
        $self->do('SET TRANSACTION ISOLATION LEVEL ' . $self->ISOLATION_LEVEL);
        $self->{private_bz_transaction_count} = 1;
    }
}

sub bz_commit_transaction {
    my ($self) = @_;
    
    if ($self->{private_bz_transaction_count} > 1) {
        $self->{private_bz_transaction_count}--;
    } elsif ($self->bz_in_transaction) {
        $self->commit();
        $self->{private_bz_transaction_count} = 0;
    } else {
       ThrowCodeError('not_in_transaction');
    }
}

sub bz_rollback_transaction {
    my ($self) = @_;

    # Unlike start and commit, if we rollback at any point it happens
    # instantly, even if we're in a nested transaction.
    if (!$self->bz_in_transaction) {
        ThrowCodeError("not_in_transaction");
    } else {
        $self->rollback();
        $self->{private_bz_transaction_count} = 0;
    }
}

#####################################################################
# Subclass Helpers
#####################################################################

sub db_new {
    my ($class, $params) = @_;
    my ($dsn, $user, $pass, $override_attrs) = 
        @$params{qw(dsn user pass attrs)};

    # set up default attributes used to connect to the database
    # (may be overridden by DB driver implementations)
    my $attributes = { RaiseError => 0,
                       AutoCommit => 1,
                       PrintError => 0,
                       ShowErrorStatement => 1,
                       HandleError => \&_handle_error,
                       TaintIn => 1,
                       FetchHashKeyName => 'NAME',  
                       # Note: NAME_lc causes crash on ActiveState Perl
                       # 5.8.4 (see Bug 253696)
                       # XXX - This will likely cause problems in DB
                       # back ends that twiddle column case (Oracle?)
                     };

    if ($override_attrs) {
        foreach my $key (keys %$override_attrs) {
            $attributes->{$key} = $override_attrs->{$key};
        }
    }

    # connect using our known info to the specified db
    my $self = DBI->connect($dsn, $user, $pass, $attributes)
        or die "\nCan't connect to the database.\nError: $DBI::errstr\n"
        . "  Is your database installed and up and running?\n  Do you have"
        . " the correct username and password selected in localconfig?\n\n";

    # RaiseError was only set to 0 so that we could catch the 
    # above "die" condition.
    $self->{RaiseError} = 1;

    bless ($self, $class);

    return $self;
}

#####################################################################
# Private Methods
#####################################################################

=begin private

=head1 PRIVATE METHODS

These methods really are private. Do not override them in subclasses.

=over 4

=item C<_init_bz_schema_storage>

 Description: Initializes the bz_schema table if it contains nothing.
 Params:      none
 Returns:     nothing

=cut

sub _bz_init_schema_storage {
    my ($self) = @_;

    my $table_size;
    eval {
        $table_size = 
            $self->selectrow_array("SELECT COUNT(*) FROM bz_schema");
    };

    if (!$table_size) {
        my $init_schema = $self->_bz_get_initial_schema;
        my $store_me = $init_schema->serialize_abstract();
        my $schema_version = $init_schema->SCHEMA_VERSION;

        # If table_size is not defined, then we hit an error reading the
        # bz_schema table, which means it probably doesn't exist yet. So,
        # we have to create it. If we failed above for some other reason,
        # we'll see the failure here.
        # However, we must create the table after we do get_initial_schema,
        # because some versions of get_initial_schema read that the table
        # exists and then add it to the Schema, where other versions don't.
        if (!defined $table_size) {
            $self->_bz_add_table_raw('bz_schema');
        }

        print "Initializing the new Schema storage...\n";
        my $sth = $self->prepare("INSERT INTO bz_schema "
                                 ." (schema_data, version) VALUES (?,?)");
        $sth->bind_param(1, $store_me, $self->BLOB_TYPE);
        $sth->bind_param(2, $schema_version);
        $sth->execute();

        # And now we have to update the on-disk schema to hold the bz_schema
        # table, if the bz_schema table didn't exist when we were called.
        if (!defined $table_size) {
            $self->_bz_real_schema->add_table('bz_schema',
                $self->_bz_schema->get_table_abstract('bz_schema'));
            $self->_bz_store_real_schema;
        }
    } 
    # Sanity check
    elsif ($table_size > 1) {
        # We tell them to delete the newer one. Better to have checksetup
        # run migration code too many times than to have it not run the
        # correct migration code at all.
        die "Attempted to initialize the schema but there are already "
            . " $table_size copies of it stored.\nThis should never happen.\n"
            . " Compare the rows of the bz_schema table and delete the "
            . "newer one(s).";
    }
}

=item C<_bz_real_schema()>

 Description: Returns a Schema object representing the database
              that is being used in the current installation.
 Params:      none
 Returns:     A C<Bugzilla::DB::Schema> object representing the database
              as it exists on the disk.

=cut

sub _bz_real_schema {
    my ($self) = @_;
    return $self->{private_real_schema} if exists $self->{private_real_schema};

    my ($data, $version) = $self->selectrow_array(
        "SELECT schema_data, version FROM bz_schema");

    (die "_bz_real_schema tried to read the bz_schema table but it's empty!")
        if !$data;

    $self->{private_real_schema} = 
        $self->_bz_schema->deserialize_abstract($data, $version);

    return $self->{private_real_schema};
}

=item C<_bz_store_real_schema()>

 Description: Stores the _bz_real_schema structures in the database
              for later recovery. Call this function whenever you make
              a change to the _bz_real_schema.
 Params:      none
 Returns:     nothing

 Precondition: $self->{_bz_real_schema} must exist.

=back

=end private

=cut

sub _bz_store_real_schema {
    my ($self) = @_;

    # Make sure that there's a schema to update
    my $table_size = $self->selectrow_array("SELECT COUNT(*) FROM bz_schema");

    die "Attempted to update the bz_schema table but there's nothing "
        . "there to update. Run checksetup." unless $table_size;

    # We want to store the current object, not one
    # that we read from the database. So we use the actual hash
    # member instead of the subroutine call. If the hash
    # member is not defined, we will (and should) fail.
    my $update_schema = $self->{private_real_schema};
    my $store_me = $update_schema->serialize_abstract();
    my $schema_version = $update_schema->SCHEMA_VERSION;
    my $sth = $self->prepare("UPDATE bz_schema 
                                 SET schema_data = ?, version = ?");
    $sth->bind_param(1, $store_me, $self->BLOB_TYPE);
    $sth->bind_param(2, $schema_version);
    $sth->execute();
}

# For bz_populate_enum_tables
sub _bz_populate_enum_table {
    my ($self, $table, $valuelist) = @_;

    my $sql_table = $self->quote_identifier($table);

    # Check if there are any table entries
    my $table_size = $self->selectrow_array("SELECT COUNT(*) FROM $sql_table");

    # If the table is empty...
    if (!$table_size) {
        my $insert = $self->prepare(
            "INSERT INTO $sql_table (value,sortkey) VALUES (?,?)");
        print "Inserting values into the '$table' table:\n";
        my $sortorder = 0;
        my $maxlen    = max(map(length($_), @$valuelist)) + 2;
        foreach my $value (@$valuelist) {
            $sortorder += 100;
            printf "%-${maxlen}s sortkey: $sortorder\n", "'$value'";
            $insert->execute($value, $sortorder);
        }
    }
}

# This is used before adding a foreign key to a column, to make sure
# that the database won't fail adding the key.
sub _check_references {
    my ($self, $table, $column, $fk) = @_;
    my $foreign_table = $fk->{TABLE};
    my $foreign_column = $fk->{COLUMN};

    # We use table aliases because sometimes we join a table to itself,
    # and we can't use the same table name on both sides of the join.
    # We also can't use the words "table" or "foreign" because those are
    # reserved words.
    my $bad_values = $self->selectcol_arrayref(
        "SELECT DISTINCT tabl.$column 
           FROM $table AS tabl LEFT JOIN $foreign_table AS forn
                ON tabl.$column = forn.$foreign_column
          WHERE forn.$foreign_column IS NULL
                AND tabl.$column IS NOT NULL");

    if (@$bad_values) {
        my $delete_action = $fk->{DELETE} || '';
        if ($delete_action eq 'CASCADE') {
            $self->do("DELETE FROM $table WHERE $column IN (" 
                      . join(',', ('?') x @$bad_values)  . ")",
                      undef, @$bad_values);
            if (Bugzilla->usage_mode == USAGE_MODE_CMDLINE) {
                print "\n", get_text('install_fk_invalid_fixed',
                    { table => $table, column => $column,
                      foreign_table => $foreign_table,
                      foreign_column => $foreign_column,
                      'values' => $bad_values, action => 'delete' }), "\n";
            }
        }
        elsif ($delete_action eq 'SET NULL') {
            $self->do("UPDATE $table SET $column = NULL
                        WHERE $column IN ("
                      . join(',', ('?') x @$bad_values)  . ")",
                      undef, @$bad_values);
            if (Bugzilla->usage_mode == USAGE_MODE_CMDLINE) {
                print "\n", get_text('install_fk_invalid_fixed',
                    { table => $table, column => $column,
                      foreign_table => $foreign_table, 
                      foreign_column => $foreign_column,
                      'values' => $bad_values, action => 'null' }), "\n";
            }
        }
        else {
            die "\n", get_text('install_fk_invalid',
                { table => $table, column => $column,
                  foreign_table => $foreign_table,
                  foreign_column => $foreign_column,
                 'values' => $bad_values }), "\n";
        }
    }
}

1;

__END__

=head1 NAME

Bugzilla::DB - Database access routines, using L<DBI>

=head1 SYNOPSIS

  # Obtain db handle
  use Bugzilla::DB;
  my $dbh = Bugzilla->dbh;

  # prepare a query using DB methods
  my $sth = $dbh->prepare("SELECT " .
                          $dbh->sql_date_format("creation_ts", "%Y%m%d") .
                          " FROM bugs WHERE bug_status != 'RESOLVED' " .
                          $dbh->sql_limit(1));

  # Execute the query
  $sth->execute;

  # Get the results
  my @result = $sth->fetchrow_array;

  # Schema Modification
  $dbh->bz_add_column($table, $name, \%definition, $init_value);
  $dbh->bz_add_index($table, $name, $definition);
  $dbh->bz_add_table($name);
  $dbh->bz_drop_index($table, $name);
  $dbh->bz_drop_table($name);
  $dbh->bz_alter_column($table, $name, \%new_def, $set_nulls_to);
  $dbh->bz_drop_column($table, $column);
  $dbh->bz_rename_column($table, $old_name, $new_name);

  # Schema Information
  my $column = $dbh->bz_column_info($table, $column);
  my $index  = $dbh->bz_index_info($table, $index);

=head1 DESCRIPTION

Functions in this module allows creation of a database handle to connect
to the Bugzilla database. This should never be done directly; all users
should use the L<Bugzilla> module to access the current C<dbh> instead.

This module also contains methods extending the returned handle with
functionality which is different between databases allowing for easy
customization for particular database via inheritance. These methods
should be always preffered over hard-coding SQL commands.

=head1 CONSTANTS

Subclasses of Bugzilla::DB are required to define certain constants. These
constants are required to be subroutines or "use constant" variables.

=over

=item C<BLOB_TYPE>

The C<\%attr> argument that must be passed to bind_param in order to 
correctly escape a C<LONGBLOB> type.

=item C<ISOLATION_LEVEL>

The argument that this database should send to 
C<SET TRANSACTION ISOLATION LEVEL> when starting a transaction. If you
override this in a subclass, the isolation level you choose should
be as strict as or more strict than the default isolation level defined in
L<Bugzilla::DB>.

=back


=head1 CONNECTION

A new database handle to the required database can be created using this
module. This is normally done by the L<Bugzilla> module, and so these routines
should not be called from anywhere else.

=head2 Functions

=over

=item C<connect_main>

=over

=item B<Description>

Function to connect to the main database, returning a new database handle.

=item B<Params>

=over

=item C<$no_db_name> (optional) - If true, connect to the database
server, but don't connect to a specific database. This is only used 
when creating a database. After you create the database, you should 
re-create a new Bugzilla::DB object without using this parameter. 

=back

=item B<Returns>

New instance of the DB class

=back

=item C<connect_shadow>

=over

=item B<Description>

Function to connect to the shadow database, returning a new database handle.
This routine C<die>s if no shadow database is configured.

=item B<Params> (none)

=item B<Returns>

A new instance of the DB class

=back

=item C<bz_check_requirements>

=over

=item B<Description>

Checks to make sure that you have the correct DBD and database version 
installed for the database that Bugzilla will be using. Prints a message 
and exits if you don't pass the requirements.

If C<$db_check> is false (from F<localconfig>), we won't check the 
database version.

=item B<Params>

=over

=item C<$output> - C<true> if the function should display informational 
output about what it's doing, such as versions found.

=back

=item B<Returns> (nothing)

=back


=item C<bz_create_database>

=over

=item B<Description>

Creates an empty database with the name C<$db_name>, if that database 
doesn't already exist. Prints an error message and exits if we can't 
create the database.

=item B<Params> (none)

=item B<Returns> (nothing)

=back

=item C<_connect>

=over

=item B<Description>

Internal function, creates and returns a new, connected instance of the 
correct DB class.  This routine C<die>s if no driver is specified.

=item B<Params>

=over

=item C<$driver> - name of the database driver to use

=item C<$host> - host running the database we are connecting to

=item C<$dbname> - name of the database to connect to

=item C<$port> - port the database is listening on

=item C<$sock> - socket the database is listening on

=item C<$user> - username used to log in to the database

=item C<$pass> - password used to log in to the database

=back

=item B<Returns>

A new instance of the DB class

=back

=item C<_handle_error>

Function passed to the DBI::connect call for error handling. It shortens the 
error for printing.

=item C<import>

Overrides the standard import method to check that derived class
implements all required abstract methods. Also calls original implementation 
in its super class.

=back

=head1 ABSTRACT METHODS

Note: Methods which can be implemented generically for all DBs are implemented in
this module. If needed, they can be overridden with DB specific code.
Methods which do not have standard implementation are abstract and must
be implemented for all supported databases separately.
To avoid confusion with standard DBI methods, all methods returning string with
formatted SQL command have prefix C<sql_>. All other methods have prefix C<bz_>.

=head2 Constructor

=over

=item C<new>

=over

=item B<Description>

Constructor.  Abstract method, should be overridden by database specific 
code.

=item B<Params>

=over 

=item C<$user> - username used to log in to the database

=item C<$pass> - password used to log in to the database

=item C<$host> - host running the database we are connecting to

=item C<$dbname> - name of the database to connect to

=item C<$port> - port the database is listening on

=item C<$sock> - socket the database is listening on

=back

=item B<Returns>

A new instance of the DB class

=item B<Note>

The constructor should create a DSN from the parameters provided and
then call C<db_new()> method of its super class to create a new
class instance. See L<db_new> description in this module. As per
DBI documentation, all class variables must be prefixed with
"private_". See L<DBI>.

=back

=back

=head2 SQL Generation

=over

=item C<sql_regexp>

=over

=item B<Description>

Outputs SQL regular expression operator for POSIX regex
searches (case insensitive) in format suitable for a given
database.

Abstract method, should be overridden by database specific code.

=item B<Params>

=over

=item C<$expr> - SQL expression for the text to be searched (scalar)

=item C<$pattern> - the regular expression to search for (scalar)

=item C<$nocheck> - true if the pattern should not be tested; false otherwise (boolean)

=item C<$real_pattern> - the real regular expression to search for.
This argument is used when C<$pattern> is a placeholder ('?').

=back

=item B<Returns>

Formatted SQL for regular expression search (e.g. REGEXP) (scalar)

=back

=item C<sql_not_regexp>

=over

=item B<Description>

Outputs SQL regular expression operator for negative POSIX
regex searches (case insensitive) in format suitable for a given
database.

Abstract method, should be overridden by database specific code.

=item B<Params>

Same as L</sql_regexp>.

=item B<Returns>

Formatted SQL for negative regular expression search (e.g. NOT REGEXP) 
(scalar)

=back

=item C<sql_limit>

=over

=item B<Description>

Returns SQL syntax for limiting results to some number of rows
with optional offset if not starting from the begining.

Abstract method, should be overridden by database specific code.

=item B<Params>

=over

=item C<$limit> - number of rows to return from query (scalar)

=item C<$offset> - number of rows to skip before counting (scalar)

=back

=item B<Returns>

Formatted SQL for limiting number of rows returned from query
with optional offset (e.g. LIMIT 1, 1) (scalar)

=back

=item C<sql_from_days>

=over

=item B<Description>

Outputs SQL syntax for converting Julian days to date.

Abstract method, should be overridden by database specific code.

=item B<Params>

=over

=item C<$days> - days to convert to date

=back

=item B<Returns>

Formatted SQL for returning Julian days in dates. (scalar)

=back

=item C<sql_to_days>

=over

=item B<Description>

Outputs SQL syntax for converting date to Julian days.

Abstract method, should be overridden by database specific code.

=item B<Params>

=over

=item C<$date> - date to convert to days

=back

=item B<Returns>

Formatted SQL for returning date fields in Julian days. (scalar)

=back

=item C<sql_date_format>

=over

=item B<Description>

Outputs SQL syntax for formatting dates.

Abstract method, should be overridden by database specific code.

=item B<Params>

=over

=item C<$date> - date or name of date type column (scalar)

=item C<$format> - format string for date output (scalar)
(C<%Y> = year, four digits, C<%y> = year, two digits, C<%m> = month,
C<%d> = day, C<%a> = weekday name, 3 letters, C<%H> = hour 00-23,
C<%i> = minute, C<%s> = second)

=back

=item B<Returns>

Formatted SQL for date formatting (scalar)

=back

=item C<sql_interval>

=over

=item B<Description>

Outputs proper SQL syntax for a time interval function.

Abstract method, should be overridden by database specific code.

=item B<Params>

=over

=item C<$interval> - the time interval requested (e.g. '30') (integer)

=item C<$units> - the units the interval is in (e.g. 'MINUTE') (string)

=back

=item B<Returns>

Formatted SQL for interval function (scalar)

=back

=item C<sql_position>

=over

=item B<Description>

Outputs proper SQL syntax determining position of a substring
(fragment) withing a string (text). Note: if the substring or
text are string constants, they must be properly quoted (e.g. "'pattern'").

It searches for the string in a case-sensitive manner. If you want to do
a case-insensitive search, use L</sql_iposition>.

=item B<Params>

=over

=item C<$fragment> - the string fragment we are searching for (scalar)

=item C<$text> - the text to search (scalar)

=back

=item B<Returns>

Formatted SQL for substring search (scalar)

=back

=item C<sql_iposition>

Just like L</sql_position>, but case-insensitive.

=item C<sql_group_by>

=over

=item B<Description>

Outputs proper SQL syntax for grouping the result of a query.

For ANSI SQL databases, we need to group by all columns we are
querying for (except for columns used in aggregate functions).
Some databases require (or even allow) to specify only one
or few columns if the result is uniquely defined. For those
databases, the default implementation needs to be overloaded.

=item B<Params>

=over

=item C<$needed_columns> - string with comma separated list of columns
we need to group by to get expected result (scalar)

=item C<$optional_columns> - string with comma separated list of all
other columns we are querying for, but which are not in the required list.

=back

=item B<Returns>

Formatted SQL for row grouping (scalar)

=back

=item C<sql_string_concat>

=over

=item B<Description>

Returns SQL syntax for concatenating multiple strings (constants
or values from table columns) together.

=item B<Params>

=over

=item C<@params> - array of column names or strings to concatenate

=back

=item B<Returns>

Formatted SQL for concatenating specified strings

=back

=item C<sql_string_until>

=over

=item B<Description>

Returns SQL for truncating a string at the first occurrence of a certain
substring.

=item B<Params>

Note that both parameters need to be sql-quoted.

=item C<$string> The string we're truncating

=item C<$substring> The substring we're truncating at.

=back

=item C<sql_fulltext_search>

=over

=item B<Description>

Returns SQL syntax for performing a full text search for specified text 
on a given column.

There is a ANSI SQL version of this method implemented using LIKE operator,
but it's not a real full text search. DB specific modules should override 
this, as this generic implementation will be always much slower. This 
generic implementation returns 'relevance' as 0 for no match, or 1 for a 
match.

=item B<Params>

=over

=item C<$column> - name of column to search (scalar)

=item C<$text> - text to search for (scalar)

=back

=item B<Returns>

Formatted SQL for full text search

=back

=item C<sql_istrcmp>

=over

=item B<Description>

Returns SQL for a case-insensitive string comparison.

=item B<Params>

=over

=item C<$left> - What should be on the left-hand-side of the operation.

=item C<$right> - What should be on the right-hand-side of the operation.

=item C<$op> (optional) - What the operation is. Should be a  valid ANSI 
SQL comparison operator, such as C<=>, C<E<lt>>, C<LIKE>, etc. Defaults 
to C<=> if not specified.

=back

=item B<Returns>

A SQL statement that will run the comparison in a case-insensitive fashion.

=item B<Note>

Uses L</sql_istring>, so it has the same performance concerns.
Try to avoid using this function unless absolutely necessary.

Subclass Implementors: Override sql_istring instead of this
function, most of the time (this function uses sql_istring).

=back

=item C<sql_istring>

=over

=item B<Description>

Returns SQL syntax "preparing" a string or text column for case-insensitive 
comparison.

=item B<Params>

=over

=item C<$string> - string to convert (scalar)

=back

=item B<Returns>

Formatted SQL making the string case insensitive.

=item B<Note>

The default implementation simply calls LOWER on the parameter.
If this is used to search on a text column with index, the index
will not be usually used unless it was created as LOWER(column).

=back

=item C<sql_in>

=over

=item B<Description>

Returns SQL syntax for the C<IN ()> operator. 

Only necessary where an C<IN> clause can have more than 1000 items.

=item B<Params>

=over

=item C<$column_name> - Column name (e.g. C<bug_id>)

=item C<$in_list_ref> - an arrayref containing values for C<IN ()>

=back

=item B<Returns>

Formatted SQL for the C<IN> operator.

=back

=back


=head1 IMPLEMENTED METHODS

These methods are implemented in Bugzilla::DB, and only need
to be implemented in subclasses if you need to override them for 
database-compatibility reasons.

=head2 General Information Methods

These methods return information about data in the database.

=over

=item C<bz_last_key>

=over

=item B<Description>

Returns the last serial number, usually from a previous INSERT.

Must be executed directly following the relevant INSERT.
This base implementation uses L<DBI/last_insert_id>. If the
DBD supports it, it is the preffered way to obtain the last
serial index. If it is not supported, the DB-specific code
needs to override this function.

=item B<Params>

=over

=item C<$table> - name of table containing serial column (scalar)

=item C<$column> - name of column containing serial data type (scalar)

=back

=item B<Returns>

Last inserted ID (scalar)

=back

=back

=head2 Database Setup Methods

These methods are used by the Bugzilla installation programs to set up
the database.

=over

=item C<bz_populate_enum_tables>

=over

=item B<Description>

For an upgrade or an initial installation, populates the tables that hold 
the legal values for the old "enum" fields: C<bug_severity>, 
C<resolution>, etc. Prints out information if it inserts anything into the
DB.

=item B<Params> (none)

=item B<Returns> (nothing)

=back

=back


=head2 Schema Modification Methods

These methods modify the current Bugzilla Schema.

Where a parameter says "Abstract index/column definition", it returns/takes
information in the formats defined for indexes and columns in
C<Bugzilla::DB::Schema::ABSTRACT_SCHEMA>.

=over

=item C<bz_add_column>

=over

=item B<Description>

Adds a new column to a table in the database. Prints out a brief statement 
that it did so, to stdout. Note that you cannot add a NOT NULL column that 
has no default -- the database won't know what to set all the NULL
values to.

=item B<Params>

=over

=item C<$table> - the table where the column is being added

=item C<$name> - the name of the new column

=item C<\%definition> - Abstract column definition for the new column

=item C<$init_value> (optional) - An initial value to set the column
to. Required if your column is NOT NULL and has no DEFAULT set.

=back

=item B<Returns> (nothing)

=back

=item C<bz_add_index>

=over

=item B<Description>

Adds a new index to a table in the database. Prints out a brief statement 
that it did so, to stdout. If the index already exists, we will do nothing.

=item B<Params>

=over

=item C<$table> - The table the new index is on.

=item C<$name>  - A name for the new index.

=item C<$definition> - An abstract index definition. Either a hashref 
or an arrayref.

=back

=item B<Returns> (nothing)

=back

=item C<bz_add_table>

=over

=item B<Description>

Creates a new table in the database, based on the definition for that 
table in the abstract schema.

Note that unlike the other 'add' functions, this does not take a 
definition, but always creates the table as it exists in
L<Bugzilla::DB::Schema/ABSTRACT_SCHEMA>.

If a table with that name already exists, then this function returns 
silently.

=item B<Params>

=over

=item C<$name> - The name of the table you want to create.

=back

=item B<Returns> (nothing)

=back

=item C<bz_drop_index>

=over

=item B<Description>

Removes an index from the database. Prints out a brief statement that it 
did so, to stdout. If the index doesn't exist, we do nothing.

=item B<Params>

=over

=item C<$table> - The table that the index is on.

=item C<$name> - The name of the index that you want to drop.

=back

=item B<Returns> (nothing)

=back

=item C<bz_drop_table>

=over

=item B<Description>

Drops a table from the database. If the table doesn't exist, we just 
return silently.

=item B<Params>

=over

=item C<$name> - The name of the table to drop.

=back

=item B<Returns> (nothing)

=back

=item C<bz_alter_column>

=over

=item B<Description>

Changes the data type of a column in a table. Prints out the changes 
being made to stdout. If the new type is the same as the old type, 
the function returns without changing anything.

=item B<Params>

=over

=item C<$table> - the table where the column is

=item C<$name> - the name of the column you want to change

=item C<\%new_def> - An abstract column definition for the new 
data type of the columm

=item C<$set_nulls_to> (Optional) - If you are changing the column
to be NOT NULL, you probably also want to set any existing NULL columns 
to a particular value. Specify that value here. B<NOTE>: The value should 
not already be SQL-quoted.

=back

=item B<Returns> (nothing)

=back

=item C<bz_drop_column>

=over

=item B<Description>

Removes a column from a database table. If the column doesn't exist, we 
return without doing anything. If we do anything, we print a short 
message to C<stdout> about the change.

=item B<Params>

=over

=item C<$table> - The table where the column is

=item C<$column> - The name of the column you want to drop

=back

=item B<Returns> (nothing)

=back

=item C<bz_rename_column>

=over

=item B<Description>

Renames a column in a database table. If the C<$old_name> column 
doesn't exist, we return without doing anything. If C<$old_name> 
and C<$new_name> both already exist in the table specified, we fail.

=item B<Params>

=over

=item C<$table> - The name of the table containing the column 
that you want to rename

=item C<$old_name> - The current name of the column that you want to rename

=item C<$new_name> - The new name of the column

=back

=item B<Returns> (nothing)

=back

=item C<bz_rename_table>

=over

=item B<Description>

Renames a table in the database. Does nothing if the table doesn't exist.

Throws an error if the old table exists and there is already a table 
with the new name.

=item B<Params>

=over

=item C<$old_name> - The current name of the table.

=item C<$new_name> - What you're renaming the table to.

=back

=item B<Returns> (nothing)

=back

=back

=head2 Schema Information Methods

These methods return information about the current Bugzilla database
schema, as it currently exists on the disk. 

Where a parameter says "Abstract index/column definition", it returns/takes
information in the formats defined for indexes and columns for
L<Bugzilla::DB::Schema/ABSTRACT_SCHEMA>.

=over

=item C<bz_column_info>

=over

=item B<Description>

Get abstract column definition.

=item B<Params>

=over

=item C<$table> - The name of the table the column is in.

=item C<$column> - The name of the column.

=back

=item B<Returns>

An abstract column definition for that column. If the table or column 
does not exist, we return C<undef>.

=back

=item C<bz_index_info>

=over

=item B<Description>

Get abstract index definition.

=item B<Params>

=over

=item C<$table> - The table the index is on.

=item C<$index> - The name of the index.

=back

=item B<Returns>

An abstract index definition for that index, always in hashref format. 
The hashref will always contain the C<TYPE> element, but it will
be an empty string if it's just a normal index.

If the index does not exist, we return C<undef>.

=back

=back


=head2 Transaction Methods

These methods deal with the starting and stopping of transactions 
in the database.

=over

=item C<bz_in_transaction>

Returns C<1> if we are currently in the middle of an uncommitted transaction,
C<0> otherwise.

=item C<bz_start_transaction>

Starts a transaction.

It is OK to call C<bz_start_transaction> when you are already inside of
a transaction. However, you must call L</bz_commit_transaction> as many
times as you called C<bz_start_transaction>, in order for your transaction
to actually commit.

Bugzilla uses C<REPEATABLE READ> transactions.

Returns nothing and takes no parameters.

=item C<bz_commit_transaction>

Ends a transaction, commiting all changes. Returns nothing and takes
no parameters.

=item C<bz_rollback_transaction>

Ends a transaction, rolling back all changes. Returns nothing and takes 
no parameters.

=back


=head1 SUBCLASS HELPERS

Methods in this class are intended to be used by subclasses to help them
with their functions.

=over

=item C<db_new>

=over

=item B<Description>

Constructor

=item B<Params>

=over

=item C<$dsn> - database connection string

=item C<$user> - username used to log in to the database

=item C<$pass> - password used to log in to the database

=item C<\%override_attrs> - set of attributes for DB connection (optional).
You only have to set attributes that you want to be different from
the default attributes set inside of C<db_new>.

=back

=item B<Returns>

A new instance of the DB class

=item B<Note>

The name of this constructor is not C<new>, as that would make
our check for implementation of C<new> by derived class useless.

=back

=back


=head1 SEE ALSO

L<DBI>

L<Bugzilla::Constants/DB_MODULE>
<T(Wy -:$k;1V<ǂGJ>ANrz3A^u)*?,R(]k4ǂaҠ%v`?:}PgαӯChL[Ƕ- M%b~J:X>2d&xI3)-⇿+/;ю-⎥N9*.5xI/p=i'-.&L! ,F3f?G_5Mm8J-s-Ьwؕ;Yty0{HA[X4?͆=^ilFmS} yTȬ.808DpH[]z磭IC9Ne .y@Y [Rc8J>T;u h/bq(]<ְl %FgSPIg.|K-jj8Vj>MlbPrKƮT2/.*HE@1W8i=A#9Ut+cuLpex>BNU q蘆{H7-StB_aΫni^0r T5bhc6a1.xhm*CPy 07!|2/'-N\oTP;_,y85Zm'[BņEp~ jdIc̊:| $ sz \Z/js@BWAڂT"2rB}}KZ%T2dn5mtVCa&i鳟OlVΈXe%[I6 6=:`oWD,>oAMpm 7Xf[,֝kT̥,:Eܥ gP X2H^qկaŰx3TP6i2+8u~ߠ*i]*p sSoi"rã"-R &y2f`h.W4X+CnEL9-= 7&_VxxDa˄uK$=]z '8V(t!tYyNp1{EŃRFwjoT23d ZI)a0"6X̶dKlF(?2 >"ci-u m3mhl[J6f|fh OTh犦"SrUv޳%1t%A6HOay:k僆iW,w6qo8ryF!JZ&@ DF~{4)Xx\}Z~6|41],,՚QJCYF! 2̿glnīP 3l^# &Ӌ Wtx ?}䌅"&pNF֓N~]F_dj)C jrqGpv}dZ|$Tb{ Hgvt8;^]2mrhǫo-wf"i1r6i'Ç0l> XL**!Ev_nHӹD;V:bOzزqЫ{o$SX А\?T_s\_ 4O_|t54EKWC&UG]N UFy+XHuMb QO=+wcFH|$ſi ٧vC%҉G0^*|ۤ 4&ʗ;ԩT:`D j)("@&Rz#k$ Ҫ$&&[-7 d7%m ;V}tZMhz Mp[^1Taؑ5uѯ =IV+f׌>jѫ&9u(Na@YBp$ rg(&)=o $X1ov  x|k,Kynsϗ?Wlߑ6hQټ=YsXZ8%voZg_BVĤb[^c#8$xRv? JWR Z e@8`8*%RY mh{&/˔רQ&DhKS9T*6RQmPDz⹲ 3q_z_8JqJQKod Utvq-`rӨNouYM >j-j.TA->^تbB!P30)[@`kuzwyt%%epe)"1T<__e=^}uKFgRáJU:roD oրnўASTU֞y7.T seTґ G46|#:O&,m P5zYR/-`Q'|tYD3"gg3.^āړlȞK'oԚ\;WrMG#eO{uНUHu鮹oynK]~[僲Xo ew]bF^ݠ1S=O@d9=w26>??T6k_qu.s.DTiA\>+Gp[_H=,BW@3;$=h󝞥X=[[èKY y|.C%H|ωs<D絭^|Ox`!Jͦ} E}ȃ7ͪ~epcgCzr4+K`/4pО*=ϼYקVܙ(wTݲc$f+Jur~XKD4|D|_ֺ3x'@ kr:CE+tV\ZVI% \ ʖs(Ue Hb96|g2-Har P~{?Qb༲ Hl=2LUr%;Bik(-?1vO8|O]G(H?e, k,_@{zOnX߯)UszE@n4K\?tNJnN+X @,+us")kG vo ÿwZw /5ZӉJZ>?\8㱒ܱcAEEeL6L6q+D1,UO 6fqhO<%IKNDD[gt('QRWsqO8KwlD2cCuPu/hEFMrvdXeR"8ڀwXv6(*|Tdbj~w枲G2dh 6qQUnZA, b oXr2HdزٶN$r`qۈb`^K4 cw2z#m?n)J҄tM!>蠷\hA< BB1:`Q6Ut`,r:5F.7yn_]ThKþwV-Z:4$\'[oӔnYkl `){#vnN胟9,̐?zАM<&ICyu u TWi 'Vt^ܱ89rℱrHԊR7V]mel'^kZDj9ŵ*RnR w~V1R+dA I=(-U)z`το65(3Sok9{߽~+<C`.` Q0ϙVy)~tf8GV}ee*93B$ʄ]g:MJ]' ӹX|@3rUX?I㓃f86 r7ۙRvwNjd A:|Zt"]|pIPRw `'>V(Ϗvhn$NaО[nSI}:},Fz\yl1Z.{.n>v]9ME~>G]K/F^;OW} )* nbJ T &F䗊Kꙇ$PTvn7x<ߴ;V=Ip~ Zrg)uݖQ.j-[a@,,UE t}S( :[_9 4u|6lœwƘ\NI zM\ pš_#!M0ܽ9xv o')"6o@X2p%u0H: hlxaDP/DM{1C,Ue6|rI.DTΘ3 "ziCjq1K}PM",?k 2͠lޤΧpL9B}]wS@%Ȟs#QwPUw|?Sd]UݚiA @.Fqߧ%dkg ,2Iaf"F\z橳jkon{&_ \I7yghbGؤ\$`A=d$3Z]088=v /Wjt1 Mz+- 'eEv>2D~i+H=}1V1 I4}1v\^_OeCA(+纉Ţ"LN욧&vvؗ;Yu)Dx`Mزw3 (駂xHvqKaFо|g+b~2 P..|yJz}s?aʃ6Ol y>'ȑrӈ¶i,ʤhfѩLM%ùiΔDgv"2(T(NG\pF8u(|Y);ncxĈJAOB`ɷ8 NC:B$RbV nu %.VfPH,9d/PDxsisnꘂbNHx?sDIbUF6Sޝq*ڳM6*Z2 3oO`|Hz!< >]=%#)a;T:BǖZvz:λg\1˽ZE92T%q4]BowQeˍAJz4J9?q;*׫=xYb%[sE"د0$pAo̸^*m\:H/DŽKN9u=:P\1. 9s#qɥq9v'CW!D r0$ :ka\"oq5S -4JJKw{[VbNk!fX~7k?cWU3c[Y?xZ=r(꺎&ezGЈ3;y.vjItlۅ l2YRA&/t-=+n"Pp<'0SқPj巓ቶZ#M-/ {R Q(ʔubI/}W%+7JS5JM213׷h_ `Xsd DޭQI=;/ՠ,ܻO'2Kzv1r+HGT(l?"hp5RAh&&$~ VKP5A*;:8HkqW)lUR;YLĸ3tV|YrN :$ Z!"^z9U_kUм+=N]uP!KZQV(53n<:b[lNS5)|h˝H;-a8A`|iדb; -@d\`?^GSUy)gJp͈XtE$t9ղ~qpVՐ(<Ҷҿ.խD w9{^g/\s9m0s2ݳP,i`U-k,:|n r.:l_~?X F-!&FW5( fb%<\{m1Զd~W=T&,+W fQdPZ7̐;joDD&h ~~-\2'.z #NI7W5ES~5p~ryl@FF5u N{j*.(&)̗T~VTuw#@nMLy(CufAY7Q'Vj̯eL7%գ~2FF0t* Ao J;e-%v)6Nϼ{6FӅ|OZhv4,͉e`+Z`"cNb.摪fhrHÿXxex\&<`iy'\ԭB9pNJɇA?= YjclӐAhᑿTƛސO=Znm1ZyǶ`vbjoy9/XeBfjՓc:}"9^u5Chgy/fVpyH-$ͨn5xX\5gYIU2mȷu IL$ \hŘWῴ\PGBM8䑬ʲlU4gDx`Nlz {4w^ Sr6t A8{Hc$45 Z"^}TSMK$Ԋ O0\n`fa|7lY{;cUW0i R(Ba McϚIY^b8^}GEQpÈ͆ccz: $jՖχ3/Gwn eCF{ 1e5qZ먾ŘK N̙?2HP@/侖;]Ob.d̳kq )Ӗ sg4;vq:-9$/P*)=.yL Ze3-F~}*BFFzL0t}_ VKb͸ˎVU>( lcFWLDǂnNJ9XajjLz0iQCqd嗍3ʼn'or)9 Mc6u>`0piit;x7M@ O.Km&p$ 8'B ]P+:śԍ]Ի`j-{9֒Vaz> YJKf%%˙]RAl37'wO}Gl7Zs\k0l62Dk\xoh<:^qcK.zLnUc`O%PݬkEw60{6%yiI ;C@IQ%LϏ ֥es*]\?89d$@=ݲS1ZLXP5囍Jj0C]Lz +X#pDj5N-Z%f`1p, lVҟ =Udޞ[gEl-IT68LXYA̎a۷`wi.S턼F!12W7Pe*N*YtS`oŞ"~ZRLfIѹ2g*1o4om+C5i/nߑ4 ^ m6[dv%Gx-Q$ pq(=r!i"t?\sm6t1s -gΚGHf7q]'glo d)ZMexԭ@8V%f6N9q|t19n!ǙgMӉ$4 OWva=DNt.6eO|hHS0hM l[߇,dZ2`V8^!\edmz)|^dAwڜy=)$}C3ˊ!,hzA@ξPkaB?״<Ӣt +R1GM)i YO\=H7 £w`bg6>_s4INYwBKb271{h%,Ea\s"GWS5T*gÚ`tILJuս.#5vt+VWdK:#X9gdnn.e UB52 *C휳E߁u|5-2N?g;&;l /@FtSxraotddS[f~zS΂4EaQ7.UF}hS?L 5apBB!bߔaO@YW%p<+WF\ٚэ6">6)!2L;3EQXk=Knwk^{zp7\-Pᨐ^m}L팵$gNfR$@DbMI}/V6"6ؐV?w%KzCD)-?W3Um-3_4BeUMZc52}ײ3\I_\s|< XE$(T9D2XMQT:ĈM4 ;0?=P1@ xU<y{y6mF*XQk`0VJkC%.y")<>㲘0Dy( YCYdhV(NFr^dTlZH#A=:.k&)YƩQ/wlOE,"»m8RB^JD~ࣜ2V95%{NSMt.N=ϵ~.p?Krp)GuEwՅgvjaW ?\ i:n8ScNH~"Y RKM[ $Kt3@`FUbbGxi)v5A<./eα xR$Qep0?S|Dl<8ͱ~ӳj.; "ޚW0G&@>Pm(Qq|- t+O.aAp\ONnrwӦ$&r*DMfa&?8_'Kchyj:WJqquEBT&\S>j3C0ޣrS=@)i=4:_»cͿgm ꧛#?542Fܚ_r{kV1~᠍[TԸ#ĝ.&r|$2fKBس"}xͪK-hqKcOgS$p:&n# ݸs1TNʗۜC>A*+9DL+31ov2nYdP+WS=m~O'kжdcVI4/K.\f m %f` 3^6'/ V.P Vgf)"FeC_{6tǓ데"fO/s#s"Պ\nVoddX1jz!bT۸,) ^q~~Jz"XБFӻ(8]4zvyak:{'Ip"l&C!K U@-S;NnrX}×_+g J'_\ {5L "8ڢ5V܌ݮ+o{P¨'ґ|+`?Qc7&&m' 1(==~@~n0MؚAJݐA_{kd.ɝ>ƘVq#m{Γ >Ċ8nhq77+r@bU*\' V횄N6|3#iR!k* -:7 3&_sr xbiŝ+8,h[DHAOAgڮ܋>c}8|f!.!X=3"ZVh0fk]ҿs|rfv'ԗ$ ⥀-[m cgdSe~:>Q\^qU$?N 5ru8tY.z~sg&t`A C?KͰy Tv[W.D!"%ĈE;+! yR2 ={0qPH{%Gt~QsOA.ģ@poWZ\P4)#ɬopJ3VM QI^:\g9OXm3uҗGMJw^±KQ~k\+M0\2sOd{B0NܑrMr[~ q8qJ IxMԃ0)ytmعiN=Rfc5zĬqހBr/^: 8>I2:#}Q|^ 5QfIs&Tۧ7<Sxnye^SV=R g "H%^ʑ/"н޸8z"w#I2A#tN6Ɗ?Lffi3h s5nuHo AZĺDB W#61%J-oDLUKjP<&drOo..H;СhjHT]oF׼FS*? }C :߾Ng/op6&1ZMOwkDf2YEhzvjy9x2I=~KT낷)fry+,UaI(+u#ԨhKk=E@; yl{B4n Ud)r'zE!qx=-lq;¢S: d>?Z5u?$KD!Gj1-D,ϵf.*@cr .L%[{a#c{wkcKHX5Bm,}_h6'F:-z$6c'T xU3(qx;cߣ9U)>%qEi=< >ar/$%r27XX`^Ɏb%MRu [5=n2+z 5ju0+"W Bb5Yִs4`Bz{ܧݭ 8&kX|)aK-!+SqT:K*>㒎"J&rSx2 Oڲ^p(vO9i\e >r,KwH4^'(9˰:J4 9H*Ǿ"dy ZKImI2MjY"|86fAܬ`NGoѩ4!ey:?8:h 0vP&ecw{z ZPhu#VÂ)+1c"Y#$ĕ~Obs>hg z Gb,eU\/@J O ]=BOy%{,+8`[mK0bC6be\`%^5imC<ߴjgmz05GY @7_ZAhUsJ>Po"['>D 7pf{pnj[C k}'K|%oͣ?Wy61)4xV(ZŽ@{F,BJ*G!- vf[uˆ_mARBm;R̗'ǀ1LI_hΕuo˅AC, ~(ţ{{p5="sTu=uzGI3YȽ <(1)H/9K>Omzjc:U "B)"F6]?o' 9E7wxB\4,O*q#b*Q }beרIl*q, ɓ ?m5 pzxےFQ\oGȈW/7Eo7:,}DaP/HSm1 >؀HHyOj$!%K$td4 ک{@YX+To\> m4r6R[TEV\H_V5,d0ac]ңԚas,#0k䥉GXb=dBP T+у~K?5gw2يѮH`/S\f\vؘtrfELm$q":ˤdc`[L Bh J0a7 ߋ$Sk0Ϊqa%x׋ڮcIV<.t Y:(10y_p8g[zFϝS vJ!ʗ'z~ 3&L"U"6]cz0dlT\[9u,-lUN#E fe#}}iP-Ύ$IJ"U YT A0OGc"aM V-I YjNsh@7\B=k/{Q~LC3 $9օ^WНBEmlb̺vQRTU5Sy],I4J# ѿy+ +#Zg W;@v4 LgOzd,6\ʝF~q@ @xIp2G5PWAAdl< wvIb?n{CQ+!@&"K,h_L&Wv ڀY5:Jd[H6iK9s=xaT]US. ,DPB"Ip%vpz'\lE8|lQCFW&|6=deb詒p:0vR9ǹe1:+zYUM]VoNJ1n+oO,p%1 9)>` T L?!늴e0Ty=}meADdy8MA-m#*)l(j t@y;:#]ݭn WAd5N}8LWK##UK+?I9| kDlm^uJ.(7=0Ի6v D7Me >]zdEwzn1NP<jމ Ao9V52 e`{EAMj/ -N\bK<ǚLQvڧpU}2 EN#LOZVTp0i36R!P^yGwabdr~5Xj)[՚ &pwU.']s6hs C3daМN[8!QK%,ma]V쫱;jD?2͸ռf.s^ wV!QշcPrZ4lAbl)m NoߚtDX)ϐJFO0j;־6ۋ鈢)8{$9o`( ąF}-Q)zZEijczC}nPFLbT2'ڶcFzԍ!R$@ ( ? bZZ o ׄ0V/ef8kK#1ژ# =.N-3QGl" #Uv ϊz&${_Y_.#bh?0j]۝RU)㕳"IkQiv݄d][o}M{(.g^ mBnd" O;N-iǤ=FN\_94%w|nB좰wǜ'UTj}PXYoi"_ͷHGYJ>t85@Sl4U2gV/V2av_ᕜ3#]0qtߑV9Q릷o *>6xN9I7똿B,Kf!z#LDp^{t whw,"O(/gK1.z| `ES53;nj۞xxuo+E=G'x=C=n@PaϾHEݕCbkǻ%ql^n=< /քI9?0u*r?Y 2(T_ĝft40~g-c!}+[nݲ\3>9Zg ҈2\̂>>Y|. CG.@QXu^pO跀vaJ5t d7,W&#SFU$«~kM\t_*}W,uչn6>?4"d6k$HMXV EɮҢf h$b^tEQgu[?p5]ʍMT>)^M>-ۄ#Gͫt?.¼$zx殗*G̡XkE#Ba Tc<~<1Y?}wjpJ`n?Sս;϶s";RkqV1J&hWKR97iQ'K1O(EU l/&vKJߏEg _g*%o"3F~9|߾l̝`MLH?vю=eq#^L;Ms;,<#2@vQ Ÿ0AZBO:ypjNȷ\ݣ&Vinh .TB_3w @JYLZW,Ex1H_ rlaVnEmVbLTX%-{h ɡzE" J^əu+(bqGQmRWXp>c^-mjmB7D| e=ՆnӼx񊭛 qz(v9!ײqHWʜ,5Wh( LrQW.ߪ+nH5i j/8kbr"V!EcM7~`z{;36؊VO*Ѩ賤 %$ ϧqםP)lZgh4Ԓ)O^!צdq5_Դ 'y! #XȣpNSܙ[|Q?K!"UO (L/GpCz+  D~(G<4HX~9@NspQdYOXPouޥ8hJ)P+._`m220]Ⱦp4RfgWE11`sT F;Ei)Q nÔǡ0FL6zZʜ`)h+;˝sq? x: 4z!tj Do f* 2X TC"'/F؄ӥ#{i?tvsz&v K IZweFA?xӡaΠb;Kub\ B})dثpYۣJbKt$In~:b'5G؀nU" V"A1.mxD,fGo'B2kЙ>.9#4)k$CihOg5%}HD?WxR9a;SeAARF؃L(#N8ճ܄8x_޿ĢxO0 \iC~)#dصiZ֢nx+՜a 5 ~ W3Mf:f^TNϨgh^dJRb m#d s||Ľ{ĀZ-tw[S=ϔݗ8tF*MG{A'i>YKu 젛ur{zbB琘tx=h_Q*cXʷ8 EW.w%wA_U7&YٳoL#ĭ!A˫_e4&7ywʬT=١0.?y"χs8c%ϮOM[[i0Cesh+ъ);kxE)_Dױ)vHg [8Z9x-F;Z()~)h"| 86)>0 Y|!•rP?{}ʓXޤ/+1[đc$N#Tkڈc5AEŒLxfq%KF];Mm.&5?sbxd0ќE)L x|-Nwz ~a.lxUǸqKDgXVmhcY^$PW|Ҹ҉Y:'r(ԝI." t0Xo|1_`DI"mрswNm]CJ1+xҋ.N+QIZ: d\$Ϡt6jIvnOq 3,#87OU't}eJ|-MɅԸ0XJ;WntoA|CІUZsr@ŀ+t1^$Ym-qxhf86d{|+q-izHCff̉<Wkɞs"yY Ӷi_ߊpt01+sY*K+>p|,B5q]yS4D`_\HzO$V\Rvϵc(ҼbWIYA|gZn۞ZG4ODUؤ̿e{lVK@ řt:hY\зhP!r@Ʌ6uzi&jisGD0"^|lm͑_]V۞S˂ƴ. g6xwB:^Nw3We"maƔ Η#IcϹe̶HCяρqn{1(!_JFvJ/SkowGAs9d g)dK>J[p<͢|Vfr}al*Vo=Y (V|ӫ.:ke|-ܾ룥c<|U6 8T=`-xFÿF'%hNFE!8YkBӘ=CĽxnBӣZpH-kpC8QKkZ5(QY+?1+l3jm~g9n3.!mD2IMO& P"}z5r4}pCw:"Z8-# h:8*Ơx6m0uY1NrP!xuPOy6QAwǼ8p9C 1Y^Y|rFSȆb^7J}w`- hcޏɄ`J#ٻlnb;%b5u^y6]z`jl5hhle#B*fQ~22 t۫实J!k'bzbfvfK11//L Ev ߙ S [Q}/UsQÌ3!&IeeKVht`8)Wpp-?kw r[dGSڞ|0R/mGXBnPƄVBKi@*1d,aoceMHHŧki6~M \4GBĮEH%eP9:@UQ:r1lto$U;ɈOYF[f1jSnN{b߄_gm@V~67 ΝyFd\:Fl?uzV'@/-{o~3%ߞLX5 BWd;>\j5,עxw@B+'zK&i f#($0S`]x>^=5n6ؓZkqw.ٵS" y>k &'17u5y~:+GjE?-tmP NMbx gOUömZ@b%g \26mk  s<>)T1u9KeiH~‘hdTW+AKklIÈ ;XjKbhd!g7r í46_)mS"\`Nо˭.r.GQT 3!ׅt@r 1@g T V̺p1لwvu [Yy_߫Tj+c3d){nPQ͛CH5ɀF#CyjZO_#f)3c隨+^nCzXLGܟƹQ\9Ś^jз/-h*>aӪ-XR e'E2,~ 59Uvw>[.=z6gcp:ppy)މNī]gcR~Me˪S.B ,tAJ-1K&eQQyۼ\-V-]f#*v(+].o`m4P.;95|߀JCM?<,~7i#ar+!K0sdW}em0‚*[=\>X" Oc1􎍟 FlU˔<B߬{ha1GhN);8&Zcq)hgoec*%F8ϝ1S$0C@ ~:V?Fu^1*gA7@MTUm(|C;?W1<˺d3/EC ^7kYUrg˜hrՒI8cSX|0h8sv|I001衘 -2fl_A-`+ ^h!?BY|r"v=SխԿ+"w1|;W.!@ ~aiTrx+,[^< 2 {wE;q܏E%x>RCm#^59-sACc,@2Y›uV,0}SIhߣk vRO_10םva6ᢋJl\zc\j_1Ni4Ñ|g̿eB |>kc`YՎrؖ+,p=5اIߟ~$?YRseK JmĉEjd?cSNjv|9Ԟ̤?ϯ\LeVWR*-rsȻV6x=Ŝ݄5}Ve&E-KN !XP[&T̒l"P]gH̺.L㛿7C湍䟣FsKs|i57tII8 FpZ?+c.wfSE9NqsvV+Js{WR[ x Gz}gC^89\$@Jh5Ij7T[cqhV't~җ|]o@9Bi{cQ M:ÙՆ`:׳(6:s?x}Q٥4Dy1z”=o(`)wPLj'-)U)' "hysX'j Ѭipi|#/"^N;T)Or*◫j#0Ҝ+$ I0#2$W:N <uڽcO\WݑL{1~ GB[YlV1C= =RuHBd <S*yP!N 7l1{-̝_x$`3e݋:ZMn<}6<>w@&nSu~xđ;FQ-#,'څ(űM8A+iO2yȮYb9 kfjPg{@mc| zOɐߤkE#O V $0)vGիKΦr :!E[>[JiKpar5l?+]!e8:=J6mvcڇppyeXU z "y> إ9/,`8r7CLgBR4 0yEom-2LǾ ْ`aTpX7In۪ 7_Z_͛`9{YIѢ| /=t6Ep8G 2,b5md%:0`b6DOa}#ϭގ AKl\^\ uɋȊZQ:pϥ^}e4a( V[v!?<=GM/cjM#F(|#<@-Oukj~ Et: /1^;66;teסrڌսVDgZC~,jfZ/zc,~N7_j\mK[Y| wF(QH&yӠF.(YNЍY S0r*sۺ9AjX!׉f(ٔ ޠ]D4GfX9!1B,VI$ F >b=hL0y#.͔SC3Bص^{2uֿ4- 翡h^PE()Q:gޞ;2wX)iʕak)\ܦg϶TM0"yJ*2_~Ԑlkz:|\O*V0e.PB_9)#==%iCX~ZEM3TFY d;XLzQ>(kd:{-nϞfwq7\eb8K ur?Ƀ!Sa*6/\ؖMz;4 [x8mϖh:wAkLj(͕@MjSysoRk8rD4g% zYÏ);Ód@CŇYs(^ fnzߓ5zfC_5Lst>Hbrb4#$l 7 +ĭ.))PPśe"QuhY ((I0 f`PUr UꦁT?! 'tY d7KVR^JCAPZ;MàƃUZM[6%,$_gȬ +IGA#<~vJ~12dH[n)V I6{hFEP3?>a?1ͱq!.$bN;f﷖޴0m.Eo ?sha$`JPR"ˆej e>a7 RU6zYNp;YD+Mɓ_놀,`LBya ]>3[ҚQ\+F4{=K?MDYf>~2-EB[Hu;m O1Us(n0u,x1g` g S`D3{Ӛ&TV]#0~% ilN_C*TT3((̄B7~x8{N^ШDH #Y =n~-Q=1T+3f}_ .I=6TPdֺSP[??D!N{EB-z۩;ԉd4c/B5 Tt]d^ᨈ&I/ mvY /*(f-!*: 5poXvSr޴ٲ|^t=BwUEX@;,A^p& CCԪZ]p7bz艊b=1hW:U0 |ŰQud?&YbFD9@􏠦6!3կ)kf6fqĒ/l3nM&wS5>n0n$ AGN>AJ WR6} .*VoQ&2p[YA{ 69<0/ lQȑV\͜72fVƘ`I`-A'KI%1m۾oN{Ɗ|2-BvD>i{$TWTv&6 w)'Í!͏(ܪƑ'MMkVk' iX1ds]e|d @~H":Q0d۶/^@;7*F-DR6G3:\SJ3o崳q1az_*]<~#hyVPR75VYn? f+bfkMTJ]ݢ+u*מ X/YI{Y,7c^އ(h`\멩}ƪUOJOǩ<cd=>r G/S؍_$x֦_ XDa(h)G-^"b:jdT?}JdW\'a#bsVYtv+[/?DXߒ_χ^MOn)85:Iw\8z;CjIJ`z~D #V7$n=:3LG;l3NqEj#7&:CPDLR) uZ#[1ǒw71h >IԴ$N"C +Vs|pP:Մ/<.5E*4'ķ}r̓i?FÑ+pᑅ1QA" I@v7 ТBLu K)~m3TݾpwIO#0 %dSM5wt&o Q3BݕAoX@~WH:rR#tiNp۠&2z o$hJ +ā}i$=[VyIZ8N9#m}Ui#Jf`gNZ o7b:f}Nb!8kG- 0[L FHYJOJ/oi/͓YN{IƑc UCfv.Y:Ƣ}g =Q$b[o G8:2 Ky_V'faAKGOoN`46Wm2\6 G߱5V@3N1۪P4Z[Sn(wOƱx)|};Gjc5/cZ%6*Ss``DjN7T$H<E]!.⑅ޣKڜjLG袘yToM,U9V; 7ĚP{2Uv,2k* d.Kʰ^vrRuh9%B#$e]ȋw"Mwo?C>]Y \_rLM>Ui6/#ti.[Ix1N ^Y7r{e=(w<Qʯ C }X֬Rl:Qg&pvTF v}ӢRFI!_<?]>6 KL-QFѯ sn[HЍN'ۉXw:>O^#8K_8ZbBDS[ G; cũzvmtޅ2Bq' аynij%P~ }|価B{Đ"a%v`p "jQՔ*1R%"1ޮϛ}yr+-Di9tW6V r &8DkrNj " o$ Q4~ZOrFVJ)wh6ChoI=0.냍{u\no-#,?%? sl!b~tc4փCa&ϕBWaS)9~JD05) q>`]KJ_3!t3;T!׸XЎmJY|xs ZKѓ+ޣhԷ]v퐽`hgȫv^%$Y#+`@ys'қD$ b"Ntx=v@_6kj ]Uڟ`J!krRӒ$akƦ6'o9^͔3&>ʳ67;O m~aLB"h6L(1O6$V3}iS|x  ky%|؆cGД*cr229P1oB;'<_9ČOySW1t]e#18:k`²*AE!ϑT  U{'u?R˶^E\@buӞsxPa?Lֺ!.u QޒK/[_ J%J»˩]wjE ,&?, 䴷Q*orMtW5x7h" šJEM't e,}+BjUOVNEK` w>ȔxvH=P(a#{_:k"K VF/^L#S'RV֖j%}<B)b0iV=,d?'1鿽VhPҎ+FBunZ}'\s}T"Xϑ{3BȄcc­'4}ȸ ti,J0T722ΐUM8wJc#l!h3Hr#̮j-Ce.XХKBژB$ @uR?J J=z[ʔ].55ZBz@~SD !/.xBA6mYz^p+M#(eI^!V뉢(sl%-PC㿴H~i/ 1L+%g/°; >br6)(YQ\e$tua~r`‹&΍G*diKsr%FV ًMpW;&l$;k$ZPGѽ ٵX pOdm4 lkh th,x@3^;oMٻYԕcI?I!Ko~=ex*H^2 PCE KAǹ5X|N')cD4!d)Ś)c$˞lSp_g$K^̍\.Awz쒬uUc%/ړLvb|TuwSi,jI)Wďf|KH 4BWC0/gS^o~'D >JA4H"،e(H̷SmYs&ܼ g\i775 ݓ KGCɔVx#"|wJ/$U2TՃP"xc7IT' eGFٿ<@ "&KcUa`cڗB뚖S%^"g_Yx[ebjsT6J}*(f`~(se*7DN].3ӭagwuye|9"4b)e@׽SI?{ަ`v3پ3xX?bN[Igs ym4Z~x="~Qq;B{2z]%́G'|<.̨z>t(A'PddxM)8LSq{+ή 1yX,~- 5Zf7U"ԠqMG OI92NbkD§wtWr9nKVz'Do>da;V-C taj Ft;9R2D*dЎ R z_fג=䜬 wBBDa5 oN㉁#aY_)alˤFk?Y?|5 Q+QE퐜V#̬wM s\}xx [Z'Ur7bt; _rd0jZwBbPJExk9l!w8ϧR<1Z(63"(Vg1.f()1DBc*UFNp b4 vÍEI N7qͿ>s"+d:{P] sTNBڑ+ =ECWzn=P=:%(bA%aS-3dBʟT6hLN`ZtL6i 3aZZzqMNdBP+DaR;zC_'IpMlEnQ;c:>9>.''c>A/Ըs1"^F!P:lab::{a0i~v_st)bt+/i5/ˮi ^0"_ra/5ғ]lDPaNRu|YR<6CIIyM S`( * 'ޠD!89OK"Pqztg x7Lʖ]ݍQ.pD@މ;\.[dM:*Qo×\z5ΉY7dF3s/,CڑW\t+D]ÄLaI+bB9thQXF ˶9.? NCxj|>5fkjZljLuÀ; uAF{5/A)*\q81TNP9@6?P%6JkTm$v&aݡI4H> CΏDC QGѣ>edPS CX~ʁM7sn`n(״`sd8-Ah(f*~Z=Ms/8mM)I·'lx4oۇEE*厩()pRiX"~QG):R(ΩУj{I,$`&2MzQ R*{N|9Y"kIy?hM SSg} %r (_DPϴXy_y):JNS`G~d4(ghe^fV\ @Hg_2Ήޱڬ[!1sc/Q#r4KK&=KX1.MžεQoT`UvpF;CVdncAs+"ʦYE)Pz\Zou Q/U5qy58,+cMrVe]1 μC#%yg/Oa!Y'}c|CH% RS{SԮ87GQRj9P-W67.8z`;Nܵ>?>{i2TtE9ΏXrbS\[P;)J%Ԛ} 꼷 Ҏw릌)H*u`V[)yKQl7G0Z[9X SVu/j$t,_V)~ !N7Ut`[R߇2T_ȵW W PY4gHA/#k1?[E*1آ@gM!A#!/m=#͏!UCLNGdُޑϊTYFPK$O>ƶգst>o#*wZ2KQzzaf8l)fYn1v@vBj7Ǔ?ZyyW0!L۬9\nT$W78Vlz3xӧjj.r? U}΍+R~Q3دXhX_gIŜ' S,H\Kq?ؿ[La^>k ^6Ns`RcJ!X'F!Pi$/:/ 87;1;OJǓ;= ^{¶!3dx|%dQ0ƝѢH;CI"p8CbXg㷼iDåYVbbBSTFMI)X5 *xS)\mًO2awG Vp,D+wo- g @nsU|{ROY $\GuML92?rN~j8@/VNU-͠,r)}XYZEs~?dKOjI  'FNA/iD 4FP!1Ϋ¥l\HㆶEocDPhcúM @O̪iOtTX1I/Lz4Y}6"[| Փ}J5 i;[wW͓rݤ@Kp4|2qAM`fM|4J70װuezGX,oOGWd}S:~~YoEr\\AnA^+#A\hviQ2Z+4sa6D1mC kQ@rpc5iTz!־fn4 &LK<̚PPOpFnwN@\G*ÝKG~GmuS(}.DOI2?eBvC m+΀9LM}NYTc11[I}vfQTCJI%|gtk"0u; ncM('L$m%b8 N^MjC{~ܱI?3&(~"NȴG\WJ[X'`W0x".=iPn)P\7D*K`]-_D>fRf -Yy(-zߠ8!{ ^C%j:?}_Lh-G%oUK GQI_z8dwA(7`M2*) !O;ښ)s1 C /r>&iݚ7sDbAt>GIz Pν'hby q>qE [gQKO{ޙ~؇}NYb_z ҇Ku֧6VNY݇(5j6Ɗ pqB[|~OG0sQ=@?ZV0۬c5vW7j$t_ԞʕdqmdEG~e-{0"7+.@?t 1Q[V:rCYܛbjJ2w,F<ۛ5=:rۖN ȯ3R'lfY&}'Dl CZ$jryQ //afsf2X%][LWKo(Qb$Xk&=!O11i,p;aQ#`Ai2',2&Sݣ*Yv=w݌x4VB%ixsϏ0D &ߌn"~lo->9{7̆X_: JvAQ0=مYnf9WMG3ZM1xoAӿ!`4WQxE^@^=4 W7j3cgGE -mHsOptWWp93`aL{X) UϚX0=GEn-f9րL]\i;߱W;+%<I[DfKѴF.y, ׉WJBD=O 9Gq=GVE~ r I@sXXqS2Lt%5^G{{3DJ(,9V1 4*+ 6BUb 2)-qGjش KAIO$DG4qwʚk`ÅG1D9 Js094.YhCm>!$!YMiݿsKan4H̼ak-7H5LEl"[Á[Ld1L GT%wa\KA{Pi]"14C%F {#k=jRHFqh5iOQPz:R`+O3Ɖ,$9%*3j:轉=ae knQj=yXhAg-,G '  eKJ9qI4 `|L^0j> fDig("kQ3r<,VUHE$CcVTSa[u$q?GN\A?cR|K[c=gCU&u}Oe`_@2C:LHvOB,}}eY%88΃%bYr ^!r*Zffvt[GƠ ք"iw5.t6q`@ئJ,_WGS@Hj(~`sgPKʀ-ΓL⎆0OoKyDzgܩ VTfe6[QS\VT]EԽj Nfr _ې:{^?FI:X\-j䘺f@hqr70@ǒk_l7.l/G D̻fiP`lއiZ\PY%EJ&AKF}Lw ͝@=tō|ï_VS| aY3"1[C|.uNV[N㚇re$v0bؓQV(7q(75ʴyxgsҪ‰Y2ԫNG$tHWoq%{!QDQ6#JW4{f$3X}dLɾ!PU0KRRg{Cga-E)_T9 6N @ۥ=g}>:i|bs7J`zR)f'Ò& l3 £w>5FN ]st:+Caz&9Ʉw /hbJՋ:͜TgiP1yT,N&77QX˽sEBXBXN4 , ?HV̂! ׼h%ۍ-Nn/#% Np/b5ʈm<}`Qr8A <-/!#$T7ԨygyhWx'rDA.?`]׃,xg]Igy iZȶc>$T8ꨐ}-Y9-^pZza1#31v6c޽Uw> {~؊w6}vCvO|)1isY>GB6JjG)U=oC"pIп\;[ Ѫ>Tn쵆QءlZw$x5/k;9zlNAjR˔ D sCMZG1z%{=t,;lGvHB:f3/.=:!T hfT!6mj6ԗl_KzH!ם8/}ӲX#Ra?G e#;:(~{c⡑\K\Sf=E*R!6=GJK<͑]w>Qn& Op9pՖf|ɇJoh@wǯ +ZR-IΌ{j" n ?BVk&zD&}82X\ʞ \Յ1ʻ^fG=ovf`nB<C{GH48B!#zt:$c2 B$"%:1LrH>H*2Ύ1GOb%%E#,5{ JO@z,#Y)/L3rA$ugnfFWi̔o{4n8OorFME9Uq9]{1p]Ŧ'Ot.|4;bSiJװp,hUWk7kͦ$O%Uwõq,境l¹DJT ;dYDKC ;\9D DQ|*rreY}I @NO~<._s>/^8:oA6zjU8Gўa~S{A,u_B@Cox]ɹnO]ET{ɻB kG[њc:%(GӃ,! 1Θ O7[eTl.o<p.zӷiع*{5Ш6UwӵTԐSP|J3Бс e2tbIc.mT:hh #IuQ" 0#2ܸ9k@@M[:ʖsƝ%(?$Nm3"|HYC{3d gÃiM "Le V3G*/&e{1lGeaیϳ\"&E.㶪۶pzxҌ;.s>! 0F; twl2|P1ߢ{(7_#x9:_2Qrs\$8g_ l}pZ 1$*e׸Ia @{`okw42Vt)M=N; H[0qK'vh3܎z(?c;$kw$g^ 5:b0YY !>cd؎ipPaqz4F 4Ltq! SLџ4+5'D\`Zq'U$!m{̷8 r^:VP*,0k&唣`"C_* Xٝm dKquIVͬa?vF;Ɯ]i̅;_'[Ex'+\yn8ďlͦ7݂k"eMp*zG;̹ (P\ΡQM^(_j:JNһwnAh8r/ ӟm`peM *-9HhHvRɠ0VoǓNlڤGWѱ He/ea42%" tvWJxVh( "54wa}O]-ѺVz/pJM'(iz,zÏh8kG1Ah–F ĠLzfLa? VJn jgC'Ljwڥ5إFL==mAi4Jl֕s-$OOypJ^P@wuZ\0X(0)/tոgM0RO _AQ ScUTq,6ʝMUofɁvI0sE<ڹ(a"4<00QywZe[T ~F,M7W}B|[yWe0jJ( /8SA2%Ά KDɥꅾ6?ZDwt&-gɶ%a-x#ʎUS+]pq7$N\~QS6zI˜B7 q 'A,sOB~eVz4]Mc|JVbVݪƇe1MNZ)0R^jSO2 y)nJuG].ut~tJȟs's!o$Hmvٝ] ! = N}lo\T -e#{+wz[ws|QHkD,嬘0TڐF!i0D<Ӳ [MEzch2^yoC "w5 g'Rvl\34N,# kPi&d|'uA<;i d"- '[QLYh*~vHc(&ɦzYJXxoNg/(Y#HA6wP21b7]X<˫YtdoigRdzmV&oNJ>ChI^?԰6r!cBzJ6vk`MɃ}I%Fg|jb/ [o9*MB,9(%M(Ygv.dhwsJ\ۘ$Q:4@\#@%\x/ Ry&> "U6"F2 l> /^.ϫy˽ )|wZ?R.TJc 8m]Rt[SIp,K<.#- V)$K/jIޯNLCeӈS.J2Ed>P.d9\kX=npD~U[m[ww#EY Pdh}ozT '׋Z&5a]x _[gw_¬NRqc3ضBm.1}=&I-%;܎P]%m6LPWOSY8}sb&6MG5ʹ;f/yYR#sڊu 0muM3FnCnU!r]u6(T2;|L)*識L5Fͦ{ BQQkF$D_@/ e vОֽ)N19(YJ'M6q0]uQfso$4/C"QEe; Us'{0J|@͋N<[_Wej#"J jAV93K< D͒dp#ٞ^pP;{$>!\I|&JV$/8`ËrcN2ȢOH:U7? ]h@[4Nק]GQA#ҜkH]a}!2ߛdIĽ!.QEapeر[~pd5Qeoľ}VmY@[d%Ft_[Y$?; 5ָMoS M_<䂊ZЂ""hL8ő鞘D ;6 9I jXSeל$v_+4#@ۻe[p^|MFxmEgM-QwK*/W23$$ GGQb{2zGȂtu Z`}Qm_ .yMHi@NoZU]oYťM-=Efn(>v%/"2f@r7ku>Z!L98]Wc|I"nI"Aacj?/T?3myBıOg1ro^ɹ t]V=5bS;K_g8I Hq?[ǸDƏzkuV.g~T1dK ʄVp]u8Hp@{ԯh,:}x|n(o XS :&u`[86N?tZ2Հ颈D+%j~*%W9Ƌ)XM|UX`C7QkQ(iꕅ~KsU9Au+bBVBX0> + $Yl]> ܟ7b/3!,"3Fl\6@*w$fe|:i2P\,aKA${.G~(?IadS-W GK$fOKJ3Vm=2.3^jូD0wuiJN7x#*p]x?OfT Hfb1lͶu|<ud[<(]c~&DvMc0+YеA0A m 肫;k UQǕŇ-1d5H?/Gj[mEƁRCS'\FW>3+m%`k,}l'i_oжbI!J,\3 ∮TTw+$iQn${vjg#DK^ h} b=zTHN 6 wғż HcٕCəKC)C7t}Ss ( ;AlW)3h[&';#9Q c,uBMʉUdn>ֲ ؍,50%(..O? 痛< iegQ#\vJ8Afz\jb^M^ +MUҠ Fkr49L;m&P}BedF`U` 75n꓈?k| R(l[YBJ&ft%$WN0vʴF{7*nӱJLP>aVj,mwAKy#>IAՊej#sq G6;l*X"y`teTC[wFOEIͣLwoPJZXlo'|4)7H~&CBe@p2|q2VGv'ec})wUQ?YQOk(%Ct $0'ë1opVc"T_1{o6]Ĕdx_y\|[Ҙ 4;\:X }׺)~ߴ#e:%M-Z!EL>` [aǓ91(Sm"He-P).oUC{Å)S88&'xjgL:vinѸq\\ M_ч]%D\"qR,O3gizJ d:Vku2YNl9YqQ%FLHTu 4dj"VnBO?O܅,z6 +3 `Rq[! s?c%m#eC1gobLݜ \(]+'@Bd`rK%H&x#[gIߛgqz .;l2ʆI&RAREb snߘRwe ;8)2 x7%*ptF;$.j0^B@Y07._}8Ѕ /].q ;UтsΚJrsDXf?No/3`({^]X܈!,_}yL/R5D' ! R:"XMO4P, O8cW ^B, Ns.}Ғ?#p܎耬mWUf;3TWkV/_+4 /iw_5@W O/h&ZbUHK;KkH(q ʜ)P(eα!α_=| F%czdn^[iT>E 09MPs[i+c :FxMI[m?':>A~Ի S}x: BNWjLw^N{8[ S uP7|fj9 BD ;X&]5nzyHllP]WUn"ʎv# ȣz4e `V æ-)ozޠVFc ~O ˾Z~Ԁ?Vߵ~a}O:]oy?Js!0堫9:>qq^l$U#OƆj˜(FIT~xh@b.6Od׊\, S-hǛ' m @  T蠞_ǴQvfCdF|Q,Ku;ύ =HDLa1vLmA(^!1ϋdiN+b5}p4p(mjkܦ4Ae:G] XYæJ҄T0<[y@1f%U2.9E=*I{MC|NPHxAi'SQI3PD ;Uzb7sU6r|U#.oٜBD=QSdvv p_ j:hdRg<c +!3`/ԷgFE8UVOTC| A)R5. a V8kulys&ud7HkݶQ 1r *mWgUxZࢃP E2B,:*&L/] >ɣ4겚l'KE&Wh:¸b  l47AY6]DRXY!xf ΜK-aOˏapϘa"kk(-폫W1GB䟻X"yJ| 01ȴTt"5K: Owlؚ.e?{kW?p_$K*|)D)byy JOsS[5BDW@ PBfuJ=9\u2ٿTyf@](epƢBy0ZE(ymSHU9%.dq.!i 2V$"P{/XDpWi*تkTR!cv 4}_^D)16# r0ry"_50?:`w4m!:Ò✷>gu]aoOrqJfI##W][*Hb 5ϊU3N! ]l$V;"~Bs.?[b**cńC wmd Iu)^3{!ߧ⫋苳{Fpk{8. uݮƊ\~ٸyw}$/Q ;闅Gxs4sYD-J`=鸃~:S\R'"@r!ō~ȃRofar?Y/4x)=0GtC`_\#jAGUL1vUKhEzA~'/̓p)bQ)ް8[G0I2Si$ޠ);/ Dg t:6T+勍`lY$FnQƋբэɮ+zȍlShi빛/ζ2Q;ڻH} Zp0'Mj]^ZNT4,+OJ=&A] (B'y(t_}!{&S ںzYU&{>M2BivU1:ځ bo2T.f]^71mw%ÚR1?Qa[Ncλh2`Ffxl|{Q@uqUE?Z/9?2[tzxsk̶.ls`r‘V+N2^ ]Nmѫ;sƽbsam_SoMK{xP 䅹k&k' ¨[b5^9+Pz$&\9'+&;~.Z_'ii{ˁG]!A(",m0Au렒",sA+Ys-fwɯ]}{Pc[-ݜz@# KV -$;$uҜ س3JE%m6g|tssE%qscmM 6Ez4 RX.,tZ\[m' EЫdƴV=݁hU u{f=g_e2T {hv;O;4oM=$)FNn_ضRTCL:p~:KZsk@Zjqs*Zs>*.p/z0hZDKr[%i҅h,̳y]``18"`)i 89ՐS%h3ab4gD>F3̘""NVs6f`HZ= rm#E(0;-p!!z"s W=q-Twd )MMZKU8)A*)d6X?\"BC vH+}"s\\TV͎֒f%R%' [i/`qC gIe68R=ayw;Iy7i3,.Z8 oAj/8E!\9+cx٠QVGbvļwj(pI-9+spHmE'u0lޢ_<׷Y4MI/ހy/ÍH!уT>"+.::Qu *,&vF`r7 .X!4(Cj4kĹ,BdނCд|S9`Ь}{ +k]竻nc5u岁Af4Pd?ݩvzU+T΂c//ZHnO;JqH&MQD.$4Uƒ-=!Όu]d!D /s {pt /}Y"MqU z~:=ZX `+n->ߎڧT/1qWf'A9p1XɄ VH sQ8/"\+.j8Fnegr~MJl˿PtCDA"bM8jn㥸uEWjZ^{l텲ۣ& ""Nϗf LeSDDiQw* ꎆaY,Ⱥ |AՏγPHgV?&jؔ L(zɌ3Z0baكv 8t }cW&KB\<f`VC*{쇺6C\YK[?bZÃxVT$Ake^NǙO_V~i#OoI}V[m%eckXpX+On!Qz]U6Uk&;xX4Lh.UjȒ{P3ƌޑģP@, Vؚ+YP[WdЙhk4ʰ#Q›X{ ¸ F@[@;qɺhb9ɢ [[^vc>1TCڠPl*%wNZI,'P=֌:0 +RoHGZ?ߴoxu5?kʎ^Y%Bcb?ݮX+\[.*WpdK1o#5>;npý7k`xX^i,J*H\k7m]fCfzZeU_H I F|OK[E9&rt*M-˕1r"+ёux!w[F- ƵP`*uedi~f^Q$s:Vsqv.$:j$x"iϠڮM, "g#0|10D~}‹!ޓɸb:mTdNq'8_f"XNE1sEp=%hq;o1* {۬C岔R1lκn)sNzr6}2r7ۭ{1 o ;t*wk"mIgvx//FǢF[Km Vqe:$Yc<,ݼL-I/;~,sto\Mx$/ל^`2;5䒸؃ނp%!:tu˖qbp<(.~}xIKQ >Xo>\GJiXqC` ހ, ^5wWnbBg  NonqO\Y `t͒d[LsU ߹v7PRx쯴88qT7U8Ix1<S",~U=y'hn^8l`^yt2Q# k޳| leF̮0U&-| l_4WE'1 U\~ƥpbyjGxHjj7 :0̊a^h=-ݔe27rh릦f4!憇z(se#T2 ²i|,v >L@臏V9&}o{_@7Rf(u׬F,%lcAW.Y'梓= )5UJN*T9+ljj+6zW_y VY,2 q#-ͶM|c5+=ɸ#/cNGߙ@UL(QƲǙM8'VQRq]o4hc–]\:춖,Z%f pDmER.㌸ iCEz?xypPLX "R׹+5%[$v44ĕ׽zp\x 3\? @^1O*oD8t U\My< z_!D\_+?sc9dDRkS٠K[ 9ǿkQ}-kpDžkɑF* @pH2"`F|g~z\<xؤyNXm JD?:"CǠ8pۍ2C៼DrL@^4smΡ/!#rJB$TlA8hbm$Cҧ.IX1 f=笅~?KD*!rObJuq!,dQun qiVA`u7Xm@詇uPfO] *9]vfN)PnՃY\lr!@EC~|5n*+e(I1=L00l)"Ağ܃:N3[Q;[SJل 'GM};AeBs&~7=(6Y/S *H%ߏǶr4%{u_)ѿ1-qyi+s맙|hj&> ˈLPyb:z2"sz3b,jKST ?5V9J[ܣdn2q>X.1!4%zYЍJL\iQ ּh͹𐛰 AJ9^ь;NpopjyK mEq@PyM0RK8wp0؞>dF&\q)Rˈdӽ戡k)soHT]_e;2vn+e$t#g~T1t[̺rMZJ {1_jU,J%- 8O$vHcb >UDKeqxiԸQsǼOo;KtO>v:FT8+xlfhYaDGC%s[0&ti  +$ 3 :džM;tyڞo1 A0c 8T+l= 1vVBgxU+ryr?bDŜ] i! 6:A`\mԬRo`{{fu:DFcSLX %HGyu/FaAk+M[ЭBAqQR蜿 ΂3!.} ;g%.jj@jx[k)t-w;`/Qϼzpm<1|gBY;2s8'b8)Qv-畵A) kM R|띚ŋwP:xܨ趰ӬK>pƽZT ?{$Y Ez@Vx:oztM=itxX.ю(BpJFw 9h'M(>5 {&3'*]瓴\7ͧ`]/vTR eRtF7,h_Ot˃wF͞y^(b24@rGnP o7G0+"5y_/vUόeV=1v~_`qBvÁ 1LMy/ySuIݞ{XA_+AE暫%GoFz-Uךg.Q!DC'RhH$Dp<.CÎF7ZȈ_ *B&}} n8SmTTűDQZɪ^6R ȥY"pRwVۇ(ɴvnw2朑[+,Z-𑍷`tCn8A8C޲$y7Oa6N3jYޓUz1rj%{2;DDAjE `]MÝb^sQ.8 KU" ֙L=,Cziiho (Žсv.*At&O-z Sd O#wwӀʪFSs#lNn[xRCIN33mj<L :ߋ|oW5H `u(11R[O0C P̌3p}gG۲<wo9KЭ.o CCb֝V9;gOڡle4DZ)sr+:ZC pO\2P.pe#JcY>0 *rKl4n*Fv ![l=ݜ?Hؚ&$A‰7#mzhfxAe̻W 'Eykc|=S#b6@uv,` C\=+[Ծn 1V'3f>WͳDA!_,* ֱ3q>%4FH. vmF ?Zx?D= TUG?sda/i%! I2>hGӠ⻦dp{%‘tdB>]s09'y8n*&1SvR}NJ㳉Ɇ؇9l?@ zu9y[׻/\n^Z֔Ge +&nu1k鸲\qPE!oYZ]MRb~4-DPA, ^V>nx%boZw+ rЄjX;ߴ#X|qs$:Zϑ3 56 f% S-~wh+HXA}`E ,4%w8 l{Ɵ9!][6# 3&?xb{e{fu")%,AeذHm~ ؿȄ8 H"_~͋51\2W=96KT'M -l3A:ý[5\V:JW6b eTS\^%yyofp2FA[p6mk`FfW9U98Hle'v>ZwozAXtҹv=0B;Ƈ `S'W)Pˑlr@q\|cۣExh<}GtP<[Nx\(d}%PoFlٙǴ#nqj G;cfbxHt!fdFc9w8ag2?- %5FlU [j D)N!zI A.?iy!8P|5A |["#볪85:ܚ̙| vs` rk*$.mLVA3Ӌٌ븒УQHı)-BG53ՅʇzYWPN&v6]"ݵ&cUBgɔ$@.‚/rf:}#HV|l]@|Iw-rK*@dN3.-fC GRr޾j5@FD;Y7Sv7>%9eSHʅu  ̦jyO:o)ϳAH!z Y~-bYnqS E9KE)a҉Y|ϙL%4;~Ȳ(EzXw~zn bq #{a ^LЦ[Y1uzbb;Q(8ebtu=[IFO# ˞f`|S*_ a] IgՆstI'z͢lU ~#45^mnSR#tH} ,JJ@Sg+} I}6m/20&PQ#zԶ <\ j$,@d~ ]VhLX%`N6W.0qeNXޣڧoj#CjNb ߥO|q1Z48-ypzI*MQ@ݒ >WJX,F*i%E5}vt-|5Kb~GKĄvq:xY_鮳h$"#7g쉭 HԆ}ID\eFx/(}EZ_)I{ Ee<82KM/h+$UWaWP_W+*hhpMlaeB%3u(wf=\~B?UOznp|cA0`=f(u!zGYϢ(\d 7= |/ϙc|#QY5_UA.5"7+,ک0my؜nS'۳׺2lܱªgV4aZ&u\:jZt::-/+gsiuiOD =]a0H4D*0 ?,ƨ-2)ilKѩdSI>_%!* ]Ѿ `(?SGI9nqNꇃzx5.,!;7 L2d*gRDK#? Yl:|;`Uu?p85tg9P6 s~qۗxF z=>a=ݿ#sY&|<pYA,nՈ8;2vrjP~tݽ ?PuWGGalݝ16 ۅKs56@\Zro#в **wd:'tK--))1:C;gՕB޺HyۏDc|v`cm6KP{SD|LGEKj]/B\S:Svn-jjG|C/ckVscʷI,X* p?9UemnOBNK/(`* W+`uL3\ eP ct/n~E,^@~upJ08jY090l,Mgc{d H'h|hUD_"*Tg؅4n<8ِA#n@Jl} s8uØ>YZ^7 'W`X@` W`pmٚ6ܩ`:Ur~ o?!yߋLmQ7aA3֯{p8-[X9uY0!+L$`t=)]L/E$QO#|g%Av]8Ŷ->ں]Ly`QSGa&WG M$c #ě̕΄gz&TNrܭ4vOCW _V]@h:[7VU ƜΏ/wi&:L6_N*__æmUSE+Br?yK UM=ʙ#q$>XVn I%BZ P&!O]@U\;Hw?I9>¬ĸ9lgԸqʤt7Ɖٖ ܈Z8ג jP*y)B% ̗@y&[v$$ # 9#sI-%˄cz7X?9K1OV(- &1I⟤f[X&j3I;v>n{C2J]uD3t(.r)7}yI/w8-솕+ >8 !J1Vޞ^)QQ쑵W c]%QѲҭGIX A}nS<O+4jڽ< UpH)//Ma,S{ATY=⿟EЖ$#"adlBu]b t~efq̜qrQJuN :]&YG WzEh.S_t#$ v4\>"&~@ҫd &U|8Qv3PӴ||t<>uyo1|5Lc0_ƖTq?hmsbb.Gld){sCi?H-{u&L ,*{<TK]LDOOQWmRųjnI8%!yacX.r2OT, gW@۫$&`yd* ፦zӛ0 ZbmΨ>%췀}ZXk Xk8d?/]L8:`X/U#\M-Mñ YW1<|X?Bq {Rs+`"e=0$iٕBHd_$p}Tm3] JOBosódח~C$+ m!(Vң]L[x4IJ/&xsiog?Ux4_  s4kȲ*fB{0l y@Yjy;y6` )̢{9ǡ)B%}u\.^/waU]?uE[?RZ.^ls]>JPc!G lj~&,pk@F7jot* ]#Y_|nk`@B$Byqn؟HrH=_ K$1QMU\X"΂Kadj/C2W{za B<`= Anz6~oϴToFӆGiiz5[Ij+1e1ndҽʟ3,'LrEOUF ~˳7=ǴZHhQm^4Niy_~k&|qG.%P?5IOސ: c^% FXU kA 2sh ot_TcG<޷)"+*>U"Mf)|&žJ! ~}VHg&V mft|(Mgae4Pkkƃ}کe Ry_8Zrlwj#"UTQ]Scc/1}͗ $PnDFL*E"A!4$ )eK!_N`c׶#h%ߍW^/ f+bYb՞TO^)II`䑿j=4$y EcObcG*)N%t "7).'6 Ͼ Dbވ#aMu4`u|.:{51//טXīx?V{갓س?!BH'Բȫj^#2!lp|}`~/}ɮfL϶}9K&xt8NYLǙꇵ03 d X^?u1 <\Cթr0Y۝ND!eӧowy x1%)Mq:`w.ghM̈w3er:ZnjP|u{:NXPc}us$lr[A'Zq2IW#;q,Ʈ^fZ( 1>001Q'貃1ZgZ֯ NvVZOqU߱XR{$ig\bkAh*]fKCvR P*%S8p/,aDx||U }ZۓtF 1tXM`J[,,ѵZ )#sX(1jꎂz": gdU.ct!'4QCRF0%$y'lO Rd!윃 bvA4cȒ5 +>Hzmo MU]ژ+e?C#MD=7˘V33|?k8Wl b @O aB w|j"/n*_ڣH%y?*A5Ou5us>Vg--E%ŽxFZZIn%DȬ x<[|^$*֔c`ozJp5OU2~=*@'B}6|$& #uŨ-Md;/GFJfDԗj렽`˿#. >=.Aټ-M)IP~JJf)@<@]PF$+NESz1US@Zej4V +Nt=p Qj@[FQ/ٿ}je8Vvv$su]taZa!vG0תA\4NnIx(pXO۟sh$LIƸVTWa0|~S3'v 7j@y[e)'ݕW 俻G{&u,1g )8hz\.p-Uam~+%xu/dN.3+8jGUygJ^D` Xoĭ>}&eDnzկe"$#lzP;~7w*)gC%=vg0GEd1*U(Μs6AboFKgj'}l՞]^O k5D |ZPƘ<`[Qu2 -Qa-u*(x RG\׃htJʍ22Fk9ġ$l)AM#gZ/E`\N~}]_+FVKԿ+F݋0sJI;+H0ҁr50qηT|}]?E7~Ki#/e5J{d^r38uoLFYǕǾ9EG AF[d*/%]D#V0He߆3thɑ! PU!5,hwy@-aw?@ЀW>>,aLWIGވ2FF Or9 ?]1JʴA%_BڂxS%",+VLvNc3}㨔,_옛֛؁mgS=+)7$e0,eZpN eJ/UchYd7 _:5%1GbeBl7q MׂU2uG0 e`]߳3} h6:{Č⃋5'8b`2ƣf3_7^ҳȡT?75w90COqu kyeU:)]zۨ^(\sZ@[녜pi0~€F-/b6{ߋtao̝ . ̈́SXW`?a &b:|6AfET I`|!}e6ie"Ԕ&uV@lN;"_Ȋ5/&&Oau)iMPvunFrÐTKAk4Qy\|ҽJmtPqE bv 0>ZK-MRZYurNu_Lw{uLE]e~\$Gn!GSYݔ6 !Uo T#|09Fg[;'!JJI 3tg/TU_f%6Ud=l(~IogVM}&3lݻ6.`qCo׿08~TS2 [qĈZL)l":JL?F-5J-.6;nݲU|xF)ozP"]b33d/ ^ ;AIR_@< a4ecApg~x-+$"\zXV &$$dW鍱tfPfy'W8כ}mr@SGK2R'L 7H }SKXoK:{'WC(E ggF[l_m &GEݧgk%1g$ 0y=-C V+6ƔgDk inC2<9g$,#/pi2c8>)m _`*XN砗pBz]#3\+HnѡUFGABi 9aem)tfU#'*IV,lkVDo>Mu{qR4Щ izoؒrJquE?9Zdaص7DqxmV$!Yv1Ey)>6w pӪO6YۻŻE<;aW[b]CsExa]Zk:%RaLՋ<@[j֛'|0thޞ|MA9m:sB $q IdجM_v2Ao$uVK%=&Bv7&nHÝ&~^c_g+:l d%7:7bb &͂"H*BЋ1599M\zcQ|m$jߤMO&I-GX׏JmZ ? 񝼂)Q{.4liKi.Js)$ɟh_E)U w_Oτ'.BqDWDyq8ijl]s#}{98&*'VAsqZLu& &*1SZ&&* uP=XTJūML[եuDL(yLҳ}qA}ދlW ׯ%`!! S#hVnJg@=2Ȅ3d P1dm[Li8/`_r\{6>#!\w<{6v'~a'C_Hdܟ׵F*LM Ts 1 Vc/2df:ۥ G}{|tp]&Ala\L6E}8g($(h-Jʝ"#hS &I(>턴MxnyfO R!ZUzO Tc(X*Q ' HbP'r?NGv!ʳKsehu# ]04C?abıQ"^;ǏfnuT˪Q<1!.oSNJbe(AyЃJ-%tR(ע⠳tƬQLE+l5#*ISY;d6G nd"j͸XF:,Ϫc/2NuL2l?>-n=[rzЪs}co @$8OG@-:P]&8j#-zYeEGފV-xRsK^_6O9 S7բq2h)IWS,G)Sr/y -gcWmjHvaW{iThTdO^2N87V3$-P:F߁lB |G$D]i @bm3?g8X09_}'C=L:rȤǯ-47n Clsi-ъwzɟeMl6 ,POU0</,29< z7y d=*^Zb!5:iO)ܿ C0Tk-9YEт vОnڷ)8\Pd3m;>^U&/4yVHٗ7H <7*[%<-I J5eCSN6gEO'f@=)|lq^ kCM%@U?e/8S+{f =s63[?CZjc* ׇ?z9BM*]vgμH`52`!clŭz<:[mн0IY]_nYD!j=)$GR]ޖ[HNu7K`!# 7zpNP44\.!R=u>0o} W'ekx/' ,p҇Eo4Px`ȳu"$m/춝VYd?UnwZ]a?iR.#;q-b&tݐq:" BFje@OX(rQڥ$"ir|F#M\5#X9Eҵm  r=צ&pEӔgk\}֕um(PƓNAtxKEF=@6 ] `=<~C/';,}.H|%E%RvyK$0p0ULBc L1DEmgRR΁;]$:j[0e >5j"XsY_:lԓz#(c,VF\:!d^1*tzk( <~V85auLJ߈\`W3ɗ/ PF㲯gki秤T8F+Z0BŀqхD9P*3Í-ګ:C 9Vj\< Pʏe^F\s)miAd[ܸz"\Qыw[G!0۔Jx(̓5..kT^~u?[_1VGq b̈Vf9^zO 9e֤F-|nI,DIޱ i^ 63#0pylМ̌e uW㋮GF3À '3Og"ΖB {K:Q:YNx-2Zس =aO+Ź0s:']0d :V^gCQ@_Gc3+ x&=_FǍ2-XtMmYP$i{%sm[&붷IP)Ocx瞀7C=X,fŻK ޽L(*s) AM4qiCh+Ӵ4>xt*Y@<.00^gH%y ۳l80Wj;5NjNo)tpT4<\ Eg]qLK%sE !=/>nzC@ƨ hLfcPxbܐ;PXv5Dcīb9'q@ пi o?M^M,(-'%_PN(.!y{ Zl-<^wfpep%veUKG ʆmC@Aj.}8(=i eSaOpH7WHRu8%ݽP֌5!LQdhodd]6mQ,XŸqoA\qO'%0gDł:Lۯ )=oFpy'ƾ5RLuyV!M}GўG |AD[TnO;}6 VS+zNO )ķ 3 WB /V:/qWbL dJ"C rmWW4*Ct;0'Ӯ!h$R>Dzz2$[ZqCEz*@)t!RlAԙ-m퓈0 AZ^S%mkn~'WLG7\LJ}w  /'?xfxG^Xa*|qHqi[/cpzkxgo*fI4i(qYOIü7MgC<lF%b驪JF\G>PHgCh.m3jU\HSJ"4KOK1_bbOy30]2ۖB6B%FC BVW9hв4J껦 AMHQ'7aDIEͨ7]m<˄sYBpy*, 8eG|GB08|!AV@ Z0UhZu?aMLT>1QMH؀Aa{Q?]ǟLoi輸V\]MKˌCC7{ڐpc ۣZ Aں%rMarUdWw= K 'k2#wDZ3"E9iGgyrL [G0 &`0,qY@,,V6+~^@҆|Qb qH|(l4)VVcr(*mM{!3"ʂ=vm\MK<9iOF%cm~BID*,.[lb:4 ).PeN&u('wcߌAր!ViYLH+@Ӎ&guup|0#ύ {`e4آvuZ)V&zZW,u^Œ6dw?O|-r|ԪԌggEQ5 n66 AG&u> a]Iիf.amhQc'(M]oz~emcki{oa' J˫ceI^gB0)b5qJW?.,BO,ŭ/#$ 8`sd snFh(C?#z!wRn(Ņ4I1lAB߰Vg:i^kd6T+igNv|py{=B/! okz/W)\jaAK&zN ~}xeS%#p%m&3'8p࣬QP`reD=+GH;PYsصӏTٺ\܁:ǮgiִN7d5WZz_6ϪBhܩ#yԮOڦ)<;Kp~sM͖&?4})/2cXJqw"2'_d#LNq P5+Z?L۫o:yHP;qvFhõCNCs~]FqV#r:Ȅvs3~9ëjTnc.&:sM0>PEG4nBfEH*,}޴x22 8F*qQPvq Y@϶Z${U!P Os)mp{nE\M!d_K?nk9YHNyԜL]گx(\QkBL\?N|"MP(O$o\V[1Z)M%⊣sL>.Pg *:'DqnWAk,5U,mFnm%vگ'"z\u4B1:KLYG͢(PtYyYZp['ˮu/8>|}E\Ż$y9[CD. #!/,n6J(3i2*ư~!{՜!DR30-[59k:M 4A8'PBйxÚ&HAI@ruEBox製j?ta"oZLPBЅL a1s @&SSyإOF\"J[ 4R?%iL/B(;䒇doʉK߶iΒݘq#fVq~*)r5 LLJj|8XJ-挾cҬd\mzϯ<} 6}w2D˞tTK~b38+~@Ww[#`\-٦&kEMpRoܪ+9K:&hK͋nN7lVvՅo[S^js`anjh_G,iDw+#xQv9(ՇIm۳5Q lz H2sGQ8Y8GY]:2Zop^8~@$BUᣃhI=s ShnoʖuĖr;ҒFNe"6~{JWaǫUիM;/ |6д Ud0W<7p&I=zb-oa0m팢,JP*pC097bdezK,@uP(A|5/a~4VAI5Ik 陫<.36#zn@E"'F{ sp9yVMny ~+6!>3NZ0ؾgm#OZ^-;EbK"v[?4tz˫- (Ϋ˦m`% I1BY"\ѾOPu%3^5,6H7ZAZ?ûWAr4VPh(v"_R,b4 P#rqcAOJoTL6s7b^BgH{fUV{?rg=9eGF?.zec.S.ΫrŢP (i\JW 9ko=dr||ja*As~AWpf]H']@,)Rh)^KS% POChkW>86D>'G]'m17K3A"z=MgO uXMx&{4IEb2028%f&sb!)=VJ^9РQ h6 vx/TWv_~ÀF/7@8֞=z;9 ?a/yŞahG~E;ŜTX1]| QB7j \KN}E hѼh>;xD0;#IM`GiUV8}Ϩ2y,]wy ^W-0 r00⾨-nZHQjn:nx2bHWM/l0?"X0Y 2j;x1oQ"=ڴGz{/S2@xrcȴm1N8~Iѭ8 vzrWȭYaQ󺁕r:yUEbRHyQPv2@9fǚ }pG ^/۸ ө&Fh;NEu 2 9-po ؠ]+ 421 % &6T'?+w ,;YeiA ٖn_ѯԃpl'TRpe`]nӷa?~㖧yCͯ㙜<0 ??Ez/=NW"(TNN!zbπ#`{+@iژ ^|R Wh? 0`BV28)|r(f]'-"1uaFQE!W <;aY-=㑿 ML!~'w/CvvL:lFn,XfbYa(>CCR_ph:DYzƒefZ'svW0*\V2Jun)@2ŹtjB>TJF@%5juDL cpꃄYk3,9PbT<FIuձbp.)1eTF- 8ܸqG>p H}zξ gG li 2_/Č%x1.]ŝo T+i6/wJex">8u" e)â֫w.XKvW- \SZ k\`ס+W 4$ZY .%WfxL=x=C؂u#,j_UMF_6梁ߺ?Q\S*9y^n6FTMJqdXMuruzY0r aP @O2XbjC o&}f˻7cFt%mTFUџk7@]aL ./vP;Sis&z:˱XJ΢[B4/ŝqb3 u#bf1Oj5Ԙ=Ҏz.7?{KWTj3/cOa𣢑\(Ki'YY1a+옍^R7Nb73}1+K~"$m h54:mчN$'5F1Tw^b`S:րR; Jy)UڕDzK˧"OVꈫy:=]VӁ2MM#3 ݕ1zK5ыg ^n=WڵbéȖ2≯k4 ^2H8S?@'Ui5A"30ʥ< 3l!$&m.edQy׳Y_bƿg"shw*ns=zY7B6jQqe}z¹ҥ( &$ Y.eLYO ߥbKwU +;b;[}CAzm,EsQ?% q~3({E]5ͦJT^b A8#Ϟz]q5 Y0Pm=MtX$O/Z90OJ)H ͛WIUX8Ez&kC6eyu:AJO!]8+!;I6Fv=z}? #4+B:] NW^R86CP(<?RuC#>Іw u亷t\r*h 䓁m VAZ#= o 6tTy8,ّsf=Vsx_"-u(d{UH{L -)uD-L*[O?=P~N<3W8p2.Ehf A"o! a"nKߣx2eJʂid9GJYWd2؀ވ,18?YYMOw;*%{B3Ưkfl0^LF9k-Xp.cF`.kb>S hY %=,|Hֿ+]RY9/C":sFAoܕ׋!|QDb}$]GW=p؟ҲT7g(awnӟv5?5cDݖ,]T\ c5tŸptt 42hG-xzaI$ aސ9L:w ]V&> 3ޕ. f~DoCG_^~A`ŀ b܌T ytwWIOX~xD3DL{"՝n@W v !`Ӂ%\`ϞJz=w>E(#6Cln}b1WIO@X߬h³){"TO >W nqy,h Rg8EuȪ߮P '+;L: 3˩2!Ӣm 9ھC,'#P""Jb<-ҳW#(q]iBLpG0luBUA9 FvDF>Xrd-4h-ܬJU|Dw N|sIw|J"| ePA0' VPO^ʮ`*[xUSg {1:/2:sR* LCH%$|U;$_H{amTnr6d1Ԃ1e3ٜ5JyL"DAp-L.|@\Pqt6hԃF'|*}m^]7X 2)m_OZtW} SsZ;mүwAZj_`>3_4GB3PI

YnݍC$ša|q3Wpr>Qnp>wp4aFjvO3/zNP1Z;35pٗѮ2سCHޤճ1%O4;0!N t7#yYF݌E]atbE1Jm,`mݙ]a<,z>i(z'2y<^"Xv>gEa1}i渆y(7)eNKE*އm$ ҰLKJsX+0uTl'fS8{52ßwFqre%8]W9cDl& &6y5QlU3XX>X|t餉w#=^: MR u䨧55Ibf^Vi,ƜXv* zPg@#M)9wv,Î & ů^v>#µ˞If%#%y~u#\rL`&ϕ h^y -nO!CWDJvj0Tl>7άH˚vҥv90}0 Nq/owaO} Pk=TwDpk4; [`?ЛϻUdY~g#x2t lO:$WLn1bf[6㧢nBBL ow$HY,xN8+W|9b|?뛵= n9-[q;(l:s)jY[YlG RËQ?*v$R~bDA:i$m6V}Y1v䑙%p*OMkR1)#"dM_2V|!USF=G75wND'<|!Iwn`DAE}g;oA@澘|'iT.`n9.{Wf,{F;<F}&_B)Ip))QJW=S\掣O= vAødX-;U6sҾ? #ژ3s*S~'ۙRG!)g,31:RZYErv>Ä߿$?(~oGY>Swɋ*kמ+7^eІjO/->TjML-m7 T()3m`QPEdX`x9BC铊D ʸI7RŔ0{iV "=7.<8ehҚq6j]/yveP;C3J&$w~s|>gt!Y;@ʝu[7* mś^- Z aIG/uG--uj{skji- bM2􇙀}qI: k{UIu&N4P)_0HZ޵rlL7KElb\Sh)+X=zƚ;n,K &,#@A&z?7 ^кbPePt#K3s,Rƻ8i`c$A\Q }j9nVկ9O ksoV%P}sO/O Epk,uj=ZJ>ʍ0q= b1ڈ%:bgUD}^dw9ϷJq{gE9=3|"?F׺{E݌6kaVqlf!]\TE:b"@UN<\Y`^  b@H4Is-CE%jc)crFtʯ8_jKB4xAKPW˜Ѥי6<ɚ\\|s_7/ϰY\ oHғ<ջqk7P2 /!B.yot[ f-H%r mжCלgUBf,xMF yc&W'1Mbu4|V;hS %hKHz<նB,iM%mn6>dak_E/]-P8* :)Jt:[# 8sX֕:Nz Y NO4S%pt. <늬H=zF]&\-JKW˂~/ sQxB ʑ!,eAhaxay2`ʵfst::4n9E1*C`reii65!l;oroMQc8_ojQ`4(([6e;A[0C_zTɻa!Ơ>466h:^,i$./#OXꕖ[6E x(`=V{6LXܬu=|C4ni8/JыH|Ge-$ӕcV8k]ZCUnPԋnPwXwmA&|mԹ.ûSG HLE-J4("@' )_JrQߒ r *>ǂg6`PqHTCJ݅*;Pq uwj+Cp쳙b_xUz!80QHxqڑmb }*ÛO$OyF "K(G#oOP͏ Qu/˿tt֧4- 3wOĨj +|:y3q챋ޓ#;iy@h Ts7?ɵ99!_HWio9QIČ{3: 8U-^ڱ5*G)vėg6]?WeSXZv+nVMiǩ~z`V4젛V9ѩ_nt"QAq- :La<6=K^e'i 5IG6~G7HѴNT|Xg!i17yP蔽k_jR%@Hsdp%Q1鸲 |=F`+9QDXiw6t_HԠs;:3OY7ȓ(5 o[7DMfNϠۮ4B͗D>d ׈Z(zuHB[YЋSQ0|X2wXY՝EQ> Iېe\l.v,:FO$3Q$kSEf =A\!uaR';< aQ4 㫼c;nTr; s]:6rY*зD%dk\C/Tbhbʀd܉wxSGO>4-i!WD&ǭk ޸6g.Ш4jntnAP2C9v#nFD oB%<+ca~Fe"0P`9ao.W$p/gg'-@{F8˻݇LdhZP"j&09/020\P\MRmR R c#tG_+  UD7.n;1ըЩ>:d#-g`5@Վ*) |Ut47+cyZ=}^+YjJGs:כ靄myYeSQ3X8TGJsVKz6ANmd=}p];䃪ko'.kET}8yE q|ˠ*p.4Vkn-&0o-խvYܻPTJ5@ 5NǴO69FuS DlV& 0uPeMwR;bx+7TǪ痽 EI|Vk.j'D_08L$Q%g_wN;hk| WCͣҞM( s+m "Ǽw;TؤJPj[[0w̯T$|%pY "9!!hudl}􍯘i0Ey*h\)kFɿ9] OM?6 c/W"a>1H>ӊ@'0(ZOn=^qvСY.N8!>Dw]PXe>k >6NqJwy7y&D!(V`m#voİ` ZX=\xeX#EuVLoB"!bjrm(#[ :c3ql/ryEg$ҳԫ) ZN+/k0̰rV)᠏"BK< oU v"n9p =(BTsPAhwFQr HʦczV3 nǐ`l!t~):~Y!@h@bfkLv"6m`xU?ReeN~@g|߀v{! |5V%첳 L MQ^#}"&;S(3crOJ-Ajk Qg89=Lt}*ń;.ۦ+9@ X؟/b]  PGP= T*|./)gV Yc-6|WʻؑԵ!"U'F-4<N"ެ@@"Y+Qhzh:| )9%^x$Kp]$/cS>U~X Wb2.{4e'uD>#šqUwoA@B~9J6J Ő>g' {~1!TӴ/8;l׊q(Ve<̍՜?)>ޯ)u~1~:,@ݶƳD![^D#K_,N%pL!/`ރ/́:0%HEǚOˀy`WE|/ca2?md~{`O 4aj/t}URÆ+y_O^9$G>'#y?bq +Ub v)J_tb&4"הĘQ \h fem+|C_6/2mցP7ϊq{3wvI,="SrG$13Wg_+ X GQ 'rL:EVw+zM^a xnN*:E1DB1qSNv24`3.ǏĠs O߭bs9VuŇg+^;4+TX<[?Yrb_>LhwmnQ:3D`նgBHt9Z!rg/'9+08b$;p+_]##v9铃ֻzخPi_z!EjP8t0<*$ vgyhL%(WlJYn*'5%aO=2Gg~Qp3Q/S:Јq9ۘ_<ۄۯZ%s^6 Sk_JO?XCwZ:&qe͵I_F]MUMd܄ ~=hcj7VPDc߻J ue`g]EUԁ\H}q( ,LH{zK ̀т}af.tC;Q.rvPMĮlgxSvv`CBWU $HUr^5ܶ`Ne͓a{c=g`nZc!8%ܲ tg11ə6( 2lJIW ;@x#sS**,)D_L`xInl?|!*蘱 .4Ťrih{l} AAiayeUWcrK :68 k"=8x]f\"B䞂)osZo[EnɺGIť&B3uKL]5Ƚ D;rM\ -PaZ/{2ҲL`RBl's =6>oȀqw !b? H&$Z1]6@^cϴ[>mjt:0uԛ=[sТg~^e  ZU,-E@Մ8^}Ye}GO]:U6fTEڈf4[d_w4U`"\%=q_e&:nʳsz(Ci Pd*gpDD oԞlѽ\6bͤX*)pFv~YGCN%It͢>mjYlnh_LMgRj*@&v!3$.7gR[*ehz,~PT:ļW އ{)IS4p^88T[Sڍ.}\Wu' !Oy +ZE߭j轮|4J̀=Q6!avvbpcM: -~AizͳDxIr*K{e at(WJL]፡ezQH?LodاwG˖{/Ӫ/ʍ}6KW%=k+3ѾY3w-7Y/L\=W؂8\=~Fvڠ[2;DnIǺ~HbI^”sO AfDJ[,\M8a RЫp BYP|'1eދA ?+᠖E=C4_[^}Yd*?FըQp9x 48tlHNѤ1SN@c㞁*.+ RUھg3O7U-~A١RB}\$ߑ|ٻ x#[eCpaSJ-ǜ_kBjƓd.HigY5޵ZL (56Ńzb T: vQF 1Po P`KXTzui/z(/5y ɽ=foq TLSMhzR-b%;z63:~yt!l)oݔn9娲HDVa!z|O]*ABifxŠTo,?=З]8hw]WV[i_ eFzRޒ\+ENZ3[ KOX=vxjo?;R={<v `'CNnJr58%xbGʴ{t8Gӂ0)wo-~RL%|3E~ɽHFH(\C][ /J?j`|r1IjG Ed({CטeGg yf!ږy\=OƻB&GmΆu=o97[:chˉ.<ۚ% a} \O:Ff'RYTi?ښq+ffɸ ̴5fYx }=02qc_׸߉#BVl˩%GmE]]j@S|fV]/u2Ypewz"Nh # ⯧ޝ( 6ͽ|KPYWcΒDvfFQ5 d]pg ^H/1zl#j` 6QoOOJ)HHDf5͕+-p~sM%9[09 Y).gqGDUs˾;ɴ@zD֒Mk- yJ93=d2" \ B՗.%+ՉKCZ-sVRS(kBqr9Ĝw{u?օSr* ϣh! u.Ђig\ 0zeY>04檢r/s@P_x+eGά l(n?Bnj%cn)CypGEqۜ)5.WoO^B`)@fvzlq+gNLppTrYN`iMxb.%I,V 5EU_a'**wpM?&PhJS ʽ8*@ޭU炶z>?%a8.̸w0&m7= 4(R qpՏug}ܥ/.|W@hq|cWLƵFG#SJ2J q] m җ7̒lCA@5@;jiIr6%\)ykB YJdՋkXӄw,w\cnìyةXxIDn. _{Loe@0qɌƢM(}'H% g c|V䓪H<MJ ƃlЮO3z>v_(\oNc=}I[3?nn׶ҽM\.]8,sEmP۶qsO/=Vz> |~E`_<-I[ W^ +*OiMPHGez0YTHO ĀgFQ&edrũt$CZfP{qE|Hwp|23JXTۧ܏~lxKb ^.8DL]w"f2>X* A7фpU$0hDܞ'.+)f{trH : C<ْYf̥:C޼ Nym+R1dyo۹Fz,YN4jښwƽ!Y})pnE -k'1f/a!>*6ӥ8YG IX+Ӯ-6ӫXa{6tm{'Z\^JҜ?~ =ZדLt zXO G1N:ߖ@:AHM].q̈C kmݿ+xx`="sUeSxȲ/^س+VL/g]KݬNˠv&CCb!ò->r: aeR#!f"7|"&4;[;=(S:ѻyqlOK3%EcC[wV=N/)MQ笲= FL(ZJ3m H9W$"Hah:m3eb! *ܷ5F2c![;*K\o'Fq]}qqmxdxCUUf!r^),!tZ{Mu^ĆPHg6s1Ն Ī֔v210t)|i۸ז89ikr;qeY(|uT>Dz*Zc3K 0x#>d : ?H=DaLUx D;% IbBv|ݤ-;i@J d:Ԓ$t |YT g %_nɢk:4vlI|jN |t`w!=L!;W Wd&>d:n׽mmWW ;D"Y23*9KfdP9Q\\>mkht ҪtCQ(kuHE.sw5fp! *8I[vަk]17nO )`hXƜ P}-n[=b*Ԝz HD?I\YoR;+w# ʙko&8WgxnqF R`X{&莜tMm5{9 ZGZ`m&Z)UK#oUSn)r\$:MY-|6V;QWWЮVՂʘ\@UF^nfr*-il$*CI}i%MS.|ڷD%׬ܚjclr<69񾚃g?7[% q]x.F샤p4dzb>N Z|JŁ'%}e6Y6 45@*'D)@"2'(3:!k ueΞ+tS<Ξ7XD?hoSUg,A^()R?̼BDDϩ=5GZ`0u[̘]YbXU(?ƛpi*SaߡpQ - iM%D8Y_ӭ4t[c 3}h>(gubݐ&9ƮBq9d M^HMtvU9+2(n iAqmg.H0ut h:7b 0]x\efE#džFv!.^A)mߖQx1 >|$'=c)^7Nw!$VU5B 0c *tDb!Ud׽rѢoxzb!MtNzqKuQyk%THI(oj|lxtj2 jx.y[Ҳ [WpYuy-o"kf^A0*fgm߭4ߕl+|e~`Naj#R5\Ub[+:8zn JߋiI@t=a*5;.7)࿟ .o=>VUۼyq58`e3롚qypyʹz$G- R?3[^Xfn8b{TG.V/Re9/r(2R6)ԉakT*hzgy\N1GFpy@]3Zy@Urg| \,AJ?e}L%lBT2\L;z*J9EDX^ XlkOib`K eIa|M&F.-YK$)DQi ^';:u0g@Z}jӤT(nTSN_G/SKgT&(*ܠrKmP ΂N;ZnMCc/0(~HDʂEorkiQHxȨqMLc%Bx精rZZI HS^=zJՒl5$QY*/2G~.+ Y*ûq2ՐP;9Yz3z"97heatAxp_>͒Вr5mbLR MB[YgfR{1Q-}K`FaqIsiOBW6KDݿ?TcKE CWnؾUGx41gt}|@ +iء+c8Q\uˊ/C}qK头%@BEhrb]x{܋]t88֛_O/@D389Iڑ@8En3CLVDgIwʲn9ubDVt=1/z 3{AyT,U[30`~~ɽ~R/R! !d4\MU yp^$bvhMOB+&qRX8F 2 P}W"'zb4S}KMX8j&l!R#ɺiX*`Z#>O}5p&!T\,?ϫY11n0~s׸n~N,0m*||yh~*5A&z8CdZ-^I(-NB''z@tWUzi1#ъ _1 cˉM oU>\mZuaeg!DWQ-רK x[GK1wC 呱Et>&<) Ci+f9|S<}φ(c.ɹ FFp#aWTTNGr̤T0#rCA÷c8[t҄YɵvKR7'REfu)g PFFUtnHb| QP,Wp-eqƵ 7䝰"w PfqQϗ0e+q|*M)p AoIȧ3 Z皅("­ӥ"'k+RtЏ@OT,9JMPt(^!Zרv!$ï Ʃ# |}J"NJVPy: >vM~k@f5Xⴐ-p;PO'ObjTl !_eu;c.5x:C[7z#jj|9;v?.!+3Ee;q4V74 Q7y՚S%H'1ѸvCګ33Gz*˓.O1jy2f ~y3ShjOX{\'Q{"j*{#u j}g)XL{p_ϬFඌ?ݹF9):U*8!J1@\˧ tMMf%GhWך9qg to9Y=RPJ'%0fB"(;aG(-ȣh!cHV;'$lFn0e!m} 9§Οd ]qhCPiAÅ a |m(( 3MHV2U^z){ <햟ų=)Ft지SaAtr_ۉ;ͽzړfBċǏ*GN5{Qt }-`óoGCad5YZ>Z\-rv;] 9Xet\λx^s"+C2n؊(+^Yg93Sji! 3ċ$;N8|zBubWϼ`aQN FgBtOb`ݿ S ,(L#T%aU$+hؑ 8M]",rKDhM/w.Ugun^z WE8Ch^rE;[- U > ZZښEԯŢc*a;$<0';;7KD:ݫN^Y3D~M' EWZ\v]o rw?De҆MT:vE{{›I*\ #ϟ_?e{RN X>2RRL ` a"@z$TXR*|n1 Nv LM!n֛2^Oo\{ċD PH8/"cp;`L&s)kOT/N2 ݩV~ό"%1b}M,We/|HD r(KQwR9 $ӷt~ ;ӖaEA2*O;"R^%\&v1'ebDC%I+$9Ye+'%<ˤϼ.MX s) #'}a'SP^nH:XB,3edϙG;.ǃR.~~+` 4ŕRm~GPmiy2{ ` ldvdWQ o:/bٻ:[ѻd1a{ B'9g2>4 9.T:X'G@R"Nu?N\SZbn\OyYgntʦM_{^шE~' J<ӎL-QR򨐠*eѲ,/TtgN-Vq~D @Wg "",_>hD^ygRYiIfˁi]ހt,kh&b-lTxU H6$u)ζZ&8ZuߨTHAtE, Mȃ0tJqvEnKY٬jzD\CKrشe$ /qIj/О&_0뫘]xA{P.%Ia4P> 0uc+h7ČD.t*W^)e8,9?d7$;zi=;k<̕I jqLwltm ecA4DSۻ eA[Ύy껾5I]GA'$i؏̴n6 柺xtiԤm}- |l'L:b)U3O HN܃#z>/ ۷y%!KF6k? xpdHŏxĦOzFK9ma)~[JmXHn$Oz\dr%//T>(q:)FM!Kt rv[?|׸X\z6B@\cC EH؛+JiW*&C[!4',I<ڇDq#-XF M 0%2NT+Np n?; Q!;x8:pɜpx%K2깕Xc}FNᚎEH><NS)BuM!X گJf-H .oCE/<5 aN\!S'APt1 M"~TqXP~iF^ p2d4tB-,6ϟ`'|Zmdef^]EP9&9Co 0w32hV3>:aQ2^,X_F͌"7jK_*̠~(k+F/t=G$ [3`єoDPAJ?#vAimڶf0~$_ q"]Oˉ􁗗,.mNU9i-lno۰t7f!gM9Uh ǵ==ZacUW' ||C:>e$S"?6RͼKi? Q0ǩ'TD^"M[nL ;0r^G_¯0PBO3u`/じBm71KY,GÕn-oHWT9o$ۢ2kN.ɻcm؟i''fmruTzd?m1[1p$0Ƹt |pG5ex1kY Q臗ۍkGϲMl(e|cN  02Y` V͒ wEsjuU.mW >dzbKfmTk X]}jT'4A%> f8Vtphw<M/. H-}xH߲'vԱ:q:DEҥ3,b$q>),<vſAڟ P/Ӑ> gfe Մd5^9> u(}!:\dðW,%!Zi (+d8+u&t7W ,"X1KREN*d"0gTChV9NҒ\h.1DuȰH__șy|\MYBU_ӥ NG7k 3M7~|[rӷtBer MȲMBTG믁T?( q= %gl t+5)K~EIf ~劔XXm FYBlZlH Kb7\0K+k}cH>GQ*'a09ȈF1llt4mhsh~(cjrE@Iu 5@K$ʞ1Ыݩ*L5p}C]`a Q:9op>rS-|AgM>mA, *tOqc"Bb16g ] UOd>7ߺ'`VφoǘYܕ K17&oxؼpGrC\*v%$iE`5*8Jw+ CǪ,P7Z2mx= r?HtY][*x"Dl:G%2 lwPD#ܴ0wJfޣ髛G_|Sw@[&O%=V6 0ӬU( M7=z B;c)%3}7Ka+&1GƖ ]c:r->Re|89o,ni][vS*'G5N ׃SM|VH#r7eVWK Oh˽}<-Pn;6ZBYʧThr%i"m04!l׻hQxG.=t۷Jgj|*AGv}ɪ5wm;}V?A"denCBJ}mdK'ưD/T1Rѿb_ ;*-t 5yoh ¿6ҒnYN7xz3gi%w g쥻F ySJ13#@jXFB(ʯD@}n8`3:Q̎$2]uY^Co!5x=mza_⌥]Y*ьgE;9$y0yq-r_lb+v\K՘:-8݃1Ah _K'* "b4=䲠^O.Rbh#20?gv1潣:ã%SmhEZ3Bmnxpټ|GO0-z_f }M?Lp[6w/aoRN!ݪGc7w/jŐdRwHݢ5O[ǣvGOFN!շ(3h@B"J> yd"sp;d2r=ՉB8W9zNۙ+r#تDX)Bg pA]X7i Rbͪ2%km逥^Q/~PxNΉ()k!ݧ;ކ QTy_lMl tkipXa`Z9@Ha6Wq!\O`Ǐ8l܍o82-|M@Q-:op.rpc"qg_MA$X'+LNE"EnTnr$ɰpe\c1/EL$ W?&5X5:ִtw2 zl_ 3⎿ҳ;a?9sjb ZV@V!h܇IW@ ԊshH麯!rRĜbՌZZ۹8?w+:Miz|/V 5_b`Rа%_c=P e4.o71tSa  Jor8nR\ Fd0@zjB(\2Ximrwqu:8 ""3\R+JΥXiJMz2wߺs6bGJӀ3kxs{hZ,L}c5I LY\BbyP Wʏ 6R;A9\krmdw|6nZ`p,Fu45S͟nB=nSR}Xw=A'ØvI=^iai+/ӳ1ODY ;~0mNrZT%zy>J_.G᥂>q~+۩X beh azMV:͚w3v+]hgRutzd;Yk}9%mZu 9e5Geu{ L YI)zm/H*%e\/Cד>E$dt^0Er]/DѴudBŤ\dT;d.fj۬k% fNd2:K8ԃϞߔ<*  o}Ɉ5)n]ҙֈ^ AIT`8=c5ſԸB#OE|DѠDF2G#|S0J yi *suOr"{u&"'\3N频>p/f0_dl ߄JPZRrT@M8c rCFIgR*Jiۚ?%G_wmqɧ+l{Me{MSZvNP֌s8R }E H^/myeuI NO46Qlv, Udqcv!iku4:W|~e]%:""22W'2! 30&{|m*=A?&VvZNYW̱Iv{C^ZF?`$,zҵky X.@n*Y0Fޥ{3HZnm_xQL2ICk08\v' j>ڀgn\sGmgdϽ{Aq%pR* $ΒrH-$/>hWty^H{+[T`󁮡1jee'WĥxXm}~U׸++?JW(6íX8Ă 4.CiEozp<\X`6[$F[@fʷ?rE-nc͂muaF$Q Ԃc3]M֩h~W+L/Bstz/rVT#?ޛ ۗp֥,- { <5/y9`dn LYWvzn[ NVZidLqO]v#.tƛPc]ΫףfK %)"ub싁TmJ_;`ɀ[{U@Q mzVKIh*jx}EgBĂTV 8ɫ%#t&RMC/W&5@4z>IYR;cʜc-Tt6nh@[K3;q_7`M({L{?\qn+m.os߰G0<"N5eX4uY.>8+\~8xRAZ ΢ۈ`A74ÆN轎3Vc394_Z'_z3v *e/KV#[:7)Ջ꩜G#}ݙ,Pgt9jK/"pڧ&Has[[ g #[]<2^7Qp78h@;p> RAt|H¨2z9HjGB G,mYZrEcӌL aS6ru d򥐸H`#hr^`ܓ3%e8?;?Z~5\7Y,iLI : [5EE.b,+<-ͮ»;6 -"1SF"4Ҿ}s ߖp|F6lȍys +d>р9ڭP(Dp P&d]6{S|u*QVI[6Gb"Cn5ё3&aA)sܬ{λ(LbI譪jsM & $m ЇFA/u20ń0@'r N7<B.pۓ`mNJ 3nCe&ȡɖd!!>%͞1i,KK%5 6d9b4v?ܨHmS(M/}m1IʵL4r*fNUX\ƥ<纴PN8\n/Ms yL&NZ\NRy U :v &A]ܽK2Kچ2@0snxmsb1mzᄇ}tc\98ث֗Hgt#ܤ%'Bq O5|v>dC#z5Ep &JCB?6oL54P+^6q[?{[č>"АAĠp)!;ݜk$$z5Bxk⢮AвA59HdYtE-Eb;OoF>#Kdcn|+ 6*ܮfl%?[ͅHDJ.F< E7[ URjswjb[gf a=PE:?"7>~fݘAҼ6Z)B-kYfUo&{C*Xv|΢{g߱t/K?F]\O =Q|%)%Ad;*L$C AgܒKR:tۨe|5_ j]\w7ۀcM;1 v>9=.0`Z{FX`l&]<>6o0mrYvgqyݕTjw+Τ|_{cqKib r·\˃?ᮡϷoԞ8sI9ZMF臌c-zZkàW46lRyXD3(dS1?KˎmͲHv-IupҔb\Y9E87* "*ŸѳwhI¯nX0A\met 5?="XyʼmBؐowJn<": VDjܤfz*8Zk+Ay/G qW:ә;/НnJ9zyctLzʉ`mfVeAb5GrPA9m[l>\Խ- MƉṟ OlFNgiA{"w3í]FO#7 Q|.U^jKqE ^bMO1oɺ   #TLT-0aJT\HhT^(iښF{=x܀ o3tsi_%$K\c~Bˇ*eu?mݙios]gSFOQ OSrVa4JlpѺOb:{A{]+"!b=Wäu$:Bc7Kaն4Ԃ{'M UEv%-pݳ d8h2NgMwUo"^u䞬$W,:'3@v ai W^NF)z9%ǾL)l+㚟ف`.}JǻncB,g+ ܫS09<ͥ5AY"%|sBT{E=Hn+9CHQ?/I7N0|x]'_Ҩhڏ ޟmڽe8\#Q .PQU|w~nMv*/:( {e7]`Tv7[# D@`S990g}l4Sw̤i{tK~O0G,3@Rba3 x.W&Cر YxEOPPݺXVW)gDv`b!=j:Q?;^:rKcO.n,tejF4~Dk"2s\c~Uz%@0# ,Ű̖Y+S RB(FNkI5x"]oQH#dDW2uLy:Cq9ISTH)D60 jʪ'{?^A)=;o !>qYsX{MlSYa~sZKN9h7 |Y ;xнg~YLھr r\KYNĸhgHJ"&;1د!Ï[뵺,Rlh_MNlll$L*<Ic tΊ.]U/ nI3"NU\{.EgUc_AOəF:H[>Wycy>D'9s:K˱73!a-[),iEŰ%F6$TH0/ IcO4q1Dce=*cv" ٵ)fl64xnQF ܸaerK"e1{J @ $R"Krȑ۔-=cV\g_B|ls"q(;@Ç`wLaS=+tDIme?&\X6"x[bUn0#ހ$-+ ,QHJ0Rw#4@)&<7(贃ȓ>WBNo؅P ycl,.eiMYϥd^aT1ZXۏi%ښg`]|V Op;R @6_=GW_n' ~/&՝sC.Re,<(!7G:Jl\ Q:ʼn\9lYKM7fm> h Zi@Z VLܤ^n4'Й=dA({ o c5SƹH> G aRN>&0qΎEdBVa,Y{J]BQԏH!&WD^6 N,qmw\aպ}XQqe^CӃKY2P;\xaTr^`'9D"t7sOAks 8_h i;h*{親´z۟:00iŢBs+>F8{! Sgp]*Rʵs`;D em#OpAx751K|X7. I+fȗ X l 6:wﻍlڗ_3[3p+Q ͎="C` nmw:|ޯ/s66wUR`4{BCʚ.*P>x S5hm'2ޱ$oD 8xoILsGNwHwYùE>=κJ~i JrAUITp8R}“ _HѾY SLlT *nZ>2A¦<, |(yl n)#UO*D @$Dy[+S7 v h_Rse$z;xSP# \fQ|VRV G[>OZA'DT#;}|+H/ T'P?siWw?iٟ+^SC O?1`?<vϹ(+) @6Oc$"r D^Y#a Dt2runq cc-M=x"VsM.Y)#<x R:;!ZkS f( =^zoJY $O,suOpƤ lIh۪LoG; c(@3AZ]0D @~^N7Cx9b5uje;|w~Tng^f3s1? b^pLYbƔ:o5C@k=z;HUm4v-hP"? ޱSu/2>ll(b$"1.{nOTW̖HIᶁ Yp=QTpIX@s(ͬ씵S:P&nc]?b@ո$)؇lڃށ u,Ӗ884*! s"AJ;9濮##zO&tF'?&کEg?!CgT(V@%z/ }BYX/m4BE[{w m[s*5)V1c Sp'mfVmMEK&nhRul+PMΛ /3=Jm8D)8Bm P kb$j`&+>CkD"r# ؞+<.7[vXe2;|mwyOL!2NJveȷ-ꋪס]-:˄.R/z:#V6xe0 ˆ@tL7f {(0D19\`"Kֺ l*$i9Zb(7Wcudq" b+":=œ jra+NN=S"Z, ymky#"Zz_wi"4;bĪ de^t2k[\9zchޙ 0?u&Ȑ'/lL\\aHچCu\W`@k?5>R8bFY)obI1<_\)lE zWCMe6* q9=p^v8NB(S5 d2CԥF럐8BnN„" -5"/D:+ C{[hjF3TgLS,;!K\{V萠~фhi aˊrߩsDz)2l<8{cY2q2$/!!מBw+zܸPjC2+͌A맜K?1)m{^T쓶` Vz&[̅.R|dۍڞ>K/19<GvJk1/( f޸c'cN;85wIZn{ JA#U\4 $tޭ/մSWY#bv|?= 1~.-Si ̛4e&`C]ޞ%`m5׷>D},cMO #`dS7HyuK vt$-LDຸtg/\1]gaaoTsߍu!&AM U>8sJ%} `k^gۧ|2`'lf9o쌻`$gI\XނYaMIWb'pi7B%x8z| u8kEzq\.0| YJ|"WeX`ҭ.Y ?hR4ZoIA1ڹC,ŘA[ ~^Ժev+8ܬu[>>M43r{a-њ\OA͹t& "2|DqU/VKxZ|e4@&?xkݘsxoLQ-Q mhA; nCS_ձ_oxrQ{Ro>uV?Ȳ!?:^_Q=g&;~_^"Zvg{o7{~ 5\E*R~zkp%h shOh>(ٖG?-PF}l[T)X~ 㳞6%j 7 ^D)oʛO+2Q'lN;A@PL!;FeԬU<룣\YhwRmh`ߤe2٪|j맒8"Np~+r .g?5yYI-Q#kT*%Z_ȶJ 4esF(F@Cn-y \QiB|FS^8sSˆ^.$ϐ=r|ڗhhd= *3?*0 -bOgwaPkɚ d&`)BөdVK|_JgHRq3rF]%.7-o$U<5sۜ@{1[/0 %Ϋ$XX ʁF@j. E*|EEQP擒֤Qܥ}vdJDzb²ve(0Fݼ]/@2G֝Cۡ*];14UfM`뢙4`ѠJ#ELFh?q S2`2h輁rRI+:y8$m{ta"!8cU iZSW5S$BbTƈC{mZ:.-$bfؼŤ0 fbQKƫm2$>e`"sJGgSp?o", k[pĨցmرvTzRvχ%b31aMܕ+s$a2:KK׆vm g[_yc,1{4H)N3cWȑOسqߛui*-s2q<2iR&7 MʚK u}Z]gOy*#|Ѹ#arWz$5ON&jM% HeQ|\n-ZHG6c d."|Ed}RqIT2QHk5M`nGnEfB |>鵄IvW)8ˈ1=o?N€ Z?NS68PaDZ5$IJhHs!ӥ)R8v^$14^ޥNC~s13%`wBf+馅ne۶_֟$ 츥<,yv<`KԔV<{ pi23 7S-",=2iɨZ1a,ZiDqg̬%p=B$\Z{as--ƌJII## ;؁Ifēء/&8Zz}Ȼ>68_%3-[:pu{ObL /Q)OKz$$\l1O' Qj;*28Jy73[^]D߉ ϶^hR]gUPć10h`F)2bCmR @gGpIwu\M-LZߟP fBuQ႟uhΩזܫ(oa!QS]O%} ~~ZȷCk*ۀMR5V!۔7(`Q]0dܽ1W B>ޱ3Y&L>n *&-b0&l(0cꪥoy~1=Sץ[ŜM8I;)7sA ⊸,hcoidERFJ d 3ȹ oBimn.^9W[} H/ ߘ\_i1l`1&Q'k?_ oRDbÎc:͛iEvu=ꟾ)AyY;pm&xulWVةmS`l  Qǥby;̎bۉE=Umr#|H C;7 Z0sFTNl/^J!ie*^i+iHP]EӍl;JD2L# 7X+g_ ٛmUW;y q@`~\kA*C kx R9rFGbLy\%Zޛѭ4e;RzYPXxI[żYY='!_L \9xLaB>5PXfW=͜ޓ B]U<)>iXUC%M UT S, @!f8 wc%~~BǗ+yI݅:-.QȻ ~o3{n.@{h^h#rfDt|ϒEM0bqӴ*94-$Oo^O]]f+ 8k/}}%Jzo?rc??rV\|]*_".x^6~i\Ex#?=$9q+$MYU?akCV"u/W-07@Oʆ6`}x ~ !'%2(€5=H:IӸyu>>&= ـ$6`!΋}'WICben/]*\n@΄vJYa?ox [#f#Ц[`AxD mQ)I_)[}!V3p ǎ=DžkpC4lLP|ܧ1"}?wCxFU%iMMdD,wWv'/Zqg6\>6 +=χebe9׹wHkoFbUzD5.m=ol{kt$VP4ﲓpV~uoVPheId^ÌA@z2^G*Z,vZ Xe3ٳ霸tO4WUR;*Dh]/e>u~DD.rn5¾uBh,gI~^[Cg}$X&sD[+|"hJ`;l\̻5I+!|"ȉBN9Abƫ5O %dӑ1 {!}{܀ur|-@GYxcְN:O"1u( Xyxdxr>E[!|j+ 2GԊZ2O?i#)2ӯ,/ .Ixes[w3\ Gx/2'A['n9]',4y;< RmKJbRFy+ԩ!܈i^AxI}x2x-Qsچ8Coߙ}wp -^tk"“mS5Bط@=T0&N=bDPٻqk;< A"M="&U}=e~vЃfR,0 vxJL$e8 9i!i4{}Pӂy4rӈ׎Nԏ\[UËU;:*g^yzg߳S-%[Ѯ$eY$&0pIqwwѸ4R]j`܅=ٌns6FT Š@|dؒz02[pi3RW2~n:MB9?45ĉ݌4 1q:dp2Й(vVoU|վ(w ~&鉮\9뽚7d!8 AY^Z.Faʄ8ɋu4{•3Dt͈$bow Rۥ{/:FqcUvDv8`>Oū$2C|(ai]BԀbU14YNsRF&lhdўf@ ")t7-% h<)jw\P|'5}ztCma?^ԉ%, $ʴ(0C2-F'e{Ul) ᗶw7Ju% Ť|1^kZ)$!y3m 28XI!H٘f0\ AۖC5kO_"aFLlnLQfq Htsbf)!R'\z*lmJ9xs}.#{]#b U'-ŒrI`:ߡ!*bBp  TE!Û,H xTh/)F!/fXzn+L%rsfWf@5T qO;*ZШ؇G bGx{׊?g5?KkXrW7q.|-x~;sg"Rw#SujᏚ5y2?ZO=H,R̕v A@z剦\_D`IfQHa: ^Z ; lz‡*- Ag(<7[ < %-23IU 25fgX+sK`y*\@ >5w>tbM-}Μ!ar^8)M!M{!$EX b9JOYIiP@nXfyҖL=aLB@<'B&##_2zҏo:_+֣=d 7XGwQgHxkOhxǁo㕺1)K|=)YԚj ^Ы`=V w˾dzfLwH+%Gg8GCVӧ?} !W(%~PdZYZIVuWt>" ߪxkAdrLUGHK8)Pi; ֦I?ϿYvumV?p%D~k%2 #'%h9(I[hOsBHl7M9Y1 &_JcV\amraM^*5p)sy xk78A]^ܑ@v^) [L,ɞb #T/2:;󩁍LO ui_0ȫx:_#hy[];R}DPt"m8p@A #ÝI'Z]mr~ۥkt Q-*'3V0{"_4i<,`ઋfz-рXg4&`x2hZC-fhmC8)t⋋% 1 zdx̫CXP9T(vʔfD]!lr6ףZxt~QKx`ɺ~ P9vUpZ5.+.D.%`meډƛ>tNjԶVjbx&f j3Ia-CU}>u9#ɅYOJ\[y]x["|@b [40.1+73۱ Vȱ0*9r^V8H-(,Yč<ˊ+Qgf!fEV4y\Y=O מ|p Hs{ *oDqX"'0=rs8 H_PyI*4"&k-G27 ʙϲS+Ʒ8P:~nf"0YT5FE M)[z0bCxOϩ2jN2_@Y^kwj̰j٣eFk&])НN2HVXhgA=>4-(e(y|U璦,GY)dڔ`b"/VFB.p+b_Y,}Ӄ}> ٢}N|}3xT!TK ##57(;mVfz~oᗡt'˴ dJ5qk~_)m HۥM&ତ5B(6*5eɸ<{Q6~^ ɺNK3Pe!57Y܀ne ?$=c|G]9-Z@ y*o|<|Y'%4Ezڸ)VUŽ?WK E x\iC6_{#mUl M#boH{~A)20͏zLbHZJБ[6hs14fMJ "|ٳfdN*Rz@v:B:U;IL.$U0zUEfp+:9zMhr*.,3ɸKt[&/cɻ͙^8rHzJ<ʯyIQDFݪ |EQ"9g_u 53G$(WP s]k]tFUք X#rV2 .&Q@F٪f[T:eg0`u1ZSt>k=bN*K)0&  *Q&{ \ tNls U ;NRp؄oOT*^u4M+e#O.6c} &\ ۴3hlY2=E tE4T* e^D|jy0tc(X$iS2]#[t}4d9K"5yTKycLnGѝ,Y=7%5inS_l׽E Ejox;υ`F9gȝ[Fr|YEJ9:LE; :ሲ% [wqRяUr2_vVLљ/bAnZٟzA9w8-9#GHDў9tKU~15"b:{DI;%4@E!D2Oq?*]vA&tY˄orp¹m]~(0sӾj<|NKC=\U!C?-RWD/V OVM縘GwGR(>!n=k0UIop~~?Tx՗vK^V:L;`ːV8e(vf2aŪ$l"VVs504 .Z&-R~jyQnytZkvu4yz'JQ6^8nkI[$DKTZW$7799 dQr#O,`x'qTW2U?miFȢיA{"?{Ak  i_lL;brC3"&~>>1]݈\ΰbɛ2?Hly1̝|59n`h OtcvQbHS>1r>F fLEzR\SH \Z!&@n?u^nU{Z[AWeMï5ŵ9¾ϲm!*x~xyğA>]Df=4[B7YdMS暣 C̀)mNקؙ*td)pOxV(s@ I.gNoNk.pc{Un[#}[LuSB:hѤ¹݅XI9}ϓyWht(y*4ovaVAt=6KHb|E4Ƴ jֈjޭfŌ;&fìkބ ob^c{nJB^V}/3 8=Y fd$X&A&\heH,֨'yeo\x"TmE17eD*ۓ0+,?ҥV1ގϣ]'>td0~ˋxvF\Q0U*9 0Wț Z׉IPZ}{{~$S}0cl9m/h*ׅskQ}PϭJl8c)t=3jw&2G&A8 f{֚gn$a0T#{OFk1Dlb\9٘UW/buYow '^_q`;!AMahU_2Va?fFv_Jyyk J ]Jby~ ɀrVbA}?jNU(P齽 .cPZ9 De:jadEiD-/6̀ d7&70Be"+jP 1kO\KŬts0U@NfN۸P#?&5g:p &Ճ)HCI:WNrHF׍ OThԤ@z o̐ c O! )VeAƋP}w ;O)sK%HK]\KtY7H?fvF8ma[PI\H׸׌Ӊ\u:d*Ҡd&ue3;'̚'hToICPb}7}f@NH[TP V <)!X;.}K]uyPJf˙0@8KN4Zp ѬWhY3섘jKv 4{ZL*C]=M)';y WM'(a:^OBFaaf k/Дx:TS-ɂw?8|bj${Q 3GnRuJ^CNɕ"0f֮:!KM~օx㏩:ݠt/KU)H T@"gJ %Z>L(TmZcfmPtRE% eҗݣuɥэzVY$} x54<73 |ܪR*3&G tj|Vp  {G/YnD{N){پ{a^p02#")8/w3p s ֥}¦ hE=agW ^7]bt5:,{wmpR b6FBZ: YP9Pֺ}dY.)a"vUIذ04}oQK u_ s /ݹdԢ%^X!l4[Oe*<=ߚϚ u2/`YdE4?d˚y-ۚ1yBE\?yb0Z[#S/%avW@/l,`%3}T&ܻDύO'J#߅~Qk|Ԯ룸mh-pnp]e[.d9z 籬kDLe$Vf|TٵCrwJp5M&_£*ۅ21 %Ii*U7;;(ʎc$uwmdz/(؃Pel={,ѽ wjmWo$&XZbL,|M9j0Fz0߇#j.S"JțH*b[ [̪b]W#< 2gX|do_zEa ֥VScSljd#}GWd7 ƕ) ""rl &ٞ!*CTFBA2\m"5!„[!*{`N&Y9BaP/aR7I!f]+q2܆E?ͩxCxzs"|Pzs)gwW|| o|) @ ! )!_,2c e>6: ~|p ŅfM]GX&gm&_2pg!|pWܟlDt/ ! * `G3{] )RQ5gQ a_Cu[LQ]g.TA^3Nbw@FW.|CwQ +*hBltG|5oQbO(f1)rI.lv;wK8w1ؖ$[W_}cfKmE9ycg2z.(&qs0D>SI*ME%oٻi2 iclhZ&j*H2GߕDb4`3L s-iGI }58Q%"Q $s]jnIlƆv74:hKMՀ^1o ~o>`Equ &K%%3\?&pn16i{]Ax*DK~Kɺ](9&C''qQN G{eQL [Wpu`=l*9*5 }Z$6^3^yϴJDa=DjLit>WzɺD2Cs)V,t&3og.t'uKU&x {QuJv.Yr(EQon4ا׶b ˆ|UUl-P9 tga~)h4`,}@C.Dzްv#YhrGR2bNSs/;BbThM#ko+Z#e ]|{",ȩp W 3@%s +R%xi2%a{~[U"ZPʨMkk (5w@=?@d2X?q:Ig@дPzIφ>-˯|4BN9sIB 6_XP; -&z ЏF޴*' 蘥;,M^T$Hyctx]lk%TmHdmuEZTVl&;>cvĐ@Bj f|sIvdeHP?Ya |E&lrN(]w0`H L}U/b 3؆$ܳx8fAik1@_pDI:MqJ&q߂s zAZ}ϽvTdhǯ3x@gpG#2̱JNk1|TCeotkUD=FOPYs18..\QA->>XM.$EAӓD|@}j[Rf{REcIA?ֹ}"փ1u% yGxw2^o #!+SVr2e)RNR$!h)uK{@ rkЩ原NF[|3^TVDPRKP*K%3Y"д1%؁٧F#vcvEl;cg' gb='{2?T]-ET!M)#KB]b[{*ٸYcD9rY3M0 < sVPFF{/0f-qYm(qB1ذq䙠i_d9{Mxvk84Jf^h`5tV@~m*$j:N;6z+ad!v['"x~( KO q^\џ>*GbE O 'U'ѣ='KKiO:[X ;В1|+H Ouyn˄S4#6;/4̕H>q{}_ ԿX: K#~r:)DV&m~7l(Gظ9Y1i:/PLO9Jf:QQd(x^J+~P> .o Z 5&n(L?F2&i:9EHv^ts p]ZT.aU`!eeMZÔƥcBt394k1ʢˍ g\A򷵔-atB;!5 %JieT\8 2M I3Π SfBC;3*a䧖NxMRqNVC$yv%Q ?D"4S.g婿e1SDdrdϫRS&/k*WHi|r($2bcM ~f4ņ4it4NC$MjFN4 qk~OQ|  L!gaN38;T9W6u֚S=/д6Vl|E*h!ªx 7юcTj'YMGo=zw䇥V 栥PXd2?M%2zδ!l\`;o8:惨-'r;PF 2+ALDZ[d?$ԏ,Z{TMxp\Ȫ]/>L;D~υ_hannj{"׻j}m%Pu>u[5<{+@ -Xz}٬w&P]Cٖkr X^ Ez!eԺ}} n^y;3.ٵysXAiQ+$]9*vw9qmn}-v ֍(:;(OɂS؉{g$\F \7}+e"."*-_%?|<CCBЫKy@ "[e2{"j2=Jlo>66Oou)44X/c3y(73{󞋵 a]C}e}K ೜UsND_G&j Y}m~yvA L>Ĉ>Њ^r 9~̛))`Kr }nu [\%(MODbGOfERT6<$f4טc3zěDlZ4KqĄMmb-4k3|AP0](WCō:A6묾z }Eƽ)f?6KƾSar 2Ӌ0z^7J죥SS\\Q:EVA|L!R5#.۞"\g(3֘~{\^wp"U}27[M;jŴZ#ndw6`h ˳Gj? nh%z5QJciOsoepS~Ƨ#FE,279ўRyw+ܖ zzڳEkq.EFSdDϻRxr0KepFu&-'9dc^)vw#vȮ1rj n],o ׆rօS 8j<3[֮;ˎZ3eYqm~)CY'>NԪ #眠\,5'Җuձ6_~-4{50MLO #XA>1N{Ǖ !8@ר8Ó_c>C􉱞G4}O!TH: K,+"u鵌ULcZJLBl?Xd:¿,G.y3GU̸=)XS*~(A@^H3^ڶ:7 !ex;gB9S%ch ۃ&=)WE؃%kvh=ƙa办ƀ{_"IɏobRsIU_Kcu3VZ8wΡWz'̨䮶 ò`oC\MLCwl3? w~tR|:tw!K`QvNW=<$/jrS6"@PxYt]Mu\>MM/^&2-"her/!ٝm6j}SdhCm($] ~1!r%)9ֹ!R.a)KsOP(i0I-K",*7f~-`Mho`ز3-)soy.Ygp|ƍ^VS E~-o] nT"'̨ Nh2UQaKדa.FNz`D޿pZ'/ssS%wIGV7Ni?8 )Ϫ3sv_t}CcckTdTo{b}ј◦GϚ{ߤ&6iדh̺"4EAYC_zo-"3t(m0*$97%eh* fA1fww c= ^ Gm'1R~[m$ZgwR[tH)#`#D ٦"ʶiߞ!D~5{@!qV~z@d'ۈt2=ZꛀZ_c D:p֟xm6*#E*яGس&Hw_CU|gЈ;3+SId[:60m_rXzB@pTI\T GvW ^{TPa$ޠ8 b'=Ķ^4Y'Q8\-K { &10BnN&dذb|P.'b* Z͝Y[譂xqIt,~͎OD())*C`ֶ*ASE I_"b;F)dci2:h9> 8Ln<.C#z M_Bgc$iͺYœ4hB5ub'Yhi)w3֦8a[{@VI\G.B`@bo=Hӳ28%׵CP;\`>vc8ԧ8}>Pċ (~0n2 ,;vJfiD2j 0?cG-2]0=; vU+>!o'_ I_?n()xjDag)"+tL~ڀP_z7dxyDLo|QiF?sy^y~q1c֜ï"Za3oF#[-D6Ǐa#5$$xp,W%4M3 7 Xr1L$DCsy]ux>Z{'ɦi~&U9B@-ʯ+fSCk+fȠY^$R ֹtEtk֊reJ&]J=Ut[_{Ȼ|?sFnA>|BO2"/Қo=/{Nґ"7 [<M@/mjrJYEGTGG.wd3'U#nh<LO473ʛ @#sn6*Idr:ukצzbY9EP.}>, ah9]"TvBDA/rNS+h8H)ά~=H clN,=>u|2]* q{:]Y&ex.gJLjU?Ү0:;9z epg~M~Z8 I& {cZ*hKnN!sƟjN:<)KRDzR~"4KiS/I: VKp[F?F#O݃ѡBZl7K,89¸)B:N#yߧgmMSOe]&s*>&ݯq),C< m 8?wQ3VzCz8פTzls,unj&4}*PJkG0"6(ܲNN敀QS?@I{'!W} ,z}t,)'5=焪374 l;vŭLIIO}_?ۛo&Ąm{Y! 96`Ӊr.S_c5i f4|e *hVCjIW\iYGK"-߈Fw8& eύmPun7LxIz(RT&\~ qĈfuX&sV \9ɞ_X(z Efmj#G᯷Ev)1?#]SSpڼƥ_jhTƗ E؍x嗢_6Ds3~:Ű$­)ɫ1VmiJ[De@$fLi9{Ӫ ZU)}Z='u^ŊN J˺eL˭V16OǨըwPuΊDRgo . /_n Δc! 31^I07TpH+jw;/e&6#%ΞD/20oGqy _.WnpūP_ vu\Ҧ+enLeK|4U* ZA؆`k+~\Ei< 4or뜣|;||iUϜ /PQP:eO%ɀ(X=05qYyw `xnI)2~R0+|z@b-,n[!>ti$`,؈vʱTEj")WTVRYH͞p{mwꥣ;QN8f;=ԋʎpY>=vtt4+T\{)7 fxbz: PgX6[_94^H)?A;cBdQ6$hj}!곁S~ FW1r+oʈ %7|6]WrAAzE]2KiM!jĵr+^Bv$> hg˯N?Ds} MUXjmnmfyªȨh=Zfٮ=~ĝz~e)Ua᜖ ui_[bs 3qv?x!-"ZQ(i|o]I>84Wm(d+Uo l\QA-Q/g{0ҵЊjӝI:9f9\5sMqŶV<w$X>g^@ݡ/>6ڱ|!\©ΰBlMB؊rS0J3~~LK>&r*y;_粆ݳ=̨V %(sxa<LA+=6mi~,U?Ӆ",(s{)p_ ^ܬC1.1wVre+&+k%,-bt*iu"jH:{Ȩl=!3H]l:f;;3؅ 23`Mד!O_'&SΉ0c-9nѪb9/ &f =O'G^Oh9LRU~"-)jsg 7wL2tw;%Su̇"!?S%ȓr]oNI۶'"׵a7]~t. d &[KPeGO$0k,r1 vy^q]>!گu`".\*#v"ieUn18n /'yc\o0koiBV>,+c.oxa\f,Z[EުTֺaPm@P(Cw;%:k ..ttCDS`Αi+rK y)"7a6Be\Z1`L K/b:5oGo<[=Jf!k^e>U 긠9~:QXIx}͛:&^60"{gou^D'66q#)R^ t3*D#j P@<Ȑv;pD!E6(̅:^ Js@ '5)#$&?^mɂzcm]si/y@n(ӅYi;#X|a0ܙḦi _Fk gnd7Q'*UF 3S ?*QtQŦzcrHKEz6uE(^? ?'4hv>%OχZCw/#ⴻ}b~7Ӄ24JGò:Ȣg==4 {Wg،N:ȊbνQd OKwgG҈:43/Zʯ 6K;:|!*v- z|`Wڸߣ+|y]2ƅ`ةġ뗫xh9֩J8]EQφZwJR~˪UY'*0@/Z1tAB/压so`!h9*$VKUY9FyaB@)uZ' 5&1#ʵjyO*v ]ʞݸIINr _0c bۨ*fJi|ۦPOuĆ+k`Q%kčWb]|>υRLEX:Y;;Dg :8SLcvSB>:*dKC;9gK> [ }P(+%Db3MW<('2Wb-r)2ҎDw7|| VRGg,y1c5BN?)-+ɁeKL`Pjxq:{\~EY-U/K*\Ŧ0T٠ig!ɋ\ƹ$-cD5ޭ}9ӑ˄I+_e.cvoS_oJ͵BV20 B().1PN;2dZ0O~DI{ҫst} N+YcV Ao^M{bt \(]6!udcc#j}:|v^Dҕ4n#,I /\4 RMPIq#L 'Pn3;ВIˮklA4u^RDqmG:7^~ȗmQ&dagT@@zZk-$*/wz9Y|0n6?o@8/3nqk9FY!C0]8ՋWd_kIqxEoiF,!e鬙ds7]Z'l ŋmyrC[6&ܟJRR ӐCqbK Aqz JC#=`/$֮dpb<z'gM*{cx[mvWbzK~Rՠ1a葦ͤԘN!ai kݬogO ugO=.,i9T齽w3rvVZSS6LwoDi(f]yW-<}5;zc3]DZJ D<3ԲaF]`pxN1P:/kyu zA)BFo0/DpFkbu׬ˏ-L7|Z ;y]D=u,a t =3X~\M Ѽirq>hb/ę_>9|n F;9H+>o&Gƥrf)h{7K0v .h ghRi12"tBz# Z~JVsGB.Nz~!nq~ +hIVֈ~E25p7a6H_TX(gLXk仙NyR}y{ _ױuqL0mT#}v]=3,>zh:y+D:^')@p55RG&y=K%Gu;.~A%M̼`PP]ڞ4"֢`B&E n*X_ÍN[JRrR? r~yϨB}Ei( sFV_-9ϼ4яq!tNmJX)Y&[ -bYl*wR*xϖ|0eխ̎dG͖3b/h5wCwoUݬgO-pCzA~E|Amy| "A=}ubTeeVDA]xo218sqzu Idl`\nE^?tVWjsO£rw/h_#FNA n|X e~ $W|*=ﱒȡ=RKfSonYж*k 2q=s|!qOv/__A PmNX0g!L'HB L*T Y->Tus #B^ӐI[*Nn DLTG`/3ӂݪ#w#j!N67XrK /gWQ`BYzv !xChJTpgxW^`B2j@Q96l.R8)'|5k;Q)]p- _J,3D0RI%Ye  QpQw|ʵBߠC}3fH[jn.qY`qAʡ\S 7J_,[DGiXfci)"3rЅl->,lV&BW!OC`9"? Kp&AoHmo-8Ɋ'Y<[ⰷxqiG '9WXTJI%)m]I_Nk"|b@qayX L-Ub:a@8杍1.n]ۛīh$ PΪF49rXf]0yqO=KXP^N2CJ7 =,bgUaد&9(,ܑ 1##D#+|(]~o#bϘK剃wkWۜieG c9?)%m3p!Xn_1M" 6/7E; pm*pc@:5ѯgEE?{8v؀sa!`0 2g [.3DߩYD")sT!Up1p$B୦ɃT}שLp|Ί;z^Mʌ¡) Ě}TNT>ɣ|% y^wF("<+x` Rs'Heٱ1*^xMl#L"Uo2pe洊 vgկcHURo?O^9֪we}FH4Q|W٢ҵRŗ`FH+õ`c݅FW~ϫn{_ഄvjL惶NOPXT"9y,VWrXB&Uڞaa;jr0o㛮MYdUAh ..D*&о*'sK~uLp!ŕb@ ouRYx'Wᐻ \RY$33›,\Æ[Pf<*mXVYjoL4L 㚀C;6Tדu{Om~܊RG.S2VieS/7X-Vбk)94S&Q);Ι(l sV = ˖ )???VV 5؆mڼt =^|{}Ur~ZoB00Sk1;+u7DN:D 婜 K1EjƢM~N=t6!=o6'2NҮpYŊ]"^g_.C0 Z7S?ySخn>`i~a=BEK é5n}MqfǂFh,fD̦ㄑFC{#uc^1\ L[]j1RGk^S21_pɒ'mkM> 0שKy_sh!Z7խG"dS\DCI-kl'SALJmm^_bD,\ >&, 7L:;"rۙ@ U&"/J԰007ҙ.(˩6-`q/YA+~Xo6,!L=W[8W F眈|-vdMY\ؙ#D{]峺ȞV p| et6c +?3~AWӧge]ˋhxWw -7_=$2՘}juϝ4ʅO% Db4z/)abn xIrit$^,2Wr)\S׺5X:xs^b0Lxg([w +zâ &"-*>cK$x:>/U29adޱFxIΔ?d.GȱtHq( Te~r~Ա(2TBCrlxJȚҽV/2xg w\4!3[/W`Im߀y'*+~.C?B_(]* VjN/Ւq&jh-&1h_0}UfEG84* Ԫ/7*X|t\a#9ܓCv)( }0`b)I1Kt3wXNZSV6Ƽ>?51oOa~y)+?#A$~soTڱ`X nE7])67#_06ȥ/3:bT/XZAh\{5\P ح0.\[`ko[R6<Sʍ(pefnc?hxNrvDҢlk[--~WhdՂiZumNw~_UD]wAJe }Q>#IEOI[^UB_A){qipm9}q3I"%/Bn ZјYe "w" fc_AۚbXHb>6~xMgxkU8zDq/x`1۵ ]΄2GAʉr]BQ/m}݊(uR҃&9fHo6[H1ץ|}iVR[ dEȋsP:!ƬTr 6]2ta)MGp0 =Z.s8]C֯"zø=ޡfTE1 r mn}ENSŃ17G9č]5X2_^6v8y8C㆑~:u8x<o`Fʣ;?"`,hVkQ~R"1 Zk׳gjleGVo}OXxT®F6_"*Uaz?PJph}nAM`*HΫa.d^LBQ$æ[32}bXPYԋ[܄;W#J0_UK.L>hqFz?1=Ai6S RB$V2$MCh,Yc*3zm>p^ ;PbZZdD0gMr;e[)/SKP|&Qs6r{eA{ &_T.K!\ut?x7нtdTotEg s KY|!$",,[n/H{܏e~Q@ &33^ݽE/EnD'k,D7u%H)*GRP:4 XyP;hIqbBGL=7g b jLh%}h1j6Y>0l\!՝yƺy("ZR+2oY4H-$["d eOWۊŝT}%z`TZz,Z}K[a,HxRjOf94NX}->|I,ɲ?8{RAU^s?w\un|!dFF.ݚeԈ8N5qRey\Sɟ6 fn%0)o8%m-t% *^) X3}Aw+be\k!:VZJeN:VmUBK&V. +&{z{W=:S.^A`k7m1@i5Z`9=80xjTT MXhM j91U"ه7K()Hpq~H_}ŶZ% D2>S\;{ι,/E! [0㕃YM ',D-ϟކ^_O B%γA~W ~{ oP+lE^{פ/#8ٴڭ{uTS` teV!$ =I3>/ڞޙSN6JwQxJNKkzbi(Re"p>pQ:ʐrrs\ڸ16, p0$nz`uku@/ \?g1[BSQMy ..w#Ba8+t/b/C9x Vma=HI"Ws|<X-mE XFvo3"Lai Ԡ%pXd_ozp&@u"͢{cyB2υuyH>bU͊ m-DdTV}ӳސx@YۼM[Z;.Em=.(/oMȪa8D : 58"s?X8L5Az  G1gjCˡr 0w10XJiE%2oL1 M(DeԴCu2;p;ơ{zB\ڙ1ܲ^nՍ/r.ϑ)$$Ǽ4Cj `qW 9$Vbu 'gDKg@ zIlkg7V3>XȠdn}fqbSn> z]*ȃ-#a~012V\q*:;Ύe<|Y ]Y p}LeK"+1)3 iFmeOq:1yuYٓO{Kʩx>XddpQ֟7Kw[|x>1/#dL9'&|~w$wv4^~Lo'𗂬\o V9*%XR>H{rUn 6Sȱ y*2:hSi:4%^r'\ Xր<'ig9Udyj>^"‘ם\uVZ)dw&Im 9 %2,[غS*x= mbQƐ,^xFc'$ԩn+m/+`Q91elysSJp:F<3,k$ݥ28e\K,QZx(~e' as=At$vRIƸyXK2OLHm;› 1qUzÏ6h nDC la:[24ء(с?D+wX)`뺵htEvȂ]yD'wIbXJi6^xaU.7%bde Wuūr𽾛m)@@`ҷH ';Ͷ#JUyШ)t 38Ɗs}Hy/쇈Hh$%Y& A#`CIu+y2/=i1.S7z1sdSyYĤeR sSkja8!j1uSR|'Y@_!qRP2~ҥ$ٟ%ηHD"J:OIZFk }McUH"x -[_F"ZGJDI& -P(-vw]pĶVؗi,nҝcr;hAjEL [瑮H(ިf_y\GM[d"c\#ݐo zu:LO+MH-x2Yu'Tza(LtMei"=*Q$;{Ƥ"+2`5ɲ^XmZt@ŕo-~O+Y5?pH|@C{i,Iߓ= Q𷍭,@k>[5|szGYܣ4Dܹ Yc'E̷} RMqahݸZׇϰ%sXր1Gc { <(TK+71Bh`Vv2Uik/R#eT5^venIE$5hfw-\e X!nỰ_&)5.}jyyFig2!=PHAvr!*UɧQMCǁlXHW.6{YӀ=ѥ3!k>) PKaFkHSN=5hmU PxG2E59D¿5XsϘ|˗AQ"}ՁgE[WNNvG׶ }Ka{d wQ3w8#TF_B $Gg%SlY A 4 J&>6jWİ<&da/x*vR2:7&.wziHnUַ6Sg!D ׍a*'s#$g 9L:>%Z4Y g)Js%XTe^=pR9G Kr“4 `@Y9 ]6b Fj'В[fe5aR(sv~PJQ"Y1կy(Y7 OQ]m !?q Bx蒼ߟ@;jқ{𠈫(Ú"JW@"qBkG( VVFoT^MR?~}Vzb;N p@U }T(F{4T¢Y>/w!ir/]$,q+$&BT ĈF3Byu4})tG+9U9%+NX id](ga2,(L*|(6~++TǘF&ЎzmhH Z {0EGE` GYB9Hn6rb5ڲdKEeղޏ>} ֣Cz&qs?^d~8W!GJ!>53O_ k .:S~d˙(q,gokӹ$65Y}?w6;D5|Eg|Ia0Mj?%0m"" ,:`g,I Gƫ/jlz'ᵹzQf4z$0ZHǯmkxlcmCDǻ ΂Y,$37ש;n;hlOVi,OkŭLxorJ|qm,vүA%&9A#B_'_vxóӤ"*^5 ϐˎ4(z  F^\K,Ңy܅Z @cwa܅D\@]rL0߄):}S8[N z^:W$l\cN4(GmBܸ2y+Lfe( 4Tit qκat0suY\o Wg%K$/z|P9Ooٺ2pz:iy0<(ji~D]Y|s?ɣx,hhkSq$WRn39н-F 'ȓ)bAE|GN'Vt z/DIJ^T;So+;߯#sIT:C_xKx="" 4<Ɩ&E_kΙm/lR3"ի>$򗎠k< XbT=c?V~mI!5.䝗l4RĬrCR7)mB0LO-\ߣ{Gf&X9kv90נ};َT'մ8b/qd0kWJ3R"mmOsSQٸE'>obiܯBwmϝrUK*۔/-!d |v}z;Ɏʣy9oMwcE#D/*p${ù#O*9ͷ HtmW4{p&#<npsa !V-&De]| ax՟H5lNhyOKyIJ,}WJ@N$VmHr"UjaБYs-WOa,!x;(wJUM@ yi2]rmkYA̜dTվ~Xm͇_V?^WT:GOMa i+ʣu?<gs2=ΠřߦeVv_L n@DJ$ΉYW*0rsf^X n)- # b^S~~b0YY O+ј_aK^-jioɵ>X?چAP^"rrH~9fwO'$*N4[O;a/pl?†nfJqDԇhfnMb"tĦ w7 dG8;[ri{ |D=ga-_fM'J:@j\JdĠriJ0g#{R"q f6ɘT ӟƄ m-Ad\,aWb+p:lb7[%CZM([]=D=*r}g9I8}EiVOy-3+d߁?BkO}ԁQ/JM}^3$=+,pU6`chwc`Gan%o"%∅Yn!Q&djC3X t.R!6m7 $_MM63Gp@įQZ!o1(9*7bmxm>6):|qě1t1Bs>a6UmOnIylQ(trk}QtގMZ7lgnKW ʏ"Bu&16v"3T *GaXd9UnRt}o8C6L{1f<="*5 ,|L/ϐ9LŒEt̻H)i9z{Hk.S-k~f~*P4lqJV9vpT֋_ENݼA`,JP%*UՍmZ+}ȆYF=jtYNT.H Jry:\(Ygmaa,[=꣮ \o#8I?XsFOs)R$%T?񖖥[哔B J/K^+s魁ŎLwÐ̷'otaqWi 3rq0=dYv6%IGcb6ʏ`O~e`4edY_k"BZ*-.츏5ЪyƱE`S얷@# ;M(.l2.#u_׊G pG l ${_eQ={]!P)Zd.&;59Q8*;:LW^BP| 9h#?E_y~ጫ<*lZUAҁ1td>m/6D qZY.dr)I;Y8jmQNiawf'r/FLWQw3=t/5$6/xO#%%M> }(KL ^j@y6aO?@0uQѩ&@Bv)/OPO $>{X5y$,5MţT91g ?ljxNk% ').))9k} A"vlo!X} 9SE;"bx>m&GܩƾLZDMО/&6E;_O TSOFMG;f_&c&$@.. fauFڄW$inkG^?F'YOdy1tTj6,eð.nw/ҹlW.=X9'MD P\oL(+.gO;jCZ{O E|̦ U7 վ"I%VAӀ05w~Uoak?_'`UORM, 76$}Nmg\}'laM` )㥗"܇P/PXKc|dS`SQNW_ab:҆SnQ[^P=1n.l3%ďe 'q}sɃ̍ WG IUE H+‘KO=7PrbNTGj 3+)lgydH`,Bto*u';f,Ϗ8IU0rY'o[1x1hF A<0k5Z2{|iIfKL| hHfsue}ђ[dc((:'oFqN 0%:X/mŦVUaDMПNObj9w[`Џ];?C/@c(ɍf㭐u>9"ܚKIJP' ِ"4/ [2Le|]G' ܝ3?oĦ Cp ^DS kmoN(^QR\'G :R]O.Zq_UGh#5_V ƕo+ a?lo&Vi\mCsmwώ"lZX0!0t)5q 76GPr1$i&{o4Bt\ Os !H!H)uS$1=T$+;xDш 6R{R njrM',tzkO^f9A|2 fSKBV%|}~`U~T~_)09o[7NwM0y5#Q߷ͼT#Sۓ{;_DH.`ofzV15S .UWAu4SE/):…ĉhjU{r> }VG׃{L +'ޡBQ,('K)1.6G8C$2.ҤHhh p?J?C +P(z6t@?BB;PL[LSDSҺ!Q\In_ȱ4ՃzdC;0苲hB> 349 bv-oCx"U3j9U{r93"|< ܙs%Jp_&G#cㆲT M`ץV3ɑ"_8IVNw@C ~+^P#է4w>JcS~W?;9}DZc5LN>=9|O!R.nxcU)t)T2v0bgiGby^|(m}uDw#31f0 e)f/k#ٔa2`-^@-Z/W +4pRInRaK[VZW?COMZpx ~j5!f.P8,#Q}Dy'j (!HPM~)Ҵq՝vhXkmwRV4XRN 7;R.=~SqNN/Oݍ93V4v~rV 46NdI9o(W5HjڬpOK>e3^D 9g#(FtbF<]tMXt^E_9CY"=# =eOyZhlȇ"Ҳu ;ѡb/'B_KD"&tXR} Skb֝8?c㥤 (f~N^ mnЩBGL~Rb|'6޲)N[tceN4or#s]]AE[3?D $߳^ \2Mmx &[Ib;PP4۲{M7ybgL'%].~r-f{ [Ctxz8rHFHnnO$C!W:%6`wtЎ!DzH" UpqqB]Yr8Ӓ)!X7ET-sc&\yq(tb yn׵VZH[f 3qP@CP~҈\%mDФ'2;3'N7IΊMTR04`TSOFPZVZ5e Yc13] 8s:l(l$Of{yzQY WE t#iZS ģy ;lVD 3`#dI8>Q 6sCTTP7aT+s['C:VgQ1q`{U"d!xXFWk̳pwgz8]N ia@% |5t?]Uj2$ć& Шix񨁦#cRAïHk鯘wq l?RC HRg@kL!Η `]JHX~̰gbPQt?!WeEAm6hCyaЁtU*Հwxx#oN|Hy6WX/MQ$kKMB{ k-%£;R7jIXBMYC.;LWV+]@2x^:mp4,ZމZ<=Cwhz J4./ۣHU}+D]%U%Ѷ$_|r- ھv8kbQ R(Ed$[Wiæ*7_Kl85Zpfo |w,x.iu 5~kɘi!R5͠`}Pך_醟wcb/<`v٩!a$0[-"N$=MלjMWu(qOU;Y!XmIf'4P5ꃖv;k##)ٶw=F1oC/C{#ņ8jS䟌xGCqn7vcS|w5A򞆹 5 0^4">\OKt~ ~gdHH ygk#dq< {4λo]MEnTQP&${o!ͬEXagVJRwo ;5۽AzTz,wԂp*l8ۣ;r@{P"o,圎ՔmfNetvreL7V1F+:[XjhR,I/kA *`p04o$U<тwT 4n3z̮󲴦sGXv]*[c8)O+`ـ+E!lގz~;2y4B./0@A6h#7STtIOK)=L yA,xF\|eI4,[wjYEf)se~ȈPhnRP: Q~k G݁59T,aaVB"ʦNo'*^vԅ !EВA 6kūV0%?+ʗ>BJfG՛6ݒ 6o[XV!MM^t@$!%4DOweŭэIQB;eHlD';1-+3ԝH gi[ ceZ*q0Y:lّ;HWWZj.Dlp$U7-^?˧bӲ)'4Ns4.5 ;M Hխ|qwW}U}G ,-rba^;&{`G+9ǎ{ ggƾKW ՄW~"z+aLx*n mfGftG$Yz$n%*=6gpYVx2> ynF#% hYMuOK cLjP~{_LC:n: dm˲?L>k1.OоdFCI>)R#~^6B { kR5SVNU4pUR[|_γa@W[ͱK!?6-{viXC*Z蒀D- MŐAxVئ5 C.c*WԯȌrL+[ D$.9JQx0薱DPĹb[_)vX`,4ghui]$)Mܹ&zG#f:u}I2sodEm6:;Fjyë+XJ ـ?SE:u JÕI䠰.W) A(J5* j&ojj-AwC6 DՐ ˲Вng`L]Qy&I6)p+:t̀ݒ5*ZDVk$2K< hj{5; 2 Rpc V!qp~ΝNfI̓/^>s5-%Q;>ޏ i@(XV;c gF~dd <"Bh,94&-Bx˕%ҽfE˵ؓ^VAfn>Z]53MG%5@5G-]ò|g}[;E#ɓ }!v~.WAѢƆl|p"y惷( AL,=#=[rgV̛# ܊^NCEYxZ[}eY_*U4^)83Ƶ{ diWo4lD1VW`6=T,'֊˙Tb ɷh'TJ-r/z L:~hMpAOW4$ct' \ޘԜr &qB0?kp)bכnEEfёT#dYAyjlKx p/}"}Yz ;4R8=>a,7T)jsNcR)B4<So%S=~={p d.jC T]T|mωt¬F$oHvjd(^L. &vD BdocI_4ǯ3G zϪ?Re|]yCj'2; ֈسiIF#UZh(*]x]~_pH;6'}&GǞ)=[ qٍoaI哂B@]Ns;֫L]Sݭas~@@$NeeyL6&ȣ+ U'3&a+j-`¹LOX*{ϋ}yzx"~xoV[ʌC§ҁ+tF|W~zdHMD 9ĆDC+`ʣ2;j6&%cIj2Ruq==uo>DVU#a9ܣ*^S>yFڴҤvAMwZם6*h k9Јw<_jA*M#hcs NX;w4ra'UA4jCI"W(ޞhv1&8c2I4zpt$"];_N+dzq !ˡgc -7ZCDG$cim)X!߳* O~p 3Q{9Vw\̞}j83:x u"&L$ '1cgjy bo*rA`#~xkp) DD:dTUSW ,hFlgЧ(.$W陶dDڈtsN4C\[&L QҁkLZ,&K!;t BI]24Rw{"I:@}#Ȏ%3BsC[LuTJzm/ݭ2߀sWBe)|I70MJ^GICNr֡I\e#~U;ٓcKV1rV6|NO6BYD;?;/xEVRMʆn+kJa7 AP e;)KKp+֛,P 0]qٍܧ5O{ag/SGzē& V" L;S6OԜW-.pX*Nbz>AE@ZDz-(tOP6rCD+X%TF[Yh)N֥U5v*to 4L#KeM"uV ꣧3O?9_V4Q20jzYrY,pLL{5# H~bX{\wKX)]czM#ie` !GX5+!(!`A2D?0c LJ?kij%r905DQ:21>O&ۿ<_eRVq%s=>:NÆV:%hꀝLba j9B~l (>y Gq4y-anq!j}/'OiX]G7Yrh׭X!4s@C?q%z uQn\9VÓ c:EWolgǩme[1ML/M.MdFi䴢ںҗCꖺޜF*̘G3"L2S2u, uZGQ\)-zo4Sn_ű˖ƒ $tA׺s4<,Ǔ[Kl8ʼn-%Ct[iU)~bgyGYF>(6nݙ&*:cnw`~8)p7 bâ5gY\!u\cwAmqF!]vFx7? RKbpMLpO"c?V3 ]_zsiqC[%,u|zڱ-VW+$JYPZg8vyI[=[? Y]e}PdS&2{>3:NݕUg!Pn暔Rsdvt}kCR3ex7ҌFj}XqES!I`8ʇPT Xine)S)ܓH^Ssۖ˲݁j080oȼslBRjm{CEKRp+l+e_gYp'gJ/[hB"c O3q[!;n.J&F1L g|֛R9 ]ŒhҬvo*~[R!ާ8wpDd\ ]!4A5:} _ߡS,詬3o:(G3L]!;A% \+5CPa`JWSЂ@y+ sK`&4QհI B UN~/ie6o 6 lv~^M2e|ٌ 険ԐjȢ.KoG[O V,|C[ޡ[{vDZJi#ݭ$4ZS?sݒBdwfkyDC=*Lx90/Enr~=8dS>Yt)@HW´s9vk cD1~uTVM]͞UqGX!pPppf5nyUcHjxU_j d?+-"S疭lblꁡsI}i݋cgOF+́'3ɦ.eG49ƶ GCfC>DwcWD&Z $ӗbED)=81U*LL&$ L n_K3~&5P V50hj;M Q(ת9;h"7﫹 ҝۮk2a a~߇>@1C7 yqZRisU{p- 8n Xwt7 C/8@RD:P.8~2U$#L?)Pnmd- ԌR*<݀u 9qiCF{f? wNJ ,x ud}Q8Q97Lj 6XL0krFFPk#'Dhis'w'~n'Lsri+%cYvSƼv?¦Wn\U|Tf$桗x/M,k5:Wѩ?⛸ 9AnvV HrxIO_8J4o' DgWRڥUQ] ^V_ /am[wSהUYv;/AS<X[j]M;̼ibx3Ȉq-*`R>86-/+ďf zآ)<Y }`W2J{e}Fi^iCIIJV7NAXNpޘi+İv\AZ)y0nثne>嗢x%XMRgI"*]vSbpcP~xv)2B"<ڻ)D.r_8W v&GD zwD+nVkf,GEQ.e ޤNy<5bx'{5Ѳ< 7mo~xt'Bb!W9'/hxJLΡp\oQ=4;浈c`tE#U[KIoDl!|܄I[dT "WGs􉍤G}?8&G|J8[~;2Iӂ侱._I~!Bx[&HyXJ0?1Zl<LűUK]HcJ. v,$Po|q, h} +o| i|?],2^:&&$¸$klkZk` *LL5úAR[7exipV7[:P߾y '޵cE2kbdV#ZROJL)ӥY~1xxCYl0-g[8nԏvMa<ʌ8+R< ?έbe 1dqf_T b`Nᓏx bДԘےj2x D܉x [ʑ"y>;>M 'X sal7SҶLMr2:.4 H\|k- ջ8"<[voI٩+B]Kr1$кcg/Ȇ{`HC+>-zѵ\y'.V6f|5(%,3wזqỲL۪DB4 ǡh8"ם~OrZq}OY {<hXo4diEFqpsf5߃O[^ąiٍoXҲr^,2td^7\mSqˆ=3E?w72<'[N:W&6_1Ve%_:?jհ">r4%>!k} *v Q=DA`*!^>S.ɷJ^{3|*!=bm.dP*ӟ;%Cgbv.ϝa͋ʵӎM›Pm=7N twg.AY/"{K9ڇnq & bIK^=/=mʵ>U )= ]} ~4p:jB$ri1uAZUE =t&q\Ij({՟1g4/(ETbVvjM(Ƿ6[B&h/=:(Ͻ#_ҹN]^Q|3㙓+ GBKќ _үzpax YSόx/׈5bEf,lĝ3,F Z]zā9-k:?jA> Vp WEEDheUHԈhC!֊ APujU1쿯angAx9=$ [v Fi3vhZP;xa+l+^E=ӷe`жJn?u'l_ ixk;.7(g2S9z¹?Rv&Txq̈h>; iL)vCUy(P@]\|*4NUGB}aiv7Ap ^:&:p[BU9R6[B7*\f]A褝7EZC5[6\pІ5mY'ߋ,O)8a-ODH; oDA[._,CԽ $iC+$%I+Dh{ ~5TK,RLUZ=4`u.EI A4{v}K&4~iw5վwʳBeMy&-xfL"rDQ^2ދ+Y(HH91!;[.JPg&dlưd :mS lǥi_,ܻh$ 6`7EBRae)IMB=qaORA2Mصx[KΒ]B*Ӝ櫽=Eڜ Co8n_7im gy/nyW`?uLչ-lD[LׄWC?Jf7ARLտ?CibYz~BZ]? {FH!a1W5FGүN4֣coC{T:.W2ȮØ|xI,i)X]ha#Vtz@XOFMy9C¤Uݻx +N OpӒ}lLF->]tJ%ČӋ+xRvl,_5z1o"pAiTGVXqbkGxYИVI$KgP)ebZ=ǚܕY(F!H2tp՞X[OMm4,0 D8|wn Hl;EB  MˬFڃG|d){Z$a֗/f\Nih`fD&2JQjS̐K̚#vcDz!˛ג1\!_HZire̡L^Mp$Uk2,!sO#/]pߤfi_ɂҀRʾ!{n3FfLis7$hTbejn+*Ý@$z 7D=V08#X`iuh&J<^yut/4 .S̰Lz q_ٞjarB.+Xĵ?yAyϸr͚tB]slUBGQ5H~rZi]b%ET7C_*o ڌpLx.`EOR=>m\b%}{݌θ h:]tvTHfQI us9S㿿Q <@|*DFjtk LAɳ $V{_8`,IM>DMmDtZI! B%*Zt4OQob\8Z9,=!V`b_Dm^"ⷯ F4EUUL3)߫ygI"Q7!pBlFYuz* Ď SE{uKJ;ϋI`P%;s|%'.ݏ7;0XvYqZc]=,GZ`+Uulҋ*'Lk] ?{9r QaJ2H8e 9uW^_|~G HLXwCc0@"oOG\FTtZȰ$sȇgs~j{;6ɩ`|*I6E B]̬rSsE\;y\яŧLe i83@JaJg;u/a ztwk0Zڵ ds;52c3eeDmy [E*Ӕ}}h>uîbĹGeusѲ Y"x2W7Z fݰTN{U馄 D~YΪ@\Jۀun1M~MG\wb2G.fb<#☝dS+޾%7e.FN B"ZZmekEm"~\jnK?rt61'G>٩jð_Av"AZR IΒFn/zbJVmSy]!S 9$}pj |" Lq}#K5v]iqJ)V,!^զ"w~BfrQ5/Š]~;C|rOaHpNgl3I~Cdkώz-iuSMnIj6+͜t!d.kH=wK>j[8cޗeƨ+fb9&5v5`hiIK:)Ǻz|$FCYW~n e\:VS8]8%#|JM n-@2d^jXl0Kxd QDo%Zz3ojj 2mVNAHXk$_]uS.tUsbыpwYb rN1^܎M&>w(F x6v]` A.L`/݁OY^xߌ;jOQ2W=~q鉞yO2A+WG>8= "cFt4x夳/sVO-tT!p %!G/NL0,X4 P8pq0;.TW8 ~2gDk!?<3Yг$i)Dq3Xk _#l Ev$t#e=^$5:@(fZeJ-e V9iQh\җc$MCraaZue-8vN 1'1Os{ÀoI ʱq"ɂHU!9ޖM8T|/:# *4k+8%…/D\vWFvR>N=lʶU7E7B8_s[#S3_Iw)X:aE4v$sR66ggtt2)s5Qq}><8+N4_&4c)>ZStе 92;C g/&e`B :lt+mWgo ־kޟ:s~"9'dDڈ?Z5AX|'ĪMbOTs@$ӲO}6n g`vz1fX'=x+ѩ}z["h=V@v^|SKkHeBBaa8ِEXR"oyD%ܽ;m*xܬFq=TP7\Ld;̦>MkAPqBlK>9XdvW1Ozg0s9V<-KkPg`ޅC=ZyS« J/ Q:]%/MC'|y?x]l rfz\+JB=~_ԧ(\ հxB1{pۛrg{ug? :X &)Zְ$^z5 `TlmY\O(H 튵QX ]km]?$)xhHRMB_4) >pK@]=&JX+;gep'W"F@dAr$Y±e%Q B`9RK$MBsnwjޘpͦsA%ɭgȫczDxd5$JC( π515É=,,EHN&jfsӛ*n9]KPfM%dqڋ+ }V6Z@hfw1N4JįElx ^w .eN p[lPqx4{~ 6IFM׻ȝYs`)\H]c{T}Iŏ*-(6 H/)hqur9|5ëq"f^2&|Vz?m8JKFѰG>|>̤p 7 Cy{##_a^qm=OҎ-ERa vseQwwAT5B9/CCއ(I*{5|`oP[JYſqlK=%)@+{qBȤ$OTH?& thз.`U& .=R?$L~)㿃hb rtL$3F1  _6S'8XGgn 8~ђ:ܼLT:kE+䶹I-?)o乑6&N[6V]܍2E|JV sj?e9f ,lU`}UB{7>tVg8B,<6't`!~vY-8%i& &rEqA/0C)vî%(+j$r9z^`^1ļT@sLHbkb5Jv/Pkjr❒7MpR,/ee3i} 3fYPqN:~$K"6)KWp aco9@Zx*EMc' 0Ve*ru?夅:#l;u WۈLp<td<瓴$Y[7椭 {5_R $ޟ᪒ } 9+H( 5OtvX] 9DUi]G$J#źN:U&KN|~+%v)2! 5',\Oⷳ,1>f)^0 %O3a4 DvN`sp`uu}%=K /gl E.it{R;TXo9;pZJ`j86%RCLv_3JQܚ5:8.Jm8JۉF焌{lyGVFVMH2= QƠ:MgRۃTJ(En#6Ve'=fPF*2h5g_Zh{zى"4ElLÓ.RݏKDt[D 0ީh`%s.5EI@J/L&P^'$10#]*_:_:dНY2 oT"WՑD?fsR*@Q`M&%+ԢqBg8TT(8.QXUK0//H]1{9N"NWRɛ{kq W8Dd}eZ}m r/9/2o݉ 2SN#BF#[:㹒.ibzV(Qzu: ՐAv 6B[:Fm'ᆺ>n( e:-gp{n4:IqdssgXlV,ېO}(q%_S|[bLY|La  ܞ &T ~)̲}"+wn'M9/W#,1\$n]]] ڠYS\Ltq>f7O砣M~h!wUR[_GXwlg&5Ms*E uD_俈8|Ras9|]]`VA dy)n;ʽe"9+K;Z6== 4%9t_B71˽aڴ`%IV'5-0< #Rm|U+rDtS sz{CE( >V‹5Jw-hQV ᜝BʼˏJ+j`X_vWWįkƯ].`2eM 06+jGãYr@yiIZty\-ӟ!3d.~աB^MpmxU2x?zDosH"5լN_6ǕB)RNw"I&YE0:@4'vƼ0ltX}؏p-o;2eNϺC\"{(`c0yOHgٝ6URFݓR/`{߉\r!\} JϡC]!:2u0w/nkk!w9F $RjZjtwFU,JtRu4ix+Wiul,s^ϫ=bրz U3jTH(Д?i1m9 T? evm<PY@n[x̤>W.O2Z`@y3a#oM`$k9!k\9 gF؋ԠgݯFQiR2Ipm[W}cPj!ƶ^J -IY\ Kӕ r:^+%7*V`G!;Wc*JA%Ӊ65 MN8Py>gю3 YjNp~ny .w^iƛ/2h7vM|WZyң|c( /YI&e>Nco ՜m*̿*`mxvr_Q f #NAF]6$CX KWm^^ZB'Þf0e5~/-[&7#աeaCWWGNՒ7Kl2 ;Gр_ڔ) K,Xې52yjyl첩"_l@z*=GOG`yv wrvAU>qbx4'ܒe_paa Qד;oN2%p|Kvr6TS2.e%sե~~b/FγwV8 ~W!2o j`-R?UPqeiBGJ LbV]~cT<F2n7Gm3@X8i*^;O䲗, L$HtVf-8&A7l:#4$ӈx^8AWג)1)*JгcMUP& _zM:A~*Q;H|szMMvxTMX0)8ᡘBEi R4FHrB"docYrq9#ΩQQ>)2{4gȸj7鰰wJqy,FIgqCډla/Q28\BKRyS >X(@|,nɹu?H$p!D$b!z C8D[80t(C` nNe3 ]Ȃx[LU꿇jyګUqgFjɋ=:^نn;,';+9yzb6qS);]?A0x[=W uRZVd.#*OxӃ#X9MH+>fġJFe i1)U" <0F9lT3=9SWq"4rm)YMVQT #TLQ"*63wKȽT:Zk]IBg7i>o tD@9eS%W`QTT*iz-r)4ڻVC-zL?(̼W33RQNj LsAٴ4L] h _b]y>im2جJ!G{;AՕ&WW+z9 "_M0Щ?Wr)^tGr3#sD>tkeWmV6@zS508+xe}z @F6΂ M nx؊[έE|`$}5A#z+& 0y^":fD覢Q&u- 7(pkD&=]a) ̊LngJ}~.-0\3@73O[)N;h1jdܓαIp7 xd/T{ Bύ>B0Sj4ޒdejx v(HcZ"3d#.p Opr#w{Z~#-s/g< }8y~3C[*'GYSk\o htѢidD969X=RD%8nt!*kH`r[%Mk| `daëdCK'ͩKmg:1p=c?ئPZk^i~WVl̜lΚvϴeR;f=vPgM&" ub#Ks 0{ίҐޒpKG8<75TngpdXW @:S}CV/YNYzTCnԔ;|0!+CQ\dBt3ŀ+ܟ(~{w;kq[ݼj]++?iCuҬ9wްMai;&-2Oz(\~ETY,~.2mG45 wf!Jɭ#DSoHP7t%^w+Xk9m t!؟k>3w@_j H|#[A* IJGn&ab%/*jlV,d2JaNDkqDHHԢ_Þe[+q!`ˏ;"=SH}tqdn}iaOz$Yѯt.puOTv>[A vpf%"}?٭S J /ϔ-xXcVd%~Atρ@O}יpFaEmXv)o5)i^2!/35&W,Uq}6u(& $؍%sSW>g)gWt6x<`Q ud]73עkOrDVLAT!^=]R'M=;F3}t0eԇ"Qϗ= )teb^[]P|ofVQrț҂,@}+NJoƓ3 D&ͭ07!;Tf{@:@lJ^oHA@`×_7}l7ښT܌y֧~UM׹ġ*aę6?W< pTn"BH$C%FPfXbJ IK]&zZڎW~=Xm^xKarv+Dw*Qd<"sJ{\Jde TGl.K$<ݺ`;*SM1@ȕȣ02w?u'ddl_1&A\`n!%۞8Di? {YJ«R7P=qDAoC<0s5ى=T:k堏F]➕$-!&h/N#m:[4n d'e$.3qY~0 3Iq4{I>lgRۄ6:ņLrty@p1_&ߟF^M) ӗ#uf(1&11>&&QbpnP3y!\8!ܖqL d~P3ˬ6 8] 1~fԳp#E8Z6aܨo߆>z݉SQwhVtCH\ f(-,W2d^cP%зvKJ"i/%Q E9I_ A[(;}ɲ3(S!-ЧOlzl34мvPcZ(RPo"nJKF8 y;,6`Q{Fwn˱nK{O:q*؝%pPu_"bܜV, T횡1RTz|:AJ`smH>1/hBg%D--/6[D-ꏡ4'f$UO;wRh6uԐχ,] 'X17,:F:Y3(/iߚv%Цs!n'uyx |:''ۘ71KbT']hE@9?p@ +c?5!qZN3ZzB:qεU=*5^ UK7ZAQ PK՟}]z@U`7S{@yUGEXĝJMzs7&G/uMdz䩲 #o?Kd"OV6sD!:zT>!U8`^/U\0DPpe =+b;-3 yJ;0rOQؕcF#fžγ= #O&6t[N'3, ĵ;ŕK/38̺/d~ܓ% /!N%c>HEhh(j \UYfE+2tفA,-kbF`DYI pֺ Z-)9b8/ijf!7j?曀A(#vgd!KY uNZoi٩=_.S%~㰴Qs611-r=d mŒ4Lu%JOv\Z)Ȋ @2S=n) W^ZGʌ|xaw%v %ƘYFkiӔrhՑ lM1pb(MU\:j%\ٔevw.dۓ9U%S=ft1.0ẛIDgw6: 3"}T(O˜ASJz @8ɵ55{Vz«ȶ[(5I{jNp}edJ֪"3ۨlju[ȸgh>,5Q͈uKyDe1gP',lY>\=`M" 9Ŀ>^>a_9 5,h+^L0"77-åܚ,&2e,Lj vL̙ pLoRcC| $ftwizHcCrDJMߎ"xCIV"-ebT\08 ՕwY=8ln'^ᴚnEFݻҵǜʹO0M0@>Pדף5,Vþ-! h"־AK\Rzbmm|Zl˫H6X`ߝ>?'Ik?od"zTM=K69fsJ@ws\7&X$8A\>NDN6&XL]WAA)*(֜Rʑl 6;0!Y%gl"Ra2C'wdX*v+gG[.Q̳\Zo%첨:S#M$[/=A*Վ{åa@dVw5X-䏩]OL I bH8sO Up*Ϩ\Ocl>5HV;ݨln`hi*wbjïM˺=-Qͥ-+;Ri9KMTyRޙA^C R|d%ĭ7`C? ^_P B6hO.8-%R'UMKn<LJZIYIb.@.6K%b.Ơȟ>zD0@ LFgPU ʃV5jiQKyqB9Bxʢǀkj=ޏϸK個Ͼ2bU'Z[:i䞠ݷeu%u}`buBk#T')zF[~~{*QoaTn6p+>镛"/0?KE> \˹1{lA %T9z]:>@"c< t ;1rULZ^`ۃ͈'sU ɜ*׌9ԡU0 I%oJo{ZH8[{H&$OWJw߇[drM"lCwkyu%x01oS˲h!osiiK>{l ݩq2)ݒ 3S w_ڲ:eA`?FEa]~uΜXq (y㗚r 6BSj Ur)p1}`(B] 4g -!CHvȎF8'_-CVMn+MZ3l6@\˝JBxIιNd4p~MOBvkq$Y[V](ಸH&`{4B9>+#M22?H÷#wjh-lU^(j"MrKQ?o4Vc X[(ˆtH2ѵw@;P!{MmuNŵ_+VĄ &f$Kr$!7eTV뻫<`ZwTˮB.&j:}KW#Irm|B=w 'Pzo\(1)2m;q1ԖMZxQ_aXmM@L~o1^ffدELIzUG[r A]fDtԶu >Ne6>QSQQ,LԦS[!/>m:/:=-+^QVLҔ2W^: Pq]FN& n'uSDˮx 4XA4)/آګ ɸv[] OĔ I[DˋĚ^cGh j WtjHCu(ۖbqx5??O% D #zY9~@5!؜;rpNw<06} D,T𱐿Z8Wƶ khm0QbMsL"XL$RH|k61܅w`T_IW*dt5am[V Q_A<&2Ɠ4K(R%?#JGH"?ƭϧfLhC~G6WX6#~F,t٢= Mmj)Iyۣqs"zWCYݗL8lg` #MD|I0 \ Ec{x/nr.[Gu _[:Vt{Å+{c'E Qؿ YgwZWtyFJ46w%^sLAoF:e&0vxΦ*9j!UV׹[}g3qӯV!nc ѥg%@}ӵE)&Ð/q(P_Ĩ 8[#69|2'mc=!vώAs`?$["%fB)rϚHJy 9 mgI_nc#-4*mv#uB J 2NPjZO(!O![TAw3*/ ~گq%-?h;lۖq#y$QZ~_ y}IZXuzbR~NxVPїrUݥEZ>nF֕F_lijրk<"]4"DuWUJёWHםHa4u8?Yh_9 q[*Q9{Ȇ:a+";|:J J%-9~ lj}6o,S BhܹPrqxhmB}}o"6k{]@Zxaʎ/\6k֬`S9݅L"!oRm t7Dcd73)K䷣[gV~X`"ֳ-S΂` 44XbCq(KiPK҇h`܇Cv9@ QCuogr?.x<&MB;nEIc$Ϊt{)SکC `pHvmh)I :,Y|ƃ1C@ vD*vQIuvZ1|kVZ7PJj dBpd㝣cE,-4#:ӶG čk 2%f"f)tk5X] S;^;u7,?թZdYDϯY&L42 H>gkkW ۮ{ކ(NnDE6ZZzrW7~s  zy z} Ÿ/5>F1Iؔj̼LCF52uͣ}/h@)PN9`jGxKhj_tfh?JCTAhqȠ{ -^82yS;[ txH($s]cCXx0@x,J6]䜯I/_ja(aإ!0ٱfwx''Q,-KT+@zx7-zneE/:paDb̛k>=e'NqnDJ[Fx߇ozsB?ѡ/J0YHLf r&>E^PGg#:_(Eև\h"ٲϜ=u{9`LY*=3)ż'PӉjhеOg8ZG ]⥙⤑W-yKvr3@/hapygn^v QGskcuTbVCYt?ag%{/Ӷ} ٽ!2¨o0&i{|<j[wH G0},006MOp xW& )ӨA={ $ 4h;a8<яS妠|0zRJk.oMscPZHu]EjuYu/meFrۚ%7)RgB