pax_global_header00006660000000000000000000000064130765101350014513gustar00rootroot0000000000000052 comment=1011abf6c2cb7ae89a3ee76fb447d3182d4e8d3a gauge-2.7.4/000077500000000000000000000000001307651013500126155ustar00rootroot00000000000000gauge-2.7.4/.gitignore000066400000000000000000000002061307651013500146030ustar00rootroot00000000000000# Coverage data .nyc_output coverage # Locally installed deps node_modules # Editor cruft *~ .#* # MacOS cruft .DS_Store Thumbs.db gauge-2.7.4/.travis.yml000066400000000000000000000005701307651013500147300ustar00rootroot00000000000000language: node_js node_js: - "6" - "4" - "0.12" - "0.10" before_install: - "npm config set spin false" - "ls .npm-bin/bin/npm > /dev/null 2>&1 || npm install --prefix .npm-bin -g npm" install: - ".npm-bin/bin/npm prune" - ".npm-bin/bin/npm install" sudo: false script: ".npm-bin/bin/npm test" cache: directories: - .npm-bin - $HOME/.npm - node_modules gauge-2.7.4/CHANGELOG.md000066400000000000000000000143501307651013500144310ustar00rootroot00000000000000### v2.7.4 * Reset colors prior to ending a line, to eliminate flicker when a line is trucated between start and end color sequences. ### v2.7.3 * Only create our onExit handler when we're enabled and remove it when we're disabled. This stops us from creating multiple onExit handlers when multiple gauge objects are being used. * Fix bug where if a theme name were given instead of a theme object, it would crash. * Remove supports-color because it's not actually used. Uhm. Yes, I just updated it. >.> ### v2.7.2 * Use supports-color instead of has-color (as the module has been renamed) ### v2.7.1 * Bug fix: Calls to show/pulse while the progress bar is disabled should still update our internal representation of what would be shown should it be enabled. ### v2.7.0 * New feature: Add new `isEnabled` method to allow introspection of the gauge's "enabledness" as controlled by `.enable()` and `.disable()`. ### v2.6.0 * Bug fix: Don't run the code associated with `enable`/`disable` if the gauge is already enabled or disabled respectively. This prevents leaking event listeners, amongst other weirdness. * New feature: Template items can have default values that will be used if no value was otherwise passed in. ### v2.5.3 * Default to `enabled` only if we have a tty. Users can always override this by passing in the `enabled` option explicitly or by calling calling `gauge.enable()`. ### v2.5.2 * Externalized `./console-strings.js` into `console-control-strings`. ### v2.5.1 * Update to `signal-exit@3.0.0`, which fixes a compatibility bug with the node profiler. * [#39](https://github.com/iarna/gauge/pull/39) Fix tests on 0.10 and add a missing devDependency. ([@helloyou2012](https://github.com/helloyou2012)) ### v2.5.0 * Add way to programmatically fetch a list of theme names in a themeset (`Themeset.getThemeNames`). ### v2.4.0 * Add support for setting themesets on existing gauge objects. * Add post-IO callback to `gauge.hide()` as it is somtetimes necessary when your terminal is interleaving output from multiple filehandles (ie, stdout & stderr). ### v2.3.1 * Fix a refactor bug in setTheme where it wasn't accepting the various types of args it should. ### v2.3.0 #### FEATURES * Add setTemplate & setTheme back in. * Add support for named themes, you can now ask for things like 'colorASCII' and 'brailleSpinner'. Of course, you can still pass in theme objects. Additionally you can now pass in an object with `hasUnicode`, `hasColor` and `platform` keys in order to override our guesses as to those values when selecting a default theme from the themeset. * Make the output stream optional (it defaults to `process.stderr` now). * Add `setWriteTo(stream[, tty])` to change the output stream and, optionally, tty. #### BUG FIXES & REFACTORING * Abort the display phase early if we're supposed to be hidden and we are. * Stop printing a bunch of spaces at the end of lines, since we're already using an erase-to-end-of-line code anyway. * The unicode themes were missing the subsection separator. ### v2.2.1 * Fix image in readme ### v2.2.0 * All new themes API– reference themes by name and pass in custom themes and themesets (themesets get platform support autodetection done on them to select the best theme). Theme mixins let you add features to all existing themes. * Much, much improved test coverage. ### v2.1.0 * Got rid of ░ in the default platform, noUnicode, hasColor theme. Thanks to @yongtw123 for pointing out this had snuck in. * Fiddled with the demo output to make it easier to see the spinner spin. Also added prints before each platforms test output. * I forgot to include `signal-exit` in our deps. <.< Thank you @KenanY for finding this. Then I was lazy and made a new commit instead of using his PR. Again, thank you for your patience @KenenY. * Drastically speed up travis testing. * Add a small javascript demo (demo.js) for showing off the various themes (and testing them on diff platforms). * Change: The subsection separator from ⁄ and / (different chars) to >. * Fix crasher: A show or pulse without a label would cause the template renderer to complain about a missing value. * New feature: Add the ability to disable the clean-up-on-exit behavior. Not something I expect to be widely desirable, but important if you have multiple distinct gauge instances in your app. * Use our own color support detection. The `has-color` module proved too magic for my needs, making assumptions as to which stream we write to and reading command line arguments. ### v2.0.0 This is a major rewrite of the internals. Externally there are fewer changes: * On node>0.8 gauge object now prints updates at a fixed rate. This means that when you call `show` it may wate up to `updateInterval` ms before it actually prints an update. You override this behavior with the `fixedFramerate` option. * The gauge object now keeps the cursor hidden as long as it's enabled and shown. * The constructor's arguments have changed, now it takes a mandatory output stream and an optional options object. The stream no longer needs to be an `ansi`ified stream, although it can be if you want (but we won't make use of its special features). * Previously the gauge was disabled by default if `process.stdout` wasn't a tty. Now it always defaults to enabled. If you want the previous behavior set the `enabled` option to `process.stdout.isTTY`. * The constructor's options have changed– see the docs for details. * Themes are entirely different. If you were using a custom theme, or referring to one directly (eg via `Gauge.unicode` or `Gauge.ascii`) then you'll need to change your code. You can get the equivalent of the latter with: ``` var themes = require('gauge/themes') var unicodeTheme = themes(true, true) // returns the color unicode theme for your platform ``` The default themes no longer use any ambiguous width characters, so even if you choose to display those as wide your progress bar should still display correctly. * Templates are entirely different and if you were using a custom one, you should consult the documentation to learn how to recreate it. If you were using the default, be aware that it has changed and the result looks quite a bit different. gauge-2.7.4/LICENSE000066400000000000000000000013571307651013500136300ustar00rootroot00000000000000Copyright (c) 2014, Rebecca Turner Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. gauge-2.7.4/README.md000066400000000000000000000353411307651013500141020ustar00rootroot00000000000000gauge ===== A nearly stateless terminal based horizontal gauge / progress bar. ```javascript var Gauge = require("gauge") var gauge = new Gauge() gauge.show("test", 0.20) gauge.pulse("this") gauge.hide() ``` ![](gauge-demo.gif) ### CHANGES FROM 1.x Gauge 2.x is breaking release, please see the [changelog] for details on what's changed if you were previously a user of this module. [changelog]: CHANGELOG.md ### THE GAUGE CLASS This is the typical interface to the module– it provides a pretty fire-and-forget interface to displaying your status information. ``` var Gauge = require("gauge") var gauge = new Gauge([stream], [options]) ``` * **stream** – *(optional, default STDERR)* A stream that progress bar updates are to be written to. Gauge honors backpressure and will pause most writing if it is indicated. * **options** – *(optional)* An option object. Constructs a new gauge. Gauges are drawn on a single line, and are not drawn if **stream** isn't a tty and a tty isn't explicitly provided. If **stream** is a terminal or if you pass in **tty** to **options** then we will detect terminal resizes and redraw to fit. We do this by watching for `resize` events on the tty. (To work around a bug in verisons of Node prior to 2.5.0, we watch for them on stdout if the tty is stderr.) Resizes to larger window sizes will be clean, but shrinking the window will always result in some cruft. **IMPORTANT:** If you prevously were passing in a non-tty stream but you still want output (for example, a stream wrapped by the `ansi` module) then you need to pass in the **tty** option below, as `gauge` needs access to the underlying tty in order to do things like terminal resizes and terminal width detection. The **options** object can have the following properties, all of which are optional: * **updateInterval**: How often gauge updates should be drawn, in miliseconds. * **fixedFramerate**: Defaults to false on node 0.8, true on everything else. When this is true a timer is created to trigger once every `updateInterval` ms, when false, updates are printed as soon as they come in but updates more often than `updateInterval` are ignored. The reason 0.8 doesn't have this set to true is that it can't `unref` its timer and so it would stop your program from exiting– if you want to use this feature with 0.8 just make sure you call `gauge.disable()` before you expect your program to exit. * **themes**: A themeset to use when selecting the theme to use. Defaults to `gauge/themes`, see the [themes] documentation for details. * **theme**: Select a theme for use, it can be a: * Theme object, in which case the **themes** is not used. * The name of a theme, which will be looked up in the current *themes* object. * A configuration object with any of `hasUnicode`, `hasColor` or `platform` keys, which if wlll be used to override our guesses when making a default theme selection. If no theme is selected then a default is picked using a combination of our best guesses at your OS, color support and unicode support. * **template**: Describes what you want your gauge to look like. The default is what npm uses. Detailed [documentation] is later in this document. * **hideCursor**: Defaults to true. If true, then the cursor will be hidden while the gauge is displayed. * **tty**: The tty that you're ultimately writing to. Defaults to the same as **stream**. This is used for detecting the width of the terminal and resizes. The width used is `tty.columns - 1`. If no tty is available then a width of `79` is assumed. * **enabled**: Defaults to true if `tty` is a TTY, false otherwise. If true the gauge starts enabled. If disabled then all update commands are ignored and no gauge will be printed until you call `.enable()`. * **Plumbing**: The class to use to actually generate the gauge for printing. This defaults to `require('gauge/plumbing')` and ordinarly you shouldn't need to override this. * **cleanupOnExit**: Defaults to true. Ordinarily we register an exit handler to make sure your cursor is turned back on and the progress bar erased when your process exits, even if you Ctrl-C out or otherwise exit unexpectedly. You can disable this and it won't register the exit handler. [has-unicode]: https://www.npmjs.com/package/has-unicode [themes]: #themes [documentation]: #templates #### `gauge.show(section | status, [completed])` The first argument is either the section, the name of the current thing contributing to progress, or an object with keys like **section**, **subsection** & **completed** (or any others you have types for in a custom template). If you don't want to update or set any of these you can pass `null` and it will be ignored. The second argument is the percent completed as a value between 0 and 1. Without it, completion is just not updated. You'll also note that completion can be passed in as part of a status object as the first argument. If both it and the completed argument are passed in, the completed argument wins. #### `gauge.hide([cb])` Removes the gauge from the terminal. Optionally, callback `cb` after IO has had an opportunity to happen (currently this just means after `setImmediate` has called back.) It turns out this is important when you're pausing the progress bar on one filehandle and printing to another– otherwise (with a big enough print) node can end up printing the "end progress bar" bits to the progress bar filehandle while other stuff is printing to another filehandle. These getting interleaved can cause corruption in some terminals. #### `gauge.pulse([subsection])` * **subsection** – *(optional)* The specific thing that triggered this pulse Spins the spinner in the gauge to show output. If **subsection** is included then it will be combined with the last name passed to `gauge.show`. #### `gauge.disable()` Hides the gauge and ignores further calls to `show` or `pulse`. #### `gauge.enable()` Shows the gauge and resumes updating when `show` or `pulse` is called. #### `gauge.isEnabled()` Returns true if the gauge is enabled. #### `gauge.setThemeset(themes)` Change the themeset to select a theme from. The same as the `themes` option used in the constructor. The theme will be reselected from this themeset. #### `gauge.setTheme(theme)` Change the active theme, will be displayed with the next show or pulse. This can be: * Theme object, in which case the **themes** is not used. * The name of a theme, which will be looked up in the current *themes* object. * A configuration object with any of `hasUnicode`, `hasColor` or `platform` keys, which if wlll be used to override our guesses when making a default theme selection. If no theme is selected then a default is picked using a combination of our best guesses at your OS, color support and unicode support. #### `gauge.setTemplate(template)` Change the active template, will be displayed with the next show or pulse ### Tracking Completion If you have more than one thing going on that you want to track completion of, you may find the related [are-we-there-yet] helpful. It's `change` event can be wired up to the `show` method to get a more traditional progress bar interface. [are-we-there-yet]: https://www.npmjs.com/package/are-we-there-yet ### THEMES ``` var themes = require('gauge/themes') // fetch the default color unicode theme for this platform var ourTheme = themes({hasUnicode: true, hasColor: true}) // fetch the default non-color unicode theme for osx var ourTheme = themes({hasUnicode: true, hasColor: false, platform: 'darwin'}) // create a new theme based on the color ascii theme for this platform // that brackets the progress bar with arrows var ourTheme = themes.newTheme(theme(hasUnicode: false, hasColor: true}), { preProgressbar: '→', postProgressbar: '←' }) ``` The object returned by `gauge/themes` is an instance of the `ThemeSet` class. ``` var ThemeSet = require('gauge/theme-set') var themes = new ThemeSet() // or var themes = require('gauge/themes') var mythemes = themes.newThemeset() // creates a new themeset based on the default themes ``` #### themes(opts) #### themes.getDefault(opts) Theme objects are a function that fetches the default theme based on platform, unicode and color support. Options is an object with the following properties: * **hasUnicode** - If true, fetch a unicode theme, if no unicode theme is available then a non-unicode theme will be used. * **hasColor** - If true, fetch a color theme, if no color theme is available a non-color theme will be used. * **platform** (optional) - Defaults to `process.platform`. If no platform match is available then `fallback` is used instead. If no compatible theme can be found then an error will be thrown with a `code` of `EMISSINGTHEME`. #### themes.addTheme(themeName, themeObj) #### themes.addTheme(themeName, [parentTheme], newTheme) Adds a named theme to the themeset. You can pass in either a theme object, as returned by `themes.newTheme` or the arguments you'd pass to `themes.newTheme`. #### themes.getThemeNames() Return a list of all of the names of the themes in this themeset. Suitable for use in `themes.getTheme(…)`. #### themes.getTheme(name) Returns the theme object from this theme set named `name`. If `name` does not exist in this themeset an error will be thrown with a `code` of `EMISSINGTHEME`. #### themes.setDefault([opts], themeName) `opts` is an object with the following properties. * **platform** - Defaults to `'fallback'`. If your theme is platform specific, specify that here with the platform from `process.platform`, eg, `win32`, `darwin`, etc. * **hasUnicode** - Defaults to `false`. If your theme uses unicode you should set this to true. * **hasColor** - Defaults to `false`. If your theme uses color you should set this to true. `themeName` is the name of the theme (as given to `addTheme`) to use for this set of `opts`. #### themes.newTheme([parentTheme,] newTheme) Create a new theme object based on `parentTheme`. If no `parentTheme` is provided then a minimal parentTheme that defines functions for rendering the activity indicator (spinner) and progress bar will be defined. (This fallback parent is defined in `gauge/base-theme`.) newTheme should be a bare object– we'll start by discussing the properties defined by the default themes: * **preProgressbar** - displayed prior to the progress bar, if the progress bar is displayed. * **postProgressbar** - displayed after the progress bar, if the progress bar is displayed. * **progressBarTheme** - The subtheme passed through to the progress bar renderer, it's an object with `complete` and `remaining` properties that are the strings you want repeated for those sections of the progress bar. * **activityIndicatorTheme** - The theme for the activity indicator (spinner), this can either be a string, in which each character is a different step, or an array of strings. * **preSubsection** - Displayed as a separator between the `section` and `subsection` when the latter is printed. More generally, themes can have any value that would be a valid value when rendering templates. The properties in the theme are used when their name matches a type in the template. Their values can be: * **strings & numbers** - They'll be included as is * **function (values, theme, width)** - Should return what you want in your output. *values* is an object with values provided via `gauge.show`, *theme* is the theme specific to this item (see below) or this theme object, and *width* is the number of characters wide your result should be. There are a couple of special prefixes: * **pre** - Is shown prior to the property, if its displayed. * **post** - Is shown after the property, if its displayed. And one special suffix: * **Theme** - Its value is passed to a function-type item as the theme. #### themes.addToAllThemes(theme) This *mixes-in* `theme` into all themes currently defined. It also adds it to the default parent theme for this themeset, so future themes added to this themeset will get the values from `theme` by default. #### themes.newThemeset() Copy the current themeset into a new one. This allows you to easily inherit one themeset from another. ### TEMPLATES A template is an array of objects and strings that, after being evaluated, will be turned into the gauge line. The default template is: ```javascript [ {type: 'progressbar', length: 20}, {type: 'activityIndicator', kerning: 1, length: 1}, {type: 'section', kerning: 1, default: ''}, {type: 'subsection', kerning: 1, default: ''} ] ``` The various template elements can either be **plain strings**, in which case they will be be included verbatum in the output, or objects with the following properties: * *type* can be any of the following plus any keys you pass into `gauge.show` plus any keys you have on a custom theme. * `section` – What big thing you're working on now. * `subsection` – What component of that thing is currently working. * `activityIndicator` – Shows a spinner using the `activityIndicatorTheme` from your active theme. * `progressbar` – A progress bar representing your current `completed` using the `progressbarTheme` from your active theme. * *kerning* – Number of spaces that must be between this item and other items, if this item is displayed at all. * *maxLength* – The maximum length for this element. If its value is longer it will be truncated. * *minLength* – The minimum length for this element. If its value is shorter it will be padded according to the *align* value. * *align* – (Default: left) Possible values "left", "right" and "center". Works as you'd expect from word processors. * *length* – Provides a single value for both *minLength* and *maxLength*. If both *length* and *minLength or *maxLength* are specifed then the latter take precedence. * *value* – A literal value to use for this template item. * *default* – A default value to use for this template item if a value wasn't otherwise passed in. ### PLUMBING This is the super simple, assume nothing, do no magic internals used by gauge to implement its ordinary interface. ``` var Plumbing = require('gauge/plumbing') var gauge = new Plumbing(theme, template, width) ``` * **theme**: The theme to use. * **template**: The template to use. * **width**: How wide your gauge should be #### `gauge.setTheme(theme)` Change the active theme. #### `gauge.setTemplate(template)` Change the active template. #### `gauge.setWidth(width)` Change the width to render at. #### `gauge.hide()` Return the string necessary to hide the progress bar #### `gauge.hideCursor()` Return a string to hide the cursor. #### `gauge.showCursor()` Return a string to show the cursor. #### `gauge.show(status)` Using `status` for values, render the provided template with the theme and return a string that is suitable for printing to update the gauge. gauge-2.7.4/base-theme.js000066400000000000000000000006131307651013500151650ustar00rootroot00000000000000'use strict' var spin = require('./spin.js') var progressBar = require('./progress-bar.js') module.exports = { activityIndicator: function (values, theme, width) { if (values.spun == null) return return spin(theme, values.spun) }, progressbar: function (values, theme, width) { if (values.completed == null) return return progressBar(theme, width, values.completed) } } gauge-2.7.4/demo.js000066400000000000000000000016011307651013500140750ustar00rootroot00000000000000var Gauge = require('./') var gaugeDefault = require('./themes.js') var onExit = require('signal-exit') var activeGauge onExit(function () { activeGauge.disable() }) var themes = gaugeDefault.getThemeNames() nextBar() function nextBar () { var themeName = themes.shift() console.log('Demoing output for ' + themeName) var gt = new Gauge(process.stderr, { updateInterval: 50, theme: themeName, cleanupOnExit: false }) activeGauge = gt var progress = 0 var cnt = 0 var pulse = setInterval(function () { gt.pulse('this is a thing that happened ' + (++cnt)) }, 110) var prog = setInterval(function () { progress += 0.04 gt.show(themeName + ':' + Math.round(progress * 1000), progress) if (progress >= 1) { clearInterval(prog) clearInterval(pulse) gt.disable() if (themes.length) nextBar() } }, 100) gt.show() } gauge-2.7.4/error.js000066400000000000000000000011501307651013500143010ustar00rootroot00000000000000'use strict' var util = require('util') var User = exports.User = function User (msg) { var err = new Error(msg) Error.captureStackTrace(err, User) err.code = 'EGAUGE' return err } exports.MissingTemplateValue = function MissingTemplateValue (item, values) { var err = new User(util.format('Missing template value "%s"', item.type)) Error.captureStackTrace(err, MissingTemplateValue) err.template = item err.values = values return err } exports.Internal = function Internal (msg) { var err = new Error(msg) Error.captureStackTrace(err, Internal) err.code = 'EGAUGEINTERNAL' return err } gauge-2.7.4/gauge-demo.gif000066400000000000000000006715171307651013500153370ustar00rootroot00000000000000GIF87a):60:C@:3 ;U*;SB;-N;"4<;?16A]6Af[A'5BU9CK-EC+F^AFCDGLLGCSG93H~aI.9JYMMMOM/ZM=aM3hMMCNYLNdROMdPB:QgOQT[QLNRkOS\AT}BTkeT4hT<=UshUKUN8Vu˷߿ܦ30dim/^ì ' 4ik̹ϠRÙo Ө˹oXװO۸XDڈ;ܳgjznkFwSwɆbݸd](s4^mӨ/.5r_͇&28(PU OO&&"Ls5qO 6wBuFN@Ta B1Q8M#d}Df#M$;>'U5I6S4Op0Bq&F;rPV{nH>HX $!'qLػO.rBu,̆pk S.9#DOOj!Q*6"ӈHl0GxL$ҔC*1! /|)[+r0*TCp/M 4[eJ7>LR7B08Q3X  nD<ް&RTs>Cp7ԍBS> 0 [p '8xOƌ|>$C6 7O#>=HƵs[?^MA BP*{Fm`R Vk`# ,hA-`Ӧ6v@C(L W0 ghA{ A *XmlFRG=܃I6p"=aZ h݃t*L6J7a-z`F]1SbbAV@H0BQ/h;LX`D%2q>PL@Z5 -e 簆$HFTGzLmAsL&)$nS{>:Q @4 0Ib\!Q\lP(a&̦6((a) @Pv=d(k"V#0pp,Z<9DE800:, cc+SLa7nq@a=x,VGO{`zC+qEws dEƙ nAZ{FVr\ JfD𺜖VfJ<%0ծz`2Eأ R"C5R#pkXPt $,-X fꌄi y$]2Adjc^VdPrD y{a t>ZD"vbVG%"F䚈Hj8p!'M^4ope'Uڧz7U0 @r-(X_J򚷼HaiF?+fKΐZ81fҬ0汉 p";8F`+2ȑI›{aȶ Z,F@5d7ֽ@ P2vNB~R8V`d#  .Ar'`D!ZUkQn j9p"@\08AM"ӾN_ r l +|! y,ӉV%{q|-ulU#]a`а\WؙZS/r8o ^`k`X'`έQU( Vf<\vjF`Cm Ku49%ijR=ԩ O8-T]kZqB΀en? ꒛<эVa>(qP,Gc fw:ncG/z3etֺA`)/z luw]I7r͙KǢ D`4LL}w{9XR*0NO;񐏼'O[0J ]oz ;Å,`@IsOOH#([7~{O?yϿ?8Xx ؀8Xx؁ "8 p(*,؂.0284X6x8:<؃>@B8DXFxH=hJ؄NPR8TXVxXZ(L P-[b8dXfwjl]Ȃx F`mxxz?|xo@ApxJ( b 28&P&0WH~؉84 - Nx)(-8'(O: 0ȨP8vu W P;IH -쨂J p ' P4  ,(8Z@ ;Ȍ3PX ``0V =H䨃'O׎.H0pJ(Yk04Qٌ1JP2h)!9%9)]9b 1lP .^@li'@ p'8uy x((x˰ P ~` ЂDI |yP {y(H)HP ' p)X0 *89 (Ss@'('xyTVI. -ɰ( g p qY ` (8 9$ p ϐ(p x0耎2'ء鹞'H P(xa98ʇ1$2`  `Q MQ ' B|`*8hN* k0 +(ht:FZ@ZFI{yvi(8 3` RI0@ (' Ќ P ps L*ʔ`<P 0.PvP ` L0Pc>`x$ J ڀ'/x@ap@H`Ю `☮J-h &: l:7&{; *?J 0EڂG )ȧ8:\FC˧ zoK+yʳ),Х ɐ)@U{P2 (X  ૮h'8'Hp*Py% ͊v0-@ ୊ +ՠ (J@p  -xz6ڰ x-+{[߈˻1!*X'gxAjI`+8}Diq@˾+h)(S;Mh o IL˙Fɨ\^K\l.x gpp`(h*j ی*|p '܌`J:J+̔'I"[{@u)(xpf@@ 'HVY-WvPGOP'x2H'O'{b M 0'h01vbR<ɚ|GL {zʜy ̵#NЌ;pK; pɱ؜GpȌ 01!lJͿԼלی`.8'h@7'xԀzYŐR^,,sIŔ xk,p,XǛmN`+]T<}2 .)WAv,xGKx CZĦps,PGʗRM yOݵz8P.(XֻJ ͹ I phی)Ȝr܊ L{,{~T 9WY(0;(Xjl ϱ0Xp ' -]۷Ϩm%"(0)(63S%&(Bt@Ap܏^'ݶ-BM վȧ,v:RLS:M Y|j&0`M 9: l-k ½J ͈j  \ y0̹ )! #^%Pn HzٙP pR{+ p\0!__РMй@й7p [~]l\~$&e~hN'qPνN -8םԝݗNȗ2@ދHߵ(0 H@ +hQ݋}؋[+^܋n .ϜЛ< ',1:N\+X,0~Lɩ 0DNF  r 0' + @ ݂a F@?|'/-!{~۰)x,>GX,hD 4@)HQI@MQ4WZ49).7 l=('h,(!pfp p{wz?] `2X4(ςd!_ }y+X9:~ͯ>xPWXn ,AWƿ/_>X];$XA .dC%NXE5nG!E$iUI)UdK1eΤYI9uOA 9QI.eiâONZUSfWa*:Yiծ]Y[qM]yi_aĉ5cȑJ\e0oH͟E&]:ahөUkر]mq{n qWWsO^bcٵ+Ǿw'Z|y=W}dw}_~,4@ DpARA#LB +DA 3p ;P& ?qDB$D21E[(c!fQoQw 4ҿ"T$tҽ&(һ*Բ,ҹ.04ӷ2T4t6ߔ38S:s<>A FC-PE݋QG# RI+}RK3MSN1ôSP4TRTT:5UVZUXz5VZVpwu_WaEXc YeYhb6ZjcZlY6[nKڶ[pA6\r7\tMJwݗe]y ]{|HgfOV!18 !,!,!,!,!,!,!,&@*\ȰÇ#JHŋ3jȱǏ C* tL\ɲ˗0cʜI& ۹_:<6r@Q"0Ĉ6} Ў^ͼc]>ɚ}pv*+P\;43S,ztC v=[|j϶cɌ0)lV[!VffhK`vhP݅sR)~%Y*rh!f%J4>&Ĝ'+͕'ba+@vsPh[mNrab4}9 P.!9t"YwU%?4 nP]@9!PXmmaZe-@j8,J!G;˴F(|C0X@%$J+$ J!2bZ18PMTaK-H! 1(g"`bЖi a(2@s))Лq sAAI(3-8 *wF2@&*ۘ2I39C`-d1\3IBxlgQ +P餕^*>T'$@:jC`?=cӐ 7qM`N3BcbK`L;o|jeżH [`1N;($@g\{ՇiA{vxG;bm܎4 >-Hć-b($1Hd" |@,-P )7̑ LPR,]_-;tD2,8 T*.G .DM O3De F&58&HH p&Ьc9a!䃐s8'Opc[Mx@꫷Sࢋn"T2n;kxWYCc~B܌8"j@z,+8O,mrC/._ Lm A@j,EOp 1Ȋ@ 9G΁x` CR!`O"ChFˠQ Pa8/QY@(7", K$9{E>$)<(PhQA<,9K,YW"@_l Ѹ}̍CCwjցY p*\,!y|3`^l8I|f TC=*] ZB6 +0Ŗ K|5`g ic X(`\Fװu.hmOp͐{ vЌD90]L)%[H$:-K\ }`H }Kl^P'/UIV\Dj (S-G!13Z {-R ۗM} $mcǸmVw!p|!h؆<Fj< !V9#tlj;PGxuB>pZ0y`G̵!yހ)dϮ#,6 jys? A:=&HMvB 'ɀ ShX~F8707 X~Cϋ0:݄a<2z9-cBc'B(H @ rA }W LN l i@̔#N,tYЛqι_ZF5vdX0V*Ȋ@̈a;1P `dmYg`rO)xzvWm>@ǩPgP'BA*P#tU:[ht }GP1;%a& ;@>@^Xb*NiR;PzV\%!~~".̨ĄR읲8LPH:J0J±@#,:/t:žQ4.*= 3:6ϵb2-P;-R*m  *d#lA@* 6b1QA ]F9p0UЄ<rS אW6&q _^PRB[зgK(̄ۿ{b: $<ۤ |}Dd;xEuO:(@<< d>ٞ\H1!S T:cUE:JV "@\BЁcD3!(k¯aD̸ٍ,,(*T`Sx˷I:jkq>˸ˢDœ`$G#S8 E f͜j7Pf9;i%ZA4(m`Fy 셽0?ix-p^X̑A&(m# >*& }|mէq tC '!NP*8T6X',wWqLA.sCz>6 $AD}-d!P$\Ag$1q(yd *`PCA#Z8%7<)TZ@pV%p1矁*ۘ2P$`9СD&*ȵP2)L  /@.ă@(:@67JP8҆э ϲ.w!䄑<=16 &BbKж~*.,R@zE .r/A;oQpgk@zP8\.,{W< kBIInzPT8NڴB`}eG99uvs=BăXӿfدqu}Etaُ@9.s], $Z(3` CyFW4v ၇`La @h%" x-kupG$H\BD"60BVw$* 1*7*zKC%TAEf3p)dKU[MBp i[ԦS (0I %H`q`~-,`+Xְ=c J]aPȄ gQD|ImɐGbkRr!vTɸF2Ȃai<p&Am ->\B ]>A_DR!%q(]O7EnKv-P]^ W `D n7H_ X FzK iA4\@D '0WwaF,`P@SFH|X%H."d"3 2J,U(y!L>ȓ1e  Ȇp |̑H( 6 ɃIrx3g@ π 2guF;ю!=!,B eX,1lHCr XE5P[SC.$M@*iPƣR%@! *[')X9`X& F!,B` M@BZmqxC:2fDpQFW$Kw1mɲK熴<4o S&˜<)T'ѢH`e N[$s>˸ˢDœ`$G#S8 E Zl_nHCrո{aa3 )gKŋ6&xͣ3drU ,jey,֖VmM0AN*hl#I\q]>_, F P[kgs`wx c^mZJ=[d!P$\Bg$1qD*M'0ǝ  xIm8D TL/vxЌp !rY>)$D6H)$B(NS75i:H}B<pP#d9a!OOL i FR$)d:0:iN5("(Bj .r㪩S9Z觡:D:S݄a<>:&H2߫j˭Z,EpQuSv8aP @\ۚJ x RsZ'"{dqK'ŕWL@DP*!M)O7ũ6t?$:JT3˾([.3K˥MIЦ wnK"z69O+jl4mM ;!L.uACNf޴qvX}Py[97 V憑#y+VM:F9̒κWnS R*L1$!@<¡#/z pKT"ИTTN$/wlȐòK8gPOD6].G.zkދo\/0 "L< h@}-A;;fiȡeA^agKцj\KAٙג"Nc )ǒ̃#h>D&*}HqT9+ 21QЈ|51O ^ε E~& KԐ$K@$YT (G_҅x_ЈNT qw BZ*mү'MJӦq}@EJt̃&u*A yD$uzլ99r*>"FKL!Ei:R*0u'^Xd6),K[ $; @d[NꤲqlP!,AH*\ȰÇhbċ3jဎ;<rɓ(S:$*cʜ)ͳ5aHPKmA:Cy@'S>DkpJbj6 pns8ٴcݦv#3. r%l*u C'Cc1, LD( Fr020_r zt4 \Kq,g'$H]7A(6PBM5lE`᝻b :Fh0 Smr`x]щX ]wHsÅ' x*4CpC 'ᇂ}w M# 4K0iA#AysP}5N>39ȂX<@$r L6ġPO$%V *`C $NB$f.90xdn Ǘa Aw9О`y !rfE6  xF:i :x1c!0)L  : !Ɛ/@.ă@3@uUE1jH$F7y*>f9Fڄ*cH` [.AnB O@f~nKV7ˍ/&@;ڶoṂZ'a$1\@ ; A',] H9f T7!7[ ÍGč lA!CmCjTS\;@4/@qC7Y[mP-~^ . )~x/Hr7? \Ӓ6@;y46AstB*a;5v !3MKf/c)4:+C|ǘ 9|s?^@"?ͩMo_E tJ B,#- ٝ@0gFK!G%$$ᣂ< AG`5U/l^H@o 2Ѹ A,$wS"jH?<`4 v8PB'ka22R2x1 cĂ b D@:2#,`0zCq;gGцyKKc"xPB Ry` dEZΒ X@T/ΥQYpdLa|~?s \f3BJ1@C֓ 4H>{ӟ'>BPąAЄ5<C!u42YPV@ 0< "U!+H>m9!R0@xtT"Xәi PmJcLiz 0JZS 5K29*pHu rHzbՙ I6 x *Hb`jb%XBV },e#kbֳh INRŽc$C؛5* amTܖdmqdC,xl#j䰵JMې%D]XUHgTHsAށo4Y/tJMoےE/yE m"y<$*| ϷpRW '&Hb8/Adl۸8~C RьX2 &!)J8 XOf.dL B|-cnAB:.7!8@6%C_s$v:9:@@Za VCNق NJ[ҘtB*fM/ !,B $*\ȰÇ#JHb62nSgI -B-ݶI  ˸ˢDœ`$G#S8 E bŌ#IOBm0Xh@f9ck%Ԥ 4ڭҧn )ꉵ#nuC<8&˩m+w  K(a1G 69PtGo/_?CT|I]7 9pRN5DQjM#$4K0 i]C.ByycB>̓9ۜE7<@$r B 6Q?.$$FJ *`i#>#V R9z)OF)ZyeBlB)%p1+' E6$ i:h :`I4i!0)L v)A!HB<P<%4`W 'Z.րH#mPݨ 4eBNycSh@z!al@ um*L+R]eO ̀$vDi=T 47CN޽oPC[ЕL} fPicy4%yF M2VDR)LA.Zt( DσCPGRpG$H@x1 J"¸`Qim7FB$PQb\c8rEA ڰ%[_5q"8(@g.Z M@&aLCFI<Èܑm!9Q.dHB )Ħ8 NS4}5fLR>J!;=Rx@qkʭrP('+.`W>Y*7`l'qTj!UHdX[1lf)NֱgCk q$aH1! ig00H* "Hk$c\hIFcHU,#j؆< /D|u\FLށo4 ovMlo:Qc n.p:<#40эH Bd c8<DW YFCL)A %Qe\(Xn˗ 0Gd 1Q,%-xs!)Y l !,Bh H $ bn$tNTĘ`4ܱc䱥˗ iyL5oYP&M<)&ѢH2rA¤X]&  G#9]/ǖ= Oxjۄjܽ0YRVHb#xpKË 6JXd#kyI Kh`1GNrk69;P,nx \|9; 42a8+Am&`i D1(Aqn="0RK/tF2K( .|K ~@`p! -lsY=G䢄\@Ӟ<8Plc 8dG$"*0 P8.rWEBzq@h5 RafjH(F7,>9FH)PUH`/-(AJJK OC@ 蠅h:S .r{駡QmzD( ăG7aX2O\B+m\ xfmZqěIų9f T7!R6^GN"L!< /A!çNjTS9*@ t/ $A_lƮqL[|C|S$LXFs)6ۍɥstpT(1;=P2l3A&|I<#3k;e۞kp0> 4H0i#0E<1y@:M#K3U.7x,uyg09O~@2;z>7INxҥa;1l T99p țpK3\)Nŭz:R|"$2\y?G1cgz*>3QrfI` QdL+%>wt(|2 9ȬnOx%s@aCD8La)^2@%z#%HQ;b9|}@ *G?EqUD]3 3Qլ6])cgΑǁxbHxdDt#jxX$ 2gM˸=*!H8 ;0f2,]J KL%2Q\VѴL; p B=)RSԸŪG:te an`Xk[ߪT:՞~eR,` x@Rة0A1I_#@ dw88=YK. zEY[UN8ځ6(!,%B $*\ȰÇ#JHagH1 X6I!<eK+]|X P#a!RHѣHؘ4|,qE( 9QHFprcB\Kq,g ִ߿FP@^:@ 9b8ա s,':1FHq*WgӦ.1Զ䅷9氉>%!yiSV!3?҉ؐ HpD3pN3ⶠCH;""T {(I @䛨:b;-4Aed[24 Q@R@D L B :i&T) )ʩʐ: ;C! GV P!eRBz-,%BZmfJj" oڤsL2x95Ec{/>q93o\˸ˢDœ`$G#S8 Zlar%x+ )i%O 4|v1cTadHq^gL_r摣 l= K`1Grm/AtbVGf?+y\&/'nsCLaG<`k`&| myl⮠ r7|-s, %LE%/tF2L 2 .|Lx` 6XP$`AxB'&VQ"AvaTa -ǘEH*@lcʉ)XR"*4]wÓ/A.ăs{AVv%:č6&1Amts#L>d9a!OOLi FS)d:0:o袊6zΣN:  .rA*+pjQ,/ͺ˪jMhvۨa$ 䚋nA;A&'+;& mȠ8cvB#L#LʹcL[P͘|NSȌbDsf4J;m7DȵKP(!=o]P>SI^vm;T1,g.A\Pbi51}2,8:f˹^.VKC),yAc9\N<\[ |VzMc<{Cy3Wٶ2 S; sL CNIROD1A@3(ǿ1`b`,w;A S,XxDV YD#a =rfBx^`\A!aoKa6<7A&D!HFY!ELF,$%G|$PNT׈;QAPy0<_D!@! QPVV IzPD"OVmLrн#nfYcmX\K_(d2y‚I5̦8?4y*cBlAL N:a& 2~DEB}c$C5ѥQs/W+H2y v"Omk wc(KBBEHg= MmSwndށo4M6Q XթP>1t+A!vd _ حvMaM0(0Bb ()L & #` hyrxv9m#LNԂFq][䦶N8ۂ&Af!,Bh M@BZmqxC:2fDpQFkpP# ˗08ɳL.wzp&QF*]ґ;v`iX,.Q sL.jٺ* !6Ϡw/,rE4Ҡ0>|2Bɉ##ƙԲNcjۄ[Vsb@r}iEa> +)pжщXϘ v\1 \S:L=~I8`k` vY6#鮐ʪC0:,5kkʶjMiv a$L'-䚋A/@ jNfT7!Y6Au"K,&`omB9=.P$ʓtn'"¤r,K'&+r眬_S\rQ>5 sN=!bۍrstrSpJ4^NBrU$9%&4.#&wSA@j6ag"(DS9朿VU$ *|OcM^u<:u1u)xN:.1Z^o tA3gNpLH,P*3OD_8I 9@Ncg}5N&ɌSL1NA8#:%QP  nm"k] M B$s qD&08| 2 9mzSN14<8@!×DPuV; P Ex^L,%%G|،NT,h9-*GhA.qexQ y@ x@%9pꨓEč$>P@fᝇ ":5Δ a XЪW!DbOV5z!3'3x 1 xd"<җf նmf7_Ӂ4ɧkGS4? =9U}\)d3nPQD@mɐv `x)&x' +W @2y!vOm#l ^dwcw:1U.B< ‡1MqA5;p R)VT:kβ6G:,uu an`zk:rի ,taLGJ(SR@L #ڞ\(mid.qQ`k$!ml }!,-B $*\ȰÇ#JHͳMbH PKmB:#y@'KX-HHeѣH*}CDc, LDI( Fr020_5(,X'pC ,[xNඥ tcG#VZqpr &>nD.ru^͚aᧇ#[Yj{B sĝ"(-L8bB س~D_|E<\ڛrB \!ӊY9 v{LQfcFB%pQ0d_B84 &@ qw%& ;`X1C*@K9o ;$NtBC3TB+qB qLB*e1dqC@0@!,!,5B $*\ȰÇ#JȰͳQX[$bn$tHN/d%7%IecӹhsCetҦP"U4ƩV&u"3.L'alt]v8 eeQ`"JBapT0#)܅"pPB,\` @5^X嬭hN24 +OvlX'ގ6W*jnͼyķ\X@^:@ 9bס @ U;~8oEDqC 'mAG:AT6`,0v x qCPАE =d\cBxB'[}8@PJI~gjBmN%p1ݙ}*ۘP$]Р.&*%'0A $@@)WJ!ȋB<P<G@"&TO %PG&@mt&D>g9a!OOL兄 FQ*->d:0: F{δ^JK .rӯBk/n0 oMma$)ܲ?aD%,? @7*D. yP SVݬQ r :ΐ7O TP(;8U6r(">$wtSK'Gnw}2 瀵wߟ-Q0y|wsvxvT:a'z7s)'A>%Qpir5>.T+V?< $vDh]%n $CNJS]?_|O8ţw9sahUݜҿQ.:H3@@x9?%ghB I1jB(5Tc SxJ Ֆw"cz;"1ED ܷ?ȏ!g>N S|ȋp73+hXpGA7GA0dInwGY1_x> z)`n t4Kkr,`@ΟC=h9Lf:"[/ _4 >O3?*0@H.dT3@fq :5PͣU SCHinFh%EVW{[rNS>QԦuo7͜ZӛJSHU*STjI]jL$NpkQ4(]b`UtBFN*V AaT(VMld<ֱle/k&ġ q$QbEH1!1T腏h1?{An>T2y`r!vp%Em#uSURwc-+^7B<+_h"u.ty[|?x>\&$*pK^Y;jrQ8/8s5BXp;6~H2⅔X 9qBT,0N zV:MPQ ↤U*00"0aBdrC- < XFJ rQ!,Bh H $ bn$tNTĘ1n*()c鱥˗熴<4oY0̚<)&ѢH2rEc Nb`wY2P3`d 'wa,{6K<8&kM, %h%ZO4Lv1㝅T`䡈u^ygK]nHCrH Kh`1Grmj[UQY`!Ɯfqo>-Xe56p`M0w<(=Zn,A۠Ŵ-d!P$\BAg$1q :M'x`  !8I-(Pvt X#A8r%p1i$E69 eA,S-bex/].ăS@@S@OX P_ Ա{8҆э/ϣj!䄑<>16\ t&KrJЧ)>*9Ziv:iJ7ʍj믺JʪAkkQdL [ #Ө@Ժ;z(ihf~|a(z$ G3])B^v)<4&CVp24 .%a qɱwtT#݈+:@-a_#'GxAAfQ @#:50ѕ`rи1y*}*_|a'3v"#3́@%!qS ɤ˦s87 /f3fND^NTB ]>#DD58k9~7PƁ MVJup#j5_KAȃݰQ XUlc :wȭ20pD].,URpSZ'TQ6#tZYpzA D'F`|Tp-lx>@?l_p7|DBN S}RE\D6{F<@*]H`]Bz C Op: ZN[@.7*l<{N>1pp,̮ăG7aX_wa$ޠ7$r>tl%LĠ,Du f 5J\?@lDD|AAJ, `pʊ!{C)DheB` XI2Mʘņq@~?`1 @r D3˴Yo"S X P4u Fjxy&DiM_EL *2Ġ%BP ԡaC Ht8dJ %jy;BDjjEvnK;. @p Y< Jn>w!jr54>SטYUwnP*UZr5S O<)E%5uV9Dє^Wb05 2ZHd2Y[lf/+YRֳ,dAY^2(CD`?H1! DiƣGg1ek$c+qE;#6Q:Y &AmËĮ@B 3 RB$ӭ"v7 L z^qk`f OOX tAC*0~_mPWG/ qBd,8nH0a)0b )6nH % T"\)P.͕ ,Gd RL$`!E;s)99 !dH !,EB $*\ȰÇ#JLm&61@H PKmB:#y@'KX)ȅ6FnSǟ qxРF*%:aѥGB(u՟̸D,(f=ճh%ȨiX$,.Q sL. m ո{aaMXV?cya煢GVx:ꈭG Ox"O|m]q3JXCU(m^UQIZ`lp 3M?[TNDBN S}D\[M#$4K09t UP,97p! wl#CLE%)tF2D6Ў= 2@9ֈA3*.|Re|N !$9Ԙ d -t@lcJB\eB|ЖcDp"g*'0A $@$iD rfC8r".(OS iHՂB(Aު[8Ƨ ϱv!䄑<=16@&DRеn谺,B@.쳹 .rSBk.CCƛ@L RbC&UY:_ ٗt&+k_93j-lJިx1(#*ш8(%4aˆ;ޗiAp!&0Hܑm,!9Df\H.3`cH &oijeǽefei )f1k2l1-/mb<9c\s!Д&5%ҨUr96AF;g@Ot!A ttT|J Hj1|A9M NshBP e8eB$Yvd`@ P g8;f˛^Q"ֱelIVVdD+EN X`6qd#i15(07xeBґ(H<8;в#6:;ȱ yh!E.֖2 3OB$- ʚF|v b|݉#@ ` Dn7H_ X >ozny됹2 BD @>K2MKAOR@p`*Uܑ ǣ12]!(!MVʓ܂$'Ly)Z6ȝFVJXCU]m &>ЉXϷNN?aϟ]D9śClqx`pH$I9uhZIlM#$4 y ic]C-By ^EsZ098אM7<@$r B 6QK.$RF.|DBi$J2$b(PQi ǥiU m嗗 -@PlcJBY0BlW!!0)L rirD8#z.|Ꚋkr7JP0c9<#mPP dmpBNyShé@v!al@D n*L<ή amz {.~ 7 0*;2TcăG7aX2Op&rp pD0L00 yг+Ǫ^jD. Q<žcFB%pQ0Wv iJ*d+>AF.\B!SmFjT3e;@H-/Bu=7~[ c38mcfo^|F͜әz0^Ay SP*W4 }\N'mqQmi"B6>2l.T990qp/hS=7Ҟ@{:ԑD/?DC菶>匣xhI*!عx !HٗRRKANDB;A$π7!DIE00IK {15u͆ IiTB B  ."@9"!V>J7Ad\˱$}{#1%5)m 7QcY2H*!  yHO]<6=(@qPhXC q"*F%dr@V(=$23?w$DyH,A,s; $BؑFdH &p&IiPk BH)\f3͌( 3K @mqgփGa 6)S 6Axf!eHBzP,ԡ -hDPb("ʈl)" 0 :5ʤ hfčEv"Q~ BYRl݄a΢3 g^wt,{xKg[V;Ц~ӽ > Лp\L1$@<šo{ u΄ cpD40I 9?8ft5@)j$g=4 =y :qdM( 6G MK"` rDM3` CuqbW+f0VPRFQ[2¤Ǔ#8  22qyjۡ`|C? 1Et#jX& 2 aϡ IEzPyD0NVkо'3\.SKr t :&k %epA1 AD2}sӚ`טă ;ON1!6pO3f7t'RAQɉmɐv `x rGiQi F:!sdKɸF2Â;i3Kґ;p 5r6 xns6DТG:u ujĪVNe%b = 0T6]+EZ4E2(0%0g8*N|hbżm q,glZB# Ԣqti WZ鈵ž[ WӐ)ɲ-p[FTMiy%,!^V* 1/D'F`|TXx}ѤmマǟU9& y7 9pRN']D<2T4R@Ð6-(h' O :)< z IEmp3YI" lsL YBH*dD'@>)$F AA -`~5rcUyex^&$'\@ PlcJB桉.VUD 24i!0)L waD #3B rB7^uJ\B0 4րH&BmtgtTk-qBNyCShs@x!al@ {n*L< `dm߆;nr@R/7˸o pk>LQ\q݄a<č\9&H }r3# o)cOX  "0ܩPu 3S2mTB9>0 F5M߸ ȳv&F|w|l@*8}ؕ/My/O75jzKNAg/yB7s܂3$$\9+4QoiBȐ(6F~ MAqGtwZ~N|ESǬL;T@bQA<+h f5Is)5)DMd f8£|.ڸIB0TS UCхVT E2ʆ!iS,6< D!\ !@q܈O*D2!X0x0@ D{$(3z3&<H*F*WTt:Z*w5 8*Gja) Hauִ!↚ҍ Yt֕@>;rִE:5D8 xt#Ț@v `XʀnC'` ,t"!ɸF2ʅ؁CiΣh3bttׅ/K8@cM|a t̃,"Ç1A(R;t8۫=~F7R. qBt,ن8?17„X2] @'5q$7JF-N2o_9"dnșfD- yC8ʍy!m `!,!,]B $*\ȰÇyFq}D(0 X6I!<eK+]()c P#IN:<7d(( E"QM>(իLqX"̅>*LU4 hQciX$,.Q sL. m q,g'W6 24+?/4jC[;"׸B. qk9X@^:@ 9bHס c$!:1{k }Bػ_uжgGaM  DBN S~%~M#$4K0MאvaP8%`69,:$S -d!P$\Bg$1q@ģ 9d *`Q7c?A:&.|g#] $RWPgZКQp !r wgB) E% JB_V ``Lpb @Ir∋B<PyWT< sTyi⾜NA'kJ:'T\1PliR;>(2t6ⓡ@6y}}?SyyS፾;T@S5<D!Z ATp(e0KÅH` d@wʘB Qbԇ54?cP(s D Q*ȊUsjR_<95uV9J,^|5|Qȭ2YTXd3KYZֳȩ(r  F: y8M K0Ŭfg` I51 \zFcHV,#j؆<Q v!҅x)!\J5"P|xLH{ Xݔ]o[< UyD m"y@$/*| ׾M# !eHb8!/H0cN6Q>MQ1X!FvR`AS)"Tl-H?d#f^ȗ!,eB $*\ȰÇ ]LB,mNcIĒ%-]^ܱ<.L5$@* ƌBc, LDI( Fr020_r M,Ums KwaQ7Pb:uhŨ5r8h[7E"S:u3{42aK8+Cm"^Za ie܍>B0d )H@4 șgAx(Sᄭ*m!4HMwV.LCD1sfOO]ထ;83 |&p^m%7eh QFir\nPvh LcV3;¦!|=C3<P:Y" Q_U)t< ġ?fd|#60 M#O0NE`=X”6/)43 -( 9)RКi; Ͳ=POҐkGgwJi*yjw mW筻j!^)XBXpM:$#w 0p3^vٺ,L:,4aP'4.C.ԮB&@6jfC&p6D!,Bp X@BZmqxC:2fDpQF %#w P# ˗08ɳL.wzp&QF*]%qţTӔ2(0e0g8*N|\6a0yո{aa3 DHĎTed)S3ΤCtOxrqj`Y8 Kh`1G .qo` @tbVGEgEKxturΙILjյa{ F Rn}Sr : @ `NDe7<@$r 6Sfa9 *`C@(!b8P$8@xB'2V@Fx@&bբb -U*ۘ2cL e :Ot@&#B rA|7P~vW-D`5 R{pġ#mP tijBNyȓSh@`!alj0*L<qiJ̺NƖZͲ ;l::jrăG7aX2Ojnj ,ڋJKKk 9lrB.S3S2hJF|.d LKx3J6$MOI꣡ 還gOC 5CzcTL TX4`U `gw6XP\j֭鋉G乤JHwvdbH@@X!+#<@ $ -)AYX@)s$1%B)HJr ;R wph6L 0ԸŖL~eB$ 8d`@:69CQ(=39s8,\cu16M#ԉnpi3&iwNN w3(p  Y D ?raD]6(BA M6qdb)7 45EaP`F:j9g H<;ı'6A7&S;ȱ y&B-@JVƤ 3 .$[*Ӛ|FxrUO\j6q8LbZt#h@Y Dj7Hφ6 _;XIBLJmR@KP HJYBBܾ$R =Q;v3&ʼnu]ݣlw-Hp'Ewb7!,B eX,1lHCr XE5P[SC.$M@*iPƣR%@! *[')X9`X& F!,mB $*\ȰÅmIܦEI -B-ݶI tI/P]Clp i"B7 9pRNZle`6  CdGw(Pc5Ƈ 5Z,͂ IT}Amp3YI" lsLBDE'X:#BA=&.|%}BQNYe5a &\@X{g) E% zBcV!(: )QC#>@.ă  m&Y+\8-T9 EN{#mPi!>6K9FP*]H`]Bz C O3Z:k_V+- .rB>@;D+g2̮ăG7aX2qs1q x$ YJA5 RGj͂0Pg <3@A\B84MA qtP L?Qk_G)bElQtEf}[ Pޥ}VuT)θersyTTr{PnxN"L!<4'B7DtCIH$.nә~'ui CZ6q}d[i9ƷBCNwPyrUrZkZ\x ^BC}R@Bi bqH : (wcBLB\" -h:6"L"%B4#4E$ r} Vwj$pYH*!]y>=MbN5*ۄ(cl,U̡1s KRQ8}b3|XG=8((\҂`<K4 py?BA8E!KIV:GK!Icn?+M$Kojc)fK6VQX\3c2,%N#=b9L89VB.JBQS!dH@;Bu ł& jZ 4C6Zp[^\VJ $6 {G  CQ`tISq6e}vk"CUS{Q-6ӟ 0c"n< 2USk=S τDF{FOj3X6ARbEH1!"*T"xI, |(k$c\`iFcQ}ìCj؆< 䶹ݭE|8E\ ["Tށo4@ anlzL v&z>1u@!v}VLXѳt#Z4X!NH2Xb LX))s8p -&6 Bbެ> iEV-HḄC'qBn r2f!szfϨ:']< @T#_aZQ8YiUQI]I?6::ֻϫa5LS=Y[gCwc P~5N>c6$AQմ-dAP$\Ag$1qġ HN'Tfa 5jXIm֣A-cD#>R"\@VWfe):eAayL!tA# B@ rAWjVYTBEtjHF7Q>v 9FڼIWH`2A kL O#(Av駡ZjJS7ʍ+,6@:kM[ a$X7ޛ/AJK-Hq*hAys4QP SRp%b\ qBLm.ä =Q P&[jz)RL4`p'05L!A92dF/=WӦE=u4O7Fu2:mfvK41”qT;PϗlL'#Ϥ22VztLmSǟ:̹ô\WVT!rkncCAsh9\37t9ǃz@3-v)x4ÿg.;,;:LP _L38xLS  TN$K<Ȑ vj#"8Xrv׺խv &N\ ]Pl,إPe=d :w ӐCW8DiDDI,Akk R]H7&W"&E :b 1\ #A+Ic.gaq:JJ阽M&Cq xAeD cEe⃠2!XE}x0 Xc>tHQ a%kD&eG5 1-d\ :YsaIMkN'q} 2 8Yǃ0x2@%baAH1!Ap܄0uCT+h)H<~x;X'6ґ6y2SQ;ȱ y @PzTt!p|!Dt=InF0XxjTZcZJUt#x AWDi7HVjXФt b#$&’2PƤ ST>@QF S&kA[v-HCs '=m?!,uB $*\Ȱ6"nSPP& t&)tTJL't-L5$@* MbFm-&E2(0%0g8*N|،PE,@m0XmJ:,T#PZ1p$@TMHil  /0ΆjZ@UL8bB ЏE%ԗ# tzfR|I`¼5i4 OνbVC%=g&a nT^Sמ7N"L!<q@GRHQ2`o y'i Q XGxB)2:J0SL!y =]2TQaU3&q(@C,U0kBSbCTVM6-)43 ( )ʐU; R=PjhB)P$͛R@gL_ 'xF 5aA6<5E#E;->Պ+0 ː 뛮1Fǐ @`0Ǟ@!,Bp M@BZmqxC:2fDpQFxLǠtC&0cDxnHsf sϟ4m F}"Mʴif\tHd18H4|, qE(9QHFprs\/dhۄjܽ0˙SV\ Hǖ4ff9SNʠSÄ:Ox nHCr\%, / ӊ:NjJ@,jQ;O܋yMUjX]wY!p0HyWLs0I`w5mp3YI"lsL3}% 3a8zE.|£xAR3 yJ4^@XjiPlcJ?nd`АN T;Mn> rAg%wW-T9Qa q8҆y͙3Ϩv!䄑<=16o 4&LzЬ*:򄪪kʦjlp˰@+,C-C}۬@/Si21>O> 4H0j:sc@C#:1N.n64޵AH|T0 k/,T8@@ JI$*)@Zػ@)sH3t4%BG. ]t39'GtbASᘃ!y7#?Y$XxH) &j6=S*0'0pld:i.L b @vcl.S[!,}B $*\PagkH1@ o& t&)tTJW$KwBFnSƟ@B"]thѣL %*ӪX2D ha*ldmci3N"awYP3`d 'wa,|8q z(Tny ո{aa D[xkOF*4UӨW+l4PV_޽pk?iH8KՅTKY@^:@ 9bxWlL`|چY :1ࣲTY; }IhQ&; 07 9pRNA:UT6`C\ymw P(T;@.sC{t ICmp3YI" lsL-BPJIO'dDF"$N*AI&.|NŦB]~fEm '\@3X&h) E& E:BoW?9!0)L &# rB(14W B$7JPО8FuhF>Ýc9a!pOL ݅ FQ*.Vd:0:ކ;n@/K .rðBl Cd nRC@ +Lļy 79f$T7!ty'+cB@('@mBe20F5U& ?HI w9~7E =^[p8 0}t v:TSB] c9FC$ + TueWFI nK`?uS`+@iSP?ݝ؞C@:+PF}*BmNr1om6S H:>!KV(:hvJba\ M5j Ek G1(j@OR)LAQAtdmEkBQ 11@f1 h :5ͤ 4Dl"U)+JN >Q g_ށf4AMQ+*bHNwzm==np D!kToa-Pf0# 2U zmVJ΄!Re(@KX⣨@5 "4Vi&ɐkSpj x^d\#xBPL4HJ?oS 6!NJMrː. /dw|.0{w pfB+\rź.w1vWtcl y$p@ |%' T\C ^tc Ab#!&ža #H Nd#X r9=jF~ 7R1@와G.eP8 (Y*)`!,!,B $*\(ͳ1HbH PKmB:y@'IHDY`t$\2f1mjɳsC(ТHJ4ӟA\*Tf\*͜; FUNE2(0%0g8*N|P`ċ TY.m!UF (gQA.=]OMͺBWE`ɕ/gNxN6hm( /1KJ+ &>wUQ-; |[7Z=W桧 DBN SYٕV6`,-tYǐ qBE#ZT)0qBN<@$r B 6R?.$$F.|~A<$\cBxB'[vXe7@OF9e 5 )e -|@lcJBtfBPUOM0)r8"x.(OpF+ClyP*AL᪫L jHg&F7k>6F<L*\H`-]Bz nE O29N[mj >7ˍ @; nMlwa$)k%?1pO^7W+Ur  a 4uXmXcO30F59 H-E ~-]6qh{hn@*2 6Cv9YMwOuxsO7=7yTyMߚ'NA'4D$\u\/,BI<.-%&gK ӳ/@q#5bM9 Bs54BfVdK)r̹EL }NhA)2 EM xGAAVe?լ E2p"X+x{ rVaJR2<5$H4),3OR0fЩG)Pz$ʱD-Yb֢I*@ 1t 8Z-į fϨZJ0I<ikCR> (hZ2y\r!vheQmsN5PwĐcbf+6-B< B-aka{;Q!}-Zq#\nAjG:Q᮷j<\ lwR}K]:MhK{Z!'mc#!&› 0ÇV"⢨0) VΉaSqS`,%`!6ړ/RpB!,!,B $&l6u #PJEI EB-ݶI ts )* TYδJM(QFN-)iYZ!֠"ח/gN']< BnC lL K(a1G^V!w>%1r# >*s;ݻҶ۷(~z9 tC 'ԡVw/Re`tD`}Q$~'GDMG^Bl#EHPLE%)tF2OF"ђM>  8_CydEb& -ɟZr@)$ѹe -@lcJBgB:UP5F`!0)L "ER8B.(πwDqeE|*jHp. ? ϴ"w!䄑<=16 T&Oނи*-XnTy2/7+t/f;pK WFp =6~xXV>u-'̃,M4]P HÃ)*fK` 3sc5L|J94^Y@ AS<\A "4iSVu(d;@Q*{^D;*@ ą!V˥ # {[^  Q$+,\ÂhH0R7ϥ$np D"ASA_'-iɌَ+?x>3*$=nr6-H]cH<|"݊0GiA@M{6E\cU*L*v&\`))(08 @4^ʃBal6/0P6lOmA9F0)PXH`3AJL O3VSk* .r,3*Cښǭ+lM,Ǯ@:z 7ܽkд^ SXw )LdA%pQUpt(B8$ +%APΓ#0F54, 2?Iv"s9>ED=}TD4Q0x6Mv 9 <}/u+w7#D8B͔Dq;1S s 2.  N7,#M mS;۫պԾU<6{v;A9TM@] ܟ39}oL^:SH Bc:W3Fƻ:HDi:2q5TH23Dp`e8HٰEkk ;8B灤4Pa!q챫qgO; d FId`hATrX0`Ϝ/(y6B0&E0L0(8&%G|4PlT<jPA<@rkycbGFIx$o(-Z9!":ddY<'dy;BD &H#By7WOBHOVt]rA63Mp257jZ3a)s,װV;ylFT';~^M:(0B }Q @(*d9PV@<$5,cWb9H1!UxSftO* _dF:ad\#"BF4H=PP 6a9zU `+Yg҅xEfrլn5;kF|xt1ĭ@!v g= Z"VTΡڃ)0`b G8)=H p 5H fp)Acqy`]8Ne[ŦO8 ^h3!,!,A"H \ȰÇZA ŋ3jȱǏ CI?1(07FFn[)ɅcHPKmA:Cy@'SLիXjzԔ?:4`@+8̨Yzn2(0e0g8*N|hⷐ#KLd\⵨qFi|Ycy , ^V͹۸0uDg-$"KknDJtH6z ]>Y_KTcZ ~ viRg| 0F2̷#G2 .@pFةeV|#>@.ă3l#T**n,KN  i@XyMp1,ZYЬ%\F5vӥjǶ0OY+Ɋ@̈CfJ붷ep-Yf T7Y]8UaK> JE@@˦ Ўl{ G;1@0KLqH 3Ĉ7NYO ,To[*\OmRG77qgHg(h$ԧ@JЂ4BІ:D'JъZͨF7&GAL(͊-}6Қ÷RC@5NӠ)*OiԦ:UJ5HQJժ64U|b ZjAg(MhWִ &[* tͫ^S2u mJkV:'vp&;L `c7ُ` @:t I@!, R (0*\ȰÇ#JHŋ3jHƏ CII\ɲ&bᲦM)ɓbg@Ia I %B-ݶI4=!DX"U+DJFn:{]еf2(00g8*N|1hTYe˹Alf, /)[%& :1ࣲٳGX]P4n`LgYjS0vBK܍>j8MVk g a'4'AgH #A` rB kw]- čf&}x~ّ`Bp6{A=b3OqP AEUxiJ-Ԇw.k4H8.P@3|(ACBII4 EekrP䀋CiDgŹL&\pi%qAv0 肮"kSH§ACEH外&JJN$Ȍ9jFfSΣA"%x{P*0ΰ M#Gxwy2@mjr@(D't # KAK c +-FӉAMd2*-#"+?+4Hf i!}50PO;SKW[}[km_{cMf-sH>N:lS|*@ Cq*pAXM:$#ϕQy 0LG8Ab|*<Êz}$$MFLl @ аP_I{xA/6!,TH*\ȰÇ#* Ŋ^ȱǏ r |(pL jM"H1$ڹAN=:h9p 5rJ<79*})ԩ*Պ$3 K$)P[b2(0e0g8*N| TYBZVkA# 8bZpr7tC -sUt4 T Z4#pZQgpA D'F`|T@zusƮ]8eݭCl0& zg0Ē̬з?pc$ _M# 4K0iAuF\AyS ܠe,IwClp3YI"PlsL 1| h"*@`0d -gKģ@bT'2)Е?p !r cy@)H*%nIADC g a'G2*H ڀ#B rA&aqYqE#m|gPx(lBNy#SdJ\B*;>J@;lͥOpካna-CkKnnmM#[ 7,a$[qP CvdL i@i˼3!|9f T7!InA@AQ A!kCjTSYԩE@/H^gvvb;9[ mP_ìn 8xw6uM ̼9y\ݝw]77[-3Di3+ Ą4>*BE R/ q]u:1*Ch_OٽM9Ӈ0G;s!>ZiT__x<:H_طȕYvx0=ܷ  :o @:HRIE00IN Gt3 /! CtI%wK4}0$bn$tNoaDr श1mRyns4"Ypb†C6jW{p>B*e8X]& G#9]/wOxr%xո{aaV"HYfO=axGay.o|~HZiȓ B1d~-Q*8B:bT>TxԞAЇX&*{ED4.V+>5ϔAX$sY@C&3P6`s,(́ 98"qB*Ԅ;0Al# CTLE%/$tF2Cz'B.|cCsyg{yP$HAxB'HvnjТ>JaNzp !rLzA)fZ*Pc$CgwSth96 .@pF B&pMy & .Lhs/ A.ă"B^ fPEN^jHF7:Mɝc9a!OrOL.Bku1kLrC Oxq`cqrp,n=\/<'P?42݄al6j$4ECdp3F 5kkA nPiJej9fT7aWuo@rk@VPN'0GF5i/  3#4{9EY] <oat&埯cD? C/}3čyM#BaMQDng@.K>@SB MT E%uj ]ECC^;CSr_ mCTs%*^uw<3b|'CQ\!X'@QӚ-V})W"(j-cc0@I be zDHTc SxtCȐ"trG$Hx/g>dert\d 2&1N/RPMexD`r`w. D"-Yb3]ڒ!D92 IEJ0yd~39͹>B*@`ăz /jF&X* MsD.1iBFZғ6 6 qjTVJªAէzu_jXM 3$A@cx5IAIru'YYIty;*D BBqDzd+`C LVP 0H[eXL{Ԫ856-%LKs ר[Cl+ڐlaH\6ȕ-mAOJehkE9";Yg 5`B;_&/B_׿zp8(pH>D)}lȊ* L(Фt# e/j/&vTq8ey3!vPDm}@wc`el&?9B< ![Q9;!b>2e.{3V:wZG:1lyЅ6 an`Ίft:56I.4 HjQoFRj#@Er- Tuxl{!Ůȱ ݂ @[#",$tTBnGkb0$ Mlz9Xx3AFYh;ʻMk2;+!,U X&!& t&stHHTR` N[ Cܦ8s <79P:# J(O@*s)ΣN:edo*DjsUNb`wY2P3`d 'wa{7/?i* TYμ" !ԄFx,9(eM1k|9M? M5BPBjn+ts,D+"ϙj ēN*VԵi8DO3g0ĒalIW=3We`6LBrwP(]BM t6%$R-d!P$\Bg$1qD8cN'E/8c7 M8IǙg"0Z)PG&B.yHp !r̂o9@)RR@y`Dx)& .@pF B&pbZ$0MU8B".{aX%B:a#m(zP݈ 5`BNy3SzYFJjk;~: A+-nN[`pS:ʫo;/@@PibC *ǵ8*-MWeĶ):Ixj9`KC~&T_rAAB'x aPQ# ryF [p ^@Zxk :5E{u '@9;5A8.ZbDHt#/Ɗ$+rAkcx1Hp l?zh磓T`@ZGiV2aTPH f8AOQ &Aod@6$;CFZP e!B$ Ze`@n&Ⱥ{Ǯx3tDpF2 M혾T<5bvԘDPjT^PxD31kЊr&'*lV*UWAD.Q|tTF5KcC5E "F: y(ܸ0 忂aNS/^UO2JءDi<1ui Y&AmȣaFpE\"!]>lQDm">7ƃ`r}HtK伍cKQJ7_@m7p8xKjGB@X+AP$X@P $5*)q{0 t/b)qJn+>kAx%dpf:92B0!,R  (0*\ȰÇ#JHŋ3jDHƏ CII\20MhIƔmiͳQ,#\4& t&!tiՊVK$PR:r dz-OB'NS"\Ҍ8X]& G#9]/7~Oxjۄk݊ wY#f, /)J\!AMMdi@CY) $&jҩ܀)d()&{aIзAt^irD g a'EtA :ApI #>A.ă3DmAyP_fP0O5 RrVߏ :dGcA!])ɤb3bD)9fT7aQ{עA/BN"L!<#xV$dCsAL{qAgЄ"Thn*D\DR#>wfi:&>QL8i*1BI eJg3 P:]P wԫTwj-C*\Dꥈʓߎhn0 M#.) 9ЪMmBN:l2T%@ C{*{\tj1#A_^ :I1QfDc1JGV0K:3 h^+:hrYABQY`Dt QLzJ@_I _mxxN_|wV@!,%R (0*\ȰÇ#JHŋ3jȱǏ CI A(S\ɲ˗0cʜ@830Ĉ@PF*iҧt5@S|3ad8X]& G#9]/g׾pU ,3 7\G+:Vh,KgL:HCP<3xYf4}X@^:@9RXGQ؅UEw5DAtaZ(ay7BleMU| A3``\3Vx#hA`<[e`6B췐 AP0Ԅ;p"ȢAtɐmͯ'* $a 3?\rM̃pOGa$֦|tXkA4|C(A)56`O%> Lu NdjKOAQ\  v$HL=&5=#&$6G9f$+1̌vA!'w|tq̹wί{r"DjAPyoDR@k^d=ؑ"ȱ;d; qvE$ !vp Ԧ8M|ܑ@5n Ƀ3fKwY.vǵm{' |@y87{ !,U Հ @!&t t&stHkpآj6|3͛ Qxn N> ũУ"tS*r2QIm-F<'4|, qE(9QHFpr sF\Kq,g Fՠh4@+?Gޙ2fǐ JϨ Fɒ*iy,XV! >@J˛.7紎}xBC<]jt#LH(jJa %5kL3oP6F, Mo wqBM$,z(B%NLE%/tF2GD.(#6.|2D'-cA`p$ -, w=iЏA)OF%A\ %p1&E60餘qYAR~9?! &C xA>)A># .Lh#/pA.ăÝcMتA_eeP8'&ͭbiP݌ c9a!OLAc=jE;XX-D OjA{l6l֦,"7> "&p LăG7aX2Sl1 H.vqK&'+7!r6IO!>4rt O!POA<;# Qq$A< A"tC%\[;"UaMB$ r3PFoWƨ0$a\wF)!MJxs$tÏ!$!=52FE{XcTQbILJn B:RwBVM&pABm:SaB"` r@|n""4&bɒ 8c } ATU{]3 MX"hF^8; O!;=pӛ"B  @ѷgʣ"AJ· Nj䈲Fh8hn19CVZ"xeK SH` (hYPg Qz;,\ciOSu9Gnp AD>ԧTMX xhskJrT&!P`W5Y[7PFRESБt9L|'ۘ,YbACH1!$:ԅ,f69%$c-n!b_F:L5D=x9!0"Ir. /V V5.>h1 5ŮvRVaVov1|c2!u`B 'xEzZcaM,H`?S,`"@Rb ..OR??Qf38"< Y-HAd"+'xrA Ԁ!,U A 8hƒ.xC 7%Z IU!'ЁTRW\!̓!,-R (0*\ȰÇ#JHŋ3jȱǏ Cɑ A(S\ɲ˗0cʜ@8#0Ĉ@PF*iRmIݦ.h) 1 X6 !<m[kݾmXW$Kw1mRyns4"Ypb†C6~Wґ;)>K}TxUcq, LD9( Fr020_ (,XgpC ,3 }dFh ϒ{ Ƀ4=rDSP& {T QA8k Y1BRT@TD g a'qֹ$kh„6ȜB<PؤF"䚺F-27d:0:#I#S)@FpcT{}C`= 5^ tM3ro=a$5z}>WtրHi-M݂Bv; igyȬČlu Ɩ.LG;B!qDjTst%FALD//tB/ϹL3g+Խw )9s~Mx /Aw]p18q2\Cf AA%&!֔$F>r;p`` Cp#+Y" !;CZ19oI@9 0P/S"C&;mBjw1r%@.p~CyFM E׿RᏧSG@mdHȶdA)<d$`2)LA"D!"t.v9B;U B 4=ALȜڳFc"ӉV@0ZӉӄc˄ӎf6HҔj}wz`TV!u@2.B8ؐT T$: Cˎ>d;8!Lj %XA~p5RDvjlB 4_DLxM2 ZAT A~FD\O6B]5WMGlbeu>:UE(UC4 (wkBW"A;X6ǰOB,a;PY* Y%! 2@<تWSݬ(Yvy;҈ɪoj S'=T072z TVR~ e@ Z|æ\D A-p2:]QkV#{7^7 w*!̍|EO  Rr'!8Y'XEU[ >nPA[5`B2a '0B@11b n2uo=J_E:Ct)@ڈX O""X (8"@`lwӽ\"Ȼqx;d wEm % !f,'HAl cN'a8H&Οt*Ja??#.O1(F6|8Ϲw~ G9ЇN !,!,5R (0*\ȰÇ#JHŋ3jȱǏ CI A(S\ɲ˗0cʜi@80Ĉ@PF*iҘmIݦb o) 1 X6 !<m[kݾm8&MkpBj<79P$lJ!!?=Ȍ+?rio2MU'NSe8X]& G#9]/w)2* TY>ZPrB# 4g{AGVn }Tɢq<D5˕vEȓ B1dEh=H O_aPP{ǟܱwy%$"x|͒~#D%p1Qj+E6d)s$CjdIc.&@ .@pF B&pz & .Lhc/ A.ăsbB^ԯAuOX  EjHf"F7:Mi9a!OOL.Bk<2krC O/B9wq*3g7>Ͳb1?͎4\T2"A("Kƛ`%)!I&"w"ZBTǻa::ZvWmv")e2r:Q|A0C,C,d::Q/B;I` (N2LL/r!(c5b~;G'3-sM \ JfEBH>h;|Y$B&y/S$6xCVhI3 @=!@9(:5Q$/eCd"ڒ[,f_B<@$Y[rAiG3MA"TdoDBJ@ r$TH"s^ pσ蓐}1ŃLC޳(UJoo2D2$ ܳ>1& )}i@j1!K'iGcE| *wS'1ayVt**،f - M攙sLtir!YB:V&g5+BкV.ɭa[JW!Ԓ' a L[@G:ҁZ c,@`o#B""4i#HuHBvG"ꎷi0 ޞѦBw#>|K:w;_XN[{ =!,!,U H)[ÂI B-ݶITxM # >*K+==:iȢ[w}ҁjx56)jJa%5kLL[M# 4KziAƁ&\Ayt ءC@>6$R-d!P$\BAg$1q<Ģ0HM'9T'b/ E8Iu7]cD$N %\@Ch9PlcLfs%*GPTV7L! &C ]m>@># .Lh3/t^.ă3@Ԫ@]@OX Pa Qq8҆Mвh!䄑<>1l k..ăG7aX2c HJp LB`, 1i< ʲ"3U,9f T7!B_A8P* 3S2m$l0F5ɦV 6?҉w 4w?m9m@*!m1~NCn87c9OWq7JQDN;@?9OM$3)`N[OaĄ;+cWMyӀ 4H0iz67xĞ:ԁMCGrRh~țW쬁 .Ka*x~LW @G:ҁ5 "xwҝn#"B j#H<&]}JໜŌ$V#0э4H!bdCA|PmuN=Bzwc#Bzz-H⁏[u+Wל;d nY  h3(MDD g a' kg„6∋B<P<'&\Thq z#mD0ä&F7:M|h9a!OOL/Bk<2jrC O/B9wq*3g7> b1?˸ˢDœ`$G#S8 nݼ#jpA5^X+4@#uJOxd#~1dp<9l: K`1G Ɛ!DDlCB .:bT>Tx4AЅdhC!&uClzA(!i}8x60$AE -daP$\BBg$1q8| (D'D g a'`۬:„6HB<Pys>ͳO$}-'0ve'!r3t IV*^/h%C!I&lwvpBv;%0C.@һ9D tx$20]gG1!:J;[Ue-cL_?Bd0UyC4bKlEXwHUT7Z 9 BTI*D*IS {ۃ!Dps4T!mtSr< D7br ~w x\{2: «LW.wj3e< R&(vpB Z6?J<[ɑNF:[ dx9!b._lft!p|P`Y\F;oys\YLg#K/iBZ OzJ\אrIO!8 $"ΈW~3b{=\"ȵl;d vE]$fu'iAh]k ~7a8Hnk69ax1t8C4x.K 9g*nO& OW?$ !,MR (0*\ȰÇ#JHŋ3jȱǏ CIȓ(S\ɲ˗0cʜXrLL41ϟ2l T!ѢH"YP6ϢnSG7rјRB,mNcIĖ-mBtd188M* ax36xpHN2D-cf/FT'NSe8X]& G#9]/wQۼP`A5^X죕h !+4@#w׳;dx!dӀ0|=g=Q,eT<rP1(CVP qAAaPPzC$`"J) v{ d#߉':95ϔAX$s YƤP&3P6`s,&M AqLB.sNwe\lBTLE%/$tF2C2(B.|dCzh6zP$AxB'(qA)FiK^@ӥ{Plcʩl"**HP# &@ .@pF B&prA.$0 e8.t;ޚA7JP@g9{#mP5w!䄑<=1ſl8$3ͬss *L<\, s;Kr/MOpAJ4O MCt=P M4}b}tMC_sMa$]u| AW5D-SV$C.;nAAlnP̊AxqP AYføniJ#d0>І.8pB!SrDjTs%FAd//ЋtBOAܟC[`g+T>zIc[_` iG! M*4 I¥"@Ap1EIE!!BLX:w($ фwxB&0脣8`h=6Hs4y(9D:I G+fq)@PIq<׫*5DԴfB3:p 'UP݄#7ǙGhg2I@z teZ޹x3(8ryr&Bb%RFt\(:#ĄKMt4!P@dH,AI= G^3uiB"&ÛʩȇEb2Бtࣙ 9HC/,ۘpׅK21;dA >lP, 1&6H#్t,'5rlC\3l6B< Bs<9Ó;!6!g>4ӆJpG:=:< Lz^u:ZE3U%AN끰 mb"MHzegF0ALO]H#H-nr? Gj!^Ȼ+o  1+=وp7Glb8qp ɃSЂz ! Y{ GX <AH78Ϲ+!,"  H`I tLCq49w}a/8^:{Ksfn@ }ah>A"F, b_#)/UPi&qho{tho4 &b!,jR 9մm[jAC\[=y*OIhq02{W-$qХXm޲ƕ<0N35$j5ri5qug̥N/_gWw[}ӫ_Ͼ}z\p !,U ~tID 58QKwELtpU ,{ Ï cȐMq$lӉQyx d*d5r|8,dTZᡶtґc`Y\Zi!,UR (0*\ȰÇ#JHŋ3jȱǏ CHȓ(S\ɲ˗0c\XrLL41ϟ2l T!ѢH"YP6ϢnS@.@JZmzC:ҦEpVچ]&bkPR:rFnsCqL ӄ̰:,1` Nd[`DTK8 eeQ`"AapT0#)܅bvS9sKW& xPY>ZбB# 4bg9:AvGh=Gv']< WE`L=G}hȓ B1dEh-Q*&, #AUCG~u(HAtbR1&PPN"L!<q :B!cqDjTS]֢AL4//sBAП[ʛ@P}_[o詏UO7lx+:J P|3߲7A$#DaF5DZJ=<-Y IBh4 9D ȁήdAAᅨuDD(J!4:MX%z = bB &kb/^BU>`ÌS1+;<lF3@jn.s--9::H=HA>.B:W&w+BW.ɯi(FRI F*QSМ]2 wD=0AD ze =nlH))"UT"+ ةr8W!nC;,\#nq6_Qnp5Du*mo\ƃ|{ؖ#0A!a O!-HG:La|d@&fm]SD[,mɐG"?w `$|W2A}.l:CdHɘDbNF: $Bx9!e . /*,k2>"hKb-nBX~s 6|c~1ț/iBZ ]|:ԣ3Tr( OmO""]_FALG]`@ <& )Gr "֖$)Bl{ECqWܚnARunzp!#!ZGp<D!soi`{C'N#Hr?5 ȓRy< ?W!!,U Հ @!&t t&stHLTtCܦ8s<7Dṁ:} JT'OE<'ӦP2{˙0$ETTNǢ`wYRP3`d 'wa{7oTNԶ Ը{aaD;_/C*rτ7l2NN?^pj?i(dT5J K`1G*!󜩊Ԥ :1ࣲNվß\䗚]+LɁ zDg`@\Qi@mIc$\M#4K0i~EAyTPtCaA>̳6!$AR-dAP$\Ag$1qDģ@ IdN'BT7c? UH.|r}ץAM>e{>Q e -PXy*ۘ%o $: &tBINP g a' hJH P#-B@ rAGP~XX^G05 RfiHeF7pFCC39FtFѸBd:0:pmK.p~.Aܬ7o;ľSF݄a<\ɳ9&HK22 ^OX $3jCAp,͕3؉9fT7Y` _ >N"L!<ћ +B!CNjTCY;%AD4/Q?] #a^z* ubApx3Ρ DD;Њ":pm6S9! t   e)`tM6]Q>æ\*mdE:C@ɘG2bo*HG 6Q$ /}#҅xchXfDЫ^W|x4ӱ^%@ 2ښ2ylEd( yXco_ =;Lf@`PIrbTuAb#$!&BRڂXU.HPĂ12T*1'HYfGd!isB9 HRL*!,]R (0*\ȰÇ#JHŋ ȱǏ CLqȑL41˗0,cg8sK tL)!jMBH1$:ATUJJG1m8fH;jkP8X]& G#9]/>P& PY g$ڇ*}{ts.C+i†IBtb VG%??Lh"jJa0%ٵu=L${8@lDL6 g'T0׃1m|QCr! &C xi*Ƞ% .Lh/A.ă3kAqՀH & DvPX i}ƃAJVϐ0[u N:l!sRj@ }*-sjt1A^^ :B1U.">0rṣJrCb3d IRDsddatB!0Q#B)xy fNx$G7ߙG/No/!,eR (0*\ȰÇ#JHŋ3jȱǏ C\Hȓ(S\ɲ˗0c,9Pf&raO6p(ѣHIGͳE#\4& t&!tUZ%#w,P#I! ρ(y8BfYH.ޥL s1N`wYrP3`d 'wa};Cm0XЍPۼjܽ0G+U6Vh,';HGバIOB1;<5:H K`1G Ɛ!D D g:bT>TxDA7}҅dya1&ʧYy .@pF B&p⍐y m& .Lh/ A.ăcA\;m`ՀHč&AmtSj4w!䄑<=1l8$2ɦsr *L<ξf"Cn OpA>,tLC4]RѫLtR|sM^ca$* @A ̣ K0RCg_ZD%5o: ֈ%fM)cDlq' M,< M/:YpBCB$*+|Pa'bJwJ!^vPA<4 35HMcm5X*؊fxYUslUt@*QdZ4 qk\ VC@I F R {Ir4P>ȡ Qÿ4A8 y7Za DV1R 0`i9 O|g[D AG%k!mf{T $W=Ţpk\!^w Av{xΖl2ok2#a!8Av^7nu߹[n5`B<`'60B|W>HG:Kac@cm`8]RDAmɐGʍk#Y(Z !dF:GɘCbNF:G/R 6!L0C O򔫜. /$+͵uh5b%7+^:gxUs 6|c}1ȗhBJ hHCp3LxroWL6"@B$:#0]b 0"MH` Q5F*a!?:diB]i+ H F 6Gٓ|ܑ(va7X:xHt8Cnr +m[ϸ7$ !,U X&!& t&stHJJGBFnSʛ8}:tgϟDѦP2{Dp Q: eeQ`"@apT0#)܅"n޽7m`Amq,g`ZiB# b tre3s>eԔ00Xj@lXQ´K mK,UQaz))^ ^ovJ|Smr0DCY) a56V0F2@4@6)Ԝd!K#!B.su>P6%$AR-d!P$\Bg$1qģ@ I$N'FT7c? U8IɝT5dD%^ &\@#x9Plc\g&*Q}rB2a=09HAi :„6THB<pP< !i!TV QX ԡ7Jk8҆M)жv!䄑<=1ld.hn*L' i{@S99@]s|M;\Jj r@9+ P LIqHZ(`G !P1LaJ@VB.uu'îxȡz“Pc o2}&%$o v8oDD_#Z00IhO v16eqp ǤR ;"D . g> H3> C>fH`0\X'9aRDy2HpkaSz`~LIMS$'%V Q+{e/{U%@2ߡLCDIL &&$ G-Mnq @Xtj %V 2R9 #!2@<ٛ2  )"b7o;.j 3<R/D'PVĥtMX)aXPֳgzX#U|;T ~oa_38nÒ'G:ax- n`Tqo,a [xא^rx58 (NڄQjJDŽ$C$UR'G@@R56%%lN-HB*g:4'@ `!,U eX,1lHCr XE5P[SC.$M@*iPƣR%@! *[')X9`X& F!,U H)[ÂI B-ݶIT̓6$AR-d!P$\BAg$1q<ģ@ I$N'9T7c? U8Iơ]5dD%^ &\@x9Plc\g&*x}2a=09HɊi :„6THB<@P< hV Qb ԁ@92u#mIP elBNy3SJYC;;ʢ q-n~lp8j*P0k/C`/¹{pߛoM3['<a$N12<6@J6 "4ز"3ב 9f T7lX:Ю0$@sSmTbd0F5!W '@Iz&xiKL8ExӎC.yNdPޑMzRTuJH涏{(hͶ$3)So8thćH;+Tɉ} 4tűB(MuwI{vSArV8Q @ bi 0=tM<Q&\x`%6"4]"W?rBp[% >ԕ=ICx D% :xΓd3@<)^j490~39ɇ|  (4,R_,  :P2x@P9nl.:~2t XE8x$+gh34zY::o5~5kF]s>s]W?@s`5${c"#Fe(DZBpv0l_2`Ζ #ar.= Ama[SO3Pdk5Ѩm̹د2t#Hn @ɘk(Ρ4HG:(Q 6H0ý|. /wym/-ِh% b`z֜  ߶~pL2|cA# bp@S/.T,(8QjJgƄc U.H l"CJrODx5eVA29*nDy+ <87%Y@@!,mR (0*\ȰÇ#JHŋ3jȱǏ C$HPɓ(S\ɲ˗0[r&Fɳd(tѣgtm%@.@JZmzC:ҦEpVچ&'-FnsCq0O D1̰҅:,n(GT<'4|,qE(9QHFprܻ{;\8dr%xո{aaV#tHYfOaxa#;.č#sC؜DZFȓ B1d=X,i$T@s98ʹLHm3:!@J/t]ăG7aX2}f} {bIutOCT g Ӷ Dv iǜLAÉ0aycA%p]Xژ | qBܠF. LQ yX)bCDtToW}9[5omsnU |D"O7s"8+ٽ/5 oÖR#0OL 6a/Lޗ|$3ށJ#TMv[a1=ws>! GQDdȅVw"ba|8')r!ȅ%E^W6~f J6D\,8:,Pp]3 b !ѱ`,TH 0id0UpG$Hޥ"/g>4Hr zHZR=Jni0ZP_\׌ M2e[ QJ1Wf7=,>䀣DH]LJG IF/rG=Iy& )\($C"` r(!V 2hNdG/'yX p4Ď6\ x0B,(O2EܩAP*?C4QCaM5LijS<"dv jXv>a $! 2@ @1Sy p*]3D`vAˡcRT8H"C&[L e %B$ Jd`A I|ŒӞ!M:*,\#h@Zc֩=np5Dmg[mHik[cu]̖; 2| =p{Ӏ|\Aj׾M}߲!C|tWȑ@ DU E&E4oF: yİt:3O ax/dOD )hBpщ4H|>R 6KXAr҅xEArإG&|~|xDHue4Qr`Pry N "y$(3@^s{SA7߆X N"XdE `7#)5H0 lկ~*̚Cn]WxnAaڭl3%!#1iY؎p[8l9_) ][ڤsL2TO`A^OI{,!a])$$J͑F8 @ ċmDV_4͘F.DƒQw.Q垇.z䠏n$!,!,U M*!& t&stHHct0̔8s <79P:# J(O@*s)ΣN:e0eD% l ABF2(0Š0g8*N|hޔP`@5^XpōR ԄF,9(er<8?DMA)`~uS2XQBKs68,I{j˒e,@BN `%Fv&ԚJ~=< ]6 /bا ( A=43rD/$< AVLHx.qd4c~h n(#Q R^p<&FsQCA 32=cL !E)~2';D1%Cb)@%jw$ $̇`A!ٯIN"@h&ԄXLJM&)E671΃2+M'MH1 C> B;-ys $MѧN@P11 yk!\ 5ARԉsff# xZu@5ϧ DdEwPE,5"X6xte}JpYjW ՈX9^VzA[CVj^0R;  FŃ\ʡpd+{lXfT"M'>@G:ҁ8 #ibn#B"TxA'щ.>xD1:Cl|A>̣A}6:95ϔAX$sMXT&3P6`S1Є P T;ܕAA.sAt6.$AE0-daP$\BBg$1q8ĨJJ)D'O6T衉.E.|᱊Pb`"ڪA%p1ak,E6>-B 3P@lj Siukq6jQcDxn\`>Z,c?u  :Y*IIJ09E-Kߡ;h19ЏrLC 6HtS!Ecfn!LF 4O Dujx֘T,u1<9 ƼV=[uY}k@P`X8!ꒈ. a (_Ya *e;N`^.qTt06SAI6< 4*r*c .3|1(k܃$! &QG 5p*s׀\C| {1nu@^6DUoQUhAP$ `uZ" LP%a .HD|tW1? $\"E/?\!eƶ5bPnJE`x1&:H#్tHPH)5rlC\3|.9B< r|,㣔;!rrߣf6tBwG:5O<  :2洧g?i]*#G)qH4 p !IDr  1Bu'LuCR#5 Tvmh{!ݮȷCׂ$Dc#udIЊ ąU~(Aw w)D&'d|%u ߸GNrT%OAB0D!,!,R (0*\ȰÇ#JHŋ3jȱǏ C&$HPɓ(S\ɲ˗0%Hq&Fɳd(tѣgmbREcH PKmB:[y@'YȞEpEtt W1mRyns4o`~CFʐYU58mq^Jac8X]& G#9]/g׾pC ,3pjܽ0G+.Vh,KOL:HCP[, /8Pi YqABF0,#AUCGdyu(HbAt"cAT@{zmPp#0GF5 g-҉8'{W>#np;|x#ǻW~ӍUĈ[K̟ 7hQp IS 0CK B+3DH$3 ^NI ]xa33H _ic~{rm({@!:Q|AxbэyAgsU₸%Zq\hbL'¿\1bD_t0r+樹1rƇAQ 82'&$t v HDZKE00IL!džб9ҥt F% b ;"==D $EPYg>@` I_ohΜJץ^Qj$cDl>1ll_8 Nrr,b9i! fY)>IK0z/z?IH;09(JDư/z6ɐXzƷ_2|,IS~%MDlb6uT>`ģi4]j&ft&Qa*Sp0rj5j_Q@Pk@PZbH T]Q) Rעⵠ9{df":5α sfW͏͟®TO*DDV5Sk`c` ajY{65ҚAUw|mi rZgV(oH Oqxl+C9%y&Wkz|+`MV :ґ|R\!$!x V!V,˸ˢDœ`$G#S8 nݼRu!7UWE`f:##mP#w!䄑<=1ž֮l82̩3s *L<L(r7Cyr+gMOp2! >-FaIG@A@D&O7x"K :$N!Z<3HEy`D!$3ށTeKRd6HEb&h{!.tCA:zPZbȐ nEDKqDU X-v V1WԐs S\52r^QKdtQf[4 P,OZԣn!A6t"jH) a ^ (+UТ}4 wlt]AXg!@9PV 4H ¤Y<`y 3=HmJ h#CT kW\p !nkZ6q\ . @N@]Y/s\抳Vh$X&բ ܊tWA@< U &EpF: y2uƵBW2am*9 aR2Єi<.7}&Amȃ A\#; 399D<1rH.7@M`Le+ r<* G_ < A4G&Ѓ.4Lfc$WIHX!A{VĿ"DڪaSa/BR H$.ɦ1ROq5Ef]!v -H~MF>ȱ9R}ڑ0na8Hmpޮ:x7Lt8>-ouI*m >; !,!,U M*!& t&stHB-BI38M)sxnsvF*hў?]'ӜHJ}!:UASZ:  eeQ`"AapT0#)܅"n޽)g*6a7w/,r&4 ,B/#Ԍ3胢3;ݙӰV* };W̱˴t s0-D+BÝA4$+!:1uC?zs}: zP?`5ϔ@X$sF@ &3uP6`c,$ s MgYt1@jut6)$R-d!P$\Bg$1qDH*ɤN'F?9dG ] iI%f TYӛ^4'\@ jPlcdyh&*8Q!o;! &C xA@H X#A rA'xPYY@8BA5 RGg&jHF7qCC9Fh֩FҺFd:0:nC{nK梫]72;p #oCp pMd,@:z ‰5lPRSwFmBv a#q@-6Rˊ@̀VaP @ U{sR]"L!< 6B!NjT3Z<@,D./0gƸp/9[JPPOs9?ytccrR1*!<:Ÿn qs6B#`J̐hP5H_=!VP(jC3( >ؐ (.Kj0i#9)Rң=r@9+ P L~ ]f22bm`';In4#,w.JM8 m(-?{A'!IȔ@$a"g`La AClk{R|$'<ꐂ;"#D GtRg>D=<ꑏ j,d>HAr ,Dwd2;H\COz@2hU*dzI{J0] x-m)z;fi(s2bx|@8gtL4DmDS!9$!)q&% @9y=|#g@; Ht dN;C({X3G8^lQS  PgB"!2@S<)0 \/̢;pa5ttuTTA#Gy7ȓ A*)1(x Œ~ b:*k`0%VjjGuu !5Zu,[V83pc#+23 HbV+_x=TiQ)H>( Cx6jpj !(t#"ٮJd@eT\C:,t J<;p(6!r!g;ȱ y|kߔt!p|wFo\XTL`#@b DXo7H83#9OhKB(Z 0^Rg{ Il=ª'~_'(vm&,t^z-sMWr!R7n D~0v{9&HMvB 'Ɏ Sh9F .L<̈́yd9CWVŃG7aX2OY[i3tZ%J$X:li2!訒%:C,$ T8( rAZUy*Vacej4 SN @<6 1TC\*4;k q)O7­C%̃@*ˬČڋ/uEnJh@@%p;>k)q@;&q D$\{S ,cLWO7"V-a@8+0y{C-|I34ABT85A=Ti2.;5s-&.8[Ro^&t4X\cK !nm@, t2U#&1]Klbp D#E)RqDp5K Iޑ2N ̐g: ą"9sl% 䱍tt0 B5k+ށo4x'=مx H^#Qɏ&Wr`|n'UnApˁ(p|QA{1[ژ9IVEL1!5 YΛ$A"Iz\\F` .!4?x A JVQhGI :(H(jώz3@𼏈9)JWR!,"HT҇д8i*O@ PJԢN_1RT!u+MTzԧRX*Pz`5 WJֲ"c=Zւp+X*׺5t^Լ]_K*rMbM:i,d'KHVzvHhG˒ՈiSB$ !,eH*\ȰÇ#JHŋ3j,BHɓt )MT͛&t P,J/ %) Ϩի(5 _%Vpl_{]kqL %!P߿S5 K87`̜S7VDSiUm<I0o _{F rӞ:*t5 `γm ZN~l ˟Oɀ!, g8CA5*\ȰÇ#JHŋ %$4C>)dG 1$4h˗0#F,4<J!|@OD,m4gL -Cܦ( @ׯ`- I /D˅• , LD6lEmq,g6 ,xЯǎ) O&uk׸ AK,2A'D'&a|TJ %@ӸsT-=Idހ)dn ']znB #fJ` /!@JB̴K'Mw o=6Y%pY aBuN9Mֶk*d~@X-*h.fBu$4Y$E% m- y. [. . .n;C,Ѽţ0BBB瘱X' Wl6B50s:DEgbdm`Xe @sC`Ip p ]@2Sx43" 7u; &R QDS;ЩHoZlk@r7&>_/E4 8gZ{97Be_jMjqu&d*H /X\sHpOs9,pBY;6\ ~Wk\ /C ֐ ́I u9>s J־֜Fb cLP%IEJtE!0G~Ň9ER0 @%q @ fHŘ 3_E] G|м3P1"dk瘳!,gH HȰC#JHŠ/bQ#Ǐ C1@ %-tZm$$cۄ;9&(RL :e:5*If3H` iԬϡEX]&8,kuyո{aaVZ.Gu| ⑋ ,Xg!2nlM"j:,sA D'F`|TFN{u'c@xBH{ƨaM<"X !n!pc=..T0 ՃFXY ^B}@ Lh W@ށ'yqLA.sl>V6Vo_{tF2C8Њ-ؐyw܈ Q"1  -xqFH AM.yQyZjG%dYyuiŃG7aX2I># .Lhz'Z x# @n)I!䄑<'é袍 Tyf5 iqYg#A>S~)h FPźsl ' ԫ۩0+Y Opf['IgzR.TI2ۖp@ טP<ݤH"3 o5wU(!P whSNZ[wsp9Ϧ8|2n|nA@X:|T@<,MGP^H2J6 (0 G^0"~mnIr\W1i$bF4ZB"H  8)m24@.iʇxPi\#%Yڱ8}TKX2,%xRx J R7jJƚ(C9$hy;g md٨Mnzs_ 4"?DAV]:g4w1! zP4>π6{ ӟ Mi~I#c&u.}[;Md94QaG:AUQ ]>A_qc-99Z£cD6 2H<^/ ̈*'wdu]Q*. ɸF2!Q4[=\[ϼېGZXM65HRԧ&䯁i {h$ t{eSRZnlYZ٠u oWV6hKYB_ M" HXFZ\:!|H +p#x#2e1wR^r.{Fľr[bG afx a {  R !,h HP`< *Lx@ "ryąPKmƁ ?9rEt C& , S!͚8EiaΟ; *PfX >4:HIAf]X]&Jt=X*'Pf9i%ZA [vdݻ<^K/A~ LqAWE`A=]8΁NX̑XG ޝ@ļbŃ<@LjqX0ut!@D^`]O0ªmZ]OO0 <~8@7Pvu]yCP\U70Hb` ztF2G8Љ)(Rx㕇p;x`(@xB'.*:D#y 7*)]=`|&{\):%Ԅ;$ŃG7aX2B># .Lh3vA ` rAj&B !䄑<P衉 u&5fBd:iHCEu馔UWH`U:;z\Fka7t>MV{-AgLݦ2E;"؆:#Em%\3Bt Բ"3In17]YlJT71Pw9lEh16S1A8(>/65GjTsW͢L"qTä15VR̩xxqm9}mO^vnĿQrt3 we7*`-R1>Is,p3hQ i)xt~.9~1gf[~y{z09O+ڔ|~SǣVgE/DFVݺ/Y<6]sMV=S>>3zǎu{ !^SggH+A:L`e%< Tp"\ iTB B eF`R3P ]CzI!2u(n݉&*$~8A - lEz+27/HG x Ry @ M 6#ӐC9$s$mn!VP)ɓ ITe.cʜ9 ɳ'T2@))M=Zm&&9D" kpz1mxní"ruRue+TbɚUf]L6DA$]~y%F.tF2GDXР*@"FoIfZBxB': AdB瘥xUD F)ry . YOplB;GM Q?#,5;m]GQ D ]|`e@ Bz77Cwރ'8~+G{-1gWlFq7B'>$̀ts&B:P7HP<+螝Sg!|+0B1T17 k"S=~s9! agO`rk~_r ss񄧠/!ǓB%CB b `A 1a Q qa a֐6! o7:Q&9\N!ax,$aE;@L<ص(NF,*h0pT)s `q]v{{N4b3RQ 4i!g>G`s$ s\`6IO|Aɡ$rϺ8ke5Lrԧ=ͅ IajQGXD@\&u)gi&E)+)M>:iE3袨҇ω.lCʆ4!.CTL@BTFU[ҳRdk*NpR?=OԄueHQB$ I╊L$d|X%Du1YΎ!mat7ܔ\禕w^Zlg]承MmMnFzzAB [$*:vC|ckaP'ag7]Sz 䱍ttH1!u!^ ͸7-C$T,t0Tqdiq!e.{`6ށo4 s:S8(VcR71I+6 t1= s HΩAq%IE ;(F!0FYAHRp@$AI]Z[&C=gO[$yiz"^-2-5XeE'nA!y+V1$ĥ}3|[7Qd\%p  |{㉭A~!,h H`< *Lx@ "ryąPKmƁ ?ID"kpx1m"p4S9:sȢFevQdgҁF0l 2(0ed֫h*pU ,  ҄gF;_&h}"^L Sxp(HM \.d[֑^]0& UQd8q +ȤS϶ ' "%_Vm35pV`.P={`-dџ(P| wɄ7P(@M󀴍g!Ӏ^{6(".DyqC "X@xB'1*$b ty!wCW'^ى@`T$*x ;݄a<$0D OcSc\9&H@.ăj(HF tN:*x4%tfthHmCEJ*XH`iz;.QܪF$cÚ7y>fmQ ѨܚꮵX*'¹/B6hr %@(fa7 !>mt@!zh:JT71P<\SH[$3q=<w`!Bq#sm` ;srM"~54<2FXkmΎm}Nϩx4ݶifHWG=QDs֜B D<2qLw[ @KU: g}2q\S cAn@tͦntMMQ/%{:AHSoGK.c =ݟ-N뷯wk뽗:FyXML߆pk;Y< 1 Ny@1 ]j|GEȎŠBHG70t#xTjUfYӺ֫VLE:F֊\$H<:F#-kѾ*MېF\]6UHVծbıj:h t{DV-@j۲.jZՙ{U+ܾAn`' U FBZ]zw$MMJ ě(# |ifQ{GR߄(y 2`W$ݝ ML!,g)7A5*\ȰÇ#JHńȱC>)$G8bHhФ˗0EF4<J!|@OD,m4gL%!`()c H`eOÊfMz,^ӥ ;bwY2-YҵUm _ $hǐENS@^ Z@,VnC9 3&5d8R-Mۡh|Ȅ )dφ է]znB #fJ` /!.O AC_7B3b։(Nj] Y/=%e rOZ ujW9BvB>餕*CN"L!<ABu$DYbQICR;-Cb{BrB݂mB;n{n:\Nd-l3 P齛vz]]瘱3uC^j^,>&4H0V,VTy0lI: WL!0@<,1;c|LEo`?I\:RDBEwc8SfY0 98UM uzNM#G|+dYr*mhWdW.V52D+Hj/δX\c z\PF9-pV = .~wN{B 8vBy7K ua/9ӌO:lx u>ߓ%1@&d "6t68F2䁪| aS,!+/D0t#pVJɀTKE(5$ P Y8X_SȠb8Vv :2K*LEт(12yDxH HPC,%^lJe1hLg!,%g(7A5*\ȰÇ#JH"D MXȱဎ #~ Iɇ#IP6'%LBg$1qD gXa֜Yt*.|CBژЂsi%4z*b[iZ骤4C.smP  R 6,ŃG7aX2Q># .Lhxk8&HMB.ă )ˬG}fFuN[鮋45:YNB8F4Sl UToj&FD*G6#2f" 7>ͭ 5* 2D,5 oj,G6d'DGGčP@bBmP 8xmxx/|A9Q \Pf申Y Ǣ@B1čm !=CF5N_?~Eo>#a*Ys{ yNkC爗!Hb @?o!PE N)#HF£[yIj͋\<@ QW$qTFr)9 ] @ˍ#j*yBy0P2')8s `⑟a<^f>3Ѳ2lgwDBo㫂9ѩɅd <5J1=yGwSDsw xЄĴ(hn@ɐT  M8 Bbs!eFquOD!9#"sQ f- %jUUUs= )+#UiBxj3XKmd\򁄨 H{#\+W6=RI ]:Ph0A J7$+"1'@t Xbƶ(C9vF!x$Z.mjSu[߲! PV !0Rn)݄!Y<4ux dޑԇ 7 a/D\ؚ1-/?5WM/lek`2h ֊7 zcnBz_hnpLpAB+$":G{I|cgIZTW\cgE]SFV 䱍ttÃH1!9.OiCT$l*ɸF2a4i<*oˎy9!zϚ3.Aaṩ?x>р*d騳O s`'iO8V/;ك^fIW: 9wX v.>:ɑ$  ani")B#( +Yx;&MPC-r$֚"iBmnA9e4& b1>9 k#nÃI7 CN#*pƁ>s('0 ]8x@s!,h HP`< *Lx@ "ryąPKmƁ ?)Z C&,]d8daș o)\͜y )t$ѢH2KO# .Lh3rA x# rA'HF tNf@*Po4TPf:iHѼDCEi)IWH` K"v@򊏯)Zmp܌Y-vwyn)(j"tJۯ$ZF0 P P<݀ܮČktƠg5sQl@ WH[6p5<:(ck7,60p tbF5|S1H"eLUosVSs*ٌ=QEEQrq.\ߡ9@!3=ڠ|4#Mc3>@CNuWb1gݼB5uCuNZMkn/m:ꪏD㟽AL&+]UtY< 1 Ny@p821h(5 Hdmj @,r ā|?\% 7q|x6|@ *ǘ4ϓO%)14tiJTr&0î>xRh[ acMt3e(bB0 03D`$9NM3!pP~VLS2<#+Byg;mH5;$thh<5O:c7FP:t" 5Q6q1)Mm9_ Nq a' @JW >1ʐB< bC"8J9*o@TD4]BWҁ$>`\)(viBBA d/{dT#0F2ψIN$r |) ͢C B`-dXjPG*4ژa5NBEcP$LtYtyBz yEy&@NUH՟U"1h@f"҅}[oِ&D>czЇ.TxL@BT)d]TSk\,^RlC=GW٪YC a!! qLMk8b>QDLFEc Vؐ:B,\lp IN<msfw[Er[ 7C[puzR2$"+ZYP|UrDw AGoFw٪sװ|>EC$pB\a aþئ!^MnBkoAhBr}f7wل 5G]S6H0q'F fc 9tjI`҄M]DK 0A3*wE8@ $-Bx;B Dwc;7C;"f#w'd9\jPmd!@xO)򒛼"DBՓ|sEGRޓQNzbPԧ~ 5 !,!,5g7A5*\ȰÇ#JHѡ&*jqǏ=IdH"Mlr˗0cF4#!eܙ0µUdA9P )[%R|M'bnۤGyJ&58Q=Bj~<7aVom0.O25,?֣ @7XeL<@J#9p2(0e" PB\` ^B5^XLh 6BPsA ꍢ.٤HE*4]ƺХ#Cj$A$B2T<JMSH 4e:0:m=1E? d x BB>mQۙ!䄑e)d8B3 ~ iH*SO<hH`廲;-Ѷ~;$/er( f'7>ͮ :M{u-5TU/ۮZBH{D%P]@ !g{'wC3B x7'xB&DjRY7&>$tҙrYB :P7H9j9gY@ y|a r :ΐ7 sLy5n_Hu}Ek9"g"Mo ]SF;i.<怷Ab`'?!hꐐDyXDCB8B2'4BPB*/taB`8C"CCԜ&|;]|R0Bˉ ]p7$[(!~$ 1mGz K=uW8cGé3ҖdkVZғֵ,>'#󺐱B s\,!JRQ(]#;CAV 5A p/ZКmgD[r$'0BER63DSB6!n9PV !Uh  +D{=#힬]cC ]H 9DwkύB{&ѝ #YϾ6erۄ[j7In. 6D09;x#P J[5Rz 䱍ttyH1!y"V1>lWpθ7qC;ݸ(d\#C;ХB&AmcaƊ;Ff3!%ljS .{afjS~|x\eFy tCbp% [h.d>hUBGpu95<$ HauF(ZkZ:"U l@I*00"ֈa29dvCm OkԚ!n@BF |o$H ^ߋyr'$~'dT%(#nS$p޺)NQ؀!,h HP`< *Lx@ "ryąPKmƁ ?)rL2 JJG1ȥ$Yܐ!i*̩H8 tϛFevqና6-4 ztF2G8Љ)(Rx㕧q h _ .|bo8榣HbIbd9Y}}u&T"ޗ : T;XTxt% :„6*L 2ZZ.pܤ䞊:/,zr҉"ko2x$b$CVA>B)+rkCFi1g MBNl 2JDRH Zݩ %|xQl>2 9 3|UaX7fڠOvߩ!C@$ETH4 PH) 甿bDHbpFYҐ$I1y̛챏H$/9Fϝ/+r!?ƎXTv1 @ʁ@3PiIKγ2| ѸaTЧ  1]Yd<Ib!iI1t3 hGs9IFњ(5,Q ģliҹR KπDAPғ^f wn$ x] FZԗ&  H (# i2ߞ83FB., oX)6 &$A@B, X !,!,=g7A5*\ȰÇ#J8QBB3j8`nj?IrcH'Ktr˗0cf4#!eZ*`Ӱ()T)>PKmD;7:p 5r~ ܐXI,ڣl97JfP B-PBjФg⁄"]i$sybX]&L8y ո{aaYh%ú Imy}8Eq,URpS@ Ak8MIy5 _ wna1GUچ:!:1 ~!'q g[q rNԜC>h0WlQ@mB$Ądp1 nIc$  *I"z*ۘ,4t .˜ЏA. LSb% B2h#yÐ Pm# roYn9%B.tF2GDTП*<f fVzBxB':.h )_#OF b/(]&b#:`A$BP<KMdH 0e:0:g=1ECJd x BN[-Q梫!䄑$ ~tqB՟wrOc m޹B/Xf\:ޙz/$Xa.1KCjTs 敻"$K~zDo{{C_fWT 90³w<xӘ ؈$@d hEBЄ%\ UBЅ-L eC| NCyB  ':uQra } "$.@HȑdlJ9HU3wuKR~ /$:.$4l#Zm*E9wJ 2> As[3Ɛe2MGC:'"Vzdzj9]O͍<>\*A "Ҟj*bӄg VY54)H 1R\(+NujWdTghB*KݪRWҕ"2`"SF( J| I$q2ԅ#X%E۴2 @ʑ 0 y; q̈mR:޶ k⼄IsRa:d`@B Ti(*D]" @jWjEpwzq{VWoeO7m&Ķun[7FP$$ O*Lt$HPKmD;7:p1mynC$fXѵ ʔ W%3K$B5  p3# I /DH΅*<, LDh9qDmV I!]IK۶Y_pM{O: [@ Ak_8MIy5 _ ura1GUږzЉIXU\|Fr"7 1P*8~7WlQ@&FmB$dp1 nIc$  *I"z*ۘ,4t .˜ЏA. LSb% B2h#yÐ ܀_lMP%XV[N 6*$(J#=|^IMZBPgQ%;d "b*a"i;ӞCѹٝAB)\ 6.ŃG7aX2Q># .LhÔ+8&HMB.ă d IKDfFuN@v4-čyqƧǘ#m4ȐN9e0f!alD/ sDK \2>' r3cp:@+x4Q9[%uTsV{-ӊMh76=tVx $pEPx.xC3TxB+N4P<-NDjBQJ )9RSKRvzƗ*%z@kS&2O|GkU8q $De],$1vR5+!M=C̸'"ӐB3Lnln R2 @ jх!fBH0/)b fR>ă2kD Sƕ"s}iXҕ< Xo֚F2ib0Tg%`'.#5.Ɍ'ƴAmPQ`+9#Tֺe d-ĸhjʐ 9PG3>nu6%\FvSPq\Cn)otMWlAh:Sۄ)p`nrRH`7HH$[T%>1!]>A_ttJ9"A6э j#Hy6@Usc٥L.tF2GD^6УN*F"ЄC$f`BxB': qzdB:9k[kBI噸 ,C {mP +U<KM3H ,e:0:i=1EM֫a$Bfm ~F~~WӅb*k_CЧ>~ :.oT CuKH >nTBCBb ya a֐ aq 2:|  ,U X<wpIl]G5Mf$ۮ-2#E GBa 16lPI#t! Ȉ<1f2p)%?QRU|> E#գ *AA6Ad<\ LnR"%@3$FR5LBBORTrj*tR= aFS-m % 8 MfZiB%М@QitI۳Fd $deN,3%1 l% & Edrhdʞy:=O"Ύ< OBTmU V[FzjC%*-Y=*H$DK9+FyUDL.5!m}k\'0IJ?>tQ.05(-ƴAmPQޡxh aj*Pֺe tӐ%T9dd:՞!(*Dt(j! hI JW1ԭn\CpnBЫ׌/Dj^󶅲m6[(&usr}w WT  ds c#>1є!]3.)W=GR'c|LF:Bm|%Ilxipc!q{gH`ɸF2F4:Oz콃ې>Zǜ9kvHKaN D0@@!,!,h HP`< *Lx@ "ryąPKmƁ ?)K'iP#$! CTsOpthТ#"]E%%>d:HOA]X]&ʕk*g(XKq,g"D+4![ێLXᯊ 2&Xxऎ#k.t[ҵ7@|W,bX. `# >*'a)ѥ j%G@GP$lp3Y  ğz1Q< m# t9!GlsL%(@4ڈH7Fb:.8 -PCIP \NURx%|Yh`{bIh$|茥B HRTTѪ*a FѨպsmlDО*mRp#i麊.,{yp #:ÔB<;v@ @Z7 ,+1Û/ 7uB/D MM.]GjTC=s,;qIJvkCS9Hbywkw''I=QsmM tG\ӂloA h&]<,=V<9f;zBNp}&t5sj,/99ut:O)cCF?Ůrx oj1 ~}kv?k`h"cDqےc;OAb ( xg5( N$'L s @ՍHtj#"aD}IbfDlPЮl'J$c`9D mЋ[vX/\0M RyL PHH|dr`@.~p=tnnMpPEqt`B yDe.84|@ *贄K^ΎAPPL.P$)P9LD2Y_S (@xXtt ׀zGzRƞ(C9 `YM xNuĤ"O`3!@0FzF+ T(( wf!K]wTHK1e U9Zvkh #;5)J'bS"/= "tp @:PsܧW5ZI F7э# 89. /"Y`Ac t#]*ח55Td XR!JMcK"I51a@,~:˲@ 6ŏ0ö-o?bWꕯm:fCht;r -X׽bW8sf߸{܃5>;oe7{.uoK]3Bi%b$+Ib#Pg-o<`5pHRp`p)W2l¬sbx8!%.ʉ`ҵ  !,Ug7A5*\ȰÇ#JЄċ3.cGClhGB \2µUddO@)'=Zm.9KO(ܱ  2`3 I /Dyӈʅ• , LD6TΠ&@& $H B#NS@DM"8&{#РSjI&Án m5qLjq@ژIx?P}B)ѥ I3Ԯ0ªm V0 eQ>+ܐ|ysy\j \B>` `ۃ0j`T#36(9qsH ̕ȑɫ*_g'h IHX \pM*E=ˣ-總r9=V@Vjy5jIi9J/ 2):bq9 vzeRa;6z239vӮp駇iyC8 1o&M4{CB]Y*M<(B]T iO=SnG lN7j1Sjg3׍`G6liz9JU t#VI Tλ>$)\d8X3U @f$L @ `0-@ɛʔ .(u!2 Y֝K4΢ !!!.. !,h H`< *Lx@ "ryąPKmƁ ?)K' ܱcDᐅ!k*̩s7w:I(ёF*="T #͂>\:HNA]X]&ʕk*g( Զ /ո{aa3VLRmG$X0Ɛ3lOPB,AZX#9rM`*@ 5.N*| s |̇[iR Smr:LjqX0?P} RK/`a6SLB @yهA`-dJ(P zɴ7P/ t[B7n =ԃ&x_~64d#:|a0Z#8I $AC's8!Y!iYY83B 4t$ŃG7aX2B># .Lh37YX x# rAz'BF !䄑<P饙 蠅:5j"&'DA5 RWV|&'A>TTQJ*a FQٺm!(*mDԦjmNVmpC̩Š6-n@} #4+B7ĖR<;RwFm L̶tmsCND{d䇷na68=Op\ @nan<<,:^?N$uH摲NWS։R$^jrlCe3>7 Q,c XtrDF9nc̬/wQHk9[;j8ozTe5C$@'Y9J6 a}91L!,]g7A5*\ȰÇ#*Єċ3.cGClhGB \1µUddO@)'=Zm.RR:rFnBL@ӯ cФGㅈ5oQжo!qE(ׂ m _q,g 4pӔ1>7ۋmެI&CtbVG%@H P` PX%̃0݄a<6$0O O3DOL1buqa$$B<ЅnhS/h9a!Mh#~bLsYBX"ud: iHXWBmP ɐs IS AװP<H>JB̤K'i/:%d PPic)x{ . 颗Z CQ&4H0cdZXǃ`.7iv0d._'B@2Sxf23>41\3)KSU#;H4UDB6oLjEMf2a4/VM#GdY˞-48ѭPmk1 `uVW[3DvQ>Hi/X\Sp^z[PF9*pBV = s̴~߿z쳇 jBܴ x,7$E39{>cU u3r7=SOBȳM:(M:$#O Rվ.x-򇴇h{E:C($H<& 52 *LT)NAިh¥!9f;-ftOOo;I͂M]0jBAJ<ܑCNdQ7 pr6nyK󞗲  w "L!ԉ$aFŬ:w5]< 1Ny@lb ʄT(SC4rw;h-8)?;s d&7Yrqa  )De WzfMMrҔ f"Qn"$5͎q ".@^J 6ơ(C9jy; ̀*U)QZD^q6ODS Y< @n=C3C-*FaP*T!:i|ʖ 1D?MS*NU9dAɚ0J*kVծVŨiydV B< -B( Q0g>9׭ rGw :) qV |T"$@d d2Bp!%D 75aHr2%:e ה1rS yp390ȏ-8ǙJ &1Y\F(O:HypVg>bs% Prx9|L%R[e\ۧ&ILcBk iOZ 7q b!9 !!t j2DX} @AP ~.34Єa z꒤9='\1>^!E e;R6 bg= x(2e'*S~ʬI%(]-jj*؅5!m}.t0Hb>$+ꁈ"? y@{t\ xc玈ZƵ(C9p@d<@+څ0DliK7Ҿ6_75bHCVHVVlw"Sw[Ӧ u85^ jUA~[6upR*ey9;_rM#' !]CRs$G:A! )v|!e@JrD BHG72t#P]WNȏ~.dXsM ҥ ()=c.AT12e!gͥrhEBg+ra(AEɩo*IG"L6!0BWaCB=$HR!6Gb !䶈b !j &z @ Dd`'(*aRRq6H*p Ƹ].<&%J:ޓ$/MNA8Ϲw @oH@!,=h eX,1lHCr XE5P[SC.$M@*iPƣR%@! *[')X9`X& F!,h H`< *Lx@ "ryąPKmƁ ?IRR:rHcDᐅ!k*̩s7w:I(ёF*="44`dׅeeQ`"HXjۄP`@5^XLh&Dpڑ0#t~m+ב^]Pm ,BtbVG#dY O[8ȗj^jҮ qXI?P} RK/Na6Sg.x wA`-d*(P} Ax7P) yVexk)ԁ ^|60$#6zqC 2@xB'9*b z)Kg^q!~ 9Й5 :_)DچM̃H Ld:0:7=1EE֕a$"B<@P-DA5 RGcBd:iHCCEUXH`YKrѠ F$mԂhWj7q"D>/Fy":i+qk(#ykO7 2">Lnt@9h u " @5 Y UpG$PtEƇpM\BHt󕱃[! R4Y@H`qkux!ʰqTiFH1@ ;P(CHApЄ.:i zܝCf7nSHKmjUՠaGQE$E{`W @Vt $,^y B< ./!Q`ɸF2!؅4\kh؆7bXbɥ+ܚh t(wmc^m /)[ymg?;UּU/6S.6ItrpLX8IE &K @0qARap`)Vb\ ť1scؘK@&ayx!!&I"䣔1!,mg7A5*\ȰÇ %$4ŋ`ȑƎ C>4#!Ep-@Y*S9P )%N|=/bnۤ7kiS=jp"zEJ8Ґ/h5̯FR.<tm[eeQ`"ŴeEBUhVE` D4%=mC9̹4 k1R-v=eguLL${:]>ҋob^a6S gkx _ Æ[ϲd^|νwcLgJ SXb5ĆG7aX2M># .Lhӓ S8܆ 9&HMB.ă 3`^[BNyCS3H P 64XP 4:TWBmP ay ihA`O763bK'6Yfr,gB:P7eʩyZ؄9*Z foƩV qBܐEBu$YbQIC*CC0OEZ 1b*$ u6O)x4{ Nf0cm=-,Ϯ,FP T䱟eCe'PZB4fF\l=Bo BU\W&WĈl"#IC|XB謊5 -C}wBeړR'd`lSy6=1} CGW7$E9I>̳ 6+ om;fS "6t36D˗0SđCB1F4<J!|HEOE,mth΍iժGt)C&S6=SV٤<.tF2GENО}i6*&ouљO*eZ&.|"CsR7&ĠCiyX&䊪(cCJ[ƺХcC.tM&t%̃ش݄a#[r/gFpS!P5s-"SG}s: -z-kc[BFsE&qB 0Q!(Fz P<-NEjBY7u4>$Č~tҨBf{ 2WP7D5:.fS 3ȑ0B1M>3S2m$#^qW(E[QSE#欋I}CC\U޸2h|pSB~ OJ4 C08!"H^3K㔩\8RŇUPhi(D |P>:C3SZNYM.EcȜg58,KqL*yH\ߤcEzK YebB `qB`[BEg4$2LCLDLz h&ZfƇ J r |,CHh)`pQiN$DPj բ*FjyUfΡҥ!Gqj*x=ҥ 1$a]E.qpN2KX 0lxfƱ(C9pF!x.E)J%KY!gm<Iʇ kU3$h6M,r.f mFa\minQ V}nᄇl{&ЍdkYݧq; 8 tR1s$G:q5 v|R!Ŧ@2F BHG7t#L`]8JAi>K! /k0t#PH2y,!G#cݽ1 6AM>YQr W"I^r|-ա7N9L(!a +͡#l38^ Bh,bʘ6F,T,wUxZ 9qු$#s  jEMjX#!`fp$IrPs0 l$96T­حȨ &y @ NAN`MraK͑YG* цܭ~ȐJ:W48Cl8 'NqW xG!,h HP`< *Lx@ "ryąPKmƁ ?)O' ܱcDᐅ!k*̩s7w:I(ёF*="\,1$.hC .,.QFvݺuEm _q,g"%4ڥَ\pĊ2&䟕#k.tZnHCrYn&,6 9ZM44JN*|,q Ό|rcnT& <ֱ1zt!@D^|O0ªm 4w]@y t_~E<F8@8@y@>6aJ ~tF2G 8Ѝ9X|E@x@xB'>*7_}(2e"^杘abl%*VvEUdG7aX2B># .Lh3A  rALZ)HF tN@v*P&4P D5 RWV#&!]A>TTŠ` Fy 1(̡hmDغm5 Opcg[+B>)֪Sn*(Bzzj@>x  9px݀Hղ"3 HYwic`2T(!P A-V9>47BN"L!<ͧ54&k"ӎd75q6Sv37ԩz]\PpdxX<9IrvƃMYP>SP7Ӗbz)x.>ҋ&L}<|=ik 4H0nk#FJ99u7X/ByW~ ^gaYB~祝$p 2s\@ep4B8Q̜EQFi ^)p (!\ЀL'0I TDUARpG$Z7v$b1-EXWθ hdZ@nˁ?Gц9o60!ۙF%*a$4H%J%MW{#ӐIaόB9>Bu;zVr˂!yc~Y@XR luSr@TYC<&&5)f~uL(Pqsv+i33\P@F(It, ̐Ơ(C9 ^QxSaB)H2ԡ+\ Q{AjN*T&bdXK~0%Fl#7 #STg<ݥovk1LTE*FTY4lW* ]Yz:5)74DvBZ.(g\#":,>#yl# Aadhx+g ԉ2}ld`E:C $H+XG%ow @nRl|ef^{G[fqxJ>`c#IN.t 0H5y(IB$ Rl5!pO6CG!$Qw1<GB!,6h HP# a z(Tw/,rM0AN *(A26Y>"A+jr&.k 6q/ t MISlVUBJwd!TJ!*ϝCmsuBT_ P9`Hv-<0q0@ !,h HP`< *Lx@ "ryąPKmƁ ?9rEt C&,]d8daș o)\͜y )t$ѢH2D"h4Ҁ!S_qE(#jպ!] TYֽh&Tڑ0#lt~.Y.*@|-0z bX.& @'F`|Tv;8F -^@:/ʣ'ռ0&}cB&X5u, I̽?P} RK/XX)b[A ^{ A`-dj(P|@T;]M側,1>7u]aHlsLI@@ IHq=7I!;.|rBD%AM't6M!ɞ "hBq]1RTTk_ FsnUzi mD*nFpij- 61Z+qor+[Nw@$["ȌOx_㨇 y)H k ES *訂 1Ny@<PwhhCk&Ө@RE*#[4E }Y &3P۟FЁ8ʢ&D.@dȅ3M9bD!H\j G GjH*h>(Dm8<A9@IJ TXcKP>!b\/?KbR.xJ6" 3-2Il^RJ)NHJ:%: MiR3 d4cM #$:kh0g L@#3 06<G=IfTT\Bׂ4RY9(Rt_@^Ewn졒 11!rL`6=Y[r`I.tF2GE[&Т>jQC6Czf]iBxB':ĩ aJp6ש X?%䯤 |5N}nhmP 00j`R(;|y FQ9sˮ.̰YOplBK@]LQOS,6mmw6P/Tm%cE ir4 $Q!(F =ސ}IJFt JBK')!.[C^%pc uBG'{'졏@ gE^c>^ ى@{CR3[Sy_!A;`@gG~ W?m!=u uHy"A,T!&D +7fQ$x:`N!bHW.$ak I:b&AN< Dd -xa @ȑ,= )w@9 0QtHw)Iт܌h@ܣ`ŖA*Ja$ض t/ٶB:"Ty @ %Y^ W.򓬓!1^N y@<Kf4$]^4V/*iG@OA~TujC*v$9[BeYRUᴠ;r!, 4=eٶm%0P_t2pg nz35BBixHX%,i1KVBqN)PE!&A&sTi(H+%C71Uվs"E')r?Du V*Ҥ1 MNN* QA<.(.Z]iKqƕs}NmTI.BΚֵRdO< H1UIRa@Ft bƴ(C9n(e2=ujYZ6dQ7P.!KH*TW:d YbJ:ԞDn(j ݄LץՍ'2ρ\otߊyR◘l&MjZ*@ (o.$.:wGtCz'mH 3Ra(н~#xƑt8d׷ 4U0x($ !,g7A5*\P&JHE.j81#Ǐ /đCB#\ PEVH4dxB rr΋X6b͙HHK> &2&=$P1f҄FP.` 0S 6ŃG7aX2L># .Lh SX݋ 9&HB`.ăX Y2BBNy#SG&)4ژP4- 9p3U[v lP!(ԆK 9Q<-NEjQ< H>JB̈a['Du`G[ؔ:P7z*[vl [ Aʧ U & +j$PGBEP+4C0OE^Ü  j׽O)xd{ kQA9.rF %&Z![R;l^f,d l [ OCcn nðWl1_4M8j HE&XXT2C@wC87gސP39U>3 u359y|]N BȳM:ԪMSc;>G2|7e%C0@q*C9_Gf[)d6Q "c,P-0IP *)7(5z!HBŝLK8  U[HP!,g7A5*\(!#JH"3jqǏ H!A" dx\F<J!|8ĉOgF,ṃHa NA %2&=$2&҄FN.UX ^nA# .Lh Sx[ 9&HMB.ăX IH1BBNySC0ʘPv4%dO#BCE lP!(FKDFt$ JB̈['@gt RSB<@ VBqΩ3oSYinhwBW! ʅ7@ =XTUT+:LJiBJ(oS ̞cBnf'el+N2iQ s t}@y<̯-+jlLa@@<_jvmkmSJm'L`̣$DB cUQk`o^+'4OM#`/98S 9<F. h*TYZiČlɲ c+t;鳃QI!`Bc\{3l}tn-7 D y4^AzCB]dn`2>̳ jKE<8C/C+$<ۤӍڤsL2!$+!:12Hμ't.Xo'JA,ojMV" W !n!pc=/.T`@$\m*ۘ2,$t ' Lr!-@R_ݑ'G(Pp mSFx Ag$1q|yd"$ÚBlB1Þ]r$l0#EsV

