jemalloc-5.0.1-1.25 >  A [Wjp9| p|0FJUǼ!_d``nZMƑ{eg#̛wBtbт.iBHƄQ:)KdBVDZ*;Q24kuː=Y7-7n7Jt#4r+O>b; 3f'#p~d7S|ٵ?rQ܉9uƇt>{㝙S۬.(QrЪWE`5 URoΛlȦU?ȷm W mڎ_߉B%fcp oRKݦ'o$^?HW~]_*c[F"^U8އ$4S#HJ3JGyy,/'H skujߙ۲3] A# My:p)<(4l6guL>p>s?sd   P6C Yy    6 <Tr(89 :FnGnHoIo(Xo0Yo8\oP]oh^obp cpdq eqfqlquq(vq@wrlxryrzrrrrsCjemalloc5.0.11.25General-purpose scalable concurrent malloc implementationjemalloc is a general-purpose scalable concurrent malloc(3) implementation. This package provides a shell wrapper script to run programs using jemalloc.[WPsheep10|SUSE Linux Enterprise 15SUSE LLC BSD-2-Clausehttps://www.suse.com/Development/Libraries/C and C++http://canonware.com/jemalloc/linuxx86_64 :}}gBN>A큤[W7[W7[W7[W7[W7[W71d94c983804f5269e60cd61271da20c528ce3e0efded5b9186a14c148075a79ffef38c471df273fcdbcce07751439ba093c2c1b42507659e568e7c193e268739a95fbf9bf2c1ed4ee9932f4f7f9f07a13390b27ccb0d3782cfb6c9de19b0510aecce039b750109627040ef2b024824d2ccf46840d75564accc2538112aaaa3166934d4803ac85503b6bb24ad5864638c15e31ab6c4b8327ab8053ac0091e24berootrootrootrootrootrootrootrootrootrootrootrootjemalloc-5.0.1-1.25.src.rpmjemallocjemalloc(x86-64)@@    /bin/sh/usr/bin/envlibjemalloc2rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)5.0.13.0.4-14.6.0-14.0-15.2-14.14.1Y@Y@Y@X•@XD@X!@XWYZ@W5W)@Wo@V2Vl@V+rV7@S9XS9XS @R@RURfhQyQ(@Q8@Q"@PPE@NN@mliska@suse.czmliska@suse.czmliska@suse.czidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comjslaby@suse.comidonmez@suse.comolaf@aepfle.deidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comjengelh@inai.dejengelh@inai.detony@daylessday.orgtony@daylessday.org- Add 0001-ARM-Don-t-extend-bit-LG_VADDR-to-compute-high-addres.patch: fixes #979.- Add 0001-remove-CPU_SPINWAIT.patch: revert 701daa5298b3befe2aff05ce590533165abb9ba4 in order to fix #761.- Update to version 5.0.1 Bug fixes: * Update decay->nunpurged before purging, in order to avoid potential update races and subsequent incorrect purging volume. ([37]@interwq) * Only abort on dlsym(3) error if the failure impacts an enabled feature (lazy locking and/or background threads). This mitigates an initialization failure bug for which we still do not have a clear reproduction test case. ([38]@interwq) * Modify tsd management so that it neither crashes nor leaks if a thread's only allocation activity is to call free() after TLS destructors have been executed. This behavior was observed when operating with GNU libc, and is unlikely to be an issue with other libc implementations. ([39]@interwq) * Mask signals during background thread creation. This prevents signals from being inadvertently delivered to background threads. ([40]@jasone, [41]@davidtgoldblatt, [42]@interwq) * Avoid inactivity checks within background threads, in order to prevent recursive mutex acquisition. ([43]@interwq) * Fix extent_grow_retained() to use the specified hooks when the arena..extent_hooks mallctl is used to override the default hooks. ([44]@interwq) * Add missing reentrancy support for custom extent hooks which allocate. ([45]@interwq) * Post-fork(2), re-initialize the list of tcaches associated with each arena to contain no tcaches except the forking thread's. ([46]@interwq) * Add missing post-fork(2) mutex reinitialization for extent_grow_mtx. This fixes potential deadlocks after fork(2). ([47]@interwq) * Enforce minimum autoconf version (currently 2.68), since 2.63 is known to generate corrupt configure scripts. ([48]@jasone) * Ensure that the configured page size (--with-lg-page) is no larger than the configured huge page size (--with-lg-hugepage). ([49]@jasone) New features: * Implement optional per-CPU arena support; threads choose which arena to use based on current CPU rather than on fixed thread-->arena associations. ([59]@interwq) * Implement two-phase decay of unused dirty pages. Pages transition from dirty-->muzzy-->clean, where the first phase transition relies on madvise(... MADV_FREE) semantics, and the second phase transition discards pages such that they are replaced with demand-zeroed pages on next access. ([60]@jasone) * Increase decay time resolution from seconds to milliseconds. ([61]@jasone) * Implement opt-in per CPU background threads, and use them for asynchronous decay-driven unused dirty page purging. ([62]@interwq) * Add mutex profiling, which collects a variety of statistics useful for diagnosing overhead/contention issues. ([63]@interwq) * Add C++ new/delete operator bindings. ([64]@djwatson) * Support manually created arena destruction, such that all data and metadata are discarded. Add MALLCTL_ARENAS_DESTROYED for accessing merged stats associated with destroyed arenas. ([65]@jasone) * Add MALLCTL_ARENAS_ALL as a fixed index for use in accessing merged/destroyed arena statistics via mallctl. ([66]@jasone) * Add opt.abort_conf to optionally abort if invalid configuration options are detected during initialization. ([67]@interwq) * Add opt.stats_print_opts, so that e.g. JSON output can be selected for the stats dumped during exit if opt.stats_print is true. ([68]@jasone) * Add --with-version=VERSION for use when embedding jemalloc into another project's git repository. ([69]@jasone) * Add --disable-thp to support cross compiling. ([70]@jasone) * Add --with-lg-hugepage to support cross compiling. ([71]@jasone) * Add mallctl interfaces (various authors): + background_thread + opt.abort_conf + opt.retain + opt.percpu_arena + opt.background_thread + opt.{dirty,muzzy}_decay_ms + opt.stats_print_opts + arena..initialized + arena..destroy + arena..{dirty,muzzy}_decay_ms + arena..extent_hooks + arenas.{dirty,muzzy}_decay_ms + arenas.bin..slab_size + arenas.nlextents + arenas.lextent..size + arenas.create + stats.background_thread.{num_threads,num_runs,run_interval} + stats.mutexes.{ctl,background_thread,prof,reset}.{num_ops,num_ spin_acq,num_wait,max_wait_time,total_wait_time,max_num_thds,n um_owner_switch} + stats.arenas..{dirty,muzzy}_decay_ms + stats.arenas..uptime + stats.arenas..{pmuzzy,base,internal,resident} + stats.arenas..{dirty,muzzy}_{npurge,nmadvise,purged} + stats.arenas..bins..{nslabs,reslabs,curslabs} + stats.arenas..bins..mutex.{num_ops,num_spin_acq,num_wait ,max_wait_time,total_wait_time,max_num_thds,num_owner_switch} + stats.arenas..lextents..{nmalloc,ndalloc,nrequests,curle xtents} + stats.arenas.i.mutexes.{large,extent_avail,extents_dirty,exten ts_muzzy,extents_retained,decay_dirty,decay_muzzy,base,tcache_ list}.{num_ops,num_spin_acq,num_wait,max_wait_time,total_wait_ time,max_num_thds,num_owner_switch} Portability improvements: * Improve reentrant allocation support, such that deadlock is less likely if e.g. a system library call in turn allocates memory. ([72]@davidtgoldblatt, [73]@interwq) * Support static linking of jemalloc with glibc. ([74]@djwatson) Optimizations and refactors: * Organize virtual memory as "extents" of virtual memory pages, rather than as naturally aligned "chunks", and store all metadata in arbitrarily distant locations. This reduces virtual memory external fragmentation, and will interact better with huge pages (not yet explicitly supported). ([75]@jasone) * Fold large and huge size classes together; only small and large size classes remain. ([76]@jasone) * Unify the allocation paths, and merge most fast-path branching decisions. ([77]@davidtgoldblatt, [78]@interwq) * Embed per thread automatic tcache into thread-specific data, which reduces conditional branches and dereferences. Also reorganize tcache to increase fast-path data locality. ([79]@interwq) * Rewrite atomics to closely model the C11 API, convert various synchronization from mutex-based to atomic, and use the explicit memory ordering control to resolve various hypothetical races without increasing synchronization overhead. ([80]@davidtgoldblatt) * Extensively optimize rtree via various methods: + Add multiple layers of rtree lookup caching, since rtree lookups are now part of fast-path deallocation. ([81]@interwq) + Determine rtree layout at compile time. ([82]@jasone) + Make the tree shallower for common configurations. ([83]@jasone) + Embed the root node in the top-level rtree data structure, thus avoiding one level of indirection. ([84]@jasone) + Further specialize leaf elements as compared to internal node elements, and directly embed extent metadata needed for fast-path deallocation. ([85]@jasone) + Ignore leading always-zero address bits (architecture-specific). ([86]@jasone) * Reorganize headers (ongoing work) to make them hermetic, and disentangle various module dependencies. ([87]@davidtgoldblatt) * Convert various internal data structures such as size class metadata from boot-time-initialized to compile-time-initialized. Propagate resulting data structure simplifications, such as making arena metadata fixed-size. ([88]@jasone) * Simplify size class lookups when constrained to size classes that are multiples of the page size. This speeds lookups, but the primary benefit is complexity reduction in code that was the source of numerous regressions. ([89]@jasone) * Lock individual extents when possible for localized extent operations, rather than relying on a top-level arena lock. ([90]@davidtgoldblatt, [91]@jasone) * Use first fit layout policy instead of best fit, in order to improve packing. ([92]@jasone) * If munmap(2) is not in use, use an exponential series to grow each arena's virtual memory, so that the number of disjoint virtual memory mappings remains low. ([93]@jasone) * Implement per arena base allocators, so that arenas never share any virtual memory pages. ([94]@jasone) * Automatically generate private symbol name mangling macros. ([95]@jasone) Incompatible changes: * Replace chunk hooks with an expanded/normalized set of extent hooks. ([96]@jasone) * Remove ratio-based purging. ([97]@jasone) * Remove --disable-tcache. ([98]@jasone) * Remove --disable-tls. ([99]@jasone) * Remove --enable-ivsalloc. ([100]@jasone) * Remove --with-lg-size-class-group. ([101]@jasone) * Remove --with-lg-tiny-min. ([102]@jasone) * Remove --disable-cc-silence. ([103]@jasone) * Remove --enable-code-coverage. ([104]@jasone) * Remove --disable-munmap (replaced by opt.retain). ([105]@jasone) * Remove Valgrind support. ([106]@jasone) * Remove quarantine support. ([107]@jasone) * Remove redzone support. ([108]@jasone) * Remove mallctl interfaces (various authors): + config.munmap + config.tcache + config.tls + config.valgrind + opt.lg_chunk + opt.purge + opt.lg_dirty_mult + opt.decay_time + opt.quarantine + opt.redzone + opt.thp + arena..lg_dirty_mult + arena..decay_time + arena..chunk_hooks + arenas.initialized + arenas.lg_dirty_mult + arenas.decay_time + arenas.bin..run_size + arenas.nlruns + arenas.lrun..size + arenas.nhchunks + arenas.hchunk..size + arenas.extend + stats.cactive + stats.arenas..lg_dirty_mult + stats.arenas..decay_time + stats.arenas..metadata.{mapped,allocated} + stats.arenas..{npurge,nmadvise,purged} + stats.arenas..huge.{allocated,nmalloc,ndalloc,nrequests} + stats.arenas..bins..{nruns,reruns,curruns} + stats.arenas..lruns..{nmalloc,ndalloc,nrequests,curruns} + stats.arenas..hchunks..{nmalloc,ndalloc,nrequests,curhch unks} Bug fixes: * Improve interval-based profile dump triggering to dump only one profile when a single allocation's size exceeds the interval. ([109]@jasone) * Use prefixed function names (as controlled by - -with-jemalloc-prefix) when pruning backtrace frames in jeprof. ([110]@jasone)- Update to version 4.5.0 New features: * Add --disable-thp and the opt.thp mallctl to provide opt-out mechanisms for transparent huge page integration. * Restructure *CFLAGS configuration, so that CFLAGS behaves typically, and EXTRA_CFLAGS provides a way to specify e.g. - Werror during building, but not during configuration. Bug fixes: * Fix DSS (sbrk(2)-based) allocation. This regression was first released in 4.3.0. * Handle race in per size class utilization computation. This functionality was first released in 4.0.0. * Fix lock order reversal during gdump. * Fix/refactor tcache synchronization. This regression was first released in 4.0.0. * Fix various JSON-formatted malloc_stats_print() bugs. This functionality was first released in 4.3.0. * Fix huge-aligned allocation. This regression was first released in 4.4.0. * When transparent huge page integration is enabled, detect what state pages start in according to the kernel's current operating mode, and only convert arena chunks to non-huge during purging if that is not their initial state. This functionality was first released in 4.4.0. * Fix lg_chunk clamping for the --enable-cache-oblivious - -disable-fill case. This regression was first released in 4.0.0.- Update to version 4.4.0 Optimizations: * Add extent serial numbers and use them where appropriate as a sort key that is higher priority than address, so that the allocation policy prefers older extents. This tends to improve locality (decrease fragmentation) when memory grows downward. * Refactor madvise(2) configuration so that MADV_FREE is detected and utilized on Linux 4.5 and newer. * Mark partially purged arena chunks as non-huge-page. This improves interaction with Linux's transparent huge page functionality. Bug fixes: * Fix size class computations for edge conditions involving extremely large allocations. This regression was first released in 4.0.0. * Remove overly restrictive assertions related to the cactive statistic. This regression was first released in 4.1.0.- Update to version 4.3.1 * Fix a severe virtual memory leak. This regression was first released in 4.3.0.- Update to version 4.3.0 New features: * Add "J" (JSON) support to malloc_stats_print(). * Add Cray compiler support. Optimizations: * Add/use adaptive spinning for bootstrapping and radix tree node initialization. Bugfixes: * Fix large allocation to search starting in the optimal size class heap, which can substantially reduce virtual memory churn and fragmentation. This regression was first released in 4.0.0. * Fix stats.arenas..nthreads accounting. * Fix and simplify decay-based purging. * Make DSS (sbrk(2)-related) operations lockless, which resolves potential deadlocks during thread exit. * Fix over-sized allocation of radix tree leaf nodes. * Fix over-sized allocation of arena_t (plus associated stats) data structures. * Fix EXTRA_CFLAGS to not affect configuration. * Fix a Valgrind integration bug. * Disallow 0x5a junk filling when running in Valgrind. * Fix a file descriptor leak on Linux. This regression was first released in 4.2.0. * Fix static linking of jemalloc with glibc. * Use syscall(2) rather than {open,read,close}(2) during boot on Linux. This works around other libraries' system call wrappers performing reentrant allocation. * Fix OS X default zone replacement to work with OS X 10.12. * Fix cached memory management to avoid needless commit/decommit operations during purging, which resolves permanent virtual memory map fragmentation issues on Windows. * Fix TSD fetches to avoid (recursive) allocation. This is relevant to non-TLS and Windows configurations. * Fix malloc_conf overriding to work on Windows. * Forcibly disable lazy-lock on Windows (was forcibly *enabled*).- Update to version 4.2.1 * Fix bootstrapping issues for configurations that require allocation during tsd initialization (e.g. --disable-tls). * Fix gettimeofday() version of nstime_update(). * Fix Valgrind regressions in calloc() and chunk_alloc_wrapper(). * Fix potential VM map fragmentation regression. * Fix opt_zero-triggered in-place huge reallocation zeroing. * Fix heap profiling context leaks in reallocation edge cases.- Update to version 4.2.0 * Add the arena..reset mallctl, which makes it possible to discard all of an arena's allocations in a single operation. * Add the stats.retained and stats.arenas..retained statistics. * Add the --with-version configure option. * Support --with-lg-page values larger than actual page size. * Use pairing heaps rather than red-black trees for various hot data structures. * Streamline fast paths of rtree operations. * Optimize the fast paths of calloc() and [m,d,sd]allocx(). * Decommit unused virtual memory if the OS does not overcommit. * Specify MAP_NORESERVE on Linux if [heuristic] overcommit is active, in order to avoid unfortunate interactions during fork(2). * Fix chunk accounting related to triggering gdump profiles. * Link against librt for clock_gettime(2) if glibc < 2.17. * Scale leak report summary according to sampling probability.- Update to version 4.1.1 * Fix hashing functions to avoid unaligned memory accesses (and resulting crashes). This is relevant at least to some ARM-based platforms. * Fix fork()-related lock rank ordering reversals. These reversals were unlikely to cause deadlocks in practice except when heap profiling was enabled and active. * Fix various chunk leaks in OOM code paths. * Fix malloc_stats_print() to print opt.narenas correctly. * Fix a variety of test failures that were due to test fragility rather than core bugs. - Remove disable_oom_test.patch, fixed upstream. - Run testsuite in parallel where possible- add disable_oom_test.patch- Update to version 4.1.0 New features: * Implement decay-based unused dirty page purging, a major optimization with mallctl API impact. This is an alternative to the existing ratio-based unused dirty page purging, and is intended to eventually become the sole purging mechanism. New mallctls: + opt.purge + opt.decay_time + arena..decay + arena..decay_time + arenas.decay_time + stats.arenas..decay_time * Add --with-malloc-conf, which makes it possible to embed a default options string during configuration. This was motivated by the desire to specify - -with-malloc-conf=purge:decay , since the default must remain purge:ratio until the 5.0.0 release. * Make *allocx() size class overflow behavior defined. The maximum size class is now less thanPTRDIFF_MAX to protect applications against numerical overflow, and all allocation functions are guaranteed to indicate errors rather than potentially crashing if the request size exceeds the maximum size class. * jeprof: + Add raw heap profile support. + Add --retain and --exclude for backtrace symbol filtering. Optimizations: * Optimize the fast path to combine various bootstrapping and configuration checks and execute more streamlined code in the common case. * Use linear scan for small bitmaps (used for small object tracking). In addition to speeding up bitmap operations on 64-bit systems, this reduces allocator metadata overhead by approximately 0.2%. * Separate arena_avail trees, which substantially speeds up run tree operations. * Use memoization (boot-time-computed table) for run quantization. Separate arena_avail trees reduced the importance of this optimization. * Attempt mmap-based in-place huge reallocation. This can dramatically speed up incremental huge reallocation. Incompatible changes: * Make opt.narenas unsigned rather than size_t. Bug fixes: * Fix stats.cactive accounting regression. * Handle unaligned keys in hash(). This caused problems for some ARM systems. * Refactor arenas array. In addition to fixing a fork-related deadlock, this makes arena lookups faster and simpler. * Move retained memory allocation out of the default chunk allocation function, to a location that gets executed even if the application installs a custom chunk allocation function. This resolves a virtual memory leak. * Fix a potential tsd cleanup leak. * Fix run quantization. In practice this bug had no impact unless applications requested memory with alignment exceeding one page. * Fix LinuxThreads-specific bootstrapping deadlock. (Cosmin Paraschiv) * jeprof: + Don't discard curl options if timeout is not defined. (@djwatson) + Detect failed profile fetches. (@djwatson) * Fix stats.arenas..{dss,lg_dirty_mult,decay_time,pactive,pdirty} for --disable-stats case.- Fix build/test in SLE_11 by using gcc48- Update to version 4.0.4 * Fix xallocx(..., MALLOCX_ZERO to zero the last full trailing page of large allocations that have been randomly assigned an offset of 0 when --enable-cache-oblivious configure option is enabled.- Update to version 4.0.3 * See included ChangeLog for complete changes.- Update to 3.6.0 * Fix a regression in arena_chunk_alloc() that caused crashes during small/large allocation if chunk allocation failed. * Fix backtracing for gcc intrinsics-based backtracing by specifying - fno-omit-frame-pointer to gcc. * Use dss allocation precedence for huge allocations as well as small/large allocations. * Testsuite fixes - Drop jemalloc-fix-backtracing.patch, merged upstream.- Enable profiling - Add jemalloc-fix-backtracing.patch to fix profiling tests on x86 (the failures were triggered due to profiling support.)- Update to version 3.5.1 * Fix junk filling for mremap(2)-based huge reallocation. * Unit test fixes - Remove jemalloc-fix-32bit-tests.patch, fixed upstream.- Add jemalloc-fix-32bit-tests.patch to fix test failures on i586- Update to version 3.5.0 * Add the *allocx() API, which is a successor to the experimental *allocm() API. The *allocx() functions are slightly simpler to use because they have fewer parameters, they directly return the results of primary interest, and mallocx()/rallocx() avoid the strict aliasing pitfall that allocm()/rallocx() share with posix_memalign(). Note that *allocm() is slated for removal in the next non-bugfix release. * Add support for LinuxThreads. * Unless heap profiling is enabled, disable floating point code and don't link with libm. This, in combination with e.g. EXTRA_CFLAGS=-mno-sse on x64 systems, makes it possible to completely disable floating point register use. Some versions of glibc neglect to save/restore caller-saved floating point registers during dynamic lazy symbol loading, and the symbol loading code uses whatever malloc the application happens to have linked/loaded with, the result being potential floating point register corruption. * Report ENOMEM rather than EINVAL if an OOM occurs during heap profiling backtrace creation in imemalign(). This bug impacted posix_memalign() and aligned_alloc(). * Fix a file descriptor leak in a prof_dump_maps() error path. * Fix prof_dump() to close the dump file descriptor for all relevant error paths. * Fix rallocm() to use the arena specified by the ALLOCM_ARENA(s) flag for allocation, not just deallocation. * Fix a data race for large allocation stats counters. * Fix a potential infinite loop during thread exit. This bug occurred on Solaris, and could affect other platforms with similar pthreads TSD implementations. * Don't junk-fill reallocations unless usable size changes. This fixes a violation of the *allocx()/*allocm() semantics. * Fix growing large reallocation to junk fill new space. * Fix huge deallocation to junk fill when munmap is disabled. * Change the default private namespace prefix from empty to je_, and change - -with-private-namespace-prefix so that it prepends an additional prefix rather than replacing je_. This reduces the likelihood of applications which statically link jemalloc experiencing symbol name collisions. * Add missing private namespace mangling (relevant when - -with-private-namespace is specified). * Add and use JEMALLOC_INLINE_C so that static inline functions are marked as static even for debug builds. * Add a missing mutex unlock in a malloc_init_hard() error path. In practice this error path is never executed. * Fix numerous bugs in malloc_strotumax() error handling/reporting. These bugs had no impact except for malformed inputs. * Fix numerous bugs in malloc_snprintf(). These bugs were not exercised by existing calls, so they had no impact.- Update to version 3.4.1 * Fix a race in the "arenas.extend" mallctl that could cause memory corruption of internal data structures and subsequent crashes. * Fix Valgrind integration flaws that caused Valgrind warnings about reads of uninitialized memory in: + arena chunk headers + internal zero-initialized data structures * Preserve errno during the first allocation. A readlink(2) call during initialization fails unless /etc/malloc.conf exists, so errno was typically set during the first allocation prior to this fix. * Fix compilation warnings reported by gcc 4.8.1- Rename pprof to pprof-jemalloc to prevent conflict with gperftools- Update to version 3.4.0 * Support for aarch64 * Fix race-triggered deadlocks in chunk_record()- Update to version 3.3.1 * Fix a locking order bug that could cause deadlock during fork if heap profiling were enabled. * Fix a chunk recycling bug that could cause the allocator to lose track of whether a chunk was zeroed. * Fix TLS-related memory corruption that could occur during thread exit if the thread never allocated memory. Only the quarantine and prof facilities were susceptible. * Internal reallocation of the quarantined object array leaked the old array. * Reallocation failure for internal reallocation of the quarantined object array (very unlikely) resulted in memory corruption. * Fix Valgrind integration to annotate all internally allocated memory in a way that keeps Valgrind happy about internal data structure access. * Fix building for s390 systems. - Implement %check- Update to version 3.3.0 * Add clipping support to lg_chunk option processing. * Add the --enable-ivsalloc option. * Add the --without-export option. * Add the --disable-zone-allocator option. * Fix "arenas.extend" mallctl to output the number of arenas. * Fix chunk_recycyle() to unconditionally inform Valgrind that returned memory is undefined. * Fix build break on FreeBSD related to alloca.h.- Update to new upstream release 3.2.0 * Fix deadlock in the "arenas.purge" mallctl. - Update to new upstream release 3.1.0 * Auto-detect whether running inside Valgrind, thus removing the need to manually specify MALLOC_CONF=valgrind:true. * Disable tcache by default if running inside Valgrind, in order to avoid making unallocated objects appear reachable to Valgrind. * Fix heap profiling crash if sampled object is freed via realloc(p, 0).- Update to new upstream release 3.0.0 * Implement Valgrind support, redzones, and quarantine. * Add support for additional architectures: MIPS, SH4, Tilera * Add nallocm(), which rounds a request size up to the nearest size class without actually allocating. * Implement aligned_alloc() * Add the "thread.tcache.enabled" and "opt.prof_final" mallctls. * Update pprof (from gperftools 2.0). * (For more, see the ChangeLog file in this RPM package.)- Add a patch to generate jemalloc.sh during configure- Initial package (version 2.2.3) for build.opensuse.orgsheep10 15272732965.0.1-1.255.0.1-1.25jemalloc-configjemalloc.shjeprofjemallocjemalloc.htmljemalloc.3.gz/usr/bin//usr/share/doc/packages//usr/share/doc/packages/jemalloc//usr/share/man/man3/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.suse.de/SUSE:SLE-15:GA/standard/b7bcf75f5b5bc9c4adf312e39711c545-jemalloccpioxz5x86_64-suse-linuxPOSIX shell script, ASCII text executable, with very long linesPOSIX shell script, ASCII text executablePerl script text executabledirectoryXML 1.0 document, UTF-8 Unicode text, with very long linesC source, ASCII text, with very long lines (gzip compressed data, max compression, from Unix)RRR}//r*J&Outf-800b7f5cac3cdc8e49e6701b288faa7d43ca8ab814cf5395422c233632a4e84ad? 7zXZ !t/q] crv9ui:{Yy z  ΀}vJήyqju2!ZǁwRH3]`"zmHCS#Rq=@Jo;B YtW I|+P~ېͮ`cu\]W^Jlwjvxز5.2Ѥ;ߛ^5}$n/LTϥPԵTtkz]g~ C~GBWӸdXg0 CU5̌8@G2ma;m6o7ަ&l; cyHDNYl& ƇenzG\foU_X+i'2~ttϰ?BOrO5( VPUލ_]}0iFSpۻг÷IKT{Fv;c}5И~QDOwOIx% %<͇LTO3SV#X؈Ke[&7)OӦ5!}vX0@`L:wP-]Jf_6p?R-z[ 9&Rh5 n4;UY 8|ՖbAԢbP@`>6_$v9XSJB4u Ъ9W)=vh ^5}+U>-5S >1#*嬍6n&5{kk8^a^+76NY^2J8D"(B_ڊ kV =|oKX vc_>v;u,D'Ҷ뷨I@֥G6U@>u\?rk\w~IaB>VdLF,b#z?m]ƖEJ%e!V\POXI},BzZԧ |3`"B2P1'+PÇy.¶ncX^Ve^ !/gÇt0Ҙb1/HٷwC:$x1wiTPI-U >N 瘛ڸ!zjpS ba=FzGkߑ~:JIh٨=G*CdREy6֋$7KL͕_=?CK,CMFT$X%Zc6"P3mi2\/mp#)ȅ?~*$ /kKSVI {H,̯VJIs5!wÏgzM51w?*(J귓07?04p rT˞7}# \&qHQR/T!YpEW!(AP : gX3IrS=f R3Khau&F7(rK##9x|S[g*%՟>aX[.ΒQC+s nǏ5-CTfHiN.`UDd!{Gh,{ԯ{09&`\C(3V}@Z3!3PQh}sAGt dPbX"-d(!漇(jBh5"䢘glo/f &t> -mR2r.D_I \XAu++S 7:/7x`K79:mN ݰCM`,!2=7< g%q3ey8̋K9˅3&.VK}/& ~b~ *LeBjN Q9?{%I_Is }?>Ȟ{>v,Ublhe+@cN6 (ͷ _%$fQR,? \{XÇ񳱔FCQ9f,p謝}SDe|Kih(TxuU,7-ǬyVvOz=H]Bl':`67fG~D{eA8*893lqn u` s do;uu4ءtRj9.30* 537X Q1 hHG1F&JW R3 FVCm /eI8ށUoW'R>(Ԓ1:)*G.^~p1Mѡ_7OfaXɊ,KRy;Ø=FMW ďݒt4UԉH7Cƞhk7W Nw2mjzo}-J8Tq58Kzr6J0~zn&EYKq%A$<Iݞ$r.O>/EEq!{˱jyN4KH.RGv$:@ v$NAmS0\ bb&׍>ED[w\ ևҸ͸%s^s$sp.v@~/_@t4h,ϾFRѡ&*lURĸjz|W& i6?$ Edk3 2p%F)/Q嚴[Ī%t M2pi⼿ !c{r}' /<<ML͛D~8.yQz8.V&8ڪ<+Q86 HC3cvfmnjb;Bf3&_HƿMs n?{ PsxҮ|yzq9mg+n Q(m08ԾiWjho2sË:5ʗ?6h2W[` )Վ}Sp!4l,\<wZ$a2"[,' >Emb$^ sӐ0xXUT H.9YEH~> yYIQ&-CVO9'IM%MS1+E(lY`X%_46p>R{b>/FC[l~C&81=Ka؅'hO<v=5 ߊ@ZVJ2ʲٜ . r]he=rr8UuV> pKSVE${r WJ$BwN{wTlsz)fJS-c |P"ۘVsZad U? M$֢OH$.L'A_gK5^HquFD}L Ͳ#H(؈a֦WSc$&&>H⛦WBHMg)yw|+/iZ<%Yri#p(8M~uFm\w=_l\:AjLԈ]Vuw?7VgdEc 0deI]*}\ )c!CS| :;Cԉ9Ѝ< ߲&Z, ?AFYCj`w%˫޺*f~}T=EPSHh 5Ģu/:JYMZH'Bڽ&G*7~ޟHE6*B9Ojx$M %")L @Er:*XuK@gP@>UKsj?!.e9:$ꭧJd(AmՏy&뜇=+=WG+vՍMjRaO* ?tI(& Z+"$6oN{ڛwLBO) q$jӃ) ]>M"EJ1_"WE՜>~@KIn>S^$~O[K &δjQ6*p]7WHvNy *Q w,ܬ#g|Eb7Mq,xg%%g_@^Z *s%Y|xk 9F_qDHhA$h{-kgl=%#?RVy>c{9!|"Vx2vfQP r7Fq31bGZGT^[kʚ0"׉s`A>2W$a `lR/?ݞP¤N<h\Rq:)spd@7%G͡EMzM #6Chkj(1ggpub"epH+ކ<D$2A{{)hݟ#,:e=Cx'-"ʵ&DǕc ;"qH"pysBSȺZb^`^xk۱ qCZ/ ޶[M|RJ' =Y} K]6 S.ڜsʧiv= #O{?g;vNQ'R%6oAC̔V(mv7wXܴ cEc˦v(@҇v0Q;1*2R<bT K2 v-!, jh_pT@YuBw}<كҿ:C'jénHgw)/-yFgkHm_qS)O8Su+J/;p9Dr {`XՁӓY,և7ntTnPFxRě|W:fdv,G"R|K绕2Ǜ!vਖ਼7S1M0KDr{]^Ӽ =$bK Mg@o"WVBX+Ϳ}wεYp&7b93F$6ҺMy VjbvfM:ʾ!Uṡnkˈi^YO'֣&֋pfXxE<o }d/`Jכ>"]wT Qgɪ-ie$xpM˿Ⱦ2#^K;)Ę'\NݩxfU=ALM,-@$ԅ'bČ"^PWu/Hn8aIt"xVN8EkaY8FYk-@vVCNT4Iv 4/-{'ӱl"t7qHC ɏ|J ?.^I4ewqf+kGJΩY_Qg+J623LˉO(cWv<0E2JmCocQW^hzQ9fSXtv?0\f.\I9M#lcex㯆z2 '-;6-W@DZ+_U*dygEL:9b.ic'KDV0km0"a,Q$+]lR[;E{XҨ*Sa3QV ɴ%-$:zH/~QV7PRX!ߔ}~g 򇠈aP\=ػO1Uf@6JÔ~ValuuqSJQ2,e~5٦sS[<<۴,>r: H.w+۩YXШ2M֠ ,6 x6>ZzijFGBLAFt#p4a:y Y \yŹD)5[RSPrU ^< ams*b$7$Eva]Na5l]`gs@G|}*b'UI4?K#.((M;[KI+z!3/Yf(aMK 16-?8i(F6{6"^\M8uO:vebLkdu1bi?p¸5bg1.~bW kDH2OBF'Yi!v1 ฝ2{csZw Fen`|ٽjվLjS$v30&pu $IS oWh%q1YQ?i\4tO(q<b |X|Lxsaڢ( =QӸT?n~xlҠHDL c_: ofGmF%7 `5: p618xs\Ic+ p+\U4eVpB@(KIȺ *EhwMP&a0iy2"6KstLr ]/>}V"!Uw[tGN vPR$jw\?1Fv>Nq2VnY\;YIeUPR3&t?wcK o}X+hR  0杗/q jmcuy*HP'\FZ;Ȫ%Y32A>)Ia%ɃPDm^%@>ZSliW$.O!bE_*Cw]itH$zgm" HGҹ!o|F_!UO( .gCs!V_оbEc+f[#h!om \dH[>|$H.!18ȼHގFaIfG.%I2}\7d/>\( &˝R忶 H۪ET.MͨM>KQUhρzwKۭCdپ>Lt5 Vhnׇ(kzV?VsѴ[1cvcGBX@PإzrkWN12 RyT&iIY0[Awx^wi[y[ac/PO{?J&^ }ptь(p`1k% ȥrC>H}jU4o郏2%Ӡ دY+dRô'0re!UZK'|E;"bˑd' |}1Fj: U>A_nNJ~~n2NL)vDۯ:H?q|r޶Ir'82KPe0Y# ĽRM#Q9h+Y5Ԝ\Q0,gSl,HfO5x :WiZulL"eX2zq+M~1{iaNOp*J1.ͭp AdRm= nm }W:l( Yz^^)Ô/C9]x,ƻQNqڏ; QagpM%d3UK<d!E;|t' (%p-bMͲ1xp**oJrvtF tE~ƸU=v9m ?Maf @LւVgR)"K "&ؔa1vH.WeD Mr|(dT3i?lM rNuN15S{i'99@t+@:}o Q ˮg;1x{coIލ=h[\hN(hFCPmF MCT;z|L`/Qd.]ݐ{sS1 K R(év7?z7fŬz?Nt=%vPobco*edO B%&:z澽p/9_pj::VUkQ> cRc-3ooG:=1S ܚM0NG6@bёx^EhI[֪;RGaK]!% Pΰ}R%F<ޓSd c](CRW(2/tU iT0^ }K uq4^$h8E'X*,!]Kfu3i;Pk&Ѽ0KXB0On+ ݂nnoG^jνnUz: -R%#EybbJ9Ңv ^v3pvsbv}/"P׀SnqbQ6G+[OyVPnOͅl([.?Nq䲠w{A5Oe\vc̕z"= p؉֊u.2y16*]=ipyUp^Cї^לbͺ=C=g{i͠-2+Cc#rF8!9#1 -/A$ޞVF+ 7؈ ϫ"ªn=:exN'}E I v^k,0TuÐBzs9D7  f0 )gN}B6P6cM늓c)j?V0(u.PH2S©!:Z.I>i"Rz[0_IR[`ۍ.B5*Ĩ8ȠQX@Wgt-vȀ¹K\&JK^7Y앣z;㟻4,-YPp6`2̉ ' B_1) T@}u<{yeyPKN:g( cNS_0D|%܉TRqQ! =6is>ׅGQ}~gðM-ms/x`m3\CU/Z7p<FB.'="BxrCygϢr!#J@WpG{`ܿ<%BJB48vj&昄bT!~wFֲ(-8صڃ2o*h9)]eOMd46[qڦA6 ڔLH)V}MpPe3.WY:w~dx"LCCqRz0(Dz"rɥ&aDQB e{TH2YU9w&EX!W䳟H73=CXM+]3; E@ a8%~O]{˅r֘~#WDwZPZ )}TxێLt{q|/8*>?4u4ڋ ܘb:{&xgDwrWZ,X"ބ5Iotmi-o)>'.3qtY]|>d?66Xq@wrxBz;ȭi7Ո>0ZQ P gˇ׾WkpoeM+{NcXr4aIn ]<6 dl .ɬ(A`;E)i)j)&ӟ뭵Uy$ ᤪ4|; Ύ߳:WUƋJ ]a!÷?`F@ܕ3D2DpDQ0 錀(G!v - X>rc( Z1gs,Zh,W@=L; S6IqDuMnV,:?'N2ӥHVxZ^ΤNOai#pe(7}*IDZyCT%Z.0A@}(AώT5%դ~鸒SjɎH>۴) @5¥"JU t"x ٍRnԷ Æ QЊ)&pxu?ssOL˖]^OS ťGi&~8x9 #eu>>AK+8\^aPKXϦ@Ψ /<{v$6ܽv -3]ѢN50jN-6C +"fl}vD6J[z'[g%´mޘ㦗Ѐ\NޫX`hϷL<)TAn98@Vbڃ)/fs: :MoI>!" puthî!:8ՍڔVwd= dI3@}U=ό8r;ƵؐH6wVf,sR;Ht HXɦI% ǃ^m  (/ϭOK^˨j) 1[XW)%"rMez)@ޔZJU gY&<άm1q C ?2KxVT?~ViF^jp=f8W=>(8٠8hOAK.t)?pFo:hT|BSfkh=&2AC/E`u"]f{g[;vǗFZN}TGg&쵘U%+EDʞ>y:=n{JFk#0PΊpk$d<̺%zx8!3=5J2_~S.M}P=ň׼%o(6uU[>ŏǔ$w矚^kᢎLZI.9owɅ3eyf#DsGSHWBAezz87 b0 CwK8}*՟P?=T|̹_KS]] 鄴'CFd}i|QuF\_nƚEqWƹKbny1艹F`m᳗ 9(EJ$X"Ggćn؟{4wA n zv\#B?wh.ڹXXuBX$JGGi#1<4&Jݣi˳D`4 ń:5]BǸF 9R˲GcI/k;I;_9+r|Nl!J&t#6XK1])]:STF(iZJ+_M|;'z#uNJr=T ;G9Mө%MY+jT\HZ((GvD,u fKzߢ\ڴ`  .i{ɔC#wE%_0wN R8Z#/s-MRG]Aχ &!fM8G=9[~Fp>ؔ,'Oym5c ‘?ZhIۨ*.4xKw737"K38L\.˜_tI\/5]QAL*m lY $Y:*S[38nn{0 t;=uOʙVZ[_䙚"zI' ?'O'K sj#YjLML'6 ڱu_alMX`1Q8#_ 9}hfz@ /yLa3Tc~#*WjUi'p/ӷCϴ"55=R%?pH2ZOlfe4\]r7Ԧ-]&혴{i D@0p(TubqLlirwLdt3NdBao 1Rg5ĘUg* 9p zoNU4DC=.B-7ؾ[m8R[!mT?(S3 ~c> ;f0PY@Ԍ5>YMrAf6[}?'U$:EF*]՞"A(L!핰jn"lyj{  ܐ3r@N:5[Ki$*O=(L1>st~Kh?A$.q62SCl%J-5/=JW#nSD,ΔSw$m*M| 蘷~/ׂj)8P ny#2HM24/Zk8zW(]<|G>:_ j3eZŵǸ~%WPLSA82ܹtfScJ3Xn|h"lb#9HI#f9[T az+± -OO $֍kܖeH6)pM>#J$%rE0 ^Dz$P>e. %ڡW}0=J_H d5AXZ.2` P%N|m$݆(' i~ڲ):٫6n\Q~,4@wНFWWS )k-ɯHΐ7c)dSA1 0 tOy妰^j$5 o;]sVe "k=B`R!9mScW0Djm;TO n4X;Ncؼ^4 Q:ҭ0q\P*|e'n?F-- k,V8/D,b,wTŸvXJL4O?1IVtotŬjf2̨$o]]E Z$^@oj>u"jaq P[R[i\EtXIVΠYIe;XiWۙp`MVUG^q`\ &c[hkifu)[(41t, 8ރDW{4d|;m!?ĄVۘE>yJ.CHhQ=D۶w t zTy'( 61+0pWIU,x>)6FeM7SF;Eq0^g{%F^ǙMx؞M](j}XL"KIH͸Qjy\Q/;lx?y*w,rkBn6&SVtK`yhS\|3'}?;W56OqsbS Jmh@T +HaYUO#1 m$q?o QU*Rqm m\b^h?n,8G`uV߾>ăIUv/9?#_o&ytB Ì$p&և( `7( &S2je|8C*@<&%HmPUIsb@dn5 >qͿ@=2xAϮDid~~E՘ˮ O너 plFd9 ֋U={E󵆻t=$둦Qtk+I1Z*UEs p4RS_C`D;ߘD5!4u>ߨ#:2]QF_˰ߧ)0 T[:i`,X 뫯,}αL~ŊOQ" A0D#ߍoQ\V_tb!?r*!ouZlVW-2e!$i "v+/Hxռ%v7?Iuۗ l3/ "Z106>{m`bqY^4 DC!Hŕ@#L$XCQRtpϑ5Msi,Ps Y?\f ]{Ro}͚'o~M$6E:i{Kv*fa\FŠb-2eڧkMpp~IW!"}WG \1.ǓtT5Uy@>FOqQvFS,sڊBB*k5[L}IɆIɐ L\!i#=>S-S&hKW$%qi>}? tDٙ!5fb1]e}{0Q-`d( 2 bocK.Rp-pτ:*˃{68*[)ӻKVt>mE܋}k <;<xI݉n ېVZ -*,y6JXۯEM?R*à,}QD~&v,P^ӝ R}:|k_yO6|dYF;BkQuZy0WpWwg1C79uf7F]T:J͌saEĮuRmPmqS/^if:-'_/D/` !* .AUl kaSlZ^ycbip*eR>ozӖ49ۯm?uOԡ&Ԧ(U𓆸a+KOXm(#h~{ɬ1k * ̫ x" 7Akzۓ'Rv#9$!`'L dnzx8$ulO62W>20BG/ʈ,݂P+4a(K0ibp[zQgpA Od9>@0 L:5ҷSa )(oqR7p,\$G>p63@w˹Z? LhO}=G}E$c`#d+_FiI]_g7P[_8=nr^omIs+[HOt(1$u RP0Kk^bj+-\]Br"/m[d(E)z Ԁ6{.U;zLB0*kN=+IWYwD)b:2ms|> O,u8e?qך 5%M_ X3yqfhyUW(m>ͽH.L jHr07o|jQz`bt5q9vTq4bx\92'K][g-qfFC[ORvw يq6&N[cNePM ?;}> 93a84(ZM_ܨ׾x[avhFM" ;M^ꕚT, A: [=#SwCӤɚ193L +`[(ӇZiĉ9&G Y ABrO*Vzym]4>LH5'۸l[P̾b 3֤.UCrNFrU%JǍB˥RmGC5DW9LR9LOg~g1vӃwx͠ƤF`6vF8&̳gOyD5wS`IHUk ˑg'L}ipQOB+z c? =CY8毉8[Ǫ|]Lmic{R+){LDoQg FK 簤B7Zץ8X۾PwZqM;8|Qiz CRI@55EԖ~l)^jdyܻ'—bca;UO]S\j>&,ˠw^=w<} s"AKQqx'9Ⱥ6:շR _`SaA./yX}h<2(|:]MAKhy]es hqhj7zy?$'; 4nG7M IJo ³z&KmQU3fGWt1M0kjd|Y =|Z|ErEP.VT d9pw"qg2Y)V /8d Q1k$M^ rfF_%iq6 _* ʜN=n[MCrjc'4W7Kx7%Qϻmua c!BLo$uc37tD?s/檯AP.ͤz0NnvW \O rvC'i6hTӹUqlkzPjǛBhZv{90̗|‘gYB?>c? vaLҹD |p(VaiWߒaw[UNtrZf a`#jKsk?#dM~U.x:ibDV,_ MoO x2G>w:+~8ȘAx!|rO&[h37ݤxI >, h9=Bx[]x| ؉zfj@ D]qv3 Rjn2#~e`jYR֌`!|>dAIM2%q=ۇq~{~1jk& T$X4b6Q{n;P̈j- o}'΀*6$Y>2 NXp^7S,Q`x"f2qQ3p3\B -A tsJMui!AgiHj+ڮ7ROFYw:I1_(SW `&oŵmD7Yv=wQX=gFZz]ɤ@4u_Q5Fҩ*S@TʘC^cǽ?.94k_X:tc"mIfvϙke(#L 2h(e#93Hu=\ ^>iz5pA hv#RV&=B<<ݠ^)^3qsW^y* '>9)lSt#U/N0zԩ>8چθUi% KS:%+s2rH `_JIdyO-VrsB/6IgCQMr ]{8VG()9uG J1m1cz #)Q$ r ûRhׄ+ћ~w?HB^+ch-GϮ}^hn#f?hh~m655d's \qh0e @ )+EVF@QY9a>Jp{sN9Aq^&zf69RO>^[9rJu+ =, U Ҩg,jUJcO'w<) Wv"\JDzVGh/Fr|P +Haz5vCu*if>,&A#QM&, "f,lxڄwϏhtcz5N4Q,]ְͮC@obԃjG %[+#]~jw{W-nNWdF\cZ䊆`!v7˶[& Fuwz.-2VdDmÿH?#U[.in\܏|Vn HVy6|ȟpv13&n8Pvgw."ET,`d8=,M1uk,8\ǡCG,] ?}#r26T_4ٙ |I"{IXScS[_bHcҝsK[s밚\L$HRs"FЌIHexEx)=IrV,@*n}, Upܼ34W['1_ޞR^Z,Yh~rQjJ3e~=Q4M @$%h_o/''v`> 0ZQ_4\2*x"(6@;v[UwaT>RT+ Ռ;w(5* ڂteOVԅ&6Cufĝ1qO8h\;\$ L`-j9_>JdUKD.HaסҒ$:*S 4 Yx.e\M[_dXW—A4eΪJ6+R2\;{G% :4,Pg9b=#ETy s۾cހQW |GlHJĤoXOO:{AdwF2Nwl'P- W6f~RI.l.Wب1E@+&H %n(s 0nJdtnvH( ',6rW #3OXYN+xfX6~p5jZR̦7%dEoRd/A bK:޷`,> LFxm~\I(aQ: NrApI4vscS~?lLHt԰2đLBi͘YWpT?޳Ҧ1]yչ/NCه" ߽*7m E۞{sO7;a{ dWm_Ei*|tp>#x ժeħ[`hJDxXLbic}}6~ӪKc FٮzOG⠕#\0-mG"SDL~ {pH +RNj2ǂ'LjEգxbO`ʯ]no+yJAlU1D/7!=pX.H~%@q ~49@;jJé3uWInLHu [\=t`VIB2Rzdr9^-3~Aujg%BW9ܕ/)xM$sr.S7-a@ "%DvM"z5-bIlMC zXaӎi[Gk/Nr49Xߺ[\W<Eii4wtJ4f2YbGl^~ 0Y[fS XvXdV OnR:&Ї8_M(:LEȾ8֕BYz_;`7  xHsecY'cjxZQZFA{2mIGJ|{_fD[eFC->VV|b$KsPpB3%bW |;M+19EJm,NObng /,NJ3s /w(}3yF724Ƹ9@O'BJH:Hl1=Qs!Q>OQ wOt wVl]B]) !"+m/3QHB(KY9#B[\;61 |vx=j/s q|ẢpϪT3vuNW؝Ch}`hCF K Ea@VIv^ lŸGo}P/Q @ jfS&&K rr$h6k=_Uo('nZ|*B]~$!|ܴHi:%O>@&^[![M;+/~p`mш%sp4F iVӤi΁㎏dc孑sGCwBȡ0xa?-%p(?,,))F8lޱ7Y ‡EuQLB෋Qwjnx4޻NM: $Y3&F x͛oZ|3"sC A)4nfEK6y&! 2'|v QIlQeGWIke>!ʏ,4̿m:}"!; M1bٌ)ߜv[nqT_głFR{NӬ*pW87W E5 -Q,&q2qts/ 올/j]3baXKc9ζCl5ꓔ߳]ixCg~;@xd-#( zƦ MB"bcZL OWuo@f'iWǠ=$+VBNdJ㩞VտKX#S Ɯ O `@%^̥]DBsV%],mŪ!KG; 0dlNb-]`Z(oF:~ ] UR(-fDʭLЃji/w`}%`'ζFt'sOpK?7t?B Uf$.ņknh8df]{Q$ΙM!Y$XuW Kn>TarDki3#$"팙X1AOOr*M'Tgbup6/DFڗw)ͭ'Vg TQ(~"H|˙f 7KɝxQN畳Gaܜ(6[NBeئiLWdf1ΡM$|…F3F<fUVyXZGs}4d6@:Zp^$KvLTy'۔h3yWY"Bi|>ƀCRȎd҇)'.&4L/m`2ƞ鮁tiܪiE3~&Xn?)o)sOԇJ.7^N\,t[ ; j&"ɀ1./"{i sՖ󾗲ުexEBvDSyh?YR"Ss0R# =>ݚ:ךf)j]m7@_ K yY.$_}O4|nmQ{T#Ą:GX JУ QiiV,{}Cn_W 7iFUֈJWHGT&3#܅c ޒ~ІK@s:BW9mIhR85O%49mI(=|o!޹|<6>uT2h;@F_\@Ǭӓkϒ3"i Wliȟٓ W/rs_PQTI> JwBQQu'vu M]w+-|2%ѣtCώXHsPr)m{$(~89x]SWnXn0c>YA%C+NhQՂ[ 9ɘoQTr"^) dԲra+BoK5-I?BtFeeoDn+#gW<=2L )H$?gǟāK̉]u[a$4%`OotJ(>wz|K~S"8.GveR79C9r:4b?U|$3E״Im[7^dT{f87x~uO饪IfwI] ,r$q%vtN3{ 'Uί)}qR=ϻS<86U`\NY~->&Ez%gȘu/$O#(8"Y$ x@_ȻJp{G4sm1|}hAC5,<\RϿ &|I0`YD1~YGxK5QC/]>`9]F5y6+nLڴ+ i%2>s!/4kCWAFJ1i>̦h3t3q6䋲{Cg#+=9C.v7@gOԋuwUcG,hgۅfo{i_LS n߄;j|exk엣l[[]Ld1?i>wdnain?7q4yhV3UX Q*1TX0cω_(V OSo~VјfQw̸mEǀͤDe1:pV_dqN5B`Wm8=N!fGnYZә2qLY@ޞ.[uz]eW@:DPU2ҟtup{G(g.lUo$\9r;JWm:[ٰ&h=Ntn@I )SX'ǵOǿOcbuDlrOW7G<_z m:κӢMtkefۿ[Xe-r?[3kx[H 'JꞦ3w.9tz5 u6m LRt!%/(z)t祈mƮY̨)1}Gi)(@+wӎ\sRhFKp}"HO|,ˎ\FLvncoa_U-iP&`J_bEp`xq۲ޙY}N`ߡc:.Z6%Dz]pzV߹+/W ?k)wiZ;]7S Win ?ߔ(rU'5' wӈǛ|)D/fAeYH*#bk%K)vLȐEyG\A{F?sS EJ5|Oڡe`fcɹ}:2|"|NCj,_XiFaߒ7ȝ{R]=֎0:>#? sV%/! [zMJdO  Xy` ی,T<vWF*MifWc`gf,:+ͷdPXм` ʊrEyuž>I,5tZ९RRpKگ1clkDAhJZxbvs%{;j 9N)5EeFds3!I/@yM˄&ŝ })00v{q=20bN[/_w>,7#a: n=Q*QB6$mKulǛ.l^l4q[1%9Ď["èh5D5,ulybs'Hh.,ߺ)BdexV\c-i1Z3R;l?1A# J1Gi4a~z`Dx^hXtޣC D 7J g FpOEOnu]pd~rYPރPܱ M+R;n 5}^gt|-Ñ8ikX_LԣU LརjG!O{̛f|;V|o§}@ ) Av~Z?`R7W4H,.>tZ5L}m'H)Z {tI&3u:άD; aиK)[_varjf;"# &fh=fE V H%LK-ח`huc@Yĕ8RζWˀpLS}w.eTuAIG{667c#PÝ'!'}W>gH L+gxg_EĬb? hW8jdΌ1 m}Fogac$$;#uᢁy.{_k<ɻt{f_]Nfv9~.{qt{f{*ʉcrI4T`vp m{NO1"2oȰv# I7|Z/]Qz 7ﬗC0EV+Xovn7NڿKd/ʀJW·5B~t+3Q"<~n5c%˰)G۰~34=P ̎48㻧԰h85_H 0A^ܻݩRٜ\5ܪTn<iᛲg<|;Qxfl]j2W't@E?f:kLL6U)Nq]t ,hA *VđuSy-\`hS҃ 6! A`L78OO#R0 2DC<>}Vxb6o~jVuCzdWtC} VvZSzc9Kv%yBG6Z Ɯgr~SwQ#؊W?ާd|!@/LHkDujFܣSӄW֥ a$!sNx&ˡMVQr:< i v`uU hQ4X|Ƚd*1Yw] hm;{wwR+vrsTv#VY6>n::hS Z٦,,vLq lr;{+pB焣Oz.d :70-(Q64|wΎMxx.n^6׻Z6RSPxEJn0NS1W~Ųdsw)B<6 '} պ_?̊8wzJ7uE}(C:^bÐnӆ( i,f(Dixvu|:+nS/Q{2T[(ot!hȡn}*Z~f [02Z1Ps!Fܖ@?1 <ѭH=aQsxΥ(/_aҏG5Ԟ@=m/w7ߎx|;*캳#b^#Ӓc'x9Pig;:9@ ^A,uȁ"[xn78Hu^}&f m \Xm H-azc"C/f 2gy <-swЭ;)]zV4tᆵD!id;Õ;2{*!|$J#`66)(c ~ Yr ]og} ģҁ}w͢~0_d밂PB6ZVgmhTWH5^N=@ %ꉎ[na-뀔ĵN儉^9˾cs:i`r]i X-q7Otjg?3vvb E)Y閨c>+Y/m֠235@%ۤUsZϑXU8Dlaݓɣrd6mb+JhAQ:+OF0'u$D١wlV, 2hY݈6fTH5@id)ǡu"Ŏç<cɍK?jr6t, @j g=?E:Yo&.iҜиF}foR$^ƍ]i4!cfغI VEJc4H)-DLJI@nm)A93Q<4?0F&KS#=ODޗM D魤ߑ6M: p-UA\OȆD!V*@­ry;ٺQfxI?c: #ꡕ+ݼڙ5(U-\IzfdON8,RNy*I,NbOHi BuZ5Mɜ'"{O]׏kBzin?o<5Iy2Te#2ZtƓ|{,ŷ)w*wuyqT1z͹m[44笻DN]fC.5L>%Ax ~Qnctkۜc?ҚU1 t_ :K{P \rȯ9$ [`=pT j UmUN߸MIYj5|服e+ ;Ju~'5?}sEaEO?tmIROsևBpfޗ$~^keuq6G."%"Ԃ͘G=9w8Q[7#t,l_Pk}w폲ȱ)OfvQxRh8Yެ\5ș;A ISp<)x)oO"OϢ8fCȸɱ,Ld&ͯUt6 tT wd:qi~8H`@@Ls u8Je20(H /\RYc!sA^tw8JC;a+@=A,T!x68ͼ? ~_ S" Y9QUiʰnB|IJ%\u/c ^PZPN%zbj~H1v d*7ʯp!b˹7r`fbxoSDL;G"La 9&d|>*Qûbd4}:1RxӨd5,$iZI2Thkn!tlq3?l.V-dz&ruSdn#!{ed GN`q\C@!+#+M{[ wh (|YE}4,yo܆A\A{k яO~4BLtlo%;MOD78a֤SVỶtO@۸ע i벧a]ֻ!P;Gqҝ4^P聒)ZUjV8$ٖj<߷]Wf)W?_>vqx3DH?mZf dO$N@b@4ϨLD/<geЌUz):a(o 'gRϏ م\q/4 ݶ ypt(SakQEG<}rDp" RGlUt ^Ne1h[tA:1Tōvj v/1^ &M!XZo7-pO-zLe7Tљ38`nfGk 5ϒGs ȫ-^YQXωrc|xu|HXNvr^[1jbVuz# Ql~S9`?f\p=kV_p.< Gnmp\$.Ř =~0lW( Б|vu_DN[]}޷A< 8gp}X918Qg4c^Όzz jw4Z3"Ӣ( I̞=[ )P6  M! 1WۏС@DN@! sk23Uup_մ5V *̫uh ?@b|g/FFVڬ灦x.Dljt"WRKHcշAJ&TtڜNi$469G YB}QaU C/Vi[T~%UxRZNԘTX\,y y==m-(fxg^tf#)W&A6+CF֛#FÜ0N2i:/i=ZOF;q"[_u'lphT7c$fL.T>d0}D6;HXെ8+;Yi6Y^ӌi15E#J2{UO|'`@Ej* }{yթCCh~\.>xn{0D@ Zry,7+>씭yEt wmy;S?JB\$ȧtEJ30Z HS)SxRHxgBG\ (wK,S(Қ17T R%c%֫鳶C gY C҉-*UFKv$T9X^k%ʐX/D`,nweSC[F`NPǢUVwshĘ,Myݐ5Ov,P~G+W;ъѐQzeգn/)(ZhrU {6HՖLCC*/uP_ !1Z'g&{MH(09)F^twm5aׂIx&}Dn9zq.Mv2`M3DZE qBqo%܏E >P#D{)CIR>cVUq]@e+~ogBko\I"(a3^/,s 1{Gf7f v!N~3Te%rgʭ-NZ#.hOeB7lk,`Ga;,7$bpd2odr.l33> /U \,?&'|^F)QdnڰSN0'<]CNrt>+ĒɄ/2}˙V`Rs^$+vTa+A8+8|~Ju5 LlBk{ʥpJס^O¼QX`A [qa!(Cb'(R (&&fWWtBmEz8' qL Usl '+j[&ό*] @g}|=ю_O>XU:>z1Zo2?1uֶ,E??km@̓.ÏXȶ߿߃T029ӯ ?n/}(Q)_yhywvZ襂Dh=~O3$`eVr1Ǖ| "B"dΉnؔӷ? eۥP '>RT!tاBS6Ƹ&ީf˥Mm^Ƥ,y4[B@idl赻TsD]l@iji\l\n*&l}img}ӌmqL+E= acݙ=WKr0-SV8AP^5&[iqGc vIY5lrZ^Y[#,}8H+? jH(MRc+͒x&۰MN6 ^W'+c@`v4 lX/BT24mǎQ/J^K 1?q2,P~3+ :SHc埯g ǟ_5|9~ ra)un+*3J6\kqGƜH 88#}~1%z4~ucJ$2M;39X>u8zNk>RJ8蔤++&t`\<8`΁RMY HtF!_yj^tkpp慷ZV,Em3|WW|S<?bBԕy {,X;,/}7ҠomrK*r}h݅`@^"0Qe$2:e˜v&5WPtS)^, J=XbT%nըg?7҆8A:sݬLC2=9=䞒Yꆂ@GX Bae/DÕ7AHjZ= 29Z< IXٔk \eM`1ccۥ!lW]y/4xԖnI{|\6*NmJVuWEt5i]Kt^?ܗaу- ] 7oЇa}u+n/dގSR;GxOhTwD@Cn[ԟgX9e-;.M89X/b݅K3ht;o1PgNMk)ieWstaD5 ʩ~VLz}֝~3؛#^Dfܧ K8ZB?`,C-psW`囂WhFHΔc-O;H6>j5DpDTaj*Г惐Xw8;xIS'2銮v=nRngE%Va3 ʈ ĸX昌{W{K0~)3'IhFQ/CD~kΣ/0[_ѹ!D w֣ON!9{UTBs4.\K'&Fssw KGКa *tq*9QI3$/E7c*ȳjNq<ItrTAX:趝vJ9Q󚙹RKӽHGLUKM/@1D=͞[wPLdN 9 :db eު]P]85_nmKƺ~'2,!0N`jDo{7 82R|'ݨ[.w P:J;8)̼7kuy^!78N1 e_v]{1\p艛CZX}IfB9S]o' jI$vM;$zXaeeEEf,H®]n~3! G4e`&mjD:QpVCىM4Dv3J{9WɾJ;3Wʼnzх8/d}vчFBq;g\Kb8o_[0I{(aV$TH3}^3='=e헪.+t*㖠 UD,로xGbROC!ϻa6'82.o1\Y XR#.p*7m]}b#k?EBSСuAC3r62t띘qNTŵ8I":V*wdD*_B5jT|TN1¬G.2Q6kwȇⲥ( rq{w?*Im.r5yܚNK0R yG1Tcv_PgNQ>ֆ/ ͬz‘9]{c1ւ C[{J0YrWkaS2z4hd]'{i4}3Z1rXKYxq"hl𒤇`<fK@L2[N\^)q86v0t `8( ֭࿗,$07-IG#`85OGs899G@qS"0[ n7ju FF PI"= op#9e9vw(b:`WS(J tK d.CǦ(CX,SE}]4c"z:I(2,3Ȟd1 9IpS ufNɠa>Yӷ). Z #ZZ/ʼE2-Q5&[[m5ǹmv+ϯL2Ldj? G2ZZӞd.Lo 59!=UsDX:o4_eawFϺ=5c' д/̢֍JREw%Ǿ:r&D8.bkTݛgn)p XүCt\uQ'S %~d*rަM gmzNPUY}$NM9BےާPg:m1-*^wɪF\ ʱY Y D/=gAܫ79pk 3U& %w$n>( }Pn˧\i8#*O@ #I ˅ :^WYkqkMI?+Ӌٳ;&V+ 6D\n&ܵFy3)afC۩]83ѓUj}HP+ UFXj#8 ¯"djlcx;ڏZ M^C 9_L@q:a\v͟0yFCCm{\߮/Ey} ȬQOĶe;Fn?<سJ{¸_P(Z›c^qqkfe2g Wu < D&5orw7qJW_:RH!#S)@|sDzK|R^}:FrCI\ray<9Ȥ(tXKYw*1c8o"UvYMU)y0ɧ^ubt]cRr>!j ߵMK3 \X#j苋@|F ?,tqJ~EŀڊVb ,Qqkz-H\ŷQ]cTEȩ6?HJtV˟k(pS?:_td䔆 ]툂G-a3{Y5p纊@ (*%P?åO]P:rR\lr dxNܿHgA!yiގݖ`WR;9IWfW=@Tcc ei\Wq<>}Gy|X9Q?{DM;m//چ֤ wN.-OU 7ۄ*M0v'E=z7eY9)QJى $~4+=R$ērYeuV}~ḙJ?Nmi5)oLiO86[ؚ=t!mYAKNVNR % ')k7!) $+YT 1+s[M8Q7ӝ|$kq'MH,8-bmu}ɮzKe{SCmm y9[8t.fй+Q"Yq9NW|ful$EJX ^%&L*Fg&)9fKΞdஆ 9&_n}$Lt(\MÙ9/* b̫yTS#SDd\N,rXp)1!WlJ^tp\| Q2>j%t +0ٶUT![Ԝa*C?Ykeo݁iL !K-2Z[׾ˊL:pĊ&pĽQür?R0t)d(xIR <呗Ks8@땙9q cz#г(y#b45Ӧ\ȨUoϽD7]4 ݡ?LGWAM2WJa"3%k/ezYāɰyR.fhj1HU0c (:bϾoͤFPBjPĔR9;WLS][Kvtj @d" 3dHUah -lYI)A.*MٝGL13=pFL0rHiUXdzs. e :>_;1}#0v/aG̸r).r(DMqc9CG >nͮp}-O]#g2bLS2ks9D9O v׉GZդ!GxrD9qC2Mv]^Lz,GЈ}M[Z6ۗ7# Qr6]0d!fj 'X.JwC5}x8 't-%wfb%]F26*O4t.%+,{N>[eÝt7Xw8JB>wau N\cK쐜?Ov ?z5;/ :2#Gtۓ07% ^-ady29*!m5ُ^2+~ۦo/z=}vk/vEZu M& jr.j1+uxꄻ(E?ABVy~@~D@^?m:.zj& ^a򖑜2Ihۤl]dk ?CdN qw~1/MıOi5It5#M=lźb+=dkcRh8c e;"{V ?ksy*+3i0GӮ4;!';x*KTk)䩩(/Vp]F=dh#Y<!MlJfz9y~dSH5F0a44$0_FpdT< Xti_\FAm]Fx_Uܹ=ǍԛsDz=-VK^5o=U2'1!b'D H!@ b&4r^xpv NYo"Glg;=Gj 5]t)d!ľ`6-E"?Pxxc]6V[/!)e*c)ѕ PBq7K:W+q`1kM'[lK&y>2ly|)z<n hUXa 8jTr8+喇`OØZTBݎL|p/A)Fo sAݭ *>8B{~U//zBm(yӈQC Sʈ߰??a^h@9`В=մc2M||Nc*-VR,fiKVvƓK{MbS{oap??}gC&QTMjẩ J(0DB?eT){ROPDaUƟkaCkJ1v|?d)vԛG|v#2uk= vI\ 434`ЃG<0eBt(*ly{$pq}.`р6P7:sla*TۍRGYVgOr RA3-/m/rbس8h]߲`,$[DtHg'7ō4ۋ2"Q sU`vG)=4ٸ\xB wN$2)=lP!#c>zn jV "@q߈$=u~$PJWYm` Em-nW6:]tCG5;I9$7۲%fA.Ѓ,d eX~$h{Y&;[g%G1FR2 WWK{6*mUY#_N3z0<)^ˁ#$UYdO@[vo-uDqϽ9V͜8;_$>Q,9a!GiA 0o{sJ4ahOl#܄ J'rQוiّ15q ݄+ ^a DޗjA;OsY-w`r%yvA~5iBOXtn }Izcjlk4SOPoAJ?.ȑ-Bct "5MI)5 n,V%U!HvX|5hY.ȳp Jqgx<]pɺESh* /O+`l~Ci [$c@jN*כ<&-xo#'P~_$'o~ձ15W#_\A\?9g^ў-P& cB-mPkumyqxf*'8Ȟ|nN{TJ=ȉNN ,KwCQ u_FCjQry o[ъIFEi$rezRKqe2h(5\ox.bvf 4csV ӏ(/Nsg.FN\B͇8#T᧘Wc`S{~{gs#? k4"Ɣ9l,W"s?ؾվx?L\~qBCo䱂ČZz!㨢x>ڞOÀfMJ FBTkRBKaT4 p_SI$/_ if'i–iЮ:i*"u2ղ'9FJ*#~ywIcTiL= @as!Y{`Tpi4CwLs ;E RTo25e^[hS=PLY֌׆>ū5]__š;qNpXh%BYiR֘Ĉ t&uvcq+{1ӪV&GjX»3q]Kw26 ri ,ͥ׉7uӑd[mOsCo +7U,)q3YAPg0w 3o% b6jr[lQp\Zdf[A>cO…ٻ[ uH ͑bW -WE{-6mZ o@L*<pTWAĜxeP?ag:|xH )lUD dD<ʡENJo"BAJ>Z?>@~($>h'‚60uҔd,D׬ '*\v'gќ۝$Ru@rc`"7#` *Z'j esjr[ ,:H{r@>VCKegT͒[ExJP)n|17Ci?2\q>ggLϚRc6DݔN#5z8NX}e/h"ɗ]wpg b\hQے֓6O*ڙi(W[##Ā]eO DQis]dH@pxk5>s"V똇e$(R;b]r!v5Q&xcޤLP/ RZUqe%e2uEy$ɋk]\;R41`DŸ&Z7UZ}a9 3"` :Obِ%L+#a2d_敿Z`iW|Dg 4/Ƞ&LQ؃? zRmWq!EQ޺?8![|!ˮIQ˜g9mc"X֨QݷzbÓπf+N Ɋބ O~ 18(14)Y٥D:lx *`PGQ"Bzf(>+<3|w{)b:{O4gA'ĂGwu>)#;}4Au3OYV:vCDo$eU贛eKRA =~6T&޿'ޫ.Oy8rDj,|?xqaǽLR֟B'O9L£b[TQ))'/+2.[+W }3h9HF;KmvE[&瑠wϸ-eR`J"_L{^j`Uu3XzK] k\c5oX$.iIMV&r~QdՀcUaI8 i|?D{ybvgm]Qzh:HꓙW1C P,5 ax fBP;vQs {а]ӊoL|dD2`$0W>Qg5Bt04t7iP`<$j\ &~{8%2Ek t{:C)Λy9my$R :ko}~vHSN?W@z!tgj{Gwk;i4,)w*AHĄJ6#:_93(v L㤡'tGwE9,Dܷ4JS˷Ɓ9Wf_8.|L;͕7᭒oyq^4lSnh3-JQ"Ԝ[pah#\xՅHWwS8gxwZu*U"h-y +/q馊[ɲ\U1u&@ߊiUta,,h׺Ţc#{*X`l} q}yQ+i3dJ(X3P&C2zpbrh3 dO5rF׋&t9CDn8f=#Q6%6.1yjj9so^:ÓԒ\+q{ a!d-XcC KG7|Yd fLJZ5yhT | 9yg!e E tWby *\|r7 ,p4]~8 1cm;Løۇs[h Ќ$b-|IVmrhQijk6(ȾJ9oSHqN'LgfPHV|Fu(.J(BI/Dsvv;p|C=ڲf˚cx3Yc?7Zc[)!*IjafZ5[i\kYJpV<[A)/f女fL8, Th J{)> ~w<@94tlu'"s + р kG(5G KE?ưJ>Gc lN,C!$6A zW~.->6!KH|LRx ^wkF̛lK2qw'Yɟ .9I;!))* Ԃ+ mro%Atbq K=VU<@w].x3*C#1MPX?GI0ܬc4ۤ$κIC1om):5Ԋ@MvϾ(lAզQ!zf:jP2IrI/87dvs{4j"fxq14q.s6W#@nP5,Tx\. @,hZM J<9B)=AQLϟq|+Ω3'l]_,CZVn?xlHkN@:3p;aI(ek^$B%HЌC_T?T[WXR!}ێsԭ~L|a_N*9ry"RiYo!#kjp>оE~T> 2pk(ie- ;`oI덄js7֢ۜBdFcn^-3NB} *U Ђh~dۓm ÷ q&Cp's (6Yy F.\0&Apăd BkQ#+ry7z;]ZE>`ݸiZŠ) 'j_ݪg>¸WWBD29 ?Z& ;t-}L rK7.gY-Yu=k ,`DYjWBPxL.R/nFqSuqeչQ64dze^r&82|G8{*;R7|\܎[un@Lc͢|0^M_C`RY- ,טiлA~ꛖDiqGDEmcUP x%kНBaG(< >JpN$kzFGAO2r^h]`xWJшjw/Vvݚ`f;D!{ !-]/% kXAz>;rVϻ&d Bҥc͆%ZvN?|WNK(yϿiOXyp" F̌FrS :ƧavYCţj׌Oorm l39L"BãH**t," 3S Q`)rN_ <3aE"Y$ 6kOm0_lr `50j+z]@J ]RDq=~;UJ1mf9]۽e,!`,{T’E\5r7urƅ(zejy74m RiEQzZxNS))t(+MȨH]FG|C:qO:.u)Mn]2!\+-+$Ŀd]`xQ mYt6_|D[ j7EdHs15IMm$M`4cWBZ]0.vAW$L;7`=b>u?=-)o3ka ˭V&ڞ#jLg? Wk,HKeRZ/:O"d@un+|!M,yB n)wնô,YYW:Nj8> #L~ނ d3HY4!QA+ ݫ>t (w P]4?fOf_B&yAN(6?2[zXESK'w|*L7!!E~l  /bEu:4Oppƿ¢^Lr{r_~᳣xCa`FX z]kĆOؿ!9 T\ffzP!kW$lBϚOΠ7 xG 9L¶s}El\YZDUdȋgqB9np}83XI~K'@&̺K-lj- sֲ9D%Bn^*Ќ6wlY;]P/45;.$R'6o ˂Y[bۃv$</ p]?yg_uRxPW hG9sLRә *#(>Yam/ E_Ӌ}5WMU8HT~J)+m&HKS.cޚZ ڽє`f?&2kQaIJWZedMfdXO4w>izeeů ҉ju3.6Τ3q&%]ojHa(k59I xϧ#sf57'bgy( WL QF_RU_/j  ]"S{ Av3cHLP,cx_~GjV87i|c=A Le7{M_>mz wg,CeC%zIKVkx!2nfoDq5Wׂ2ϝqwA?5IQ 6.bC+ "2 '_J1?B;@Cqd IPH*~Ҕ\ s҈5Ҡdxk[@ a1*B&{?f7^"=hb 4a8SM!#|쮀Q{vh2@/2I&TC+$84x4 OвF6GK-514UC3Jx;O|;x}t,2[V@cqA ~.г8n;FlN,y f^-(ݮ0_$Z޽}̸OM2+ʢ%Қ>P&h*iAC<,u0]i=uF="+x{\Oы䒗6rǪAdlX.!VE,E7\檫FXqnNNDR]lX'M ~.s@ j DZ6%4LNJwTP>fnnkMf3CV%LGR`+97 6׈ E(up ؟,#j?jm>OaZi (9FJO -'WZ3ֺƚ+ZכH9㟩rL0LjJ2W:Q+/+ޅOm;8/P,B|?e0Z.H)j6qT[BΤLkPN?5 ;-uLs+8#خjx㔨+YtҼ'Ԙ{/! DO\iYa'\L?H-, lшoZN.@}7!4S5u\'}xjwav"UHoRȭn` ~"Bflz` Fpqr*_`ҊK V2 *X{ ~dic*|Y{ʵ>X ]#樤 eQX `NoQInz9iep6}u'U-j 0EfHݿ}L"sXh5л2@_8/tOơ6 _XNDb&'lOݾ*܃{S^QLzlLƒœ#5a6Q~ Ԉa3Gzn^$r uBirBUt?#> t)V6pJ[/|XkqPd_ۿJ H-Nt]9%+(h< 4naɜ}͢Ung$ V8yz񆫒ru4Id?V&\ )yH Ϭ{!n#l0>J!?Ƞ+ IG@ ò(vT,HSEqB7Vwi]8lE<D:ڏaz-jOV%BC0&c *`砏(Lm .=%g3^XRLb˒3rr{hz$adž qýh(ފCr;e S@ҥD$9Ԣ~܎#pĆhhٜ=?N]ωSeFONϑ#7`()eV!ecp{p}D]+cd]䠕ӚWEdVAħzW0й+|i҂@ +xVcn+@ZQ(Lz"rkV?ɻ猃rvXڷ!ffׇbBLƵLNn  @HإJXLs&ҳeMצTɯűzK(s*Q򭽷Bևm—p4=_̍|.&/@>]PiC"]`SxdS e%,ڠ6qAbFcU(ޭ+fAy_:_X=<0\~9邏( 4!~yBO|ڂ{2T>nZ"D6cR!p:nCK_!5]L{1mlƙ6Ւ4}m>Y' E\\0F93UXҸ $P SzƵ!K} TFd~,Z.ꢹNvTFdGoC.DcCh/SUB4it~Nƒ}'ӛHDRm~>4hJqrr#P&_~v Q Z8([ Mw3WL"vsr> *}bbEb^Ml7ͥ/(* |N#ܽђ8@E]_xtnGOمV 9Xw$T T$.ߓvcE6Vn ,'ggwdf7E\Lu􄛖U"ÒR/,_FYÆwk5,Ed(L(@M#]ziEh;tz];.Îm_Kx~vf̭R C\,߿YY~Nb.䣪` Z6C%=QWfmqNyCٕHg (y'rrf^daڠkʘR$;s1t{M Ϸ擏kyKPEH'obA[ACudRTjZ'1 Y2R/ /@y`-Ҥ HEǍ;M83ѪLlA!teYVtR{f"N-.PienDx"_44i ^%6( <>p c!+ч=LGPG[#Sp^nQ+0 z$_4oHƮ$w1HW|TmSNdYfN W-y:(G/RdԲ.J?ur+G|A+b9h&r,V(pAswȹ|d0L1@AXQF,1 WX'v2Y @f.pMI豵;?c 'uDYg$*ԭ ܪzO+\l,kk׳N$Z Дm7i4ƪxāM|!Pe8aJQ!xpcsJqeϴ (z26I i"y4N_aヹpgy5pfQ[e%΃DIA5zʲPyvb!%aԧ+-HWt!ʠ}NYh[-qN *djj$ >%z-x%Kc7A3!D T!lϷUUpEʒ],V}`q@n4c5^p9=]0em:ӯ^&n4}M-##LMRvl/0rPW tƉwӟ 83[Qftk@sp)[R$m [jWIU3De6f^Jy`n {y2L(ZAtp9_|Rک"HVЗZ1ϊLu3-Ptqޯ48V3Oq] 7 [ar\G2,2wxY:XǓKȈMrO'X=]؊Ϋe3 _'_ rvt`Y1>.gkT%u#Z4fa=qߍ _ckͦ&Nd.slYHŖMVa0{,w$>( KW{[փr_B{< >HP3V5f E-& :ܡsYQMp?!&BjHVmnH xvT a٭xD^{dyLq]?]W">̅*$9-4*z TVAᖓX*ZM+Bf RH4O~WΟca"}N,y:-} [K˟:8RMjN_HDzP2t{OXQ M6D~䠨{xQDC)W5:DZp<'x=%qܿk-^W32g}/MтQ^sP; jVvMr4<Z4-<8.DE\igv-r-'EscɒhxTVR1 DCx zTݜwccK )vQe0%9yNs+9溌{wQ,ƅ$6p7[}{hTЮ)ۄ& kH-T8 vQa fbR=) `E<pD7$ïj5(ExD=brtnNDEb+qJBzMV2`dל6%8/C^sb"/Q4AGL1Ķ98IQ׺:j5j:ɾ*!6-O?ў Ba|՘!^in HsNC(AXi2l1Gti"]| f^׍*`sUZ^S/W; rc0ž ۗE Su=kyL*aR!߽uhjPLhE|"3 F\-$Q>(@ m:,qA F@9aDZYu٩!6º霨kܱslC7,h%ppq+a7Œ-ryU@J0"̸ff[tВdWu4:[JA?"PPxDZʘXB>_ X& {#p!@^J9ll1:t6g5#m۴)0d0gÓ194ytxDE8rG3Qӏq A#*W*_}=m3..1_|"5=K: Þ(P\8}]ȭdkxSw+iݴv 0nh{F.LuxiWnq<"aܻn灈Ɂ~rrf\0Ff-5" O0;:xb +L ce( r*l3gaeZVzs}ګ"f@` b%ȶfV z3#b~S.%$3 ( rm j ?,`='|_j }?Svf}ۙ ̟Á)aR$! \xC`jIwsxMx\U -8I@)>#JvE̲Yj󥽺Wo!pb2˖KTx t@Y8I1i([?]9eoB=KLX4_2j 4C»|2%(jZol5}*ZSx H 7}wAq}T^/nY%bM1ƶ#J1鑖p[˙Tp߀w"a872e{|Rj\աO/4OE1"3k;!cz0Qz?W]yfm \œW*nw*J-E|rF4? [Sx E@֓8կBl#HzTFDW-) xz^yÂ9R?)x:>L2ëJ(Cc]1~$;GK 2w "ZyuK5 Žx Ⱦ%Jw|tqjv~:e vm(Ϲ8XO䃟 BѼk޿;Uy%&e"gRYRqu3RC_4m$s*{]H QLx>%ϞNս>?;<oU^2!HHm͕z)`ӰBq|~ևZr|K1BŠ>ccfLƶ:bNXpHo"'P_5y'2 wKq =S&q0 C!V-K% 72 fL!kn;uOP,2n s<~`0pks5%/_Bt}ꨱ"&9>H7,dЂ›8O-Wjp6>TxD5Ȥ>i(=sl,>uJhF}״0#F;-#p3[eBHO,:u$OH :b&*&f˴)eFRoWPmv :e]sHw EP8<&O 7[gPsl ?O٘sw">p_^^JzɈK!# Ia\hNf8@;k}WΕJE`lw YXuNtr7J("Ċ~eq>%.Ȑ`^*@F&,@%$d Jm7~orN@ ,kn j'J7GJ-lcpl:k0Wl ~>N''V^00Gƒ` # j򟜞Lp!7%E1Syg%@є"$O_tm$2$?˜2o%_UyLd%`%Hyf- Q3%г"'3aOAyJƹ,tV,t,J]T )'`)ȯ<% b[B-CPEPiAyB;cZ=6ZOzr&T'xeaE I 2.T5rҙ-|C/ϰ;/4}]sǩvM؅w#1'r䘟 ptv]'忞&HG>$WY*5zY F.xS=]k|X%}: 8'1ϥd4L1uD2"  a%_}ۺq y=xM`> FϺ! YEB}w1Up85)؄]q,$W3Spzڈ>\ԴGP hnv{*dK 鲊q<#A7s6%Ίt|,X,-8⢃23/(ozzBbTy̵\o&PME1 VW1*52ԑm2,iN;#51Obʹe㥎w/^Zl4d~2.-]|F!U {-*I0+ ֊*fyf5;]%:0W_}ome %BigsO#Z7^4u*()_e綑yW's^x95+?)$qēCc<=LZNY?_ Uv] OuVrM,Fc8xS7ZL>9eteRШ'sj2e/r+4&, wۇLij_ Q4ZD4Z`#2vE^t>9HarOUj 7Ku;i:_ +Ee4dm@=X5˒P@p/WkmAa[È9Ig(pz85!oc+}J>!7^$aQ@C@+G+%-hT}LK[&(\>+ t߁Ig?́Rv~.K'#ۿ&"A3l5.'Î<`F;=@(:GP[lR~/`-TOmb8uQdϰҽw%n<b Z _X6ݳ6&W]sP9/̍w)(MxLH-fe/'KyMa2L[hQ)KKaTL[TFW! K:0%fExʻ &J |]@;,Bk2ȁ-&7)8D̛Փ!)1 L{o$ƵoE)ưTh֗ Hg{x%K f2trU.Qy٬ 1V)n3ac:iV<Аcjz+gC .1O [5C(|h%}peia~|bkm-*ZZ=pzҀOsSeI0%+X/YMt]$ՙyQVUhdbgK2o_j\cT6NRoe$ w!T|<8Bi#0%'Kjj".O{1^WCM79˂-b#~J0~"^&@b٣L6h nL-C/,Œ$j-(x,g]C f^+-w$O3-w.o`^1{~938ܙ+cCrH( 7ꆢ`d캸bw u)UgIA$Jf;H=Y%kQv߮sðU3 N]q-b_X+703PI(4t %Kvsj9&_ a-d*-gD4~GZ.3Ԋ`M1@#@{Fu y[>弆6 #ųYdXӮ:HC!?!o)XnԄH~a5PG zhf f,JM'ߨJ[~ 3,݃6"(+5:bepXR3y~ j"wL" IMe|J*ҏ.eB6_+*{G>"G!wƫX7n8E&X]ժAyVPu)0,=,Lt!b72@ <8&d \C'|O@CS9 +'꼣\b Vv{C͂ejq^?C]_aY/Zd|8GS`s(?(l#kw M;96bH@Zi$6Bs1~(S;{$ ں5uΈ H] ԪU7R#8?!݋(;\EgЄ4ૼ= DZeZ:tp (sϨSUyJi]|+*̡4iyч$h>pAÇlēo" Q?*Pat,KݴhإbCCt704:WVXn(ZX"h`C[  rSCMV ҂t"^rr6Bsg).Z!Q_!CsG^fKi|7Ǧ.~-o39ȶJ$X%Xb Zpȯ@.^M=&h>{~F< GgSJ}ÆÕ)2X^׎:(|X1*5}&釉wbUTEg"0fU'O0_ID)fC؟wWtr}cKOQiOO~ntugzj uv 42we (me$5Õ"Ss4zPfW? !⹾o/9&t7ELT\| l:iC.?rQsF C?Ow/ C/ORZ1&qA s0␕A07xVrCÞX!~.vmSA>t8P +"ηI{Z.4t?X [2ϨM;&f`M2-[[wn$F*/0/_۠|7*ec7ej*C)t>8'l]Xvv8o4GB^JX~nCv<'Dz,`OVJEX\A^RBj |.RCYSH"$W=\ׇ?F&e93{n,E%j\8]@_xCWcK&1 Ϫ,J[YU'/74g!;C g+by FU2:hLUFkhKb/ ɵ1k f#y+d^Áw+7-͐9`>q:d.+*V#p"JKt_0Ux!,G $Kd/f^lI(l( [9 !vw=gnN(oe= a*X}ɇ2kDmR'ũϨ [Mi

6՝_#˔<g7NZ/=.1>!.J[eR[|ELhNS]>Ԅ(W7{2YSQ~\).H(V }f=;{,U땻Kff*B_D V2WT0 TGozܕ@i;3Ty؊7˨ZvI[ L>_f" J<Σ2@R[צd/6t=1b_'#%9Zg5|& 60ss.&N.E?\#Q[LӍŢ ?zjdlv~mNw?) JɺB)UAD4߀ܹ'$/Z6`FhdRnG~ʐ_ _ZW/0D:#$оA'b/Q?{tsovÇpXcN-? kW] x+#zk_Ws%`(ЪEa x%d =2lY5y.s~])JY؀oHn<"R0(HQ,[QVFs (,;gWmqiQhPښF"&ʃh_aJ8826p%FS;k Ɠ#"M' NYPأ%g6Z=,}7~?FCJ=;;nv,3/cHEۼP\@XOHn@}y᧯@؎#3a5Q}pʻK'~- kWr B*KՑ{@'0۴h;aomW!ؚXw wJIY׷.tdPsF@ηr)L`0m/:y鞟 HICuX\T1|D~X8Fܒ: 3b0!A1i+>Gc__|ͯLse!&mIJ\9i,\k$JҎP)xW4nva>w,`6ģ0[q#ZfG4N{-j [=[4w CB*'"Dç.U 8ʊ̳?p-^0 tN>Q7@4x:[#_EoݐmH3?YH䃿h>T`\n]oQZt,O 8:iРXJ+A2m%My,#>P;4'Fl*`ČHUEMxzUdd(~+XȐ͟pĢd+o?xZ"Zar@ф5K9 xepNa,-uH3eo,'Uc`ZՑoE^T`Ib Y]I.jh]V.`}i鍐Uۨ`1ˡv8cvkF"9Z |׷[D`)8bg͝cSB'鼋Ca.h}|=je-pQ wBs< n Ļ6.9SMa i'aixu0Br_%"ǃP<دOG?b$,) " PÿR,6ͻ9x GLFơҁ-eQI韱dyK>XэO_laZ!eiEH׵]ܱC"O0QM6EY`qU? JY-~'Wke`ňhBs{"ێVNq lvhMDcV%-(}qnH*?M)B\ .5i)O)xYd& I=ۜpsfDZ,rVE|5o"o _!y㘳}LB!7e „˨|a%z>!_ādz4)uS´:Se6>ti60<4pډˏ>U|:JhJ_i~qul6Q_pk۶œc:;PH{x9#>BZ ˃11<[jp!VÅ>f`ƭlszP3O@Ձ^EtIBPX$JriQKbt*Ww SeĴ]\*”F*b9QIt)r)nFsuK)-ŜngeD"h57~m Blz8p&b9ESs8lD3r41ceZ ec8oGziPCӅxaf_Q\` )i<=em}ZkY]T.8w3- dH;ޣ5:&FU2o(?c݄ΆBt 귊"@:.G8H/o]Ȏt@ݶ_STڀSy_6Q`Ɂ9U3bNx1rLT΍x̪vO>Y)%{ ptߓT&n%,L^󖟯`FHΥka%ϸfgs9GZ!Yhk§MDnb#0HYWxDUuh gSNN)l8fD|1}I +-a &wD.Me9&_lC<-9='~SJ"dZ w>L4б}ڎ%򵡽PAzh BR]n<?7kD,`JYfi 屏r%L~jĻifE@MUuyXTgMDТj 0BeTר+Q{,8(g6DA>>Z^yi^?,(GL5Ġ0L.J`7kAjR}ndsLR*^E&="vlk1bMU*ExG-E9אi |i7AY0ת {Ch&m0Ӡ`ːgnFUf&2 ,RNS[IWqKKƤr.20ᙁr.ڮHgUn_@E9E6"@eY mi(B|}Ͱ`5;䑠Tqu30q̈:  B *gW1 Y-9"U 9(!t߹`Bc=S HaV.xajfBG8Ҷ_ "9 xnDMpZC4vBƆetb]o9ZDV/֔} !gw`Ruk`=R~>GÕgIML91\tLl;nh*0O8]k(G6c6BJ8E%0Oć;%BrŮdD[ؗAr Z:8~\2qa^ {U&zDd=``0+G˞ jf~8w=u;|y|'W.O T&4F_‘QSؽg]H'IENihu-ŧr@EXJ *-(U8AKc14@ ;uXeHL hQ4m:XmrDn!(0>]- 6mm:϶ga&3`4_`4#l1:\5hvk?>6Il9Tu { 8sJ4(jv6o-0 GGM/QN) l+u_& 6ml{ C-vIh5X^C9i<`ygNw0{DsylݱVҧ fv-2 3uX60kᄯjͤ s9/&G5.NN8~"u1q4?7\l"hQNxʨ}*]̥u=V@.L=Osus@ E肶nˉ!3fjŤeizd6Rԭہu Lk?bvXe)ᕕ'@dAUWfF3tSjM@)L9n뫘Ҁk3=lk}V_ $oCNnCDx˗_ D.}=xj]mrR3Qz=P@4bQts!nğ=^KB ۺ rC`OiOv/ciw4rMzE?-1 חos+qjU+HGd SS6Tyh{ R'z-~l9;%@TN5X%!,9/6j(j?ح |}qcʡUeHw HfOv %T;hr&똷&:Y3pRhHR+Jo|_hp22}w0&up3,I6jYUB "sٞ%9>^:ΘeO 8ܾIͪ=p`dg;ZF["D%,"̈́A"ug*|=^{8VpƼͱN_lp: -Z`5ԟaRɟ LMx&`2`L^#e$-AtDOUVˍX>{A(?>́B,Ԃs xVA~T]F l-LA|LqtmN7+ۍи5CZq,> xIN=lM]>9h$ (T[Za:-Z m.ove 2dX.7&:Z.mBl̕# PK+yXV]IÑysDN!hdgC@y >;Ҫ)P$ږHS$0GjWᬃ,S%r!$0{UY a #i7H8 FL\Y+v4BWE8r^|F5>|'Rče^®oWkSaCtكE/35)(;fdiD33l2m152)shȘkK52$%qaxqSZ~yr"v /"&pe!osRNWgYL%Z+Ӆ gwؒo9?tvv'uܓ'>ΦD2-eIyp3қb1.B%ՉOR3XL3,SeX;ȃj[=N4N#܅l~Ki ԺhVְv;\H7߫(ðGpvJc _p$fa;mvè;<`P&$ @^29({/yl_Y-z>8%-a\D7KЕ]{G?1ޘϓpSq\T +ЩI}Vq0=kCyDe+E2ěB L n0Y28QɃ%$X͹020a P抮8GgUvVbrms}@c$֠Q5nMzgIњ1.aEJ*O>bthuhG-6uiׁ2D|[ ڹRK6$}ù޸ 6oyU!7Ysҷhh߱0=O*7y:sZDsr=}E,j$XEko2>Ά X6fW ^}kJhzٝt5?A\-pB7mRHLdQ<+IܤSP}^(ciW7~uo 1z`wvr 'a$v--SM*NqF3%ϕ2҆Q:R3vx)I{l1=z#urjV [;!_V@seƖQ=ZTf@:Oߎ e ]s3qN馂ZaDܩT6 Wy͏leԢlD`wLaA7(>SFU\D[.'up T,qYZ$'%kz<.jqgErK 'RrBQK#/ M$N|IWs|HSSJcFAdge A?!'lI~رwz9ٺ:&`=2.hÞ JTF1+OZ 4 (]C/huWaͷ] Lq^3gM Mm(-+9|&`)s` j}-{\{$#QLC(]3Njπkh~"3P4Nu\j s9gXsR r}rw /[\j"dA[Fqb-(cU#C- ZpȑOK('yzlc 8Y }Pl!/qW˻"z~<" _ , w}72X{0L BSKξL!ӓR2`7 ]} ]`5,3trqb*G#dC6aJsBxS kI]c)Z1]DAD}4,D 'Lz P>}!Ji8; Al"Cݵ JEBDzMc6X|34&SPWueVwE'\ݛEgEHi0w񌘿[O^e YKb3>&!9V! #,{r`7n@x"3IJM m3&k4(-j,df~JŢumZ*Bɩ_`oXcb0Hu_ >I˯r2yiYcj#>} O{te u;çB(䝆M :xGAHlD *ws,VC .P*GQ(w2J1s IFx}u vjq$wt]F-WjSI!RmxS4(oNe*5̺^eJZ $D xW GE-%%_ B(6V#CV11bo ,`IIbUv 3G$rN#=E~C3N:V\0F~,+)浦`ie7 BA$;ͷ޿Mj\[əՒ`bb+. 2CwJ8)Ͷv!y- 9!6;5/ƉE#00@j#]e2|$kJ,E]B{'W'lb%Hn|u-B,vu$ F7PN*IR>x.( >ߠr]wYflG0``aW49w}=XHs1Ƥ՝?hv3z65| 1;Z؜5H&@G 4f-mN{n@Q@*mHMV_iFtD &tY)ijE{TCފU0r$:v#dCSK]홥U ڡ Y,?دivQ&=yʗb'q`ΑSN-,h:b.\PZY* ?N+"? g?炈OJd`Ѥv+DUxB [߾T&GR"ZbQJkt-כ/&)WF%ۀcsG<10p*"1@OA,1+cOeUd)v2IxR&)"3!>^ݹ&WRri._RkK;F -mq{ŧX́.5R{O=GEwt.uc(b{y7A5Q"R-UZ@$"v9ͥgߍn߬3kX{|SrWr#A^=K ܢQ]s"YgƫJŢ12'"(3jĕN*Jdȓ e6x,9w+,-$ކ|y1ĬZ*J'6%f3M)wqq7 6{{x#V5ܤӨ8vR t V O;G.?D Lmne+!pUV t/rkG/`oFN \A8YDT&bZp/c/:!$o?īW/]N bqaM1ĵ 炦sE@z]iA@ӋqxO&:J}Gȅ#:&@4|iM7*&+ͭ V1gYSl=Z0SX Ec|?'79:JRS]6E8K^d%jjz~MK]ny)Ԡ|̅]l$Um$Ҫ-&aQ=JLiM]֍M$8~s2 ZoFw~(7{‚ֺl:kx8^nBHY@37q EB FQ˥*ܱrg!b6Y$2'Hv)Hi# nd6#jΌ^߄" Ƈ*ʿVC[[yy2VZO-ϣiO)e9R(IG.Y:w ڍ!5xx`Se@rTb.'O2m%G[B!>.Jft3R ~`=M}D X}zQe~R۵|GR(2oS2|^af$B=\|R Jhw5?FhKjZ?CFvLJ4Jiv֎^If)P]7jcd&:зAyپ97NZ;ZQi!AM#x7ސy_Dx("yQA$Dq#n٢Yx im*<1%Vtor yfMKQ`S 9Ҳ !ZAQ}y^Oq?"W{6u&*گmذ1=  _E%lA^\X7li#!f:Ol&o4ס1mϾXƑ"2\/."uqZ3S/\99$髍ס쇉*#p~fi3v4=]CL9 YUwH[bX bOՕbY"۽tnd:D5IJ h #af8q;ABRev:Q4ԇbbs%EV3O"QY+ jvyCeQ=B3t3GeeR V6u3+U jʟ:&SuY?eS18wUsWmJ- YZ