I[%b& ; !,]x  (0*\ȰÇ#JHŋ3jȱǏ CI!A%S\ɲ˗0cʜI3Ɂ ',ԙsϞ@%4QhE4cӥB:fA#\ PEVL `(Q &ρ:VXm}Zm ))cP# ` a7Z?N9deeX" 3®4xᚂF(|2(0bn6aŠw/,rtDKx9Ujxaxvz̚IOBmF[U( h(<O v3:&C8bBx:bT>T@(fz}Q{Wa| %46@A@BM>yPP$%VV餖W:/{HCxPL)E2lky0F2cv⩧A'iF%/hVlcA%p1*(B`-daPzPNgwyPΠdȢA"y"tF2C&l>Ti6bŞhJ -жCt{еB܎ib))Jz :)TA.sCK@ 6! &C x&B%A># .Lh#hSb1\X OS9&Hr.ăŃG7aX2}H+ !䄑"IxxpC439nD=:A1f{\{m]QOmA;DčP÷;pn 1u6M5nO?;+1S"3<_| `HLK`|1t(b܀j nB9-䈃5 moO;3rD8c 1pop 5T; \E$."D4Dh@xDTCE0F٢{qxQ*x6PAI+$ ɞ&T&BB&ĐAAȆchfx!AU-d!ȗftOHcFăMҢR0B\PPw4"Y-qKVBdq3 Q8m(ռf4wt!Dt:QA$,C\ 3jǼMOâ<y<a܅@m@{<# 3 O =ǴճnBHG7Ht#`1dy{;!w,t lJ<C7'؆<fx\ 9nq U NW7ރ<g]ng _><|M:B.ozUusv '=*M)Kg4^vKfǨՠXD$4I$ $ D0}IA"y#;5KiR^zx>!}x÷^!HК- va1@fUZgOKO#.pF?}bw;#BO׿ _>OWH@!,ex  (0*\ȰÇ#JHŋ3jDHƏ CII*ʖ0_`ɛ$s'Ȕ}Bp-@YBR#D1xĊOC,mjRґ;@}x4&=/<"3\SzH|eX]&@4<7M,|<.P4A/ 4BMOS@ ZL| I]b*gԄtm 57͟ݠt֫;O&Z_{$N}ڳR bIv,BٻS1ɞ`78ݗ~ *I"؃E64K0 ]@C " LXIHAAyu:&97$r1T<MH g a'޼RRiH 4_ڈe_ S|@:z I. ݄a<Yg_BNyhV}y`z5Ml[uV"uf7JP@P<-ND%\Bvj i^}A#+1c&33S2vd Q aql>$8Lp!r`HA*#Բ&L'&< a'T@<,p-mh)x$}.pИDGMs 4=C Ld}Q[#$,"P ͌w OABsu<6+oBcݛMsysRW))SG"X$ΐHYC ~А/ΓAAz;А>Ch{74yθl>o>?t!@r;nU2CҏƐnƶy0,OL;@!dDͤtT"X֦[',C9T``y;I ٷ.`B !_J噔(' b"ŹQ!9#ǽ ]yʸ3I!<9  3 5K 3HBHG7H@t#hW1M yIwD.Ҏ0t#PȀDdǕہuJRmRCAbf0IҜp`0 ՂqaBB]1DCF n&t6`aLHN L`nۤC\yPR:r :Dp 5rX<7aJzόDuMp)ӧ+tX"]"j ๩@ᚂҡFx{2(0%dڮLm`KAmq,gD ]VT̸adɔw6V٢SɠJ']< S9j5tۤ L.׵!9r{&Y m ,UQXs ;_ }7L: Smrp:x=+A dNd> I,Gس#~@'E%/[)A - E<@&@^x_~7P1 ΁@ @vuɉ&Au! '<ƈs`hAk['P* .@pF B&p|y $0 Cqʪ *LsK1Lf0:kez3zo\&5Qk4NQZs N`%>L%dIBƣ'<|s<2 9Mg4щk%稔XڨlL%|LfC` Ƃ䓡 KҖr!! ;1@+)TjzQdT^*v@G:ҁŵ$8a XeBqQ ]>A_X4n Q9 DF:AYɐ t#' 1RY\6Y8DAX'$c=H#b9?:;ȱ y YĖedxC\eNE84|x,aȞ\941}cx-Lg;㹨ܴQ,w%@A$07x: kATp !`*XDI@"앤Z'ͱӐdWq6PYKKͮEV]j5u!,e{ eX,1lHCr XE5P[SC.$M@*iPƣR%@! *[')X9`X& F!,mx (0*\ȰÇ#JHŋ3jȱǏ Cɑ A(S\ɲ˗0cʜ@ĩg MzpQDnD4!ӦPYekȊIa t% $9P jP->PKmij3ݫ'@ Ns88M a,Z?N9de eX"ґ;*Zh y3EfA7 ϹbwYUJ-(,XgPf9{h9 g{B{4}Dct4 Զ /QP.D`B"4J L] %H~B82_DP Ug|A0"oEt#c9XCl@~iBtA dMdJ2餕ќ/{|5ϔAX$s]&TmIc$LQ@&riɘ$r 햡A)B -YEqyP-Ƥ 5N>C6G2tb"tF2C&tl>c6jh~ -pе4"^AbgBm:A⢂Ά i:dL%̃x .@pF B&pMy $0W *L%T9 EV\#m6M6Y o CZN73>& 54fMOp0i^~3bSW}~[H+؛޳)L5 RnTb6.6M/nO2w 8+1"3 8X7n sA5T< \E "4D;1 !(W4T aHEY]A1 |AD3ؠ#$ QܑgLA*:*Ď #B!!XDD!AWQdxC"DB XuT%$ jH*n1&5HcfXe j(2drH<7ʕbZBYT[s`^CcE:c]ajc?1t|l Xōvg9;C A) UKF|t 0BF 36jMd`i ҅xEj'ߞ߁A!m$6qdȃ5N<3fO+U=샼Ibd i< F5ܪy9!6ׄ np^vC;;!OGpd+ !yD['&cu_;q{0Ig`I,?`JWbҩt!4H!yH8@u RkAHBv8#)@D w%B0& %jJa%ٵmIc$L8 .|_$\[ 'Plc@c%p1r!A`-d!P78&x` 1bAM䶍,y֣!Ag$1q&=7A8Mqxl{Q Qgk)pH J촯-Oy*y7b#o|A^=}\y.su5XT3D/i@>pRA }hQ~5$P vpH< 2sH(ƍƋ 1FNy@<5:0*dCHGBW,) MxHr g> $t!'%~&%WO%dknZr%!8AJ'lQQf蕡_ւ "2l(yPV@ XRyj63 Ecsk K{ԍhC\ck1-jV$r}=vMl7rW e^ 0.r[:HG:𑹯B#. Z< 3 m!=~}2aBHG7Ht#p\1L?p oW{5+ᇁ?ɘnxd8q 0>&wcHQG##YA`ǿ})w iA S n@Ȝ_9vi6K .|ư99]rNC "ȹv8ՁX@([ 0JDOIAYhTO9J$ݓRqz(~ܦAk[{".H!,ux (0*\ȰÇ#JHŋ3:$HPǏ CIBNXR%K 0I䀚o Ts!\0I(@<*0A>B-ݶIeY=%#w`O|8ЄVdk tR/i0oa ˸ˢD.\2d jۄ=ptB) &uxOd`" '#$gK4[ @<͟#WPMf_{2g0ĒXǗ?`c=mp×O]|"^$\a"*ۘr,(t !rLP$lp3Yġ `|BjD:q80j`2a=09H7udK:„6I6bHIX`:0:Ca&[z 0 rAṂlu!䄑<袃9g^VyVӂB%s<ԀHY#N;KDvP<6MvGȊAt 9ϤS\ۥ/tN)-B6j 3S2mXB+TpB+>DoAȈV#1&L'& = AL4{'>D:"tU#ũ4r/}P*j#nPw##5O M#׽鸎 ocrl[W&%d*37̐d0Є<8AOsS,IȹC:"kgCO퇐20 P/<G$1cӓA /!puC_tvm!6LEvH>axʕ@Zgm K a@q  ]>A_,Xa2DF:A-ɐG]ylBdaB84W`nۤC\YOėzJJG1mbIܐ)y *A@3tæNdaDH@ ek tJi`؋oqE(!ׂ] _Tɢ Զ /ո{aa3VyPS{+FJ ̛' mjV.P`n2$0:Թ5X g IAtbVGEdܝk/Hb0 zEujXx=+A dל[&39[o 28I$r m@)2_A -4@ Lݘ$.(cyt+s@>̃69$O?8 tF2GE4v9Зaigy e\ڈZ .|bAWʉ'Aln@ 1 (Gx@>*C'*G|[ex2a=09H5kB$0 CMtk`:0:?=1E…Ha$.G7aX2kb{!䄑< UMO @@HY"ueo9PzQbUlTn|CF;w`Bǫq#qpܬ1ZRůuS<离nPk~2u,m!9pUHv: iGo=ˬLt̐L:U&OFK'إ&:JT7$P<ƛbcE[x;>7A8Mɺ3S2m` =\ 5 /+C O7= z*+dwq_ }'ՙ_`@{[Ge'-3!Hd*$"w0`ĸl $aR9:; ]B⁄&T2|N Yg(3Trԡ\!YbX j|oB"$2$pbCE+>O<@)cm}ntB85#B=qX8p vΈpH$2Y#H ) Q7QAb  xTl#]㓡%WR" -:HTyYԤ*'3P1`Ld:$ZYQ3![&A8hbG Uy>T/%(GIMSbE6Jϔ!Ijy@L7KI0?)摕4`'q,LCTK% vz-d>!l6 i+oJ\Ohm`|,H-Pm5#DU\T = PTBFJ0e9Zԣ&5'KRJBd0Py"%\jWH>08BgO,\zkOƖl @N [<*dhDN֯c Z<IŊ`ˆkk;%(Mc[:= ru9wk!nG\(W @\J @g 9m;+YN7ս< Fu!:ґ|N%!.#2cB< zSH!X 6 +ɐ6y/5"sXphY8@y,!NJ# R x9!d&/2l s vHj?x>dhYy~ʞ7gGoŻu<:*/[ w0:$@A$08+ jATjPV%!`BdXDK@"앤'>ͱsdWv /'TrͮuEV]iH@!,^{ HP# a z(Tw/,rM0AN *(A26Y>"A+jr&.k 6q/ t MISlVUBJwd!TJ!*ϝCmsuBT_ P9`Hv-<0q0@ !,}x (0*\ȰÇ#JHŋ3jȱǏ Cɐ A(S\ɲ˗0cʜ@iPA4 ТMtӧmZ*bR#D1xDOC,m,c$ctvɚi┍CF[%!@(ݶ@5&=epMqE# zawY z(T.yո{aaV%xF*o?Gc^PMD<:O v3&C8CmcP@p @g:bT>T8A}x.hP PP*8PA>sh_@BQNyP /{84Ck˚.|B>AjK.Byi+pt.*БhyPdG%̃x .@pF B&p+H# .Lh՞hb>L*LW[WϴѮ‹LkӼ hC _b{@҅8 I3f>fC={f|5K 2 9u'@:˾c1g鉐b+eDu!EhCL&D)-b↵fuV>`.m? ]Қv^╫+$ Jo!w;Hr C2DsM aLI]l,ly%ΩyA K!r_ cro|)CYHSRѥsP:#>@G:ҁ @r!w$bzme2cԴB< µp 6 L/ɐwyp¾nWe7AJ M`k蚒1Z6XOl|TP 6f4wk^w:-X=?x>fsW __\᫮o?9~p䦶9lf;-v'^7. K5tLHe5}RЁ.%8`jqG,H`yH$X 0ׂqB?$[H1RgD()!tw񞑽w\B =#)`d*6E+["C{򌷈wwY/Wzd%)y?YO򗿔!,x (0*\ȰÇ#JHŋ3jȱǏ CIȓ(S\ɲ˗0cʜXr q`̟  tТEtӧkZ*bR#D1xDOC,mcp^P#! 5+pb) 5!3 kp{AJ5&=fpMrE# zawY z(T r q,gDKH9UjxaxvϾn/7\KS]*><4J C@xn1AI(P1PT>$UwzGK2DcC96#TAT@g`JkI xzA=&kMNjJr+A&.*hPpk$iQ 6! &C :#fA># .Lh՜hâ*r OS]o@:z .ăjŃG7aX2-F`}N_m4J-5MBte8F Pd֘l88BC9{^uИq^6p,xIwnv<:A/$_T[5U_}vKs:G/r駧QA}EDpCjGmAT#foP ÊA̰ 9Ϥkɢ/zPfB|t(%Z j:l\7Z!u` !-R,UP-p1dv1mjQU nQA"h@TnwYִ5Rh}l&_p8%^D-N7G'AIIOBvHF I"`#a-HI.'LA.vI:F*]"P?⤫"d{B^IXBD9A" d*5!jMCA:Xc-gMz 0xa乪ᚂ]ӋF(;/2(0b` g*\` Z W$/mH2DHq7,G!ax-5H h|q8@AP{V A,ɮmm0Yi3~}B{DP؀E64K0 ]@" L] zAyss'GBMC%̃؄ .@pF B&p y I$0 QM>*L<<1 fn  2AMWxc9a!OqjhqmgPJY4dEM[PI!Dp KDvȉP<6tkŪ+1%3a9wJMw^=É.O_GDj>,戵s> 16n# >*-~N><QUMY|j]~3&"E<)@- R8P {QPQ79b^iF(tF2CdtfkZ:^?Iecb .|Aw (As(НA l!:Z9 t)$~Nꩋ4(*(w72a=09H7 tk :„6 ]60l6d:0:@=1)v;a$B<5PۖůOp3ӌl-lRHߦ4.Yn[l!EqO T5o!dGc@eYvƬ w̐L:^ OrK'[&_ [(67n7['lueN4Axym0B?F5DU!%JG.<>\Xz*[8tcoi}CѯJm9\ùk9}?7[`Z<HAEh.VY`g0&xB2Ră*R0A\$:h6a O:K:*)A2q -H𴡹}iK9\rA]b|vbGF(o" #Q/RHaCů Q1p|$U,Q@D=a$A,DYN%3Ґ,#$@)x xHI!QqMmϜ,)TYٴAvD$+< 0Ap+gFnYE(W|TK2 +*q%c ˉNǒ,l=`ژ!wM)ht6AD mhbӚBF==p*>ʧSЪYVVіv CQ7m($~a *T865,$Ą"-DWvK-C9`vy;J%ea9S*+A1#qCV[e 'BVaπw!5So[t Ahk%& \mam;KC֏u.T]䎱lЫ^|V kR7.RTVW%>@G:ҁӵ$ܖa XBqS ]>A_XIp Q9 DF:Aeɐ4y!|AbIoRq ]PkɁ1"Pˌ@ 6LZZC2!P[ceFfJ4cd$3=<;+)ԳߘІ&HW.o7$ 3K,H`+sBu 0ւ+q,ARR$fIRP?+JvRG!~ ,;;fu kT{ ˞J@!,e{ \1m` BMJDCbNV|Kly `V(:)&Zy!FtG!,xx (0*\ȰÇ#JHŋ3jȱǏ CIɐ \ɲ˗0cʜI͛2Sɳϟ@ JH*]ʴӧPDOիXju&ծ`ÊKlӯfӪ]˶[hʝK]q˷_y Lp+^X*Ɛ#K)˘3klyϠ??M鿣O^Zmְcvy۸ͻ!,!,!,!,x]HP *\ȰÇ#JHŋ3jȱC| CtYtLx\ɲ˗0cʜiQHǓ'txh )УHb8S#.l4jC!>׳?|A;{uv4 hۍkl@q P HFO$ 968I1 4~MC#~k @~ ծ !Z"IKCE-Ŭ\Zч嫘V+Ob W 栬i=q6]R;0Dr\D;[.o!f| O?h 4@+-xj,h8h4VĴ@RY˨%[!t2˴RH/2/ߴЉ)2y8aʆRh*cAdR(R,rAe2J-ȕO($%b."@mFL1s (n d&}GPJL $@'61~E6 Rc$L9wfM@P" ؏O+?2$C;g\ӌ90>R,Y[,)BxZ{Yhx!8IkN3 ޅ^xyZ̋^YӭMO a A" I |!, 'K` B sAWXD<Ą T '%I.22P# Ļ@-ż,3o5 @ h1@et29R+œBjTS/ Z3b*Vp‡>T n U`18sB4Hp.X^u`vn k\5r ;8]Ab b-68qc@nB5k^̘2,Ot@ґYpO v3ătAA:fSH ZsGCTbs Z 0pdtѐ]An r&   2J qS#2 i-Â:@ǣ1 K7R!NV<@=  \ahC.(=&" Ĺ,`U\A2j5́_C =@h-9'5 HLS@6m. 0$@Dґ(^ߌE_)D4)TG 2:TRpr-XP Ȯ6RZ)5ݽ@W Q@xlJ$ŗ@1Iȅ$BYS3,DlMVX-}y>Ձy @ #9??*AAL *bɂq'O#ɬ-Ya(i'^qGkE mj ,:% _Zf΀H ұQUҳE23]@E`ԓaw+uݗBìa7vs~%(a -s :*,\T d`@Yr7_:B4,d G""JR΢[(.^e.M k0q Ęܕƥ;K\H'"q! q|$@`kHI p)rdf#e9nM3s(OlYތf@lo61c(!=0t!p|!h؆<:Fc 1n`mhA肌FX2B &HC\BhH!4{ Kmn -.D!ȴmXb .H Rs;j[!LXE!!Ð .6Xn_8!& {"X3}-5#>*c񔫜兴gN+mT@Ї!,!,!,!,!,!,!,Kǯ*\ȰÇ#JHŋ3jȱǏ CIɓ(SNo>I͛8sɳϟ@ JѣH*]ʴӧPJJ*Q|Zʵׯ`ÊKٳhW0۷pʝKݻu[˷߿  tO~/k>Ō'^L˘3klΗB; ZKҋMY`Cq %kʾj{ǓEss=}9M]e{ґm4Yn=xc3MW7yuy>u_Nz`Y1KfSvEhA؅ E^?hscW[s3l(ĹtLM%8S8ڤ"Pΐcd\n(I>d[\vՠMju5)&bex&]e="33 0%3mw't9Sږ3 ?FscMls͝ҷЗ1Ym瓉ޠ5JYL4)0<>Z4SХwfZ4́tzon9+53mcBLjujzLf-`kӫ1J0JyZyj5{c>XyK7 >d^7[Ͱj*?Ư3Jx_3U,lݜhh:SCxO nr?ۖV38YޒE؝-MXH4\NxpiQoDÒnj :j5Dۍ" 9g{![ <|ԮSY滄IHjIiJI;):kYu-Uj xI| fOlƒ@$2:J<(@x>'hhVX9•\T-+tw5nOTo`j>A,0 R%R@I2LRfM\sU\)u:F sbQ+)*>l7ǀu Z#KZ,f7z,hGKLjWֺlgKͭnw pK3:ЍtKZͮvz xKMzW}|Kͯ~/uN;毀g(+0A7{ A7v{b{nb~|BLvo,OWPX+j.ھNXf{#P5}^awηAwۘnZ/99Ɓ.hpOː2sahE!z ?cC(~vH!/Ds\/<hE+&PbA.٭K[bR``Te(jQn,~ұEm()4wkgnGavzmw;7 Jp3Zdl*>38qhUl݀08Ս6pgdXH5&\<(zT|/x_}u D$u6 MsTH4 7|c0G3(D UF; /L\/_AXk0 %e`ZmZ0fwd '~5 \` RI0@ ( *f P ps L\&\8(:Xn<P \jpI=A8.w\vP ` L0P&`l>pa& j Phzu@a@v ܐO HՉocXgp5Sp sXw0}E} H}PPj&feO&sr0&ō q0ڶEЀ\7j6sۖ[qv] l\ ͕@j R C\ \yRjU(Puxa\v0z-@| \ kХ\ ͅJo Gou`x6\ڰ \A9eXgZ\Bْ/|RI֕̕=&x xpҵ}(d}0f@I[&%eqhio (׏68s\؍u g\vj/ MfK¹ IufUؑQȑOȜYn5WI]~ǒ@&\7@uPiyf0]8]@_.\ h x %@f`ٖ癞p١&s\&5!\ZV.z~цТ.j\7\~9s͠ q ˠ ͅe1Z8iKveε " jG\[\ PɹOhSf:im\`耔ӵe&7PPuԀ\מ`hJ]\ɒ0h~8]ڪ2)zI]l|Z:&.\!pQѵ}+\]֙65㩣BWp]ε}Hsj]6ߪӥXOtD W I \f`5vtdّ&yq* ;\ Wv(0Uj=\@I~Vy ̥g7{]C[G8k*"%QI\`WekXcX@]\چp0jiжet+B㰷}p Zꩀ㠞4p~0P6j &d\9K6`]E\=8 *"i \Q inqj'\ VZ ٰ`j {%Pn /Fbx)P אp0\+ \YZP!pu ] 0hP@P7*ƾ<\k(|v̥D\+]*U]o5gc)\&edۭ) e'X Yee pf Y;eYF2…YvHr%$8])ΕTך\ٚ˼[ ]fܚnj`ښR '8;h\n0g'ېp j,]  rW I  $Щ5ų& ? lʣ,]˳\h\y#]ŕLe0ּ I]4@E\۬l4P EZиϥ\l]]\,]p"\]"̕5а 5Υ  VťchYz]]ͥՅUu@{& 8_Ҝ9\0h@]eJJΗV_;}< k̼kwu_dmg0䐾ZrݵPuu bP{E׀=؄]؆͵}؊،#؎ْ=ٔ5g#ҕٞ`|uu@o \Xېtt`|-fۉ@=ĭoY}0K^FPu% <^"حt `Q\ 8PFyF0a ]߇v܅F cԽ]Z^ 鐨U \t(]V . ,F5 {{Wx*| p /\Gz\G ӥu -zګ!p y1߰zªyy`U\Pе>TaΫ8Hfj(&S6XeȈb}{ȇ0x>CP| vnkn]T] ߌQR]u`fc>2[S)6ٔ番œ`z6~]> ݪDiO ]Uz\֭ھ zLN9 oşNHX:]Z]Ikn@>^ ƪ:bȞʱ:E!󾠿W>ѕ `0%咗L]05m#_\`\>{@Z홪pdfh_]6ZЅ\0ɩGM]ǽ@'Xi.eӞ YD+ȐP5Wpﰵ@ѥRO]ǭX{˿ȩ.̫e ,\ì 5X̨G!E$YI)UdK1eΤYM9ucɁJ #b^xnɠ!@0^"l2M F4NaŎ%[YiծɓHaQ'6Ʒy_uYm1wcȑ%O\€+gСE&]2siԩUfuӯeϦ]mbo;/gܹd]!$JTsjGFn[92VH,OHG1P@>}쳐1e?&#xˊhbbP%f{^*Ý,0! q !#ĝ0([oFk @(J{Q+/_*@t!GBp$+)Jʒpfi2VƔP…gZp -"k$ D.yH0g]hNތK(n9%(ρ-yB2T 0 `d$$dxx9Xa3}[T);aIAzZu3pABP{eT#Aڡrk_|C̯B9BP"pAf-!jѠ Q4q OD͚䡭fx1@8/5˶$ @hQDcH T4]}@dd#/3=T HdAySbq4A7sנI>Q"!Ix0&?%ic.ux0DGb +Cˢғ̌3 =^ :y;iD /\## A!t_$ ĐC y F8nCB<6hɀ(!_KSuMIB9P#[jFOF5-3O",#G4*R!IX[՗X@kIںl%$]aTzWP5/q Lk0V^r,1elc;e3le-^V,e2YІVohM{Zޤ61mL-Mmm= P:l㝬/Aă XIzsV>߀ ʚ$hAtdH %}U uC'!tk,!GJ+$4N¤1LiZM]5: Ozⓟ(Aj$0%<@JRu_( ըJi RHku?J5~RSSLd ILD|ĆY΂e-li[!R-K]r@%Vd<˜`ȳS02dcB+0쥄ΘС yXohM f2Sgr ]knFҵR^H}^,ǚ2Z 4iOkf[CC[V-'o`{vm5'-S}"tYn9mku#Nq8]Zpt;R7֩u˞AH"۫AO٧DGT̽@%G濑 K)8[$Eҙn翍~~ßD 0sEPJ8Rƭ! /IˢsfM_|>ry}ryˁN胟܏V~W Oc-S&y2ShF/kmv}Ϣ~6l }Y!7^Þ}hz0Z$+yɁdf3ާ2HKa4@xK`mϥ7;ӯiPJ?6 mZ'8PN% {;T;K>>kвy"|ڧ"(0S(r(X)J)rB )2ARA j) g _8$-"t'P)":%dBt@.$-ª* C(+3d x*QÜ.þ ુłCCD ?| R ]BDGOS4iK|x* d*tQKs 43[Gm`,p4H{I4UӴT3TkScA˪ʠt˼Y]l7qʹi͋cӗwS66ùlKdmNf gHZN~#q뻃4D`7itM{[z(餽+[Z8Ϟ88_ͮ˹ϑ ϼ爵917eN0'H)P9DN9}ϽےLmϡ+|\џY:𴺹Q8:;M-}ѩ=JGcV! Jbۥ`b*?["xH'j:k ;myÂ9KjPQݿ!sU?DK@R]@N͒,@N'@*"l( y-$DB,)<)"I`)<žReňy xK#\@|ZBhB4*>lWDEW«3CÏÜECôZ+7Y4YPZ%Ϳİڨ=BETKڭîMK,[%][-RXɈƒgȈt@[ |*ѫ x}e\~H<F\Z\\(5\ѫgM]ȥ sxshv胏]}mq e݁vPȀZ+XH U޳pr`[ ;Hgc؋6g؆ݏ_UMu5PhVv(Q0 q^^-HS `ޔ8(w@r0Z0 ;PG(R . U]~0Hx_s5__`p\mޓa. * %\a~(b)m hbs4׭bh/۝e݁6&;XehBWvXvPoh:.a /PhV8BV0ۥc;UZ [QXȅT? Q6E'N2`Eh\v_\eYޢb`[I3Hm88RH1M]x&H~x~p}xu&h}o 0fP0>~}Pvx!3fhE/gqd0]0Xqhf nC >a5;h-選y4 >8[HA2A@> X$]Z \F鏈j)j恫ZjjaT`(3Ōp16@@M|p.gr^s uuN@BtXgzn`]C@c^f2a^iiFVȀ&^hjFQ`Oȅvpn^FkFonnLxf!t7 R{\lh>0}l~@*z>m/m.& e0.c47>^^qN@&fmq&Sȅ\88`&ȅ6k~o6rNZP\NF0w%-o.vLX9 rt :贎ԗ%:&q&؅]0|w~DIp߅iOh]v NF@Cnex2^WiVgq up6zr؁\Xr΅6ȅ6$$8`vXkg4W4kW`Wnrt@ )E3|Ҙؑ0DwvK߇@ILJz~m@a_ v`9϶ig(z>cmD]_uoyP,yhjUq'υ$InSapgzυX(֍r5zqoxz&fFw}G-(ܱ>5B Vos.0ˆ}`T(> Phhx|]!q Nq4q}_i6um}ApjQzs[ (W먾Pjh~WVd@\@`~rO(7=S{o?3U^ʔk @|;!ÇXq"ƌ7r#Ȑ"G,i$ʔ*W>|qJ:|2ėNGLg;Q¡OBW`ӧW.qPSLYA? ڮMa\T: `+Q!%`ZxuL\yr;KdKtc7H h[yg| m&=lFbaÌ5^|X%׳o=|.3ЕmxP 7Q4PDZ0( >GdC m 9 EB!ġF'*(ь&*JTGtFq GetAL$QJ9%Uv4YjJmXpY._%bd3_Y!E$-iuy'y}I(1RQǖ*(yt9)Z6jiJX礓z*Sd*2*+z{ + ;,z0,:,wV`,?;gauge-2.7.4/has-color.js000066400000000000000000000004441307651013500150440ustar00rootroot00000000000000'use strict' module.exports = isWin32() || isColorTerm() function isWin32 () { return process.platform === 'win32' } function isColorTerm () { var termHasColor = /^screen|^xterm|^vt100|color|ansi|cygwin|linux/i return !!process.env.COLORTERM || termHasColor.test(process.env.TERM) } gauge-2.7.4/index.js000066400000000000000000000155271307651013500142740ustar00rootroot00000000000000'use strict' var Plumbing = require('./plumbing.js') var hasUnicode = require('has-unicode') var hasColor = require('./has-color.js') var onExit = require('signal-exit') var defaultThemes = require('./themes') var setInterval = require('./set-interval.js') var process = require('./process.js') var setImmediate = require('./set-immediate') module.exports = Gauge function callWith (obj, method) { return function () { return method.call(obj) } } function Gauge (arg1, arg2) { var options, writeTo if (arg1 && arg1.write) { writeTo = arg1 options = arg2 || {} } else if (arg2 && arg2.write) { writeTo = arg2 options = arg1 || {} } else { writeTo = process.stderr options = arg1 || arg2 || {} } this._status = { spun: 0, section: '', subsection: '' } this._paused = false // are we paused for back pressure? this._disabled = true // are all progress bar updates disabled? this._showing = false // do we WANT the progress bar on screen this._onScreen = false // IS the progress bar on screen this._needsRedraw = false // should we print something at next tick? this._hideCursor = options.hideCursor == null ? true : options.hideCursor this._fixedFramerate = options.fixedFramerate == null ? !(/^v0\.8\./.test(process.version)) : options.fixedFramerate this._lastUpdateAt = null this._updateInterval = options.updateInterval == null ? 50 : options.updateInterval this._themes = options.themes || defaultThemes this._theme = options.theme var theme = this._computeTheme(options.theme) var template = options.template || [ {type: 'progressbar', length: 20}, {type: 'activityIndicator', kerning: 1, length: 1}, {type: 'section', kerning: 1, default: ''}, {type: 'subsection', kerning: 1, default: ''} ] this.setWriteTo(writeTo, options.tty) var PlumbingClass = options.Plumbing || Plumbing this._gauge = new PlumbingClass(theme, template, this.getWidth()) this._$$doRedraw = callWith(this, this._doRedraw) this._$$handleSizeChange = callWith(this, this._handleSizeChange) this._cleanupOnExit = options.cleanupOnExit == null || options.cleanupOnExit this._removeOnExit = null if (options.enabled || (options.enabled == null && this._tty && this._tty.isTTY)) { this.enable() } else { this.disable() } } Gauge.prototype = {} Gauge.prototype.isEnabled = function () { return !this._disabled } Gauge.prototype.setTemplate = function (template) { this._gauge.setTemplate(template) if (this._showing) this._requestRedraw() } Gauge.prototype._computeTheme = function (theme) { if (!theme) theme = {} if (typeof theme === 'string') { theme = this._themes.getTheme(theme) } else if (theme && (Object.keys(theme).length === 0 || theme.hasUnicode != null || theme.hasColor != null)) { var useUnicode = theme.hasUnicode == null ? hasUnicode() : theme.hasUnicode var useColor = theme.hasColor == null ? hasColor : theme.hasColor theme = this._themes.getDefault({hasUnicode: useUnicode, hasColor: useColor, platform: theme.platform}) } return theme } Gauge.prototype.setThemeset = function (themes) { this._themes = themes this.setTheme(this._theme) } Gauge.prototype.setTheme = function (theme) { this._gauge.setTheme(this._computeTheme(theme)) if (this._showing) this._requestRedraw() this._theme = theme } Gauge.prototype._requestRedraw = function () { this._needsRedraw = true if (!this._fixedFramerate) this._doRedraw() } Gauge.prototype.getWidth = function () { return ((this._tty && this._tty.columns) || 80) - 1 } Gauge.prototype.setWriteTo = function (writeTo, tty) { var enabled = !this._disabled if (enabled) this.disable() this._writeTo = writeTo this._tty = tty || (writeTo === process.stderr && process.stdout.isTTY && process.stdout) || (writeTo.isTTY && writeTo) || this._tty if (this._gauge) this._gauge.setWidth(this.getWidth()) if (enabled) this.enable() } Gauge.prototype.enable = function () { if (!this._disabled) return this._disabled = false if (this._tty) this._enableEvents() if (this._showing) this.show() } Gauge.prototype.disable = function () { if (this._disabled) return if (this._showing) { this._lastUpdateAt = null this._showing = false this._doRedraw() this._showing = true } this._disabled = true if (this._tty) this._disableEvents() } Gauge.prototype._enableEvents = function () { if (this._cleanupOnExit) { this._removeOnExit = onExit(callWith(this, this.disable)) } this._tty.on('resize', this._$$handleSizeChange) if (this._fixedFramerate) { this.redrawTracker = setInterval(this._$$doRedraw, this._updateInterval) if (this.redrawTracker.unref) this.redrawTracker.unref() } } Gauge.prototype._disableEvents = function () { this._tty.removeListener('resize', this._$$handleSizeChange) if (this._fixedFramerate) clearInterval(this.redrawTracker) if (this._removeOnExit) this._removeOnExit() } Gauge.prototype.hide = function (cb) { if (this._disabled) return cb && process.nextTick(cb) if (!this._showing) return cb && process.nextTick(cb) this._showing = false this._doRedraw() cb && setImmediate(cb) } Gauge.prototype.show = function (section, completed) { this._showing = true if (typeof section === 'string') { this._status.section = section } else if (typeof section === 'object') { var sectionKeys = Object.keys(section) for (var ii = 0; ii < sectionKeys.length; ++ii) { var key = sectionKeys[ii] this._status[key] = section[key] } } if (completed != null) this._status.completed = completed if (this._disabled) return this._requestRedraw() } Gauge.prototype.pulse = function (subsection) { this._status.subsection = subsection || '' this._status.spun ++ if (this._disabled) return if (!this._showing) return this._requestRedraw() } Gauge.prototype._handleSizeChange = function () { this._gauge.setWidth(this._tty.columns - 1) this._requestRedraw() } Gauge.prototype._doRedraw = function () { if (this._disabled || this._paused) return if (!this._fixedFramerate) { var now = Date.now() if (this._lastUpdateAt && now - this._lastUpdateAt < this._updateInterval) return this._lastUpdateAt = now } if (!this._showing && this._onScreen) { this._onScreen = false var result = this._gauge.hide() if (this._hideCursor) { result += this._gauge.showCursor() } return this._writeTo.write(result) } if (!this._showing && !this._onScreen) return if (this._showing && !this._onScreen) { this._onScreen = true this._needsRedraw = true if (this._hideCursor) { this._writeTo.write(this._gauge.hideCursor()) } } if (!this._needsRedraw) return if (!this._writeTo.write(this._gauge.show(this._status))) { this._paused = true this._writeTo.on('drain', callWith(this, function () { this._paused = false this._doRedraw() })) } } gauge-2.7.4/package.json000066400000000000000000000025471307651013500151130ustar00rootroot00000000000000{ "name": "gauge", "version": "2.7.4", "description": "A terminal based horizontal guage", "main": "index.js", "scripts": { "test": "standard && tap test/*.js --coverage", "prepublish": "rm -f *~" }, "repository": { "type": "git", "url": "https://github.com/iarna/gauge" }, "keywords": [ "progressbar", "progress", "gauge" ], "author": "Rebecca Turner ", "license": "ISC", "bugs": { "url": "https://github.com/iarna/gauge/issues" }, "homepage": "https://github.com/iarna/gauge", "dependencies": { "aproba": "^1.0.3", "console-control-strings": "^1.0.0", "has-unicode": "^2.0.0", "object-assign": "^4.1.0", "signal-exit": "^3.0.0", "string-width": "^1.0.1", "strip-ansi": "^3.0.1", "wide-align": "^1.1.0" }, "devDependencies": { "readable-stream": "^2.0.6", "require-inject": "^1.4.0", "standard": "^7.1.2", "tap": "^5.7.2", "through2": "^2.0.0" }, "files": [ "base-theme.js", "CHANGELOG.md", "error.js", "has-color.js", "index.js", "LICENSE", "package.json", "plumbing.js", "process.js", "progress-bar.js", "README.md", "render-template.js", "set-immediate.js", "set-interval.js", "spin.js", "template-item.js", "theme-set.js", "themes.js", "wide-truncate.js" ] } gauge-2.7.4/plumbing.js000066400000000000000000000023651307651013500147760ustar00rootroot00000000000000'use strict' var consoleControl = require('console-control-strings') var renderTemplate = require('./render-template.js') var validate = require('aproba') var Plumbing = module.exports = function (theme, template, width) { if (!width) width = 80 validate('OAN', [theme, template, width]) this.showing = false this.theme = theme this.width = width this.template = template } Plumbing.prototype = {} Plumbing.prototype.setTheme = function (theme) { validate('O', [theme]) this.theme = theme } Plumbing.prototype.setTemplate = function (template) { validate('A', [template]) this.template = template } Plumbing.prototype.setWidth = function (width) { validate('N', [width]) this.width = width } Plumbing.prototype.hide = function () { return consoleControl.gotoSOL() + consoleControl.eraseLine() } Plumbing.prototype.hideCursor = consoleControl.hideCursor Plumbing.prototype.showCursor = consoleControl.showCursor Plumbing.prototype.show = function (status) { var values = Object.create(this.theme) for (var key in status) { values[key] = status[key] } return renderTemplate(this.width, this.template, values).trim() + consoleControl.color('reset') + consoleControl.eraseLine() + consoleControl.gotoSOL() } gauge-2.7.4/process.js000066400000000000000000000001311307651013500146240ustar00rootroot00000000000000'use strict' // this exists so we can replace it during testing module.exports = process gauge-2.7.4/progress-bar.js000066400000000000000000000017461307651013500155710ustar00rootroot00000000000000'use strict' var validate = require('aproba') var renderTemplate = require('./render-template.js') var wideTruncate = require('./wide-truncate') var stringWidth = require('string-width') module.exports = function (theme, width, completed) { validate('ONN', [theme, width, completed]) if (completed < 0) completed = 0 if (completed > 1) completed = 1 if (width <= 0) return '' var sofar = Math.round(width * completed) var rest = width - sofar var template = [ {type: 'complete', value: repeat(theme.complete, sofar), length: sofar}, {type: 'remaining', value: repeat(theme.remaining, rest), length: rest} ] return renderTemplate(width, template, theme) } // lodash's way of repeating function repeat (string, width) { var result = '' var n = width do { if (n % 2) { result += string } n = Math.floor(n / 2) /*eslint no-self-assign: 0*/ string += string } while (n && stringWidth(result) < width) return wideTruncate(result, width) } gauge-2.7.4/render-template.js000066400000000000000000000131531307651013500162460ustar00rootroot00000000000000'use strict' var align = require('wide-align') var validate = require('aproba') var objectAssign = require('object-assign') var wideTruncate = require('./wide-truncate') var error = require('./error') var TemplateItem = require('./template-item') function renderValueWithValues (values) { return function (item) { return renderValue(item, values) } } var renderTemplate = module.exports = function (width, template, values) { var items = prepareItems(width, template, values) var rendered = items.map(renderValueWithValues(values)).join('') return align.left(wideTruncate(rendered, width), width) } function preType (item) { var cappedTypeName = item.type[0].toUpperCase() + item.type.slice(1) return 'pre' + cappedTypeName } function postType (item) { var cappedTypeName = item.type[0].toUpperCase() + item.type.slice(1) return 'post' + cappedTypeName } function hasPreOrPost (item, values) { if (!item.type) return return values[preType(item)] || values[postType(item)] } function generatePreAndPost (baseItem, parentValues) { var item = objectAssign({}, baseItem) var values = Object.create(parentValues) var template = [] var pre = preType(item) var post = postType(item) if (values[pre]) { template.push({value: values[pre]}) values[pre] = null } item.minLength = null item.length = null item.maxLength = null template.push(item) values[item.type] = values[item.type] if (values[post]) { template.push({value: values[post]}) values[post] = null } return function ($1, $2, length) { return renderTemplate(length, template, values) } } function prepareItems (width, template, values) { function cloneAndObjectify (item, index, arr) { var cloned = new TemplateItem(item, width) var type = cloned.type if (cloned.value == null) { if (!(type in values)) { if (cloned.default == null) { throw new error.MissingTemplateValue(cloned, values) } else { cloned.value = cloned.default } } else { cloned.value = values[type] } } if (cloned.value == null || cloned.value === '') return null cloned.index = index cloned.first = index === 0 cloned.last = index === arr.length - 1 if (hasPreOrPost(cloned, values)) cloned.value = generatePreAndPost(cloned, values) return cloned } var output = template.map(cloneAndObjectify).filter(function (item) { return item != null }) var outputLength = 0 var remainingSpace = width var variableCount = output.length function consumeSpace (length) { if (length > remainingSpace) length = remainingSpace outputLength += length remainingSpace -= length } function finishSizing (item, length) { if (item.finished) throw new error.Internal('Tried to finish template item that was already finished') if (length === Infinity) throw new error.Internal('Length of template item cannot be infinity') if (length != null) item.length = length item.minLength = null item.maxLength = null --variableCount item.finished = true if (item.length == null) item.length = item.getBaseLength() if (item.length == null) throw new error.Internal('Finished template items must have a length') consumeSpace(item.getLength()) } output.forEach(function (item) { if (!item.kerning) return var prevPadRight = item.first ? 0 : output[item.index - 1].padRight if (!item.first && prevPadRight < item.kerning) item.padLeft = item.kerning - prevPadRight if (!item.last) item.padRight = item.kerning }) // Finish any that have a fixed (literal or intuited) length output.forEach(function (item) { if (item.getBaseLength() == null) return finishSizing(item) }) var resized = 0 var resizing var hunkSize do { resizing = false hunkSize = Math.round(remainingSpace / variableCount) output.forEach(function (item) { if (item.finished) return if (!item.maxLength) return if (item.getMaxLength() < hunkSize) { finishSizing(item, item.maxLength) resizing = true } }) } while (resizing && resized++ < output.length) if (resizing) throw new error.Internal('Resize loop iterated too many times while determining maxLength') resized = 0 do { resizing = false hunkSize = Math.round(remainingSpace / variableCount) output.forEach(function (item) { if (item.finished) return if (!item.minLength) return if (item.getMinLength() >= hunkSize) { finishSizing(item, item.minLength) resizing = true } }) } while (resizing && resized++ < output.length) if (resizing) throw new error.Internal('Resize loop iterated too many times while determining minLength') hunkSize = Math.round(remainingSpace / variableCount) output.forEach(function (item) { if (item.finished) return finishSizing(item, hunkSize) }) return output } function renderFunction (item, values, length) { validate('OON', arguments) if (item.type) { return item.value(values, values[item.type + 'Theme'] || {}, length) } else { return item.value(values, {}, length) } } function renderValue (item, values) { var length = item.getBaseLength() var value = typeof item.value === 'function' ? renderFunction(item, values, length) : item.value if (value == null || value === '') return '' var alignWith = align[item.align] || align.left var leftPadding = item.padLeft ? align.left('', item.padLeft) : '' var rightPadding = item.padRight ? align.right('', item.padRight) : '' var truncated = wideTruncate(String(value), length) var aligned = alignWith(truncated, length) return leftPadding + aligned + rightPadding } gauge-2.7.4/set-immediate.js000066400000000000000000000002131307651013500156760ustar00rootroot00000000000000'use strict' var process = require('./process') try { module.exports = setImmediate } catch (ex) { module.exports = process.nextTick } gauge-2.7.4/set-interval.js000066400000000000000000000001351307651013500155670ustar00rootroot00000000000000'use strict' // this exists so we can replace it during testing module.exports = setInterval gauge-2.7.4/spin.js000066400000000000000000000001511307651013500141210ustar00rootroot00000000000000'use strict' module.exports = function spin (spinstr, spun) { return spinstr[spun % spinstr.length] } gauge-2.7.4/template-item.js000066400000000000000000000035601307651013500157260ustar00rootroot00000000000000'use strict' var stringWidth = require('string-width') module.exports = TemplateItem function isPercent (num) { if (typeof num !== 'string') return false return num.slice(-1) === '%' } function percent (num) { return Number(num.slice(0, -1)) / 100 } function TemplateItem (values, outputLength) { this.overallOutputLength = outputLength this.finished = false this.type = null this.value = null this.length = null this.maxLength = null this.minLength = null this.kerning = null this.align = 'left' this.padLeft = 0 this.padRight = 0 this.index = null this.first = null this.last = null if (typeof values === 'string') { this.value = values } else { for (var prop in values) this[prop] = values[prop] } // Realize percents if (isPercent(this.length)) { this.length = Math.round(this.overallOutputLength * percent(this.length)) } if (isPercent(this.minLength)) { this.minLength = Math.round(this.overallOutputLength * percent(this.minLength)) } if (isPercent(this.maxLength)) { this.maxLength = Math.round(this.overallOutputLength * percent(this.maxLength)) } return this } TemplateItem.prototype = {} TemplateItem.prototype.getBaseLength = function () { var length = this.length if (length == null && typeof this.value === 'string' && this.maxLength == null && this.minLength == null) { length = stringWidth(this.value) } return length } TemplateItem.prototype.getLength = function () { var length = this.getBaseLength() if (length == null) return null return length + this.padLeft + this.padRight } TemplateItem.prototype.getMaxLength = function () { if (this.maxLength == null) return null return this.maxLength + this.padLeft + this.padRight } TemplateItem.prototype.getMinLength = function () { if (this.minLength == null) return null return this.minLength + this.padLeft + this.padRight } gauge-2.7.4/test/000077500000000000000000000000001307651013500135745ustar00rootroot00000000000000gauge-2.7.4/test/base-theme.js000066400000000000000000000013751307651013500161520ustar00rootroot00000000000000'use strict' var test = require('tap').test var requireInject = require('require-inject') var baseTheme = requireInject('../base-theme', { '../spin.js': function (theme, spun) { return [theme, spun] }, '../progress-bar.js': function (theme, width, completed) { return [theme, width, completed] } }) test('activityIndicator', function (t) { t.is(baseTheme.activityIndicator({}, {}, 80), undefined, 'no spun') t.isDeeply(baseTheme.activityIndicator({spun: 3}, {me: true}, 9999), [{me: true}, 3], 'spun') t.done() }) test('progressBar', function (t) { t.is(baseTheme.progressbar({}, {}, 80), undefined, 'no completion') t.isDeeply(baseTheme.progressbar({completed: 33}, {me: true}, 100), [{me: true}, 100, 33], 'completion!') t.done() }) gauge-2.7.4/test/error.js000066400000000000000000000017501307651013500152660ustar00rootroot00000000000000'use strict' var test = require('tap').test var error = require('../error.js') test('User', function (t) { var msg = 'example' var user = new error.User(msg) t.ok(user instanceof Error, 'isa Error') t.is(user.code, 'EGAUGE', 'code') t.is(user.message, msg, 'maintained message') t.done() }) test('MissingTemplateValue', function (t) { var item = {type: 'abc'} var values = {'abc': 'def', 'ghi': 'jkl'} var user = new error.MissingTemplateValue(item, values) t.ok(user instanceof Error, 'isa Error') t.is(user.code, 'EGAUGE', 'code') t.like(user.message, new RegExp(item.type), 'contains type') t.isDeeply(user.template, item, 'passed through template item') t.isDeeply(user.values, values, 'passed through values') t.done() }) test('Internal', function (t) { var msg = 'example' var user = new error.Internal(msg) t.ok(user instanceof Error, 'isa Error') t.is(user.code, 'EGAUGEINTERNAL', 'code') t.is(user.message, msg, 'maintained message') t.done() }) gauge-2.7.4/test/index.js000066400000000000000000000146221307651013500152460ustar00rootroot00000000000000'use strict' var test = require('tap').test var Gauge = require('../index') var stream = require('readable-stream') var util = require('util') var EventEmitter = require('events').EventEmitter function Sink () { stream.Writable.call(this, arguments) } util.inherits(Sink, stream.Writable) Sink.prototype._write = function (data, enc, cb) { cb() } var results = new EventEmitter() function MockPlumbing (theme, template, columns) { results.theme = theme results.template = template results.columns = columns results.emit('new', theme, template, columns) } MockPlumbing.prototype = {} function RecordCall (name) { return function () { var args = Array.prototype.slice.call(arguments) results.emit('called', [name, args]) results.emit('called:' + name, args) return '' } } ;['setTheme', 'setTemplate', 'setWidth', 'hide', 'show', 'hideCursor', 'showCursor'].forEach(function (fn) { MockPlumbing.prototype[fn] = RecordCall(fn) }) test('defaults', function (t) { var gauge = new Gauge(process.stdout) t.is(gauge._disabled, !process.stdout.isTTY, 'disabled') t.is(gauge._updateInterval, 50, 'updateInterval') if (process.stdout.isTTY) { t.is(gauge._tty, process.stdout, 'tty') gauge.disable() gauge = new Gauge(process.stderr) t.is(gauge._tty, process.stdout, 'tty is stdout when writeTo is stderr') } gauge.disable() gauge = new Gauge(new Sink()) t.is(gauge._tty, undefined, 'non-tty stream is not tty') gauge.disable() t.end() }) test('construct', function (t) { var output = new Sink() output.isTTY = true output.columns = 16 var gauge = new Gauge(output, { Plumbing: MockPlumbing, theme: ['THEME'], template: ['TEMPLATE'], enabled: false, updateInterval: 0, fixedFramerate: false }) t.ok(gauge) t.is(results.columns, 15, 'width passed through') t.same(results.theme, ['THEME'], 'theme passed through') t.same(results.template, ['TEMPLATE'], 'template passed through') t.is(gauge.isEnabled(), false, 'disabled') t.done() }) test('show & pulse: fixedframerate', function (t) { t.plan(3) // this helps us abort if something never emits an event // it also keeps things alive long enough to actually get output =D var testtimeout = setTimeout(function () { t.end() }, 1000) var output = new Sink() output.isTTY = true output.columns = 16 var gauge = new Gauge(output, { Plumbing: MockPlumbing, updateInterval: 10, fixedFramerate: true }) gauge.show('NAME', 0.1) results.once('called:show', checkBasicShow) function checkBasicShow (args) { t.isDeeply(args, [{ spun: 0, section: 'NAME', subsection: '', completed: 0.1 }], 'check basic show') gauge.show('S') gauge.pulse() results.once('called:show', checkPulse) } function checkPulse (args) { t.isDeeply(args, [ { spun: 1, section: 'S', subsection: '', completed: 0.1 } ], 'check pulse') gauge.pulse('P') results.once('called:show', checkPulseWithArg) } function checkPulseWithArg (args) { t.isDeeply(args, [ { spun: 2, section: 'S', subsection: 'P', completed: 0.1 } ], 'check pulse w/ arg') gauge.disable() clearTimeout(testtimeout) t.done() } }) test('window resizing', function (t) { var testtimeout = setTimeout(function () { t.end() }, 1000) var output = new Sink() output.isTTY = true output.columns = 32 var gauge = new Gauge(output, { Plumbing: MockPlumbing, updateInterval: 0, fixedFramerate: true }) gauge.show('NAME', 0.1) results.once('called:show', function (args) { t.isDeeply(args, [{ section: 'NAME', subsection: '', completed: 0.1, spun: 0 }]) results.once('called:setWidth', lookForResize) output.columns = 16 output.emit('resize') gauge.show('NAME', 0.5) }) function lookForResize (args) { t.isDeeply(args, [15]) results.once('called:show', lookForShow) } function lookForShow (args) { t.isDeeply(args, [{ section: 'NAME', subsection: '', completed: 0.5, spun: 0 }]) gauge.disable() clearTimeout(testtimeout) t.done() } }) function collectResults (time, cb) { var collected = [] function collect (called) { collected.push(called) } results.on('called', collect) setTimeout(function () { results.removeListener('called', collect) cb(collected) }, time) } test('hideCursor:true', function (t) { var output = new Sink() output.isTTY = true output.columns = 16 var gauge = new Gauge(output, { Plumbing: MockPlumbing, theme: ['THEME'], template: ['TEMPLATE'], enabled: true, updateInterval: 90, fixedFramerate: true, hideCursor: true }) collectResults(100, andCursorHidden) gauge.show('NAME', 0.5) t.is(gauge.isEnabled(), true, 'enabled') function andCursorHidden (got) { var expected = [ ['hideCursor', []], ['show', [{ spun: 0, section: 'NAME', subsection: '', completed: 0.5 }]] ] t.isDeeply(got, expected, 'hideCursor') gauge.disable() t.end() } }) test('hideCursor:false', function (t) { var output = new Sink() output.isTTY = true output.columns = 16 var gauge = new Gauge(output, { Plumbing: MockPlumbing, theme: ['THEME'], template: ['TEMPLATE'], enabled: true, updateInterval: 90, fixedFramerate: true, hideCursor: false }) collectResults(100, andCursorHidden) gauge.show('NAME', 0.5) function andCursorHidden (got) { var expected = [ ['show', [{ spun: 0, section: 'NAME', subsection: '', completed: 0.5 }]] ] t.isDeeply(got, expected, 'do not hideCursor') gauge.disable() t.end() } }) /* todo missing: constructor arg2 is writeTo, arg1 is opts arg2 is writeTo, arg1 is null no args, all defaults setTemplate setThemeset setTheme w/ theme selector w/ theme name w/ theme object setWriteTo while enabled/disabled w/ tty w/o tty & writeTo = process.stderr & process.stdout isTTY w/o tty & writeTo = process.stderr & process.stdout !isTTY enable w/ _showing = true hide w/ disabled w/ !disabled & !showing w/ !disabled & showing w/ these & cb show w/ disabled w/ object arg1 pulse w/ disabled w/ !showing anything to do with _fixedFramerate trigger _doRedraw w/o showing & w/o _onScreen (eg, hide, show, hide, I think) w/o _needsRedraw Everything to do with back pressure from _writeTo */ gauge-2.7.4/test/plumbing.js000066400000000000000000000041641307651013500157540ustar00rootroot00000000000000'use strict' var test = require('tap').test var requireInject = require('require-inject') var Plumbing = requireInject('../plumbing.js', { '../render-template.js': function (width, template, values) { if (values.x) values.x = values.x // pull in from parent object for stringify return 'w:' + width + ', t:' + JSON.stringify(template) + ', v:' + JSON.stringify(values) }, 'console-control-strings': { eraseLine: function () { return 'ERASE' }, gotoSOL: function () { return 'CR' }, color: function (to) { return 'COLOR:' + to }, hideCursor: function () { return 'HIDE' }, showCursor: function () { return 'SHOW' } } }) var template = [ {type: 'name'} ] var theme = {} var plumbing = new Plumbing(theme, template, 10) // These three produce fixed strings and are entirely static, so as long as // they produce _something_ they're probably ok. Actually testing them will // require something that understands ansi codes. test('showCursor', function (t) { t.is(plumbing.showCursor(), 'SHOW') t.end() }) test('hideCursor', function (t) { t.is(plumbing.hideCursor(), 'HIDE') t.end() }) test('hide', function (t) { t.is(plumbing.hide(), 'CRERASE') t.end() }) test('show', function (t) { t.is(plumbing.show({name: 'test'}), 'w:10, t:[{"type":"name"}], v:{"name":"test"}COLOR:resetERASECR') t.end() }) test('width', function (t) { var plumbing = new Plumbing(theme, template) t.is(plumbing.show({name: 'test'}), 'w:80, t:[{"type":"name"}], v:{"name":"test"}COLOR:resetERASECR') t.end() }) test('setTheme', function (t) { plumbing.setTheme({x: 'abc'}) t.is(plumbing.show({name: 'test'}), 'w:10, t:[{"type":"name"}], v:{"name":"test","x":"abc"}COLOR:resetERASECR') t.end() }) test('setTemplate', function (t) { plumbing.setTemplate([{type: 'name'}, {type: 'x'}]) t.is(plumbing.show({name: 'test'}), 'w:10, t:[{"type":"name"},{"type":"x"}], v:{"name":"test","x":"abc"}COLOR:resetERASECR') t.end() }) test('setWidth', function (t) { plumbing.setWidth(20) t.is(plumbing.show({name: 'test'}), 'w:20, t:[{"type":"name"},{"type":"x"}], v:{"name":"test","x":"abc"}COLOR:resetERASECR') t.end() }) gauge-2.7.4/test/progress-bar.js000066400000000000000000000024271307651013500165450ustar00rootroot00000000000000'use strict' var test = require('tap').test var progressBar = require('../progress-bar') test('progressBar', function (t) { var theme = { complete: '#', remaining: '-' } var result result = progressBar(theme, 10, 0) t.is(result, '----------', '0% bar') result = progressBar(theme, 10, 0.5) t.is(result, '#####-----', '50% bar') result = progressBar(theme, 10, 1) t.is(result, '##########', '100% bar') result = progressBar(theme, 10, -100) t.is(result, '----------', '0% underflow bar') result = progressBar(theme, 10, 100) t.is(result, '##########', '100% overflow bar') result = progressBar(theme, 0, 0.5) t.is(result, '', '0 width bar') var multicharTheme = { complete: '123', remaining: 'abc' } result = progressBar(multicharTheme, 10, 0) t.is(result, 'abcabcabca', '0% bar') result = progressBar(multicharTheme, 10, 0.5) t.is(result, '12312abcab', '50% bar') result = progressBar(multicharTheme, 10, 1) t.is(result, '1231231231', '100% bar') result = progressBar(multicharTheme, 10, -100) t.is(result, 'abcabcabca', '0% underflow bar') result = progressBar(multicharTheme, 10, 100) t.is(result, '1231231231', '100% overflow bar') result = progressBar(multicharTheme, 0, 0.5) t.is(result, '', '0 width bar') t.done() }) gauge-2.7.4/test/render-template.js000066400000000000000000000062201307651013500172220ustar00rootroot00000000000000'use strict' var test = require('tap').test var renderTemplate = require('../render-template') test('renderTemplate', function (t) { var result result = renderTemplate(10, [{type: 'name'}], {name: 'NAME'}) t.is(result, 'NAME ', 'name substitution') result = renderTemplate(10, [{type: 'name'}, {type: 'completionbar'}], { name: 'NAME', completionbar: function (values, theme, width) { return 'xx' + String(width) + 'xx' } }) t.is(result, 'NAMExx6xx ', 'name + 50%') result = renderTemplate(10, ['static'], {}) t.is(result, 'static ', 'static text') result = renderTemplate(10, ['static', {type: 'name'}], {name: 'NAME'}) t.is(result, 'staticNAME', 'static text + var') result = renderTemplate(10, ['static', {type: 'name', kerning: 1}], {name: 'NAME'}) t.is(result, 'static NAM', 'pre-separated') result = renderTemplate(10, [{type: 'name', kerning: 1}, 'static'], {name: 'NAME'}) t.is(result, 'NAME stati', 'post-separated') result = renderTemplate(10, ['1', {type: 'name', kerning: 1}, '2'], {name: ''}) t.is(result, '12 ', 'separated no value') result = renderTemplate(10, ['1', {type: 'name', kerning: 1}, '2'], {name: 'NAME'}) t.is(result, '1 NAME 2 ', 'separated value') result = renderTemplate(10, ['AB', {type: 'name', kerning: 1}, {value: 'CD', kerning: 1}], {name: 'NAME'}) t.is(result, 'AB NAME CD', 'multi kerning') result = renderTemplate(10, [{type: 'name', length: '50%'}, 'static'], {name: 'N'}) t.is(result, 'N stati', 'percent length') try { result = renderTemplate(10, [{type: 'xyzzy'}, 'static'], {}) t.fail('missing type') } catch (e) { t.pass('missing type') } result = renderTemplate(10, [{type: 'name', minLength: '20%'}, 'this long thing'], {name: 'N'}) t.is(result, 'N this lon', 'percent minlength') result = renderTemplate(10, [{type: 'name', maxLength: '20%'}, 'nope'], {name: 'NAME'}) t.is(result, 'NAnope ', 'percent maxlength') result = renderTemplate(10, [{type: 'name', padLeft: 2, padRight: 2}, '||'], {name: 'NAME'}) t.is(result, ' NAME ||', 'manual padding') result = renderTemplate(10, [{value: 'ABC', minLength: 2, maxLength: 6}, 'static'], {}) t.is(result, 'ABC static', 'max hunk size < maxLength') result = renderTemplate(10, [{value: function () { return '' }}], {}) t.is(result, ' ', 'empty value') result = renderTemplate(10, [{value: '12古34', align: 'center', length: '100%'}], {}) t.is(result, ' 12古34 ', 'wide chars') result = renderTemplate(10, [{type: 'test', value: 'abc'}], {preTest: '¡', postTest: '!'}) t.is(result, '¡abc! ', 'pre/post values') result = renderTemplate(10, [{type: 'test', value: 'abc'}], {preTest: '¡'}) t.is(result, '¡abc ', 'pre values') result = renderTemplate(10, [{type: 'test', value: 'abc'}], {postTest: '!'}) t.is(result, 'abc! ', 'post values') result = renderTemplate(10, [{value: 'abc'}, {value: '‼‼', length: 0}, {value: 'def'}]) t.is(result, 'abcdef ', 'post values') result = renderTemplate(10, [{value: 'abc', align: 'xyzzy'}]) t.is(result, 'abc ', 'unknown aligns are align left') t.end() }) gauge-2.7.4/test/spin.js000066400000000000000000000004301307651013500151000ustar00rootroot00000000000000'use strict' var test = require('tap').test var spin = require('../spin') test('spin', function (t) { t.plan(2) var spinner = '123456' var result result = spin(spinner, 1) t.is(result, '2', 'Spinner 1') result = spin(spinner, 10) t.is(result, '5', 'Spinner 10') }) gauge-2.7.4/test/template-item.js000066400000000000000000000064761307651013500167160ustar00rootroot00000000000000'use strict' var test = require('tap').test var objectAssign = require('object-assign') var TemplateItem = require('../template-item.js') var width = 200 var defaults = { overallOutputLength: width, finished: false, type: null, value: null, length: null, maxLength: null, minLength: null, kerning: null, align: 'left', padLeft: 0, padRight: 0, index: null, first: null, last: null } function got (values) { return new TemplateItem(values, width) } function expected (obj) { return objectAssign({}, defaults, obj) } test('new', function (t) { t.isDeeply(got('test'), expected({value: 'test'}), 'str item') t.isDeeply(got({value: 'test', length: 3}), expected({value: 'test', length: 3}), 'obj item') t.isDeeply(got({length: '20%'}), expected({length: 40}), 'length %') t.isDeeply(got({maxLength: '10%'}), expected({maxLength: 20}), 'length %') t.isDeeply(got({minLength: '95%'}), expected({minLength: 190}), 'length %') t.done() }) test('getBaseLength', function (t) { var direct = got({value: 'test', length: 3}) t.is(direct.getBaseLength(), 3, 'directly set') var intuit = got({value: 'test'}) t.is(intuit.getBaseLength(), 4, 'intuit') var varmax = got({value: 'test', maxLength: 4}) t.is(varmax.getBaseLength(), null, 'variable max') var varmin = got({value: 'test', minLength: 4}) t.is(varmin.getBaseLength(), null, 'variable min') t.done() }) test('getLength', function (t) { var direct = got({value: 'test', length: 3}) t.is(direct.getLength(), 3, 'directly set') var intuit = got({value: 'test'}) t.is(intuit.getLength(), 4, 'intuit') var varmax = got({value: 'test', maxLength: 4}) t.is(varmax.getLength(), null, 'variable max') var varmin = got({value: 'test', minLength: 4}) t.is(varmin.getLength(), null, 'variable min') var pardleft = got({value: 'test', length: 3, padLeft: 3}) t.is(pardleft.getLength(), 6, 'pad left') var padright = got({value: 'test', length: 3, padLeft: 5}) t.is(padright.getLength(), 8, 'pad right') var padboth = got({value: 'test', length: 3, padLeft: 5, padRight: 1}) t.is(padboth.getLength(), 9, 'pad both') t.done() }) test('getMaxLength', function (t) { var nomax = got({value: 'test'}) t.is(nomax.getMaxLength(), null, 'no max length') var direct = got({value: 'test', maxLength: 5}) t.is(direct.getMaxLength(), 5, 'max length') var padleft = got({value: 'test', maxLength: 5, padLeft: 3}) t.is(padleft.getMaxLength(), 8, 'max length + padLeft') var padright = got({value: 'test', maxLength: 5, padRight: 3}) t.is(padright.getMaxLength(), 8, 'max length + padRight') var padboth = got({value: 'test', maxLength: 5, padLeft: 2, padRight: 3}) t.is(padboth.getMaxLength(), 10, 'max length + pad both') t.done() }) test('getMinLength', function (t) { var nomin = got({value: 'test'}) t.is(nomin.getMinLength(), null, 'no min length') var direct = got({value: 'test', minLength: 5}) t.is(direct.getMinLength(), 5, 'min length') var padleft = got({value: 'test', minLength: 5, padLeft: 3}) t.is(padleft.getMinLength(), 8, 'min length + padLeft') var padright = got({value: 'test', minLength: 5, padRight: 3}) t.is(padright.getMinLength(), 8, 'min length + padRight') var padboth = got({value: 'test', minLength: 5, padLeft: 2, padRight: 3}) t.is(padboth.getMinLength(), 10, 'min length + pad both') t.done() }) gauge-2.7.4/test/theme-set.js000066400000000000000000000063251307651013500160330ustar00rootroot00000000000000'use strict' var test = require('tap').test var ThemeSet = require('../theme-set.js') var themes = new ThemeSet() themes.addTheme('fallback', {id: 0}) themes.addTheme('test1', {id: 1}) themes.addTheme('test2', {id: 2}) themes.addTheme('test3', {id: 3}) themes.addTheme('test4', {id: 4}) themes.addTheme('testz', themes.getTheme('fallback'), {id: 'z'}) themes.setDefault('fallback') themes.setDefault({platform: 'aa', hasUnicode: false, hasColor: false}, 'test1') themes.setDefault({platform: 'bb', hasUnicode: true, hasColor: true}, 'test2') themes.setDefault({platform: 'ab', hasUnicode: false, hasColor: true}, 'test3') themes.setDefault({platform: 'ba', hasUnicode: true, hasColor: false}, 'test4') themes.setDefault({platform: 'zz', hasUnicode: false, hasColor: false}, 'test1') themes.setDefault({platform: 'zz', hasUnicode: true, hasColor: true}, 'test2') themes.setDefault({platform: 'zz', hasUnicode: false, hasColor: true}, 'test3') themes.setDefault({platform: 'zz', hasUnicode: true, hasColor: false}, 'test4') test('themeset', function (t) { t.is(themes().id, 0, 'fallback') t.is(themes({platform: 'aa'}).id, 1, 'aa ff') t.is(themes({platform: 'aa', hasUnicode: true}).id, 1, 'aa tf') t.is(themes({platform: 'aa', hasColor: true}).id, 1, 'aa ft') t.is(themes({platform: 'aa', hasUnicode: true, hasColor: true}).id, 1, 'aa tt') t.is(themes({platform: 'bb'}).id, 0, 'bb ff') t.is(themes({platform: 'bb', hasUnicode: true}).id, 0, 'bb tf') t.is(themes({platform: 'bb', hasColor: true}).id, 0, 'bb ft') t.is(themes({platform: 'bb', hasUnicode: true, hasColor: true}).id, 2, 'bb tt') t.is(themes({platform: 'ab'}).id, 0, 'ab ff') t.is(themes({platform: 'ab', hasUnicode: true}).id, 0, 'ab tf') t.is(themes({platform: 'ab', hasColor: true}).id, 3, 'ab ft') t.is(themes({platform: 'ab', hasUnicode: true, hasColor: true}).id, 3, 'ab tt') t.is(themes({platform: 'ba'}).id, 0, 'ba ff') t.is(themes({platform: 'ba', hasUnicode: true}).id, 4, 'ba tf') t.is(themes({platform: 'ba', hasColor: true}).id, 0, 'ba ft') t.is(themes({platform: 'ba', hasUnicode: true, hasColor: true}).id, 4, 'ba tt') t.is(themes({platform: 'zz'}).id, 1, 'zz ff') t.is(themes({platform: 'zz', hasUnicode: true}).id, 4, 'zz tf') t.is(themes({platform: 'zz', hasColor: true}).id, 3, 'zz ft') t.is(themes({platform: 'zz', hasUnicode: true, hasColor: true}).id, 2, 'zz tt') try { themes.getTheme('does not exist') t.fail('missing theme') } catch (ex) { t.is(ex.code, 'EMISSINGTHEME', 'missing theme') } t.is(themes.getTheme('testz').id, 'z', 'testz') var empty = new ThemeSet() try { empty() t.fail('no themes') } catch (ex) { t.is(ex.code, 'EMISSINGTHEME', 'no themes') } empty.addTheme('exists', {id: 'exists'}) empty.setDefault({hasUnicode: true, hasColor: true}, 'exists') try { empty() t.fail('no fallback') } catch (ex) { t.is(ex.code, 'EMISSINGTHEME', 'no fallback') } t.done() }) test('add-to-all', function (t) { themes.addToAllThemes({ 'xyz': 17 }) t.is(themes.getTheme('test1').xyz, 17, 'existing themes updated') var newTheme = themes.newTheme({id: 99}) t.is(newTheme.id, 99, 'new theme initialized') t.is(newTheme.xyz, 17, 'new theme got extension') t.done() }) gauge-2.7.4/test/themes.js000066400000000000000000000013651307651013500154240ustar00rootroot00000000000000'use strict' var test = require('tap').test var themes = require('../themes.js') test('selector', function (t) { t.is(themes({hasUnicode: false, hasColor: false, platform: 'unknown'}), themes.getTheme('ASCII'), 'fallback') t.is(themes({hasUnicode: false, hasColor: false, platform: 'darwin'}), themes.getTheme('ASCII'), 'ff darwin') t.is(themes({hasUnicode: true, hasColor: false, platform: 'darwin'}), themes.getTheme('brailleSpinner'), 'tf drawin') t.is(themes({hasUnicode: false, hasColor: true, platform: 'darwin'}), themes.getTheme('colorASCII'), 'ft darwin') t.is(themes({hasUnicode: true, hasColor: true, platform: 'darwin'}), themes.getTheme('colorBrailleSpinner'), 'ft darwin') t.end() }) test('newTheme', function (t) { t.end() }) gauge-2.7.4/test/wide-truncate.js000066400000000000000000000034771307651013500167200ustar00rootroot00000000000000'use strict' var test = require('tap').test var wideTruncate = require('../wide-truncate.js') test('wideTruncate', function (t) { var result result = wideTruncate('abc', 6) t.is(result, 'abc', 'narrow, no truncation') result = wideTruncate('古古古', 6) t.is(result, '古古古', 'wide, no truncation') result = wideTruncate('abc', 2) t.is(result, 'ab', 'narrow, truncation') result = wideTruncate('古古古', 2) t.is(result, '古', 'wide, truncation') result = wideTruncate('古古', 3) t.is(result, '古', 'wide, truncation, partial') result = wideTruncate('古', 1) t.is(result, '', 'wide, truncation, no chars fit') result = wideTruncate('abc', 0) t.is(result, '', 'zero truncation is empty') result = wideTruncate('', 10) t.is(result, '', 'empty string') result = wideTruncate('abc古古古def', 12) t.is(result, 'abc古古古def', 'mixed nwn, no truncation') result = wideTruncate('abcdef古古古', 12) t.is(result, 'abcdef古古古', 'mixed nw, no truncation') result = wideTruncate('古古古abcdef', 12) t.is(result, '古古古abcdef', 'mixed wn, no truncation') result = wideTruncate('古古abcdef古', 12) t.is(result, '古古abcdef古', 'mixed wnw, no truncation') result = wideTruncate('abc古古古def', 6) t.is(result, 'abc古', 'mixed nwn, truncation') result = wideTruncate('abcdef古古古', 6) t.is(result, 'abcdef', 'mixed nw, truncation') result = wideTruncate('古古古abcdef', 6) t.is(result, '古古古', 'mixed wn, truncation') result = wideTruncate('古古abcdef古', 6) t.is(result, '古古ab', 'mixed wnw, truncation') result = wideTruncate('abc\x1b[0mdef', 6) t.is(result, 'abc\x1b[0mdef', 'ansi codes are zero width') result = wideTruncate('abc\x1b[0mdef', 4) t.is(result, 'abc\x1b[0md', 'ansi codes are zero width, clip text') t.end() }) gauge-2.7.4/theme-set.js000066400000000000000000000071551307651013500150560ustar00rootroot00000000000000'use strict' var objectAssign = require('object-assign') module.exports = function () { return ThemeSetProto.newThemeSet() } var ThemeSetProto = {} ThemeSetProto.baseTheme = require('./base-theme.js') ThemeSetProto.newTheme = function (parent, theme) { if (!theme) { theme = parent parent = this.baseTheme } return objectAssign({}, parent, theme) } ThemeSetProto.getThemeNames = function () { return Object.keys(this.themes) } ThemeSetProto.addTheme = function (name, parent, theme) { this.themes[name] = this.newTheme(parent, theme) } ThemeSetProto.addToAllThemes = function (theme) { var themes = this.themes Object.keys(themes).forEach(function (name) { objectAssign(themes[name], theme) }) objectAssign(this.baseTheme, theme) } ThemeSetProto.getTheme = function (name) { if (!this.themes[name]) throw this.newMissingThemeError(name) return this.themes[name] } ThemeSetProto.setDefault = function (opts, name) { if (name == null) { name = opts opts = {} } var platform = opts.platform == null ? 'fallback' : opts.platform var hasUnicode = !!opts.hasUnicode var hasColor = !!opts.hasColor if (!this.defaults[platform]) this.defaults[platform] = {true: {}, false: {}} this.defaults[platform][hasUnicode][hasColor] = name } ThemeSetProto.getDefault = function (opts) { if (!opts) opts = {} var platformName = opts.platform || process.platform var platform = this.defaults[platformName] || this.defaults.fallback var hasUnicode = !!opts.hasUnicode var hasColor = !!opts.hasColor if (!platform) throw this.newMissingDefaultThemeError(platformName, hasUnicode, hasColor) if (!platform[hasUnicode][hasColor]) { if (hasUnicode && hasColor && platform[!hasUnicode][hasColor]) { hasUnicode = false } else if (hasUnicode && hasColor && platform[hasUnicode][!hasColor]) { hasColor = false } else if (hasUnicode && hasColor && platform[!hasUnicode][!hasColor]) { hasUnicode = false hasColor = false } else if (hasUnicode && !hasColor && platform[!hasUnicode][hasColor]) { hasUnicode = false } else if (!hasUnicode && hasColor && platform[hasUnicode][!hasColor]) { hasColor = false } else if (platform === this.defaults.fallback) { throw this.newMissingDefaultThemeError(platformName, hasUnicode, hasColor) } } if (platform[hasUnicode][hasColor]) { return this.getTheme(platform[hasUnicode][hasColor]) } else { return this.getDefault(objectAssign({}, opts, {platform: 'fallback'})) } } ThemeSetProto.newMissingThemeError = function newMissingThemeError (name) { var err = new Error('Could not find a gauge theme named "' + name + '"') Error.captureStackTrace.call(err, newMissingThemeError) err.theme = name err.code = 'EMISSINGTHEME' return err } ThemeSetProto.newMissingDefaultThemeError = function newMissingDefaultThemeError (platformName, hasUnicode, hasColor) { var err = new Error( 'Could not find a gauge theme for your platform/unicode/color use combo:\n' + ' platform = ' + platformName + '\n' + ' hasUnicode = ' + hasUnicode + '\n' + ' hasColor = ' + hasColor) Error.captureStackTrace.call(err, newMissingDefaultThemeError) err.platform = platformName err.hasUnicode = hasUnicode err.hasColor = hasColor err.code = 'EMISSINGTHEME' return err } ThemeSetProto.newThemeSet = function () { var themeset = function (opts) { return themeset.getDefault(opts) } return objectAssign(themeset, ThemeSetProto, { themes: objectAssign({}, this.themes), baseTheme: objectAssign({}, this.baseTheme), defaults: JSON.parse(JSON.stringify(this.defaults || {})) }) } gauge-2.7.4/themes.js000066400000000000000000000030071307651013500144400ustar00rootroot00000000000000'use strict' var consoleControl = require('console-control-strings') var ThemeSet = require('./theme-set.js') var themes = module.exports = new ThemeSet() themes.addTheme('ASCII', { preProgressbar: '[', postProgressbar: ']', progressbarTheme: { complete: '#', remaining: '.' }, activityIndicatorTheme: '-\\|/', preSubsection: '>' }) themes.addTheme('colorASCII', themes.getTheme('ASCII'), { progressbarTheme: { preComplete: consoleControl.color('inverse'), complete: ' ', postComplete: consoleControl.color('stopInverse'), preRemaining: consoleControl.color('brightBlack'), remaining: '.', postRemaining: consoleControl.color('reset') } }) themes.addTheme('brailleSpinner', { preProgressbar: '⸨', postProgressbar: '⸩', progressbarTheme: { complete: '░', remaining: '⠂' }, activityIndicatorTheme: '⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏', preSubsection: '>' }) themes.addTheme('colorBrailleSpinner', themes.getTheme('brailleSpinner'), { progressbarTheme: { preComplete: consoleControl.color('inverse'), complete: ' ', postComplete: consoleControl.color('stopInverse'), preRemaining: consoleControl.color('brightBlack'), remaining: '░', postRemaining: consoleControl.color('reset') } }) themes.setDefault({}, 'ASCII') themes.setDefault({hasColor: true}, 'colorASCII') themes.setDefault({platform: 'darwin', hasUnicode: true}, 'brailleSpinner') themes.setDefault({platform: 'darwin', hasUnicode: true, hasColor: true}, 'colorBrailleSpinner') gauge-2.7.4/wide-truncate.js000066400000000000000000000014741307651013500157340ustar00rootroot00000000000000'use strict' var stringWidth = require('string-width') var stripAnsi = require('strip-ansi') module.exports = wideTruncate function wideTruncate (str, target) { if (stringWidth(str) === 0) return str if (target <= 0) return '' if (stringWidth(str) <= target) return str // We compute the number of bytes of ansi sequences here and add // that to our initial truncation to ensure that we don't slice one // that we want to keep in half. var noAnsi = stripAnsi(str) var ansiSize = str.length + noAnsi.length var truncated = str.slice(0, target + ansiSize) // we have to shrink the result to account for our ansi sequence buffer // (if an ansi sequence was truncated) and double width characters. while (stringWidth(truncated) > target) { truncated = truncated.slice(0, -1) } return truncated }

/zkȇNPrzG0xG8!-< ̱!4q"@"#C^!wDbGd(r4bG #c4&ґ Y+31wB=ΐ# DJyB$3@yX*h><]9ƌVIt/#9Pٛ*DPAi{e"Hp 1 IP_&,눵;B$PA1+!]>A_g9"b;6 @8F2;ְE4'"nT\kBSE:C $HT:HMA]X]&ʕ,URpS5P& TYDZViBJ90_lL0cGK\)UQ.XO hѤwUVΕ8';a1Gsny5JN*| R }ΗczR# k-PT&Z5u, I̽?P} RK/% A)LB ^{ A`-dj(P|@.xr6atOftF2G8ЏA)~gv ERȡ -ЍRvH tMaby_~e6}ng"n8@t%*ԖP(IMH Ld:0:6=1EFa$B<@P&d9a!BZ**16hLÚ#@ #m@[E᪫nVYH`:;Ѥ^ݢF-ne7>>ԋϽ"\/B70 *^jZlsHEy'HNwMʶ U4L=GkF&HE̵jVu _ tc&JHg-YDy@؎ 䱍ttL1!1ְd KQ`&bփAf`I51aF*Y|@M 6qƏ0ct6=nrӱ\׆ #;ܑ UnTX$H ^Loj_Yς5p^Re!,gP$H \ȰÇZA ŋ3TcACIɓ(S$'Q:8Nfm+g |@h23 (>PKmä=jʵׯϙ]'F `%ǶY]{*FfAG3cZu]X]&8ǐ#k BCa< )$0:FXQװc˞Q,"fZ8HE d 0l, A0Ϡw0{xPL)rv@{̐@  .|R s &"A6,z{Qgr1V7PY@B&n9&HMvB 'ɒ ,Sh39F707TY jCSŃG7aX2OfpNwA ڛXj:%C gq6B*P =)*j3Ė]).'~太9f*K&h&iخ4[:JQ@i06{ ̗<%X\*k@ O7Ư Q 󨅯k'+1*Bvh),0qŨ2C3ԛ*>`qկ#Z+P '(V9 Z<g+T_maM>u HIPe t6ցZ|ukC7AsD6f}qP1Ӊ O$ӗ t\j5f;ȩwCknC;XG"S^_s*O@R$޲OVoP}p?s|>y(C=ޢ?U.@>6:\ xS^A/v_;&7H5Ѡcm爚@'C@;'SA<P 8@LXfft0} o;K?ŒZ0=F h3dr@(Fь A:ڑ6CR l pXN@BU4Ya>΅q< $rϒp " HE Ced'P" Q@.YLұ! $@PZ."mĊFe*,\vzͤjR'@LwTYŨ G3 3xv32J:r$Ac iB*PA 7sHg(>|cD+zQ ft?*Pv>HG:Q<4 nRe (8]*Ҏ:HcŀxNś=ώɐϰQV盠7|LZ!X6D#ŠdZ zՈ]=bdAlIzFǮM0<$ˬB+ҚAU*JR{-lgK[ѪVͭnw no MnM :ЍBZ.uzWxKMzesJ{K#~߂䷿0|+X>3#L vΰ/ {0GLb(NlN1!,xH*\ȰÇ#JHŋ3j,BHɓt )MT͛&t P,J/ %) Ϩի(5 _%Vpl_{]kqL %!P߿S5 K87`̜S7VDSiUm<I0o _{F rӞ:*t5 `γm ZN~l ˟Oɀ!, x` (0*\ȰÇ#JHŋ3jȱǏ CIɄ \ɲ˗0cʜI͛ST8aaO>gQG"4iӡ IsMTWb͸5k^úYPُ"+&\0I(@|+0A>B-ݶIt j6]<7bzeR搟`&aD 'F4xJSdk t+i0wq ˸ˢDmjwPf9{h%Z g {4집O.ؓ +NAx4s|hIL<Hh6?nR1V4R 'LRT biL]:S_iJsZS޴)34$!RtT(Uj&BHQ Ms x@b `xeV)~5c*DRyVٞfQ!g>%Jv / vN'|K9QLeY"UN ֱuzd(}e.5j$NtCUDՋ\jBNB5!.KM~E(!C!5RcO{"". ̈}}V R6dhoG\07v z}YAh-0 w'r˰:d u CDg݄XFH$ @K)7RVBJpc`  1/+KRJ"Õa%ks47nOw2~!8AphC@$7u2dmG!=4H*RY*d`N[%{g=+C.g9{^/5%xk!cMd#K3f*Τmi"l(o8hGXULz!^׼=OF|t, 0 CI 6]Y d+҅xEu (큷A!m$6qd#N<$#vC>t=4N<<1}67;؆<^k"'B}tOF{kԿd9[[˧NGכywHkS4=MpB{Ů7=l;iP ]8HD~ɕD4Y@_ @KDIA'wT C/JEJygUeUGeM [d -Zs{ βv/Reow4%?,M ä^_o9?~,ÿW՟ӏ篑 2A>!,]{ eX,1lHCr XE5P[SC.$M@*iPƣR%@! *[')X9`X& F!,{ HA)raA:bⰢs&\Q!>`nۤC\ipEt C& ig>3PD:LJf DX )x js\/=X]&,t=X*'Pf9h%ϝ*U\b 7~J6<UQ.X/@|W= $8#θ &>ЉXdž+^2s/Z}M=,*Ex=+A dNL{> I,G֯ /}'E%/lE6 4 o]@ L} >~W@yCPU70@l#KsHb&HlsLYJ2iQPu: YFC .|AX@T(Pu< &Amg! tg 8@8ИAM2a=09H 76QO3vث襯v۝SQ~N腧R}":t4;ֿSE).;vYE-+-1sAA8"U1Ӊ O$c 50A\$: pd`<@o%GV@pNvx Gp_.c6w%ә̆2} Ck@fCxEq!+ n_`/%AdtATe :Rƿx@b x x'/e603ṿiTB ƢB٢&rjC=[K'?8M>< 刻rtIe!M)D8 eK+˚1{T/WV!@PT@g@ScQHQ"r4P15< x$nw 0BgwB$,R,Zd)9p`#jcƳ @TM4P8&z"}(I)wn<=$Cq;! }$@@mF/"UJզ׾' y x$45'_QXP@C@FOVyfEU 2 Jʐˆ2 @Q鵰x<B#AVɪH6-gcYYSHsg*jv] jkj5\۲U g~ô9PV`%>@G:ҁ$b/a`W{Bq=J5]>A_k 9 DF:AU$Оz1ʉ1_W g Rw=ɘGgxnO|wcC1by*6Hz:@[,hB t3f{Rd޲IqA`a~X-;@r%ƅ!,x` (0*\ȰÇ#JHŋ3jȱǏ CIɄ \ɲ˗0cʜI͛ST8aaO>gQG"4i IsMTgb͸5k^úYPً"+&\0I(@|+0A>B-ݶI, kqp 5r.P1^27wmRtHg0pL2ÙŗD4x9ᚂF(2(0brppU ,3 =-!3?==G~}ZCx@ ڴ5BQ1P AQhP=F0#QPs1AIs,:T#&lPPUwP9*ALdQ24eg5 DVȸ`@BayPddAhfb¹&osf{g|מ/{HtCxPL)E2 pFz39bIc&A'F%/4'+B)B -t" Lz륙n*ly 5N>̳6m54f2;쫱"tF2CĶ{лP6jKn.|bB 0BjЕ ;1Z1JkCk - :-4H{_6iB%̃x .@pF B&pͤ$0M\. N]*L<gOL{4@:z . ݄a<ܥ6FpwN'qV 6M qK+:Hvi&pB>86k!m κ;ސd%Bt ;;7U?MNe^ٽ]gЇ=y7-7݋8|;d83f7oPA| PC@7 (XjPcAA$f(W$";Ȗ64 QJ xfXҧTÚscI[ $ m]!xazz!j{vH%0DE|0P"X+H(NqIq"Đ1 cC(2  3P($E<p dCT`!TH&It $&GIRrҔD%(!+"C#A\QĮx["DB b4ÙJ eA-G\( c:pM*aT$)6:Έa V$4S 75HNr!?iPy!UG%*MӝѕHe`5*B5LA*ч1{:$@ g5ZV@ HC3Ps نNgZr-Gd,B"RԢi:?{][5C? H"B9AYŃ$wzkBJ:Wgi>G{1BXoz%aiCJL:0yDJ<Ȑkd늰tJ ./e(Cp xa Cz1y z2wsd*vY.d`ֻew48/CD!UryD//@xkį!Vt֛i,k9ՁJ-4[=ul2x@AjS7q÷h &D}BMi[[!mֈБt#aȡB( `;]nuA|㝠@{wI2!ԩ~pD'?P~5O<P 8HDID9Y@[ @KIA'ByT C6/$LUJB{gA"腯Gv z85hAZ3wRb1@'U s"YI3T}7Rcd8 A a  ؀'Q41~Xx!,xQ (0*\ȰÇ#JHŋ3jȱ#B=Iɓ(Sr aIs̈́2qyaN5%4hF"MeAPFrH'Q@L2u0C t&AaDJJGA Vi5&=/<Ƕ"3\S#{H17fX]&@# .LhՊh#2h O3DOLqiBa$B<P7 B7>X 8ČwaAA^#&L'&< e3'T@<,$ =k)x}.pxwH[87qS$3>t4H0fRyo^z`Uwxuidc^|B͸ OABij*~ +<}Ha3@hmR a@q9 ]>A_|P_vV!bDF:AHɐtylBm4U S̼qeT`H0qش@ yڳOi} ~"BVǎXD$P$؏Y 'D0]0$ Gd`*$ME҆#AΰTZ7ejσ>]O*Ԣ*G5jB~Ӧ:u"/}TJ!,{ H)[Át% s*dq!`nۤC\yD"%#wlj6$xn”;  J`ϟ- $@`1GsLAށdD'F`|T$+άr rV#~8h[-X];I`7` 0&ٳZ'P>} .|r^$\Y&Plc@c%p1" A`-d!P#87_} GM&:wpM) tF2CHdOZ4`yuE`'H -y=u9Е $ODIa!a,NZSA.s,! &C x@nک@># .LhӐ~hS\jC OS9&Hi.ăŃG7aX2^:9F腭%,ƒj*0 j5ՀHfY[8ƖGfmTU[C ?T뭹V  . _+pq, +h<^㪫k\qB+^9G;m{+=kqpYql6 rOm}2+1S3<c]/\v/c@%p͵9\E8v~ A6N"L!< xT"Z:+-l#xAqSXސ N8΃7ww𡙌*B< n"E;1Ӊ O$)@s9{ՉQ 6!! &C xcA># .LhՋhRji O3DOLiB"$a$B<P7E8mLnS)՛p0::;N;_Fv@X6vCBP awɬ}P'Ef $=I'r+BjId;y֦ @\ˡBTx!PԜƐuy|M;3D kXJ x\ޢ"2B!e(ǻBp xD #.2=,kl2ڼIHRA2 SR2-%7)INj4H*&tnHG:.ИbWn#.@qY ]>A_0`Q\wh"fDF:ALɐDŽymt BhJTNfIx(h{4A gy~ ~2@x3H$OI8 jANBQ1")h`Ò-IWj"||@3H8UKs4=HUQT:)TJժ& !,{ HA)raA:bⰢs&\Q!>`nۤC\Y'Ztj6$xnHÔ;  J`ϟ*cͼ拙|:a圭K_M[`DP{V @,ɮ0Y]~ *I"pZ *ۘ2,t !r &HP$lp3Y$:G}qLCM3 ,)bt Ag$1qTddAI.٤EhC4ib#)e9ĖUY@fiޅn(t"@dNw|G2a=09H7ti :„6 60j2d:0:>=1 :a$B<@PU $  8dATe_{JVw7Ab  x '0OG7!8d"9* Cs>QwDmcdF$QaZXGQe.1!$ATD\Pg1L-6ӐT/YhzLPT@GHs$ s 7$cmH#?;ȱ y9Ď{Cf\&;Xt LNxd 4ֲS$ L?8m u3Le+3J%I9| p J 0W NtH֔4z%VJݔM;ɴg@">ȩ > %mD@ (!,!,-xH (0*\ȰÇ#JHŋ3jȱǏ CIDM\ɲ˗0cʜI͆(*Ξ@ MhPC`͚lF}JsjFT bf΂]FrH'Q@L2u0 t&A;Z\,1P#! ˥+rf&= 3 %#w,W| Is)25:4PxeeQ`" D3WE`<P`A5^X졕h I'1/t>B;il_BL!P 1AhPh*x4J mI %HťbB8_CģXT>Uw~/2$ADtdICMfCk]`iy f[vYfgk٦c &qΉGxPL)E2v_nz0F2$v>A'F%/g*B)RcB -H" LꢙBjkyPT;ÕM>36V:߰:j6d.>駁6e;AxB'.tr)-"4/ñZAӺ/qPe60j`2a=09HɵCs?:„6kh6xC^w(7+{n5Zsm$ GV^LhA0,fF0&Eܣ3)M{"S$  "ĦV&tSԧ;POS@ NSxXniI9$*J!TBji!4kx@b hx)уC)zRҀi]& "d ڨPwDJ\h|X:3PrHcٖ:IS r!-q=;ٰa+e=א֣{+Zj׵5j-KVALb,h!@A ԐT`e92j{M\MՃ i>< :ngm^Idb]j Xʐ"T+2C7H\ٴ| *h"|8ڂX5{Sl5f}-a 7-Sp $\+d":. &HA'w4Dt 0|2e(p y; Ke;4WF 3$=TДF!gW Y< 6g;=KӜNf1GzeCsd`_C$Mi.wԥD:o3S(l+ fWֲ^Hj *X JPml+ζ=nn#${:G3t#arIyaojW 8Z. /@O "yl# AdO(5hX?QORߘi!r|Q95r=^E;t#0PNDƻN[^NVvh$"чK"@,`  % k>H \?c}z#^B'qbz+d"ܫ@< n2Z0?;g0$kݖ\{#A'ha @i+v&(؁hx7&x(* !,5x@ (0*\ȰÇ#JHŋ3jȱǏ CIBM\ɲ˗0cʜI(*Ξ@ MhPB%4qOҌTVjV"+&\0I(@<+0A>B-ݶI旅58=j[<7`reR搟dWt'Z&@<0\ipMsE# ~{awYL<8V6(,XgPf9{h%Z gT {t=y@*TL4) 1xA&hA(<iNmI %GÝbB8_CVP4Uw}/2A@4dE CI^_DQ`DBUpAYniPXZczI\ga/{84A3``\X}*A`a$A.L *I"@ܨE64K0 ]@hP$lp3Yd**q C,yPAhĂ+8]D#BQ <f@Q`4&t9xK$QӋ4& Ka1HR9mhh=4΃8Cws /UkVPL Tr @_"T^΄fD hb3 ŦÉV!PAL!'=HJ!T/e\:ST&;yʍ$ !IХŠ"dMSO P"ē$#V=HLS@By"(DêXժ. #9rG$CExR=51()G|mTZPswY*U,BٞB,Eլh+V !sIh,h!@AT+e`g[:U&o 2 H,UW2dr8/F5-eŮs ִ ZG,a€i=H<ڐ`4ʎװMD  }?K>Hv VFԕA"|X \[V$IRAJ(bg%CJ\IqlVa$@dm` a@q 8]>P =Ƕ3oBHG7~t#1Ɍu} .`nۤC\YpL JJG1d9ܐ)y *A@3tæNdኗHZU(3\SSZH^T{, LD ivR<8&kM,| YmσuF[㆓)[&5f)Ht=X*7'۩&Q7:-9j4-N*Tnq?_t}^hm ,J<Ԟ Kk'9uL\>YI#}%@'E%/&!A)"^A - LUx}'byt ̡s@>65tO/8tF2GE$69ГQNiQ БC$"& -Xs=y&A\2(u@ # ! '7ʈaf :P;gJ g a'F :„6 '6Ŗm9&HR rAṂA{!䄑<۞,ήUMO %BրHg&&gA>xQ玻m]%lT1A@qE ,u%0> 0veOp , ?p9@f-j͖K[0\Q*AV!1@-d' i1C36I}'߄B:JT7v7=ןʬ]vcn+>kW@8-8C$Ak;F5CE)rpHzJv-;^Ux*En쵛tuM}<_w40wǃNFPBȆUEA  ;cmhaHAPq)N @™5dr& I/[zAWeۜCqjFm(7c1R7:) 2!}h#̄|@ *ӈ4} O̟Ua(RwuHLTMqS$!2} C{MM/R|bgA!?Iq3'DҔ3wI^P '@w-72ԟF _V B1 @ܠ5A"H!d#i<,L{9!`6H ^CLd; \NGx,$=@LXs .sLf3G1~CbD#X ysp@_@$Ҙfb&z !`_NK@"T'ͭc\WPAO䐟v-r"@P@!,!,=x8 (0*\ȰÇ#JHŋ3jȱǏ CI$A%S\ɲ˗0cʜI“NXS'ϟ>&9h is@SO5:p*ի4qĺ2µUdŤ0 F:bd5܇X6 [ !Cܦ[<7߶oe2v9䐗"dvw tԊOʰ4x:Sdk t+i0vo ˸ˢDmjwPf93V%̜0yF*ooGciRu!7UH+L!!AT R%A(<iNAG] %1!eP1 0g:bT>T0:AЍX^| A>̣~IIAVViЕm_rX%eٜvBCxPL)E2l{y0F2c"A'yF%/)B)B -L)E?%O A,ِDdcAڸcg&欀OAgC, ZNP HښʠA(7ģ8|:srh A2aPX\x d h?3HV6<jlGAK~=dMH>#"Zb OT pQqEL]bGA!{ġAk  - /B0X (U`!TH"H4 4H$0J"!³JD%BHTdE%BL4m&xB2"TpĿR0BAO.q/)ZB07!m8hfv(@3Kt:Q=3d;r\.H8IOϙ27$hL‡C%?Bof$װA*@AȤAATj05PJeRԦ$)5r$ôDSuiClh >&d (/wHLS@BCyRħXͪS! ̣XՉ'Y3P~r W6B\r,`lBGĒN'Նvг*VЦhD|#! !" p;& [frEA=!C!)ji+U* +OcAބa AO mUdAT0o~/"Q`nc>]na\ڎ$!g%CA?p-0yG<ȌkcB0pqOb`ӳd5 MBp x!` ㋋jv e)S;BrhT *rA^*-||w#峟"In &=9==op )yvE762/{,A\ZUOʒ-aVBr]]/7kM F|t( 0B H Ӛ6݄0C 8V. / NO "yl# qdȣN<Aw @orp §d8D{12xjAm#&Hnr+V7qoX"/ށo4@y:>nQ{A]s8!p+ַ?c*F+gSҤO=a;wP `8HD~D1Y@_ @KIA"y#<5KRbzx>!xŷ^!H0a$.F+{aX}gϕ">-2g0/% WB_!ϾOT '? !,Ex8 (0*\ȰÇ#JHŋ3jȱǏ CI$A%S\ɲ˗0cʜI“NXS'ϟ>&9&lTiSL&*8 ^Z*bR#D1xOC,mMF8M a藭[?N9deX"†c͊#@<`s)254PweeQ`" D6Sw/,rJ"ϸ]uva/@?ip]:տpBx"4&>-|EbPZۅ{ rbaPPPyG"C4dcI9#=cU1&wP/ƈ_kkHyVBYQr]YeBj\ Ak=5ϔAX$s _ŖmIc$Li@$("jɝ$r uPlcA%p1f)B`-daPz:h1 @ +`,9ۄPjkrlsLeނ9m:aj{^k Qn{A=2 |'jëJA'/*8[cO޸Q 6! &C xg6sH ڔAڸDe:0:=1Eў|a$?.݄a2PX%1TApM"3 q6&. "$$.Q" |X#$Ј@a*DbY.|1"%"Xy ԑZh  x>TVQ ,Đ AdBFđd$IɆc"k*f!AH"L! YŒN xVyăR vIR0B1Oa!#]#d/)YF0PMmH`P ׅhF0@9P&n&lBl2<"><95'=sY0m#2x,4Q%L~c&E( "ĤAAT@'iJej6L&+#GCHh; D;EO@}D\.#fyT< 2D9#eGTZUt!<:#z"@M T!k$V~rc1^]>cAhhmXZŠuTMa;j*5# 2bK `IPѩmb֢I=>&ëO-edȐiȁy;jZ2oyM]ؒaxsmHS ^*d1bռX>`Ïocu `mX ,_DNRq]: o>}~8j-*!V*%a ௎y7'%&5@5BrʱAŃ@ۃ"wM~rSD!gN)˰݄ RavcEg9B&2C-͙9xk!3rfFzLtU,kك "ŽP^tYahpĴ LqIgH>Paԑ@m@o~!7u9cZ @K|'!t&1=Lb7׮P [8HDv D2Y@_ @KIA'BwT C.JCBBl"W?z>"Sv"hAW^O{*G ,خVf={D{ e*>_zI3 zGF%K>}L_H}Iʟ~O!,!,Mx0 (0*\ȰÇ#JHŋ3jȱǏ CI#A%S\ɲ˗0cʜIɁ ',ԙsϞ@jPA5ҚN3F}zp*իWoĊ1µUdŤ0 F:bd5܇X6 ۤ !\,1P#! }+qd)-! K$BP4Zu6&=hpMsE# ~{awYxRmnHCrո{aaV%yF*ÏGɃjIOBFP !1Xԁ4&>-|4EbPzX܇} MtAAaPP|bC@$dIEp$CIFf}1&hДUVDBAa٥`z&d&gxBCxPL)E2m*&39BzI$r ĕPlcA̘%p1E劣~jP )   t*k :)d%BV8$E%̃x .@pF B&pm $0Y.*L<dOLx'@:z .ălŃG7aX2am!<÷߀pvk'mwM!B(AB fE8 pSؠl8wzCZs~}^x47)g;W{_N7C&7v}wC {ᇓP]#qkBDT51d,Aa'#&4 xF:@At(SAPn6G7$"1C%a%E5!PE&1hC\9D O Q(t%A 6R$_8UT3EtHYC`(7*I{+4T BtsH3}ԋ ,đ dB$JĒd#ِx A[1-Œ!$StT"D_B ˵BP2#- \% 置j9B| *G_U.#bVuj$a%mnB `#Re(}-l#l”*!\%ady7ŏ)%!&q5<*)ABrѿ ?4!xWȠ`{.OB xqt W Y<g;:DJ< rLș_{ kȡTZApk!YN!e8)uN<:ҫtfa#4@m@< 3 G =ǴnBHG7H 5$C( w: eM=ooqJPO`߄J<ِF#ހLwc(,CqMx"OMnsWȸjI7YX6]< )[NL|7B.ozۙǹy>^+\V5ɩo:d!X p A#0r$$ȓ#& ) D %BiI C6~/|MxegY"s CmgZ֮Fϖ Ώ>Vt8θ/! AO_OREO!,]{ ~tID 58QKwELtpU ,{ Ï cȐMq$lӉQyx d*d5r|8,dTZᡶtґc`Y\Zi!,{ HA)raA:bⰢs&\Q!>`nۤC\YKėDXcĒ! S,(tу?f<3)SNJ] b Yf SZ <5๱,.QB 4Yr%xո{aa3VzpS|+Fs>)m1jV. Wo2$0:Թņ,x;,&:1࣢YrثsnE!C]ꆩ69p}MP{V @,ɮ `x;.cѥlTDn\C,y50>+q1psl(Ю|l&;ZP/tm) JK;S$5)ASW5m5d06{09V͵\V" $<+ ^{oy9󾻭8%|i3|_6@K;^}j6s;4A d-1SAAX@Q $!`TftOHR|0˳6ȭR0A\$:H G ꬅ׋A(B E hTm8vPb '<uVHx$Vl2s - 'btL3&MmfJYILsd2hBERYNx dtl |sZi>2 u EB9ZC@SAm;߃1RYd)i ΀T3!C7̈́|@ *GbT b(4Ae)EdҼ#T bShAh 5A7RV@$@.vX9VI-C9N xqS CD *X̮z@0F0zh+ T t vwܦ!mmtU0PKmīKvAI3(_ZIh #ρ <^4@`ǃqE(EDnhۄBTpuBamvӔPA"3@&9@qmΘ yBMJkB/{џj!>CY) a5f!\0F2qɁcB(A'F%/@f"B)B -l("E# .Lht SЁ@:z .~݄a<`BNyj꣑Nu5pN&'t5O5 RGcVTiF;pMc A)Bp65:XG%+1'3,5Bh;B ;pW l AHhNh !1,\nmCtxB A0fZ0 Ѐv~^!pBpF\- 7&$!gBH5.3H*s~HG:,W?n#{z@q !]>A_/\)si NDF:AѤɐ$yl}l8R|dBneGm%. hQ:C&%)Oȣe2=lO2 L M8HD$ xJeZ\T prJW@ 0Z(%;e}!>yІ~dH*MP=]E7юz4HGJR!,{ H)[Át% s*dq!`nۤC\YėJJG1mbI)y *A@3tæNdaD1IVrg RV <5๱߆,.QB 4Xjۄjܽ0˙E+ц39@Px#/j!Ag$1q<ueQha~QiX)#p.|B{w%Aj^(@  - (CHbtV!:A2a=09H7 j2$0MC tpk`:0:?=1EbuHa$B<@PMFBk@3@亶[R=ҧ%@״~k@X-"31C3Hɓ:JT71P<<ٜcSΓ[Ty\;>9 @ _ >N"L!<' 5zU)"?<+C?7jNHA}CҋX(cy9?yM@:ACm4E(.U @0  7[ aHI [4F4~:E8~4ܛoC